diff --git a/.gitignore b/.gitignore index 9a0b1753..eeac47a2 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,5 @@ /sdf.egg-info *.stl +__pycache__ +*.pyc diff --git a/INSTALL.txt b/INSTALL.txt new file mode 100644 index 00000000..343b1945 --- /dev/null +++ b/INSTALL.txt @@ -0,0 +1,19 @@ +Windows + +One needs to download and install python 3 and then do a pip install of the +packages. From the command line: + +> python -m pip -q install scikit-image numpy meshio pyyaml + + + +Linux + +First install python3 and then, install the python packages: + +$ python3 -m pip -q install scikit-image numpy meshio pyyaml + +To setup the MicroSoft Fonts: + +$ which cabextract || sudo yum install -q -y curl cabextract xorg-x11-font-utils fontconfig +$ [ -e /usr/share/fonts/msttcore/ ] || sudo yum install -q -y https://downloads.sourceforge.net/project/mscorefonts2/rpms/msttcore-fonts-installer-2.6-1.noarch.rpm diff --git a/README.md b/README.md index 0cdf03f6..541c17bf 100644 --- a/README.md +++ b/README.md @@ -36,8 +36,13 @@ Have a cool example? Submit a PR! | [gearlike.py](examples/gearlike.py) | [knurling.py](examples/knurling.py) | [blobby.py](examples/blobby.py) | [weave.py](examples/weave.py) | | --- | --- | --- | --- | -| ![gearlike](docs/images/gearlike.png) | ![knurling](docs/images/knurling.png) | ![blobby](docs/images/blobby.png) | ![weave](docs/images/weave.png) | -| ![gearlike](docs/images/gearlike.jpg) | ![knurling](docs/images/knurling.jpg) | ![blobby](docs/images/blobby.jpg) | ![weave](docs/images/weave.jpg) | +| ![gearlike](docs/images/gearlike.png)| ![knurling](docs/images/knurling.png)| ![blobby](docs/images/blobby.png)| ![weave](docs/images/weave.png)| +| ![gearlike](docs/images/gearlike.jpg)| ![knurling](docs/images/knurling.jpg)| ![blobby](docs/images/blobby.jpg)| ![weave](docs/images/weave.jpg)| + +More examples! +| [pawn.py](examples/pawn.py) | [steering_wheel.py](examples/steering_wheel.py) | [spinning_top.py](examples/spinning_top.py) | +| --- | --- | --- | +| ![pawn](docs/images/pawn.png)| ![steering wheel](docs/images/steering_wheel.png)| ![spinning_top](docs/images/spinning_top.png)| ## Requirements @@ -143,6 +148,32 @@ By default, `samples=2**22` is used. *Tip*: Use the default resolution while developing your SDF. Then when you're done, crank up the resolution for your final output. +## Fast Quadric Mesh Simplification + +Simplification of the mesh can be accomplished at the same time by using: + +```python +f.save('out.stl', samples=2**24, simplify=True) +# to simplify (remove 80%) of the mesh after rendering, use: +f.save('out.stl', samples=2**24, simplify=True, simp_ratio=0.2) +# to change the simplification agressive value use +f.save('out.stl', samples=2**24, simplify=True, simp_agressive=5) +``` + +or generate once and then simplify afterwards: + +```python +points = f.generate() +points = simplify(points) +save_mesh("test_output.stl",points) # save as STL file +#save_mesh("test_output.stp",points) # save as STEP file +``` + +By default, `simp_ratio=0.5, simp_agressive=7` is used. + +For more information see https://github.com/sp4cerat/Fast-Quadric-Mesh-Simplification + + ## Batches The SDF is sampled in batches. By default the batches have `32**3 = 32768` @@ -186,6 +217,20 @@ If you want to save an STL after `generate`, just use: write_binary_stl(path, points) ``` +## Reading and Saving Mesh Files + +To read the points from a mesh file use `read_mesh(file)` and to save use `save_mesh(file, points)`. +The format of the file is determined by the suffix. For a full list of supported formats, refer to +meshio. The additonal STEP file format is only available for saving. + +An example of reading a STL file, simplifying it, and then writing it out as a STEP file: + +```python +points = read_mesh("my_mesh.stl") # This reads a STL file +points = simplify(points) # Reduce the mesh to about half +save_mesh("my_mesh.stp",points) # Write the mesh out to a STEP file +``` + ## Visualizing the SDF @@ -218,7 +263,7 @@ surprisingly fast (for marching cubes). Meshes of adequate detail can still be quite large in terms of number of triangles. The core "engine" of the `sdf` library is very small and can be found in -[mesh.py](https://github.com/fogleman/sdf/blob/main/sdf/mesh.py). +[mesh.py](sdf/mesh.py). In short, there is nothing algorithmically revolutionary here. The goal is to provide a simple, fun, and easy-to-use API for generating 3D models in our @@ -226,15 +271,15 @@ favorite language Python. ## Files -- [sdf/d2.py](https://github.com/fogleman/sdf/blob/main/sdf/d2.py): 2D signed distance functions -- [sdf/d3.py](https://github.com/fogleman/sdf/blob/main/sdf/d3.py): 3D signed distance functions -- [sdf/dn.py](https://github.com/fogleman/sdf/blob/main/sdf/dn.py): Dimension-agnostic signed distance functions -- [sdf/ease.py](https://github.com/fogleman/sdf/blob/main/sdf/ease.py): [Easing functions](https://easings.net/) that operate on numpy arrays. Some SDFs take an easing function as a parameter. -- [sdf/mesh.py](https://github.com/fogleman/sdf/blob/main/sdf/mesh.py): The core mesh-generation engine. Also includes code for estimating the bounding box of an SDF and for plotting a 2D slice of an SDF with matplotlib. -- [sdf/progress.py](https://github.com/fogleman/sdf/blob/main/sdf/progress.py): A console progress bar. -- [sdf/stl.py](https://github.com/fogleman/sdf/blob/main/sdf/stl.py): Code for writing a binary [STL file](https://en.wikipedia.org/wiki/STL_(file_format)). -- [sdf/text.py](https://github.com/fogleman/sdf/blob/main/sdf/text.py): Generate 2D SDFs for text (which can then be extruded) -- [sdf/util.py](https://github.com/fogleman/sdf/blob/main/sdf/util.py): Utility constants and functions. +- [sdf/d2.py](sdf/d2.py): 2D signed distance functions +- [sdf/d3.py](sdf/d3.py): 3D signed distance functions +- [sdf/dn.py](sdf/dn.py): Dimension-agnostic signed distance functions +- [sdf/ease.py](sdf/ease.py): [Easing functions](https://easings.net/) that operate on numpy arrays. Some SDFs take an easing function as a parameter. +- [sdf/mesh.py](sdf/mesh.py): The core mesh-generation engine. Also includes code for estimating the bounding box of an SDF and for plotting a 2D slice of an SDF with matplotlib. +- [sdf/progress.py](sdf/progress.py): A console progress bar. +- [sdf/stl.py](sdf/stl.py): Code for writing a binary [STL file](https://en.wikipedia.org/wiki/STL_(file_format)). +- [sdf/text.py](sdf/text.py): Generate 2D SDFs for text (which can then be extruded) +- [sdf/util.py](sdf/util.py): Utility constants and functions. ## SDF Implementation @@ -296,6 +341,8 @@ See the [customizable box example](examples/customizable_box.py) for some starti ### sphere +Draw a sphere with the radius centered around `center`, by default this is the origin (0,0,0). + `sphere(radius=1, center=ORIGIN)` @@ -308,12 +355,14 @@ f = sphere(1, (1, 2, 3)) # translated sphere ### box +Draw a 3D box with sides specified centered around `center`, by default this is the origin (0,0,0). + `box(size=1, center=ORIGIN, a=None, b=None)` ```python -f = box(1) # all side lengths = 1 +f = box(1) # all side lengths = 1, like a cube f = box((1, 2, 3)) # different side lengths f = box(a=(-1, -1, -1), b=(3, 4, 5)) # specified by bounds ``` @@ -322,15 +371,20 @@ f = box(a=(-1, -1, -1), b=(3, 4, 5)) # specified by bounds -`rounded_box(size, radius)` +Draw a 3D rounded box with sides specified centered around `center`, by default this is the origin (0,0,0). The radius of curvature is specified by `radius`. + +`rounded_box(size, radius, center=ORIGIN)` ```python f = rounded_box((1, 2, 3), 0.25) ``` ### wireframe_box + +Draw a 3D box with round wires (diameter is specified by thickness) and centered around `center`, by default this is the origin (0,0,0). The radius of curvature is specified by `radius`. + `wireframe_box(size, thickness)` ```python @@ -338,8 +392,11 @@ f = wireframe_box((1, 2, 3), 0.05) ``` ### torus + +torus is like a doughnut shape, like a circle with radius, `r2`, rotated around the `Z` axis at a radius, `r1`, from the center. + `torus(r1, r2)` ```python @@ -347,8 +404,11 @@ f = torus(1, 0.25) ``` ### capsule + +capsule is a cylinder with rounded ends extending from `-Z` to `Z` and having the radius, `radius`. + `capsule(a, b, radius)` ```python @@ -356,17 +416,24 @@ f = capsule(-Z, Z, 0.5) ``` ### capped_cylinder + +capped_cylinder is a flat ended cylinder extending from `a` to `b`, both 3D vectors, and having the radius, `radius`. + `capped_cylinder(a, b, radius)` ```python +# note: Z = np.array((0, 0, 1)) f = capped_cylinder(-Z, Z, 0.5) ``` ### rounded_cylinder + +rounded_cylinder is a flat ended cylinder with curved edges extending from `a` to `b`, scalers along the Z axis, and having the radius, `ra`, and the edges having a radius of `rb`. + `rounded_cylinder(ra, rb, h)` ```python @@ -377,9 +444,12 @@ f = rounded_cylinder(0.5, 0.1, 2) +capped_cone is a flat ended cone extending from `a` to `b`, both 3D vectors, and having the radii, `ra` and `rb`. + `capped_cone(a, b, ra, rb)` ```python +# note: Z = np.array((0, 0, 1)) f = capped_cone(-Z, Z, 1, 0.5) ``` @@ -387,6 +457,8 @@ f = capped_cone(-Z, Z, 1, 0.5) +rounded_cone is a hemisphere ended cone extending along the Z axis from 0 to `h`, and having the radii, `r1` and `r2`. + `rounded_cone(r1, r2, h)` ```python @@ -397,6 +469,8 @@ f = rounded_cone(0.75, 0.25, 2) +ellipsoid is like a distored sphere centered at the origin, size is specified by a 3D array of scalars. + `ellipsoid(size)` ```python @@ -407,6 +481,10 @@ f = ellipsoid((1, 2, 3)) +pyramid is the simplest 3D flat sided object, consisting of one side being a +triangle at the base and 3 more equal sized triangles matching those edges and +meeting at the point `h` along the `Z` axis. + `pyramid(h)` ```python @@ -455,10 +533,45 @@ f = dodecahedron(1) f = icosahedron(1) ``` +## Infinite 2D Primitives + +The following SDFs extend to infinity in some or all axes. They can only +effectively be used in combination with other shapes, as shown in the examples +below. + +### line + + + +`line(normal=UP, point=ORIGIN)` + +`line` is an infinite cut line, with the positive side being inside and the +negative side being outside. + +```python +f = (circle() & line()).extrude(0.1) +``` + +### crop + + + +`crop(x0=None, y0=None, x1=None, y1=None, k=None)` + +`crop` is useful for cutting a shape on one or more axis-aligned planes. Note +that one can accomplish the same affect by four line cuts with axis normals and +points defined on the edges. + +```python +f = (circle() & crop(y0=-0.5, y1=0.5, x0=0)).extrude(0.1) +``` + + ## Infinite 3D Primitives -The following SDFs extend to infinity in some or all axes. -They can only effectively be used in combination with other shapes, as shown in the examples below. +The following SDFs extend to infinity in some or all axes. They can only +effectively be used in combination with other shapes, as shown in the examples +below. ### plane @@ -466,7 +579,8 @@ They can only effectively be used in combination with other shapes, as shown in `plane(normal=UP, point=ORIGIN)` -`plane` is an infinite plane, with one side being positive (outside) and one side being negative (inside). +`plane` is an infinite plane, with the positive side being inside and the +negative side being outside. ```python f = sphere() & plane() @@ -478,7 +592,9 @@ f = sphere() & plane() `slab(x0=None, y0=None, z0=None, x1=None, y1=None, z1=None, k=None)` -`slab` is useful for cutting a shape on one or more axis-aligned planes. +`slab` is useful for cutting a shape on one or more axis-aligned planes. Note +that the same effect can be accomplished by using multiple planes cutting with +a normal starting at points on the cut plane. ```python f = sphere() & slab(z0=-0.5, z1=0.5, x0=0) @@ -490,7 +606,9 @@ f = sphere() & slab(z0=-0.5, z1=0.5, x0=0) `cylinder(radius)` -`cylinder` is an infinite cylinder along the Z axis. +`cylinder` is an infinite cylinder along the Z axis. This is useful for +cutting a hole in an object (- operation) or widdling down an object +so it fits within a cylinder (& operation). ```python f = sphere() - cylinder(0.5) @@ -498,9 +616,9 @@ f = sphere() - cylinder(0.5) ## Text -Yes, even text is supported! +

-![Text](docs/images/text-large.png) +Yes, even text is supported! `text(font_name, text, width=None, height=None, pixels=PIXELS, points=512)` @@ -511,7 +629,7 @@ TEXT = 'Hello, world!' w, h = measure_text(FONT, TEXT) f = rounded_box((w + 1, h + 1, 0.2), 0.1) -f -= text(FONT, TEXT).extrude(1) +f -= text(FONT, TEXT).extrude(0.2).k(0.05) ``` Note: [PIL.ImageFont](https://pillow.readthedocs.io/en/stable/reference/ImageFont.html), @@ -552,6 +670,10 @@ f = sphere().translate((0, 0, 2)) +Scale and figure larger or smaller with `factor`. Unity, 1.0, will leave the +object the same and smaller numbers will shrink, such as 0.5 which scales to +half the size, and 2.0 which scales to double the size. + `scale(other, factor)` Note that non-uniform scaling is an inexact SDF. @@ -561,14 +683,47 @@ f = sphere().scale(2) f = sphere().scale((1, 2, 3)) # non-uniform scaling ``` -### rotate +### rotate and rotateD +Given an angle and rotation vector, rotate the figure by `angle` in radians +(for rotate) or degrees (for rotateD), around the vector axis. So a rotation +around Z will translate points around the X-Y plane and leave the Z values the +same. + `rotate(other, angle, vector=Z)` +`rotateD(other, angle_in_degrees, vector=Z)` ```python f = capped_cylinder(-Z, Z, 0.5).rotate(pi / 4, X) +f = capped_cylinder(-Z, Z, 0.5).rotateD(45, X) +``` + +### mirror + + + +This function reflects the 3d image over the plane specified by the vector. +For example, using `Z` will reflect across the `Z` plane mapping every positive +`Z` point to it's negative counterpart and vice versa. + +`mirror(other, vector, center=ORIGIN)` + +```python +f = circle(3).taper_extrude(3,1).translate((0,0,-3)) +# draw it again upside down +f |= circle(3).taper_extrude(3,1).translate((0,0,-3)).mirror([0,0,1]) +``` + +### mirror_copy + + + +`mirror_copy(other, vector, center=ORIGIN)` + +```python +f = circle(3).taper_extrude(3,1).translate((0,0,-3)).mirror_copy([0,0,1]) ``` ### orient @@ -702,10 +857,23 @@ f = capped_cylinder(-Z, Z, 0.5).circular_array(8, 4) ## Miscellaneous + + +Some of the functions demonstrated below use an example as a starting point: + +```python +f = sphere(1) & box(1.5) +c = cylinder(0.5) +f -= c.orient(X) | c.orient(Y) | c.orient(Z) +example = f +``` + ### blend +Blending of two objects using the scalar distance function between values of two objects with scalar k. + `blend(a, *bs, k=0.5)` ```python @@ -716,6 +884,8 @@ f = sphere().blend(box()) +Decrease the scalar distance value by radius, `r`, making the object edges dilate, or appear to inflate. + `dilate(other, r)` ```python @@ -726,6 +896,8 @@ f = example.dilate(0.1) +Increase the scalar distance value by radius, `r`, making the object edges erode, or appear to deflate. + `erode(other, r)` ```python @@ -736,6 +908,8 @@ f = example.erode(0.1) +Create a shell at every boundary, where the scalar distance value crosses positive and negative values. The thickness of the shell created on the edge is defined by `thickness`. + `shell(other, thickness)` ```python @@ -816,6 +990,10 @@ f = box().transition_radial(sphere(), e=ease.in_out_quad) +This function will take an XYZ cartesian coordinate space and convert into +polar coordinates where the X axis is mapped into the radial axis, Y axis into +the angular, and Z is left alone. + `wrap_around(other, x0, x1, r=None, e=ease.linear)` ```python @@ -837,26 +1015,102 @@ f = text(FONT, TEXT).extrude(0.1).orient(Y).wrap_around(-w / 2, w / 2) f = hexagon(1).extrude(1) ``` +### rounded_extrude + + + +Extrude a 2D and add round edges on border. + +`rounded_extrude(other, h, radius=0)` + +```python +f = hexagon(10).rounded_extrude(5, radius=2) +``` + + + +Note: when using a negative value, the rounding will go in the opposite direction. + +```python +f = hexagon(10).rounded_extrude(5, radius=-2) +``` + +### rounded_extrude_stack + + + +Extrude two 2D images and add round edges on border and at the intersection weld the joints. + +`rounded_extrude_stack(other_bottom, other_top, height_bottom, height_top, radius)` + +To increase tensile strength, sometimes it is useful to add more material at +joints, so increasing the weld_radius will add more fill. + +`rounded_extrude_stack(other_bottom, other_top, height_bottom, height_top, radius, weld_radius)` + +```python +f = rounded_extrude_stack(rectangle([16,6]),rectangle([6,16]), 5, 7, radius=1) +# to alter the weld radius between the two objects: +f = rounded_extrude_stack(rectangle([16,6]),rectangle([6,16]), 5, 7, radius=1, weld_radius=2): +``` + ### extrude_to +`extrude_to` takes two different 2D objects and blends them together by an ease +operator, by default it is linear, so as to make a smooth transition between +the two objects. + `extrude_to(a, b, h, e=ease.linear)` ```python f = rectangle(2).extrude_to(circle(1), 2, ease.in_out_quad) ``` +### taper_extrude + + + +In `taper_extrude`, slope is the amount of contracting per unit Z over the +height of the extrude. A negative value will cause the image to expand and +corners will become a larger rounded edge. + +`taper_extrude(other, height, slope=0, e=ease.linear)` + +```python +f = rectangle(10).taper_extrude(6, slope=0.1) +``` + + ### revolve +`revolve` takes a 2D object and rotates it around the `Z` axis. Offset is how +far the center point is moved away from the origin on the `XY` plane. + `revolve(other, offset=0)` ```python f = hexagon(1).revolve(3) ``` +### helix_revolve + + + +`helix_revolve` will take a 2D object and rotate it around the `Z` axis while +linearly moving in a helix toward positive `Z`. A practical use for this is to +create threads. By negating pitch, one can reverse the thread, changing the +rotation from right-handed to left-handed. + +`helix_revolve(other, offset=0, pitch=1, rotations=1)` + +```python +f = polygon([[3,0],[4,.5],[4,1],[3,1.5]]).helix_revolve(pitch=2, rotations=4.3) +``` + ## 3D to 2D Operations ### slice @@ -871,11 +1125,264 @@ f = example.translate((0, 0, 0.55)).slice().extrude(0.1) ## 2D Primitives +Note: The examples 2D functions below are called and then extruded to show how +to convert a 2D to a 3D. + ### circle -### line + + + +`circle(radius=1, center=ORIGIN)` + +```python +f = circle(2).extrude(0.1) +``` + ### rectangle + + + +`rectangle(size=1, center=ORIGIN, a=None, b=None)` + +```python +f = rectangle([2,1]).extrude(0.1) +# or you can specify the corners: +f = rectangle(a=[-2,-1],b=[2,1]).extrude(0.1) +``` + ### rounded_rectangle + + + +`rounded_rectangle(size=1, radius=0.1, center=ORIGIN, a=None, b=None)` + +```python +f = rounded_rectangle([2,1],0.2).extrude(0.1) +# or you can specify the corners: +f = rectangle(a=[-2,-1],b=[2,1],radius=0.2).extrude(0.1) +``` + ### equilateral_triangle + + + +`equilateral_triangle(r, center=ORIGIN)` + +```python +f = equilateral_triangle(3).extrude(0.1) +``` + ### hexagon + + + +`hexagon(r)` + +```python +f = hexagon(2).extrude(0.1) +``` + +### equilateral_polygon + + + +`equilateral_polygon(n, r)` + +`equilateral_polygon` makes a shape with equal sides, for example `n=3` is a +triangle, `n=4` is square, `n=5` is a pentagon, and so forth. Note: The right edge +will always be vertical and the radius is the distance to the center of a flat face. + +```python +f = equilateral_polygon(5,10).extrude(0.1) +``` + ### rounded_x + + + +`rounded_x(w, r)` + +```python +f = rounded_x(10,2).extrude(0.1) +``` + +### rounded_cog + + + +`rounded_cog(outer_r, cog_r, num)` + +```python +f = rounded_cog(38, 6, 14).extrude(0.1) +``` + ### polygon + + + +`polygon(points)` + +```python +f = polygon([[-16,-16],[14,-8],[3,4],[0,12]]).extrude(0.1) +``` + +### rounded_polygon + + + +The points provided to the curve polygon are in the form of [x,y,curve_radius] where a +curve_radius value of negative will create an arc in the left hand rotation and +positive in the right hand rotation. A curve_radius of 0 implies a straight line. + +`rounded_polygon(points_with_curve)` + +```python +f = rounded_polygon([[-2,0,0],[0,2,-2**0.5],[2,0,-2**0.5],[0,-2,0]]).extrude(0.1) +``` + +## Rounded Polygon Operations + +### round_polygon_corners + + + +This function will change +When matching three curves, concave-convex-concave or convex-concave-convex, this function +will move the points along the outer curves in order to match the center curve exactly. + +`round_polygon_corners(points_with_curve, radius)` +`round_polygon_corners(points_with_curve, [radii...], [index_of_vertex...])` + +```python +pts1 = [[10,0,0],[1,1,-20],[3,10,0]] +pts2 = [[-10,0,0],[-1,1,20],[-3,10,0]] +pts3 = [[10,-10,0],[1,-9,-18],[3,0,20]] +pts4 = [[-10,-10,0],[-1,-9,-18],[-3,0,20]] +f = rounded_polygon(pts1).shell(0.1).extrude(0.1) +f |= rounded_polygon(pts2).shell(0.1).extrude(0.1) +f |= rounded_polygon(pts3).shell(0.1).extrude(0.1) +f |= rounded_polygon(pts4).shell(0.1).extrude(0.1) +rpts1 = round_polygon_corners(pts1,1) +rpts2 = round_polygon_corners(pts2,1) +rpts3 = round_polygon_corners(pts3,1) +rpts4 = round_polygon_corners(pts4,1) +f |= rounded_polygon(rpts1).extrude(0.1) +f |= rounded_polygon(rpts2).extrude(0.1) +f |= rounded_polygon(rpts3).extrude(0.1) +f |= rounded_polygon(rpts4).extrude(0.1) +``` + +### round_polygon_smooth_ends + + + +When matching three curves, concave-convex-concave or convex-concave-convex, this function +will move the points along the outer curves in order to match the center curve exactly. + +`round_polygon_smooth_ends(index_of_side_to_modify)` + +```python +pts = [[3,0,0],[2,0,-0.75],[1,0,2],[0,0,-0.75],[0,1,0],[3,1,0]] +f = rounded_polygon(pts).translate((0,3)).shell(0.1).extrude(0.1) +rpts = round_polygon_smooth_ends(pts,[1]) +f |= rounded_polygon(rpts).shell(0.1).extrude(0.1) +``` + +## 2D Operations + +### edge + + + +`edge(width)` + +```python + +f = rounded_polygon([ + [-4,-1,0],[-6,-1,-1],[-6,1,-1], [-4,1,-1], [-1,1,0], # Left + [-1,4,0], [-1,6,-1], [1,6,-1], [1,4,-1], [1,1,0], # Top + [4,1,0], [6,1,-1], [6,-1,-1], [4,-1,-1], [1,-1,0], # Right + [1,-8,0], [1,-10,-1],[-1,-10,-1],[-1,-8,-1],[-1,-1,0] # Bottom + ]).edge(0.1).extrude(0.1) +``` + +### mirror + + + +`mirror(other, axis=Y, center=ORIGIN)` + +``` +s = circle(2).translate((3,3)) +# draw another on the side, mirrored over the negative X +s |= circle(2).translate((3,3)).mirror([1,0]) +f = s.extrude(0.1) +``` + +### mirror_copy + + + +`mirror_copy(other, axis=Y, center=ORIGIN)` + +```python +s = circle(2).translate((3,3)).mirror_copy([1, 0.1]) +f = s.extrude(0.1) +``` + +## Math Functions + +Standard math routines provided by Python are available, and additional functions available are: + +### Trigonometric +`arc_sinD(slope)` +`arc_cosD(slope)` +`arc_tanD(slope)` +`arc_tan2D(y,x)` + +Returns an angle in degrees. + +`sinD(ang)` +`cosD(ang)` +`tanD(ang)` + +Takes degrees and returns the trigonometric value. + +## Building GCODE output + +To make GCODE files, one needs to choose between which method to print, either additive method (such as plastic printing) or subtractive (such as CNC milling). These two interfaces rely on external packages, in particular slic3r and pycam. To call them, use the following functions: + +```python +f = sphere(1) +points = f.generate(samples=None,step=resolution,batch_size=48, simplify=True, simp_agressive=7,simp_ratio=0.1) +``` + +The two methods below use the existing python code for generating a figure. + +### Slic3r + +```python +# Write out gcode for this object for additive manufacturing +# Usage and details can be found https://manual.slic3r.org/ +slic3r("steeringwheel.gcode",points,options={'layer-height': 0.2}) + +#slic3r("steeringwheel.gcode",points,options={ +# 'layer-height': 0.2, +# 'nozzle-diameter': 0.35, +# 'filament-diameter': 2.85, +# 'temperature': 185, +# 'first-layer-temperature': 195, +# 'layer-height': 0.2, +# }) +``` + +### PyCAM + +```python +# Write out gcode for this object for cnc manufacturing +pycam("pycnc_steeringwheel_rough.yaml",points) +``` + +an example yaml file is provided in the pycam project here: + +https://raw.githubusercontent.com/eddeliu/pycam-1/master/yaml_flow_example.yml diff --git a/docs/Makefile b/docs/Makefile new file mode 100644 index 00000000..881bd330 --- /dev/null +++ b/docs/Makefile @@ -0,0 +1,13 @@ +all: req go doc +#examples +req: + python3 -m pip -q install scikit-image numpy meshio + which cabextract || sudo yum install -q -y curl cabextract xorg-x11-font-utils fontconfig + [ -e /usr/share/fonts/msttcore/ ] || sudo yum install -q -y https://downloads.sourceforge.net/project/mscorefonts2/rpms/msttcore-fonts-installer-2.6-1.noarch.rpm +go: + go build -o render render.go +doc: + PYTHONPATH=.. python3 render.py +examples: + cd ../examples; for p in *.py; do [ -s $${p%.py}.stl ] || PYTHONPATH=.. python3 $$p; done + for f in $$( cd ../examples; ls -1 *.stl); do [ -s images/$${f%.stl}.png ] || go run render.go ../examples/$$f images/$${f%.stl}.png; done diff --git a/docs/images/2d_circle.png b/docs/images/2d_circle.png new file mode 100644 index 00000000..52bed4b2 Binary files /dev/null and b/docs/images/2d_circle.png differ diff --git a/docs/images/2d_crop.png b/docs/images/2d_crop.png new file mode 100644 index 00000000..9d5b53f1 Binary files /dev/null and b/docs/images/2d_crop.png differ diff --git a/docs/images/2d_edge.png b/docs/images/2d_edge.png new file mode 100644 index 00000000..81a9459a Binary files /dev/null and b/docs/images/2d_edge.png differ diff --git a/docs/images/2d_equilateral_polygon.png b/docs/images/2d_equilateral_polygon.png new file mode 100644 index 00000000..9b16e45c Binary files /dev/null and b/docs/images/2d_equilateral_polygon.png differ diff --git a/docs/images/2d_equilateral_triangle.png b/docs/images/2d_equilateral_triangle.png new file mode 100644 index 00000000..91d4a48e Binary files /dev/null and b/docs/images/2d_equilateral_triangle.png differ diff --git a/docs/images/2d_hexagon.png b/docs/images/2d_hexagon.png new file mode 100644 index 00000000..60596023 Binary files /dev/null and b/docs/images/2d_hexagon.png differ diff --git a/docs/images/2d_line.png b/docs/images/2d_line.png new file mode 100644 index 00000000..6cad4e2b Binary files /dev/null and b/docs/images/2d_line.png differ diff --git a/docs/images/2d_mirror.png b/docs/images/2d_mirror.png new file mode 100644 index 00000000..e092af21 Binary files /dev/null and b/docs/images/2d_mirror.png differ diff --git a/docs/images/2d_mirror_copy.png b/docs/images/2d_mirror_copy.png new file mode 100644 index 00000000..46c31fd4 Binary files /dev/null and b/docs/images/2d_mirror_copy.png differ diff --git a/docs/images/2d_polygon.png b/docs/images/2d_polygon.png new file mode 100644 index 00000000..2dce34e5 Binary files /dev/null and b/docs/images/2d_polygon.png differ diff --git a/docs/images/2d_rectangle.png b/docs/images/2d_rectangle.png new file mode 100644 index 00000000..ce13e157 Binary files /dev/null and b/docs/images/2d_rectangle.png differ diff --git a/docs/images/2d_round_polygon_corners.png b/docs/images/2d_round_polygon_corners.png new file mode 100644 index 00000000..8d180374 Binary files /dev/null and b/docs/images/2d_round_polygon_corners.png differ diff --git a/docs/images/2d_round_polygon_smooth_ends.png b/docs/images/2d_round_polygon_smooth_ends.png new file mode 100644 index 00000000..26c0a5ea Binary files /dev/null and b/docs/images/2d_round_polygon_smooth_ends.png differ diff --git a/docs/images/2d_rounded_cog.png b/docs/images/2d_rounded_cog.png new file mode 100644 index 00000000..c40afffc Binary files /dev/null and b/docs/images/2d_rounded_cog.png differ diff --git a/docs/images/2d_rounded_polygon.png b/docs/images/2d_rounded_polygon.png new file mode 100644 index 00000000..4c00858f Binary files /dev/null and b/docs/images/2d_rounded_polygon.png differ diff --git a/docs/images/2d_rounded_rectangle.png b/docs/images/2d_rounded_rectangle.png new file mode 100644 index 00000000..ab6b2488 Binary files /dev/null and b/docs/images/2d_rounded_rectangle.png differ diff --git a/docs/images/2d_rounded_x.png b/docs/images/2d_rounded_x.png new file mode 100644 index 00000000..8cd3beb7 Binary files /dev/null and b/docs/images/2d_rounded_x.png differ diff --git a/docs/images/2d_shell.png b/docs/images/2d_shell.png new file mode 100644 index 00000000..39bb9918 Binary files /dev/null and b/docs/images/2d_shell.png differ diff --git a/docs/images/2d_text.png b/docs/images/2d_text.png new file mode 100644 index 00000000..92520e83 Binary files /dev/null and b/docs/images/2d_text.png differ diff --git a/docs/images/box.png b/docs/images/box.png deleted file mode 100644 index 388d87e8..00000000 Binary files a/docs/images/box.png and /dev/null differ diff --git a/docs/images/handwheel.png b/docs/images/handwheel.png new file mode 100644 index 00000000..1af0534c Binary files /dev/null and b/docs/images/handwheel.png differ diff --git a/docs/images/helix_revolve.png b/docs/images/helix_revolve.png new file mode 100644 index 00000000..9c6f28c5 Binary files /dev/null and b/docs/images/helix_revolve.png differ diff --git a/docs/images/image.png b/docs/images/image.png new file mode 100644 index 00000000..897ac897 Binary files /dev/null and b/docs/images/image.png differ diff --git a/docs/images/knurling.png b/docs/images/knurling.png index 51d68e17..059d7013 100644 Binary files a/docs/images/knurling.png and b/docs/images/knurling.png differ diff --git a/docs/images/mirror.png b/docs/images/mirror.png new file mode 100644 index 00000000..ed8652d6 Binary files /dev/null and b/docs/images/mirror.png differ diff --git a/docs/images/mirror_copy.png b/docs/images/mirror_copy.png new file mode 100644 index 00000000..ed8652d6 Binary files /dev/null and b/docs/images/mirror_copy.png differ diff --git a/docs/images/out.png b/docs/images/out.png new file mode 100644 index 00000000..bc7cee7a Binary files /dev/null and b/docs/images/out.png differ diff --git a/docs/images/pawn.png b/docs/images/pawn.png new file mode 100644 index 00000000..52455aec Binary files /dev/null and b/docs/images/pawn.png differ diff --git a/docs/images/rounded_cylinder.png b/docs/images/rounded_cylinder.png index 0746798b..ad33fa1b 100644 Binary files a/docs/images/rounded_cylinder.png and b/docs/images/rounded_cylinder.png differ diff --git a/docs/images/rounded_extrude.png b/docs/images/rounded_extrude.png new file mode 100644 index 00000000..f4012862 Binary files /dev/null and b/docs/images/rounded_extrude.png differ diff --git a/docs/images/rounded_extrude_neg.png b/docs/images/rounded_extrude_neg.png new file mode 100644 index 00000000..e94610a7 Binary files /dev/null and b/docs/images/rounded_extrude_neg.png differ diff --git a/docs/images/rounded_extrude_stack.png b/docs/images/rounded_extrude_stack.png new file mode 100644 index 00000000..876f8fb1 Binary files /dev/null and b/docs/images/rounded_extrude_stack.png differ diff --git a/docs/images/scale_extrude.png b/docs/images/scale_extrude.png new file mode 100644 index 00000000..23ac5204 Binary files /dev/null and b/docs/images/scale_extrude.png differ diff --git a/docs/images/spinning_top.png b/docs/images/spinning_top.png new file mode 100644 index 00000000..5a433371 Binary files /dev/null and b/docs/images/spinning_top.png differ diff --git a/docs/images/steering_wheel.png b/docs/images/steering_wheel.png new file mode 100644 index 00000000..289bc26a Binary files /dev/null and b/docs/images/steering_wheel.png differ diff --git a/docs/images/steering_wheel_1.png b/docs/images/steering_wheel_1.png new file mode 100644 index 00000000..9afbcf85 Binary files /dev/null and b/docs/images/steering_wheel_1.png differ diff --git a/docs/images/taper_extrude.png b/docs/images/taper_extrude.png new file mode 100644 index 00000000..6fcf08b6 Binary files /dev/null and b/docs/images/taper_extrude.png differ diff --git a/docs/images/text.png b/docs/images/text.png index 1506cdb6..67636a99 100644 Binary files a/docs/images/text.png and b/docs/images/text.png differ diff --git a/docs/images/weave.png b/docs/images/weave.png index a28a199a..46b5a7ae 100644 Binary files a/docs/images/weave.png and b/docs/images/weave.png differ diff --git a/docs/images/wheel.png b/docs/images/wheel.png new file mode 100644 index 00000000..11780f98 Binary files /dev/null and b/docs/images/wheel.png differ diff --git a/docs/images/wheel_basic.png b/docs/images/wheel_basic.png new file mode 100644 index 00000000..ad32c53b Binary files /dev/null and b/docs/images/wheel_basic.png differ diff --git a/docs/render.go b/docs/render.go index 218293ca..ec8303d2 100644 --- a/docs/render.go +++ b/docs/render.go @@ -4,10 +4,13 @@ import ( "fmt" "log" "os" + "path" + "strings" "time" . "github.com/fogleman/fauxgl" "github.com/nfnt/resize" + cutter "github.com/pschou/go-cutter" ) const ( @@ -33,6 +36,8 @@ var ( modelColor = HexColor("2185C5") background = Transparent + + showAxis = true ) func main() { @@ -42,6 +47,19 @@ func main() { log.Fatal("Usage: go run render.go input.stl output.png") } + if strings.HasPrefix(path.Base(os.Args[1]), "2d_") { + fmt.Println("Using 2d perspective") + eye = V(0, 0, 4) + center = V(0, 0, 0) + up = V(0, 1, 0) + modelLight = V(0.5, 0.5, 2).Normalize() + showAxis = false + //eye = V(1.5, 1.5, 3) + //up = V(1, 0, 0) + //center = V(.5, .5, 0) + //zColor = Transparent + } + // load mesh mesh, err := LoadMesh(os.Args[1]) if err != nil { @@ -64,7 +82,7 @@ func main() { matrix = matrix.Orthographic(-2, 2, -2, 2, near, far) // render axes and origin - { + if showAxis { shader := NewPhongShader(matrix, axisLight.Normalize(), eye) shader.AmbientColor = Gray(0.4) shader.DiffuseColor = Gray(0.7) @@ -122,5 +140,47 @@ func main() { // save image image := context.Image() image = resize.Resize(width, height, image, resize.Bilinear) + + // crop off 2d images + if strings.HasPrefix(path.Base(os.Args[1]), "2d_") { + image, _ = cutter.TrimAlpha(image) + // bounds := image.Bounds() + // minY := bounds.Min.Y + // maxY := bounds.Max.Y + // minX := bounds.Min.X + // maxX := bounds.Max.X + // for has_image := false; minY < maxY && !has_image; minY++ { + // for i := minX; i < maxX; i++ { + // _, _, _, A := image.At(i, minY).RGBA() + // has_image = has_image || (A != 0) + // } + // } + // for has_image := false; minY < maxY && !has_image; maxY-- { + // for i := maxX - 1; i >= minX; i-- { + // _, _, _, A := image.At(i, maxY).RGBA() + // has_image = has_image || (A != 0) + // } + // } + // for has_image := false; minX < maxX && !has_image; minX++ { + // for i := minY; i < maxY; i++ { + // _, _, _, A := image.At(minX, i).RGBA() + // has_image = has_image || (A != 0) + // } + // } + // for has_image := false; minX < maxX && !has_image; maxX-- { + // for i := maxY - 1; i >= minY; i-- { + // _, _, _, A := image.At(maxX, i).RGBA() + // has_image = has_image || (A != 0) + // } + // } + // //fmt.Println("minX", minX, "minY", minY, "maxX", maxX, "maxY", maxY) + // + // image, _ = cutter.Crop(image, cutter.Config{ + // Width: maxX - minX + 2, + // Height: maxY - minY + 2, + // Anchor: go_image.Point{minX - 1, minY - 1}, + // Mode: cutter.TopLeft, // optional, default value + // }) + } SavePNG(os.Args[2], image) } diff --git a/docs/render.py b/docs/render.py index 5a5c1a9f..5b2571d7 100644 --- a/docs/render.py +++ b/docs/render.py @@ -24,8 +24,8 @@ def generate(f, name, samples=2**26, **kwargs): generate(f, 'sphere') # box(size=1, center=ORIGIN, a=None, b=None) -f = box(1) -generate(f, 'box') +#f = box(1) +#generate(f, 'cube') f = box((1, 2, 3)) generate(f, 'box2') @@ -50,8 +50,8 @@ def generate(f, name, samples=2**26, **kwargs): f = capped_cylinder(-Z, Z, 0.5) generate(f, 'capped_cylinder') -# rounded_cylinder(ra, rb, h) -f = rounded_cylinder(0.5, 0.1, 2) +# rounded_cylinder +f = rounded_cylinder(0, 2, 0.5, 0.1) generate(f, 'rounded_cylinder') # capped_cone(a, b, ra, rb) @@ -201,22 +201,177 @@ def generate(f, name, samples=2**26, **kwargs): f = hexagon(1).extrude(1) generate(f, 'extrude') +# rounded_extrude(other, h, radius=0): +f = hexagon(10).rounded_extrude(5, radius=2) +generate(f, 'rounded_extrude') + +# rounded_extrude(other, h, radius=-0): +f = hexagon(10).rounded_extrude(5, radius=-2) +generate(f, 'rounded_extrude_neg') + +# rounded_extrude_stack(other_bottom, other_top, height_bottom, height_top, radius=-0): +f = rounded_extrude_stack(rectangle([16,6]),rectangle([6,16]), 5, 7, radius=1) +generate(f, 'rounded_extrude_stack') + # extrude_to(a, b, h, e=ease.linear) f = rectangle(2).extrude_to(circle(1), 2, ease.in_out_quad) generate(f, 'extrude_to') +# scale_extrude(scale=1, h): +f = rectangle(10).scale_extrude(6, top=0.8) +generate(f, 'scale_extrude') + +# taper_extrude(scale=1, h): +f = rectangle(10).taper_extrude(6, slope=0.1) +generate(f, 'taper_extrude') + # revolve(other, offset=0) f = hexagon(1).revolve(3) generate(f, 'revolve') +#f=polygon([[3,0],[4,0.5],[4,1],[3.5,1.5]]) +#print("result: {}".format(f(np.array([[0,1],[3.5,0],[3.9,1],[4.5,1],[3.5,2]])))) +#print("should be 0 0 1 0 0") + +# helix_revolve(other, offset=0, pitch=1): +f = polygon([[3,0],[4,.5],[4,1],[3,1.5]]).helix_revolve(pitch=2, rotations=4.3) +generate(f, 'helix_revolve') + +# 2d rectangle +f = rectangle([2,1]).extrude(0.1) +#f = rectangle(a=[-2,-1],b=[2,1]).extrude(0.1) +generate(f, '2d_rectangle') + +# 2d rounded_rectangle +f = rounded_rectangle([2,1],0.2).extrude(0.1) +#f = rounded_rectangle(a=[-2,-1],b=[2,1],radius=0.2).extrude(0.1) +generate(f, '2d_rounded_rectangle') + +# 2d equilateral_triangle +f = equilateral_triangle(3).extrude(0.1) +generate(f, '2d_equilateral_triangle') + +# 2d n_gon +f = equilateral_polygon(5,10).extrude(0.1) +generate(f, '2d_equilateral_polygon') + +# 2d hexagon +f = hexagon(2).extrude(0.1) +generate(f, '2d_hexagon') + +# 2d circle +f = circle(2).extrude(0.1) +generate(f, '2d_circle') + +# 2d line +f = (circle() & line()).extrude(0.1) +generate(f, '2d_line') + +# 2d crop +f = (circle() & crop(y0=-0.5, y1=0.5, x0=0)).extrude(0.1) +generate(f, '2d_crop') + +# line +#f = line(normal=[0,1], point=[0,0]).extrude(0.1).skin(0.1) +#generate(f, '2d_line') + +# polygon +f = polygon([[-16,-16],[14,-8],[3,4],[0,12]]).extrude(0.1) +generate(f, '2d_polygon') + +# rounded_x +f = rounded_x(10,2).extrude(0.1) +generate(f, '2d_rounded_x') + +# rounded_polygon +f = rounded_polygon([[-2,0,0],[0,2,-2**0.5],[2,0,-2**0.5],[0,-2,0]]).extrude(0.1) +generate(f, '2d_rounded_polygon') + + +# shell +f = rounded_polygon([ + [-4,-1,0],[-6,-1,-1],[-6,1,-1], [-4,1,-1], [-1,1,0], # Left + [-1,4,0], [-1,6,-1], [1,6,-1], [1,4,-1], [1,1,0], # Top + [4,1,0], [6,1,-1], [6,-1,-1], [4,-1,-1], [1,-1,0], # Right + [1,-8,0], [1,-10,-1],[-1,-10,-1],[-1,-8,-1],[-1,-1,0] # Bottom + ]).shell(0.1).extrude(0.1) +generate(f, '2d_shell') + +# round polygon corners +pts1 = [[10,0,0],[1,1,-20],[3,10,0]] +pts2 = [[-10,0,0],[-1,1,20],[-3,10,0]] +pts3 = [[10,-10,0],[1,-9,-18],[3,0,20]] +pts4 = [[-10,-10,0],[-1,-9,-18],[-3,0,20]] +f = rounded_polygon(pts1).shell(0.1).extrude(0.1) +f |= rounded_polygon(pts2).shell(0.1).extrude(0.1) +f |= rounded_polygon(pts3).shell(0.1).extrude(0.1) +f |= rounded_polygon(pts4).shell(0.1).extrude(0.1) +rpts1 = round_polygon_corners(pts1,1) +rpts2 = round_polygon_corners(pts2,1) +rpts3 = round_polygon_corners(pts3,1) +rpts4 = round_polygon_corners(pts4,1) +f |= rounded_polygon(rpts1).extrude(0.1) +f |= rounded_polygon(rpts2).extrude(0.1) +f |= rounded_polygon(rpts3).extrude(0.1) +f |= rounded_polygon(rpts4).extrude(0.1) +generate(f, '2d_round_polygon_corners') + +pts = [[3,0,0],[2,0,-0.75],[1,0,2],[0,0,-0.75],[0,1,0],[3,1,0]] +#print("pts",pts) +rpts = round_polygon_smooth_ends(pts,[1]) +#print("rpts",rpts) +f = rounded_polygon(pts).translate((0,3)).shell(0.1).extrude(0.1) +f |= rounded_polygon(rpts).shell(0.1).extrude(0.1) +generate(f, '2d_round_polygon_smooth_ends') + +# rounded_cog(outer_r, cog_r, num): +f = rounded_cog(38, 6, 14).extrude(0.1) +generate(f, '2d_rounded_cog') + +# edge +f = rounded_polygon([ + [-4,-1,0],[-6,-1,-1],[-6,1,-1], [-4,1,-1], [-1,1,0], # Left + [-1,4,0], [-1,6,-1], [1,6,-1], [1,4,-1], [1,1,0], # Top + [4,1,0], [6,1,-1], [6,-1,-1], [4,-1,-1], [1,-1,0], # Right + [1,-8,0], [1,-10,-1],[-1,-10,-1],[-1,-8,-1],[-1,-1,0] # Bottom + ]).edge(0.1).extrude(0.1) +generate(f, '2d_edge') + +# mirror +f = circle(3).taper_extrude(3,1).translate((0,0,-3)) +# draw an upside down one below the axis +f |= circle(3).taper_extrude(3,1).translate((0,0,-3)).mirror([0,0,1]) +generate(f, 'mirror') + +s = circle(2).translate((3,3)) +# draw another on the side, mirrored over the negative X +s |= circle(2).translate((3,3)).mirror([1,0]) +f = s.extrude(0.1) +generate(f, '2d_mirror') + +# mirror_copy +f = circle(3).taper_extrude(3,1).translate((0,0,-3)).mirror_copy([0,0,1]) +generate(f, 'mirror_copy') + +s = circle(2).translate((3,3)).mirror_copy([1,0.1]) +f = s.extrude(0.1) +generate(f, '2d_mirror_copy') + # slice(other) f = example.translate((0, 0, 0.55)).slice().extrude(0.1) generate(f, 'slice') +FONT = 'Arial' +TEXT = 'Hello, world!' +w, h = measure_text(FONT, TEXT) +f = rounded_box((w + 1, h + 1, 0.2), 0.1) +f -= text(FONT, TEXT).extrude(0.2).k(0.05) + # text(name, text, width=None, height=None, texture_point_size=512) -f = rounded_box((7, 2, 0.2), 0.1) -f -= text('Georgia', 'Hello, World!').extrude(0.2).rotate(pi).translate(0.1 * Z) -generate(f, 'text') +#f = rounded_box((7, 2, 0.2), 0.1) +#f -= text('Georgia', 'Hello, World!').extrude(0.2).rotate(pi).translate(0.1 * Z) +#f -= text('Georgia', 'Hello, World!').extrude(0.2).k(0.05) #.translate(-0.1 * Z) +generate(f, '2d_text') # wrap_around(other, x0, x1, r=None, e=ease.linear) FONT = 'Arial' diff --git a/examples/Makefile b/examples/Makefile new file mode 100644 index 00000000..47f2d85f --- /dev/null +++ b/examples/Makefile @@ -0,0 +1,6 @@ +wheel: + PYTHONPATH=.. python3 steering_wheel.py && ../docs/render /dev/shm/steering_wheel.stl steering_wheel.png +top: + PYTHONPATH=.. python3 spinning_top.py && ../docs/render spinning_top.stl spinning_top.png +pillar: + PYTHONPATH=.. python3 pillar.py && ../docs/render /dev/shm/pillar.stl pillar.png diff --git a/examples/customizable_box.py b/examples/customizable_box.py index 94d83036..fa0fbc5e 100644 --- a/examples/customizable_box.py +++ b/examples/customizable_box.py @@ -51,5 +51,5 @@ def lid(): f &= slab(z1=LID_DEPTH).k(TOP_FILLET) return f -box().save('box.stl', samples=SAMPLES) -lid().save('lid.stl', samples=SAMPLES) +box().save('customizable_box.stl', samples=SAMPLES) +lid().save('customizable_lid.stl', samples=SAMPLES) diff --git a/examples/example.py b/examples/example.py index 234be010..92eff45e 100644 --- a/examples/example.py +++ b/examples/example.py @@ -5,4 +5,4 @@ c = cylinder(0.5) f -= c.orient(X) | c.orient(Y) | c.orient(Z) -f.save('out.stl') +f.save('example.stl') diff --git a/examples/image.py b/examples/image.py index b014ef4d..feb8a9d4 100644 --- a/examples/image.py +++ b/examples/image.py @@ -1,6 +1,6 @@ from sdf import * -IMAGE = 'examples/butterfly.png' +IMAGE = 'butterfly.png' w, h = measure_image(IMAGE) diff --git a/examples/spinning_top.py b/examples/spinning_top.py new file mode 100644 index 00000000..1721cba8 --- /dev/null +++ b/examples/spinning_top.py @@ -0,0 +1,6 @@ +from sdf import * + +f = circle(3).taper_extrude(5,2.5/5,ease.out_quint) +f |= circle(3).taper_extrude(3,1,ease.linear).mirror([0,0,1]) +f |= sphere(0.5).translate((0,0,5)) +f.save('spinning_top.stl', samples=2**22) diff --git a/examples/steering_wheel.py b/examples/steering_wheel.py new file mode 100644 index 00000000..f95a0aae --- /dev/null +++ b/examples/steering_wheel.py @@ -0,0 +1,57 @@ +from sdf import * + +# Simple wheel with finger indents +finger_r = 30 # radius of finger indent +n = 16 # number of finger indents + +spoke_angles = [0, 80, 160] + +# Draw the outer edge of the wheel with finger indents +pts = [[0, 10, 0]] +s = -1 +for i in range(0,2*n): + pts = np.vstack((pts,[20*i, -10 ,s*finger_r])) + s = -s +pts = np.vstack((pts,[20*(2*n-1), 10, 0])) + +# Make the inner finger indent smooth +ring = rounded_polygon(pts) + +# Wrap the steering wheel around +f = ring.rounded_extrude(20,10).rotateD(-90,X).wrap_around(10, 20*(2*n-2)) + +wheel_r = (20*(2*n-2)-10)/np.pi/2 + +# Create a 2d plane for carving out the spokes +spokes = circle(wheel_r) + +inner_r = wheel_r - 10 +center_r = 30 # center of steering wheel +rounding_r = 10 # cutout rounding +spoke_thickness = 20 + +# Determine the angle for the spokes of the wheel for cutting out +delta_inner_ang = arc_sinD((spoke_thickness/2) / inner_r) +delta_center_ang = arc_sinD((spoke_thickness/2) / center_r) + +# Cut out the holes in the middle of the ring leaving the spokes +for i in range(len(spoke_angles)): + j = (i + 1) % len(spoke_angles) + ang1 = spoke_angles[i] + ang2 = spoke_angles[j] + if ang2 < ang1: + ang2 = ang2 + 360 + # Draw a polygon around the holes and create a center point to allow angles + # of spokes beyond 180 degrees + spokes -= rounded_polygon(round_polygon_corners([ + [inner_r*cosD(ang1+delta_inner_ang),inner_r*sinD(ang1+delta_inner_ang),0], + [inner_r*cosD((ang1+ang2)/2),inner_r*sinD((ang1+ang2)/2),inner_r], + [inner_r*cosD(ang2-delta_inner_ang),inner_r*sinD(ang2-delta_inner_ang),inner_r], + [center_r*cosD(ang2-delta_center_ang),center_r*sinD(ang2-delta_center_ang),0], + [center_r*cosD((ang1+ang2)/2),center_r*sinD((ang1+ang2)/2),-center_r], + [center_r*cosD(ang1+delta_center_ang),center_r*sinD(ang1+delta_center_ang),-center_r] + ], rounding_r)) + +f |= spokes.rounded_extrude(15,7.5).bend_radial(inner_r*.31,inner_r*0.81,10,ease.in_out_quad).translate((0,0,-10)).k(5) +f.save('/dev/shm/steering_wheel.stl', samples=2**21) + diff --git a/pycam/.codespell.exclude b/pycam/.codespell.exclude new file mode 100644 index 00000000..df101d9f --- /dev/null +++ b/pycam/.codespell.exclude @@ -0,0 +1 @@ + # see http://www.daa.com.au/pipermail/pygtk/2009-May/017052.html diff --git a/pycam/.coveragerc b/pycam/.coveragerc new file mode 100644 index 00000000..04834896 --- /dev/null +++ b/pycam/.coveragerc @@ -0,0 +1,19 @@ +[run] +branch = True +source = pycam + +[report] +exclude_lines = + # Have to re-enable the standard pragma + pragma: no cover + # Don't complain about missing debug-only code: + def __repr__ + if self\.debug + # Don't complain if tests don't hit defensive assertion code: + raise AssertionError + raise NotImplementedError + # Don't complain if non-runnable code isn't run: + if __name__ == .__main__.: + +[html] +directory = build/coverage-report diff --git a/pycam/.gitignore b/pycam/.gitignore new file mode 100644 index 00000000..669f3bf3 --- /dev/null +++ b/pycam/.gitignore @@ -0,0 +1,40 @@ +*.iml +*.o +*.so +*.py[cod] + +test.ngc + +man/pycam.1 +man/pycam.1.html +docs/release-notes.md + +dist +build +eggs +*.egg-info +.svn +.coverage +.idea +.ropeproject/ + +.DS_Store* +ehthumbs.db +Icon? +Thumbs.db + +*~ +.*.sw? + +man/pycam.1 + +# Generated mkdocs files go into the site directory +site/ + +# debian packaging +debian/debhelper-build-stamp +debian/files +debian/pycam/ +debian/pycam.debhelper.log +debian/pycam.*.debhelper +debian/pycam.substvars diff --git a/pycam/.travis.yml b/pycam/.travis.yml new file mode 100644 index 00000000..2d3b8311 --- /dev/null +++ b/pycam/.travis.yml @@ -0,0 +1,36 @@ +--- +dist: xenial +# use the container-based infrastructure +sudo: required + +language: python +python: + - "3.6" + +addons: + apt: + packages: + - build-essential + - codespell + - devscripts + - equivs + - fakeroot + - gir1.2-gtk-3.0 + - help2man + - python3-flake8 + - python3-gi + - python3-numpy + - python3-pytest + - python3-setuptools + - python3-svg.path + - python3-yaml + +script: + - make test + - ./setup.py sdist + - pycam/run_gui.py --help + - pycam/run_gui.py --version + - pycam/run_cli.py --help + - pycam/run_cli.py --version + - debian/rules prep-source + - dpkg-buildpackage -us -uc diff --git a/pycam/CODE_OF_CONDUCT.md b/pycam/CODE_OF_CONDUCT.md new file mode 100644 index 00000000..2212adaa --- /dev/null +++ b/pycam/CODE_OF_CONDUCT.md @@ -0,0 +1,74 @@ +# Contributor Covenant Code of Conduct + +## Our Pledge + +In the interest of fostering an open and welcoming environment, we as +contributors and maintainers pledge to making participation in our project and +our community a harassment-free experience for everyone, regardless of age, body +size, disability, ethnicity, gender identity and expression, level of experience, +nationality, personal appearance, race, religion, or sexual identity and +orientation. + +## Our Standards + +Examples of behavior that contributes to creating a positive environment +include: + +* Using welcoming and inclusive language +* Being respectful of differing viewpoints and experiences +* Gracefully accepting constructive criticism +* Focusing on what is best for the community +* Showing empathy towards other community members + +Examples of unacceptable behavior by participants include: + +* The use of sexualized language or imagery and unwelcome sexual attention or +advances +* Trolling, insulting/derogatory comments, and personal or political attacks +* Public or private harassment +* Publishing others' private information, such as a physical or electronic + address, without explicit permission +* Other conduct which could reasonably be considered inappropriate in a + professional setting + +## Our Responsibilities + +Project maintainers are responsible for clarifying the standards of acceptable +behavior and are expected to take appropriate and fair corrective action in +response to any instances of unacceptable behavior. + +Project maintainers have the right and responsibility to remove, edit, or +reject comments, commits, code, wiki edits, issues, and other contributions +that are not aligned to this Code of Conduct, or to ban temporarily or +permanently any contributor for other behaviors that they deem inappropriate, +threatening, offensive, or harmful. + +## Scope + +This Code of Conduct applies both within project spaces and in public spaces +when an individual is representing the project or its community. Examples of +representing a project or community include using an official project e-mail +address, posting via an official social media account, or acting as an appointed +representative at an online or offline event. Representation of a project may be +further defined and clarified by project maintainers. + +## Enforcement + +Instances of abusive, harassing, or otherwise unacceptable behavior may be +reported by contacting the project team at njh@aelius.com. All +complaints will be reviewed and investigated and will result in a response that +is deemed necessary and appropriate to the circumstances. The project team is +obligated to maintain confidentiality with regard to the reporter of an incident. +Further details of specific enforcement policies may be posted separately. + +Project maintainers who do not follow or enforce the Code of Conduct in good +faith may face temporary or permanent repercussions as determined by other +members of the project's leadership. + +## Attribution + +This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, +available at [http://contributor-covenant.org/version/1/4][version] + +[homepage]: http://contributor-covenant.org +[version]: http://contributor-covenant.org/version/1/4/ diff --git a/pycam/COPYING.TXT b/pycam/COPYING.TXT new file mode 100644 index 00000000..e6000869 --- /dev/null +++ b/pycam/COPYING.TXT @@ -0,0 +1,674 @@ + GNU GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU General Public License is a free, copyleft license for +software and other kinds of works. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +the GNU General Public License is intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. We, the Free Software Foundation, use the +GNU General Public License for most of our software; it applies also to +any other work released this way by its authors. You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + + To protect your rights, we need to prevent others from denying you +these rights or asking you to surrender the rights. Therefore, you have +certain responsibilities if you distribute copies of the software, or if +you modify it: responsibilities to respect the freedom of others. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must pass on to the recipients the same +freedoms that you received. You must make sure that they, too, receive +or can get the source code. And you must show them these terms so they +know their rights. + + Developers that use the GNU GPL protect your rights with two steps: +(1) assert copyright on the software, and (2) offer you this License +giving you legal permission to copy, distribute and/or modify it. + + For the developers' and authors' protection, the GPL clearly explains +that there is no warranty for this free software. For both users' and +authors' sake, the GPL requires that modified versions be marked as +changed, so that their problems will not be attributed erroneously to +authors of previous versions. + + Some devices are designed to deny users access to install or run +modified versions of the software inside them, although the manufacturer +can do so. This is fundamentally incompatible with the aim of +protecting users' freedom to change the software. The systematic +pattern of such abuse occurs in the area of products for individuals to +use, which is precisely where it is most unacceptable. Therefore, we +have designed this version of the GPL to prohibit the practice for those +products. If such problems arise substantially in other domains, we +stand ready to extend this provision to those domains in future versions +of the GPL, as needed to protect the freedom of users. + + Finally, every program is threatened constantly by software patents. +States should not allow patents to restrict development and use of +software on general-purpose computers, but in those that do, we wish to +avoid the special danger that patents applied to a free program could +make it effectively proprietary. To prevent this, the GPL assures that +patents cannot be used to render the program non-free. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Use with the GNU Affero General Public License. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU Affero General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the special requirements of the GNU Affero General Public License, +section 13, concerning interaction through a network will apply to the +combination as such. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + + Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + +Also add information on how to contact you by electronic and paper mail. + + If the program does terminal interaction, make it output a short +notice like this when it starts in an interactive mode: + + Copyright (C) + This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, your program's commands +might be different; for a GUI interface, you would use an "about box". + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU GPL, see +. + + The GNU General Public License does not permit incorporating your program +into proprietary programs. If your program is a subroutine library, you +may consider it more useful to permit linking proprietary applications with +the library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. But first, please read +. diff --git a/pycam/Changelog b/pycam/Changelog new file mode 100644 index 00000000..1cfdbb2e --- /dev/null +++ b/pycam/Changelog @@ -0,0 +1,284 @@ +Version 0.7.0 - 2017-12-?? + * switch to Python3 (removing support for Python2) + * switch to GTK3 (from GTK2) + * switch OpenGL widget from GtkGLext to GLArea (part of GKT3) + * switch to new internal data handling + * enable loading and saving the workspace state (was disabled during v0.6.x) + * non-interactive batch processing allows scripted toolpath operations + +Version 0.6.3 - ??? + * Fix import of DXF files with full-circle holes (github #112). + * Fix import of DXF files with bezier curves (github #116). + * Fix import of DXF with closed LWPOLYLINE. + * Fix line number reporting in CXFImporter. + * Fix python2/3 compatibility in CXFImporter. + * Better tests. + +Version 0.6.2 - 2017-10-27 + * Bounds: disable percent-based controls for zero-dimensions + * fix toolpath grid operation (issue #45) + * prevent negative bounding box dimensions + * additional dependency 'enum34' (only relevant for Python2) + +Version 0.6.1 - 2017-03-11 + * GCode: limit vertical feedrate (maximum speed of plunge move) + * removed experimental support for ODE + * the ODE library seems to be not actively developed anymore + * removed obsolete support for psyco + * prepared code for Python3 + * Python2-only dependencies are still required + * updated help locations (from the old wiki to the new documentation website) + +Version 0.6.0 - 2017-02-18 + * greatly improved OpenGL visualization (contributed by Mattes) + * DXF importer: + * added bezier support for POLYLINE and LWPOLYLINE + * modularization of most features + * many more new features + +Version 0.5.1 - 2011-06-13 + * added extrusion for 2D models + * 2D projection of multi-layered 2D models + * significantly improved performance of 3D visualization + * fixed "help" links for Windows users + * added GTK theme with a native look&feel for Windows + * improved detection of library locations for Windows package + * added file type associations (mime) to the debian package + * minor bugs fixed + +Version 0.5 - 2011-03-28 + * Toolpaths: + * added adaptive positioning for DropCutter strategy (improves precision) + * allow conventional/climb milling style for ContourFollow and Engrave strategies + * added a very simple "pocketing" mode for 2D models + * added toolpath cropping + * added toolpath grid pattern: clone a single toolpath in rows and columns + * unify DropCutter behaviour for models that are higher than the defined bounding box + * more efficient tool moves for Engraving + * Model handling: + * added support for simple multi-layered 2D models + * added 2D projection of 3D models + * added automatic repair of inconsistent polygon winding (inside/outside detection) + * automatically distributed support bridges can now be placed at corners or edges + * GCode: + * added basic support for "touch off" and length compensated tool change + * GCode positioning precision (number of digits) is configurable + * the default filename extension for exported GCode files is now configurable + * Visualization: + * changed "simulation mode" for visualizing the machine moves (before: material removal) + * visualize toolpath moves up to safety height properly + * the scroll wheel now behaves similarly to Inkscape's interface (pan and zoom) + * optional visualization of toolpath direction + * visualize "inside" polygons (holes) via partial transparency + * Usability: + * added a configuration setting for automatically loading a custom task settings file on startup + * added a simple "undo" feature for reversing model manipulations + * enabled drag'n'drop for loading models + * visibility of 3D view items is now configurable in the 3D window + * via a button and via the context menu + * added copy/paste of model to and from the clipboard + * Distributed processing: + * parallel and distributed processing is configurable in a dialog + * improved stability of remote processing: disconnected nodes should not cause problems anymore + * Miscellaneous: + * added support for single-line fonts text (based on fonts from QCAD) + * support non-local file handling (e.g. http, ...) + * added support for more DXF features: + * 2D: LWPOLYLINE, POLYLINE, CIRCLE, ARC, TEXT, MTEXT + * 3D: 3DFACE + * added support for EPS/PS contour files + * fixed offset of SVG export + * noteworthy changes: + * bounding box for 2D models must be _above_ the model (before: below or above) + * simulation mode: the stock material removal simulation was removed + +Version 0.4.0.1 - 2010-10-24 + * disabled parallel processing for Windows standalone executable + (a real fix will follow later) + +Version 0.4 - 2010-10-19 + * use all available CPU cores for parallel processing + * this requires at least Python 2.6 or the "python-multiprocessing" package + * a standalone windows executable is available (experimental) + * added an improved contour toolpath strategy (ContourFollow) + * see http://fab.senselab.org/node/43 + * added options for conventional/climb milling + * added automatic support grid distribution for contour models + * allow to reverse the direction of a 2D contour model + * beautification of the process name (via python-setproctitle) + * added experimental cluster processing (server mode) + * added G61/64 GCode settings for path precision + * Usability: + * added optional "orthogonal" view (instead of perspective) + * added a "recent files" item to the file menu + * added the transparency (alpha) component to all configurable colors + * added "remaining time" estimation for all operations + * pre-select output filenames of "Save as" dialogs based on the name of the model file + * Bugs fixed: + * SVG import: work around a bug in pstoedit (shipped with Ubuntu Lucid) + * fixed various problems with the support grid + +Version 0.3 - 2010-08-16 + * added support for importing contour paths from SVG files (requires Inkscape and pstoedit) + * added basic support for importing simple DXF contour files + * added support for engravings (along the lines of a contour model) + * added a feature-complete commandline interface + * integrated "help" links pointing to the wiki + * improved OpenGL lighting (contributed by imyrek) + * improved flexibility of the support grid layout: + * allow non-square profiles for the support grid + * added ability to create support grids with different x/y grid distance + * added x/y offsets to support grid options + * added 3D view movement and rotation with a keyboard in addition to the mouse + * added optional support for the Psyco just-in-time compiler + * information about the toolpath settings are stored as comments in GCode files + * added a log window + * switched default tool size from radius to diameter + * improved progress bar responsiveness + * fixed first movement in GCode: go up to safety height before moving to the side + * fixed model orientation of STL files created by Art of Illusion + * fixed performance issue when using a support grid + * fixed empty toolpath after transforming the model + * fixed various minor bugs of the toolpath generator + * fixed rounded corners (see GCode G61) + +Version 0.2.5 - 2010-06-10 + * added support bridges for holding the object during cutting + * calculate the estimated machine time for each toolpath + * changing the unit (mm/inch) now opens a dialog for scaling the model, + processing dimensions or tool dimensions accordingly + * remove unnecessary moves to safety height + * changed name of configuration setting "overlap" to "overlap_percent" + (you may need to change this name in your custom config files) + +Version 0.2.4 - 2010-04-12 + * added a simple simulation mode for visualizing the material penetration of a toolpath + * join tangential moves (removes the inner points in a colinear set of adjacent path points) + * fixed careless import of Tkinter + * added missing INSTALL.TXT to source package + * fixed typo that breaks PyCAM for Python 2.6 + +Version 0.2.3 - 2010-04-05 + * GUI change: tool and process settings can be combined into tasks + * store configured settings to a file in the user's home directory + * added "material allowance" support for non-ODE calculations + * added export of LinuxCNC tool definitions + * added a warning dialog (GUI) for missing dependencies during startup (especially useful for Windows) + * improved GUI for model scaling + * allow to configure if the tool should move inside/along/around the boundary limits + * fixed "overlap" calculation + * prevent invalid input values (zero tool radius, ...) + * fixed a bug that could rarely cause eternal loops of the PushCutter + * reduced memory consumption of toolpaths for python 2.6 or above + * disabled ODE as the default computation backend (due to this bug: + http://sourceforge.net/tracker/?func=detail&aid=2973876&group_id=24884&atid=382799) + +Version 0.2.2 - 2010-03-17 + * added a graphical installer for Windows (via distutils) + * fixed broken commandline parameter "--template" + * added workaround for ODE collision detection, that is broken under specific circumstances + * fixed hang with PushCutter and ODE on Windows + * fixed "division by zero" error in non-ODE mode + * allow to disable ODE via commandline option + * bugs fixed in cylindrical and toroidal cutter when using dropcutter on horizontal triangles + * fixed "setup.py" for distutils packaging (contributed by Arthur Magill) + +Version 0.2.1 - 2010-03-09 + * fixed code that depended on GTK 2.16 (instead of 2.12) + * view settings "light", "shadow" and "polygon fill" are now configurable + * documented version problems with Debian "Lenny" and Ubuntu (before "Karmic") + +Version 0.2 - 2010-03-04 + * added an alternative GTK interface with additional features: + * configurable 3D view settings: model / toolpath / axis / drill progress / frame rate / colors + * manipulation of the model: rotation, flip, swap, scale, move + * saving the model to an ascii STL file + * load/save processing settings from/to a file + * handling of multiple processing templates (e.g. "Rough", "Semi-finish" and "Finish") + * configure "material allowance" for a minimum distance between drill and model + * configure the "safety height" for the machine + * allow to manage and export (gcode) multiple toolpaths at once + * based on GtkGlExt (for OpenGL) + * visualize invalid processing setting combinations + * configure "overlap" instead of "lines" and "samples" + * configure "maximum step down" instead of "layers" + * show a progress bar during calculations + * basic lighting for the OpenGL view + * improved performance by (optionally) using the "Open Dynamics Engine" (ODE) for + collision detection + +Version 0.1.11b - 2010-02-25 + * fix minor release mistake (missing "STLExporter") + +Version 0.1.11 - 2010-02-19 + * fix detection of binary STL + * added Simulation mode + * ignore invalid triangles (caused by high-resolotion models) + * automatic boundary fits to the model + * add ubuntu specific note + * code cleanups + +Version 0.1.10 - 2009-07-13 + * support binary STL + * close contours + +Version 0.1.9 - 2009-06-18 + * linux compatibility + * integrated kdtree + * fix speedup shortcuts + +Version 0.1.8 - 2009-04-14 + * some feature requests + * fixes by Dan Falck + * fix bug in torus-point intersection + * specify model in cfg + * fixed opengl representation + * update tests + +Version 0.1.7b - 2009-02-10 + * fix glutInit bug + +Version 0.1.7 - 2009-01-27 + * another try at fixing PushCutter + * remove MGED exporter + +Version 0.1.6b - 2009-01-15 + * fix save + * follow api updates + * fix gcode parameter strings + +Version 0.1.6 - 2009-01-14 + * fix verticals intersection + * add ContourCutter + * guard against float division + * add x/y direction + * add ContourCutter + * minor layout improvements + * make speed configurable + * enable command line driven operation + * debug output + * SVG output + +Version 0.1.5 - 2008-11-26 + * add direction switch + * add reading pre-model default values from config file + * fix verticals in DropCutter + +Version 0.1.4 - 2008-11-16 + * make tool come outside the stock while cutting + * make safety height higher than stock + +Version 0.1.3 - 2008-09-17 + * fix redraw + +Version 0.1.2 - 2008-09-11 + * added unit option mm/in + * fix coordinate system for Art of Illusion exported STL files + * added view control buttons + * added bounding box calculation + +Version 0.1.1 - 2008-09-01 + * second release + +Version 0.1 - 2008-08-29 + * initial release diff --git a/pycam/Dockerfile b/pycam/Dockerfile new file mode 100644 index 00000000..e44669f1 --- /dev/null +++ b/pycam/Dockerfile @@ -0,0 +1,13 @@ +FROM debian:9 + +WORKDIR /root/pycam + +COPY . . + +RUN apt-get update && apt-get install -y python3 \ + python3-gi \ + python3-opengl \ + python3-yaml \ + gir1.2-gtk-3.0 + +CMD [ "pycam/run_gui.py" ] diff --git a/pycam/INSTALL.md b/pycam/INSTALL.md new file mode 100644 index 00000000..057b5daf --- /dev/null +++ b/pycam/INSTALL.md @@ -0,0 +1,103 @@ +# Dependencies of the graphical interface + +## Windows + +`TODO:` Current Windows installation instructions + +## Unix + +### Installation + +Install the following packages with your package manager: + +``` +python3 +python3-gi +python3-opengl +python3-yaml +python3-svg.path +gir1.2-gtk-3.0 +``` + +On a Debian or Ubuntu system, you would just type the following: +```bash +sudo apt install python3-gi python3-opengl python3-yaml python3-svg.path gir1.2-gtk-3.0 +``` +Please note that you need to enable the `universe` repository in Ubuntu. + +### Run with Docker + +If you have difficulty with the installation, you can run the application from Docker. + +The `docker run` command will mount your personal Documents folder to `/root/Documents` so that you +can access your files. + +```bash +sudo docker build -t pycam/pycam . +sudo docker run -it \ + -v ~/Documents:/root/Documents \ + -v ~/.Xauthority:/root/.Xauthority \ + -e DISPLAY \ + --net=host \ + pycam/pycam +``` + +## macOS + +### Installation + +1\. Install Homebrew if it has not been installed: +```bash +ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" +``` + +2\. Install the dependencies (currently only for Python2): +TODO: adjust for Python3 +```bash +brew install gtk+3 pygobject3 +pip install pygobject enum34 +``` + +### Run with Docker + +If you have difficulty with the installation, you can run the application from Docker. + +1\. Make sure that Docker is installed, if not, you can install it with Homebrew. +You will also need XQuartz and socat. + +```bash +brew cask install docker xquartz +brew install socat +``` + +2\. Start XQuartz from a terminal with `open -a XQuartz`. In the XQuartz Preferences, +go to the “Security” tab and make sure you’ve got “Allow connections from network +clients” ticked. + +3a. Run the following in a terminal and leave it running: + +```bash +socat TCP-LISTEN:6000,reuseaddr,fork UNIX-CLIENT:\"$DISPLAY\" +``` + +3b. Run the following in a separate terminal. Your ip address can be found by running `ifconfig`. + +The `docker run` command will mount your personal Documents folder to `/root/Documents` so that you +can access your files. + +```bash +docker build -t pycam/pycam . +export IP='' +docker run -it \ + -v ~/Documents:/root/Documents \ + -v /tmp/.X11-unix:/tmp/.X11-unix \ + -e DISPLAY=$IP:0 \ + pycam/pycam +``` + +# Minimal requirements for non-GUI mode + +If you plan to use PyCAM only in batch mode (without a graphical user interface), +then you just need to install Python. + +See the manpage ( `man pycam` ) or the output of `pycam --help` for further defails. diff --git a/pycam/LICENSE.TXT b/pycam/LICENSE.TXT new file mode 100644 index 00000000..f6d359b2 --- /dev/null +++ b/pycam/LICENSE.TXT @@ -0,0 +1,20 @@ + pycam - CNC Toolpath Generation in python + ========================================= + + Copyright (C) 2008 Lode Leroy + ----------------------------- + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + + See COPYING diff --git a/pycam/MANIFEST.in b/pycam/MANIFEST.in new file mode 100644 index 00000000..afe1f1bd --- /dev/null +++ b/pycam/MANIFEST.in @@ -0,0 +1,15 @@ +include Changelog +include COPYING.TXT +include INSTALL.TXT +include LICENSE.TXT +include mkdocs.yml +include README.md +include release_info.txt +include requirements.txt +include technical_details.txt +include pycam +recursive-include docs * +recursive-include man * +recursive-include share * +recursive-include samples * +recursive-include Tests * diff --git a/pycam/Makefile b/pycam/Makefile new file mode 100755 index 00000000..d4004497 --- /dev/null +++ b/pycam/Makefile @@ -0,0 +1,162 @@ +# export SVN_REPO_BASE=. if you want to use the local version instead of trunk +# from the subversion repository. + +PYTHON_EXE ?= python3 +# use something like "VERSION=0.2 make" to override the VERSION on the command line +VERSION = $(shell $(PYTHON_EXE) -c 'import pycam; print(pycam.VERSION)') +VERSION_FILE = pycam/Version.py +REPO_TAGS ?= https://pycam.svn.sourceforge.net/svnroot/pycam/tags +DIST_DIR = dist +DIST_PREFIX = pycam- +DIST_TGZ = $(DIST_DIR)/$(DIST_PREFIX)$(VERSION).tar.gz +DIST_WIN32 = $(DIST_DIR)/$(DIST_PREFIX)$(VERSION).win32.exe +# check if the local version of python's distutils support "--plat-name" +# (introduced in python 2.6) +DISTUTILS_PLAT_NAME = $(shell $(PYTHON_EXE) setup.py --help build_ext \ + | grep -q -- "--plat-name" && echo "--plat-name win32") +PYTHON_CHECK_STYLE_TARGETS = pycam pyinstaller/hooks/hook-pycam.py setup.py +SPELLING_PATHS = \ + Changelog \ + docs \ + INSTALL.md \ + LICENSE.TXT \ + Makefile \ + man \ + pycam \ + README.md \ + release_info.txt \ + scripts \ + setup.py \ + technical_details.txt + +# default location of mkdocs' build process +MKDOCS_SOURCE_DIR = docs +MKDOCS_EXPORT_DIR = site +MKDOCS_SOURCE_FILES = Makefile mkdocs.yml Changelog $(shell find "$(MKDOCS_SOURCE_DIR)" -type f) +MKDOCS_BUILD_STAMP = $(MKDOCS_EXPORT_DIR)/.build-stamp +# specify the remote user (e.g. for sourceforge: user,project) via ssh_config or directly on the +# commandline: "make upload-docs SF_USER=foobar" +ifdef SF_USER +WEBSITE_UPLOAD_PREFIX ?= $(SF_USER),pycam@ +endif +WEBSITE_UPLOAD_LOCATION ?= web.sourceforge.net:/home/project-web/pycam/htdocs + +RM = rm -f + +.PHONY: build clean dist tgz win32 clean \ + docs man upload-docs \ + check-style pylint-relaxed pylint-strict test \ + update-version update-deb-changelog + +info: + @echo "Available targets:" + @echo " build" + @echo " clean" + @echo " dist" + @echo " docs" + @echo " man" + @echo " upload-docs" + @echo + @echo "Style checks:" + @echo " check-spelling" + @echo " check-style" + @echo " pylint-relaxed" + @echo " pylint-strict" + +build: man update-version + $(PYTHON_EXE) setup.py build + +archive: tgz win32 + @# we can/should remove the version file in order to avoid a stale local version + @$(RM) "$(VERSION_FILE)" + +clean: + @$(RM) -r build + @$(RM) -r "$(MKDOCS_EXPORT_DIR)" + @$(RM) "$(VERSION_FILE)" + $(MAKE) -C man clean + +man: + @$(MAKE) -C man man + +$(DIST_DIR): + @mkdir -p "$@" + +tgz: $(DIST_TGZ) + +$(DIST_TGZ): $(DIST_DIR) build + $(PYTHON_EXE) setup.py sdist --format gztar --dist-dir "$(DIST_DIR)" + +win32: $(DIST_WIN32) + +$(DIST_WIN32): $(DIST_DIR) build + # this is a binary release + $(PYTHON_EXE) setup.py bdist_wininst --user-access-control force \ + --dist-dir "$(DIST_DIR)" $(DISTUTILS_PLAT_NAME) + +update-deb-changelog: + @# retrieve the log of all commits since the latest release and add it to the deb changelog + if ! grep -qFw "$(VERSION)" debian/changelog; then \ + git log --pretty=format:%s v$(shell dpkg-parsechangelog | sed --quiet -re 's/Version: (.*)/\1/ p').. | \ + DEBFULLNAME="PyCAM Builder" DEBEMAIL="builder@pycam.org" \ + xargs -r -d '\n' -n 1 -- debchange --newversion "$(subst -,.,$(VERSION))"; \ + fi + +update-version: + @echo 'VERSION = "$(VERSION)"' >| "$(VERSION_FILE)" + +test: check-spelling check-style pytest check-yaml-flow + +# The "make pytest" target calls pytest via the obsolete `py.test` name, +# instead of the modern `pytest` name. This is in order to support +# older versions of pytest, specifically version 2.5 on Ubuntu Trusty. +# Once the oldest supported platform has pytest 3.0 or newer we can +# switch to the new `pytest` name. +pytest: + /usr/bin/py.test-3 -v . + +check-style: + scripts/run_flake8 $(PYTHON_CHECK_STYLE_TARGETS) + +check-yaml-flow: + $(RM) test.ngc + pycam/run_cli.py yaml_flow_working.yml + grep -q "Z" test.ngc + +pylint-strict: + pylint $(PYTHON_CHECK_STYLE_TARGETS) + +pylint-relaxed: + pylint -d missing-docstring,invalid-name,pointless-string-statement,fixme,no-self-use \ + -d global-statement,unnecessary-pass,too-many-arguments,too-many-branches \ + -d too-many-instance-attributes,too-many-return-statements \ + -d too-few-public-methods,too-many-locals,using-constant-test \ + -d attribute-defined-outside-init,superfluous-parens,too-many-nested-blocks \ + -d too-many-statements,unused-argument,too-many-lines \ + -d too-many-boolean-expressions,too-many-public-methods \ + $(PYTHON_CHECK_STYLE_TARGETS) + +PHONY: check-spelling +check-spelling: + find $(SPELLING_PATHS) -type f \ + -not -name "*.pyc" \ + -not -name "*.png" \ + -not -name "*.stl" \ + -not -name "favicon.ico" \ + -print0 | xargs -0 codespell --exclude .codespell.exclude + +## Building the documentation/website +docs: man $(MKDOCS_BUILD_STAMP) + @$(MAKE) -C man html + install -d "$(MKDOCS_EXPORT_DIR)/manpages/" + install --target-directory="$(MKDOCS_EXPORT_DIR)/manpages/" man/*.html + +$(MKDOCS_BUILD_STAMP): $(MKDOCS_SOURCE_FILES) + sed 's/^Version/# Version/; s/^ \*/ */' Changelog \ + >"$(MKDOCS_SOURCE_DIR)/release-notes.md" + mkdocs build + touch "$@" + +upload-docs: docs + rsync -axz --delete --exclude=.DS_Store --exclude="$(notdir $(MKDOCS_BUILD_STAMP))" -e ssh \ + "$(MKDOCS_EXPORT_DIR)/" "$(WEBSITE_UPLOAD_PREFIX)$(WEBSITE_UPLOAD_LOCATION)/" diff --git a/pycam/README.md b/pycam/README.md new file mode 100644 index 00000000..9a95b9fb --- /dev/null +++ b/pycam/README.md @@ -0,0 +1,45 @@ +[![Build Status](https://travis-ci.org/SebKuzminsky/pycam.svg?branch=master)](https://travis-ci.org/SebKuzminsky/pycam) + +# PyCAM: a toolpath generator + +PyCAM generates toolpaths (GCode) based on 2D or 3D models for 3-axis CNC machining. + + +## Running + +Extract the archive or clone the repository. + +Graphical Interface: `pycam/run_gui.py` + +Scripted Toolpath Processing: `pycam/run_cli.py FLOW_SPECIFICATION_FILE` + + +## Resources + +See the [documentation](http://pycam.sourceforge.net/introduction/) for a short introduction. + +* [Website / Documentation](http://pycam.sf.net/) +* [Getting started](http://pycam.sf.net/getting-started.md) +* [FAQ](http://pycam.sf.net/faq.md) +* [Video tutorials](http://vimeo.com/channels/pycam) +* [Screenshots](http://pycam.sourceforge.net/screenshots/) +* [Mailing lists](https://sourceforge.net/p/pycam/mailman/) + + +## Development + +* [Code Repository](https://github.com/SebKuzminsky/pycam) +* [Issue Tracker](https://github.com/SebKuzminsky/pycam/issues) + + +## Contributors + +* Lode Leroy: initiated the project; developed the toolpath generation, + collision detection, geometry, Tk interface, ... +* Lars Kruse: GTK interface and many features +* Paul: GCode stepping precision +* Arthur Magill: distutils packaging +* Sebastian Kuzminsky: debian packaging +* Nicholas Humfrey: documentation, recovery of old sourceforge-wiki +* Piers Titus van der Torren: documentation +* Reuben Rissler: gtk3 migration diff --git a/pycam/debian/changelog b/pycam/debian/changelog new file mode 100644 index 00000000..f55254ab --- /dev/null +++ b/pycam/debian/changelog @@ -0,0 +1,86 @@ +pycam (0.6.2) unstable; urgency=medium + + * avoid OpenGL problem with "glutSolidCone" + * Polygon: one copy of get_shifted_vertex() is enough + * docs: hint for MacOS installation complications + * Updated MANIFEST.in + * added requirements; mention 'enum34' + * update documentation + * README.md: use native linebreaks + * show error in case of GLUT initialization problems + * 'detect_file_type' returns a namedtuple + * MotionGrid: cleaner type handling + * remove old settings file handling + * use enums instead of constants + * add configuration for 'coverage' tool + * docs: update documentation to be more in line with the GUI + * update Help links to point to new website + * DXF-Import: fix wrong import of 'get_points_of_arc' + * ParallelProcessing: refresh visibility after enabling multi mode + * notify initialization finish only after loading all plugins + * Toolpaths: allow caller to override the name of a model + * rename 'BoundsDict' class to 'BoundsEntity' + * allow disabling of plugins + * tolerate missing GUI + * docs: clarify that the current release does not run under Windows + * add more python2/3 compatible imports + * remove unconditional dependency on GTK for all plugins + * move 'undo' queue from GTK-based GUI to common base class + * move 'preferences' code from GTK-based GUI to common class + * moved part of initialization away from GUI code + * remove obsolete 'cutter' attribute + * fix intersection sorting in Line and Polygon classes + * remove automatic rescaling after unit change + * removed obsolete 'batch_queue' functionality + * handle empty model list politely + * clean up Bounds class and users + * add unit string to preview bounds description + * clean up ToolPath class and users + * ToolPath view: cache machine time calculation result + * avoid duplicate moves after cloning a ToolPath + * move EventCore class to its own file + * fix typos in error messages + * remove old python2.5 compatibility + * removed unused code (reported by 'vulture') + + * travis: make sure Travis jobs know the git branch name + * travis: run pytest on every Travis build + + * tests: add a "make pytest" target to run pytest + * tests: start adding unit tests of pycam.Geometry.Polygon + * tests: remove old manual test scripts + + -- Sebastian Kuzminsky Fri, 27 Oct 2017 10:30:09 -0600 + +pycam (0.6.1) unstable; urgency=medium + + * docs: lots of improvements + * remove support for psyco and ODE + * don't load the Tiny Pyramid model at startup + * limit the plunge feedrate + * lots of bug fixes and cleanups all over + * python3 compatibility + * added Code of Conduct + * toolpath simulation: increase default frame rate from 30 + + * add Continuous Integration testing via Travis + * lots of pylint fixes + * flake8 compliance + + -- Sebastian Kuzminsky Sun, 01 Oct 2017 13:56:09 -0600 + +pycam (0.6) unstable; urgency=medium + + * First triumphant release after years of dormancy. + * Merge misc old branches. + * Update debian packaging. + + -- Sebastian Kuzminsky Sat, 18 Feb 2017 11:50:53 -0700 + +pycam (0.5.1-1) unstable; urgency=low + + * initial debian package + * Closes: #600779 + + -- Lars Kruse Mon, 13 Jun 2011 02:04:59 +0200 + diff --git a/pycam/debian/compat b/pycam/debian/compat new file mode 100644 index 00000000..ec635144 --- /dev/null +++ b/pycam/debian/compat @@ -0,0 +1 @@ +9 diff --git a/pycam/debian/control b/pycam/debian/control new file mode 100644 index 00000000..ea820bc7 --- /dev/null +++ b/pycam/debian/control @@ -0,0 +1,46 @@ +Source: pycam +Section: science +Priority: optional +Maintainer: Lars Kruse +Build-Depends: + codespell, + debhelper (>= 9), + dh-python, + help2man, + python, + python3-flake8, + python3-numpy, + python3-pytest, + python3-setuptools, + python3-svg.path, +Standards-Version: 3.9.8 +Homepage: https://github.com/SebKuzminsky/pycam + +Package: pycam +Architecture: all +Depends: + librecad-data, + python3-gi, + python3-svg.path, + python3-yaml, + ${misc:Depends}, + ${python3:Depends}, +Recommends: + python3-numpy, + python3-opengl, + python3-setproctitle, +Description: CAM program & Python library for generating toolpaths + PyCAM is a toolpath generator for 3 axis machines. The generated + GCode can be used with LinuxCNC and other machine controllers. + The included Python library can be used independently from the GUI. + . + Features: + * read and write STL model files (3D) + * support for 2D models (DXF/SVG/PS) + * generate toolpaths (GCode) for various strategies and drill + definitions + * manage and store processing templates + * scale, move, rotate, flip and transform the model + * interactive 3D model view based on OpenGL + * non-interactive generation of GCode via commandline + * render single-line fonts (provided by QCAD) diff --git a/pycam/debian/copyright b/pycam/debian/copyright new file mode 100644 index 00000000..c85c61c3 --- /dev/null +++ b/pycam/debian/copyright @@ -0,0 +1,31 @@ +Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: PyCAM +Upstream-Contact: Lars Kruse +Source: https://github.com/SebKuzminsky/pycam + +Files: * +Copyright: 2010-2011, Lars Kruse + 2006-2010, Lode Leroy +License: GPL-3+ + +Files: debian/* +Copyright: 2010-2011, Lars Kruse + 2010, Sebastian Kuzminsky +License: GPL-3+ + +License: GPL-3+ + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + . + This package is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + . + You should have received a copy of the GNU General Public License + along with this program. If not, see . + . + On Debian systems, the full text of the GNU General Public License + version 3 can be found in the file `/usr/share/common-licenses/GPL-3'. diff --git a/pycam/debian/docs b/pycam/debian/docs new file mode 100644 index 00000000..c3b03ce6 --- /dev/null +++ b/pycam/debian/docs @@ -0,0 +1,3 @@ +Changelog +README.md +technical_details.txt diff --git a/pycam/debian/manpages b/pycam/debian/manpages new file mode 100644 index 00000000..a9808f87 --- /dev/null +++ b/pycam/debian/manpages @@ -0,0 +1 @@ +man/pycam.1 diff --git a/pycam/debian/pycam.mime b/pycam/debian/pycam.mime new file mode 120000 index 00000000..e7981f4c --- /dev/null +++ b/pycam/debian/pycam.mime @@ -0,0 +1 @@ +../share/mime/pycam.mime \ No newline at end of file diff --git a/pycam/debian/pycam.sharedmimeinfo b/pycam/debian/pycam.sharedmimeinfo new file mode 120000 index 00000000..b56d3102 --- /dev/null +++ b/pycam/debian/pycam.sharedmimeinfo @@ -0,0 +1 @@ +../share/mime/pycam.xml \ No newline at end of file diff --git a/pycam/debian/rules b/pycam/debian/rules new file mode 100755 index 00000000..b882d970 --- /dev/null +++ b/pycam/debian/rules @@ -0,0 +1,44 @@ +#!/usr/bin/make -f +# vim: noexpandtab +# See debhelper(7) (uncomment to enable) +# output every command that modifies files on the build system. +DH_VERBOSE = 1 + +# see EXAMPLES in dpkg-buildflags(1) and read /usr/share/dpkg/* +DPKG_EXPORT_BUILDFLAGS = 1 +include /usr/share/dpkg/default.mk + +# see FEATURE AREAS in dpkg-buildflags(1) +#export DEB_BUILD_MAINT_OPTIONS = hardening=+all + +# see ENVIRONMENT in dpkg-buildflags(1) +# package maintainers to append CFLAGS +#export DEB_CFLAGS_MAINT_APPEND = -Wall -pedantic +# package maintainers to append LDFLAGS +#export DEB_LDFLAGS_MAINT_APPEND = -Wl,--as-needed + + +# main packaging script based on dh7 syntax +%: + dh $@ --with python2 + +# This target updates pycam/Version.py and debian/changelog with current +# information from git. It's intended to be run before generating the +# debian source package. +prep-source: + $(MAKE) update-version + $(MAKE) update-deb-changelog + rm -f pycam/*.pyc + +override_dh_auto_clean: + $(MAKE) clean + debian/rules prep-source + +override_dh_auto_build: + $(MAKE) -C man + python setup.py build + +override_dh_auto_install: + python setup.py install --root=$(CURDIR)/debian/pycam --prefix=/usr + # remove redundant copy of docs + rm -rf $(CURDIR)/debian/pycam/usr/share/pycam/doc diff --git a/pycam/debian/source/format b/pycam/debian/source/format new file mode 100644 index 00000000..89ae9db8 --- /dev/null +++ b/pycam/debian/source/format @@ -0,0 +1 @@ +3.0 (native) diff --git a/pycam/docs/3d-view.md b/pycam/docs/3d-view.md new file mode 100644 index 00000000..8f6ca9b4 --- /dev/null +++ b/pycam/docs/3d-view.md @@ -0,0 +1,161 @@ +![Screenshot showing the 3D View](img/3d-view.png) + +The 3D view window opens +automatically during PyCAM's startup. You can hide it via the usual +*close* icon of your window manager or by disabling the *3D View Window* +checkbx in the *Windows* menu. + +The 3D view is based on OpenGL. Thus the respective libraries are +recommended. See the [list of dependencies](requirements.md) for +more details. You can use PyCAM even without OpenGL, but the lack of a +3D preview will probably hinder your workflow. + +The OpenGL visualization is currently not highly efficient. Maybe you +will want to close the window temporarily while working on complex +models (eg. some 10k triangles). + +Visual features +--------------- + +![Screenshot of 3D View with Context Menu](img/3d-view-context-menu.png) + +### Model + +The 2D contour model or the solid 3D model is displayed. See the +*OpenGL* settings below for more configurable details. + +### Support bridges + +Support bridges are only visible if you +enabled this feature for your model. + +### Toolpaths + +By default only the most recently generated toolpath is visible. Open +the *Toolpaths* tab if you want to see previous toolpaths. + +A toolpath consists of *cutting moves* and *safety moves*. The latter +are straight vertical moves up to safety height (see *GCode* +preferences) or horizontal moves at safety height. Safety moves are +drawn (by default) with a reduced opacity. + +### Bounding box + +The current bounding box is (by default) drawn as grey lines. You can +select other bounding boxes in the *Bounds* tab (directly) or in the +*Tasks* tab (indirectly). + +### Coordinate system + +The three axes of the coordinate system are drawn in red (x), green (y) +and blue (z). Hint: just remember *RGB*. + +### Dimensions + +The size of the current bounding is visible below the toolbar. + +Additionally the stretch of the model along the three axes is displayed. + +### Directions + +The following directions can be visualized (optional - see +*Configuration* below): + +- toolpath direction +- directions of 2D model contour lines +- the normals of surface triangles (3D models only) + +The directions of lines are visualized as cones placed in the middle of +each line. + +The triangle's normals are shown as short lines starting in the center +of each triangle pointing in the normal's direction. + +The winding state of each polygon is visualized via its transparency. +The outlines of holes are drawn half transparently. “Outside” polygons +use full opacity. + +Configuration +------------- + +### Visible items + +![Screenshot of Visible Items menu](img/3d-view-visible-items.png) + +All visible features of the 3D view can be selected in two different +locations: + +- the *Visible items* tab in the *Preferences* window +- a drop-down list in the top left corner of the 3D view window (click + at the small arrow icon) +- the context menu of the 3D view area (click with the right mouse + button) + +### Colors + +The colors of all visible items can be configured in the *Colors* tab of +the *Preferences* window. Reduce the opacity of specific items (e.g. for +toolpath safety moves) to highlight the importance of other items. + +### OpenGL + +There are some OpenGL properties available for configuration: + +- *Polygon fill*: draw solid triangles instead of wireframes (only for + 3D models) +- *Lighting*: enable a directed source of light (instead of + homogeneously distributed light +- *Shadows*: enable the *shadow* effect (only useful with directed + light) +- *Perspective View*: switch between orthogonal and perspective view + mode. The orthogonal view is useful for verifying the alignment of + model features, but rotation, zooming and panning don't work + perfectly. The perspective view is recommended instead. + +Usage +----- + +The 3D view can be rotated, zoomed and panned arbitrarily. + +The small arrow at the top left corner of the window contains a +drop-down list of the currently enabled visualization features. + +The 3D view area contains a context menu for visualization features and +for the *Preferences* window. + +### View templates + +The right part of the window's toolbar consists of seven view templates: + +- *Center*: the default angular view +- *Front*: xz-plane looking at the positive y direction +- *Back*: xz-plane looking at the negative y direction +- *Left*: yz-plane looking at the positive x direction +- *Right*: yz-plane looking at the negative x direction +- *Top*: xy-plane looking at the negative z direction +- *Bottom*: xy-plane looking at the positive z direction + +### Mouse control + +Drag the mouse while holding down one of these mouse buttons: + +- *Left button*: rotate the view. The rotation speed increases with + the distance from the window's center. +- *Right button*: zoom the view. Dragging the mouse to the right or up + zooms in. +- *Middle button*: pan the view. + +The scroll wheel of your mouse allows the following operations +(mimicking [Inkscape's](http://inkscape.org) behaviour): + +- pan upwards: scroll up +- pan downwards: scroll down +- pan right: *SHIFT* + scroll up +- pan left: *SHIFT* + scroll down +- zoom in: *CTRL* + scroll up +- zoom out: *CTRL* + scroll down + +### Keyboard control + +See the [list of shortcuts](keyboard-shortcuts#Visualization_window) for the +complete reference of keyboard controls. diff --git a/pycam/docs/ParameterGroup.dia b/pycam/docs/ParameterGroup.dia new file mode 100644 index 00000000..2a87b98e --- /dev/null +++ b/pycam/docs/ParameterGroup.dia @@ -0,0 +1,1517 @@ + + + + + + + + + + + + + #A4# + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + #Group# + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + #Set# + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + #Parameter# + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + #Parameter# + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + #Parameter# + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + #Parameter# + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + #Set# + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + #Group# + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + #Set# + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + #Set# + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + #Parameter# + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + #Process# + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + #Slicing +Contour +Surfacing +Engrave# + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ## + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + #Material allowance +Path pattern# + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ## + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + #Grid +Spiral +Trace +Pocketing# + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ## + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ## + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + #Step width +Overlap +Direction +Milling style +Inside->out +Trace model# + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ## + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ## + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ## + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ## + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/pycam/docs/articles.md b/pycam/docs/articles.md new file mode 100644 index 00000000..7d5132ae --- /dev/null +++ b/pycam/docs/articles.md @@ -0,0 +1,30 @@ +- + -- this video shows how to turn a picture via Gimp, Inkscape and + PyCAM into GCode +- -- + how to set up a FabLab in seven days +- -- + turn a puzzle-like shape into GCode +- -- PyCAM installed by Ubuntu + users (registered via popcon) +- + -- modeling chain description +- (as + [HTML](http://cr4.globalspec.com/blogentry/16801/OpenSource-CNC-From-CAD-to-FAB)) + -- using PyCAM or Blender for toolpath generation +- (nl) -- using + PyCAM with a Mantis machine +- (german) + -- generating a gear wheel toolpath +- -- using + a Walther 2520 +- -- + short review of some CAD/CAM packages +- -- list of GCode generators at + +- - + very concise howto +- - very + short article +- -- presentation about + CAM software and format converters (2009) diff --git a/pycam/docs/bounding-box.md b/pycam/docs/bounding-box.md new file mode 100644 index 00000000..4646d28f --- /dev/null +++ b/pycam/docs/bounding-box.md @@ -0,0 +1,16 @@ +A bounding box is a 3D area where you want the mill to do its work or +actually stay away. + +This is useful for: + +- Doing work in areas that require specific movements e.g. for more + detailed finish ins small areas or higher speed of material removal + for roughing in larger ones. +- Staying away from areas, f.i. to avoid clamps + +You can set up to work inside the bounding box and outside the bounding +box (plus another option editor has to look up, also not mentioned here +where to find these settings in preferences). + +The bounding box is shown in the model by a set of lines describing the +box. diff --git a/pycam/docs/cli-examples.md b/pycam/docs/cli-examples.md new file mode 100644 index 00000000..446e8b0c --- /dev/null +++ b/pycam/docs/cli-examples.md @@ -0,0 +1,34 @@ +Using PyCAM via the command-line +================================ + +**WARNING: this page is outdated. Please refer to the output of +“pycam --help” or [browse it online](/manpages/pycam.1.html).** + +The following examples show some command use-cases for the +non-interactive generation of GCode with PyCAM: + +- load a specific settings file for the GUI: + + + + pycam --config SOME_CONFIG_FILE + +- open a model: + + + + pycam SOME_MODEL_FILE + +- generate a GCode file using all default tasks (taken from the + default settings): + + + + pycam SOME_MODEL_FILE DESTINATION_GCODE_FILE + +- generate a GCode file using a custom settings file and picking just + one specific task: + + + + pycam --config YOUR_SETTINGS_FILE --task 2 SOME_MODEL_FILE DESTINATION_GCODE_FILE diff --git a/pycam/docs/developers-guide.md b/pycam/docs/developers-guide.md new file mode 100644 index 00000000..d129ca58 --- /dev/null +++ b/pycam/docs/developers-guide.md @@ -0,0 +1,139 @@ +Mailing lists +------------- + +Please join our development mailing list +[pycam-devel@sourceforge.net](http://sourceforge.net/mailarchive/forum.php?forum_name=pycam-devel). + +Introduction +------------ + +The code of PyCAM including all related files and previous releases is +stored in a subversion repository. You need to checkout a local working +copy to start working on PyCAM: + + svn co https://pycam.svn.sourceforge.net/svnroot/pycam/trunk pycam + +Upload your changes with: + + svn commit + +Previous versions are stored in the *tags* path of the repository: + + +Changing the GTK interface +-------------------------- + +The definition of the complete GUI is stored in an XML file (GTKBuilder +UI format). + +You can change this GUI with the program *glade* (available in a package +of the same name in Debian and Ubuntu). + +Whenever you change the name (this is not the label) of a control, you +should also replace all occurrences of this string in the file +`src/pycam/Gui/Project.py`. + +Please add tooltips wherever it is suitable. + +### Adding a menu item + +Three steps are required to add a new menu item: + +1. add an action item (the very first icon in the left sidebar in + *glade*) to the GUI file (see above) + 1. add a suitable label - it will be visible as the text of the + menu item + 2. put an underscore in front of a character to mark it as the + hotkey of this item +2. add the item with its name to the file + `share/gtk-interface/menubar.xml` +3. add a handler for this action to `src/pycam/Gui/Project.py` + 1. search for `accel\_key` (around line 160) + +Changing default settings +------------------------- + +PyCAM uses two types of settings. + +The general settings define the unit size (imperial or metric), colors, +program locations and so on. They are stored automatically on exit in +the file `\~/.pycam/preferences.conf`. + +The task settings describe the tools, processes, bounding boxes and +tasks. They are not stored automatically. Thus they are at their default +values on each start of PyCAM. + +### General preferences + +The default general PyCAM settings are defined at the top of +`src/pycam/Gui/Project.py` in the dictionary `PREFERENCES_DEFAULTS`. + +### Task settings + +The default task settings are defined in the file +`src/pycam/Gui/Settings.py` in the dictionary `BASIC_DEFAULT_CONFIG`. + +Preparing a tutorial video +-------------------------- + +Some people really appreciate to use video tutorials for a quick +introduction. The following steps could help you to prepare one. + +### Record a session + +Use one of the available screen recorders. +[RecordMyDesktop](http://recordmydesktop.sourceforge.net) is a good +choice. Debian or Ubuntu users just install *gtk-recordmydesktop*. + +Maybe you want to turn the background into a single flat color - +probably black - before starting the session. + +### Uncompressing and cropping the video + +If you recorded the whole screen, but you need only a part of it, then +run the following: + + ffmpeg -i INPUT_FILE -crop WIDTH:HEIGHT:LEFT_X:TOP_Y -vcodec ffv1 OUTPUT_FILE + +Even if you don't need to crop the video, you should still use the line +above (without the *-crop* parameter) to convert the video into a +non-compressed format. Otherwise you will run later (during cutting) +into problems with missing keyframes resulting in half-way broken video +startup frames. + +### Cut and merge the video + +Use the following example for cutting a small part of the video: + + mencoder -ovc raw -noskip -forceidx -vf harddup -ss START_TIME -endpos DURATION INPUT_FILE -o OUTPUT_FILE + +Combine multiple cutted video pieces: + + mencode -idx -ovc raw INPUT_FILE1 INPUT_FILE2 -o OUTPUT_FILE + +### Add subtitles + +Use one of the common subtitle editors (e.g. +[Gnome-Subtitles](http://gnome-subtitles.sourceforge.net/)) to create an +SRT file. You can obviously also do this manually with your favorite +text editor. + +Run the following to merge the subtitles permanently with the video: + + mencoder -sub SUBTITLE_FILE -subfont-text-scale 3 -subalign 0 -subpos 2 -utf8 INPUT_FILE -o OUTPUT_FILE -ovc lavc -lavcopts vbitrate=1200 + +### Uploading + +You should probably upload the video to one of the common video sharing +websites. Currently all videos are available at +[Vimeo](http://vimeo.com/channels/pycam). + +### Publishing + +Please announce your new tutorial via the [PyCAM's developer's +blog](http://fab.senselab.org/pycam). Send a mail to the mailing list, +if you need access to the blog. + +The original video file and the available subtitles should be later +committed to the development repository. Additionally the new video +should be added to the [Video Translations](video-translations.md) page. diff --git a/pycam/docs/engrave-fonts.md b/pycam/docs/engrave-fonts.md new file mode 100644 index 00000000..4bb2ee7d --- /dev/null +++ b/pycam/docs/engrave-fonts.md @@ -0,0 +1,65 @@ +PyCAM uses the single-line fonts created by the +[QCAD](http://qcad.org)-developers. + +See *Extras -> Engrave Text* in the PyCAM menu. + +Single-line fonts are usually more suitable for engraving than common +contour-based fonts. You will see the difference when you try to engrave +a regular font (e.g. created with [Inkscape](http://inkscape.org)). The +inner sections of each letter will be less blurry with a single-line +font (especially for small engravings). + +The following list shows all fonts available in PyCAM. The example text +is: + + ABCDEFGHIJKLM + NOPQRSTUVWXYZ + 01234567890 + !"$%&*()[]{}-_= + +/#@~?<>,.;\|^ + + +Font Samples +------------ + +| Name | Image | +|------------------------------|-------------------------------------------------| +| Courier | ![](img/engrave-font-courier.png) | +| Cursive | ![](img/engrave-font-cursive.png) | +| Cyrillic II | ![](img/engrave-font-cyrillic2.png) | +| Gothic German Triplex | ![](img/engrave-font-gothic-german.png) | +| Gothic Great Britain Triplex | ![](img/engrave-font-gothic-british.png) | +| Gothic Italian Triplex | ![](img/engrave-font-gothic-italian.png) | +| Greek Complex | ![](img/engrave-font-greek-complex.png) | +| Greek Complex Small | ![](img/engrave-font-greek-complex-small.png) | +| Greek Outline | ![](img/engrave-font-greek-ol.png) | +| Greek Outline+ | ![](img/engrave-font-greek-ol-plus.png) | +| Greek Plain | ![](img/engrave-font-greek-plain.png) | +| Greek Simplex | ![](img/engrave-font-greek-simplex.png) | +| ISO8859-11 | ![](img/engrave-font-iso8859-11.png) | +| Italian Complex | ![](img/engrave-font-italian-complex.png) | +| Italian Complex Small | ![](img/engrave-font-italian-complex-small.png) | +| Italian Triplex | ![](img/engrave-font-italian-triplex.png) | +| Japanese | ![](img/engrave-font-japanese.png) | +| Kochi Gothic | ![](img/engrave-font-kochi-gothic.png) | +| Kochi Mincho | ![](img/engrave-font-kochi-mincho.png) | +| Normal | ![](img/engrave-font-normal.png) | +| Normal Latin 1 | ![](img/engrave-font-normal-latin1.png) | +| Normal Latin 2 | ![](img/engrave-font-normal-latin2.png) | +| Roman Complex | ![](img/engrave-font-roman-complex.png) | +| Roman Complex Small | ![](img/engrave-font-roman-complex-small.png) | +| Roman Duplex | ![](img/engrave-font-roman-duplex.png) | +| Roman Plain | ![](img/engrave-font-roman-plain.png) | +| Roman Simplex | ![](img/engrave-font-roman-simplex.png) | +| Roman Triplex | ![](img/engrave-font-roman-triplex.png) | +| Script Complex | ![](img/engrave-font-script_complex.png) | +| Standard | ![](img/engrave-font-standard.png) | +| Symbol | ![](img/engrave-font-symbol.png) | +| Symbol Astro | ![](img/engrave-font-symbol-astro.png) | +| Symbol Misc 1 | ![](img/engrave-font-symbol-misc-1.png) | +| Symbol Misc 2 | ![](img/engrave-font-symbol-misc-2.png) | +| Unicode | ![](img/engrave-font-unicode.png) | + + + + diff --git a/pycam/docs/faq.md b/pycam/docs/faq.md new file mode 100644 index 00000000..5a089b84 --- /dev/null +++ b/pycam/docs/faq.md @@ -0,0 +1,181 @@ +Introduction +============ + +What is PyCAM? +-------------- + +PyCAM is a toolpath generator for 3 axis machines (usually: milling +machines). Your workflow will probably look like this: + +1. load a 3D or 2D model +2. specify some processing parameters (tool size, ...) +3. save the resulting GCode to a file + +The GCode file can be used by most standards-compliant machine +controllers (e.g. [LinuxCNC](http://www.linuxcnc.org/)). + +What licence applies to PyCAM? Does it cost money? +-------------------------------------------------- + +PyCAM is [free software](http://www.gnu.org/philosophy/free-sw.html) +licenced under the GPL v3. Thus you may use, change and distribute it +without any costs and you do not need any kind of approval from its +authors. Please take a look at the [licence +details](http://www.gnu.org/licenses/gpl.html) for further information. + +Installing PyCAM +================ + +Requirement installer for Windows: “the NTVDM CPU has encountered an illegal instruction” +----------------------------------------------------------------------------------------- + +The above errors seems to be triggered occasionally when installing the +*GtkGLext* component of the dependency installer in Windows XP SP3. + +The root cause seems to be the (quite outdated) installer script for +*GtkGLext*. Please take a look at this +[filelist](http://sourceforge.net/projects/pycam/files/dependency-installer/win32/external_binaries/gtkglext/) +and download the two required DLL files manually. There you also find +the preferred location of these two files. + +Running PyCAM +============= + +Failed to initialize the interactive 3D model view +-------------------------------------------------- + +A lot of new users of PyCAM stumble upon this error message. The +solution depends on your platform and your method of installation. + +Please take a look at [OpenGL troubles](opengl-troubles.md) for +details. + +PyCAM consumes all my memory! \[only Unix\] +------------------------------------------- + +There seems to be a problem with PyCAM v0.5.x running under Python 2.7. +Ubuntu Natty and Oneiric (11.04 / 11.10)) and other distributions ship +this version of Python by default. The specific cause of the problem was +discovered recently by jferrara. It will be fixed in release v0.6 of +PyCAM. + +* Solution A: install Python 2.6 and use it for running PyCAM. +* Solution B: apply this small patch for PyCAM: + +SVG import: postoedit reports a missing MSVCR100.dll library \[only Windows\] +----------------------------------------------------------------------------- + +After installing *inkscape*, *pstoedit* and *ghostscript* the import of +SVG files fails with an an error report referring to a missing library +MSVCR100.dll (only relevant for PyCAM before v0.7). + +pstoedit v3.60 (or later) depends on the MS Visual C++ 2010 library. +Thus you have to options to solve this issue: + +* Solution A: install an older version of *pstoedit* (e.g. [v3.50](http://sourceforge.net/projects/pstoedit/files/pstoedit/3.50/)) +* Solution B: install [Microsoft Visual C++ 2010 Redistributable Package (x86)](http://www.microsoft.com/download/en/details.aspx?id=5555) - maybe you also need to install [Windows Installer 3.1 Redistributable (v2)](http://www.microsoft.com/download/en/details.aspx?displaylang=en&id=25) + +Toolpaths (general) +=================== + +Cropping a toolpath results in no moves at all +---------------------------------------------- + +The *crop* feature reduces the x-y area of all tool moves to the +projected area of the current model. + +You should press the *2D projection* button to see if the resulting 2D +projection meets your expectations. PyCAM is partly guessing the height +of the slicing plane: usually z=0 is assumed, but the bottom of the +model is used if the model is completely above or below this plane. Just +shift the model along the z axis if you want to force a specific slicing +plane. + +Toolpaths for 3D models +======================= + +The *surface* path generator goes down to the bottom of the model. This will break my tool! +------------------------------------------------------------------------------------------- + +The *surface* path generator should be the last step of your workflow. +You should probably use a “push cutter” strategy before. This will +remove the material in slices of configurable height. + +My *Art of Illusion* models are half-way turned over +---------------------------------------------------- + +The coordinate system of [Art of Illusion](http://artofillusion.org/) +assumes that the xy plane is the front face of a model. Thus the height +of the model goes along the y axis - instead of the more common z axis. +Just swap the y and z axes (see +[Model Transformations](model-transformations.md)) to fix this issue. + +Toolpaths for 2D models +======================= + +I can't open SVG files +---------------------- + +PyCAM (before v0.7) contains no built-in support for SVG. Thus you +needed to install [Inkscape](http://inkscape.org) and +[pstoedit](http://www.pstoedit.net/pstoedit). + +See the list of +[requirements](requirements#Optional_external_programs) for +details. + +My SVG models are empty +----------------------- + +Please read the [2D modeling with Inkscape (SVG)](modeling-inkscape-svg.md). + +The most common problems are: + +- partially transparent items are ignored (opacity must be at 100%) +- items outside of the document sheet (the canvas) are ignored +- [ghostscript](http://pages.cs.wisc.edu/~ghost/) is not installed + (probably only relevant for Windows users) + +Rapid moves are placed below the model instead of above +------------------------------------------------------- + +Probably you need to adjust the *safety height* (see *GCode settings*) +according to the height of your model. Alternatively you could also shift +the model down to z=0. + +Toolpaths with an offset are placed inside of the model instead of outside +-------------------------------------------------------------------------- + +There can be two reasons: + +* you specified a negative engraving offset: In this case the toolpath is supposed to be inside of the polygons. This is a feature. +* the polygon's winding is clockwise instead of counter-clockwise (or vice versa): use the *toggle directions* or *revise directions* button to fix this issue. + +How can I specify the depth for gravures? +----------------------------------------- + +The height of the bounding box defines the depth of a gravure. Just +increase the upper z-margin of the bounding box. You will need to switch +to the “fixed margin” style to accomplish this. + +Why can't the pocketing algorithm handle simple holes/islands? +-------------------------------------------------------------- + +Sadly both major libraries offering 2D polygon operations +([CGAL](http://www.cgal.org/) and +[GPC](http://www.cs.man.ac.uk/~toby/alan/software/)) were distributed +under GPL-incompatible licenses until recently. Since the middle of 2012 +[CGAL switched to the GPL](http://www.cgal.org/license.html). Thus it is +now possible to use this great library for geometry operations. So this +missing feature can be added easily as soon as someone feels like +jumping into this task ... + +Open Questions +============== + +Just add your problem or question here - it will get collected and +answered ... + +(Or use the +[forum](http://sourceforge.net/projects/pycam/forums/forum/860184), if +you expect a longer discussion.) diff --git a/pycam/docs/features.md b/pycam/docs/features.md new file mode 100644 index 00000000..27ef20bd --- /dev/null +++ b/pycam/docs/features.md @@ -0,0 +1,179 @@ +Features of PyCAM +================= + +Supported file formats +---------------------- + +### Import + +- STL (binary/ascii) +- DXF +- SVG +- PS/EPS + +### Export + +- STL (ascii) +- SVG +- GCode + +Model operations +---------------- + +STL files describe 3D models of triangles. +[OpenSCAD](http://openscad.org), [Art of +Illusion](http://www.artofillusion.org/), +[MeshLab](http://meshlab.sourceforge.net/) and other programs can export +3D models as STL files. + +2D models are imported from SVG, DXF, PS and EPS files. + +Implemented model operations: + +- scale the mode by a given factor +- move the model +- rotate around x, y or z axis (90 degrees) +- flip the model against the xy-, xz- or yz-plane +- swap axes +- save the model to an ascii STL file +- reverse line directions of 2D contour models (toggles inside/outside + of polygons) +- 2D projection of 3D models +- automatically fix inside/outside relationships of 2D polygons +- [extrude 2D models](http://fab.senselab.org/node/227) with + configurable slopes + +Cutter definitions +------------------ + +PyCAM needs to know the shape and size of the cutter (drill) to generate +the toolpath shaping a model. + +The following cutter attributes are supported: + +- shapes: cylindrical, spherical, toroidal +- dimensions: radius and (if used) torus radius + +Processing settings +------------------- + +The processing settings determine the way the toolpath is generated. +This mainly includes the direction of force (Drop Cutter vs. Push +Cutter) and the path strategy. + +### Details + +- Strategies: Slice removal, Contour (two modes), Drop cutter, + Engraving +- Milling style: conventional / climb / minimize movements +- Grid direction: x, y or both +- Material Allowance: amount of material to remain around the model +- Overlap: how far parallel toolpath should overlap +- Step down: maximum height of material to be abraded with one slice + of the Push Cutter +- Engrave offset: move the cutter parallel to the given 2D model +- Pocketing type: clearing a closed area + +### Support Bridges + +If you want all pieces of your model to stay connected to the material +around (e.g. if you don't use a vacuum table), then you may want to add +support bridges to your model. + +These support bridges can be defined in two ways: + +- a horizontal/vertical grid +- automatic distribution of support bridges along the outline (corners + or edges) of parts of the model + +The width, height and length of the support bridges are configurable. + +Engrave text +------------ + +PyCAM includes the single-line fonts developed by +[QCAD](http://qcad.org). You can type text and define some properties +(skew, pitch, line spacing). The result can be exported to an SVG file +or used directly in PyCAM (for engraving). + +See the rendered output of all [single-line fonts](engrave-fonts.md) included in PyCAM. + +Toolpath handling +----------------- + +- [crop toolpath](http://fab.senselab.org/en/blog/cropping-toolpaths-model-outline) + to the outline of a model or to arbitrary 2D contours +- [clone a toolpath](http://fab.senselab.org/en/blog/cloning-toolpath-mass-production) + in a grid of columns and rows + +GCode features +-------------- + +GCode is a common input format for machine control software (e.g. +[LinuxCNC](http://www.linuxcnc.org/)). The GCode file may contain one or mothe +toolpaths. + +Available Features: + +- export toolpath as GCode files +- Measurement unit: millimeter or inches +- Speed: rotation speed of the drill +- Feedrate: maximum speed of the drill against the material +- join multiple toolpaths into one gcode file (including tool changes) +- Safety height: z-value of the safe position above the object +- specify path precision vs. processing speed + ([G61/G64](http://www.linuxcnc.org/docs/html/gcode_main.html#G61,%20G61.1,%20G64%20Path%20Control%7CGCode)) +- specify the minimum step width for all three axes +- [*touch off* and *tool change*](touch-off.md) operations +- export tool definitions to LinuxCNC (for improved visualization) + +GUI features +------------ + +- interactive [visualization of the 3D model](3d-view) + (rotate, pan and zoom with mouse or keyboard) +- load and save processing settings file + - useful for extending the current processing templates +- fully configurable model view items (colors, visibility) +- management of toolpaths +- default templates for three operatios are defined (“rough”, + “semi-finish”, “finish”) +- show progress bar for time consuming operations +- show drill progress during path generation (optional) +- show a + [simulation of tool moves](http://fab.senselab.org/en/blog/new-simulation-mode-video-tutorial) +- show statistics of connected worker threads in a process pool + (see [Server Mode](server-mode.md)) + +Command-line features +--------------------- + +- load an STL/DXF/PS/EPS/SVG model file +- load a processing settings file +- create a GCode file non-interactively (currently with only one + toolpath): + - almost all GUI options are usable via command-line arguments + +Parallel processing +------------------- + +PyCAM automatically uses all available CPU cores to run toolpath +calculations in parallel. + +Additionally you can connect multiple hosts for distributed processing +within the pool. See the [Server Mode](server-mode.md) for more +details. + +Please check the requirements for all possible +[features on different platforms](parallel-processing). + +Internal features +----------------- + +### Collision detection + +Currently there is one implementation used for generating a toolpath: + +- triangular collision calculation: + - calculates the collision position by checking all relevant + triangles and their direction diff --git a/pycam/docs/getting-started.md b/pycam/docs/getting-started.md new file mode 100644 index 00000000..f7a703ed --- /dev/null +++ b/pycam/docs/getting-started.md @@ -0,0 +1,101 @@ +Dive into PyCAM +=============== + +The following guide tries to push you as quickly as possible through the +process of milling your first model based on a toolpath made with PyCAM. +All the gory details will be missing - but at least you will know the +basics. + + +Prepare a GCode file with PyCAM +------------------------------- + +1. Load a model: Open an STL file of your choice OR just continue with PyCAM's default model (a box with text elevated on top) + +2. Fix the dimensions of the model: Rotate, mirror and scale the model until its dimensions are fine for you. In a perfect world you would do this with your 3D modeler - but in case of emergency this can also be done with PyCAM. + +3. Position the model: Many people adjust the top of their model to _z=0_. This makes it quite easy to touch-off (calibrate _z_) the tip of the tool at the top of your material. + +4. Define the bounding box: This part is a bit tricky and depends on your approach of clamping the base material to the milling machine. Basically the bounding box describes the shape of the available material. + +5. Define a first task: The first milling task will usually remove big amounts of material without caring too much for a high surface quality. Choose a big tool and configure a *slice removal* process with a minimum overlap. This process will remove a lot of material with as few moves as possible. + +6. Define more granular tasks: Now you are ready for a smaller tool and the *surface* strategy with a high overlap (e.g. 60%). This will give you quite a good surface quality. + +7. Generate the toolpath for both tasks: This can take some minutes. + +8. Configure GCode details: The most important GCode setting is the safety height. This defines the z-level at which the machine (including the tool) is free to move without any obstacles. The default is slightly above zero. You absolutely need to make sure that the safety height is always clearly above the level of the top of your material. You will see all changes reflected in the 3D preview immediately. + +9. Write GCode: Now you can export both toolpaths to a file. This GCode file can be imported by your machine controller software (e.g. [LinuxCNC](http://www.linuxcnc.org/)) - see below. + +Run the GCode file +------------------ + +*The following part is not done with PyCAM - but this section may help +you anyway to understand the process.* + +Machine controller software like LinuxCNC can import the GCode file. Now +you just need to following a few final steps: + +- turn on the machine +- *home* its coordinate system (via your stop-switches) +- fixiate your material block to the milling bed +- Move the tip of the tool to the the origin of your coordinate system + (x=0, y=0, z=0) for the simplest kind of touch-off. +- Run the GCode. +- Your machine controller software will pause before starting the + second tasks only if you created separate tools of both tasks in + PyCAM. + +The final result of this milling operation should be very similar to +your original model. Increase overlap and experiment with other +parameters if you need to improve its quality. At this moment will you +understand the importance of the fixiation - especially if you isolated +a part of the model form the fixiated part. You can always use *support +bridges* (in PyCAM) to overcome this problem. + +Let's go, start up pycam! +========================= + +*written by - incomplete* + +**(Screenshots will follow)** After we start up PyCAM we see the +pycam-textbox in the visualisation window. You can actually go and +prepare to mill this if you want but we will open up our own file. All +the work will be done in the other window which opens up in the “model” +tab. In the “model” tab, click file> open model and find and open the +stl file you want to work on. In this guide we will use a file for a 2 +piece mould. + +After opening this file it is in a position that can not be used for +milling. We will transform the model to position it correctly. The way +in which it apears depends on how it was made, you may not need to +change its position. + +- Choose x<->z, then click swap. The model is recalculated. +- Then choose y<-> and click swap. After recalculating the model + is in the right position to be milled but upside down. +- Choose x-y plane and then click flip. After recalculating the model + is set correctly for milling. +- If you need to rotate the model, click rotate after selecting the + axis you want to rotate. Each click will rotate 90 degrees + clockwise. + +The model is recalculated. We will now save this model under a new name +(file>save model as), this way we can open the model again later in +the position it is now. + +Because this is a trial we do not want to mill this mould full size. +That would take a lot more time an material where a smaller model would +give us a lot of experience too. + +Under “Model dimension” choose a factor (we use 30% here) and click +scale model. + +The model now is no longer starting at Origin. To put it back, click To +origin. + +If you leave the model as it is now, the g-code will include rapid moves +inside the model. Bring the top of the model down by entering the height +of the model (after rescaling) in “move model”, in this case 50x0.30= 15 +millimeters, add - so use -15 in direction z, then click shift. diff --git a/pycam/docs/img/2d-modeling-polygon_directions.png b/pycam/docs/img/2d-modeling-polygon_directions.png new file mode 100644 index 00000000..a3b39907 Binary files /dev/null and b/pycam/docs/img/2d-modeling-polygon_directions.png differ diff --git a/pycam/docs/img/2d-modeling-polygon_directions.svg b/pycam/docs/img/2d-modeling-polygon_directions.svg new file mode 100644 index 00000000..d38a3f7d --- /dev/null +++ b/pycam/docs/img/2d-modeling-polygon_directions.svg @@ -0,0 +1,158 @@ + + + + + Polygon directions in Inkscape + + + + + + + + + + + + + + image/svg+xml + + Polygon directions in Inkscape + 2011-01-08 + + + Lars Kruse <devel@sumpfralle.de> + + + + + + + + + + + + + + + + + + Path -> Reverse + + + + Path -> Combine + + diff --git a/pycam/docs/img/2d-multilayer-engrave-model.png b/pycam/docs/img/2d-multilayer-engrave-model.png new file mode 100644 index 00000000..b09e588e Binary files /dev/null and b/pycam/docs/img/2d-multilayer-engrave-model.png differ diff --git a/pycam/docs/img/2d-multilayer-engrave-toolpath.png b/pycam/docs/img/2d-multilayer-engrave-toolpath.png new file mode 100644 index 00000000..f897c7a6 Binary files /dev/null and b/pycam/docs/img/2d-multilayer-engrave-toolpath.png differ diff --git a/pycam/docs/img/2d-multilayer-engrave.png b/pycam/docs/img/2d-multilayer-engrave.png new file mode 100644 index 00000000..63c5be9d Binary files /dev/null and b/pycam/docs/img/2d-multilayer-engrave.png differ diff --git a/pycam/docs/img/2d-multilayer-engrave.svg b/pycam/docs/img/2d-multilayer-engrave.svg new file mode 100644 index 00000000..84a1a29c --- /dev/null +++ b/pycam/docs/img/2d-multilayer-engrave.svg @@ -0,0 +1,87 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + frame: redtext: green + + diff --git a/pycam/docs/img/3d-view-context-menu.png b/pycam/docs/img/3d-view-context-menu.png new file mode 100644 index 00000000..ad86884b Binary files /dev/null and b/pycam/docs/img/3d-view-context-menu.png differ diff --git a/pycam/docs/img/3d-view-visible-items.png b/pycam/docs/img/3d-view-visible-items.png new file mode 100644 index 00000000..600acbc1 Binary files /dev/null and b/pycam/docs/img/3d-view-visible-items.png differ diff --git a/pycam/docs/img/3d-view.png b/pycam/docs/img/3d-view.png new file mode 100644 index 00000000..67a49792 Binary files /dev/null and b/pycam/docs/img/3d-view.png differ diff --git a/pycam/docs/img/engrave-font-courier.png b/pycam/docs/img/engrave-font-courier.png new file mode 100644 index 00000000..602db23e Binary files /dev/null and b/pycam/docs/img/engrave-font-courier.png differ diff --git a/pycam/docs/img/engrave-font-cursive.png b/pycam/docs/img/engrave-font-cursive.png new file mode 100644 index 00000000..dec83e94 Binary files /dev/null and b/pycam/docs/img/engrave-font-cursive.png differ diff --git a/pycam/docs/img/engrave-font-cyrillic2.png b/pycam/docs/img/engrave-font-cyrillic2.png new file mode 100644 index 00000000..c44294a5 Binary files /dev/null and b/pycam/docs/img/engrave-font-cyrillic2.png differ diff --git a/pycam/docs/img/engrave-font-gothic-british.png b/pycam/docs/img/engrave-font-gothic-british.png new file mode 100644 index 00000000..17a45f69 Binary files /dev/null and b/pycam/docs/img/engrave-font-gothic-british.png differ diff --git a/pycam/docs/img/engrave-font-gothic-german.png b/pycam/docs/img/engrave-font-gothic-german.png new file mode 100644 index 00000000..e74fc3b7 Binary files /dev/null and b/pycam/docs/img/engrave-font-gothic-german.png differ diff --git a/pycam/docs/img/engrave-font-gothic-italian.png b/pycam/docs/img/engrave-font-gothic-italian.png new file mode 100644 index 00000000..f2966e27 Binary files /dev/null and b/pycam/docs/img/engrave-font-gothic-italian.png differ diff --git a/pycam/docs/img/engrave-font-greek-complex-small.png b/pycam/docs/img/engrave-font-greek-complex-small.png new file mode 100644 index 00000000..43e94a12 Binary files /dev/null and b/pycam/docs/img/engrave-font-greek-complex-small.png differ diff --git a/pycam/docs/img/engrave-font-greek-complex.png b/pycam/docs/img/engrave-font-greek-complex.png new file mode 100644 index 00000000..d221ca59 Binary files /dev/null and b/pycam/docs/img/engrave-font-greek-complex.png differ diff --git a/pycam/docs/img/engrave-font-greek-ol-plus.png b/pycam/docs/img/engrave-font-greek-ol-plus.png new file mode 100644 index 00000000..ba9ae22a Binary files /dev/null and b/pycam/docs/img/engrave-font-greek-ol-plus.png differ diff --git a/pycam/docs/img/engrave-font-greek-ol.png b/pycam/docs/img/engrave-font-greek-ol.png new file mode 100644 index 00000000..ba9ae22a Binary files /dev/null and b/pycam/docs/img/engrave-font-greek-ol.png differ diff --git a/pycam/docs/img/engrave-font-greek-plain.png b/pycam/docs/img/engrave-font-greek-plain.png new file mode 100644 index 00000000..35849f72 Binary files /dev/null and b/pycam/docs/img/engrave-font-greek-plain.png differ diff --git a/pycam/docs/img/engrave-font-greek-simplex.png b/pycam/docs/img/engrave-font-greek-simplex.png new file mode 100644 index 00000000..c34381fd Binary files /dev/null and b/pycam/docs/img/engrave-font-greek-simplex.png differ diff --git a/pycam/docs/img/engrave-font-iso8859-11.png b/pycam/docs/img/engrave-font-iso8859-11.png new file mode 100644 index 00000000..e989fc39 Binary files /dev/null and b/pycam/docs/img/engrave-font-iso8859-11.png differ diff --git a/pycam/docs/img/engrave-font-italian-complex-small.png b/pycam/docs/img/engrave-font-italian-complex-small.png new file mode 100644 index 00000000..b6b3b828 Binary files /dev/null and b/pycam/docs/img/engrave-font-italian-complex-small.png differ diff --git a/pycam/docs/img/engrave-font-italian-complex.png b/pycam/docs/img/engrave-font-italian-complex.png new file mode 100644 index 00000000..81afad2c Binary files /dev/null and b/pycam/docs/img/engrave-font-italian-complex.png differ diff --git a/pycam/docs/img/engrave-font-italian-triplex.png b/pycam/docs/img/engrave-font-italian-triplex.png new file mode 100644 index 00000000..8c6ad558 Binary files /dev/null and b/pycam/docs/img/engrave-font-italian-triplex.png differ diff --git a/pycam/docs/img/engrave-font-japanese.png b/pycam/docs/img/engrave-font-japanese.png new file mode 100644 index 00000000..51c91953 Binary files /dev/null and b/pycam/docs/img/engrave-font-japanese.png differ diff --git a/pycam/docs/img/engrave-font-kochi-gothic.png b/pycam/docs/img/engrave-font-kochi-gothic.png new file mode 100644 index 00000000..4ceb9d89 Binary files /dev/null and b/pycam/docs/img/engrave-font-kochi-gothic.png differ diff --git a/pycam/docs/img/engrave-font-kochi-mincho.png b/pycam/docs/img/engrave-font-kochi-mincho.png new file mode 100644 index 00000000..32f3a7d8 Binary files /dev/null and b/pycam/docs/img/engrave-font-kochi-mincho.png differ diff --git a/pycam/docs/img/engrave-font-normal-latin1.png b/pycam/docs/img/engrave-font-normal-latin1.png new file mode 100644 index 00000000..92d81b5e Binary files /dev/null and b/pycam/docs/img/engrave-font-normal-latin1.png differ diff --git a/pycam/docs/img/engrave-font-normal-latin2.png b/pycam/docs/img/engrave-font-normal-latin2.png new file mode 100644 index 00000000..c44294a5 Binary files /dev/null and b/pycam/docs/img/engrave-font-normal-latin2.png differ diff --git a/pycam/docs/img/engrave-font-normal.png b/pycam/docs/img/engrave-font-normal.png new file mode 100644 index 00000000..c44294a5 Binary files /dev/null and b/pycam/docs/img/engrave-font-normal.png differ diff --git a/pycam/docs/img/engrave-font-roman-complex-small.png b/pycam/docs/img/engrave-font-roman-complex-small.png new file mode 100644 index 00000000..5fa92b9d Binary files /dev/null and b/pycam/docs/img/engrave-font-roman-complex-small.png differ diff --git a/pycam/docs/img/engrave-font-roman-complex.png b/pycam/docs/img/engrave-font-roman-complex.png new file mode 100644 index 00000000..af4195ec Binary files /dev/null and b/pycam/docs/img/engrave-font-roman-complex.png differ diff --git a/pycam/docs/img/engrave-font-roman-duplex.png b/pycam/docs/img/engrave-font-roman-duplex.png new file mode 100644 index 00000000..2f7a12ba Binary files /dev/null and b/pycam/docs/img/engrave-font-roman-duplex.png differ diff --git a/pycam/docs/img/engrave-font-roman-plain.png b/pycam/docs/img/engrave-font-roman-plain.png new file mode 100644 index 00000000..af4195ec Binary files /dev/null and b/pycam/docs/img/engrave-font-roman-plain.png differ diff --git a/pycam/docs/img/engrave-font-roman-simplex.png b/pycam/docs/img/engrave-font-roman-simplex.png new file mode 100644 index 00000000..c590e401 Binary files /dev/null and b/pycam/docs/img/engrave-font-roman-simplex.png differ diff --git a/pycam/docs/img/engrave-font-roman-triplex.png b/pycam/docs/img/engrave-font-roman-triplex.png new file mode 100644 index 00000000..0a931cc5 Binary files /dev/null and b/pycam/docs/img/engrave-font-roman-triplex.png differ diff --git a/pycam/docs/img/engrave-font-script_complex.png b/pycam/docs/img/engrave-font-script_complex.png new file mode 100644 index 00000000..9feb263b Binary files /dev/null and b/pycam/docs/img/engrave-font-script_complex.png differ diff --git a/pycam/docs/img/engrave-font-standard.png b/pycam/docs/img/engrave-font-standard.png new file mode 100644 index 00000000..c44294a5 Binary files /dev/null and b/pycam/docs/img/engrave-font-standard.png differ diff --git a/pycam/docs/img/engrave-font-symbol-astro.png b/pycam/docs/img/engrave-font-symbol-astro.png new file mode 100644 index 00000000..9c4a01dd Binary files /dev/null and b/pycam/docs/img/engrave-font-symbol-astro.png differ diff --git a/pycam/docs/img/engrave-font-symbol-misc-1.png b/pycam/docs/img/engrave-font-symbol-misc-1.png new file mode 100644 index 00000000..ec74deff Binary files /dev/null and b/pycam/docs/img/engrave-font-symbol-misc-1.png differ diff --git a/pycam/docs/img/engrave-font-symbol-misc-2.png b/pycam/docs/img/engrave-font-symbol-misc-2.png new file mode 100644 index 00000000..d6587a09 Binary files /dev/null and b/pycam/docs/img/engrave-font-symbol-misc-2.png differ diff --git a/pycam/docs/img/engrave-font-symbol.png b/pycam/docs/img/engrave-font-symbol.png new file mode 100644 index 00000000..547dc4cb Binary files /dev/null and b/pycam/docs/img/engrave-font-symbol.png differ diff --git a/pycam/docs/img/engrave-font-unicode.png b/pycam/docs/img/engrave-font-unicode.png new file mode 100644 index 00000000..51c91953 Binary files /dev/null and b/pycam/docs/img/engrave-font-unicode.png differ diff --git a/pycam/docs/img/favicon.ico b/pycam/docs/img/favicon.ico new file mode 100644 index 00000000..e5321fc5 Binary files /dev/null and b/pycam/docs/img/favicon.ico differ diff --git a/pycam/docs/img/menu-edit.png b/pycam/docs/img/menu-edit.png new file mode 100644 index 00000000..2f7f226a Binary files /dev/null and b/pycam/docs/img/menu-edit.png differ diff --git a/pycam/docs/img/menu-extras.png b/pycam/docs/img/menu-extras.png new file mode 100644 index 00000000..44e1e985 Binary files /dev/null and b/pycam/docs/img/menu-extras.png differ diff --git a/pycam/docs/img/menu-file.png b/pycam/docs/img/menu-file.png new file mode 100644 index 00000000..e78df73e Binary files /dev/null and b/pycam/docs/img/menu-file.png differ diff --git a/pycam/docs/img/menu-help.png b/pycam/docs/img/menu-help.png new file mode 100644 index 00000000..52bf2607 Binary files /dev/null and b/pycam/docs/img/menu-help.png differ diff --git a/pycam/docs/img/menu-settings.png b/pycam/docs/img/menu-settings.png new file mode 100644 index 00000000..4abf4608 Binary files /dev/null and b/pycam/docs/img/menu-settings.png differ diff --git a/pycam/docs/img/menu-windows.png b/pycam/docs/img/menu-windows.png new file mode 100644 index 00000000..e3ccc2b9 Binary files /dev/null and b/pycam/docs/img/menu-windows.png differ diff --git a/pycam/docs/img/model-transformations.png b/pycam/docs/img/model-transformations.png new file mode 100644 index 00000000..e4b1408b Binary files /dev/null and b/pycam/docs/img/model-transformations.png differ diff --git a/pycam/docs/img/process-milling-climb.png b/pycam/docs/img/process-milling-climb.png new file mode 100644 index 00000000..4afa0b4a Binary files /dev/null and b/pycam/docs/img/process-milling-climb.png differ diff --git a/pycam/docs/img/process-milling-climb.svg b/pycam/docs/img/process-milling-climb.svg new file mode 100644 index 00000000..d6dc1336 --- /dev/null +++ b/pycam/docs/img/process-milling-climb.svg @@ -0,0 +1,134 @@ + + + + + Climb milling + + + + + + + + + image/svg+xml + + Climb milling + + 2010-10-15 + + + Lars Kruse + + + + + Lars Kruse + + + + + milling + climb + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/pycam/docs/img/process-milling-conventional.png b/pycam/docs/img/process-milling-conventional.png new file mode 100644 index 00000000..60357131 Binary files /dev/null and b/pycam/docs/img/process-milling-conventional.png differ diff --git a/pycam/docs/img/process-milling-conventional.svg b/pycam/docs/img/process-milling-conventional.svg new file mode 100644 index 00000000..e40dd574 --- /dev/null +++ b/pycam/docs/img/process-milling-conventional.svg @@ -0,0 +1,137 @@ + + + + + Conventional milling + + + + + + + + + + image/svg+xml + + + Conventional milling + 2010-10-15 + + + Lars Kruse + + + + + Lars Kruse + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/pycam/docs/img/process-statistics.png b/pycam/docs/img/process-statistics.png new file mode 100644 index 00000000..97f67de0 Binary files /dev/null and b/pycam/docs/img/process-statistics.png differ diff --git a/pycam/docs/img/process-strategy-contour-follow.png b/pycam/docs/img/process-strategy-contour-follow.png new file mode 100644 index 00000000..60ba0867 Binary files /dev/null and b/pycam/docs/img/process-strategy-contour-follow.png differ diff --git a/pycam/docs/img/process-strategy-contour-polygon.png b/pycam/docs/img/process-strategy-contour-polygon.png new file mode 100644 index 00000000..56bbb41f Binary files /dev/null and b/pycam/docs/img/process-strategy-contour-polygon.png differ diff --git a/pycam/docs/img/process-strategy-engraving.png b/pycam/docs/img/process-strategy-engraving.png new file mode 100644 index 00000000..ebb2de5b Binary files /dev/null and b/pycam/docs/img/process-strategy-engraving.png differ diff --git a/pycam/docs/img/process-strategy-slice-removal.png b/pycam/docs/img/process-strategy-slice-removal.png new file mode 100644 index 00000000..b90d3b88 Binary files /dev/null and b/pycam/docs/img/process-strategy-slice-removal.png differ diff --git a/pycam/docs/img/process-strategy-surface.png b/pycam/docs/img/process-strategy-surface.png new file mode 100644 index 00000000..e402f25d Binary files /dev/null and b/pycam/docs/img/process-strategy-surface.png differ diff --git a/pycam/docs/img/pycam-logo-160.png b/pycam/docs/img/pycam-logo-160.png new file mode 100644 index 00000000..85e9daf5 Binary files /dev/null and b/pycam/docs/img/pycam-logo-160.png differ diff --git a/pycam/docs/img/pycam-logo-600.png b/pycam/docs/img/pycam-logo-600.png new file mode 100644 index 00000000..6e30c61e Binary files /dev/null and b/pycam/docs/img/pycam-logo-600.png differ diff --git a/pycam/docs/img/screenshot-contour-cutter.png b/pycam/docs/img/screenshot-contour-cutter.png new file mode 100644 index 00000000..61681f28 Binary files /dev/null and b/pycam/docs/img/screenshot-contour-cutter.png differ diff --git a/pycam/docs/img/screenshot-finishing-operation.png b/pycam/docs/img/screenshot-finishing-operation.png new file mode 100644 index 00000000..2f42a985 Binary files /dev/null and b/pycam/docs/img/screenshot-finishing-operation.png differ diff --git a/pycam/docs/img/screenshot-linuxcnc-example.png b/pycam/docs/img/screenshot-linuxcnc-example.png new file mode 100644 index 00000000..7303aaba Binary files /dev/null and b/pycam/docs/img/screenshot-linuxcnc-example.png differ diff --git a/pycam/docs/img/screenshot-model-operations.png b/pycam/docs/img/screenshot-model-operations.png new file mode 100644 index 00000000..da5541c0 Binary files /dev/null and b/pycam/docs/img/screenshot-model-operations.png differ diff --git a/pycam/docs/img/screenshot-polygon-cutter.png b/pycam/docs/img/screenshot-polygon-cutter.png new file mode 100644 index 00000000..6259fb39 Binary files /dev/null and b/pycam/docs/img/screenshot-polygon-cutter.png differ diff --git a/pycam/docs/img/screenshot-processing-settings.png b/pycam/docs/img/screenshot-processing-settings.png new file mode 100644 index 00000000..8f9b1b59 Binary files /dev/null and b/pycam/docs/img/screenshot-processing-settings.png differ diff --git a/pycam/docs/img/screenshot-settings.png b/pycam/docs/img/screenshot-settings.png new file mode 100644 index 00000000..09b8e63e Binary files /dev/null and b/pycam/docs/img/screenshot-settings.png differ diff --git a/pycam/docs/img/screenshot-startup.png b/pycam/docs/img/screenshot-startup.png new file mode 100644 index 00000000..0bd001ef Binary files /dev/null and b/pycam/docs/img/screenshot-startup.png differ diff --git a/pycam/docs/img/screenshot-toolpath-view.png b/pycam/docs/img/screenshot-toolpath-view.png new file mode 100644 index 00000000..a8ac0a08 Binary files /dev/null and b/pycam/docs/img/screenshot-toolpath-view.png differ diff --git a/pycam/docs/img/server-mode-gui-preferences.png b/pycam/docs/img/server-mode-gui-preferences.png new file mode 100644 index 00000000..87120033 Binary files /dev/null and b/pycam/docs/img/server-mode-gui-preferences.png differ diff --git a/pycam/docs/img/server-mode.png b/pycam/docs/img/server-mode.png new file mode 100644 index 00000000..54d717ab Binary files /dev/null and b/pycam/docs/img/server-mode.png differ diff --git a/pycam/docs/img/server-mode.svg b/pycam/docs/img/server-mode.svg new file mode 100644 index 00000000..b79e34cb --- /dev/null +++ b/pycam/docs/img/server-mode.svg @@ -0,0 +1,142 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/pycam/docs/img/touch-off-settings.png b/pycam/docs/img/touch-off-settings.png new file mode 100644 index 00000000..fbccf702 Binary files /dev/null and b/pycam/docs/img/touch-off-settings.png differ diff --git a/pycam/docs/img/touch-off.png b/pycam/docs/img/touch-off.png new file mode 100644 index 00000000..1f764738 Binary files /dev/null and b/pycam/docs/img/touch-off.png differ diff --git a/pycam/docs/index.md b/pycam/docs/index.md new file mode 100644 index 00000000..7a147bdb --- /dev/null +++ b/pycam/docs/index.md @@ -0,0 +1,36 @@ +![PyCAM Logo](img/pycam-logo-600.png) + +PyCAM is a toolpath generator for 3-axis CNC machining. +It loads 3D models in STL format or 2D contour models from DXF or SVG files. +The resulting [G-Code](https://en.wikipedia.org/wiki/G-code) can be used +with [LinuxCNC](http://www.linuxcnc.org/) or any other machine controller. + +PyCAM supports a wide range of toolpath strategies for 3D models and 2D contour models. +Take a look at the [Features](features.md) page for a full list features. + +PyCAM runs on Linux, Windows and MacOS. It is free software licensed under the +[GPL v3](https://www.gnu.org/licenses/gpl-3.0). + +## Download + +Work on PyCAM has paused for five years between 2012 (v0.5.1) and 2017 (v0.6.0). +Currently the code base is being modernized in order to make PyCAM run on recent operating systems +and libraries. + +New releases are available from the GitHub releases page: + + +The Debian package installs and runs on Debian Jessie and Stretch. The +source code may work on other platforms, like Windows and Mac, but is untested. +Before installing you might want to take a look at the [System requirements](requirements.md). + +Older releases are still available on the +[SourceForge download page](https://sourceforge.net/projects/pycam/files/pycam/). + +## Resources + +* [Development](https://github.com/SebKuzminsky/pycam) +* [Getting started](getting-started.md) / [FAQ](faq.md) +* [Video tutorials](http://vimeo.com/channels/pycam) / [Screenshots](screenshots.md) +* [Mailing lists](https://sourceforge.net/p/pycam/mailman/) +* [Issue Tracker](https://github.com/SebKuzminsky/pycam/issues) diff --git a/pycam/docs/installation-macos.md b/pycam/docs/installation-macos.md new file mode 100644 index 00000000..cc266b06 --- /dev/null +++ b/pycam/docs/installation-macos.md @@ -0,0 +1,91 @@ +Versions, dependencies and complications +---------------------------------------- + +Please note that the most recent successful usage of PyCAM on MacOS was +reported around 2012. Thus you should stick with PyCAM v0.5.1 and be prepared +to tackle weird dependency problems, if you really need to run PyCAM on MacOS. + +You should use Linux instead, if you want to use a more recent release of PyCAM. + +Install requirements via MacPorts +--------------------------------- + +First you need to install [MacPorts](http://www.macports.org/install.php). + +Afterwards you need to install the following packages: + +- py25-gtk +- py25-gtkglext +- py25-opengl (at least v3.0.1b2) + +Simply run the following to install all dependencies: + + sudo port install py25-gtk py25-gtkglext py25-opengl + +Run PyCAM +--------- + +- extract the [PyCAM archive](https://sourceforge.net/projects/pycam/files/pycam/) +- run */opt/local/bin/python2.5 pycam* from within PyCAM's directory + - the above line refers to MacPorts' Python interpreter (instead + of MacOS' native Python) - otherwise it will not find OpenGL and + the other required modules + +Problems? Solutions! +-------------------- + +Below you will find a list of potential problems reported by PyCAM +users. + +If these workarounds do not help: please ask a question in the +[*Help* forum](http://sourceforge.net/projects/pycam/forums/forum/860184) and +provide the following relevant information about your setup. + +Get the list of installed python-related packages: + + port installed | grep py + +Get Python's output for every interesting *import* statement: + + foo@bar:~$ /opt/local/bin/python2.5 + Python 2.5.5 (r255:77872, Nov 28 2010, 19:00:19) + [GCC 4.4.5] on linux2 + Type "help", "copyright", "credits” or "license" for more information. + >>> import gtk.gtkgl + >>> import OpenGL.GL as GL + >>> import OpenGL.GLU as GLU + >>> import OpenGL.GLUT as GLUT + +(the above output of a successful test was taken on Linux - your +installed versions may differ slightly) + +### OpenGL (python-gtkglext1) missing + +Some users reported the following warning from PyCAM, even though they +installed all required packages: + +> Please install 'python-gtkglext1' + +Since none of the PyCAM developers is a Mac OS user, it is not easy for +us to track down this issue. Currently it looks like a problem of +[Python 2.5 and *ctypes*](https://trac.macports.org/ticket/26186) on Mac +OS X. Please try the following steps to fix it: + +1. install the libffi package: `port install libffi` +2. rebuild Python: `port -v upgrade --force python25` + +(suggested on +[stackoverflow](http://stackoverflow.com/questions/4535725/ctypes-import-not-working-on-python-2-5/4536064#4536064)) + +Alternatively you could try to update Python to v2.6 and install the +corresponding packages for GTK, OpenGL and so on. + +Please report back, if one of the above suggestions fixes the problem +for you - thanks! + +### OpenGL is too old + +According to a [forum post from +lilalinux](http://sourceforge.net/projects/pycam/forums/forum/860183/topic/3800091) +you need at least OpenGL v3.0.1b2. Otherwise you will probably get a +blank 3D visualization window. diff --git a/pycam/docs/installation.md b/pycam/docs/installation.md new file mode 100644 index 00000000..956c18c8 --- /dev/null +++ b/pycam/docs/installation.md @@ -0,0 +1,32 @@ +Installing the latest release +----------------------------- + +### Linux / \*BSD + +1. [download](http://sourceforge.net/projects/pycam/files/) the archive + of your choice +2. install the [requirements](requirements.md) for your system +3. run `scripts/pycam` in the PyCAM directory + +### Mac OS X + +See [Installation MacOS](installation-macos.md) for details. + +### Windows + +Use the [standalone executable for Windows](https://sourceforge.net/projects/pycam/files/pycam/0.5.1/pycam-0.5.1.1_standalone.exe/download). +There are no further requirements. + +If you want to use [multiple CPU cores or distributed processing](parallel-processing), then you will need to use the +[dependency installer](https://sourceforge.net/projects/pycam/files/pycam/0.5.1/python2.5-gtk-opengl.exe/download) +and the [PyCAM installer package](https://sourceforge.net/projects/pycam/files/pycam/0.5.1/pycam-0.5.1.win32.exe/download). + +Installing the development version +---------------------------------- + +1. install the [git](http://git-scm.com/) client (via your package + manager or by [downloading](http://git-scm.com/downloads) it) +2. checkout the PyCAM repository: + `git clone `[`git@github.com:SebKuzminsky/pycam.git`](git@github.com:SebKuzminsky/pycam.git) +3. install the [requirements](requirements.md) for your system +4. run `pycam/run_gui.py` in the PyCAM directory diff --git a/pycam/docs/introduction.md b/pycam/docs/introduction.md new file mode 100644 index 00000000..91e579f3 --- /dev/null +++ b/pycam/docs/introduction.md @@ -0,0 +1,161 @@ +Introduction to PyCAM +===================== + +PyCAM is a toolpath generator for 3 axis machines. This text is supposed +to introduce you to the basics of using PyCAM. + +Create a model for your object +------------------------------ + +PyCAM supports the following file types: + +- STL -- for 3D models (e.g. created by + [Blender](http://www.blender.org/), [Art of + Illusion](http://www.artofillusion.org/), + [OpenSCAD](http://openscad.org/), + [Meshlab](http://meshlab.sourceforge.net/), ...) +- DXF -- for engravings (limited DXF support: only 2D with basic + elements) +- SVG -- for engravings (see + [requirements](requirements#Optional_external_programs) + for details) + +See [supported formats](supported-formats.md) for more details. + +You can create your model file with the program of your choice. After +loading the file in PyCAM you will see the model shape in the 3D +visualization window. + +Preparation of the model +------------------------ + +Sometimes you may need to move, rotate or resize your model before +processing it. + +PyCAM supports the following basic model transformations: + +- rotate around the x, y or z axis (90 degree steps) +- mirror along the xy, xz or yz plane +- swap two axes: x with y, x with z or y with z + +The following resize operations are available: + +- scale the whole model by a given factor (100% -> no scaling) +- scale one axis to a given length (the optional “proportional” + setting defines if this factor should be applied to all axes) + +The model can be moved to a different location: + +- move the model by a specific offset for each axis +- move the model to the origin of the coordinate system (the lower + limit of each model dimension becomes zero) + +The modified model can be saved as an STL (3D) or SVG (2D) file. + +Defining an operation +--------------------- + +PyCAM uses *tasks* to specify the detailed settings for a toolpath to be +generated. + +A task is a combination of the following profiles: + +- a tool +- a process +- a bounding box + +Each of these profiles will be described below. + +### Specify the tools + +Each toolpath is connected with a tool. The tool shape and its dimension +are important for calculating accurate toolpaths. Multiple tools can be +necessary for rough and finishing operations. + +The most important setting is the radius of the tool. + +Additionally you can define the shape of your tool. The following three +shapes are available: + +- cylindrical (round shaft; flat top): the most common tool shape +- spherical (radius cutter / corner-rounding cutter; round shaft; + spherical top) +- toroidal (round shaft; “donut”-like top) + +You need at least one tool. + +It is common to use a big tool for the first rough milling operation. +The finish milling operation is usually done with a smaller tool. +Specify all necessary tools for your planned operations. + + +### Specify the milling processes + +The process settings specify the strategy of the toolpath generator. +This determines the height of each layer of material to be removed and +some other details. + +The following operations are available: + +- Push Cutter: removes the excessive material in multiple layers of + fixed height (see the “step down” setting) - this is common for an + initial rough operation or an optionally following contour cutting + operation +- Drop Cutter: follow the height of the model - this should be last + operation (it assumes that the material above was removed before) +- Engrave Cutter: this operation is only suitable for contour models + (from a DXF file) + +You will want to take a look at the following process settings: + +- Material Allowance: how much material should be left (minimum + required distance between the tool and the object) - this is useful + for rough operations with big tools +- Step Down: the maximum material height of each layer during a rough + operation - this depends on the material and the tool size + +See [Process Settings](process-settings.md) for more details about +process settings. + +### Specify the bounding box + +Each operation is applied to a specific bounding box. The default +bounding box has a 10% margin at each side of the model. You need to +define other bounding boxes, if you want to treat different parts of the +object with more or less fine grained operations. + +The bounding box can be related to the size of the model (*relative +margin* or *fixed margin*). Alternatively you can also define a custom +bounding box that does not depend on the model size. These three ways of +defining the bounding box are just different views of the same data. + +See [Bounding Box](bounding-box.md) for more details about +specifying bounding boxes. + +Generate the toolpath(s) +------------------------ + +You need to define a task for each toolpath to be generated. + +Each task can be marked as *enabled*. All *enabled* tasks are performed +when clicking on *Generate all toolpaths*. Alternatively you can +click *Generate Toolpath* to process only the currently selected +task. + + +Examine generated toolpaths +--------------------------- + +The new tab *Toolpaths* appears as soon as at least one toolpath was +generated. The attribute *visible* of each toolpath defines if the +toolpath should be shown in the 3D visualization window. + +Export toolpaths as GCode +------------------------- + +Choose *Export Toolpaths* from the *File* menu to store all toolpaths +(see *Toolpaths* tab) in a GCode file. + +The GCode file can be used with any common machine controller software, +e.g. [LinuxCNC](http://www.linuxcnc.org/). + diff --git a/pycam/docs/keyboard-shortcuts.md b/pycam/docs/keyboard-shortcuts.md new file mode 100644 index 00000000..e7b24684 --- /dev/null +++ b/pycam/docs/keyboard-shortcuts.md @@ -0,0 +1,39 @@ +Global +------ + + Shortcut | Description + ----------------- | ------------------------------------------------------------------------ + F1 | open the introduction page of PyCAM with a browser + [CTRL] o | load model file + [CTRL] s | save model file + [CTRL] [Shift] s | save model file with a different name + [CTRL] [Shift] e | export all toolpaths to a gcode file + [CTRL] t | load task settings file + [CTRL] p | open preferences dialog + [CTRL] [Shift] v | toggle the 3D view window + [CTRL] l | toggle the log window + [CTRL] q | quit the program + [CTRL] t | open the font dialog window + [CTRL] z | undo the latest model operation (scale, shift, rotate) up to ten times + +Visualization window +-------------------- + + Shortcut | Description + ----------------------------------------------- | ------------------------------------------------------------ + Left, Down, Up, Right | move the viewport + h, j, k, l | same as *Left*, *Down*, *Up*, *Right* (vi-style behaviour) + [Shift] Left, Down, Up, Right (or h, j, k, l) | rotate the view + + / - | zoom in and out of the view + i | toggle OpenGL ligthing + m | toggle polygon and line mode + s | toggle OpenGL shadows + p | switch between perspective and orthogonal view + 1 | reset view direction + 2 | view from front + 3 | view from back + 4 | view from left + 5 | view from right + 6 | view from top + 7 | view from bottom + diff --git a/pycam/docs/main-page.md b/pycam/docs/main-page.md new file mode 100644 index 00000000..683659e2 --- /dev/null +++ b/pycam/docs/main-page.md @@ -0,0 +1,88 @@ +Use PyCAM to generate toolpaths suitable for 3-Axis CNC machining +----------------------------------------------------------------- + +You can use **svg and dxf files for 2.5D milling** and **stl files for +full 3-axis 3D milling!** + +Take a look at some [screenshots](screenshots.md) for a quick +overview of the features. The [list of features](features.md) +gives you more details. + +Read the [Installation](installation.md) instructions. + +Watch some [Videos Tutorials](http://vimeo.com/channels/pycam) in +multiple languages. You are welcome to +[translate](video-translations.md) the subtitles to your native +language! + +Join the [mailing lists](http://sourceforge.net/mail/?group_id=237831) +if you want to follow recent developments. + +Read our [development blog](http://fab.senselab.org/pycam) about +interesting new features and plans. + +Check the [FAQ](faq.md) section if are looking for answers. + +Look for [alternative programs](other-programs.md) generating +G-Code for CNC machining, if PyCAM should not fulfill your needs. In +this case: please [let us know, what's +missing](wanted-features)! + +Add the features that you want to see in PyCAM to the +[wishlist](wanted-features.md) .... + +Common workflow +--------------- + +A common workflow could look like this: + +1. open an STL model file +2. configure cutter settings (e.g. drill shape and size) +3. configure processing settings (e.g. the toolpath strategy, remaining + material, ...) +4. start the toolpath generation +5. repeat steps 2..4 if you want to add more toolpaths +6. export the generated toolpaths to a file (in GCode format) + +The output (GCode) can be used for [LinuxCNC](http://www.linuxcnc.org/) and other +machine controller software. + +Graphical User Interface +------------------------ + +The graphical user interface of PyCAM is based on GTK. All available +features are configurable in different tabs. The complete setup can be +stored in task settings file for later re-use. + +The [3D View](3d-view) is based on OpenGL. It is not strictly +required for the operation. But it is very helpful for making sure that +the result meets your expectations. + +Alternatively you can also use most features of PyCAM via its +[command line interface](cli-examples.md) (e.g. for batch +processing). + +Command-line Interface +---------------------- + +PyCAM supports non-interactive toolpath generation. This is useful for +batch processing. + +See some [examples](cli-examples.md) for the command-line +usage. + +Requirements +------------ + +See the requirement list for the different platforms: [Requirements](requirements.md). + +Open issues / Plans +------------------- + +Take a look at our [TODO](todo.md) list. + +Development +----------- + +Take a look at [Developer's Guide](developers-guide.md) if you +want to improve PyCAM. diff --git a/pycam/docs/menu-items.md b/pycam/docs/menu-items.md new file mode 100644 index 00000000..d6044811 --- /dev/null +++ b/pycam/docs/menu-items.md @@ -0,0 +1,60 @@ +File menu +--------- + +![Screenshot of the File Menu](img/menu-file.png) + +**Open Model ...** Choose a model file (STL / SVG / PS / DXF) via a dialog. The currently active model is replaced with the new one. + +**Open Recent** Choose a model file from the list of recently used ones (the list also contains files used by other applications). + +**Save Model** Save the currently active model to its original location. This item is disabled if the model was loaded from a remote location (e.g. via http) or it the file is not writeable. No confirmation is requested. + +**Save Model as...** Store the currently active model under a new filename. A file chooser dialog will pop up. + +**Export visible toolpaths ...** Store all currently visible toolpaths in a single GCode file. A file chooser dialog will pop up. The order of toolpaths is important. See the Toolpaths tab for the list of all generated toolpaths and for their visible state. + +**Export all toolpaths ...** Store _all_ generated toolpaths in a single GCode file. A file chooser dialog will pop up. The order of toolpaths is important. See the Toolpaths tab for the list of all generated toolpaths. + +**Quit** Request PyCAM to quit. This may take some seconds if you are connected to remote [processing servers](server-mode.md). + +Edit menu +--------- + +![Screenshot of the Edit Menu](img/menu-edit.png) + +**Undo latest model change** Reverse the latest operation that changed the model. This includes all transformations (scale, rotate, flip, swap, shift) as well as drastic changes (e.g. opening another model or 3D-to-2D projection). Changes regarding the tasks settings (e.g. cutter size) are ignored. + +**Copy** Copy a representation of the current model to the clipboard. Other programs (e.g. Inkscape) can access the model data from the clipboard. 3D models are exported as STL data (ascii). 2D models are represented as plain SVG data. + +**Paste** Read model data from the clipboard and replace the currently active model. 3D models are expected as STL (binary or ascii) or DXF data. 2D models can be transferred as SVG, PS or DXF files. + +PyCAM announces and accepts the following target types via the +clipboard: + + Target type | Data + ------------------------ | ---------- + application/sla | STL data + application/postscript | PS / EPS + image/svg+xml | SVG + image/x-inkscape-svg | SVG + image/vnd.dxf | DXF + +Settings menu +------------- + +![Screenshot of the Settings Menu](img/menu-settings.png) + +Extras menu +----------- + +![Screenshot of the Extras Menu](img/menu-extras.png) + +Windows menu +------------ + +![Screenshot of the Windows Menu](img/menu-windows.png) + +Help menu +--------- + +![Screenshot of the Help Menu](img/menu-help.png) diff --git a/pycam/docs/model-transformations.md b/pycam/docs/model-transformations.md new file mode 100644 index 00000000..48f36f18 --- /dev/null +++ b/pycam/docs/model-transformations.md @@ -0,0 +1,46 @@ +Model transformations +===================== + +PyCAM can help you to prepare the model for the final processing. + +![Screenshot of the Model tab](img/model-transformations.png) + +Rotate, Mirror, Swap +-------------------- + +Operation | Description +-------- | ----------- +**rotate** | rotate the model clockwise around a given axis +**flip** | mirror the model against a given plane (xy, xz or yz) +**swap** | exchange two axis of the coordinate system (e.g. exchange all x values with the corresponding y values) + +Scale +----- + +Operation | Description +-------- | ----------- +**scale** | resize the complete model proportionally with a given factor via an input control (as a percent value). An input of 200% doubles the size of the model. The location center of the model will be preserved. +**fit dimension** | scale one axis to a given value (e.g. if the unit size of your modeling software is not metric). By default all axes are scaled proportionally. This can be changed via the corresponding checkbox. + +Move +---- + +Operation | Description +-------- | ----------- +**move to origin** | afterwards the model should start at the center of the coordinate system pointing along the posive values of the three axes. +**shift** | move the model along the three axes by the distances given in the three separate input controls. Negative or zero values are allowed. + +Miscellaneous +------------- + +Buttons referring to 2D operations are not visible if a 3D model is +currently loaded (and vice versa). + +Operation | Description +-------- | ----------- +**Toggle direction** | reverse the direction of all lines of a 2D model +**Revise direction** | First try to merge open polygons regardless of their directions. Secondly analyse the inside/outside relationships of all closed polygons in a 2D model. The direction of polygons with an unsuitable winding state is reversed. This usually fixes inconsistent winding combinations created by DXF/SVG export programs. +**Extrude** | add a third dimension to a 2D model. The following parameters of the slope of the edges are configurable: shape, precision, height and width. ([Read more](http://fab.senselab.org/node/227)) +**2D Projection** | cut a 3D model at z=0. The resulting contour polygons define the new 2D model. The contour of the bottom of the model is used if the model is completely above or below z=0. +**Inch → mm** | scale the model by the factor 25.4 +**mm → Inch** | scale the model size down with the divider 25.4 diff --git a/pycam/docs/modeling-inkscape-svg.md b/pycam/docs/modeling-inkscape-svg.md new file mode 100644 index 00000000..37894e63 --- /dev/null +++ b/pycam/docs/modeling-inkscape-svg.md @@ -0,0 +1,192 @@ +Overview +-------- + +[Inkscape](http://inkscape.org) is a vector graphics editor suitable for +designing 2D models. Please read the following hints carefully before +trying to create a 2D model with Inkscape, since this process could +otherwise fail in non-obvious ways ... + +Importing SVG files require external programs. Read PyCAM's +[requirements](requirements#Optional_external_programs) for +details + +Export file format +------------------ + +Always save your Inkscape drawings in the *Scalable Vector Graphics* +(SVG) or *PostScript* (PS/EPS) file format. + +Don't save to DXF files - PyCAM will not be able to import them +properly. + +Restrictions +------------ + +Read the following hints carefully - otherwise your objects can't be +imported by PyCAM: + +- convert all objects to *Paths* + - *text* elements don't need to be turned into *Paths* +- *Fill and Stroke*: + - closed polygons: use *Fill*; try to avoid *Stroke*, since it + would mess up your object dimensions + - line segments: use *Stroke* (no *Fill*) combined with the *Butt* + cap style - otherwise the lengths of the line segments are not + properly visualized +- opacity of all Paths **must** be at 100% (see *opacity* in the *Fill + and Stroke* properties dialog) +- items outside of the page sheet are ignored (specify the size of the + sheet via *Document Properties* in Inkscape) + +Colors +------ + +PyCAM's import uses the color of an object as an indication of its +height. You need to stick to a single color (e.g. black) if you want to +create a single-plane 2D model. See [Pseudo 3D support](#Pseudo_3D_support) +below for more details. + +Outlines and holes +------------------ + +![Combining polygons with proper directions](img/2d-modeling-polygon_directions.png) + +The following hints are only necessary, if you need an SVG with +consistent winding states. Alternatively you can repair inconsistent +winding states with the *Revise directions* button in the *Model* tab of +PyCAM. This button is only visible if you are currently working with a +2D model. + +The direction of a path can be changed via the *Reverse* item in the +*Path* menu of Inkscape. + +Visualizing path directions in Inkscape is currently (v0.47) not easy. + +Use the following approach, if you need to work with holes and outlines: + +- create all paths +- remove contours; define filling +- reverse all inner paths (holes): see menu *Path -> Reverse* +- move the inner paths to their final positions inside of the outline + paths +- select all holes and outlines of a single object +- choose *Path -> Combine* (CTRL-K) to combine these paths +- the holes (due to their reversed direction) are now drawn in white + +Beware: the other *Path* operations (*union*, *difference*, +*intersection*, ...) are not recommended, since they will obscure the +directions of the paths. Thus you will run into problems when opening +these models with PyCAM later. Just use *combine* whenever you can. + +Fonts +----- + +Text is automatically converted to a path when loading an SVG file with +PyCAM. You don't need to care about embedding fonts. + +Beware: TrueType fonts (used by Inkscape) are *outline* fonts. Thus +every glyph is described by its outline and inner holes. Alternatively +you may want to use the [single-line fonts](engrave-fonts.md) +supplied with PyCAM. + +Pseudo 3D support +----------------- + +### Height by layer (since v0.7) + +You can create 2D shapes at different heights (z-levels) by using +multiple layers in your SVG document (e.g. via inkscape). + +When loading an SVG file with multiple layers, the height gap between +each two layers is one unit (e.g. mm). This distance can be easily +scaled within PyCAM to an arbitrary height. This allows a precise +height adjustment as long as only two layers are involved. + +If more than two layers with specific height requirements +are required, then you need to add empty layers between these in +order to achieve the wanted height gap between the objects. + + +### Height derived from color (up to v0.6.x) + +![A multi-colored SVG graphic.](img/2d-multilayer-engrave.png) + +You can create 2D shapes at different heights (z-levels) by using +different colors. Thus you should use only a single color if all your 2D +shapes should be in the same plane. + +The mapping from color to height is defined by the conversion program +*pstoedit* (it is used by PyCAM when importing an SVG file). The +conversion works as follows: + +- look for the nearest color int the DXF color table (256 colors) +- divide the index of this color within the table (0..255) by 255 +- the resulting value (between 0 and 1) is used as the height of the + object/path + +![A contour model with two layers.](img/2d-multilayer-engrave-model.png) + +This complicated color-to-height conversion sadly makes it impossible to +position objects precisely. Additionally the DXF color palette is not +biunique, e.g. it contains multiple occurrences of the color green +(\#00FF00) - thus green will always be mapped to the height of its first +occourence in the table. + +Anyway: if you feel the need to use multiple colors for vertical +placement of 2D shapes in PyCAM, then you need to decide between *Two +vertical levels* and *Multiple vertical levels*. Read more details +below. + +![The resulting toolpath with different engrave depths.](img/2d-multilayer-engrave-toolpath.png) + +### Two vertical levels + +This procedure requires you to only use two different height levels for +all your 2D shapes. + +1. Choose stroke color (A) or (B) for all your objects. The lower + objects should use red. The upper objects should use another (always + the same!) color (e.g. black). +2. Save the document as an SVG file and open it with PyCAM. +3. The 2D model has a height > 0. All red items are placed on the + bottom level. All black items are placed at the ceiling. +4. Use the *Fit Dimension* button (part of the *Model* tab) to scale + the z dimension of your model. You should disable *proportional* + scaling here. +5. The red and black 2D objects now have a defined distance (according + to the specified z-axis dimension above). + +### Multiple vertical levels + +Please be aware that it is hard to place objects accurately at multiple +levels with the color/height mapping described above. So please use the +following procedure with care and check the result carefully. + +1. Import the DXF color palette to Inkscape. + 1. The DXF color palette file can be downloaded + [here](http://pycam.svn.sourceforge.net/viewvc/pycam/trunk/share/misc/DXF.gpl). + Save it as *DXF.gpl*. + 2. Move this file to the *palettes* directory of your Inkscape + installation. Read the + [description](http://tavmjong.free.fr/INKSCAPE/MANUAL/html/Customize-Files.html) + of user-specific and system-wide locations. +2. Start *Inkscape*. +3. Select the new color palette *DXF* (click at the small arrow to the + right of the color chooser located at the bottom of the Inkscape + window). +4. Create 2D shapes (see above for details and restrictions) and assign + different colors picked from the current palette (don't create + custom colors!). +5. The order of the colors taken from the color palette determines the + relative height of each object. You need to avoid colors that occur + multiple times in the palette (e.g. green). +6. Open the SVG file in PyCAM and scale the z axis of the model. + Hopefully the relative vertical distances of your 2D shapes suit + your needs. + +Note on using **black**: the color *black* is the first color of the DXF +palette. *pstoedit* handles the first color of the palette differently +and thus ignores it. So be prepared that the color *black* will be +mapped to color \#242 (a gray color near the end of the DXF color +palette). Thus black objects/paths are usually near the top of the model +in PyCAM. diff --git a/pycam/docs/modeling-openscad-dxf.md b/pycam/docs/modeling-openscad-dxf.md new file mode 100644 index 00000000..51f850a9 --- /dev/null +++ b/pycam/docs/modeling-openscad-dxf.md @@ -0,0 +1,44 @@ +Overview +-------- + +[OpenSCAD](http://openscad.org) is a parametric (non-interactive) 2D/3D +modeller. The following hints refer to 2D modeling. + +3D to 2D projection / Sectional drawing +--------------------------------------- + +The following example code creates a sectional drawing of a sphere at a +specific z-level: + + projection(cut=true) translate([0, 0, -3]) sphere(r=10); + +See the [OpenSCAD User +Manual](http://en.wikibooks.org/wiki/OpenSCAD_User_Manual/3D_to_2D_Projection) +for details. + +2D modeling +------------ + +OpenSCAD supports a variety of 2D primitives. See the [OpenSCAD User +Manual](http://en.wikibooks.org/wiki/OpenSCAD_User_Manual/2D_Primitives) +for details. + +DXF Export +---------- + +OpenSCAD can export 2D models to DXF. + +Sadly there are currently several limitations: + +- The latest release (2010.05) creates single lines (instead of + connected line segments). This makes it hard to manipulate the DXF + file with [Inkscape](http://inkscape.org) or other vector graphic + editors. The latest revision (development repository) fixed this + issue. +- Lines defining outlines and inner holes are currently drawn in the + same direction (clockwise). Thus PyCAM can't distinguish between + inner and outer lines for engraving offsets. You can reverse the + inner lines with a vector graphics editor (e.g. Inkscape). + +Both of the above issues can be easily fixed with PyCAM's [Revise +directions](model-transformations#Miscellaneous) operation. diff --git a/pycam/docs/opengl-troubles.md b/pycam/docs/opengl-troubles.md new file mode 100644 index 00000000..e28a62a8 --- /dev/null +++ b/pycam/docs/opengl-troubles.md @@ -0,0 +1,112 @@ +Troubleshooting OpenGL issues +============================= + +Diganostics for all platforms +----------------------------- + +First you should try to open a Python console: + +On Linux: open a terminal and type + + python + +Windows: run `C:\\Python25\\python.exe` + +Python's interactive console should now be waiting for your commands. +Its output could look like this: + + Python 2.5.5 (r255:77872, Nov 28 2010, 19:00:19) + [GCC 4.4.5] on linux2 + Type "help", "copyright", "credits" or "license" for more information. + >>> + +Now its time to import all relevant modues manually: + + import gtk + import OpenGL.GL + import OpenGL.GLU + import OpenGL.GLUT + import gtk.gtkgl + +It is acceptable to see some warnings just after the *gtk* import. Every +other message could be a sign of a problem. Please report these messages +via the forum or the developer mailing list if you encounter a problem +that you cannot solve on your own. + +Details for Unix +---------------- + +Verify the installed packages: + +Debian / Ubuntu: + + dpkg -l python-gtk2 python-gtkglext1 python-opengl | grep ^i + +OpenSuSE: + + zypper -i --match-any python-gtk2 python-gtkglext python-opengl + +MacOS: + + port installed | grep python + +The packages mentioned above should be marked as installed. The +following versions are known to work: + +- python-gtk2: 2.24.0 +- python-gtkglext 1.1.0 +- python-opengl 3.0.1 + +*Specific for MacOS:* + +- python-opengl may not be older than v3.0.1b2 - otherwise you get a + blank 3D view window +- please take a look at the [MacOS installation + instructions](installation-macos) + for platform-specific issues + +Details for Windows +------------------- + +### missing libgdkglext-win32-1.0-0.dll + +Valid for: Windows, installer package with dependency installer + +In the beginning of 2012 a download site went down that hosted one of the programs that +are downloaded during the installation process of the dependency installer. +Older dependency installers are also affected - even the ones that were working before. + +Download the [updated dependency installer](http://sourceforge.net/projects/pycam/files/dependency-installer/win32/external_binaries/gtkglext/gtkglext-win32-1.2.0.exe/download) and run it again. + +### missing DLL (name is known) + +DLL management under Windows is a bit complicated. You need to make sure +that all relevant libraries are accessible in the list of directories +defined in the PATH environment variable. + +An example of this kind of problems was exposed by an older version of +the dependency installer package for Windows. Users were struggling with +an error message claiming that *libgdkglext1-win32-1.0.0.dll* could not +be found. This file is installed along with *python-gtkglext* in +*C:\\GtkGLExt\\1.0\\bin* as you can see in Windows search facility. The +problem is gone as soon as you add this path to your environment +settings (see *Settings -> System -> Advanced -> Environment +variables*). + +### missing DLL (name is unknown) + +The following example error message is given: + + >>> import gtk.gtkgl + Traceback (most recent call last): + File "", line 1, in + File "C:\pkg\Python25\Lib\site-packages\gtk-2.0\gtk\gtkgl\__init__.py", line 21, in + from _gtkgl import * + ImportError: DLL load failed: The specified module could not be found. + +* Step 1: locate the related *PYD* file (a kind of Python DLL) - it resides just next to the \*.py file that caused the error message. Here: *C:\\Python25\\Lib\\site-packages\\gtk-2.0\\gtk\\gtkgl\\\_gtkgl.pyd* +* Step 2: Download and run [DependencyWalker](http://dependencywalker.com) +* Step 3: Open the *PYD* file with Depdendy Walker and check if any of the libraries are marked as missing or unknown. + +Now you should know the name of the missing library - thus you can +continue with the section above. diff --git a/pycam/docs/other-programs.md b/pycam/docs/other-programs.md new file mode 100644 index 00000000..c5bd5fa0 --- /dev/null +++ b/pycam/docs/other-programs.md @@ -0,0 +1,37 @@ +Alternative programs for generating G-Code +========================================== + +The following list contains only Free Software (GPL/BSD/...): + +- [dxf2gcode](http://code.google.com/p/dxf2gcode/): useful for + engravings +- [FreeCAD](https://sourceforge.net/apps/mediawiki/free-cad/): 3D CAD + design program; G-Code generation partly integrated (2011) +- [HeeksCNC](http://code.google.com/p/heekscnc/): add-on for + [HeeksCAD](http://code.google.com/p/heekscad/); requires STEP files + instead of STL; activity [partly + abandoned](http://code.google.com/p/heekscad/) by its main + author (2011) +- [cam-occ](http://code.google.com/p/cam-occ/): based on solid models + instead of trimeshs (no recent releases, but development seems to be + active (2010)) +- [monocam](http://code.google.com/p/monocam/): no official releases, + yet; no recent development activities (2010) +- [camvox](http://sourceforge.net/projects/camvox/): no official + releases, yet; no recent development activities (2010) +- [gcnccam](http://sourceforge.net/projects/gcnccam/): uses DXF as + input; quite active +- [CNC Code Generator](http://sourceforge.net/projects/cnccodegen/): + java-based, recently not very active (2010) +- [GCAM](http://gcam.js.cx): DXF or GERBER input; sparse documentation + +External software lists +======================= + +- [LinuxCNC Wiki](http://wiki.linuxcnc.org/cgi-bin/wiki.pl?Cam): + exhaustive list of CAD/CAM/conversion software +- [xtronics wiki](http://wiki.xtronics.com/index.php/CAD_CAM): broad + overview of CAD/CAM software +- [Simple G-Code generators](https://github.com/linuxcnc/simple-gcode-generators): + a list of small scripts and simple interface for generating basic + toolpaths for LinuxCNC diff --git a/pycam/docs/parallel-processing.md b/pycam/docs/parallel-processing.md new file mode 100644 index 00000000..be17f6a8 --- /dev/null +++ b/pycam/docs/parallel-processing.md @@ -0,0 +1,9 @@ +Parallel processing is fully supported on Linux. Available features on +other platforms are limited. + +| Feature | Linux | MacOS | Windows (.exe) | Windows (installer) | + --------------------------- | ------ | ------ | -------------- | ------------------- | +| Multiple local processes | Yes | Yes | No | Yes | +| Run server locally | Yes | ? | No | Yes | +| Connect to a remote server | Yes | ? | No | Yes | +| Mixed local and remote | Yes | ? | No | No | diff --git a/pycam/docs/process-settings.md b/pycam/docs/process-settings.md new file mode 100644 index 00000000..0e591d17 --- /dev/null +++ b/pycam/docs/process-settings.md @@ -0,0 +1,179 @@ +Process settings +================ + +A process can have different properties. Most importantly you need to +decide for a strategy and later for more fine-grained details like +post-processing, directions or specific parameters. + +Strategies +---------- + +### Slice removal + +![Screenshot of 3D view showing Slive removal](img/process-strategy-slice-removal.png) + +Remove slices of material around the model. This strategy is useful for +roughly cleaning the material if it is deeper than the maximum +penetration depth of your current tool. The *Step Down* value specifies +the maximum height of each layer. + +### Waterline/Contour (polygon) + +![Screenshot of 3D view showing Contour (polygon) strategy](img/process-strategy-contour-polygon.png) + +This contour strategy is based on detecting collisions in a fixed grid +and connecting these points of collision. You should use a high +*Overlap* value to increase accuracy. + +The algorithm does not work under certain circumstances, e.g. if the +bounding box does not cover the complete model. You should probably use +the newer contour strategy below. + +### Contour (follow) + +![Screenshot of 3D view showing Contour (follow) strategy](img/process-strategy-contour-follow.png) + +This contour strategy is based on the waterlines of the model's +triangles at the given height. It should be perfectly accurate, but it +requires more processing time. + +The contour->follow strategy is quite new (v0.4) and thus should be +considered experimental. + +This strategy is not (yet) available from the GUI. + +### Surfacing + +![Screenshot of 3D view showing surface strategy](img/process-strategy-surface.png) + +The surface strategy follows the shape of the model by calculating the +lowest possible location of the tool at each position of a fixed grid. +Use the *Overlap* value to adjust the distance between adjacent lines. +You should probably use the *slice removal* strategy before - otherwise +you risk to break the tool for deep models. + +### Engraving + +![Screenshot of 3D view showing engraving strategy](img/process-strategy-engraving.png) + +Engraving is the only available toolpath strategy for 2D models (e.g. +taken from a SVG or DXF file). Adjust the upper limit of the bounding +box to specify the final depth of the tool movements. The *Step Down* +value specifies the maximum height of each layer. + +Use the *Engraving offset* setting if you want the cutting tool to move +slightly next to the given contour. This is especially useful if you +want to cut pieces out of the material. Here you should use the tool +radius (not diameter) too keep the original size of the pieces. A +negative offset shifts the path of the tool towards the inside of the +model. + +Path Direction +-------------- + +Specify if the toolpath lines should move along the X or the Y axis. + +Milling style +------------- + +### Conventional / up + +In conventional milling style the cutter (rotating clockwise) moves with +the material on its left side. Thus the force applied to tool is quite +constant. The resulting quality of the cut is as good as for the *climb* +style. This should be mainly used for older machines or hard material. + +![Diagram of conventional milling style](img/process-milling-conventional.png) + +### Climb / down + +In climb milling style the cutter (rotating clockwise) moves with the +material on its right side. Thus the force applied to the tool rises +quickly when the edge of the tool cuts into the material (with every +rotation). The resulting quality is slightly better than with +conventional cutting. A mill with backlash elimination is recommended. + +![Diagram of climb milling style](img/process-milling-climb.svg) + +### Ignore + +Choose the default *Ignore* if the milling style is not important for +you. This optimizes the machining time by reducing moves at safety +height. + +Parameters +---------- + +### Overlap \[%\] + +This defines the relative overlap of two adjacent toolpaths. Higher +values increase the machining time. Lower values decrease the surface +quality. + +The example values below are absolute values. Combined with your tool +diameter you can calculate the corresponding relative overlap. + +### Material allowance + +Minimum requested distance between the tool and the material. + +You should use this setting when using bigger tools that tend to be less +precise. This avoids unintentional damages of the surface. + +The last process should never have a material allowance greater than +zero. + +### Maximum step down + +Maximum height of a layer for *PushCutter* or *Engraving* strategies. + +This value depends on the material hardness, tool size, the feedrate and +(partly) on the overlap. + +Some examples (please add your experiences here): + + Step down | Material | Tool diameter + ----------- | ----------| ------------- + 4mm | spruce | 1mm + 8mm | spruce | 3mm + +### Engraving offset + +Move the engraving cut by a certain distance away from the model's +contour. This can be used to compensate the tool radius, that would be +abrased from the material when moving along the contour. + +Common values: + +- **zero:** move the center of the tool along the given contour +- **half of the tool diameter:** move the tool around the given contour +- **negative value:** move the tool inside of the given contour + +### Pocketing + +Only basic pocketing support is currently available. + +Select the *Engraving* toolpath strategy if you want to use pocketing. + +The following three options are available: + +- **none:** no pocketing +- **holes:** fill areas surrounded by an inner polygon (counter-clockwise direction) +- **enclosed:** fill areas surrounded by an outer polygon (clockweise direction) + +The following conditions must be fulfilled for any pocketed area: + +- the area is completely surrounded by a convex polyon +- there are no other objects (lines, polygons) partly or completely + inside of the surrounding polygon + +Pocketing is done with 20% overlap (not configurable). + +### Safety height + +The safety height is the absolute z-level that is considered to be safe +for rapid movements. This should be clearly above the highest point of +your model. + +This parameter is set after generating the toolpath, and can be found for each +toolpath under Settings/Preferences. diff --git a/pycam/docs/requirements.md b/pycam/docs/requirements.md new file mode 100644 index 00000000..a380f65c --- /dev/null +++ b/pycam/docs/requirements.md @@ -0,0 +1,96 @@ +System requirements for PyCAM +============================= + +PyCAM currently runs on Unix/Linux. + +Older releases of PyCAM were also running on Windows and MacOS ([via +MacPorts](http://sourceforge.net/projects/pycam/forums/forum/860183/topic/3800091)). + +Please document your experiences here, if you successfully used PyCAM +with other operating systems. + +Linux +----- + +Install the following packages with your package manager (see below): + +- **python3** +- **python3-gi** +- **python3-opengl** +- **gir1.2-gtk-3.0** (GTK: at least v3.16) + +If your distribution does not ship GTK v3.16 or newer (e.g. Debian Jessie contains only v3.14), +then you need to use an older release of PyCAM. The older releases (e.g. v0.6.x) depend on Python2 +and GTK2 - thus they should work well even with rather old distributions. + +### Debian / Ubuntu + +Run the following command in a *root* terminal: + + apt-get install python3-gi python3-opengl gir1.2-gtk-3.0 + +### OpenSuSE + +Run the following command in a *root* terminal: + + zypper install python3-gi python3-opengl + +### Fedora + +Run the following command in a *root* terminal: + + yum install python3-gi python3-opengl + +Windows +------- + +The latest releases do not run under Windows. + +You may want to use the standalone executable of [v0.5.1 (the latest release supporting +Windows)](https://sourceforge.net/projects/pycam/files/pycam/0.5.1/). This old version is not +maintained anymore - but maybe you are lucky and it just works for you. + + +MacOS +----- + +Please take a look at [Installation MacOS](installation-macos.md) +for the details of installing PyCAM's requirements via +[MacPorts](http://www.macports.org/). + + +Optional external programs +========================== + +Some features of PyCAM require additional external programs. + + +SVG/PS/EPS import +----------------- + +PyCAM supports only STL and DXF files natively. Native SVG support is available +since PyCAM v0.7. For previous versions you need to install external programs +for the conversions of other file formats. + +### Debian / Ubuntu + + apt-get install inkscape pstoedit + +### OpenSuSE + + zypper install inkscape pstoedit + +### Fedora + + yum install inkscape pstoedit + +### Windows + +Download and install the following programs: + +* inkscape: +* pstoedit: +* ghostscript: + +*Hint: there is no need to install GraphicMagick - even though pstoedit +suggests it.* diff --git a/pycam/docs/screenshots.md b/pycam/docs/screenshots.md new file mode 100644 index 00000000..7b3b3cc5 --- /dev/null +++ b/pycam/docs/screenshots.md @@ -0,0 +1,48 @@ +Screenshots +=========== + +Startup Screen +-------------- + +![Screenshot of PyCAM at startup](img/screenshot-startup.png) + +Model operations +---------------- + +![Screenshot of the Model Operations](img/screenshot-model-operations.png) + +Processing settings +------------------- + +![Screenshot of Processing Settings](img/screenshot-processing-settings.png) + +Roughing Operation +------------------ + +![Screenshot of Polygon Cutter 3D View](img/screenshot-polygon-cutter.png) + +Semi-finishing Operation +------------------------ + +![Screenshot of Contour Cutter 3D View](img/screenshot-contour-cutter.png) + +Finishing Operation +------------------- + +![Screenshot of Finishing Operation 3D View](img/screenshot-finishing-operation.png) + +Toolpath management +------------------- + +![Screenshot of list of Toolpaths](img/screenshot-toolpath-view.png) + +Settings +-------- + +![Screenshot of list of PyCAM setting](img/screenshot-settings.png) + +Importing the GCode in LinuxCNC +--------------------------- + +![Screenshot of G-Code imported into LinuxCNC](img/screenshot-linuxcnc-example.png) + diff --git a/pycam/docs/server-mode.md b/pycam/docs/server-mode.md new file mode 100644 index 00000000..586b110c --- /dev/null +++ b/pycam/docs/server-mode.md @@ -0,0 +1,88 @@ +PyCAM server mode +================= + +![Screenshot of Process Statistics window](img/process-statistics.png) + +PyCAM supports the distribution of its calculations among multiple +different hosts. This can speed up processing especially for big models. + +Overview +-------- + +![](img/server-mode-gui-preferences.png) + +Basically there are two different modes of operation: + +- local mode: the toolpath generation will be done on your computer - + no service is offered to other hosts. This is the default. +- server mode: your computer creates (or joins) a pool of hosts. Each + host can submit calculation requests to the pool. The calculation of + these requests is distributed among all available hosts in the pool. + Thus every host in the pool offers computational resources and - at + the same time - can use the resources of all other hosts. + +Technical details +----------------- + +![Illustration of four processing hosts](img/server-mode.png) + +The following graph shows four hosts (A..D) belonging to one pool of PyCAM servers. +Below you find the specific commands used for starting these hosts: + +- Host D: `pycam --enable-server --server-auth-key MY_SECRET_KEY` +- Host B: `pycam --enable-server --server-auth-key MY_SECRET_KEY --remote-server HOST_D` +- Host C: `pycam --enable-server --server-auth-key MY_SECRET_KEY --remote-server HOST_B` +- Host A: `pycam --enable-server --server-auth-key MY_SECRET_KEY --remote-server HOST_B` + +As you can see above, there is no specific network topology required. +Thus you can organize your connections according to your preference: + +- connect the hosts in a linear chain +- create a star topology with a central host (every other host + connects to it) +- create a mixed topology (hosts connecting to each other in an + arbitrary structure - see the example above) + +Requirements +------------ + +You need to fulfill the following requirements when running a server +pool: + +- all hosts should run a similar version of PyCAM (there is no stable + API, yet) +- all hosts share the same secret password (see *--server-auth-key* + above) +- port 1250 must be open for all hosts, that are the target of + *--remote-server* connections from other hosts +- **IMPORTANT WARNING**: any member of the pool can inject malicious + code, that will be executed by the other hosts locally. Thus you + need to fully trust all members of the pool. + +Open issues +----------- + +- server mode is not available with the standalone Windows binary (the + installer package works) +- a host in server mode will need between 5 and 30 seconds to quit + (after closing the window, pressing CTRL-Q, ...) + +BIG FAT WARNING +--------------- + +Any member of the pool can inject malicious code into the pool. That +means that you give full user permissions to all other members of the +pool: + +- never ever think about running PyCAM in server mode as *root* or + with administrative permissions (yes, that's for most Windows user + out there ...) +- reduce the permissions of the user as far as possible (no write + access to the filesystem, only network access allowed) +- run PyCAM in a sandbox (e.g. a *chroot* environment or a virtualized + system) +- always use a good shared secret for your pool (see + *--server-auth-key*) + - the secret is transmitted in plain text over the network - thus + you should better run it through a VPN or tunnel the connection + through SSH diff --git a/pycam/docs/supported-formats.md b/pycam/docs/supported-formats.md new file mode 100644 index 00000000..82affdde --- /dev/null +++ b/pycam/docs/supported-formats.md @@ -0,0 +1,43 @@ +Supported formats of PyCAM +========================== + +PyCAM can import and export data from and to different formats. + +Read the following pages for hints about creating usable models: + +- [2D modeling with Inkscape (SVG)](modeling-inkscape-svg.md) +- [2D modeling with OpenSCAD (DXF)](modeling-openscad-dxf.md) + +STL +--- + +[STL files](http://en.wikipedia.org/wiki/STL_(file_format)) describe the surface +of 3D models as a mesh of triangles. The STL format definition describes +an ascii and a binary storage format. Both are supported by PyCAM. + +PyCAM can transform 3D models and save the result as an ascii STL file. + +DXF +--- + +[DXF files](http://en.wikipedia.org/wiki/DXF_(file_format)) can describe 3D or +2D models. PyCAM can import both types. The following DXF primitives are +supported: + +- LINE / POLYLINE / LWPOLYLINE +- ARC / CIRCLE +- TEXT / MTEXT +- 3DFACE + +SVG +--- + +[Scalable vector files](http://en.wikipedia.org/wiki/Scalable_Vector_Graphics) can describe 2D +models. They are supposed to be used as contour models for engravings. + +Before PyCAM v0.7 you needed to install *Inkscape* and *pstoedit* if you want +to import SVG files. Please take a look at the +[requirements](requirements#Optional_external_programs) for more details. + +Additionally you should read the [hints for Inkscape](modeling-inkscape-svg.md) to avoid +common pitfalls. diff --git a/pycam/docs/task-settings.md b/pycam/docs/task-settings.md new file mode 100644 index 00000000..becbfd0c --- /dev/null +++ b/pycam/docs/task-settings.md @@ -0,0 +1,3 @@ +Task settings +============= +Toolpaths are generated in tasks, which are formed by a combination of a tool, a process, bounds, and zero or more collision models. This way it is possible to make different combinations for different steps in the milling process. diff --git a/pycam/docs/tool-types.md b/pycam/docs/tool-types.md new file mode 100644 index 00000000..17f42258 --- /dev/null +++ b/pycam/docs/tool-types.md @@ -0,0 +1,4 @@ +Tool types +========== +Pycam support three tool shapes: Flat bottom (cylindrical), ball nose (spherical), and bull nose (toroidal). +In addition to the tool shape the feedrate and spindle speed are also configured per tool. diff --git a/pycam/docs/touch-off.md b/pycam/docs/touch-off.md new file mode 100644 index 00000000..97d5ecbc --- /dev/null +++ b/pycam/docs/touch-off.md @@ -0,0 +1,86 @@ +Overview +-------- + +![Settings for touch off operation](img/touch-off-settings.png) + +Before milling an object you always need to adjust the coordinate system +of your machine controller (e.g. [LinuxCNC](http://www.linuxcnc.org/)). This +operation is quite easy for the planar axes x and y. Only z is a bit +tricky, since it usually needs to be quite accurate. Otherwise you risk +to mill slightly too deep (damaging the base of the milling machine) or +slightly too high (the cut through the object is not complete). + +Touch off is the initial adjustment of the z axis by measuring the +height of the lowest point of the milling tool. + +Tool change is the process of switching from one tool to another. Manual +tool change involves a length compensation: adjusting the coordinate +system of the machine controller according to the length of the new +tool. Usually this is accomplished by shifting the coordinate system by +the difference between the height of the old tool and the new tool. + +**Beware:** the generated GCode probably only works with LinuxCNC. Please +check carefully (and slowly) if it works for your machine controller, as +well. Any feedback (just edit this page) is highly appreciated! + +Touch off on startup +-------------------- + +![Screenshot of touch off settings](img/touch-off.png) + +The following description is only valid if the *Touch probe position* +value is *Initial location*. The *Fixed location (absolute)* setting +follows a similar pattern. + +The *touch off on startup* procedure follows these steps: + +1. position the tool above the probe switch + 1. the vertical distance between the tool and the switch must + clearly exceed the *Rapid move down* value + 2. the vertical distance between the tool and the switch may not + exceed the sum of *Rapid move down* and *Probing distance* +2. run the GCode program + +The GCode will tell the machine controller to do the following: + +1. store the initial position of the machine as the touch off position +2. move down rapidly: the distance is specified via *Rapid move down* +3. move down slowly and wait for the probe switch to close (the maximum + way down is defined by *Probing distance*) +4. shift the z axis of the coordinate system in such a way, that the z + level of the touch off location is equal to the value specified by + *Z level of touch probe* +5. rapidly move up to the initial location +6. optional pause (M0) of GCode execution (should be enabled if your + spindle is controlled manually) +7. start execution of the first toolpath + +The spindle will start after the touch off (via M3). + +Tool change +----------- + +A tool change occurs between two toolpaths using different tools. + +The tool change operation follows these steps: + +1. optional pause of GCode execution (should be enabled if your spindle + is controlled manually) +2. stop spindle (M5) +3. move to touch off position (*initial location (on startup)* or + *fixed location (absolute)*) +4. move down rapidly: the distance is specified via *Rapid move down* +5. move down slowly and wait for the probe switch to close (the maximum + way down is defined by *Probing distance*) +6. remember the height of the current tool +7. rapidly move up to the touch off location +8. request tool change (Tx M6) + 1. your machine controller will wait for confirmation +9. repeat the rapid and slow move down with the new tool +10. adjust the z axis of the coordinate system by the difference between + the height of the new tool and the height of the old tool + 1. this compensates the change of the tool's length +11. rapidly move up to the touch off position +12. optional pause of GCode execution +13. start spindle (M3) +14. continue with the next toolpath diff --git a/pycam/docs/video-translations.md b/pycam/docs/video-translations.md new file mode 100644 index 00000000..99daac5a --- /dev/null +++ b/pycam/docs/video-translations.md @@ -0,0 +1,34 @@ +Video tutorials are useful for presenting the various features of PyCAM +to new users. + +The existing video tutorials can be found at +[vimeo](http://vimeo.com/channels/158481). + +Providing these videos in different languages is quite simple - you just +need to translate a small subtitles file. This will usually take around +15 minutes. + +Available videos +---------------- + + Video Subtitle files Languages + ------------------------------------------------------------------------- ----------------------------------------------------------------------------------------------------------------- ----------- + [Toolpaths for 2D models](http://vimeo.com/18254871) (incl. simulation) [download](http://pycam.svn.sourceforge.net/viewvc/pycam/video-tutorials/20101227-2D_Toolpaths_and_Simulation/) en, de + [Using multi-layered 2D models](http://vimeo.com/21502122) [download](http://pycam.svn.sourceforge.net/viewvc/pycam/video-tutorials/20110324-Multi_Layered_2D_Model/) en, de + +How to translate +---------------- + +1. download an existing subtitle file (preferably in English) +2. copy the file to `YOUR_LANGUAGE.srt` (e.g. `danish.srt`) +3. open the file with an editor that is capable of handling the UTF-8 + character set (almost every modern editor should suffice) +4. replace the English strings with your translations +5. store the file - BEWARE: specify the UTF-8 encoding, please! +6. send the file to the developer's mailing list: + + +Afterwards a PyCAM developer will transcode a new video with your +subtitles and upload it to PyCAM's video channel. + +Thanks for your contribution! diff --git a/pycam/man/Makefile b/pycam/man/Makefile new file mode 100644 index 00000000..a4b3b38e --- /dev/null +++ b/pycam/man/Makefile @@ -0,0 +1,24 @@ +RUN_SCRIPT = ../pycam/run_gui.py +PYCAM_MAN_INCLUDE_FILE = pycam.1.inc +MAN_FILES = pycam.1 +HTML_FILES = $(patsubst %,%.html,$(MAN_FILES)) +RM = rm -f + + +.PHONY: build clean html man + + +man: $(MAN_FILES) + +html: $(HTML_FILES) + +pycam.1: $(RUN_SCRIPT) $(PYCAM_MAN_INCLUDE_FILE) + help2man --no-info --name="Toolpath Generation for 3-Axis CNC machining" \ + --section=1 --manual="PyCAM manual" --include="$(PYCAM_MAN_INCLUDE_FILE)" \ + --output="$@" "$(RUN_SCRIPT)" + +%.html: % + man2html $* >"$@" + +clean: + $(RM) $(MAN_FILES) $(HTML_FILES) diff --git a/pycam/man/pycam.1.inc b/pycam/man/pycam.1.inc new file mode 100644 index 00000000..75f94294 --- /dev/null +++ b/pycam/man/pycam.1.inc @@ -0,0 +1,31 @@ +[EXAMPLES] +.nf +.B pycam \-\-export\-gcode=output.ngc \-\-bounds\-type=relative\-margin \-\-bounds-lower=0.1,0.05,-0.1 foo.stl + +.fi +Use the default settings to process the model \fBfoo.stl\fR with an adjusted +lower margin (minx, miny, minz) of 10% (for x), 5% (for y) and \-10% (for z). + +[ENVIRONMENT] +.IP PYCAM_DATA_DIR +Override the default data directory of PyCAM. This allows +you to provide customized logos, menu files or non-default sample files. +.IP PYCAM_FONT_DIR +Override the default location of engrave fonts. +.IP PYTHONPATH +You may want to define this variable in case that you installed the +\fBPyCAM\fR python package in a non-default location. + +[REPORTING BUGS] +See http://sourceforge.net/tracker/?group_id=237831&atid=1104176 + +[SEE ALSO] +Take a look at the output of \fBpycam \-\-help\fR to get a slightly better +formatted list of options. The manual that you are reading right now is +derived from this output. + +Take a look at the wiki for more information about PyCAM: +http://sourceforge.net/apps/mediawiki/pycam/ + +The website of the PyCAM project: http://pycam.sourceforge.net + diff --git a/pycam/mkdocs.yml b/pycam/mkdocs.yml new file mode 100644 index 00000000..33f86372 --- /dev/null +++ b/pycam/mkdocs.yml @@ -0,0 +1,47 @@ +site_name: PyCAM +site_description: Toolpath generator for 3-axis CNC machining +site_url: http://pycam.sourceforge.net/ + +repo_url: https://github.com/SebKuzminsky/pycam +repo_name: GitHub + +theme: readthedocs + +pages: +- Home: index.md +- Installation: + - Installing: installation.md + - Requirements: requirements.md + - MacOS: installation-macos.md + - Release Notes: release-notes.md +- Introduction: + - Introduction: introduction.md + - Features: features.md + - Screenshots: screenshots.md + - Supported Formats: supported-formats.md + - Getting Started: getting-started.md + - Modeling with Inkscape SVG: modeling-inkscape-svg.md + - Modeling with OpenSCAD DXF: modeling-openscad-dxf.md + - FAQ: faq.md +- Using the GUI: + - Menu Items: menu-items.md + - 3D View: 3d-view.md + - Model Transformations: model-transformations.md + - Engrave Fonts: engrave-fonts.md + - Tool Types: tool-types.md + - Process Settings: process-settings.md + - Bounding Box: bounding-box.md + - Task Settings: task-settings.md +- Advanced Usage: + - Keyboard Shortcuts: keyboard-shortcuts.md + - Command-line Examples: cli-examples.md + - Server Mode: server-mode.md + - Parallel Processing: parallel-processing.md + - Touch Off: touch-off.md + - OpenGL Troubles: opengl-troubles.md +- Developers Guide: + - Developers Guide: developers-guide.md + - Video Translations: video-translations.md +- External: + - Other Programs: other-programs.md + - Articles mentioning PyCAM: articles.md diff --git a/pycam/pycam/.gitignore b/pycam/pycam/.gitignore new file mode 100644 index 00000000..cab8141e --- /dev/null +++ b/pycam/pycam/.gitignore @@ -0,0 +1 @@ +Version.py diff --git a/pycam/pycam/Cutters/BaseCutter.py b/pycam/pycam/Cutters/BaseCutter.py new file mode 100644 index 00000000..6bdbb2b9 --- /dev/null +++ b/pycam/pycam/Cutters/BaseCutter.py @@ -0,0 +1,190 @@ +""" +Copyright 2008-2010 Lode Leroy +Copyright 2010-2011 Lars Kruse + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + +import uuid + +from pycam.Geometry import number, INFINITE, epsilon +from pycam.Geometry import IDGenerator +from pycam.Geometry.intersection import intersect_cylinder_point, intersect_cylinder_line +from pycam.Geometry.PointUtils import padd, pdot, psub + + +class BaseCutter(IDGenerator): + + vertical = (0, 0, -1) + + def __init__(self, radius, location=None, height=None): + super().__init__() + if location is None: + location = (0, 0, 0) + if height is None: + height = 10 + radius = number(radius) + self.height = number(height) + self.radius = radius + self.radiussq = radius ** 2 + self.required_distance = 0 + self.distance_radius = self.radius + self.distance_radiussq = self.distance_radius ** 2 + self.shape = {} + self.location = location + self.moveto(self.location) + self.uuid = None + self.update_uuid() + + def get_minx(self, start=None): + if start is None: + start = self.location + return start[0] - self.distance_radius + + def get_maxx(self, start=None): + if start is None: + start = self.location + return start[0] + self.distance_radius + + def get_miny(self, start=None): + if start is None: + start = self.location + return start[1] - self.distance_radius + + def get_maxy(self, start=None): + if start is None: + start = self.location + return start[1] + self.distance_radius + + def update_uuid(self): + self.uuid = uuid.uuid4() + + def __repr__(self): + return "BaseCutter" + + def __lt__(self, other): + """ Compare Cutters by shape and size (ignoring the location) + This function should be overridden by subclasses, if they describe + cutters with a shape depending on more than just the radius. + See the ToroidalCutter for an example. + """ + return self.radius < other.radius + + def set_required_distance(self, value): + if value >= 0: + self.required_distance = number(value) + self.distance_radius = self.radius + self.get_required_distance() + self.distance_radiussq = self.distance_radius * self.distance_radius + self.update_uuid() + + def get_required_distance(self): + return self.required_distance + + def moveto(self, location): + # "moveto" is used for collision detection calculation. + self.location = location + for shape, set_pos_func in self.shape.values(): + set_pos_func(location[0], location[1], location[2]) + + def intersect(self, direction, triangle, start=None): + raise NotImplementedError("Inherited class of BaseCutter does not implement the required " + "function 'intersect'.") + + def drop(self, triangle, start=None): + if start is None: + start = self.location + # check bounding box collision + if self.get_minx(start) > triangle.maxx + epsilon: + return None + if self.get_maxx(start) < triangle.minx - epsilon: + return None + if self.get_miny(start) > triangle.maxy + epsilon: + return None + if self.get_maxy(start) < triangle.miny - epsilon: + return None + + # check bounding circle collision + c = triangle.middle + if ((c[0] - start[0]) ** 2 + (c[1] - start[1]) ** 2 + > (self.distance_radiussq + + 2 * self.distance_radius * triangle.radius + triangle.radiussq) + epsilon): + return None + + return self.intersect(BaseCutter.vertical, triangle, start=start)[0] + + def intersect_circle_triangle(self, direction, triangle, start=None): + (cl, ccp, cp, d) = self.intersect_circle_plane(direction, triangle, start=start) + if cp and triangle.is_point_inside(cp): + return (cl, d, cp) + return (None, INFINITE, None) + + def intersect_circle_vertex(self, direction, point, start=None): + (cl, ccp, cp, l) = self.intersect_circle_point(direction, point, start=start) + return (cl, l, cp) + + def intersect_circle_edge(self, direction, edge, start=None): + (cl, ccp, cp, l) = self.intersect_circle_line(direction, edge, start=start) + if cp: + # check if the contact point is between the endpoints + m = pdot(psub(cp, edge.p1), edge.dir) + if (m < -epsilon) or (m > edge.len + epsilon): + return (None, INFINITE, cp) + return (cl, l, cp) + + def intersect_cylinder_point(self, direction, point, start=None): + if start is None: + start = self.location + (ccp, cp, l) = intersect_cylinder_point(padd(psub(start, self.location), self.center), + self.axis, self.distance_radius, + self.distance_radiussq, direction, point) + # offset intersection + if ccp: + cl = padd(start, psub(cp, ccp)) + return (cl, ccp, cp, l) + return (None, None, None, INFINITE) + + def intersect_cylinder_vertex(self, direction, point, start=None): + if start is None: + start = self.location + (cl, ccp, cp, l) = self.intersect_cylinder_point(direction, point, start=start) + if ccp and ccp[2] < padd(psub(start, self.location), self.center)[2]: + return (None, INFINITE, None) + return (cl, l, cp) + + def intersect_cylinder_line(self, direction, edge, start=None): + if start is None: + start = self.location + (ccp, cp, l) = intersect_cylinder_line(padd(psub(start, self.location), self.center), + self.axis, self.distance_radius, + self.distance_radiussq, direction, edge) + # offset intersection + if ccp: + cl = padd(start, psub(cp, ccp)) + return (cl, ccp, cp, l) + return (None, None, None, INFINITE) + + def intersect_cylinder_edge(self, direction, edge, start=None): + if start is None: + start = self.location + (cl, ccp, cp, l) = self.intersect_cylinder_line(direction, edge, start=start) + if not ccp: + return (None, INFINITE, None) + m = pdot(psub(cp, edge.p1), edge.dir) + if (m < -epsilon) or (m > edge.len + epsilon): + return (None, INFINITE, None) + if ccp[2] < padd(psub(start, self.location), self.center)[2]: + return (None, INFINITE, None) + return (cl, l, cp) diff --git a/pycam/pycam/Cutters/CylindricalCutter.py b/pycam/pycam/Cutters/CylindricalCutter.py new file mode 100644 index 00000000..b1c44cfe --- /dev/null +++ b/pycam/pycam/Cutters/CylindricalCutter.py @@ -0,0 +1,173 @@ +""" +Copyright 2008-2010 Lode Leroy +Copyright 2010 Lars Kruse + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + +from pycam.Geometry import INFINITE +from pycam.Cutters.BaseCutter import BaseCutter +from pycam.Geometry.intersection import intersect_circle_plane, intersect_circle_point, \ + intersect_circle_line +from pycam.Geometry.PointUtils import padd, psub + + +try: + import OpenGL.GL as GL + import OpenGL.GLU as GLU + GL_enabled = True +except ImportError: + GL_enabled = False + + +class CylindricalCutter(BaseCutter): + + def __init__(self, radius, **kwargs): + BaseCutter.__init__(self, radius, **kwargs) + self.axis = (0, 0, 1, 'v') + + def __repr__(self): + return "CylindricalCutter<%s,%s>" % (self.location, self.radius) + + def to_opengl(self): + if not GL_enabled: + return + GL.glPushMatrix() + GL.glTranslate(self.center[0], self.center[1], self.center[2]) + if not hasattr(self, "_cylinder"): + self._cylinder = GLU.gluNewQuadric() + GLU.gluCylinder(self._cylinder, self.radius, self.radius, self.height, 10, 10) + if not hasattr(self, "_disk"): + self._disk = GLU.gluNewQuadric() + GLU.gluDisk(self._disk, 0, self.radius, 10, 10) + GL.glPopMatrix() + + def moveto(self, location, **kwargs): + BaseCutter.moveto(self, location, **kwargs) + self.center = (location[0], location[1], location[2] - self.get_required_distance()) + + def intersect_circle_plane(self, direction, triangle, start=None): + if start is None: + start = self.location + (ccp, cp, d) = intersect_circle_plane(padd(psub(start, self.location), self.center), + self.distance_radius, direction, triangle) + if ccp and cp: + cl = padd(cp, psub(start, ccp)) + return (cl, ccp, cp, d) + return (None, None, None, INFINITE) + + def intersect_circle_point(self, direction, point, start=None): + if start is None: + start = self.location + (ccp, cp, l) = intersect_circle_point(padd(psub(start, self.location), self.center), + self.axis, self.distance_radius, + self.distance_radiussq, direction, point) + if ccp: + cl = padd(cp, psub(start, ccp)) + return (cl, ccp, cp, l) + return (None, None, None, INFINITE) + + def intersect_circle_line(self, direction, edge, start=None): + if start is None: + start = self.location + (ccp, cp, l) = intersect_circle_line(padd(psub(start, self.location), self.center), + self.axis, self.distance_radius, + self.distance_radiussq, direction, edge) + if ccp: + cl = padd(cp, psub(start, ccp)) + return (cl, ccp, cp, l) + return (None, None, None, INFINITE) + + def intersect(self, direction, triangle, start=None): + (cl_t, d_t, cp_t) = self.intersect_circle_triangle(direction, triangle, start=start) + d = INFINITE + cl = None + cp = None + if d_t < d: + d = d_t + cl = cl_t + cp = cp_t + if cl and (direction[0] == 0) and (direction[1] == 0): + return (cl, d, cp) + (cl_e1, d_e1, cp_e1) = self.intersect_circle_edge(direction, triangle.e1, start=start) + (cl_e2, d_e2, cp_e2) = self.intersect_circle_edge(direction, triangle.e2, start=start) + (cl_e3, d_e3, cp_e3) = self.intersect_circle_edge(direction, triangle.e3, start=start) + if d_e1 < d: + d = d_e1 + cl = cl_e1 + cp = cp_e1 + if d_e2 < d: + d = d_e2 + cl = cl_e2 + cp = cp_e2 + if d_e3 < d: + d = d_e3 + cl = cl_e3 + cp = cp_e3 + if cl and (direction[0] == 0) and (direction[1] == 0): + return (cl, d, cp) + (cl_p1, d_p1, cp_p1) = self.intersect_circle_vertex(direction, triangle.p1, start=start) + (cl_p2, d_p2, cp_p2) = self.intersect_circle_vertex(direction, triangle.p2, start=start) + (cl_p3, d_p3, cp_p3) = self.intersect_circle_vertex(direction, triangle.p3, start=start) + if d_p1 < d: + d = d_p1 + cl = cl_p1 + cp = cp_p1 + if d_p2 < d: + d = d_p2 + cl = cl_p2 + cp = cp_p2 + if d_p3 < d: + d = d_p3 + cl = cl_p3 + cp = cp_p3 + if cl and (direction[0] == 0) and (direction[1] == 0): + return (cl, d, cp) + if (direction[0] != 0) or (direction[1] != 0): + cl_p1, d_p1, cp_p1 = self.intersect_cylinder_vertex(direction, triangle.p1, + start=start) + cl_p2, d_p2, cp_p2 = self.intersect_cylinder_vertex(direction, triangle.p2, + start=start) + cl_p3, d_p3, cp_p3 = self.intersect_cylinder_vertex(direction, triangle.p3, + start=start) + if d_p1 < d: + d = d_p1 + cl = cl_p1 + cp = cp_p1 + if d_p2 < d: + d = d_p2 + cl = cl_p2 + cp = cp_p2 + if d_p3 < d: + d = d_p3 + cl = cl_p3 + cp = cp_p3 + cl_e1, d_e1, cp_e1 = self.intersect_cylinder_edge(direction, triangle.e1, start=start) + cl_e2, d_e2, cp_e2 = self.intersect_cylinder_edge(direction, triangle.e2, start=start) + cl_e3, d_e3, cp_e3 = self.intersect_cylinder_edge(direction, triangle.e3, start=start) + if d_e1 < d: + d = d_e1 + cl = cl_e1 + cp = cp_e1 + if d_e2 < d: + d = d_e2 + cl = cl_e2 + cp = cp_e2 + if d_e3 < d: + d = d_e3 + cl = cl_e3 + cp = cp_e3 + return (cl, d, cp) diff --git a/pycam/pycam/Cutters/SphericalCutter.py b/pycam/pycam/Cutters/SphericalCutter.py new file mode 100644 index 00000000..d63b9213 --- /dev/null +++ b/pycam/pycam/Cutters/SphericalCutter.py @@ -0,0 +1,198 @@ +""" +Copyright 2008-2010 Lode Leroy +Copyright 2010 Lars Kruse + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + +from pycam.Geometry import INFINITE, epsilon +from pycam.Cutters.BaseCutter import BaseCutter +from pycam.Geometry.intersection import intersect_sphere_plane, intersect_sphere_point, \ + intersect_sphere_line +from pycam.Geometry.PointUtils import padd, pdot, pmul, pnormsq, psub + + +try: + import OpenGL.GL as GL + import OpenGL.GLU as GLU + GL_enabled = True +except ImportError: + GL_enabled = False + + +class SphericalCutter(BaseCutter): + + def __init__(self, radius, **kwargs): + BaseCutter.__init__(self, radius, **kwargs) + self.axis = (0, 0, 1, 'v') + + def __repr__(self): + return "SphericalCutter<%s,%s>" % (self.location, self.radius) + + def to_opengl(self): + if not GL_enabled: + return + GL.glPushMatrix() + GL.glTranslate(self.center[0], self.center[1], self.center[2]) + if not hasattr(self, "_sphere"): + self._sphere = GLU.gluNewQuadric() + GLU.gluSphere(self._sphere, self.radius, 10, 10) + if not hasattr(self, "_cylinder"): + self._cylinder = GLU.gluNewQuadric() + GLU.gluCylinder(self._cylinder, self.radius, self.radius, self.height, 10, 10) + GL.glPopMatrix() + + def moveto(self, location, **kwargs): + BaseCutter.moveto(self, location, **kwargs) + self.center = (location[0], location[1], location[2] + self.radius) + + def intersect_sphere_plane(self, direction, triangle, start=None): + if start is None: + start = self.location + (ccp, cp, d) = intersect_sphere_plane(padd(psub(start, self.location), self.center), + self.distance_radius, direction, triangle) + # offset intersection + if ccp: + cl = padd(cp, psub(start, ccp)) + return (cl, ccp, cp, d) + return (None, None, None, INFINITE) + + def intersect_sphere_triangle(self, direction, triangle, start=None): + (cl, ccp, cp, d) = self.intersect_sphere_plane(direction, triangle, start=start) + if cp and triangle.is_point_inside(cp): + return (cl, d, cp) + return (None, INFINITE, None) + + def intersect_sphere_point(self, direction, point, start=None): + if start is None: + start = self.location + (ccp, cp, l) = intersect_sphere_point(padd(psub(start, self.location), self.center), + self.distance_radius, self.distance_radiussq, + direction, point) + # offset intersection + cl = None + if cp: + cl = padd(start, pmul(direction, l)) + return (cl, ccp, cp, l) + + def intersect_sphere_vertex(self, direction, point, start=None): + (cl, ccp, cp, l) = self.intersect_sphere_point(direction, point, start=start) + return (cl, l, cp) + + def intersect_sphere_line(self, direction, edge, start=None): + if start is None: + start = self.location + (ccp, cp, l) = intersect_sphere_line(padd(psub(start, self.location), self.center), + self.distance_radius, self.distance_radiussq, + direction, edge) + # offset intersection + if ccp: + cl = psub(cp, psub(ccp, start)) + return (cl, ccp, cp, l) + return (None, None, None, INFINITE) + + def intersect_sphere_edge(self, direction, edge, start=None): + (cl, ccp, cp, l) = self.intersect_sphere_line(direction, edge, start=start) + if cp: + # check if the contact point is between the endpoints + d = psub(edge.p2, edge.p1) + m = pdot(psub(cp, edge.p1), d) + if (m < -epsilon) or (m > pnormsq(d) + epsilon): + return (None, INFINITE, None) + return (cl, l, cp) + + def intersect_point(self, direction, point, start=None): + # TODO: probably obsolete? + return self.intersect_sphere_point(direction, point, start=start) + + def intersect(self, direction, triangle, start=None): + (cl_t, d_t, cp_t) = self.intersect_sphere_triangle(direction, triangle, start=start) + d = INFINITE + cl = None + cp = None + if d_t < d: + d = d_t + cl = cl_t + cp = cp_t + if cl and (direction[0] == 0) and (direction[1] == 0): + return (cl, d, cp) + (cl_e1, d_e1, cp_e1) = self.intersect_sphere_edge(direction, triangle.e1, start=start) + (cl_e2, d_e2, cp_e2) = self.intersect_sphere_edge(direction, triangle.e2, start=start) + (cl_e3, d_e3, cp_e3) = self.intersect_sphere_edge(direction, triangle.e3, start=start) + if d_e1 < d: + d = d_e1 + cl = cl_e1 + cp = cp_e1 + if d_e2 < d: + d = d_e2 + cl = cl_e2 + cp = cp_e2 + if d_e3 < d: + d = d_e3 + cl = cl_e3 + cp = cp_e3 + (cl_p1, d_p1, cp_p1) = self.intersect_sphere_vertex(direction, triangle.p1, start=start) + (cl_p2, d_p2, cp_p2) = self.intersect_sphere_vertex(direction, triangle.p2, start=start) + (cl_p3, d_p3, cp_p3) = self.intersect_sphere_vertex(direction, triangle.p3, start=start) + if d_p1 < d: + d = d_p1 + cl = cl_p1 + cp = cp_p1 + if d_p2 < d: + d = d_p2 + cl = cl_p2 + cp = cp_p2 + if d_p3 < d: + d = d_p3 + cl = cl_p3 + cp = cp_p3 + if cl and (direction[0] == 0) and (direction[1] == 0): + return (cl, d, cp) + if (direction[0] != 0) or (direction[1] != 0): + (cl_p1, d_p1, cp_p1) = self.intersect_cylinder_vertex(direction, triangle.p1, + start=start) + (cl_p2, d_p2, cp_p2) = self.intersect_cylinder_vertex(direction, triangle.p2, + start=start) + (cl_p3, d_p3, cp_p3) = self.intersect_cylinder_vertex(direction, triangle.p3, + start=start) + if d_p1 < d: + d = d_p1 + cl = cl_p1 + cp = cp_p1 + if d_p2 < d: + d = d_p2 + cl = cl_p2 + cp = cp_p2 + if d_p3 < d: + d = d_p3 + cl = cl_p3 + cp = cp_p3 + cl_e1, d_e1, cp_e1 = self.intersect_cylinder_edge(direction, triangle.e1, start=start) + cl_e2, d_e2, cp_e2 = self.intersect_cylinder_edge(direction, triangle.e2, start=start) + cl_e3, d_e3, cp_e3 = self.intersect_cylinder_edge(direction, triangle.e3, start=start) + if d_e1 < d: + d = d_e1 + cl = cl_e1 + cp = cp_e1 + if d_e2 < d: + d = d_e2 + cl = cl_e2 + cp = cp_e2 + if d_e3 < d: + d = d_e3 + cl = cl_e3 + cp = cp_e3 + return (cl, d, cp) diff --git a/pycam/pycam/Cutters/ToroidalCutter.py b/pycam/pycam/Cutters/ToroidalCutter.py new file mode 100644 index 00000000..0f7ee867 --- /dev/null +++ b/pycam/pycam/Cutters/ToroidalCutter.py @@ -0,0 +1,340 @@ +""" +Copyright 2008-2010 Lode Leroy +Copyright 2010 Lars Kruse + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + +from pycam.Geometry import INFINITE, number, epsilon +from pycam.Cutters.BaseCutter import BaseCutter +from pycam.Geometry.intersection import intersect_torus_plane, intersect_torus_point, \ + intersect_circle_plane, intersect_circle_point, intersect_cylinder_point, \ + intersect_cylinder_line, intersect_circle_line +from pycam.Geometry.PointUtils import padd, pdot, pmul, psub + + +try: + import OpenGL.GL as GL + import OpenGL.GLU as GLU + import OpenGL.GLUT as GLUT + GL_enabled = True +except ImportError: + GL_enabled = False + + +class ToroidalCutter(BaseCutter): + + def __init__(self, radius, minorradius, **kwargs): + minorradius = number(minorradius) + self.minorradius = minorradius + # we need "minorradius" for "moveto" - thus set it before parent's init + BaseCutter.__init__(self, radius, **kwargs) + self.majorradius = self.radius - minorradius + self.axis = (0, 0, 1) + self.majorradiussq = self.majorradius ** 2 + self.minorradiussq = self.minorradius ** 2 + self.distance_majorradius = self.majorradius + self.get_required_distance() + self.distance_minorradius = self.minorradius + self.get_required_distance() + self.distance_majorradiussq = self.distance_majorradius ** 2 + self.distance_minorradiussq = self.distance_minorradius ** 2 + + def set_required_distance(self, value): + """ trigger the update of "self.distance_major/minorradius" """ + BaseCutter.set_required_distance(self, value) + if value >= 0: + self.distance_majorradius = self.majorradius + self.get_required_distance() + self.distance_minorradius = self.minorradius + self.get_required_distance() + self.distance_majorradiussq = self.distance_majorradius ** 2 + self.distance_minorradiussq = self.distance_minorradius ** 2 + + def __repr__(self): + return "ToroidalCutter<%s,%f,R=%f,r=%f>" % (self.location, self.radius, self.majorradius, + self.minorradius) + + def __lt__(self, other): + """ Compare Cutters by shape and size (ignoring the location) """ + return ((self.radius, self.majorradius, self.minorradius) + < (other.radius, other.majorradius, other.minorradius)) + + def to_opengl(self): + if not GL_enabled: + return + GL.glPushMatrix() + GL.glTranslate(self.center[0], self.center[1], self.center[2]) + GLUT.glutSolidTorus(self.minorradius, self.majorradius, 10, 20) + if not hasattr(self, "_cylinder"): + self._cylinder = GLU.gluNewQuadric() + GLU.gluCylinder(self._cylinder, self.radius, self.radius, self.height, 10, 20) + GL.glPopMatrix() + GL.glPushMatrix() + GL.glTranslate(self.location[0], self.location[1], self.location[2]) + if not hasattr(self, "_disk"): + self._disk = GLU.gluNewQuadric() + GLU.gluDisk(self._disk, 0, self.majorradius, 20, 10) + GL.glPopMatrix() + + def moveto(self, location, **kwargs): + BaseCutter.moveto(self, location, **kwargs) + self.center = (location[0], location[1], location[2]+self.minorradius) + + def intersect_torus_plane(self, direction, triangle, start=None): + if start is None: + start = self.location + (ccp, cp, l) = intersect_torus_plane(padd(psub(start, self.location), self.center), + self.axis, self.distance_majorradius, + self.distance_minorradius, direction, triangle) + if cp: + cl = padd(cp, psub(start, ccp)) + return (cl, ccp, cp, l) + return (None, None, None, INFINITE) + + def intersect_torus_triangle(self, direction, triangle, start=None): + (cl, ccp, cp, d) = self.intersect_torus_plane(direction, triangle, start=start) + if cp and triangle.is_point_inside(cp): + return (cl, d, cp) + return (None, INFINITE, None) + + def intersect_torus_point(self, direction, point, start=None): + if start is None: + start = self.location + (ccp, cp, l) = intersect_torus_point(padd(psub(start, self.location), self.center), + self.axis, + self.distance_majorradius, + self.distance_minorradius, + self.distance_majorradiussq, + self.distance_minorradiussq, + direction, + point) + if ccp: + cl = padd(point, psub(start, ccp)) + return (cl, ccp, point, l) + return (None, None, None, INFINITE) + + def intersect_torus_vertex(self, direction, point, start=None): + (cl, ccp, cp, l) = self.intersect_torus_point(direction, point, start=start) + return (cl, l, cp) + + def intersect_torus_edge(self, direction, edge, start=None): + # TODO: calculate "optimal" scale: + # max(dir.dot(axis)/minor,dir.dot(dir.cross(axis).normalized())/major) + # "When in doubt, use brute force." Ken Thompson + min_m = 0 + min_l = INFINITE + min_cl = None + scale = int(edge.len / self.distance_minorradius * 2) + scale = max(3, scale) + for i in range(scale + 1): + m = float(i) / scale + p = edge.point_with_length_multiply(m) + (cl, ccp, cp, l) = self.intersect_torus_point(direction, p, start=start) + if not cl: + continue + if l < min_l: + min_m = m + min_l = l + min_cl = cl + min_cp = cp + if min_l == INFINITE: + return (None, INFINITE, None) + scale2 = 10 + for i in range(1, scale2 + 1): + m = min_m + ((float(i) / (scale2)) * 2 - 1)/scale + if (m < -epsilon) or (m > 1 + epsilon): + continue + p = edge.point_with_length_multiply(m) + (cl, ccp, cp, l) = self.intersect_torus_point(direction, p, start=start) + if not cl: + continue + if l < min_l: + min_l = l + min_cl = cl + min_cp = cp + return (min_cl, min_l, min_cp) + + def intersect_cylinder_point(self, direction, point, start=None): + if start is None: + start = self.location + (ccp, cp, l) = intersect_cylinder_point(padd(psub(start, self.location), self.center), + self.axis, self.distance_radius, + self.distance_radiussq, direction, point) + # offset intersection + if ccp: + cl = padd(start, pmul(direction, l)) + return (cl, ccp, cp, l) + return (None, None, None, INFINITE) + + def intersect_cylinder_line(self, direction, edge, start=None): + if start is None: + start = self.location + (ccp, cp, l) = intersect_cylinder_line(padd(psub(start, self.location), self.center), + self.axis, self.distance_radius, + self.distance_radiussq, direction, edge) + # offset intersection + if ccp: + cl = padd(start, psub(cp, ccp)) + return (cl, ccp, cp, l) + return (None, None, None, INFINITE) + + def intersect_cylinder_edge(self, direction, edge, start=None): + (cl, ccp, cp, l) = self.intersect_cylinder_line(direction, edge, start=start) + if ccp and ccp[2] < self.center[2]: + return (None, INFINITE, None) + if ccp: + m = pdot(psub(cp, edge.p1), edge.dir) + if (m < -epsilon) or (m > edge.len + epsilon): + return (None, INFINITE, None) + return (cl, l, cp) + + def intersect_circle_plane(self, direction, triangle, start=None): + if start is None: + start = self.location + ccp, cp, l_len = intersect_circle_plane(start, self.distance_majorradius, direction, + triangle) + # offset intersection + if ccp: + cl = psub(cp, psub(ccp, start)) + return (cl, ccp, cp, l_len) + return (None, None, None, INFINITE) + + def intersect_circle_point(self, direction, point, start=None): + if start is None: + start = self.location + (ccp, cp, l_len) = intersect_circle_point(start, self.axis, self.distance_majorradius, + self.distance_majorradiussq, direction, point) + if ccp: + cl = psub(cp, psub(ccp, start)) + return (cl, ccp, point, l_len) + return (None, None, None, INFINITE) + + def intersect_circle_line(self, direction, edge, start=None): + if start is None: + start = self.location + (ccp, cp, l_len) = intersect_circle_line(start, self.axis, self.distance_majorradius, + self.distance_majorradiussq, direction, edge) + if ccp: + cl = psub(cp, psub(ccp, start)) + return (cl, ccp, cp, l_len) + return (None, None, None, INFINITE) + + def intersect(self, direction, triangle, start=None): + (cl_t, d_t, cp_t) = self.intersect_torus_triangle(direction, triangle, start=start) + d = INFINITE + cl = None + cp = None + if d_t < d: + d = d_t + cl = cl_t + cp = cp_t + (cl_e1, d_e1, cp_e1) = self.intersect_torus_edge(direction, triangle.e1, start=start) + (cl_e2, d_e2, cp_e2) = self.intersect_torus_edge(direction, triangle.e2, start=start) + (cl_e3, d_e3, cp_e3) = self.intersect_torus_edge(direction, triangle.e3, start=start) + if d_e1 < d: + d = d_e1 + cl = cl_e1 + cp = cp_e1 + if d_e2 < d: + d = d_e2 + cl = cl_e2 + cp = cp_e2 + if d_e3 < d: + d = d_e3 + cl = cl_e3 + cp = cp_e3 + (cl_p1, d_p1, cp_p1) = self.intersect_torus_vertex(direction, triangle.p1, start=start) + (cl_p2, d_p2, cp_p2) = self.intersect_torus_vertex(direction, triangle.p2, start=start) + (cl_p3, d_p3, cp_p3) = self.intersect_torus_vertex(direction, triangle.p3, start=start) + if d_p1 < d: + d = d_p1 + cl = cl_p1 + cp = cp_p1 + if d_p2 < d: + d = d_p2 + cl = cl_p2 + cp = cp_p2 + if d_p3 < d: + d = d_p3 + cl = cl_p3 + cp = cp_p3 + (cl_t, d_t, cp_t) = self.intersect_circle_triangle(direction, triangle, start=start) + if d_t < d: + d = d_t + cl = cl_t + cp = cp_t + (cl_p1, d_p1, cp_p1) = self.intersect_circle_vertex(direction, triangle.p1, start=start) + (cl_p2, d_p2, cp_p2) = self.intersect_circle_vertex(direction, triangle.p2, start=start) + (cl_p3, d_p3, cp_p3) = self.intersect_circle_vertex(direction, triangle.p3, start=start) + if d_p1 < d: + d = d_p1 + cl = cl_p1 + cp = cp_p1 + if d_p2 < d: + d = d_p2 + cl = cl_p2 + cp = cp_p2 + if d_p3 < d: + d = d_p3 + cl = cl_p3 + cp = cp_p3 + (cl_e1, d_e1, cp_e1) = self.intersect_circle_edge(direction, triangle.e1, start=start) + (cl_e2, d_e2, cp_e2) = self.intersect_circle_edge(direction, triangle.e2, start=start) + (cl_e3, d_e3, cp_e3) = self.intersect_circle_edge(direction, triangle.e3, start=start) + if d_e1 < d: + d = d_e1 + cl = cl_e1 + cp = cp_e1 + if d_e2 < d: + d = d_e2 + cl = cl_e2 + cp = cp_e2 + if d_e3 < d: + d = d_e3 + cl = cl_e3 + cp = cp_e3 + if direction[0] != 0 or direction[1] != 0: + (cl_p1, d_p1, cp_p1) = self.intersect_cylinder_vertex(direction, triangle.p1, + start=start) + (cl_p2, d_p2, cp_p2) = self.intersect_cylinder_vertex(direction, triangle.p2, + start=start) + (cl_p3, d_p3, cp_p3) = self.intersect_cylinder_vertex(direction, triangle.p3, + start=start) + if d_p1 < d: + d = d_p1 + cl = cl_p1 + cp = cp_p1 + if d_p2 < d: + d = d_p2 + cl = cl_p2 + cp = cp_p2 + if d_p3 < d: + d = d_p3 + cl = cl_p3 + cp = cp_p3 + cl_e1, d_e1, cp_e1 = self.intersect_cylinder_edge(direction, triangle.e1, start=start) + cl_e2, d_e2, cp_e2 = self.intersect_cylinder_edge(direction, triangle.e2, start=start) + cl_e3, d_e3, cp_e3 = self.intersect_cylinder_edge(direction, triangle.e3, start=start) + if d_e1 < d: + d = d_e1 + cl = cl_e1 + cp = cp_e1 + if d_e2 < d: + d = d_e2 + cl = cl_e2 + cp = cp_e2 + if d_e3 < d: + d = d_e3 + cl = cl_e3 + cp = cp_e3 + return (cl, d, cp) diff --git a/pycam/pycam/Cutters/__init__.py b/pycam/pycam/Cutters/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/pycam/pycam/Exporters/GCode/LinuxCNC.py b/pycam/pycam/Exporters/GCode/LinuxCNC.py new file mode 100644 index 00000000..42a75af9 --- /dev/null +++ b/pycam/pycam/Exporters/GCode/LinuxCNC.py @@ -0,0 +1,124 @@ +""" +Copyright 2012 Lars Kruse + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + +import os +import pycam.Exporters.GCode +from pycam.Toolpath import ToolpathPathMode +from pycam.workspace import LengthUnit + + +DEFAULT_HEADER = (("G40", "disable tool radius compensation"), + ("G49", "disable tool length compensation"), + ("G80", "cancel modal motion"), + ("G54", "select coordinate system 1"), + ("G90", "disable incremental moves")) + +DEFAULT_DIGITS = 6 + + +def _render_number(number): + if int(number) == number: + return "%d" % number + else: + return ("%%.%df" % DEFAULT_DIGITS) % number + + +class LinuxCNC(pycam.Exporters.GCode.BaseGenerator): + + def add_header(self): + for command, comment in DEFAULT_HEADER: + self.add_command(command, comment=comment) + + def add_footer(self): + self.add_command("M2", "end program") + + def add_comment(self, comment): + self.add_command("; %s" % comment) + + def add_command(self, command, comment=None): + self.destination.write(command) + if comment: + self.destination.write("\t") + self.add_comment(comment) + else: + self.destination.write(os.linesep) + + def add_move(self, coordinates, is_rapid=False): + components = [] + # the cached value may be: + # True: the last move was G0 + # False: the last move was G1 + # None: some non-move happened before + if self._get_cache("rapid_move", None) != is_rapid: + components.append("G0" if is_rapid else "G1") + else: + # improve gcode style + components.append(" ") + axes = [axis for axis in "XYZABCUVW"] + previous = self._get_cache("position", [None] * len(coordinates)) + for (axis, value, last) in zip(axes, coordinates, previous): + if (last is None) or (last != value): + components.append("%s%.6f" % (axis, value)) + command = " ".join(components) + if command.strip(): + self.add_command(command) + + def command_feedrate(self, feedrate): + self.add_command("F%s" % _render_number(feedrate), "set feedrate") + + def command_select_tool(self, tool_id): + self.add_command("T%d M6" % tool_id, "select tool") + + def command_spindle_speed(self, speed): + self.add_command("S%s" % _render_number(speed), "set spindle speed") + + def command_spindle_enabled(self, state): + if state: + self.add_command("M3", "start spindle") + else: + self.add_command("M5", "stop spindle") + + def command_delay(self, seconds): + # "seconds" may be floats or integers + self.add_command("G04 P{}".format(seconds), "wait for {} seconds".format(seconds)) + + def command_unit(self, unit): + if unit == LengthUnit.METRIC_MM: + self.add_command("G21", "metric") + elif unit == LengthUnit.IMPERIAL_INCH: + self.add_command("G20", "imperial") + else: + assert False, "Invalid unit requested: {}".format(unit) + + def command_corner_style(self, extra_args): + path_mode, motion_tolerance, naive_tolerance = extra_args + if path_mode == ToolpathPathMode.CORNER_STYLE_EXACT_PATH: + self.add_command("G61", "exact path mode") + elif path_mode == ToolpathPathMode.CORNER_STYLE_EXACT_STOP: + self.add_command("G61.1", "exact stop mode") + elif path_mode == ToolpathPathMode.CORNER_STYLE_OPTIMIZE_SPEED: + self.add_command("G64", "continuous mode with maximum speed") + elif path_mode == ToolpathPathMode.CORNER_STYLE_OPTIMIZE_TOLERANCE: + if not naive_tolerance: + self.add_command("G64 P%f" % motion_tolerance, "continuous mode with tolerance") + else: + self.add_command("G64 P%f Q%f" % (motion_tolerance, naive_tolerance), + "continuous mode with tolerance and cleanup") + else: + assert False, "Invalid corner style requested: {}".format(path_mode) diff --git a/pycam/pycam/Exporters/GCode/__init__.py b/pycam/pycam/Exporters/GCode/__init__.py new file mode 100644 index 00000000..d51d623b --- /dev/null +++ b/pycam/pycam/Exporters/GCode/__init__.py @@ -0,0 +1,95 @@ +""" +Copyright 2012 Lars Kruse + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + +import pycam.Utils.log +import pycam.Toolpath.Filters +from pycam.Toolpath import MOVE_STRAIGHT_RAPID, MACHINE_SETTING, COMMENT, MOVES_LIST + +_log = pycam.Utils.log.get_logger() + + +class BaseGenerator: + + def __init__(self, destination, comment=None): + if hasattr(destination, "write"): + # assume that "destination" is something like a StringIO instance or an open file + self.destination = destination + # don't close the stream if we did not open it on our own + self._close_stream_on_exit = False + else: + # open the file + self.destination = open(destination, "w") + self._close_stream_on_exit = True + self._filters = [] + self._cache = {} + # add a comment at the top of the file, if requested + if comment: + self.add_comment(comment) + self.add_header() + + def _get_cache(self, key, default_value): + return self._cache.get(key, default_value) + + def add_filters(self, filters): + self._filters.extend(filters) + self._filters.sort() + + def add_comment(self, comment): + raise NotImplementedError("someone forgot to implement 'add_comment'") + + def add_command(self, command, comment=None): + raise NotImplementedError("someone forgot to implement 'add_command'") + + def add_move(self, coordinates, is_rapid=False): + raise NotImplementedError("someone forgot to implement 'add_move'") + + def add_footer(self): + raise NotImplementedError("someone forgot to implement 'add_footer'") + + def finish(self): + self.add_footer() + if self._close_stream_on_exit: + self.destination.close() + + def add_moves(self, moves, filters=None): + # combine both lists/tuples in a type-agnostic way + all_filters = list(self._filters) + if filters: + all_filters.extend(filters) + filtered_moves = pycam.Toolpath.Filters.get_filtered_moves(moves, all_filters) + for step in filtered_moves: + if step.action in MOVES_LIST: + is_rapid = step.action == MOVE_STRAIGHT_RAPID + self.add_move(step.position, is_rapid) + self._cache["position"] = step.position + self._cache["rapid_move"] = is_rapid + elif step.action == COMMENT: + self.add_comment(step.text) + elif step.action == MACHINE_SETTING: + func_name = "command_%s" % step.key + if hasattr(self, func_name): + _log.debug("GCode: machine setting '%s': %s", step.key, step.value) + getattr(self, func_name)(step.value) + self._cache[step.key] = step.value + self._cache["rapid_move"] = None + else: + _log.warn("The current GCode exporter does not support the machine setting " + "'%s=%s' -> ignore", step.key, step.value) + else: + _log.warn("A non-basic toolpath item (%s) remained in the queue -> ignore", step) diff --git a/pycam/pycam/Exporters/GCodeExporter.py b/pycam/pycam/Exporters/GCodeExporter.py new file mode 100644 index 00000000..b02fb5c1 --- /dev/null +++ b/pycam/pycam/Exporters/GCodeExporter.py @@ -0,0 +1,327 @@ +""" +Copyright 2010-2011 Lars Kruse +Copyright 2008-2009 Lode Leroy + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + +import decimal +import os + + +DEFAULT_HEADER = ("G40 (disable tool radius compensation)", + "G49 (disable tool length compensation)", + "G80 (cancel modal motion)", + "G54 (select coordinate system 1)", + "G90 (disable incremental moves)") + +MAX_DIGITS = 12 + + +def _get_num_of_significant_digits(number): + """ Determine the number of significant digits of a float number. """ + # use only positive numbers + number = abs(number) + max_diff = 0.1 ** MAX_DIGITS + if number <= max_diff: + # input value is smaller than the smallest usable number + return MAX_DIGITS + elif number >= 1: + # no negative number of significant digits + return 0 + else: + for digit in range(1, MAX_DIGITS): + shifted = number * (10 ** digit) + if shifted - int(shifted) < max_diff: + return digit + return MAX_DIGITS + + +def _get_num_converter(step_width): + """ Return a float-to-decimal conversion function with a prevision suitable + for the given step width. + """ + digits = _get_num_of_significant_digits(step_width) + format_string = "%%.%df" % digits + conv_func = lambda number: decimal.Decimal(format_string % number) + return conv_func, format_string + + +class GCodeGenerator: + + NUM_OF_AXES = 3 + + def __init__(self, destination, metric_units=True, safety_height=0.0, + toggle_spindle_status=False, spindle_delay=3, header=None, comment=None, + minimum_steps=None, touch_off_on_startup=False, touch_off_on_tool_change=False, + touch_off_position=None, touch_off_rapid_move=0, touch_off_slow_move=1, + touch_off_slow_feedrate=20, touch_off_height=0, touch_off_pause_execution=False): + if hasattr(destination, "write"): + # assume that "destination" is something like a StringIO instance + # or an open file + self.destination = destination + # don't close the stream if we did not open it on our own + self._close_stream_on_exit = False + else: + # open the file by its name + self.destination = open(destination, "w") + self._close_stream_on_exit = True + self.safety_height = safety_height + self.toggle_spindle_status = toggle_spindle_status + self.spindle_delay = spindle_delay + self.comment = comment + # define all axes steps and the corresponding formatters + self._axes_formatter = [] + if not minimum_steps: + # default: minimum steps for all axes = 0.0001 + minimum_steps = [0.0001] + for i in range(self.NUM_OF_AXES): + if i < len(minimum_steps): + step_width = minimum_steps[i] + else: + step_width = minimum_steps[-1] + conv, format_string = _get_num_converter(step_width) + self._axes_formatter.append((conv(step_width), conv, format_string)) + self._finished = False + if comment: + self.add_comment(comment) + if header is None: + self.append(DEFAULT_HEADER) + else: + self.append(header) + if metric_units: + self.append("G21 (metric)") + else: + self.append("G20 (imperial)") + self.last_position = [None, None, None] + self.last_rapid = None + self.last_tool_id = None + self.last_feedrate = 100 + if touch_off_on_startup or touch_off_on_tool_change: + self.store_touch_off_position(touch_off_position) + self.touch_off_on_startup = touch_off_on_startup + self.touch_off_on_tool_change = touch_off_on_tool_change + self.touch_off_rapid_move = touch_off_rapid_move + self.touch_off_slow_move = touch_off_slow_move + self.touch_off_slow_feedrate = touch_off_slow_feedrate + self.touch_off_pause_execution = touch_off_pause_execution + self.touch_off_height = touch_off_height + self._on_startup = True + + def run_touch_off(self, new_tool_id=None, force_height=None): + # either "new_tool_id" or "force_height" should be specified + self.append("") + self.append("(Start of touch off operation)") + self.append("G90 (disable incremental moves)") + self.append("G49 (disable tool offset compensation)") + self.append("G53 G0 Z#5163 (go to touch off position: z)") + self.append("G28 (go to final touch off position)") + self.append("G91 (enter incremental mode)") + self.append("F%f (reduce feed rate during touch off)" % self.touch_off_slow_feedrate) + if self.touch_off_pause_execution: + self.append("(msg,Pausing before tool change)") + self.append("M0 (pause before touch off)") + # measure the current tool length + if self.touch_off_rapid_move > 0: + self.append("G0 Z-%f (go down rapidly)" % self.touch_off_rapid_move) + self.append("G38.2 Z-%f (do the touch off)" % self.touch_off_slow_move) + if force_height is not None: + self.append("G92 Z%f" % force_height) + self.append("G28 (go up again)") + if new_tool_id is not None: + # compensate the length of the new tool + self.append("#100=#5063 (store current tool length compensation)") + self.append("T%d M6" % new_tool_id) + if self.touch_off_rapid_move > 0: + self.append("G0 Z-%f (go down rapidly)" % self.touch_off_rapid_move) + self.append("G38.2 Z-%f (do the touch off)" % self.touch_off_slow_move) + self.append("G28 (go up again)") + # compensate the tool length difference + self.append("G43.1 Z[#5063-#100] (compensate the new tool length)") + self.append("F%f (restore feed rate)" % self.last_feedrate) + self.append("G90 (disable incremental mode)") + # Move up to a safe height. This is either "safety height" or the touch + # off start location. The highest value of these two is used. + if self.touch_off_on_startup and self.touch_off_height is not None: + touch_off_safety_height = self.touch_off_height + \ + self.touch_off_slow_move + self.touch_off_rapid_move + final_height = max(touch_off_safety_height, self.safety_height) + self.append("G0 Z%.3f" % final_height) + else: + # We assume, that the touch off start position is _above_ the + # top of the material. This is documented. + # A proper ("safer") implementation would compare "safety_height" + # with the touch off start location. But this requires "O"-Codes + # which are only usable for LinuxCNC (probably). + self.append("G53 G0 Z#5163 (go to touch off position: z)") + if self.touch_off_pause_execution: + self.append("(msg,Pausing after tool change)") + self.append("M0 (pause after touch off)") + self.append("(End of touch off operation)") + self.append("") + + def store_touch_off_position(self, position): + if position is None: + self.append("G28.1 (store current position for touch off)") + else: + self.append("#5161=%f (touch off position: x)" % position[0]) + self.append("#5162=%f (touch off position: y)" % position[1]) + self.append("#5163=%f (touch off position: z)" % position[2]) + + def set_speed(self, feedrate=None, spindle_speed=None): + if feedrate is not None: + self.append("F%.5f" % feedrate) + self.last_feedrate = feedrate + if spindle_speed is not None: + self.append("S%.5f" % spindle_speed) + + def set_path_mode(self, mode, motion_tolerance=None, naive_cam_tolerance=None): + result = "" + # TODO: implement real path modes (see CORNER_STYLE in pycam.Plugins.ToolpathExport) + PATH_MODES = {"exact_path": None, "exact_stop": None, "continuous": None} + if mode == PATH_MODES["exact_path"]: + result = "G61 (exact path mode)" + elif mode == PATH_MODES["exact_stop"]: + result = "G61.1 (exact stop mode)" + elif mode == PATH_MODES["continuous"]: + if motion_tolerance is None: + result = "G64 (continuous mode with maximum speed)" + elif naive_cam_tolerance is None: + result = "G64 P%f (continuous mode with tolerance)" % motion_tolerance + else: + result = ("G64 P%f Q%f (continuous mode with tolerance and cleanup)" + % (motion_tolerance, naive_cam_tolerance)) + else: + raise ValueError("GCodeGenerator: invalid path mode (%s)" % str(mode)) + self.append(result) + + def add_moves(self, moves, tool_id=None, comment=None): + if comment is not None: + self.add_comment(comment) + skip_safety_height_move = False + if tool_id is not None: + if self.last_tool_id == tool_id: + # nothing to be done + pass + elif self.touch_off_on_tool_change and (self.last_tool_id is not None): + self.run_touch_off(new_tool_id=tool_id) + skip_safety_height_move = True + else: + self.append("T%d M6" % tool_id) + if self._on_startup and self.touch_off_on_startup: + self.run_touch_off(force_height=self.touch_off_height) + skip_safety_height_move = True + self._on_startup = False + self.last_tool_id = tool_id + # move straight up to safety height + if not skip_safety_height_move: + self.add_move_to_safety() + self.set_spindle_status(True) + for pos, rapid in moves: + self.add_move(pos, rapid=rapid) + # go back to safety height + self.add_move_to_safety() + self.set_spindle_status(False) + # make sure that all sections are independent of each other + self.last_position = [None, None, None] + self.last_rapid = None + + def set_spindle_status(self, status): + if self.toggle_spindle_status: + if status: + self.append("M3 (start spindle)") + else: + self.append("M5 (stop spindle)") + self.append("G04 P%d (wait for %d seconds)" % (self.spindle_delay, self.spindle_delay)) + + def add_move_to_safety(self): + new_pos = [None, None, self.safety_height] + self.add_move(new_pos, rapid=True) + + def add_move(self, position, rapid=False): + """ add the GCode for a machine move to 'position'. Use rapid (G0) or normal (G01) speed. + + @value position: the new position + @type position: Point or list(float) + @value rapid: is this a rapid move? + @type rapid: bool + """ + new_pos = [] + for index, attr in enumerate("xyz"): + conv = self._axes_formatter[index][1] + if hasattr(position, attr): + value = getattr(position, attr) + else: + value = position[index] + if value is None: + new_pos.append(None) + else: + new_pos.append(conv(value)) + # check if there was a significant move + no_diff = True + for index, current_new_axis in enumerate(new_pos): + if current_new_axis is None: + continue + if self.last_position[index] is None: + no_diff = False + break + diff = abs(current_new_axis - self.last_position[index]) + if diff >= self._axes_formatter[index][0]: + no_diff = False + break + if no_diff: + # we can safely skip this move + return + # compose the position string + pos_string = [] + for index, axis_spec in enumerate("XYZ"): + if new_pos[index] is None: + continue + if not self.last_position or \ + (new_pos[index] != self.last_position[index]): + pos_string.append(axis_spec + self._axes_formatter[index][2] % new_pos[index]) + self.last_position[index] = new_pos[index] + if rapid == self.last_rapid: + prefix = "" + elif rapid: + prefix = "G0" + else: + prefix = "G1" + self.last_rapid = rapid + self.append("%s %s" % (prefix, " ".join(pos_string))) + + def finish(self): + self.add_move_to_safety() + self.append("M2 (end program)") + self._finished = True + + def add_comment(self, comment): + if hasattr(comment, "split"): + lines = comment.split(os.linesep) + else: + lines = comment + for line in lines: + self.append(";%s" % line) + + def append(self, command): + if self._finished: + raise TypeError("GCodeGenerator: can't add further commands to a finished " + "GCodeGenerator instance: %s" % str(command)) + if hasattr(command, "split"): + # single strings are turned into lists + command = [command] + for line in command: + self.destination.write(line + os.linesep) diff --git a/pycam/pycam/Exporters/LinuxCNCToolExporter.py b/pycam/pycam/Exporters/LinuxCNCToolExporter.py new file mode 100644 index 00000000..be0d31bc --- /dev/null +++ b/pycam/pycam/Exporters/LinuxCNCToolExporter.py @@ -0,0 +1,46 @@ +""" +Copyright 2010 Lars Kruse + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + +import os + + +class LinuxCNCToolExporter: + + def __init__(self, tools): + """ tools are expected to be dictionaries containing the following keys: + - id + - radius + - name + """ + self.tools = tools + + def get_tool_definition_string(self): + result = [] + tools = list(self.tools) + tools.sort(key=lambda item: item["id"]) +# result.append(self.HEADER_ROW) + for tool in tools: + # use an arbitrary length + tool_length = tool["radius"] * 10 + line = "T%d P%d D%f Z-%f ;%s" % (tool["id"], tool["id"], 2 * tool["radius"], + tool_length, tool["name"]) + result.append(line) + # add the dummy line for the "last" tool + result.append("T99999 P99999 Z+0.100000 ;dummy tool") + return os.linesep.join(result) diff --git a/pycam/pycam/Exporters/STLExporter.py b/pycam/pycam/Exporters/STLExporter.py new file mode 100644 index 00000000..5016c086 --- /dev/null +++ b/pycam/pycam/Exporters/STLExporter.py @@ -0,0 +1,60 @@ +""" +Copyright 2010 Lars Kruse + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + +import datetime +import os + +from pycam import VERSION +from pycam.Geometry.PointUtils import pnormalized + + +class STLExporter: + + def __init__(self, model, name="model", created_by="pycam", linesep=None, **kwargs): + self.model = model + self.name = name + self.created_by = created_by + if linesep is None: + self.linesep = os.linesep + else: + self.linesep = linesep + + def __str__(self): + return self.linesep.join(self.get_output_lines) + + def write(self, stream): + for line in self.get_output_lines(): + stream.write(line) + stream.write(self.linesep) + + def get_output_lines(self): + date = datetime.date.today().isoformat() + yield ("""solid "%s"; Produced by %s (v%s), %s""" + % (self.name, self.created_by, VERSION, date)) + for triangle in self.model.triangles(): + norm = pnormalized(triangle.normal) + yield "facet normal %f %f %f" % (norm[0], norm[1], norm[2]) + yield " outer loop" + # Triangle vertices are stored in clockwise order - thus we need + # to reverse the order (STL expects counter-clockwise orientation). + for point in (triangle.p1, triangle.p3, triangle.p2): + yield " vertex %f %f %f" % (point[0], point[1], point[2]) + yield " endloop" + yield "endfacet" + yield "endsolid" diff --git a/pycam/pycam/Exporters/SVGExporter.py b/pycam/pycam/Exporters/SVGExporter.py new file mode 100644 index 00000000..0f3293f0 --- /dev/null +++ b/pycam/pycam/Exporters/SVGExporter.py @@ -0,0 +1,106 @@ +""" +Copyright 2009 Lode Leroy + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + +# Inkscape uses a fixed resolution of 90 dpi +SVG_OUTPUT_DPI = 90 + + +class SVGExporter: + + def __init__(self, output, unit="mm", maxx=None, maxy=None): + if hasattr(output, "write"): + # a stream was given + self.output = output + else: + # a filename was given + self.output = open(output, "w") + if unit == "mm": + dots_per_px = SVG_OUTPUT_DPI / 25.4 + else: + dots_per_px = SVG_OUTPUT_DPI + if maxx is None: + width = 640 + else: + width = dots_per_px * maxx + if width <= 0: + width = 640 + if maxy is None: + height = 800 + else: + height = dots_per_px * maxy + if height <= 0: + height = 800 + self.output.write(("\n" + "\n" + "\n") % (width, height, height, dots_per_px)) + self._fill = 'none' + self._stroke = 'black' + + def close(self, close_stream=True): + self.output.write("""\n\n""") + if close_stream: + self.output.close() + + def stroke(self, stroke): + self._stroke = stroke + + def fill(self, fill): + self._fill = fill + + def add_dot(self, x, y): + item = "\n" % (self._fill, x, -y) + self.output.write(item) + + def add_text(self, x, y, text): + item = "%s\n" % (self._fill, x, -y, text) + self.output.write(item) + + def add_line(self, x1, y1, x2, y2): + item = ("\n" + % (self._fill, self._stroke, x1, -y1, x2, -y2)) + self.output.write(item) + + def add_lines(self, points): + item = "\n" + self.output.write(item) + + +# TODO: we need to create a unified "Exporter" interface and base class +class SVGExporterContourModel: + + def __init__(self, model, unit="mm", **kwargs): + self.model = model + self.unit = unit + + def write(self, stream): + writer = SVGExporter(stream, unit=self.unit, maxx=self.model.maxx, maxy=self.model.maxy) + for polygon in self.model.get_polygons(): + points = polygon.get_points() + if polygon.is_closed: + points.append(points[0]) + writer.add_lines(points) + writer.close(close_stream=False) diff --git a/pycam/pycam/Exporters/__init__.py b/pycam/pycam/Exporters/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/pycam/pycam/Flow/__init__.py b/pycam/pycam/Flow/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/pycam/pycam/Flow/history.py b/pycam/pycam/Flow/history.py new file mode 100644 index 00000000..b319bd33 --- /dev/null +++ b/pycam/pycam/Flow/history.py @@ -0,0 +1,137 @@ +import collections +import contextlib +import datetime +import io + +from pycam.errors import PycamBaseException +from pycam.Flow.parser import dump_yaml, parse_yaml +from pycam.Utils.events import get_event_handler +import pycam.Utils.log + +_log = pycam.Utils.log.get_logger() + + +class DataRevision: + """ create a representation of the current state of all collections """ + + def __init__(self): + """ create a representation of the current state of all collections """ + self.timestamp = datetime.datetime.now() + self.dump = dump_yaml() + + def __lt__(self, other): + """sort revisions by timestamp""" + return (self.timestamp, self.dump) < (other.timestamp, other.dump) + + +class DataHistory: + """ manage the revisions of the data collections """ + + max_revision_count = 20 + subscribed_events = {"model-changed", "model-list-changed", + "tool-changed", "tool-list-changed", + "process-changed", "process-list-changed", + "bounds-changed", "bounds-list-changed", + "task-changed", "task-list-changed", + "toolpath-changed", "toolpath-list-changed"} + + def __init__(self): + self._revisions = collections.deque([], self.max_revision_count) + self._register_events() + # count "ignore change" requests (greater than zero -> ignore changes) + self._ignore_change_depth = 0 + self._skipped_revision_store_count = 0 + self._store_revision() + + def __del__(self): + self.cleanup() + + def cleanup(self): + self._unregister_events() + + def clear(self): + if self._revisions: + self._revisions.clear() + get_event_handler().emit_event("history-changed") + + @contextlib.contextmanager + def merge_changes(self, no_store=False): + """ postpone storing individual revisions until the end of the context + + Use this context if you want to force-merge multiple changes (e.g. load/restore) into a + single revision. + """ + previous_count = self._skipped_revision_store_count + self._ignore_change_depth += 1 + try: + yield + finally: + self._ignore_change_depth -= 1 + # store a new revision if a change occurred in between + if not no_store and (previous_count != self._skipped_revision_store_count): + self._store_revision() + + def get_undo_steps_count(self): + return len(self._revisions) + + def restore_previous_state(self): + if len(self._revisions) > 1: + self._revisions.pop() + event_handler = get_event_handler() + # we do not expect a "change" since we switch to a previous state + with self.merge_changes(no_store=True): + with event_handler.blocked_events(self.subscribed_events, emit_after=True): + source = io.StringIO(self._revisions[-1].dump) + parse_yaml(source, reset=True) + _log.info("Restored previous state from history (%d/%d)", + len(self._revisions) + 1, self.max_revision_count) + event_handler.emit_event("history-changed") + return True + else: + _log.warning("Failed to restore previous state from history: no more states left") + return False + + def _register_events(self): + event_handler = get_event_handler() + for event in self.subscribed_events: + event_handler.register_event(event, self._store_revision) + + def _unregister_events(self): + event_handler = get_event_handler() + while self.subscribed_events: + event = self.subscribed_events.pop() + event_handler.unregister_event(event, self._store_revision) + + def _store_revision(self): + if self._ignore_change_depth > 0: + self._skipped_revision_store_count += 1 + else: + _log.info("Storing a state revision (%d/%d)", + len(self._revisions) + 1, self.max_revision_count) + self._revisions.append(DataRevision()) + get_event_handler().emit_event("history-changed") + + +@contextlib.contextmanager +def merge_history_and_block_events(settings, emit_events_after=True): + """merge all history changes to a single one and block all events (emitting them later)""" + history = settings.get("history") + if history: + with history.merge_changes(): + with settings.blocked_events(history.subscribed_events, emit_after=emit_events_after): + yield + else: + yield + + +@contextlib.contextmanager +def rollback_history_on_failure(settings): + history = settings.get("history") + if history: + start_count = history.get_undo_steps_count() + try: + yield + except PycamBaseException as exc: + _log.warning("Reverting changes due a failure: %s", exc) + if start_count != history.get_undo_steps_count(): + history.restore_previous_state() diff --git a/pycam/pycam/Flow/parser.py b/pycam/pycam/Flow/parser.py new file mode 100644 index 00000000..4ec0adc3 --- /dev/null +++ b/pycam/pycam/Flow/parser.py @@ -0,0 +1,103 @@ +import yaml + +import pycam.Exporters.GCode.LinuxCNC +import pycam.Importers +import pycam.Plugins +import pycam.Utils.log +from pycam.workspace import CollectionName +import pycam.workspace.data_models + + +_log = pycam.Utils.log.get_logger() + + +COLLECTIONS = (pycam.workspace.data_models.Tool, + pycam.workspace.data_models.Process, + pycam.workspace.data_models.Boundary, + pycam.workspace.data_models.Task, + pycam.workspace.data_models.Model, + pycam.workspace.data_models.Toolpath, + pycam.workspace.data_models.ExportSettings, + pycam.workspace.data_models.Export) + + +def parse_yaml(source, excluded_sections=None, reset=False): + """ read processing data from a file-like source and fill the object collections + + @param source: a file-like object (providing "read") referring to a yaml description + @param excluded_sections: if specified, this parameter is interpreted as a list of names of + sections (e.g. "tools") that should not be imported + @param reset: remove all previously stored objects (tools, processes, bounds, tasks, ...) + """ + assert (not excluded_sections + or all(isinstance(item, CollectionName) for item in excluded_sections)), \ + ("Invalid 'excluded_sections' specified (should contain CollectionName enums): {}" + .format(excluded_sections)) + parsed = yaml.safe_load(source) + if parsed is None: + try: + fname = source.name + except AttributeError: + fname = str(source) + _log.warning("Ignoring empty parsed yaml source: %s", fname) + return + for item_class in COLLECTIONS: + section = item_class.collection_name + if excluded_sections and (section in excluded_sections): + continue + collection = item_class.get_collection() + if reset: + collection.clear() + count_before = len(collection) + _log.debug("Importing items into '%s'", section) + for name, data in parsed.get(section.value, {}).items(): + if item_class(name, data) is None: + _log.error("Failed to import '%s' into '%s'.", name, section.value) + _log.info("Imported %d items into '%s'", len(collection) - count_before, section.value) + + +def dump_yaml(target=None, excluded_sections=None): + """export the current data structure as a yaml representation + + @param target: if a file-like object is given, then the output is written to this object. + Otherwise the resulting yaml string is returned. + @param excluded_sections: if specified, this parameter is interpreted as a list of names of + sections (e.g. "tools") that should not be exported + """ + assert (not excluded_sections + or all(isinstance(item, CollectionName) for item in excluded_sections)), \ + ("Invalid 'excluded_sections' specified (should contain CollectionName enums): {}" + .format(excluded_sections)) + result = {} + for item_class in COLLECTIONS: + section = item_class.collection_name + if excluded_sections and (section in excluded_sections): + continue + result[section.value] = item_class.get_collection().get_dict( + with_application_attributes=True, without_uuids=True) + return yaml.dump(result, stream=target) + + +def validate_collections(): + """ try to verify all items in all collections + + throws PycamBaseException in case of obvious errors + """ + for item_class in COLLECTIONS: + collection = item_class.get_collection() + collection.validate() + + +class RestoreCollectionsOnError: + """ restore the collections to their original state, if an exception is thrown meanwhile """ + + def __enter__(self): + self._original_dump = dump_yaml() + + def __exit__(self, exc_type, exc_value, traceback): + if exc_type is not None: + _log.warning("Reverting collection changes due to error: %s", exc_value) + # a problem occurred during the operation + parse_yaml(self._original_dump, reset=True) + # do not suppress exceptions + return False diff --git a/pycam/pycam/Geometry/Letters.py b/pycam/pycam/Geometry/Letters.py new file mode 100644 index 00000000..8040186f --- /dev/null +++ b/pycam/pycam/Geometry/Letters.py @@ -0,0 +1,155 @@ +""" +Copyright 2008-2010 Lode Leroy +Copyright 2010 Lars Kruse + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + +from pycam.Geometry import TransformableContainer +from pycam.Geometry.Model import ContourModel +from pycam.Geometry.Line import Line +from pycam.Geometry.PointUtils import padd + + +TEXT_ALIGN_LEFT = 0 +TEXT_ALIGN_CENTER = 1 +TEXT_ALIGN_RIGHT = 2 + + +class Letter(TransformableContainer): + + def __init__(self, lines): + self.lines = tuple(lines) + + def minx(self): + return min([line.minx for line in self.lines]) + + def maxx(self): + return max([line.maxx for line in self.lines]) + + def miny(self): + return min([line.miny for line in self.lines]) + + def maxy(self): + return max([line.maxy for line in self.lines]) + + def get_positioned_lines(self, base_point, skew=None): + result = [] + + def get_skewed_point(p): + return (base_point[0] + p[0] + (p[1] * skew / 100.0), + base_point[1] + p[1], + base_point[2]) + + for line in self.lines: + skewed_p1 = get_skewed_point(line.p1) + skewed_p2 = get_skewed_point(line.p2) + # Some triplex fonts contain zero-length lines + # (e.g. "/" in italict.cxf). Ignore these. + if skewed_p1 != skewed_p2: + new_line = Line(skewed_p1, skewed_p2) + result.append(new_line) + return result + + +class Charset: + + def __init__(self, name=None, author=None, letterspacing=3.0, wordspacing=6.75, + linespacingfactor=1.0, encoding=None): + self.letters = {} + self.letterspacing = letterspacing + self.wordspacing = wordspacing + self.linespacingfactor = linespacingfactor + self.default_linespacing = 1.6 + self.default_height = 10.0 + if name is None: + self.names = [] + else: + if isinstance(name, (list, set, tuple)): + self.names = name + else: + self.names = [name] + if author is None: + self.authors = [] + else: + if isinstance(author, (list, set, tuple)): + self.authors = author + else: + self.authors = [author] + if encoding is None: + self.encoding = "iso-8859-1" + else: + self.encoding = encoding + + def add_character(self, character, lines): + if len(lines) > 0: + self.letters[character] = Letter(lines) + + def get_names(self): + return self.names + + def get_authors(self): + return self.authors + + def render(self, text, origin=None, skew=0, line_spacing=1.0, pitch=1.0, align=None): + result = ContourModel() + if origin is None: + origin = (0, 0, 0) + if align is None: + align = TEXT_ALIGN_LEFT + base = origin + letter_spacing = self.letterspacing * pitch + word_spacing = self.wordspacing * pitch + line_factor = self.default_linespacing * self.linespacingfactor * line_spacing + for line in text.splitlines(): + current_line = ContourModel() + line_height = self.default_height + for character in line: + if character == " ": + base = padd(base, (word_spacing, 0, 0)) + elif character in self.letters.keys(): + charset_letter = self.letters[character] + new_model = ContourModel() + for line in charset_letter.get_positioned_lines(base, skew=skew): + new_model.append(line, allow_reverse=True) + for polygon in new_model.get_polygons(): + # add polygons instead of lines -> more efficient + current_line.append(polygon) + # update line height + line_height = max(line_height, charset_letter.maxy()) + # shift the base position + base = padd(base, (charset_letter.maxx() + letter_spacing, 0, 0)) + else: + # unknown character - add a small whitespace + base = padd(base, (letter_spacing, 0, 0)) + # go to the next line + base = (origin[0], base[1] - line_height * line_factor, origin[2]) + if current_line.maxx is not None: + if align == TEXT_ALIGN_CENTER: + current_line.shift(-current_line.maxx / 2, 0, 0) + elif align == TEXT_ALIGN_RIGHT: + current_line.shift(-current_line.maxx, 0, 0) + else: + # left align + if current_line.minx != 0: + current_line.shift(-current_line.minx, 0, 0) + for polygon in current_line.get_polygons(): + result.append(polygon) + # the text should be just above the x axis + if result.miny: + # don't shift, if result.miny is None (e.g.: no content) or zero + result.shift(0, -result.miny, 0) + return result diff --git a/pycam/pycam/Geometry/Line.py b/pycam/pycam/Geometry/Line.py new file mode 100644 index 00000000..c0f1572e --- /dev/null +++ b/pycam/pycam/Geometry/Line.py @@ -0,0 +1,263 @@ +""" +Copyright 2008-2009 Lode Leroy +Copyright 2010 Lars Kruse + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + +try: + import OpenGL.GL as GL + GL_enabled = True +except ImportError: + GL_enabled = False + +from pycam.Geometry import epsilon, TransformableContainer, IDGenerator +from pycam.Geometry.Plane import Plane +from pycam.Geometry.PointUtils import (padd, pcross, pdist, pdot, pmul, pnorm, pnormsq, + pnormalized, psub) +# OpenGLTools will be imported later, if necessary +# import pycam.Gui.OpenGLTools + + +class Line(IDGenerator, TransformableContainer): + + __slots__ = ["id", "p1", "p2", "_vector", "_minx", "_maxx", "_miny", "_maxy", "_minz", "_maxz"] + + def __init__(self, p1, p2): + super().__init__() + self.p1 = p1 + self.p2 = p2 + self.reset_cache() + + def copy(self): + return self.__class__(self.p1, self.p2) + + @property + def vector(self): + if self._vector is None: + self._vector = psub(self.p2, self.p1) + return self._vector + + @property + def dir(self): + return pnormalized(self.vector) + + @property + def len(self): + return pnorm(self.vector) + + @property + def minx(self): + if self._minx is None: + self._minx = min(self.p1[0], self.p2[0]) + return self._minx + + @property + def maxx(self): + if self._maxx is None: + self._maxx = max(self.p1[0], self.p2[0]) + return self._maxx + + @property + def miny(self): + if self._miny is None: + self._miny = min(self.p1[1], self.p2[1]) + return self._miny + + @property + def maxy(self): + if self._maxy is None: + self._maxy = max(self.p1[1], self.p2[1]) + return self._maxy + + @property + def minz(self): + if self._minz is None: + self._minz = min(self.p1[2], self.p2[2]) + return self._minz + + @property + def maxz(self): + if self._maxz is None: + self._maxz = max(self.p1[2], self.p2[2]) + return self._maxz + + def __repr__(self): + return "Line<%g,%g,%g>-<%g,%g,%g>" % (self.p1[0], self.p1[1], self.p1[2], self.p2[0], + self.p2[1], self.p2[2]) + + def __lt__(self, other): + """ Two lines are equal if both pairs of points are at the same + locations. + Otherwise the result is based on the comparison of the first and then + the second point. + """ + return (self.p1, self.p2) < (other.p1, other.p2) + + def __next__(self): + yield "p1" + yield "p2" + + def get_children_count(self): + # a line always contains two points + return 2 + + def reset_cache(self): + self._vector = None + self._minx = None + self._maxx = None + self._miny = None + self._maxy = None + self._minz = None + self._maxz = None + + def get_points(self): + return (self.p1, self.p2) + + def point_with_length_multiply(self, l): + return padd(self.p1, pmul(self.dir, l*self.len)) + + def closest_point(self, p): + v = self.dir + if v is None: + # for zero-length lines + return self.p1 + dist = pdot(self.p1, v) - pdot(p, v) + return psub(self.p1, pmul(v, dist)) + + def dist_to_point(self, p): + return pdist(p, self.closest_point(p)) + + def is_point_inside(self, p): + if (p == self.p1) or (p == self.p2): + # these conditions are not covered by the code below + return True + dir1 = pnormalized(psub(p, self.p1)) + dir2 = pnormalized(psub(self.p2, p)) + # True if the two parts of the line have the same direction or if the + # point is self.p1 or self.p2. + return (dir1 == dir2 == self.dir) or (dir1 is None) or (dir2 is None) + + def to_opengl(self, color=None, show_directions=False): + if not GL_enabled: + return + if color is not None: + GL.glColor4f(*color) + GL.glBegin(GL.GL_LINES) + GL.glVertex3f(self.p1[0], self.p1[1], self.p1[2]) + GL.glVertex3f(self.p2[0], self.p2[1], self.p2[2]) + GL.glEnd() + # (optional) draw a cone for visualizing the direction of each line + if show_directions and (self.len > 0): + # We can't import OpenGLTools in the header - otherwise server + # mode without GTK will break. + import pycam.Gui.OpenGLTools + pycam.Gui.OpenGLTools.draw_direction_cone(self.p1, self.p2) + + def get_intersection(self, line, infinite_lines=False): + """ Get the point of intersection between two lines. Intersections + outside the length of these lines are ignored. + Returns (None, None) if no valid intersection was found. + Otherwise the result is (CollisionPoint, distance). Distance is between + 0 and 1. + """ + x1, x2, x3, x4 = self.p1, self.p2, line.p1, line.p2 + a = psub(x2, x1) + b = psub(x4, x3) + c = psub(x3, x1) + # see http://mathworld.wolfram.com/Line-LineIntersection.html (24) + try: + factor = pdot(pcross(c, b), pcross(a, b)) / pnormsq(pcross(a, b)) + except ZeroDivisionError: + # lines are parallel + # check if they are _one_ line + if pnorm(pcross(a, c)) != 0: + # the lines are parallel with a distance + return None, None + # the lines are on one straight + candidates = [] + if self.is_point_inside(x3): + candidates.append((x3, pnorm(c) / pnorm(a))) + elif self.is_point_inside(x4): + candidates.append((x4, pdist(line.p2, self.p1) / pnorm(a))) + elif line.is_point_inside(x1): + candidates.append((x1, 0)) + elif line.is_point_inside(x2): + candidates.append((x2, 1)) + else: + return None, None + # return the collision candidate with the lowest distance + candidates.sort(key=lambda collision: collision[1]) + return candidates[0] + if infinite_lines or (-epsilon <= factor <= 1 + epsilon): + intersec = padd(x1, pmul(a, factor)) + # check if the intersection is between x3 and x4 + if infinite_lines: + return intersec, factor + elif ((min(x3[0], x4[0]) - epsilon <= intersec[0] <= max(x3[0], x4[0]) + epsilon) + and (min(x3[1], x4[1]) - epsilon <= intersec[1] <= max(x3[1], x4[1]) + epsilon) + and (min(x3[2], x4[2]) - epsilon <= intersec[2] <= max(x3[2], x4[2]) + epsilon)): + return intersec, factor + else: + # intersection outside of the length of line(x3, x4) + return None, None + else: + # intersection outside of the length of line(x1, x2) + return None, None + + def get_cropped_line(self, minx, maxx, miny, maxy, minz, maxz): + if self.is_completely_inside(minx, maxx, miny, maxy, minz, maxz): + return self + elif self.is_completely_outside(minx, maxx, miny, maxy, minz, maxz): + return None + else: + # the line needs to be cropped + # generate the six planes of the cube for possible intersections + minp = (minx, miny, minz) + maxp = (maxx, maxy, maxz) + planes = [Plane(minp, (1, 0, 0)), + Plane(minp, (0, 1, 0)), + Plane(minp, (0, 0, 1)), + Plane(maxp, (1, 0, 0)), + Plane(maxp, (0, 1, 0)), + Plane(maxp, (0, 0, 1))] + # calculate all intersections + intersections = [plane.intersect_point(self.dir, self.p1) for plane in planes] + # remove all intersections outside the box and outside the line + valid_intersections = [(cp, dist) for cp, dist in intersections + if cp and (-epsilon <= dist <= self.len + epsilon) + and cp.is_inside(minx, maxx, miny, maxy, minz, maxz)] + # sort the intersections according to their distance to self.p1 + valid_intersections.sort(key=lambda collision: collision[1]) + # Check if p1 is within the box - otherwise use the closest + # intersection. The check for "valid_intersections" is necessary + # to prevent an IndexError due to floating point inaccuracies. + if self.p1.is_inside(minx, maxx, miny, maxy, minz, maxz) \ + or not valid_intersections: + new_p1 = self.p1 + else: + new_p1 = valid_intersections[0][0] + # Check if p2 is within the box - otherwise use the intersection + # most distant from p1. + if self.p2.is_inside(minx, maxx, miny, maxy, minz, maxz) or not valid_intersections: + new_p2 = self.p2 + else: + new_p2 = valid_intersections[-1][0] + if new_p1 == new_p2: + # no real line + return None + else: + return Line(new_p1, new_p2) diff --git a/pycam/pycam/Geometry/Matrix.py b/pycam/pycam/Geometry/Matrix.py new file mode 100644 index 00000000..d3ab1035 --- /dev/null +++ b/pycam/pycam/Geometry/Matrix.py @@ -0,0 +1,169 @@ +""" +Copyright 2010 Lars Kruse + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + +# various matrix related functions for PyCAM + +import math + +from pycam.Geometry import sqrt, number, epsilon +from pycam.Geometry.PointUtils import pcross, pnormalized + + +TRANSFORMATIONS = { + "normal": ((1, 0, 0, 0), (0, 1, 0, 0), (0, 0, 1, 0)), + "x": ((1, 0, 0, 0), (0, 0, 1, 0), (0, -1, 0, 0)), + "y": ((0, 0, -1, 0), (0, 1, 0, 0), (1, 0, 0, 0)), + "z": ((0, 1, 0, 0), (-1, 0, 0, 0), (0, 0, 1, 0)), + "x_swap_y": ((0, 1, 0, 0), (1, 0, 0, 0), (0, 0, 1, 0)), + "x_swap_z": ((0, 0, 1, 0), (0, 1, 0, 0), (1, 0, 0, 0)), + "y_swap_z": ((1, 0, 0, 0), (0, 0, 1, 0), (0, 1, 0, 0)), + "xy_mirror": ((1, 0, 0, 0), (0, 1, 0, 0), (0, 0, -1, 0)), + "xz_mirror": ((1, 0, 0, 0), (0, -1, 0, 0), (0, 0, 1, 0)), + "yz_mirror": ((-1, 0, 0, 0), (0, 1, 0, 0), (0, 0, 1, 0)), +} + + +def get_dot_product(a, b): + """ calculate the dot product of two 3d vectors + + @type a: tuple(float) | list(float) + @value a: the first vector to be multiplied + @type b: tuple(float) | list(float) + @value b: the second vector to be multiplied + @rtype: float + @return: the dot product is (a0*b0 + a1*b1 + a2*b2) + """ + return sum(l1 * l2 for l1, l2 in zip(a, b)) + + +def get_length(vector): + """ calculate the lengt of a 3d vector + + @type vector: tuple(float) | list(float) + @value vector: the given 3d vector + @rtype: float + @return: the length of a vector is the square root of the dot product + of the vector with itself + """ + return sqrt(get_dot_product(vector, vector)) + + +def get_rotation_matrix_from_to(v_orig, v_dest): + """ calculate the rotation matrix used to transform one vector into another + + The result is useful for modifying the rotation matrix of a 3d object. + The simplest example is the following with the original vector pointing + along the x axis, while the destination vectors goes along the y axis: + get_rotation_matrix((1, 0, 0), (0, 1, 0)) + Basically this describes a rotation around the z axis by 90 degrees. + The resulting 3x3 matrix (tuple of tuple of floats) can be multiplied with + any other vector to rotate it in the same way around the z axis. + @type v_orig: tuple(float) | list(float) | pycam.Geometry.Point + @value v_orig: the original 3d vector + @type v_dest: tuple(float) | list(float) | pycam.Geometry.Point + @value v_dest: the destination 3d vector + @rtype: tuple(tuple(float)) + @return: the rotation matrix (3x3) + """ + + v_orig_length = get_length(v_orig) + v_dest_length = get_length(v_dest) + cross_product = get_length(pcross(v_orig, v_dest)) + try: + arcsin = cross_product / (v_orig_length * v_dest_length) + except ZeroDivisionError: + return None + # prevent float inaccuracies to crash the calculation (within limits) + if 1 < arcsin < 1 + epsilon: + arcsin = 1.0 + elif -1 - epsilon < arcsin < -1: + arcsin = -1.0 + rot_angle = math.asin(arcsin) + # calculate the rotation axis + # The rotation axis is equal to the cross product of the original and + # destination vectors. + rot_axis = pnormalized((v_orig[1] * v_dest[2] - v_orig[2] * v_dest[1], + v_orig[2] * v_dest[0] - v_orig[0] * v_dest[2], + v_orig[0] * v_dest[1] - v_orig[1] * v_dest[0])) + if not rot_axis: + return None + # get the rotation matrix + # see http://www.fastgraph.com/makegames/3drotation/ + c = math.cos(rot_angle) + s = math.sin(rot_angle) + t = 1 - c + return ((t * rot_axis[0] * rot_axis[0] + c, + t * rot_axis[0] * rot_axis[1] - s * rot_axis[2], + t * rot_axis[0] * rot_axis[2] + s * rot_axis[1]), + (t * rot_axis[0] * rot_axis[1] + s * rot_axis[2], + t * rot_axis[1] * rot_axis[1] + c, + t * rot_axis[1] * rot_axis[2] - s * rot_axis[0]), + (t * rot_axis[0] * rot_axis[2] - s * rot_axis[1], + t * rot_axis[1] * rot_axis[2] + s * rot_axis[0], + t * rot_axis[2] * rot_axis[2] + c)) + + +def get_rotation_matrix_axis_angle(rot_axis, rot_angle, use_radians=True): + """ calculate rotation matrix for a normalized vector and an angle + + see http://mathworld.wolfram.com/RotationMatrix.html + @type rot_axis: tuple(float) + @value rot_axis: the vector describes the rotation axis. Its length should + be 1.0 (normalized). + @type rot_angle: float + @value rot_angle: rotation angle (radiant) + @rtype: tuple(tuple(float)) + @return: the rotation matrix (3x3) + """ + if not use_radians: + rot_angle *= math.pi / 180 + sin = number(math.sin(rot_angle)) + cos = number(math.cos(rot_angle)) + return ((cos + rot_axis[0] * rot_axis[0] * (1 - cos), + rot_axis[0] * rot_axis[1] * (1 - cos) - rot_axis[2] * sin, + rot_axis[0] * rot_axis[2] * (1 - cos) + rot_axis[1] * sin), + (rot_axis[1] * rot_axis[0] * (1 - cos) + rot_axis[2] * sin, + cos + rot_axis[1] * rot_axis[1] * (1 - cos), + rot_axis[1] * rot_axis[2] * (1 - cos) - rot_axis[0] * sin), + (rot_axis[2] * rot_axis[0] * (1 - cos) - rot_axis[1] * sin, + rot_axis[2] * rot_axis[1] * (1 - cos) + rot_axis[0] * sin, + cos + rot_axis[2] * rot_axis[2] * (1 - cos))) + + +def multiply_vector_matrix(v, m): + """ Multiply a 3d vector with a 3x3 matrix. The result is a 3d vector. + + @type v: tuple(float) | list(float) + @value v: a 3d vector as tuple or list containing three floats + @type m: tuple(tuple(float)) | list(list(float)) + @value m: a 3x3 list/tuple of floats + @rtype: tuple(float) + @return: a tuple of 3 floats as the matrix product + """ + if len(m) == 9: + m = [number(value) for value in m] + m = ((m[0], m[1], m[2]), (m[3], m[4], m[5]), (m[6], m[7], m[8])) + else: + new_m = [] + for column in m: + new_m.append([number(value) for value in column]) + v = [number(value) for value in v] + return (v[0] * m[0][0] + v[1] * m[0][1] + v[2] * m[0][2], + v[0] * m[1][0] + v[1] * m[1][1] + v[2] * m[1][2], + v[0] * m[2][0] + v[1] * m[2][1] + v[2] * m[2][2]) diff --git a/pycam/pycam/Geometry/Model.py b/pycam/pycam/Geometry/Model.py new file mode 100644 index 00000000..7fe5be71 --- /dev/null +++ b/pycam/pycam/Geometry/Model.py @@ -0,0 +1,1024 @@ +""" +Copyright 2008-2010 Lode Leroy +Copyright 2010 Lars Kruse + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + +import math +import uuid + +from pycam.Geometry import epsilon, INFINITE, TransformableContainer, IDGenerator, Box3D, Point3D +from pycam.Geometry.Matrix import TRANSFORMATIONS +from pycam.Geometry.Line import Line +from pycam.Geometry.Plane import Plane +from pycam.Geometry.Polygon import Polygon +from pycam.Geometry.PointUtils import pcross, pdist, pmul, pnorm, pnormalized, psub +from pycam.Geometry.Triangle import Triangle +from pycam.Geometry.TriangleKdtree import TriangleKdtree +from pycam.Toolpath import Bounds +from pycam.Utils import ProgressCounter +import pycam.Utils.log +log = pycam.Utils.log.get_logger() + + +def get_combined_bounds(models): + low = [None, None, None] + high = [None, None, None] + for model in models: + if (low[0] is None) or ((model.minx is not None) and (model.minx < low[0])): + low[0] = model.minx + if (low[1] is None) or ((model.miny is not None) and (model.miny < low[1])): + low[1] = model.miny + if (low[2] is None) or ((model.minz is not None) and (model.minz < low[2])): + low[2] = model.minz + if (high[0] is None) or ((model.maxx is not None) and (model.maxx > high[0])): + high[0] = model.maxx + if (high[1] is None) or ((model.maxy is not None) and (model.maxy > high[1])): + high[1] = model.maxy + if (high[2] is None) or ((model.maxz is not None) and (model.maxz > high[2])): + high[2] = model.maxz + if None in low or None in high: + return None + else: + return Box3D(Point3D(*low), Point3D(*high)) + + +def get_combined_model(models): + # remove all "None" models + models = [model for model in models if model is not None] + if not models: + return None + result = models.pop(0).copy() + while models: + result += models.pop(0) + return result + + +class BaseModel(IDGenerator, TransformableContainer): + + def __init__(self): + super().__init__() + self._item_groups = [] + self.name = "model%d" % self.id + self.minx = None + self.miny = None + self.minz = None + self.maxx = None + self.maxy = None + self.maxz = None + # derived classes should override this + self._export_function = None + + def __add__(self, other_model): + """ combine two models """ + result = self.copy() + for item in next(other_model): + result.append(item.copy()) + return result + + def __len__(self): + """ Return the number of available items in the model. + This is mainly useful for evaluating an empty model as False. + """ + return sum([len(igroup) for igroup in self._item_groups]) + + def __next__(self): + for item_group in self._item_groups: + for item in item_group: + if isinstance(item, list): + for subitem in item: + yield subitem + else: + yield item + + def get_children_count(self): + result = 0 + for item_group in self._item_groups: + for item in item_group: + if hasattr(item, "get_children_count"): + result += item.get_children_count() + else: + try: + result += len(item) + except TypeError: + result += 1 + return result + + def is_export_supported(self): + return self._export_function is not None + + def export(self, **kwargs): + if self.is_export_supported(): + return self._export_function(self, **kwargs) + else: + raise NotImplementedError(("This type of model (%s) does not support the 'export' " + "function.") % str(type(self))) + + def _update_limits(self, item): + # Ignore items without limit attributes (e.g. the normal of a + # ContourModel). + if hasattr(item, "minx"): + if self.minx is None: + self.minx = item.minx + self.miny = item.miny + self.minz = item.minz + self.maxx = item.maxx + self.maxy = item.maxy + self.maxz = item.maxz + else: + self.minx = min(self.minx, item.minx) + self.miny = min(self.miny, item.miny) + self.minz = min(self.minz, item.minz) + self.maxx = max(self.maxx, item.maxx) + self.maxy = max(self.maxy, item.maxy) + self.maxz = max(self.maxz, item.maxz) + + def append(self, item): + self._update_limits(item) + + def extend(self, items): + for item in items: + self.append(item) + + def subdivide(self, depth): + model = self.__class__() + for item in next(self): + for s in item.subdivide(depth): + model.append(s) + return model + + def reset_cache(self): + self.minx = None + self.miny = None + self.minz = None + self.maxx = None + self.maxy = None + self.maxz = None + for item in next(self): + self._update_limits(item) + + def _get_progress_callback(self, update_callback): + if update_callback: + return ProgressCounter(self.get_children_count(), + update_callback=update_callback).increment + else: + return None + + def transform_by_template(self, direction="normal", callback=None): + if direction in TRANSFORMATIONS.keys(): + self.transform_by_matrix(TRANSFORMATIONS[direction], + callback=self._get_progress_callback(callback)) + + def shift(self, shift_x, shift_y, shift_z, callback=None): + matrix = ((1, 0, 0, shift_x), (0, 1, 0, shift_y), (0, 0, 1, shift_z)) + self.transform_by_matrix(matrix, callback=self._get_progress_callback(callback)) + + def scale(self, scale_x, scale_y=None, scale_z=None, callback=None): + if scale_y is None: + scale_y = scale_x + if scale_z is None: + scale_z = scale_x + matrix = ((scale_x, 0, 0, 0), (0, scale_y, 0, 0), (0, 0, scale_z, 0)) + self.transform_by_matrix(matrix, callback=self._get_progress_callback(callback)) + + def _shift_to_origin(self, position, callback=None): + if position != Point3D(0, 0, 0): + self.shift(*(pmul(position, -1)), callback=callback) + + def _shift_origin_to(self, position, callback=None): + if position != Point3D(0, 0, 0): + self.shift(*position, callback=callback) + + def rotate(self, center, axis_vector, angle, callback=None): + # shift the model to the rotation center + self._shift_to_origin(center, callback=callback) + # rotate the model + matrix = pycam.Geometry.Matrix.get_rotation_matrix_axis_angle(axis_vector, angle, + use_radians=False) + self.transform_by_matrix(matrix, callback=callback) + # shift the model back to its original position + self._shift_origin_to(center, callback=callback) + + def get_bounds(self): + return Bounds(Bounds.TYPE_CUSTOM, Box3D(Point3D(self.minx, self.miny, self.minz), + Point3D(self.maxx, self.maxy, self.maxz))) + + +class Model(BaseModel): + + def __init__(self, use_kdtree=True): + import pycam.Exporters.STLExporter + super().__init__() + self._triangles = [] + self._item_groups.append(self._triangles) + self._export_function = pycam.Exporters.STLExporter.STLExporter + # marker for state of kdtree and uuid + self._dirty = True + # enable/disable kdtree + self._use_kdtree = use_kdtree + self._t_kdtree = None + self.__uuid = None + + def __len__(self): + """ Return the number of available items in the model. + This is mainly useful for evaluating an empty model as False. + """ + return len(self._triangles) + + def __iter__(self): + yield from self._triangles + + def copy(self): + result = self.__class__(use_kdtree=self._use_kdtree) + for triangle in self.triangles(): + result.append(triangle.copy()) + return result + + @property + def uuid(self): + if (self.__uuid is None) or self._dirty: + self._update_caches() + return self.__uuid + + def append(self, item): + super().append(item) + if isinstance(item, Triangle): + self._triangles.append(item) + # we assume, that the kdtree needs to be rebuilt again + self._dirty = True + + def reset_cache(self): + super().reset_cache() + # the triangle kdtree needs to be reset after transforming the model + self._update_caches() + + def _update_caches(self): + if self._use_kdtree: + self._t_kdtree = TriangleKdtree(self.triangles()) + self.__uuid = str(uuid.uuid4()) + # the kdtree is up-to-date again + self._dirty = False + + def triangles(self, minx=-INFINITE, miny=-INFINITE, minz=-INFINITE, maxx=+INFINITE, + maxy=+INFINITE, maxz=+INFINITE): + if (minx == miny == minz == -INFINITE) and (maxx == maxy == maxz == +INFINITE): + return self._triangles + if self._use_kdtree: + # update the kdtree, if new triangles were added meanwhile + if self._dirty: + self._update_caches() + return self._t_kdtree.search(minx, maxx, miny, maxy) + return self._triangles + + def get_waterline_contour(self, plane, callback=None): + collision_lines = [] + progress_max = 2 * len(self._triangles) + counter = 0 + for t in self._triangles: + if callback and callback(percent=100.0 * counter / progress_max): + return + collision_line = plane.intersect_triangle(t, counter_clockwise=True) + if collision_line is not None: + collision_lines.append(collision_line) + else: + counter += 1 + counter += 1 + # combine these lines into polygons + contour = ContourModel(plane=plane) + for line in collision_lines: + if callback and callback(percent=100.0 * counter / progress_max): + return + contour.append(line) + counter += 1 + log.debug("Waterline: %f - %d - %s", plane.p[2], len(contour.get_polygons()), + [len(p.get_lines()) for p in contour.get_polygons()]) + return contour + + +class ContourModel(BaseModel): + + def __init__(self, plane=None): + import pycam.Exporters.SVGExporter + super().__init__() + self.name = "contourmodel%d" % self.id + if plane is None: + # the default plane points upwards along the z axis + plane = Plane((0, 0, 0), (0, 0, 1, 'v')) + self._plane = plane + self._line_groups = [] + self._item_groups.append(self._line_groups) + # there is always just one plane + self._plane_groups = [self._plane] + self._item_groups.append(self._plane_groups) + self._export_function = pycam.Exporters.SVGExporter.SVGExporterContourModel + + def __len__(self): + """ Return the number of available items in the model. + This is mainly useful for evaluating an empty model as False. + """ + return len(self._line_groups) + + def __iter__(self): + yield from self.get_polygons() + + def copy(self): + result = self.__class__(plane=self._plane.copy()) + for polygon in self.get_polygons(): + result.append(polygon.copy()) + return result + + def _merge_polygon_if_possible(self, other_polygon, allow_reverse=False): + """ Check if the given 'other_polygon' can be connected to another + polygon of the the current model. Both polygons are merged if possible. + This function should be called after any "append" event, if the lines to + be added are given in a random order (e.g. by the "waterline" function). + """ + if other_polygon.is_closed: + return + connectors = [] + connectors.append(other_polygon.get_points()[0]) + connectors.append(other_polygon.get_points()[-1]) + # filter all polygons that can be combined with 'other_polygon' + connectables = [] + for lg in self._line_groups: + if lg is other_polygon: + continue + for connector in connectors: + if lg.is_connectable(connector): + connectables.append(lg) + break + # merge 'other_polygon' with all other connectable polygons + for polygon in connectables: + # check again, if the polygon is still connectable + for connector in connectors: + if polygon.is_connectable(connector): + break + else: + # skip this polygon + continue + if other_polygon.get_points()[-1] == polygon.get_points()[0]: + for line in polygon.get_lines(): + if other_polygon.is_closed: + return + other_polygon.append(line) + self._line_groups.remove(polygon) + elif other_polygon.get_points()[0] == polygon.get_points()[-1]: + lines = polygon.get_lines() + lines.reverse() + for line in lines: + if other_polygon.is_closed: + return + other_polygon.append(line) + self._line_groups.remove(polygon) + elif allow_reverse: + if other_polygon.get_points()[-1] == polygon.get_points()[-1]: + polygon.reverse_direction() + for line in polygon.get_lines(): + if other_polygon.is_closed: + return + other_polygon.append(line) + self._line_groups.remove(polygon) + elif other_polygon.get_points()[0] == polygon.get_points()[0]: + polygon.reverse_direction() + lines = polygon.get_lines() + lines.reverse() + for line in lines: + if other_polygon.is_closed: + return + other_polygon.append(line) + self._line_groups.remove(polygon) + else: + pass + else: + pass + if other_polygon.is_closed: + # we are finished + return + + def append(self, item, unify_overlaps=False, allow_reverse=False): + super().append(item) + if isinstance(item, Line): + item_list = [item] + if allow_reverse: + item_list.append(Line(item.p2, item.p1)) + found = False + # Going back from the end to start. The last line_group always has + # the highest chance of being suitable for the next line. + line_group_indexes = range(len(self._line_groups) - 1, -1, -1) + for line_group_index in line_group_indexes: + line_group = self._line_groups[line_group_index] + for candidate in item_list: + if line_group.is_connectable(candidate): + line_group.append(candidate) + self._merge_polygon_if_possible(line_group, allow_reverse=allow_reverse) + found = True + break + if found: + break + else: + # add a single line as part of a new group + new_line_group = Polygon(plane=self._plane) + new_line_group.append(item) + self._line_groups.append(new_line_group) + elif isinstance(item, Polygon): + if not unify_overlaps or (len(self._line_groups) == 0): + self._line_groups.append(item) + for subitem in next(item): + self._update_limits(subitem) + else: + # go through all polygons and check if they can be combined + is_outer = item.is_outer() + new_queue = [item] + processed_polygons = [] + queue = self.get_polygons() + while len(queue) > 0: + polygon = queue.pop() + if polygon.is_outer() != is_outer: + processed_polygons.append(polygon) + else: + processed = [] + while len(new_queue) > 0: + new = new_queue.pop() + if new.is_polygon_inside(polygon): + # "polygon" is obsoleted by "new" + processed.extend(new_queue) + break + elif polygon.is_polygon_inside(new): + # "new" is obsoleted by "polygon" + continue + elif not new.is_overlap(polygon): + processed.append(new) + continue + else: + union = polygon.union(new) + if union: + for p in union: + if p.is_outer() == is_outer: + new_queue.append(p) + else: + processed_polygons.append(p) + else: + processed.append(new) + break + else: + processed_polygons.append(polygon) + new_queue = processed + while len(self._line_groups) > 0: + self._line_groups.pop() + log.info("Processed polygons: %s", [len(p.get_lines()) + for p in processed_polygons]) + log.info("New queue: %s", [len(p.get_lines()) for p in new_queue]) + for processed_polygon in processed_polygons + new_queue: + self._line_groups.append(processed_polygon) + # TODO: this is quite expensive - can we do it differently? + self.reset_cache() + else: + # ignore any non-supported items (they are probably handled by a + # parent class) + pass + + def get_polygons(self, z=None, ignore_below=True): + if z is None: + return self._line_groups + elif ignore_below: + return [group for group in self._line_groups if group.minz == z] + else: + return [group for group in self._line_groups if group.minz <= z] + + def revise_directions(self, callback=None): + """ Go through all open polygons and try to merge them regardless of + their direction. Afterwards all closed polygons are analyzed regarding + their inside/outside relationships. + Beware: never use this function if the direction of lines may not + change. + """ + number_of_initial_closed_polygons = len([poly for poly in self.get_polygons() + if poly.is_closed]) + open_polygons = [poly for poly in self.get_polygons() if not poly.is_closed] + if callback: + progress_callback = pycam.Utils.ProgressCounter( + 2 * number_of_initial_closed_polygons + len(open_polygons), callback).increment + else: + progress_callback = None + # try to connect all open polygons + for poly in open_polygons: + self._line_groups.remove(poly) + poly_open_before = len(open_polygons) + for poly in open_polygons: + for line in poly.get_lines(): + self.append(line, allow_reverse=True) + if progress_callback and progress_callback(): + return + poly_open_after = len([poly for poly in self.get_polygons() if not poly.is_closed]) + if poly_open_before != poly_open_after: + log.info("Reduced the number of open polygons from %d down to %d", + poly_open_before, poly_open_after) + else: + log.debug("No combineable open polygons found") + # auto-detect directions of closed polygons: inside and outside + finished = [] + remaining_polys = [poly for poly in self.get_polygons() if poly.is_closed] + if progress_callback: + # shift the counter back by the number of new closed polygons + progress_callback(2 * (number_of_initial_closed_polygons - len(remaining_polys))) + remaining_polys.sort(key=lambda poly: abs(poly.get_area())) + while remaining_polys: + # pick the largest polygon + current = remaining_polys.pop() + # start with the smallest finished polygon + for comp, is_outer in finished: + if comp.is_polygon_inside(current): + finished.insert(0, (current, not is_outer)) + break + else: + # no enclosing polygon was found + finished.insert(0, (current, True)) + if progress_callback and progress_callback(): + return + # Adjust the directions of all polygons according to the result + # of the previous analysis. + change_counter = 0 + for polygon, is_outer in finished: + if polygon.is_outer() != is_outer: + polygon.reverse_direction() + change_counter += 1 + if progress_callback and progress_callback(): + self.reset_cache() + return + log.info("The winding of %d polygon(s) was fixed.", change_counter) + self.reset_cache() + + def reverse_directions(self, callback=None): + if callback: + progress_callback = pycam.Utils.ProgressCounter(len(self.get_polygons()), + callback).increment + else: + progress_callback = None + for polygon in self._line_groups: + polygon.reverse_direction() + if progress_callback and progress_callback(): + self.reset_cache() + return + self.reset_cache() + + def get_reversed(self): + result = ContourModel(plane=self._plane) + for poly in self.get_polygons(): + result.append(poly.get_reversed()) + return result + + def get_cropped_model_by_bounds(self, bounds): + low, high = bounds.get_absolute_limits() + return self.get_cropped_model(low[0], high[0], low[1], high[1], low[2], high[2]) + + def get_cropped_model(self, minx, maxx, miny, maxy, minz, maxz): + new_line_groups = [] + for group in self._line_groups: + new_groups = group.get_cropped_polygons(minx, maxx, miny, maxy, minz, maxz) + if new_groups is not None: + new_line_groups.extend(new_groups) + if len(new_line_groups) > 0: + result = ContourModel(plane=self._plane) + for group in new_line_groups: + result.append(group) + return result + else: + return None + + def get_offset_model(self, offset, callback=None): + result = ContourModel(plane=self._plane) + for group in self.get_polygons(): + new_groups = group.get_offset_polygons(offset, callback=callback) + result.extend(new_groups) + if callback and callback(): + return None + return result + + def extrude(self, stepping=None, func=None, callback=None): + """ do a spherical extrusion of a 2D model. + This is mainly useful for extruding text in a visually pleasant way ... + """ + outer_polygons = [(poly, []) for poly in self._line_groups if poly.is_outer()] + for poly in self._line_groups: + # ignore open polygons + if not poly.is_closed: + continue + if poly.is_outer(): + continue + for outer_poly, children in outer_polygons: + if outer_poly == poly: + break + if outer_poly.is_polygon_inside(poly): + children.append(poly) + break + model = Model() + for poly, children in outer_polygons: + if callback and callback(): + return None + group = PolygonGroup(poly, children, callback=callback) + new_model = group.extrude(func=func, stepping=stepping) + if new_model: + model += new_model + return model + + def get_flat_projection(self, plane): + result = ContourModel(plane) + for polygon in self.get_polygons(): + new_polygon = polygon.get_plane_projection(plane) + if new_polygon: + result.append(new_polygon) + return result or None + + +class PolygonGroup: + """ A PolygonGroup consists of one outer and maybe multiple inner polygons. + It is mainly used for 3D extrusion of polygons. + """ + + def __init__(self, outer, inner_list, callback=None): + self.outer = outer + self.inner = inner_list + self.callback = callback + self.lines = outer.get_lines() + self.z_level = self.lines[0].p1[2] + for poly in inner_list: + self.lines.extend(poly.get_lines()) + + def extrude(self, func=None, stepping=None): + if stepping is None: + stepping = min(self.outer.maxx - self.outer.minx, + self.outer.maxy - self.outer.miny) / 80 + grid = [] + for line in self._get_grid_matrix(stepping=stepping): + line_points = [] + for x, y in line: + z = self.calculate_point_height(x, y, func) + line_points.append((x, y, z)) + if self.callback and self.callback(): + return None + grid.append(line_points) + # calculate the triangles within the grid + triangle_optimizer = TriangleOptimizer(callback=self.callback) + for line in range(len(grid) - 1): + for row in range(len(grid[0]) - 1): + coords = [] + coords.append(grid[line][row]) + coords.append(grid[line][row + 1]) + coords.append(grid[line + 1][row + 1]) + coords.append(grid[line + 1][row]) + items = self._fill_grid_positions(coords) + for item in items: + triangle_optimizer.append(item) + # create the backside plane + backside_points = [] + for p in item.get_points(): + backside_points.insert(0, (p[0], p[1], self.z_level)) + triangle_optimizer.append(Triangle(*backside_points)) + if self.callback and self.callback(): + return None + triangle_optimizer.optimize() + model = Model() + for triangle in triangle_optimizer.get_triangles(): + model.append(triangle) + return model + + def _get_closest_line_collision(self, probe_line): + min_dist = None + min_cp = None + for line in self.lines: + cp, dist = probe_line.get_intersection(line) + if cp and ((min_dist is None) or (dist < min_dist)): + min_dist = dist + min_cp = cp + if min_dist > 0: + return min_cp + else: + return None + + def _fill_grid_positions(self, coords): + """ Try to find suitable alternatives, if any of the corners of this + square grid is not valid. + The current strategy: find the points of intersection with the contour + on all incomplete edges of the square. + The _good_ strategy would be: crop the square by using all related + lines of the contour. + """ + def get_line(i1, i2): + a = list(coords[i1 % 4]) + b = list(coords[i2 % 4]) + # the contour points of the model will always be at level zero + a[2] = self.z_level + b[2] = self.z_level + return Line(a, b) + + valid_indices = [index for index, p in enumerate(coords) if p[2] is not None] + none_indices = [index for index, p in enumerate(coords) if p[2] is None] + valid_count = len(valid_indices) + final_points = [] + if valid_count == 0: + final_points.extend([None, None, None, None]) + elif valid_count == 1: + fan_points = [] + for index in range(4): + if index in none_indices: + probe_line = get_line(valid_indices[0], index) + cp = self._get_closest_line_collision(probe_line) + if cp: + fan_points.append(cp) + final_points.append(cp) + else: + final_points.append(coords[index]) + # check if the three fan_points are in line + if len(fan_points) == 3: + fan_points.sort() + if Line(fan_points[0], fan_points[2]).is_point_inside(fan_points[1]): + final_points.remove(fan_points[1]) + elif valid_count == 2: + if sum(valid_indices) % 2 == 0: + # the points are on opposite corners + # The strategy below is not really good, but this special case + # is hardly possible, anyway. + for index in range(4): + if index in valid_indices: + final_points.append(coords[index]) + else: + probe_line = get_line(index - 1, index) + cp = self._get_closest_line_collision(probe_line) + final_points.append(cp) + else: + for index in range(4): + if index in valid_indices: + final_points.append(coords[index]) + else: + if ((index + 1) % 4) in valid_indices: + other_index = index + 1 + else: + other_index = index - 1 + probe_line = get_line(other_index, index) + cp = self._get_closest_line_collision(probe_line) + final_points.append(cp) + elif valid_count == 3: + for index in range(4): + if index in valid_indices: + final_points.append(coords[index]) + else: + # add two points + for other_index in (index - 1, index + 1): + probe_line = get_line(other_index, index) + cp = self._get_closest_line_collision(probe_line) + final_points.append(cp) + else: + final_points.extend(coords) + valid_points = [] + for p in final_points: + if (p is not None) and (p not in valid_points): + valid_points.append(p) + if len(valid_points) < 3: + result = [] + elif len(valid_points) == 3: + result = [Triangle(*valid_points)] + else: + # create a simple star-like fan of triangles - not perfect, but ok + result = [] + start = valid_points.pop(0) + while len(valid_points) > 1: + p2, p3 = valid_points[0:2] + result.append(Triangle(start, p2, p3)) + valid_points.pop(0) + return result + + def _get_grid_matrix(self, stepping): + x_dim = self.outer.maxx - self.outer.minx + y_dim = self.outer.maxy - self.outer.miny + x_points_num = int(max(4, math.ceil(x_dim / stepping))) + y_points_num = int(max(4, math.ceil(y_dim / stepping))) + x_step = x_dim / (x_points_num - 1) + y_step = y_dim / (y_points_num - 1) + grid = [] + for x_index in range(x_points_num): + line = [] + for y_index in range(y_points_num): + x_value = self.outer.minx + x_index * x_step + y_value = self.outer.miny + y_index * y_step + line.append((x_value, y_value)) + grid.append(line) + return grid + + def calculate_point_height(self, x, y, func): + point = (x, y, self.outer.minz) + if not self.outer.is_point_inside(point): + return None + for poly in self.inner: + if poly.is_point_inside(point): + return None + point = (x, y, self.outer.minz) + line_distances = [] + for line in self.lines: + cross_product = pcross(line.dir, psub(point, line.p1)) + if cross_product[2] > 0: + close_points = [] + close_point = line.closest_point(point) + if not line.is_point_inside(close_point): + close_points.append(line.p1) + close_points.append(line.p2) + else: + close_points.append(close_point) + for p in close_points: + direction = psub(point, p) + dist = pnorm(direction) + line_distances.append(dist) + elif cross_product[2] == 0: + # the point is on the line + line_distances.append(0.0) + # no other line can get closer than this + break + else: + # the point is in the left of this line + pass + line_distances.sort() + return self.z_level + func(line_distances[0]) + + +class TriangleOptimizer: + + def __init__(self, callback=None): + self.groups = {} + self.callback = callback + + def append(self, triangle): + # use a simple tuple instead of an object as the dict's key + normal = triangle.normal + if normal not in self.groups: + self.groups[normal] = [] + self.groups[normal].append(triangle) + + def optimize(self): + for group in self.groups.values(): + finished_triangles = [] + rect_pool = [] + triangles = list(group) + while triangles: + if self.callback and self.callback(): + return + current = triangles.pop(0) + for t in triangles: + combined = Rectangle.combine_triangles(current, t) + if combined: + triangles.remove(t) + rect_pool.append(combined) + break + else: + finished_triangles.append(current) + finished_rectangles = [] + while rect_pool: + if self.callback and self.callback(): + return + current = rect_pool.pop(0) + for r in rect_pool: + combined = Rectangle.combine_rectangles(current, r) + if combined: + rect_pool.remove(r) + rect_pool.append(combined) + break + else: + finished_rectangles.append(current) + while group: + group.pop() + for rect in finished_rectangles: + group.extend(rect.get_triangles()) + group.extend(finished_triangles) + + def get_triangles(self): + result = [] + for group in self.groups.values(): + result.extend(group) + return result + + +class Rectangle(IDGenerator, TransformableContainer): + + def __init__(self, p1, p2, p3, p4, normal=None): + super().__init__() + if normal: + orders = ((p1, p2, p3, p4), (p1, p2, p4, p3), (p1, p3, p2, p4), (p1, p3, p4, p2), + (p1, p4, p2, p3), (p1, p4, p3, p2)) + for order in orders: + if abs(pdist(order[0], order[2]) - pdist(order[1], order[3])) < epsilon: + t1 = Triangle(order[0], order[1], order[2]) + t2 = Triangle(order[2], order[3], order[0]) + if t1.normal == t2.normal == normal: + self.p1, self.p2, self.p3, self.p4 = order + break + else: + raise ValueError("Invalid vertices for given normal: %s, %s, %s, %s, %s" + % (p1, p2, p3, p4, normal)) + else: + self.p1 = p1 + self.p2 = p2 + self.p3 = p3 + self.p4 = p4 + self.reset_cache() + + def reset_cache(self): + self.maxx = max([p[0] for p in self.get_points()]) + self.minx = max([p[0] for p in self.get_points()]) + self.maxy = max([p[1] for p in self.get_points()]) + self.miny = max([p[1] for p in self.get_points()]) + self.maxz = max([p[2] for p in self.get_points()]) + self.minz = max([p[2] for p in self.get_points()]) + self.normal = pnormalized(Triangle(self.p1, self.p2, self.p3).normal) + + def get_points(self): + return (self.p1, self.p2, self.p3, self.p4) + + def __next__(self): + yield "p1" + yield "p2" + yield "p3" + yield "p4" + + def __repr__(self): + return "Rectangle%d<%s,%s,%s,%s>" % (self.id, self.p1, self.p2, self.p3, self.p4) + + def get_triangles(self): + return (Triangle(self.p1, self.p2, self.p3), + Triangle(self.p3, self.p4, self.p1)) + + @staticmethod + def combine_triangles(t1, t2): + unique_vertices = [] + shared_vertices = [] + for point in t1.get_points(): + for point2 in t2.get_points(): + if point == point2: + shared_vertices.append(point) + break + else: + unique_vertices.append(point) + if len(shared_vertices) != 2: + return None + for point in t2.get_points(): + for point2 in shared_vertices: + if point == point2: + break + else: + unique_vertices.append(point) + if len(unique_vertices) != 2: + log.error("Invalid number of vertices: %s", unique_vertices) + return None + if abs(pdist(unique_vertices[0], unique_vertices[1]) + - pdist(shared_vertices[0], shared_vertices[1])) < epsilon: + try: + return Rectangle(unique_vertices[0], unique_vertices[1], shared_vertices[0], + shared_vertices[1], normal=t1.normal) + except ValueError: + log.warn("Triangles not combined: %s, %s", unique_vertices, shared_vertices) + return None + else: + return None + + @staticmethod + def combine_rectangles(r1, r2): + shared_vertices = [] + shared_vertices2 = [] + for point in r1.get_points(): + for point2 in r2.get_points(): + if point == point2: + shared_vertices.append(point) + shared_vertices2.append(point2) + break + if len(shared_vertices) != 2: + return None + # check if the two points form an edge (and not a diagonal line) + corners = [] + for rectangle, vertices in ((r1, shared_vertices), (r2, shared_vertices2)): + # turn the tuple into a list (".index" was introduced in Python 2.6) + i1 = list(rectangle.get_points()).index(vertices[0]) + i2 = list(rectangle.get_points()).index(vertices[1]) + if i1 + i2 % 2 == 0: + # shared vertices are at opposite corners + return None + # collect all non-shared vertices + corners.extend([p for p in rectangle.get_points() if p not in vertices]) + if len(corners) != 4: + log.error("Unexpected corner count: %s / %s / %s", r1, r2, corners) + return None + try: + return Rectangle(corners[0], corners[1], corners[2], corners[3], normal=r1.normal) + except ValueError: + log.error("No valid rectangle found: %s", corners) + return None diff --git a/pycam/pycam/Geometry/Path.py b/pycam/pycam/Geometry/Path.py new file mode 100644 index 00000000..21b5b67a --- /dev/null +++ b/pycam/pycam/Geometry/Path.py @@ -0,0 +1,66 @@ +""" +Copyright 2010 Lars Kruse +Copyright 2008 Lode Leroy + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + +from collections import namedtuple + +from pycam.Geometry import IDGenerator + +""" +The points of a path are only used for describing coordinates. Thus we don't really need complete +"Point" instances that consume a lot of memory. +Since python 2.6 the "namedtuple" factory is available. +This reduces the memory consumption of a toolpath down to 1/3. +""" +tuple_point = namedtuple("TuplePoint", "x y z") + + +def get_point_object(point): + return tuple_point(point[0], point[1], point[2]) + + +class Path(IDGenerator): + + def __init__(self): + super().__init__() + self.top_join = None + self.bot_join = None + self.winding = 0 + self.points = [] + + def __repr__(self): + text = "" + text += "path %d: " % self.id + first = True + for point in self.points: + if first: + first = False + else: + text += "-" + text += "%d(%g,%g,%g)" % (id(point), point[0], point[1], point[2]) + return text + + def insert(self, index, point): + self.points.insert(index, get_point_object(point)) + + def append(self, point): + self.points.append(get_point_object(point)) + + def reverse(self): + self.points.reverse() diff --git a/pycam/pycam/Geometry/Plane.py b/pycam/pycam/Geometry/Plane.py new file mode 100644 index 00000000..87ff5f3a --- /dev/null +++ b/pycam/pycam/Geometry/Plane.py @@ -0,0 +1,130 @@ +""" +Copyright 2008-2009 Lode Leroy + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + +from pycam.Geometry import epsilon, INFINITE, TransformableContainer, IDGenerator +from pycam.Geometry.PointUtils import padd, pcross, pdot, pmul, pnorm, pnormalized + +# "Line" is imported later to avoid circular imports +# from pycam.Geometry.Line import Line + + +class Plane(IDGenerator, TransformableContainer): + + __slots__ = ["id", "p", "n"] + + def __init__(self, point, normal=None): + super().__init__() + if normal is None: + normal = (0, 0, 1, 'v') + self.p = point + self.n = normal + if not len(self.n) > 3: + self.n = (self.n[0], self.n[1], self.n[2], 'v') + + def __repr__(self): + return "Plane<%s,%s>" % (self.p, self.n) + + def __lt__(self, other): + return (self.p, self.n) < (other.p, other.n) + + def copy(self): + return self.__class__(self.p, self.n) + + def __next__(self): + yield "p" + yield "n" + + def get_children_count(self): + # a plane always consists of two points + return 2 + + def reset_cache(self): + # we need to prevent the "normal" from growing + norm = pnormalized(self.n) + if norm: + self.n = norm + + def intersect_point(self, direction, point): + if (direction is not None) and (pnorm(direction) != 1): + # calculations will go wrong, if the direction is not a unit vector + direction = pnormalized(direction) + if direction is None: + return (None, INFINITE) + denom = pdot(self.n, direction) + if denom == 0: + return (None, INFINITE) + l_len = -(pdot(self.n, point) - pdot(self.n, self.p)) / denom + cp = padd(point, pmul(direction, l_len)) + return (cp, l_len) + + def intersect_triangle(self, triangle, counter_clockwise=False): + """ Returns the line of intersection of a triangle with a plane. + "None" is returned, if: + - the triangle does not intersect with the plane + - all vertices of the triangle are on the plane + The line always runs clockwise through the triangle. + """ + # don't import Line in the header -> circular import + from pycam.Geometry.Line import Line + collisions = [] + for edge, point in ((triangle.e1, triangle.p1), + (triangle.e2, triangle.p2), + (triangle.e3, triangle.p3)): + cp, l_len = self.intersect_point(edge.dir, point) + # filter all real collisions + # We don't want to count vertices double -> thus we only accept + # a distance that is lower than the length of the edge. + if (cp is not None) and (-epsilon < l_len < edge.len - epsilon): + collisions.append(cp) + elif (cp is None) and (pdot(self.n, edge.dir) == 0): + cp, dist = self.intersect_point(self.n, point) + if abs(dist) < epsilon: + # the edge is on the plane + collisions.append(point) + if len(collisions) == 3: + # All points of the triangle are on the plane. + # We don't return a waterline, as there should be another non-flat + # triangle with the same waterline. + return None + if len(collisions) == 2: + collision_line = Line(collisions[0], collisions[1]) + # no further calculation, if the line is zero-sized + if collision_line.len == 0: + return collision_line + cross = pcross(self.n, collision_line.dir) + if (pdot(cross, triangle.normal) < 0) == bool(not counter_clockwise): + # anti-clockwise direction -> revert the direction of the line + collision_line = Line(collision_line.p2, collision_line.p1) + return collision_line + elif len(collisions) == 1: + # only one point is on the plane + # This waterline (with zero length) should be of no use. + return None + else: + return None + + def get_point_projection(self, point): + return self.intersect_point(self.n, point)[0] + + def get_line_projection(self, line): + # don't import Line in the header -> circular import + from pycam.Geometry.Line import Line + proj_p1 = self.get_point_projection(line.p1) + proj_p2 = self.get_point_projection(line.p2) + return Line(proj_p1, proj_p2) diff --git a/pycam/pycam/Geometry/PointKdtree.py b/pycam/pycam/Geometry/PointKdtree.py new file mode 100644 index 00000000..922b3aab --- /dev/null +++ b/pycam/pycam/Geometry/PointKdtree.py @@ -0,0 +1,59 @@ +""" +Copyright 2009 Lode Leroy + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + +from pycam.Geometry import epsilon +from pycam.Geometry.kdtree import Node, Kdtree + + +class PointKdtree(Kdtree): + + __slots__ = ["_n", "tolerance"] + + def __init__(self, points=None, cutoff=5, cutoff_distance=0.5, tolerance=epsilon): + if points is None: + points = [] + self._n = None + self.tolerance = tolerance + nodes = [] + for p in points: + n = Node(p, p) + nodes.append(n) + Kdtree.__init__(self, nodes, cutoff, cutoff_distance) + + def dist(self, n1, n2): + dx = n1.bound[0]-n2.bound[0] + dy = n1.bound[1]-n2.bound[1] + dz = n1.bound[2]-n2.bound[2] + return dx*dx+dy*dy+dz*dz + + def point(self, x, y, z): + if self._n: + n = self._n + n.bound = (x, y, z) + else: + n = Node(None, (x, y, z)) + (nn, dist) = self.nearest_neighbor(n, self.dist) + if nn and (dist < self.tolerance): + self._n = n + return nn.obj + else: + n.obj = (x, y, z) + self._n = None + self.insert(n) + return n.obj diff --git a/pycam/pycam/Geometry/PointUtils.py b/pycam/pycam/Geometry/PointUtils.py new file mode 100644 index 00000000..234afd23 --- /dev/null +++ b/pycam/pycam/Geometry/PointUtils.py @@ -0,0 +1,129 @@ +""" +Copyright 2010 Lars Kruse +Copyright 2008-2009 Lode Leroy + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + +from pycam.Geometry import epsilon, number, sqrt + + +def pnorm(a): + return sqrt(pdot(a, a)) + + +def pnormsq(a): + return pdot(a, a) + + +def pdist(a, b, axes=None): + return sqrt(pdist_sq(a, b, axes=axes)) + + +def pdist_sq(a, b, axes=None): + if axes is None: + axes = (0, 1, 2) + return sum([(a[index] - b[index]) ** 2 for index in axes]) + + +def pnear(a, b, axes=None): + return pcmp(a, b, axes=axes) == 0 + + +def pcmp(a, b, axes=None): + """ Two points are equal if all dimensions are identical. + Otherwise the result is based on the individual x/y/z comparisons. + """ + if axes is None: + axes = (0, 1, 2) + for axis in axes: + if abs(a[axis] - b[axis]) > epsilon: + return -1 if a[axis] < b[axis] else (0 if a[axis] == b[axis] else 1) + # both points are at the same position + return 0 + + +def ptransform_by_matrix(a, matrix): + if len(a) > 3: + return (a[0] * matrix[0][0] + a[1] * matrix[0][1] + a[2] * matrix[0][2], + a[0] * matrix[1][0] + a[1] * matrix[1][1] + a[2] * matrix[1][2], + a[0] * matrix[2][0] + a[1] * matrix[2][1] + a[2] * matrix[2][2]) + a[3:] + else: + # accept 3x4 matrices as well as 3x3 matrices + offsets = [] + for column in matrix: + if len(column) < 4: + offsets.append(0) + else: + offsets.append(column[3]) + return (a[0] * matrix[0][0] + a[1] * matrix[0][1] + a[2] * matrix[0][2] + offsets[0], + a[0] * matrix[1][0] + a[1] * matrix[1][1] + a[2] * matrix[1][2] + offsets[1], + a[0] * matrix[2][0] + a[1] * matrix[2][1] + a[2] * matrix[2][2] + offsets[2]) + + +def pmul(a, c): + c = number(c) + return (a[0] * c, a[1] * c, a[2] * c) + + +def pdiv(a, c): + c = number(c) + return (a[0] / c, a[1] / c, a[2] / c) + + +def padd(a, b): + return (a[0] + b[0], a[1] + b[1], a[2] + b[2]) + + +def psub(a, b): + return (a[0] - b[0], a[1] - b[1], a[2] - b[2]) + + +def pdot(a, b): + return a[0] * b[0] + a[1] * b[1] + a[2] * b[2] + + +def pcross(a, b): + return (a[1] * b[2] - b[1] * a[2], b[0] * a[2] - a[0] * b[2], a[0] * b[1] - b[0] * a[1]) + + +def pnormalized(a): + n = pnorm(a) + if n == 0: + return None + else: + return (a[0] / n, a[1] / n, a[2] / n) + a[3:] + + +def pis_inside(a, minx=None, maxx=None, miny=None, maxy=None, minz=None, maxz=None): + return ((minx is None) or (minx - epsilon <= a[0])) \ + and ((maxx is None) or (a[0] <= maxx + epsilon)) \ + and ((miny is None) or (miny - epsilon <= a[1])) \ + and ((maxy is None) or (a[1] <= maxy + epsilon)) \ + and ((minz is None) or (minz - epsilon <= a[2])) \ + and ((maxz is None) or (a[2] <= maxz + epsilon)) + + +def points_in_line(a, b, c): + """ test if three points are in line """ + v1 = psub(a, b) + v2 = psub(a, c) + # The evaluation below is equivalent to the following test: + # pcross(v1, v2) == (0, 0, 0) + # (but with efficient "early return" in case of failure) + return ((v1[1] * v2[2] == v1[2] * v2[1]) + and (v1[0] * v2[2] == v1[2] * v2[0]) + and (v1[0] * v2[1] == v1[1] * v2[0])) diff --git a/pycam/pycam/Geometry/Polygon.py b/pycam/pycam/Geometry/Polygon.py new file mode 100644 index 00000000..c2457970 --- /dev/null +++ b/pycam/pycam/Geometry/Polygon.py @@ -0,0 +1,1142 @@ +""" +Copyright 2010 Lars Kruse + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + +from pycam.Geometry import epsilon, number, TransformableContainer, IDGenerator +from pycam.Geometry.Line import Line +from pycam.Geometry.Plane import Plane +from pycam.Geometry.PointUtils import padd, pcross, pdist, pdiv, pdot, pis_inside, pmul, pnorm, \ + pnormalized, psub +from pycam.Geometry.utils import get_bisector +from pycam.Utils import log +log = log.get_logger() +# import later to avoid circular imports +# from pycam.Geometry.Model import ContourModel + +try: + import OpenGL.GL as GL + GL_enabled = True +except ImportError: + GL_enabled = False + + +LINE_WIDTH_INNER = 0.7 +LINE_WIDTH_OUTER = 1.3 + + +class PolygonInTree(IDGenerator): + """ This class is a wrapper around Polygon objects that is used for sorting. + """ + + def __init__(self, polygon): + super().__init__() + self.start = polygon.get_points()[0] + self.end = polygon.get_points()[-1] + self.polygon = polygon + self.area = polygon.get_area() + self.children = [] + + def __eq__(self, other): + """ equality by ID """ + return self.id == other.id + + def __lt__(self, other): + """ comparison by size """ + return self.area < other.area + + def insert_if_child(self, other): + if self.polygon.is_polygon_inside(other.polygon): + self.children.append(other) + + def get_cost(self, other): + return pdist(other.start, self.end) + + +class PolygonPositionSorter: + """ sort PolygonInTree objects for a minimized way length. + The sorter takes care that no polygons are processed before their children + (inside polygons). + """ + + def __init__(self, polygons): + self.polygons = [] + for poly in polygons: + self._append(poly) + self.optimize_order() + self.branches = [] + for poly in self.polygons: + self.branches.append([poly]) + + def _append(self, poly): + if self.polygons: + min_cost = poly.get_cost(self.polygons[0]) + min_index = -1 + for index in range(len(self.polygons)): + prev_item = self.polygons[index] + cost = prev_item.get_cost(poly) + try: + next_item = self.polygons[index + 1] + except IndexError: + pass + else: + cost += poly.get_cost(next_item) + cost -= prev_item.get_cost(next_item) + if cost < min_cost: + min_cost = cost + min_index = index + self.polygons.insert(min_index + 1, poly) + else: + self.polygons.append(poly) + + def append(self, poly): + min_cost = None + min_branch = None + for branch_index in range(len(self.branches) - 1, -1, -1): + this_branch = self.branches[branch_index] + cost = this_branch[-1].get_cost(poly) + try: + next_branch = self.branches[branch_index + 1] + except IndexError: + pass + else: + cost += poly.get_cost(next_branch[0]) + cost -= this_branch[-1].get_cost(next_branch[0]) + if (min_cost is None) or (cost < min_cost): + min_cost = cost + min_branch = this_branch + for child in poly.children: + if child in this_branch: + break + else: + continue + break + if min_branch: + min_branch.append(poly) + + def optimize_order(self): + """ re-insert all items until their order stabilizes """ + finished = False + counter_left = len(self.polygons) + while not finished and (counter_left > 0): + finished = True + for index in range(len(self.polygons)): + item = self.polygons.pop(index) + self._append(item) + if self.polygons[index] != item: + finished = False + counter_left -= 1 + + def get_polygons(self): + result = [] + for branch in self.branches: + result.extend(branch) + return result + + +class PolygonSorter: + """ sort Plygon instances according to the following rules: + * inner polygons first (with no inside polygons) + * inner polygons with inside polygons that are already processed + * outer polygons (with no polygons inside that are not yet processed) + * remaining outer polygons + The order of polygons is slightly optimized (minimizing the way length). + """ + + def __init__(self, polygons, callback=None): + self.polygons = [] + self.sorter = None + self.callback = callback + for poly in polygons: + self._append(poly) + self.optimize_order() + + def _append(self, polygon): + new_item = PolygonInTree(polygon) + for item in self.polygons: + item.insert_if_child(new_item) + new_item.insert_if_child(item) + self.polygons.append(new_item) + + def optimize_order(self): + self.polygons.sort() + remaining_polygons = list(self.polygons) + done_polygons = [] + while remaining_polygons: + if self.callback: + self.callback() + usable_polys = [] + for poly in remaining_polygons: + for child in poly.children: + if child not in done_polygons: + break + else: + usable_polys.append(poly) + for poly in usable_polys: + remaining_polygons.remove(poly) + if self.sorter is None: + self.sorter = PolygonPositionSorter(usable_polys) + else: + for poly in usable_polys: + self.sorter.append(poly) + done_polygons.extend(usable_polys) + + def get_polygons(self): + if not self.sorter: + return [] + else: + return [poly.polygon for poly in self.sorter.get_polygons()] + + +class Polygon(TransformableContainer): + + def __init__(self, plane=None): + super().__init__() + if plane is None: + # the default plane points upwards along the z axis + plane = Plane((0, 0, 0), (0, 0, 1, 'v')) + self.plane = plane + self._points = [] + self.is_closed = False + self.maxx = None + self.minx = None + self.maxy = None + self.miny = None + self.maxz = None + self.minz = None + self._lines_cache = None + self._area_cache = None + self._cached_offset_polygons = {} + + def copy(self): + result = self.__class__(plane=self.plane.copy()) + for line in self.get_lines(): + result.append(line.copy()) + return result + + def append(self, line): + if not self.is_connectable(line): + raise ValueError("This line does not fit to the polygon") + elif line.len < epsilon: + raise ValueError("A line with zero length may not be part of a polygon") + else: + if not self._points: + self._points.append(line.p1) + self._update_limits(line.p1) + self._points.append(line.p2) + self._update_limits(line.p2) + elif self._points[-1] == line.p1: + # the new Line can be added to the end of the polygon + if line.dir == pnormalized(psub(self._points[-1], self._points[-2])): + # Remove the last point, if the previous point combination + # is in line with the new Line. This avoids unnecessary + # points on straight lines. + self._points.pop(-1) + if line.p2 != self._points[0]: + self._points.append(line.p2) + self._update_limits(line.p2) + else: + self.is_closed = True + # take care that the line_cache is flushed + self.reset_cache() + else: + # the new Line can be added to the beginning of the polygon + if (len(self._points) > 1) and \ + (line.dir == pnormalized(psub(self._points[1], self._points[0]))): + # Avoid points on straight lines - see above. + self._points.pop(0) + if line.p1 != self._points[-1]: + self._points.insert(0, line.p1) + self._update_limits(line.p1) + else: + self.is_closed = True + # take care that the line_cache is flushed + self.reset_cache() + + def __len__(self): + if self.is_closed: + return len(self._points) + 1 + else: + return len(self._points) + + def __bool__(self): + return len(self._points) > 0 + + def __iter__(self): + yield from self._points + if self.is_closed: + yield self._points[0] + + def __str__(self): + if self.is_closed: + status = "closed" + else: + status = "open" + return "Polygon (%s) %s" % (status, [point for point in self._points]) + + def reverse_direction(self): + self._points.reverse() + self.reset_cache() + + def get_reversed(self): + result = self.copy() + result.reverse_direction() + return result + + def is_connectable(self, line_or_point): + if self.is_closed: + return False + if not self._points: + # empty polygons can be connected with any line or point + return True + if isinstance(line_or_point, Line): + line = line_or_point + # Test if the line can be connected to the start or the end of the polygon. + # The direction of the line is respected. + if line.p1 == self._points[-1]: + return True + elif line.p2 == self._points[0]: + return True + else: + return False + else: + point = line_or_point + # Test if the point equals the first or the last point of the polygon. + return (point == self._points[-1]) or (point == self._points[0]) + + def __next__(self): + yield "_points" + yield self.plane + + def get_children_count(self): + return len(self._points) + self.plane.get_children_count() + + def get_area(self): + """ calculate the area covered by a line group + Currently this works only for line groups in an xy-plane. + Returns zero for empty line groups or for open line groups. + Returns negative values for inner hole. + """ + if not self._points: + return 0 + if not self.is_closed: + return 0 + if self._area_cache is None: + # calculate the area for the first time + value = [0, 0, 0] + # taken from: http://www.wikihow.com/Calculate-the-Area-of-a-Polygon + # and: http://softsurfer.com/Archive/algorithm_0101/algorithm_0101.htm#3D%20Polygons + for index in range(len(self._points)): + p1 = self._points[index] + p2 = self._points[(index + 1) % len(self._points)] + value[0] += p1[1] * p2[2] - p1[2] * p2[1] + value[1] += p1[2] * p2[0] - p1[0] * p2[2] + value[2] += p1[0] * p2[1] - p1[1] * p2[0] + result = (self.plane.n[0] * value[0] + + self.plane.n[1] * value[1] + + self.plane.n[2] * value[2]) + self._area_cache = result / 2 + return self._area_cache + + def get_barycenter(self): + area = self.get_area() + if not area: + return None + # see: http://stackoverflow.com/questions/2355931/foo/2360507 + # first: calculate cx and y + cxy, cxz, cyx, cyz, czx, czy = (0, 0, 0, 0, 0, 0) + for index in range(len(self._points)): + p1 = self._points[index] + p2 = self._points[(index + 1) % len(self._points)] + cxy += (p1[0] + p2[0]) * (p1[0] * p2[1] - p1[1] * p2[0]) + cxz += (p1[0] + p2[0]) * (p1[0] * p2[2] - p1[2] * p2[0]) + cyx += (p1[1] + p2[1]) * (p1[0] * p2[1] - p1[1] * p2[0]) + cyz += (p1[1] + p2[1]) * (p1[1] * p2[2] - p1[2] * p2[1]) + czx += (p1[2] + p2[2]) * (p1[2] * p2[0] - p1[0] * p2[2]) + czy += (p1[2] + p2[2]) * (p1[1] * p2[2] - p1[2] * p2[1]) + if abs(self.maxz - self.minz) < epsilon: + return (cxy / (6 * area), cyx / (6 * area), self.minz) + elif abs(self.maxy - self.miny) < epsilon: + return (cxz / (6 * area), self.miny, czx / (6 * area)) + elif abs(self.maxx - self.minx) < epsilon: + return (self.minx, cyz / (6 * area), czy / (6 * area)) + else: + # calculate area of xy projection + poly_xy = self.get_plane_projection(Plane((0, 0, 0), (0, 0, 1))) + poly_xz = self.get_plane_projection(Plane((0, 0, 0), (0, 1, 0))) + poly_yz = self.get_plane_projection(Plane((0, 0, 0), (1, 0, 0))) + if (poly_xy is None) or (poly_xz is None) or (poly_yz is None): + log.warn("Invalid polygon projection for barycenter: %s", str(self)) + return None + area_xy = poly_xy.get_area() + area_xz = poly_xz.get_area() + area_yz = poly_yz.get_area() + if 0 in (area_xy, area_xz, area_yz): + log.info("Failed assumption: zero-sized projected area - %s / %s / %s", + area_xy, area_xz, area_yz) + return None + if abs(cxy / area_xy - cxz / area_xz) > epsilon: + log.info("Failed assumption: barycenter xy/xz - %s / %s", + cxy / area_xy, cxz / area_xz) + if abs(cyx / area_xy - cyz / area_yz) > epsilon: + log.info("Failed assumption: barycenter yx/yz - %s / %s", + cyx / area_xy, cyz / area_yz) + if abs(czx / area_xz - czy / area_yz) > epsilon: + log.info("Failed assumption: barycenter zx/zy - %s / %s", + czx / area_xz, cyz / area_yz) + return (cxy / (6 * area_xy), cyx / (6 * area_xy), czx / (6 * area_xz)) + + def get_length(self): + """ add the length of all lines within the polygon + """ + return sum(self.get_lengths()) + + def get_middle_of_line(self, index): + if (index >= len(self._points)) \ + or (not self.is_closed and index == len(self._points) - 1): + return None + else: + return pdiv(padd(self._points[index], self._points[(index + 1) % len(self._points)]), + 2) + + def get_lengths(self): + result = [] + for index in range(len(self._points) - 1): + result.append(pdist(self._points[index + 1], self._points[index])) + if self.is_closed: + result.append(pdist(self._points[0], self._points[-1])) + return result + + def get_max_inside_distance(self): + """ calculate the maximum distance between two points of the polygon + """ + if len(self._points) < 2: + return None + distance = pdist(self._points[1], self._points[0]) + for p1 in self._points: + for p2 in self._points: + if p1 is p2: + continue + distance = max(distance, pdist(p2, p1)) + return distance + + def is_outer(self): + return self.get_area() > 0 + + def is_polygon_inside(self, polygon): + if not self.is_closed: + return False + if (self.minx > polygon.maxx) or (self.maxx < polygon.minx) or \ + (self.miny > polygon.maxy) or (self.maxy < polygon.miny) or \ + (self.minz > polygon.maxz) or (self.maxz < polygon.minz): + return False + for point in polygon.get_points(): + if not self.is_point_inside(point): + return False + return True + + def is_point_on_outline(self, p): + for line in self.get_lines(): + if line.is_point_inside(p): + return True + return False + + def is_point_inside(self, p): + """ Test if a given point is inside of the polygon. + The result is True if the point is on a line (or very close to it). + """ + if not self.is_closed: + return False + # First: check if the point is within the boundary of the polygon. + if not pis_inside(p, self.minx, self.maxx, self.miny, self.maxy, self.minz, self.maxz): + # the point is outside the rectangle boundary + return False + # see http://www.alienryderflex.com/polygon/ + # Count the number of intersections of a ray along the x axis through + # all polygon lines. + # Odd number -> point is inside + intersection_count_left = 0 + intersection_count_right = 0 + for index in range(len(self._points)): + p1 = self._points[index] + p2 = self._points[(index + 1) % len(self._points)] + # Only count intersections with lines that are partly below + # the y level of the point. This solves the problem of intersections + # through shared vertices or lines that go along the y level of the + # point. + if ((p1[1] < p[1]) and (p[1] <= p2[1])) \ + or ((p2[1] < p[1]) and (p[1] <= p1[1])): + part_y = (p[1] - p1[1]) / (p2[1] - p1[1]) + intersection_x = p1[0] + part_y * (p2[0] - p1[0]) + if intersection_x < p[0] + epsilon: + # count intersections to the left + intersection_count_left += 1 + if intersection_x > p[0] - epsilon: + # count intersections to the right + intersection_count_right += 1 + # odd intersection count -> inside + left_odd = intersection_count_left % 2 == 1 + right_odd = intersection_count_right % 2 == 1 + if left_odd and right_odd: + # clear decision: we are inside + return True + elif not left_odd and not right_odd: + # clear decision: we are outside + return False + else: + # it seems like we are on the line -> inside + log.debug("polygon.is_point_inside: unclear decision") + return True + + def get_points(self): + return self._points[:] + + def get_lines(self): + """ Caching is necessary to avoid constant recalculation due to + the "to_opengl" method. + """ + if self._lines_cache is None: + # recalculate the line cache + lines = [] + for index in range(len(self._points) - 1): + lines.append(Line(self._points[index], self._points[index + 1])) + # Connect the last point with the first only if the polygon is + # closed. + if self.is_closed: + lines.append(Line(self._points[-1], self._points[0])) + self._lines_cache = lines + return self._lines_cache[:] + + def to_opengl(self, **kwords): + if not GL_enabled: + return + GL.glDisable(GL.GL_LIGHTING) + if self.is_closed: + is_outer = self.is_outer() + if not is_outer: + color = GL.glGetFloatv(GL.GL_CURRENT_COLOR) + GL.glColor(color[0], color[1], color[2], color[3] / 2) + GL.glLineWidth(LINE_WIDTH_INNER) + else: + GL.glLineWidth(LINE_WIDTH_OUTER) + GL.glBegin(GL.GL_LINE_LOOP) + for point in self._points: + GL.glVertex3f(point[0], point[1], point[2]) + GL.glEnd() + if not is_outer: + GL.glColor(*color) + # reset line width + GL.glLineWidth(1.0) + else: + for line in self.get_lines(): + line.to_opengl(**kwords) + + def _update_limits(self, point): + if self.minx is None: + self.minx = point[0] + self.maxx = point[0] + self.miny = point[1] + self.maxy = point[1] + self.minz = point[2] + self.maxz = point[2] + else: + self.minx = min(self.minx, point[0]) + self.maxx = max(self.maxx, point[0]) + self.miny = min(self.miny, point[1]) + self.maxy = max(self.maxy, point[1]) + self.minz = min(self.minz, point[2]) + self.maxz = max(self.maxz, point[2]) + self._lines_cache = None + self._area_cache = None + + def reset_cache(self): + self._cached_offset_polygons = {} + self._lines_cache = None + self._area_cache = None + self.minx, self.miny, self.minz = None, None, None + self.maxx, self.maxy, self.maxz = None, None, None + # update the limit for each line + for point in self._points: + self._update_limits(point) + + def get_bisector(self, index): + p1 = self._points[index - 1] + p2 = self._points[index] + p3 = self._points[(index + 1) % len(self._points)] + return get_bisector(p1, p2, p3, self.plane.n) + + def get_shifted_vertex(self, index, offset): + p1 = self._points[index] + p2 = self._points[(index + 1) % len(self._points)] + cross_offset = pnormalized(pcross(psub(p2, p1), self.plane.n)) + bisector_normalized = self.get_bisector(index) + factor = pdot(cross_offset, bisector_normalized) + if factor != 0: + bisector_sized = pmul(bisector_normalized, offset / factor) + return padd(p1, bisector_sized) + else: + return p2 + + def get_offset_polygons_validated(self, offset): + if self.is_outer(): + inside_shifting = max(0, -offset) + else: + inside_shifting = max(0, offset) + if inside_shifting * 2 >= self.get_max_inside_distance(): + # no polygons will be left + return [] + points = [] + for index in range(len(self._points)): + points.append(self.get_shifted_vertex(index, offset)) + max_dist = 1000 * epsilon + + def test_point_near(p, others): + for o in others: + if pdist(p, o) < max_dist: + return True + return False + + reverse_lines = [] + shifted_lines = [] + for index, p1 in enumerate(points): + next_index = (index + 1) % len(points) + p2 = points[next_index] + diff = psub(p2, p1) + old_dir = pnormalized(psub(self._points[next_index], self._points[index])) + if pnormalized(diff) != old_dir: + # the direction turned around + if pnorm(diff) > max_dist: + # the offset was too big + return None + else: + reverse_lines.append(index) + shifted_lines.append((True, Line(p1, p2))) + else: + shifted_lines.append((False, Line(p1, p2))) + # look for reversed lines + index = 0 + while index < len(shifted_lines): + line_reverse, line = shifted_lines[index] + if line_reverse: + prev_index = (index - 1) % len(shifted_lines) + next_index = (index + 1) % len(shifted_lines) + prev_reverse, prev_line = shifted_lines[prev_index] + while prev_reverse and (prev_index != next_index): + prev_index = (prev_index - 1) % len(shifted_lines) + prev_reverse, prev_line = shifted_lines[prev_index] + if prev_index == next_index: + # no lines are left + print("out 1") + return [] + next_reverse, next_line = shifted_lines[next_index] + while next_reverse and (prev_index != next_index): + next_index = (next_index + 1) % len(shifted_lines) + next_reverse, next_line = shifted_lines[next_index] + if prev_index == next_index: + # no lines are left + print("out 2") + return [] + if pdist(prev_line.p2, next_line.p1) > max_dist: + cp, dist = prev_line.get_intersection(next_line) + else: + cp = prev_line.p2 + if cp: + shifted_lines[prev_index] = (False, Line(prev_line.p1, cp)) + shifted_lines[next_index] = (False, Line(cp, next_line.p2)) + else: + cp, dist = prev_line.get_intersection(next_line, infinite_lines=True) + raise BaseException( + "Expected intersection not found: %s - %s - %s(%d) / %s(%d)" + % (cp, shifted_lines[prev_index+1:next_index], prev_line, prev_index, + next_line, next_index)) + if index > next_index: + # we wrapped around the end of the list + break + else: + index = next_index + 1 + else: + index += 1 + non_reversed = [one_line for rev, one_line in shifted_lines + if not rev and one_line.len > 0] + # split the list of lines into groups (based on intersections) + split_points = [] + index = 0 + while index < len(non_reversed): + other_index = 0 + while other_index < len(non_reversed): + other_line = non_reversed[other_index] + if (other_index == index) \ + or (other_index == ((index - 1) % len(non_reversed))) \ + or (other_index == ((index + 1) % len(non_reversed))): + # skip neighbours + other_index += 1 + continue + line = non_reversed[index] + cp, dist = line.get_intersection(other_line) + if cp: + if not test_point_near(cp, (line.p1, line.p2, other_line.p1, other_line.p2)): + # the collision is not close to an end of the line + return None + elif (cp == line.p1) or (cp == line.p2): + # maybe we have been here before + if cp not in split_points: + split_points.append(cp) + elif (pdist(cp, line.p1) < max_dist) or (pdist(cp, line.p2) < max_dist): + if pdist(cp, line.p1) < pdist(cp, line.p2): + non_reversed[index] = Line(cp, line.p2) + else: + non_reversed[index] = Line(line.p1, cp) + non_reversed.pop(other_index) + non_reversed.insert(other_index, Line(other_line.p1, cp)) + non_reversed.insert(other_index + 1, Line(cp, other_line.p2)) + split_points.append(cp) + if other_index < index: + index += 1 + # skip the second part of this line + other_index += 1 + else: + # the split of 'other_line' will be handled later + pass + other_index += 1 + index += 1 + groups = [[]] + current_group = 0 + split_here = False + for line in non_reversed: + if line.p1 in split_points: + split_here = True + if split_here: + split_here = False + # check if any preceding group fits to the point + for index, group in enumerate(groups): + if not group: + continue + if index == current_group: + continue + if group[0].p1 == group[-1].p2: + # the group is already closed + continue + if line.p1 == group[-1].p2: + current_group = index + groups[current_group].append(line) + break + else: + current_group = len(groups) + groups.append([line]) + else: + groups[current_group].append(line) + if line.p2 in split_points: + split_here = True + + # try to combine open groups + for index1, group1 in enumerate(groups): + if not group1: + continue + for index2, group2 in enumerate(groups): + if not group2: + continue + if index2 <= index1: + continue + if (group1[-1].p2 == group2[0].p1) \ + and (group1[0].p1 == group2[-1].p2): + group1.extend(group2) + groups[index2] = [] + break + result_polygons = [] + print("********** GROUPS **************") + for a in groups: + print(a) + for group in groups: + if len(group) <= 2: + continue + poly = Polygon(self.plane) + for line in group: + try: + poly.append(line) + except ValueError: + print("NON_REVERSED") + for a in non_reversed: + print(a) + print(groups) + print(split_points) + print(poly) + print(line) + raise + if self.is_closed and ((not poly.is_closed) or (self.is_outer() != poly.is_outer())): + continue + elif (not self.is_closed) and (poly.get_area() != 0): + continue + else: + result_polygons.append(poly) + return result_polygons + + def get_offset_polygons_incremental(self, offset, depth=20): + if offset == 0: + return [self] + if offset in self._cached_offset_polygons: + return self._cached_offset_polygons[offset] + + def is_better_offset(previous_offset, alternative_offset): + return (((offset < alternative_offset < 0) or (0 < alternative_offset < offset)) + and (abs(alternative_offset) > abs(previous_offset))) + + # check the cache for a good starting point + best_offset = 0 + best_offset_polygons = [self] + for cached_offset in self._cached_offset_polygons: + if is_better_offset(best_offset, cached_offset): + best_offset = cached_offset + best_offset_polygons = self._cached_offset_polygons[cached_offset] + remaining_offset = offset - best_offset + result_polygons = [] + for poly in best_offset_polygons: + result = poly.get_offset_polygons_validated(remaining_offset) + if result is not None: + result_polygons.extend(result) + else: + lower = number(0) + upper = remaining_offset + loop_limit = 90 + while (loop_limit > 0): + middle = (upper + lower) / 2 + result = poly.get_offset_polygons_validated(middle) + if result is None: + upper = middle + else: + if depth > 0: + # the original polygon was split or modified + print("Next level: %s" % str(middle)) + shifted_sub_polygons = [] + for sub_poly in result: + shifted_sub_polygons.extend(sub_poly.get_offset_polygons( + remaining_offset - middle, depth=depth-1)) + result_polygons.extend(shifted_sub_polygons) + break + else: + print("Maximum recursion level reached") + break + loop_limit -= 1 + else: + # no split event happened -> no valid shifted polygon + pass + self._cached_offset_polygons[offset] = result_polygons + return result_polygons + + def get_offset_polygons(self, offset, callback=None): + def simplify_polygon_intersections(lines): + new_group = lines[:] + # remove all non-adjacent intersecting lines (this splits the group) + if len(new_group) > 0: + group_starts = [] + index1 = 0 + while index1 < len(new_group): + index2 = 0 + while index2 < len(new_group): + index_distance = min(abs(index2 - index1), + abs(len(new_group) - (index2 - index1))) + # skip neighbours + if index_distance > 1: + line1 = new_group[index1] + line2 = new_group[index2] + intersection, factor = line1.get_intersection(line2) + if intersection and (pdist(intersection, line1.p1) > epsilon) \ + and (pdist(intersection, line1.p2) > epsilon): + del new_group[index1] + new_group.insert(index1, Line(line1.p1, intersection)) + new_group.insert(index1 + 1, Line(intersection, line1.p2)) + # Shift all items in "group_starts" by one if + # they reference a line whose index changed. + for i in range(len(group_starts)): + if group_starts[i] > index1: + group_starts[i] += 1 + if index1 + 1 not in group_starts: + group_starts.append(index1 + 1) + # don't update index2 -> maybe there are other hits + elif intersection and (pdist(intersection, line1.p1) < epsilon): + if index1 not in group_starts: + group_starts.append(index1) + index2 += 1 + else: + index2 += 1 + else: + index2 += 1 + index1 += 1 + # The lines intersect each other + # We need to split the group. + if len(group_starts) > 0: + group_starts.sort() + groups = [] + last_start = 0 + for group_start in group_starts: + transfer_group = new_group[last_start:group_start] + # add only non-empty groups + if transfer_group: + groups.append(transfer_group) + last_start = group_start + + # Add the remaining lines to the first group or as a new + # group. + if groups[0][0].p1 == new_group[-1].p2: + groups[0] = new_group[last_start:] + groups[0] + else: + groups.append(new_group[last_start:]) + # try to find open groups that can be combined + combined_groups = [] + for index, current_group in enumerate(groups): + # Check if the group is not closed: try to add it to + # other non-closed groups. + if current_group[0].p1 == current_group[-1].p2: + # a closed group + combined_groups.append(current_group) + else: + # the current group is open + for other_group in groups[index + 1:]: + if other_group[0].p1 != other_group[-1].p2: + # This group is also open - a candidate + # for merging? + if other_group[0].p1 == current_group[-1].p2: + current_group.reverse() + for line in current_group: + other_group.insert(0, line) + break + if other_group[-1].p2 == current_group[0].p1: + other_group.extend(current_group) + break + else: + # not suitable open group found + combined_groups.append(current_group) + return combined_groups + else: + # just return one group without intersections + return [new_group] + else: + return None + + offset = number(offset) + if offset == 0: + return [self] + if self.is_outer(): + inside_shifting = max(0, -offset) + else: + inside_shifting = max(0, offset) + if inside_shifting * 2 >= self.get_max_inside_distance(): + # This offset will not create a valid offset polygon. + # Sadly there is currently no other way to detect a complete flip of + # something like a circle. + log.debug("Skipping offset polygon: polygon is too small") + return [] + points = [] + for index in range(len(self._points)): + points.append(self.get_shifted_vertex(index, offset)) + new_lines = [] + for index in range(len(points) - 1): + p1 = points[index] + p2 = points[(index + 1)] + new_lines.append(Line(p1, p2)) + if self.is_closed and (len(points) > 1): + new_lines.append(Line(points[-1], points[0])) + if callback and callback(): + return None + cleaned_line_groups = simplify_polygon_intersections(new_lines) + if cleaned_line_groups is None: + log.debug("Skipping offset polygon: intersections could not be " + "simplified") + return None + else: + if not cleaned_line_groups: + log.debug("Skipping offset polygon: no polygons left after " + "intersection simplification") + groups = [] + for lines in cleaned_line_groups: + if callback and callback(): + return None + group = Polygon(self.plane) + for line in lines: + group.append(line) + groups.append(group) + if not groups: + log.debug("Skipping offset polygon: toggled polygon removed") + # remove all polygons that are within other polygons + result = [] + for group in groups: + inside = False + for group_test in groups: + if callback and callback(): + return None + if group_test is group: + continue + if group_test.is_polygon_inside(group): + inside = True + if not inside: + result.append(group) + if not result: + log.debug("Skipping offset polygon: polygon is inside of another one") + return result + + def get_cropped_polygons(self, minx, maxx, miny, maxy, minz, maxz): + """ crop a line group according to a 3d bounding box + + The result is a list of Polygons, since the bounding box can possibly + break the original line group into several non-connected pieces. + """ + new_groups = [] + for line in self.get_lines(): + new_line = None + if line.is_completely_inside(minx, maxx, miny, maxy, minz, maxz): + new_line = line + else: + cropped_line = line.get_cropped_line(minx, maxx, miny, maxy, minz, maxz) + if cropped_line is not None: + new_line = cropped_line + # add the new line to one of the line groups + if new_line is not None: + # try to find a suitable line group + for new_group in new_groups: + try: + new_group.append(new_line) + break + except ValueError: + # the line did not fit to this group (segment is broken) + pass + else: + # no suitable group was found - we create a new one + new_group = Polygon(self.plane) + new_group.append(new_line) + new_groups.append(new_group) + if len(new_groups) > 0: + return new_groups + else: + return None + + def get_plane_projection(self, plane): + if plane == self.plane: + return self + elif pdot(plane.n, self.plane.n) == 0: + log.warn("Polygon projection onto plane: orthogonal projection is not possible") + return None + else: + result = Polygon(plane) + for line in self.get_lines(): + p1 = plane.get_point_projection(line.p1) + p2 = plane.get_point_projection(line.p2) + result.append(Line(p1, p2)) + # check if the projection would revert the direction of the polygon + if pdot(plane.n, self.plane.n) < 0: + result.reverse_direction() + return result + + def is_overlap(self, other): + for line1 in self.get_lines(): + for line2 in other.get_lines(): + cp, dist = line1.get_intersection(line2) + if cp is not None: + return True + return False + + def union(self, other): + """ This "union" of two polygons only works for polygons without + shared edges. TODO: fix the issues of shared edges! + """ + # don't import earlier to avoid circular imports + from pycam.Geometry.Model import ContourModel + # check if one of the polygons is completely inside of the other + if self.is_polygon_inside(other): + return [self] + if other.is_polygon_inside(self): + return [other] + # check if there is any overlap at all + if not self.is_overlap(other): + # no changes + return [self, other] + contour = ContourModel(self.plane) + + def get_outside_lines(poly1, poly2): + result = [] + for line in poly1.get_lines(): + collisions = [] + for o_line in poly2.get_lines(): + cp, dist = o_line.get_intersection(line) + if (cp is not None) and (0 < dist < 1): + collisions.append((cp, dist)) + # sort the collisions according to the distance + collisions.append((line.p1, 0)) + collisions.append((line.p2, 1)) + collisions.sort(key=lambda collision: collision[1]) + for index in range(len(collisions) - 1): + p1 = collisions[index][0] + p2 = collisions[index + 1][0] + if pdist(p1, p2) < epsilon: + # ignore zero-length lines + continue + # Use the middle between p1 and p2 to check the + # inner/outer state. + p_middle = pdiv(padd(p1, p2), 2) + p_inside = (poly2.is_point_inside(p_middle) + and not poly2.is_point_on_outline(p_middle)) + if not p_inside: + result.append(Line(p1, p2)) + return result + + outside_lines = [] + outside_lines.extend(get_outside_lines(self, other)) + outside_lines.extend(get_outside_lines(other, self)) + for line in outside_lines: + contour.append(line) + # fix potential overlapping at the beginning and end of each polygon + result = [] + for poly in contour.get_polygons(): + if not poly.is_closed: + lines = poly.get_lines() + line1 = lines[-1] + line2 = lines[0] + if (line1.dir == line2.dir) \ + and (line1.is_point_inside(line2.p1)): + # remove the last point and define the polygon as closed + poly._points.pop(-1) + poly.is_closed = True + result.append(poly) + return result + + def split_line(self, line): + outer = [] + inner = [] + # project the line onto the polygon's plane + proj_line = self.plane.get_line_projection(line) + intersections = [] + for pline in self.get_lines(): + cp, d = proj_line.get_intersection(pline) + if cp: + intersections.append((cp, d)) + # sort the intersections by distance + intersections.sort(key=lambda collision: collision[1]) + intersections.insert(0, (proj_line.p1, 0)) + intersections.append((proj_line.p2, 1)) + + def get_original_point(d): + return padd(line.p1, pmul(line.vector, d)) + + for index in range(len(intersections) - 1): + p1, d1 = intersections[index] + p2, d2 = intersections[index + 1] + if p1 != p2: + middle = pdiv(padd(p1, p2), 2) + new_line = Line(get_original_point(d1), get_original_point(d2)) + if self.is_point_inside(middle): + inner.append(new_line) + else: + outer.append(new_line) + return (inner, outer) diff --git a/pycam/pycam/Geometry/PolygonExtractor.py b/pycam/pycam/Geometry/PolygonExtractor.py new file mode 100644 index 00000000..27523b21 --- /dev/null +++ b/pycam/pycam/Geometry/PolygonExtractor.py @@ -0,0 +1,817 @@ +""" +Copyright 2008-2009 Lode Leroy + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + +from pycam.Geometry import INFINITE +from pycam.Geometry.Path import Path +from pycam.Utils.iterators import Iterator, CyclicIterator + + +DEBUG_POLYGONEXTRACTOR = False +DEBUG_POLYGONEXTRACTOR2 = False +DEBUG_POLYGONEXTRACTOR3 = False + + +class PolygonExtractor: + CONTOUR = 1 + MONOTONE = 2 + + def __init__(self, policy=MONOTONE): + self.policy = policy + self.hor_path_list = None + self.ver_path_list = None + self.merge_path_list = None + + def new_direction(self, direction): + self.current_dir = direction + self.all_path_list = [] + self.curr_path_list = [] + self.prev_line = [] + self.curr_line = [] + + if DEBUG_POLYGONEXTRACTOR3: + from pycam.Exporters.SVGExporter import SVGExporter + self.svg = SVGExporter("test-%d.svg" % direction) + if direction == 0: + self.svg.fill("red") + else: + self.svg.fill("blue") + if (self.policy == PolygonExtractor.CONTOUR) and (direction == 1) \ + and self.hor_path_list: + self.last_x = -INFINITE + self.delta_x = 0 + self.convert_hor_path_list() + if DEBUG_POLYGONEXTRACTOR3: + self.cont = SVGExporter("test-2.svg") + self.cont.fill("green") + + def end_direction(self): + if self.policy == PolygonExtractor.CONTOUR and self.hor_path_list: + self.process_virtual_hor_scanline(INFINITE) + + self.new_scanline() + self.end_scanline() + + if DEBUG_POLYGONEXTRACTOR3: + self.svg.close() + + if self.policy == PolygonExtractor.CONTOUR and self.hor_path_list: + for path in self.all_path_list: + if DEBUG_POLYGONEXTRACTOR2: + print("points=", path.points) + i = 0 + while i < len(path.points)-1: + if path.points[i][0] > path.points[i+1][0]: + if DEBUG_POLYGONEXTRACTOR2: + print("drop point %d:" % path.points[i].id) + path.points = path.points[:i] + path.points[i+1:] + if i > 0: + i -= 1 + else: + i += 1 + + if DEBUG_POLYGONEXTRACTOR: + print("%d paths" % len(self.all_path_list)) + for path in self.all_path_list: + print("%d:" % path.id), + print("%d ->" % path.top_join.id) + for point in path.points: + print("%d(%g,%g)" % (point.id, point[0], point[1]),) + print("->%d" % path.bot_join.id) + + path_list = [] + while len(self.all_path_list) > 0: + p0 = self.all_path_list[0] + for path in self.all_path_list: + if path.id < p0.id: + p0 = path + + if DEBUG_POLYGONEXTRACTOR: + print("linking %d" % p0.id) + self.all_path_list.remove(p0) + + p1 = p0.bot_join + while True: + if DEBUG_POLYGONEXTRACTOR: + print("splice %d into %d" % (p1.id, p0.id)) + self.all_path_list.remove(p1) + p1.reverse() + p0.points += p1.points + if p1.top_join == p0: + break + + p2 = p1.top_join + if DEBUG_POLYGONEXTRACTOR: + print("splicing %d into %d" % (p2.id, p0.id)) + self.all_path_list.remove(p2) + p0.points += p2.points + p1 = p2.bot_join + + path_list.append(p0) + + if DEBUG_POLYGONEXTRACTOR: + print("%d paths" % len(path_list)) + for path in path_list: + print("path %d(w=%d): " % (path.id, path.winding)), + for point in path.points: + print("%d(%g,%g)" % (point.id, point[0], point[1])), + print() + + if self.current_dir == 0: + self.hor_path_list = path_list + elif self.current_dir == 1: + if (self.policy == PolygonExtractor.CONTOUR) and self.hor_path_list and path_list: + self.merge_path_list = path_list + else: + self.ver_path_list = path_list + + if DEBUG_POLYGONEXTRACTOR3: + from pycam.Exporters.SVGExporter import SVGExporter + self.svg = SVGExporter("test-3.svg") + for path in path_list: + prev = None + if len(path.points) <= 1: + continue + for p in path.points: + if p.dir == 0: + self.svg.fill("red") + else: + self.svg.fill("blue") + self.svg.add_dot(p[0], p[1]) + self.svg.add_text(p[0], p[1], str(p.id)) + if prev: + self.svg.add_line(p[0], p[1], prev[0], prev[1]) + prev = p + p = path.points[0] + self.svg.add_line(p[0], p[1], prev[0], prev[1]) + + self.svg.close() + self.cont.close() + + def finish(self): + pass + + def new_scanline(self): + self.curr_line = [] + + def append(self, p): + if DEBUG_POLYGONEXTRACTOR3: + p.dir = self.current_dir + self.svg.add_dot(p[0], p[1]) + self.svg.add_text(p[0], p[1], str(p.id)) + self.curr_line.append(p) + + def end_scanline(self): + if self.current_dir == 0: + self.process_hor_scanline(self.curr_line) + elif self.current_dir == 1: + if self.policy == PolygonExtractor.CONTOUR and self.hor_path_list: + next_x = -INFINITE + if len(self.curr_line) > 0: + next_x = self.curr_line[0][0] + self.delta_x = next_x - self.last_x + self.last_x = next_x + else: + next_x = self.last_x + self.delta_x + if next_x > -INFINITE: + self.process_virtual_hor_scanline(next_x) + if DEBUG_POLYGONEXTRACTOR2: + print("scanline =", self.curr_line) + self.process_ver_scanline(self.curr_line) + + def process_hor_scanline(self, scanline): + if DEBUG_POLYGONEXTRACTOR: + last = 0 + inside = False + s = "" + for point in scanline: + next_x = point[0] + if inside: + s += "*" * int(next_x - last) + else: + s += " " * int(next_x - last) + last = next_x + inside = not inside + print(s) + + if DEBUG_POLYGONEXTRACTOR: + print("active paths: "), + for path in self.curr_path_list: + print("%d(%g,%g)" % (path.id, path.points[-1][0], path.points[-1][1])), + print() + + print("prev points: "), + for point in self.prev_line: + print("(%g,%g)" % (point[0], point[1])), + print() + + print("active points: "), + for point in scanline: + print("%d(%g,%g)" % (point.id, point[0], point[1])), + print() + + prev_point = Iterator(self.prev_line) + curr_point = Iterator(scanline) + curr_path = Iterator(self.curr_path_list) + + winding = 0 + while (prev_point.remains() > 0) or (curr_point.remains() > 0): + if DEBUG_POLYGONEXTRACTOR: + print("num_prev=%d, num_curr=%d" % (prev_point.remains(), curr_point.remains())) + if (prev_point.remains() == 0) and (curr_point.remains() >= 2): + c0 = next(curr_point) + c1 = next(curr_point) + # new path starts + p0 = Path() + p0.winding = winding + 1 + if DEBUG_POLYGONEXTRACTOR: + print("new path %d(%g,%g)" % (p0.id, c0[0], c0[1])) + p0.append(c0) + self.curr_path_list.append(p0) + p1 = Path() + p1.winding = winding + if DEBUG_POLYGONEXTRACTOR: + print("new path %d(%g,%g)" % (p1.id, c1[0], c1[1])) + p1.append(c1) + self.curr_path_list.append(p1) + p0.top_join = p1 + p1.top_join = p0 + continue + + if (prev_point.remains() >= 2) and (curr_point.remains() == 0): + # old path ends + p0 = curr_path.take_next() + if DEBUG_POLYGONEXTRACTOR: + print("end path %d" % p0.id) + self.all_path_list.append(p0) + next(prev_point) + p1 = curr_path.take_next() + if DEBUG_POLYGONEXTRACTOR: + print("end path %d" % p1.id) + self.all_path_list.append(p1) + next(prev_point) + p0.bot_join = p1 + p1.bot_join = p0 + continue + + if (prev_point.remains() >= 2) and (curr_point.remains() >= 2): + p0 = prev_point.peek(0) + p1 = prev_point.peek(1) + c0 = curr_point.peek(0) + c1 = curr_point.peek(1) + + if DEBUG_POLYGONEXTRACTOR: + print("overlap test: p0=%g p1=%g" % (p0[0], p1[0])) + print("overlap test: c0=%g c1=%g" % (c0[0], c1[0])) + + if c1[0] < p0[0]: + # new segment is completely to the left + # new path starts + s0 = Path() + if DEBUG_POLYGONEXTRACTOR: + print("new path %d(%g,%g) w=%d" % (s0.id, c0[0], c0[0], winding + 1)) + s0.append(c0) + curr_path.insert(s0) + s1 = Path() + s0.winding = winding + 1 + s1.winding = winding + if DEBUG_POLYGONEXTRACTOR: + print("new path %d(%g,%g) w=%d" % (s1.id, c1[0], c1[1], winding)) + s1.append(c1) + curr_path.insert(s1) + next(curr_point) + next(curr_point) + s0.top_join = s1 + s1.top_join = s0 + elif c0[0] > p1[0]: + # new segment is completely to the right + # old path ends + s0 = curr_path.take_next() + if DEBUG_POLYGONEXTRACTOR: + print("end path %d" % s0.id) + self.all_path_list.append(s0) + next(prev_point) + s1 = curr_path.take_next() + if DEBUG_POLYGONEXTRACTOR: + print("end path %d" % s1.id) + self.all_path_list.append(s1) + next(prev_point) + s0.bot_join = s1 + s1.bot_join = s0 + winding = s1.winding + else: + # new segment is overlapping + left_path = next(curr_path) + right_path = curr_path.peek() + left_point = c0 + right_point = c1 + winding = left_path.winding + next(curr_point) + next(prev_point) + + overlap_p = True + overlap_c = True + while overlap_c or overlap_p: + overlap_p = False + overlap_c = False + # check for path joins + if prev_point.remains() >= 2: + p2 = prev_point.peek(1) + if DEBUG_POLYGONEXTRACTOR: + print("join test: p0=%g p1=%g p2=%g" % (p0[0], p1[0], p2[0])) + print("join test: c0=%g c1=%g" % (c0[0], c1[0])) + if p2[0] <= c1[0]: + overlap_p = True + if self.policy == PolygonExtractor.CONTOUR: + s0 = curr_path.take_next() + s1 = curr_path.take_next() + if curr_path.remains() >= 1: + right_path = curr_path.peek() + self.all_path_list.append(s0) + self.all_path_list.append(s1) + if DEBUG_POLYGONEXTRACTOR: + print("path %d joins %d" % (s0.id, s1.id)) + s0.bot_join = s1 + s1.bot_join = s0 + elif self.policy == PolygonExtractor.MONOTONE: + s0 = curr_path.take_next() + left_path.bot_join = s0 + s0.bot_join = left_path + if DEBUG_POLYGONEXTRACTOR: + print("path %d joins %d" % (left_path.id, s0.id)) + curr_path.remove(left_path) + self.all_path_list.append(left_path) + self.all_path_list.append(s0) + s1 = next(curr_path) + left_path = s1 + right_path = curr_path.peek() + next(prev_point) + next(prev_point) + winding = s1.winding + p0 = p2 + if prev_point.remains() >= 1: + p1 = prev_point.peek(0) + else: + overlap_p = False + + # check for path splits + if curr_point.remains() >= 2: + c2 = curr_point.peek(1) + if DEBUG_POLYGONEXTRACTOR: + print("split test: p0=%g p1=%g" % (p0[0], p1[0])) + print("split test: c0=%g c1=%g c2=%g" % (c0[0], c1[0], c2[0])) + if c2[0] <= p1[0]: + overlap_c = True + s0 = Path() + s1 = Path() + s0.winding = winding + 1 + s1.winding = winding + s0.top_join = s1 + s1.top_join = s0 + if DEBUG_POLYGONEXTRACTOR: + print("region split into %d and %d (w=%d)" + % (s0.id, s1.id, winding + 1)) + next(curr_point) + c0 = next(curr_point) + if self.policy == PolygonExtractor.CONTOUR: + s0.append(c1) + curr_path.insert(s0) + s1.append(c2) + curr_path.insert(s1) + elif self.policy == PolygonExtractor.MONOTONE: + s0.append(left_point) + s1.append(c1) + curr_path.insert_before(s0) + curr_path.insert_before(s1) + left_point = c2 + if curr_point.remains() >= 1: + c1 = curr_point.peek(0) + right_point = c1 + else: + overlap_c = False + + if DEBUG_POLYGONEXTRACTOR: + print("add to path %d(%g,%g)" + % (left_path.id, left_point[0], left_point[1])) + left_path.append(left_point) + right_path.append(right_point) + if right_path == curr_path.peek(): + next(curr_path) + if DEBUG_POLYGONEXTRACTOR: + print("add to path %d(%g,%g)" + % (right_path.id, right_point[0], right_point[1])) + winding = right_path.winding + next(prev_point) + next(curr_point) + + if DEBUG_POLYGONEXTRACTOR: + output = "active paths: " + for path in self.curr_path_list: + output += "%d(%g,%g,w=%d)" % (path.id, path.points[-1][0], path.points[-1][1], + path.winding) + print(output) + + self.prev_line = scanline + + def process_ver_scanline(self, scanline): + if DEBUG_POLYGONEXTRACTOR3: + prev = None + for p in scanline: + if p.dir == 0: + self.cont.fill("red") + else: + self.cont.fill("blue") + self.cont.add_dot(p[0], p[1]) + self.cont.fill("black") + self.cont.add_text(p[0], p[1], str(p.id)) + if prev: + self.cont.add_line(prev[0], prev[1], p[0], p[1]) + prev = p + + if DEBUG_POLYGONEXTRACTOR: + last = 0 + inside = False + s = "" + for point in scanline: + next_y = point[1] + if inside: + s += "*" * int(next_y - last) + else: + s += " " * int(next_y - last) + last = next_y + inside = not inside + print(s) + + if DEBUG_POLYGONEXTRACTOR: + print("active paths: "), + for path in self.curr_path_list: + print("%d(%g,%g)" % (path.id, path.points[-1][0], path.points[-1][1])), + print() + + print("prev points: "), + for point in self.prev_line: + print("(%g,%g)" % (point[0], point[1])), + print() + + print("active points: "), + for point in scanline: + print("%d(%g,%g)" % (point.id, point[0], point[1])), + print() + + prev_point = Iterator(self.prev_line) + curr_point = Iterator(scanline) + curr_path = Iterator(self.curr_path_list) + + winding = 0 + while (prev_point.remains() > 0) or (curr_point.remains() > 0): + if DEBUG_POLYGONEXTRACTOR: + print("num_prev=%d, num_curr=%d" % (prev_point.remains(), curr_point.remains())) + if (prev_point.remains() == 0) and (curr_point.remains() >= 2): + c0 = next(curr_point) + c1 = next(curr_point) + # new path starts + p0 = Path() + p0.winding = winding + 1 + if DEBUG_POLYGONEXTRACTOR: + print("new path %d(%g,%g)" % (p0.id, c0[0], c0[1])) + p0.append(c0) + self.curr_path_list.append(p0) + p1 = Path() + p1.winding = winding + if DEBUG_POLYGONEXTRACTOR: + print("new path %d(%g,%g)" % (p1.id, c1[0], c1[1])) + p1.append(c1) + self.curr_path_list.append(p1) + p0.top_join = p1 + p1.top_join = p0 + continue + + if (prev_point.remains() >= 2) and (curr_point.remains() == 0): + # old path ends + p0 = curr_path.take_next() + if DEBUG_POLYGONEXTRACTOR: + print("end path %d" % p0.id) + self.all_path_list.append(p0) + next(prev_point) + p1 = curr_path.take_next() + if DEBUG_POLYGONEXTRACTOR: + print("end path %d" % p1.id) + self.all_path_list.append(p1) + next(prev_point) + p0.bot_join = p1 + p1.bot_join = p0 + continue + + if (prev_point.remains() >= 2) and (curr_point.remains() >= 2): + p0 = prev_point.peek(0) + p1 = prev_point.peek(1) + c0 = curr_point.peek(0) + c1 = curr_point.peek(1) + + if DEBUG_POLYGONEXTRACTOR: + print("overlap test: p0=%g p1=%g" % (p0[0], p1[0])) + print("overlap test: c0=%g c1=%g" % (c0[0], c1[0])) + + if c1[1] < p0[1]: + # new segment is completely to the left + # new path starts + s0 = Path() + if DEBUG_POLYGONEXTRACTOR: + print("new path %d(%g,%g) w=%d" % (s0.id, c0[0], c0[1], winding + 1)) + s0.append(c0) + curr_path.insert(s0) + s1 = Path() + s0.winding = winding + 1 + s1.winding = winding + if DEBUG_POLYGONEXTRACTOR: + print("new path %d(%g,%g) w=%d" % (s1.id, c1[0], c1[1], winding)) + s1.append(c1) + curr_path.insert(s1) + next(curr_point) + next(curr_point) + s0.top_join = s1 + s1.top_join = s0 + elif c0[1] > p1[1]: + # new segment is completely to the right + # old path ends + s0 = curr_path.take_next() + if DEBUG_POLYGONEXTRACTOR: + print("end path %d" % s0.id) + self.all_path_list.append(s0) + next(prev_point) + s1 = curr_path.take_next() + if DEBUG_POLYGONEXTRACTOR: + print("end path %d" % s1.id) + self.all_path_list.append(s1) + next(prev_point) + s0.bot_join = s1 + s1.bot_join = s0 + winding = s1.winding + else: + # new segment is overlapping + left_path = next(curr_path) + right_path = curr_path.peek() + left_point = c0 + right_point = c1 + winding = left_path.winding + next(curr_point) + next(prev_point) + + overlap_p = True + overlap_c = True + while overlap_c or overlap_p: + overlap_p = False + overlap_c = False + # check for path joins + if prev_point.remains() >= 2: + p2 = prev_point.peek(1) + if DEBUG_POLYGONEXTRACTOR: + print("join test: p0=%g p1=%g p2=%g" % (p0[0], p1[0], p2[0])) + print("join test: c0=%g c1=%g" % (c0[0], c1[0])) + if p2[1] <= c1[1]: + overlap_p = True + if self.policy == PolygonExtractor.CONTOUR: + s0 = curr_path.take_next() + s1 = curr_path.take_next() + if curr_path.remains() >= 1: + right_path = curr_path.peek() + self.all_path_list.append(s0) + self.all_path_list.append(s1) + if DEBUG_POLYGONEXTRACTOR: + print("path %d joins %d" % (s0.id, s1.id)) + s0.bot_join = s1 + s1.bot_join = s0 + elif self.policy == PolygonExtractor.MONOTONE: + s0 = curr_path.take_next() + left_path.bot_join = s0 + s0.bot_join = left_path + if DEBUG_POLYGONEXTRACTOR: + print("path %d joins %d" % (left_path.id, s0.id)) + curr_path.remove(left_path) + self.all_path_list.append(left_path) + self.all_path_list.append(s0) + s1 = next(curr_path) + left_path = s1 + right_path = curr_path.peek() + next(prev_point) + next(prev_point) + winding = s1.winding + p0 = p2 + if prev_point.remains() >= 1: + p1 = prev_point.peek(0) + else: + overlap_p = False + + # check for path splits + if curr_point.remains() >= 2: + c2 = curr_point.peek(1) + if DEBUG_POLYGONEXTRACTOR: + print("split test: p0=%g p1=%g" % (p0[0], p1[0])) + print("split test: c0=%g c1=%g c2=%g" % (c0[0], c1[0], c2[0])) + if c2[1] <= p1[1]: + overlap_c = True + s0 = Path() + s1 = Path() + s0.winding = winding + 1 + s1.winding = winding + s0.top_join = s1 + s1.top_join = s0 + if DEBUG_POLYGONEXTRACTOR: + print("region split into %d and %d (w=%d)" + % (s0.id, s1.id, winding + 1)) + next(curr_point) + c0 = next(curr_point) + if self.policy == PolygonExtractor.CONTOUR: + s0.append(c1) + curr_path.insert(s0) + s1.append(c2) + curr_path.insert(s1) + elif self.policy == PolygonExtractor.MONOTONE: + s0.append(left_point) + s1.append(c1) + curr_path.insert_before(s0) + curr_path.insert_before(s1) + left_point = c2 + if curr_point.remains() >= 1: + c1 = curr_point.peek(0) + right_point = c1 + else: + overlap_c = False + + if DEBUG_POLYGONEXTRACTOR: + print("add to path %d(%g,%g)" + % (left_path.id, left_point[0], left_point[1])) + left_path.append(left_point) + right_path.append(right_point) + if right_path == curr_path.peek(): + next(curr_path) + if DEBUG_POLYGONEXTRACTOR: + print("add to path %d(%g,%g)" + % (right_path.id, right_point[0], right_point[1])) + winding = right_path.winding + next(prev_point) + next(curr_point) + + if DEBUG_POLYGONEXTRACTOR: + output = "active paths: " + for path in self.curr_path_list: + output += "%d(%g,%g,w=%d)" % (path.id, path.points[-1][0], path.points[-1][1], + path.winding) + print(output) + + self.prev_line = scanline + + def convert_hor_path_list(self): + if DEBUG_POLYGONEXTRACTOR2: + print("converting hor paths") + hor_path_list = [] + for s in self.hor_path_list: + allsame = True + miny = s.points[0][1] + maxy = s.points[0][1] + for p in s.points: + if not p[0] == s.points[0][0]: + allsame = False + if p[1] < miny: + miny = p[1] + if p[1] > maxy: + maxy = p[1] + if allsame: + if DEBUG_POLYGONEXTRACTOR2: + print("all same !") + s0 = Path() + for p in s.points: + if p[1] == miny: + s0.append(p) + hor_path_list.append(s0) + s1 = Path() + for p in s.points: + if p[1] == maxy: + s1.append(p) + hor_path_list.append(s1) + continue + prev = s.points[-1] + p_iter = CyclicIterator(s.points) + p = s.points[0] + next_p = next(p_iter) + while not ((prev[0] >= p[0]) and (next_p[0] > p[0])): + p = next_p + next_p = next(p_iter) + count = 0 + while count < len(s.points): + s0 = Path() + while next_p[0] >= p[0]: + s0.append(p) + p = next_p + next_p = next(p_iter) + count += 1 + s0.append(p) + while (len(s0.points) > 1) \ + and (s0.points[0][0] == s0.points[1][0]): + s0.points = s0.points[1:] + while (len(s0.points) > 1) \ + and (s0.points[-2][0] == s0.points[-1][0]): + s0.points = s0.points[0:-1] + + hor_path_list.append(s0) + s1 = Path() + while next_p[0] <= p[0]: + s1.append(p) + p = next_p + next_p = next(p_iter) + count += 1 + s1.append(p) + s1.reverse() + while (len(s1.points) > 1) \ + and (s1.points[0][0] == s1.points[1][0]): + s1.points = s1.points[1:] + while (len(s1.points) > 1) \ + and (s1.points[-2][0] == s1.points[-1][0]): + s1.points = s1.points[:-1] + hor_path_list.append(s1) + hor_path_list.sort(key=lambda p: p.points[0][0]) + if DEBUG_POLYGONEXTRACTOR2: + print("ver_hor_path_list = ", hor_path_list) + for s in hor_path_list: + print("s%d =" % s.id), + for point in s.points: + print(point.id), + print() + self.ver_hor_path_list = hor_path_list + + self.act_hor_path_list = [] + + def process_virtual_hor_scanline(self, next_x): + + _next_x = next_x + + while next_x <= _next_x: + next_x = INFINITE + + if self.ver_hor_path_list \ + and (self.ver_hor_path_list[0].points[0][0] < next_x): + next_x = self.ver_hor_path_list[0].points[0][0] + + if self.act_hor_path_list \ + and (self.act_hor_path_list[0].points[0][0] < next_x): + next_x = self.act_hor_path_list[0].points[0][0] + + if next_x >= _next_x: + return + + if DEBUG_POLYGONEXTRACTOR2: + print("ver_hor_path_list =", self.ver_hor_path_list) + print("act_hor_path_list =", self.act_hor_path_list) + print("next_x =", next_x) + + if self.ver_hor_path_list \ + and (self.ver_hor_path_list[0].points[0][0] <= next_x): + while self.ver_hor_path_list \ + and (self.ver_hor_path_list[0].points[0][0] <= next_x): + self.act_hor_path_list.append(self.ver_hor_path_list[0]) + self.ver_hor_path_list = self.ver_hor_path_list[1:] + self.act_hor_path_list.sort(key=lambda p: p.points[0][0]) + + scanline = [] + i = 0 + while i < len(self.act_hor_path_list): + s = self.act_hor_path_list[i] + if DEBUG_POLYGONEXTRACTOR2: + print("s =", s) + scanline.append(s.points[0]) + if s.points[0][0] <= next_x: + if len(s.points) <= 1: + if DEBUG_POLYGONEXTRACTOR2: + print("remove list") + self.act_hor_path_list.pop(i) + continue + else: + if DEBUG_POLYGONEXTRACTOR2: + print("remove point", s.points[0]) + s.points.pop(0) + i += 1 + self.act_hor_path_list.sort(key=lambda p: p.points[0][0]) + if not scanline: + return + + scanline.sort(key=lambda l: l[1]) + if DEBUG_POLYGONEXTRACTOR2: + print("scanline' =", scanline) + print("ver_hor_path_list =", self.ver_hor_path_list) + print("act_hor_path_list =", self.act_hor_path_list) + self.process_ver_scanline(scanline) diff --git a/pycam/pycam/Geometry/Triangle.py b/pycam/pycam/Geometry/Triangle.py new file mode 100644 index 00000000..992a09fe --- /dev/null +++ b/pycam/pycam/Geometry/Triangle.py @@ -0,0 +1,227 @@ +""" +Copyright 2008-2010 Lode Leroy +Copyright 2010 Lars Kruse + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + +from pycam.Geometry.PointUtils import padd, pcross, pdist, pdist_sq, pdiv, pdot, pmul, pnorm, \ + pnormalized, psub +from pycam.Geometry.Plane import Plane +from pycam.Geometry.Line import Line +from pycam.Geometry import TransformableContainer, IDGenerator +import pycam.Utils.log + + +try: + import OpenGL.GL as GL + import OpenGL.GLU as GLU + import OpenGL.GLUT as GLUT + from OpenGL.GLUT.fonts import GLUT_STROKE_ROMAN + GL_enabled = True +except ImportError: + GL_enabled = False + + +class Triangle(IDGenerator, TransformableContainer): + + __slots__ = ["id", "p1", "p2", "p3", "normal", "minx", "maxx", "miny", "maxy", "minz", "maxz", + "e1", "e2", "e3", "normal", "center", "radius", "radiussq", "middle"] + + def __init__(self, p1=None, p2=None, p3=None, n=None): + # points are expected to be in ClockWise order + super().__init__() + self.p1 = p1 + self.p2 = p2 + self.p3 = p3 + self.normal = n + self.reset_cache() + + def reset_cache(self): + self.minx = min(self.p1[0], self.p2[0], self.p3[0]) + self.miny = min(self.p1[1], self.p2[1], self.p3[1]) + self.minz = min(self.p1[2], self.p2[2], self.p3[2]) + self.maxx = max(self.p1[0], self.p2[0], self.p3[0]) + self.maxy = max(self.p1[1], self.p2[1], self.p3[1]) + self.maxz = max(self.p1[2], self.p2[2], self.p3[2]) + self.e1 = Line(self.p1, self.p2) + self.e2 = Line(self.p2, self.p3) + self.e3 = Line(self.p3, self.p1) + # calculate normal, if p1-p2-pe are in clockwise order + if self.normal is None: + self.normal = pnormalized(pcross(psub(self.p3, self.p1), psub(self.p2, self.p1))) + if not len(self.normal) > 3: + self.normal = (self.normal[0], self.normal[1], self.normal[2], 'v') + self.center = pdiv(padd(padd(self.p1, self.p2), self.p3), 3) + self.plane = Plane(self.center, self.normal) + # calculate circumcircle (resulting in radius and middle) + denom = pnorm(pcross(psub(self.p2, self.p1), psub(self.p3, self.p2))) + self.radius = (pdist(self.p2, self.p1) * pdist(self.p3, self.p2) + * pdist(self.p3, self.p1)) / (2 * denom) + self.radiussq = self.radius ** 2 + denom2 = 2 * denom * denom + alpha = pdist_sq(self.p3, self.p2) * pdot(psub(self.p1, self.p2), + psub(self.p1, self.p3)) / denom2 + beta = pdist_sq(self.p1, self.p3) * pdot(psub(self.p2, self.p1), + psub(self.p2, self.p3)) / denom2 + gamma = pdist_sq(self.p1, self.p2) * pdot(psub(self.p3, self.p1), + psub(self.p3, self.p2)) / denom2 + self.middle = (self.p1[0] * alpha + self.p2[0] * beta + self.p3[0] * gamma, + self.p1[1] * alpha + self.p2[1] * beta + self.p3[1] * gamma, + self.p1[2] * alpha + self.p2[2] * beta + self.p3[2] * gamma) + + def __repr__(self): + return "Triangle%d<%s,%s,%s>" % (self.id, self.p1, self.p2, self.p3) + + def copy(self): + return self.__class__(self.p1, self.p2, self.p3, self.normal) + + def __next__(self): + yield "p1" + yield "p2" + yield "p3" + yield "normal" + + def get_points(self): + return (self.p1, self.p2, self.p3) + + def get_children_count(self): + # tree points per triangle + return 7 + + def to_opengl(self, color=None, show_directions=False): + if not GL_enabled: + return + if color is not None: + GL.glColor4f(*color) + GL.glBegin(GL.GL_TRIANGLES) + # use normals to improve lighting (contributed by imyrek) + normal_t = self.normal + GL.glNormal3f(normal_t[0], normal_t[1], normal_t[2]) + # The triangle's points are in clockwise order, but GL expects + # counter-clockwise sorting. + GL.glVertex3f(self.p1[0], self.p1[1], self.p1[2]) + GL.glVertex3f(self.p3[0], self.p3[1], self.p3[2]) + GL.glVertex3f(self.p2[0], self.p2[1], self.p2[2]) + GL.glEnd() + if show_directions: + # display surface normals + n = self.normal + c = self.center + d = 0.5 + GL.glBegin(GL.GL_LINES) + GL.glVertex3f(c[0], c[1], c[2]) + GL.glVertex3f(c[0]+n[0]*d, c[1]+n[1]*d, c[2]+n[2]*d) + GL.glEnd() + if False: + # display bounding sphere + GL.glPushMatrix() + middle = self.middle + GL.glTranslate(middle[0], middle[1], middle[2]) + if not hasattr(self, "_sphere"): + self._sphere = GLU.gluNewQuadric() + GLU.gluSphere(self._sphere, self.radius, 10, 10) + GL.glPopMatrix() + if pycam.Utils.log.is_debug(): + # draw triangle id on triangle face + GL.glPushMatrix() + c = self.center + GL.glTranslate(c[0], c[1], c[2]) + p12 = pmul(padd(self.p1, self.p2), 0.5) + p3_12 = pnormalized(psub(self.p3, p12)) + p2_1 = pnormalized(psub(self.p1, self.p2)) + pn = pcross(p2_1, p3_12) + GL.glMultMatrixf((p2_1[0], p2_1[1], p2_1[2], 0, p3_12[0], p3_12[1], p3_12[2], 0, pn[0], + pn[1], pn[2], 0, 0, 0, 0, 1)) + n = pmul(self.normal, 0.01) + GL.glTranslatef(n[0], n[1], n[2]) + maxdim = max((self.maxx - self.minx), (self.maxy - self.miny), (self.maxz - self.minz)) + factor = 0.001 + GL.glScalef(factor * maxdim, factor * maxdim, factor * maxdim) + w = 0 + id_string = "%s." % str(self.id) + for ch in id_string: + w += GLUT.glutStrokeWidth(GLUT_STROKE_ROMAN, ord(ch)) + GL.glTranslate(-w/2, 0, 0) + for ch in id_string: + GLUT.glutStrokeCharacter(GLUT_STROKE_ROMAN, ord(ch)) + GL.glPopMatrix() + if False: + # draw point id on triangle face + c = self.center + p12 = pmul(padd(self.p1, self.p2), 0.5) + p3_12 = pnormalized(psub(self.p3, p12)) + p2_1 = pnormalized(psub(self.p1, self.p2)) + pn = pcross(p2_1, p3_12) + n = pmul(self.normal, 0.01) + for p in (self.p1, self.p2, self.p3): + GL.glPushMatrix() + pp = psub(p, pmul(psub(p, c), 0.3)) + GL.glTranslate(pp[0], pp[1], pp[2]) + GL.glMultMatrixf((p2_1[0], p2_1[1], p2_1[2], 0, p3_12[0], p3_12[1], p3_12[2], 0, + pn[0], pn[1], pn[2], 0, 0, 0, 0, 1)) + GL.glTranslatef(n[0], n[1], n[2]) + GL.glScalef(0.001, 0.001, 0.001) + w = 0 + for ch in str(p.id): + w += GLUT.glutStrokeWidth(GLUT_STROKE_ROMAN, ord(ch)) + GL.glTranslate(-w/2, 0, 0) + for ch in str(p.id): + GLUT.glutStrokeCharacter(GLUT_STROKE_ROMAN, ord(ch)) + GL.glPopMatrix() + + def is_point_inside(self, p): + # http://www.blackpawn.com/texts/pointinpoly/default.html + # Compute vectors + v0 = psub(self.p3, self.p1) + v1 = psub(self.p2, self.p1) + v2 = psub(p, self.p1) + # Compute dot products + dot00 = pdot(v0, v0) + dot01 = pdot(v0, v1) + dot02 = pdot(v0, v2) + dot11 = pdot(v1, v1) + dot12 = pdot(v1, v2) + # Compute barycentric coordinates + denom = dot00 * dot11 - dot01 * dot01 + if denom == 0: + return False + inv_denom = 1.0 / denom + # Originally, "u" and "v" are multiplied with "1/denom". + # We don't do this to avoid division by zero (for triangles that are + # "almost" invalid). + u = (dot11 * dot02 - dot01 * dot12) * inv_denom + v = (dot00 * dot12 - dot01 * dot02) * inv_denom + # Check if point is in triangle + return (u > 0) and (v > 0) and (u + v < 1) + + def subdivide(self, depth): + sub = [] + if depth == 0: + sub.append(self) + else: + p4 = pdiv(padd(self.p1, self.p2), 2) + p5 = pdiv(padd(self.p2, self.p3), 2) + p6 = pdiv(padd(self.p3, self.p1), 2) + sub += Triangle(self.p1, p4, p6).subdivide(depth - 1) + sub += Triangle(p6, p5, self.p3).subdivide(depth - 1) + sub += Triangle(p6, p4, p5).subdivide(depth - 1) + sub += Triangle(p4, self.p2, p5).subdivide(depth - 1) + return sub + + def get_area(self): + cross = pcross(psub(self.p2, self.p1), psub(self.p3, self.p1)) + return pnorm(cross) / 2 diff --git a/pycam/pycam/Geometry/TriangleKdtree.py b/pycam/pycam/Geometry/TriangleKdtree.py new file mode 100644 index 00000000..d0a6e1e9 --- /dev/null +++ b/pycam/pycam/Geometry/TriangleKdtree.py @@ -0,0 +1,88 @@ +""" +Copyright 2008-2009 Lode Leroy + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + +from pycam.Geometry.kdtree import Kdtree, Node + +overlaptest = True + + +def search_kdtree_2d(tree, minx, maxx, miny, maxy): + if tree.bucket: + triangles = [] + for n in tree.nodes: + if not overlaptest: + triangles.append(n.obj) + else: + if not ((n.bound[0] > maxx) or + (n.bound[1] < minx) or + (n.bound[2] > maxy) or + (n.bound[3] < miny)): + triangles.append(n.obj) + return triangles + else: + if tree.cutdim == 0: + if maxx < tree.minval: + return [] + elif maxx < tree.cutval: + return search_kdtree_2d(tree.lo, minx, maxx, miny, maxy) + else: + return (search_kdtree_2d(tree.lo, minx, maxx, miny, maxy) + + search_kdtree_2d(tree.hi, minx, maxx, miny, maxy)) + elif tree.cutdim == 1: + if minx > tree.maxval: + return [] + elif minx > tree.cutval: + return search_kdtree_2d(tree.hi, minx, maxx, miny, maxy) + else: + return (search_kdtree_2d(tree.lo, minx, maxx, miny, maxy) + + search_kdtree_2d(tree.hi, minx, maxx, miny, maxy)) + elif tree.cutdim == 2: + if maxy < tree.minval: + return [] + elif maxy < tree.cutval: + return search_kdtree_2d(tree.lo, minx, maxx, miny, maxy) + else: + return (search_kdtree_2d(tree.lo, minx, maxx, miny, maxy) + + search_kdtree_2d(tree.hi, minx, maxx, miny, maxy)) + elif tree.cutdim == 3: + if miny > tree.maxval: + return [] + elif miny > tree.cutval: + return search_kdtree_2d(tree.hi, minx, maxx, miny, maxy) + else: + return (search_kdtree_2d(tree.lo, minx, maxx, miny, maxy) + + search_kdtree_2d(tree.hi, minx, maxx, miny, maxy)) + + +class TriangleKdtree(Kdtree): + + __slots__ = [] + + def __init__(self, triangles, cutoff=3, cutoff_distance=1.0): + nodes = [] + for t in triangles: + n = Node(t, (min(t.p1[0], t.p2[0], t.p3[0]), + max(t.p1[0], t.p2[0], t.p3[0]), + min(t.p1[1], t.p2[1], t.p3[1]), + max(t.p1[1], t.p2[1], t.p3[1]))) + nodes.append(n) + super().__init__(nodes, cutoff, cutoff_distance) + + def search(self, minx, maxx, miny, maxy): + return search_kdtree_2d(self, minx, maxx, miny, maxy) diff --git a/pycam/pycam/Geometry/__init__.py b/pycam/pycam/Geometry/__init__.py new file mode 100644 index 00000000..428d4d75 --- /dev/null +++ b/pycam/pycam/Geometry/__init__.py @@ -0,0 +1,214 @@ +""" +Copyright 2010 Lars Kruse +Copyright 2008-2009 Lode Leroy + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + +import collections +import decimal +import math + +import pycam.Utils.log +_log = pycam.Utils.log.get_logger() + + +INFINITE = 100000 +epsilon = 0.00001 + +# use the "decimal" module for fixed precision numbers (only for debugging) +_use_precision = False + + +# the lambda functions below are more efficient than function definitions + +if _use_precision: + ceil = lambda value: int((value + number(1).next_minus()) // 1) +else: + ceil = lambda value: int(math.ceil(value)) + +# return "0" for "-epsilon < value < 0" (to work around floating inaccuracies) +# otherwise: return the sqrt function of the current type (could even raise +# exceptions) +if _use_precision: + sqrt = lambda value: (((value < -epsilon) or (value > 0)) and value.sqrt()) or 0 +else: + sqrt = lambda value: (((value < -epsilon) or (value > 0)) and math.sqrt(value)) or 0 + +if _use_precision: + number = lambda value: decimal.Decimal(str(value)) +else: + number = float + + +Point3D = collections.namedtuple("Point3D", ("x", "y", "z")) +Vector3D = collections.namedtuple("Vector3D", ("x", "y", "z")) + + +class DimensionalObject: + """ mixin class for providing 3D objects with size information + + At least the attributes min[xyz] and max[xyz] must be provided by the inheriting class. + """ + + __slots__ = () + + def get_diagonal(self): + return Vector3D(self.maxx - self.minx, self.maxy - self.miny, self.maxz - self.minz) + + def get_center(self): + return Point3D((self.maxx + self.minx) / 2, + (self.maxy + self.miny) / 2, + (self.maxz + self.minz) / 2) + + def get_dimensions(self): + return self.get_diagonal() + + +class Box3D(collections.namedtuple("Box3D", ("lower", "upper")), DimensionalObject): + + __slots__ = () + + @property + def minx(self): + return self.lower.x + + @property + def miny(self): + return self.lower.y + + @property + def minz(self): + return self.lower.z + + @property + def maxx(self): + return self.upper.x + + @property + def maxy(self): + return self.upper.y + + @property + def maxz(self): + return self.upper.z + + +def _id_generator(): + current_id = 0 + while True: + yield current_id + current_id += 1 + + +class IDGenerator: + + __id_gen_func = _id_generator() + + def __init__(self): + self.id = next(self.__id_gen_func) + + +class TransformableContainer(DimensionalObject): + """ a base class for geometrical objects containing other elements + + This class is mainly used for simplifying model transformations in a + consistent way. + + Every subclass _must_ implement a 'next' generator returning (via yield) + its children. + Additionally a method 'reset_cache' for any custom re-initialization must + be provided. This method is called when all children of the object were + successfully transformed. + + A method 'get_children_count' for calculating the number of children + (recursively) is necessary for the "callback" parameter of + "transform_by_matrix". + + Optionally the method 'transform_by_matrix' may be used to perform + object-specific calculations (e.g. retaining the 'normal' vector of a + triangle). + + The basic primitives that are part of TransformableContainer _must_ + implement the above 'transform_by_matrix' method. These primitives are + not required to be a subclass of TransformableContainer. + """ + + def transform_by_matrix(self, matrix, transformed_list=None, callback=None): + from pycam.Geometry.PointUtils import ptransform_by_matrix + if transformed_list is None: + transformed_list = [] + # Prevent any kind of loops or double transformations (e.g. Points in + # multiple containers (Line, Triangle, ...). + # Use the 'id' builtin to prevent expensive object comparions. + for item in next(self): + if isinstance(item, TransformableContainer): + item.transform_by_matrix(matrix, transformed_list, callback=callback) + elif not id(item) in transformed_list: + # Don't transmit the 'transformed_list' if the object is + # not a TransformableContainer. It is not necessary and it + # is hard to understand on the lowest level (e.g. Point). + if isinstance(item, str): + theval = getattr(self, item) + if isinstance(theval, tuple): + setattr(self, item, ptransform_by_matrix(theval, matrix)) + elif isinstance(theval, list): + setattr(self, item, [ptransform_by_matrix(x, matrix) for x in theval]) + elif isinstance(item, tuple): + _log.error("ERROR!! A tuple (Point, Vector) made it into base " + "transform_by_matrix without a back reference. " + "Point/Vector remains unchanged.") + else: + item.transform_by_matrix(matrix, callback=callback) + # run the callback - e.g. for a progress counter + if callback and callback(): + # user requesteded abort + break + self.reset_cache() + + def __iter__(self): + return self + + def __next__(self): + raise NotImplementedError(("'%s' is a subclass of 'TransformableContainer' but it fails " + "to implement the 'next' generator") % str(type(self))) + + def get_children_count(self): + raise NotImplementedError(("'%s' is a subclass of 'TransformableContainer' but it fails " + "to implement the 'get_children_count' method") + % str(type(self))) + + def reset_cache(self): + raise NotImplementedError(("'%s' is a subclass of 'TransformableContainer' but it fails " + "to implement the 'reset_cache' method") % str(type(self))) + + def is_completely_inside(self, minx=None, maxx=None, miny=None, maxy=None, minz=None, + maxz=None): + return (((minx is None) or (minx - epsilon <= self.minx)) + and ((maxx is None) or (self.maxx <= maxx + epsilon)) + and ((miny is None) or (miny - epsilon <= self.miny)) + and ((maxy is None) or (self.maxy <= maxy + epsilon)) + and ((minz is None) or (minz - epsilon <= self.minz)) + and ((maxz is None) or (self.maxz <= maxz + epsilon))) + + def is_completely_outside(self, minx=None, maxx=None, miny=None, maxy=None, minz=None, + maxz=None): + return (((maxx is None) or (maxx + epsilon < self.minx)) + or ((minx is None) or (self.maxx < minx - epsilon)) + or ((maxy is None) or (maxy + epsilon < self.miny)) + or ((miny is None) or (self.maxy < miny - epsilon)) + or ((maxz is None) or (maxz + epsilon < self.minz)) + or ((minz is None) or (self.maxz < minz - epsilon))) diff --git a/pycam/pycam/Geometry/intersection.py b/pycam/pycam/Geometry/intersection.py new file mode 100644 index 00000000..e84a609f --- /dev/null +++ b/pycam/pycam/Geometry/intersection.py @@ -0,0 +1,329 @@ +""" +Copyright 2008-2010 Lode Leroy + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + + +from pycam.Geometry import INFINITE, sqrt, epsilon +from pycam.Geometry.Plane import Plane +from pycam.Geometry.Line import Line +from pycam.Geometry.PointUtils import padd, pcross, pdiv, pdot, pmul, pnorm, pnormalized, \ + pnormsq, psub +from pycam.Utils.polynomials import poly4_roots + + +def intersect_cylinder_point(center, axis, radius, radiussq, direction, point): + # take a plane along direction and axis + n = pnormalized(pcross(direction, axis)) + # distance of the point to this plane + d = pdot(n, point) - pdot(n, center) + if abs(d) > radius - epsilon: + return (None, None, INFINITE) + # ccl is on cylinder + d2 = sqrt(radiussq - d * d) + ccl = padd(padd(center, pmul(n, d)), pmul(direction, d2)) + # take plane through ccl and axis + plane = Plane(ccl, direction) + # intersect point with plane + (ccp, l) = plane.intersect_point(direction, point) + return (ccp, point, -l) + + +def intersect_cylinder_line(center, axis, radius, radiussq, direction, edge): + d = edge.dir + # take a plane through the line and along the cylinder axis (1) + n = pcross(d, axis) + if pnorm(n) == 0: + # no contact point, but should check here if cylinder *always* + # intersects line... + return (None, None, INFINITE) + n = pnormalized(n) + # the contact line between the cylinder and this plane (1) + # is where the surface normal is perpendicular to the plane + # so line := ccl + \lambda * axis + if pdot(n, direction) < 0: + ccl = psub(center, pmul(n, radius)) + else: + ccl = padd(center, pmul(n, radius)) + # now extrude the contact line along the direction, this is a plane (2) + n2 = pcross(direction, axis) + if pnorm(n2) == 0: + # no contact point, but should check here if cylinder *always* + # intersects line... + return (None, None, INFINITE) + n2 = pnormalized(n2) + plane1 = Plane(ccl, n2) + # intersect this plane with the line, this gives us the contact point + (cp, l) = plane1.intersect_point(d, edge.p1) + if not cp: + return (None, None, INFINITE) + # now take a plane through the contact line and perpendicular to the + # direction (3) + plane2 = Plane(ccl, direction) + # the intersection of this plane (3) with the line through the contact point + # gives us the cutter contact point + (ccp, l) = plane2.intersect_point(direction, cp) + cp = padd(ccp, pmul(direction, -l)) + return (ccp, cp, -l) + + +def intersect_circle_plane(center, radius, direction, triangle): + # let n be the normal to the plane + n = triangle.normal + if pdot(n, direction) == 0: + return (None, None, INFINITE) + # project onto z=0 + n2 = (n[0], n[1], 0) + if pnorm(n2) == 0: + (cp, d) = triangle.plane.intersect_point(direction, center) + ccp = psub(cp, pmul(direction, d)) + return (ccp, cp, d) + n2 = pnormalized(n2) + # the cutter contact point is on the circle, where the surface normal is n + ccp = padd(center, pmul(n2, -radius)) + # intersect the plane with a line through the contact point + (cp, d) = triangle.plane.intersect_point(direction, ccp) + return (ccp, cp, d) + + +def intersect_circle_point(center, axis, radius, radiussq, direction, point): + # take a plane through the base + plane = Plane(center, axis) + # intersect with line gives ccp + (ccp, l) = plane.intersect_point(direction, point) + # check if inside circle + if ccp and (pnormsq(psub(center, ccp)) < radiussq - epsilon): + return (ccp, point, -l) + return (None, None, INFINITE) + + +def intersect_circle_line(center, axis, radius, radiussq, direction, edge): + # make a plane by sliding the line along the direction (1) + d = edge.dir + if pdot(d, axis) == 0: + if pdot(direction, axis) == 0: + return (None, None, INFINITE) + plane = Plane(center, axis) + (p1, l) = plane.intersect_point(direction, edge.p1) + (p2, l) = plane.intersect_point(direction, edge.p2) + pc = Line(p1, p2).closest_point(center) + d_sq = pnormsq(psub(pc, center)) + if d_sq >= radiussq: + return (None, None, INFINITE) + a = sqrt(radiussq - d_sq) + d1 = pdot(psub(p1, pc), d) + d2 = pdot(psub(p2, pc), d) + ccp = None + cp = None + if abs(d1) < a - epsilon: + ccp = p1 + cp = psub(p1, pmul(direction, l)) + elif abs(d2) < a - epsilon: + ccp = p2 + cp = psub(p2, pmul(direction, l)) + elif ((d1 < -a + epsilon) and (d2 > a - epsilon)) \ + or ((d2 < -a + epsilon) and (d1 > a - epsilon)): + ccp = pc + cp = psub(pc, pmul(direction, l)) + return (ccp, cp, -l) + n = pcross(d, direction) + if pnorm(n) == 0: + # no contact point, but should check here if circle *always* intersects + # line... + return (None, None, INFINITE) + n = pnormalized(n) + # take a plane through the base + plane = Plane(center, axis) + # intersect base with line + (lp, l) = plane.intersect_point(d, edge.p1) + if not lp: + return (None, None, INFINITE) + # intersection of 2 planes: lp + \lambda v + v = pcross(axis, n) + if pnorm(v) == 0: + return (None, None, INFINITE) + v = pnormalized(v) + # take plane through intersection line and parallel to axis + n2 = pcross(v, axis) + if pnorm(n2) == 0: + return (None, None, INFINITE) + n2 = pnormalized(n2) + # distance from center to this plane + dist = pdot(n2, center) - pdot(n2, lp) + distsq = dist * dist + if distsq > radiussq - epsilon: + return (None, None, INFINITE) + # must be on circle + dist2 = sqrt(radiussq - distsq) + if pdot(d, axis) < 0: + dist2 = -dist2 + ccp = psub(center, psub(pmul(n2, dist), pmul(v, dist2))) + plane = Plane(edge.p1, pcross(pcross(d, direction), d)) + (cp, l) = plane.intersect_point(direction, ccp) + return (ccp, cp, l) + + +def intersect_sphere_plane(center, radius, direction, triangle): + # let n be the normal to the plane + n = triangle.normal + if pdot(n, direction) == 0: + return (None, None, INFINITE) + # the cutter contact point is on the sphere, where the surface normal is n + if pdot(n, direction) < 0: + ccp = psub(center, pmul(n, radius)) + else: + ccp = padd(center, pmul(n, radius)) + # intersect the plane with a line through the contact point + (cp, d) = triangle.plane.intersect_point(direction, ccp) + return (ccp, cp, d) + + +def intersect_sphere_point(center, radius, radiussq, direction, point): + # line equation + # (1) x = p_0 + \lambda * d + # sphere equation + # (2) (x-x_0)^2 = R^2 + # (1) in (2) gives a quadratic in \lambda + p0_x0 = psub(center, point) + a = pnormsq(direction) + b = 2 * pdot(p0_x0, direction) + c = pnormsq(p0_x0) - radiussq + d = b * b - 4 * a * c + if d < 0: + return (None, None, INFINITE) + if a < 0: + dist = (-b + sqrt(d)) / (2 * a) + else: + dist = (-b - sqrt(d)) / (2 * a) + # cutter contact point + ccp = padd(point, pmul(direction, -dist)) + return (ccp, point, dist) + + +def intersect_sphere_line(center, radius, radiussq, direction, edge): + # make a plane by sliding the line along the direction (1) + d = edge.dir + n = pcross(d, direction) + if pnorm(n) == 0: + # no contact point, but should check here if sphere *always* intersects + # line... + return (None, None, INFINITE) + n = pnormalized(n) + + # calculate the distance from the sphere center to the plane + dist = - pdot(center, n) + pdot(edge.p1, n) + if abs(dist) > radius - epsilon: + return (None, None, INFINITE) + # this gives us the intersection circle on the sphere + + # now take a plane through the edge and perpendicular to the direction (2) + # find the center on the circle closest to this plane + + # which means the other component is perpendicular to this plane (2) + n2 = pnormalized(pcross(n, d)) + + # the contact point is on a big circle through the sphere... + dist2 = sqrt(radiussq - dist * dist) + + # ... and it's on the plane (1) + ccp = padd(center, padd(pmul(n, dist), pmul(n2, dist2))) + + # now intersect a line through this point with the plane (2) + plane = Plane(edge.p1, n2) + (cp, l) = plane.intersect_point(direction, ccp) + return (ccp, cp, l) + + +def intersect_torus_plane(center, axis, majorradius, minorradius, direction, triangle): + # take normal to the plane + n = triangle.normal + if pdot(n, direction) == 0: + return (None, None, INFINITE) + if pdot(n, axis) == 1: + return (None, None, INFINITE) + # find place on torus where surface normal is n + b = pmul(n, -1) + z = axis + a = psub(b, pmul(z, pdot(z, b))) + a_sq = pnormsq(a) + if a_sq <= 0: + return (None, None, INFINITE) + a = pdiv(a, sqrt(a_sq)) + ccp = padd(padd(center, pmul(a, majorradius)), pmul(b, minorradius)) + # find intersection with plane + (cp, l) = triangle.plane.intersect_point(direction, ccp) + return (ccp, cp, l) + + +def intersect_torus_point(center, axis, majorradius, minorradius, majorradiussq, minorradiussq, + direction, point): + dist = 0 + if (direction[0] == 0) and (direction[1] == 0): + # drop + minlsq = (majorradius - minorradius) ** 2 + maxlsq = (majorradius + minorradius) ** 2 + l_sq = (point[0]-center[0]) ** 2 + (point[1] - center[1]) ** 2 + if (l_sq < minlsq + epsilon) or (l_sq > maxlsq - epsilon): + return (None, None, INFINITE) + l_len = sqrt(l_sq) + z_sq = minorradiussq - (majorradius - l_len) ** 2 + if z_sq < 0: + return (None, None, INFINITE) + z = sqrt(z_sq) + ccp = (point[0], point[1], center[2] - z) + dist = ccp[2] - point[2] + elif direction[2] == 0: + # push + z = point[2] - center[2] + if abs(z) > minorradius - epsilon: + return (None, None, INFINITE) + l_len = majorradius + sqrt(minorradiussq - z * z) + n = pcross(axis, direction) + d = pdot(n, point) - pdot(n, center) + if abs(d) > l_len - epsilon: + return (None, None, INFINITE) + a = sqrt(l_len * l_len - d * d) + ccp = padd(padd(center, pmul(n, d)), pmul(direction, a)) + ccp = (ccp[0], ccp[1], point[2]) + dist = pdot(psub(point, ccp), direction) + else: + # general case + x = psub(point, center) + v = pmul(direction, -1) + x_x = pdot(x, x) + x_v = pdot(x, v) + x1 = (x[0], x[1], 0) + v1 = (v[0], v[1], 0) + x1_x1 = pdot(x1, x1) + x1_v1 = pdot(x1, v1) + v1_v1 = pdot(v1, v1) + r2_major = majorradiussq + r2_minor = minorradiussq + a = 1.0 + b = 4 * x_v + c = 2 * (x_x + 2 * x_v ** 2 + (r2_major - r2_minor) - 2 * r2_major * v1_v1) + d = 4 * (x_x * x_v + x_v * (r2_major - r2_minor) - 2 * r2_major * x1_v1) + e = ((x_x) ** 2 + 2 * x_x * (r2_major - r2_minor) + (r2_major - r2_minor) ** 2 + - 4 * r2_major * x1_x1) + r = poly4_roots(a, b, c, d, e) + if not r: + return (None, None, INFINITE) + else: + l_len = min(r) + ccp = padd(point, pmul(direction, -l_len)) + dist = l_len + return (ccp, point, dist) diff --git a/pycam/pycam/Geometry/kdtree.py b/pycam/pycam/Geometry/kdtree.py new file mode 100644 index 00000000..ac368762 --- /dev/null +++ b/pycam/pycam/Geometry/kdtree.py @@ -0,0 +1,231 @@ +""" +Copyright 2008-2010 Lode Leroy + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + +try: + import OpenGL.GL as GL + GL_enabled = True +except ImportError: + GL_enabled = False + +from pycam.Geometry import IDGenerator + + +class Node: + + __slots__ = ["obj", "bound"] + + def __init__(self, obj, bound): + self.obj = obj + self.bound = bound + + def __repr__(self): + s = "" + for bound in self.bound: + s += "%g : " % bound + return s + + +def find_max_spread(nodes): + minval = [] + maxval = [] + n = nodes[0] + numdim = len(n.bound) + for b in n.bound: + minval.append(b) + maxval.append(b) + for n in nodes: + for j in range(0, numdim): + minval[j] = min(minval[j], n.bound[j]) + maxval[j] = max(maxval[j], n.bound[j]) + maxspreaddim = 0 + maxspread = maxval[0]-minval[0] + for i in range(1, numdim): + spread = maxval[i]-minval[i] + if spread > maxspread: + maxspread = spread + maxspreaddim = i + return (maxspreaddim, maxspread) + + +class Kdtree(IDGenerator): + + __slots__ = ["bucket", "dim", "cutoff", "cutoff_distance", "nodes", "cutdim", "minval", + "maxval", "cutval", "hi", "lo"] + + def __init__(self, nodes, cutoff, cutoff_distance): + super().__init__() + self.bucket = False + if nodes and len(nodes) > 0: + self.dim = len(nodes[0].bound) + else: + self.dim = 0 + self.cutoff = cutoff + self.cutoff_distance = cutoff_distance + + if len(nodes) <= self.cutoff: + self.bucket = True + self.nodes = nodes + else: + (cutdim, spread) = find_max_spread(nodes) + if spread <= self.cutoff_distance: + self.bucket = True + self.nodes = nodes + else: + self.bucket = False + self.cutdim = cutdim + nodes.sort(key=lambda item: item.bound[cutdim]) + median = len(nodes) // 2 + self.minval = nodes[0].bound[cutdim] + self.maxval = nodes[-1].bound[cutdim] + self.cutval = nodes[median].bound[cutdim] + self.lo = Kdtree(nodes[0:median], cutoff, cutoff_distance) + self.hi = Kdtree(nodes[median:], cutoff, cutoff_distance) + + def __repr__(self): + if self.bucket: + if True: + return "(#%d)" % len(self.nodes) + else: + s = "(" + for n in self.nodes: + if len(s) > 1: + s += ", %s)" % str(n.p.id) + return s + else: + return "(%s,%d:%g,%s)" % (self.lo, self.cutdim, self.cutval, self.hi) + + def to_opengl(self, minx, maxx, miny, maxy, minz, maxz): + if not GL_enabled: + return + if self.bucket: + GL.glBegin(GL.GL_LINES) + GL.glVertex3d(minx, miny, minz) + GL.glVertex3d(minx, miny, maxz) + GL.glVertex3d(minx, maxy, minz) + GL.glVertex3d(minx, maxy, maxz) + GL.glVertex3d(maxx, miny, minz) + GL.glVertex3d(maxx, miny, maxz) + GL.glVertex3d(maxx, maxy, minz) + GL.glVertex3d(maxx, maxy, maxz) + + GL.glVertex3d(minx, miny, minz) + GL.glVertex3d(maxx, miny, minz) + GL.glVertex3d(minx, maxy, minz) + GL.glVertex3d(maxx, maxy, minz) + GL.glVertex3d(minx, miny, maxz) + GL.glVertex3d(maxx, miny, maxz) + GL.glVertex3d(minx, maxy, maxz) + GL.glVertex3d(maxx, maxy, maxz) + + GL.glVertex3d(minx, miny, minz) + GL.glVertex3d(minx, maxy, minz) + GL.glVertex3d(maxx, miny, minz) + GL.glVertex3d(maxx, maxy, minz) + GL.glVertex3d(minx, miny, maxz) + GL.glVertex3d(minx, maxy, maxz) + GL.glVertex3d(maxx, miny, maxz) + GL.glVertex3d(maxx, maxy, maxz) + GL.glEnd() + elif self.dim == 6: + if self.cutdim == 0 or self.cutdim == 2: + self.lo.to_opengl(minx, self.cutval, miny, maxy, minz, maxz) + self.hi.to_opengl(self.cutval, maxx, miny, maxy, minz, maxz) + elif self.cutdim == 1 or self.cutdim == 3: + self.lo.to_opengl(minx, maxx, miny, self.cutval, minz, maxz) + self.hi.to_opengl(minx, maxx, self.cutval, maxy, minz, maxz) + elif self.cutdim == 4 or self.cutdim == 5: + self.lo.to_opengl(minx, maxx, miny, maxx, minz, self.cutval) + self.hi.to_opengl(minx, maxx, miny, maxy, self.cutval, maxz) + elif self.dim == 4: + if self.cutdim == 0 or self.cutdim == 2: + self.lo.to_opengl(minx, self.cutval, miny, maxy, minz, maxz) + self.hi.to_opengl(self.cutval, maxx, miny, maxy, minz, maxz) + elif self.cutdim == 1 or self.cutdim == 3: + self.lo.to_opengl(minx, maxx, miny, self.cutval, minz, maxz) + self.hi.to_opengl(minx, maxx, self.cutval, maxy, minz, maxz) + elif self.dim == 3: + if self.cutdim == 0: + self.lo.to_opengl(minx, self.cutval, miny, maxy, minz, maxz) + self.hi.to_opengl(self.cutval, maxx, miny, maxy, minz, maxz) + elif self.cutdim == 1: + self.lo.to_opengl(minx, maxx, miny, self.cutval, minz, maxz) + self.hi.to_opengl(minx, maxx, self.cutval, maxy, minz, maxz) + elif self.cutdim == 2: + self.lo.to_opengl(minx, maxx, miny, maxy, minz, self.cutval) + self.hi.to_opengl(minx, maxx, miny, maxy, self.cutval, maxz) + + def dist(self, n1, n2): + dist = 0 + for i in range(len(n1.bound)): + d = n1.bound[i] - n2.bound[i] + dist += d*d + return dist + + def nearest_neighbor(self, node, dist=None): + if dist is None: + dist = self.dist + if self.bucket: + if len(self.nodes) == 0: + return (None, 0) + best = self.nodes[0] + bestdist = dist(node, best) + for n in self.nodes: + d = dist(n, node) + if d < bestdist: + best = n + bestdist = d + return (best, bestdist) + else: + if node.bound[self.cutdim] <= self.cutval: + (best, bestdist) = self.lo.nearest_neighbor(node, dist) + if bestdist > self.cutval - best.bound[self.cutdim]: + (best2, bestdist2) = self.hi.nearest_neighbor(node, dist) + if bestdist2 < bestdist: + return (best2, bestdist2) + return (best, bestdist) + else: + (best, bestdist) = self.hi.nearest_neighbor(node, dist) + if bestdist > best.bound[self.cutdim] - self.cutval: + (best2, bestdist2) = self.lo.nearest_neighbor(node, dist) + if bestdist2 < bestdist: + return (best2, bestdist2) + return (best, bestdist) + + def insert(self, node): + if self.dim == 0: + self.dim = len(node.bound) + + if self.bucket: + self.nodes.append(node) + if len(self.nodes) > self.cutoff: + self.bucket = False + (cutdim, spread) = find_max_spread(self.nodes) + self.cutdim = cutdim + self.nodes.sort(key=lambda node: node.bound[cutdim]) + median = len(self.nodes) // 2 + self.minval = self.nodes[0].bound[cutdim] + self.maxval = self.nodes[-1].bound[cutdim] + self.cutval = self.nodes[median].bound[cutdim] + self.lo = Kdtree(self.nodes[0:median], self.cutoff, self.cutoff_distance) + self.hi = Kdtree(self.nodes[median:], self.cutoff, self.cutoff_distance) + else: + if node.bound[self.cutdim] <= self.cutval: + self.lo.insert(node) + else: + self.hi.insert(node) diff --git a/pycam/pycam/Geometry/utils.py b/pycam/pycam/Geometry/utils.py new file mode 100644 index 00000000..b8bc2825 --- /dev/null +++ b/pycam/pycam/Geometry/utils.py @@ -0,0 +1,186 @@ +""" +Copyright 2008 Lode Leroy + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + +import math + +from pycam.Geometry import ceil, epsilon +import pycam.Geometry.Matrix as Matrix +from pycam.Geometry.Line import Line +from pycam.Geometry.PointUtils import padd, pcross, pdist, pdot, pmul, pnormalized, psub + + +def get_bisector(p1, p2, p3, up_vector): + """ Calculate the bisector between p1, p2 and p3, whereas p2 is the origin + of the angle. + """ + d1 = pnormalized(psub(p2, p1)) + d2 = pnormalized(psub(p2, p3)) + bisector_dir = pnormalized(padd(d1, d2)) + if bisector_dir is None: + # the two vectors pointed to opposite directions + bisector_dir = pnormalized(pcross(d1, up_vector)) + else: + skel_up_vector = pcross(bisector_dir, psub(p2, p1)) + if pdot(up_vector, skel_up_vector) < 0: + # reverse the skeleton vector to point outwards + bisector_dir = pmul(bisector_dir, -1) + return bisector_dir + + +def get_angle_pi(p1, p2, p3, up_vector, pi_factor=False): + """ calculate the angle between three points + Visualization: + p3 + / + / + /\ + / \ + p2--------p1 + The result is in a range between 0 and 2*PI. + """ + d1 = pnormalized(psub(p2, p1)) + d2 = pnormalized(psub(p2, p3)) + if (d1 is None) or (d2 is None): + return 2 * math.pi + angle = math.acos(pdot(d1, d2)) + # check the direction of the points (clockwise/anti) + # The code is taken from Polygon.get_area + value = [0, 0, 0] + for (pa, pb) in ((p1, p2), (p2, p3), (p3, p1)): + value[0] += pa[1] * pb[2] - pa[2] * pb[1] + value[1] += pa[2] * pb[0] - pa[0] * pb[2] + value[2] += pa[0] * pb[1] - pa[1] * pb[0] + area = up_vector[0] * value[0] + up_vector[1] * value[1] + up_vector[2] * value[2] + if area > 0: + # The points are in anti-clockwise order. Thus the angle is greater + # than 180 degree. + angle = 2 * math.pi - angle + if pi_factor: + # the result is in the range of 0..2 + return angle / math.pi + else: + return angle + + +def get_points_of_arc(center, radius, start_degree, end_degree, plane=None, cords=32): + """ return the points for an approximated arc + + The arc is interpreted as a full circle, if the difference between the start and end angle is + is a multiple of 360 degrees. + + @param center: center of the circle + @type center: pycam.Geometry.Point.Point + @param radius: radius of the arc + @type radius: float + @param start_degree: angle of the start (in degree) + @type start_degree: float + @param end_degree: angle of the end (in degree) + @type end_degree: float + @param plane: the plane of the circle (default: xy-plane) + @type plane: pycam.Geometry.Plane.Plane + @param cords: number of lines for a full circle + @type cords: int + @return: a list of points approximating the arc + @rtype: list(pycam.Geometry.Point.Point) + """ + # TODO: implement 3D arc and respect "plane" + start_radians = math.pi * start_degree / 180 + end_radians = math.pi * end_degree / 180 + angle_diff = end_radians - start_radians + while angle_diff < 0: + angle_diff += 2 * math.pi + if angle_diff == 0: + # Do not get stuck at zero, if we started from a negative multiple of 2 * PI. + angle_diff = 2 * math.pi + while angle_diff > 2 * math.pi: + angle_diff -= 2 * math.pi + if angle_diff == 0: + return [] + num_of_segments = ceil(angle_diff / (2 * math.pi) * cords) + angle_segment = angle_diff / num_of_segments + points = [] + + def get_angle_point(angle): + return (center[0] + radius * math.cos(angle), center[1] + radius * math.sin(angle), 0) + + points.append(get_angle_point(start_radians)) + for index in range(num_of_segments): + points.append(get_angle_point(start_radians + angle_segment * (index + 1))) + return points + + +def get_bezier_lines(points_with_bulge, segments=32): + # TODO: add a recursive algorithm for more than two points + if len(points_with_bulge) != 2: + return [] + else: + result_points = [] + p1, bulge1 = points_with_bulge[0] + p2, bulge2 = points_with_bulge[1] + if not bulge1 and not bulge2: + # straight line + return [Line(p1, p2)] + straight_dir = pnormalized(psub(p2, p1)) + bulge1 = math.atan(bulge1) + rot_matrix = Matrix.get_rotation_matrix_axis_angle((0, 0, 1), -2 * bulge1, + use_radians=True) + dir1_mat = Matrix.multiply_vector_matrix((straight_dir[0], straight_dir[1], + straight_dir[2]), rot_matrix) + dir1 = (dir1_mat[0], dir1_mat[1], dir1_mat[2], 'v') + if bulge2 is None: + bulge2 = bulge1 + else: + bulge2 = math.atan(bulge2) + rot_matrix = Matrix.get_rotation_matrix_axis_angle((0, 0, 1), 2 * bulge2, + use_radians=True) + dir2_mat = Matrix.multiply_vector_matrix((straight_dir[0], straight_dir[1], + straight_dir[2]), rot_matrix) + dir2 = (dir2_mat[0], dir2_mat[1], dir2_mat[2], 'v') + # interpretation of bulge1 and bulge2: + # /// taken from http://paulbourke.net/dataformats/dxf/dxf10.html /// + # The bulge is the tangent of 1/4 the included angle for an arc + # segment, made negative if the arc goes clockwise from the start + # point to the end point; a bulge of 0 indicates a straight segment, + # and a bulge of 1 is a semicircle. + alpha = 2 * (abs(bulge1) + abs(bulge2)) + dist = pdist(p2, p1) + # calculate the radius of the circumcircle - avoiding divide-by-zero + if (abs(alpha) < epsilon) or (abs(math.pi - alpha) < epsilon): + radius = dist / 2.0 + else: + # see http://en.wikipedia.org/wiki/Law_of_sines + radius = abs(dist / math.sin(alpha / 2.0)) / 2.0 + # The calculation of "factor" is based on random guessing - but it + # seems to work well. + factor = 4 * radius * math.tan(alpha / 4.0) + dir1 = pmul(dir1, factor) + dir2 = pmul(dir2, factor) + for index in range(segments + 1): + # t: 0..1 + t = float(index) / segments + # see: http://en.wikipedia.org/wiki/Cubic_Hermite_spline + p = padd(pmul(p1, 2 * t ** 3 - 3 * t ** 2 + 1), + padd(pmul(dir1, t ** 3 - 2 * t ** 2 + t), + padd(pmul(p2, -2 * t ** 3 + 3 * t ** 2), pmul(dir2, t ** 3 - t ** 2)))) + result_points.append(p) + # create lines + result = [] + for index in range(len(result_points) - 1): + result.append(Line(result_points[index], result_points[index + 1])) + return result diff --git a/pycam/pycam/Gui/Console.py b/pycam/pycam/Gui/Console.py new file mode 100644 index 00000000..9b5f7b13 --- /dev/null +++ b/pycam/pycam/Gui/Console.py @@ -0,0 +1,85 @@ +""" +Copyright 2010 Lars Kruse + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + +import os + + +class ConsoleProgressBar: + + STYLE_NONE = 0 + STYLE_TEXT = 1 + STYLE_BAR = 2 + STYLE_DOT = 3 + PROGRESS_BAR_LENGTH = 70 + + def __init__(self, output, style=None): + if style is None: + style = ConsoleProgressBar.STYLE_TEXT + self.output = output + self.style = style + self.last_length = 0 + self.text = "" + self.percent = 0 + + def _output_current_state(self, progress_happened=True): + if self.style == ConsoleProgressBar.STYLE_TEXT: + text = "%d%% %s" % (self.percent, self.text) + self.last_length = len(text) + elif self.style == ConsoleProgressBar.STYLE_BAR: + bar_length = ConsoleProgressBar.PROGRESS_BAR_LENGTH + hashes = int(bar_length * self.percent / 100.0) + empty = bar_length - hashes + text = "[%s%s]" % ("#" * hashes, "." * empty) + # include a text like " 10% " in the middle + percent_text = " %d%% " % self.percent + start_text = text[:(len(text) - len(percent_text)) / 2] + end_text = text[-(len(text) - len(start_text) - len(percent_text)):] + text = start_text + percent_text + end_text + self.last_length = len(text) + elif self.style == ConsoleProgressBar.STYLE_DOT: + if progress_happened: + text = "." + else: + text = "" + # don't remove any previous characters + self.last_length = 0 + else: + raise ValueError("ConsoleProgressBar: invalid style (%d)" % self.style) + self.output.write(text) + self.output.flush() + + def update(self, text=None, percent=None, **kwargs): + if self.style == ConsoleProgressBar.STYLE_NONE: + return + if text is not None: + self.text = text + if percent is not None: + self.percent = int(percent) + if self.last_length > 0: + # delete the previous line + self.output.write("\x08" * self.last_length) + self._output_current_state(progress_happened=(percent is not None)) + + def finish(self): + if self.style == ConsoleProgressBar.STYLE_NONE: + return + # show that we are finished + self.update(percent=100) + # finish the line + self.output.write(os.linesep) diff --git a/pycam/pycam/Gui/ControlsGTK.py b/pycam/pycam/Gui/ControlsGTK.py new file mode 100644 index 00000000..288e8ce0 --- /dev/null +++ b/pycam/pycam/Gui/ControlsGTK.py @@ -0,0 +1,349 @@ +""" +Copyright 2011 Lars Kruse + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + +import collections + +from gi.repository import Gtk +from gi.repository import GObject + +import pycam.Utils.log + + +_log = pycam.Utils.log.get_logger() + + +ParameterSectionWidget = collections.namedtuple("ParameterSectionWidget", + ("widget", "label", "weight", "signal_handlers")) + + +def _input_conversion(func): + def _input_conversion_wrapper(self, value): + if hasattr(self, "_input_converter") and self._input_converter: + new_value = self._input_converter(value) + else: + new_value = value + return func(self, new_value) + return _input_conversion_wrapper + + +def _output_conversion(func): + def _output_conversion_wrapper(self): + result = func(self) + if not (result is None) and hasattr(self, "_output_converter") and \ + self._output_converter: + result = self._output_converter(result) + return result + return _output_conversion_wrapper + + +class WidgetBaseClass: + + def get_widget(self): + return self.control + + def set_visible(self, state): + if state: + self.get_widget().show() + else: + self.get_widget().hide() + + def is_visible(self): + return self.get_widget().props.visible + + +class InputBaseClass(WidgetBaseClass): + + def connect(self, signal, handler, control=None): + if not handler: + return + if control is None: + control = self.get_widget() + if not hasattr(self, "_handler_ids"): + self._handler_ids = [] + self._handler_ids.append((control, control.connect(signal, handler))) + + def destroy(self): + while hasattr(self, "_handler_ids") and self._handler_ids: + control, handler_id = self._handler_ids.pop() + control.disconnect(handler_id) + if getattr(self, "destroy_widget", True): + self.get_widget().destroy() + + def set_conversion(self, set_conv=None, get_conv=None): + self._input_converter = set_conv + self._output_converter = get_conv + + def set_enable_destroy(self, do_destroy): + """ due to signal handler leakage we may want to disable "destroy" for some widgets """ + self.destroy_widget = do_destroy + + +class InputNumber(InputBaseClass): + + # 'float("inf")' was not accepted by pygtk - thus we use reasonable large limits + def __init__(self, digits=0, start=0, lower=-999999, upper=999999, increment=1, + change_handler=None): + # beware: the default values for lower/upper are both zero + adjustment = Gtk.Adjustment(value=start, lower=lower, upper=upper, step_incr=increment) + self.control = Gtk.SpinButton.new(adjustment, climb_rate=1, digits=digits) + self.control.set_value(start) + self.connect("value-changed", change_handler) + + @_output_conversion + def get_value(self): + return self.control.get_value() + + @_input_conversion + def set_value(self, value): + self.control.set_value(value) + + +class InputString(InputBaseClass): + + def __init__(self, start="", max_length=32, change_handler=None): + self.control = Gtk.Entry.new() + self.control.set_max_length(max_length) + self.control.set_text(start) + self.connect("changed", change_handler) + + @_output_conversion + def get_value(self): + return self.control.get_text() + + @_input_conversion + def set_value(self, value): + self.control.set_text(value) + + +class InputChoice(InputBaseClass): + + def __init__(self, choices, start=None, change_handler=None): + self.model = Gtk.ListStore(GObject.TYPE_STRING) + self._values = [] + for label, value in choices: + self.model.append((label, )) + self._values.append(value) + renderer = Gtk.CellRendererText() + self.control = Gtk.ComboBox.new_with_model(self.model) + self.control.pack_start(renderer, expand=False) + self.control.add_attribute(renderer, 'text', 0) + if start is None: + self.control.set_active(0) + else: + self.set_value(start) + self.connect("changed", change_handler) + + @_output_conversion + def get_value(self): + index = self.control.get_active() + if index < 0: + return None + else: + return self._values[index] + + @_input_conversion + def set_value(self, value): + if value is None: + if len(self._values) > 0: + # activate the first item as the default + self.control.set_active(0) + else: + self.control.set_active(-1) + else: + if value in self._values: + self.control.set_active(self._values.index(value)) + else: + # this may occur, if plugins were removed + _log.debug2("Unknown value: %s (expected: %s)", value, self._values) + + def update_choices(self, choices): + selected = self.get_value() + for choice_index, (label, value) in enumerate(choices): + if value not in self._values: + # this choice is new + self.model.insert(choice_index, (label, )) + self._values.insert(choice_index, value) + continue + index = self._values.index(value) + # the current choice is preceded by some obsolete items + while index > choice_index: + m_iter = self.model.get_iter((index,)) + self.model.remove(m_iter) + self._values.pop(index) + index -= 1 + # update the label column + row = self.model[index] + row[0] = label + # check if there are obsolete items after the last one + while len(self.model) > len(choices): + m_iter = self.model.get_iter((len(choices),)) + self.model.remove(m_iter) + self._values.pop(-1) + self.set_value(selected) + + +class InputTable(InputChoice): + + def __init__(self, choices, change_handler=None): + self.model = Gtk.ListStore(GObject.TYPE_STRING) + self._values = [] + for label, value in choices: + self.model.append((label,)) + self._values.append(value) + renderer = Gtk.CellRendererText() + self.control = Gtk.ScrolledWindow() + self.control.show() + self._treeview = Gtk.TreeView(self.model) + self._treeview.show() + self.control.add(self._treeview) + self.control.set_shadow_type(Gtk.ShadowType.ETCHED_OUT) + self.control.set_policy(Gtk.PolicyType.AUTOMATIC, Gtk.PolicyType.AUTOMATIC) + # Sadly there seems to be no way to adjust the size of the ScrolledWindow to its content. + # The default size of the ScrolledWindow is too small (making it hard to select the model). + self.control.set_size_request(200, -1) + column = Gtk.TreeViewColumn() + column.pack_start(renderer, expand=False) + column.set_attributes(renderer, text=0) + self._treeview.append_column(column) + self._treeview.set_headers_visible(False) + self._selection = self._treeview.get_selection() + self._selection.set_mode(Gtk.SelectionMode.MULTIPLE) + self.connect("changed", change_handler, self._selection) + + def get_value(self): + model, rows = self._selection.get_selected_rows() + return [self._values[path[0]] for path in rows] + + def set_value(self, items): + selection = self._selection + if items is None: + items = [] + for index, value in enumerate(self._values): + path = Gtk.TreePath.new_from_indices((index, )) + if value in items: + selection.select_path(path) + else: + selection.unselect_path(path) + + +class InputCheckBox(InputBaseClass): + + def __init__(self, start=False, change_handler=None): + self.control = Gtk.CheckButton() + self.control.set_active(start) + self.connect("toggled", change_handler) + + @_output_conversion + def get_value(self): + return self.control.get_active() + + @_input_conversion + def set_value(self, value): + self.control.set_active(value) + + +class ParameterSection(WidgetBaseClass): + + def __init__(self): + self._widgets = [] + self._table = Gtk.Table(rows=1, columns=2) + self._table.set_col_spacings(3) + self._table.set_row_spacings(3) + self.update_widgets() + self._update_widgets_visibility() + + def get_widget(self): + return self._table + + def add_widget(self, widget, label, weight=None): + # if no specific weight is given: keep the order of added events stable + if weight is None: + if self._widgets: + weight = max([item.weight for item in self._widgets]) + 1 + else: + weight = 50 + item = ParameterSectionWidget(widget, label, weight, []) + self._widgets.append(item) + for signal in ("hide", "show"): + item.signal_handlers.append(widget.connect(signal, self._update_widgets_visibility)) + self.update_widgets() + + def clear_widgets(self): + while self._widgets: + item = self._widgets.pop() + for signal_handler in item.signal_handlers: + item.widget.disconnect(signal_handler) + self.update_widgets() + + def update_widgets(self): + widgets = list(self._widgets) + widgets.sort(key=lambda item: item.weight) + # remove all widgets from the table + for child in self._table.get_children(): + self._table.remove(child) + # add the current controls + for index, widget in enumerate(widgets): + if hasattr(widget.widget, "get_label"): + # checkbox + widget.widget.set_label(widget.label) + self._table.attach(widget.widget, 0, 2, index, index + 1, xoptions=Gtk.Align.FILL, + yoptions=Gtk.Align.FILL) + elif not widget.label: + self._table.attach(widget.widget, 0, 2, index, index + 1, xoptions=Gtk.Align.FILL, + yoptions=Gtk.Align.FILL) + else: + # spinbutton, combobox, ... + label = Gtk.Label("%s:" % widget.label) + label.set_alignment(0.0, 0.5) + self._table.attach(label, 0, 1, index, index + 1, xoptions=Gtk.Align.FILL, + yoptions=Gtk.Align.FILL) + self._table.attach(widget.widget, 1, 2, index, index + 1, xoptions=Gtk.Align.FILL, + yoptions=Gtk.Align.FILL) + self._update_widgets_visibility() + + def _get_table_row_of_widget(self, widget): + for child in self._table.get_children(): + if child is widget: + return self._get_child_row(child) + return -1 + + def _get_child_row(self, widget): + return Gtk.Container.child_get_property(self._table, widget, "top-attach") + + def _update_widgets_visibility(self, widget=None): + # Hide and show labels (or other items) that share a row with a + # configured item (according to its visibility). + visibility_collector = [] + for widget in self._widgets: + table_row = self._get_table_row_of_widget(widget.widget) + is_visible = widget.widget.props.visible + visibility_collector.append(is_visible) + for child in self._table.get_children(): + if widget == child: + continue + if self._get_child_row(child) == table_row: + if is_visible: + child.show() + else: + child.hide() + # hide the complete section if all items are hidden + if any(visibility_collector): + self._table.show() + else: + self._table.hide() diff --git a/pycam/pycam/Gui/OpenGLTools.py b/pycam/pycam/Gui/OpenGLTools.py new file mode 100644 index 00000000..f038c1e6 --- /dev/null +++ b/pycam/pycam/Gui/OpenGLTools.py @@ -0,0 +1,84 @@ +""" +Copyright 2010-2011 Lars Kruse + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + +import math + +# careful import +try: + import OpenGL.GL as GL + import OpenGL.GLUT as GLUT +except (ImportError, RuntimeError): + pass + +from pycam.Geometry import sqrt +from pycam.Geometry.PointUtils import pcross, pnorm, pnormalized, psub + + +def keep_matrix(func): + def keep_matrix_wrapper(*args, **kwargs): + pushed_matrix_mode = GL.glGetIntegerv(GL.GL_MATRIX_MODE) + GL.glPushMatrix() + result = func(*args, **kwargs) + final_matrix_mode = GL.glGetIntegerv(GL.GL_MATRIX_MODE) + GL.glMatrixMode(pushed_matrix_mode) + GL.glPopMatrix() + GL.glMatrixMode(final_matrix_mode) + return result + return keep_matrix_wrapper + + +@keep_matrix +def draw_direction_cone(p1, p2, position=0.5, precision=12, size=0.1): + distance = psub(p2, p1) + length = pnorm(distance) + direction = pnormalized(distance) + if direction is None: + # zero-length line + return + cone_length = length * size + cone_radius = cone_length / 3.0 + # move the cone to the middle of the line + GL.glTranslatef((p1[0] + p2[0]) * position, + (p1[1] + p2[1]) * position, + (p1[2] + p2[2]) * position) + # rotate the cone according to the line direction + # The cross product is a good rotation axis. + cross = pcross(direction, (0, 0, -1)) + if pnorm(cross) != 0: + # The line direction is not in line with the z axis. + try: + angle = math.asin(sqrt(direction[0] ** 2 + direction[1] ** 2)) + except ValueError: + # invalid angle - just ignore this cone + return + # convert from radians to degree + angle = angle / math.pi * 180 + if direction[2] < 0: + angle = 180 - angle + GL.glRotatef(angle, cross[0], cross[1], cross[2]) + elif direction[2] == -1: + # The line goes down the z axis - turn it around. + GL.glRotatef(180, 1, 0, 0) + else: + # The line goes up the z axis - nothing to be done. + pass + # center the cone + GL.glTranslatef(0, 0, -cone_length * position) + # draw the cone + GLUT.glutWireCone(cone_radius, cone_length, precision, 1) diff --git a/pycam/pycam/Gui/Project.py b/pycam/pycam/Gui/Project.py new file mode 100755 index 00000000..d5bed45f --- /dev/null +++ b/pycam/pycam/Gui/Project.py @@ -0,0 +1,604 @@ +#!/usr/bin/env python3 +""" +Copyright 2010 Lars Kruse + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + + +import collections +import datetime +import logging +import os +import sys +import webbrowser + +from gi.repository import GObject +from gi.repository import Gtk +from gi.repository import Gdk +from gi.repository import Gio + +from pycam import DOC_BASE_URL, VERSION +from pycam.errors import InitializationError +import pycam.Importers +import pycam.Gui +from pycam.Utils.locations import get_ui_file_location, get_external_program_location +import pycam.Utils +from pycam.Utils.events import get_mainloop +import pycam.Utils.log + + +GTKBUILD_FILE = "pycam-project.ui" +GTKMENU_FILE = "menubar.xml" +GTKRC_FILE_WINDOWS = "gtkrc_windows" + +WINDOW_ICON_FILENAMES = ["logo_%dpx.png" % pixels for pixels in (16, 32, 48, 64, 128)] + +FILTER_MODEL = (("All supported model filetypes", + ("*.stl", "*.dxf", "*.svg", "*.eps", "*.ps")), + ("STL models", "*.stl"), + ("DXF contours", "*.dxf"), + ("SVG contours", "*.svg"), + ("PS contours", ("*.eps", "*.ps"))) + +FILENAME_DRAG_TARGETS = ("text/uri-list", "text-plain") + + +log = pycam.Utils.log.get_logger() + + +def get_icons_pixbuffers(): + result = [] + for icon_filename in WINDOW_ICON_FILENAMES: + abs_filename = get_ui_file_location(icon_filename, silent=True) + if abs_filename: + try: + result.append(Gdk.pixbuf_new_from_file(abs_filename)) + except GObject.GError as err_msg: + # ignore icons that are not found + log.debug("Failed to process window icon (%s): %s", abs_filename, err_msg) + else: + log.debug("Failed to locate window icon: %s", icon_filename) + return result + + +def gui_activity_guard(func): + def gui_activity_guard_wrapper(self, *args, **kwargs): + if self.gui_is_active: + return + self.gui_is_active = True + try: + result = func(self, *args, **kwargs) + except Exception: + # Catch possible exceptions (except system-exit ones) and + # report them. + log.error(pycam.Utils.get_exception_report()) + result = None + self.gui_is_active = False + return result + return gui_activity_guard_wrapper + + +QuestionResponse = collections.namedtuple("QuestionResponse", ("is_yes", "should_memorize")) + + +class ProjectGui(pycam.Gui.BaseUI): + + META_DATA_PREFIX = "PYCAM-META-DATA:" + + def __init__(self, event_manager): + super().__init__(event_manager) + self._event_handlers = [] + self.gui_is_active = False + self.gui = Gtk.Builder() + self._mainloop_is_running = False + self.mainloop = get_mainloop(use_gtk=True) + gtk_build_file = get_ui_file_location(GTKBUILD_FILE) + if gtk_build_file is None: + raise InitializationError("Failed to load GTK layout specification file: {}" + .format(gtk_build_file)) + self.gui.add_from_file(gtk_build_file) + if pycam.Utils.get_platform() == pycam.Utils.OSPlatform.WINDOWS: + gtkrc_file = get_ui_file_location(GTKRC_FILE_WINDOWS) + if gtkrc_file: + Gtk.rc_add_default_file(gtkrc_file) + Gtk.rc_reparse_all_for_settings(Gtk.settings_get_default(), True) + action_group = Gio.SimpleActionGroup() + self.settings.set("gtk_action_group_prefix", "pycam") + self.settings.set("gtk_action_group", action_group) + self.window = self.gui.get_object("ProjectWindow") + self.window.insert_action_group( + self.settings.get("gtk_action_group_prefix"), self.settings.get("gtk_action_group")) + self.settings.set("main_window", self.window) + # show stock items on buttons + # increase the initial width of the window (due to hidden elements) + self.window.set_default_size(400, -1) + # initialize the RecentManager (TODO: check for Windows) + if False and pycam.Utils.get_platform() == pycam.Utils.OSPlatform.WINDOWS: + # The pyinstaller binary for Windows fails mysteriously when trying + # to display the stock item. + # Error message: Gtk:ERROR:gtkrecentmanager.c:1942:get_icon_fallback: + # assertion failed: (retval != NULL) + self.recent_manager = None + else: + try: + self.recent_manager = Gtk.recent_manager_get_default() + except AttributeError: + # GTK 2.12.1 seems to have problems with "RecentManager" on + # Windows. Sadly this is the version, that is shipped with the + # "appunti" GTK packages for Windows (April 2010). + # see http://www.daa.com.au/pipermail/pygtk/2009-May/017052.html + self.recent_manager = None + # file loading + self.last_dirname = None + self.last_model_uri = None + # define callbacks and accelerator keys for the menu actions + for objname, callback, data, accel_key in ( + ("OpenModel", self.load_model_file, None, "o"), + ("Quit", self.destroy, None, "q"), + ("GeneralSettings", self.toggle_preferences_window, None, "p"), + ("UndoButton", self.restore_undo_state, None, "z"), + ("HelpIntroduction", self.show_help, "introduction", "F1"), + ("HelpSupportedFormats", self.show_help, "supported-formats", None), + ("HelpModelTransformations", self.show_help, "model-transformations", None), + ("HelpProcessSettings", self.show_help, "process-settings", None), + ("HelpBoundsSettings", self.show_help, "bounding-box", None), + ("HelpTouchOff", self.show_help, "touch-off", None), + ("Help3DView", self.show_help, "3d-view", None), + ("HelpServerMode", self.show_help, "server-mode", None), + ("HelpCommandLine", self.show_help, "cli-examples", None), + ("HelpHotkeys", self.show_help, "keyboard-shortcuts", None), + ("ProjectWebsite", self.show_help, "http://pycam.sourceforge.net", None), + ("DevelopmentBlog", self.show_help, "http://fab.senselab.org/pycam", None), + ("Forum", self.show_help, "http://sourceforge.net/projects/pycam/forums", None), + ("BugTracker", self.show_help, + "https://github.com/SebKuzminsky/pycam/issues/", None), + ("FeatureRequest", self.show_help, + "https://github.com/SebKuzminsky/pycam/issues/", None)): + item = self.gui.get_object(objname) + action = "activate" + if data is None: + item.connect(action, callback) + else: + item.connect(action, callback, data) + if accel_key: + key, mod = Gtk.accelerator_parse(accel_key) + accel_path = "/%s" % objname + item.set_accel_path(accel_path) + # Gtk.accel_map_change_entry(accel_path, key, mod, True) FIXME + # LinkButton does not work on Windows: https://bugzilla.gnome.org/show_bug.cgi?id=617874 + if pycam.Utils.get_platform() == pycam.Utils.OSPlatform.WINDOWS: + def open_url(widget, data=None): + webbrowser.open(widget.get_uri()) + Gtk.link_button_set_uri_hook(open_url) + # configure drag-n-drop for config files and models + self.settings.set("configure-drag-drop-func", self.configure_drag_and_drop) + self.settings.get("configure-drag-drop-func")(self.window) + # other events + self.window.connect("destroy", self.destroy) + self.window.connect("delete-event", self.destroy) + # the settings window + self.gui.get_object("CloseSettingsWindow").connect("clicked", + self.toggle_preferences_window, False) + self.gui.get_object("ResetPreferencesButton").connect("clicked", self.reset_preferences) + self.preferences_window = self.gui.get_object("GeneralSettingsWindow") + self.preferences_window.connect("delete-event", self.toggle_preferences_window, False) + self.preferences_window.insert_action_group( + self.settings.get("gtk_action_group_prefix"), self.settings.get("gtk_action_group")) + self._preferences_window_position = None + self._preferences_window_visible = False + # "about" window + self.about_window = self.gui.get_object("AboutWindow") + self.about_window.set_version(VERSION) + self.about_window.insert_action_group( + self.settings.get("gtk_action_group_prefix"), self.settings.get("gtk_action_group")) + self.gui.get_object("About").connect("activate", self.toggle_about_window, True) + # we assume, that the last child of the window is the "close" button + # TODO: fix this ugly hack! + about_window_children = self.gui.get_object("AboutWindowButtons").get_children() + if about_window_children: + # it seems to be possible that there are no children - weird :( + # see https://github.com/SebKuzminsky/pycam/issues/59 + about_window_children[-1].connect("clicked", self.toggle_about_window, False) + self.about_window.connect("delete-event", self.toggle_about_window, False) + # menu bar + uimanager = Gtk.UIManager() + self.settings.set("gtk-uimanager", uimanager) + self._accel_group = uimanager.get_accel_group() + # send a "delete" event on "CTRL-w" for every window + self._accel_group.connect( + ord('w'), Gdk.ModifierType.CONTROL_MASK, Gtk.AccelFlags.LOCKED, + lambda accel_group, window, *args: window.emit("delete-event", Gdk.Event())) + self._accel_group.connect( + ord('q'), Gdk.ModifierType.CONTROL_MASK, Gtk.AccelFlags.LOCKED, + lambda *args: self.destroy()) + self.settings.add_item("gtk-accel-group", lambda: self._accel_group) + for obj in self.gui.get_objects(): + if isinstance(obj, Gtk.Window): + obj.add_accel_group(self._accel_group) + # preferences tab + preferences_book = self.gui.get_object("PreferencesNotebook") + + def clear_preferences(): + for child in preferences_book.get_children(): + preferences_book.remove(child) + + def add_preferences_item(item, name): + preferences_book.append_page(item, Gtk.Label(name)) + + self.settings.register_ui_section("preferences", add_preferences_item, clear_preferences) + for obj_name, label, priority in ( + ("GeneralSettingsPrefTab", "General", -50), + ("ProgramsPrefTab", "Programs", 50)): + obj = self.gui.get_object(obj_name) + obj.unparent() + self.settings.register_ui("preferences", label, obj, priority) + # general preferences + general_prefs = self.gui.get_object("GeneralPreferencesBox") + + def clear_general_prefs(): + for item in general_prefs.get_children(): + general_prefs.remove(item) + + def add_general_prefs_item(item, name): + general_prefs.pack_start(item, expand=False, fill=False, padding=3) + + self.settings.register_ui_section("preferences_general", add_general_prefs_item, + clear_general_prefs) + # set defaults + main_tab = self.gui.get_object("MainTabs") + + def clear_main_tab(): + while main_tab.get_n_pages() > 0: + main_tab.remove_page(0) + + def add_main_tab_item(item, name): + main_tab.append_page(item, Gtk.Label(name)) + + # TODO: move these to plugins, as well + self.settings.register_ui_section("main", add_main_tab_item, clear_main_tab) + main_window = self.gui.get_object("WindowBox") + + def clear_main_window(): + main_window.foreach(main_window.remove) + + def add_main_window_item(item, name, **extra_args): + # some widgets may want to override the defaults + args = {"expand": False, "fill": False, "padding": 3} + args.update(extra_args) + main_window.pack_start(item, **args) + + main_tab.unparent() + self.settings.register_ui_section("main_window", add_main_window_item, clear_main_window) + self.settings.register_ui("main_window", "Tabs", main_tab, -20, + args_dict={"expand": True, "fill": True}) + + def disable_gui(): + self.menubar.set_sensitive(False) + main_tab.set_sensitive(False) + + def enable_gui(): + self.menubar.set_sensitive(True) + main_tab.set_sensitive(True) + + # configure locations of external programs + for auto_control_name, location_control_name, browse_button, key in ( + ("ExternalProgramInkscapeAuto", "ExternalProgramInkscapeControl", + "ExternalProgramInkscapeBrowse", "inkscape"), + ("ExternalProgramPstoeditAuto", "ExternalProgramPstoeditControl", + "ExternalProgramPstoeditBrowse", "pstoedit")): + self.gui.get_object(auto_control_name).connect("clicked", + self._locate_external_program, key) + location_control = self.gui.get_object(location_control_name) + self.settings.add_item("external_program_%s" % key, location_control.get_text, + location_control.set_text) + self.gui.get_object(browse_button).connect("clicked", + self._browse_external_program_location, key) + for objname, callback in ( + ("ResetWorkspace", lambda widget: self.reset_workspace()), + ("LoadWorkspace", lambda widget: self.load_workspace_dialog()), + ("SaveWorkspace", lambda widget: self.save_workspace_dialog( + self.last_workspace_uri)), + ("SaveAsWorkspace", lambda widget: self.save_workspace_dialog())): + self.gui.get_object(objname).connect("activate", callback) + # set the icons (in different sizes) for all windows + # Gtk.window_set_default_icon_list(*get_icons_pixbuffers()) FIXME + # load menu data + gtk_menu_file = get_ui_file_location(GTKMENU_FILE) + if gtk_menu_file is None: + raise InitializationError("Failed to load GTK menu specification file: {}" + .format(gtk_menu_file)) + uimanager.add_ui_from_file(gtk_menu_file) + # make the actions defined in the GTKBUILD file available in the menu + actiongroup = Gtk.ActionGroup("menubar") + for action in [aobj for aobj in self.gui.get_objects() if isinstance(aobj, Gtk.Action)]: + actiongroup.add_action(action) + # the "pos" parameter is optional since 2.12 - we can remove it later + uimanager.insert_action_group(actiongroup) + # the "recent files" sub-menu + if self.recent_manager is not None: + recent_files_menu = Gtk.RecentChooserMenu(self.recent_manager) + recent_files_menu.set_name("RecentFilesMenu") + recent_menu_filter = Gtk.RecentFilter() + case_converter = pycam.Utils.get_case_insensitive_file_pattern + for filter_name, patterns in FILTER_MODEL: + if not isinstance(patterns, (list, set, tuple)): + patterns = [patterns] + # convert it into a mutable list (instead of set/tuple) + patterns = list(patterns) + for index in range(len(patterns)): + patterns[index] = case_converter(patterns[index]) + for pattern in patterns: + recent_menu_filter.add_pattern(pattern) + recent_files_menu.add_filter(recent_menu_filter) + recent_files_menu.set_show_numbers(True) + # non-local files (without "file://") are not supported. yet + recent_files_menu.set_local_only(False) + # most recent files to the top + recent_files_menu.set_sort_type(Gtk.RECENT_SORT_MRU) + # show only ten files + recent_files_menu.set_limit(10) + uimanager.get_widget("/MenuBar/FileMenu/OpenRecentModelMenu").set_submenu( + recent_files_menu) + recent_files_menu.connect("item-activated", self.load_recent_model_file) + else: + self.gui.get_object("OpenRecentModel").set_visible(False) + # load the menubar and connect functions to its items + self.menubar = uimanager.get_widget("/MenuBar") + # dict of all merge-ids + menu_merges = {} + + def clear_menu(menu_key): + for merge in menu_merges.get(menu_key, []): + uimanager.remove_ui(merge) + + def append_menu_item(menu_key, base_path, widget, name): + merge_id = uimanager.new_merge_id() + if widget: + action_group = widget.props.action_group + if action_group not in uimanager.get_action_groups(): + uimanager.insert_action_group(action_group, -1) + widget_name = widget.get_name() + item_type = Gtk.UIManagerItemType.MENU + else: + widget_name = name + item_type = Gtk.UIManagerItemType.SEPARATOR + uimanager.add_ui(merge_id, base_path, name, widget_name, item_type, False) + if menu_key not in menu_merges: + menu_merges[menu_key] = [] + menu_merges[menu_key].append(merge_id) + + def get_menu_funcs(menu_key, base_path): + return ( + lambda widget, name: append_menu_item(menu_key, base_path, widget, name), + lambda: clear_menu(menu_key) + ) + + for ui_name, base_path in ( + ("view_menu", "/MenuBar/ViewMenu"), + ("file_menu", "/MenuBar/FileMenu"), + ("edit_menu", "/MenuBar/EditMenu"), + ("export_menu", "/MenuBar/FileMenu/ExportMenu")): + append_func, clear_func = get_menu_funcs(ui_name, base_path) + self.settings.register_ui_section(ui_name, append_func, clear_func) + self.settings.register_ui("file_menu", "Quit", self.gui.get_object("Quit"), 100) + self.settings.register_ui("file_menu", "QuitSeparator", None, 95) + self.settings.register_ui("main_window", "Main", self.menubar, -100) + self.settings.set("set_last_filename", self.add_to_recent_file_list) + self._event_handlers.extend(( + ("history-changed", self._update_undo_button), + ("model-change-after", "visual-item-updated"), + ("gui-disable", disable_gui), + ("gui-enable", enable_gui), + ("notify-file-saved", self.add_to_recent_file_list), + ("notify-file-opened", self.add_to_recent_file_list), + )) + for name, target in self._event_handlers: + self.settings.register_event(name, target) + # allow the task settings control to be updated + self.mainloop.update() + # register a logging handler for displaying error messages + pycam.Utils.log.add_gtk_gui(self.window, logging.ERROR) + self.window.show() + self.mainloop.update() + + def get_question_response(self, question, default_response, allow_memorize=False): + """display a dialog presenting a simple question and yes/no buttons + + @param allow_memorize: optionally a "Do not ask again" checkbox can be included + @returns aa tuple of two booleans ("is yes", "should memorize") + """ + dialog = Gtk.MessageDialog(self.window, Gtk.DialogFlags.DESTROY_WITH_PARENT, + Gtk.MessageType.QUESTION, Gtk.ButtonsType.YES_NO, question) + if default_response: + dialog.set_default_response(Gtk.ResponseType.YES) + else: + dialog.set_default_response(Gtk.ResponseType.NO) + memorize_choice = Gtk.CheckButton("Do not ask again") + if allow_memorize: + dialog.get_content_area().add(memorize_choice) + memorize_choice.show() + is_yes = (dialog.run() == Gtk.ResponseType.YES) + should_memorize = memorize_choice.get_active() + dialog.destroy() + return QuestionResponse(is_yes, should_memorize) + + def show_help(self, widget=None, page="Main_Page"): + if not page.startswith("http"): + url = DOC_BASE_URL % page + else: + url = page + webbrowser.open(url) + + def _browse_external_program_location(self, widget=None, key=None): + title = "Select the executable for '%s'" % key + location = self.settings.get("get_filename_func")(title=title, mode_load=True, + parent=self.preferences_window) + if location is not None: + self.settings.set("external_program_%s" % key, location) + + def _locate_external_program(self, widget=None, key=None): + # the button was just activated + location = get_external_program_location(key) + if not location: + log.error("Failed to locate the external program '%s'. Please install the program and " + "try again.%sOr maybe you need to specify the location manually.", + key, os.linesep) + else: + # store the new setting + self.settings.set("external_program_%s" % key, location) + + @gui_activity_guard + def toggle_about_window(self, widget=None, event=None, state=None): + # only "delete-event" uses four arguments + # TODO: unify all these "toggle" functions for different windows into one single function + # (including storing the position) + if state is None: + state = event + if state: + self.about_window.show() + else: + self.about_window.hide() + # don't close the window - just hide it (for "delete-event") + return True + + @gui_activity_guard + def toggle_preferences_window(self, widget=None, event=None, state=None): + if state is None: + # the "delete-event" issues the additional "event" argument + state = event + if state is None: + state = not self._preferences_window_visible + if state: + if self._preferences_window_position: + self.preferences_window.move(*self._preferences_window_position) + self.preferences_window.show() + else: + self._preferences_window_position = self.preferences_window.get_position() + self.preferences_window.hide() + self._preferences_window_visible = state + # don't close the window - just hide it (for "delete-event") + return True + + def _update_undo_button(self): + history = self.settings.get("history") + is_enabled = (history.get_undo_steps_count() > 0) if history else False + self.gui.get_object("UndoButton").set_sensitive(is_enabled) + + def run_forever(self): + self._mainloop_is_running = True + # the main loop returns as soon "stop" is called + self.mainloop.run() + # in case we were interrupted: initiate a shutdown + self.settings.emit_event("mainloop-stop") + + def stop(self): + if self._mainloop_is_running: + self.window.hide() + self._mainloop_is_running = False + self.mainloop.stop() + for name, target in self._event_handlers: + self.settings.unregister_event(name, target) + + def destroy(self, widget=None, data=None): + # Our caller is supposed to call our "stop" method in this event handler, after everything + # is finished. + self.settings.emit_event("mainloop-stop") + + def configure_drag_and_drop(self, obj): + obj.connect("drag-data-received", self.handle_data_drop) + return # FIXME + flags = Gtk.DestDefaults.ALL + targets = [(key, Gtk.TARGET_OTHER_APP, index) + for index, key in enumerate(FILENAME_DRAG_TARGETS)] + actions = (Gdk.ACTION_COPY | Gdk.ACTION_LINK | Gdk.ACTION_DEFAULT + | Gdk.ACTION_PRIVATE | Gdk.ACTION_ASK) + obj.drag_dest_set(flags, targets, actions) + + def handle_data_drop(self, widget, drag_context, x, y, selection_data, info, timestamp): + if info != 0: + uris = [str(selection_data.data)] + elif pycam.Utils.get_platform() == pycam.Utils.OSPlatform.WINDOWS: + uris = selection_data.data.splitlines() + else: + uris = selection_data.get_uris() + if not uris: + # empty selection + return True + for uri in uris: + if not uri or (uri == chr(0)): + continue + detected_filetype = pycam.Importers.detect_file_type(uri, quiet=True) + if detected_filetype: + # looks like the file can be loaded + if self.load_model_file(filename=detected_filetype.uri): + return True + if len(uris) > 1: + log.error("Failed to open any of the given models: %s", str(uris)) + else: + log.error("Failed to open the model: %s", str(uris[0])) + return False + + def load_recent_model_file(self, widget): + uri = widget.get_current_uri() + self.load_model_file(filename=uri) + + @gui_activity_guard + def load_model_file(self, widget=None, filename=None, store_filename=True): + if callable(filename): + filename = filename() + if not filename: + filename = self.settings.get("get_filename_func")("Loading model ...", mode_load=True, + type_filter=FILTER_MODEL) + if filename: + name_suggestion = os.path.splitext(os.path.basename(filename))[0] + model_params = {"source": {"type": "file", "location": filename}} + self.settings.get("models").add_model(model_params, name=name_suggestion) + self.add_to_recent_file_list(filename) + return True + + def add_to_recent_file_list(self, filename): + # Add the item to the recent files list - if it already exists. + # Otherwise it will be added later after writing the file. + uri = pycam.Utils.URIHandler(filename) + if uri.exists(): + # skip this, if the recent manager is not available (e.g. GTK 2.12.1 on Windows) + if self.recent_manager: + if self.recent_manager.has_item(uri.get_url()): + try: + self.recent_manager.remove_item(uri.get_url()) + except GObject.GError: + pass + self.recent_manager.add_item(uri.get_url()) + # store the directory of the last loaded file + if uri.is_local(): + self.last_dirname = os.path.dirname(uri.get_local_path()) + + def get_meta_data(self): + filename = "Filename: %s" % str(self.last_model_uri) + timestamp = "Timestamp: %s" % str(datetime.datetime.now()) + version = "Version: %s" % VERSION + result = [] + for text in (filename, timestamp, version): + result.append("%s %s" % (self.META_DATA_PREFIX, text)) + return os.linesep.join(result) + + +if __name__ == "__main__": + GUI = ProjectGui() + if len(sys.argv) > 1: + GUI.load_model_file(sys.argv[1]) + get_mainloop().run() diff --git a/pycam/pycam/Gui/Settings.py b/pycam/pycam/Gui/Settings.py new file mode 100644 index 00000000..9bc24d6a --- /dev/null +++ b/pycam/pycam/Gui/Settings.py @@ -0,0 +1,128 @@ +""" +Copyright 2010 Lars Kruse + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + +import os + +import pycam.Cutters +import pycam.Toolpath +import pycam.Utils +import pycam.Utils.log +from pycam.Utils.locations import open_file_context + + +CONFIG_DIR = "pycam" + +log = pycam.Utils.log.get_logger() + + +def get_config_dirname(): + try: + from win32com.shell import shellcon, shell + homedir = shell.SHGetFolderPath(0, shellcon.CSIDL_APPDATA, 0, 0) + config_dir = os.path.join(homedir, CONFIG_DIR) + except ImportError: + # quick semi-nasty fallback for non-windows/win32com case + homedir = os.path.expanduser("~") + # hide the config directory for unixes + config_dir = os.path.join(homedir, "." + CONFIG_DIR) + if not os.path.isdir(config_dir): + try: + os.makedirs(config_dir) + except OSError: + log.warn("Failed to create preferences directory in your user's home directory: %s", + config_dir) + config_dir = None + return config_dir + + +def get_config_filename(): + config_dir = get_config_dirname() + return None if config_dir is None else os.path.join(config_dir, "preferences.conf") + + +def get_workspace_filename(): + config_dir = get_config_dirname() + return None if config_dir is None else os.path.join(config_dir, "workspace.yml") + + +def open_preferences_file(mode="r"): + return open_file_context(get_config_filename(), mode, True) + + +def open_workspace_file(mode="r"): + return open_file_context(get_workspace_filename(), mode, True) + + +class Settings(dict): + + GET_INDEX = 0 + SET_INDEX = 1 + VALUE_INDEX = 2 + + def __getitem_orig(self, key): + return super().__getitem__(key) + + def __setitem_orig(self, key, value): + super().__setitem__(key, value) + + def add_item(self, key, get_func=None, set_func=None): + self.__setitem_orig(key, [None, None, None]) + self.define_get_func(key, get_func) + self.define_set_func(key, set_func) + self.__getitem_orig(key)[self.VALUE_INDEX] = None + + def set(self, key, value): + self[key] = value + + def get(self, key, default=None): + try: + return self.__getitem__(key) + except KeyError: + return default + + def define_get_func(self, key, get_func=None): + if key not in self: + return + if get_func is None: + real_get_func = lambda: self.__getitem_orig(key)[self.VALUE_INDEX] + else: + real_get_func = get_func + self.__getitem_orig(key)[self.GET_INDEX] = real_get_func + + def define_set_func(self, key, set_func=None): + def default_set_func(value): + self.__getitem_orig(key)[self.VALUE_INDEX] = value + if key not in self: + return + if set_func is None: + set_func = default_set_func + self.__getitem_orig(key)[self.SET_INDEX] = set_func + + def __getitem__(self, key): + try: + return self.__getitem_orig(key)[self.GET_INDEX]() + except TypeError as err_msg: + log.info("Failed to retrieve setting '%s': %s", key, err_msg) + return None + + def __setitem__(self, key, value): + if key not in self: + self.add_item(key) + self.__getitem_orig(key)[self.SET_INDEX](value) + self.__getitem_orig(key)[self.VALUE_INDEX] = value diff --git a/pycam/pycam/Gui/__init__.py b/pycam/pycam/Gui/__init__.py new file mode 100644 index 00000000..1e5fc0f3 --- /dev/null +++ b/pycam/pycam/Gui/__init__.py @@ -0,0 +1,296 @@ +from configparser import ConfigParser +import enum +import json + +from pycam.errors import PycamBaseException +import pycam.Gui.Settings +from pycam.Utils.locations import open_file_context +import pycam.Utils.log +from pycam.workspace import CollectionName + + +FILE_FILTER_WORKSPACE = (("Workspace Files", "*.yml"),) + +PREFERENCES_DEFAULTS = { + "unit": "mm", + "save_workspace_on_exit": "ask", + "show_model": True, + "show_support_preview": True, + "show_axes": True, + "show_dimensions": True, + "show_bounding_box": True, + "show_toolpath": True, + "show_tool": False, + "show_directions": False, + "show_grid": False, + "color_background": {"red": 0.0, "green": 0.0, "blue": 0.0, "alpha": 1.0}, + "color_model": {"red": 0.5, "green": 0.5, "blue": 1.0, "alpha": 1.0}, + "color_support_preview": {"red": 0.8, "green": 0.8, "blue": 0.3, "alpha": 1.0}, + "color_bounding_box": {"red": 0.3, "green": 0.3, "blue": 0.3, "alpha": 1.0}, + "color_tool": {"red": 1.0, "green": 0.2, "blue": 0.2, "alpha": 1.0}, + "color_toolpath_cut": {"red": 1.0, "green": 0.5, "blue": 0.5, "alpha": 1.0}, + "color_toolpath_return": {"red": 0.9, "green": 1.0, "blue": 0.1, "alpha": 0.4}, + "color_material": {"red": 1.0, "green": 0.5, "blue": 0.0, "alpha": 1.0}, + "color_grid": {"red": 0.75, "green": 1.0, "blue": 0.7, "alpha": 0.55}, + "view_light": True, + "view_shadow": True, + "view_polygon": True, + "view_perspective": True, + "tool_progress_max_fps": 30.0, + "gcode_filename_extension": "", + "external_program_inkscape": "", + "external_program_pstoedit": "", + "touch_off_on_startup": False, + "touch_off_on_tool_change": False, + "touch_off_position_type": "absolute", + "touch_off_position_x": 0.0, + "touch_off_position_y": 0.0, + "touch_off_position_z": 0.0, + "touch_off_rapid_move": 0.0, + "touch_off_slow_move": 1.0, + "touch_off_slow_feedrate": 20, + "touch_off_height": 0.0, + "touch_off_pause_execution": False, +} +""" the listed items will be loaded/saved via the preferences file in the +user's home directory on startup/shutdown""" + +DEFAULT_WORKSPACE = """ +models: + model: + source: + type: file + location: samples/Box0.stl + X-Application: + pycam-gtk: + name: Example 3D Model + color: { red: 0.1, green: 0.4, blue: 1.0, alpha: 0.8 } + +tools: + rough: + tool_id: 1 + shape: flat_bottom + radius: 3 + feed: 600 + spindle: {speed: 1000.0, spin_up_delay: 2.0, spin_up_enabled: true} + X-Application: { pycam-gtk: { name: Big Tool } } + fine: + tool_id: 2 + shape: ball_nose + radius: 1 + feed: 1200 + spindle: {speed: 1000.0, spin_up_delay: 2.0, spin_up_enabled: true} + X-Application: { pycam-gtk: { name: Small Tool } } + +processes: + process_slicing: + strategy: slice + path_pattern: grid + overlap: 0.10 + step_down: 3.0 + grid_direction: y + milling_style: ignore + X-Application: { pycam-gtk: { name: Slice (rough) } } + process_surfacing: + strategy: surface + overlap: 0.80 + step_down: 1.0 + grid_direction: x + milling_style: ignore + X-Application: { pycam-gtk: { name: Surface (fine) } } + +bounds: + minimal: + specification: margins + lower: [5, 5, 0] + upper: [5, 5, 1] + X-Application: { pycam-gtk: { name: minimal } } + +tasks: + rough: + type: milling + tool: rough + process: process_slicing + bounds: minimal + collision_models: [ model ] + X-Application: { pycam-gtk: { name: Quick Removal } } + fine: + type: milling + tool: fine + process: process_surfacing + bounds: minimal + collision_models: [ model ] + X-Application: { pycam-gtk: { name: Finishing } } + +export_settings: + milling: + gcode: + corner_style: {mode: optimize_tolerance, motion_tolerance: 0.0, naive_tolerance: 0.0} + plunge_feedrate: 100 + safety_height: 25 + step_width: {x: 0.0001, y: 0.0001, z: 0.0001} + X-Application: { pycam-gtk: { name: Milling Settings } } +""" + +log = pycam.Utils.log.get_logger() + + +class QuestionStatus(enum.Enum): + YES = "yes" + NO = "no" + ASK = "ask" + + +class BaseUI: + + def __init__(self, event_manager): + self.settings = event_manager + self.last_workspace_uri = None + + def reset_preferences(self, widget=None): + """ reset all preferences to their default values """ + for key, value in PREFERENCES_DEFAULTS.items(): + self.settings.set(key, value) + # redraw the model due to changed colors, display items ... + self.settings.emit_event("model-change-after") + + def load_preferences(self): + """ load all settings (see Preferences window) from a file in the user's home directory """ + config = ConfigParser() + try: + with pycam.Gui.Settings.open_preferences_file() as in_file: + config.read_file(in_file) + except FileNotFoundError as exc: + log.info("No preferences file found (%s). Starting with default preferences.", exc) + except OSError as exc: + log.error("Failed to read preferences: %s", exc) + return + # report any ignored (obsolete) preference keys present in the file + for item, value in config.items("DEFAULT"): + if item not in PREFERENCES_DEFAULTS.keys(): + log.warn("Skipping obsolete preference item: %s", str(item)) + for item in PREFERENCES_DEFAULTS: + if not config.has_option("DEFAULT", item): + # a new preference setting is missing in the (old) file + continue + value_json = config.get("DEFAULT", item) + try: + value = json.loads(value_json) + except ValueError as exc: + log.warning("Failed to parse configuration setting '%s': %s", item, exc) + value = PREFERENCES_DEFAULTS[item] + wanted_type = type(PREFERENCES_DEFAULTS[item]) + if wanted_type is float: + # int is accepted for floats, too + wanted_type = (float, int) + if not isinstance(value, wanted_type): + log.warning("Falling back to default configuration setting for '%s' due to " + "an invalid value type being parsed: %s != %s", + item, type(value), wanted_type) + value = PREFERENCES_DEFAULTS[item] + self.settings.set(item, value) + + def save_preferences(self): + """ save all settings (see Preferences window) to a file in the user's home directory """ + config = ConfigParser() + for item in PREFERENCES_DEFAULTS: + config.set("DEFAULT", item, json.dumps(self.settings.get(item))) + try: + with pycam.Gui.Settings.open_preferences_file(mode="w") as out_file: + config.write(out_file) + except OSError as exc: + log.warn("Failed to write preferences file: %s", exc) + + def restore_undo_state(self, widget=None, event=None): + history = self.settings.get("history") + if history and history.get_undo_steps_count() > 0: + history.restore_previous_state() + else: + log.info("No previous undo state available - request ignored") + + def save_startup_workspace(self): + return self.save_workspace_to_file(pycam.Gui.Settings.get_workspace_filename(), + remember_uri=False) + + def load_startup_workspace(self): + filename = pycam.Gui.Settings.get_workspace_filename() + return self.load_workspace_from_file(filename, remember_uri=False, + default_content=DEFAULT_WORKSPACE) + + def save_workspace_to_file(self, filename, remember_uri=True): + from pycam.Flow.parser import dump_yaml + if remember_uri: + self.last_workspace_uri = pycam.Utils.URIHandler(filename) + self.settings.get("set_last_filename")(filename) + log.info("Storing workspace in file: %s", filename) + try: + with open_file_context(filename, "w", True) as out_file: + dump_yaml(target=out_file) + return True + except OSError as exc: + log.error("Failed to store workspace in file '%s': %s", filename, exc) + return False + + def load_workspace_from_file(self, filename, remember_uri=True, default_content=None): + if remember_uri: + self.last_workspace_uri = pycam.Utils.URIHandler(filename) + self.settings.get("set_last_filename")(filename) + log.info("Loading workspace from file: %s", filename) + try: + with open_file_context(filename, "r", True) as in_file: + content = in_file.read() + except OSError as exc: + if default_content: + content = default_content + else: + log.error("Failed to read workspace file (%s): %s", filename, exc) + return False + try: + return self.load_workspace_from_description(content) + except PycamBaseException as exc: + log.warning("Failed to load workspace description from file (%s): %s", filename, exc) + if default_content: + log.info("Falling back to default workspace due to load error") + self.load_workspace_from_description(default_content) + return False + + def load_workspace_dialog(self, filename=None): + if not filename: + filename = self.settings.get("get_filename_func")( + "Loading workspace ...", mode_load=True, type_filter=FILE_FILTER_WORKSPACE) + # no filename selected -> no action + if not filename: + return False + remember_uri = True + else: + remember_uri = False + return self.load_workspace_from_file(filename, remember_uri=remember_uri) + + def save_workspace_dialog(self, filename=None): + if not filename: + # we open a dialog + filename = self.settings.get("get_filename_func")( + "Save workspace to ...", mode_load=False, type_filter=FILE_FILTER_WORKSPACE, + filename_templates=(self.last_workspace_uri, self.last_model_uri)) + # no filename selected -> no action + if not filename: + return False + remember_uri = True + else: + remember_uri = False + return self.save_workspace_to_file(filename, remember_uri=remember_uri) + + def load_workspace_from_description(self, description): + from pycam.Flow.history import merge_history_and_block_events + from pycam.Flow.parser import parse_yaml, validate_collections, RestoreCollectionsOnError + with merge_history_and_block_events(self.settings): + with RestoreCollectionsOnError(): + parse_yaml(description, + excluded_sections={CollectionName.TOOLPATHS, CollectionName.EXPORTS}, + reset=True) + validate_collections() + return True + return False + + def reset_workspace(self): + self.load_workspace_from_description(DEFAULT_WORKSPACE) diff --git a/pycam/pycam/Gui/common.py b/pycam/pycam/Gui/common.py new file mode 100644 index 00000000..fc079aa0 --- /dev/null +++ b/pycam/pycam/Gui/common.py @@ -0,0 +1,219 @@ +""" +Copyright 2010 Lars Kruse + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + +import os +# Tkinter is used for "EmergencyDialog" below - but we will try to import it +# carefully. +# import Tkinter +import sys + +import pycam.Utils.log + +log = pycam.Utils.log.get_logger() + + +DEPENDENCY_DESCRIPTION = { + "gtk": ("Python bindings for GTK+", + "Install the package 'python-gtk2'", + "see http://www.bonifazi.eu/appunti/pygtk_windows_installer.exe"), + "opengl": ("Python bindings for OpenGL", + "Install the package 'python-opengl'", + "see http://www.bonifazi.eu/appunti/pygtk_windows_installer.exe"), + "gtkgl": ("GTK extension for OpenGL", + "The OpenGL widget for GTK3 is not yet supported by pycam", + "code contributions are welcome - see http://pycam.sf.net/"), + "gl": ("OpenGL support of graphic driver", + "Your current graphic driver does not seem to support OpenGL.", + ""), +} + +REQUIREMENTS_LINK = "http://pycam.sourceforge.net/requirements" + +# Usually the windows registry "HKEY_LOCAL_MACHINE/SOFTWARE/Gtk+/Path" contains +# something like: C:\Programs\Common files\GTK +# Afterwards we need to append "\bin" to get the library subdirectory. +WINDOWS_GTK_REGISTRY_PATH = r"SOFTWARE\Gtk+" +WINDOWS_GTK_REGISTRY_KEY = "Path" +WINDOWS_GTK_LIB_SUBDIR = "bin" + + +def import_gtk_carefully(): + """ especially for windows: try to locate required libraries manually, if + the import of GTK fails + """ + try: + import _winreg + in_windows = True + except ImportError: + in_windows = False + try: + import gi + # avoid Gtk version warnings for later imports + gi.require_version("Gtk", "3.0") + except ImportError: + pass + if not in_windows: + # We are not in windows - thus we just try to import gtk without + # the need for any more manual preparations. + import gi.repository.Gtk # noqa F401 + else: + # We try to retrieve the GTK library directory from the registry before + # trying any import. Otherwise the user will always see a warning + # dialog regarding the missing libglib-2.0-0.dll file. This Windows + # warning dialog can't be suppressed - thus we should try to avoid it. + try: + reg_path = _winreg.OpenKey(_winreg.HKEY_LOCAL_MACHINE, WINDOWS_GTK_REGISTRY_PATH) + gtk_dll_path = os.path.join(_winreg.QueryValueEx( + reg_path, WINDOWS_GTK_REGISTRY_KEY)[0], WINDOWS_GTK_LIB_SUBDIR) + _winreg.CloseKey(reg_path) + except NameError: + # GTK is probably not installed - the next import will fail + pass + except OSError: + # "WindowsError" - this happens with pyinstaller binaries + pass + else: + # add the new path to the PATH environment variable + if "PATH" in os.environ: + if gtk_dll_path not in os.environ["PATH"].split(os.pathsep): + # append the guessed path to the library search path + os.environ["PATH"] += "%s%s" % (os.pathsep, gtk_dll_path) + else: + os.environ["PATH"] = gtk_dll_path + # everything should be prepared - now we try to import it again + import gi.repository.Gtk # noqa F401 + + +def requirements_details_gtk(): + result = {} + try: + import_gtk_carefully() + result["gtk"] = True + except ImportError as err_msg: + log.error("Failed to import GTK: %s", str(err_msg)) + result["gtk"] = False + return result + + +def recommends_details_gtk(): + result = {} + try: + import gtk.gtkgl # noqa F401 + result["gtkgl"] = True + result["gl"] = True + except ImportError as err_msg: + log.warn("Failed to import OpenGL for GTK (ImportError): %s", str(err_msg)) + result["gtkgl"] = False + except RuntimeError as err_msg: + log.warn("Failed to import OpenGL for GTK (RuntimeError): %s", str(err_msg)) + result["gl"] = False + try: + import OpenGL # noqa F401 + result["opengl"] = True + except ImportError as err_msg: + log.warn("Failed to import OpenGL: %s", str(err_msg)) + result["opengl"] = False + + +def check_dependencies(details): + """you can feed this function with the output of + '(requirements|recommends)_details_*'. + The result is True if all dependencies are met. + """ + failed = [key for (key, state) in details.items() if not state] + return len(failed) == 0 + + +def get_dependency_report(details, prefix=""): + result = [] + columns = {"description": 0, "advice": 1} + if sys.platform.startswith("win"): + columns["advice"] = 2 + for key, state in details.items(): + text = "%s%s: " % (prefix, DEPENDENCY_DESCRIPTION[key][columns["description"]]) + if state: + text += "OK" + else: + text += "MISSING (%s)" % DEPENDENCY_DESCRIPTION[key][columns["advice"]] + result.append(text) + return os.linesep.join(result) + + +def set_parent_controls_sensitivity(widget, new_state): + """ go through all widgets above the given one and change their + "sensitivity" state. This effects everything besides the single + given widget, its direct line of ancestors and all attached + labels (e.g for notebook tabs). + Useful for disabling the screen while an action is going on. + """ + def disable_if_different(obj, extra_args): + parent, active = extra_args + if hasattr(parent, "get_tab_label") and (obj is parent.get_tab_label(active)): + # skip the label of the current tab (in a notebook) + return + if obj is not active: + obj.set_sensitive(new_state) + child = widget + parent = widget.get_parent() + while parent: + # Use "forall" instead of "foreach" - this also catches all tab labels. + parent.forall(disable_if_different, (parent, child)) + child = parent + parent = parent.get_parent() + + +class EmergencyDialog: + """ This graphical message window requires no external dependencies. + The Tk interface package is part of the main python distribution. + Use this class for displaying dependency errors (especially on Windows). + """ + + def __init__(self, title, message): + try: + import Tkinter + except ImportError: + # tk is not installed + log.warn("Failed to show error dialog due to a missing Tkinter Python package.") + return + try: + root = Tkinter.Tk() + except Tkinter.TclError as err_msg: + log.info("Failed to create error dialog window (%s). Probably you are running PyCAM " + "from a terminal.", err_msg) + return + root.title(title) + root.bind("", self.finish) + root.bind("", self.finish) + root.minsize(300, 100) + self.root = root + frame = Tkinter.Frame(root) + frame.pack() + # add text output as label + message = Tkinter.Message(root, text=message) + # we need some space for the dependency report + message["width"] = 800 + message.pack() + # add the "close" button + close = Tkinter.Button(root, text="Close") + close["command"] = self.finish + close.pack(side=Tkinter.BOTTOM) + root.mainloop() + + def finish(self, *args): + self.root.quit() diff --git a/pycam/pycam/Importers/CXFImporter.py b/pycam/pycam/Importers/CXFImporter.py new file mode 100644 index 00000000..dee4d0bb --- /dev/null +++ b/pycam/pycam/Importers/CXFImporter.py @@ -0,0 +1,200 @@ +""" +Copyright 2010 Lars Kruse + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + +from pycam.errors import LoadFileError +from pycam.Geometry.Letters import Charset +from pycam.Geometry.Line import Line +from pycam.Geometry.utils import get_points_of_arc +import pycam.Utils.log +import pycam.Utils + +log = pycam.Utils.log.get_logger() + + +class _CXFParseError(LoadFileError): + pass + + +class _LineFeeder: + """ Simplify line-based retrieval of content (including lookahead) """ + + def __init__(self, items): + self.items = items + self._len = len(items) + self.index = 0 + + def consume(self): + """ retrieve and consume the next line """ + if not self.is_exhausted(): + result = self.get_next_line() + self.index += 1 + else: + result = None + return result + + def get_next_line(self): + """ retrieve the next line (without consuming it) """ + if not self.is_exhausted(): + return self.items[self.index].strip() + else: + return None + + def is_exhausted(self): + """ did we already consume all lines? """ + return self.index >= self._len + + def get_recent_line_number(self): + """ return the line number for the most recently consumed line """ + return self.index + + +class CXFParser: + + META_KEYWORDS = ("letterspacing", "wordspacing", "linespacingfactor", "encoding") + META_KEYWORDS_MULTI = ("author", "name") + + def __init__(self, stream, callback=None): + self.letters = {} + self.meta = {} + self.callback = callback + feeder = _LineFeeder(stream.readlines()) + while not feeder.is_exhausted(): + line_data = feeder.consume() + if not line_data: + # ignore + pass + elif line_data.startswith(b"#"): + try: + line = line_data.decode("utf-8") + except UnicodeDecodeError as exc: + raise _CXFParseError("Failed to decode line {:d}" + .format(feeder.get_recent_line_number())) from exc + # comment or meta data + content = line[1:].split(":", 1) + if len(content) == 2: + key = content[0].lower().strip() + value = content[1].strip() + if key in self.META_KEYWORDS: + try: + if key != "encoding": + self.meta[key] = float(value) + else: + self.meta[key] = value + except ValueError as exc: + raise _CXFParseError("Invalid meta information in line {:d}" + .format(feeder.get_recent_line_number())) from exc + elif key in self.META_KEYWORDS_MULTI: + if key in self.meta: + self.meta[key].append(value) + else: + self.meta[key] = [value] + else: + # unknown -> ignore + pass + elif line_data.startswith(b"["): + # Update the GUI from time to time. + # This is useful for the big unicode font. + if self.callback and (len(self.letters) % 50 == 0): + self.callback() + if (len(line_data) >= 3) and (line_data[2:3] == b"]"): + # single character + for encoding in ("utf-8", "iso8859-1", "iso8859-15"): + try: + character = line_data[1:2].decode(encoding) + break + except UnicodeDecodeError: + pass + else: + raise _CXFParseError("Failed to decode character at line {:d}" + .format(feeder.get_recent_line_number())) + elif (len(line_data) >= 6) and (line_data[5:6] == b"]"): + # unicode character (e.g. "[1ae4]") + try: + character = chr(int(line_data[1:5], 16)) + except ValueError as exc: + raise _CXFParseError("Failed to parse unicode character at line {:d}" + .format(feeder.get_recent_line_number())) from exc + elif (len(line_data) > 3) and (line_data.find(b"]") > 2): + # read UTF8 (qcad 1 compatibility) + end_bracket = line_data.find(b"] ") + text = line_data[1:end_bracket] + character = text.decode("utf-8", errors="ignore")[0] + else: + # unknown format + raise _CXFParseError("Failed to parse character at line {:d}" + .format(feeder.get_recent_line_number())) + # parse the following lines up to the next empty line + char_definition = [] + while not feeder.is_exhausted() and feeder.get_next_line(): + line_data = feeder.consume() + try: + line = line_data.decode("utf-8") + except UnicodeDecodeError as exc: + raise _CXFParseError("Failed to decode line {:d}" + .format(feeder.get_recent_line_number())) from exc + # split the line after the first whitespace + type_def, coord_string = line.split(None, 1) + coords = [float(value) for value in coord_string.split(",")] + if (type_def == "L") and (len(coords) == 4): + # line + p1 = (coords[0], coords[1], 0) + p2 = (coords[2], coords[3], 0) + char_definition.append(Line(p1, p2)) + elif (type_def in ("A", "AR")) and (len(coords) == 5): + # arc + previous = None + center = (coords[0], coords[1], 0) + radius = coords[2] + start_angle, end_angle = coords[3], coords[4] + if type_def == "AR": + # reverse the arc + start_angle, end_angle = end_angle, start_angle + for p in get_points_of_arc(center, radius, start_angle, end_angle): + current = (p[0], p[1], 0) + if previous is not None: + char_definition.append(Line(previous, current)) + previous = current + else: + raise _CXFParseError("Failed to read item coordinates in line {:d}" + .format(feeder.get_recent_line_number())) + self.letters[character] = char_definition + else: + # unknown line format + raise _CXFParseError("Failed to parse unknown content in line {:d}" + .format(feeder.get_recent_line_number())) + + +def import_font(filename, callback=None): + try: + infile = pycam.Utils.URIHandler(filename).open() + except IOError as exc: + raise LoadFileError("CXFImporter: Failed to read file ({}): {}" + .format(filename, exc)) from exc + try: + parsed_font = CXFParser(infile, callback=callback) + except _CXFParseError as exc: + raise LoadFileError("CFXImporter: Skipped font definition file '{}'. Reason: {}." + .format(filename, exc)) from exc + charset = Charset(**parsed_font.meta) + for key, value in parsed_font.letters.items(): + charset.add_character(key, value) + log.info("CXFImporter: Imported CXF font from '%s': %d letters", + filename, len(parsed_font.letters)) + infile.close() + return charset diff --git a/pycam/pycam/Importers/DXFImporter.py b/pycam/pycam/Importers/DXFImporter.py new file mode 100644 index 00000000..7f428a08 --- /dev/null +++ b/pycam/pycam/Importers/DXFImporter.py @@ -0,0 +1,935 @@ +""" +$ID$ + +Copyright 2010 Lars Kruse + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + +import math +import re +import os + +from pycam.errors import AbortOperationException, LoadFileError +from pycam.Geometry.Triangle import Triangle +from pycam.Geometry.PointUtils import pdist +from pycam.Geometry.Line import Line +import pycam.Geometry.Model +import pycam.Geometry.Matrix +from pycam.Geometry.utils import get_bezier_lines, get_points_of_arc +import pycam.Utils.log +import pycam.Utils + +log = pycam.Utils.log.get_logger() + + +def _unescape_control_characters(text): + # see http://www.kxcad.net/autodesk/autocad/AutoCAD_2008_Command_Reference/d0e73428.htm + # and QCad: qcadlib/src/filters/rs_filterdxf.cpp + for src, dest in (("%%d", u"\u00B0"), ("%%p", u"\u00B1"), ("%%c", u"\u2205"), + (r"\P", os.linesep), (r"\~", " ")): + text = text.replace(src, dest) + # convert "\U+xxxx" to unicode characters + return re.sub(r"\\U\+([0-9a-fA-F]{4})", lambda hex_in: chr(int(hex_in.groups()[0], 16)), text) + + +class DXFParser: + """ parse most entities of an DXF file + + Reference: http://images.autodesk.com/adsk/files/autocad_2012_pdf_dxf-reference_enu.pdf + """ + + # see http://www.autodesk.com/techpubs/autocad/acad2000/dxf/group_code_value_types_dxf_01.htm + MAX_CHARS_PER_LINE = 2049 + + KEYS = { + "MARKER": 0, + "DEFAULT": 1, + "TEXT_MORE": 3, + "TEXT_FONT": 7, + "P1_X": 10, + "P1_Y": 20, + "P1_Z": 30, + "P2_X": 11, + "P2_Y": 21, + "P2_Z": 31, + "P3_X": 12, + "P3_Y": 22, + "P3_Z": 32, + "P4_X": 13, + "P4_Y": 23, + "P4_Z": 33, + "RADIUS": 40, + "TEXT_HEIGHT": 40, + "TEXT_WIDTH_FINAL": 41, + "VERTEX_BULGE": 42, + "ANGLE_START": 50, + "TEXT_ROTATION": 50, + "ANGLE_END": 51, + "TEXT_SKEW_ANGLE": 51, + "COLOR": 62, + # in the context of the current entity (e.g. VERTEX / POLYLINE / LWPOLYLINE) + "ENTITY_FLAGS": 70, + "TEXT_MIRROR_FLAGS": 71, + "MTEXT_ALIGNMENT": 71, + "TEXT_ALIGN_HORIZONTAL": 72, + "TEXT_ALIGN_VERTICAL": 73, + "CURVE_TYPE": 75, + } + + IGNORE_KEYS = ("DICTIONARY", "VPORT", "LTYPE", "STYLE", "APPID", "DIMSTYLE", "BLOCK_RECORD", + "BLOCK", "ENDBLK", "ACDBDICTIONARYWDFLT", "POINT", "ACDBPLACEHOLDER", "LAYOUT", + "MLINESTYLE", "DICTIONARYVAR", "CLASS", "HATCH", "VIEW", "VIEWPORT") + + def __init__(self, inputstream, color_as_height=False, fonts_cache=None, callback=None): + self.inputstream = inputstream + self.line_number = 0 + self.lines = [] + self.triangles = [] + self._input_stack = [] + self._color_as_height = color_as_height + if callback: + # no "percent" updates - just pulse ... + def callback_wrapper(text="", percent=None): + return callback() + self.callback = callback_wrapper + else: + self.callback = None + self._fonts_cache = fonts_cache + self._open_sequence = None + self._open_sequence_items = [] + self._open_sequence_params = {} + # run the parser + self.parse_content() + self.optimize_line_order() + + def get_model(self): + return {"lines": self.lines, "triangles": self.triangles} + + def optimize_line_order(self): + groups = [] + current_group = [] + groups.append(current_group) + remaining_lines = self.lines[:] + while remaining_lines: + if self.callback and self.callback(): + return + if not current_group: + current_group.append(remaining_lines.pop(0)) + else: + first_line = current_group[0] + last_line = current_group[-1] + for line in remaining_lines: + if last_line.p2 == line.p1: + current_group.append(line) + remaining_lines.remove(line) + break + if first_line.p1 == line.p2: + current_group.insert(0, line) + remaining_lines.remove(line) + break + else: + current_group = [] + groups.append(current_group) + + def get_distance_between_groups(group1, group2): + forward = pdist(group1[-1].p2, group2[0].p1) + backward = pdist(group2[-1].p2, group1[0].p1) + return min(forward, backward) + + remaining_groups = groups[:] + ordered_groups = [] + while remaining_groups: + if not ordered_groups: + ordered_groups.append(remaining_groups.pop(0)) + else: + current_group = ordered_groups[-1] + closest_distance = None + for cmp_group in remaining_groups: + cmp_distance = get_distance_between_groups(current_group, cmp_group) + if (closest_distance is None) or (cmp_distance < closest_distance): + closest_distance = cmp_distance + closest_group = cmp_group + ordered_groups.append(closest_group) + remaining_groups.remove(closest_group) + result = [] + for group in ordered_groups: + result.extend(group) + self.lines = result + + def _push_on_stack(self, key, value): + self._input_stack.append((key, value)) + + def _read_key_value(self): + if self._input_stack: + return self._input_stack.pop() + try: + line1 = self.inputstream.readline(self.MAX_CHARS_PER_LINE).strip() + line2 = self.inputstream.readline(self.MAX_CHARS_PER_LINE).strip() + except IOError: + return None, None + if not line1 and not line2: + return None, None + try: + line1 = int(line1) + except ValueError: + log.warn("DXFImporter: Invalid key in line %d (int expected): %s", + self.line_number, line1) + return None, None + if line1 in [self.KEYS[key] + for key in ("P1_X", "P1_Y", "P1_Z", "P2_X", "P2_Y", "P2_Z", "RADIUS", + "ANGLE_START", "ANGLE_END", "TEXT_HEIGHT", "TEXT_WIDTH_FINAL", + "TEXT_ROTATION", "TEXT_SKEW_ANGLE", "VERTEX_BULGE")]: + try: + line2 = float(line2) + except ValueError: + log.warn("DXFImporter: Invalid input in line %d (float expected): %s", + self.line_number, line2) + line1 = None + line2 = None + elif line1 in [self.KEYS[key] + for key in ("COLOR", "TEXT_MIRROR_FLAGS", "TEXT_ALIGN_HORIZONTAL", + "TEXT_ALIGN_VERTICAL", "MTEXT_ALIGNMENT", "CURVE_TYPE", + "ENTITY_FLAGS")]: + try: + line2 = int(line2) + except ValueError: + log.warn("DXFImporter: Invalid input in line %d (int expected): %s", + self.line_number, line2) + line1 = None + line2 = None + elif line1 in [self.KEYS[key] for key in ("DEFAULT", "TEXT_MORE")]: + line2 = _unescape_control_characters(self._carefully_decode(line2)) + else: + line2 = self._carefully_decode(line2).upper() + self.line_number += 2 + return line1, line2 + + def _carefully_decode(self, text): + try: + return text.decode("utf-8") + except UnicodeDecodeError: + log.warn("DXFImporter: Invalid character in string in line %d", self.line_number) + return text.decode("utf-8", errors="ignore") + + def parse_content(self): + key, value = self._read_key_value() + while (key is not None) and not ((key == self.KEYS["MARKER"]) and (value == "EOF")): + if self.callback and self.callback(): + return + if key == self.KEYS["MARKER"]: + if value in ("SECTION", "TABLE", "LAYER", "ENDTAB", "ENDSEC"): + # we don't handle these meta-information + pass + elif value == "LINE": + self.parse_line() + elif value == "LWPOLYLINE": + self.parse_lwpolyline() + elif value == "POLYLINE": + self.parse_polyline(True) + elif value == "VERTEX": + self.parse_vertex() + elif value == "SEQEND": + self.close_sequence() + elif value == "ARC": + self.parse_arc() + elif value == "CIRCLE": + self.parse_arc(circle=True) + elif value == "TEXT": + self.parse_text() + elif value == "MTEXT": + self.parse_mtext() + elif value == "3DFACE": + self.parse_3dface() + elif value in self.IGNORE_KEYS: + log.debug("DXFImporter: Ignored a blacklisted element in line %d: %s", + self.line_number, value) + else: + # not supported + log.warn("DXFImporter: Ignored unsupported element in line %d: %s", + self.line_number, value) + key, value = self._read_key_value() + + def close_sequence(self): + start_line = self.line_number + if self._open_sequence == "POLYLINE": + self.parse_polyline(False) + else: + log.warn("DXFImporter: unexpected SEQEND found at line %d", start_line) + + def parse_vertex(self): + start_line = self.line_number + point = [None, None, 0] + color = None + bulge = None + key, value = self._read_key_value() + while (key is not None) and (key != self.KEYS["MARKER"]): + if key == self.KEYS["P1_X"]: + point[0] = value + elif key == self.KEYS["P1_Y"]: + point[1] = value + elif key == self.KEYS["P1_Z"]: + point[2] = value + elif key == self.KEYS["COLOR"]: + color = value + elif key == self.KEYS["VERTEX_BULGE"]: + bulge = value + else: + pass + key, value = self._read_key_value() + end_line = self.line_number + if key is not None: + self._push_on_stack(key, value) + if self._color_as_height and (color is not None): + # use the color code as the z coordinate + point[2] = float(color) / 255 + if None in point: + log.warn("DXFImporter: Missing attribute of VERTEX item between line %d and %d", + start_line, end_line) + else: + self._open_sequence_items.append(((point[0], point[1], point[2]), bulge)) + + def parse_polyline(self, init): + params = self._open_sequence_params + if init: + self._open_sequence = "POLYLINE" + self._open_sequence_items = [] + key, value = self._read_key_value() + while (key is not None) and (key != self.KEYS["MARKER"]): + if key == self.KEYS["CURVE_TYPE"]: + if value == 8: + params["CURVE_TYPE"] = "BEZIER" + elif key == self.KEYS["ENTITY_FLAGS"]: + if value == 1: + if "ENTITY_FLAGS" not in params: + params["ENTITY_FLAGS"] = set() + params["ENTITY_FLAGS"].add("IS_CLOSED") + key, value = self._read_key_value() + if key is not None: + self._push_on_stack(key, value) + else: + # closing + if ("CURVE_TYPE" in params) and (params["CURVE_TYPE"] == "BEZIER"): + self.lines.extend(get_bezier_lines(self._open_sequence_items)) + if ("ENTITY_FLAGS" in params) and ("IS_CLOSED" in params["ENTITY_FLAGS"]): + # repeat the same polyline on the other side + self._open_sequence_items.reverse() + self.lines.extend(get_bezier_lines(self._open_sequence_items)) + else: + points = [p for p, bulge in self._open_sequence_items] + for index in range(len(points) - 1): + point = points[index] + next_point = points[index + 1] + if point != next_point: + self.lines.append(Line(point, next_point)) + if ("ENTITY_FLAGS" in params) and ("IS_CLOSED" in params["ENTITY_FLAGS"]): + # repeat the same polyline on the other side + self.lines.append(Line(points[-1], points[0])) + self._open_sequence_items = [] + self._open_sequence_params = {} + self._open_sequence = None + + def parse_lwpolyline(self): + start_line = self.line_number + points = [] + + def add_point(p_array, bulge): + # fill all "None" values with zero + for index in range(len(p_array)): + if p_array[index] is None: + if (index == 0) or (index == 1): + log.debug("DXFImporter: weird LWPOLYLINE input date in line %d: %s", + self.line_number, p_array) + p_array[index] = 0 + points.append(((p_array[0], p_array[1], p_array[2]), bulge)) + + current_point = [None, None, None] + bulge = None + is_closed = False + key, value = self._read_key_value() + while (key is not None) and (key != self.KEYS["MARKER"]): + if key == self.KEYS["P1_X"]: + axis = 0 + elif key == self.KEYS["P1_Y"]: + axis = 1 + elif not self._color_as_height and (key == self.KEYS["P1_Z"]): + axis = 2 + elif self._color_as_height and (key == self.KEYS["COLOR"]): + # interpret the color as the height + axis = 2 + value = float(value) / 255 + elif key == self.KEYS["VERTEX_BULGE"]: + bulge = value + axis = None + elif key == self.KEYS["ENTITY_FLAGS"]: + if value == 1: + is_closed = True + axis = None + else: + axis = None + if axis is not None: + if current_point[axis] is None: + # The current point definition is not complete, yet. + current_point[axis] = value + else: + # The current point seems to be complete. + add_point(current_point, bulge) + current_point = [None, None, None] + current_point[axis] = value + bulge = None + key, value = self._read_key_value() + end_line = self.line_number + # The last lines were not used - they are just the marker for the next + # item. + if key is not None: + self._push_on_stack(key, value) + # check if there is a remaining item in "current_point" + if len(current_point) != current_point.count(None): + add_point(current_point, bulge) + if len(points) < 2: + # too few points for a polyline + log.warn("DXFImporter: Empty LWPOLYLINE definition between line %d and %d", + start_line, end_line) + else: + if is_closed: + points.append(points[0]) + for index in range(len(points) - 1): + point, bulge = points[index] + # It seems like the "next_bulge" value is not relevant for the current set of + # vertices. At least the test DXF file "bezier_lines.dxf" indicates, that we can + # ignore it for the decision about a straight line or a bezier line. + next_point = points[index + 1][0] + if point != next_point: + if bulge: + self.lines.extend(get_bezier_lines(((point, bulge), (next_point, bulge)))) + else: + # straight line + self.lines.append(Line(point, next_point)) + else: + log.warn("DXFImporter: Ignoring zero-length LINE (between input line %d and " + "%d): %s", start_line, end_line, point) + + def parse_mtext(self): + start_line = self.line_number + # the z-level defaults to zero (for 2D models) + ref_point = [None, None, 0] + direction_vector = [None, None, None] + color = None + text_groups_start = [] + text_end = [] + text_height = None + rotation = 0 + width_final = None + font_name = "normal" + alignment = 0 + key, value = self._read_key_value() + while (key is not None) and (key != self.KEYS["MARKER"]): + if key == self.KEYS["DEFAULT"]: + text_end = value + elif key == self.KEYS["TEXT_MORE"]: + text_groups_start.append(value) + elif key == self.KEYS["P1_X"]: + ref_point[0] = value + elif key == self.KEYS["P1_Y"]: + ref_point[1] = value + elif key == self.KEYS["P1_Z"]: + ref_point[2] = value + elif key == self.KEYS["P2_X"]: + direction_vector[0] = value + # according to DXF spec: the last one wins + rotation = None + elif key == self.KEYS["P2_Y"]: + direction_vector[1] = value + # according to DXF spec: the last one wins + rotation = None + elif key == self.KEYS["P2_Z"]: + direction_vector[2] = value + # according to DXF spec: the last one wins + rotation = None + elif key == self.KEYS["COLOR"]: + color = value + elif key == self.KEYS["TEXT_HEIGHT"]: + text_height = value + elif key == self.KEYS["TEXT_ROTATION"]: + rotation = value + # according to DXF spec: the last one wins + direction_vector = [None, None, None] + elif key == self.KEYS["TEXT_FONT"]: + font_name = value + elif key == self.KEYS["MTEXT_ALIGNMENT"]: + alignment = value + elif key == self.KEYS["TEXT_WIDTH_FINAL"]: + width_final = value + else: + pass + key, value = self._read_key_value() + end_line = self.line_number + # The last lines were not used - they are just the marker for the next + # item. + text = "".join(text_groups_start) + text_end + if key is not None: + self._push_on_stack(key, value) + if None in ref_point: + log.warn("DXFImporter: Incomplete MTEXT definition between line %d and %d: missing " + "location point", start_line, end_line) + elif not text: + log.warn("DXFImporter: Incomplete MTEXT definition between line %d and %d: missing " + "text", start_line, end_line) + elif not text_height: + log.warn("DXFImporter: Incomplete MTEXT definition between line %d and %d: missing " + "height", start_line, end_line) + else: + if self._color_as_height and (color is not None): + # use the color code as the z coordinate + ref_point[2] = float(color) / 255 + if self._fonts_cache: + font = self._fonts_cache.get_font(font_name) + else: + font = None + if not font: + log.warn("DXFImporter: No fonts are available - skipping MTEXT item between line " + "%d and %d", start_line, end_line) + return + model = font.render(text) + if (None in (model.minx, model.miny, model.minz) + or (model.minx == model.maxx) or (model.miny == model.maxy)): + log.warn("DXFImporter: Empty rendered MTEXT item between line %d and %d", + start_line, end_line) + return + model.scale(text_height / (model.maxy - model.miny), callback=self.callback) + # this setting seems to refer to a box - not the text width - ignore + if False and width_final: + scale_x = width_final / (model.maxx - model.minx) + model.scale(scale_x, callback=self.callback) + if rotation: + matrix = pycam.Geometry.Matrix.get_rotation_matrix_axis_angle((0, 0, 1), rotation) + elif None not in direction_vector: + # Due to the parsing code above only "rotation" or + # "direction_vector" is set at the same time. + matrix = pycam.Geometry.Matrix.get_rotation_matrix_from_to((1, 0, 0), + direction_vector) + else: + matrix = None + if matrix: + model.transform_by_matrix(matrix, callback=self.callback) + # horizontal alignment + if alignment % 3 == 1: + offset_horiz = 0 + elif alignment % 3 == 2: + offset_horiz = -(model.maxx - model.minx) / 2 + else: + offset_horiz = -(model.maxx - model.minx) + # vertical alignment + if alignment <= 3: + offset_vert = -(model.maxy - model.miny) + elif alignment <= 6: + offset_vert = -(model.maxy - model.miny) / 2 + else: + offset_vert = 0 + # shift the text to its final destination + shift_x = ref_point[0] - model.minx + offset_horiz + shift_y = ref_point[1] - model.miny + offset_vert + shift_z = ref_point[2] - model.minz + model.shift(shift_x, shift_y, shift_z, callback=self.callback) + for polygon in model.get_polygons(): + for line in polygon.get_lines(): + self.lines.append(line) + + def parse_text(self): + start_line = self.line_number + # the z-level defaults to zero (for 2D models) + ref_point = [None, None, 0] + ref_point2 = [None, None, 0] + color = None + text = None + text_height = None + rotation = 0 + width_final = None + skew_angle = 0 + font_name = "normal" + mirror_flags = 0 + align_horiz = 0 + align_vert = 0 + key, value = self._read_key_value() + while (key is not None) and (key != self.KEYS["MARKER"]): + if key == self.KEYS["DEFAULT"]: + text = value + elif key == self.KEYS["P1_X"]: + ref_point[0] = value + elif key == self.KEYS["P1_Y"]: + ref_point[1] = value + elif key == self.KEYS["P1_Z"]: + ref_point[2] = value + elif key == self.KEYS["P2_X"]: + ref_point2[0] = value + elif key == self.KEYS["P2_Y"]: + ref_point2[1] = value + elif key == self.KEYS["P2_Z"]: + ref_point2[2] = value + elif key == self.KEYS["COLOR"]: + color = value + elif key == self.KEYS["TEXT_HEIGHT"]: + text_height = value + elif key == self.KEYS["TEXT_ROTATION"]: + rotation = value + elif key == self.KEYS["TEXT_SKEW_ANGLE"]: + skew_angle = value + elif key == self.KEYS["TEXT_FONT"]: + font_name = value + elif key == self.KEYS["TEXT_MIRROR_FLAGS"]: + mirror_flags = value + elif key == self.KEYS["TEXT_ALIGN_HORIZONTAL"]: + align_horiz = value + elif key == self.KEYS["TEXT_ALIGN_VERTICAL"]: + align_vert = value + elif key == self.KEYS["TEXT_WIDTH_FINAL"]: + width_final = value + else: + pass + key, value = self._read_key_value() + end_line = self.line_number + # The last lines were not used - they are just the marker for the next + # item. + if key is not None: + self._push_on_stack(key, value) + if (None not in ref_point2) and (ref_point != ref_point2): + # just a warning - continue as usual + log.warn("DXFImporter: Second alignment point is not implemented for TEXT items - the " + "text specified between line %d and %d may be slightly misplaced", + start_line, end_line) + if None in ref_point: + log.warn("DXFImporter: Incomplete TEXT definition between line %d and %d: missing " + "location point", start_line, end_line) + elif not text: + log.warn("DXFImporter: Incomplete TEXT definition between line %d and %d: missing " + "text", start_line, end_line) + elif not text_height: + log.warn("DXFImporter: Incomplete TEXT definition between line %d and %d: missing " + "height", start_line, end_line) + else: + if self._color_as_height and (color is not None): + # use the color code as the z coordinate + ref_point[2] = float(color) / 255 + if self._fonts_cache: + font = self._fonts_cache.get_font(font_name) + else: + font = None + if not font: + log.warn("DXFImporter: No fonts are available - skipping TEXT item between line " + "%d and %d", start_line, end_line) + return + if skew_angle: + # calculate the "skew" factor + if (skew_angle <= -90) or (skew_angle >= 90): + log.warn("DXFImporter: Invalid skew angle for TEXT between line %d and %d", + start_line, end_line) + skew = 0 + else: + skew = math.tan(skew_angle) + else: + skew = 0 + model = font.render(text, skew=skew) + if ((model.minx is None) or (model.miny is None) + or (model.minz is None) or (model.minx == model.maxx) + or (model.miny == model.maxy)): + log.warn("DXFImporter: Empty rendered TEXT item between line %d and %d", + start_line, end_line) + return + model.scale(text_height / (model.maxy - model.miny), callback=self.callback) + if mirror_flags & 2: + # x mirror left/right + model.transform_by_template("yz_mirror", callback=self.callback) + if mirror_flags & 4: + # y mirror upside/down + model.transform_by_template("xz_mirror", callback=self.callback) + # this setting seems to refer to a box - not the text width - ignore + if False and width_final: + scale_x = width_final / (model.maxx - model.minx) + model.scale(scale_x, callback=self.callback) + if rotation: + matrix = pycam.Geometry.Matrix.get_rotation_matrix_axis_angle((0, 0, 1), rotation) + model.transform_by_matrix(matrix, callback=self.callback) + # horizontal alignment + if align_horiz == 0: + offset_horiz = 0 + elif align_horiz == 1: + offset_horiz = - (model.maxx - model.minx) / 2 + elif align_horiz == 2: + offset_horiz = - (model.maxx - model.minx) + else: + log.warn("DXFImporter: Horizontal TEXT justifications (3..5) are not supported - " + "ignoring (between line %d and %d)", start_line, end_line) + offset_horiz = 0 + # vertical alignment + if align_vert in (0, 1): + # we don't distinguish between "bottom" and "base" + offset_vert = 0 + elif align_vert == 2: + offset_vert = - (model.maxy - model.miny) / 2 + elif align_vert == 3: + offset_vert = - (model.maxy - model.miny) + else: + log.warn("DXFImporter: Invalid vertical TEXT justification between line %d and %d", + start_line, end_line) + offset_vert = 0 + # shift the text to its final destination + shift_x = ref_point[0] - model.minx + offset_horiz + shift_y = ref_point[1] - model.miny + offset_vert + shift_z = ref_point[2] - model.minz + model.shift(shift_x, shift_y, shift_z, callback=self.callback) + for polygon in model.get_polygons(): + for line in polygon.get_lines(): + self.lines.append(line) + + def parse_3dface(self): + start_line = self.line_number + # the z-level defaults to zero (for 2D models) + p1 = [None, None, 0] + p2 = [None, None, 0] + p3 = [None, None, 0] + p4 = [None, None, 0] + key, value = self._read_key_value() + while (key is not None) and (key != self.KEYS["MARKER"]): + if key == self.KEYS["P1_X"]: + p1[0] = value + elif key == self.KEYS["P1_Y"]: + p1[1] = value + elif key == self.KEYS["P1_Z"]: + p1[2] = value + elif key == self.KEYS["P2_X"]: + p2[0] = value + elif key == self.KEYS["P2_Y"]: + p2[1] = value + elif key == self.KEYS["P2_Z"]: + p2[2] = value + elif key == self.KEYS["P3_X"]: + p3[0] = value + elif key == self.KEYS["P3_Y"]: + p3[1] = value + elif key == self.KEYS["P3_Z"]: + p3[2] = value + elif key == self.KEYS["P4_X"]: + p4[0] = value + elif key == self.KEYS["P4_Y"]: + p4[1] = value + elif key == self.KEYS["P4_Z"]: + p4[2] = value + else: + pass + key, value = self._read_key_value() + end_line = self.line_number + # The last lines were not used - they are just the marker for the next + # item. + if key is not None: + self._push_on_stack(key, value) + if (None in p1) or (None in p2) or (None in p3): + log.warn("DXFImporter: Incomplete 3DFACE definition between line %d and %d", + start_line, end_line) + else: + # no color height adjustment for 3DFACE + point1 = tuple(p1) + point2 = tuple(p2) + point3 = tuple(p3) + triangles = [] + triangles.append((point1, point2, point3)) + # DXF specifies, that p3=p4 if triangles (instead of quads) are + # written. + if (None not in p4) and (p3 != p4): + point4 = (p4[0], p4[1], p4[2]) + triangles.append((point3, point4, point1)) + for t in triangles: + if (t[0] != t[1]) and (t[0] != t[2]) and (t[1] != t[2]): + self.triangles.append(Triangle(t[0], t[1], t[2])) + else: + log.warn("DXFImporter: Ignoring zero-sized 3DFACE (between input line %d and " + "%d): %s", start_line, end_line, t) + + def parse_line(self): + start_line = self.line_number + # the z-level defaults to zero (for 2D models) + p1 = [None, None, 0] + p2 = [None, None, 0] + color = None + key, value = self._read_key_value() + while (key is not None) and (key != self.KEYS["MARKER"]): + if key == self.KEYS["P1_X"]: + p1[0] = value + elif key == self.KEYS["P1_Y"]: + p1[1] = value + elif key == self.KEYS["P1_Z"]: + p1[2] = value + elif key == self.KEYS["P2_X"]: + p2[0] = value + elif key == self.KEYS["P2_Y"]: + p2[1] = value + elif key == self.KEYS["P2_Z"]: + p2[2] = value + elif key == self.KEYS["COLOR"]: + color = value + else: + pass + key, value = self._read_key_value() + end_line = self.line_number + # The last lines were not used - they are just the marker for the next + # item. + if key is not None: + self._push_on_stack(key, value) + if (None in p1) or (None in p2): + log.warn("DXFImporter: Incomplete LINE definition between line %d and %d", + start_line, end_line) + else: + if self._color_as_height and (color is not None): + # use the color code as the z coordinate + p1[2] = float(color) / 255 + p2[2] = float(color) / 255 + line = Line((p1[0], p1[1], p1[2]), (p2[0], p2[1], p2[2])) + if line.p1 != line.p2: + self.lines.append(line) + else: + log.warn("DXFImporter: Ignoring zero-length LINE (between input line %d and %d): " + "%s", start_line, end_line, line) + + def parse_arc(self, circle=False): + start_line = self.line_number + # the z-level defaults to zero (for 2D models) + center = [None, None, 0] + color = None + radius = None + if circle: + angle_start = 0 + angle_end = 360 + else: + angle_start = None + angle_end = None + key, value = self._read_key_value() + while (key is not None) and (key != self.KEYS["MARKER"]): + if key == self.KEYS["P1_X"]: + center[0] = value + elif key == self.KEYS["P1_Y"]: + center[1] = value + elif key == self.KEYS["P1_Z"]: + center[2] = value + elif key == self.KEYS["RADIUS"]: + radius = value + elif key == self.KEYS["ANGLE_START"]: + angle_start = value + elif key == self.KEYS["ANGLE_END"]: + angle_end = value + elif key == self.KEYS["COLOR"]: + color = value + else: + pass + key, value = self._read_key_value() + end_line = self.line_number + # The last lines were not used - they are just the marker for the next item. + if key is not None: + self._push_on_stack(key, value) + if (None in center) or (None in (radius, angle_start, angle_end)): + log.warn("DXFImporter: Incomplete ARC definition between line %d and %d", + start_line, end_line) + else: + if self._color_as_height and (color is not None): + # use the color code as the z coordinate + center[2] = float(color) / 255 + center = tuple(center) + xy_point_coords = get_points_of_arc(center, radius, angle_start, angle_end) + # Somehow the order of points seems to be the opposite of what is + # expected. + xy_point_coords.reverse() + if len(xy_point_coords) > 1: + for index in range(len(xy_point_coords) - 1): + p1 = xy_point_coords[index] + p1 = (p1[0], p1[1], center[2]) + p2 = xy_point_coords[index + 1] + p2 = (p2[0], p2[1], center[2]) + if p1 != p2: + self.lines.append(Line(p1, p2)) + else: + log.warn("DXFImporter: Ignoring tiny ARC (between input line %d and %d): %s / %s " + "(%s - %s)", start_line, end_line, center, radius, angle_start, angle_end) + + def check_header(self): + # TODO: this function is not used? + # we expect "0" in the first line and "SECTION" in the second one + key, value = self._read_key_value() + if (key != self.KEYS["MARKER"]) or (value and (value != "SECTION")): + log.error("DXFImporter: DXF file header not recognized") + return None + + +def import_model(filename, color_as_height=False, fonts_cache=None, callback=None, **kwargs): + if hasattr(filename, "read"): + should_close = False + infile = filename + else: + should_close = True + try: + infile = pycam.Utils.URIHandler(filename).open() + except IOError as exc: + raise LoadFileError("DXFImporter: Failed to read file ({}): {}".format(filename, exc)) + + result = DXFParser(infile, color_as_height=color_as_height, fonts_cache=fonts_cache, + callback=callback) + if should_close: + infile.close() + + model_data = result.get_model() + lines = model_data["lines"] + triangles = model_data["triangles"] + + if callback and callback(): + raise AbortOperationException("DXFImporter: load model operation was cancelled") + + # 3D models are preferred over 2D models + if triangles: + if lines: + log.warn("DXFImporter: Ignoring 2D elements in DXF file: %d lines", len(lines)) + model = pycam.Geometry.Model.Model() + for index, triangle in enumerate(triangles): + model.append(triangle) + # keep the GUI smooth + if callback and (index % 50 == 0): + callback() + log.info("DXFImporter: Imported DXF model (3D): %d triangles", + len(model.triangles())) + return model + elif lines: + model = pycam.Geometry.Model.ContourModel() + for index, line in enumerate(lines): + model.append(line) + # keep the GUI smooth + if callback and (index % 50 == 0): + callback() + # z scaling is always targeted at the 0..1 range + if color_as_height and (model.minz != model.maxz): + # scale z to 1 + scale_z = 1.0 / (model.maxz - model.minz) + if callback: + callback(text="Scaling height for multi-layered 2D model") + log.info("DXFImporter: scaling height for multi-layered 2D model") + model.scale(scale_x=1.0, scale_y=1.0, scale_z=scale_z, callback=callback) + # shift the model down to z=0 + if model.minz != 0: + if callback: + callback(text="Shifting 2D model down to to z=0") + model.shift(0, 0, -model.minz, callback=callback) + log.info("DXFImporter: Imported DXF model (2D): %d lines / %d polygons", + len(lines), len(model.get_polygons())) + return model + else: + link = "http://pycam.sourceforge.net/supported-formats" + raise LoadFileError('DXFImporter: No supported elements found in DXF file!\n' + 'Read PyCAM\'s modeling hints.'.format(link)) diff --git a/pycam/pycam/Importers/PSImporter.py b/pycam/pycam/Importers/PSImporter.py new file mode 100644 index 00000000..5f0ebae3 --- /dev/null +++ b/pycam/pycam/Importers/PSImporter.py @@ -0,0 +1,88 @@ +""" +Copyright 2010 Lars Kruse + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + +import os +import tempfile + +from pycam.errors import AbortOperationException, LoadFileError +from pycam.Importers.SVGImporter import convert_eps2dxf +import pycam.Importers.DXFImporter +import pycam.Utils +from pycam.Utils.locations import create_named_temporary_file + +log = pycam.Utils.log.get_logger() + + +def import_model(filename, program_locations=None, unit="mm", callback=None, **kwargs): + local_file = False + if hasattr(filename, "read"): + infile = filename + ps_file_handle, ps_file_name = tempfile.mkstemp(suffix=".ps") + try: + temp_file = os.fdopen(ps_file_handle, "w") + temp_file.write(infile.read()) + temp_file.close() + except IOError as exc: + raise LoadFileError("PSImporter: Failed to create temporary local file ({}): {}" + .format(ps_file_name, exc)) + filename = ps_file_name + else: + uri = pycam.Utils.URIHandler(filename) + if not uri.exists(): + raise LoadFileError("PSImporter: file ({}) does not exist".format(filename)) + if not uri.is_local(): + # non-local file - write it to a temporary file first + ps_file_handle, ps_file_name = tempfile.mkstemp(suffix=".ps") + os.close(ps_file_handle) + log.debug("Retrieving PS file for local access: %s -> %s", uri, ps_file_name) + if not uri.retrieve_remote_file(ps_file_name, callback=callback): + raise LoadFileError("PSImporter: Failed to retrieve the PS model file: {} -> {}" + .format(uri, ps_file_name)) + filename = ps_file_name + else: + filename = uri.get_local_path() + local_file = True + + if program_locations and "pstoedit" in program_locations: + pstoedit_path = program_locations["pstoedit"] + else: + pstoedit_path = None + + def remove_temp_file(filename): + if os.path.isfile(filename): + try: + os.remove(filename) + except OSError as exc: + log.warning("PSImporter: failed to remove temporary file ({}): {}" + .format(filename, exc)) + + # convert eps to dxf via pstoedit + with create_named_temporary_file(suffix=".dxf") as dxf_file_name: + success = convert_eps2dxf(filename, dxf_file_name, unit=unit, location=pstoedit_path) + if not local_file: + remove_temp_file(ps_file_name) + if not success: + raise LoadFileError("Failed to convert EPS to DXF file") + elif callback and callback(): + raise AbortOperationException("PSImporter: load model operation cancelled") + else: + log.info("Successfully converted PS file to DXF file") + # pstoedit uses "inch" -> force a scale operation + return pycam.Importers.DXFImporter.import_model(dxf_file_name, unit=unit, + callback=callback) diff --git a/pycam/pycam/Importers/STLImporter.py b/pycam/pycam/Importers/STLImporter.py new file mode 100644 index 00000000..dffcebe1 --- /dev/null +++ b/pycam/pycam/Importers/STLImporter.py @@ -0,0 +1,296 @@ +""" +Copyright 2008-2010 Lode Leroy +Copyright 2010 Lars Kruse + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + +from io import BufferedReader, BytesIO, TextIOWrapper +import re +from struct import unpack + +from pycam.errors import AbortOperationException, LoadFileError +from pycam.Geometry import epsilon +from pycam.Geometry.Model import Model +from pycam.Geometry.PointKdtree import PointKdtree +from pycam.Geometry.PointUtils import pcross, pdot, pnormalized, psub +from pycam.Geometry.Triangle import Triangle +import pycam.Utils.log +import pycam.Utils +log = pycam.Utils.log.get_logger() + +# The amount of bytes in the header field +HEADER_SIZE = 80 +# The amount of bytes in the count field +COUNT_SIZE = 4 + +vertices = 0 +edges = 0 +kdtree = None +last_unique_vertex = (None, None, None) + + +def get_unique_vertex(x, y, z): + global vertices, last_unique_vertex + if kdtree: + p = kdtree.point(x, y, z) + if p == last_unique_vertex: + vertices += 1 + return p + else: + vertices += 1 + return (x, y, z) + + +def get_facet_count_if_binary_format(source): + """ Read the first two lines of (potentially non-binary) input - they should contain "solid" + and "facet". The return value is a number representing the number of facets (binary format) or + None (text format). + + The below detection is quite simple: it looks for the strings "facet" and "solid" in the first + 400 bytes. + An even better detection would check, if the following conditition is true: + numfacets = unpack(" 0: + # Triangle expects the vertices in clockwise order + t = Triangle(p1, p3, p2) + elif dotcross < 0: + if not normal_conflict_warning_seen: + log.warn("Inconsistent normal/vertices found in facet definition %d of '%s'. " + "Please validate the STL file!", i, filename) + normal_conflict_warning_seen = True + t = Triangle(p1, p2, p3) + else: + # the three points are in a line - or two points are identical + # usually this is caused by points, that are too close together + # check the tolerance value in pycam/Geometry/PointKdtree.py + log.warn("Skipping invalid triangle: %s / %s / %s (maybe the resolution of the " + "model is too high?)", p1, p2, p3) + continue + if n: + t.normal = n + + model.append(t) + else: + # from here on we want to use a text based input stream (not bytes) + f = TextIOWrapper(f, encoding="utf-8") + solid = re.compile(r"\s*solid\s+(\w+)\s+.*") + endsolid = re.compile(r"\s*endsolid\s*") + facet = re.compile(r"\s*facet\s*") + normal = re.compile(r"\s*facet\s+normal" + + r"\s+(?P[-+]?(\d+(\.\d*)?|\.\d+)([eE][-+]?\d+)?)" + + r"\s+(?P[-+]?(\d+(\.\d*)?|\.\d+)([eE][-+]?\d+)?)" + + r"\s+(?P[-+]?(\d+(\.\d*)?|\.\d+)([eE][-+]?\d+)?)\s+") + endfacet = re.compile(r"\s*endfacet\s+") + loop = re.compile(r"\s*outer\s+loop\s+") + endloop = re.compile(r"\s*endloop\s+") + vertex = re.compile(r"\s*vertex" + + r"\s+(?P[-+]?(\d+(\.\d*)?|\.\d+)([eE][-+]?\d+)?)" + + r"\s+(?P[-+]?(\d+(\.\d*)?|\.\d+)([eE][-+]?\d+)?)" + + r"\s+(?P[-+]?(\d+(\.\d*)?|\.\d+)([eE][-+]?\d+)?)\s+") + + current_line = 0 + + for line in f: + if callback and callback(): + raise AbortOperationException("STLImporter: load model operation cancelled") + current_line += 1 + m = solid.match(line) + if m: + model.name = m.group(1) + continue + + m = facet.match(line) + if m: + m = normal.match(line) + if m: + n = (float(m.group('x')), float(m.group('y')), float(m.group('z')), 'v') + else: + n = None + continue + m = loop.match(line) + if m: + continue + m = vertex.match(line) + if m: + p = get_unique_vertex(float(m.group('x')), float(m.group('y')), + float(m.group('z'))) + if p1 is None: + p1 = p + elif p2 is None: + p2 = p + elif p3 is None: + p3 = p + else: + log.error("STLImporter: more then 3 points in facet (line %d)", current_line) + continue + m = endloop.match(line) + if m: + continue + m = endfacet.match(line) + if m: + if None in (p1, p2, p3): + log.warn("Invalid facet definition in line %d of '%s'. Please validate the " + "STL file!", current_line, filename) + n, p1, p2, p3 = None, None, None, None + continue + if not n: + n = pnormalized(pcross(psub(p2, p1), psub(p3, p1))) + + # validate the normal + # The three vertices of a triangle in an STL file are supposed + # to be in counter-clockwise order. This should match the + # direction of the normal. + if n is None: + # invalid triangle (zero-length vector) + dotcross = 0 + else: + # make sure the points are in ClockWise order + dotcross = pdot(n, pcross(psub(p2, p1), psub(p3, p1))) + if dotcross > 0: + # Triangle expects the vertices in clockwise order + t = Triangle(p1, p3, p2, n) + elif dotcross < 0: + if not normal_conflict_warning_seen: + log.warn("Inconsistent normal/vertices found in line %d of '%s'. Please " + "validate the STL file!", current_line, filename) + normal_conflict_warning_seen = True + t = Triangle(p1, p2, p3, n) + else: + # The three points are in a line - or two points are + # identical. Usually this is caused by points, that are too + # close together. Check the tolerance value in + # pycam/Geometry/PointKdtree.py. + log.warn("Skipping invalid triangle: %s / %s / %s (maybe the resolution of " + "the model is too high?)", p1, p2, p3) + n, p1, p2, p3 = (None, None, None, None) + continue + n, p1, p2, p3 = (None, None, None, None) + model.append(t) + continue + m = endsolid.match(line) + if m: + continue + + # TODO display unique vertices and edges count - currently not counted + log.info("Imported STL model: %d triangles", len(model.triangles())) + vertices = 0 + edges = 0 + kdtree = None + + if not model: + # no valid items added to the model + raise LoadFileError("Failed to load model from STL file: no elements found") + else: + return model diff --git a/pycam/pycam/Importers/SVGDirectImporter.py b/pycam/pycam/Importers/SVGDirectImporter.py new file mode 100644 index 00000000..b4bda3a4 --- /dev/null +++ b/pycam/pycam/Importers/SVGDirectImporter.py @@ -0,0 +1,270 @@ +""" +parse basic structures from an SVG file + +The goal of this parser is not to grasp the full complexity of SVG. Only the following items +are supported: + * "g": grouping of objects into layers + * "path": parse the "d" attribute via svg.path into straight and non-straight lines + +see https://www.w3.org/TR/2011/REC-SVG11-20110816/struct.html#Groups + + +Copyright 2018 Lars Kruse + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + +import collections +import math + +import xml.etree.ElementTree + +from pycam.errors import AbortOperationException, MissingDependencyError +import pycam.Geometry.Line +import pycam.Geometry.Polygon +import pycam.Geometry.Model +import pycam.Utils +from pycam.Utils.locations import open_file_context + +try: + import svg.path +except ImportError: + raise MissingDependencyError("Failed to load python module 'svg.path'. On a Debian-based " + "system you may want to install 'python3-svg.path'.") + +log = pycam.Utils.log.get_logger() + + +# the following tags are known to exist, but are not relevant for our importer +IGNORED_TAGS = { + "defs", + "metadata", + # part of the "text" tag, which already causes a helpful warning to be emitted + "tspan", + "{http://creativecommons.org/ns#}Work", + "{http://purl.org/dc/elements/1.1/}format", + "{http://purl.org/dc/elements/1.1/}type", + "{http://purl.org/dc/elements/1.1/}title", + "{http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd}namedview", + "{http://www.inkscape.org/namespaces/inkscape}path-effect", + "{http://www.inkscape.org/namespaces/inkscape}perspective", + "{http://www.w3.org/1999/02/22-rdf-syntax-ns#}RDF", +} +# these tags are technically difficult or impossible to implement +UNSUPPORTABLE_TAGS = {"text"} + +PathGroup = collections.namedtuple("PathGroup", ("id", "paths")) + + +class SVGXMLParser: + + def __init__(self): + self.groups = [] + self.namespace = "" + self._emitted_tag_warnings = set() + + def _append_svg_path(self, path: svg.path.Path): + if not self.groups: + self.groups.append(PathGroup(None, [])) + self.groups[-1].paths.append(path) + + @staticmethod + def _parse_svg_path_from_rectangle(x, y, dim_x, dim_y, rx, ry): + def get_line(start, end): + return svg.path.Line(complex(*start), complex(*end)) + + def get_small_clockwise_arc(start, radius, end): + # arc: we pick the small arc (<180 degrees) + # sweep: we use counter-clockwise direction + return svg.path.Arc(start=complex(*start), radius=complex(*radius), + rotation=0, arc=False, sweep=False, end=complex(*end)) + + segments = [] + if rx is None and ry is None: + # corners of the rectangle in counter-clockwise order + p1, p2, p3, p4 = (x, y), (x + dim_x, y), (x + dim_x, y + dim_y), (x, y + dim_y) + segments.append(get_line(p1, p2)) + segments.append(get_line(p2, p3)) + segments.append(get_line(p3, p4)) + segments.append(get_line(p4, p1)) + else: + # Positions within the rectangle in counter-clockwise order, where the straight lines + # and the arcs meet. + p_bottom1, p_bottom2 = (x + rx, y), (x + dim_x - rx, y) + p_right1, p_right2 = (x + dim_x, y + ry), (x + dim_x, y + dim_y - ry) + p_top1, p_top2 = (x + dim_x - rx, y + dim_y), (x + rx, y + dim_y) + p_left1, p_left2 = (x, y + dim_y - ry), (x, y + ry) + segments.append(get_line(p_bottom1, p_bottom2)) + segments.append(get_small_clockwise_arc(p_bottom2, (rx, ry), p_right1)) + segments.append(get_line(p_right1, p_right2)) + segments.append(get_small_clockwise_arc(p_right2, (rx, ry), p_top1)) + segments.append(get_line(p_top1, p_top2)) + segments.append(get_small_clockwise_arc(p_top2, (rx, ry), p_left1)) + segments.append(get_line(p_left1, p_left2)) + segments.append(get_small_clockwise_arc(p_left2, (rx, ry), p_bottom1)) + path = svg.path.Path(*segments) + path.closed = True + return path + + def start(self, tag, attrib): + if tag.startswith(self.namespace): + tag = tag[len(self.namespace):] + if tag.endswith("}svg"): + self.namespace = tag[:-3] + elif tag == "g": + self.groups.append(PathGroup(attrib.get("id"), [])) + elif tag == "path": + parsed_path = svg.path.parse_path(attrib["d"]) + self._append_svg_path(parsed_path) + elif tag == "rect": + parsed_path = self._parse_svg_path_from_rectangle( + float(attrib["x"]), float(attrib["y"]), + float(attrib["width"]), float(attrib["height"]), + float(attrib.get("rx", 0)), float(attrib.get("ry", 0))) + self._append_svg_path(parsed_path) + elif tag in IGNORED_TAGS: + if tag not in self._emitted_tag_warnings: + log.debug("SVGImporter: ignoring irrelevant tag '<%s>'", tag) + self._emitted_tag_warnings.add(tag) + elif tag in UNSUPPORTABLE_TAGS: + if tag not in self._emitted_tag_warnings: + log.warning("SVGImporter: encountered the SVG tag '<%s>', which is not supported. " + "Please convert this object into a path (e.g. with inkscape).", tag) + self._emitted_tag_warnings.add(tag) + else: + if tag not in self._emitted_tag_warnings: + log.warning( + "SVGImporter: ignoring unsupported SVG element: <%s>. Please open an issue, " + "if you think it is a basic element and should be supported.", tag) + self._emitted_tag_warnings.add(tag) + + def end(self, tag): + pass + + def data(self, data): + pass + + def close(self): + pass + + +def parse_path_groups_from_svg_file(filename, callback=None): + """ parse SVG data from a file and return the resulting svg.path objects grouped by layer """ + if callback is None: + # we are not running interactively - use big chunks + read_chunk_size = 1 * 1024 ** 3 + else: + # read smaller 16 KB chunks (improving responsiveness of the GUI) + read_chunk_size = 64 * 1024 ** 2 + target = SVGXMLParser() + parser = xml.etree.ElementTree.XMLParser(target=target) + try: + with open_file_context(filename, "r", True) as svg_file: + while True: + chunk = svg_file.read(read_chunk_size) + if not chunk: + break + parser.feed(chunk) + if callback and callback(): + raise AbortOperationException( + "SVGImporter: load model operation was cancelled") + except IOError as exc: + log.error("SVGImporter: Failed to read svg file (%s): %s", filename, exc) + return + parser.close() + return target.groups + + +# TODO: remove the hard-coded accuracy +def _get_polygons_from_svg_path(path: svg.path.Path, z, interpolation_accuracy=0.1, + min_interpolation_steps=5, max_interpolation_steps=32): + """ convert an svg.path.Path object into a list of pycam.Geometry.Polygon.Polygon + + Non-linear segments are interpolated into a set of lines. + + @param z: the wanted z value for all (flat by design) paths + @param interpolation_accuracy: peferred step width to be used for interpolation + @param min_interpolation_steps: minimum number of steps to be used for interpolation + @param max_interpolation_steps: maximum number of steps to be used for interpolation + """ + polygons = [] + previous_segment_end = None + for segment in path: + if not segment: + continue + current_segment_start = segment.point(0) + current_segment_end = segment.point(1) + if (previous_segment_end is None) or (previous_segment_end != current_segment_start): + # create a new polygon + polygons.append(pycam.Geometry.Polygon.Polygon()) + current_polygon = polygons[-1] + if isinstance(segment, svg.path.Line): + step_count = 1 + else: + # we need to add points on the (non-straight) way + step_count = math.ceil(segment.length() / interpolation_accuracy) + if min_interpolation_steps is not None: + step_count = max(min_interpolation_steps, step_count) + if max_interpolation_steps is not None: + step_count = min(max_interpolation_steps, step_count) + assert min_interpolation_steps > 0 + previous_path_point = None + for step_index in range(0, step_count + 1): + position = segment.point(step_index / step_count) + new_point = (position.real, position.imag, z) + if previous_path_point is not None: + line = pycam.Geometry.Line.Line(previous_path_point, new_point) + try: + current_polygon.append(line) + except ValueError: + if line.len < 0.0001: + # zero-length line warnings are tolerable + pass + else: + raise + previous_path_point = new_point + previous_segment_end = current_segment_end + # filter out all empty polygons + return [polygon for polygon in polygons if polygon] + + +def get_polygons_from_path_groups(path_groups, z_level_map=None): + """ convert a list of PathGroup instances to a list of polygons + + @param z_level_map: optional override of z levels for the different groups. Each group + without a defined level is assigned a height of zero, one, two and so forth. + """ + if z_level_map is None: + z_level_map = {} + polygons = [] + default_level = 0 + for group in path_groups: + try: + level = z_level_map[group.id] + except KeyError: + level = default_level + default_level += 1 + for path in group.paths: + polygons.extend(_get_polygons_from_svg_path(path, level)) + return polygons + + +def import_model(filename, callback=None, **kwargs): + path_groups = parse_path_groups_from_svg_file(filename, callback=callback) + model = pycam.Geometry.Model.ContourModel() + for polygon in get_polygons_from_path_groups(path_groups): + model.append(polygon) + return model diff --git a/pycam/pycam/Importers/SVGImporter.py b/pycam/pycam/Importers/SVGImporter.py new file mode 100644 index 00000000..655cd3be --- /dev/null +++ b/pycam/pycam/Importers/SVGImporter.py @@ -0,0 +1,171 @@ +""" +TODO: remove this obsolete SVGImporter +see https://github.com/SebKuzminsky/pycam/issues/118 + +Copyright 2010 Lars Kruse + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + +import os +import subprocess +import tempfile + +from pycam.errors import AbortOperationException, LoadFileError +import pycam.Importers.DXFImporter +import pycam.Utils +from pycam.Utils.locations import create_named_temporary_file, get_external_program_location +log = pycam.Utils.log.get_logger() + + +def convert_svg2eps(svg_filename, eps_filename, location=None): + if location is None: + location = get_external_program_location("inkscape") + if location is None: + location = "inkscape" + try: + process = subprocess.Popen(stdin=subprocess.PIPE, stdout=subprocess.PIPE, + stderr=subprocess.PIPE, + args=[location, "--export-area-page", "--export-eps", + eps_filename, svg_filename]) + except OSError as exc: + raise LoadFileError("SVGImporter: failed to execute 'inkscape' ({}): {}{}Maybe you need " + "to install Inkscape (http://inkscape.org)?" + .format(location, exc, os.linesep)) + returncode = process.wait() + if returncode != 0: + raise LoadFileError("SVGImporter: failed to convert SVG file ({}) to EPS file ({}): {}" + .format(svg_filename, eps_filename, process.stderr.read())) + + +def convert_eps2dxf(eps_filename, dxf_filename, location=None, unit="mm"): + if location is None: + location = get_external_program_location("pstoedit") + if location is None: + location = "pstoedit" + args = [location, "-dt", "-nc", "-f", "dxf:-polyaslines"] + if unit == "mm": + # eps uses inch by default - we need to scale + args.extend(("-xscale", "25.4", "-yscale", "25.4")) + args.append(eps_filename) + args.append(dxf_filename) + try: + process = subprocess.Popen(stdin=subprocess.PIPE, stdout=subprocess.PIPE, + stderr=subprocess.PIPE, args=args) + except OSError as err_msg: + raise LoadFileError("SVGImporter: failed to execute 'pstoedit' ({}): {}{}Maybe you need " + "to install pstoedit (http://pstoedit.net)?" + .format(location, err_msg, os.linesep)) + returncode = process.wait() + if returncode == 0: + try: + # pstoedit fails with exitcode=0 if ghostscript is not installed. + # The resulting file seems to be quite small (268 byte). But it is + # not certain, that this filesize is fixed in case of this problem. + if os.path.getsize(dxf_filename) < 280: + log.warn("SVGImporter: maybe there was a problem with the conversion from EPS " + "(%s) to DXF.\nProbably you need to install 'ghostscript' " + "(http://pages.cs.wisc.edu/~ghost).", str(eps_filename)) + except OSError: + # The dxf file was not created. + raise LoadFileError("SVGImporter: no DXF file was created, even though no error code " + "was returned. This seems to be a bug of 'pstoedit'. Please send " + "the original model file to the PyCAM developers. Thanks!") + elif returncode == -11: + # just a warning - probably it worked fine + log.warn("SVGImporter: maybe there was a problem with the conversion from EPS (%s) to " + "DXF.\n Users of Ubuntu 'lucid' should install the package 'libpstoedit0c2a' " + "from the 'maverick' repository to avoid this warning.", str(eps_filename)) + else: + raise LoadFileError("SVGImporter: failed to convert EPS file ({}) to DXF file ({}): {}" + .format(eps_filename, dxf_filename, process.stderr.read())) + + +def import_model(filename, program_locations=None, unit="mm", callback=None, **kwargs): + local_file = False + if hasattr(filename, "read"): + infile = filename + svg_file_handle, svg_file_name = tempfile.mkstemp(suffix=".svg") + try: + temp_file = os.fdopen(svg_file_handle, "w") + temp_file.write(infile.read()) + temp_file.close() + except IOError as err_msg: + log.error("SVGImporter: Failed to create temporary local file (%s): %s", + svg_file_name, err_msg) + return + filename = svg_file_name + else: + uri = pycam.Utils.URIHandler(filename) + if not uri.exists(): + log.error("SVGImporter: file (%s) does not exist", filename) + return None + if not uri.is_local(): + # non-local file - write it to a temporary file first + svg_file_handle, svg_file_name = tempfile.mkstemp(suffix=".svg") + os.close(svg_file_handle) + log.debug("Retrieving SVG file for local access: %s -> %s", uri, svg_file_name) + if not uri.retrieve_remote_file(svg_file_name, callback=callback): + log.error("SVGImporter: Failed to retrieve the SVG model file: %s -> %s", + uri, svg_file_name) + filename = svg_file_name + else: + filename = uri.get_local_path() + local_file = True + + if program_locations and "inkscape" in program_locations: + inkscape_path = program_locations["inkscape"] + else: + inkscape_path = None + + if program_locations and "pstoedit" in program_locations: + pstoedit_path = program_locations["pstoedit"] + else: + pstoedit_path = None + + # the "right" way would be: + # inkscape --print='| pstoedit -dt -f dxf:-polyaslines - -' input.svg + # Sadly a bug in v0.47 breaks this: + # https://bugs.launchpad.net/inkscape/+bug/511361 + + def remove_temp_file(filename): + if os.path.isfile(filename): + try: + os.remove(filename) + except OSError as err_msg: + log.warn("SVGImporter: failed to remove temporary file (%s): %s", + filename, err_msg) + + # convert svg to eps via inkscape + with create_named_temporary_file(suffix=".eps") as eps_file_name: + convert_svg2eps(filename, eps_file_name, location=inkscape_path) + + # remove the temporary file + if not local_file: + remove_temp_file(svg_file_name) + if callback and callback(): + raise AbortOperationException("SVGImporter: load model operation was cancelled") + log.info("Successfully converted SVG file to EPS file") + + # convert eps to dxf via pstoedit + with create_named_temporary_file(suffix=".dxf") as dxf_file_name: + convert_eps2dxf(eps_file_name, dxf_file_name, unit=unit, location=pstoedit_path) + if callback and callback(): + raise AbortOperationException("SVGImporter: load model operation was cancelled") + else: + log.info("Successfully converted EPS file to DXF file") + return pycam.Importers.DXFImporter.import_model( + dxf_file_name, unit=unit, color_as_height=True, callback=callback) diff --git a/pycam/pycam/Importers/TestModel.py b/pycam/pycam/Importers/TestModel.py new file mode 100644 index 00000000..b501c5a3 --- /dev/null +++ b/pycam/pycam/Importers/TestModel.py @@ -0,0 +1,73 @@ +""" +Copyright 2008-2009 Lode Leroy + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + +from pycam.Geometry.Triangle import Triangle +from pycam.Geometry.Line import Line +from pycam.Geometry.Model import Model + + +def get_test_model(): + points = [] + points.append((-2, 1, 4)) + points.append((2, 1, 4)) + points.append((0, -2, 4)) + points.append((-5, 2, 2)) + points.append((-1, 3, 2)) + points.append((5, 2, 2)) + points.append((4, -1, 2)) + points.append((2, -4, 2)) + points.append((-2, -4, 2)) + points.append((-3, -2, 2)) + + lines = [] + lines.append(Line(points[0], points[1])) + lines.append(Line(points[1], points[2])) + lines.append(Line(points[2], points[0])) + lines.append(Line(points[0], points[3])) + lines.append(Line(points[3], points[4])) + lines.append(Line(points[4], points[0])) + lines.append(Line(points[4], points[1])) + lines.append(Line(points[4], points[5])) + lines.append(Line(points[5], points[1])) + lines.append(Line(points[5], points[6])) + lines.append(Line(points[6], points[1])) + lines.append(Line(points[6], points[2])) + lines.append(Line(points[6], points[7])) + lines.append(Line(points[7], points[2])) + lines.append(Line(points[7], points[8])) + lines.append(Line(points[8], points[2])) + lines.append(Line(points[8], points[9])) + lines.append(Line(points[9], points[2])) + lines.append(Line(points[9], points[0])) + lines.append(Line(points[9], points[3])) + + model = Model() + for p1, p2, p3, l1, l2, l3 in ((0, 1, 2, 0, 1, 2), + (0, 3, 4, 3, 4, 5), + (0, 4, 1, 5, 6, 0), + (1, 4, 5, 6, 7, 8), + (1, 5, 6, 8, 9, 10), + (1, 6, 2, 10, 11, 1), + (2, 6, 7, 11, 12, 13), + (2, 7, 8, 13, 14, 15), + (2, 8, 9, 15, 16, 17), + (2, 9, 0, 17, 18, 2), + (0, 9, 3, 18, 19, 3)): + model.append(Triangle(points[p1], points[p2], points[p3])) + return model diff --git a/pycam/pycam/Importers/__init__.py b/pycam/pycam/Importers/__init__.py new file mode 100644 index 00000000..2e282552 --- /dev/null +++ b/pycam/pycam/Importers/__init__.py @@ -0,0 +1,56 @@ +""" +Copyright 2008 Lode Leroy +Copyright 2010 Lars Kruse + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + +import collections + +from pycam.Utils import URIHandler +import pycam.Utils.log + + +_log = pycam.Utils.log.get_logger() + + +DetectedFileType = collections.namedtuple("DetectedFileType", ("extension", "importer", "uri")) + + +def detect_file_type(filename, quiet=False): + # also accept URI input + uri = URIHandler(filename) + filename = uri.get_path() + # check all listed importers + # TODO: this should be done by evaluating the header of the file + if filename.lower().endswith(".stl"): + import pycam.Importers.STLImporter + return DetectedFileType("stl", pycam.Importers.STLImporter.import_model, uri) + elif filename.lower().endswith(".dxf"): + import pycam.Importers.DXFImporter + return DetectedFileType("dxf", pycam.Importers.DXFImporter.import_model, uri) + elif filename.lower().endswith(".svg"): + import pycam.Importers.SVGDirectImporter + return DetectedFileType("svg", pycam.Importers.SVGDirectImporter.import_model, uri) + elif filename.lower().endswith(".eps") \ + or filename.lower().endswith(".ps"): + import pycam.Importers.PSImporter + return DetectedFileType("ps", pycam.Importers.PSImporter.import_model, uri) + else: + if not quiet: + _log.error("Importers: Failed to detect the model type of '%s'. Is the file extension " + "(stl/dxf/svg/eps/ps) correct?", filename) + return None diff --git a/pycam/pycam/PathGenerators/ContourFollow.py b/pycam/pycam/PathGenerators/ContourFollow.py new file mode 100644 index 00000000..e2ad07a8 --- /dev/null +++ b/pycam/pycam/PathGenerators/ContourFollow.py @@ -0,0 +1,493 @@ +""" +Copyright 2010 Lars Kruse + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . + + + +take a look at the related blog posting describing this algorithm: + http://fab.senselab.org/node/43 +""" + +from pycam.Geometry import ceil, epsilon, sqrt +from pycam.Geometry.Line import Line +from pycam.Geometry.Plane import Plane +from pycam.Geometry.PointUtils import padd, pcross, pdot, pmul, pnorm, pnormalized, psub +from pycam.PathGenerators import get_free_paths_triangles +from pycam.Utils import ProgressCounter +from pycam.Utils.threading import run_in_parallel +import pycam.Utils.log + +_DEBUG_DISABLE_COLLISION_CHECK = False +_DEBUG_DISABLE_EXTEND_LINES = False +_DEBUG_DISBALE_WATERLINE_SHIFT = False + + +log = pycam.Utils.log.get_logger() + + +# We need to use a global function here - otherwise it does not work with +# the multiprocessing Pool. +def _process_one_triangle(extra_args): + model, cutter, up_vector, triangle, z = extra_args + result = [] + # ignore triangles below the z level + if triangle.maxz < z: + # Case 1a + return result, None + # ignore triangles pointing upwards or downwards + if pnorm(pcross(triangle.normal, up_vector)) == 0: + # Case 1b + return result, None + edge_collisions = get_collision_waterline_of_triangle(model, cutter, up_vector, triangle, z) + if edge_collisions is None: + # don't try to use this edge again + return result, [id(triangle)] + elif len(edge_collisions) == 0: + return result, None + else: + for cutter_location, edge in edge_collisions: + shifted_edge = get_shifted_waterline(up_vector, edge, cutter_location) + if shifted_edge is not None: + if _DEBUG_DISBALE_WATERLINE_SHIFT: + result.append((edge, edge)) + else: + result.append((edge, shifted_edge)) + return result, None + + +class CollisionPaths: + + def __init__(self): + self.waterlines = [] + self.shifted_lines = [] + + def __str__(self): + lines = [] + for index, t in enumerate(self.triangles): + lines.append("%d - %s" % (index, t)) + if not self.left[index]: + left_index = None + else: + left_index = [] + for left in self.left[index]: + left_index.append(self.triangles.index(left)) + if not self.right[index]: + right_index = None + else: + right_index = [] + for right in self.right[index]: + right_index.append(self.triangles.index(right)) + lines.append("\t%s / %s" % (left_index, right_index)) + lines.append("\t%s" % str(self.waterlines[index])) + lines.append("\t%s" % str(self.shifted_lines[index])) + return "\n".join(lines) + + def add(self, waterline, shifted_line): + if waterline in self.waterlines: + # ignore this triangle + return + self.waterlines.append(waterline) + self.shifted_lines.append(shifted_line) + + def _get_groups(self): + if len(self.waterlines) == 0: + return [] + queue = range(len(self.waterlines)) + current_group = [0] + queue.pop(0) + groups = [current_group] + while queue: + for index in queue: + index_wl = self.waterlines[index] + if index_wl.p2 == self.waterlines[current_group[0]].p1: + current_group.insert(0, index) + queue.remove(index) + break + elif index_wl.p1 == self.waterlines[current_group[-1]].p2: + current_group.append(index) + queue.remove(index) + break + else: + pass + else: + # no new members added to this group - start a new one + current_group = [queue[0]] + queue.pop(0) + groups.append(current_group) + return groups + + def extend_shifted_lines(self): + # TODO: improve the code below to handle "holes" properly (neighbours + # that disappear due to a negative collision distance - use the example + # "SampleScene.stl" as a reference) + def get_right_neighbour(group, ref): + group_len = len(group) + # limit the search for a neighbour for non-closed groups + if self.waterlines[group[0]].p1 == self.waterlines[group[-1]].p2: + index_range = range(ref + 1, ref + group_len) + else: + index_range = range(ref + 1, group_len) + for index in index_range: + line_id = group[index % group_len] + if self.shifted_lines[line_id] is not None: + return line_id + return None + groups = self._get_groups() + for group in groups: + index = 0 + while index < len(group): + current = group[index] + current_shifted = self.shifted_lines[current] + if current_shifted is None: + index += 1 + continue + neighbour = get_right_neighbour(group, index) + if neighbour is None: + # no right neighbour available + break + neighbour_shifted = self.shifted_lines[neighbour] + if current_shifted.p2 == neighbour_shifted.p1: + index += 1 + continue + cp, dist = current_shifted.get_intersection(neighbour_shifted, infinite_lines=True) + cp2, dist2 = neighbour_shifted.get_intersection(current_shifted, + infinite_lines=True) + # TODO: add an arc (composed of lines) for a soft corner (not + # required, but nicer) + if dist < epsilon: + self.shifted_lines[current] = None + index -= 1 + elif dist2 > 1 - epsilon: + self.shifted_lines[neighbour] = None + else: + self.shifted_lines[current] = Line(current_shifted.p1, cp) + self.shifted_lines[neighbour] = Line(cp, neighbour_shifted.p2) + index += 1 + + def get_shifted_lines(self): + result = [] + groups = self._get_groups() + for group in groups: + for index in group: + if self.shifted_lines[index] is not None: + result.append(self.shifted_lines[index]) + return result + + +class ContourFollow: + + def __init__(self, path_processor): + self.pa = path_processor + self._up_vector = (0, 0, 1, 'v') + self._processed_triangles = [] + + def _get_free_paths(self, cutter, models, p1, p2): + return get_free_paths_triangles(models, cutter, p1, p2) + + def generate_toolpath(self, cutter, models, minx, maxx, miny, maxy, minz, maxz, dz, + draw_callback=None): + # reset the list of processed triangles + self._processed_triangles = [] + # calculate the number of steps + # Sometimes there is a floating point accuracy issue: make sure + # that only one layer is drawn, if maxz and minz are almost the same. + if abs(maxz - minz) < epsilon: + diff_z = 0 + else: + diff_z = abs(maxz - minz) + num_of_layers = 1 + ceil(diff_z / dz) + z_step = diff_z / max(1, (num_of_layers - 1)) + + # only the first model is used for the contour-follow algorithm + # TODO: should we combine all models? + num_of_triangles = len(models[0].triangles(minx=minx, miny=miny, maxx=maxx, maxy=maxy)) + progress_counter = ProgressCounter(2 * num_of_layers * num_of_triangles, draw_callback) + + current_layer = 0 + + z_steps = [(maxz - i * z_step) for i in range(num_of_layers)] + + # collision handling function + for z in z_steps: + # update the progress bar and check, if we should cancel the process + if draw_callback: + if draw_callback(text=("ContourFollow: processing layer %d/%d" + % (current_layer + 1, num_of_layers))): + # cancel immediately + break + self.pa.new_direction(0) + self.generate_toolpath_slice(cutter, models[0], minx, maxx, miny, maxy, z, + draw_callback, progress_counter, num_of_triangles) + self.pa.end_direction() + self.pa.finish() + current_layer += 1 + return self.pa.paths + + def generate_toolpath_slice(self, cutter, model, minx, maxx, miny, maxy, z, draw_callback=None, + progress_counter=None, num_of_triangles=None): + shifted_lines = self.get_potential_contour_lines(cutter, model, minx, maxx, miny, maxy, z, + progress_counter=progress_counter) + if num_of_triangles is None: + num_of_triangles = len(shifted_lines) + last_position = None + self.pa.new_scanline() + for line in shifted_lines: + if _DEBUG_DISABLE_COLLISION_CHECK: + points = (line.p1, line.p2) + else: + points = self._get_free_paths(line.p1, line.p2) + if points: + if (last_position is not None) and (last_position != points[0]): + self.pa.end_scanline() + self.pa.new_scanline() + for p in points: + self.pa.append(p) + last_position = points[-1] + if draw_callback: + draw_callback(tool_position=last_position, toolpath=self.pa.paths) + # update the progress counter + if progress_counter is not None: + if progress_counter.increment(): + # quit requested + break + # The progress counter jumps up by the number of non directly processed + # triangles. + if progress_counter is not None: + progress_counter.increment(num_of_triangles - len(shifted_lines)) + self.pa.end_scanline() + return self.pa.paths + + def get_potential_contour_lines(self, cutter, model, minx, maxx, miny, maxy, z, + progress_counter=None): + # use only the first model for the contour + follow_model = model + waterline_triangles = CollisionPaths() + triangles = follow_model.triangles(minx=minx, miny=miny, maxx=maxx, maxy=maxy) + args = [(follow_model, cutter, self._up_vector, t, z) + for t in triangles if id(t) not in self._processed_triangles] + results_iter = run_in_parallel(_process_one_triangle, args, unordered=True, + callback=progress_counter.update) + for result, ignore_triangle_id_list in results_iter: + if ignore_triangle_id_list: + self._processed_triangles.extend(ignore_triangle_id_list) + for edge, shifted_edge in result: + waterline_triangles.add(edge, shifted_edge) + if (progress_counter is not None) and (progress_counter.increment()): + # quit requested + break + if not _DEBUG_DISABLE_EXTEND_LINES: + waterline_triangles.extend_shifted_lines() + result = [] + for line in waterline_triangles.get_shifted_lines(): + cropped_line = line.get_cropped_line(minx, maxx, miny, maxy, z, z) + if cropped_line is not None: + result.append(cropped_line) + return result + + +def get_collision_waterline_of_triangle(model, cutter, up_vector, triangle, z): + # TODO: there are problems with "material allowance > 0" + plane = Plane((0, 0, z), up_vector) + if triangle.minz >= z: + # no point of the triangle is below z + # try all edges + # Case (4) + proj_points = [] + for p in triangle.get_points(): + proj_p = plane.get_point_projection(p) + if proj_p not in proj_points: + proj_points.append(proj_p) + if len(proj_points) == 3: + edges = [] + for index in range(3): + edge = Line(proj_points[index - 1], proj_points[index]) + # the edge should be clockwise around the model + if pdot(pcross(edge.dir, triangle.normal), up_vector) < 0: + edge = Line(edge.p2, edge.p1) + edges.append((edge, proj_points[index - 2])) + outer_edges = [] + for edge, other_point in edges: + # pick only edges, where the other point is on the right side + if pdot(pcross(psub(other_point, edge.p1), edge.dir), up_vector) > 0: + outer_edges.append(edge) + if len(outer_edges) == 0: + # the points seem to be an one line + # pick the longest edge + long_edge = edges[0][0] + for edge, other_point in edges[1:]: + if edge.len > long_edge.len: + long_edge = edge + outer_edges = [long_edge] + else: + edge = Line(proj_points[0], proj_points[1]) + if pdot(pcross(edge.dir, triangle.normal), up_vector) < 0: + edge = Line(edge.p2, edge.p1) + outer_edges = [edge] + else: + # some parts of the triangle are above and some below the cutter level + # Cases (2a), (2b), (3a) and (3b) + points_above = [plane.get_point_projection(p) for p in triangle.get_points() if p[2] > z] + waterline = plane.intersect_triangle(triangle) + if waterline is None: + if len(points_above) == 0: + # the highest point of the triangle is at z + outer_edges = [] + else: + if abs(triangle.minz - z) < epsilon: + # This is just an accuracy issue (see the + # "triangle.minz >= z" statement above). + outer_edges = [] + elif not [p for p in triangle.get_points() if p[2] > z + epsilon]: + # same as above: fix for inaccurate floating calculations + outer_edges = [] + else: + # this should not happen + raise ValueError(("Could not find a waterline, but there are points above z " + "level (%f): %s / %s") % (z, triangle, points_above)) + else: + # remove points that are not part of the waterline + points_above = [p for p in points_above if (p != waterline.p1) and (p != waterline.p2)] + if len(points_above) == 0: + # part of case (2a) + outer_edges = [waterline] + elif len(points_above) == 1: + other_point = points_above[0] + dot = pdot(pcross(psub(other_point, waterline.p1), waterline.dir), up_vector) + if dot > 0: + # Case (2b) + outer_edges = [waterline] + elif dot < 0: + # Case (3b) + edges = [] + edges.append(Line(waterline.p1, other_point)) + edges.append(Line(waterline.p2, other_point)) + outer_edges = [] + for edge in edges: + if pdot(pcross(edge.dir, triangle.normal), up_vector) < 0: + outer_edges.append(Line(edge.p2, edge.p1)) + else: + outer_edges.append(edge) + else: + # the three points are on one line + # part of case (2a) + edges = [] + edges.append(waterline) + edges.append(Line(waterline.p1, other_point)) + edges.append(Line(waterline.p2, other_point)) + edges.sort(key=lambda x: x.len) + edge = edges[-1] + if pdot(pcross(edge.dir, triangle.normal), up_vector) < 0: + outer_edges = [Line(edge.p2, edge.p1)] + else: + outer_edges = [edge] + else: + # two points above + other_point = points_above[0] + dot = pdot(pcross(psub(other_point, waterline.p1), waterline.dir), up_vector) + if dot > 0: + # Case (2b) + # the other two points are on the right side + outer_edges = [waterline] + elif dot < 0: + # Case (3a) + edge = Line(points_above[0], points_above[1]) + if pdot(pcross(edge.dir, triangle.normal), up_vector) < 0: + outer_edges = [Line(edge.p2, edge.p1)] + else: + outer_edges = [edge] + else: + edges = [] + # pick the longest combination of two of these points + # part of case (2a) + # TODO: maybe we should use the waterline instead? + # (otherweise the line could be too long and thus + # connections to the adjacent waterlines are not discovered? + # Test this with an appropriate test model.) + points = [waterline.p1, waterline.p2] + points_above + for p1 in points: + for p2 in points: + if p1 is not p2: + edges.append(Line(p1, p2)) + edges.sort(key=lambda x: x.len) + edge = edges[-1] + if pdot(pcross(edge.dir, triangle.normal), up_vector) < 0: + outer_edges = [Line(edge.p2, edge.p1)] + else: + outer_edges = [edge] + # calculate the maximum diagonal length within the model + x_dim = abs(model.maxx - model.minx) + y_dim = abs(model.maxy - model.miny) + z_dim = abs(model.maxz - model.minz) + max_length = sqrt(x_dim ** 2 + y_dim ** 2 + z_dim ** 2) + result = [] + for edge in outer_edges: + direction = pnormalized(pcross(up_vector, edge.dir)) + if direction is None: + continue + direction = pmul(direction, max_length) + edge_dir = psub(edge.p2, edge.p1) + # TODO: Adapt the number of potential starting positions to the length + # of the line. Don't use 0.0 and 1.0 - this could result in ambiguous + # collisions with triangles sharing these vertices. + for factor in (0.5, epsilon, 1.0 - epsilon, 0.25, 0.75): + start = padd(edge.p1, pmul(edge_dir, factor)) + # We need to use the triangle collision algorithm here - because we + # need the point of collision in the triangle. + collisions = get_free_paths_triangles([model], cutter, start, padd(start, direction), + return_triangles=True) + for index, coll in enumerate(collisions): + if ((index % 2 == 0) and (coll[1] is not None) + and (coll[2] is not None) + and (pdot(psub(coll[0], start), direction) > 0)): + cl, hit_t, cp = coll + break + else: + log.debug("Failed to detect any collision: %s / %s -> %s", edge, start, direction) + continue + proj_cp = plane.get_point_projection(cp) + # e.g. the Spherical Cutter often does not collide exactly above + # the potential collision line. + # TODO: maybe an "is cp inside of the triangle" check would be good? + if (triangle is hit_t) or (edge.is_point_inside(proj_cp)): + result.append((cl, edge)) + # continue with the next outer_edge + break + # Don't check triangles again that are completely above the z level and + # did not return any collisions. + if not result and (triangle.minz > z): + # None indicates that the triangle needs no further evaluation + return None + return result + + +def get_shifted_waterline(up_vector, waterline, cutter_location): + # Project the waterline and the cutter location down to the slice plane. + # This is necessary for calculating the horizontal distance between the + # cutter and the triangle waterline. + plane = Plane(cutter_location, up_vector) + wl_proj = plane.get_line_projection(waterline) + if wl_proj.len < epsilon: + return None + offset = wl_proj.dist_to_point(cutter_location) + if offset < epsilon: + return wl_proj + # shift both ends of the waterline towards the cutter location + shift = psub(cutter_location, wl_proj.closest_point(cutter_location)) + # increase the shift width slightly to avoid "touch" collisions + shift = pmul(shift, 1.0 + epsilon) + shifted_waterline = Line(padd(wl_proj.p1, shift), padd(wl_proj.p2, shift)) + return shifted_waterline diff --git a/pycam/pycam/PathGenerators/DropCutter.py b/pycam/pycam/PathGenerators/DropCutter.py new file mode 100644 index 00000000..2c4954b2 --- /dev/null +++ b/pycam/pycam/PathGenerators/DropCutter.py @@ -0,0 +1,91 @@ +""" +Copyright 2010-2011 Lars Kruse +Copyright 2008-2009 Lode Leroy + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + +import pycam.Geometry.Model +from pycam.PathGenerators import get_max_height_dynamic +from pycam.Toolpath.Steps import MoveStraight, MoveSafety +from pycam.Utils import ProgressCounter +from pycam.Utils.threading import run_in_parallel +import pycam.Utils.log + +log = pycam.Utils.log.get_logger() + + +# We need to use a global function here - otherwise it does not work with +# the multiprocessing Pool. +def _process_one_grid_line(extra_args): + """ This function assumes, that the positions are next to each other. + Otherwise the dynamic over-sampling (in get_max_height_dynamic) is + pointless. + """ + positions, minz, maxz, model, cutter = extra_args + return get_max_height_dynamic(model, cutter, positions, minz, maxz) + + +class DropCutter: + + def generate_toolpath(self, cutter, models, motion_grid, minz=None, maxz=None, + draw_callback=None): + path = [] + quit_requested = False + model = pycam.Geometry.Model.get_combined_model(models) + + # Transfer the grid (a generator) into a list of lists and count the + # items. + lines = [] + # usually there is only one layer - but an xy-grid consists of two + for layer in motion_grid: + for line in layer: + lines.append(line) + + num_of_lines = len(lines) + progress_counter = ProgressCounter(len(lines), draw_callback) + current_line = 0 + + args = [] + for one_grid_line in lines: + # simplify the data (useful for remote processing) + xy_coords = [(pos[0], pos[1]) for pos in one_grid_line] + args.append((xy_coords, minz, maxz, model, cutter)) + for points in run_in_parallel(_process_one_grid_line, args, + callback=progress_counter.update): + if draw_callback and draw_callback( + text="DropCutter: processing line %d/%d" % (current_line + 1, num_of_lines)): + # cancel requested + quit_requested = True + break + for point in points: + if point is None: + # exceeded maxz - the cutter has to skip this point + path.append(MoveSafety()) + else: + path.append(MoveStraight(point)) + # The progress counter may return True, if cancel was requested. + if draw_callback and draw_callback(tool_position=point, toolpath=path): + quit_requested = True + break + # add a move to safety height after each line of moves + path.append(MoveSafety()) + progress_counter.increment() + # update progress + current_line += 1 + if quit_requested: + break + return path diff --git a/pycam/pycam/PathGenerators/EngraveCutter.py b/pycam/pycam/PathGenerators/EngraveCutter.py new file mode 100644 index 00000000..df85c3fa --- /dev/null +++ b/pycam/pycam/PathGenerators/EngraveCutter.py @@ -0,0 +1,70 @@ +""" +Copyright 2010 Lars Kruse +Copyright 2008-2009 Lode Leroy + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + +import pycam.Utils.log + +log = pycam.Utils.log.get_logger() + + +class EngraveCutter: + + def generate_toolpath(self, cutter, models, motion_grid, minz=None, maxz=None, + draw_callback=None): + quit_requested = False + + model = pycam.Geometry.Model.get_combined_model(models) + + if draw_callback: + draw_callback(text="Engrave: optimizing polygon order") + + # resolve the generator + motion_grid = list(motion_grid) + num_of_layers = len(motion_grid) + + push_layers = motion_grid[:-1] + push_generator = pycam.PathGenerators.PushCutter.PushCutter() + current_layer = 0 + push_moves = [] + for push_layer in push_layers: + # update the progress bar and check, if we should cancel the process + if draw_callback and draw_callback( + text="Engrave: processing layer %d/%d" % (current_layer + 1, num_of_layers)): + # cancel immediately + quit_requested = True + break + # no callback: otherwise the status text gets lost + push_moves.extend(push_generator.generate_toolpath(cutter, [model], [push_layer])) + if draw_callback and draw_callback(): + # cancel requested + quit_requested = True + break + current_layer += 1 + + if quit_requested: + return push_moves + + drop_generator = pycam.PathGenerators.DropCutter.DropCutter() + drop_layers = motion_grid[-1:] + if draw_callback: + draw_callback( + text="Engrave: processing layer %d/%d" % (current_layer + 1, num_of_layers)) + drop_moves = drop_generator.generate_toolpath(cutter, [model], drop_layers, minz=minz, + maxz=maxz, draw_callback=draw_callback) + return push_moves + drop_moves diff --git a/pycam/pycam/PathGenerators/PushCutter.py b/pycam/pycam/PathGenerators/PushCutter.py new file mode 100644 index 00000000..14eac345 --- /dev/null +++ b/pycam/pycam/PathGenerators/PushCutter.py @@ -0,0 +1,151 @@ +""" +Copyright 2010 Lars Kruse +Copyright 2008-2009 Lode Leroy + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + +from pycam.PathGenerators import get_free_paths_triangles +import pycam.PathProcessors.ContourCutter +from pycam.Utils.threading import run_in_parallel +from pycam.Utils import ProgressCounter +import pycam.Utils.log +from pycam.Toolpath.Steps import MoveStraight, MoveSafety + + +log = pycam.Utils.log.get_logger() + + +# We need to use a global function here - otherwise it does not work with +# the multiprocessing Pool. +def _process_one_line(extra_args): + p1, p2, models, cutter = extra_args + points = get_free_paths_triangles(models, cutter, p1, p2) + return points + + +class PushCutter: + + def __init__(self, waterlines=False): + log.debug("Starting PushCutter") + self.waterlines = waterlines + + def generate_toolpath(self, cutter, models, motion_grid, minz=None, maxz=None, + draw_callback=None): + # Transfer the grid (a generator) into a list of lists and count the items. + grid = [] + num_of_grid_positions = 0 + for layer in motion_grid: + lines = [] + for line in layer: + # convert the generator to a list + lines.append(list(line)) + num_of_grid_positions += len(lines) + grid.append(lines) + + num_of_layers = len(grid) + + progress_counter = ProgressCounter(num_of_grid_positions, draw_callback) + + current_layer = 0 + if self.waterlines: + self.pa = pycam.PathProcessors.ContourCutter.ContourCutter() + else: + path = [] + for layer_grid in grid: + # update the progress bar and check, if we should cancel the process + if draw_callback and draw_callback(text=("PushCutter: processing layer %d/%d" + % (current_layer + 1, num_of_layers))): + # cancel immediately + break + + if self.waterlines: + self.pa.new_direction(0) + result = self.generate_toolpath_slice(cutter, models, layer_grid, draw_callback, + progress_counter) + if self.waterlines: + self.pa.end_direction() + self.pa.finish() + else: + path.extend(result) + + current_layer += 1 + + if self.waterlines: + # TODO: this is complicated and hacky :( + # we don't use parallelism (for the sake of simplicity) + result = [] + # turn the waterline points into cutting segments + for path in self.pa.paths: + pairs = [] + for index in range(len(path.points) - 1): + pairs.append((path.points[index], path.points[index + 1])) + if len(models) > 1: + # We assume that the first model is used for the waterline and all + # other models are obstacles (e.g. a support grid). + other_models = models[1:] + for p1, p2 in pairs: + free_points = get_free_paths_triangles(other_models, cutter, p1, p2) + for index in range(len(free_points) // 2): + result.append(MoveStraight(free_points[2 * index])) + result.append(MoveStraight(free_points[2 * index + 1])) + result.append(MoveSafety()) + else: + for p1, p2 in pairs: + result.append(MoveStraight(p1)) + result.append(MoveStraight(p2)) + result.append(MoveSafety()) + return result + else: + return path + + def generate_toolpath_slice(self, cutter, models, layer_grid, draw_callback=None, + progress_counter=None): + path = [] + # the ContourCutter pathprocessor does not work with combined models + if self.waterlines: + models = models[:1] + else: + models = models + args = [] + for line in layer_grid: + p1, p2 = line + args.append((p1, p2, models, cutter)) + for points in run_in_parallel(_process_one_line, args, callback=progress_counter.update): + if points: + if self.waterlines: + self.pa.new_scanline() + for point in points: + self.pa.append(point) + else: + for index in range(len(points) // 2): + path.append(MoveStraight(points[2 * index])) + path.append(MoveStraight(points[2 * index + 1])) + path.append(MoveSafety()) + if self.waterlines: + if draw_callback: + draw_callback(tool_position=points[-1]) + self.pa.end_scanline() + else: + if draw_callback: + draw_callback(tool_position=points[-1], toolpath=path) + # update the progress counter + if progress_counter and progress_counter.increment(): + # quit requested + break + + if not self.waterlines: + return path diff --git a/pycam/pycam/PathGenerators/__init__.py b/pycam/pycam/PathGenerators/__init__.py new file mode 100644 index 00000000..2e0f5d0a --- /dev/null +++ b/pycam/pycam/PathGenerators/__init__.py @@ -0,0 +1,321 @@ +""" +Copyright 2010 Lars Kruse +Copyright 2008 Lode Leroy + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + +import time + +from pycam.Geometry import epsilon, INFINITE +from pycam.Geometry.PointUtils import pdist, pnormalized, points_in_line, psub +from pycam.Utils.events import get_event_handler + + +class Hit: + def __init__(self, cl, cp, t, d, direction): + self.cl = cl + self.cp = cp + self.t = t + self.d = d + self.dir = direction + self.z = -INFINITE + + def __repr__(self): + return "%s - %s - %s - %s" % (self.d, self.cl, self.dir, self.cp) + + +def get_free_paths_triangles(models, cutter, p1, p2, return_triangles=False): + if (len(models) == 0) or ((len(models) == 1) and (models[0] is None)): + return (p1, p2) + elif len(models) == 1: + # only one model is left - just continue + model = models[0] + else: + # multiple models were given - process them in layers + result = get_free_paths_triangles(models[:1], cutter, p1, p2, return_triangles) + # group the result into pairs of two points (start/end) + point_pairs = [] + while result: + pair1 = result.pop(0) + pair2 = result.pop(0) + point_pairs.append((pair1, pair2)) + all_results = [] + for pair in point_pairs: + one_result = get_free_paths_triangles(models[1:], cutter, pair[0], pair[1], + return_triangles) + all_results.extend(one_result) + return all_results + + backward = pnormalized(psub(p1, p2)) + forward = pnormalized(psub(p2, p1)) + xyz_dist = pdist(p2, p1) + + minx = min(p1[0], p2[0]) + maxx = max(p1[0], p2[0]) + miny = min(p1[1], p2[1]) + maxy = max(p1[1], p2[1]) + minz = min(p1[2], p2[2]) + + # find all hits along scan line + hits = [] + + triangles = model.triangles(minx - cutter.distance_radius, miny - cutter.distance_radius, minz, + maxx + cutter.distance_radius, maxy + cutter.distance_radius, + INFINITE) + + for t in triangles: + (cl1, d1, cp1) = cutter.intersect(backward, t, start=p1) + if cl1: + hits.append(Hit(cl1, cp1, t, -d1, backward)) + (cl2, d2, cp2) = cutter.intersect(forward, t, start=p1) + if cl2: + hits.append(Hit(cl2, cp2, t, d2, forward)) + + # sort along the scan direction + hits.sort(key=lambda h: h.d) + + count = 0 + points = [] + for h in hits: + if h.dir == forward: + if count == 0: + if -epsilon <= h.d <= xyz_dist + epsilon: + if len(points) == 0: + points.append((p1, None, None)) + points.append((h.cl, h.t, h.cp)) + count += 1 + else: + if count == 1: + if -epsilon <= h.d <= xyz_dist + epsilon: + points.append((h.cl, h.t, h.cp)) + count -= 1 + + if len(points) % 2 == 1: + points.append((p2, None, None)) + + if len(points) == 0: + # check if the path is completely free or if we are inside of the model + inside_counter = 0 + for h in hits: + if -epsilon <= h.d: + # we reached the outer limit of the model + break + if h.dir == forward: + inside_counter += 1 + else: + inside_counter -= 1 + if inside_counter <= 0: + # we are not inside of the model + points.append((p1, None, None)) + points.append((p2, None, None)) + + if return_triangles: + return points + else: + # return only the cutter locations (without triangles) + return [cut_info[0] for cut_info in points] + + +def get_max_height_triangles(model, cutter, x, y, minz, maxz): + """ calculate the lowest position of a tool at a location without colliding with a model + + @param model: a 3D model + @param cutter: the tool to be used + @param x: requested position along the x axis + @param y: requested position along the y axis + @param minz: the tool should never go lower + used as the resulting z level, if no collision was found or it was lower than minz + @param maxz: the highest allowed tool position + @result: a tuple (x/y/z) or None (if the height limit was exeeded) + """ + if model is None: + return (x, y, minz) + p = (x, y, maxz) + height_max = None + box_x_min = cutter.get_minx(p) + box_x_max = cutter.get_maxx(p) + box_y_min = cutter.get_miny(p) + box_y_max = cutter.get_maxy(p) + box_z_min = minz + box_z_max = maxz + # reduce the set of triangles to be checked for collisions + triangles = model.triangles(box_x_min, box_y_min, box_z_min, box_x_max, box_y_max, box_z_max) + for t in triangles: + cut = cutter.drop(t, start=p) + if cut and ((height_max is None) or (cut[2] > height_max)): + height_max = cut[2] + if (height_max is None) or (height_max < minz + epsilon): + # no collision occurred or the collision height is lower than the minimum + return (x, y, minz) + elif height_max > maxz + epsilon: + # there was a collision above the upper allowed z level -> no suitable tool location found + return None + else: + # a suitable tool location was found within the bounding box + return (x, y, height_max) + + +def _get_dynamic_fill_points(start, end, max_height_point_func, remaining_levels): + """ generator for adding points between two given points + + Points are only added, if the point in their middle (especially its height) is not in line with + the outer points. + More points are added recursively (limited via "remaining_levels") between start/middle and + middle/end. + The start and end points are never emitted. This should be done by the caller. + """ + if remaining_levels <= 0: + return + middle = max_height_point_func((start[0] + end[0]) / 2, (start[1] + end[1]) / 2) + if middle is None: + return + if points_in_line(start, middle, end): + return + # the three points are not in line - thus we should add some interval points + for p in _get_dynamic_fill_points(start, middle, max_height_point_func, remaining_levels - 1): + yield p + yield middle + for p in _get_dynamic_fill_points(middle, end, max_height_point_func, remaining_levels - 1): + yield p + + +def _dynamic_point_fill_generator(positions, max_height_point_func, max_level_count): + """ add more points between the given positions in order to detect minor bumps in the model + + If the calculated height between two given positions (points) is not in line with its + neighbours, then additional points are added until the recursion limit ("max_level_count") is + reached or until the interpolated points are in line with their neighbours. + The input positions are returned unchanged, if less than three points are given. + """ + # handle incoming lists/tuples as well as generators + positions = iter(positions) + if max_level_count <= 0: + # reached the maximum recursion limit - simply deliver the input values + for p in positions: + yield p + return + try: + p1 = next(positions) + except StopIteration: + # no items were provided - we do the same + return + try: + p2 = next(positions) + except StopIteration: + # only one item was provided - we just deliver it unchanged + yield p1 + return + last_segment_wants_more_points = False + for p3 in positions: + yield p1 + if (None not in (p1, p2, p3)) and not points_in_line(p1, p2, p3): + for p in _get_dynamic_fill_points(p1, p2, max_height_point_func, max_level_count - 1): + yield p + last_segment_wants_more_points = True + else: + last_segment_wants_more_points = False + p1, p2 = p2, p3 + yield p1 + if last_segment_wants_more_points: + for p in _get_dynamic_fill_points(p1, p2, max_height_point_func, max_level_count - 1): + yield p + yield p2 + + +def _filter_linear_points(positions): + """ reduce the input positions by removing all points which are in line with their neighbours + + The input can be either a list or a generator. + """ + # handle incoming lists/tuples as well as generators + positions = iter(positions) + try: + p1 = next(positions) + except StopIteration: + # no items were provided - we do the same + return + try: + p2 = next(positions) + except StopIteration: + # only one item was provided - we just deliver it unchanged + yield p1 + return + for p3 in positions: + if (None not in (p1, p2, p3) and points_in_line(p1, p2, p3)): + # the three points are in line -> skip p2 + p2 = p3 + else: + # the three points are not in line -> emit them unchanged + yield p1 + p1, p2 = p2, p3 + # emit the backlog + yield p1 + yield p2 + + +def get_max_height_dynamic(model, cutter, positions, minz, maxz, max_depth=5): + """ calculate the tool positions based on a given set of x/y locations + + The given input locations should be suitable for the tool size in order to find all relevant + major features of the model. Additional locations are recursively added, if the calculated + height between every set of two points is not in line with its neighbours. + The result is a list of points to be traveled by the tool. + """ + # for now there is only a triangle-mesh based calculation + get_max_height = lambda x, y: get_max_height_triangles(model, cutter, x, y, minz, maxz) + # calculate suitable tool locations (without collisions) for each given position + points_with_height = (get_max_height(x, y) for x, y in positions) + # Spread more positions between the existing ones. + dynamically_filled_points = _dynamic_point_fill_generator(points_with_height, get_max_height, + max_depth) + # Remove all points that are in line between their neighbours. + return list(_filter_linear_points(dynamically_filled_points)) + + +class UpdateToolView: + """ visualize the position of the tool and the partial toolpath during toolpath generation """ + + def __init__(self, callback, max_fps=1): + self.callback = callback + self.core = get_event_handler() + self.last_update_time = time.time() + self.max_fps = max_fps + self.last_tool_position = None + self.current_tool_position = None + + def update(self, text=None, percent=None, tool_position=None, toolpath=None): + if toolpath is not None: + self.core.set("toolpath_in_progress", toolpath) + # always store the most recently reported tool_position for the next visualization + if tool_position is not None: + self.current_tool_position = tool_position + redraw_wanted = False + current_time = time.time() + if (current_time - self.last_update_time) > 1.0 / self.max_fps: + if self.current_tool_position != self.last_tool_position: + tool = self.core.get("current_tool") + if tool: + tool.moveto(self.current_tool_position) + self.last_tool_position = self.current_tool_position + redraw_wanted = True + if self.core.get("show_toolpath_progress"): + redraw_wanted = True + self.last_update_time = current_time + if redraw_wanted: + self.core.emit_event("visual-item-updated") + # break the loop if someone clicked the "cancel" button + return self.callback(text=text, percent=percent) diff --git a/pycam/pycam/PathProcessors/ContourCutter.py b/pycam/pycam/PathProcessors/ContourCutter.py new file mode 100644 index 00000000..68c09dd7 --- /dev/null +++ b/pycam/pycam/PathProcessors/ContourCutter.py @@ -0,0 +1,76 @@ +""" +Copyright 2008-2010 Lode Leroy + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + +from pycam.Geometry.PolygonExtractor import PolygonExtractor +from pycam.Geometry.PointUtils import pdot, psub +import pycam.PathProcessors +from pycam.Toolpath import simplify_toolpath + + +class ContourCutter(pycam.PathProcessors.BasePathProcessor): + def __init__(self): + super().__init__() + self.curr_path = None + self.scanline = None + self.polygon_extractor = None + self.points = [] + self.__forward = (1, 1, 0) + + def append(self, point): + # Sort the points in positive x/y direction - otherwise the + # PolygonExtractor breaks. + if self.points and (pdot(psub(point, self.points[0]), self.__forward) < 0): + self.points.insert(0, point) + else: + self.points.append(point) + + def new_direction(self, direction): + if self.polygon_extractor is None: + self.polygon_extractor = PolygonExtractor(PolygonExtractor.CONTOUR) + + self.polygon_extractor.new_direction(direction) + + def end_direction(self): + self.polygon_extractor.end_direction() + + def new_scanline(self): + self.polygon_extractor.new_scanline() + self.points = [] + + def end_scanline(self): + for i in range(1, len(self.points) - 1): + self.polygon_extractor.append(self.points[i]) + self.polygon_extractor.end_scanline() + + def finish(self): + self.polygon_extractor.finish() + if self.polygon_extractor.merge_path_list: + paths = self.polygon_extractor.merge_path_list + elif self.polygon_extractor.hor_path_list: + paths = self.polygon_extractor.hor_path_list + else: + paths = self.polygon_extractor.ver_path_list + if paths: + for path in paths: + path.append(path.points[0]) + simplify_toolpath(path) + if paths: + self.paths.extend(paths) + self.sort_layered() + self.polygon_extractor = None diff --git a/pycam/pycam/PathProcessors/PolygonCutter.py b/pycam/pycam/PathProcessors/PolygonCutter.py new file mode 100644 index 00000000..808b50a6 --- /dev/null +++ b/pycam/pycam/PathProcessors/PolygonCutter.py @@ -0,0 +1,75 @@ +""" +Copyright 2010 Lars Kruse +Copyright 2008 Lode Leroy + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + +from pycam.Geometry.Path import Path +from pycam.Geometry.PolygonExtractor import PolygonExtractor +import pycam.PathProcessors +from pycam.Toolpath import simplify_toolpath + + +class PolygonCutter(pycam.PathProcessors.BasePathProcessor): + def __init__(self, reverse=False): + super().__init__() + self.curr_path = None + self.scanline = None + self.polygon_extractor = PolygonExtractor(PolygonExtractor.MONOTONE) + self.reverse = reverse + + def append(self, point): + self.polygon_extractor.append(point) + + def new_direction(self, direction): + self.polygon_extractor.new_direction(direction) + + def end_direction(self): + self.polygon_extractor.end_direction() + + def new_scanline(self): + self.polygon_extractor.new_scanline() + + def end_scanline(self): + self.polygon_extractor.end_scanline() + + def finish(self): + self.polygon_extractor.finish() + paths = [] + source_paths = [] + if self.polygon_extractor.hor_path_list: + source_paths.extend(self.polygon_extractor.hor_path_list) + if self.polygon_extractor.ver_path_list: + source_paths.extend(self.polygon_extractor.ver_path_list) + for path in source_paths: + points = path.points + for i in range((len(points) + 1) // 2): + new_path = Path() + if i % 2 == 0: + new_path.append(points[i]) + new_path.append(points[-i-1]) + else: + new_path.append(points[-i-1]) + new_path.append(points[i]) + paths.append(new_path) + if paths: + for path in paths: + simplify_toolpath(path) + if self.reverse: + path.reverse() + self.paths.extend(paths) + self.sort_layered() diff --git a/pycam/pycam/PathProcessors/__init__.py b/pycam/pycam/PathProcessors/__init__.py new file mode 100644 index 00000000..bcbdf8e8 --- /dev/null +++ b/pycam/pycam/PathProcessors/__init__.py @@ -0,0 +1,53 @@ +""" +Copyright 2008 Lode Leroy + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + + +class BasePathProcessor: + + def __init__(self): + self.paths = [] + + def new_direction(self, direction): + pass + + def end_direction(self): + pass + + def finish(self): + pass + + def sort_layered(self, upper_first=True): + if upper_first: + def compare_height(path1, path2): + return path1.points[0][2] < path2.points[0][2] + else: + def compare_height(path1, path2): + return path1.points[0][2] > path2.points[0][2] + finished = False + while not finished: + index = 0 + finished = True + while index < len(self.paths) - 1: + current_path = self.paths[index] + next_path = self.paths[index + 1] + if compare_height(current_path, next_path): + del self.paths[index] + self.paths.insert(index + 1, current_path) + finished = False + index += 1 diff --git a/pycam/pycam/Physics/__init__.py b/pycam/pycam/Physics/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/pycam/pycam/Plugins/Bounds.py b/pycam/pycam/Plugins/Bounds.py new file mode 100644 index 00000000..24ca9ecc --- /dev/null +++ b/pycam/pycam/Plugins/Bounds.py @@ -0,0 +1,302 @@ +""" +Copyright 2011 Lars Kruse + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + +from pycam.Flow.history import merge_history_and_block_events +import pycam.Plugins +# TODO: move Toolpath.Bounds here? +import pycam.Toolpath +from pycam.workspace.data_models import (Boundary, BoundsSpecification, LimitSingle, + ToolBoundaryMode) + + +_RELATIVE_UNIT = ("%", "mm") + + +class Bounds(pycam.Plugins.ListPluginBase): + + UI_FILE = "bounds.ui" + DEPENDS = ["Models"] + CATEGORIES = ["Bounds"] + COLLECTION_ITEM_TYPE = Boundary + + # mapping of boundary types and GUI control elements + CONTROL_BUTTONS = ("TypeRelativeMargin", "TypeCustom", + "ToolLimit", "RelativeUnit", "BoundaryLowX", + "BoundaryLowY", "BoundaryLowZ", "BoundaryHighX", + "BoundaryHighY", "BoundaryHighZ") + CONTROL_SIGNALS = ("toggled", "value-changed", "changed") + + def setup(self): + self._event_handlers = [] + self.core.set("bounds", self) + if self.gui: + bounds_box = self.gui.get_object("BoundsBox") + bounds_box.unparent() + self.core.register_ui("main", "Bounds", bounds_box, 30) + self._boundsview = self.gui.get_object("BoundsTable") + self.set_gtk_modelview(self._boundsview) + self.register_model_update(lambda: self.core.emit_event("bounds-list-changed")) + for action, obj_name in ((self.ACTION_UP, "BoundsMoveUp"), + (self.ACTION_DOWN, "BoundsMoveDown"), + (self.ACTION_DELETE, "BoundsDelete")): + self.register_list_action_button(action, self.gui.get_object(obj_name)) + self._treemodel = self._boundsview.get_model() + self._treemodel.clear() + self._gtk_handlers = [] + self._gtk_handlers.append((self._boundsview.get_selection(), "changed", + "bounds-selection-changed")) + self._gtk_handlers.append((self.gui.get_object("BoundsNew"), "clicked", + self._bounds_new)) + # model selector + self.models_control = pycam.Gui.ControlsGTK.InputTable( + [], change_handler=lambda *args: self.core.emit_event("bounds-control-changed")) + self.gui.get_object("ModelsViewPort").add(self.models_control.get_widget()) + # quickly adjust the bounds via buttons + for obj_name in ("MarginIncreaseX", "MarginIncreaseY", "MarginIncreaseZ", + "MarginDecreaseX", "MarginDecreaseY", "MarginDecreaseZ", + "MarginResetX", "MarginResetY", "MarginResetZ"): + axis = obj_name[-1] + if "Increase" in obj_name: + args = "+" + elif "Decrease" in obj_name: + args = "-" + else: + args = "0" + self._gtk_handlers.append((self.gui.get_object(obj_name), "clicked", + self._adjust_bounds, axis, args)) + # connect change handler for boundary settings + for axis in "XYZ": + for value in ("Low", "High"): + obj_name = "Boundary%s%s" % (value, axis) + self._gtk_handlers.append((self.gui.get_object(obj_name), "value-changed", + "bounds-control-changed")) + # register all controls + for obj_name in self.CONTROL_BUTTONS: + obj = self.gui.get_object(obj_name) + if obj_name == "TypeRelativeMargin": + self._gtk_handlers.append((obj, "toggled", "bounds-control-changed")) + elif obj_name == "RelativeUnit": + self._gtk_handlers.append((obj, "changed", "bounds-control-changed")) + else: + for signal in self.CONTROL_SIGNALS: + try: + handler = obj.connect(signal, lambda *args: None) + obj.disconnect(handler) + self._gtk_handlers.append((obj, signal, "bounds-control-changed")) + break + except TypeError: + continue + else: + self.log.info("Failed to connect to widget '%s'", str(obj_name)) + continue + self._gtk_handlers.append((self.gui.get_object("NameCell"), "edited", + self.edit_item_name)) + # define cell renderers + self.gui.get_object("SizeColumn").set_cell_data_func(self.gui.get_object("SizeCell"), + self._render_bounds_size) + self.gui.get_object("NameColumn").set_cell_data_func(self.gui.get_object("NameCell"), + self.render_item_name) + self._event_handlers.extend(( + ("model-list-changed", self._update_model_list), + ("model-changed", self._update_model_list), + ("bounds-selection-changed", self._update_bounds_widgets), + ("bounds-changed", self._update_bounds_widgets), + ("bounds-list-changed", self._select_first_if_non_empty), + ("bounds-control-changed", self._transfer_controls_to_bounds))) + self.register_gtk_handlers(self._gtk_handlers) + self._update_model_list() + self._update_bounds_widgets() + # the models and the bounds itself may change the effective size of the boundary + for incoming_event in ("bounds-list-changed", "bounds-changed", + "model-list-changed", "model-changed"): + self._event_handlers.append((incoming_event, self.force_gtk_modelview_refresh)) + self.register_event_handlers(self._event_handlers) + self.register_state_item("bounds-list", self) + self.core.register_namespace("bounds", pycam.Plugins.get_filter(self)) + return True + + def teardown(self): + self.unregister_event_handlers(self._event_handlers) + if self.gui: + self.unregister_gtk_handlers(self._gtk_handlers) + self.core.unregister_ui("main", self.gui.get_object("BoundsBox")) + self.clear_state_items() + self.core.unregister_namespace("bounds") + self.core.set("bounds", None) + self.clear() + + def get_selected_models(self, index=False): + return self.models_control.get_value() + + def select_models(self, models): + self.models_control.set_value([model.get_id() for model in models]) + + def _render_bounds_size(self, column, cell, model, m_iter, data): + bounds = self.get_by_path(model.get_path(m_iter)) + if not bounds: + return + box = bounds.get_absolute_limits() + if box is None: + text = "" + else: + text = "%g x %g x %g" % tuple([box.upper[i] - box.lower[i] for i in range(3)]) + cell.set_property("text", text) + + def _select_first_if_non_empty(self): + """ automatically select a bounds item if none is selected and the list is not empty + + Without this automatic selection the bounding box would not be visible directly after + startup. + """ + if not self.get_selected() and (len(self.get_all()) > 0): + self.select(self.get_all()[0]) + + def _update_model_list(self): + choices = [] + for model in self.core.get("models").get_all(): + choices.append((model.get_application_value("name", model.get_id()), model)) + self.models_control.update_choices(choices) + + def _transfer_controls_to_bounds(self): + bounds = self.get_selected() + if bounds: + bounds.set_value("reference_models", + [model.get_id() for model in self.get_selected_models()]) + is_percent = (self.gui.get_object("RelativeUnit").get_active() == 0) + # absolute bounds or margins around models + if self.gui.get_object("TypeRelativeMargin").get_active(): + specification = BoundsSpecification.MARGINS + else: + specification = BoundsSpecification.ABSOLUTE + # disallow percent values + is_percent = False + bounds.set_value("specification", specification.value) + # overwrite all limit values and set or remove their "relative" flags + for name, obj_keys in (("lower", ("BoundaryLowX", "BoundaryLowY", "BoundaryLowZ")), + ("upper", ("BoundaryHighX", "BoundaryHighY", "BoundaryHighZ"))): + limits = [LimitSingle(self.gui.get_object(name).get_value(), is_percent).export + for name in obj_keys] + bounds.set_value(name, limits) + tool_limit_mode = { + 0: ToolBoundaryMode.INSIDE, + 1: ToolBoundaryMode.ALONG, + 2: ToolBoundaryMode.AROUND}[self.gui.get_object("ToolLimit").get_active()] + bounds.set_value("tool_boundary", tool_limit_mode.value) + + def _copy_from_bounds_to_controls(self, bounds): + self.select_models(bounds.get_value("reference_models")) + is_percent = False + lower = bounds.get_value("lower") + upper = bounds.get_value("upper") + for name, limit in (("BoundaryLowX", lower.x), + ("BoundaryLowY", lower.y), + ("BoundaryLowZ", lower.z), + ("BoundaryHighX", upper.x), + ("BoundaryHighY", upper.y), + ("BoundaryHighZ", upper.z)): + # beware: the result is not perfect, if "is_relative" is not consistent for all axes + if limit.is_relative: + is_percent = True + factor = 100 if is_percent else 1 + self.gui.get_object(name).set_value(limit.value * factor) + self.gui.get_object("RelativeUnit").set_active(0 if is_percent else 1) + is_absolute = (bounds.get_value("specification") == BoundsSpecification.ABSOLUTE) + if is_absolute: + self.gui.get_object("TypeCustom").set_active(True) + else: + self.gui.get_object("TypeRelativeMargin").set_active(True) + tool_border_index = {ToolBoundaryMode.INSIDE: 0, + ToolBoundaryMode.ALONG: 1, + ToolBoundaryMode.AROUND: 2}[bounds.get_value("tool_boundary")] + self.gui.get_object("ToolLimit").set_active(tool_border_index) + + def _validate_bounds(self): + """ check if any dimensions is below zero and fix these problems """ + bounds = self.get_selected() + if bounds: + bounds.coerce_limits() + + def _update_bounds_widgets(self, widget=None): + bounds = self.get_selected() + self.log.debug("Update Bounds controls: %s", bounds) + control_box = self.gui.get_object("BoundsSettingsControlsBox") + if not bounds: + control_box.hide() + else: + self._validate_bounds() + with self.core.blocked_events({"bounds-control-changed"}): + self._copy_from_bounds_to_controls(bounds) + self._update_bounds_widgets_visibility() + control_box.show() + + def _update_bounds_widgets_visibility(self): + # show the proper descriptive label for the current margin type + relative_label = self.gui.get_object("MarginTypeRelativeLabel") + custom_label = self.gui.get_object("MarginTypeCustomLabel") + model_list = self.gui.get_object("ModelsTableFrame") + percent_switch = self.gui.get_object("RelativeUnit") + controls_x = self.gui.get_object("MarginControlsX") + controls_y = self.gui.get_object("MarginControlsY") + controls_z = self.gui.get_object("MarginControlsZ") + if self.gui.get_object("TypeRelativeMargin").get_active(): + relative_label.show() + custom_label.hide() + model_list.show() + percent_switch.show() + controls_x.show() + controls_y.show() + controls_z.show() + else: + relative_label.hide() + custom_label.show() + model_list.hide() + percent_switch.hide() + controls_x.hide() + controls_y.hide() + controls_z.hide() + + def _adjust_bounds(self, widget, axis, change_target): + bounds = self.get_selected() + if not bounds: + return + axis_index = "XYZ".index(axis) + change_factor = {"0": 0, "+": 1, "-": -1}[change_target] + is_margin = self.gui.get_object("TypeRelativeMargin").get_active() + is_percent = (self.gui.get_object("RelativeUnit").get_active() == 0) + change_value = change_factor * (0.1 if is_percent else 1) + change_vector = {"lower": [0, 0, 0], "upper": [0, 0, 0]} + change_vector["lower"][axis_index] = change_value if is_margin else -change_value + change_vector["upper"][axis_index] = change_value + for key in ("lower", "upper"): + if change_target == "0": + limits = [LimitSingle(0 if (index == axis_index) else orig.value, + orig.is_relative).export + for index, orig in enumerate(bounds.get_value(key))] + else: + limits = [LimitSingle(orig.value + change, orig.is_relative).export + for orig, change in zip(bounds.get_value(key), change_vector[key])] + bounds.set_value(key, limits) + + def _bounds_new(self, widget=None): + with merge_history_and_block_events(self.core): + params = {"specification": "margins", "lower": [0, 0, 0], "upper": [0, 0, 0], + "reference_models": []} + new_bounds = Boundary(None, data=params) + new_bounds.set_application_value("name", self.get_non_conflicting_name("Bounds #%d")) + self.select(new_bounds) diff --git a/pycam/pycam/Plugins/Clipboard.py b/pycam/pycam/Plugins/Clipboard.py new file mode 100644 index 00000000..17f74561 --- /dev/null +++ b/pycam/pycam/Plugins/Clipboard.py @@ -0,0 +1,176 @@ +""" +Copyright 2011 Lars Kruse + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + +from io import StringIO + +import pycam.Plugins +from pycam.Utils.locations import get_all_program_locations + + +CLIPBOARD_TARGETS = { + "dxf": ("image/vnd.dxf", ), + "ps": ("application/postscript", ), + "stl": ("application/sla", ), + "svg": ("image/x-inkscape-svg", "image/svg+xml"), +} + + +class Clipboard(pycam.Plugins.PluginBase): + + UI_FILE = "clipboard.ui" + DEPENDS = ["Models"] + CATEGORIES = ["System"] + + def setup(self): + if not self._gtk: + return False + if self.gui: + self._gtk_handlers = [] + self.clipboard = self._gtk.Clipboard.get(self._gdk.SELECTION_PRIMARY) + self.core.set("clipboard-set", self._copy_text_to_clipboard) + self._gtk_handlers.append((self.clipboard, "owner-change", + self._update_clipboard_widget)) + # menu item and shortcut + self.copy_action = self.gui.get_object("CopyModelToClipboard") + self._gtk_handlers.append((self.copy_action, "activate", self.copy_model_to_clipboard)) + self.register_gtk_accelerator("clipboard", self.copy_action, "c", + "CopyModelToClipboard") + self.core.register_ui("edit_menu", "CopyModelToClipboard", self.copy_action, 20) + self.paste_action = self.gui.get_object("PasteModelFromClipboard") + self._gtk_handlers.append((self.paste_action, "activate", + self.paste_model_from_clipboard)) + self.register_gtk_accelerator("clipboard", self.paste_action, "v", + "PasteModelFromClipboard") + self.core.register_ui("edit_menu", "PasteModelFromClipboard", self.paste_action, 25) + self._event_handlers = (("model-selection-changed", self._update_clipboard_widget), ) + self.register_event_handlers(self._event_handlers) + self.register_gtk_handlers(self._gtk_handlers) + self._update_clipboard_widget() + return True + + def teardown(self): + if self.gui: + self.unregister_event_handlers(self._event_handlers) + self.unregister_gtk_handlers(self._gtk_handlers) + self.unregister_gtk_accelerator("clipboard", self.copy_action) + self.core.unregister_ui("edit_menu", self.copy_action) + self.unregister_gtk_accelerator("clipboard", self.paste_action) + self.core.unregister_ui("edit_menu", self.paste_action) + self.core.set("clipboard-set", None) + + def _get_exportable_models(self): + models = self.core.get("models").get_selected() + exportable = [] + for model in models: + if model.get_model().is_export_supported(): + exportable.append(model) + return exportable + + def _update_clipboard_widget(self, widget=None, data=None): + models = self._get_exportable_models() + # copy button + self.gui.get_object("CopyModelToClipboard").set_sensitive(len(models) > 0) + data, importer = self._get_data_and_importer_from_clipboard() + paste_button = self.gui.get_object("PasteModelFromClipboard") + paste_button.set_sensitive(data is not None) + + def _copy_text_to_clipboard(self, text, targets=None): + if targets is None: + self.clipboard.set_text(text) + else: + if targets in CLIPBOARD_TARGETS: + targets = CLIPBOARD_TARGETS[targets] + clip_targets = [(key, self._gtk.TARGET_OTHER_WIDGET, index) + for index, key in enumerate(targets)] + + def get_func(clipboard, selectiondata, info, extra_args): + text, clip_type = extra_args + selectiondata.set(clip_type, 8, text) + + if "svg" in "".join(targets).lower(): + # Inkscape for Windows strictly requires the BITMAP type + clip_type = self._gdk.SELECTION_TYPE_BITMAP + else: + clip_type = self._gdk.SELECTION_TYPE_STRING + self.clipboard.set_with_data(clip_targets, get_func, lambda *args: None, + (text, clip_type)) + self.clipboard.store() + + def copy_model_to_clipboard(self, widget=None): + models = self._get_exportable_models() + if not models: + return + text_buffer = StringIO() + + # TODO: use a better way to discover the "merge" ability + def same_type(m1, m2): + return isinstance(m1, pycam.Geometry.Model.ContourModel) == \ + isinstance(m2, pycam.Geometry.Model.ContourModel) + + merged_model = models.pop(0).get_model() + for model in models: + # merge only 3D _or_ 2D models (don't mix them) + other_model = model.get_model() + if same_type(merged_model, other_model): + merged_model += other_model + # TODO: add "comment=get_meta_data()" here + merged_model.export(unit=self.core.get("unit")).write(text_buffer) + text_buffer.seek(0) + is_contour = isinstance(merged_model, pycam.Geometry.Model.ContourModel) + # TODO: this should not be decided here + if is_contour: + targets = CLIPBOARD_TARGETS["svg"] + else: + targets = CLIPBOARD_TARGETS["stl"] + self._copy_text_to_clipboard(text_buffer.read(), targets) + + def _get_data_and_importer_from_clipboard(self): + for targets, filename in ((CLIPBOARD_TARGETS["svg"], "foo.svg"), + (CLIPBOARD_TARGETS["stl"], "foo.stl"), + (CLIPBOARD_TARGETS["ps"], "foo.ps"), + (CLIPBOARD_TARGETS["dxf"], "foo.dxf")): + for target in targets: + atom = self._gdk.Atom.intern(target, False) + data = self.clipboard.wait_for_contents(atom) + if data is not None: + detected_filetype = pycam.Importers.detect_file_type(filename) + if detected_filetype: + return data, detected_filetype.importer + else: + return None, None + return None, None + + def paste_model_from_clipboard(self, widget=None): + data, importer = self._get_data_and_importer_from_clipboard() + progress = self.core.get("progress") + if data: + progress.update(text="Loading model from clipboard") + text_buffer = StringIO(data.data) + model = importer(text_buffer, program_locations=get_all_program_locations(self.core), + unit=self.core.get("unit"), fonts_cache=self.core.get("fonts"), + callback=progress.update) + if model: + models = self.core.get("models") + self.log.info("Loaded a model from clipboard") + models.add_model(model, name_template="Pasted model #%d") + else: + self.log.warn("Failed to load a model from clipboard") + else: + self.log.warn("The clipboard does not contain suitable data") + progress.finish() diff --git a/pycam/pycam/Plugins/EMCToolExport.py b/pycam/pycam/Plugins/EMCToolExport.py new file mode 100644 index 00000000..dba546e9 --- /dev/null +++ b/pycam/pycam/Plugins/EMCToolExport.py @@ -0,0 +1,89 @@ +""" +Copyright 2011 Lars Kruse + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + + +import pycam.Plugins +import pycam.Exporters.LinuxCNCToolExporter +import pycam.workspace.data_models + + +FILTER_LINUXCNC_TOOL = (("LinuxCNC tool files", "*.tbl"),) + + +class LinuxCNCToolExport(pycam.Plugins.PluginBase): + + UI_FILE = "emc_tool_export.ui" + DEPENDS = ["Tools", "FilenameDialog"] + CATEGORIES = ["Export"] + + def setup(self): + self._last_emc_tool_file = None + if self.gui: + self.export_action = self.gui.get_object("ExportLinuxCNCToolDefinition") + self.register_gtk_accelerator("export", self.export_action, None, + "ExportLinuxCNCToolDefinition") + self._gtk_handlers = ((self.export_action, "activate", self.export_emc_tools), ) + self.core.register_ui("export_menu", "ExportLinuxCNCToolDefinition", + self.export_action, 80) + self._event_handlers = (("tool-selection-changed", self._update_emc_tool_button), ) + self.register_gtk_handlers(self._gtk_handlers) + self.register_event_handlers(self._event_handlers) + self._update_emc_tool_button() + return True + + def teardown(self): + if self.gui: + self.unregister_event_handlers(self._event_handlers) + self.unregister_gtk_handlers(self._gtk_handlers) + self.core.unregister_ui("export_menu", self.export_action) + self.unregister_gtk_accelerator("export", self.export_action) + + def _update_emc_tool_button(self, widget=None): + exportable = len(pycam.workspace.data_models.Tool.get_collection()) > 0 + self.export_action.set_sensitive(exportable) + + def export_emc_tools(self, widget=None, filename=None): + if callable(filename): + filename = filename() + if not filename: + # TODO: separate this away from Gui/Project.py + # TODO: implement "last_model_filename" in core + filename = self.core.get("get_filename_func")( + "Save toolpath to ...", mode_load=False, type_filter=FILTER_LINUXCNC_TOOL, + filename_templates=(self._last_emc_tool_file, + self.core.get("last_model_filename"))) + if filename: + self._last_emc_tool_file = filename + tools_dict = [] + tools = self.core.get("tools") + for tool in tools: + tools_dict.append({"name": tool["name"], + "id": tool["id"], + "radius": tool["parameters"].get("radius", 1)}) + export = pycam.Exporters.LinuxCNCToolExporter.LinuxCNCToolExporter(tools_dict) + text = export.get_tool_definition_string() + try: + out = open(filename, "w") + out.write(text) + out.close() + self.log.info("LinuxCNC tool file written: %s", filename) + except IOError as err_msg: + self.log.error("Failed to save LinuxCNC tool file: %s", err_msg) + else: + self.core.get("set_last_filename")(filename) diff --git a/pycam/pycam/Plugins/ExportSettings.py b/pycam/pycam/Plugins/ExportSettings.py new file mode 100644 index 00000000..d044277c --- /dev/null +++ b/pycam/pycam/Plugins/ExportSettings.py @@ -0,0 +1,184 @@ +""" +Copyright 2017 Lars Kruse + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + + +from pycam.Flow.history import merge_history_and_block_events +import pycam.Plugins +import pycam.workspace.data_models +from pycam.workspace.data_models import ToolpathFilter + + +class ExportSettings(pycam.Plugins.ListPluginBase): + + UI_FILE = "export_settings.ui" + DEPENDS = ["Toolpaths", "ParameterGroupManager"] + CATEGORIES = ["Toolpath", "Export"] + COLLECTION_ITEM_TYPE = pycam.workspace.data_models.ExportSettings + + def setup(self): + if self.gui: + list_box = self.gui.get_object("ExportSettingsBox") + list_box.unparent() + self.core.register_ui("main", "Export Settings", list_box, weight=50) + self._gtk_handlers = [] + modelview = self.gui.get_object("ExportSettingTable") + self.set_gtk_modelview(modelview) + self.register_model_update( + lambda: self.core.emit_event("export-settings-list-changed")) + for action, obj_name in ((self.ACTION_UP, "ExportSettingMoveUp"), + (self.ACTION_DOWN, "ExportSettingMoveDown"), + (self.ACTION_DELETE, "ExportSettingDelete"), + (self.ACTION_CLEAR, "ExportSettingDeleteAll")): + self.register_list_action_button(action, self.gui.get_object(obj_name)) + self._gtk_handlers.append((self.gui.get_object("ExportSettingNew"), "clicked", + self._export_setting_new)) + # details of export settings + self.item_details_container = self.gui.get_object("ExportSettingHandlingNotebook") + + def clear_item_details_container(): + for index in range(self.item_details_container.get_n_pages()): + self.item_details_container.remove_page(0) + + def add_item_details_container(item, name): + self.item_details_container.append_page(item, self._gtk.Label(name)) + + self.core.register_ui_section("export_settings_handling", add_item_details_container, + clear_item_details_container) + # register UI sections for GCode settings + self.core.register_ui_section( + "gcode_preferences", + lambda item, name: self.core.register_ui("export_settings_handling", name, item), + lambda: self.core.clear_ui_section("export_settings_handling")) + general_widget = pycam.Gui.ControlsGTK.ParameterSection() + general_widget.get_widget().show() + self.core.register_ui_section("gcode_general_parameters", general_widget.add_widget, + general_widget.clear_widgets) + self.core.register_ui("gcode_preferences", "General", general_widget.get_widget()) + self._profile_selector = pycam.Gui.ControlsGTK.InputChoice( + [], change_handler=lambda widget=None: self.core.emit_event( + "toolpath-profiles-selection-changed")) + profile_widget = self._profile_selector.get_widget() + profile_widget.show() + self.core.register_ui("gcode_general_parameters", "GCode Profile", profile_widget) + self.core.get("register_parameter_group")( + "toolpath_profile", changed_set_event="toolpath-profiles-selection-changed", + changed_set_list_event="toolpath-profiles-list-changed", + get_related_parameter_names=self._get_selected_profile_parameter_names) + # handle table changes + self._gtk_handlers.extend(( + (modelview, "row-activated", "export-settings-changed"), + (self.gui.get_object("ExportSettingNameCell"), "edited", self.edit_item_name))) + # handle selection changes + selection = modelview.get_selection() + self._gtk_handlers.append((selection, "changed", "export-settings-selection-changed")) + # define cell renderers + self.gui.get_object("ExportSettingNameColumn").set_cell_data_func( + self.gui.get_object("ExportSettingNameCell"), self.render_item_name) + self._event_handlers = ( + ("toolpath-profiles-list-changed", self._update_profiles), + ("export-settings-selection-changed", self._transfer_settings_to_controls), + ("export-settings-selection-changed", "visual-item-updated"), + ("export-settings-changed", self._transfer_settings_to_controls), + ("export-settings-changed", self.force_gtk_modelview_refresh), + ("export-settings-changed", "visual-item-updated"), + ("export-settings-list-changed", self.force_gtk_modelview_refresh), + ("export-settings-list-changed", "visual-item-updated"), + ("export-settings-control-changed", self._transfer_controls_to_settings)) + self.register_gtk_handlers(self._gtk_handlers) + self.register_event_handlers(self._event_handlers) + self._transfer_settings_to_controls() + self.core.set("export_settings", self) + return True + + def teardown(self): + if self.gui and self._gtk: + self.unregister_event_handlers(self._event_handlers) + self.unregister_gtk_handlers(self._gtk_handlers) + self.core.unregister_ui("main", self.gui.get_object("ExportSettingsBox")) + self.core.get("unregister_parameter_group")("toolpath_profile") + self.core.set("export_settings", None) + + def _export_setting_new(self, widget=None): + with merge_history_and_block_events(self.core): + params = {"gcode": self.core.get("get_default_parameter_values")("toolpath_profile")} + new_item = pycam.workspace.data_models.ExportSettings(None, data=params) + new_item.set_application_value("name", self.get_non_conflicting_name("Settings #%d")) + self.select(new_item) + + def _transfer_settings_to_controls(self, widget=None): + """transfer the content of the currently selected setting item to the related widgets""" + settings = self.get_selected() + if settings is None: + self.item_details_container.hide() + else: + with self.core.blocked_events({"export-settings-control-changed"}): + gcode_settings = settings.get_settings_by_type("gcode") + if not gcode_settings or (ToolpathFilter.SAFETY_HEIGHT.value in gcode_settings): + # it looks like a "milling" profile + profile = "milling" + else: + profile = "laser" + self.select_profile(profile) + self.core.get("set_parameter_values")("toolpath_profile", gcode_settings) + self.item_details_container.show() + + def _transfer_controls_to_settings(self): + """the value of a control related to export settings was changed by by the user + + The changed value needs to be transferred to the currently selected export settings. + """ + settings = self.get_selected() + profile = self.get_selected_profile() + if settings and profile: + gcode_settings = settings.get_settings_by_type("gcode") + for key, value in self.core.get("get_parameter_values")("toolpath_profile").items(): + gcode_settings[key] = value + settings.set_settings_by_type("gcode", gcode_settings) + + def _update_profiles(self): + selected = self.get_selected_profile() + profiles = list(self.core.get("get_parameter_sets")("toolpath_profile").values()) + choices = [] + for profile in sorted(profiles, key=lambda item: item["weight"]): + choices.append((profile["label"], profile["name"])) + self._profile_selector.update_choices(choices) + if selected: + self.select_profile(selected) + elif profiles: + self.select_profile(None) + else: + pass + + def _get_selected_profile_parameter_names(self): + profile = self.get_selected_profile() + return set() if profile is None else set(profile["parameters"].keys()) + + def get_selected_profile(self): + all_profiles = self.core.get("get_parameter_sets")("toolpath_profile") + current_name = self._profile_selector.get_value() + return all_profiles.get(current_name, None) + + def select_profile(self, item=None): + if isinstance(item, str): + profile_name = item + elif item is None: + profile_name = None + else: + profile_name = item["name"] + self._profile_selector.set_value(profile_name) diff --git a/pycam/pycam/Plugins/FilenameDialog.py b/pycam/pycam/Plugins/FilenameDialog.py new file mode 100644 index 00000000..df867a7b --- /dev/null +++ b/pycam/pycam/Plugins/FilenameDialog.py @@ -0,0 +1,179 @@ +""" +Copyright 2011 Lars Kruse + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + +import os + +import pycam.Plugins +import pycam.Utils + + +def _get_filters_from_list(gtk, filter_list): + result = [] + for one_filter in filter_list: + current_filter = gtk.FileFilter() + current_filter.set_name(one_filter[0]) + file_extensions = one_filter[1] + if not isinstance(file_extensions, (list, tuple)): + file_extensions = [file_extensions] + for ext in file_extensions: + current_filter.add_pattern(pycam.Utils.get_case_insensitive_file_pattern(ext)) + result.append(current_filter) + return result + + +def _get_filename_with_suffix(filename, type_filter): + # use the first extension provided by the filter as the default + if isinstance(type_filter[0], (tuple, list)): + filter_ext = type_filter[0][1] + else: + filter_ext = type_filter[1] + if isinstance(filter_ext, (list, tuple)): + filter_ext = filter_ext[0] + if not filter_ext.startswith("*"): + # weird filter content + return filename + else: + filter_ext = filter_ext[1:] + basename = os.path.basename(filename) + if (basename.rfind(".") == -1) or (basename[-6:].rfind(".") == -1): + # The filename does not contain a dot or the dot is not within the + # last five characters. Dots within the start of the filename are + # ignored. + return filename + filter_ext + else: + # contains at least one dot + return filename + + +class FilenameDialog(pycam.Plugins.PluginBase): + + CATEGORIES = ["System"] + + def setup(self): + if not self._gtk: + return False + else: + self.last_dirname = None + self.core.set("get_filename_func", self.get_filename_dialog) + return True + + def teardown(self): + self.core.set("get_filename_func", None) + + def get_filename_dialog(self, title="Choose file ...", mode_load=False, type_filter=None, + filename_templates=None, filename_extension=None, parent=None, + extra_widget=None): + if parent is None: + parent = self.core.get("main_window") + # we open a dialog + if mode_load: + action = self._gtk.FileChooserAction.OPEN + stock_id_ok = self._gtk.STOCK_OPEN + else: + action = self._gtk.FileChooserAction.SAVE + stock_id_ok = self._gtk.STOCK_SAVE + dialog = self._gtk.FileChooserDialog(title=title, parent=parent, action=action, + buttons=(self._gtk.STOCK_CANCEL, + self._gtk.ResponseType.CANCEL, + stock_id_ok, + self._gtk.ResponseType.OK)) + # set the initial directory to the last one used + if self.last_dirname and os.path.isdir(self.last_dirname): + dialog.set_current_folder(self.last_dirname) + # add extra parts + if extra_widget: + extra_widget.show_all() + dialog.get_content_area().pack_start(extra_widget, expand=False, fill=False, padding=0) + # add filter for files + if type_filter: + for file_filter in _get_filters_from_list(self._gtk, type_filter): + dialog.add_filter(file_filter) + # guess the export filename based on the model's filename + valid_templates = [] + if filename_templates: + for template in filename_templates: + if not template: + continue + elif hasattr(template, "get_path"): + valid_templates.append(template.get_path()) + else: + valid_templates.append(template) + if valid_templates: + filename_template = valid_templates[0] + # remove the extension + default_filename = os.path.splitext(filename_template)[0] + if filename_extension: + default_filename += os.path.extsep + filename_extension + elif type_filter: + for one_type in type_filter: + extension = one_type[1] + if isinstance(extension, (list, tuple, set)): + extension = extension[0] + # use only the extension of the type filter string + extension = os.path.splitext(extension)[1] + if extension: + default_filename += extension + # finish the loop + break + dialog.select_filename(default_filename) + dialog.set_current_name(os.path.basename(default_filename)) + # add filter for all files + ext_filter = self._gtk.FileFilter() + ext_filter.set_name("All files") + ext_filter.add_pattern("*") + dialog.add_filter(ext_filter) + done = False + while not done: + dialog.set_filter(dialog.list_filters()[0]) + response = dialog.run() + filename = dialog.get_filename() + uri = pycam.Utils.URIHandler(filename) + dialog.hide() + if response != self._gtk.ResponseType.OK: + dialog.destroy() + return None + if not mode_load and filename: + # check if we want to add a default suffix + filename = _get_filename_with_suffix(filename, type_filter) + if not mode_load and os.path.exists(filename): + overwrite_window = self._gtk.MessageDialog( + parent, type=self._gtk.MessageType.WARNING, + buttons=self._gtk.ButtonsType.YES_NO, + message_format="This file exists. Do you want to overwrite it?") + overwrite_window.set_title("Confirm overwriting existing file") + response = overwrite_window.run() + overwrite_window.destroy() + done = (response == self._gtk.ResponseType.YES) + elif mode_load and not uri.exists(): + not_found_window = self._gtk.MessageDialog( + parent, type=self._gtk.MessageType.ERROR, buttons=self._gtk.ButtonsType.OK, + message_format="This file does not exist. Please choose a different filename.") + not_found_window.set_title("Invalid filename selected") + response = not_found_window.run() + not_found_window.destroy() + done = False + else: + done = True + if extra_widget: + extra_widget.unparent() + dialog.destroy() + # add the file to the list of recently used ones + if filename: + self.core.get("set_last_filename")(filename) + return filename diff --git a/pycam/pycam/Plugins/Fonts.py b/pycam/pycam/Plugins/Fonts.py new file mode 100644 index 00000000..fd904b74 --- /dev/null +++ b/pycam/pycam/Plugins/Fonts.py @@ -0,0 +1,235 @@ +""" +Copyright 2011 Lars Kruse + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + +from io import StringIO +import os +import re + + +from pycam.Geometry.Letters import TEXT_ALIGN_LEFT, TEXT_ALIGN_CENTER, TEXT_ALIGN_RIGHT +import pycam.Plugins +import pycam.Utils.FontCache +from pycam.Utils.locations import get_font_dir + + +class Fonts(pycam.Plugins.PluginBase): + UI_FILE = "fonts.ui" + DEPENDS = ["Clipboard"] + CATEGORIES = ["Fonts"] + + def setup(self): + self._fonts_cache = pycam.Utils.FontCache.FontCache(get_font_dir(), core=self.core) + self.core.set("fonts", self._fonts_cache) + # "font dialog" window + if self.gui and self._gtk: + self.font_dialog_window = self.gui.get_object("FontDialog") + window = self.font_dialog_window + hide_window = lambda *args: self.toggle_font_dialog_window(state=False) + self._gtk_handlers = [ + (window, "delete-event", hide_window), + (window, "destroy", hide_window), + (self.gui.get_object("FontDialogCancel"), "clicked", hide_window), + (self.gui.get_object("FontDialogApply"), "clicked", self.import_from_font_dialog), + (self.gui.get_object("FontDialogSave"), "clicked", self.export_from_font_dialog), + (self.gui.get_object("FontDialogCopy"), "clicked", + self.copy_font_dialog_to_clipboard), + (self.gui.get_object("FontDialogInputBuffer"), "changed", + self.update_font_dialog_preview), + (self.gui.get_object("FontDialogPreview"), "configure_event", + self.update_font_dialog_preview)] + # (self.gui.get_object("FontDialogPreview"), "expose_event", FIXME + # self.update_font_dialog_preview)] + for objname in ("FontSideSkewValue", "FontCharacterSpacingValue", + "FontLineSpacingValue"): + obj = self.gui.get_object(objname) + # set default value before connecting the change-handler + if objname != "FontSideSkewValue": + obj.set_value(1.0) + self._gtk_handlers.append((obj, "value-changed", self.update_font_dialog_preview)) + for objname in ("FontTextAlignLeft", "FontTextAlignCenter", "FontTextAlignRight"): + self._gtk_handlers.append((self.gui.get_object(objname), "toggled", + self.update_font_dialog_preview)) + # use global key accel map + font_action = self.gui.get_object("ShowFontDialog") + self.register_gtk_accelerator("fonts", font_action, "t", + "ShowFontDialog") + self._gtk_handlers.append((font_action, "activate", self.toggle_font_dialog_window)) + self.core.register_ui("edit_menu", "ShowFontDialogSeparator", None, 55) + self.core.register_ui("edit_menu", "ShowFontDialog", font_action, 60) + # store window position + self._font_dialog_window_visible = False + self._font_dialog_window_position = None + self.font_selector = None + self.register_gtk_handlers(self._gtk_handlers) + return True + + def teardown(self): + if self.gui and self._gtk: + self.unregister_gtk_handlers(self._gtk_handlers) + font_toggle = self.gui.get_object("ShowFontDialog") + self.core.unregister_ui("edit_menu", None) + self.core.unregister_ui("edit_menu", font_toggle) + self.unregister_gtk_accelerator("fonts", font_toggle) + del self.core["fonts"] + + def toggle_font_dialog_window(self, widget=None, event=None, state=None): + # only "delete-event" uses four arguments + # TODO: unify all these "toggle" functions for different windows into one single function + # (including storing the position) + if state is None: + state = event + if state is None: + state = not self._font_dialog_window_visible + if state: + if self.font_selector is None: + # create it manually to ease access + font_selector = self._gtk.combo_box_new_text() + self.gui.get_object("FontSelectionBox").pack_start(font_selector, expand=False, + fill=False) + sorted_keys = list(self._fonts_cache.get_font_names()) + sorted_keys.sort(key=lambda x: x.upper()) + for name in sorted_keys: + font_selector.append_text(name) + if sorted_keys: + font_selector.set_active(0) + else: + self.log.warn("No single-line fonts found!") + font_selector.connect("changed", self.update_font_dialog_preview) + font_selector.show() + self.font_selector = font_selector + if len(self._fonts_cache) > 0: + # show the dialog only if fonts are available + if self._font_dialog_window_position: + self.font_dialog_window.move(*self._font_dialog_window_position) + self.font_dialog_window.show() + self._font_dialog_window_visible = True + else: + self.log.error("No fonts were found on your system. Please check the Log Window " + "for details.") + else: + self._font_dialog_window_position = self.font_dialog_window.get_position() + self.font_dialog_window.hide() + self._font_dialog_window_visible = False + # don't close the window - just hide it (for "delete-event") + return True + + def _get_text_from_input(self): + input_field = self.gui.get_object("FontDialogInput") + text_buffer = input_field.get_buffer() + text = text_buffer.get_text(text_buffer.get_start_iter(), text_buffer.get_end_iter()) + return text.decode("utf-8") + + def get_font_dialog_text_rendered(self): + text = self._get_text_from_input() + if text: + skew = self.gui.get_object("FontSideSkewValue").get_value() + line_space = self.gui.get_object("FontLineSpacingValue").get_value() + pitch = self.gui.get_object("FontCharacterSpacingValue").get_value() + # get the active align setting + for objname, value, justification in ( + ("FontTextAlignLeft", TEXT_ALIGN_LEFT, self._gtk.JUSTIFY_LEFT), + ("FontTextAlignCenter", TEXT_ALIGN_CENTER, self._gtk.JUSTIFY_CENTER), + ("FontTextAlignRight", TEXT_ALIGN_RIGHT, self._gtk.JUSTIFY_RIGHT)): + obj = self.gui.get_object(objname) + if obj.get_active(): + align = value + self.gui.get_object("FontDialogInput").set_justification(justification) + font_name = self.font_selector.get_active_text() + charset = self._fonts_cache.get_font(font_name) + return charset.render(text, skew=skew, line_spacing=line_space, pitch=pitch, + align=align) + else: + # empty text + return None + + def import_from_font_dialog(self, widget=None): + text_model = self.get_font_dialog_text_rendered() + name = "Text " + re.sub(r"\W", "", self._get_text_from_input())[:10] + # TODO: implement "get_dump" (or "serialize" or ...) + model_params = {"source": {"type": "object", "data": text_model.get_dump()}} + self.core.get("models").add_model(model_params, name=name) + self.toggle_font_dialog_window() + + def export_from_font_dialog(self, widget=None): + text_model = self.get_font_dialog_text_rendered() + if text_model and (text_model.maxx is not None): + self.save_model(model=text_model, store_filename=False) + + def copy_font_dialog_to_clipboard(self, widget=None): + text_model = self.get_font_dialog_text_rendered() + if text_model and (text_model.maxx is not None): + text_buffer = StringIO() + # TODO: add "comment=get_meta_data()" + text_model.export(unit=self.core.get("unit")).write(text_buffer) + text_buffer.seek(0) + text = text_buffer.read() + self.core.get("clipboard-set")(text, targets="svg") + + def update_font_dialog_preview(self, widget=None, event=None): + if not self.font_selector: + # not initialized + return + if len(self._fonts_cache) == 0: + # empty + return + font_name = self.font_selector.get_active_text() + font = self._fonts_cache.get_font(font_name) + self.gui.get_object("FontAuthorText").set_label(os.linesep.join(font.get_authors())) + preview_widget = self.gui.get_object("FontDialogPreview") + final_drawing_area = preview_widget.window + text_model = self.get_font_dialog_text_rendered() + # always clean the background + x, y, width, height = preview_widget.get_allocation() + drawing_area = self._gdk.Pixmap(final_drawing_area, width, height) + drawing_area.draw_rectangle(preview_widget.get_style().white_gc, True, 0, 0, width, height) + # carefully check if there are lines in the rendered text + if text_model and (text_model.maxx is not None) and (text_model.maxx > text_model.minx): + # leave a small border around the preview + border = 3 + x_fac = (width - 1 - 2 * border) / (text_model.maxx - text_model.minx) + y_fac = (height - 1 - 2 * border) / (text_model.maxy - text_model.miny) + factor = min(x_fac, y_fac) + # vertically centered preview + y_offset = int((height - 2 * border - factor * (text_model.maxy - text_model.miny)) + // 2) + gc = drawing_area.new_gc() + if text_model.minx == 0: + # left align + get_virtual_x = lambda x: int(x * factor) + border + elif text_model.maxx == 0: + # right align + get_virtual_x = lambda x: width + int(x * factor) - 1 - border + else: + # center align + get_virtual_x = lambda x: int(width / 2.0 + x * factor) - 1 - border + get_virtual_y = lambda y: \ + -y_offset + height - int((y - text_model.miny) * factor) - 1 - border + for polygon in text_model.get_polygons(): + draw_points = [] + points = polygon.get_points() + if polygon.is_closed: + # add the first point again to close the polygon + points.append(points[0]) + for point in points: + x = get_virtual_x(point[0]) + y = get_virtual_y(point[1]) + draw_points.append((x, y)) + drawing_area.draw_lines(gc, draw_points) + final_gc = final_drawing_area.new_gc() + final_drawing_area.draw_drawable(final_gc, drawing_area, 0, 0, 0, 0, -1, -1) diff --git a/pycam/pycam/Plugins/GCodeParameters.py b/pycam/pycam/Plugins/GCodeParameters.py new file mode 100644 index 00000000..d2901d8d --- /dev/null +++ b/pycam/pycam/Plugins/GCodeParameters.py @@ -0,0 +1,173 @@ +""" +Copyright 2011-2012 Lars Kruse + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + +import pycam.Plugins +import pycam.Gui.ControlsGTK +from pycam.Toolpath import ToolpathPathMode + + +class GCodeSafetyHeight(pycam.Plugins.PluginBase): + + DEPENDS = ["ExportSettings"] + CATEGORIES = ["GCode"] + + def setup(self): + # TODO: update the current filters after a change + self.control = pycam.Gui.ControlsGTK.InputNumber( + digits=1, + change_handler=lambda *args: self.core.emit_event("export-settings-control-changed")) + self.core.get("register_parameter")("toolpath_profile", "safety_height", self.control) + self.core.register_ui("gcode_general_parameters", "Safety Height", + self.control.get_widget(), weight=20) + return True + + def teardown(self): + self.core.unregister_ui("gcode_general_parameters", self.control.get_widget()) + self.core.get("unregister_parameter")("toolpath_profile", "safety_height") + + +class GCodePlungeFeedrate(pycam.Plugins.PluginBase): + + DEPENDS = ["ExportSettings"] + CATEGORIES = ["GCode"] + + def setup(self): + self.control = pycam.Gui.ControlsGTK.InputNumber( + digits=1, + change_handler=lambda *args: self.core.emit_event("export-settings-control-changed")) + self.core.get("register_parameter")("toolpath_profile", "plunge_feedrate", self.control) + self.core.register_ui("gcode_general_parameters", "Plunge feedrate limit", + self.control.get_widget(), weight=25) + return True + + def teardown(self): + self.core.unregister_ui("gcode_general_parameters", self.control.get_widget()) + self.core.get("unregister_parameter")("toolpath_profile", "plunge_feedrate") + + +# TODO: move to settings for ToolpathOutputDialects +class GCodeFilenameExtension(pycam.Plugins.PluginBase): + + DEPENDS = ["ExportSettings"] + CATEGORIES = ["GCode"] + + def setup(self): + self.control = pycam.Gui.ControlsGTK.InputString( + max_length=6, + change_handler=lambda *args: self.core.emit_event("export-settings-control-changed")) + self.core.get("register_parameter")("toolpath_profile", "filename_extension", + self.control) + self.core.register_ui("gcode_general_parameters", "Custom GCode filename extension", + self.control.get_widget(), weight=80) + return True + + def teardown(self): + self.core.unregister_ui("gcode_general_parameters", self.control.get_widget()) + self.core.get("unregister_parameter")("toolpath_profile", "filename_extension") + + +class GCodeStepWidth(pycam.Plugins.PluginBase): + + DEPENDS = ["ExportSettings"] + CATEGORIES = ["GCode"] + + def setup(self): + self._table = pycam.Gui.ControlsGTK.ParameterSection() + self.core.register_ui("gcode_preferences", "Step precision", self._table.get_widget()) + self.core.register_ui_section("gcode_step_width", self._table.add_widget, + self._table.clear_widgets) + self.controls = [] + for key in "xyz": + control = pycam.Gui.ControlsGTK.InputNumber( + digits=8, start=0.0001, increment=0.00005, lower=0.00000001, + change_handler=lambda *args: self.core.emit_event( + "export-settings-control-changed")) + # Somehow "unknown signal" warnings are emitted during "destroy" of the last two + # widgets. This feels like a namespace conflict, but there is no obvious cause. + if key != "x": + control.set_enable_destroy(False) + self.core.register_ui("gcode_step_width", key.upper(), control.get_widget(), + weight="xyz".index(key)) + self.core.get("register_parameter")("toolpath_profile", ("step_width", key), control) + self.controls.append((key, control)) + return True + + def teardown(self): + while self.controls: + key, control = self.controls.pop() + self.core.unregister_ui("gcode_step_width", control) + self.core.get("unregister_parameter")("toolpath_profile", ("step_width", key)) + self.core.unregister_ui("gcode_general_parameters", self._table.get_widget()) + + +class GCodeCornerStyle(pycam.Plugins.PluginBase): + + DEPENDS = ["ExportSettings"] + CATEGORIES = ["GCode"] + + def setup(self): + self._table = pycam.Gui.ControlsGTK.ParameterSection() + self.core.register_ui("gcode_preferences", "Corner style", self._table.get_widget()) + self.core.register_ui_section("gcode_corner_style", self._table.add_widget, + self._table.clear_widgets) + self.motion_tolerance = pycam.Gui.ControlsGTK.InputNumber( + digits=3, lower=0, + change_handler=lambda *args: self.core.emit_event("export-settings-control-changed")) + self.core.register_ui("gcode_corner_style", "Motion blending tolerance", + self.motion_tolerance.get_widget(), weight=30) + self.core.get("register_parameter")( + "toolpath_profile", ("corner_style", "motion_tolerance"), self.motion_tolerance) + self.naive_tolerance = pycam.Gui.ControlsGTK.InputNumber( + digits=3, lower=0, + change_handler=lambda *args: self.core.emit_event("export-settings-control-changed")) + self.core.register_ui("gcode_corner_style", "Naive CAM tolerance", + self.naive_tolerance.get_widget(), weight=50) + self.core.get("register_parameter")( + "toolpath_profile", ("corner_style", "naive_tolerance"), self.naive_tolerance) + self.path_mode = pycam.Gui.ControlsGTK.InputChoice( + (("Exact path mode (G61)", ToolpathPathMode.CORNER_STYLE_EXACT_PATH.value), + ("Exact stop mode (G61.1)", ToolpathPathMode.CORNER_STYLE_EXACT_STOP.value), + ("Continuous with maximum speed (G64)", + ToolpathPathMode.CORNER_STYLE_OPTIMIZE_SPEED.value), + ("Continuous with tolerance (G64 P/Q)", + ToolpathPathMode.CORNER_STYLE_OPTIMIZE_TOLERANCE.value)), + change_handler=lambda *args: self.core.emit_event("export-settings-control-changed")) + self.path_mode.get_widget().connect("changed", self.update_widgets) + self.core.register_ui("gcode_corner_style", "Path mode", self.path_mode.get_widget(), + weight=10) + self.core.get("register_parameter")( + "toolpath_profile", ("corner_style", "mode"), self.path_mode) + self.update_widgets() + return True + + def teardown(self): + self.core.unregister_ui("gcode_corner_style", self.motion_tolerance.get_widget()) + self.core.unregister_ui("gcode_corner_style", self.naive_tolerance.get_widget()) + self.core.unregister_ui("gcode_corner_style", self.path_mode.get_widget()) + self.core.unregister_ui_section("gcode_corner_style") + self.core.unregister_ui("gcode_preferences", self._table.get_widget()) + for name in ("motion_tolerance", "naive_tolerance", "mode"): + self.core.get("unregister_parameter")("toolpath_profile", ("corner_style", name)) + + def update_widgets(self, widget=None): + enable_tolerances = (self.path_mode.get_value() + == ToolpathPathMode.CORNER_STYLE_OPTIMIZE_TOLERANCE) + controls = (self.motion_tolerance, self.naive_tolerance) + for control in controls: + control.get_widget().set_sensitive(enable_tolerances) diff --git a/pycam/pycam/Plugins/GCodeTouchOff.py b/pycam/pycam/Plugins/GCodeTouchOff.py new file mode 100644 index 00000000..f2861e44 --- /dev/null +++ b/pycam/pycam/Plugins/GCodeTouchOff.py @@ -0,0 +1,110 @@ +""" +Copyright 2017 Lars Kruse + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + +import pycam.Plugins +import pycam.Utils.log +from pycam.Gui.ControlsGTK import InputCheckBox, InputChoice, InputNumber + +_log = pycam.Utils.log.get_logger() + + +class GCodeTouchOff(pycam.Plugins.PluginBase): + """ TODO: this plugin currently does not change the generated toolpath - it is just the UI part + """ + + DEPENDS = ["ExportSettings"] + CATEGORIES = ["GCode"] + CONTROL_MAP = { + "on_startup": ("Touch off on startup (initializes coordinate system for Z)", False, 10, + InputCheckBox, [], {}), + "on_tool_change": ("Measure and compensate tool length on tool change", False, 20, + InputCheckBox, [], {}), + "location_selector": ("Touch probe position", "startup", 30, + InputChoice, [(("Initial location (at startup)", "startup"), + ("Fixed location (absolute)", "absolute"))], {}), + "probe_position_x": ("Fixed probe position X", 0, 35, InputNumber, [], {"digits": 3}), + "probe_position_y": ("Fixed probe position Y", 0, 36, InputNumber, [], {"digits": 3}), + "probe_position_z": ("Fixed probe position Z", 0, 37, InputNumber, [], {"digits": 3}), + "rapid_move_down": ("Rapid move down distance", 0.0, 50, InputNumber, [], {"digits": 1}), + "slow_move_down": ("Probing distance (limit)", 0.1, 60, InputNumber, [], {"digits": 0}), + "slow_move_speed": ("Probing speed", 100, 70, InputNumber, [], {"digits": 3, "lower": 1}), + "probe_level_z": ("Z level of touch probe", 0.0, 80, InputNumber, [], {"digits": 3})} + + def setup(self): + self.controls = {} + self.core.get("register_parameter")("toolpath_profile", "touch_off", None, + get_func=self._get_control_values, + set_func=self._set_control_values) + self._table = pycam.Gui.ControlsGTK.ParameterSection() + self.core.register_ui("gcode_preferences", "Touch Off", self._table.get_widget(), + weight=70) + self.core.register_ui_section("gcode_touch_off", self._table.add_widget, + self._table.clear_widgets) + for name, (label, start, weight, input_class, args, kwargs) in self.CONTROL_MAP.items(): + all_kw_args = dict(kwargs) + all_kw_args.update({"change_handler": self.update_widgets, "start": start}) + control = input_class(*args, **all_kw_args) + self.core.register_ui("gcode_touch_off", label, control.get_widget(), weight=weight) + self.controls[name] = control + self.update_widgets() + self._table.get_widget().show() + return True + + def teardown(self): + for key, control in self.controls.items(): + self.core.unregister_ui("gcode_touch_off", control.get_widget()) + self.core.unregister_ui_section("gcode_touch_off") + self.core.unregister_ui("gcode_preferences", self._table.get_widget()) + self.core.get("unregister_parameter")("toolpath_profile", "touch_off") + + def _get_control_values(self): + """ used by the parameter manager for retrieving the current state """ + return {key: value.get_value() for key, value in self.controls.items()} + + def _set_control_values(self, params): + """ used by the parameter manager for applying a new configuration """ + if params is None: + # reset to defaults + for key, control in self.controls.items(): + control.set_value(self.CONTROL_MAP[key][1]) + else: + for key, value in params.items(): + self.controls[key].set_value(value) + if self.gui: + self.update_widgets() + + def update_widgets(self, widget=None): + self._table.get_widget().show() + self.controls["on_startup"].set_visible(True) + self.controls["on_tool_change"].set_visible(True) + # disable/enable the touch off position controls + touch_off_enabled = (self.controls["on_startup"].get_value() + or self.controls["on_tool_change"].get_value()) + self.controls["location_selector"].set_visible(touch_off_enabled) + # tool change controls + pos_key = self.controls["location_selector"].get_value() + # show or hide the vbox containing the absolute tool change location + for name in ("probe_position_x", + "probe_position_y", + "probe_position_z"): + self.controls[name].set_visible(touch_off_enabled and (pos_key == "absolute")) + # disable/enable touch probe height + for name in ("rapid_move_down", "slow_move_down", "slow_move_speed", "probe_level_z"): + self.controls[name].set_visible(touch_off_enabled) + self.core.emit_event("export-settings-control-changed") diff --git a/pycam/pycam/Plugins/GtkConsole.py b/pycam/pycam/Plugins/GtkConsole.py new file mode 100644 index 00000000..88d23607 --- /dev/null +++ b/pycam/pycam/Plugins/GtkConsole.py @@ -0,0 +1,192 @@ +""" +Copyright 2012 Lars Kruse + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + +import code +from io import StringIO +import os +import sys + +import pycam.Plugins + + +class GtkConsole(pycam.Plugins.PluginBase): + + UI_FILE = "gtk_console.ui" + DEPENDS = ["Clipboard"] + CATEGORIES = ["System"] + + # sys.ps1 and sys.ps2 don't seem to be available outside of the shell + PROMPT_PS1 = ">>> " + PROMPT_PS2 = "... " + + def setup(self): + self._history = [] + self._history_position = None + if not self._gtk: + return False + if self.gui: + self._console = code.InteractiveConsole(locals=self.core.get_namespace(), + filename="PyCAM") + # redirect sys.stdin/stdout - "exec" always writes there + self._original_stdout = sys.stdout + self._original_stdin = sys.stdin + self._console_buffer = self.gui.get_object("ConsoleViewBuffer") + # redirect the virtual console output to the window + sys.stdout = StringIO() + + def console_write(data): + self._console_buffer.insert(self._console_buffer.get_end_iter(), data) + self._console_buffer.place_cursor(self._console_buffer.get_end_iter()) + + self._console.write = console_write + # make sure that we are never waiting for input (e.g. "help()") + sys.stdin = StringIO() + # multiprocessing has a bug regarding the handling of sys.stdin: + # see http://bugs.python.org/issue10174 + sys.stdin.fileno = lambda: -1 + self._clear_console() + console_action = self.gui.get_object("ToggleConsoleWindow") + self.register_gtk_accelerator("console", console_action, None, "ToggleConsoleWindow") + self.core.register_ui("view_menu", "ToggleConsoleWindow", console_action, 90) + self._window = self.gui.get_object("ConsoleDialog") + self._window_position = None + self._gtk_handlers = [] + hide_window = lambda *args: self._set_window_visibility(value=False) + for objname, signal, func in ( + ("ConsoleExecuteButton", "clicked", self._execute_command), + ("CommandInput", "activate", self._execute_command), + ("CopyConsoleButton", "clicked", self._copy_to_clipboard), + ("WipeConsoleButton", "clicked", self._clear_console), + ("CommandInput", "key-press-event", self._scroll_history), + ("ToggleConsoleWindow", "toggled", self._set_window_visibility), + ("CloseConsoleButton", "clicked", hide_window), + ("ConsoleDialog", "delete-event", hide_window), + ("ConsoleDialog", "destroy", hide_window)): + self._gtk_handlers.append((self.gui.get_object(objname), signal, func)) + self.register_gtk_handlers(self._gtk_handlers) + return True + + def teardown(self): + if self.gui: + self.unregister_gtk_handlers(self._gtk_handlers) + self._set_window_visibility(value=False) + sys.stdout = self._original_stdout + sys.stdin = self._original_stdin + console_action = self.gui.get_object("ToggleConsoleWindow") + self.unregister_gtk_accelerator("console", console_action) + self.core.unregister_ui("view_menu", console_action) + + def _clear_console(self, widget=None): + start, end = self._console_buffer.get_bounds() + self._console_buffer.delete(start, end) + self._console.write(self.PROMPT_PS1) + + def _execute_command(self, widget=None): + input_control = self.gui.get_object("CommandInput") + text = input_control.get_text() + if not text: + return + input_control.set_text("") + # add the command to the console window + self._console.write(text + os.linesep) + # execute command - check if it needs more input + if not self._console.push(text): + # append result to console view + sys.stdout.seek(0) + for line in sys.stdout.readlines(): + self._console.write(line) + # clear the buffer + sys.stdout.truncate(0) + # scroll down console view to the end of the buffer + view = self.gui.get_object("ConsoleView") + view.scroll_mark_onscreen(self._console_buffer.get_insert()) + # show the prompt again + self._console.write(self.PROMPT_PS1) + else: + # show the "waiting for more" prompt + self._console.write(self.PROMPT_PS2) + # add to history + if not self._history or (text != self._history[-1]): + self._history.append(text) + self._history_position = None + + def _copy_to_clipboard(self, widget=None): + start, end = self._console_buffer.get_bounds() + content = self._console_buffer.get_text(start, end) + self.core.get("clipboard-set")(content) + + def _set_window_visibility(self, widget=None, value=None, action=None): + toggle_checkbox = self.gui.get_object("ToggleConsoleWindow") + checkbox_state = toggle_checkbox.get_active() + if value is None: + new_state = checkbox_state + elif action is None: + new_state = value + else: + new_state = action + if new_state: + if self._window_position: + self._window.move(*self._window_position) + self._window.show() + else: + self._window_position = self._window.get_position() + self._window.hide() + toggle_checkbox.set_active(new_state) + return True + + def _scroll_history(self, widget=None, event=None): + if event is None: + return False + try: + keyval = getattr(event, "keyval") + get_state = getattr(event, "get_state") + except AttributeError: + return False + if get_state(): + # ignore, if any modifier is pressed + return False + input_control = self.gui.get_object("CommandInput") + if (keyval == self._gdk.KEY_Up): + if self._history_position is None: + # store the current (new) line for later + self._history_lastline_backup = input_control.get_text() + # start with the last item + self._history_position = len(self._history) - 1 + elif self._history_position > 0: + self._history_position -= 1 + else: + # invalid -> no change + return True + elif (keyval == self._gdk.KEY_Down): + if self._history_position is None: + return True + self._history_position += 1 + else: + # all other keys: ignore + return False + if self._history_position >= len(self._history): + input_control.set_text(self._history_lastline_backup) + # make sure that the backup can be stored again + self._history_position = None + else: + input_control.set_text(self._history[self._history_position]) + # move the cursor to the end of the new text + input_control.set_position(0) + input_control.grab_focus() + return True diff --git a/pycam/pycam/Plugins/Log.py b/pycam/pycam/Plugins/Log.py new file mode 100644 index 00000000..dcab85b2 --- /dev/null +++ b/pycam/pycam/Plugins/Log.py @@ -0,0 +1,138 @@ +""" +Copyright 2011 Lars Kruse + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + + +import datetime +import os +import re + +import pycam.Plugins +import pycam.Utils + + +class Log(pycam.Plugins.PluginBase): + + UI_FILE = "log.ui" + DEPENDS = ["Clipboard"] + CATEGORIES = ["System"] + + def setup(self): + if not self._gtk: + return False + if self.gui: + # menu item and shortcut + log_action = self.gui.get_object("ToggleLogWindow") + self._gtk_handlers = [] + self._gtk_handlers.append((log_action, "toggled", self.toggle_log_window)) + self.register_gtk_accelerator("log", log_action, "l", "ToggleLogWindow") + self.core.register_ui("view_menu", "ToggleLogWindow", log_action, 100) + # status bar + self.status_bar = self.gui.get_object("StatusBar") + event_bar = self.gui.get_object("StatusBarEventBox") + self._gtk_handlers.append((event_bar, "button-press-event", self.toggle_log_window)) + event_bar.unparent() + self.core.register_ui("main_window", "Status", event_bar, 100) + # "log" window + self.log_window = self.gui.get_object("LogWindow") + self.log_window.set_default_size(500, 400) + hide_window = lambda *args: self.toggle_log_window(value=False) + self._gtk_handlers.extend([ + (self.log_window, "delete-event", hide_window), + (self.log_window, "destroy", hide_window), + (self.gui.get_object("LogWindowClose"), "clicked", hide_window), + (self.gui.get_object("LogWindowClear"), "clicked", self.clear_log_window), + (self.gui.get_object("LogWindowCopyToClipboard"), "clicked", + self.copy_log_to_clipboard)]) + self.log_model = self.gui.get_object("LogWindowList") + # window state + self._log_window_position = None + # register a callback for the log window + pycam.Utils.log.add_hook(self.add_log_message) + self.register_gtk_handlers(self._gtk_handlers) + return True + + def teardown(self): + if self.gui: + self.unregister_gtk_handlers(self._gtk_handlers) + self.log_window.hide() + log_action = self.gui.get_object("ToggleLogWindow") + self.core.unregister_ui("view_menu", log_action) + self.unregister_gtk_accelerator("log", log_action) + self.core.unregister_ui("main_window", self.gui.get_object("StatusBarEventBox")) + self.core.unregister_ui("view_menu", self.gui.get_object("ToggleLogWindow")) + # TODO: disconnect the log handler + + def add_log_message(self, title, message, record=None): + timestamp = datetime.datetime.fromtimestamp(record.created).strftime("%H:%M") + # avoid the ugly character for a linefeed + message = " ".join(message.splitlines()) + self.log_model.append((timestamp, title, message)) + # update the status bar (if the GTK interface is still active) + if self.status_bar.get_parent() is not None: + # remove the last message from the stack (probably not necessary) + self.status_bar.pop(0) + # push the new message + try: + self.status_bar.push(0, message) + except TypeError: + new_message = re.sub(r"[^\w\s]", "", message) + self.status_bar.push(0, new_message) + # highlight the "warning" icon for warnings/errors + if record and record.levelno > 20: + self.gui.get_object("StatusBarWarning").show() + + def copy_log_to_clipboard(self, widget=None): + def copy_row(model, path, it, content): + columns = [] + for column in range(model.get_n_columns()): + columns.append(model.get_value(it, column)) + content.append(" ".join(columns)) + content = [] + self.log_model.foreach(copy_row, content) + self.core.get("clipboard-set")(os.linesep.join(content)) + self.gui.get_object("StatusBarWarning").hide() + + def clear_log_window(self, widget=None): + self.log_model.clear() + self.gui.get_object("StatusBarWarning").hide() + + def toggle_log_window(self, widget=None, value=None, action=None): + toggle_log_checkbox = self.gui.get_object("ToggleLogWindow") + checkbox_state = toggle_log_checkbox.get_active() + if value is None: + new_state = checkbox_state + elif isinstance(value, self._gdk.Event): + # someone clicked at the status bar -> toggle the window state + new_state = not checkbox_state + else: + if action is None: + new_state = value + else: + new_state = action + if new_state: + if self._log_window_position: + self.log_window.move(*self._log_window_position) + self.log_window.show() + else: + self._log_window_position = self.log_window.get_position() + self.log_window.hide() + toggle_log_checkbox.set_active(new_state) + self.gui.get_object("StatusBarWarning").hide() + # don't destroy the window with a "destroy" event + return True diff --git a/pycam/pycam/Plugins/MemoryAnalyzer.py b/pycam/pycam/Plugins/MemoryAnalyzer.py new file mode 100644 index 00000000..009497dc --- /dev/null +++ b/pycam/pycam/Plugins/MemoryAnalyzer.py @@ -0,0 +1,128 @@ +""" +Copyright 2012 Lars Kruse + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + + +import csv +from io import StringIO + +import pycam.Plugins +import pycam.Utils.log + +_log = pycam.Utils.log.get_logger() + + +class MemoryAnalyzer(pycam.Plugins.PluginBase): + + UI_FILE = "memory_analyzer.ui" + DEPENDS = ["Clipboard"] + CATEGORIES = ["System"] + + def setup(self): + if not self._gtk: + return False + if self.gui: + # menu item and shortcut + self.toggle_action = self.gui.get_object("ToggleMemoryAnalyzerAction") + self._gtk_handlers = [] + self._gtk_handlers.append((self.toggle_action, "toggled", self.toggle_window)) + self.register_gtk_accelerator("memory_analyzer", self.toggle_action, None, + "ToggleMemoryAnalyzerAction") + self.core.register_ui("view_menu", "ToggleMemoryAnalyzerAction", self.toggle_action, + 80) + # the window + self.window = self.gui.get_object("MemoryAnalyzerWindow") + self.window.set_default_size(500, 400) + hide_window = lambda *args: self.toggle_window(value=False) + self._gtk_handlers.extend([ + (self.window, "delete-event", hide_window), + (self.window, "destroy", hide_window), + (self.gui.get_object("MemoryAnalyzerCloseButton"), "clicked", hide_window), + (self.gui.get_object("MemoryAnalyzerCopyButton"), "clicked", + self.copy_to_clipboard), + (self.gui.get_object("MemoryAnalyzerRefreshButton"), "clicked", + self.refresh_memory_analyzer)]) + self.model = self.gui.get_object("MemoryAnalyzerModel") + # window state + self._window_position = None + # check if "heapy" is available - this disables all widgets + try: + import guppy + except ImportError: + self._guppy = None + self.gui.get_object("MemoryAnalyzerDataBox").hide() + else: + self._guppy = guppy + self.gui.get_object("MemoryAnalyzerBrokenLabel").hide() + self.register_gtk_handlers(self._gtk_handlers) + return True + + def teardown(self): + if self.gui: + self.unregister_gtk_handlers(self._gtk_handlers) + self.window.hide() + self.core.unregister_ui("view_menu", self.toggle_action) + self.unregister_gtk_accelerator("memory_analyzer", self.toggle_action) + + def toggle_window(self, widget=None, value=None, action=None): + checkbox_state = self.toggle_action.get_active() + if value is None: + new_state = checkbox_state + elif action is None: + new_state = value + else: + new_state = action + if new_state: + if self._window_position: + self.window.move(*self._window_position) + self.refresh_memory_analyzer() + self.window.show() + else: + self._window_position = self.window.get_position() + self.window.hide() + self.toggle_action.set_active(new_state) + # don't destroy the window with a "destroy" event + return True + + def refresh_memory_analyzer(self, widget=None): + self.model.clear() + self.gui.get_object("MemoryAnalyzerLoadingLabel").show() + for objname in ("MemoryAnalyzerRefreshButton", "MemoryAnalyzerCopyButton"): + self.gui.get_object(objname).set_sensitive(False) + self._gobject.idle_add(self._refresh_data_in_background) + + def _refresh_data_in_background(self): + if not self._guppy: + return + memory_state = self._guppy.hpy().heap() + for row in memory_state.stat.get_rows(): + item = (row.name, row.count, row.size / 1024, row.size / row.count) + self.model.append(item) + for objname in ("MemoryAnalyzerRefreshButton", "MemoryAnalyzerCopyButton"): + self.gui.get_object(objname).set_sensitive(True) + self.gui.get_object("MemoryAnalyzerRefreshButton").set_sensitive(True) + self.gui.get_object("MemoryAnalyzerLoadingLabel").hide() + + def copy_to_clipboard(self, widget=None): + text_buffer = StringIO() + writer = csv.writer(text_buffer) + writer.writerow(("Type", "Count", "Size (all) [kB]", "Average size [B]")) + for row in self.model: + writer.writerow(row) + self.core.get("clipboard-set")(text_buffer.getvalue()) + text_buffer.close() diff --git a/pycam/pycam/Plugins/ModelExport.py b/pycam/pycam/Plugins/ModelExport.py new file mode 100644 index 00000000..640ecee3 --- /dev/null +++ b/pycam/pycam/Plugins/ModelExport.py @@ -0,0 +1,184 @@ +""" +Copyright 2011 Lars Kruse + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + +import os + +import pycam.Plugins +import pycam.Utils + + +class ModelExport(pycam.Plugins.PluginBase): + + UI_FILE = "model_export.ui" + DEPENDS = ["Models"] + CATEGORIES = ["Model", "Export"] + + def setup(self): + if self.gui: + self._gtk_handlers = [] + save_action = self.gui.get_object("SaveModel") + self.register_gtk_accelerator("model", save_action, "s", "SaveModel") + self._gtk_handlers.append((save_action, "activate", self.save_model)) + self.core.register_ui("file_menu", "SaveModel", save_action, 20) + save_as_action = self.gui.get_object("SaveAsModel") + self.register_gtk_accelerator("model", save_as_action, "s", + "SaveAsModel") + self._gtk_handlers.append((save_as_action, "activate", self.save_as_model)) + self.core.register_ui("file_menu", "SaveAsModel", save_as_action, 25) + self._event_handlers = (("model-selection-changed", self._update_widgets), ) + self.register_gtk_handlers(self._gtk_handlers) + self.register_event_handlers(self._event_handlers) + self._update_widgets() + self.core.register_chain("model_export", self._fallback_model_export, weight=1000) + return True + + def teardown(self): + if self.gui: + self.unregister_event_handlers(self._event_handlers) + self.unregister_gtk_handlers(self._gtk_handlers) + save_action = self.gui.get_object("SaveModel") + self.core.unregister_ui("file_menu", save_action) + self.unregister_gtk_accelerator("model", save_action) + save_as_action = self.gui.get_object("SaveAsModel") + self.core.unregister_ui("file_menu", save_as_action) + self.unregister_gtk_accelerator("model", save_as_action) + self.core.unregister_chain("model_export", self._fallback_model_export) + + def _fallback_model_export(self, models): + if models: + self.log.info("Failed to export %d model(s)", len(models)) + + def save_model(self, widget=None): + # TODO: add "filename" property to models + pass + + def save_as_model(self, widget=None, filename=None): + self.core.call_chain("model_export", self.core.get("models").get_selected()) + + def _update_widgets(self): + models = self.core.get("models").get_selected() + save_as_possible = len(models) > 0 + self.gui.get_object("SaveAsModel").set_sensitive(save_as_possible) + # TODO: fix this + save_possible = False and bool(self.core.last_model_uri + and save_as_possible + and self.core.last_model_uri.is_writable()) + # TODO: fix this dirty hack to avoid silent overwrites of PS/DXF files as SVG + if save_possible: + extension = os.path.splitext(self.core.last_model_uri.get_path())[-1].lower() + # TODO: fix these hard-coded file extensions + if extension[1:] in ("eps", "ps", "dxf"): + # can't save 2D formats except SVG + save_possible = False + self.gui.get_object("SaveModel").set_sensitive(save_possible) + + +class ModelExportTrimesh(pycam.Plugins.PluginBase): + + DEPENDS = ["ModelExport"] + + def setup(self): + self.core.register_chain("model_export", self.export_trimesh, weight=30) + return True + + def teardown(self): + self.core.unregister_chain("model_export", self.export_trimesh) + + def export_trimesh(self, models): + removal_list = [] + for index, model in enumerate(models): + if not hasattr(model.get_model(), "triangles"): + continue + # determine the file type + # TODO: this needs to be decided by the exporter code + type_filter = [("STL models", "*.stl")] + model_name = model["name"] + filename = self.core.get("get_filename_func")("Save model '%s' to ..." % model_name, + mode_load=False, + type_filter=type_filter, + filename_templates=[]) + if not filename: + continue + uri = pycam.Utils.URIHandler(filename) + if not uri: + continue + if not uri.is_local(): + self.log.error("Unable to write file to a non-local destination: %s", uri) + continue + try: + file_in = open(uri.get_local_path(), "w") + # TODO: fill in "comment" with "meta_data" + # TODO: call a specific exporter + model.get_model().export(unit=self.core.get("unit")).write(file_in) + file_in.close() + removal_list.append(index) + except IOError as err_msg: + self.log.error("Failed to save model file: %s", err_msg) + else: + self.log.info("Successfully stored '%s' as '%s'.", filename, model_name) + removal_list.reverse() + for index in removal_list: + models.pop(index) + + +class ModelExportContour(pycam.Plugins.PluginBase): + + DEPENDS = ["ModelExport"] + + def setup(self): + self.core.register_chain("model_export", self.export_contour, weight=40) + return True + + def teardown(self): + self.core.unregister_chain("model_export", self.export_contour) + + def export_contour(self, models): + removal_list = [] + for index, model in enumerate(models): + if not hasattr(model.get_model(), "get_polygons"): + continue + # determine the file type + # TODO: this needs to be decided by the exporter code + type_filter = [("SVG models", "*.svg")] + filename = self.core.get("get_filename_func")("Save model '%s' to ..." % model["name"], + mode_load=False, + type_filter=type_filter, + filename_templates=[]) + if not filename: + continue + uri = pycam.Utils.URIHandler(filename) + if not uri: + continue + if not uri.is_local(): + self.log.error("Unable to write file to a non-local destination: %s", uri) + continue + try: + file_in = open(uri.get_local_path(), "w") + # TODO: fill in "comment" with "meta_data" + # TODO: call a specific exporter + model.get_model().export(unit=self.core.get("unit")).write(file_in) + file_in.close() + removal_list.append(index) + except IOError as err_msg: + self.log.error("Failed to save model file: %s", err_msg) + else: + self.log.info("Successfully stored '%s' as '%s'.", filename, model["name"]) + removal_list.reverse() + for index in removal_list: + models.pop(index) diff --git a/pycam/pycam/Plugins/ModelExtrusion.py b/pycam/pycam/Plugins/ModelExtrusion.py new file mode 100644 index 00000000..89935d8c --- /dev/null +++ b/pycam/pycam/Plugins/ModelExtrusion.py @@ -0,0 +1,121 @@ +""" +Copyright 2011 Lars Kruse + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + + +import math + +import pycam.Plugins + + +EXTRUSION_TYPES = (("radius_up", "Radius (bulge)", "ExtrusionRadiusUpIcon"), + ("radius_down", "Radius (valley)", "ExtrusionRadiusDownIcon"), + ("skewed", "Chamfer", "ExtrusionChamferIcon"), + ("sine", "Sine", "ExtrusionSineIcon"), + ("sigmoid", "Sigmoid", "ExtrusionSigmoidIcon")) + + +class ModelExtrusion(pycam.Plugins.PluginBase): + + UI_FILE = "model_extrusion.ui" + DEPENDS = ["Models"] + CATEGORIES = ["Model"] + + def setup(self): + if self.gui: + extrusion_frame = self.gui.get_object("ModelExtrusionFrame") + extrusion_frame.unparent() + self._gtk_handlers = ((self.gui.get_object("ExtrudeButton"), "clicked", + self._extrude_model), ) + self._event_handlers = ( + ("model-change-after", self._update_extrude_widgets), + ("model-selection-changed", self._update_extrude_widgets)) + self.core.register_ui("model_handling", "Extrusion", extrusion_frame, 5) + self.gui.get_object("ExtrusionHeight").set_value(1) + self.gui.get_object("ExtrusionWidth").set_value(1) + self.gui.get_object("ExtrusionGrid").set_value(0.5) + extrusion_model = self.gui.get_object("ExtrusionTypeModel") + for row in EXTRUSION_TYPES: + extrusion_model.append((row[0], row[1], self.gui.get_object(row[2]).get_pixbuf())) + self.gui.get_object("ExtrusionTypeSelector").set_active(0) + self.register_gtk_handlers(self._gtk_handlers) + self.register_event_handlers(self._event_handlers) + self._update_extrude_widgets() + return True + + def teardown(self): + if self.gui: + self.unregister_event_handlers(self._event_handlers) + self.unregister_gtk_handlers(self._gtk_handlers) + self.core.unregister_ui("model_handling", self.gui.get_object("ModelExtrusionFrame")) + + def _get_extrudable_models(self): + models = self.core.get("models").get_selected() + extrudables = [] + for model in models: + if (model is not None) and hasattr(model.get_model(), "extrude"): + extrudables.append(model) + return extrudables + + def _update_extrude_widgets(self): + extrude_widget = self.gui.get_object("ModelExtrusionFrame") + if self._get_extrudable_models(): + extrude_widget.show() + else: + extrude_widget.hide() + + def _extrude_model(self, widget=None): + selected_models = self._get_extrudable_models() + if not selected_models: + return + extrusion_type_selector = self.gui.get_object("ExtrusionTypeSelector") + type_model = extrusion_type_selector.get_model() + type_active = extrusion_type_selector.get_active() + if type_active >= 0: + type_string = type_model[type_active][0] + height = self.gui.get_object("ExtrusionHeight").get_value() + width = self.gui.get_object("ExtrusionWidth").get_value() + grid_size = self.gui.get_object("ExtrusionGrid").get_value() + if type_string == "radius_up": + func = lambda x: height * math.sqrt((width ** 2 - max(0, width - x) ** 2)) + elif type_string == "radius_down": + func = lambda x: \ + height * (1 - math.sqrt((width ** 2 - min(width, x) ** 2)) / width) + elif type_string == "skewed": + func = lambda x: height * min(1, x / width) + elif type_string == "sine": + func = lambda x: height * math.sin(min(x, width) / width * math.pi / 2) + elif type_string == "sigmoid": + func = lambda x: \ + height * ((math.sin(((min(x, width) / width) - 0.5) * math.pi) + 1) / 2) + else: + self.log.error("Unknown extrusion type selected: %s", type_string) + return + progress = self.core.get("progress") + progress.update(text="Extruding models") + progress.set_multiple(len(selected_models), "Model") + for model in selected_models: + new_model = model.get_model().extrude(stepping=grid_size, func=func, + callback=progress.update) + if new_model: + self.core.get("models").add_model(new_model, + name_template="Extruded model #%d") + else: + self.log.info("Extruded model is empty") + progress.update_multiple() + progress.finish() diff --git a/pycam/pycam/Plugins/ModelPlaneMirror.py b/pycam/pycam/Plugins/ModelPlaneMirror.py new file mode 100644 index 00000000..523deb28 --- /dev/null +++ b/pycam/pycam/Plugins/ModelPlaneMirror.py @@ -0,0 +1,68 @@ +""" +Copyright 2011 Lars Kruse + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + + +import pycam.Plugins + + +class ModelPlaneMirror(pycam.Plugins.PluginBase): + + UI_FILE = "model_plane_mirror.ui" + DEPENDS = ["Models"] + CATEGORIES = ["Model"] + + def setup(self): + if self.gui: + mirror_box = self.gui.get_object("ModelMirrorBox") + mirror_box.unparent() + self.core.register_ui("model_handling", "Mirror", mirror_box, 0) + self._gtk_handlers = ((self.gui.get_object("PlaneMirrorButton"), "clicked", + self._plane_mirror), ) + self._event_handlers = (("model-selection-changed", self._update_plane_widgets), ) + self.register_gtk_handlers(self._gtk_handlers) + self.register_event_handlers(self._event_handlers) + self._update_plane_widgets() + return True + + def teardown(self): + if self.gui: + self.unregister_event_handlers(self._event_handlers) + self.unregister_gtk_handlers(self._gtk_handlers) + + def _update_plane_widgets(self): + plane_widget = self.gui.get_object("ModelMirrorBox") + if self.core.get("models").get_selected(): + plane_widget.show() + else: + plane_widget.hide() + + def _plane_mirror(self, widget=None): + models = self.core.get("models").get_selected() + if not models: + return + for plane, matrix in (("XY", [[1, 0, 0], [0, 1, 0], [0, 0, -1]]), + ("XZ", [[1, 0, 0], [0, -1, 0], [0, 0, 1]]), + ("YZ", [[-1, 0, 0], [0, 1, 0], [0, 0, 1]])): + if self.gui.get_object("MirrorPlane%s" % plane).get_active(): + break + else: + assert False, "No mirror plane selected" + for model in models: + model.extend_value("transformations", + [{"action": "multiply_matrix", "matrix": matrix}]) diff --git a/pycam/pycam/Plugins/ModelPolygons.py b/pycam/pycam/Plugins/ModelPolygons.py new file mode 100644 index 00000000..0f220118 --- /dev/null +++ b/pycam/pycam/Plugins/ModelPolygons.py @@ -0,0 +1,72 @@ +""" +Copyright 2011 Lars Kruse + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + + +import pycam.Plugins + + +class ModelPolygons(pycam.Plugins.PluginBase): + + UI_FILE = "model_polygons.ui" + DEPENDS = ["Models"] + CATEGORIES = ["Model"] + + def setup(self): + if self.gui: + polygon_frame = self.gui.get_object("ModelPolygonFrame") + polygon_frame.unparent() + self.core.register_ui("model_handling", "Polygons", polygon_frame, 0) + self._gtk_handlers = ( + (self.gui.get_object("ToggleModelDirectionButton"), + "clicked", self._adjust_polygons, "toggle_polygon_directions"), + (self.gui.get_object("DirectionsGuessButton"), + "clicked", self._adjust_polygons, "revise_polygon_directions")) + self._event_handlers = ( + ("model-change-after", self._update_polygon_controls), + ("model-selection-changed", self._update_polygon_controls)) + self.register_gtk_handlers(self._gtk_handlers) + self.register_event_handlers(self._event_handlers) + self._update_polygon_controls() + return True + + def teardown(self): + if self.gui: + self.unregister_event_handlers(self._event_handlers) + self.unregister_gtk_handlers(self._gtk_handlers) + self.core.unregister_ui("model_handling", self.gui.get_object("ModelPolygonFrame")) + + def _get_polygon_models(self): + models = [] + for model in self.core.get("models").get_selected(): + if model and hasattr(model.get_model(), "reverse_directions"): + models.append(model) + return models + + def _update_polygon_controls(self): + models = self._get_polygon_models() + frame = self.gui.get_object("ModelPolygonFrame") + if models: + frame.show() + else: + frame.hide() + + def _adjust_polygons(self, widget=None, action=None): + models = self._get_polygon_models() + for model in models: + model.extend_value("transformations", [{"action": action}]) diff --git a/pycam/pycam/Plugins/ModelPosition.py b/pycam/pycam/Plugins/ModelPosition.py new file mode 100644 index 00000000..3e8b4e89 --- /dev/null +++ b/pycam/pycam/Plugins/ModelPosition.py @@ -0,0 +1,102 @@ +""" +Copyright 2011 Lars Kruse + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + + +import pycam.Plugins + + +class ModelPosition(pycam.Plugins.PluginBase): + + UI_FILE = "model_position.ui" + DEPENDS = ["Models"] + CATEGORIES = ["Model"] + + def setup(self): + if self.gui: + position_box = self.gui.get_object("ModelPositionBox") + position_box.unparent() + self._gtk_handlers = [] + self.core.register_ui("model_handling", "Position", position_box, -20) + shift_button = self.gui.get_object("ShiftModelButton") + self._gtk_handlers.append((shift_button, "clicked", self._shift_model)) + align_button = self.gui.get_object("AlignPositionButton") + self._gtk_handlers.append((align_button, "clicked", self._align_model)) + # grab default button for shift/align controls + for axis in "XYZ": + obj = self.gui.get_object("ShiftPosition%s" % axis) + self._gtk_handlers.extend(( + (obj, "focus-in-event", lambda widget, data: shift_button.grab_default()), + (obj, "focus-out-event", + lambda widget, data: shift_button.get_toplevel().set_default(None)))) + for axis in "XYZ": + for name_template in ("AlignPosition%s", "AlignPosition%sMin", + "AlignPosition%sCenter", "AlignPosition%sMax"): + obj = self.gui.get_object(name_template % axis) + self._gtk_handlers.extend(( + (obj, "focus-in-event", lambda widget, data: align_button.grab_default()), + (obj, "focus-out-event", + lambda widget, data: align_button.get_toplevel().set_default(None)))) + self._event_handlers = (("model-selection-changed", self._update_position_widgets), ) + self.register_gtk_handlers(self._gtk_handlers) + self.register_event_handlers(self._event_handlers) + self._update_position_widgets() + return True + + def teardown(self): + if self.gui: + self.unregister_event_handlers(self._event_handlers) + self.unregister_gtk_handlers(self._gtk_handlers) + self.core.unregister_ui("model_handling", self.gui.get_object("ModelPositionBox")) + + def _update_position_widgets(self): + widget = self.gui.get_object("ModelPositionBox") + if self.core.get("models").get_selected(): + widget.show() + else: + widget.hide() + + def _shift_model(self, widget=None): + models = self.core.get("models").get_selected() + if not models: + return + axes = [self.gui.get_object("ShiftPosition%s" % axis).get_value() for axis in "XYZ"] + shift_operation = {"action": "shift", "shift_target": "distance", "axes": axes} + for model in models: + model.extend_value("transformations", [shift_operation]) + + def _align_model(self, widget=None): + models = self.core.get("models").get_selected() + if not models: + return + transformations = [] + # collect transformations for min/center/max alignments + # Each alignment transformation is only added, if it was selected for at least one axis. + for obj_name_suffix, shift_target in (("Min", "align_min"), + ("Center", "center"), + ("Max", "align_max")): + axes = [None, None, None] + for index, axis in enumerate("XYZ"): + objname = "AlignPosition%s%s" % (axis, obj_name_suffix) + if self.gui.get_object(objname).get_active(): + axes[index] = self.gui.get_object("AlignPosition%s" % axis).get_value() + if any(axis is not None for axis in axes): + transformations.append( + {"action": "shift", "shift_target": shift_target, "axes": axes}) + for model in models: + model.extend_value("transformations", transformations) diff --git a/pycam/pycam/Plugins/ModelProjection.py b/pycam/pycam/Plugins/ModelProjection.py new file mode 100644 index 00000000..8d9bd7f5 --- /dev/null +++ b/pycam/pycam/Plugins/ModelProjection.py @@ -0,0 +1,83 @@ +""" +Copyright 2011 Lars Kruse + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + + +import pycam.Plugins + + +class ModelProjection(pycam.Plugins.PluginBase): + + UI_FILE = "model_projection.ui" + DEPENDS = ["Models"] + CATEGORIES = ["Model"] + + def setup(self): + if self.gui: + projection_frame = self.gui.get_object("ModelProjectionFrame") + projection_frame.unparent() + self.core.register_ui("model_handling", "Projection", projection_frame, 10) + self._gtk_handlers = ((self.gui.get_object("ProjectionButton"), "clicked", + self._projection), ) + self._event_handlers = ( + ("model-change-after", self._update_controls), + ("model-selection-changed", self._update_controls)) + self.register_gtk_handlers(self._gtk_handlers) + self.register_event_handlers(self._event_handlers) + self._update_controls() + return True + + def teardown(self): + if self.gui: + self.unregister_event_handlers(self._event_handlers) + self.unregister_gtk_handlers(self._gtk_handlers) + self.core.unregister_ui("model_handling", self.gui.get_object("ModelProjectionFrame")) + + def _get_projectable_models(self): + models = self.core.get("models").get_selected() + projectables = [] + for model in models: + if (model is not None) and hasattr(model.get_model(), "get_waterline_contour"): + projectables.append(model) + return projectables + + def _update_controls(self): + models = self._get_projectable_models() + control = self.gui.get_object("ModelProjectionFrame") + if models: + control.show() + else: + control.hide() + + def _projection(self, widget=None): + models = self._get_projectable_models() + if not models: + return + for model_obj in models: + model = model_obj.get_model() + for objname, z_level in ( + ("ProjectionModelTop", model.maxz), + ("ProjectionModelMiddle", (model.minz + model.maxz) / 2.0), + ("ProjectionModelBottom", model.minz), + ("ProjectionModelCustom", + self.gui.get_object("ProjectionZLevel").get_value())): + if self.gui.get_object(objname).get_active(): + center = [0, 0, z_level] + vector = [0, 0, 1] + model_obj.extend_value("transformations", + [{"action": "projection", "center": center, "vector": vector}]) diff --git a/pycam/pycam/Plugins/ModelRotation.py b/pycam/pycam/Plugins/ModelRotation.py new file mode 100644 index 00000000..43ff036c --- /dev/null +++ b/pycam/pycam/Plugins/ModelRotation.py @@ -0,0 +1,74 @@ +""" +Copyright 2011 Lars Kruse + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + + +import pycam.Plugins + + +class ModelRotation(pycam.Plugins.PluginBase): + + UI_FILE = "model_rotation.ui" + DEPENDS = ["Models"] + CATEGORIES = ["Model"] + + def setup(self): + if self.gui: + rotation_box = self.gui.get_object("ModelRotationBox") + rotation_box.unparent() + self.core.register_ui("model_handling", "Rotation", rotation_box, -10) + self._gtk_handlers = ((self.gui.get_object("RotateModelButton"), "clicked", + self._rotate_model), ) + self._event_handlers = (("model-selection-changed", self._update_controls), ) + self.register_gtk_handlers(self._gtk_handlers) + self.register_event_handlers(self._event_handlers) + self._update_controls() + return True + + def teardown(self): + if self.gui: + self.unregister_event_handlers(self._event_handlers) + self.unregister_gtk_handlers(self._gtk_handlers) + self.core.unregister_ui("model_handling", self.gui.get_object("ModelRotationBox")) + + def _update_controls(self): + widget = self.gui.get_object("ModelRotationBox") + if self.core.get("models").get_selected(): + widget.show() + else: + widget.hide() + + def _rotate_model(self, widget=None): + models = self.core.get("models").get_selected() + if not models: + return + center = [0, 0, 0] + for axis in "XYZ": + if self.gui.get_object("RotationAxis%s" % axis).get_active(): + break + axis_vector = {"X": [1, 0, 0], "Y": [0, 1, 0], "Z": [0, 0, 1]}[axis] + for control, angle in (("RotationAngle90CCKW", -90), + ("RotationAngle90CKW", 90), + ("RotationAngle180", 180), + ("RotationAngleCustomCKW", + self.gui.get_object("RotationAngle").get_value())): + if self.gui.get_object(control).get_active(): + break + for model in models: + model.extend_value("transformations", [{"action": "rotate", "center": center, + "vector": axis_vector, "angle": angle}]) diff --git a/pycam/pycam/Plugins/ModelScaling.py b/pycam/pycam/Plugins/ModelScaling.py new file mode 100644 index 00000000..ff62f02c --- /dev/null +++ b/pycam/pycam/Plugins/ModelScaling.py @@ -0,0 +1,128 @@ +""" +Copyright 2011 Lars Kruse + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + + +import pycam.Plugins + + +class ModelScaling(pycam.Plugins.PluginBase): + + UI_FILE = "model_scaling.ui" + DEPENDS = ["Models"] + CATEGORIES = ["Model"] + + def setup(self): + if self.gui: + scale_box = self.gui.get_object("ModelScaleBox") + scale_box.unparent() + self.core.register_ui("model_handling", "Scale", scale_box, -5) + scale_percent = self.gui.get_object("ScalePercent") + scale_button = self.gui.get_object("ScaleModelButton") + scale_percent.set_value(100) + scale_dimension_button = self.gui.get_object("ScaleAllAxesButton") + scale_dimension_control = self.gui.get_object("ScaleDimensionControl") + self._gtk_handlers = [] + self._gtk_handlers.extend(( + (scale_percent, "focus-in-event", + lambda widget, data: scale_button.grab_default()), + (scale_percent, "focus-out-event", + lambda widget, data: scale_box.get_toplevel().set_default(None)), + (scale_button, "clicked", self._scale_model), + (self.gui.get_object("ScaleDimensionAxis"), "changed", + lambda widget=None: self.core.emit_event("model-change-after")), + (scale_dimension_control, "focus-in-event", + lambda widget, data: scale_dimension_button.grab_default()), + (scale_dimension_control, "focus-out-event", + lambda widget, data: scale_box.get_toplevel().set_default(None)), + (scale_dimension_button, "clicked", + lambda widget: self._scale_model_axis_fit(proportionally=True)), + (self.gui.get_object("ScaleSelectedAxisButton"), "clicked", + lambda widget: self._scale_model_axis_fit(proportionally=False)), + (self.gui.get_object("ScaleInchMM"), "clicked", + lambda widget: self._scale_model(percent=(100 * 25.4))), + (self.gui.get_object("ScaleMMInch"), "clicked", + lambda widget: self._scale_model(percent=(100 / 25.4))))) + self._event_handlers = ( + ("model-selection-changed", self._update_scale_controls), + ("model-change-after", self._update_scale_controls)) + self.register_gtk_handlers(self._gtk_handlers) + self.register_event_handlers(self._event_handlers) + self._update_scale_controls() + return True + + def teardown(self): + if self.gui: + self.unregister_event_handlers(self._event_handlers) + self.unregister_gtk_handlers(self._gtk_handlers) + self.core.unregister_ui("model_handling", self.gui.get_object("ModelScaleBox")) + + def _update_scale_controls(self): + models = self.core.get("models").get_selected() + scale_box = self.gui.get_object("ModelScaleBox") + if not models: + scale_box.hide() + return + else: + scale_box.show() + # scale controls + axis_control = self.gui.get_object("ScaleDimensionAxis") + scale_selected_button = self.gui.get_object("ScaleSelectedAxisButton") + scale_all_button = self.gui.get_object("ScaleAllAxesButton") + scale_value = self.gui.get_object("ScaleDimensionControl") + index = axis_control.get_active() + enable_controls = False + for model_dict in models: + model = model_dict.get_model() + dims = (model.maxx - model.minx, model.maxy - model.miny, model.maxz - model.minz) + value = dims[index] + non_zero_dimensions = [i for i, dim in enumerate(dims) if dim > 0] + enable_controls = enable_controls or (index in non_zero_dimensions) + scale_selected_button.set_sensitive(enable_controls) + scale_all_button.set_sensitive(enable_controls) + scale_value.set_sensitive(enable_controls) + scale_value.set_value(value) + + def _scale_model(self, widget=None, percent=None): + models = self.core.get("models").get_selected() + if not models: + return + if percent is None: + percent = self.gui.get_object("ScalePercent").get_value() + factor = percent / 100.0 + if (factor <= 0) or (factor == 1): + return + axes = [factor] * 3 + for model in models: + model.extend_value("transformations", + [{"action": "scale", "scale_target": "factor", "axes": axes}]) + + def _scale_model_axis_fit(self, widget=None, proportionally=False): + models = self.core.get("models").get_selected() + if not models: + return + value = self.gui.get_object("ScaleDimensionValue").get_value() + index = self.gui.get_object("ScaleDimensionAxis").get_active() + if proportionally: + axes = [value] * 3 + else: + axes = [None, None, None] + axes[index] = value + for model in models: + model.extend_value("transformations", + [{"action": "scale", "scale_target": "size", "axes": axes}]) diff --git a/pycam/pycam/Plugins/ModelSupport.py b/pycam/pycam/Plugins/ModelSupport.py new file mode 100644 index 00000000..ae7e8d38 --- /dev/null +++ b/pycam/pycam/Plugins/ModelSupport.py @@ -0,0 +1,185 @@ +""" +Copyright 2011 Lars Kruse + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + + +import pycam.Geometry.Model +import pycam.Plugins +import pycam.workspace.data_models + + +class ModelSupport(pycam.Plugins.PluginBase): + + UI_FILE = "model_support.ui" + DEPENDS = ["Models"] + CATEGORIES = ["Model", "Support bridges"] + MODEL_NAME_TEMPLATE = "Support Model #%d" + + def setup(self): + if self.gui: + self._support_frame = self.gui.get_object("ModelExtensionsFrame") + self._support_frame.unparent() + self.core.register_ui("model_handling", "Support", self._support_frame, 0) + support_model_type_selector = self.gui.get_object("SupportGridTypesControl") + self._gtk_handlers = [] + self._gtk_handlers.append((support_model_type_selector, "changed", + "support-model-changed")) + + def add_support_model_type(obj, name): + types_model = support_model_type_selector.get_model() + # the model is gone (for unknown reasons) when the GTK loop stops + if types_model is not None: + types_model.append((obj, name)) + # enable the first item by default + if len(types_model) == 1: + support_model_type_selector.set_active(0) + + def clear_support_model_type_selector(): + model = support_model_type_selector.get_model() + # the model is gone (for unknown reasons) when the GTK loop stops + if model is not None: + model.clear() + + def clear_support_model_settings(): + children = container.get_children() + for child in children: + container.remove(child) + + def get_support_model_type(): + index = support_model_type_selector.get_active() + if index < 0: + return None + else: + selector_model = support_model_type_selector.get_model() + return selector_model[index][0] + + def set_support_model_type(model_type): + selector_model = support_model_type_selector.get_model() + for index, row in enumerate(selector_model): + if row[0] == model_type: + support_model_type_selector.set_active(index) + break + else: + support_model_type_selector.set_active(-1) + + self.core.register_ui_section("support_model_type_selector", add_support_model_type, + clear_support_model_type_selector) + self.core.register_ui("support_model_type_selector", "none", "none", weight=-100) + container = self.gui.get_object("SupportAddOnContainer") + self.core.register_ui_section( + "support_model_settings", + lambda obj, name: container.pack_start(obj, expand=False, fill=False, padding=0), + clear_support_model_settings) + # TODO: remove public settings + self.core.add_item("support_model_type", get_support_model_type, + set_support_model_type) + grid_thickness = self.gui.get_object("SupportGridThickness") + self._gtk_handlers.append((grid_thickness, "value-changed", "support-model-changed")) + self.core.add_item("support_grid_thickness", grid_thickness.get_value, + grid_thickness.set_value) + grid_height = self.gui.get_object("SupportGridHeight") + self._gtk_handlers.append((grid_height, "value-changed", "support-model-changed")) + self.core.add_item("support_grid_height", grid_height.get_value, grid_height.set_value) + self._gtk_handlers.append((self.gui.get_object("CreateSupportModel"), "clicked", + self._add_support_model)) + # support grid defaults + self.core.set("support_grid_thickness", 0.5) + self.core.set("support_grid_height", 0.5) + self.core.set("support_grid_type", "none") + self.core.register_chain("get_draw_dimension", self.get_draw_dimension) + # handlers + self._event_handlers = ( + ("model-change-after", "support-model-changed"), + ("bounds-changed", "support-model-changed"), + ("model-selection-changed", "support-model-changed"), + ("support-model-changed", self.update_support_model)) + self.register_gtk_handlers(self._gtk_handlers) + self.register_event_handlers(self._event_handlers) + self._update_widgets() + return True + + def teardown(self): + if self.gui: + self.unregister_event_handlers(self._event_handlers) + self.unregister_gtk_handlers(self._gtk_handlers) + self.core.unregister_chain("get_draw_dimension", self.get_draw_dimension) + self.core.unregister_ui("model_handling", self.gui.get_object("ModelExtensionsFrame")) + self.core.unregister_ui("support_model_type_selector", "none") + self.core.unregister_ui_section("support_model_settings") + self.core.unregister_ui_section("support_model_type_selector") + + def _update_widgets(self): + models = self.core.get("models").get_selected() + if models: + self._support_frame.show() + else: + self._support_frame.hide() + grid_type = self.core.get("support_model_type") + details_box = self.gui.get_object("SupportGridDetailsBox") + # show/hide the common details (width/height) + # enable/disable the "create support model" button + create_button = self.gui.get_object("CreateSupportModel") + if grid_type == "none": + details_box.hide() + create_button.set_sensitive(False) + else: + details_box.show() + create_button.set_sensitive(True) + + def _add_support_model(self, widget=None): + for model_object in self.core.get("current_support_models"): + self.core.get("models").add_model(model_object.get_dict(), + name_template=self.MODEL_NAME_TEMPLATE, + color=self.core.get("color_support_preview")) + # Disable the support model type -> avoid confusing visualization. + # (this essentially removes the support grid from the 3D view) + self.gui.get_object("SupportGridTypesControl").set_active(0) + + def get_draw_dimension(self, low, high): + if not self.core.get("show_support_preview"): + return + support_model_objects = self.core.get("current_support_models", []) + support_models = [] + for model_object in support_model_objects: + support_model = model_object.get_model() + if support_model: + support_models.append(support_model) + model_box = pycam.Geometry.Model.get_combined_bounds(support_models) + if model_box is None: + return + for index, (mlow, mhigh) in enumerate(zip(model_box.lower, model_box.upper)): + if (low[index] is None) or (mlow < low[index]): + low[index] = mlow + if (high[index] is None) or (mhigh > high[index]): + high[index] = mhigh + + def update_support_model(self, widget=None): + old_support_model_objects = self.core.get("current_support_models") + selected_models = self.core.get("models").get_selected() + grid_type = self.core.get("support_model_type") + new_support_model_objects = [] + if (grid_type == "none") or (not selected_models): + new_support_model_objects = [] + else: + # update the support model + self.core.call_chain("get_support_models", selected_models, new_support_model_objects) + if old_support_model_objects != new_support_model_objects: + self.core.set("current_support_models", new_support_model_objects) + self.core.emit_event("visual-item-updated") + # show/hide controls + self._update_widgets() diff --git a/pycam/pycam/Plugins/ModelSupportDistributed.py b/pycam/pycam/Plugins/ModelSupportDistributed.py new file mode 100644 index 00000000..c5205124 --- /dev/null +++ b/pycam/pycam/Plugins/ModelSupportDistributed.py @@ -0,0 +1,111 @@ +""" +Copyright 2011 Lars Kruse + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + + +import pycam.Plugins +from pycam.workspace import DistributionStrategy, SupportBridgesLayout, SourceType +import pycam.workspace.data_models + + +class ModelSupportDistributed(pycam.Plugins.PluginBase): + + UI_FILE = "model_support_distributed.ui" + DEPENDS = ["Models", "ModelSupport"] + CATEGORIES = ["Model", "Support bridges"] + + def setup(self): + if self.gui: + support_expander = self.gui.get_object("DistributedSupportExpander") + support_expander.unparent() + self._gtk_handlers = [] + self.core.register_ui("support_model_type_selector", "Distributed (edges)", + "distributed_edges", weight=0) + self.core.register_ui("support_model_type_selector", "Distributed (corners)", + "distributed_corners", weight=10) + self.core.register_ui("support_model_settings", "Grid settings", support_expander) + grid_length = self.gui.get_object("SupportGridLength") + self._gtk_handlers.append((grid_length, "value-changed", "support-model-changed")) + self.core.add_item("support_grid_length", grid_length.get_value, grid_length.set_value) + average_distance = self.gui.get_object("GridAverageDistance") + self._gtk_handlers.append((average_distance, "value-changed", "support-model-changed")) + self.core.add_item("support_grid_average_distance", average_distance.get_value, + average_distance.set_value) + minimum_bridges = self.gui.get_object("GridMinBridgesPerPolygon") + self._gtk_handlers.append((minimum_bridges, "value-changed", "support-model-changed")) + self.core.add_item("support_grid_minimum_bridges", minimum_bridges.get_value, + minimum_bridges.set_value) + # TODO: remove these public settings + self.core.set("support_grid_average_distance", 30) + self.core.set("support_grid_minimum_bridges", 2) + self.core.set("support_grid_length", 5) + self.core.register_chain("get_support_models", self._get_support_models) + # register handlers + self._event_handlers = (("support-model-changed", self.update_support_controls),) + self.register_gtk_handlers(self._gtk_handlers) + self.register_event_handlers(self._event_handlers) + return True + + def teardown(self): + if self.gui: + self.unregister_event_handlers(self._event_handlers) + self.unregister_gtk_handlers(self._gtk_handlers) + self.core.unregister_chain("get_support_models", self._get_support_models) + self.core.unregister_ui("support_model_type_selector", "distributed_edges") + self.core.unregister_ui("support_model_type_selector", "distributed_corners") + self.core.unregister_ui("support_model_settings", + self.gui.get_object("DistributedSupportExpander")) + + def update_support_controls(self): + grid_type = self.core.get("support_model_type") + if grid_type in ("distributed_edges", "distributed_corners"): + self.gui.get_object("DistributedSupportExpander").show() + else: + self.gui.get_object("DistributedSupportExpander").hide() + + def _get_support_models(self, models, support_models): + grid_type = self.core.get("support_model_type") + if grid_type in ("distributed_edges", "distributed_corners"): + s = self.core + for model in models: + if (model.get_model() + and (s.get("support_grid_thickness") > 0) + and (s.get("support_grid_height") > 0) + and (s.get("support_grid_average_distance") > 0) + and (s.get("support_grid_minimum_bridges") > 0)): + if grid_type == "distributed_corners": + distribution = DistributionStrategy.CORNERS + else: + distribution = DistributionStrategy.EVENLY + model_definition = { + "source": { + "type": SourceType.SUPPORT_BRIDGES, + "layout": SupportBridgesLayout.DISTRIBUTED, + "models": tuple(model.get_id() for model in models), + "average_distance": s.get("support_grid_average_distance"), + "shape": {"height": s.get("support_grid_height"), + "width": s.get("support_grid_thickness"), + "length": s.get("support_grid_length")}, + "minimum_count": s.get("support_grid_minimum_bridges"), + "distribution": distribution, + } + } + support_models.append(pycam.workspace.data_models.Model( + "support", model_definition, add_to_collection=False)) + # all models are processed -> wipe the input list + models.clear() diff --git a/pycam/pycam/Plugins/ModelSupportGrid.py b/pycam/pycam/Plugins/ModelSupportGrid.py new file mode 100644 index 00000000..c4bbb28a --- /dev/null +++ b/pycam/pycam/Plugins/ModelSupportGrid.py @@ -0,0 +1,294 @@ +""" +Copyright 2011 Lars Kruse + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + +from pycam.Geometry import Box3D, Point3D +import pycam.Geometry.Model +import pycam.Plugins +import pycam.Toolpath.SupportGrid +from pycam.workspace import SupportBridgesLayout, SourceType +import pycam.workspace.data_models + + +class ModelSupportGrid(pycam.Plugins.PluginBase): + + UI_FILE = "model_support_grid.ui" + DEPENDS = ["Models", "ModelSupport"] + CATEGORIES = ["Model", "Support bridges"] + + def setup(self): + if self.gui: + grid_box = self.gui.get_object("SupportModelGridBox") + grid_box.unparent() + self.core.register_ui("support_model_type_selector", "Grid", "grid", weight=-10) + self.core.register_ui("support_model_settings", "Grid settings", grid_box) + support_model_changed = lambda widget=None: \ + self.core.emit_event("support-model-changed") + self._gtk_handlers = [] + # support grid + # TODO: remove these adjustments + self.grid_adjustments_x = [] + self.grid_adjustments_y = [] + self.grid_adjustment_axis_x_last = True + self._block_manual_adjust_update = False + grid_distance_x = self.gui.get_object("SupportGridDistanceX") + self._gtk_handlers.append((grid_distance_x, "value-changed", support_model_changed)) + self.core.add_item("support_grid_distance_x", grid_distance_x.get_value, + grid_distance_x.set_value) + grid_distance_square = self.gui.get_object("SupportGridDistanceSquare") + self._gtk_handlers.append((grid_distance_square, "clicked", + self.update_support_controls)) + grid_distance_y = self.gui.get_object("SupportGridDistanceY") + self._gtk_handlers.append((grid_distance_y, "value-changed", support_model_changed)) + + def get_support_grid_distance_y(): + if grid_distance_square.get_active(): + return self.core.get("support_grid_distance_x") + else: + return grid_distance_y.get_value() + + self.core.add_item("support_grid_distance_y", get_support_grid_distance_y, + grid_distance_y.set_value) + grid_offset_x = self.gui.get_object("SupportGridOffsetX") + self._gtk_handlers.append((grid_offset_x, "value-changed", support_model_changed)) + self.core.add_item("support_grid_offset_x", grid_offset_x.get_value, + grid_offset_x.set_value) + grid_offset_y = self.gui.get_object("SupportGridOffsetY") + self._gtk_handlers.append((grid_offset_y, "value-changed", support_model_changed)) + self.core.add_item("support_grid_offset_y", grid_offset_y.get_value, + grid_offset_y.set_value) + # manual grid adjustments + self.grid_adjustment_axis_x = self.gui.get_object("SupportGridPositionManualAxisX") + self._gtk_handlers.extend(( + (self.grid_adjustment_axis_x, "toggled", self.switch_support_grid_manual_selector), + (self.gui.get_object("SupportGridPositionManualResetOne"), "clicked", + lambda *args: self.reset_support_grid_manual(reset_all=False)), + (self.gui.get_object("SupportGridPositionManualResetAll"), "clicked", + lambda *args: self.reset_support_grid_manual(True)))) + self.grid_adjustment_model = self.gui.get_object("SupportGridPositionManualList") + self.grid_adjustment_selector = self.gui.get_object( + "SupportGridPositionManualSelector") + self._gtk_handlers.append((self.grid_adjustment_selector, "changed", + self.switch_support_grid_manual_selector)) + self.grid_adjustment_value = self.gui.get_object("SupportGridPositionManualAdjustment") + self.grid_adjustment_value_control = self.gui.get_object( + "SupportGridPositionManualShiftControl") + # FIXME + # self.grid_adjustment_value_control.set_update_policy(self._gtk.UPDATE_DISCONTINUOUS) + self._gtk_handlers.extend(( + (self.grid_adjustment_value_control, "move-slider", + self.update_support_grid_manual_adjust), + (self.grid_adjustment_value_control, "value-changed", + self.update_support_grid_manual_adjust), + (self.gui.get_object("SupportGridPositionManualShiftControl2"), + "value-changed", self.update_support_grid_manual_adjust))) + + def get_set_grid_adjustment_value(value=None): + if self.grid_adjustment_axis_x.get_active(): + adjustments = self.grid_adjustments_x + else: + adjustments = self.grid_adjustments_y + index = self.grid_adjustment_selector.get_active() + if value is None: + if 0 <= index < len(adjustments): + return adjustments[index] + else: + return 0 + else: + while len(adjustments) <= index: + adjustments.append(0) + adjustments[index] = value + + # TODO: remove these public settings + self.core.add_item("support_grid_adjustment_value", get_set_grid_adjustment_value, + get_set_grid_adjustment_value) + grid_distance_square.set_active(True) + self.core.set("support_grid_distance_x", 10.0) + # handlers + self._event_handlers = (("support-model-changed", self.update_support_controls), ) + self.register_gtk_handlers(self._gtk_handlers) + self.register_event_handlers(self._event_handlers) + self.core.register_chain("get_support_models", self._get_support_models) + return True + + def teardown(self): + if self.gui and self._gtk: + self.unregister_event_handlers(self._event_handlers) + self.unregister_gtk_handlers(self._gtk_handlers) + self.core.unregister_chain("get_support_models", self._get_support_models) + self.core.unregister_ui("support_model_type_selector", "grid") + self.core.unregister_ui("support_model_settings", + self.gui.get_object("SupportModelGridBox")) + + def _get_support_models(self, models, support_models): + grid_type = self.core.get("support_model_type") + if (grid_type == "grid") and models: + # we create exactly one support model for all input models + s = self.core + box = self._get_bounds(models) + if (box is not None + and (s.get("support_grid_thickness") > 0) + and ((s.get("support_grid_distance_x") > 0) + or (s.get("support_grid_distance_y") > 0)) + and ((s.get("support_grid_distance_x") == 0) + or (s.get("support_grid_distance_x") > s.get("support_grid_thickness"))) + and ((s.get("support_grid_distance_y") == 0) + or (s.get("support_grid_distance_y") > s.get("support_grid_thickness"))) + and (s.get("support_grid_height") > 0)): + # TODO: allow explicit configuration of bridge length + bridge_length = max(s.get("support_grid_thickness"), s.get("support_grid_height")) + model_definition = { + "source": { + "type": SourceType.SUPPORT_BRIDGES, + "layout": SupportBridgesLayout.GRID, + "models": tuple(model.get_id() for model in models), + "grid": {"distances": {"x": s.get("support_grid_distance_x"), + "y": s.get("support_grid_distance_y")}, + "offsets": {"x": [s.get("support_grid_offset_x")], + "y": [s.get("support_grid_offset_y")]}}, + "shape": {"height": s.get("support_grid_height"), + "width": s.get("support_grid_thickness"), + "length": bridge_length}, + } + } + support_models.append(pycam.workspace.data_models.Model( + "support", model_definition, add_to_collection=False)) + # all models are processed -> wipe the input list + models.clear() + + def update_support_controls(self, widget=None): + grid_type = self.core.get("support_model_type") + if grid_type == "grid": + grid_square = self.gui.get_object("SupportGridDistanceSquare") + distance_y = self.gui.get_object("SupportGridDistanceYControl") + distance_y.set_sensitive(not grid_square.get_active()) + if grid_square.get_active(): + # We let "distance_y" track the value of "distance_x". + self.core.set("support_grid_distance_y", self.core.get("support_grid_distance_x")) + self.update_support_grid_manual_model() + self.switch_support_grid_manual_selector() + self.gui.get_object("SupportModelGridBox").show() + else: + self.gui.get_object("SupportModelGridBox").hide() + + def switch_support_grid_manual_selector(self, widget=None): + """ Event handler for a switch between the x and y axis selector for + manual adjustment. Final goal: update the adjustment combobox with the + current values for that axis. + """ + old_axis_was_x = self.grid_adjustment_axis_x_last + self.grid_adjustment_axis_x_last = self.grid_adjustment_axis_x.get_active() + if self.grid_adjustment_axis_x.get_active(): + # x axis is selected + if not old_axis_was_x: + self.update_support_grid_manual_model() + max_distance = self.core.get("support_grid_distance_x") + else: + # y axis + if old_axis_was_x: + self.update_support_grid_manual_model() + max_distance = self.core.get("support_grid_distance_y") + # we allow an individual adjustment of 66% of the distance + max_distance /= 1.5 + if hasattr(self.grid_adjustment_value, "set_lower"): + # gtk 2.14 is required for "set_lower" and "set_upper" + self.grid_adjustment_value.set_lower(-max_distance) + self.grid_adjustment_value.set_upper(max_distance) + if self.grid_adjustment_value.get_value() \ + != self.core.get("support_grid_adjustment_value"): + self.grid_adjustment_value.set_value(self.core.get("support_grid_adjustment_value")) + self.gui.get_object("SupportGridPositionManualShiftBox").set_sensitive( + self.grid_adjustment_selector.get_active() >= 0) + + def update_support_grid_manual_adjust(self, widget=None, data1=None, data2=None): + """ Update the current entry in the manual adjustment combobox after + a manual change. Additionally the slider and the numeric control are + synched. + """ + if self._block_manual_adjust_update: + return + self._block_manual_adjust_update = True + new_value = self.grid_adjustment_value.get_value() + self.core.set("support_grid_adjustment_value", new_value) + tree_iter = self.grid_adjustment_selector.get_active_iter() + if tree_iter is not None: + value_string = "(%+.1f)" % new_value + self.grid_adjustment_model.set(tree_iter, 1, value_string) + self.core.emit_event("support-model-changed") + self._block_manual_adjust_update = False + + def reset_support_grid_manual(self, widget=None, reset_all=False): + if reset_all: + self.grid_adjustments_x = [] + self.grid_adjustments_y = [] + else: + self.core.set("support_grid_adjustment_value", 0) + self.update_support_grid_manual_model() + self.switch_support_grid_manual_selector() + self.core.emit_event("support-model-changed") + + def update_support_grid_manual_model(self): + old_index = self.grid_adjustment_selector.get_active() + model = self.grid_adjustment_model + model.clear() + s = self.core + # get the toolpath without adjustments + box = self._get_bounds() + base_x, base_y = pycam.Toolpath.SupportGrid.get_support_grid_locations( + box.lower.x, box.upper.x, box.lower.y, box.upper.y, + s.get("support_grid_distance_x"), + s.get("support_grid_distance_y"), + offset_x=s.get("support_grid_offset_x"), + offset_y=s.get("support_grid_offset_y")) + # fill the adjustment lists + while len(self.grid_adjustments_x) < len(base_x): + self.grid_adjustments_x.append(0) + while len(self.grid_adjustments_y) < len(base_y): + self.grid_adjustments_y.append(0) + # select the currently active list + if self.grid_adjustment_axis_x.get_active(): + base = base_x + adjustments = self.grid_adjustments_x + else: + base = base_y + adjustments = self.grid_adjustments_y + # generate the model content + for index, base_value in enumerate(base): + position = "%.2f%s" % (base_value, s.get("unit")) + if (0 <= index < len(adjustments)) and (adjustments[index] != 0): + diff = "(%+.1f)" % adjustments[index] + else: + diff = "" + model.append((position, diff)) + if old_index < len(base): + self.grid_adjustment_selector.set_active(old_index) + else: + self.grid_adjustment_selector.set_active(-1) + + def _get_bounds(self, models=None): + if not models: + models = self.core.get("models").get_selected() + models = [m.get_model() for m in models] + box = pycam.Geometry.Model.get_combined_bounds(models) + if box is None: + return None + else: + # TODO: the x/y offset should be configurable via a control + margin = 5 + return Box3D(Point3D(box.lower.x - margin, box.lower.y - margin, box.lower.z), + Point3D(box.upper.x + margin, box.upper.y + margin, box.upper.z)) diff --git a/pycam/pycam/Plugins/ModelSwapAxes.py b/pycam/pycam/Plugins/ModelSwapAxes.py new file mode 100644 index 00000000..6646f5cb --- /dev/null +++ b/pycam/pycam/Plugins/ModelSwapAxes.py @@ -0,0 +1,69 @@ +""" +Copyright 2011 Lars Kruse + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + + +import pycam.Plugins + + +class ModelSwapAxes(pycam.Plugins.PluginBase): + + UI_FILE = "model_swap_axes.ui" + DEPENDS = ["Models"] + CATEGORIES = ["Model"] + + def setup(self): + if self.gui: + swap_box = self.gui.get_object("ModelSwapBox") + swap_box.unparent() + self.core.register_ui("model_handling", "Swap axes", swap_box, 0) + self._gtk_handlers = ((self.gui.get_object("SwapAxesButton"), "clicked", + self._swap_axes), ) + self._event_handlers = (("model-selection-changed", self._update_controls), ) + self.register_gtk_handlers(self._gtk_handlers) + self.register_event_handlers(self._event_handlers) + self._update_controls() + return True + + def teardown(self): + if self.gui: + self.unregister_event_handlers(self._event_handlers) + self.unregister_gtk_handlers(self._gtk_handlers) + self.core.unregister_ui("model_handling", self.gui.get_object("ModelSwapBox")) + + def _update_controls(self): + box = self.gui.get_object("ModelSwapBox") + if self.core.get("models").get_selected(): + box.show() + else: + box.hide() + + def _swap_axes(self, widget=None): + models = self.core.get("models").get_selected() + if not models: + return + for axes, matrix in (("XY", [[0, 1, 0], [1, 0, 0], [0, 0, 1]]), + ("XZ", [[0, 0, 1], [0, 1, 0], [1, 0, 0]]), + ("YZ", [[1, 0, 0], [0, 0, 1], [0, 1, 0]])): + if self.gui.get_object("SwapAxes%s" % axes).get_active(): + break + else: + assert False, "No axis selected" + for model in models: + model.extend_value("transformations", + [{"action": "multiply_matrix", "matrix": matrix}]) diff --git a/pycam/pycam/Plugins/Models.py b/pycam/pycam/Plugins/Models.py new file mode 100644 index 00000000..33f4236e --- /dev/null +++ b/pycam/pycam/Plugins/Models.py @@ -0,0 +1,160 @@ +""" +Copyright 2011 Lars Kruse + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + +import copy +import random + +from pycam.Flow.history import merge_history_and_block_events, rollback_history_on_failure +import pycam.Plugins +import pycam.workspace.data_models + + +class Models(pycam.Plugins.ListPluginBase): + + UI_FILE = "models.ui" + CATEGORIES = ["Model"] + ICONS = {"visible": "visible.svg", "hidden": "visible_off.svg"} + FALLBACK_COLOR = {"red": 0.5, "green": 0.5, "blue": 1.0, "alpha": 1.0} + COLLECTION_ITEM_TYPE = pycam.workspace.data_models.Model + + def setup(self): + if self.gui: + self.model_frame = self.gui.get_object("ModelBox") + self.model_frame.unparent() + self.core.register_ui("main", "Models", self.model_frame, weight=-50) + model_handling_obj = self.gui.get_object("ModelHandlingNotebook") + + def clear_model_handling_obj(): + for index in range(model_handling_obj.get_n_pages()): + model_handling_obj.remove_page(0) + + def add_model_handling_item(item, name): + model_handling_obj.append_page(item, self._gtk.Label(name)) + + self.core.register_ui_section("model_handling", add_model_handling_item, + clear_model_handling_obj) + self._modelview = self.gui.get_object("ModelView") + self.set_gtk_modelview(self._modelview) + self.register_model_update(lambda: self.core.emit_event("model-list-changed")) + for action, obj_name in ((self.ACTION_UP, "ModelMoveUp"), + (self.ACTION_DOWN, "ModelMoveDown"), + (self.ACTION_DELETE, "ModelDelete"), + (self.ACTION_CLEAR, "ModelDeleteAll")): + self.register_list_action_button(action, self.gui.get_object(obj_name)) + self._gtk_handlers = [] + self._gtk_handlers.extend(( + (self.gui.get_object("ModelColorButton"), "color-set", + self._store_colors_of_selected_models), + (self._modelview, "row-activated", self.toggle_item_visibility), + (self.gui.get_object("NameCell"), "edited", self.edit_item_name))) + self._treemodel = self.gui.get_object("ModelList") + self._treemodel.clear() + selection = self._modelview.get_selection() + selection.set_mode(self._gtk.SelectionMode.MULTIPLE) + self._gtk_handlers.append((selection, "changed", "model-selection-changed")) + # define cell renderers + self.gui.get_object("NameColumn").set_cell_data_func( + self.gui.get_object("NameCell"), self.render_item_name) + self.gui.get_object("VisibleColumn").set_cell_data_func( + self.gui.get_object("VisibleSymbol"), self.render_item_visible_state) + self._event_handlers = ( + ("model-selection-changed", self._apply_colors_of_selected_models), + ("model-list-changed", self.force_gtk_modelview_refresh)) + self.register_gtk_handlers(self._gtk_handlers) + self.register_event_handlers(self._event_handlers) + self._apply_colors_of_selected_models() + # update the model list + self.core.emit_event("model-list-changed") + self.core.set("models", self) + return True + + def teardown(self): + if self.gui and self._gtk: + self.unregister_event_handlers(self._event_handlers) + self.unregister_gtk_handlers(self._gtk_handlers) + self.core.unregister_ui_section("model_handling") + self.core.unregister_ui("main", self.gui.get_object("ModelBox")) + self.core.unregister_ui("main", self.model_frame) + self.clear_state_items() + self.core.set("models", None) + self.clear() + return True + + def _get_model_gdk_color(self, color_dict): + return self._gdk.RGBA(red=color_dict["red"], + green=color_dict["green"], + blue=color_dict["blue"], + alpha=color_dict["alpha"]) + + def _apply_model_color_to_button(self, model, color_button): + color = model.get_application_value("color") + if color is not None: + color_button.set_rgba(self._get_model_gdk_color(color)) + + def _apply_colors_of_selected_models(self, widget=None): + color_button = self.gui.get_object("ModelColorButton") + models = self.get_selected() + color_button.set_sensitive(len(models) > 0) + if models: + # use the color of the first model, if it exists + self._apply_model_color_to_button(models[0], color_button) + + def _store_colors_of_selected_models(self, widget=None): + color = self.gui.get_object("ModelColorButton").get_rgba() + for model in self.get_selected(): + model.set_application_value("color", { + "red": color.red, "green": color.green, "blue": color.blue, "alpha": color.alpha}) + self.core.emit_event("visual-item-updated") + + def render_visible_state(self, column, cell, model, m_iter, data): + item, cell = super().render_visible_state(column, cell, model, m_iter, data) + color = self._get_or_create_model_application_color(item) + if color is not None: + cell.set_property("cell-background-gdk", self._get_model_gdk_color(color)) + + def _get_or_create_model_application_color(self, model): + color = model.get_application_value("color") + if color is None: + # TODO: use a proper palette instead of random values + color = {"red": random.random(), + "green": random.random(), + "blue": random.random(), + "alpha": 0.8} + model.set_application_value("color", color) + return color + + def add_model(self, model_params, name=None, color=None, name_template="Model #%d"): + """ + + @param model_params: a dictionary describing the model, e.g.: + {"source": {"type": "object", "data": FOO}} + """ + self.log.info("Adding new model: %s", name) + if not color: + color = self.core.get("color_model") + if not color: + color = self.FALLBACK_COLOR.copy() + if name is None: + name = self.get_non_conflicting_name(name_template) + with rollback_history_on_failure(self.core): + with merge_history_and_block_events(self.core): + new_model = pycam.workspace.data_models.Model(None, copy.deepcopy(model_params)) + new_model.set_application_value("name", name) + new_model.set_application_value("color", color) + new_model.set_application_value("visible", True) diff --git a/pycam/pycam/Plugins/OpenGLViewAxes.py b/pycam/pycam/Plugins/OpenGLViewAxes.py new file mode 100644 index 00000000..507ec32f --- /dev/null +++ b/pycam/pycam/Plugins/OpenGLViewAxes.py @@ -0,0 +1,77 @@ +""" +Copyright 2011 Lars Kruse + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + +import pycam.Plugins +from pycam.Gui.OpenGLTools import draw_direction_cone + + +class OpenGLViewAxes(pycam.Plugins.PluginBase): + + DEPENDS = ["OpenGLWindow"] + CATEGORIES = ["Visualization", "OpenGL"] + + def setup(self): + self.core.register_event("visualize-items", self.draw_axes) + self.core.get("register_display_item")("show_axes", "Show Coordinate System", 50) + self.core.emit_event("visual-item-updated") + return True + + def teardown(self): + self.core.unregister_event("visualize-items", self.draw_axes) + self.core.get("unregister_display_item")("show_axes") + self.core.emit_event("visual-item-updated") + + def draw_axes(self): + if not self.core.get("show_axes"): + return + GL = self._GL + GL.glMatrixMode(GL.GL_MODELVIEW) + GL.glLoadIdentity() + low, high = [None, None, None], [None, None, None] + self.core.call_chain("get_draw_dimension", low, high) + if None in low or None in high: + low, high = (0, 0, 0), (10, 10, 10) + length = 1.2 * max(max(high), abs(min(low))) + origin = (0, 0, 0) + cone_length = 0.05 + old_line_width = GL.glGetFloatv(GL.GL_LINE_WIDTH) + if self.core.get("view_light"): + GL.glDisable(GL.GL_LIGHTING) + GL.glLineWidth(1.5) + # draw a colored line ending in a cone for each axis + for index in range(3): + end = [0, 0, 0] + end[index] = length + color = [0.0, 0.0, 0.0] + # reduced brightness (not 1.0) + color[index] = 0.8 + GL.glColor3f(*color) + # we need to wait until the color change is active + GL.glFinish() + GL.glBegin(GL.GL_LINES) + GL.glVertex3f(*origin) + GL.glVertex3f(*end) + GL.glEnd() + # Position the cone slightly behind the end of the line - otherwise + # the end of the line (width=2) is visible at the top of the cone. + draw_direction_cone(origin, end, position=1.0 + cone_length, precision=32, + size=cone_length) + GL.glLineWidth(old_line_width) + if self.core.get("view_light"): + GL.glEnable(GL.GL_LIGHTING) diff --git a/pycam/pycam/Plugins/OpenGLViewBounds.py b/pycam/pycam/Plugins/OpenGLViewBounds.py new file mode 100644 index 00000000..21c138b2 --- /dev/null +++ b/pycam/pycam/Plugins/OpenGLViewBounds.py @@ -0,0 +1,94 @@ +""" +Copyright 2011 Lars Kruse + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + +import pycam.Plugins + + +class OpenGLViewBounds(pycam.Plugins.PluginBase): + + DEPENDS = ["OpenGLWindow", "Bounds"] + CATEGORIES = ["Bounds", "Visualization", "OpenGL"] + + def setup(self): + self._event_handlers = [] + self.core.get("register_color")("color_bounding_box", "Bounding box", 40) + self.core.get("register_display_item")("show_bounding_box", "Show Bounding Box", 40) + self.core.register_chain("get_draw_dimension", self.get_draw_dimension) + self._event_handlers.extend((("visualize-items", self.draw_bounds), + ("bounds-list-changed", "visual-item-updated"), + ("bounds-changed", "visual-item-updated"))) + self.register_event_handlers(self._event_handlers) + self.core.emit_event("visual-item-updated") + return True + + def teardown(self): + self.unregister_event_handlers(self._event_handlers) + self.core.unregister_chain("get_draw_dimension", self.get_draw_dimension) + self.core.get("unregister_color")("color_bounding_box") + self.core.get("unregister_display_item")("show_bounding_box") + self.core.emit_event("visual-item-updated") + + def get_draw_dimension(self, low, high): + if not self.core.get("show_bounding_box"): + return + model_box = self._get_bounds() + if model_box is None: + return + for index in range(3): + if (low[index] is None) or (model_box.lower[index] < low[index]): + low[index] = model_box.lower[index] + if (high[index] is None) or (model_box.upper[index] > high[index]): + high[index] = model_box.upper[index] + + def _get_bounds(self): + bounds = self.core.get("bounds").get_selected() + return bounds.get_absolute_limits() if bounds else None + + def draw_bounds(self): + GL = self._GL + if not self.core.get("show_bounding_box"): + return + box = self._get_bounds() + if box is None: + return + minx, miny, minz = box.lower + maxx, maxy, maxz = box.upper + p1 = [minx, miny, minz] + p2 = [minx, maxy, minz] + p3 = [maxx, maxy, minz] + p4 = [maxx, miny, minz] + p5 = [minx, miny, maxz] + p6 = [minx, maxy, maxz] + p7 = [maxx, maxy, maxz] + p8 = [maxx, miny, maxz] + if self.core.get("view_light"): + GL.glDisable(GL.GL_LIGHTING) + # lower rectangle + color = self.core.get("color_bounding_box") + GL.glColor4f(color["red"], color["green"], color["blue"], color["alpha"]) + GL.glFinish() + GL.glBegin(GL.GL_LINES) + # all combinations of neighbouring corners + for corner_pair in [(p1, p2), (p1, p5), (p1, p4), (p2, p3), (p2, p6), (p3, p4), (p3, p7), + (p4, p8), (p5, p6), (p6, p7), (p7, p8), (p8, p5)]: + GL.glVertex3f(*(corner_pair[0])) + GL.glVertex3f(*(corner_pair[1])) + GL.glEnd() + if self.core.get("view_light"): + GL.glEnable(GL.GL_LIGHTING) diff --git a/pycam/pycam/Plugins/OpenGLViewDimension.py b/pycam/pycam/Plugins/OpenGLViewDimension.py new file mode 100644 index 00000000..db66a68e --- /dev/null +++ b/pycam/pycam/Plugins/OpenGLViewDimension.py @@ -0,0 +1,76 @@ +""" +Copyright 2011 Lars Kruse + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + + +from pycam.Geometry import Box3D, Point3D +import pycam.Plugins + + +class OpenGLViewDimension(pycam.Plugins.PluginBase): + + UI_FILE = "opengl_view_dimension.ui" + DEPENDS = ["Bounds", "Models", "OpenGLWindow"] + CATEGORIES = ["Model", "Visualization", "OpenGL"] + + def setup(self): + if self.gui: + self.core.register_ui("opengl_window", "Dimension", + self.gui.get_object("DimensionTable"), weight=20) + self.core.get("register_display_item")("show_dimensions", "Show Dimensions", 60) + self._event_handlers = ( + ("model-change-after", self.update_model_dimensions), + ("visual-item-updated", self.update_model_dimensions), + ("model-list-chaned", self.update_model_dimensions)) + self.register_event_handlers(self._event_handlers) + return True + + def teardown(self): + if self.gui: + self.unregister_event_handlers(self._event_handlers) + self.core.unregister_ui("opengl_window", self.gui.get_object("DimensionTable")) + self.core.get("unregister_display_item")("show_dimensions") + + def update_model_dimensions(self, widget=None): + dimension_bar = self.gui.get_object("DimensionTable") + models = [m.get_model() for m in self.core.get("models").get_visible()] + model_box = pycam.Geometry.Model.get_combined_bounds(models) + if model_box is None: + model_box = Box3D(Point3D(0, 0, 0), Point3D(0, 0, 0)) + bounds = self.core.get("bounds").get_selected() + if self.core.get("show_dimensions"): + for value, label_suffix in ((model_box.lower.x, "XMin"), (model_box.upper.x, "XMax"), + (model_box.lower.y, "YMin"), (model_box.upper.y, "YMax"), + (model_box.lower.z, "ZMin"), (model_box.upper.z, "ZMax")): + label_name = "ModelCorner%s" % label_suffix + value = "%.3f" % value + if label_suffix.lower().endswith("max"): + value += self.core.get("unit_string") + self.gui.get_object(label_name).set_label(value) + if bounds: + bounds_box = bounds.get_absolute_limits() + if bounds_box is None: + bounds_size = ("", "", "") + else: + bounds_size = ["%.3f %s" % (high - low, self.core.get("unit_string")) + for low, high in zip(bounds_box.lower, bounds_box.upper)] + for axis, size_string in zip("xyz", bounds_size): + self.gui.get_object("model_dim_" + axis).set_text(size_string) + dimension_bar.show() + else: + dimension_bar.hide() diff --git a/pycam/pycam/Plugins/OpenGLViewGrid.py b/pycam/pycam/Plugins/OpenGLViewGrid.py new file mode 100644 index 00000000..afab56f5 --- /dev/null +++ b/pycam/pycam/Plugins/OpenGLViewGrid.py @@ -0,0 +1,113 @@ +""" +Copyright 2011 Lars Kruse + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + +import math + +import pycam.Plugins + + +class OpenGLViewGrid(pycam.Plugins.PluginBase): + + UI_FILE = "opengl_view_grid.ui" + DEPENDS = ["OpenGLWindow"] + CATEGORIES = ["Visualization", "OpenGL"] + MINOR_LINES = 5 + MAJOR_LINES = 1 + + def setup(self): + if self.gui: + self.box = self.gui.get_object("GridSizeBox") + self.core.register_ui("opengl_window", "Grid", self.box, weight=30) + self.core.register_event("visual-item-updated", self._update_widget_state) + self.core.register_event("visualize-items", self.draw_grid) + self.core.get("register_display_item")("show_grid", "Show Base Grid", 80) + self.core.get("register_color")("color_grid", "Base Grid", 80) + self.core.emit_event("visual-item-updated") + return True + + def teardown(self): + if self.gui: + self.core.unregister_event("visual-item-updated", self._update_widget_state) + self.core.unregister_ui("opengl_window", self.box) + self.core.unregister_event("visualize-items", self.draw_grid) + self.core.get("unregister_color")("color_grid") + self.core.get("unregister_display_item")("show_grid") + self.core.emit_event("visual-item-updated") + + def _update_widget_state(self): + if self.core.get("show_grid"): + self.box.show() + else: + self.box.hide() + + def draw_grid(self): + if not self.core.get("show_grid"): + return + GL = self._GL + low, high = [None, None, None], [None, None, None] + self.core.call_chain("get_draw_dimension", low, high) + if None in low or None in high: + low, high = (0, 0, 0), (10, 10, 10) + max_value = max(abs(low[0]), abs(low[1]), high[0], high[1]) + base_size = 10 ** int(math.log(max_value, 10)) + grid_size = math.ceil(float(max_value) / base_size) * base_size + minor_distance = float(base_size) / self.MINOR_LINES + if grid_size / base_size > 5: + minor_distance *= 5 + elif grid_size / base_size > 2.5: + minor_distance *= 2.5 + major_skip = self.MINOR_LINES / self.MAJOR_LINES + if self.gui: + unit = self.core.get("unit_string") + self.gui.get_object("MajorGridSizeLabel").set_text( + "%g%s" % (minor_distance * major_skip, unit)) + self.gui.get_object("MinorGridSizeLabel").set_text("%g%s" % (minor_distance, unit)) + line_counter = int(math.ceil(grid_size / minor_distance)) + color = self.core.get("color_grid") + GL.glColor4f(color["red"], color["green"], color["blue"], color["alpha"]) + GL.glFinish() + is_light = GL.glIsEnabled(GL.GL_LIGHTING) + GL.glDisable(GL.GL_LIGHTING) + GL.glBegin(GL.GL_LINES) + grid_low = [-grid_size, -grid_size] + grid_high = [grid_size, grid_size] + for index in range(2): + if high[index] <= 0: + grid_high[index] = 0 + if low[index] >= 0: + grid_low[index] = 0 + for index in range(-line_counter, line_counter + 1): + position = index * minor_distance + if index % major_skip == 0: + GL.glEnd() + GL.glLineWidth(3) + GL.glBegin(GL.GL_LINES) + if (index == 0) or ((index > 0) and (high[1] > 0)) or ((index < 0) and (low[1] < 0)): + GL.glVertex3f(grid_low[0], position, 0) + GL.glVertex3f(grid_high[0], position, 0) + if (index == 0) or ((index > 0) and (high[0] > 0)) or ((index < 0) and (low[0] < 0)): + GL.glVertex3f(position, grid_low[1], 0) + GL.glVertex3f(position, grid_high[1], 0) + if index % major_skip == 0: + GL.glEnd() + GL.glLineWidth(1) + GL.glBegin(GL.GL_LINES) + GL.glEnd() + if is_light: + GL.glEnable(GL.GL_LIGHTING) diff --git a/pycam/pycam/Plugins/OpenGLViewModel.py b/pycam/pycam/Plugins/OpenGLViewModel.py new file mode 100644 index 00000000..f799f6f5 --- /dev/null +++ b/pycam/pycam/Plugins/OpenGLViewModel.py @@ -0,0 +1,192 @@ +""" +Copyright 2011 Lars Kruse + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + +from pycam.errors import InvalidDataError +from pycam.Geometry.PointUtils import padd, pdot, pmul, pnormalized +import pycam.Plugins + + +class OpenGLViewModel(pycam.Plugins.PluginBase): + + DEPENDS = ["OpenGLWindow", "Models"] + CATEGORIES = ["Model", "Visualization", "OpenGL"] + + def setup(self): + self._event_handlers = (("visualize-items", self.draw_model), + ("model-changed", "visual-item-updated"), + ("model-list-changed", "visual-item-updated")) + self.core.get("register_display_item")("show_model", "Show Model", 10) + self.core.get("register_color")("color_model", "Model", 10) + self.core.register_chain("get_draw_dimension", self.get_draw_dimension) + self.register_event_handlers(self._event_handlers) + self.core.emit_event("visual-item-updated") + self._cache = {} + return True + + def teardown(self): + self.unregister_event_handlers(self._event_handlers) + self.core.unregister_chain("get_draw_dimension", self.get_draw_dimension) + self.core.get("unregister_display_item")("show_model") + self.core.get("unregister_color")("color_model") + self.core.emit_event("visual-item-updated") + + def _get_cache_key(self, model, *args, **kwargs): + if hasattr(model, "uuid"): + return "%s - %s - %s" % (model.uuid, repr(args), repr(kwargs)) + else: + return None + + def _is_visible(self): + return (self.core.get("show_model") + and not (self.core.get("show_simulation") + and self.core.get("simulation_toolpath_moves"))) + + def get_draw_dimension(self, low, high): + if self._is_visible(): + for model_dict in self.core.get("models").get_visible(): + try: + model_box = model_dict.get_model().get_bounds().get_bounds() + except InvalidDataError as exc: + self.log.warning("Failed to visualize model: %s", exc) + continue + for index, (mlow, mhigh) in enumerate(zip(model_box.lower, model_box.upper)): + if (low[index] is None) or ((mlow is not None) and (mlow < low[index])): + low[index] = mlow + if (high[index] is None) or ((mhigh is not None) and (mhigh > high[index])): + high[index] = mhigh + + def draw_model(self): + GL = self._GL + if self._is_visible(): + fallback_color = self.core.get("models").FALLBACK_COLOR + for model_dict in self.core.get("models").get_visible(): + try: + model = model_dict.get_model() + except InvalidDataError as exc: + self.log.warning("Failed to visualize model: %s", exc) + continue + col = model_dict.get_application_value("color", default=fallback_color) + color = (col["red"], col["green"], col["blue"], col["alpha"]) + GL.glColor4f(*color) + # reset the material color + GL.glMaterial(GL.GL_FRONT_AND_BACK, GL.GL_AMBIENT_AND_DIFFUSE, color) + # we need to wait until the color change is active + GL.glFinish() + if self.core.get("opengl_cache_enable"): + key = self._get_cache_key(model, color=color, + show_directions=self.core.get("show_directions")) + do_caching = key is not None + else: + do_caching = False + if do_caching and key not in self._cache: + # Rendering a display list takes less than 5% of the time + # for a complete rebuild. + list_index = GL.glGenLists(1) + if list_index > 0: + # Somehow "GL_COMPILE_AND_EXECUTE" fails - we render + # it later. + GL.glNewList(list_index, GL.GL_COMPILE) + else: + do_caching = False + # next: compile an OpenGL display list + if not do_caching or (key not in self._cache): + self.core.call_chain("draw_models", [model]) + if do_caching: + if key not in self._cache: + GL.glEndList() + GL.glCallList(list_index) + self._cache[key] = list_index + else: + # render a previously compiled display list + GL.glCallList(self._cache[key]) + + +class OpenGLViewModelTriangle(pycam.Plugins.PluginBase): + + DEPENDS = ["OpenGLViewModel"] + CATEGORIES = ["Model", "Visualization", "OpenGL"] + + def setup(self): + self.core.register_chain("draw_models", self.draw_triangle_model, 10) + return True + + def teardown(self): + self.core.unregister_chain("draw_models", self.draw_triangle_model) + + def draw_triangle_model(self, models): + def calc_normal(main, normals): + suitable = (0, 0, 0, 'v') + for normal, weight in normals: + dot = pdot(main, normal) + if dot > 0: + suitable = padd(suitable, pmul(normal, weight * dot)) + return pnormalized(suitable) + + if not models: + return + GL = self._GL + removal_list = [] + for index, model in enumerate(models): + if not hasattr(model, "triangles"): + continue + vertices = {} + for t in model.triangles(): + for p in (t.p1, t.p2, t.p3): + if p not in vertices: + vertices[p] = [] + vertices[p].append((pnormalized(t.normal), t.get_area())) + GL.glBegin(GL.GL_TRIANGLES) + for t in model.triangles(): + # The triangle's points are in clockwise order, but GL expects + # counter-clockwise sorting. + for p in (t.p1, t.p3, t.p2): + normal = calc_normal(pnormalized(t.normal), vertices[p]) + GL.glNormal3f(normal[0], normal[1], normal[2]) + GL.glVertex3f(p[0], p[1], p[2]) + GL.glEnd() + removal_list.append(index) + # remove all models that we processed + removal_list.reverse() + for index in removal_list: + models.pop(index) + + +class OpenGLViewModelGeneric(pycam.Plugins.PluginBase): + + DEPENDS = ["OpenGLViewModel"] + CATEGORIES = ["Model", "Visualization", "OpenGL"] + + def setup(self): + self.core.register_chain("draw_models", self.draw_generic_model, 100) + return True + + def teardown(self): + self.core.unregister_chain("draw_models", self.draw_generic_model) + + def draw_generic_model(self, models): + removal_list = [] + for index, model in enumerate(models): + for item in next(model): + # ignore invisible things like the normal of a ContourModel + if hasattr(item, "to_opengl"): + item.to_opengl(show_directions=self.core.get("show_directions")) + removal_list.append(index) + removal_list.reverse() + for index in removal_list: + removal_list.pop(index) diff --git a/pycam/pycam/Plugins/OpenGLViewSupportModelPreview.py b/pycam/pycam/Plugins/OpenGLViewSupportModelPreview.py new file mode 100644 index 00000000..38783d7a --- /dev/null +++ b/pycam/pycam/Plugins/OpenGLViewSupportModelPreview.py @@ -0,0 +1,73 @@ +""" +Copyright 2011 Lars Kruse + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + +import pycam.Plugins +import pycam.workspace.data_models + + +class OpenGLViewSupportModelPreview(pycam.Plugins.PluginBase): + + DEPENDS = ["OpenGLWindow", "OpenGLViewModel"] + CATEGORIES = ["Visualization", "OpenGL", "Support bridges"] + + def setup(self): + self.core.register_event("visualize-items", self.draw_support_preview) + self.core.get("register_display_item")("show_support_preview", + "Show Support Model Preview", 30) + self.core.get("register_color")("color_support_preview", "Support model", 30) + self.core.emit_event("visual-item-updated") + return True + + def teardown(self): + self.core.unregister_event("visualize-items", self.draw_support_preview) + self.core.get("unregister_display_item")("show_support_preview") + self.core.get("unregister_color")("color_support_preview") + self.core.emit_event("visual-item-updated") + + def draw_support_preview(self): + if not self.core.get("show_support_preview"): + return + models = [] + for model_object in (self.core.get("current_support_models") or []): + model = model_object.get_model() + if model: + models.append(model) + if not models: + return + GL = self._GL + # disable lighting + if self.core.get("view_light"): + GL.glDisable(GL.GL_LIGHTING) + # show a wireframe + if self.core.get("view_polygon"): + GL.glPolygonMode(GL.GL_FRONT_AND_BACK, GL.GL_LINE) + # change the color + col = self.core.get("color_support_preview") + color = (col["red"], col["green"], col["blue"], col["alpha"]) + GL.glColor4f(*color) + # we need to wait until the color change is active + GL.glFinish() + # draw the models + self.core.call_chain("draw_models", models) + # enable lighting again + if self.core.get("view_light"): + GL.glEnable(GL.GL_LIGHTING) + # enable polygon fill mode again + if self.core.get("view_polygon"): + GL.glPolygonMode(GL.GL_FRONT_AND_BACK, GL.GL_FILL) diff --git a/pycam/pycam/Plugins/OpenGLViewTool.py b/pycam/pycam/Plugins/OpenGLViewTool.py new file mode 100644 index 00000000..76037c37 --- /dev/null +++ b/pycam/pycam/Plugins/OpenGLViewTool.py @@ -0,0 +1,49 @@ +""" +Copyright 2017 Lars Kruse + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + +import pycam.Plugins + + +class OpenGLViewTool(pycam.Plugins.PluginBase): + + DEPENDS = ["OpenGLWindow"] + CATEGORIES = ["Visualization", "OpenGL", "Tool"] + + def setup(self): + self.core.register_event("visualize-items", self.draw_tool) + self.core.get("register_display_item")("show_tool", "Show Tool", 70) + self.core.get("register_color")("color_tool", "Tool", 50) + self.core.emit_event("visual-item-updated") + return True + + def teardown(self): + self.core.unregister_event("visualize-items", self.draw_tool) + self.core.get("unregister_display_item")("show_tool") + self.core.get("unregister_color")("color_tool") + self.core.emit_event("visual-item-updated") + + def draw_tool(self): + if self.core.get("show_tool"): + tool = self.core.get("current_tool") + if tool is not None: + color = self.core.get("color_tool") + GL = self._GL + GL.glColor4f(color["red"], color["green"], color["blue"], color["alpha"]) + GL.glFinish() + tool.to_opengl() diff --git a/pycam/pycam/Plugins/OpenGLViewToolpath.py b/pycam/pycam/Plugins/OpenGLViewToolpath.py new file mode 100644 index 00000000..3e88d73a --- /dev/null +++ b/pycam/pycam/Plugins/OpenGLViewToolpath.py @@ -0,0 +1,158 @@ +""" +Copyright 2011 Lars Kruse + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + +import pycam.Plugins +import pycam.Gui.OpenGLTools +from pycam.Toolpath import MOVES_LIST, MOVE_STRAIGHT_RAPID + + +class OpenGLViewToolpath(pycam.Plugins.PluginBase): + + DEPENDS = ["OpenGLWindow", "Toolpaths"] + CATEGORIES = ["Toolpath", "Visualization", "OpenGL"] + + def setup(self): + self.core.get("register_color")("color_toolpath_cut", "Toolpath cut", 60) + self.core.get("register_color")("color_toolpath_return", "Toolpath rapid", 70) + self.core.register_chain("get_draw_dimension", self.get_draw_dimension) + self.core.get("register_display_item")("show_toolpath", "Show Toolpath", 30) + self._event_handlers = ( + ("toolpath-list-changed", "visual-item-updated"), + ("toolpath-changed", "visual-item-updated"), + ("visualize-items", self.draw_toolpaths)) + self.register_event_handlers(self._event_handlers) + self.core.emit_event("visual-item-updated") + return True + + def teardown(self): + self.core.unregister_chain("get_draw_dimension", self.get_draw_dimension) + self.unregister_event_handlers(self._event_handlers) + self.core.get("unregister_color")("color_toolpath_cut") + self.core.get("unregister_color")("color_toolpath_return") + self.core.get("unregister_display_item")("show_toolpath") + self.core.emit_event("visual-item-updated") + + def get_draw_dimension(self, low, high): + if self._is_visible(): + toolpaths = self.core.get("toolpaths").get_visible() + for toolpath_dict in toolpaths: + tp = toolpath_dict.get_toolpath() + if tp: + mlow = tp.minx, tp.miny, tp.minz + mhigh = tp.maxx, tp.maxy, tp.maxz + if None in mlow or None in mhigh: + continue + for index in range(3): + if (low[index] is None) or (mlow[index] < low[index]): + low[index] = mlow[index] + if (high[index] is None) or (mhigh[index] > high[index]): + high[index] = mhigh[index] + + def _is_visible(self): + return self.core.get("show_toolpath") \ + and not self.core.get("toolpath_in_progress") \ + and not self.core.get("show_simulation") + + def draw_toolpaths(self): + toolpath_in_progress = self.core.get("toolpath_in_progress") + if toolpath_in_progress is None and self.core.get("show_toolpath"): + settings_filters = [] + # Use the currently selected export settings for an intuitive behaviour. + selected_export_settings = self.core.get("export_settings").get_selected() + if selected_export_settings: + settings_filters.extend(selected_export_settings.get_toolpath_filters()) + for toolpath_dict in self.core.get("toolpaths").get_visible(): + toolpath = toolpath_dict.get_toolpath() + if toolpath: + # TODO: enable the VBO code for speedup! + # moves = toolpath.get_moves_for_opengl(self.core.get("gcode_safety_height")) + # self._draw_toolpath_moves2(moves) + moves = toolpath.get_basic_moves(filters=settings_filters) + self._draw_toolpath_moves(moves) + elif toolpath_in_progress is not None: + if self.core.get("show_simulation") or self.core.get("show_toolpath_progress"): + self._draw_toolpath_moves(toolpath_in_progress) + + def _draw_toolpath_moves2(self, paths): + GL = self._GL + GL.glDisable(GL.GL_LIGHTING) + color_rapid = self.core.get("color_toolpath_return") + color_cut = self.core.get("color_toolpath_cut") + show_directions = self.core.get("show_directions") + GL.glMatrixMode(GL.GL_MODELVIEW) + GL.glLoadIdentity() + coords = paths[0] + try: + coords.bind() + GL.glEnableClientState(GL.GL_VERTEX_ARRAY) + GL.glVertexPointerf(coords) + for path in paths[1]: + if path[2]: + GL.glColor4f(color_rapid["red"], color_rapid["green"], color_rapid["blue"], + color_rapid["alpha"]) + else: + GL.glColor4f(color_cut["red"], color_cut["green"], color_cut["blue"], + color_cut["alpha"]) + if show_directions: + GL.glDisable(GL.GL_CULL_FACE) + GL.glDrawElements(GL.GL_TRIANGLES, len(path[1]), GL.GL_UNSIGNED_INT, path[1]) + GL.glEnable(GL.GL_CULL_FACE) + GL.glDrawElements(GL.GL_LINE_STRIP, len(path[0]), GL.GL_UNSIGNED_INT, path[0]) + finally: + coords.unbind() + + # Simulate still depends on this pathway + def _draw_toolpath_moves(self, moves): + GL = self._GL + GL.glDisable(GL.GL_LIGHTING) + show_directions = self.core.get("show_directions") + color_rapid = self.core.get("color_toolpath_return") + color_cut = self.core.get("color_toolpath_cut") + GL.glMatrixMode(GL.GL_MODELVIEW) + GL.glLoadIdentity() + last_position = None + last_rapid = None + GL.glBegin(GL.GL_LINE_STRIP) + transitions = [] + for step in moves: + if step.action not in MOVES_LIST: + continue + is_rapid = step.action == MOVE_STRAIGHT_RAPID + if last_rapid != is_rapid: + GL.glEnd() + if is_rapid: + GL.glColor4f(color_rapid["red"], color_rapid["green"], color_rapid["blue"], + color_rapid["alpha"]) + else: + GL.glColor4f(color_cut["red"], color_cut["green"], color_cut["blue"], + color_cut["alpha"]) + # we need to wait until the color change is active + GL.glFinish() + GL.glBegin(GL.GL_LINE_STRIP) + if last_position is not None: + GL.glVertex3f(*last_position) + last_rapid = is_rapid + GL.glVertex3f(*step.position) + if show_directions and (last_position is not None): + transitions.append((last_position, step.position)) + last_position = step.position + GL.glEnd() + if show_directions: + for p1, p2 in transitions: + pycam.Gui.OpenGLTools.draw_direction_cone(p1, p2) diff --git a/pycam/pycam/Plugins/OpenGLWindow.py b/pycam/pycam/Plugins/OpenGLWindow.py new file mode 100644 index 00000000..896a54ac --- /dev/null +++ b/pycam/pycam/Plugins/OpenGLWindow.py @@ -0,0 +1,948 @@ +""" +Copyright 2011 Lars Kruse + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + +import math + +from pycam.Geometry import number, sqrt +from pycam.Geometry.PointUtils import pcross, pmul, pnormalized +import pycam.Geometry.Matrix as Matrix +import pycam.Plugins + + +# The length of the distance vector does not matter - it will be normalized and +# multiplied later anyway. +VIEWS = { + "reset": {"distance": (-1.0, -1.0, 1.0), "center": (0.0, 0.0, 0.0), + "up": (0.0, 0.0, 1.0), "znear": 0.01, "zfar": 10000.0, "fovy": 30.0}, + "top": {"distance": (0.0, 0.0, 1.0), "center": (0.0, 0.0, 0.0), + "up": (0.0, 1.0, 0.0), "znear": 0.01, "zfar": 10000.0, "fovy": 30.0}, + "bottom": {"distance": (0.0, 0.0, -1.0), "center": (0.0, 0.0, 0.0), + "up": (0.0, 1.0, 0.0), "znear": 0.01, "zfar": 10000.0, "fovy": 30.0}, + "left": {"distance": (-1.0, 0.0, 0.0), "center": (0.0, 0.0, 0.0), + "up": (0.0, 0.0, 1.0), "znear": 0.01, "zfar": 10000.0, "fovy": 30.0}, + "right": {"distance": (1.0, 0.0, 0.0), "center": (0.0, 0.0, 0.0), + "up": (0.0, 0.0, 1.0), "znear": 0.01, "zfar": 10000.0, "fovy": 30.0}, + "front": {"distance": (0.0, -1.0, 0.0), "center": (0.0, 0.0, 0.0), + "up": (0.0, 0.0, 1.0), "znear": 0.01, "zfar": 10000.0, "fovy": 30.0}, + "back": {"distance": (0.0, 1.0, 0.0), "center": (0.0, 0.0, 0.0), + "up": (0.0, 0.0, 1.0), "znear": 0.01, "zfar": 10000.0, "fovy": 30.0}, +} + + +class OpenGLWindow(pycam.Plugins.PluginBase): + + UI_FILE = "opengl.ui" + CATEGORIES = ["Visualization", "OpenGL"] + + def setup(self): + if not self._GL: + self.log.error("Failed to initialize the interactive 3D model view.\nPlease verify " + "that all requirements (especially the Python package for 'OpenGL' - " + "e.g. 'python3-opengl') are installed.") + return False + # test support for GLArea (since GTK v3.16) + try: + self._gtk.GLArea + except AttributeError: + self.log.error("Failed to initialize the interactive 3D model view probably due to an " + "outdated version of GTK (required: v3.16).") + return False + if self.gui: + # buttons for rotating, moving and zooming the model view window + self.BUTTON_ROTATE = self._gdk.ModifierType.BUTTON1_MASK + self.BUTTON_MOVE = self._gdk.ModifierType.BUTTON2_MASK + self.BUTTON_ZOOM = self._gdk.ModifierType.BUTTON3_MASK + self.BUTTON_RIGHT = 3 + self.context_menu = self._gtk.Menu() + self.window = self.gui.get_object("OpenGLWindow") + self.window.insert_action_group(self.core.get("gtk_action_group_prefix"), + self.core.get("gtk_action_group")) + drag_n_drop_func = self.core.get("configure-drag-drop-func") + if drag_n_drop_func: + drag_n_drop_func(self.window) + self.initialized = False + self.is_visible = False + self._last_view = VIEWS["reset"] + self._position = [200, 200] + box = self.gui.get_object("OpenGLPrefTab") + self.core.register_ui("preferences", "OpenGL", box, 40) + self._gtk_handlers = [] + # options + # TODO: move the default value somewhere else + for name, objname, default in (("view_light", "OpenGLLight", True), + ("view_shadow", "OpenGLShadow", True), + ("view_polygon", "OpenGLPolygon", True), + ("view_perspective", "OpenGLPerspective", True), + ("opengl_cache_enable", "OpenGLCache", True)): + obj = self.gui.get_object(objname) + self.core.add_item(name, obj.get_active, obj.set_active) + obj.set_active(default) + self._gtk_handlers.append((obj, "toggled", self.glsetup)) + self._gtk_handlers.append((obj, "toggled", "visual-item-updated")) + # frames per second + skip_obj = self.gui.get_object("DrillProgressFrameSkipControl") + self.core.add_item("tool_progress_max_fps", skip_obj.get_value, skip_obj.set_value) + # info bar above the model view + detail_box = self.gui.get_object("InfoBox") + + def clear_window(): + for child in detail_box.get_children(): + detail_box.remove(child) + + def add_widget_to_window(item, name): + if len(detail_box.get_children()) > 0: + sep = self._gtk.HSeparator() + detail_box.pack_start(sep, fill=True, expand=True, padding=0) + sep.show() + detail_box.pack_start(item, fill=True, expand=True, padding=0) + item.show() + + self.core.register_ui_section("opengl_window", add_widget_to_window, clear_window) + self.core.register_ui("opengl_window", "Views", self.gui.get_object("ViewControls"), + weight=0) + # color box + color_frame = self.gui.get_object("ColorPrefTab") + color_frame.unparent() + self._color_settings = {} + self.core.register_ui("preferences", "Colors", color_frame, 30) + self.core.set("register_color", self.register_color_setting) + self.core.set("unregister_color", self.unregister_color_setting) + # TODO: move "material" to simulation viewer + for name, label, weight in (("color_background", "Background", 10), + ("color_material", "Material", 80)): + self.core.get("register_color")(name, label, weight) + # display items + items_frame = self.gui.get_object("DisplayItemsPrefTab") + items_frame.unparent() + self._display_items = {} + self.core.register_ui("preferences", "Display Items", items_frame, 20) + self.core.set("register_display_item", self.register_display_item) + self.core.set("unregister_display_item", self.unregister_display_item) + # visual and general settings + # TODO: should directions be here? + self.core.get("register_display_item")("show_directions", "Show Directions", 80) + # toggle window state + toggle_3d = self.gui.get_object("Toggle3DView") + self._gtk_handlers.append((toggle_3d, "toggled", self.toggle_3d_view)) + self.register_gtk_accelerator("opengl", toggle_3d, "v", + "ToggleOpenGLView") + self.core.register_ui("view_menu", "ViewOpenGL", toggle_3d, -20) + self.mouse = {"start_pos": None, "button": None, "event_timestamp": 0, + "last_timestamp": 0, "pressed_pos": None, "pressed_timestamp": 0, + "pressed_button": None} + self.window.connect("delete-event", self.destroy) + self.window.set_default_size(560, 400) + for obj_name, view in (("ResetView", "reset"), + ("LeftView", "left"), + ("RightView", "right"), + ("FrontView", "front"), + ("BackView", "back"), + ("TopView", "top"), + ("BottomView", "bottom")): + self._gtk_handlers.append((self.gui.get_object(obj_name), "clicked", + self.rotate_view, VIEWS[view])) + # key binding + self._gtk_handlers.append((self.window, "key-press-event", self.key_handler)) + # OpenGL stuff + self.area = self._gtk.GLArea(auto_render=False, has_alpha=True, has_depth_buffer=True) + self.area.show() + # first run; might also be important when doing other fancy + # called when a part of the screen is uncovered + self._gtk_handlers.append((self.area, 'render', self.paint)) + # resize window + self._gtk_handlers.append((self.area, "resize", self._resize_window)) + # catch mouse events + self.area.set_events((self._gdk.InputSource.MOUSE + | self._gdk.EventMask.POINTER_MOTION_MASK + | self._gdk.EventMask.BUTTON_PRESS_MASK + | self._gdk.EventMask.BUTTON_RELEASE_MASK + | self._gdk.EventMask.SCROLL_MASK)) + self._gtk_handlers.extend(( + (self.area, "button-press-event", self.mouse_press_handler), + (self.area, "motion-notify-event", self.mouse_handler), + (self.area, "button-release-event", self.context_menu_handler), + (self.area, "scroll-event", self.scroll_handler))) + self.gui.get_object("OpenGLBox").pack_end(self.area, fill=True, expand=True, padding=0) + + def get_area_allocation(self=self): + allocation = self.area.get_allocation() + return allocation.width, allocation.height + + self.camera = Camera(self.core, get_area_allocation, self._GL, self._GLU) + self._event_handlers = (("visual-item-updated", self.update_view), + ("visualization-state-changed", self._update_widgets), + ("model-list-changed", self._restore_latest_view)) + # handlers + self.register_gtk_handlers(self._gtk_handlers) + self.register_event_handlers(self._event_handlers) + # show the window - the handlers _must_ be registered before "show" + self.area.show() + toggle_3d.set_active(True) + # refresh display + self.core.emit_event("visual-item-updated") + + def get_get_set_functions(name): + get_func = lambda: self.core.get(name) + set_func = lambda value: self.core.set(name, value) + return get_func, set_func + + for name in ("view_light", "view_shadow", "view_polygon", "view_perspective", + "opengl_cache_enable", "tool_progress_max_fps"): + self.register_state_item("settings/view/opengl/%s" % name, + *get_get_set_functions(name)) + return True + + def teardown(self): + if self.gui: + self.core.unregister_ui("preferences", self.gui.get_object("OpenGLPrefTab")) + toggle_3d = self.gui.get_object("Toggle3DView") + # hide the window + toggle_3d.set_active(False) + self.core.unregister_ui("view_menu", toggle_3d) + self.unregister_gtk_accelerator("opengl", toggle_3d) + for name in ("color_background", "color_tool", "color_material"): + self.core.get("unregister_color")(name) + for name in ("show_tool", "show_directions"): + self.core.get("unregister_display_item")(name) + self.unregister_gtk_handlers(self._gtk_handlers) + self.unregister_event_handlers(self._event_handlers) + # the area will be created during setup again + self.gui.get_object("OpenGLBox").remove(self.area) + self.area = None + self.core.unregister_ui("preferences", self.gui.get_object("DisplayItemsPrefTab")) + self.core.unregister_ui("preferences", self.gui.get_object("OpenGLPrefTab")) + self.core.unregister_ui("opengl_window", self.gui.get_object("ViewControls")) + self.core.unregister_ui("preferences", self.gui.get_object("ColorPrefTab")) + self.core.unregister_ui_section("opengl_window") + self.clear_state_items() + + def update_view(self, widget=None, data=None): + if self.is_visible: + self.trigger_rendering() + + def _update_widgets(self): + self.unregister_gtk_handlers(self._gtk_handlers) + self.gui.get_object("Toggle3DView").set_active(self.is_visible) + self.register_gtk_handlers(self._gtk_handlers) + + def register_display_item(self, name, label, weight=100): + if name in self._display_items: + self.log.debug("Tried to register display item '%s' twice", name) + return + # create an action and three derived items: + # - a checkbox for the preferences window + # - a tool item for the drop-down list in the 3D window + # - a menu item for the context menu in the 3D window + # the string value will be interpreted by the callback as the most recently updated widget + action_name = ".".join((self.core.get("gtk_action_group_prefix"), name)) + action = self._gio.SimpleAction.new_stateful(name, self._glib.VariantType.new("s"), + self._glib.Variant.new_string("0")) + widgets = [] + for index, item in enumerate((self._gtk.CheckButton(), + self._gtk.ToggleToolButton(), + self._gtk.CheckMenuItem())): + item.insert_action_group(self.core.get("gtk_action_group_prefix"), + self.core.get("gtk_action_group")) + item.set_label(label) + item.set_action_target_value(self._glib.Variant.new_string(str(index))) + item.set_action_name(action_name) + # The "target value" (the stringified widget index) is used by GTK for guessing the + # sensitivity of a control. This approach differs from ours - we ignore it. + item.set_sensitive(True) + widgets.append(item) + self._display_items[name] = {"name": name, "label": label, "weight": weight, + "widgets": widgets, "action": action} + + def synchronize_widgets(action, widget_index_variant, widgets=widgets, is_blocked=[], + name=name): + """ copy the state of the most recently changed ("activated") control to the others + + widget_index_variant: GLib.Variant containing the stringified index of the changed + widget (0, 1 or 2) - based on the widgets list + widgets: the three associated widgets + is_blocked: we need to avoid pseudo-recursive calls of this function after every + programmatic change of a control + """ + widget_index = int(widget_index_variant.get_string()) + if not is_blocked: + is_blocked.append(True) + current_widget = widgets[widget_index] + current_value = current_widget.get_active() + for index, widget in enumerate(widgets): + if widget_index != index: + if hasattr(widget, "set_active"): + widget.set_active(current_value) + else: + widget.set_state(current_value) + widget.set_sensitive(True) + self.core.set(name, current_value) + self.core.emit_event("visual-item-updated") + is_blocked.clear() + + action.connect("activate", synchronize_widgets) + self.core.get("gtk_action_group").add_action(action) + self.core.add_item(name, set_func=widgets[0].set_active) + # add this item to the state handler + self.register_state_item("settings/view/items/%s" % name, + widgets[0].get_active, widgets[0].set_active) + # synchronize the widgets + synchronize_widgets(None, self._glib.Variant.new_string("0")) + self._rebuild_display_items() + + def unregister_display_item(self, name): + if name not in self._display_items: + self.log.info("Failed to unregister unknown display item: %s", name) + return + first_widget = self._display_items[name]["widgets"][0] + self.unregister_state_item("settings/view/items/%s" % name, + first_widget.get_active, first_widget.set_active) + action_name = ".".join((self.core.get("gtk_action_group_prefix"), name)) + self.core.get("gtk_action_group").remove(action_name) + del self._display_items[name] + self._rebuild_display_items() + + def _rebuild_display_items(self): + pref_box = self.gui.get_object("PreferencesVisibleItemsBox") + toolbar = self.gui.get_object("ViewItems") + for parent in pref_box, self.context_menu, toolbar: + for child in parent.get_children(): + parent.remove(child) + items = list(self._display_items.values()) + items.sort(key=lambda item: item["weight"]) + for item in items: + pref_box.pack_start(item["widgets"][0], expand=True, fill=True, padding=0) + toolbar.add(item["widgets"][1]) + self.context_menu.add(item["widgets"][2]) + for parent in (pref_box, toolbar, self.context_menu): + parent.show_all() + parent.insert_action_group(self.core.get("gtk_action_group_prefix"), + self.core.get("gtk_action_group")) + + def register_color_setting(self, name, label, weight=100): + if name in self._color_settings: + self.log.debug("Tried to register color '%s' twice", name) + return + + def get_color_wrapper(obj): + def gtk_color_to_dict(): + color_components = obj.get_rgba() + return {"red": color_components.red, + "green": color_components.green, + "blue": color_components.blue, + "alpha": color_components.alpha} + return gtk_color_to_dict + + def set_color_wrapper(obj): + def set_gtk_color_by_dict(color): + obj.set_rgba( + self._gdk.RGBA(color["red"], color["green"], color["blue"], color["alpha"])) + return set_gtk_color_by_dict + + widget = self._gtk.ColorButton() + widget.set_use_alpha(True) + wrappers = (get_color_wrapper(widget), set_color_wrapper(widget)) + self._color_settings[name] = {"name": name, "label": label, "weight": weight, + "widget": widget, "wrappers": wrappers} + widget.connect("color-set", lambda widget: self.core.emit_event("visual-item-updated")) + self.core.add_item(name, *wrappers) + self.register_state_item("settings/view/colors/%s" % name, *wrappers) + self._rebuild_color_settings() + + def unregister_color_setting(self, name): + if name not in self._color_settings: + self.log.debug("Failed to unregister unknown color item: %s", name) + return + wrappers = self._color_settings[name]["wrappers"] + self.unregister_state_item("settings/view/colors/%s" % name, *wrappers) + del self._color_settings[name] + self._rebuild_color_settings() + + def _rebuild_color_settings(self): + color_table = self.gui.get_object("ColorTable") + for child in color_table.get_children(): + color_table.remove(child) + items = list(self._color_settings.values()) + items.sort(key=lambda item: item["weight"]) + for index, item in enumerate(items): + label = self._gtk.Label("%s:" % item["label"]) + label.set_alignment(0.0, 0.5) + color_table.attach(label, 0, index, 1, 1) + color_table.attach(item["widget"], 1, index, 1, 1) + color_table.show_all() + + def toggle_3d_view(self, widget=None, value=None): + current_state = self.is_visible + if value is None: + new_state = not current_state + else: + new_state = value + if new_state == current_state: + return + elif new_state: + if self.is_visible: + self.reset_view() + else: + # the window is just hidden + self.show() + else: + self.hide() + + def show(self): + self.is_visible = True + self.window.move(*self._position) + self.window.show() + + def hide(self): + self.is_visible = False + self._position = self.window.get_position() + self.window.hide() + + def key_handler(self, widget=None, event=None): + if event is None: + return + try: + keyval = getattr(event, "keyval") + get_state = getattr(event, "get_state") + key_string = getattr(event, "string") + except AttributeError: + return + # define arrow keys and "vi"-like navigation keys + move_keys_dict = { + self._gdk.KEY_Left: (1, 0), + self._gdk.KEY_Down: (0, -1), + self._gdk.KEY_Up: (0, 1), + self._gdk.KEY_Right: (-1, 0), + ord("h"): (1, 0), + ord("j"): (0, -1), + ord("k"): (0, 1), + ord("l"): (-1, 0), + ord("H"): (1, 0), + ord("J"): (0, -1), + ord("K"): (0, 1), + ord("L"): (-1, 0), + } + if key_string and (key_string in '1234567'): + self._last_view = None + names = ["reset", "front", "back", "left", "right", "top", "bottom"] + index = '1234567'.index(key_string) + self.rotate_view(view=VIEWS[names[index]]) + self.trigger_rendering() + elif key_string in ('i', 'm', 's', 'p'): + if key_string == 'i': + key = "view_light" + elif key_string == 'm': + key = "view_polygon" + elif key_string == 's': + key = "view_shadow" + elif key_string == 'p': + key = "view_perspective" + else: + key = None + # toggle setting + self.core.set(key, not self.core.get(key)) + # re-init gl settings + self.glsetup() + self.trigger_rendering() + elif key_string in ("+", "-"): + self._last_view = None + if key_string == "+": + self.camera.zoom_in() + else: + self.camera.zoom_out() + self.trigger_rendering() + elif keyval in move_keys_dict.keys(): + self._last_view = None + move_x, move_y = move_keys_dict[keyval] + if get_state() & self._gdk.ModifierType.SHIFT_MASK: + # shift key pressed -> rotation + base = 0 + factor = 10 + self.camera.rotate_camera_by_screen(base, base, base - factor * move_x, + base - factor * move_y) + else: + # no shift key -> moving + self.camera.shift_view(x_dist=move_x, y_dist=move_y) + self.trigger_rendering() + else: + self.log.debug("Unhandled key pressed: %s (%s)", keyval, get_state()) + + def glsetup(self, widget=None): + GL = self._GL + GLUT = self._GLUT + if not GLUT.glutInit: + self.log.error("Failed to execute 'GLUT.glutInit': probably you need to install the" + "C library providing GLUT functions (e.g. 'freeglut3-dev' or " + "'freeglut-devel'). OpenGL visualization is disabled.") + return + GLUT.glutInit() + GLUT.glutInitDisplayMode(GLUT.GLUT_RGBA | GLUT.GLUT_DOUBLE | GLUT.GLUT_DEPTH + | GLUT.GLUT_MULTISAMPLE | GLUT.GLUT_ALPHA | GLUT.GLUT_ACCUM) + if self.core.get("view_shadow"): + # TODO: implement shadowing (or remove the setting) + pass + # use vertex normals for smooth rendering + GL.glShadeModel(GL.GL_SMOOTH) + bg_col = self.core.get("color_background") + GL.glClearColor(bg_col["red"], bg_col["green"], bg_col["blue"], 1.0) + GL.glHint(GL.GL_PERSPECTIVE_CORRECTION_HINT, GL.GL_NICEST) + GL.glMatrixMode(GL.GL_MODELVIEW) + # enable blending/transparency (alpha) for colors + GL.glEnable(GL.GL_BLEND) + # see http://wiki.delphigl.com/index.php/glBlendFunc + GL.glBlendFunc(GL.GL_SRC_ALPHA, GL.GL_ONE_MINUS_SRC_ALPHA) + GL.glEnable(GL.GL_DEPTH_TEST) + # "less" is OpenGL's default + GL.glDepthFunc(GL.GL_LESS) + # slightly improved performance: ignore all faces inside the objects + GL.glCullFace(GL.GL_BACK) + GL.glEnable(GL.GL_CULL_FACE) + # enable antialiasing + GL.glEnable(GL.GL_LINE_SMOOTH) +# GL.glEnable(GL.GL_POLYGON_SMOOTH) + GL.glHint(GL.GL_LINE_SMOOTH_HINT, GL.GL_NICEST) + GL.glHint(GL.GL_POLYGON_SMOOTH_HINT, GL.GL_NICEST) + # TODO: move to toolpath drawing + GL.glLineWidth(0.8) +# GL.glEnable(GL.GL_MULTISAMPLE_ARB) + GL.glEnable(GL.GL_POLYGON_OFFSET_FILL) + GL.glPolygonOffset(1.0, 1.0) + # ambient and diffuse material lighting is defined in OpenGLViewModel + GL.glMaterial(GL.GL_FRONT_AND_BACK, GL.GL_SPECULAR, (1.0, 1.0, 1.0, 1.0)) + GL.glMaterial(GL.GL_FRONT_AND_BACK, GL.GL_SHININESS, (100.0)) + if self.core.get("view_polygon"): + GL.glPolygonMode(GL.GL_FRONT_AND_BACK, GL.GL_FILL) + else: + GL.glPolygonMode(GL.GL_FRONT_AND_BACK, GL.GL_LINE) + GL.glMatrixMode(GL.GL_MODELVIEW) + GL.glLoadIdentity() + GL.glMatrixMode(GL.GL_PROJECTION) + GL.glLoadIdentity() + GL.glViewport(0, 0, self.area.get_allocation().width, self.area.get_allocation().height) + # lighting + GL.glLightModeli(GL.GL_LIGHT_MODEL_LOCAL_VIEWER, GL.GL_TRUE) + # Light #1 + # setup the ambient light + GL.glLightfv(GL.GL_LIGHT0, GL.GL_AMBIENT, (0.3, 0.3, 0.3, 1.0)) + # setup the diffuse light + GL.glLightfv(GL.GL_LIGHT0, GL.GL_DIFFUSE, (0.8, 0.8, 0.8, 1.0)) + # setup the specular light + GL.glLightfv(GL.GL_LIGHT0, GL.GL_SPECULAR, (0.1, 0.1, 0.1, 1.0)) + # enable Light #1 + GL.glEnable(GL.GL_LIGHT0) + # Light #2 + # spotlight with small light cone (like a desk lamp) +# GL.glLightfv(GL.GL_LIGHT1, GL.GL_SPOT_CUTOFF, 10.0) + # ... directed at the object + v = self.camera.view + GL.glLightfv(GL.GL_LIGHT1, GL.GL_SPOT_DIRECTION, + (v["center"][0], v["center"][1], v["center"][2])) + GL.glLightfv(GL.GL_LIGHT1, GL.GL_AMBIENT, (0.3, 0.3, 0.3, 1.0)) + # and dark outside of the light cone +# GL.glLightfv(GL.GL_LIGHT1, GL.GL_SPOT_EXPONENT, 100.0) +# GL.glLightf(GL.GL_LIGHT1, GL.GL_QUADRATIC_ATTENUATION, 0.5) + # setup the diffuse light + GL.glLightfv(GL.GL_LIGHT1, GL.GL_DIFFUSE, (0.9, 0.9, 0.9, 1.0)) + # setup the specular light + GL.glLightfv(GL.GL_LIGHT1, GL.GL_SPECULAR, (1.0, 1.0, 1.0, 1.0)) + # enable Light #2 + GL.glEnable(GL.GL_LIGHT1) + if self.core.get("view_light"): + GL.glEnable(GL.GL_LIGHTING) + else: + GL.glDisable(GL.GL_LIGHTING) + GL.glEnable(GL.GL_NORMALIZE) + GL.glColorMaterial(GL.GL_FRONT_AND_BACK, GL.GL_AMBIENT_AND_DIFFUSE) + GL.glColorMaterial(GL.GL_FRONT_AND_BACK, GL.GL_SPECULAR) +# GL.glColorMaterial(GL.GL_FRONT_AND_BACK, GL.GL_EMISSION) + GL.glEnable(GL.GL_COLOR_MATERIAL) + + def destroy(self, widget=None, data=None): + self.hide() + self.core.emit_event("visualization-state-changed") + # don't close the window + return True + + def _restore_latest_view(self): + """ this function is called whenever the model list changes + + The function will restore the latest selected view - including + automatic distance adjustment. The latest view is always reset to + None, if any manual change (e.g. panning via mouse or keyboard) + occurred. + """ + if self._last_view: + self.rotate_view(view=self._last_view) + + def context_menu_handler(self, widget, event): + if ((event.button == self.mouse["pressed_button"] == self.BUTTON_RIGHT) + and self.context_menu + and (event.get_time() - self.mouse["pressed_timestamp"] < 300) + and (abs(event.x - self.mouse["pressed_pos"][0]) < 3) + and (abs(event.y - self.mouse["pressed_pos"][1]) < 3)): + # A quick press/release cycle with the right mouse button + # -> open the context menu. + self.context_menu.popup(None, None, None, None, event.button, int(event.get_time())) + + def scroll_handler(self, widget, event): + """ handle events of the scroll wheel + + shift key: horizontal pan instead of vertical + control key: zoom + """ + remember_last_view = self._last_view + self._last_view = None + try: + modifier_state = event.get_state() + except AttributeError: + # this should probably never happen + return + control_pressed = modifier_state & self._gdk.ModifierType.CONTROL_MASK + shift_pressed = modifier_state & self._gdk.ModifierType.SHIFT_MASK + if ((event.direction == self._gdk.ScrollDirection.RIGHT) + or ((event.direction == self._gdk.ScrollDirection.UP) and shift_pressed)): + # horizontal move right + self.camera.shift_view(x_dist=-1) + elif ((event.direction == self._gdk.ScrollDirection.LEFT) + or ((event.direction == self._gdk.ScrollDirection.DOWN) and shift_pressed)): + # horizontal move left + self.camera.shift_view(x_dist=1) + elif (event.direction == self._gdk.ScrollDirection.UP) and control_pressed: + # zoom in + self.camera.zoom_in() + elif event.direction == self._gdk.ScrollDirection.UP: + # vertical move up + self.camera.shift_view(y_dist=1) + elif (event.direction == self._gdk.ScrollDirection.DOWN) and control_pressed: + # zoom out + self.camera.zoom_out() + elif event.direction == self._gdk.ScrollDirection.DOWN: + # vertical move down + self.camera.shift_view(y_dist=-1) + else: + # no interesting event -> no re-painting + self._last_view = remember_last_view + return + self.trigger_rendering() + + def mouse_press_handler(self, widget, event): + self.mouse["pressed_timestamp"] = event.get_time() + self.mouse["pressed_button"] = event.button + self.mouse["pressed_pos"] = event.x, event.y + self.mouse_handler(widget, event) + + def mouse_handler(self, widget, event): + x, y, state = event.x, event.y, event.state + if self.mouse["button"] is None: + if ((state & self.BUTTON_ZOOM) + or (state & self.BUTTON_ROTATE) + or (state & self.BUTTON_MOVE)): + self.mouse["button"] = state + self.mouse["start_pos"] = [x, y] + else: + # Don't try to create more than 25 frames per second (enough for + # a decent visualization). + if event.get_time() - self.mouse["event_timestamp"] < 40: + return + elif state & self.mouse["button"] & self.BUTTON_ZOOM: + self._last_view = None + # the start button is still active: update the view + start_x, start_y = self.mouse["start_pos"] + self.mouse["start_pos"] = [x, y] + # Move the mouse from lower left to top right corner for + # scaling up. + scale = 1 - 0.01 * ((x - start_x) + (start_y - y)) + # do some sanity checks, scale no more than + # 1:100 on any given click+drag + if scale < 0.01: + scale = 0.01 + elif scale > 100: + scale = 100 + self.camera.scale_distance(scale) + self.trigger_rendering() + elif ((state & self.mouse["button"] & self.BUTTON_MOVE) + or (state & self.mouse["button"] & self.BUTTON_ROTATE)): + self._last_view = None + start_x, start_y = self.mouse["start_pos"] + self.mouse["start_pos"] = [x, y] + if (state & self.BUTTON_MOVE): + # Determine the biggest dimension (x/y/z) for moving the + # screen's center in relation to this value. + low, high = [None, None, None], [None, None, None] + self.core.call_chain("get_draw_dimension", low, high) + # use zero as fallback for undefined axes (None) + max_dim = max((v_high or 0) - (v_low or 0) for v_high, v_low in zip(high, low)) + if max_dim == 0: + # some arbitrary value if there are no visible objects + max_dim = 10 + self.camera.move_camera_by_screen(x - start_x, y - start_y, max_dim) + else: + # BUTTON_ROTATE + # update the camera position according to the mouse movement + self.camera.rotate_camera_by_screen(start_x, start_y, x, y) + self.trigger_rendering() + else: + # button was released + self.mouse["button"] = None + self.trigger_rendering() + self.mouse["event_timestamp"] = event.get_time() + + def rotate_view(self, widget=None, view=None): + if view: + self._last_view = view.copy() + self.camera.set_view(view) + self.trigger_rendering() + + def reset_view(self): + self.rotate_view(view=None) + self.trigger_rendering() + + def _resize_window(self, widget, width, height, data=None): + self.trigger_rendering() + + def paint(self, widget=None, data=None): + if not self.initialized: + self.glsetup() + self.initialized = True + # draw the items + GL = self._GL + prev_mode = GL.glGetIntegerv(GL.GL_MATRIX_MODE) + GL.glMatrixMode(GL.GL_MODELVIEW) + # clear the background with the configured color + bg_col = self.core.get("color_background") + GL.glClearColor(bg_col["red"], bg_col["green"], bg_col["blue"], 1.0) + GL.glClear(GL.GL_COLOR_BUFFER_BIT | GL.GL_DEPTH_BUFFER_BIT) + self.camera.position_camera() + # adjust Light #2 + v = self.camera.view + lightpos = (v["center"][0] + v["distance"][0], + v["center"][1] + v["distance"][1], + v["center"][2] + v["distance"][2]) + GL.glLightfv(GL.GL_LIGHT1, GL.GL_POSITION, lightpos) + # trigger the visualization of all items + self.core.emit_event("visualize-items") + GL.glMatrixMode(prev_mode) + GL.glFlush() + # Return "True" in order to propagate the "render" signal. + return True + + def trigger_rendering(self): + self.area.queue_render() + + +class Camera: + + def __init__(self, core, get_dim_func, import_gl, import_glu): + self._GL = import_gl + self._GLU = import_glu + self.view = None + self.core = core + self._get_dim_func = get_dim_func + self.set_view(self.view) + + def set_view(self, view=None): + if view is None: + self.view = VIEWS["reset"].copy() + else: + self.view = view.copy() + self.center_view() + self.auto_adjust_distance() + + def _get_low_high_dims(self): + low, high = [None, None, None], [None, None, None] + self.core.call_chain("get_draw_dimension", low, high) + return low, high + + def center_view(self): + center = [] + low, high = self._get_low_high_dims() + if None in low or None in high: + center = [0, 0, 0] + else: + for index in range(3): + center.append((low[index] + high[index]) / 2) + self.view["center"] = center + + def auto_adjust_distance(self): + v = self.view + # adjust the distance to get a view of the whole object + low_high = list(zip(*self._get_low_high_dims())) + if (None, None) in low_high: + return + max_dim = max([high - low for low, high in low_high]) + distv = pnormalized((v["distance"][0], v["distance"][1], v["distance"][2])) + # The multiplier "1.25" is based on experiments. 1.414 (sqrt(2)) should + # be roughly sufficient for showing the diagonal of any model. + distv = pmul(distv, (max_dim * 1.25) / number(math.sin(v["fovy"] / 2))) + self.view["distance"] = distv + # Adjust the "far" distance for the camera to make sure, that huge + # models (e.g. x=1000) are still visible. + self.view["zfar"] = 100 * max_dim + + def scale_distance(self, scale): + if scale != 0: + scale = number(scale) + dist = self.view["distance"] + self.view["distance"] = (scale * dist[0], scale * dist[1], scale * dist[2]) + + def get(self, key, default=None): + if (self.view is not None) and key in self.view: + return self.view[key] + else: + return default + + def set(self, key, value): + self.view[key] = value + + def move_camera_by_screen(self, x_move, y_move, max_model_shift): + """ move the camera according to a mouse movement + @type x_move: int + @value x_move: movement of the mouse along the x axis + @type y_move: int + @value y_move: movement of the mouse along the y axis + @type max_model_shift: float + @value max_model_shift: maximum shifting of the model view (e.g. for + x_move == screen width) + """ + factors_x, factors_y = self._get_axes_vectors() + width, height = self._get_screen_dimensions() + # relation of x/y movement to the respective screen dimension + win_x_rel = (-2 * x_move) / float(width) / math.sin(self.view["fovy"]) + win_y_rel = (-2 * y_move) / float(height) / math.sin(self.view["fovy"]) + # This code is completely arbitrarily based on trial-and-error for + # finding a nice movement speed for all distances. + # Anyone with a better approach should just fix this. + distance_vector = self.get("distance") + distance = float(sqrt(sum([dim ** 2 for dim in distance_vector]))) + win_x_rel *= math.cos(win_x_rel / distance) ** 20 + win_y_rel *= math.cos(win_y_rel / distance) ** 20 + # update the model position that should be centered on the screen + old_center = self.view["center"] + new_center = [] + for i in range(3): + new_center.append(old_center[i] + + max_model_shift * (number(win_x_rel) * factors_x[i] + + number(win_y_rel) * factors_y[i])) + self.view["center"] = tuple(new_center) + + def rotate_camera_by_screen(self, start_x, start_y, end_x, end_y): + factors_x, factors_y = self._get_axes_vectors() + width, height = self._get_screen_dimensions() + # calculate rotation factors - based on the distance to the center + # (between -1 and 1) + rot_x_factor = (2.0 * start_x) / width - 1 + rot_y_factor = (2.0 * start_y) / height - 1 + # calculate rotation angles (between -90 and +90 degrees) + xdiff = end_x - start_x + ydiff = end_y - start_y + # compensate inverse rotation left/right side (around x axis) and + # top/bottom (around y axis) + if rot_x_factor < 0: + ydiff = -ydiff + if rot_y_factor > 0: + xdiff = -xdiff + rot_x_angle = rot_x_factor * math.pi * ydiff / height + rot_y_angle = rot_y_factor * math.pi * xdiff / width + # rotate around the "up" vector with the y-axis rotation + original_distance = self.view["distance"] + original_up = self.view["up"] + y_rot_matrix = Matrix.get_rotation_matrix_axis_angle(factors_y, rot_y_angle) + new_distance = Matrix.multiply_vector_matrix(original_distance, y_rot_matrix) + new_up = Matrix.multiply_vector_matrix(original_up, y_rot_matrix) + # rotate around the cross vector with the x-axis rotation + x_rot_matrix = Matrix.get_rotation_matrix_axis_angle(factors_x, rot_x_angle) + new_distance = Matrix.multiply_vector_matrix(new_distance, x_rot_matrix) + new_up = Matrix.multiply_vector_matrix(new_up, x_rot_matrix) + self.view["distance"] = new_distance + self.view["up"] = new_up + + def position_camera(self): + GL = self._GL + GLU = self._GLU + width, height = self._get_screen_dimensions() + prev_mode = GL.glGetIntegerv(GL.GL_MATRIX_MODE) + GL.glMatrixMode(GL.GL_PROJECTION) + GL.glLoadIdentity() + v = self.view + # position the light according to the current bounding box + light_pos = [0, 0, 0] + low, high = self._get_low_high_dims() + if None not in low and None not in high: + for index in range(3): + light_pos[index] = 2 * (high[index] - low[index]) + GL.glLightfv(GL.GL_LIGHT0, GL.GL_POSITION, (light_pos[0], light_pos[1], light_pos[2], 0.0)) + # position the camera + camera_position = (v["center"][0] + v["distance"][0], + v["center"][1] + v["distance"][1], + v["center"][2] + v["distance"][2]) + # position a second light at camera position + GL.glLightfv(GL.GL_LIGHT1, GL.GL_POSITION, (camera_position[0], camera_position[1], + camera_position[2], 0.0)) + if self.core.get("view_perspective"): + # perspective view + GLU.gluPerspective(v["fovy"], (0.0 + width) / height, v["znear"], v["zfar"]) + else: + # parallel projection + # This distance calculation is completely based on trial-and-error. + distance = math.sqrt(sum([d ** 2 for d in v["distance"]])) + distance *= math.log(math.sqrt(width * height)) / math.log(10) + sin_factor = math.sin(v["fovy"] / 360.0 * math.pi) * distance + left = v["center"][0] - sin_factor + right = v["center"][0] + sin_factor + top = v["center"][1] + sin_factor + bottom = v["center"][1] - sin_factor + near = v["center"][2] - 2 * sin_factor + far = v["center"][2] + 2 * sin_factor + GL.glOrtho(left, right, bottom, top, near, far) + GLU.gluLookAt(camera_position[0], camera_position[1], camera_position[2], + v["center"][0], v["center"][1], v["center"][2], + v["up"][0], v["up"][1], v["up"][2]) + GL.glMatrixMode(prev_mode) + + def shift_view(self, x_dist=0, y_dist=0): + obj_dim = [] + low, high = self._get_low_high_dims() + if None in low or None in high: + return + for index in range(3): + obj_dim.append(high[index] - low[index]) + max_dim = max(obj_dim) + factor = 50 + self.move_camera_by_screen(x_dist * factor, y_dist * factor, max_dim) + + def zoom_in(self): + self.scale_distance(sqrt(0.5)) + + def zoom_out(self): + self.scale_distance(sqrt(2)) + + def _get_screen_dimensions(self): + return self._get_dim_func() + + def _get_axes_vectors(self): + """calculate the model vectors along the screen's x and y axes""" + # The "up" vector defines, in what proportion each axis of the model is + # in line with the screen's y axis. + v_up = self.view["up"] + factors_y = (number(v_up[0]), number(v_up[1]), number(v_up[2])) + # Calculate the proportion of each model axis according to the x axis of + # the screen. + distv = self.view["distance"] + distv = pnormalized((distv[0], distv[1], distv[2])) + factors_x = pnormalized(pcross(distv, (v_up[0], v_up[1], v_up[2]))) + return (factors_x, factors_y) diff --git a/pycam/pycam/Plugins/ParallelProcessing.py b/pycam/pycam/Plugins/ParallelProcessing.py new file mode 100644 index 00000000..d616cfa1 --- /dev/null +++ b/pycam/pycam/Plugins/ParallelProcessing.py @@ -0,0 +1,248 @@ +""" +Copyright 2011 Lars Kruse + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + + +import os +import random +import string + +import pycam.Plugins +from pycam.Utils.events import get_mainloop +import pycam.Utils.threading + + +class ParallelProcessing(pycam.Plugins.PluginBase): + + UI_FILE = "parallel_processing.ui" + CATEGORIES = ["System"] + + def setup(self): + if self.gui and self._gtk: + box = self.gui.get_object("MultiprocessingFrame") + box.unparent() + self.core.register_ui("preferences", "Parallel processing", box, 60) + # "process pool" window + self.process_pool_window = self.gui.get_object("ProcessPoolWindow") + self.process_pool_window.set_default_size(500, 400) + self._gtk_handlers = [] + self._gtk_handlers.extend(( + (self.process_pool_window, "delete-event", self.toggle_process_pool_window, False), + (self.process_pool_window, "destroy", self.toggle_process_pool_window, False))) + self._gtk_handlers.append(( + self.gui.get_object("ProcessPoolWindowClose"), "clicked", + self.toggle_process_pool_window, False)) + self.gui.get_object("ProcessPoolRefreshInterval").set_value(3) + self.process_pool_model = self.gui.get_object("ProcessPoolStatisticsModel") + # show/hide controls + self.enable_parallel_processes = self.gui.get_object("EnableParallelProcesses") + if pycam.Utils.threading.is_multiprocessing_available(): + self.gui.get_object("ParallelProcessingDisabledLabel").hide() + if pycam.Utils.threading.is_server_mode_available(): + self.gui.get_object("ServerModeDisabledLabel").hide() + else: + self.gui.get_object("ServerModeSettingsFrame").hide() + else: + self.gui.get_object("ParallelProcessSettingsBox").hide() + self.gui.get_object("EnableParallelProcesses").hide() + self._gtk_handlers.append((self.enable_parallel_processes, + "toggled", self.handle_parallel_processes_settings)) + self.number_of_processes = self.gui.get_object("NumberOfProcesses") + self.number_of_processes.set_value(pycam.Utils.threading.get_number_of_processes()) + self.server_port_local_obj = self.gui.get_object("ServerPortLocal") + self.server_port_remote_obj = self.gui.get_object("RemoteServerPort") + self.auth_key_obj = self.gui.get_object("ServerPassword") + self._gtk_handlers.extend(( + (self.number_of_processes, "value-changed", + self.handle_parallel_processes_settings), + (self.gui.get_object("EnableServerMode"), "toggled", + self.initialize_multiprocessing), + (self.gui.get_object("ServerPasswordGenerate"), "clicked", + self.generate_random_server_password), + (self.gui.get_object("ServerPasswordShow"), "toggled", + self.update_parallel_processes_settings))) + cpu_cores = pycam.Utils.threading.get_number_of_cores() + if cpu_cores is None: + cpu_cores = "unknown" + self.gui.get_object("AvailableCores").set_label(str(cpu_cores)) + toggle_button = self.gui.get_object("ToggleProcessPoolWindow") + self._gtk_handlers.append((toggle_button, "toggled", self.toggle_process_pool_window)) + self.register_gtk_accelerator("processes", toggle_button, None, + "ToggleProcessPoolWindow") + self.core.register_ui("view_menu", "ToggleProcessPoolWindow", toggle_button, 40) + self.register_gtk_handlers(self._gtk_handlers) + self.enable_parallel_processes.set_active( + pycam.Utils.threading.is_multiprocessing_enabled()) + self.update_parallel_processes_settings() + return True + + def teardown(self): + self.enable_parallel_processes.set_active(False) + if self.gui: + self.unregister_gtk_handlers(self._gtk_handlers) + self.process_pool_window.hide() + self.core.unregister_ui("preferences", self.gui.get_object("MultiprocessingFrame")) + toggle_button = self.gui.get_object("ToggleProcessPoolWindow") + self.core.unregister_ui("view_menu", toggle_button) + self.unregister_gtk_accelerator("processes", toggle_button) + + def toggle_process_pool_window(self, widget=None, value=None, action=None): + toggle_process_pool_checkbox = self.gui.get_object("ToggleProcessPoolWindow") + checkbox_state = toggle_process_pool_checkbox.get_active() + if value is None: + new_state = checkbox_state + else: + if action is None: + new_state = value + else: + new_state = action + if new_state: + is_available = pycam.Utils.threading.is_pool_available() + disabled_box = self.gui.get_object("ProcessPoolDisabledBox") + statistics_box = self.gui.get_object("ProcessPoolStatisticsBox") + if is_available: + disabled_box.hide() + statistics_box.show() + # start the refresh function + interval = int(max(1, + self.gui.get_object("ProcessPoolRefreshInterval").get_value())) + self._gobject.timeout_add_seconds(interval, self.update_process_pool_statistics, + interval) + else: + disabled_box.show() + statistics_box.hide() + self.process_pool_window.show() + else: + self.process_pool_window.hide() + toggle_process_pool_checkbox.set_active(new_state) + # don't destroy the window with a "destroy" event + return True + + def update_process_pool_statistics(self, original_interval): + stats = pycam.Utils.threading.get_pool_statistics() + model = self.process_pool_model + model.clear() + for item in stats: + model.append(item) + self.gui.get_object("ProcessPoolConnectedWorkersValue").set_text(str(len(stats))) + details = pycam.Utils.threading.get_task_statistics() + detail_text = os.linesep.join(["%s: %s" % (key, value) + for (key, value) in details.items()]) + self.gui.get_object("ProcessPoolDetails").set_text(detail_text) + current_interval = int(max(1, + self.gui.get_object("ProcessPoolRefreshInterval").get_value())) + if original_interval != current_interval: + # initiate a new repetition + self._gobject.timeout_add_seconds( + current_interval, self.update_process_pool_statistics, current_interval) + # stop the current repetition + return False + else: + # don't repeat, if the window is hidden + return self.gui.get_object("ToggleProcessPoolWindow").get_active() + + def generate_random_server_password(self, widget=None): + all_characters = string.letters + string.digits + random_pw = "".join([random.choice(all_characters) for i in range(12)]) + self.auth_key_obj.set_text(random_pw) + + def update_parallel_processes_settings(self, widget=None): + parallel_settings = self.gui.get_object("ParallelProcessSettingsBox") + server_enabled = self.gui.get_object("EnableServerMode") + server_mode_settings = self.gui.get_object("ServerModeSettingsTable") + # update the show/hide state of the password + hide_password = self.gui.get_object("ServerPasswordShow").get_active() + self.auth_key_obj.set_visibility(hide_password) + if (self.gui.get_object("NumberOfProcesses").get_value() == 0) \ + and self.enable_parallel_processes.get_active(): + self.gui.get_object("ZeroProcessesWarning").show() + else: + self.gui.get_object("ZeroProcessesWarning").hide() + if self.enable_parallel_processes.get_active(): + parallel_settings.set_sensitive(True) + if server_enabled.get_active(): + # don't allow changes for an active connection + server_mode_settings.set_sensitive(False) + else: + server_mode_settings.set_sensitive(True) + else: + parallel_settings.set_sensitive(False) + server_enabled.set_active(False) + # check suitability of collision detection engines + self.core.emit_event("parallel-processing-changed") + + def handle_parallel_processes_settings(self, widget=None): + new_num_of_processes = self.number_of_processes.get_value() + new_enable_parallel = self.enable_parallel_processes.get_active() + old_num_of_processes = pycam.Utils.threading.get_number_of_processes() + old_enable_parallel = pycam.Utils.threading.is_multiprocessing_enabled() + if (old_num_of_processes != new_num_of_processes) \ + or (old_enable_parallel != new_enable_parallel): + self.initialize_multiprocessing() + + def initialize_multiprocessing(self, widget=None): + complete_area = self.gui.get_object("MultiprocessingFrame") + # prevent any further actions while the connection is established + complete_area.set_sensitive(False) + # wait for the above "set_sensitive" to finish + get_mainloop().update() + enable_parallel = self.enable_parallel_processes.get_active() + enable_server_obj = self.gui.get_object("EnableServerMode") + enable_server = enable_server_obj.get_active() + remote_host = self.gui.get_object("RemoteServerHostname").get_text() + if remote_host: + remote_port = int(self.server_port_remote_obj.get_value()) + remote = "%s:%s" % (remote_host, remote_port) + else: + remote = None + local_port = int(self.server_port_local_obj.get_value()) + auth_key = self.auth_key_obj.get_text() + auth_key = None if auth_key is None else auth_key.encode("utf-8") + if not auth_key and enable_parallel and enable_server: + self.log.error("You need to provide a password for this connection.") + enable_server_obj.set_active(False) + elif enable_parallel: + if enable_server and \ + (pycam.Utils.get_platform() == pycam.Utils.OSPlatform.WINDOWS): + if self.number_of_processes.get_value() > 0: + self.log.warn("Mixed local and remote processes are currently not available " + "on the Windows platform. Setting the number of local processes " + "to zero.") + self.number_of_processes.set_value(0) + self.number_of_processes.set_sensitive(False) + else: + self.number_of_processes.set_sensitive(True) + num_of_processes = int(self.number_of_processes.get_value()) + error = pycam.Utils.threading.init_threading( + number_of_processes=num_of_processes, enable_server=enable_server, remote=remote, + server_credentials=auth_key, local_port=local_port) + if error: + self.log.error("Failed to start server: %s", error) + pycam.Utils.threading.cleanup() + enable_server_obj.set_active(False) + else: + pycam.Utils.threading.cleanup() + self.log.info("Multiprocessing disabled") + # set the label of the "connect" button + if enable_server_obj.get_active(): + info = self._gtk.stock_lookup(self._gtk.STOCK_DISCONNECT) + else: + info = self._gtk.stock_lookup(self._gtk.STOCK_CONNECT) + enable_server_obj.set_label(info.label) + complete_area.set_sensitive(True) + self.update_parallel_processes_settings() diff --git a/pycam/pycam/Plugins/ParameterGroupManager.py b/pycam/pycam/Plugins/ParameterGroupManager.py new file mode 100644 index 00000000..31946a99 --- /dev/null +++ b/pycam/pycam/Plugins/ParameterGroupManager.py @@ -0,0 +1,249 @@ +""" +Copyright 2011 Lars Kruse + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + +import copy +import functools + +import pycam.Plugins +from pycam.Utils import MultiLevelDictionaryAccess + + +class ParameterGroupManager(pycam.Plugins.PluginBase): + + CATEGORIES = ["Plugins"] + + def setup(self): + self._groups = {} + self._parameterized_function_cache = [] + self.core.set("get_parameter_values", self.get_parameter_values) + self.core.set("set_parameter_values", self.set_parameter_values) + self.core.set("get_default_parameter_values", self.get_default_parameter_values) + self.core.set("get_parameter_sets", self.get_parameter_sets) + self.core.set("register_parameter_group", self.register_parameter_group) + self.core.set("register_parameter_set", self.register_parameter_set) + self.core.set("register_parameter", self.register_parameter) + self.core.set("unregister_parameter_group", self.unregister_parameter_group) + self.core.set("unregister_parameter_set", self.unregister_parameter_set) + self.core.set("unregister_parameter", self.unregister_parameter) + return True + + def teardown(self): + for name in ("set_parameter_values", "get_parameter_values", "get_parameter_sets", + "register_parameter_set", "register_parameter_group", "register_parameter", + "unregister_parameter_set", "unregister_parameter_group", + "unregister_parameter"): + self.core.set(name, None) + + def _get_parameterized_function(self, func, *args): + wanted_key = (func, args) + for key, value in self._parameterized_function_cache: + if key == wanted_key: + return value + else: + partial_func = functools.partial(func, *args) + self._parameterized_function_cache.append((wanted_key, partial_func)) + return partial_func + + def register_parameter_group(self, name, changed_set_event=None, changed_set_list_event=None, + get_related_parameter_names=None): + if name in self._groups: + self.log.debug("Registering parameter group '%s' again", name) + self._groups[name] = {"changed_set_event": changed_set_event, + "changed_set_list_event": changed_set_list_event, + "get_related_parameter_names": get_related_parameter_names, + "sets": {}, + "parameters": {}} + if changed_set_event: + self.core.register_event( + changed_set_event, + self._get_parameterized_function(self._update_widgets_visibility, name)) + + def _update_widgets_visibility(self, group_name): + group = self._groups[group_name] + related_parameter_names = group["get_related_parameter_names"]() + for param in group["parameters"].values(): + is_visible = param["name"] in related_parameter_names + control = param["control"] + if control is None: + pass + elif hasattr(control, "set_visible"): + control.set_visible(is_visible) + elif is_visible: + control.show() + else: + control.hide() + + def register_parameter_set(self, group_name, name, label, func, parameters=None, weight=100): + if group_name not in self._groups: + self.log.info("Unknown parameter group: %s", group_name) + return + group = self._groups[group_name] + if name in group["sets"]: + self.log.debug("Registering parameter set '%s' again", name) + if parameters is None: + parameters = {} + group["sets"][name] = {"name": name, "label": label, "func": func, + "parameters": copy.deepcopy(parameters), "weight": weight} + event = group["changed_set_list_event"] + if event: + self.core.emit_event(event) + + def register_parameter(self, group_name, name, control, get_func=None, set_func=None): + if isinstance(name, (list, tuple)): + name = tuple(name) + if group_name not in self._groups: + self.log.info("Unknown parameter group: %s", group_name) + return + group = self._groups[group_name] + if name in group["parameters"]: + self.log.debug("Registering parameter '%s' in group '%s' again", name, group_name) + if not get_func: + get_func = control.get_value + if not set_func: + set_func = control.set_value + group["parameters"][name] = {"name": name, "control": control, "get_func": get_func, + "set_func": set_func} + + def get_default_parameter_values(self, group_name, set_name=None): + """ retrieve the default values of a given parameter group + + @param group_name: name of the parameter group + """ + result = {} + if group_name not in self._groups: + self.log.info("Default Parameter Values: unknown parameter group: %s", group_name) + return result + group = self._groups[group_name] + if not group["sets"]: + self.log.info("Default Parameter Values: missing parameter sets in group: %s", + group_name) + return result + multi_level_access = MultiLevelDictionaryAccess(result) + if set_name is None: + default_set = sorted(group["sets"].values(), key=lambda item: item["weight"])[0] + else: + try: + default_set = group["sets"][set_name] + except KeyError: + self.log.warning("Default Parameter Values: failed to find request set: %s", + set_name) + return result + for key, value in default_set["parameters"].items(): + try: + multi_level_access.set_value(key, value) + except TypeError as exc: + self.log.error("Failed to get default parameter '%s' for group '%s': %s", + key, group_name, exc) + return result + + def get_parameter_values(self, group_name): + if group_name not in self._groups: + self.log.info("Unknown parameter group: %s", group_name) + return {} + result = {} + multi_level_access = MultiLevelDictionaryAccess(result) + group = self._groups[group_name] + related_parameter_names = group["get_related_parameter_names"]() + for parameter in group["parameters"].values(): + key = parameter["name"] + if key in related_parameter_names: + value = parameter["get_func"]() + try: + multi_level_access.set_value(key, value) + except TypeError as exc: + self.log.error("Failed to get parameter '%s' for group '%s': %s", + key, group_name, exc) + return result + + def set_parameter_values(self, group_name, value_dict): + if group_name not in self._groups: + self.log.info("Unknown parameter group: %s", group_name) + return + group = self._groups[group_name] + multi_level_access = MultiLevelDictionaryAccess(value_dict) + for parameter in group["parameters"].values(): + try: + value = multi_level_access.get_value(parameter["name"]) + except KeyError: + # the incoming value dictionary does not contain the key - we can skip it + pass + except TypeError as exc: + # this should not happen: the value dictionary is malformed + self.log.error("Failed to get parameter '%s' for group '%s': %s", + parameter["name"], group_name, exc) + else: + parameter["set_func"](value) + + def get_parameter_sets(self, group_name): + if group_name not in self._groups: + self.log.info("Unknown parameter group: %s", group_name) + return + group = self._groups[group_name] + return dict(group["sets"]) + + def unregister_parameter_group(self, group_name): + if group_name not in self._groups: + self.log.debug("Tried to unregister a non-existing parameter group: %s", group_name) + return + group = self._groups[group_name] + if group["parameters"]: + self.log.debug("Unregistering parameter from group '%s', but it still contains " + "parameters: %s", group_name, ", ".join(group["parameters"].keys())) + for name in list(group["parameters"]): + self.unregister_parameter(group_name, name) + if group["sets"]: + self.log.debug("Unregistering parameter group (%s), but it still contains sets: %s", + group_name, ", ".join(group["sets"].keys())) + for set_name in group["sets"]: + self.unregister_parameter_set(group_name, set_name) + changed_set_event = group["changed_set_event"] + if changed_set_event: + self.core.unregister_event( + changed_set_event, + self._get_parameterized_function(self._update_widgets_visibility, group_name)) + del self._groups[group_name] + + def unregister_parameter_set(self, group_name, set_name): + if group_name not in self._groups: + self.log.debug("Tried to unregister set '%s' from a non-existing parameter group: %s", + set_name, group_name) + return + group = self._groups[group_name] + if set_name not in group["sets"]: + self.log.debug("Tried to unregister non-existing parameter set '%s' from group '%s'", + set_name, group_name) + return + del group["sets"][set_name] + event = group["changed_set_list_event"] + if event: + self.core.emit_event(event) + + def unregister_parameter(self, group_name, name): + if isinstance(name, (list, tuple)): + name = tuple(name) + if group_name not in self._groups: + self.log.debug("Tried to unregister parameter '%s' from a non-existing parameter " + "group: %s", name, group_name) + return + group = self._groups[group_name] + if name in group["parameters"]: + del group["parameters"][name] + else: + self.log.debug("Tried to unregister the non-existing parameter '%s' from group '%s'", + name, group_name) diff --git a/pycam/pycam/Plugins/PathParameters.py b/pycam/pycam/Plugins/PathParameters.py new file mode 100644 index 00000000..91482af9 --- /dev/null +++ b/pycam/pycam/Plugins/PathParameters.py @@ -0,0 +1,287 @@ +""" +Copyright 2011 Lars Kruse + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + + +import pycam.Plugins +import pycam.Gui.ControlsGTK +import pycam.Toolpath.MotionGrid + + +class PathParamOverlap(pycam.Plugins.PluginBase): + + DEPENDS = ["Processes"] + CATEGORIES = ["Process", "Parameter"] + + def setup(self): + # configure the input/output converter + self.control = pycam.Gui.ControlsGTK.InputNumber( + lower=0, upper=99, digits=0, increment=10, + change_handler=lambda widget=None: self.core.emit_event("process-control-changed")) + self.control.set_conversion( + set_conv=lambda float_value: int(float_value * 100.0), + get_conv=lambda percent: percent / 100.0) + self.core.get("register_parameter")("process", "overlap", self.control) + self.core.register_ui("process_path_parameters", "Overlap [%]", self.control.get_widget(), + weight=10) + return True + + def teardown(self): + self.core.unregister_ui("process_path_parameters", self.control.get_widget()) + self.core.get("unregister_parameter")("process", "overlap") + + +class PathParamStepDown(pycam.Plugins.PluginBase): + + DEPENDS = ["Processes"] + CATEGORIES = ["Process", "Parameter"] + + def setup(self): + self.control = pycam.Gui.ControlsGTK.InputNumber( + lower=0.01, digits=2, start=1, + change_handler=lambda widget=None: self.core.emit_event("process-control-changed")) + self.core.get("register_parameter")("process", "step_down", self.control) + self.core.register_ui("process_path_parameters", "Step down", self.control.get_widget(), + weight=20) + return True + + def teardown(self): + self.core.unregister_ui("process_path_parameters", self.control.get_widget()) + self.core.get("unregister_parameter")("process", "step_down") + + +class PathParamMaterialAllowance(pycam.Plugins.PluginBase): + + DEPENDS = ["Processes"] + CATEGORIES = ["Process", "Parameter"] + + def setup(self): + self.control = pycam.Gui.ControlsGTK.InputNumber( + start=0, lower=0, digits=2, + change_handler=lambda widget=None: self.core.emit_event("process-control-changed")) + self.core.get("register_parameter")("process", "material_allowance", self.control) + self.core.register_ui("process_path_parameters", "Material allowance", + self.control.get_widget(), weight=30) + return True + + def teardown(self): + self.core.unregister_ui("process_path_parameters", self.control.get_widget()) + self.core.get("unregister_parameter")("process", "material_allowance") + + +class PathParamMillingStyle(pycam.Plugins.PluginBase): + + DEPENDS = ["Processes", "PathParamPattern"] + CATEGORIES = ["Process", "Parameter"] + + def setup(self): + self.control = pycam.Gui.ControlsGTK.InputChoice( + (("ignore", pycam.Toolpath.MotionGrid.MillingStyle.IGNORE.value), + ("climb / down", pycam.Toolpath.MotionGrid.MillingStyle.CLIMB.value), + ("conventional / up", pycam.Toolpath.MotionGrid.MillingStyle.CONVENTIONAL.value)), + change_handler=lambda widget=None: self.core.emit_event("process-control-changed")) + self.core.get("register_parameter")("path_pattern", "milling_style", self.control) + self.core.get("register_parameter")("process", "milling_style", self.control) + self.core.register_ui("process_path_parameters", "Milling style", + self.control.get_widget(), weight=50) + return True + + def teardown(self): + self.core.unregister_ui("process_path_parameters", self.control.get_widget()) + self.core.get("unregister_parameter")("path_pattern", "milling_style") + self.core.get("unregister_parameter")("process", "milling_style") + + +class PathParamGridDirection(pycam.Plugins.PluginBase): + + DEPENDS = ["Processes", "PathParamPattern"] + CATEGORIES = ["Process", "Parameter"] + + def setup(self): + self.control = pycam.Gui.ControlsGTK.InputChoice( + (("x", pycam.Toolpath.MotionGrid.GridDirection.X.value), + ("y", pycam.Toolpath.MotionGrid.GridDirection.Y.value), + ("xy", pycam.Toolpath.MotionGrid.GridDirection.XY.value)), + change_handler=lambda widget=None: self.core.emit_event("process-control-changed")) + self.core.get("register_parameter")("path_pattern", "grid_direction", self.control) + self.core.get("register_parameter")("process", "grid_direction", self.control) + self.core.register_ui("process_path_parameters", "Direction", self.control.get_widget(), + weight=40) + return True + + def teardown(self): + self.core.unregister_ui("process_path_parameters", self.control.get_widget()) + self.core.get("unregister_parameter")("path_pattern", "grid_direction") + self.core.get("unregister_parameter")("process", "grid_direction") + + +class PathParamSpiralDirection(pycam.Plugins.PluginBase): + + DEPENDS = ["Processes", "PathParamPattern"] + CATEGORIES = ["Process", "Parameter"] + + def setup(self): + self.control = pycam.Gui.ControlsGTK.InputChoice( + (("outside -> center", pycam.Toolpath.MotionGrid.SpiralDirection.IN.value), + ("center -> outside", pycam.Toolpath.MotionGrid.SpiralDirection.OUT.value)), + change_handler=lambda widget=None: self.core.emit_event("process-control-changed")) + self.core.get("register_parameter")("path_pattern", "spiral_direction", self.control) + self.core.register_ui("process_path_parameters", "Direction", self.control.get_widget(), + weight=40) + return True + + def teardown(self): + self.core.unregister_ui("process_path_parameters", self.control.get_widget()) + self.core.get("unregister_parameter")("path_pattern", "spiral_direction") + + +class PathParamPattern(pycam.Plugins.PluginBase): + + DEPENDS = ["Processes", "ParameterGroupManager"] + CATEGORIES = ["Process", "Parameter"] + + def setup(self): + self.choices = [] + self.control = pycam.Gui.ControlsGTK.InputChoice( + [], change_handler=lambda widget=None: self.core.emit_event("process-control-changed")) + self.core.get("register_parameter")("process", "path_pattern", self.control) + self.core.get("register_parameter_group")( + "path_pattern", changed_set_event="process-path-pattern-changed", + changed_set_list_event="process-path-pattern-list-changed", + get_related_parameter_names=self._get_pattern_parameter_names) + self.core.register_ui("process_path_parameters", "Pattern", self.control.get_widget(), + weight=5) + self._event_handlers = ( + ("process-path-pattern-list-changed", self._update_pattern_list_widget), + ("process-changed", "process-path-pattern-changed")) + self.register_event_handlers(self._event_handlers) + return True + + def teardown(self): + self.core.unregister_ui("process_path_parameters", self.control.get_widget()) + self.unregister_event_handlers(self._event_handlers) + self.core.get("unregister_parameter")("process", "path_pattern") + self.core.get("unregister_parameter_group")("path_pattern") + + def _update_pattern_list_widget(self): + patterns = list(self.core.get("get_parameter_sets")("path_pattern").values()) + patterns.sort(key=lambda item: item["weight"]) + self.choices = [] + for pattern in patterns: + self.choices.append((pattern["label"], pattern["name"])) + self.control.update_choices(self.choices) + if not self.control.get_value() and self.choices: + self.control.set_value({"name": self.choices[0][1], "parameters": {}}) + + def _get_pattern_parameter_names(self): + pattern_name = self.control.get_value() + # The path pattern is not used for all process strategies. Thus we need to check, whether + # we are currently in use (i.e. visible). + is_visible = self.control.is_visible() + if pattern_name and is_visible: + pattern = self.core.get("get_parameter_sets")("path_pattern")[pattern_name] + return set(pattern["parameters"].keys()) + else: + return set() + + +class PathParamRoundedSpiralCorners(pycam.Plugins.PluginBase): + + DEPENDS = {"Processes", "PathParamPattern"} + CATEGORIES = ["Process", "Parameter"] + + def setup(self): + self.control = pycam.Gui.ControlsGTK.InputCheckBox( + change_handler=lambda widget=None: self.core.emit_event("process-control-changed")) + self.core.get("register_parameter")("path_pattern", "rounded_corners", self.control) + self.core.register_ui("process_path_parameters", "Rounded corners", + self.control.get_widget(), weight=80) + return True + + def teardown(self): + self.core.unregister_ui("process_path_parameters", self.control.get_widget()) + self.core.get("unregister_parameter")("path_pattern", "rounded_corners") + + +class PathParamRadiusCompensation(pycam.Plugins.PluginBase): + + DEPENDS = ["Processes"] + CATEGORIES = ["Process", "Parameter"] + + def setup(self): + self.control = pycam.Gui.ControlsGTK.InputCheckBox( + change_handler=lambda widget=None: self.core.emit_event("process-control-changed")) + self.core.get("register_parameter")("process", "radius_compensation", self.control) + self.core.register_ui("process_path_parameters", "Radius compensation", + self.control.get_widget(), weight=80) + return True + + def teardown(self): + self.core.unregister_ui("process_path_parameters", self.control.get_widget()) + self.core.get("unregister_parameter")("process", "radius_compensation") + + +class PathParamTraceModel(pycam.Plugins.PluginBase): + + DEPENDS = ["Processes", "Models"] + CATEGORIES = ["Process", "Parameter"] + + def setup(self): + self.control = pycam.Gui.ControlsGTK.InputTable( + [], change_handler=lambda widget=None: self.core.emit_event("process-control-changed")) + self.core.get("register_parameter")("process", "trace_models", self.control) + self.core.register_ui("process_path_parameters", "Trace models (2D)", + self.control.get_widget(), weight=5) + self.core.register_event("model-list-changed", self._update_models) + self.core.register_event("model-changed", self._update_models) + return True + + def teardown(self): + self.core.unregister_event("model-changed", self._update_models) + self.core.unregister_event("model-list-changed", self._update_models) + self.core.get("unregister_parameter")("process", "trace_models") + self.core.unregister_ui("process_path_parameters", self.control.get_widget()) + + def _update_models(self): + choices = [] + for model in self.core.get("models").get_all(): + if hasattr(model.get_model(), "get_polygons"): + choices.append((model.get_application_value("name", model.get_id()), + model.get_id())) + self.control.update_choices(choices) + + +class PathParamPocketingType(pycam.Plugins.PluginBase): + + DEPENDS = ["Processes"] + CATEGORIES = ["Process", "Parameter"] + + def setup(self): + self.control = pycam.Gui.ControlsGTK.InputChoice( + (("none", pycam.Toolpath.MotionGrid.PocketingType.NONE.value), + ("holes", pycam.Toolpath.MotionGrid.PocketingType.HOLES.value), + ("material", pycam.Toolpath.MotionGrid.PocketingType.MATERIAL.value)), + change_handler=lambda widget=None: self.core.emit_event("process-control-changed")) + self.core.get("register_parameter")("process", "pocketing_type", self.control) + self.core.register_ui("process_path_parameters", "Pocketing", self.control.get_widget(), + weight=60) + return True + + def teardown(self): + self.core.unregister_ui("process_path_parameters", self.control.get_widget()) + self.core.get("unregister_parameter")("process", "pocketing_type") diff --git a/pycam/pycam/Plugins/PathPatterns.py b/pycam/pycam/Plugins/PathPatterns.py new file mode 100644 index 00000000..58b89612 --- /dev/null +++ b/pycam/pycam/Plugins/PathPatterns.py @@ -0,0 +1,57 @@ +""" +Copyright 2011 Lars Kruse + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + + +import pycam.Plugins +import pycam.Toolpath.MotionGrid + + +class PathPatternSpiral(pycam.Plugins.PluginBase): + + DEPENDS = ["ParameterGroupManager", "PathParamPattern", "PathParamMillingStyle", + "PathParamSpiralDirection", "PathParamRoundedSpiralCorners"] + CATEGORIES = ["Process", "Path pattern"] + + def setup(self): + parameters = {"milling_style": pycam.Toolpath.MotionGrid.MillingStyle.IGNORE, + "spiral_direction": None, + "rounded_corners": False} + self.core.get("register_parameter_set")("path_pattern", "spiral", "Spiral", None, + parameters=parameters, weight=30) + return True + + def teardown(self): + self.core.get("unregister_parameter_set")("path_pattern", "spiral") + + +class PathPatternGrid(pycam.Plugins.PluginBase): + + DEPENDS = ["ParameterGroupManager", "PathParamPattern", "PathParamMillingStyle", + "PathParamGridDirection"] + CATEGORIES = ["Process", "Path pattern"] + + def setup(self): + parameters = {"milling_style": pycam.Toolpath.MotionGrid.MillingStyle.IGNORE, + "grid_direction": pycam.Toolpath.MotionGrid.GridDirection.X} + self.core.get("register_parameter_set")("path_pattern", "grid", "Grid", + None, parameters=parameters, weight=10) + return True + + def teardown(self): + self.core.get("unregister_parameter_set")("path_pattern", "grid") diff --git a/pycam/pycam/Plugins/PluginSelector.py b/pycam/pycam/Plugins/PluginSelector.py new file mode 100644 index 00000000..d7fbad4d --- /dev/null +++ b/pycam/pycam/Plugins/PluginSelector.py @@ -0,0 +1,183 @@ +""" +Copyright 2011 Lars Kruse + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + +import os + +import pycam.Plugins + + +class PluginSelector(pycam.Plugins.PluginBase): + + UI_FILE = "plugin_selector.ui" + CATEGORIES = ["Plugins"] + COLUMN_NAME, COLUMN_DESCRIPTION, COLUMN_ENABLED, COLUMN_DEPENDS, COLUMN_DEPENDS_OK, \ + COLUMN_SOURCE = range(6) + + def setup(self): + if self.gui: + self.plugin_window = self.gui.get_object("PluginManagerWindow") + self._gtk_handlers = [] + self._gtk_handlers.extend(( + (self.plugin_window, "delete-event", self.toggle_plugin_window, False), + (self.plugin_window, "destroy", self.toggle_plugin_window, False))) + self._gtk_handlers.append((self.gui.get_object("ClosePluginManager"), "clicked", + self.toggle_plugin_window, False)) + self._treemodel = self.gui.get_object("PluginsModel") + self._treemodel.clear() + action = self.gui.get_object("TogglePluginWindow") + self._gtk_handlers.append((action, "toggled", self.toggle_plugin_window)) + self.register_gtk_accelerator("plugins", action, None, "TogglePluginWindow") + self.core.register_ui("view_menu", "TogglePluginWindow", action, 60) + # model filters + model_filter = self.gui.get_object("PluginsModel").filter_new() + for obj_name in ("StatusFilter", "CategoryFilter"): + self._gtk_handlers.append((self.gui.get_object(obj_name), "changed", + lambda widget: model_filter.refilter())) + self.gui.get_object("PluginsTable").set_model(model_filter) + model_filter.set_visible_func(self._filter_set_visible) + self._gtk_handlers.append((self.gui.get_object("PluginsEnabledCell"), "toggled", + self.toggle_plugin_state)) + self.core.register_event("plugin-list-changed", self._update_plugin_model) + self.register_gtk_handlers(self._gtk_handlers) + self._update_plugin_model() + return True + + def teardown(self): + if self.gui: + self.unregister_gtk_handlers(self._gtk_handlers) + self.plugin_window.hide() + action = self.gui.get_object("TogglePluginWindow") + self.core.unregister_ui("view_menu", action) + self.core.unregister_event("plugin-list-changed", self._update_plugin_model) + + def toggle_plugin_window(self, widget=None, value=None, action=None): + toggle_plugin_button = self.gui.get_object("TogglePluginWindow") + checkbox_state = toggle_plugin_button.get_active() + if value is None: + new_state = checkbox_state + else: + if action is None: + new_state = value + else: + new_state = action + if new_state: + self.plugin_window.show() + else: + self.plugin_window.hide() + toggle_plugin_button.set_active(new_state) + # don't destroy the window with a "destroy" event + return True + + def _filter_set_visible(self, model, m_iter, data): + manager = self.core.get("plugin-manager") + status_filter = self.gui.get_object("StatusFilter") + status_index = status_filter.get_active() + if status_index > 0: + status_name = status_filter.get_model()[status_index][1] + cat_filter = self.gui.get_object("CategoryFilter") + cat_index = cat_filter.get_active() + if cat_index > 0: + cat_name = cat_filter.get_model()[cat_index][0] + plugin_name = model.get_value(m_iter, 0) + if not plugin_name: + return False + plugin = manager.get_plugin(plugin_name) + if (cat_index > 0) and (cat_name not in plugin.CATEGORIES): + return False + elif (status_index > 0): + if (status_name == "enabled") and not manager.get_plugin_state(plugin_name): + return False + elif (status_name == "disabled") and manager.get_plugin_state(plugin_name): + return False + elif (status_name == "dep_missing") \ + and not manager.get_plugin_missing_dependencies(plugin_name): + return False + elif (status_name == "dep_satisfied") \ + and (manager.get_plugin_state(plugin_name) + or manager.get_plugin_missing_dependencies(plugin_name)): + return False + elif (status_name == "not_required") \ + and (not manager.get_plugin_state(plugin_name) + or manager.is_plugin_required(plugin_name) + or (plugin_name == "PluginSelector")): + return False + return True + + def _update_plugin_model(self): + manager = self.core.get("plugin-manager") + names = manager.get_plugin_names() + model = self._treemodel + model.clear() + categories = {} + for name in names: + plugin = manager.get_plugin(name) + for cat_name in plugin.CATEGORIES: + categories[cat_name] = True + enabled = manager.get_plugin_state(name) + depends_missing = manager.get_plugin_missing_dependencies(name) + is_required = manager.is_plugin_required(name) + satisfied = not (bool(depends_missing) or is_required) + # never disable the manager + if plugin == self: + satisfied = False + depends_markup = [] + for depend in plugin.DEPENDS: + if depend in depends_missing: + depends_markup.append('%s' % depend) + else: + depends_markup.append(depend) + model.append((name, "Beschreibung", enabled, os.linesep.join(depends_markup), + satisfied, "Hint")) + self.gui.get_object("PluginsDescriptionColumn").queue_resize() + self.gui.get_object("PluginsTable").queue_resize() + # update the category filter + categories = list(categories.keys()) + categories.sort() + categories.insert(0, "All categories") + model = self.gui.get_object("CategoryList") + cat_index = self.gui.get_object("CategoryFilter").get_active() + if cat_index >= 0: + cat_selection = model[cat_index][0] + else: + cat_selection = None + model.clear() + for cat_name in categories: + model.append((cat_name, )) + if cat_selection in categories: + cat_index = categories.index(cat_selection) + else: + cat_index = 0 + self.gui.get_object("CategoryFilter").set_active(cat_index) + # status selection + status_selector = self.gui.get_object("StatusFilter") + if status_selector.get_active() < 0: + status_selector.set_active(0) + # trigger an update of the filter model + self.gui.get_object("PluginsTable").get_model().refilter() + + def toggle_plugin_state(self, cell, path): + filter_model = self.gui.get_object("PluginsTable").get_model() + plugin_name = filter_model[int(path)][self.COLUMN_NAME] + manager = self.core.get("plugin-manager") + enabled = manager.get_plugin_state(plugin_name) + if enabled: + manager.disable_plugin(plugin_name) + else: + manager.enable_plugin(plugin_name) + self._update_plugin_model() diff --git a/pycam/pycam/Plugins/ProcessStrategies.py b/pycam/pycam/Plugins/ProcessStrategies.py new file mode 100644 index 00000000..2c80c168 --- /dev/null +++ b/pycam/pycam/Plugins/ProcessStrategies.py @@ -0,0 +1,98 @@ +""" +Copyright 2011 Lars Kruse + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + + +import pycam.Plugins +import pycam.Toolpath.MotionGrid + + +class ProcessStrategySlicing(pycam.Plugins.PluginBase): + + DEPENDS = ["ParameterGroupManager", "PathParamOverlap", "PathParamStepDown", + "PathParamMaterialAllowance", "PathParamPattern"] + CATEGORIES = ["Process"] + + def setup(self): + parameters = {"overlap": 0.1, + "step_down": 1.0, + "material_allowance": 0, + "path_pattern": None} + self.core.get("register_parameter_set")("process", "slice", "Slice removal", None, + parameters=parameters, weight=10) + return True + + def teardown(self): + self.core.get("unregister_parameter_set")("process", "slice") + + +class ProcessStrategyContour(pycam.Plugins.PluginBase): + + DEPENDS = ["Processes", "PathParamStepDown", "PathParamMaterialAllowance", + "PathParamMillingStyle"] + CATEGORIES = ["Process"] + + def setup(self): + parameters = {"step_down": 1.0, + "material_allowance": 0, + "overlap": 0.8, + "milling_style": pycam.Toolpath.MotionGrid.MillingStyle.IGNORE} + self.core.get("register_parameter_set")("process", "contour", "Waterline", None, + parameters=parameters, weight=20) + return True + + def teardown(self): + self.core.get("unregister_parameter_set")("process", "contour") + + +class ProcessStrategySurfacing(pycam.Plugins.PluginBase): + + DEPENDS = ["ParameterGroupManager", "PathParamOverlap", "PathParamMaterialAllowance", + "PathParamPattern"] + CATEGORIES = ["Process"] + + def setup(self): + parameters = {"overlap": 0.6, + "material_allowance": 0, + "path_pattern": None} + self.core.get("register_parameter_set")("process", "surface", "Surfacing", None, + parameters=parameters, weight=50) + return True + + def teardown(self): + self.core.get("unregister_parameter_set")("process", "surface") + + +class ProcessStrategyEngraving(pycam.Plugins.PluginBase): + + DEPENDS = ["ParameterGroupManager", "PathParamStepDown", "PathParamMillingStyle", + "PathParamRadiusCompensation", "PathParamTraceModel", "PathParamPocketingType"] + CATEGORIES = ["Process"] + + def setup(self): + parameters = {"step_down": 1.0, + "milling_style": pycam.Toolpath.MotionGrid.MillingStyle.IGNORE, + "radius_compensation": False, + "trace_models": [], + "pocketing_type": pycam.Toolpath.MotionGrid.PocketingType.NONE} + self.core.get("register_parameter_set")("process", "engrave", "Engraving", None, + parameters=parameters, weight=80) + return True + + def teardown(self): + self.core.get("unregister_parameter_set")("process", "engrave") diff --git a/pycam/pycam/Plugins/Processes.py b/pycam/pycam/Plugins/Processes.py new file mode 100644 index 00000000..7bf23cc9 --- /dev/null +++ b/pycam/pycam/Plugins/Processes.py @@ -0,0 +1,225 @@ +""" +Copyright 2011 Lars Kruse + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + +from pycam.Flow.history import merge_history_and_block_events +import pycam.Plugins +import pycam.workspace.data_models + + +class Processes(pycam.Plugins.ListPluginBase): + + DEPENDS = ["ParameterGroupManager"] + CATEGORIES = ["Process"] + UI_FILE = "processes.ui" + COLLECTION_ITEM_TYPE = pycam.workspace.data_models.Process + + def setup(self): + self.core.set("processes", self) + if self.gui and self._gtk: + process_frame = self.gui.get_object("ProcessBox") + process_frame.unparent() + self._gtk_handlers = [] + self.core.register_ui("main", "Processes", process_frame, weight=20) + self._modelview = self.gui.get_object("ProcessEditorTable") + self.set_gtk_modelview(self._modelview) + self.register_model_update(lambda: self.core.emit_event("process-list-changed")) + for action, obj_name in ((self.ACTION_UP, "ProcessMoveUp"), + (self.ACTION_DOWN, "ProcessMoveDown"), + (self.ACTION_DELETE, "ProcessDelete")): + self.register_list_action_button(action, self.gui.get_object(obj_name)) + self._gtk_handlers.append((self.gui.get_object("ProcessNew"), "clicked", + self._process_new)) + # parameters + parameters_box = self.gui.get_object("ProcessParametersBox") + + def clear_parameter_widgets(): + parameters_box.foreach(parameters_box.remove) + + def add_parameter_widget(item, name): + # create a frame with an align and the item inside + if item.get_parent(): + item.unparent() + frame_label = self._gtk.Label() + frame_label.set_markup("%s" % name) + frame = self._gtk.Frame() + frame.set_label_widget(frame_label) + align = self._gtk.Alignment() + frame.add(align) + align.set_padding(0, 3, 12, 3) + align.add(item) + frame.show_all() + parameters_box.pack_start(frame, expand=False, fill=True, padding=0) + + self.core.register_ui_section("process_parameters", add_parameter_widget, + clear_parameter_widgets) + self.core.get("register_parameter_group")( + "process", changed_set_event="process-strategy-changed", + changed_set_list_event="process-strategy-list-changed", + get_related_parameter_names=self._get_selected_strategy_parameter_names) + self.parameter_widget = pycam.Gui.ControlsGTK.ParameterSection() + self.core.register_ui_section("process_path_parameters", + self.parameter_widget.add_widget, + self.parameter_widget.clear_widgets) + self.core.register_ui("process_parameters", "Path parameters", + self.parameter_widget.get_widget(), weight=10) + self._gtk_handlers.append((self._modelview.get_selection(), "changed", + "process-selection-changed")) + self._gtk_handlers.append((self.gui.get_object("NameCell"), "edited", + self.edit_item_name)) + self._treemodel = self.gui.get_object("ProcessList") + self._treemodel.clear() + self._gtk_handlers.append((self.gui.get_object("StrategySelector"), "changed", + "process-control-changed")) + # define cell renderers + self.gui.get_object("NameColumn").set_cell_data_func( + self.gui.get_object("NameCell"), self.render_item_name) + self.gui.get_object("DescriptionColumn").set_cell_data_func( + self.gui.get_object("DescriptionCell"), self._render_process_description) + self._event_handlers = ( + ("process-strategy-list-changed", self._update_strategy_widgets), + ("process-selection-changed", self._update_process_widgets), + ("process-changed", self._update_process_widgets), + ("process-changed", self.force_gtk_modelview_refresh), + ("process-list-changed", self.force_gtk_modelview_refresh), + ("process-control-changed", self._transfer_controls_to_process)) + self.register_gtk_handlers(self._gtk_handlers) + self.register_event_handlers(self._event_handlers) + self.select_strategy(None) + self._update_strategy_widgets() + self._update_process_widgets() + self.register_state_item("processes", self) + self.core.register_namespace("processes", pycam.Plugins.get_filter(self)) + return True + + def teardown(self): + if self.gui and self._gtk: + self.unregister_event_handlers(self._event_handlers) + self.unregister_gtk_handlers(self._gtk_handlers) + self.core.unregister_ui("main", self.gui.get_object("ProcessBox")) + self.core.unregister_ui_section("process_path_parameters") + self.core.unregister_ui("process_parameters", self.parameter_widget.get_widget()) + self.core.unregister_ui_section("process_parameters") + self.core.get("unregister_parameter_group")("process") + self.clear_state_items() + self.core.unregister_namespace("processes") + self.core.set("processes", None) + self.clear() + return True + + def _render_process_description(self, column, cell, model, m_iter, data): + # TODO: describe the strategy + text = "TODO" +# process = self.get_by_path(model.get_path(m_iter)) + cell.set_property("text", text) + + def _update_strategy_widgets(self): + model = self.gui.get_object("StrategyModel") + model.clear() + strategies = list(self.core.get("get_parameter_sets")("process").values()) + strategies.sort(key=lambda item: item["weight"]) + for strategy in strategies: + model.append((strategy["label"], strategy["name"])) + # check if any on the processes became obsolete due to a missing plugin + removal = [] + strat_names = [strategy["name"] for strategy in strategies] + for index, process in enumerate(self.get_all()): + if not process.get_value("strategy").value in strat_names: + removal.append(index) + removal.reverse() + collection = self.get_collection() + for index in removal: + del collection[index] + # show "new" only if a strategy is available + self.gui.get_object("ProcessNew").set_sensitive(len(model) > 0) + selector_box = self.gui.get_object("ProcessSelectorBox") + if len(model) < 2: + selector_box.hide() + else: + selector_box.show() + + def _get_selected_strategy_parameter_names(self): + strategy = self._get_selected_strategy() + return set() if strategy is None else set(strategy["parameters"].keys()) + + def _get_selected_strategy(self, name=None): + """ get a strategy object - either based on the given name or the currently selected one + """ + strategies = self.core.get("get_parameter_sets")("process") + if name is None: + # find the currently selected one + selector = self.gui.get_object("StrategySelector") + model = selector.get_model() + index = selector.get_active() + if index < 0: + return None + strategy_name = model[index][1] + else: + strategy_name = name + if strategy_name in strategies: + return strategies[strategy_name] + else: + return None + + def select_strategy(self, name): + selector = self.gui.get_object("StrategySelector") + for index, row in enumerate(selector.get_model()): + if row[1] == name: + selector.set_active(index) + break + else: + selector.set_active(-1) + + def _transfer_controls_to_process(self): + process = self.get_selected() + strategy = self._get_selected_strategy() + if process and strategy: + process.set_value("strategy", strategy["name"]) + value_set = self.core.get("get_parameter_values")("process") + if "path_pattern" in value_set: + value_set.update(self.core.get("get_parameter_values")("path_pattern")) + for key, value in value_set.items(): + process.set_value(key, value) + + def _update_process_widgets(self, widget=None, data=None): + process = self.get_selected() + control_box = self.gui.get_object("ProcessSettingsControlsBox") + if process is None: + control_box.hide() + else: + with self.core.blocked_events({"process-control-changed", + "process-strategy-changed", + "process-path-pattern-changed"}): + strategy_name = process.get_value("strategy").value + self.select_strategy(strategy_name) + data_dict = process.get_dict() + self.core.get("set_parameter_values")("process", data_dict) + if "path_pattern" in data_dict: + self.core.get("set_parameter_values")("path_pattern", data_dict) + control_box.show() + self.core.emit_event("process-strategy-changed") + self.core.emit_event("process-changed") + + def _process_new(self, widget=None, strategy="slice"): + with merge_history_and_block_events(self.core): + params = {"strategy": strategy} + params.update(self.core.get("get_default_parameter_values")("process", + set_name=strategy)) + new_process = pycam.workspace.data_models.Process(None, data=params) + new_process.set_application_value("name", self.get_non_conflicting_name("Process #%d")) + self.select(new_process) diff --git a/pycam/pycam/Plugins/ProgressBar.py b/pycam/pycam/Plugins/ProgressBar.py new file mode 100644 index 00000000..f1e27387 --- /dev/null +++ b/pycam/pycam/Plugins/ProgressBar.py @@ -0,0 +1,223 @@ +""" +Copyright 2011 Lars Kruse + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + +import datetime +import os +import time + +import pycam.Plugins +from pycam.Utils.events import get_mainloop + + +class ProgressBar(pycam.Plugins.PluginBase): + + UI_FILE = "progress_bar.ui" + CATEGORIES = ["System"] + + def setup(self): + if not self._gtk: + return False + if self.gui: + box = self.gui.get_object("ProgressBox") + box.unparent() + self.core.register_ui("main_window", "Progress", box, 50) + self.core.add_item("progress", + lambda: ProgressGTK(self.core, self.gui, self._gtk, self.log)) + show_progress_button = self.gui.get_object("ShowToolpathProgressButton") + # TODO: move this setting somewhere else or rename it + self.core.add_item("show_toolpath_progress", show_progress_button.get_active, + show_progress_button.set_active) + self._gtk_handlers = [] + self._gtk_handlers.append((show_progress_button, "clicked", + lambda widget: self.core.emit_event("visual-item-updated"))) + self.register_gtk_handlers(self._gtk_handlers) + return True + + def teardown(self): + if self.gui: + self.unregister_gtk_handlers(self._gtk_handlers) + self.core.unregister_ui("main_window", self.gui.get_object("ProgressBox")) + self.core.set("progress", None) + + +class ProgressGTK: + + _PROGRESS_STACK = [] + + def __init__(self, core, gui, gtk, log): + ProgressGTK._PROGRESS_STACK.append(self) + self._finished = False + self._gtk = gtk + self._gui = gui + self.log = log + self.core = core + self._cancel_requested = False + self._start_time = 0 + self._multi_maximum = 0 + self._multi_counter = 0 + self._multi_base_text = "" + self._last_gtk_events_time = None + self._main_widget = self._gui.get_object("ProgressBox") + self._multi_widget = self._gui.get_object("MultipleProgressBar") + self._cancel_button = self._gui.get_object("ProgressCancelButton") + self._cancel_button.connect("clicked", self.cancel) + self._progress_bar = self._gui.get_object("ProgressBar") + self._progress_button = self._gui.get_object("ShowToolpathProgressButton") + self._start_time = time.time() + self._last_text = None + self._last_percent = None + self.update(text="", percent=0) + self._cancel_button.set_sensitive(True) + self._progress_button.hide() + # enable "pulse" mode for a start (in case of unknown ETA) + self._progress_bar.pulse() + self._main_widget.show() + self._multi_widget.hide() + self._multi_widget.set_text("") + self._multi_widget.set_fraction(0) + self.core.emit_event("gui-disable") + + def set_multiple(self, count, base_text=None): + if base_text: + self._multi_base_text = base_text + else: + self._multi_base_text = "" + self._multi_counter = 0 + if count > 1: + self._multi_maximum = count + self.update_multiple(increment=False) + else: + self._multi_maximum = 0 + + def update_multiple(self, increment=True): + if self._multi_maximum <= 1: + self._multi_widget.hide() + return + self._multi_widget.show() + if increment: + self._multi_counter += 1 + self._progress_bar.set_fraction(0) + if self._multi_base_text: + text = "%s %d/%d" % (self._multi_base_text, self._multi_counter + 1, + self._multi_maximum) + else: + text = "%d/%d" % (self._multi_counter + 1, self._multi_maximum) + self._multi_widget.set_text(text) + self._multi_widget.set_fraction(min(1.0, float(self._multi_counter) / self._multi_maximum)) + + def disable_cancel(self): + self._cancel_button.set_sensitive(False) + + def cancel(self, widget=None): + self._cancel_requested = True + + def finish(self): + if self._finished: + self.log.debug("Called progressbar 'finish' twice: %s" % self) + return + ProgressGTK._PROGRESS_STACK.remove(self) + if ProgressGTK._PROGRESS_STACK: + # restore the latest state of the previous progress + current = ProgressGTK._PROGRESS_STACK[-1] + current.update(text=current._last_text, percent=current._last_percent) + current.update_multiple(increment=False) + else: + # hide the widget + self._main_widget.hide() + self._multi_widget.hide() + widget = self._main_widget + while widget: + if hasattr(widget, "resize_children"): + widget.resize_children() + if hasattr(widget, "check_resize"): + widget.check_resize() + widget = widget.get_parent() + self.core.emit_event("gui-enable") + self._finished = True + + def __del__(self): + if not self._finished: + self.finish() + + def update(self, text=None, percent=None): + if text: + self._last_text = text + if percent: + self._last_percent = percent + if percent is not None: + percent = min(max(percent, 0.0), 100.0) + self._progress_bar.set_fraction(percent/100.0) + if (not percent) and (self._progress_bar.get_fraction() == 0): + # use "pulse" mode until we reach 1% of the work to be done + self._progress_bar.pulse() + # update the GUI + current_time = time.time() + # Don't update the GUI more often than once per second. + # Exception: text-only updates + # This restriction improves performance and reduces the + # "snappiness" of the GUI. + if (self._last_gtk_events_time is None) \ + or text \ + or (self._last_gtk_events_time + 0.5 <= current_time): + # "estimated time of arrival" text + time_estimation_suffix = " remaining ..." + if self._progress_bar.get_fraction() > 0: + total_fraction = ((self._progress_bar.get_fraction() + self._multi_counter) + / max(1, self._multi_maximum)) + total_fraction = max(0.0, min(total_fraction, 1.0)) + eta_full = (time.time() - self._start_time) / total_fraction + if eta_full > 0: + eta_delta = eta_full - (time.time() - self._start_time) + eta_delta = int(round(eta_delta)) + if hasattr(self, "_last_eta_delta"): + previous_eta_delta = self._last_eta_delta + if eta_delta == previous_eta_delta + 1: + # We are currently toggling between two numbers. + # We want to avoid screen flicker, thus we just live + # with the slight inaccuracy. + eta_delta = self._last_eta_delta + self._last_eta_delta = eta_delta + eta_delta_obj = datetime.timedelta(seconds=eta_delta) + eta_text = "%s%s" % (eta_delta_obj, time_estimation_suffix) + else: + eta_text = None + else: + eta_text = None + if text is not None: + lines = [text] + else: + old_lines = self._progress_bar.get_text().split(os.linesep) + # skip the time estimation line + lines = [line for line in old_lines if not line.endswith(time_estimation_suffix)] + if eta_text: + lines.append(eta_text) + self._progress_bar.set_text(os.linesep.join(lines)) + # show the "show_tool_button" ("hide" is called in the progress decorator) + # TODO: move "in_progress" somewhere else + if self.core.get("toolpath_in_progress"): + self._progress_button.show() + get_mainloop().update() + if not text or (self._start_time + 5 < current_time): + # We don't store the timining if the text was changed. + # This is especially nice for the snappines during font + # initialization. This exception is only valid for the first + # five seconds of the operation. + self._last_gtk_events_time = current_time + # return if the user requested a break + return self._cancel_requested diff --git a/pycam/pycam/Plugins/TaskParameters.py b/pycam/pycam/Plugins/TaskParameters.py new file mode 100644 index 00000000..63a69376 --- /dev/null +++ b/pycam/pycam/Plugins/TaskParameters.py @@ -0,0 +1,131 @@ +""" +Copyright 2011 Lars Kruse + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + + +import pycam.Gui.ControlsGTK +import pycam.Plugins + + +class TaskParamCollisionModels(pycam.Plugins.PluginBase): + + DEPENDS = ["Models", "Tasks"] + CATEGORIES = ["Model", "Task", "Parameter"] + + def setup(self): + self.control = pycam.Gui.ControlsGTK.InputTable( + [], change_handler=lambda widget=None: self.core.emit_event("task-control-changed")) + # The usual height of "-1" seems to hide this widget at least for the GTK version + # shipped with 12.04 and 13.04 - see https://github.com/SebKuzminsky/pycam/issues/43. + self.control.get_widget().set_size_request(240, 120) + self.core.get("register_parameter")("task", "collision_models", self.control) + self.core.register_ui("task_models", "", self.control.get_widget(), weight=5) + self.core.register_event("model-list-changed", self._update_models) + self.core.register_event("model-changed", self._update_models) + return True + + def teardown(self): + self.core.unregister_event("model-changed", self._update_models) + self.core.unregister_event("model-list-changed", self._update_models) + self.core.get("unregister_parameter")("task", "collision_models") + self.core.unregister_ui("task_models", self.control.get_widget()) + + def _update_models(self): + choices = [] + for model in self.core.get("models").get_all(): + if hasattr(model.get_model(), "triangles"): + choices.append((model.get_application_value("name", model.get_id()), + model.get_id())) + self.control.update_choices(choices) + + +class TaskParamTool(pycam.Plugins.PluginBase): + + DEPENDS = ["Tools", "Tasks"] + CATEGORIES = ["Tool", "Task", "Parameter"] + + def setup(self): + self.control = pycam.Gui.ControlsGTK.InputChoice( + [], change_handler=lambda widget=None: self.core.emit_event("task-control-changed")) + self.core.get("register_parameter")("task", "tool", self.control) + self.core.register_ui("task_components", "Tool", self.control.get_widget(), weight=10) + self.core.register_event("tool-list-changed", self._update_tools) + return True + + def teardown(self): + self.core.unregister_event("tool-list-changed", self._update_tools) + self.core.get("unregister_parameter")("task", "tool") + self.core.unregister_ui("task_models", self.control.get_widget()) + + def _update_tools(self): + choices = [] + for tool in self.core.get("tools").get_all(): + choices.append((tool.get_application_value("name", tool.get_id()), tool.get_id())) + self.control.update_choices(choices) + + +class TaskParamProcess(pycam.Plugins.PluginBase): + + DEPENDS = ["Processes", "Tasks"] + CATEGORIES = ["Process", "Task", "Parameter"] + + def setup(self): + self.control = pycam.Gui.ControlsGTK.InputChoice( + [], change_handler=lambda widget=None: self.core.emit_event("task-control-changed")) + self.core.get("register_parameter")("task", "process", self.control) + self.core.register_ui("task_components", "Process", self.control.get_widget(), weight=20) + self.core.register_event("process-list-changed", self._update_processes) + return True + + def teardown(self): + self.core.unregister_event("process-list-changed", self._update_processes) + self.core.get("unregister_parameter")("task", "process") + self.core.unregister_ui("task_models", self.control.get_widget()) + + def _update_processes(self): + choices = [] + for process in self.core.get("processes").get_all(): + choices.append((process.get_application_value("name", process.get_id()), + process.get_id())) + self.control.update_choices(choices) + + +class TaskParamBounds(pycam.Plugins.PluginBase): + + DEPENDS = ["Bounds", "Tasks"] + CATEGORIES = ["Bounds", "Task", "Parameter"] + + def setup(self): + self.control = pycam.Gui.ControlsGTK.InputChoice( + [], change_handler=lambda widget=None: self.core.emit_event("task-control-changed")) + self.core.get("register_parameter")("task", "bounds", self.control) + self.core.register_ui("task_components", "Bounds", self.control.get_widget(), weight=30) + self.core.register_event("bounds-list-changed", self._update_bounds) + return True + + def teardown(self): + self.core.unregister_event("bounds-list-changed", self._update_bounds) + self.core.get("unregister_parameter")("task", "bounds") + self.core.unregister_ui("task_models", self.control.get_widget()) + + def _update_bounds(self): + choices = [] + bounds = self.core.get("bounds") + for bound in bounds.get_all(): + choices.append((bound.get_application_value("name", bound.get_id()), bound.get_id())) + self.control.update_choices(choices) diff --git a/pycam/pycam/Plugins/TaskTypes.py b/pycam/pycam/Plugins/TaskTypes.py new file mode 100644 index 00000000..5ffa0a49 --- /dev/null +++ b/pycam/pycam/Plugins/TaskTypes.py @@ -0,0 +1,38 @@ +""" +Copyright 2011 Lars Kruse + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + + +import pycam.Plugins +import pycam.Toolpath + + +class TaskTypeMilling(pycam.Plugins.PluginBase): + + DEPENDS = ["Tasks", "TaskParamCollisionModels", "TaskParamTool", "TaskParamProcess", + "TaskParamBounds"] + CATEGORIES = ["Task"] + + def setup(self): + parameters = {"collision_models": [], "tool": None, "process": None, "bounds": None} + self.core.get("register_parameter_set")("task", "milling", "Milling", None, + parameters=parameters, weight=10) + return True + + def teardown(self): + self.core.get("unregister_parameter_set")("task", "milling") diff --git a/pycam/pycam/Plugins/Tasks.py b/pycam/pycam/Plugins/Tasks.py new file mode 100644 index 00000000..480d8d59 --- /dev/null +++ b/pycam/pycam/Plugins/Tasks.py @@ -0,0 +1,280 @@ +""" +Copyright 2011 Lars Kruse + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + +import time + +from pycam.errors import PycamBaseException +from pycam.Flow.history import merge_history_and_block_events +import pycam.Plugins +import pycam.Utils +from pycam.Utils.progress import ProgressContext +import pycam.workspace.data_models + + +class Tasks(pycam.Plugins.ListPluginBase): + + UI_FILE = "tasks.ui" + CATEGORIES = ["Task"] + DEPENDS = ["Models", "Tools", "Processes", "Bounds", "Toolpaths"] + COLLECTION_ITEM_TYPE = pycam.workspace.data_models.Task + + def setup(self): + if self.gui: + self._gtk_handlers = [] + task_frame = self.gui.get_object("TaskBox") + task_frame.unparent() + self.core.register_ui("main", "Tasks", task_frame, weight=40) + self._taskview = self.gui.get_object("TaskView") + self.set_gtk_modelview(self._taskview) + self.register_model_update(lambda: self.core.emit_event("task-list-changed")) + for action, obj_name in ((self.ACTION_UP, "TaskMoveUp"), + (self.ACTION_DOWN, "TaskMoveDown"), + (self.ACTION_DELETE, "TaskDelete")): + self.register_list_action_button(action, self.gui.get_object(obj_name)) + self._gtk_handlers.append((self.gui.get_object("TaskNew"), "clicked", self._task_new)) + # parameters + parameters_box = self.gui.get_object("TaskParameterBox") + + def clear_parameter_widgets(): + parameters_box.foreach(parameters_box.remove) + + def add_parameter_widget(item, name): + # create a frame within an alignment and the item inside + if item.get_parent(): + item.unparent() + frame_label = self._gtk.Label() + frame_label.set_markup("%s" % name) + frame = self._gtk.Frame() + frame.set_label_widget(frame_label) + align = self._gtk.Alignment() + frame.add(align) + align.set_padding(0, 3, 12, 3) + align.add(item) + frame.show_all() + parameters_box.pack_start(frame, expand=False, fill=False, padding=0) + + self.core.register_ui_section("task_parameters", add_parameter_widget, + clear_parameter_widgets) + self.core.get("register_parameter_group")( + "task", changed_set_event="task-type-changed", + changed_set_list_event="task-type-list-changed", + get_related_parameter_names=self._get_type_parameter_names) + self.models_widget = pycam.Gui.ControlsGTK.ParameterSection() + self.core.register_ui_section("task_models", self.models_widget.add_widget, + self.models_widget.clear_widgets) + self.core.register_ui("task_parameters", "Collision models", + self.models_widget.get_widget(), weight=20) + self.components_widget = pycam.Gui.ControlsGTK.ParameterSection() + self.core.register_ui_section("task_components", self.components_widget.add_widget, + self.components_widget.clear_widgets) + self.core.register_ui("task_parameters", "Components", + self.components_widget.get_widget(), weight=10) + # table + self._gtk_handlers.append((self.gui.get_object("NameCell"), "edited", + self.edit_item_name)) + selection = self._taskview.get_selection() + self._gtk_handlers.append((selection, "changed", "task-selection-changed")) + selection.set_mode(self._gtk.SelectionMode.MULTIPLE) + self._treemodel = self.gui.get_object("TaskList") + self._treemodel.clear() + # generate toolpaths + self._gtk_handlers.extend(( + (self.gui.get_object("GenerateToolPathButton"), "clicked", + self._generate_selected_toolpaths), + (self.gui.get_object("GenerateAllToolPathsButton"), "clicked", + self._generate_all_toolpaths))) + # shape selector + self._gtk_handlers.append((self.gui.get_object("TaskTypeSelector"), "changed", + "task-type-changed")) + # define cell renderers + self.gui.get_object("NameColumn").set_cell_data_func(self.gui.get_object("NameCell"), + self.render_item_name) + self._event_handlers = ( + ("task-type-list-changed", self._update_task_type_widgets), + ("task-selection-changed", self._update_task_widgets), + ("task-selection-changed", self._update_toolpath_buttons), + ("task-changed", self._update_task_widgets), + ("task-changed", self.force_gtk_modelview_refresh), + ("task-list-changed", self.force_gtk_modelview_refresh), + ("task-list-changed", self._update_toolpath_buttons), + ("task-control-changed", self._transfer_controls_to_task)) + self.register_gtk_handlers(self._gtk_handlers) + self.register_event_handlers(self._event_handlers) + self._update_toolpath_buttons() + self._update_task_type_widgets() + self._update_task_widgets() + self.register_state_item("tasks", self) + self.core.set("tasks", self) + return True + + def teardown(self): + if self.gui and self._gtk: + self.unregister_event_handlers(self._event_handlers) + self.unregister_gtk_handlers(self._gtk_handlers) + self.core.unregister_ui("main", self.gui.get_object("TaskBox")) + self.core.unregister_ui("task_parameters", self.models_widget) + self.core.unregister_ui("task_parameters", self.components_widget) + self.core.unregister_ui_section("task_models") + self.core.unregister_ui_section("task_components") + self.core.unregister_ui_section("task_parameters") + self.core.get("unregister_parameter_group")("task") + self.clear_state_items() + self.clear() + + def _get_type_parameter_names(self): + the_type = self._get_type() + return set() if the_type is None else set(the_type["parameters"].keys()) + + def _get_type(self, name=None): + types = self.core.get("get_parameter_sets")("task") + if name is None: + # find the currently selected one + selector = self.gui.get_object("TaskTypeSelector") + model = selector.get_model() + index = selector.get_active() + if index < 0: + return None + type_name = model[index][1] + else: + type_name = name + if type_name in types: + return types[type_name] + else: + return None + + def select_type(self, name): + selector = self.gui.get_object("TaskTypeSelector") + for index, row in enumerate(selector.get_model()): + if row[1] == name: + selector.set_active(index) + break + else: + selector.set_active(-1) + + def _update_task_type_widgets(self): + model = self.gui.get_object("TaskTypeList") + model.clear() + types = list(self.core.get("get_parameter_sets")("task").values()) + for one_type in sorted(types, key=lambda item: item["weight"]): + model.append((one_type["label"], one_type["name"])) + # check if any on the processes became obsolete due to a missing plugin + type_names = [one_type["name"] for one_type in types] + for task in self.get_all(): + if task.get_value("type") not in type_names: + self.get_collection().remove(task) + # show "new" only if a strategy is available + self.gui.get_object("TaskNew").set_sensitive(len(model) > 0) + selector_box = self.gui.get_object("TaskChooserBox") + if len(model) < 2: + selector_box.hide() + else: + selector_box.show() + + def _update_toolpath_buttons(self): + selected_toolpaths = self.get_selected() + if selected_toolpaths is None: + selected_toolpaths = [] + self.gui.get_object("GenerateToolPathButton").set_sensitive(len(selected_toolpaths) > 0) + self.gui.get_object("GenerateAllToolPathsButton").set_sensitive(len(self.get_all()) > 0) + + def _update_task_widgets(self): + tasks = self.get_selected() + control_box = self.gui.get_object("TaskDetails") + if len(tasks) != 1: + control_box.hide() + else: + task = tasks[0] + with self.core.blocked_events({"task-control-changed"}): + task_type = task.get_value("type").value + self.select_type(task_type) + self.core.get("set_parameter_values")("task", task.get_dict()) + control_box.show() + # trigger an update of the task parameter widgets based on the task type + self.core.emit_event("task-type-changed") + + def _transfer_controls_to_task(self, widget=None): + tasks = self.get_selected() + if len(tasks) == 1: + task = tasks[0] + task_type = self._get_type() + task.set_value("type", task_type["name"]) + for key, value in self.core.get("get_parameter_values")("task").items(): + task.set_value(key, value) + + def _task_new(self, widget=None, task_type="milling"): + with merge_history_and_block_events(self.core): + params = {"type": task_type} + params.update(self.core.get("get_default_parameter_values")("task", + set_name=task_type)) + new_task = pycam.workspace.data_models.Task(None, data=params) + new_task.set_application_value("name", self.get_non_conflicting_name("Task #%d")) + self.select(new_task) + + def generate_toolpaths(self, tasks): + with ProgressContext("Generate Toolpaths") as progress: + progress.set_multiple(len(tasks), "Toolpath") + for task in tasks: + if not self.generate_toolpath(task, callback=progress.update): + # break out of the loop, if cancel was requested + break + progress.update_multiple() + # This explicit event is necessary as the initial event hits the toolpath visualiation + # plugin while the path is being calculated (i.e.: it is not displayed without + # "show_progress"). + self.core.emit_event("toolpath-list-changed") + + def _generate_selected_toolpaths(self, widget=None): + tasks = self.get_selected() + self.generate_toolpaths(tasks) + + def _generate_all_toolpaths(self, widget=None): + self.generate_toolpaths(self.get_all()) + + def generate_toolpath(self, task, callback=None): + start_time = time.time() + if callback: + callback(text="Preparing toolpath generation") + self.core.set("current_tool", task.get_value("tool").get_tool_geometry()) + # run the toolpath generation + if callback: + callback(text="Calculating the toolpath") + new_toolpath = pycam.workspace.data_models.Toolpath( + None, {"source": {"type": "task", "item": task.get_id()}}) + try: + # generate the toolpath (filling the cache) and check if it is empty + if new_toolpath.get_toolpath() is None: + self.log.warning("An empty toolpath was generated.") + except PycamBaseException as exc: + # an error occurred - "toolpath" contains the error message + self.log.error("Failed to generate toolpath: %s", exc) + # we were not successful (similar to a "cancel" request) + return False + except Exception: + # catch all non-system-exiting exceptions + self.log.error(pycam.Utils.get_exception_report()) + return False + finally: + self.core.set("current_tool", None) + self.core.set("toolpath_in_progress", None) + self.log.info("Toolpath generation time: %f", time.time() - start_time) + # return "False" if the action was cancelled + if callback: + return not callback() + else: + return True diff --git a/pycam/pycam/Plugins/ToolParameters.py b/pycam/pycam/Plugins/ToolParameters.py new file mode 100644 index 00000000..0a8c3443 --- /dev/null +++ b/pycam/pycam/Plugins/ToolParameters.py @@ -0,0 +1,104 @@ +""" +Copyright 2011 Lars Kruse + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + + +import pycam.Plugins +from pycam.Gui.ControlsGTK import InputCheckBox, InputNumber + + +class ToolParamRadius(pycam.Plugins.PluginBase): + + DEPENDS = ["Tools"] + CATEGORIES = ["Tool", "Parameter"] + + def setup(self): + self.control = InputNumber( + lower=0.001, digits=4, + change_handler=lambda widget=None: self.core.emit_event("tool-control-changed")) + self.control.set_conversion(set_conv=lambda value: value * 2.0, + get_conv=lambda value: value / 2.0) + self.core.get("register_parameter")("tool", "radius", self.control) + self.core.register_ui("tool_size", "Tool Diameter", self.control.get_widget(), weight=10) + return True + + def teardown(self): + self.core.get("unregister_parameter")("tool", "radius") + self.core.unregister_ui("tool_size", self.control.get_widget()) + + +class ToolParamToroidRadius(pycam.Plugins.PluginBase): + + DEPENDS = ["Tools"] + CATEGORIES = ["Tool", "Parameter"] + + def setup(self): + self.control = InputNumber( + lower=0.001, digits=4, + change_handler=lambda widget=None: self.core.emit_event("tool-control-changed")) + self.core.get("register_parameter")("tool", "toroid_radius", self.control) + self.core.register_ui("tool_size", "Toroid Radius", self.control.get_widget(), weight=50) + return True + + def teardown(self): + self.core.unregister_ui("tool_size", self.control.get_widget()) + self.core.get("unregister_parameter")("tool", "toroid_radius") + + +class ToolParamFeedrate(pycam.Plugins.PluginBase): + + DEPENDS = ["Tools"] + CATEGORIES = ["Tool", "Parameter"] + + def setup(self): + self.control = InputNumber( + lower=1, digits=0, + change_handler=lambda widget=None: self.core.emit_event("tool-control-changed")) + self.core.get("register_parameter")("tool", "feed", self.control) + self.core.register_ui("tool_speed", "Feedrate", self.control.get_widget(), weight=10) + return True + + def teardown(self): + self.core.unregister_ui("tool_speed", self.control.get_widget()) + self.core.get("unregister_parameter")("tool", "feed") + + +class ToolParamSpindle(pycam.Plugins.PluginBase): + + DEPENDS = ["Tools"] + CATEGORIES = ["Tool", "Parameter"] + + def setup(self): + self.controls = [] + for attribute, label, weight, control_class, extra in ( + ("spin_up_enabled", "Spindle Spin-Up/Spin-Down", 30, InputCheckBox, {}), + ("speed", "Spindle Speed", 40, InputNumber, {"lower": 1, "digits": 0}), + ("spin_up_delay", "Spindle Spin-Up Delay", 50, InputNumber, + {"lower": 0, "digits": 0})): + control = control_class( + change_handler=lambda widget=None: self.core.emit_event("tool-control-changed"), + **extra) + self.core.get("register_parameter")("tool", ("spindle", attribute), control) + self.core.register_ui("tool_spindle", label, control.get_widget(), weight=weight) + self.controls.append((control, attribute)) + return True + + def teardown(self): + for control, attribute in self.controls: + self.core.get("unregister_parameter")("tool", ("spindle", attribute)) + self.core.unregister_ui("tool_spindle", control.get_widget()) diff --git a/pycam/pycam/Plugins/ToolTypes.py b/pycam/pycam/Plugins/ToolTypes.py new file mode 100644 index 00000000..6c55f143 --- /dev/null +++ b/pycam/pycam/Plugins/ToolTypes.py @@ -0,0 +1,108 @@ +""" +Copyright 2011 Lars Kruse + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + + +import pycam.Plugins +import pycam.Cutters.SphericalCutter +import pycam.Cutters.ToroidalCutter +import pycam.Cutters.CylindricalCutter + + +def tool_params_and_filters(*param_names): + def get_params_and_filters_inner(func): + def get_tool_func(self, parameters): + filters = [] + self.core.call_chain("toolpath_filters", "tool", parameters, filters) + args = [] + for param_name in param_names: + args.append(parameters[param_name]) + cutter = func(self, *args) + return cutter, filters + return get_tool_func + return get_params_and_filters_inner + + +class ToolTypeBallNose(pycam.Plugins.PluginBase): + + DEPENDS = ["Tools", "ToolParamRadius", "ToolParamFeedrate"] + CATEGORIES = ["Tool", "Parameter"] + + def setup(self): + parameters = {"radius": 1.0, + "feed": 300, + ("spindle", "speed"): 1000, + ("spindle", "spin_up_enabled"): True, + ("spindle", "spin_up_delay"): 3} + self.core.get("register_parameter_set")("tool", "ball_nose", "Ball nose", self.get_tool, + parameters=parameters, weight=20) + return True + + def teardown(self): + self.core.get("unregister_parameter_set")("tool", "ball_nose") + + @tool_params_and_filters("radius") + def get_tool(self, radius): + return pycam.Cutters.SphericalCutter.SphericalCutter(radius) + + +class ToolTypeBullNose(pycam.Plugins.PluginBase): + + DEPENDS = ["Tools", "ToolParamRadius", "ToolParamToroidRadius", "ToolParamFeedrate"] + CATEGORIES = ["Tool", "Parameter"] + + def setup(self): + parameters = {"radius": 1.0, + "toroid_radius": 0.25, + "feed": 300, + ("spindle", "speed"): 1000, + ("spindle", "spin_up_enabled"): True, + ("spindle", "spin_up_delay"): 3} + self.core.get("register_parameter_set")("tool", "torus", "Bull nose", self.get_tool, + parameters=parameters, weight=30) + return True + + def teardown(self): + self.core.get("unregister_parameter_set")("tool", "torus") + + @tool_params_and_filters("radius", "toroid_radius") + def get_tool(self, radius, toroid_radius): + return pycam.Cutters.ToroidalCutter.ToroidalCutter(radius, toroid_radius) + + +class ToolTypeFlat(pycam.Plugins.PluginBase): + + DEPENDS = ["Tools", "ToolParamRadius", "ToolParamFeedrate"] + CATEGORIES = ["Tool", "Parameter"] + + def setup(self): + parameters = {"radius": 1.0, + "feed": 300, + ("spindle", "speed"): 1000, + ("spindle", "spin_up_enabled"): True, + ("spindle", "spin_up_delay"): 3} + self.core.get("register_parameter_set")("tool", "flat_bottom", "Flat bottom", + self.get_tool, parameters=parameters, weight=10) + return True + + def teardown(self): + self.core.get("unregister_parameter_set")("tool", "flat_bottom") + + @tool_params_and_filters("radius") + def get_tool(self, radius): + return pycam.Cutters.CylindricalCutter.CylindricalCutter(radius) diff --git a/pycam/pycam/Plugins/ToolpathCrop.py b/pycam/pycam/Plugins/ToolpathCrop.py new file mode 100644 index 00000000..3f426cd7 --- /dev/null +++ b/pycam/pycam/Plugins/ToolpathCrop.py @@ -0,0 +1,102 @@ +""" +Copyright 2011 Lars Kruse + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + + +import pycam.Gui.ControlsGTK +import pycam.Plugins + + +class ToolpathCrop(pycam.Plugins.PluginBase): + + UI_FILE = "toolpath_crop.ui" + DEPENDS = ["Models", "Toolpaths"] + CATEGORIES = ["Toolpath"] + + def setup(self): + if self.gui: + self._frame = self.gui.get_object("ToolpathCropFrame") + self.core.register_ui("toolpath_handling", "Crop", self._frame, 40) + self._gtk_handlers = [] + self._gtk_handlers.append((self.gui.get_object("CropButton"), "clicked", + self.crop_toolpath)) + # model selector + self.models_widget = pycam.Gui.ControlsGTK.InputTable( + [], change_handler=self._update_widgets) + + def get_converter(model_refs): + models_dict = {} + for model in self.core.get("models"): + models_dict[id(model)] = model + models = [] + for model_ref in model_refs: + models.append(models_dict[model_ref]) + return models + + def set_converter(models): + return [id(model) for model in models] + + self.models_widget.set_conversion(set_conv=set_converter, get_conv=get_converter) + self.gui.get_object("ModelTableContainer").add(self.models_widget.get_widget()) + self._event_handlers = ( + ("model-list-changed", self._update_models_list), + ("toolpath-selection-changed", self._update_visibility)) + self.register_gtk_handlers(self._gtk_handlers) + self.register_event_handlers(self._event_handlers) + self._update_widgets() + self._update_visibility() + return True + + def teardown(self): + if self.gui: + self.unregister_event_handlers(self._event_handlers) + self.unregister_gtk_handlers(self._gtk_handlers) + self.gui.get_object("ModelTableContainer").remove(self.models_widget.get_widget()) + self.core.unregister_ui("toolpath_handling", self._frame) + + def _update_models_list(self): + choices = [] + for model in self.core.get("models").get_all(): + if hasattr(model.get_model(), "get_polygons"): + choices.append((model.get_id(), model)) + self.models_widget.update_choices(choices) + + def _update_visibility(self): + if self.core.get("toolpaths").get_selected(): + self._frame.show() + else: + self._frame.hide() + + def _update_widgets(self, widget=None): + models = [m.get_model() for m in self.models_widget.get_value()] + info_label = self.gui.get_object("ToolpathCropInfo") + info_box = self.gui.get_object("ToolpathCropInfoBox") + button = self.gui.get_object("CropButton") + # update info + if not models: + info_box.show() + info_label.set_label("Hint: select a model") + button.set_sensitive(False) + else: + info_box.hide() + button.set_sensitive(True) + + def crop_toolpath(self, widget=None): + model_ids = [model.get_id() for model in self.models_widget.get_value()] + for toolpath in self.core.get("toolpaths").get_selected(): + toolpath.append_transformation({"action": "crop", "models": model_ids}) diff --git a/pycam/pycam/Plugins/ToolpathExport.py b/pycam/pycam/Plugins/ToolpathExport.py new file mode 100644 index 00000000..db433fe3 --- /dev/null +++ b/pycam/pycam/Plugins/ToolpathExport.py @@ -0,0 +1,125 @@ +""" +Copyright 2011 Lars Kruse + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + +import datetime + +from pycam import VERSION +import pycam.Gui.ControlsGTK +import pycam.Exporters.GCode.LinuxCNC +import pycam.Plugins +import pycam.workspace.data_models + + +FILTER_GCODE = (("GCode files", ("*.ngc", "*.nc", "*.gc", "*.gcode")),) + + +class ToolpathExport(pycam.Plugins.PluginBase): + + UI_FILE = "toolpath_export.ui" + DEPENDS = ["Toolpaths", "FilenameDialog", "ExportSettings"] + CATEGORIES = ["Toolpath", "Export"] + + def setup(self): + self._last_toolpath_file = None + if self.gui: + self._frame = self.gui.get_object("ToolpathExportFrame") + self._frame.unparent() + self.core.register_ui("toolpath_handling", "Export", self._frame, -100) + self._gtk_handlers = ( + (self.gui.get_object("ExportGCodeAll"), "clicked", self.export_all), + (self.gui.get_object("ExportGCodeSelected"), "clicked", self.export_selected), + (self.gui.get_object("ExportGCodeVisible"), "clicked", self.export_visible)) + self._event_handlers = ( + ("toolpath-list-changed", self._update_widgets), + ("toolpath-selection-changed", self._update_widgets), + ("toolpath-changed", self._update_widgets)) + self.register_gtk_handlers(self._gtk_handlers) + self.register_event_handlers(self._event_handlers) + self._update_widgets() + return True + + def teardown(self): + if self.gui: + self.unregister_event_handlers(self._event_handlers) + self.unregister_gtk_handlers(self._gtk_handlers) + self.core.unregister_ui("toolpath_handling", self._frame) + + def _update_widgets(self): + toolpaths = self.core.get("toolpaths") + for name, filtered in (("ExportGCodeAll", toolpaths), + ("ExportGCodeVisible", toolpaths.get_visible()), + ("ExportGCodeSelected", toolpaths.get_selected())): + self.gui.get_object(name).set_sensitive(bool(filtered)) + + def export_all(self, widget=None): + self._export_toolpaths(self.core.get("toolpaths").get_all()) + + def export_visible(self, widget=None): + self._export_toolpaths(self.core.get("toolpaths").get_visible()) + + def export_selected(self, widget=None): + self._export_toolpaths(self.core.get("toolpaths").get_selected()) + + def _export_toolpaths(self, toolpaths): + # we open a dialog + # TODO: dynamically switch the dialog's filename extension with the selected export setting + if self.core.get("gcode_filename_extension"): + filename_extension = self.core.get("gcode_filename_extension") + else: + filename_extension = None + # TODO: separate this away from Gui/Project.py + # TODO: implement "last_model_filename" in core + all_export_settings = self.core.get("export_settings").get_all() + export_options_control = pycam.Gui.ControlsGTK.InputChoice( + (item.get_application_value("name", item.get_id()), item.get_id()) + for item in all_export_settings) + # Configure a change handler in order to memorize the selection of the user. There is no + # simple other way of retrieving the result of the "extra_widget" from the + # "get_filename_func" handler. + selected_settings = {"active": export_options_control.get_value()} + export_options_control.connect( + "changed", + lambda: selected_settings.update({"active": export_options_control.get_value()})) + filename = self.core.get("get_filename_func")( + "Save toolpath to ...", mode_load=False, type_filter=FILTER_GCODE, + filename_templates=(self._last_toolpath_file, self.core.get("last_model_filename")), + filename_extension=filename_extension, + extra_widget=export_options_control.get_widget()) + if filename: + self._last_toolpath_file = filename + # no filename given -> exit + if not filename: + return + export = pycam.workspace.data_models.Export(None, { + "format": {"type": "gcode", "dialect": "linuxcnc", + "comment": ("Generated by PyCAM {}: {}" + .format(VERSION, datetime.datetime.now().strftime("%Y-%m-%d"))), + "export_settings": selected_settings["active"]}, + "source": {"type": "toolpath", + "items": [tp.get_id() for tp in toolpaths]}, + "target": {"type": "file", "location": filename}}) + try: + export.run_export() + except IOError as err_msg: + self.log.error("Failed to save toolpath file: %s", err_msg) + else: + # remove the temporary export item + del export + self.log.info("GCode file successfully written: %s", str(filename)) + self.core.get("set_last_filename")(filename) diff --git a/pycam/pycam/Plugins/ToolpathGrid.py b/pycam/pycam/Plugins/ToolpathGrid.py new file mode 100644 index 00000000..ce609c11 --- /dev/null +++ b/pycam/pycam/Plugins/ToolpathGrid.py @@ -0,0 +1,94 @@ +""" +Copyright 2011 Lars Kruse + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + + +import pycam.Plugins + + +class ToolpathGrid(pycam.Plugins.PluginBase): + + UI_FILE = "toolpath_grid.ui" + DEPENDS = ["Toolpaths"] + CATEGORIES = ["Toolpath"] + + def setup(self): + if self.gui: + self._gtk_handlers = [] + self._frame = self.gui.get_object("ToolpathGridFrame") + self.core.register_ui("toolpath_handling", "Clone grid", self._frame, 30) + for objname in ("GridYCount", "GridXCount"): + self.gui.get_object(objname).set_value(1) + for objname in ("GridYCount", "GridXCount", "GridYDistance", "GridXDistance"): + self._gtk_handlers.append((self.gui.get_object(objname), "value-changed", + self._update_widgets)) + self._gtk_handlers.append((self.gui.get_object("GridCreate"), "clicked", + self.create_toolpath_grid)) + self.core.register_event("toolpath-selection-changed", self._update_widgets) + self.register_gtk_handlers(self._gtk_handlers) + self._update_widgets() + return True + + def teardown(self): + if self.gui: + self.core.unregister_event("toolpath-selection-changed", self._update_widgets) + self.unregister_gtk_handlers(self._gtk_handlers) + self.core.unregister_ui("toolpath_handling", self._frame) + + def _get_toolpaths_dim(self, toolpaths): + """ calculate the maximum dimensions for x and y of all toolpaths """ + # collect non-empty toolpaths + paths = [path for path in (tp.get_toolpath() for tp in toolpaths) if path] + if paths: + maxx = max([path.maxx for path in paths]) + minx = min([path.minx for path in paths]) + maxy = max([path.maxy for path in paths]) + miny = min([path.miny for path in paths]) + return (maxx - minx), (maxy - miny) + else: + return None, None + + def _update_widgets(self, widget=None): + toolpaths = self.core.get("toolpaths").get_selected() + if toolpaths: + x_dim, y_dim = self._get_toolpaths_dim(toolpaths) + if toolpaths and (x_dim is not None) and (y_dim is not None): + x_count = self.gui.get_object("GridXCount").get_value() + x_space = self.gui.get_object("GridXDistance").get_value() + y_count = self.gui.get_object("GridYCount").get_value() + y_space = self.gui.get_object("GridYDistance").get_value() + x_width = x_dim * x_count + x_space * (x_count - 1) + y_width = y_dim * y_count + y_space * (y_count - 1) + self.gui.get_object("LabelGridXWidth").set_label( + "%g%s" % (x_width, self.core.get("unit_string"))) + self.gui.get_object("LabelGridYWidth").set_label( + "%g%s" % (y_width, self.core.get("unit_string"))) + self._frame.show() + else: + self._frame.hide() + + def create_toolpath_grid(self, widget=None): + x_count = int(self.gui.get_object("GridXCount").get_value()) + y_count = int(self.gui.get_object("GridYCount").get_value()) + x_space = self.gui.get_object("GridXDistance").get_value() + y_space = self.gui.get_object("GridYDistance").get_value() + for toolpath in self.core.get("toolpaths").get_selected(): + toolpath.append_transformation( + {"action": "clone", "offset": [x_space, 0, 0], "clone_count": x_count}) + toolpath.append_transformation( + {"action": "clone", "offset": [0, y_space, 0], "clone_count": y_count}) diff --git a/pycam/pycam/Plugins/ToolpathProfiles.py b/pycam/pycam/Plugins/ToolpathProfiles.py new file mode 100644 index 00000000..c0c581bf --- /dev/null +++ b/pycam/pycam/Plugins/ToolpathProfiles.py @@ -0,0 +1,85 @@ +""" +Copyright 2012 Lars Kruse + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + +import pycam.Gui.ControlsGTK +import pycam.Plugins +from pycam.Toolpath import ToolpathPathMode +import pycam.Utils.log + + +def _get_profile_filters(core, parameters): + filters = [] + core.call_chain("toolpath_filters", "settings", parameters, filters) + return filters + + +class ToolpathProfileMilling(pycam.Plugins.PluginBase): + + DEPENDS = ["Toolpaths", "GCodeSafetyHeight", "GCodePlungeFeedrate", "GCodeFilenameExtension", + "GCodeStepWidth", "GCodeCornerStyle"] + CATEGORIES = ["Toolpath"] + + def setup(self): + parameters = { + "safety_height": 25, + "plunge_feedrate": 100, + "filename_extension": "", + ("step_width", "x"): 0.0001, + ("step_width", "y"): 0.0001, + ("step_width", "z"): 0.0001, + ("corner_style", "mode"): ToolpathPathMode.CORNER_STYLE_OPTIMIZE_TOLERANCE.value, + ("corner_style", "motion_tolerance"): 0.0, + ("corner_style", "naive_tolerance"): 0.0, + "touch_off": None} + self.core.get("register_parameter_set")( + "toolpath_profile", "milling", "Milling", + lambda params: _get_profile_filters(self.core, params), parameters=parameters, + weight=10) + # initialize all parameters + self.core.get("set_parameter_values")("toolpath_profile", parameters) + return True + + def teardown(self): + self.core.get("unregister_parameter_set")("toolpath_profile", "milling") + + +class ToolpathProfileLaser(pycam.Plugins.PluginBase): + + DEPENDS = ["Toolpaths", "GCodeFilenameExtension", "GCodeStepWidth", "GCodeCornerStyle"] + CATEGORIES = ["Toolpath"] + + def setup(self): + parameters = { + "filename_extension": "", + ("step_width", "x"): 0.0001, + ("step_width", "y"): 0.0001, + ("step_width", "z"): 0.0001, + ("corner_style", "mode"): ToolpathPathMode.CORNER_STYLE_OPTIMIZE_TOLERANCE.value, + ("corner_style", "motion_tolerance"): 0.0, + ("corner_style", "naive_tolerance"): 0.0} + self.core.get("register_parameter_set")( + "toolpath_profile", "laser", "Laser", + lambda params: _get_profile_filters(self.core, params), parameters=parameters, + weight=50) + # initialize all parameters + self.core.get("set_parameter_values")("toolpath_profile", parameters) + return True + + def teardown(self): + self.core.get("unregister_parameter_set")("toolpath_profile", "laser") diff --git a/pycam/pycam/Plugins/ToolpathSimulation.py b/pycam/pycam/Plugins/ToolpathSimulation.py new file mode 100644 index 00000000..1081cf7b --- /dev/null +++ b/pycam/pycam/Plugins/ToolpathSimulation.py @@ -0,0 +1,155 @@ +""" +Copyright 2011 Lars Kruse + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + +import datetime + +import pycam.Gui.common +import pycam.Plugins + + +class ToolpathSimulation(pycam.Plugins.PluginBase): + + UI_FILE = "toolpath_simulation.ui" + DEPENDS = ["Toolpaths", "OpenGLViewToolpath"] + CATEGORIES = ["Toolpath"] + + def setup(self): + self._running = None + if self.gui: + self._gtk_handlers = [] + self._frame = self.gui.get_object("SimulationBox") + self.core.register_ui("toolpath_handling", "Simulation", self._frame, 25) + self._speed_factor_widget = self.gui.get_object("SimulationSpeedFactorValue") + self._speed_factor_widget.set_value(1.0) + self._progress = self.gui.get_object("SimulationProgressTimelineValue") + self._timer_widget = self.gui.get_object("SimulationProgressTimeDisplay") + self._timer_widget.set_label("") + self.core.set("show_simulation", False) + self._toolpath_moves = None + self._start_button = self.gui.get_object("SimulationStartButton") + self._pause_button = self.gui.get_object("SimulationPauseButton") + self._stop_button = self.gui.get_object("SimulationStopButton") + for obj, handler in ((self._start_button, self._start_simulation), + (self._pause_button, self._pause_simulation), + (self._stop_button, self._stop_simulation)): + self._gtk_handlers.append((obj, "clicked", handler)) + self._gtk_handlers.append((self._progress, "value-changed", self._update_toolpath)) + self._gtk_handlers.append((self._speed_factor_widget, "value-changed", + self._update_speed_factor_step)) + self._event_handlers = (("toolpath-selection-changed", self._update_visibility), ) + self.register_event_handlers(self._event_handlers) + self.register_gtk_handlers(self._gtk_handlers) + self._update_visibility() + return True + + def teardown(self): + if self.gui: + self.unregister_event_handlers(self._event_handlers) + self.unregister_gtk_handlers(self._gtk_handlers) + del self.core["show_simulation"] + self.core.unregister_ui("toolpath_handling", self._frame) + + def _update_visibility(self): + toolpaths = self.core.get("toolpaths").get_selected() + if toolpaths and (len(toolpaths) == 1): + self._frame.show() + else: + self._frame.hide() + + def _update_speed_factor_step(self, widget): + new_step = max(0.25, widget.get_value() / 10) + if widget.get_step_increment() != new_step: + widget.set_step_increment(new_step) + + def _start_simulation(self, widget=None): + if self._running is None: + # initial start of simulation (not just continuing) + toolpaths = self.core.get("toolpaths").get_selected() + if not toolpaths: + # this should not happen + return + # we use only one toolpath + self._toolpath = toolpaths[0].get_toolpath() + # calculate duration (in seconds) + self._duration = 60 * self._toolpath.get_machine_move_distance_and_time()[1] + self._progress.set_upper(self._duration) + self._progress.set_value(0) + self._toolpath_moves = None + self.core.set("show_simulation", True) + self.core.set("current_tool", self._toolpath.tool.get_tool_geometry()) + self._running = True + interval_ms = int(1000 / self.core.get("tool_progress_max_fps")) + pycam.Gui.common.set_parent_controls_sensitivity(self._frame, False) + self._gobject.timeout_add(interval_ms, self._next_timestep) + else: + self._running = True + self._start_button.set_sensitive(False) + self._pause_button.set_sensitive(True) + self._stop_button.set_sensitive(True) + + def _pause_simulation(self, widget=None): + self._start_button.set_sensitive(True) + self._pause_button.set_sensitive(False) + self._running = False + + def _stop_simulation(self, widget=None): + self._running = None + self.core.set("show_simulation", False) + self.core.set("toolpath_in_progress", None) + self.core.set("current_tool", None) + self._toolpath_moves = None + self._timer_widget.set_label("") + self._progress.set_value(0) + self._start_button.set_sensitive(True) + self._pause_button.set_sensitive(False) + self._stop_button.set_sensitive(False) + pycam.Gui.common.set_parent_controls_sensitivity(self._frame, True) + self.core.emit_event("visual-item-updated") + + def _next_timestep(self): + if self._running is None: + # stop operation + return False + if not self._running: + # pause -> no change + return True + if self._progress.get_value() < self._progress.get_upper(): + time_step = (self._speed_factor_widget.get_value() + / self.core.get("tool_progress_max_fps")) + new_time = self._progress.get_value() + time_step + new_time = min(new_time, self._progress.get_upper()) + if new_time != self._progress.get_value(): + # update the visualization + self._progress.set_value(new_time) + return True + + def _update_toolpath(self, widget=None): + if (self._running is not None) and (self._progress.get_upper() > 0): + fraction = self._progress.get_value() / self._progress.get_upper() + current = datetime.timedelta(seconds=int(self._progress.get_value())) + complete = datetime.timedelta(seconds=int(self._progress.get_upper())) + self._timer_widget.set_label("%s / %s" % (current, complete)) + moves = self._toolpath.get_moves(max_time=self._duration * fraction / 60) + if moves: + tool = self.core.get("current_tool") + if tool: + last_position = moves[-1][1] + tool.moveto(last_position) + self.core.set("toolpath_in_progress", moves) + self.core.emit_event("visual-item-updated") diff --git a/pycam/pycam/Plugins/Toolpaths.py b/pycam/pycam/Plugins/Toolpaths.py new file mode 100644 index 00000000..cef6cc11 --- /dev/null +++ b/pycam/pycam/Plugins/Toolpaths.py @@ -0,0 +1,117 @@ +""" +Copyright 2011 Lars Kruse + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + + +import pycam.Plugins +import pycam.Toolpath +import pycam.workspace.data_models + + +class Toolpaths(pycam.Plugins.ListPluginBase): + + UI_FILE = "toolpaths.ui" + CATEGORIES = ["Toolpath"] + ICONS = {"visible": "visible.svg", "hidden": "visible_off.svg"} + COLLECTION_ITEM_TYPE = pycam.workspace.data_models.Toolpath + + def setup(self): + if self.gui: + self.tp_box = self.gui.get_object("ToolpathsBox") + self.tp_box.unparent() + self.core.register_ui("main", "Toolpaths", self.tp_box, weight=50) + self._gtk_handlers = [] + self._modelview = self.gui.get_object("ToolpathTable") + self.set_gtk_modelview(self._modelview) + self.register_model_update(lambda: self.core.emit_event("toolpath-list-changed")) + self._treemodel = self.gui.get_object("ToolpathListModel") + self._treemodel.clear() + for action, obj_name in ((self.ACTION_UP, "ToolpathMoveUp"), + (self.ACTION_DOWN, "ToolpathMoveDown"), + (self.ACTION_DELETE, "ToolpathDelete"), + (self.ACTION_CLEAR, "ToolpathDeleteAll")): + self.register_list_action_button(action, self.gui.get_object(obj_name)) + # toolpath operations + toolpath_handling_obj = self.gui.get_object("ToolpathHandlingNotebook") + + def clear_toolpath_handling_obj(): + for index in range(toolpath_handling_obj.get_n_pages()): + toolpath_handling_obj.remove_page(0) + + def add_toolpath_handling_item(item, name): + toolpath_handling_obj.append_page(item, self._gtk.Label(name)) + + self.core.register_ui_section("toolpath_handling", add_toolpath_handling_item, + clear_toolpath_handling_obj) + # handle table changes + self._gtk_handlers.extend(( + (self._modelview, "row-activated", self.toggle_item_visibility), + (self._modelview, "row-activated", "toolpath-changed"), + (self.gui.get_object("ToolpathNameCell"), "edited", self.edit_item_name))) + # handle selection changes + selection = self._modelview.get_selection() + self._gtk_handlers.append((selection, "changed", "toolpath-selection-changed")) + selection.set_mode(self._gtk.SelectionMode.MULTIPLE) + # define cell renderers + self.gui.get_object("ToolpathNameColumn").set_cell_data_func( + self.gui.get_object("ToolpathNameCell"), self.render_item_name) + self.gui.get_object("ToolpathTimeColumn").set_cell_data_func( + self.gui.get_object("ToolpathTimeCell"), self._render_machine_time) + self.gui.get_object("ToolpathVisibleColumn").set_cell_data_func( + self.gui.get_object("ToolpathVisibleSymbol"), self.render_item_visible_state) + self._event_handlers = ( + ("toolpath-list-changed", self._update_toolpath_tab_visibility), + ("toolpath-list-changed", self.force_gtk_modelview_refresh)) + self.register_gtk_handlers(self._gtk_handlers) + self.register_event_handlers(self._event_handlers) + self._update_toolpath_tab_visibility() + self.core.set("toolpaths", self) + self.core.register_namespace("toolpaths", pycam.Plugins.get_filter(self)) + return True + + def teardown(self): + if self.gui and self._gtk: + self.unregister_event_handlers(self._event_handlers) + self.unregister_gtk_handlers(self._gtk_handlers) + self.core.unregister_ui("main", self.gui.get_object("ToolpathsBox")) + self.core.unregister_namespace("toolpaths") + self.core.set("toolpaths", None) + + def _update_toolpath_tab_visibility(self): + has_toolpaths = len(self.get_all()) > 0 + if has_toolpaths: + self.tp_box.show() + else: + self.tp_box.hide() + + def _render_machine_time(self, column, cell, model, m_iter, data): + def get_time_string(minutes): + if minutes > 180: + return "%d hours" % int(round(minutes / 60)) + elif minutes > 3: + return "%d minutes" % int(round(minutes)) + else: + return "%d seconds" % int(round(minutes * 60)) + + toolpath = self.get_by_path(model.get_path(m_iter)) + path = toolpath.get_toolpath() + if path: + text = get_time_string(path.get_machine_time()) + else: + text = "empty" + cell.set_property("text", text) diff --git a/pycam/pycam/Plugins/Tools.py b/pycam/pycam/Plugins/Tools.py new file mode 100644 index 00000000..0031b423 --- /dev/null +++ b/pycam/pycam/Plugins/Tools.py @@ -0,0 +1,253 @@ +""" +Copyright 2011 Lars Kruse + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + +import pycam.Plugins +from pycam.Flow.history import merge_history_and_block_events +import pycam.workspace.data_models + + +class Tools(pycam.Plugins.ListPluginBase): + + DEPENDS = ["ParameterGroupManager"] + CATEGORIES = ["Tool"] + UI_FILE = "tools.ui" + COLLECTION_ITEM_TYPE = pycam.workspace.data_models.Tool + + def setup(self): + self.core.set("tools", self) + if self.gui: + tool_frame = self.gui.get_object("ToolBox") + tool_frame.unparent() + self.core.register_ui("main", "Tools", tool_frame, weight=10) + self._gtk_handlers = [] + self._modelview = self.gui.get_object("ToolTable") + self.set_gtk_modelview(self._modelview) + self.register_model_update(lambda: self.core.emit_event("tool-list-changed")) + for action, obj_name in ((self.ACTION_UP, "ToolMoveUp"), + (self.ACTION_DOWN, "ToolMoveDown"), + (self.ACTION_DELETE, "ToolDelete")): + self.register_list_action_button(action, self.gui.get_object(obj_name)) + self._gtk_handlers.append((self.gui.get_object("ToolNew"), "clicked", self._tool_new)) + # parameters + parameters_box = self.gui.get_object("ToolParameterBox") + + def clear_parameter_widgets(): + parameters_box.foreach(parameters_box.remove) + + def add_parameter_widget(item, name): + # create a frame within an alignment and the item inside + if item.get_parent(): + item.unparent() + frame_label = self._gtk.Label() + frame_label.set_markup("%s" % name) + frame = self._gtk.Frame() + frame.set_label_widget(frame_label) + align = self._gtk.Alignment() + frame.add(align) + align.set_padding(0, 3, 12, 3) + align.add(item) + frame.show_all() + parameters_box.pack_start(frame, expand=True, fill=True, padding=0) + + self.core.register_ui_section("tool_parameters", add_parameter_widget, + clear_parameter_widgets) + self.core.get("register_parameter_group")( + "tool", changed_set_event="tool-shape-changed", + changed_set_list_event="tool-shape-list-changed", + get_related_parameter_names=self._get_selected_shape_parameter_names) + self.size_widget = pycam.Gui.ControlsGTK.ParameterSection() + self.core.register_ui("tool_parameters", "Size", self.size_widget.get_widget(), + weight=10) + self.core.register_ui_section("tool_size", self.size_widget.add_widget, + self.size_widget.clear_widgets) + self.speed_widget = pycam.Gui.ControlsGTK.ParameterSection() + self.core.register_ui("tool_parameters", "Speed", self.speed_widget.get_widget(), + weight=20) + self.core.register_ui_section("tool_speed", self.speed_widget.add_widget, + self.speed_widget.clear_widgets) + self.spindle_widget = pycam.Gui.ControlsGTK.ParameterSection() + self.core.register_ui("tool_parameters", "Spindle", self.spindle_widget.get_widget(), + weight=30) + self.core.register_ui_section("tool_spindle", self.spindle_widget.add_widget, + self.spindle_widget.clear_widgets) + # table updates + cell = self.gui.get_object("ShapeCell") + self.gui.get_object("ShapeColumn").set_cell_data_func(cell, self._render_tool_shape) + self._gtk_handlers.append((self.gui.get_object("IDCell"), "edited", + self._edit_tool_id)) + self._gtk_handlers.append((self.gui.get_object("NameCell"), "edited", + self.edit_item_name)) + # selector + self._gtk_handlers.append((self._modelview.get_selection(), "changed", + "tool-selection-changed")) + # shape selector + self._gtk_handlers.append((self.gui.get_object("ToolShapeSelector"), "changed", + "tool-control-changed")) + # define cell renderers + self.gui.get_object("IDColumn").set_cell_data_func( + self.gui.get_object("IDCell"), self._render_tool_info, "tool_id") + self.gui.get_object("NameColumn").set_cell_data_func( + self.gui.get_object("NameCell"), self._render_tool_info, "name") + self.gui.get_object("ShapeColumn").set_cell_data_func( + self.gui.get_object("ShapeCell"), self._render_tool_shape) + self._event_handlers = ( + ("tool-shape-list-changed", self._update_shape_widgets), + ("tool-selection-changed", self._update_tool_widgets), + ("tool-changed", self._update_tool_widgets), + ("tool-changed", self.force_gtk_modelview_refresh), + ("tool-list-changed", self.force_gtk_modelview_refresh), + ("tool-control-changed", self._transfer_controls_to_tool)) + self.register_gtk_handlers(self._gtk_handlers) + self.register_event_handlers(self._event_handlers) + self._update_shape_widgets() + self._update_tool_widgets() + self.core.register_namespace("tools", pycam.Plugins.get_filter(self)) + self.register_state_item("tools", self) + return True + + def teardown(self): + if self.gui and self._gtk: + self.unregister_event_handlers(self._event_handlers) + self.unregister_gtk_handlers(self._gtk_handlers) + self.core.unregister_ui("main", self.gui.get_object("ToolBox")) + self.core.unregister_ui_section("tool_speed") + self.core.unregister_ui_section("tool_size") + self.core.unregister_ui("tool_parameters", self.size_widget.get_widget()) + self.core.unregister_ui("tool_parameters", self.speed_widget.get_widget()) + self.core.unregister_ui("tool_parameters", self.spindle_widget.get_widget()) + self.core.unregister_ui_section("tool_parameters") + self.core.get("unregister_parameter_group")("tool") + self.clear_state_items() + self.core.unregister_namespace("tools") + self.core.set("tools", None) + self.clear() + return True + + def _render_tool_info(self, column, cell, model, m_iter, key): + tool = self.get_by_path(model.get_path(m_iter)) + if key in ("tool_id", ): + text = tool.get_value(key) + else: + text = tool.get_application_value(key) + cell.set_property("text", str(text)) + + def _render_tool_shape(self, column, cell, model, m_iter, data): + tool = self.get_by_path(model.get_path(m_iter)) + text = "%g%s" % (tool.diameter, self.core.get("unit")) + cell.set_property("text", text) + + def _edit_tool_id(self, cell, path, new_text): + tool = self.get_by_path(path) + try: + new_value = int(new_text) + except ValueError: + return + if tool and (new_value != tool.get_value("tool_id")): + tool.set_value("tool_id", new_value) + + def _get_selected_shape_parameter_names(self): + shape = self._get_selected_shape() + return set() if shape is None else set(shape["parameters"].keys()) + + def _get_selected_shape(self, name=None): + shapes = self.core.get("get_parameter_sets")("tool") + if name is None: + # find the currently selected one + selector = self.gui.get_object("ToolShapeSelector") + model = selector.get_model() + index = selector.get_active() + if index < 0: + return None + shape_name = model[index][1] + else: + shape_name = name + if shape_name in shapes: + return shapes[shape_name] + else: + return None + + def select_shape(self, name): + selector = self.gui.get_object("ToolShapeSelector") + for index, row in enumerate(selector.get_model()): + if row[1] == name: + selector.set_active(index) + break + else: + selector.set_active(-1) + + def _update_shape_widgets(self): + """update controls that depend on the list of available shapes""" + model = self.gui.get_object("ToolShapeList") + model.clear() + shapes = list(self.core.get("get_parameter_sets")("tool").values()) + shapes.sort(key=lambda item: item["weight"]) + for shape in shapes: + model.append((shape["label"], shape["name"])) + # check if any on the tools became obsolete due to a missing plugin + shape_names = [shape["name"] for shape in shapes] + for tool in self.get_all(): + if not tool.get_value("shape").value in shape_names: + self.get_collection().remove(tool) + # show "new" only if a strategy is available + self.gui.get_object("ToolNew").set_sensitive(len(model) > 0) + selector_box = self.gui.get_object("ToolSelectorBox") + if len(model) < 2: + selector_box.hide() + else: + selector_box.show() + + def _update_tool_widgets(self, widget=None): + """transfer the content of the currently selected tool to the related widgets""" + tool = self.get_selected() + control_box = self.gui.get_object("ToolSettingsControlsBox") + if tool is None: + control_box.hide() + else: + with self.core.blocked_events({"tool-control-changed"}): + shape_name = tool.get_value("shape").value + self.select_shape(shape_name) + self.core.get("set_parameter_values")("tool", tool.get_dict()) + control_box.show() + # trigger an update of the tool parameter widgets based on the shape + self.core.emit_event("tool-shape-changed") + + def _transfer_controls_to_tool(self): + """the value of a tool-related control was changed by by the user + + The changed value needs to be transferred to the currently selected tool. + """ + tool = self.get_selected() + shape = self._get_selected_shape() + if tool and shape: + tool.set_value("shape", shape["name"]) + for key, value in self.core.get("get_parameter_values")("tool").items(): + tool.set_value(key, value) + + def _tool_new(self, widget=None, shape="flat_bottom"): + # look for an unused tool ID + existing_tool_ids = [tool.get_value("tool_id") for tool in self.get_all()] + tool_id = 1 + while tool_id in existing_tool_ids: + tool_id += 1 + with merge_history_and_block_events(self.core): + params = {"shape": shape, "tool_id": tool_id} + params.update(self.core.get("get_default_parameter_values")("tool", set_name=shape)) + new_tool = pycam.workspace.data_models.Tool(None, data=params) + new_tool.set_application_value("name", self.get_non_conflicting_name("Tool #%d")) + self.select(new_tool) diff --git a/pycam/pycam/Plugins/Units.py b/pycam/pycam/Plugins/Units.py new file mode 100644 index 00000000..b716f85e --- /dev/null +++ b/pycam/pycam/Plugins/Units.py @@ -0,0 +1,70 @@ +""" +Copyright 2011 Lars Kruse + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + +import pycam.Plugins + + +class Units(pycam.Plugins.PluginBase): + + UI_FILE = "units.ui" + CATEGORIES = ["System"] + + def setup(self): + self._last_unit = "mm" + if self.gui: + self._gtk_handlers = [] + unit_pref_box = self.gui.get_object("UnitPrefBox") + unit_pref_box.unparent() + self.core.register_ui("preferences_general", "Units", unit_pref_box, 20) + # unit control (mm/inch) + unit_field = self.gui.get_object("unit_control") + self._gtk_handlers.append((unit_field, "changed", self.change_unit_init)) + + def set_unit(text): + unit_field.set_active(0 if text == "mm" else 1) + self._last_unit = text + + def get_unit_text(): + model = unit_field.get_model() + if model: + return model[unit_field.get_active()][0] + else: + return self._last_unit + + self.core.add_item("unit", get_unit_text, set_unit) + # other plugins should use "unit_string" for human readable output + self.core.add_item("unit_string", get_unit_text) + self.register_gtk_handlers(self._gtk_handlers) + self.register_state_item("settings/unit", lambda: self.core.get("unit"), + lambda value: self.core.set("unit", value)) + return True + + def teardown(self): + if self.gui: + self.unregister_gtk_handlers(self._gtk_handlers) + self.core.unregister_ui("preferences_general", self.gui.get_object("UnitPrefBox")) + # TODO: reset setting "unit" back to a default value? + self.clear_state_items() + + def change_unit_init(self, widget=None): + # update the "_last_unit" attribute + model = widget.get_model() + self._last_unit = model[widget.get_active()][0] + # redraw the model + self.core.emit_event("model-change-after") diff --git a/pycam/pycam/Plugins/__init__.py b/pycam/pycam/Plugins/__init__.py new file mode 100644 index 00000000..17b80b70 --- /dev/null +++ b/pycam/pycam/Plugins/__init__.py @@ -0,0 +1,688 @@ +""" +Copyright 2011 Lars Kruse + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + +import imp +import inspect +import os +import uuid + +from pycam.Utils import get_non_conflicting_name +from pycam.Utils.events import get_event_handler +import pycam.Utils.log +import pycam.Utils.locations + + +_log = pycam.Utils.log.get_logger() + + +def _get_plugin_imports(): + # We want to import all relevant GUI modules into the namespace of each plugin. + # We do this once for all - in order to centralize and minimize error handling. + result = {key: None for key in ("gtk", "gdk", "gdkpixbuf", "gdkobject", "gio", "glib", + "GL", "GLU", "GLUT")} + + # By default, Gdk loads the OpenGL 3.2 Core profile. However, PyCAM's rendering + # code uses the fixed function pipeline, which was removed in the Core profile. + # So we have to resort to this semi-public API to ask Gdk to use a Compatibility + # profile instead. + os.environ['GDK_GL'] = 'legacy' + + try: + import gi + gi.require_version('Gtk', '3.0') + from gi.repository import Gtk + from gi.repository import Gdk + from gi.repository import GdkPixbuf + from gi.repository import Gio + from gi.repository import GLib + from gi.repository import GObject + result["gtk"] = Gtk + result["gdk"] = Gdk + result["gdkpixbuf"] = GdkPixbuf + result["gio"] = Gio + result["glib"] = GLib + result["gobject"] = GObject + except ImportError: + _log.warning("Failed to import GTK3 module. Maybe you want to install 'python3-gi' " + "for pycam's graphical user interface.") + if result["gtk"]: + try: + import OpenGL.GL + import OpenGL.GLU + import OpenGL.GLUT + result["GL"] = OpenGL.GL + result["GLU"] = OpenGL.GLU + result["GLUT"] = OpenGL.GLUT + except ImportError: + # OpenGL-related plugins will complain later about the missing dependency + _log.warning("Failed to import OpenGL module. Maybe you want to install " + "'python3-opengl' for the 3D visualization.") + return result + + +class PluginBase: + + UI_FILE = None + DEPENDS = [] + CATEGORIES = [] + ICONS = {} + ICON_SIZE = 23 + _imports = _get_plugin_imports() + + def __init__(self, core, name): + self.enabled = True + self.name = name + self.core = core + self.gui = None + self.log = _log + # convenience imports for GUI modules (self._gtk, self._gdk, self._GL, ...) + for key, value in self._imports.items(): + setattr(self, "_" + key, value) + if self.UI_FILE and self._gtk: + gtk_build_file = pycam.Utils.locations.get_ui_file_location(self.UI_FILE) + if gtk_build_file: + self.gui = self._gtk.Builder() + try: + self.gui.add_from_file(gtk_build_file) + except RuntimeError as err_msg: + self.log.info("Failed to import UI file (%s): %s", gtk_build_file, err_msg) + self.gui = None + else: + # All windows should share the same accel group (for + # keyboard shortcuts). + try: + common_accel_group = self.core["gtk-accel-group"] + except KeyError: + self.log.info("Failed to connect to a common GTK accelerator group") + common_accel_group = None + if common_accel_group: + for obj in self.gui.get_objects(): + if isinstance(obj, self._gtk.Window): + obj.add_accel_group(common_accel_group) + + if self._gtk: + for key in self.ICONS: + icon_location = pycam.Utils.locations.get_ui_file_location(self.ICONS[key]) + if icon_location: + try: + self.ICONS[key] = self._gdkpixbuf.Pixbuf.new_from_file_at_size( + icon_location, self.ICON_SIZE, self.ICON_SIZE) + except self._gobject.GError: + self.log.info("Failed to load icon: %s", self.ICONS[key]) + self.ICONS[key] = None + else: + self.log.debug("Failed to locate icon: %s", self.ICONS[key]) + self.ICONS[key] = None + self._func_cache = {} + self._gtk_handler_id_cache = [] + self.enabled = True + self._state_items = [] + + def register_state_item(self, path, get_func, set_func=None): + group = (path, get_func, set_func) + if group in self._state_items: + self.log.debug("Trying to register a state item twice: %s", path) + else: + self._state_items.append(group) + + def clear_state_items(self): + self._state_items = [] + + def unregister_state_item(self, path, get_func, set_func=None): + group = (path, get_func, set_func) + if group in self._state_items: + self._state_items.remove(group) + else: + self.log.debug("Trying to unregister an unknown state item: %s", path) + + def dump_state(self, result): + for path, get_func, set_func in self._state_items: + if callable(get_func): + value = get_func() + else: + value = get_func + result.append((path, value)) + + def __get_handler_func(self, func, params=None): + if params is None: + params = [] + params = tuple(params) + try: + key = (hash(func), repr(params)) + except TypeError: + key = (id(func), repr(params)) + if key not in self._func_cache: + if callable(func): + if not params: + result = func + else: + result = lambda *args, **kwargs: func(*(args + params), **kwargs) + else: + # it is the name of a signal + result = lambda *args: self.core.emit_event(func, *params) + self._func_cache[key] = result + return self._func_cache[key] + + def register_event_handlers(self, event_handlers): + for name, target in event_handlers: + self.core.register_event(name, self.__get_handler_func(target)) + + def register_gtk_handlers(self, gtk_widget_handlers): + for data in gtk_widget_handlers: + obj, signal, func = data[:3] + params = data[3:] if len(data) > 3 else [] + handler_id = obj.connect(signal, self.__get_handler_func(func, params)) + self._gtk_handler_id_cache.append((obj, handler_id)) + + def unregister_event_handlers(self, event_handlers): + for name, target in event_handlers: + self.core.unregister_event(name, self.__get_handler_func(target)) + + def unregister_gtk_handlers(self, gtk_widget_handlers): + while self._gtk_handler_id_cache: + obj, handler_id = self._gtk_handler_id_cache.pop() + obj.disconnect(handler_id) + + def setup(self): + raise NotImplementedError("Module %s (%s) does not implement 'setup'" + % (self.name, __file__)) + + def teardown(self): + raise NotImplementedError("Module %s (%s) does not implement 'teardown'" + % (self.name, __file__)) + + def _get_gtk_action_group_by_name(self, group_name, create_if_missing=False): + ui_manager = self.core.get("gtk-uimanager") + # find the action group of the given name or create a new one + for action_group in ui_manager.get_action_groups(): + if action_group.get_name() == group_name: + return action_group + else: + if create_if_missing: + action_group = self._gtk.ActionGroup(name=group_name) + ui_manager.insert_action_group(action_group) + return action_group + else: + return None + + def register_gtk_accelerator(self, groupname, action, accel_string, accel_name): + actiongroup = self._get_gtk_action_group_by_name(groupname, create_if_missing=True) + accel_path = "/%s" % accel_name + action.set_accel_path(accel_path) + # it is a bit pointless, but we allow an empty accel_string anyway ... + if accel_string: + key, mod = self._gtk.accelerator_parse(accel_string) + self._gtk.AccelMap.change_entry(accel_path, key, mod, True) + actiongroup.add_action(action) + + def unregister_gtk_accelerator(self, groupname, action): + actiongroup = self._get_gtk_action_group_by_name(groupname) + if actiongroup is None: + self.log.warning("Failed to unregister unknown GTK Action Group: %s", groupname) + actiongroup.remove_action(action) + # remove the connected action group, if it is empty (no more actions assigned) + ui_manager = self.core.get("gtk-uimanager") + if ui_manager and (len(actiongroup.list_actions()) == 0): + ui_manager.remove_action_group(actiongroup) + + +class PluginManager: + + def __init__(self, core): + self.core = core + self.modules = {} + self.core.set("plugin-manager", self) + + def import_plugins(self, directory=None, ignore_names=None): + if ignore_names is None: + ignore_names = [] + if directory is None: + directory = os.path.dirname(__file__) + try: + files = os.listdir(directory) + except OSError: + return + plugins = [] + for filename in files: + if (filename.endswith(".py") + and (filename.lower() != "__init__.py") + and os.path.isfile(os.path.join(directory, filename))): + mod_name = filename[0:-(len(".py"))] + if mod_name in ignore_names: + _log.info("Skipping plugin %s (marked as 'ignore')", mod_name) + continue + try: + mod_file, mod_filename, mod_desc = imp.find_module(mod_name, [directory]) + full_mod_name = "pycam.Plugins.%s" % mod_name + mod = imp.load_module(full_mod_name, mod_file, mod_filename, mod_desc) + except ImportError as exc: + _log.info("Skipping plugin %s: %s", os.path.join(directory, filename), exc) + continue + for attr in dir(mod): + item = getattr(mod, attr) + if inspect.isclass(item) and issubclass(item, PluginBase): + plugins.append((item, mod_filename, attr)) + try_again = True + while try_again: + try_again = False + postponed_plugins = [] + for plugin, filename, name in plugins: + for dep in plugin.DEPENDS: + if dep not in self.modules: + # dependency not loaded, yet + postponed_plugins.append((plugin, filename, name)) + break + else: + self._load_plugin(plugin, filename, name) + try_again = True + plugins = postponed_plugins + for plugin, filename, name in plugins: + # module failed to load due to missing dependencies + missing = [] + for depend in plugin.DEPENDS: + try: + # check if this dependency is available + self.get_plugin(depend) + except KeyError: + missing.append(depend) + _log.info("Skipping plugin '%s' due to missing dependencies: %s", + name, ", ".join(missing)) + + def _load_plugin(self, obj, filename, plugin_name): + if plugin_name in self.modules: + _log.debug("Cleaning up module %s", plugin_name) + self.modules[plugin_name].teardown() + _log.debug("Initializing module %s (%s)", plugin_name, filename) + new_plugin = obj(self.core, plugin_name) + try: + if not new_plugin.setup(): + _log.info("Failed to setup plugin '%s'", str(plugin_name)) + else: + self.modules[plugin_name] = new_plugin + self.core.emit_event("plugin-list-changed") + except NotImplementedError as err_msg: + _log.info("Skipping incomplete plugin '%s': %s", plugin_name, err_msg) + + def disable_all_plugins(self): + _log.info("Disabling all plugins") + for plugin_name in self.modules: + if self.get_plugin_state(plugin_name): + self.disable_plugin(plugin_name, recursively=True) + + def get_plugin(self, name): + if name in self.modules: + return self.modules[name] + else: + raise KeyError("Plugin '%s' is not available" % name) + + def enable_plugin(self, name): + plugin = self.get_plugin(name) + if plugin.enabled: + _log.debug("Refused to enable an active plugin: %s" % name) + return + else: + plugin.enabled = plugin.setup() + + def disable_plugin(self, name, recursively=False): + plugin = self.get_plugin(name) + if not plugin.enabled: + _log.debug("Refused to disable an disabled plugin: %s" % name) + return + else: + if recursively and self.is_plugin_required(name): + for dep_name in self.get_dependent_plugins(name): + if self.get_plugin_state(dep_name): + self.disable_plugin(dep_name, recursively=True) + if self.is_plugin_required(name): + _log.warning("Refusing to disable plugin: %s (dependent plugins: %s)", + name, " ".join(self.get_dependent_plugins(name))) + else: + _log.debug("Disabling plugin: %s", name) + plugin.teardown() + plugin.enabled = False + + def get_plugin_state(self, name): + plugin = self.get_plugin(name) + return plugin.enabled + + def get_plugins(self): + return list(self.modules.values()) + + def get_plugin_names(self): + names = self.modules.keys() + return sorted(names) + + def get_dependent_plugins(self, name): + return {plugin.name for plugin in self.modules.values() + if plugin.enabled and (name in plugin.DEPENDS)} + + def is_plugin_required(self, name): + return len(self.get_dependent_plugins(name)) > 0 + + def get_plugin_missing_dependencies(self, name): + plugin = self.get_plugin(name) + missing = [] + for depend in plugin.DEPENDS: + if (depend in self.modules) and self.modules[depend].enabled: + continue + else: + missing.append(depend) + return missing + + +class ListPluginBase(PluginBase): + + ACTION_UP, ACTION_DOWN, ACTION_DELETE, ACTION_CLEAR = range(4) + COLLECTION_ITEM_TYPE = None + + def __init__(self, *args, **kwargs): + super().__init__(*args, **kwargs) + self._update_model_funcs = [] + self._gtk_modelview = None + get_event_handler().register_event(self.COLLECTION_ITEM_TYPE.list_changed_event, + self._update_model) + + def __del__(self): + try: + unregister = get_event_handler().unregister_event + except AttributeError: + pass + unregister(self.COLLECTION_ITEM_TYPE.list_changed_event, self._update_model) + + def get_all(self): + return tuple(self.get_collection()) + + def clear(self): + self.get_collection().clear() + + def get_selected(self, **kwargs): + if self._gtk_modelview: + return self._get_gtk_selected(**kwargs) + else: + return None + + def _get_gtk_selected(self, index=False, force_list=False): + modelview = self._gtk_modelview + if hasattr(modelview, "get_selection"): + # a treeview selection + selection = modelview.get_selection() + if selection is None: + # probably we are just shutting down right now + selection_mode = None + paths = [] + else: + selection_mode = selection.get_mode() + paths = selection.get_selected_rows()[1] + elif hasattr(modelview, "get_active"): + # combobox + selection_mode = self._gtk.SELECTION_SINGLE + active = modelview.get_active() + if active < 0: + paths = [] + else: + paths = [[active]] + else: + # an iconview + selection_mode = modelview.get_selection_mode() + paths = modelview.get_selected_items() + if index: + get_result = lambda path: path[0] + else: + get_result = self.get_by_path + if (selection_mode == self._gtk.SelectionMode.MULTIPLE) or force_list: + result = [] + for path in paths: + result.append(get_result(path)) + else: + if not paths: + return None + else: + result = get_result(paths[0]) + return result + + def select(self, selected): + if not isinstance(selected, (list, tuple)): + selected = [selected] + if self._gtk_modelview: + self._select_gtk(selected) + + def _select_gtk(self, selected_objs): + selection = self._gtk_modelview.get_selection() + selected_uuids = [item.get_id() for item in selected_objs] + for index, item in enumerate(self.get_collection()): + path = self._gtk.TreePath.new_from_indices((index, )) + if item.get_id() in selected_uuids: + selection.select_path(path) + else: + selection.unselect_path(path) + + def set_gtk_modelview(self, modelview): + self._gtk_modelview = modelview + + def force_gtk_modelview_refresh(self): + # force a table update by simulating a change of the list store + model = self._gtk_modelview.get_model() + if model is not None: + model.prepend(None) + model.remove(model.get_iter_first()) + + def _update_gtk_treemodel(self): + if not self._gtk_modelview: + return + treemodel = self._gtk_modelview.get_model() + if treemodel is None: + # this my happen during shutdown + return + previous_count = len(treemodel) + current_uuids = [item.get_id() for item in self.get_collection()] + # remove all superfluous rows from "treemodel" + removal_indices = [index for index, item in enumerate(treemodel) + if item[0] not in current_uuids] + removal_indices.reverse() + for index in removal_indices: + treemodel.remove(treemodel.get_iter((index, ))) + # add all missing items to "treemodel" + model_uuids = [row[0] for row in treemodel] + for this_uuid in current_uuids: + if this_uuid not in model_uuids: + treemodel.append((this_uuid, )) + # reorder the treemodel according to the current list + sorted_indices = [current_uuids.index(row[0]) for row in treemodel] + if sorted_indices: + treemodel.reorder(sorted_indices) + # Explicitly select the first item - otherwise the pre-filled defaults do not cause a + # selection. This would be annoying for the ExportSettings, since the Toolpath view uses + # the first selected set of settings (but would fail by default). + if (previous_count == 0) and current_uuids: + self.select(self.get_collection()[0]) + + def get_by_path(self, path): + if not self._gtk_modelview: + return None + this_uuid = self._gtk_modelview.get_model()[int(path[0])][0] + return self.get_collection()[this_uuid] + + def _update_model(self): + self._update_gtk_treemodel() + for update_func in self._update_model_funcs: + update_func() + + def register_model_update(self, func): + self._update_model_funcs.append(func) + + def unregister_model_update(self, func): + if func in self._update_model_funcs: + self._update_model_funcs.remove(func) + + def _list_action(self, *args): + # the second-to-last parameter should be the model view + modelview = args[-2] + # the last parameter should be the action (ACTION_UP|DOWN|DELETE|CLEAR) + action = args[-1] + if action not in (self.ACTION_UP, self.ACTION_DOWN, self.ACTION_DELETE, self.ACTION_CLEAR): + self.log.info("Invalid action for ListPluginBase.list_action: %s", str(action)) + return + selected_items = self.get_selected(index=True, force_list=True) + selected_items.sort() + if action in (self.ACTION_DOWN, self.ACTION_DELETE): + selected_items.sort(reverse=True) + collection = self.get_collection() + new_selection = [] + if action == self.ACTION_CLEAR: + collection.clear() + else: + for index in selected_items: + if action == self.ACTION_UP: + if index > 0: + collection.swap_by_index(index, index - 1) + new_selection.append(index - 1) + elif action == self.ACTION_DOWN: + if index < len(self.get_collection()) - 1: + collection.swap_by_index(index, index + 1) + new_selection.append(index + 1) + elif action == self.ACTION_DELETE: + del collection[index] + if collection: + new_selection.append(min(index, len(collection) - 1)) + else: + pass + self._update_model() + if hasattr(modelview, "get_selection"): + selection = modelview.get_selection() + else: + selection = modelview + selection.unselect_all() + for index in new_selection: + path = self._gtk.TreePath.new_from_indices((index, )) + selection.select_path(path) + + def get_collection(self): + return self.COLLECTION_ITEM_TYPE.get_collection() + + def _update_list_action_button_state(self, *args): + modelview = args[-3] # noqa F841 - maybe we need it later + action = args[-2] + button = args[-1] + paths = self.get_selected(index=True, force_list=True) + if action == self.ACTION_CLEAR: + button.set_sensitive(len(self.get_collection()) > 0) + elif not paths: + button.set_sensitive(False) + else: + if action == self.ACTION_UP: + button.set_sensitive(0 not in paths) + elif action == self.ACTION_DOWN: + button.set_sensitive((len(self.get_collection()) - 1) not in paths) + else: + button.set_sensitive(True) + + def register_list_action_button(self, action, button): + modelview = self._gtk_modelview + if hasattr(modelview, "get_selection"): + # a treeview + selection = modelview.get_selection() + selection.connect("changed", self._update_list_action_button_state, modelview, action, + button) + else: + modelview.connect("selection-changed", self._update_list_action_button_state, + modelview, action, button) + model = modelview.get_model() + for signal in ("row-changed", "row-deleted", "row-has-child-toggled", "row-inserted", + "rows-reordered"): + model.connect(signal, self._update_list_action_button_state, modelview, action, button) + button.connect("clicked", self._list_action, modelview, action) + # initialize the state of the button + self._update_list_action_button_state(modelview, action, button) + + def get_visible(self): + return [item for item in self.get_all() if item.get_application_value("visible", True)] + + def edit_item_name(self, cell, path, new_text): + item = self.get_by_path(path) + if item and (new_text != item.get_application_value("name")) and new_text: + item.set_application_value("name", new_text) + + def render_item_name(self, column, cell, model, m_iter, data): + item = self.get_by_path(model.get_path(m_iter)) + if item: + cell.set_property("text", item.get_application_value("name", "No Name")) + + def render_item_visible_state(self, column, cell, model, m_iter, data): + item = self.get_by_path(model.get_path(m_iter)) + if item.get_application_value("visible", True): + cell.set_property("pixbuf", self.ICONS["visible"]) + else: + cell.set_property("pixbuf", self.ICONS["hidden"]) + return item, cell + + def toggle_item_visibility(self, treeview, path, column): + item = self.get_by_path(path) + if item: + item.set_application_value("visible", not item.get_application_value("visible")) + self.core.emit_event("visual-item-updated") + + def get_non_conflicting_name(self, name_template): + return get_non_conflicting_name( + name_template, [item.get_application_value("name") for item in self.get_all()]) + + +class ObjectWithAttributes(dict): + + def __init__(self, node_key=None, attributes=None, **kwargs): + super().__init__(**kwargs) + if attributes is not None: + self.update(attributes) + self["uuid"] = str(uuid.uuid4()) + self.node_key = node_key + + +def filter_list(items, *args, **kwargs): + if len(args) > 1: + _log.info("This filter accepts only a single unnamed parameter: index(es), but %d " + "parameters were given", len(args)) + return [] + elif len(args) == 1: + try: + items = [items[index] for index in args[0]] + except TypeError: + # not iterable + try: + items = [items[args[0]]] + except (IndexError, TypeError): + _log.info("Invalid index requested in filter: %s", str(args[0])) + return [] + else: + pass + result = [] + for item in items: + for filter_key in kwargs: + try: + if not item[filter_key] == kwargs[filter_key]: + break + except KeyError: + _log.info("Tried to filter an unknown attribute: %s", str(filter_key)) + break + else: + # all keys are matching + result.append(item) + return result + + +def get_filter(items): + return lambda *args, **kwargs: filter_list(items, *args, **kwargs) diff --git a/pycam/pycam/Simulation/__init__.py b/pycam/pycam/Simulation/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/pycam/pycam/Test/__init__.py b/pycam/pycam/Test/__init__.py new file mode 100644 index 00000000..4278d94b --- /dev/null +++ b/pycam/pycam/Test/__init__.py @@ -0,0 +1,57 @@ +""" +Copyright 2013 Lars Kruse + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + + +import unittest + + +class PycamTestCase(unittest.TestCase): + + def _compare_vectors(self, v1, v2, max_deviance=0.000001): + """ compare two vectors and return 'None' in case of success or an error message """ + # provide readable error messages + result_difference = "%s != %s" % (v1, v2) + result_equal = None + if v1 == v2: + return result_equal + if v1 is None or v2 is None: + return False + for index in range(3): + if max_deviance < abs(v1[index] - v2[index]): + return result_difference + return result_equal + + def assert_vector_equal(self, v1, v2, msg=None): + self.assertIsNone(self._compare_vectors(v1, v2), msg=msg) + + def assert_vector_not_equal(self, v1, v2, msg=None): + self.assertIsNotNone(self._compare_vectors(v1, v2), msg=msg) + + def assert_collision_equal(self, collision1, collision2, msg=None): + ccp1, cp1, d1 = collision1 + ccp2, cp2, d2 = collision2 + self.assert_vector_equal(ccp1, ccp2, msg=("Collisions differ ({} != {}) due to ccp" + .format(collision1, collision2))) + self.assert_vector_equal(cp1, cp2, msg=("Collisions differ ({} != {}) due to cp" + .format(collision1, collision2))) + self.assertAlmostEqual(d1, d2, msg=("Collisions differ ({} != {}) due to distance" + .format(collision1, collision2))) + + +main = unittest.main diff --git a/pycam/pycam/Test/assets/bezier_lines.dxf b/pycam/pycam/Test/assets/bezier_lines.dxf new file mode 100644 index 00000000..b98b2116 --- /dev/null +++ b/pycam/pycam/Test/assets/bezier_lines.dxf @@ -0,0 +1,3314 @@ +999 +dxfrw 0.6.3 + 0 +SECTION + 2 +HEADER + 9 +$ACADVER + 1 +AC1021 + 9 +$DWGCODEPAGE + 3 +ANSI_1252 + 9 +$INSBASE + 10 +0 + 20 +0 + 30 +0 + 9 +$EXTMIN + 10 +832.4141114532778 + 20 +92.9552965740121 + 30 +0 + 9 +$EXTMAX + 10 +1216.414141511488 + 20 +385.955296638532 + 30 +0 + 9 +$LIMMIN + 10 +0 + 20 +0 + 9 +$LIMMAX + 10 +420 + 20 +297 + 9 +$ORTHOMODE + 70 + 0 + 9 +$REGENMODE + 70 + 1 + 9 +$FILLMODE + 70 + 1 + 9 +$QTEXTMODE + 70 + 0 + 9 +$MIRRTEXT + 70 + 0 + 9 +$LTSCALE + 40 +1 + 9 +$ATTMODE + 70 + 0 + 9 +$TEXTSIZE + 40 +1 + 9 +$TRACEWID + 40 +15.68 + 9 +$TEXTSTYLE + 7 +Standard + 9 +$CLAYER + 8 +0 + 9 +$CELTYPE + 6 +ByLayer + 9 +$CECOLOR + 62 + 256 + 9 +$CELTSCALE + 40 +1 + 9 +$DISPSILH + 70 + 0 + 9 +$DIMSCALE + 40 +1 + 9 +$DIMASZ + 40 +2.5 + 9 +$DIMEXO + 40 +0.625 + 9 +$DIMDLI + 40 +0.38 + 9 +$DIMRND + 40 +0 + 9 +$DIMDLE + 40 +0 + 9 +$DIMEXE + 40 +1.25 + 9 +$DIMTP + 40 +0 + 9 +$DIMTM + 40 +0 + 9 +$DIMTXT + 40 +2.5 + 9 +$DIMCEN + 40 +0.09 + 9 +$DIMTSZ + 40 +0 + 9 +$DIMTOL + 70 + 0 + 9 +$DIMLIM + 70 + 0 + 9 +$DIMTIH + 70 + 0 + 9 +$DIMTOH + 70 + 1 + 9 +$DIMSE1 + 70 + 0 + 9 +$DIMSE2 + 70 + 0 + 9 +$DIMTAD + 70 + 0 + 9 +$DIMZIN + 70 + 1 + 9 +$DIMBLK + 1 + + 9 +$DIMASO + 70 + 1 + 9 +$DIMSHO + 70 + 1 + 9 +$DIMPOST + 1 +<> + 9 +$DIMAPOST + 1 +[] + 9 +$DIMALT + 70 + 0 + 9 +$DIMALTD + 70 + 2 + 9 +$DIMALTF + 40 +25.4 + 9 +$DIMLFAC + 40 +1 + 9 +$DIMTOFL + 70 + 0 + 9 +$DIMTVP + 40 +0 + 9 +$DIMTIX + 70 + 0 + 9 +$DIMSOXD + 70 + 0 + 9 +$DIMSAH + 70 + 0 + 9 +$DIMBLK1 + 1 + + 9 +$DIMBLK2 + 1 + + 9 +$DIMSTYLE + 2 +Standard + 9 +$DIMCLRD + 70 + 0 + 9 +$DIMCLRE + 70 + 0 + 9 +$DIMCLRT + 70 + 0 + 9 +$DIMTFAC + 40 +1 + 9 +$DIMGAP + 40 +0.625 + 9 +$DIMJUST + 70 + 0 + 9 +$DIMSD1 + 70 + 0 + 9 +$DIMSD2 + 70 + 0 + 9 +$DIMTOLJ + 70 + 1 + 9 +$DIMTZIN + 70 + 0 + 9 +$DIMALTZ + 70 + 0 + 9 +$DIMALTTZ + 70 + 0 + 9 +$DIMUPT + 70 + 0 + 9 +$DIMDEC + 70 + 2 + 9 +$DIMTDEC + 70 + 4 + 9 +$DIMALTU + 70 + 2 + 9 +$DIMALTTD + 70 + 2 + 9 +$DIMTXSTY + 7 +STANDARD + 9 +$DIMAUNIT + 70 + 0 + 9 +$DIMADEC + 70 + 0 + 9 +$DIMALTRND + 40 +0 + 9 +$DIMAZIN + 70 + 0 + 9 +$DIMDSEP + 70 + 0 + 9 +$DIMATFIT + 70 + 3 + 9 +$DIMFRAC + 70 + 0 + 9 +$DIMLDRBLK + 1 +STANDARD + 9 +$DIMLUNIT + 70 + 2 + 9 +$DIMLWD + 70 + -2 + 9 +$DIMLWE + 70 + -2 + 9 +$DIMTMOVE + 70 + 0 + 9 +$DIMFXL + 40 +1 + 9 +$DIMFXLON + 70 + 0 + 9 +$DIMJOGANG + 40 +0.7854 + 9 +$DIMTFILL + 70 + 0 + 9 +$DIMTFILLCLR + 70 + 0 + 9 +$DIMARCSYM + 70 + 0 + 9 +$DIMLTYPE + 6 + + 9 +$DIMLTEX1 + 6 + + 9 +$DIMLTEX2 + 6 + + 9 +$LUNITS + 70 + 2 + 9 +$LUPREC + 70 + 4 + 9 +$SKETCHINC + 40 +1 + 9 +$FILLETRAD + 40 +0 + 9 +$AUNITS + 70 + 0 + 9 +$AUPREC + 70 + 2 + 9 +$MENU + 1 +. + 9 +$ELEVATION + 40 +0 + 9 +$PELEVATION + 40 +0 + 9 +$THICKNESS + 40 +0 + 9 +$LIMCHECK + 70 + 0 + 9 +$CHAMFERA + 40 +0 + 9 +$CHAMFERB + 40 +0 + 9 +$CHAMFERC + 40 +0 + 9 +$CHAMFERD + 40 +0 + 9 +$SKPOLY + 70 + 0 + 9 +$USRTIMER + 70 + 1 + 9 +$ANGBASE + 50 +0 + 9 +$ANGDIR + 70 + 0 + 9 +$PDMODE + 70 + 34 + 9 +$PDSIZE + 40 +0 + 9 +$PLINEWID + 40 +0 + 9 +$SPLFRAME + 70 + 0 + 9 +$SPLINETYPE + 70 + 2 + 9 +$SPLINESEGS + 70 + 8 + 9 +$HANDSEED + 5 +20000 + 9 +$SURFTAB1 + 70 + 6 + 9 +$SURFTAB2 + 70 + 6 + 9 +$SURFTYPE + 70 + 6 + 9 +$SURFU + 70 + 6 + 9 +$SURFV + 70 + 6 + 9 +$UCSBASE + 2 + + 9 +$UCSNAME + 2 + + 9 +$UCSORG + 10 +0 + 20 +0 + 30 +0 + 9 +$UCSXDIR + 10 +1 + 20 +0 + 30 +0 + 9 +$UCSYDIR + 10 +0 + 20 +1 + 30 +0 + 9 +$UCSORTHOREF + 2 + + 9 +$UCSORTHOVIEW + 70 + 0 + 9 +$UCSORGTOP + 10 +0 + 20 +0 + 30 +0 + 9 +$UCSORGBOTTOM + 10 +0 + 20 +0 + 30 +0 + 9 +$UCSORGLEFT + 10 +0 + 20 +0 + 30 +0 + 9 +$UCSORGRIGHT + 10 +0 + 20 +0 + 30 +0 + 9 +$UCSORGFRONT + 10 +0 + 20 +0 + 30 +0 + 9 +$UCSORGBACK + 10 +0 + 20 +0 + 30 +0 + 9 +$PUCSBASE + 2 + + 9 +$PUCSNAME + 2 + + 9 +$PUCSORG + 10 +0 + 20 +0 + 30 +0 + 9 +$PUCSXDIR + 10 +1 + 20 +0 + 30 +0 + 9 +$PUCSYDIR + 10 +0 + 20 +1 + 30 +0 + 9 +$PUCSORTHOREF + 2 + + 9 +$PUCSORTHOVIEW + 70 + 0 + 9 +$PUCSORGTOP + 10 +0 + 20 +0 + 30 +0 + 9 +$PUCSORGBOTTOM + 10 +0 + 20 +0 + 30 +0 + 9 +$PUCSORGLEFT + 10 +0 + 20 +0 + 30 +0 + 9 +$PUCSORGRIGHT + 10 +0 + 20 +0 + 30 +0 + 9 +$PUCSORGFRONT + 10 +0 + 20 +0 + 30 +0 + 9 +$PUCSORGBACK + 10 +0 + 20 +0 + 30 +0 + 9 +$USERI1 + 70 + 0 + 9 +$USERI2 + 70 + 0 + 9 +$USERI3 + 70 + 0 + 9 +$USERI4 + 70 + 0 + 9 +$USERI5 + 70 + 0 + 9 +$USERR1 + 40 +0 + 9 +$USERR2 + 40 +0 + 9 +$USERR3 + 40 +0 + 9 +$USERR4 + 40 +0 + 9 +$USERR5 + 40 +0 + 9 +$WORLDVIEW + 70 + 1 + 9 +$SHADEDGE + 70 + 3 + 9 +$SHADEDIF + 70 + 70 + 9 +$TILEMODE + 70 + 1 + 9 +$MAXACTVP + 70 + 64 + 9 +$PINSBASE + 10 +0 + 20 +0 + 30 +0 + 9 +$PLIMCHECK + 70 + 0 + 9 +$PEXTMIN + 10 +0 + 20 +0 + 30 +0 + 9 +$PEXTMAX + 10 +0 + 20 +0 + 30 +0 + 9 +$GRIDMODE + 70 + 0 + 9 +$SNAPSTYLE + 70 + 0 + 9 +$PLIMMIN + 10 +0 + 20 +0 + 9 +$PLIMMAX + 10 +210 + 20 +297 + 9 +$UNITMODE + 70 + 0 + 9 +$VISRETAIN + 70 + 1 + 9 +$PLINEGEN + 70 + 0 + 9 +$PSLTSCALE + 70 + 1 + 9 +$TREEDEPTH + 70 + 3020 + 9 +$CMLSTYLE + 2 +Standard + 9 +$CMLJUST + 70 + 0 + 9 +$CMLSCALE + 40 +20 + 9 +$PROXYGRAPHICS + 70 + 1 + 9 +$MEASUREMENT + 70 + 1 + 9 +$CELWEIGHT +370 + -1 + 9 +$ENDCAPS +280 + 0 + 9 +$JOINSTYLE +280 + 0 + 9 +$LWDISPLAY +290 + 0 + 9 +$INSUNITS + 70 + 4 + 9 +$HYPERLINKBASE + 1 + + 9 +$STYLESHEET + 1 + + 9 +$XEDIT +290 + 1 + 9 +$CEPSNTYPE +380 + 0 + 9 +$PSTYLEMODE +290 + 1 + 9 +$EXTNAMES +290 + 1 + 9 +$PSVPSCALE + 40 +1 + 9 +$OLESTARTUP +290 + 0 + 9 +$SORTENTS +280 + 127 + 9 +$INDEXCTL +280 + 0 + 9 +$HIDETEXT +280 + 1 + 9 +$XCLIPFRAME +290 + 0 + 9 +$HALOGAP +280 + 0 + 9 +$OBSCOLOR + 70 + 257 + 9 +$OBSLTYPE +280 + 0 + 9 +$INTERSECTIONDISPLAY +280 + 0 + 9 +$INTERSECTIONCOLOR + 70 + 257 + 9 +$DIMASSOC +280 + 1 + 9 +$PROJECTNAME + 1 + + 9 +$CAMERADISPLAY +290 + 0 + 9 +$LENSLENGTH + 40 +50 + 9 +$CAMERAHEIGHT + 40 +0 + 9 +$STEPSPERSEC + 40 +2 + 9 +$STEPSIZE + 40 +50 + 9 +$3DDWFPREC + 40 +2 + 9 +$PSOLWIDTH + 40 +5 + 9 +$PSOLHEIGHT + 40 +80 + 9 +$LOFTANG1 + 40 +1.570796326794897 + 9 +$LOFTANG2 + 40 +1.570796326794897 + 9 +$LOFTMAG1 + 40 +0 + 9 +$LOFTMAG2 + 40 +0 + 9 +$LOFTPARAM + 70 + 7 + 9 +$LOFTNORMALS +280 + 1 + 9 +$LATITUDE + 40 +1 + 9 +$LONGITUDE + 40 +1 + 9 +$NORTHDIRECTION + 40 +0 + 9 +$TIMEZONE + 70 +-8000 + 9 +$LIGHTGLYPHDISPLAY +280 + 1 + 9 +$TILEMODELIGHTSYNCH +280 + 1 + 9 +$SOLIDHIST +280 + 1 + 9 +$SHOWHIST +280 + 1 + 9 +$DWFFRAME +280 + 2 + 9 +$DGNFRAME +280 + 0 + 9 +$REALWORLDSCALE +290 + 1 + 9 +$INTERFERECOLOR + 62 + 1 + 9 +$CSHADOW +280 + 0 + 9 +$SHADOWPLANELOCATION + 40 +0 + 0 +ENDSEC + 0 +SECTION + 2 +CLASSES + 0 +ENDSEC + 0 +SECTION + 2 +TABLES + 0 +TABLE + 2 +VPORT + 5 +8 +330 +0 +100 +AcDbSymbolTable + 70 + 1 + 0 +VPORT + 5 +31 +330 +2 +100 +AcDbSymbolTableRecord +100 +AcDbViewportTableRecord + 2 +*ACTIVE + 70 + 0 + 10 +0 + 20 +0 + 11 +1 + 21 +1 + 12 +753.0632543010269 + 22 +273.805471177786 + 13 +0 + 23 +0 + 14 +10 + 24 +10 + 15 +10 + 25 +10 + 16 +0 + 26 +0 + 36 +1 + 17 +0 + 27 +0 + 37 +0 + 40 +531.1119039201817 + 41 +1.505917159763314 + 42 +50 + 43 +0 + 44 +0 + 50 +0 + 51 +0 + 71 + 0 + 72 + 100 + 73 + 1 + 74 + 3 + 75 + 0 + 76 + 0 + 77 + 0 + 78 + 0 +281 + 0 + 65 + 1 +110 +0 +120 +0 +130 +0 +111 +1 +121 +0 +131 +0 +112 +0 +122 +1 +132 +0 + 79 + 0 +146 +0 +348 +10020 + 60 + 7 + 61 + 5 +292 +1 +282 + 1 +141 +0 +142 +0 + 63 + 250 +421 +3358443 + 0 +ENDTAB + 0 +TABLE + 2 +LTYPE + 5 +5 +330 +0 +100 +AcDbSymbolTable + 70 + 4 + 0 +LTYPE + 5 +14 +330 +5 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +ByBlock + 70 + 0 + 3 + + 72 + 65 + 73 + 0 + 40 +0 + 0 +LTYPE + 5 +15 +330 +5 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +ByLayer + 70 + 0 + 3 + + 72 + 65 + 73 + 0 + 40 +0 + 0 +LTYPE + 5 +16 +330 +5 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +Continuous + 70 + 0 + 3 +Solid line + 72 + 65 + 73 + 0 + 40 +0 + 0 +LTYPE + 5 +32 +330 +5 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +DOT + 70 + 0 + 3 +Dot . . . . . . . . . . . . . . . . . . . . . . + 72 + 65 + 73 + 2 + 40 +6.35 + 49 +0 + 74 + 0 + 49 +-6.35 + 74 + 0 + 0 +LTYPE + 5 +33 +330 +5 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +DOTTINY + 70 + 0 + 3 +Dot (.15x) ..................................... + 72 + 65 + 73 + 2 + 40 +0.9525 + 49 +0 + 74 + 0 + 49 +-0.9525 + 74 + 0 + 0 +LTYPE + 5 +34 +330 +5 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +DOT2 + 70 + 0 + 3 +Dot (.5x) ..................................... + 72 + 65 + 73 + 2 + 40 +3.175 + 49 +0 + 74 + 0 + 49 +-3.175 + 74 + 0 + 0 +LTYPE + 5 +35 +330 +5 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +DOTX2 + 70 + 0 + 3 +Dot (2x) . . . . . . . . . . . . . + 72 + 65 + 73 + 2 + 40 +12.7 + 49 +0 + 74 + 0 + 49 +-12.7 + 74 + 0 + 0 +LTYPE + 5 +36 +330 +5 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +DASHED + 70 + 0 + 3 +Dashed _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ + 72 + 65 + 73 + 2 + 40 +19.05 + 49 +12.7 + 74 + 0 + 49 +-6.35 + 74 + 0 + 0 +LTYPE + 5 +37 +330 +5 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +DASHEDTINY + 70 + 0 + 3 +Dashed (.15x) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ + 72 + 65 + 73 + 2 + 40 +2.8575 + 49 +1.905 + 74 + 0 + 49 +-0.9525 + 74 + 0 + 0 +LTYPE + 5 +38 +330 +5 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +DASHED2 + 70 + 0 + 3 +Dashed (.5x) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ + 72 + 65 + 73 + 2 + 40 +9.524999999999999 + 49 +6.35 + 74 + 0 + 49 +-3.175 + 74 + 0 + 0 +LTYPE + 5 +39 +330 +5 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +DASHEDX2 + 70 + 0 + 3 +Dashed (2x) ____ ____ ____ ____ ____ ___ + 72 + 65 + 73 + 2 + 40 +38.09999999999999 + 49 +25.4 + 74 + 0 + 49 +-12.7 + 74 + 0 + 0 +LTYPE + 5 +3A +330 +5 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +DASHDOT + 70 + 0 + 3 +Dash dot __ . __ . __ . __ . __ . __ . __ . __ + 72 + 65 + 73 + 4 + 40 +25.4 + 49 +12.7 + 74 + 0 + 49 +-6.35 + 74 + 0 + 49 +0 + 74 + 0 + 49 +-6.35 + 74 + 0 + 0 +LTYPE + 5 +3B +330 +5 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +DASHDOTTINY + 70 + 0 + 3 +Dash dot (.15x) _._._._._._._._._._._._._._._. + 72 + 65 + 73 + 4 + 40 +3.81 + 49 +1.905 + 74 + 0 + 49 +-0.9525 + 74 + 0 + 49 +0 + 74 + 0 + 49 +-0.9525 + 74 + 0 + 0 +LTYPE + 5 +3C +330 +5 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +DASHDOT2 + 70 + 0 + 3 +Dash dot (.5x) _._._._._._._._._._._._._._._. + 72 + 65 + 73 + 4 + 40 +12.7 + 49 +6.35 + 74 + 0 + 49 +-3.175 + 74 + 0 + 49 +0 + 74 + 0 + 49 +-3.175 + 74 + 0 + 0 +LTYPE + 5 +3D +330 +5 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +DASHDOTX2 + 70 + 0 + 3 +Dash dot (2x) ____ . ____ . ____ . ___ + 72 + 65 + 73 + 4 + 40 +50.8 + 49 +25.4 + 74 + 0 + 49 +-12.7 + 74 + 0 + 49 +0 + 74 + 0 + 49 +-12.7 + 74 + 0 + 0 +LTYPE + 5 +3E +330 +5 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +DIVIDE + 70 + 0 + 3 +Divide ____ . . ____ . . ____ . . ____ . . ____ + 72 + 65 + 73 + 6 + 40 +31.75 + 49 +12.7 + 74 + 0 + 49 +-6.35 + 74 + 0 + 49 +0 + 74 + 0 + 49 +-6.35 + 74 + 0 + 49 +0 + 74 + 0 + 49 +-6.35 + 74 + 0 + 0 +LTYPE + 5 +3F +330 +5 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +DIVIDETINY + 70 + 0 + 3 +Divide (.15x) __..__..__..__..__..__..__..__.._ + 72 + 65 + 73 + 6 + 40 +4.7625 + 49 +1.905 + 74 + 0 + 49 +-0.9525 + 74 + 0 + 49 +0 + 74 + 0 + 49 +-0.9525 + 74 + 0 + 49 +0 + 74 + 0 + 49 +-0.9525 + 74 + 0 + 0 +LTYPE + 5 +40 +330 +5 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +DIVIDE2 + 70 + 0 + 3 +Divide (.5x) __..__..__..__..__..__..__..__.._ + 72 + 65 + 73 + 6 + 40 +15.875 + 49 +6.35 + 74 + 0 + 49 +-3.175 + 74 + 0 + 49 +0 + 74 + 0 + 49 +-3.175 + 74 + 0 + 49 +0 + 74 + 0 + 49 +-3.175 + 74 + 0 + 0 +LTYPE + 5 +41 +330 +5 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +DIVIDEX2 + 70 + 0 + 3 +Divide (2x) ________ . . ________ . . _ + 72 + 65 + 73 + 6 + 40 +63.5 + 49 +25.4 + 74 + 0 + 49 +-12.7 + 74 + 0 + 49 +0 + 74 + 0 + 49 +-12.7 + 74 + 0 + 49 +0 + 74 + 0 + 49 +-12.7 + 74 + 0 + 0 +LTYPE + 5 +42 +330 +5 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +BORDER + 70 + 0 + 3 +Border __ __ . __ __ . __ __ . __ __ . __ __ . + 72 + 65 + 73 + 6 + 40 +44.45 + 49 +12.7 + 74 + 0 + 49 +-6.35 + 74 + 0 + 49 +12.7 + 74 + 0 + 49 +-6.35 + 74 + 0 + 49 +0 + 74 + 0 + 49 +-6.35 + 74 + 0 + 0 +LTYPE + 5 +43 +330 +5 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +BORDERTINY + 70 + 0 + 3 +Border (.15x) __.__.__.__.__.__.__.__.__.__.__. + 72 + 65 + 73 + 6 + 40 +6.6675 + 49 +1.905 + 74 + 0 + 49 +-0.9525 + 74 + 0 + 49 +1.905 + 74 + 0 + 49 +-0.9525 + 74 + 0 + 49 +0 + 74 + 0 + 49 +-0.9525 + 74 + 0 + 0 +LTYPE + 5 +44 +330 +5 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +BORDER2 + 70 + 0 + 3 +Border (.5x) __.__.__.__.__.__.__.__.__.__.__. + 72 + 65 + 73 + 6 + 40 +22.225 + 49 +6.35 + 74 + 0 + 49 +-3.175 + 74 + 0 + 49 +6.35 + 74 + 0 + 49 +-3.175 + 74 + 0 + 49 +0 + 74 + 0 + 49 +-3.175 + 74 + 0 + 0 +LTYPE + 5 +45 +330 +5 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +BORDERX2 + 70 + 0 + 3 +Border (2x) ____ ____ . ____ ____ . ___ + 72 + 65 + 73 + 6 + 40 +88.89999999999999 + 49 +25.4 + 74 + 0 + 49 +-12.7 + 74 + 0 + 49 +25.4 + 74 + 0 + 49 +-12.7 + 74 + 0 + 49 +0 + 74 + 0 + 49 +-12.7 + 74 + 0 + 0 +LTYPE + 5 +46 +330 +5 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +CENTER + 70 + 0 + 3 +Center ____ _ ____ _ ____ _ ____ _ ____ _ ____ + 72 + 65 + 73 + 4 + 40 +50.8 + 49 +31.75 + 74 + 0 + 49 +-6.35 + 74 + 0 + 49 +6.35 + 74 + 0 + 49 +-6.35 + 74 + 0 + 0 +LTYPE + 5 +47 +330 +5 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +CENTERTINY + 70 + 0 + 3 +Center (.15x) ___ _ ___ _ ___ _ ___ _ ___ _ ___ + 72 + 65 + 73 + 4 + 40 +7.62 + 49 +4.7625 + 74 + 0 + 49 +-0.9525 + 74 + 0 + 49 +0.9525 + 74 + 0 + 49 +-0.9525 + 74 + 0 + 0 +LTYPE + 5 +48 +330 +5 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +CENTER2 + 70 + 0 + 3 +Center (.5x) ___ _ ___ _ ___ _ ___ _ ___ _ ___ + 72 + 65 + 73 + 4 + 40 +28.575 + 49 +19.05 + 74 + 0 + 49 +-3.175 + 74 + 0 + 49 +3.175 + 74 + 0 + 49 +-3.175 + 74 + 0 + 0 +LTYPE + 5 +49 +330 +5 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +CENTERX2 + 70 + 0 + 3 +Center (2x) ________ __ ________ __ _____ + 72 + 65 + 73 + 4 + 40 +101.6 + 49 +63.5 + 74 + 0 + 49 +-12.7 + 74 + 0 + 49 +12.7 + 74 + 0 + 49 +-12.7 + 74 + 0 + 0 +ENDTAB + 0 +TABLE + 2 +LAYER + 5 +2 +330 +0 +100 +AcDbSymbolTable + 70 + 1 + 0 +LAYER + 5 +10 +330 +2 +100 +AcDbSymbolTableRecord +100 +AcDbLayerTableRecord + 2 +0 + 70 + 0 + 62 + 7 + 6 +CONTINUOUS +370 + -3 +390 +F + 0 +ENDTAB + 0 +TABLE + 2 +STYLE + 5 +3 +330 +0 +100 +AcDbSymbolTable + 70 + 3 + 0 +STYLE + 5 +4A +330 +2 +100 +AcDbSymbolTableRecord +100 +AcDbTextStyleTableRecord + 2 +Standard + 70 + 0 + 40 +0 + 41 +1 + 50 +0 + 71 + 0 + 42 +1 + 3 +txt + 4 + + 0 +ENDTAB + 0 +TABLE + 2 +VIEW + 5 +6 +330 +0 +100 +AcDbSymbolTable + 70 + 0 + 0 +ENDTAB + 0 +TABLE + 2 +UCS + 5 +7 +330 +0 +100 +AcDbSymbolTable + 70 + 0 + 0 +ENDTAB + 0 +TABLE + 2 +APPID + 5 +9 +330 +0 +100 +AcDbSymbolTable + 70 + 1 + 0 +APPID + 5 +12 +330 +9 +100 +AcDbSymbolTableRecord +100 +AcDbRegAppTableRecord + 2 +ACAD + 70 + 0 + 0 +APPID + 5 +4B +330 +9 +100 +AcDbSymbolTableRecord +100 +AcDbRegAppTableRecord + 2 +LibreCad + 70 + 0 + 0 +ENDTAB + 0 +TABLE + 2 +DIMSTYLE + 5 +A +330 +0 +100 +AcDbSymbolTable + 70 + 1 +100 +AcDbDimStyleTable + 71 + 1 + 0 +DIMSTYLE +105 +4C +330 +A +100 +AcDbSymbolTableRecord +100 +AcDbDimStyleTableRecord + 2 +Standard + 70 + 0 + 40 +1 + 41 +2.5 + 42 +0.625 + 43 +0.38 + 44 +1.25 + 45 +0 + 46 +0 + 47 +0 + 48 +0 + 49 +1 +140 +2.5 +141 +0.09 +142 +0 +143 +25.4 +144 +1 +145 +0 +146 +1 +147 +0.625 +148 +0 + 71 + 0 + 72 + 0 + 73 + 0 + 74 + 1 + 75 + 0 + 76 + 0 + 77 + 0 + 78 + 1 + 79 + 0 +170 + 0 +171 + 2 +172 + 0 +173 + 0 +174 + 0 +175 + 0 +176 + 0 +177 + 0 +178 + 0 +179 + 0 +271 + 2 +272 + 4 +273 + 2 +274 + 2 +275 + 0 +276 + 0 +277 + 2 +278 + 0 +279 + 0 +280 + 0 +281 + 0 +282 + 0 +283 + 1 +284 + 0 +285 + 0 +286 + 0 +288 + 0 +289 + 3 +340 +STANDARD +341 + +371 + -2 +372 + -2 + 0 +ENDTAB + 0 +TABLE + 2 +BLOCK_RECORD + 5 +1 +330 +0 +100 +AcDbSymbolTable + 70 + 2 + 0 +BLOCK_RECORD + 5 +1F +330 +1 +100 +AcDbSymbolTableRecord +100 +AcDbBlockTableRecord + 2 +*Model_Space + 70 + 0 +280 + 1 +281 + 0 + 0 +BLOCK_RECORD + 5 +1E +330 +1 +100 +AcDbSymbolTableRecord +100 +AcDbBlockTableRecord + 2 +*Paper_Space + 70 + 0 +280 + 1 +281 + 0 + 0 +ENDTAB + 0 +ENDSEC + 0 +SECTION + 2 +BLOCKS + 0 +BLOCK + 5 +20 +330 +1F +100 +AcDbEntity + 8 +0 +100 +AcDbBlockBegin + 2 +*Model_Space + 70 + 0 + 10 +0 + 20 +0 + 30 +0 + 3 +*Model_Space + 1 + + 0 +ENDBLK + 5 +21 +330 +1F +100 +AcDbEntity + 8 +0 +100 +AcDbBlockEnd + 0 +BLOCK + 5 +1C +330 +1B +100 +AcDbEntity + 8 +0 +100 +AcDbBlockBegin + 2 +*Paper_Space + 70 + 0 + 10 +0 + 20 +0 + 30 +0 + 3 +*Paper_Space + 1 + + 0 +ENDBLK + 5 +1D +330 +1F +100 +AcDbEntity + 8 +0 +100 +AcDbBlockEnd + 0 +ENDSEC + 0 +SECTION + 2 +ENTITIES + 0 +LWPOLYLINE + 5 +4D +100 +AcDbEntity + 8 +0 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbPolyline + 90 + 16 + 70 + 1 + 43 +0 + 10 +1206.414141511488 + 20 +92.95529657401215 + 42 +0.4142135623730958 + 10 +1216.414141511488 + 20 +102.9552965740122 + 10 +1216.414141511488 + 20 +355.9552965740122 + 42 +0.4142135623730984 + 10 +1206.41413831459 + 20 +365.9552965740123 + 42 +-0.1989123673796585 + 10 +1182.272003685567 + 20 +375.9552961619905 + 42 +0.1989123673796573 + 10 +1158.129847763167 + 20 +385.9552966385307 + 10 +890.6983828565018 + 20 +385.9552966385311 + 42 +0.1989123673796586 + 10 +866.5562460823008 + 20 +375.9552961619904 + 42 +-0.1989123673796589 + 10 +842.414111453278 + 20 +365.9552965740121 + 42 +0.4142135623730883 + 10 +832.4141114532778 + 20 +355.9552965740123 + 10 +832.4141114532778 + 20 +102.9552965740123 + 42 +0.4142135623731005 + 10 +842.414111453278 + 20 +92.95529657401212 + 42 +0.1989123673796596 + 10 +866.5562460823008 + 20 +102.9552961619904 + 42 +-0.198912367379658 + 10 +890.6983937665135 + 20 +112.9552966385311 + 10 +1158.129866911366 + 20 +112.9552966385308 + 42 +-0.1989123673796567 + 10 +1182.272003685568 + 20 +102.9552961619907 + 42 +0.1989123673796578 + 0 +LWPOLYLINE + 5 +4E +100 +AcDbEntity + 8 +0 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbPolyline + 90 + 8 + 70 + 1 + 43 +0 + 10 +1054.414109396961 + 20 +335.9552966385309 + 42 +0.414213562373095 + 10 +1064.414109396961 + 20 +325.9552966385309 + 10 +1144.414109396961 + 20 +325.9552966385309 + 42 +0.414213562373095 + 10 +1154.414109396961 + 20 +335.9552966385309 + 10 +1154.414109396961 + 20 +345.9552966385309 + 42 +0.414213562373095 + 10 +1144.414109396961 + 20 +355.9552966385309 + 10 +1064.414109396961 + 20 +355.9552966385309 + 42 +0.414213562373095 + 10 +1054.414109396961 + 20 +345.9552966385309 + 0 +LWPOLYLINE + 5 +4F +100 +AcDbEntity + 8 +0 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbPolyline + 90 + 8 + 70 + 1 + 43 +0 + 10 +894.4141288661475 + 20 +335.9552966385311 + 42 +0.414213562373095 + 10 +904.4141288661475 + 20 +325.9552966385311 + 10 +984.4141288661476 + 20 +325.9552966385311 + 42 +0.414213562373095 + 10 +994.4141288661476 + 20 +335.9552966385311 + 10 +994.4141288661476 + 20 +345.9552966385311 + 42 +0.414213562373095 + 10 +984.4141288661476 + 20 +355.9552966385311 + 10 +904.4141288661475 + 20 +355.9552966385311 + 42 +0.414213562373095 + 10 +894.4141288661475 + 20 +345.9552966385311 + 0 +LWPOLYLINE + 5 +50 +100 +AcDbEntity + 8 +0 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbPolyline + 90 + 9 + 70 + 0 + 43 +0 + 10 +1094.41412076484 + 20 +132.1979373256632 + 42 +1.000000000000003 + 10 +1098.656761451959 + 20 +127.9552966385439 + 10 +1115.171480077721 + 20 +127.9552966385434 + 42 +0.9999999999999732 + 10 +1119.41412076484 + 20 +132.197937325627 + 10 +1119.414120764855 + 20 +135.7126559514389 + 42 +1.000000000000027 + 10 +1115.171480077721 + 20 +139.9552966385438 + 10 +1098.656761451951 + 20 +139.9552966385523 + 42 +1.00000000000003 + 10 +1094.41412076484 + 20 +135.7126559514246 + 10 +1094.41412076484 + 20 +132.1979373256632 + 0 +LWPOLYLINE + 5 +51 +100 +AcDbEntity + 8 +0 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbPolyline + 90 + 9 + 70 + 0 + 43 +0 + 10 +929.4141207648393 + 20 +132.1979373256633 + 42 +1.000000000000002 + 10 +933.6567614519586 + 20 +127.955296638544 + 10 +950.1714800777199 + 20 +127.9552966385439 + 42 +0.999999999999983 + 10 +954.4141207648391 + 20 +132.1979373256271 + 10 +954.414120764854 + 20 +135.7126559514396 + 42 +0.9999999999999999 + 10 +950.1714800777199 + 20 +139.955296638544 + 10 +933.6567614519499 + 20 +139.9552966385526 + 42 +0.9999999999999997 + 10 +929.4141207648393 + 20 +135.7126559514247 + 10 +929.4141207648393 + 20 +132.1979373256633 + 0 +LWPOLYLINE + 5 +52 +100 +AcDbEntity + 8 +0 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbPolyline + 90 + 9 + 70 + 0 + 43 +0 + 10 +850.1714746227021 + 20 +214.9553020935361 + 42 +0.9999999999999999 + 10 +854.4141153098215 + 20 +219.1979427806554 + 10 +854.4141153098215 + 20 +235.7126614064168 + 42 +0.9999999999999999 + 10 +850.1714746227383 + 20 +239.955302093536 + 10 +846.6567559969259 + 20 +239.9553020935512 + 42 +0.9999999999999828 + 10 +842.4141153098215 + 20 +235.7126614064168 + 10 +842.4141153098129 + 20 +219.1979427806468 + 42 +1.000000000000003 + 10 +846.6567559969407 + 20 +214.9553020935361 + 10 +850.1714746227021 + 20 +214.9553020935361 + 0 +LWPOLYLINE + 5 +53 +100 +AcDbEntity + 8 +0 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbPolyline + 90 + 9 + 70 + 0 + 43 +0 + 10 +850.1714746227152 + 20 +314.9553020935359 + 42 +0.9999999999999799 + 10 +854.4141153098346 + 20 +319.1979427806552 + 10 +854.4141153098345 + 20 +335.7126614064163 + 42 +1.00000000000002 + 10 +850.1714746227515 + 20 +339.9553020935357 + 10 +846.6567559969388 + 20 +339.9553020935508 + 42 +1 + 10 +842.4141153098345 + 20 +335.7126614064165 + 10 +842.414115309826 + 20 +319.1979427806465 + 42 +0.9999999999999999 + 10 +846.6567559969537 + 20 +314.9553020935359 + 10 +850.1714746227152 + 20 +314.9553020935359 + 0 +LWPOLYLINE + 5 +54 +100 +AcDbEntity + 8 +0 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbPolyline + 90 + 9 + 70 + 0 + 43 +0 + 10 +1198.656766906978 + 20 +214.9553020935356 + 42 +-0.9999999999999695 + 10 +1194.414126219859 + 20 +219.1979427806554 + 10 +1194.414126219858 + 20 +235.7126614064167 + 42 +-0.9999999999999997 + 10 +1198.656766906942 + 20 +239.955302093536 + 10 +1202.171485532754 + 20 +239.9553020935516 + 42 +-0.9999999999999697 + 10 +1206.414126219858 + 20 +235.7126614064174 + 10 +1206.414126219867 + 20 +219.1979427806473 + 42 +-1.000000000000024 + 10 +1202.171485532739 + 20 +214.9553020935361 + 10 +1198.656766906978 + 20 +214.955302093536 + 0 +LWPOLYLINE + 5 +55 +100 +AcDbEntity + 8 +0 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbPolyline + 90 + 9 + 70 + 0 + 43 +0 + 10 +1198.656766906965 + 20 +314.9553020935358 + 42 +-1 + 10 +1194.414126219845 + 20 +319.1979427806551 + 10 +1194.414126219846 + 20 +335.7126614064163 + 42 +-1.000000000000027 + 10 +1198.656766906928 + 20 +339.9553020935355 + 10 +1202.171485532741 + 20 +339.9553020935507 + 42 +-0.9999999999999999 + 10 +1206.414126219845 + 20 +335.7126614064165 + 10 +1206.414126219854 + 20 +319.1979427806465 + 42 +-0.9999999999999999 + 10 +1202.171485532726 + 20 +314.9553020935358 + 10 +1198.656766906965 + 20 +314.9553020935358 + 0 +ENDSEC + 0 +SECTION + 2 +OBJECTS + 0 +DICTIONARY + 5 +C +330 +0 +100 +AcDbDictionary +281 + 1 + 3 +ACAD_GROUP +350 +D + 0 +DICTIONARY + 5 +D +330 +C +100 +AcDbDictionary +281 + 1 + 0 +ENDSEC + 0 +EOF diff --git a/pycam/pycam/Test/test_cxf_fonts.py b/pycam/pycam/Test/test_cxf_fonts.py new file mode 100644 index 00000000..ef983df8 --- /dev/null +++ b/pycam/pycam/Test/test_cxf_fonts.py @@ -0,0 +1,38 @@ +""" +Copyright 2018 Lars Kruse + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + +import os + +import pycam.Test +import pycam.Utils.FontCache + + +FONT_PATH = os.path.join(os.path.dirname(os.path.abspath(__file__)), + os.path.pardir, os.path.pardir, "share", "fonts") + + +class TestCXFImporter(pycam.Test.PycamTestCase): + """ + Checks ability to open all included .cxf font files correctly + """ + + def test_load_ascii_file(self): + cache = pycam.Utils.FontCache.FontCache(FONT_PATH) + # the number of fonts is lower by one, but "Standard" and "Normal" are aliases + assert len(cache) == 35 diff --git a/pycam/pycam/Test/test_dxf_importer.py b/pycam/pycam/Test/test_dxf_importer.py new file mode 100644 index 00000000..718615e0 --- /dev/null +++ b/pycam/pycam/Test/test_dxf_importer.py @@ -0,0 +1,38 @@ +""" +Copyright 2018 Lars Kruse + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + +import os + +from pycam.Importers.DXFImporter import import_model +import pycam.Test + + +ASSETS_PATH = os.path.join(os.path.dirname(os.path.abspath(__file__)), "assets") + +DXF_TEST_FILES = {"bezier_lines.dxf"} + + +class TestDXFImporter(pycam.Test.PycamTestCase): + """ Checks ability to open some sample .dxf files correctly """ + + def test_load_dxf_files(self): + for test_filename in DXF_TEST_FILES: + full_filename = os.path.join(ASSETS_PATH, test_filename) + model = import_model(full_filename) + assert model diff --git a/pycam/pycam/Test/test_intersection.py b/pycam/pycam/Test/test_intersection.py new file mode 100644 index 00000000..9f106d62 --- /dev/null +++ b/pycam/pycam/Test/test_intersection.py @@ -0,0 +1,117 @@ +""" +Copyright 2013 Lars Kruse + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + + +from pycam.Geometry import INFINITE +import pycam.Geometry.intersection +from pycam.Geometry.Line import Line +from pycam.Geometry.Triangle import Triangle +import pycam.Test +import pytest + + +class CircleIntersections(pycam.Test.PycamTestCase): + """Circle collisions""" + + def setUp(self): + self._circle = {"center": (2, 1, 10), "axis": (0, 0, 1), "radius": 3} + + @pytest.mark.skipif(True, reason="this test has never worked") + def test_line(self): + """Circle->Line collisions""" + func = pycam.Geometry.intersection.intersect_circle_line + func_args = [self._circle["center"], self._circle["axis"], self._circle["radius"], + self._circle["radius"] ** 2] + # additional arguments: direction, edge + """ + edge = Line((-1, -1, 4), (5, 5, 4)) + coll = func(*(func_args + [(0, 0, -1)] + [edge])) + # The collision point seems to be the middle of the line. + # This is technically not necessary, but the current algorithm does it this way. + self.assert_collision_equal(((1.5, 1.5, 10), (1.5, 1.5, 4), 6), coll) + """ + """ + # line dips into circle + edge = Line((4, 1, 3), (10, 1, 5)) + coll = func(*(func_args + [(0, 0, -1)] + [edge])) + #self.assert_collision_equal(((-1, 1, 10), (-1, 1, 2), 8), coll) + self.assert_collision_equal(((5, 1, 10), (5, 1, 3.3333333333), 6.666666666), coll) + # horizontally skewed line + edge = Line((2, 1, 3), (8, 1, 5)) + coll = func(*(func_args + [(0, 0, -1)] + [edge])) + #self.assert_collision_equal(((-1, 1, 10), (-1, 1, 2), 8), coll) + self.assert_collision_equal(((5, 1, 10), (5, 1, 4), 6), coll) + """ + # line touches circle + edge = Line((10, 10, 4), (5, 1, 4)) + coll = func(*(func_args + [(0, 0, -1)] + [edge])) + self.assert_collision_equal(((5, 1, 10), (5, 1, 4), 6), coll) + # no collision + edge = Line((10, 10, 4), (5.001, 1, 4)) + coll = func(*(func_args + [(0, 0, -1)] + [edge])) + self.assert_collision_equal((None, None, INFINITE), coll) + + def test_plane(self): + """Circle->Plane collisions""" + func = pycam.Geometry.intersection.intersect_circle_plane + func_args = [self._circle["center"], self._circle["radius"]] + # additional arguments: direction, triangle + triangle = Triangle((0, 5, 3), (5, 0, 3), (0, 0, 3)) + coll = func(*(func_args + [(0, 0, -1)] + [triangle])) + self.assert_collision_equal(((2, 1, 10), (2, 1, 3), 7), coll) + # slightly skewed + triangle = Triangle((2, 5, 3), (2, 0, 3), (-4, 1, 6)) + coll = func(*(func_args + [(0, 0, -1)] + [triangle])) + self.assert_collision_equal(((-1, 1, 10), (-1, 1, 4.5), 5.5), coll) + # skewed and shifted + triangle = Triangle((14, 5, -3), (14, 0, -3), (8, 1, 0)) + coll = func(*(func_args + [(0, 0, -1)] + [triangle])) + self.assert_collision_equal(((-1, 1, 10), (-1, 1, 4.5), 5.5), coll) + # vertical triangle + triangle = Triangle((14, 5, -3), (14, 0, -3), (14, 1, -6)) + coll = func(*(func_args + [(0, 0, -1)] + [triangle])) + self.assert_collision_equal((None, None, INFINITE), coll) + + @pytest.mark.skipif(True, reason="this test has never worked") + def test_point(self): + """Circle->Point collisions""" + func = pycam.Geometry.intersection.intersect_circle_point + func_args = [self._circle["center"], + self._circle["axis"], + self._circle["radius"], + self._circle["radius"] ** 2] + # additional arguments: direction, point + coll = func(*(func_args + [(0, 0, -1)] + [(0, 0, 0)])) + self.assert_collision_equal(((0, 0, 10), (0, 0, 0), 10), coll) + # the same, but upwards + coll = func(*(func_args + [(0, 0, 1)] + [(0, 0, 0)])) + self.assert_collision_equal(((0, 0, 10), (0, 0, 0), -10), coll) + # barely touching the point + coll = func(*(func_args + [(0, 0, -1)] + [(5, 1, 2)])) + self.assert_collision_equal(((5, 1, 10), (5, 1, 2), 8), coll) + # not touching the point + coll = func(*(func_args + [(0, 0, -1)] + [(5.001, 1, 2)])) + self.assert_collision_equal((None, None, INFINITE), coll) + # point is already inside of the circle + coll = func(*(func_args + [(0, 0, -1)] + [(2, 1, 10)])) + self.assert_collision_equal(((2, 1, 10), (2, 1, 10), 0), coll) + + +if __name__ == "__main__": + pycam.Test.main() diff --git a/pycam/pycam/Test/test_motion_grid.py b/pycam/pycam/Test/test_motion_grid.py new file mode 100644 index 00000000..4a2cd973 --- /dev/null +++ b/pycam/pycam/Test/test_motion_grid.py @@ -0,0 +1,171 @@ +""" +Copyright 2018 Lars Kruse + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + +import unittest + +from pycam.Geometry import Box3D, Point3D +from pycam.Toolpath.MotionGrid import ( + GridDirection, MillingStyle, StartPosition, get_fixed_grid, get_fixed_grid_layer, + get_fixed_grid_line, get_spiral_layer, get_spiral_layer_lines) + + +def _resolve_nested(level_count, source): + """ resolve multiple levels of generators """ + assert level_count > 0 + if level_count > 1: + return [_resolve_nested(level_count - 1, item) for item in source] + else: + return list(source) + + +class TestMotionGrid(unittest.TestCase): + + def assert_almost_equal_line(self, line1, line2): + self.assertEqual(len(line1), len(line2)) + for pos1, pos2 in zip(line1, line2): + self.assert_almost_equal_positions(pos1, pos2) + + def assert_almost_equal_lines(self, lines1, lines2): + self.assertEqual(len(lines1), len(lines2)) + for line1, line2 in zip(lines1, lines2): + self.assert_almost_equal_line(line1, line2) + + def assert_almost_equal_positions(self, pos1, pos2): + self.assertEqual(len(pos1), 3) + self.assertEqual(len(pos2), 3) + for v1, v2 in zip(pos1, pos2): + self.assertAlmostEqual(v1, v2) + + def assert_almost_equal_layer(self, layer1, layer2): + self.assertEqual(len(layer1), len(layer2)) + for line1, line2 in zip(layer1, layer2): + self.assert_almost_equal_line(line1, line2) + + def assert_almost_equal_grid(self, grid1, grid2): + self.assertEqual(len(grid1), len(grid2)) + for layer1, layer2 in zip(grid1, grid2): + self.assert_almost_equal_layer(layer1, layer2) + + def test_fixed_grid_line(self): + for z in (-1, 0, 1): + # simple line without steps + line = _resolve_nested( + 1, get_fixed_grid_line(-2, 2, 3, z, grid_direction=GridDirection.X)) + self.assert_almost_equal_line(line, [(-2, 3, z), (2, 3, z)]) + # simple line with steps + line = _resolve_nested( + 1, get_fixed_grid_line(-2, 2, 3, z, step_width=0.9, + grid_direction=GridDirection.X)) + self.assert_almost_equal_line(line, [(-2, 3, z), (-1.2, 3, z), (-0.4, 3, z), + (0.4, 3, z), (1.2, 3, z), (2.0, 3, z)]) + # simple line in Y direction + line = _resolve_nested( + 1, get_fixed_grid_line(0, 2, 3, z, grid_direction=GridDirection.Y)) + self.assert_almost_equal_line(line, [(3, 0, z), (3, 2, z)]) + + def test_fixed_grid_layer(self): + for z in (-1, 0, 1): + # simple zigzag moves + layer, end_position = get_fixed_grid_layer( + 0, 2, 0, 1, z, line_distance=1, grid_direction=GridDirection.X, + milling_style=MillingStyle.IGNORE, start_position=StartPosition.NONE) + layer = _resolve_nested(2, layer) + self.assert_almost_equal_layer(layer, ( + ((0, 0, z), (2, 0, z)), ((2, 0, z), (2, 1, z)), ((2, 1, z), (0, 1, z)))) + self.assertEqual(end_position, StartPosition.Y) + # always move along X in positive direction + layer, end_position = get_fixed_grid_layer( + 0, 2, 0, 1, z, line_distance=1, grid_direction=GridDirection.X, + milling_style=MillingStyle.CONVENTIONAL, start_position=StartPosition.NONE) + layer = _resolve_nested(2, layer) + self.assert_almost_equal_layer(layer, ( + ((0, 0, z), (2, 0, z)), ((0, 1, z), (2, 1, z)))) + self.assertEqual(end_position, StartPosition.X | StartPosition.Y) + # always move along X in negative direction + layer, end_position = get_fixed_grid_layer( + 0, 2, 0, 1, z, line_distance=1, grid_direction=GridDirection.X, + milling_style=MillingStyle.CLIMB, start_position=StartPosition.NONE) + layer = _resolve_nested(2, layer) + self.assert_almost_equal_layer(layer, ( + ((0, 1, z), (2, 1, z)), ((0, 0, z), (2, 0, z)))) + self.assertEqual(end_position, StartPosition.X) + # always move along Y in negative direction + layer, end_position = get_fixed_grid_layer( + 0, 2, 0, 1, z, line_distance=1, grid_direction=GridDirection.Y, + milling_style=MillingStyle.CONVENTIONAL, start_position=StartPosition.NONE) + layer = _resolve_nested(2, layer) + self.assert_almost_equal_layer(layer, ( + ((0, 1, z), (0, 0, z)), ((1, 1, z), (1, 0, z)), ((2, 1, z), (2, 0, z)))) + self.assertEqual(end_position, StartPosition.X) + # always move along X in positive direction, starting from positive Y + layer, end_position = get_fixed_grid_layer( + 0, 2, 0, 1, z, line_distance=1, grid_direction=GridDirection.X, + milling_style=MillingStyle.CLIMB, start_position=StartPosition.Y) + layer = _resolve_nested(2, layer) + self.assert_almost_equal_layer(layer, ( + ((0, 1, z), (2, 1, z)), ((0, 0, z), (2, 0, z)))) + self.assertEqual(end_position, StartPosition.X) + + def test_fixed_grid(self): + box = Box3D(Point3D(-3, -2, -1), Point3D(3, 2, 1)) + grid = _resolve_nested(3, get_fixed_grid( + box, 1.2, line_distance=2.0, step_width=None, + grid_direction=GridDirection.X, milling_style=MillingStyle.CONVENTIONAL, + start_position=StartPosition.Z)) + self.assert_almost_equal_grid(grid, ( + (((-3, -2, 1), (3, -2, 1)), ((-3, 0, 1), (3, 0, 1)), ((-3, 2, 1), (3, 2, 1))), + (((3, 2, 0), (-3, 2, 0)), ((3, 0, 0), (-3, 0, 0)), ((3, -2, 0), (-3, -2, 0))), + (((-3, -2, -1), (3, -2, -1)), ((-3, 0, -1), (3, 0, -1)), ((-3, 2, -1), (3, 2, -1))), + )) + + def test_spiral_layer_lines(self): + for z in (-1, 0, 1): + spiral_lines = _resolve_nested(1, get_spiral_layer_lines( + 0, 2, 0, 2, z, 1, 1, GridDirection.X, StartPosition.NONE)) + self.assert_almost_equal_lines(spiral_lines, ( + ((0, 0, z), (2, 0, z)), ((2, 0, z), (2, 2, z)), ((2, 2, z), (0, 2, z)), + ((0, 2, z), (0, 1, z)), ((0, 1, z), (1, 1, z)))) + + def test_spiral_layer(self): + for z in (-1, 0, 1): + # sharp corners + spiral_lines = _resolve_nested(1, get_spiral_layer( + 0, 2, 0, 2, z, 1, None, GridDirection.X, StartPosition.NONE, False, False)) + self.assert_almost_equal_lines(spiral_lines, ( + ((0, 0, z), (2, 0, z)), ((2, 0, z), (2, 2, z)), ((2, 2, z), (0, 2, z)), + ((0, 2, z), (0, 1, z)), ((0, 1, z), (1, 1, z)))) + # rounded corners + spiral_lines = _resolve_nested(1, get_spiral_layer( + 0, 2, 0, 2, z, 2, None, GridDirection.X, StartPosition.NONE, True, False)) + # verify a few interesting points along the arc + self.assert_almost_equal_line(spiral_lines[0], ((0, 0, z), (1, 0, z))) + self.assert_almost_equal_positions( + spiral_lines[5][0], (1.7071067811865475, 0.2928932188134523, z)) + self.assert_almost_equal_positions(spiral_lines[9][0], (2.0, 1.0, z)) + self.assert_almost_equal_positions( + spiral_lines[13][0], (1.7071067811865475, 1.7071067811865475, z)) + self.assert_almost_equal_line(spiral_lines[17], ((1, 2, z), (0, 2, z))) + + def xtest_fixed_grid(self): + box = Box3D(Point3D(-1, -1, -1), Point3D(1, 1, 1)) + fixed_grid = get_fixed_grid( + box, 0.5, line_distance=0.8, step_width=0.6, grid_direction=GridDirection.X, + milling_style=MillingStyle.IGNORE, start_position=StartPosition.Z) + resolved_fixed_grid = [list(layer) for layer in fixed_grid] + print(resolved_fixed_grid) diff --git a/pycam/pycam/Test/test_pointutils.py b/pycam/pycam/Test/test_pointutils.py new file mode 100644 index 00000000..b756e8eb --- /dev/null +++ b/pycam/pycam/Test/test_pointutils.py @@ -0,0 +1,125 @@ +""" +Copyright 2013 Lars Kruse + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + +import math + +import pycam.Geometry.PointUtils as pu +import pycam.Test + + +ROOT_2 = math.sqrt(2) +ROOT_3 = math.sqrt(3) + + +""" +TODO: the following tests are missing for the PointUtils module: + ptransform_by_matrix + pmul + pdiv + padd + psub + pdot + pcross + pis_inside + ptransform_by_matrix +""" + + +class UnaryOperations(pycam.Test.PycamTestCase): + + def test_pnorm(self): + def norm_test(vector, result): + self.assertAlmostEqual(pu.pnorm(vector), result) + self.assertAlmostEqual(pu.pnormsq(vector), result**2) + norm_test((1.0, 0.0, 0.0), 1) + norm_test((1, 0, 0), 1) + norm_test((0, 1, 0), 1) + norm_test((0, 0, 1), 1) + norm_test((1, 0, 0), 1) + norm_test((0, -1, 0), 1) + norm_test((0, 0, -1), 1) + norm_test((0, 0, 0), 0) + norm_test((0, 7, 0), 7) + norm_test((1, 2, -3), math.sqrt(14)) + norm_test((1, 1, -1), ROOT_3) + norm_test((1, -1, 0), ROOT_2) + + def test_normalized(self): + norm_test = lambda vector, result: \ + self.assert_vector_equal(pu.pnormalized(vector), result) + norm_test((1.0, 0.0, 0.0), (1, 0, 0)) + norm_test((1, 0, 0), (1, 0, 0)) + norm_test((0, 1, 0), (0, 1, 0)) + norm_test((0, 0, 1), (0, 0, 1)) + norm_test((-1, 0, 0), (-1, 0, 0)) + norm_test((0, -1, 0), (0, -1, 0)) + norm_test((0, 0, -1), (0, 0, -1)) + norm_test((0, -7, 0), (0, -1, 0)) + norm_test((1, -1, 0), (1/ROOT_2, -1/ROOT_2, 0)) + norm_test((1, 1, -1), (1/ROOT_3, 1/ROOT_3, -1/ROOT_3)) + norm_test((3, -4, 2), (0.55708601453, -0.7427813527, 0.37139067635)) + # normalized zero-length vector returns None + self.assertIsNone(pu.pnormalized((0, 0, 0))) + + +class BinaryOperations(pycam.Test.PycamTestCase): + + def test_dist(self): + def dist_test(a, b, result, axes=None): + self.assertAlmostEqual(pu.pdist(a, b, axes=axes), result) + self.assertAlmostEqual(pu.pdist_sq(a, b, axes=axes), result**2) + dist_test((1, 0, 0), (0, 0, 0), 1) + dist_test((0, 2, 0), (0, 0, 0), 2) + dist_test((0, 0, -3), (0, 0, 1), 4) + dist_test((7, 1, -3), (-2, 1, 0), 9, axes=(0, )) + dist_test((7, 1, -3), (-2, 1, 0), 0, axes=(1, )) + dist_test((7, 1, -3), (-2, 1, 0), 3, axes=(2, )) + dist_test((7, 1, -3), (-2, 1, 0), math.sqrt(9**2 + 3**2)) + dist_test((7, 1, -3), (-2, 1, 0), 9, axes=(0, 1)) + dist_test((7, 1, -3), (-2, 1, 0), math.sqrt(9**2 + 3**2), axes=(0, 2)) + dist_test((7, 1, -3), (-2, 1, 0), 3, axes=(1, 2)) + dist_test((7, 1, -3), (-2, 1, 0), math.sqrt(9**2 + 3**2), axes=(0, 1, 2)) + dist_test((0, 0, 0), (0, 0, 0), 0) + dist_test((-7.2, 1.3, 32), (-7.2, 1.3, 32), 0) + dist_test((-7.2, 1.3, 32), (-7.2, 1.1, 32), 0.2) + + def test_near(self): + is_near = lambda a, b, axes=None: self.assertTrue(pu.pnear(a, b, axes=axes)) + is_far = lambda a, b, axes=None: self.assertFalse(pu.pnear(a, b, axes=axes)) + is_near((0, 0, 1), (0, 0, 1.0)) + is_near((4.0, -2.0, 1), (4, -2, 1.0)) + is_far((12, 3, -3), (12, 3, 3)) + is_far((4, -2, 1), (4, -2, -1.0001)) + is_near((4, -2, 1), (4, -2, -1.0001), axes=(0, 1)) + is_far((4, -2, 1), (4, -2, -1.0001), axes=(1, 2)) + is_far((4, -2, 1), (4, -2, -1.0001), axes=(2, )) + + def test_cmp(self): + is_greater = lambda a, b, axes=None: self.assertEqual(pu.pcmp(a, b, axes=axes), 1) + is_equal = lambda a, b, axes=None: self.assertEqual(pu.pcmp(a, b, axes=axes), 0) + is_less = lambda a, b, axes=None: self.assertEqual(pu.pcmp(a, b, axes=axes), -1) + is_equal((0, 0, 1), (0, 0, 1.0)) + is_greater((4.001, -2.0, 1), (4, -2, 1.0)) + is_greater((4, -2, 1), (4, -3, 1)) + is_greater((4, -2, 1), (4, -2, -1)) + is_less((4, -2, -1.1), (4, -2, -1)) + + +if __name__ == "__main__": + pycam.Test.main() diff --git a/pycam/pycam/Test/test_polygon.py b/pycam/pycam/Test/test_polygon.py new file mode 100644 index 00000000..19e3931c --- /dev/null +++ b/pycam/pycam/Test/test_polygon.py @@ -0,0 +1,108 @@ +from pycam.Geometry.Polygon import Polygon +from pycam.Geometry.Line import Line + + +def assert_polygons_are_identical(polygon0, polygon1): + lines0 = polygon0.get_lines() + lines1 = polygon1.get_lines() + assert len(lines0) == len(lines1) + for i in range(len(lines0)): + line0 = lines0[i] + line1 = lines1[i] + (p00, p01) = line0.get_points() + (p10, p11) = line1.get_points() + assert p00 == p10 + assert p01 == p11 + + +# "square_p" is a polygon consisting of a simple square, +# counter-clockwise. +lines = (Line((0, 0, 0), (10, 0, 0)), + Line((10, 0, 0), (10, 10, 0)), + Line((10, 10, 0), (0, 10, 0)), + Line((0, 10, 0), (0, 0, 0))) +square_p = Polygon() +for line in lines: + square_p.append(line) + + +# "truncated_square_p" is a polygon consisting of a simple square +# (counter-clockwise), but with the sharp corners replaced by small +# chamfers. +lines = (Line((1, 0, 0), (9, 0, 0)), + Line((9, 0, 0), (10, 1, 0)), + Line((10, 1, 0), (10, 9, 0)), + Line((10, 9, 0), (9, 10, 0)), + Line((9, 10, 0), (1, 10, 0)), + Line((1, 10, 0), (0, 9, 0)), + Line((0, 9, 0), (0, 1, 0)), + Line((0, 1, 0), (1, 0, 0))) +truncated_square_p = Polygon() +for line in lines: + truncated_square_p.append(line) + + +def test_get_offset_polygons_square_outside(): + # 'expected_outside_p' is the expected offset polygon with a + # *positive* offset, so it's outside the input polygon. + lines = (Line((-1, -1, 0), (11, -1, 0)), + Line((11, -1, 0), (11, 11, 0)), + Line((11, 11, 0), (-1, 11, 0)), + Line((-1, 11, 0), (-1, -1, 0))) + expected_outside_p = Polygon() + for line in lines: + expected_outside_p.append(line) + + output_p = square_p.get_offset_polygons(1) + print("get_offset_polygons() returned:") + for p in output_p: + print(str(p)) + assert(len(output_p) == 1) + assert_polygons_are_identical(output_p[0], expected_outside_p) + + +def test_get_offset_polygons_square_inside(): + # 'expected_inside_p' is the expected offset polygon with a *negative* + # offset, so it's inside the input polygon. + lines = (Line((1, 1, 0), (9, 1, 0)), + Line((9, 1, 0), (9, 9, 0)), + Line((9, 9, 0), (1, 9, 0)), + Line((1, 9, 0), (1, 1, 0))) + expected_inside_p = Polygon() + for line in lines: + expected_inside_p.append(line) + + output_p = square_p.get_offset_polygons(-1) + print("get_offset_polygons() returned:") + for p in output_p: + print(str(p)) + assert(len(output_p) == 1) + assert_polygons_are_identical(output_p[0], expected_inside_p) + + +def test_get_offset_polygons_truncated_square_inside_small_offset(): + """This tests a "truncated square", which is a square with the + corners shaved off, and an inside offset that's small compared to + the corner chamfers.""" + + # 'expected_inside_p' is the expected offset polygon with a *negative* + # offset, so it's inside the input polygon. + lines = (Line((1.4142135623730951, 1.0, 0.0), (8.585786437626904, 1.0, 0.0)), + Line((8.585786437626904, 1.0, 0.0), (9.0, 1.4142135623730951, 0.0)), + Line((9.0, 1.4142135623730951, 0.0), (9.0, 8.585786437626904, 0.0)), + Line((9.0, 8.585786437626904, 0.0), (8.585786437626904, 9.0, 0.0)), + Line((8.585786437626904, 9.0, 0.0), (1.4142135623730951, 9.0, 0.0)), + Line((1.4142135623730951, 9.0, 0.0), (1.0, 8.585786437626904, 0.0)), + Line((1.0, 8.585786437626904, 0.0), (1.0, 1.4142135623730951, 0.0)), + Line((1.0, 1.4142135623730951, 0.0), (1.4142135623730951, 1.0, 0.0))) + + expected_inside_p = Polygon() + for line in lines: + expected_inside_p.append(line) + + output_p = truncated_square_p.get_offset_polygons(-1) + print("get_offset_polygons() returned:") + for p in output_p: + print(str(p)) + assert(len(output_p) == 1) + assert_polygons_are_identical(output_p[0], expected_inside_p) diff --git a/pycam/pycam/Test/test_stl_loader.py b/pycam/pycam/Test/test_stl_loader.py new file mode 100644 index 00000000..00bb2465 --- /dev/null +++ b/pycam/pycam/Test/test_stl_loader.py @@ -0,0 +1,50 @@ +""" +Copyright 2018 Ruslan Panasiuk + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + +import os + +import pycam.Test +from pycam.Importers.STLImporter import import_model + +cwd = os.path.dirname(os.path.abspath(__file__)) + +ASSETS_DIR = 'assets' + + +def path_to_asset(asset_name): + """ + Returns abs path for given `asset_name` + :param asset_name: file name of the asset from 'Tests/assets' + :returns: str - abs path to asset + """ + return os.path.join(cwd, ASSETS_DIR, asset_name) + + +class TestSTLLoader(pycam.Test.PycamTestCase): + """ + Checks ability to load binary .stl files correctly + """ + + def test_load_ascii_file(self): + model = import_model(path_to_asset('cube_ascii.stl')) + self.assertEqual(len(model), 12) + + def test_load_binary_file(self): + model = import_model(path_to_asset('cube_binary.stl')) + self.assertEqual(len(model), 12) diff --git a/pycam/pycam/Test/test_svg_loader.py b/pycam/pycam/Test/test_svg_loader.py new file mode 100644 index 00000000..71689c1a --- /dev/null +++ b/pycam/pycam/Test/test_svg_loader.py @@ -0,0 +1,49 @@ +""" +Copyright 2018 Lars Kruse + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + +import os + +from pycam.Importers.SVGDirectImporter import import_model +import pycam.Test + + +BASE_DIR = os.path.join(os.path.dirname(os.path.abspath(__file__)), os.path.pardir, os.path.pardir) +SAMPLES_DIR = os.path.realpath(os.path.join(BASE_DIR, "samples")) + + +class TestSVGLoader(pycam.Test.PycamTestCase): + + @staticmethod + def _get_svg_filenames(path): + for dirpath, dirnames, filenames in os.walk(path): + yield from (os.path.join(dirpath, filename) for filename in filenames + if filename.lower().endswith(".svg")) + + def test_load_sample_svg_files(self): + test_count = 0 + for svg_filename in self._get_svg_filenames(SAMPLES_DIR): + model = import_model(svg_filename) + self.assertGreater(len(model), 0, + "Too few imported polygons from {}".format(svg_filename)) + test_count += 1 + self.assertEqual(test_count, 8) + + def test_polygon_import(self): + model = import_model(os.path.join(SAMPLES_DIR, "polygons.svg")) + self.assertEqual(len(model), 3) diff --git a/pycam/pycam/Test/test_tools.py b/pycam/pycam/Test/test_tools.py new file mode 100644 index 00000000..f411861b --- /dev/null +++ b/pycam/pycam/Test/test_tools.py @@ -0,0 +1,100 @@ +""" +Copyright 2013 Lars Kruse + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + +import math + +import pycam.Test +from pycam.Geometry.Triangle import Triangle +from pycam.Cutters.CylindricalCutter import CylindricalCutter +from pycam.Cutters.SphericalCutter import SphericalCutter + + +class CylindricalCutterCollisions(pycam.Test.PycamTestCase): + """Cylindrical cutter collisions""" + + def _drop(self, radius, triangle): + return CylindricalCutter(radius, location=(0, 0, 0)).drop(triangle) + + def test_drop(self): + "Drop" + # flat triangle + flat_triangle = Triangle((-2, 2, 3), (2, 0, 3), (-2, -2, 3)) + self.assert_vector_equal(self._drop(3, flat_triangle), (0, 0, 3)) + # skewed triangle + skewed_triangle = Triangle((-2, 2, 1), (2, 0, 3), (-2, -2, 1)) + self.assert_vector_equal(self._drop(1, skewed_triangle), (0, 0, 2.5)) + self.assert_vector_equal(self._drop(1.5, skewed_triangle), (0, 0, 2.75)) + self.assert_vector_equal(self._drop(1.9, skewed_triangle), (0, 0, 2.95)) +# self.assert_vector_equal(self._drop(2.0, skewed_triangle), (0, 0, 3)) +# self.assert_vector_equal(self._drop(2.1, skewed_triangle), (0, 0, 3)) +# self.assert_vector_equal(self._drop(3, skewed_triangle), (0, 0, 3)) + + +class SphericalCutterCollisions(pycam.Test.PycamTestCase): + """Spherical cutter collisions""" + + def _drop(self, radius, triangle): + return SphericalCutter(radius, location=(0, 0, 0)).drop(triangle) + + def test_drop(self): + "Drop" + # flat triangle + flat_triangle = Triangle((-2, 2, 3), (2, 0, 3), (-2, -2, 3)) + self.assert_vector_equal(self._drop(3, flat_triangle), (0, 0, 3)) + """ + Vertical shifting based on angle of skewed triangle: + radius * (1/math.cos(math.pi/4) - 1) + 30 degree -> radius * 0.15470053837925146 + 45 degree -> radius * 0.4142135623730949 + 60 degree -> radius * 1.0 + """ + # skewed triangle + factors = {30: (1.0 / math.cos(math.pi / 6) - 1), + 45: (1.0 / math.cos(math.pi / 4) - 1), + 60: (1.0 / math.cos(math.pi / 3) - 1)} + triangles = {} + triangles[30] = Triangle((-2, 2, 2), (2, 0, 4), (-2, -2, 2)) + triangles[45] = Triangle((-2, 2, 1), (2, 0, 5), (-2, -2, 1)) + triangles[60] = Triangle((-2, 2, -1), (2, 0, 7), (-2, -2, -1)) + + def test_skew(radius, degree): + return self.assert_vector_equal(self._drop(radius, triangles[degree]), + (0, 0, 3 + factors[degree] * radius)) + test_skew(0.1, 45) +# test_skew(0.1, 30) +# test_skew(0.1, 60) + test_skew(1, 45) +# test_skew(1, 30) +# test_skew(1, 60) + test_skew(1.9, 45) +# test_skew(1.9, 30) +# test_skew(1.9, 60) + test_skew(2.0, 45) +# test_skew(2.0, 30) +# test_skew(2.0, 60) + test_skew(2.1, 45) +# test_skew(2.1, 30) +# test_skew(2.1, 60) +# test_skew(3, 45) +# test_skew(3, 30) +# test_skew(3, 60) + + +if __name__ == "__main__": + pycam.Test.main() diff --git a/pycam/pycam/Toolpath/Filters.py b/pycam/pycam/Toolpath/Filters.py new file mode 100644 index 00000000..d7e073a7 --- /dev/null +++ b/pycam/pycam/Toolpath/Filters.py @@ -0,0 +1,551 @@ +""" +Copyright 2012 Lars Kruse + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + + +import collections +import decimal + +from pycam.Geometry import epsilon +from pycam.Geometry.Line import Line +from pycam.Geometry.PointUtils import padd, psub, pmul, pdist, pnear, ptransform_by_matrix +from pycam.Toolpath import MOVE_SAFETY, MOVES_LIST, MACHINE_SETTING +import pycam.Toolpath.Steps as ToolpathSteps +import pycam.Utils.log + + +MAX_DIGITS = 12 + +_log = pycam.Utils.log.get_logger() + + +""" Toolpath filters are used for applying parameters to generic toolpaths. +""" + + +def toolpath_filter(our_category, key): + """ decorator for toolpath filter functions + e.g. see pycam.Plugins.ToolTypes + """ + def toolpath_filter_inner(func): + def get_filter_func(self, category, parameters, previous_filters): + if (category == our_category): + if isinstance(key, (list, tuple, set)) and any([(k in parameters) for k in key]): + # "key" is a list and at least one parameter is found + arg_dict = {} + for one_key in key: + if one_key in parameters: + arg_dict[one_key] = parameters[one_key] + result = func(self, **arg_dict) + elif key in parameters: + result = func(self, parameters[key]) + else: + # no match found - ignore + result = None + if result: + previous_filters.extend(result) + return get_filter_func + return toolpath_filter_inner + + +def get_filtered_moves(moves, filters): + filters = list(filters) + moves = list(moves) + filters.sort() + for one_filter in filters: + moves |= one_filter + return moves + + +class BaseFilter: + + PARAMS = [] + WEIGHT = 50 + + def __init__(self, *args, **kwargs): + # we want to achieve a stable order in order to be hashable + self.settings = collections.OrderedDict(kwargs) + # fail if too many arguments (without names) are given + if len(args) > len(self.PARAMS): + raise ValueError("Too many parameters: %d (expected: %d)" + % (len(args), len(self.PARAMS))) + # fail if too few arguments (without names) are given + for index, key in enumerate(self.PARAMS): + if len(args) > index: + self.settings[key] = args[index] + elif key in self.settings: + # named parameter are ok, as well + pass + else: + raise ValueError("Missing parameter: %s" % str(key)) + + def clone(self): + return self.__class__(**self.settings) + + def __hash__(self): + return hash((str(self.__class__), tuple(self.settings.items()))) + + def __ror__(self, toolpath): + # allow to use pycam.Toolpath.Toolpath instances (instead of a list) + if hasattr(toolpath, "path") and hasattr(toolpath, "filters"): + toolpath = toolpath.path + # use a copy of the list -> changes will be permitted + _log.debug("Applying toolpath filter: %s", self.__class__) + return self.filter_toolpath(list(toolpath)) + + def __repr__(self): + class_name = str(self.__class__).split("'")[1].split(".")[-1] + return "%s(%s)" % (class_name, self._render_settings()) + + # comparison functions: they allow to use "filters.sort()" + __eq__ = lambda self, other: self.WEIGHT == other.WEIGHT + __ne__ = lambda self, other: self.WEIGHT != other.WEIGHT + __lt__ = lambda self, other: self.WEIGHT < other.WEIGHT + __le__ = lambda self, other: self.WEIGHT <= other.WEIGHT + __gt__ = lambda self, other: self.WEIGHT > other.WEIGHT + __ge__ = lambda self, other: self.WEIGHT >= other.WEIGHT + + def _render_settings(self): + return ", ".join(["%s=%s" % (key, self.settings[key]) for key in self.settings]) + + def filter_toolpath(self, toolpath): + raise NotImplementedError(("The filter class %s failed to implement the 'filter_toolpath' " + "method") % str(type(self))) + + +class SafetyHeight(BaseFilter): + + PARAMS = ("safety_height", ) + WEIGHT = 80 + + def filter_toolpath(self, toolpath): + last_pos = None + max_height = None + new_path = [] + safety_pending = False + get_safe = lambda pos: tuple((pos[0], pos[1], self.settings["safety_height"])) + for step in toolpath: + if step.action == MOVE_SAFETY: + safety_pending = True + elif step.action in MOVES_LIST: + new_pos = tuple(step.position) + if (max_height is None) or (new_pos[2] > max_height): + max_height = new_pos[2] + if not last_pos: + # there was a safety move (or no move at all) before + # -> move sideways + new_path.append(ToolpathSteps.MoveStraightRapid(get_safe(new_pos))) + elif safety_pending: + safety_pending = False + if pnear(last_pos, new_pos, axes=(0, 1)): + # same x/y position - skip safety move + pass + else: + # go up, sideways and down + new_path.append(ToolpathSteps.MoveStraightRapid(get_safe(last_pos))) + new_path.append(ToolpathSteps.MoveStraightRapid(get_safe(new_pos))) + else: + # we are in the middle of usual moves -> keep going + pass + new_path.append(step) + last_pos = new_pos + else: + # unknown move -> keep it + new_path.append(step) + # process pending safety moves + if safety_pending and last_pos: + new_path.append(ToolpathSteps.MoveStraightRapid(get_safe(last_pos))) + if max_height > self.settings["safety_height"]: + _log.warn("Toolpath exceeds safety height: %f => %f", + max_height, self.settings["safety_height"]) + return new_path + + +class MachineSetting(BaseFilter): + + PARAMS = ("key", "value") + WEIGHT = 20 + + def filter_toolpath(self, toolpath): + result = [] + # move all previous machine settings + while toolpath and toolpath[0].action == MACHINE_SETTING: + result.append(toolpath.pop(0)) + # add the new setting + for key, value in self._get_settings(): + result.append(ToolpathSteps.MachineSetting(key, value)) + return result + toolpath + + def _get_settings(self): + return [(self.settings["key"], self.settings["value"])] + + def _render_settings(self): + return "%s=%s" % (self.settings["key"], self.settings["value"]) + + +class CornerStyle(MachineSetting): + + PARAMS = ("path_mode", "motion_tolerance", "naive_tolerance") + WEIGHT = 25 + + def _get_settings(self): + return [("corner_style", + (self.settings["path_mode"], self.settings["motion_tolerance"], + self.settings["naive_tolerance"]))] + + def _render_settings(self): + return "%s / %d / %d" % (self.settings["path_mode"], + self.settings["motion_tolerance"], + self.settings["naive_tolerance"]) + + +class SelectTool(BaseFilter): + + PARAMS = ("tool_id", ) + WEIGHT = 35 + + def filter_toolpath(self, toolpath): + index = 0 + # skip all non-moves + while (index < len(toolpath)) and (toolpath[index][0] not in MOVES_LIST): + index += 1 + toolpath.insert(index, ToolpathSteps.MachineSetting("select_tool", + self.settings["tool_id"])) + return toolpath + + +class TriggerSpindle(BaseFilter): + """ control the spindle spin for each tool selection + + A spin-up command is added after each tool selection. + A spin-down command is added before each tool selection and after the last move. + If no tool selection is found, then single spin-up and spin-down commands are added before the + first move and after the last move. + """ + + PARAMS = ("delay", ) + WEIGHT = 36 + + def filter_toolpath(self, toolpath): + def spin_up(path, index): + path.insert(index, ToolpathSteps.MachineSetting("spindle_enabled", True)) + if self.settings["delay"]: + path.insert(index + 1, ToolpathSteps.MachineSetting("delay", + self.settings["delay"])) + + def spin_down(path, index): + path.insert(index, ToolpathSteps.MachineSetting("spindle_enabled", False)) + + # find all positions of "select_tool" + tool_changes = [index for index, step in enumerate(toolpath) + if (step.action == MACHINE_SETTING) and (step.key == "select_tool")] + if tool_changes: + tool_changes.reverse() + for index in tool_changes: + spin_up(toolpath, index + 1) + if index > 0: + # add a "disable" + spin_down(toolpath, index) + else: + # add a single spin-up before the first move + for index, step in enumerate(toolpath): + if step.action in MOVES_LIST: + spin_up(toolpath, index) + break + # add "stop spindle" just after the last move + index = len(toolpath) - 1 + while (toolpath[index].action not in MOVES_LIST) and (index > 0): + index -= 1 + if toolpath[index].action in MOVES_LIST: + spin_down(toolpath, index + 1) + return toolpath + + +class SpindleSpeed(BaseFilter): + """ add a spindle speed command after each tool selection + + If no tool selection is found, then a single spindle speed command is inserted before the first + move. + """ + + PARAMS = ("speed", ) + WEIGHT = 37 + + def filter_toolpath(self, toolpath): + def set_speed(path, index): + path.insert(index, ToolpathSteps.MachineSetting("spindle_speed", + self.settings["speed"])) + + # find all positions of "select_tool" + tool_changes = [index for index, step in enumerate(toolpath) + if (step.action == MACHINE_SETTING) and (step.key == "select_tool")] + if tool_changes: + tool_changes.reverse() + for index in tool_changes: + set_speed(toolpath, index + 1) + else: + # no tool selections: add a single spindle speed command before the first move + for index, step in enumerate(toolpath): + if step.action in MOVES_LIST: + set_speed(toolpath, index) + break + return toolpath + + +class PlungeFeedrate(BaseFilter): + + PARAMS = ("plunge_feedrate", ) + # must be greater than the weight of the SafetyHeight filter + WEIGHT = 82 + + def filter_toolpath(self, toolpath): + new_path = [] + last_pos = None + original_feedrate = None + current_feedrate = None + for step in toolpath: + if (step.action == MACHINE_SETTING) and (step.key == "feedrate"): + # store the current feedrate + original_feedrate = step.value + current_feedrate = step.value + elif step.action in MOVES_LIST: + # track the current position and adjust the feedrate if necessary + if last_pos is not None and (step.position[2] < last_pos[2]): + # we are moving downwards + vertical_move = last_pos[2] - step.position[2] + # the ratio is 1.0 for a straight vertical move - otherwise between 0 and 1 + vertical_ratio = vertical_move / pdist(last_pos, step.position) + max_feedrate = self.settings["plunge_feedrate"] / vertical_ratio + # never exceed the original feedrate + max_feedrate = min(original_feedrate, max_feedrate) + if current_feedrate != max_feedrate: + # we are too slow or too fast + new_path.append(ToolpathSteps.MachineSetting("feedrate", max_feedrate)) + current_feedrate = max_feedrate + else: + # we do not move down + if current_feedrate != original_feedrate: + # switch back to the maximum feedrate + new_path.append(ToolpathSteps.MachineSetting("feedrate", + original_feedrate)) + current_feedrate = original_feedrate + last_pos = step.position + else: + pass + new_path.append(step) + return new_path + + +class Crop(BaseFilter): + + PARAMS = ("polygons", ) + WEIGHT = 90 + + def filter_toolpath(self, toolpath): + new_path = [] + last_pos = None + optional_moves = [] + for step in toolpath: + if step.action in MOVES_LIST: + if last_pos: + # find all remaining pieces of this line + inner_lines = [] + for polygon in self.settings["polygons"]: + inner, outer = polygon.split_line(Line(last_pos, step.position)) + inner_lines.extend(inner) + # turn these lines into moves + for line in inner_lines: + if pdist(line.p1, last_pos) > epsilon: + new_path.append(ToolpathSteps.MoveSafety()) + new_path.append( + ToolpathSteps.get_step_class_by_action(step.action)(line.p1)) + else: + # we continue where we left + if optional_moves: + new_path.extend(optional_moves) + optional_moves = [] + new_path.append( + ToolpathSteps.get_step_class_by_action(step.action)(line.p2)) + last_pos = line.p2 + optional_moves = [] + # finish the line by moving to its end (if necessary) + if pdist(last_pos, step.position) > epsilon: + optional_moves.append(ToolpathSteps.MoveSafety()) + optional_moves.append(step) + last_pos = step.position + elif step.action == MOVE_SAFETY: + optional_moves = [] + else: + new_path.append(step) + return new_path + + +class TransformPosition(BaseFilter): + """ shift or rotate a toolpath based on a given 3x3 or 3x4 matrix + """ + + PARAMS = ("matrix", ) + WEIGHT = 85 + + def filter_toolpath(self, toolpath): + new_path = [] + for step in toolpath: + if step.action in MOVES_LIST: + new_pos = ptransform_by_matrix(step.position, self.settings["matrix"]) + new_path.append(ToolpathSteps.get_step_class_by_action(step.action)(new_pos)) + else: + new_path.append(step) + return new_path + + +class TimeLimit(BaseFilter): + """ This filter is used for the toolpath simulation. It returns only a partial toolpath within + a given duration limit. + """ + + PARAMS = ("timelimit", ) + WEIGHT = 100 + + def filter_toolpath(self, toolpath): + feedrate = min_feedrate = 1 + new_path = [] + last_pos = None + limit = self.settings["timelimit"] + duration = 0 + for step in toolpath: + if step.action in MOVES_LIST: + if last_pos: + new_distance = pdist(step.position, last_pos) + new_duration = new_distance / max(feedrate, min_feedrate) + if (new_duration > 0) and (duration + new_duration > limit): + partial = (limit - duration) / new_duration + destination = padd(last_pos, pmul(psub(step.position, last_pos), partial)) + duration = limit + else: + destination = step.position + duration += new_duration + else: + destination = step.position + new_path.append(ToolpathSteps.get_step_class_by_action(step.action)(destination)) + last_pos = step.position + if (step.action == MACHINE_SETTING) and (step.key == "feedrate"): + feedrate = step.value + if duration >= limit: + break + return new_path + + +class MovesOnly(BaseFilter): + """ Use this filter for checking if a given toolpath is empty/useless + (only machine settings, safety moves, ...). + """ + + WEIGHT = 95 + + def filter_toolpath(self, toolpath): + return [step for step in toolpath if step.action in MOVES_LIST] + + +class Copy(BaseFilter): + + WEIGHT = 100 + + def filter_toolpath(self, toolpath): + return list(toolpath) + + +def _get_num_of_significant_digits(number): + """ Determine the number of significant digits of a float number. """ + # use only positive numbers + number = abs(number) + max_diff = 0.1 ** MAX_DIGITS + if number <= max_diff: + # input value is smaller than the smallest usable number + return MAX_DIGITS + elif number >= 1: + # no negative number of significant digits + return 0 + else: + for digit in range(1, MAX_DIGITS): + shifted = number * (10 ** digit) + if shifted - int(shifted) < max_diff: + return digit + return MAX_DIGITS + + +def _get_num_converter(step_width): + """ Return a float-to-decimal conversion function with a prevision suitable + for the given step width. + """ + digits = _get_num_of_significant_digits(step_width) + format_string = "%%.%df" % digits + conv_func = lambda number: decimal.Decimal(format_string % number) + return conv_func, format_string + + +class StepWidth(BaseFilter): + + PARAMS = ("step_width", ) + NUM_OF_AXES = 3 + WEIGHT = 60 + + def filter_toolpath(self, toolpath): + minimum_steps = [] + conv = [] + for key in "xyz": + minimum_steps.append(self.settings["step_width"][key]) + for step_width in minimum_steps: + conv.append(_get_num_converter(step_width)[0]) + last_pos = None + path = [] + for step in toolpath: + if step.action in MOVES_LIST: + if last_pos: + real_target_position = [] + diff = [(abs(a_conv(a_last_pos) - a_conv(a_pos))) + for a_conv, a_last_pos, a_pos in zip(conv, last_pos, step.position)] + position_changed = False + # For every axis: if the new position is closer than the defined step width, + # then stay at the previous position. + # see https://sf.net/p/pycam/discussion/860184/thread/930b1c7f/ + for axis_distance, min_distance, axis_last, axis_wanted in zip( + diff, minimum_steps, last_pos, step.position): + if axis_distance >= min_distance: + real_target_position.append(axis_wanted) + position_changed = True + else: + real_target_position.append(axis_last) + if not position_changed: + # The limitation was not exceeded for any axis. + continue + else: + real_target_position = step.position + # TODO: this would also change the GCode output - we want + # this, but it sadly breaks other code pieces that rely on + # floats instead of decimals at this point. The output + # conversion needs to move into the GCode output hook. +# destination = [a_conv(a_pos) for a_conv, a_pos in zip(conv, step.position)] + destination = real_target_position + path.append(ToolpathSteps.get_step_class_by_action(step.action)(destination)) + # We store the real machine position (instead of the "wanted" position). + last_pos = real_target_position + else: + # forget "last_pos" - we don't know what happened in between + last_pos = None + path.append(step) + return path diff --git a/pycam/pycam/Toolpath/MotionGrid.py b/pycam/pycam/Toolpath/MotionGrid.py new file mode 100644 index 00000000..4c7b2a3a --- /dev/null +++ b/pycam/pycam/Toolpath/MotionGrid.py @@ -0,0 +1,611 @@ +""" +Copyright 2010 Lars Kruse + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + +import math +import enum + +from pycam.Geometry import epsilon, Point3D, Box3D +from pycam.Geometry.Line import Line +from pycam.Geometry.Plane import Plane +from pycam.Geometry.PointUtils import padd, pcross, pmul, pnormalized, psub +from pycam.Geometry.Polygon import PolygonSorter +from pycam.Geometry.utils import get_angle_pi, get_points_of_arc +import pycam.Utils.log + + +_log = pycam.Utils.log.get_logger() + + +class GridDirection(enum.Enum): + X = "x" + Y = "y" + XY = "xy" + + +class MillingStyle(enum.Enum): + IGNORE = "ignore" + CONVENTIONAL = "conventional" + CLIMB = "climb" + + +class StartPosition(enum.IntEnum): + NONE = 0x0 + X = 0x1 + Y = 0x2 + Z = 0x4 + + +class SpiralDirection(enum.Enum): + IN = "in" + OUT = "out" + + +class PocketingType(enum.Enum): + NONE = "none" + HOLES = "holes" + MATERIAL = "material" + + +def isiterable(obj): + try: + iter(obj) + return True + except TypeError: + return False + + +def floatrange(start, end, inc=None, steps=None, reverse=False): + if reverse: + start, end = end, start + # 'inc' will be adjusted below anyway + if abs(start - end) < epsilon: + yield start + elif inc is None and steps is None: + raise ValueError("floatrange: either 'inc' or 'steps' must be provided") + elif (steps is not None) and (steps < 2): + raise ValueError("floatrange: 'steps' must be greater than 1") + else: + # the input is fine + # reverse increment, if it does not suit start/end + if steps is None: + if ((end - start) > 0) != (inc > 0): + inc = -inc + steps = int(math.ceil(float(end - start) / inc) + 1) + inc = float(end - start) / (steps - 1) + for index in range(steps): + yield start + inc * index + + +def resolve_multi_level_generator(generator, levels): + assert isinstance(levels, int) and (levels >= 0) + if levels > 0: + return [resolve_multi_level_generator(item, levels - 1) for item in generator] + else: + return generator + + +def get_fixed_grid_line(start, end, line_pos, z, step_width=None, grid_direction=GridDirection.X): + if step_width is None: + # useful for PushCutter operations + steps = (start, end) + elif isiterable(step_width): + steps = step_width + else: + steps = floatrange(start, end, inc=step_width) + if grid_direction == GridDirection.X: + get_point = lambda pos: (pos, line_pos, z) + else: + get_point = lambda pos: (line_pos, pos, z) + for pos in steps: + yield get_point(pos) + + +def get_fixed_grid_layer(minx, maxx, miny, maxy, z, line_distance, step_width=None, + grid_direction=GridDirection.X, milling_style=MillingStyle.IGNORE, + start_position=StartPosition.NONE): + if grid_direction == GridDirection.XY: + raise ValueError("'get_one_layer_fixed_grid' does not accept XY direction") + # zigzag is only available if the milling + zigzag = (milling_style == MillingStyle.IGNORE) + + # If we happen to start at a position that collides with the milling style, + # then we need to move to the closest other corner. Here we decide, which + # would be the best alternative. + def get_alternative_start_position(start): + if (maxx - minx) <= (maxy - miny): + # toggle the X position bit + return start ^ StartPosition.X + else: + # toggle the Y position bit + return start ^ StartPosition.Y + + if grid_direction == GridDirection.X: + primary_dir = StartPosition.X + secondary_dir = StartPosition.Y + else: + primary_dir = StartPosition.Y + secondary_dir = StartPosition.X + # Determine the starting direction (assuming we begin at the lower x/y + # coordinates. + if milling_style == MillingStyle.IGNORE: + # just move forward - milling style is not important + pass + elif (milling_style == MillingStyle.CLIMB) == (grid_direction == GridDirection.X): + if bool(start_position & StartPosition.X) == bool(start_position & StartPosition.Y): + # we can't start from here - choose an alternative + start_position = get_alternative_start_position(start_position) + elif (milling_style == MillingStyle.CONVENTIONAL) == (grid_direction == GridDirection.X): + if bool(start_position & StartPosition.X) != bool(start_position & StartPosition.Y): + # we can't start from here - choose an alternative + start_position = get_alternative_start_position(start_position) + else: + raise ValueError("Invalid milling style given: %s" % str(milling_style)) + # sort out the coordinates (primary/secondary) + if grid_direction == GridDirection.X: + start, end = minx, maxx + line_start, line_end = miny, maxy + else: + start, end = miny, maxy + line_start, line_end = minx, maxx + # switch start/end if we move from high to low + if start_position & primary_dir: + start, end = end, start + if start_position & secondary_dir: + line_start, line_end = line_end, line_start + # calculate the line positions + if isiterable(line_distance): + lines = line_distance + else: + lines = floatrange(line_start, line_end, inc=line_distance) + # at the end of the layer we will be on the other side of the 2nd direction + end_position = start_position ^ secondary_dir + # the final position will probably be on the other side (primary) + if not zigzag: + end_position ^= primary_dir + + # calculate each line + def get_lines(start, end, end_position): + result = [] + for line_pos in lines: + result.append(get_fixed_grid_line(start, end, line_pos, z, step_width=step_width, + grid_direction=grid_direction)) + if zigzag: + start, end = end, start + end_position ^= primary_dir + if zigzag and step_width: + # Connect endpoints of zigzag lines (prevent unnecessary safety moves). + # (DropCutter) + zigzag_result = [] + for line in result: + zigzag_result.extend(line) + # return a list containing a single chain of lines + result = [zigzag_result] + elif zigzag and step_width is None: + # Add a pair of end_before/start_next points between two lines. + # (PushCutter) + zigzag_result = [] + last = None + for (p1, p2) in result: + if last: + zigzag_result.append((last, p1)) + zigzag_result.append((p1, p2)) + last = p2 + result = zigzag_result + return result, end_position + + return get_lines(start, end, end_position) + + +def get_fixed_grid(box, layer_distance, line_distance, step_width=None, + grid_direction=GridDirection.X, milling_style=MillingStyle.IGNORE, + start_position=StartPosition.Z, use_fixed_start_position=False): + """ Calculate the grid positions for toolpath moves + + @param use_fixed_start_position: the moves for every layer start at the same position + """ + assert isinstance(milling_style, MillingStyle) + assert isinstance(grid_direction, GridDirection) + assert isinstance(start_position, StartPosition) + if isiterable(layer_distance): + layers = layer_distance + elif layer_distance is None: + # useful for DropCutter + layers = [box.lower.z] + else: + layers = floatrange(box.lower.z, box.upper.z, inc=layer_distance, + reverse=bool(start_position & StartPosition.Z)) + + def get_layers_with_direction(layers): + for layer in layers: + # this will produce a nice xy-grid, as well as simple x and y grids + if grid_direction != GridDirection.Y: + yield (layer, GridDirection.X) + if grid_direction != GridDirection.X: + yield (layer, GridDirection.Y) + + for z, direction in get_layers_with_direction(layers): + result, suggested_start_position = get_fixed_grid_layer( + box.lower.x, box.upper.x, box.lower.y, box.upper.y, z, line_distance, + step_width=step_width, grid_direction=direction, milling_style=milling_style, + start_position=start_position) + if not use_fixed_start_position: + start_position = suggested_start_position + yield result + + +def _get_absolute_position(minx, maxx, miny, maxy, z, position): + """ calculate a point within a rectangle based on the relative position along the axes """ + x = maxx if position & StartPosition.X > 0 else minx + y = maxy if position & StartPosition.Y > 0 else miny + return Point3D(x, y, z) + + +def get_spiral_layer_lines(minx, maxx, miny, maxy, z, line_distance_x, line_distance_y, + start_grid_direction, start_position): + """ calculate single lines concatenated together forming a spiral + + The resulting corners are sharp (not rounded). Rounding can be added later. + """ + result_lines = [] + xor_map = {GridDirection.X: StartPosition.X, GridDirection.Y: StartPosition.Y} + current_grid_direction = start_grid_direction + current_position = start_position + current_absolute = _get_absolute_position(minx, maxx, miny, maxy, z, current_position) + while (minx - epsilon <= maxx) and (miny - epsilon <= maxy): + # calculate the next corner from the current position according to the current direction + next_position = current_position ^ xor_map[current_grid_direction] + # calculate absolute coordinates + next_absolute = _get_absolute_position(minx, maxx, miny, maxy, z, next_position) + result_lines.append((current_absolute, next_absolute)) + # determine the next direction + if current_grid_direction == GridDirection.X: + next_grid_direction = GridDirection.Y + if current_position & StartPosition.Y > 0: + maxy -= line_distance_y + else: + miny += line_distance_y + else: + next_grid_direction = GridDirection.X + if current_position & StartPosition.X > 0: + maxx -= line_distance_x + else: + minx += line_distance_x + current_grid_direction, current_position, current_absolute = ( + next_grid_direction, next_position, next_absolute) + return result_lines + + +def get_spiral_layer(minx, maxx, miny, maxy, z, line_distance, step_width, grid_direction, + start_position, rounded_corners, reverse): + if line_distance > 0: + line_steps_x = math.ceil((float(maxx - minx) / line_distance)) + line_steps_y = math.ceil((float(maxy - miny) / line_distance)) + line_distance_x = (maxx - minx) / line_steps_x + line_distance_y = (maxy - miny) / line_steps_y + # calculate connected lines filling up the rectangle + lines = get_spiral_layer_lines(minx, maxx, miny, maxy, z, line_distance_x, line_distance_y, + grid_direction, start_position) + if reverse: + lines = [(p2, p1) for p1, p2 in reversed(lines)] + # turn the lines into steps + if rounded_corners: + rounded_lines = [] + radius = 0.5 * min(line_distance_x, line_distance_y) + previous = None + for index, (start, end) in enumerate(lines): + edge_vector = psub(end, start) + # TODO: ellipse would be better than arc + offset = pmul(pnormalized(edge_vector), radius) + if previous: + start = padd(start, offset) + center = padd(previous, offset) + up_vector = pnormalized(pcross(psub(previous, center), psub(start, center))) + north = padd(center, (1.0, 0.0, 0.0, 'v')) + angle_start = get_angle_pi(north, center, previous, up_vector, + pi_factor=True) * 180.0 + angle_end = get_angle_pi(north, center, start, up_vector, + pi_factor=True) * 180.0 + # TODO: remove these exceptions based on up_vector.z (get_points_of_arc does + # not respect the plane, yet) + if up_vector[2] < 0: + angle_start, angle_end = -angle_end, -angle_start + arc_points = get_points_of_arc(center, radius, angle_start, angle_end) + if up_vector[2] < 0: + arc_points.reverse() + for arc_index in range(len(arc_points) - 1): + p1_coord = arc_points[arc_index] + p2_coord = arc_points[arc_index + 1] + p1 = (p1_coord[0], p1_coord[1], z) + p2 = (p2_coord[0], p2_coord[1], z) + rounded_lines.append((p1, p2)) + if index != len(lines) - 1: + end = psub(end, offset) + previous = end + if start != end: + rounded_lines.append((start, end)) + lines = rounded_lines + for start, end in lines: + points = [] + if step_width is None: + points.append(start) + points.append(end) + else: + line = Line(start, end) + if isiterable(step_width): + steps = step_width + else: + steps = floatrange(0.0, line.len, inc=step_width) + for step in steps: + next_point = padd(line.p1, pmul(line.dir, step)) + points.append(next_point) + yield points + + +def get_spiral(box, layer_distance, line_distance=None, step_width=None, + milling_style=MillingStyle.IGNORE, spiral_direction=SpiralDirection.IN, + rounded_corners=False, + start_position=(StartPosition.X | StartPosition.Y | StartPosition.Z)): + """ Calculate the grid positions for toolpath moves + """ + if isiterable(layer_distance): + layers = layer_distance + elif layer_distance is None: + # useful for DropCutter + layers = [box.lower.z] + else: + layers = floatrange(box.lower.z, box.upper.z, inc=layer_distance, + reverse=bool(start_position & StartPosition.Z)) + if (milling_style == MillingStyle.CLIMB) == (start_position & StartPosition.X > 0): + start_direction = GridDirection.X + else: + start_direction = GridDirection.Y + reverse = (spiral_direction == SpiralDirection.OUT) + for z in layers: + yield get_spiral_layer(box.lower.x, box.upper.x, box.lower.y, box.upper.y, z, + line_distance, step_width=step_width, + grid_direction=start_direction, start_position=start_position, + rounded_corners=rounded_corners, reverse=reverse) + + +def get_lines_layer(lines, z, last_z=None, step_width=None, + milling_style=MillingStyle.CONVENTIONAL): + get_proj_point = lambda proj_point: (proj_point[0], proj_point[1], z) + projected_lines = [] + _log.debug("Lines Layer: processing original lines") + for line in lines: + if (last_z is not None) and (last_z < line.minz): + # the line was processed before + continue + elif line.minz < z < line.maxz: + # Split the line at the point at z level and do the calculation + # for both point pairs. + factor = (z - line.p1[2]) / (line.p2[2] - line.p1[2]) + plane_point = padd(line.p1, pmul(line.vector, factor)) + if line.p1[2] < z: + p1 = get_proj_point(line.p1) + p2 = line.p2 + else: + p1 = line.p1 + p2 = get_proj_point(line.p2) + projected_lines.append(Line(p1, plane_point)) + yield Line(plane_point, p2) + elif (last_z is not None) and (line.minz < last_z < line.maxz): + plane = Plane((0, 0, last_z), (0, 0, 1, 'v')) + cp = plane.intersect_point(line.dir, line.p1)[0] + # we can be sure that there is an intersection + if line.p1[2] > last_z: + p1, p2 = cp, line.p2 + else: + p1, p2 = line.p1, cp + projected_lines.append(Line(p1, p2)) + else: + if line.maxz <= z: + # the line is completely below z + projected_lines.append(Line(get_proj_point(line.p1), get_proj_point(line.p2))) + elif line.minz >= z: + projected_lines.append(line) + else: + _log.warn("Unexpected condition 'get_lines_layer': %s / %s / %s / %s", + line.p1, line.p2, z, last_z) + # process all projected lines + _log.debug("Lines Layer: processing projected lines") + for index, line in enumerate(projected_lines): + _log.debug2("Lines Layer: processing projected line %d/%d", + index + 1, len(projected_lines)) + points = [] + if step_width is None: + points.append(line.p1) + points.append(line.p2) + else: + if isiterable(step_width): + steps = step_width + else: + steps = floatrange(0.0, line.len, inc=step_width) + for step in steps: + next_point = padd(line.p1, pmul(line.dir, step)) + points.append(next_point) + yield points + + +def _get_sorted_polygons(models, callback=None): + # Sort the polygons according to their directions (first inside, then + # outside. This reduces the problem of break-away pieces. + inner_polys = [] + outer_polys = [] + for model in models: + for poly in model.get_polygons(): + if poly.get_area() <= 0: + inner_polys.append(poly) + else: + outer_polys.append(poly) + inner_sorter = PolygonSorter(inner_polys, callback=callback) + outer_sorter = PolygonSorter(outer_polys, callback=callback) + return inner_sorter.get_polygons() + outer_sorter.get_polygons() + + +def get_lines_grid(models, box, layer_distance, line_distance=None, step_width=None, + milling_style=MillingStyle.CONVENTIONAL, start_position=StartPosition.Z, + pocketing_type=PocketingType.NONE, skip_first_layer=False, callback=None): + _log.debug("Calculating lines grid: {} model(s), z={}..{} ({}), line_distance={}, " + "step_width={}".format(len(models), box.lower, box.upper, layer_distance, + line_distance, step_width)) + # the lower limit is never below the model + polygons = _get_sorted_polygons(models, callback=callback) + if polygons: + low_limit_lines = min([polygon.minz for polygon in polygons]) + new_lower = Point3D(box.lower.x, box.lower.y, max(box.lower.z, low_limit_lines)) + box = Box3D(new_lower, box.upper) + # calculate pockets + if pocketing_type != PocketingType.NONE: + if callback is not None: + callback(text="Generating pocketing polygons ...") + polygons = get_pocketing_polygons(polygons, line_distance, pocketing_type, + callback=callback) + # extract lines in correct order from all polygons + lines = [] + for polygon in polygons: + if callback: + callback() + if polygon.is_closed and (milling_style == MillingStyle.CONVENTIONAL): + polygon = polygon.copy() + polygon.reverse_direction() + for line in polygon.get_lines(): + lines.append(line) + if isiterable(layer_distance): + layers = layer_distance + elif layer_distance is None: + # only one layer + layers = [box.lower.z] + else: + layers = floatrange(box.lower.z, box.upper.z, inc=layer_distance, + reverse=bool(start_position & StartPosition.Z)) + # turn the generator into a list - otherwise the slicing fails + layers = list(layers) + # engrave ignores the top layer + if skip_first_layer and (len(layers) > 1): + layers = layers[1:] + last_z = None + _log.debug("Pocketing Polygon Layers: %d", len(layers)) + if layers: + # the upper layers are used for PushCutter operations + for z in layers[:-1]: + _log.debug2("Pocketing Polygon Layers: calculating z=%g for PushCutter", z) + if callback: + callback() + yield get_lines_layer(lines, z, last_z=last_z, step_width=None, + milling_style=milling_style) + last_z = z + # the last layer is used for a DropCutter operation + if callback: + callback() + _log.debug2("Pocketing Polygon Layers: calculating z=%g (lowest layer) for DropCutter", + layers[-1]) + yield get_lines_layer(lines, layers[-1], last_z=last_z, step_width=step_width, + milling_style=milling_style) + + +def get_pocketing_polygons(polygons, offset, pocketing_type, callback=None): + """ calculate the pocketing polygons for a given set of polygons + + This function checks if the (not yet fully integrated) openvoronoi library + is found (see pycam.Toolpath.OpenVoronoi for details). If this fails it + uses the better-tested (but known to be unstable) simple pocketing + algorithm. + """ + try: + import pycam.Toolpath.OpenVoronoi + use_voronoi = True + except ImportError: + use_voronoi = False + if use_voronoi: + _log.debug("Using openvoronoi pocketing algorithm") + poly = pycam.Toolpath.OpenVoronoi.pocket_model(polygons, offset) + else: + _log.info("Could not find optional openvoronoi library. Falling back to custom pocketing " + "algorithm.") + poly = get_pocketing_polygons_simple(polygons, offset, pocketing_type, callback) + return poly + + +def get_pocketing_polygons_simple(polygons, offset, pocketing_type, callback=None): + _log.debug("Calculating pocketing polygons: count=%d, offset=%d, pocketing=%s", + len(polygons), offset, pocketing_type) + pocketing_limit = 1000 + base_polygons = [] + other_polygons = [] + if pocketing_type == PocketingType.HOLES: + # go inwards + offset *= -1 + for poly in polygons: + if poly.is_closed and poly.is_outer(): + base_polygons.append(poly) + else: + other_polygons.append(poly) + elif pocketing_type == PocketingType.MATERIAL: + for poly in polygons: + if poly.is_closed and not poly.is_outer(): + base_polygons.append(poly) + else: + other_polygons.append(poly) + else: + _log.warning("Invalid pocketing type given: %d", str(pocketing_type)) + return polygons + # For now we use only the polygons that do not surround any other + # polygons. Sorry - the pocketing is currently very simple ... + base_filtered_polygons = [] + _log.debug("Pocketing Polygons: ignore polygons surrounding other polygons " + "(wrong, but simple)") + for candidate in base_polygons: + if callback and callback(): + # we were interrupted + return polygons + for other in other_polygons: + if candidate.is_polygon_inside(other): + break + else: + base_filtered_polygons.append(candidate) + # start the pocketing for all remaining polygons + pocket_polygons = [] + for index, base_polygon in enumerate(base_filtered_polygons): + _log.debug2("Pocketing Polygons: processing polygon %d/%d", + index + 1, len(base_filtered_polygons)) + pocket_polygons.append(base_polygon) + current_queue = [base_polygon] + next_queue = [] + pocket_depth = 0 + this_pocket_polygons = [] + while current_queue and (pocket_depth < pocketing_limit): + if callback and callback(): + return polygons + for poly in current_queue: + result = poly.get_offset_polygons(offset) + this_pocket_polygons.extend(result) + next_queue.extend(result) + pocket_depth += 1 + current_queue = next_queue + next_queue = [] + if pocket_depth < pocketing_limit: + # the result looks fine + pocket_polygons.extend(this_pocket_polygons) + else: + # probably there was a problem with the algorithm - throw away the result + _log.warning("Pocketing Polygons: exceeded nesting limit - probably something went " + "wrong while processing a polygon. Skipping it.") + _log.debug("Pocketing Polygons: calculated %d polygons", len(pocket_polygons)) + return pocket_polygons diff --git a/pycam/pycam/Toolpath/OpenVoronoi.py b/pycam/pycam/Toolpath/OpenVoronoi.py new file mode 100644 index 00000000..d266baf8 --- /dev/null +++ b/pycam/pycam/Toolpath/OpenVoronoi.py @@ -0,0 +1,186 @@ +""" +This module uses the openvoronoi library (https://github.com/aewallin/openvoronoi). +This module is experimental and not well tested. + +How to enable this module: + * download openvoronoi + * build the library (e.g. openvoronoi.so) + * copy/link/install this library to a directory used by python's module importer + * the presence of this library makes the module below importable (see "import openvoronoi") + * the function pycam.Toolpath.MotionGrid.get_pocketing_polygons automatically used openvoronoi + if it is available +""" + +import math + +# this import requires the openvoronoi library (optional) - see the module documentation above +import openvoronoi + +from pycam.Geometry import epsilon +import pycam.Geometry.Model +from pycam.Geometry.Line import Line +import pycam.Geometry.Polygon +from pycam.Geometry.utils import get_points_of_arc +import pycam.Utils.log + +_log = pycam.Utils.log.get_logger() + + +# point_set is a list of 2D points: [ [x0,y0], [x1,y1], ... , [xN,yN] ] +# NOTE: all points in point_set must be unique! i.e. no duplicate points allowed +# +# line_set is a list of line-segments, given as index-pairs into the point_set list +# [ [start0,end0] , [start1,end1], ... , [startM,endM] ] +# NOTE: intersecting line-segments are not allowed. +# +# this defines line-segments point_set[start0] - points_set[end0] and so on... +# +# NOTE: currently openvoronoi only supports vertices of degree 2 or lower. +# i.e. a "star" geometry where three or more line-segments connect to a central vertex is forbidden +# SUPPORTED: point_set = [p0,p1,p2,p3] line_set = [[0,1], [1,2], [2,3], [3,0]] +# NOT SUPPORTED: point_set = [p0,p1,p2,p3] line_set = [[0,1], [0,2], [0,3]] +# (three line-segments connect to p0!) +def _add_connected_point_set_to_diagram(point_set, line_set, dia): + # add all points to the diagram + vpoints = [] + for p in point_set: + ovp = openvoronoi.Point(*p[:2]) + vpoints.append(dia.addVertexSite(ovp)) + _log.info("all vertices added to openvoronoi!") + # now add all line-segments + for segment in line_set: + start_idx = vpoints[segment[0]] + end_idx = vpoints[segment[1]] + dia.addLineSite(start_idx, end_idx) + _log.info("all lines added to openvoronoi!") + + +def _polygons_to_line_set(polygons): + # all points (unique!) + point_set = [] + # all line-segments (indexes into the point_set array) + line_set = [] + previous_point_index = 0 + point_count = 0 + for polygon_index, polygon in enumerate(polygons): + _log.info("polygon #%d has %d vertices", polygon_index, len(polygon)) + first_point = True + poly_pts = polygon.get_points() + # if the polygon is closed, repeat the first point at the end + if polygon.is_closed and poly_pts: + poly_pts.append(poly_pts[0]) + for p in poly_pts: + point_count += 1 + if p not in point_set: + # this point is a new point we have not seen before + point_set.append(p) + current_point_index = point_set.index(p) + # on the first iteration we have no line-segment + if not first_point: + _log.info(" line from %s to %s", previous_point_index, current_point_index) + line_set.append((previous_point_index, current_point_index)) + else: + first_point = False + previous_point_index = current_point_index + _log.info("point_count: %d", len(point_set)) + _log.info("point_set size: %d", len(point_set)) + _log.info("number of line-segments: %d", len(line_set)) + _log.info("Point set: %s", str(point_set)) + _log.info("Line set: %s", str(line_set)) + return point_set, line_set + + +def _offset_loops_to_polygons(offset_loops): + model = pycam.Geometry.Model.ContourModel() + before = None + for n_loop, loop in enumerate(offset_loops): + lines = [] + _log.info("loop #%d has %d lines/arcs", n_loop, len(loop)) + for n_segment, item in enumerate(loop): + point, radius = item[:2] + point = (point.x, point.y, 0.0) + if before is not None: + if radius == -1: + lines.append(Line(before, point)) + _log.info("%d line %s to %s", n_segment, before, point) + else: + _log.info("%d arc %s to %s r=%f", n_segment, before, point, radius) + center, clock_wise = item[2:] + center = (center.x, center.y, 0.0) + direction_before = (before[0] - center[0], before[1] - center[1], 0.0) + direction_end = (point[0] - center[0], point[1] - center[1], 0.0) + angles = [180.0 * pycam.Geometry.get_angle_pi((1.0, 0.0, 0.0), (0, 0.0, 0.0), + direction, (0.0, 0.0, 1.0), + pi_factor=True) + for direction in (direction_before, direction_end)] + if clock_wise: + angles.reverse() + points = get_points_of_arc(center, radius, angles[0], angles[1]) + last_p = before + for p in points: + lines.append(Line(last_p, p)) + last_p = p + before = point + for line in lines: + if line.len > epsilon: + model.append(line) + return model.get_polygons() + + +def pocket_model(polygons, offset): + _log.info("number of polygons: %d", len(polygons)) + _log.info("offset distance: %f", offset) + maxx = max([poly.maxx for poly in polygons]) + maxy = max([poly.maxy for poly in polygons]) + minx = min([poly.minx for poly in polygons]) + miny = min([poly.miny for poly in polygons]) + radius = math.sqrt((maxx - minx) ** 2 + (maxy - miny) ** 2) / 1.8 + _log.info("Radius: %f", radius) + bin_size = int(math.ceil(math.sqrt(sum([len(poly.get_points()) for poly in polygons])))) + _log.info("bin_size: %f", bin_size) + dia = openvoronoi.VoronoiDiagram(radius, bin_size) + point_set, line_set = _polygons_to_line_set(polygons) + _add_connected_point_set_to_diagram(point_set, line_set, dia) + _log.info("diagram complete") + _log.info("diagram check: %s", str(dia.check())) + offset_dia = openvoronoi.Offset(dia.getGraph()) + _log.info("offset diagram created") + offset_loops = offset_dia.offset(offset) + _log.info("got %d loops from openvoronoi", len(offset_loops)) + return _offset_loops_to_polygons(offset_loops) + + +if __name__ == "__main__": + import sys + if len(sys.argv) > 1: + import pycam.Importers.DXFImporter as importer + model = importer.import_model(sys.argv[1]) + else: + model = pycam.Geometry.Model.ContourModel() + # convert some points to a 2D model + points = ((0.0, 0.0, 0.0), (0.5, 0.0, 0.0), (0.5, 0.5, 0.0), (0.0, 0.0, 0.0)) + print("original points: ", points) + before = None + for p in points: + if before: + model.append(Line(before, p)) + before = p + if len(sys.argv) > 2: + offset = float(sys.argv[2]) + else: + offset = 0.4 + # scale model within a range of -1..1 + maxdim = max(model.maxx - model.minx, model.maxy - model.miny) + # stay well below sqrt(2)/2 in all directions + scale_value = 1.4 / maxdim + print("Scaling factor: %f" % scale_value) + model.scale(scale_value) + shift_x = - (model.minx + (model.maxx - model.minx) / 2.0) + shift_y = - (model.miny + (model.maxy - model.miny) / 2.0) + print("Shifting x: ", shift_x) + print("Shifting y: ", shift_y) + model.shift(shift_x, shift_y, 0.0) + print("Model dimensions x: %f..%f" % (model.minx, model.maxx)) + print("Model dimensions y: %f..%f" % (model.miny, model.maxy)) + + pocket_model(model.get_polygons(), offset) diff --git a/pycam/pycam/Toolpath/Steps.py b/pycam/pycam/Toolpath/Steps.py new file mode 100644 index 00000000..1177a24d --- /dev/null +++ b/pycam/pycam/Toolpath/Steps.py @@ -0,0 +1,47 @@ +""" +Copyright 2010 Lars Kruse + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + +import collections + +from pycam.Toolpath import MOVE_STRAIGHT, MOVE_STRAIGHT_RAPID, MOVE_ARC, MOVE_SAFETY, \ + MACHINE_SETTING, COMMENT + + +def get_step_class_by_action(action): + return { + MOVE_STRAIGHT: MoveStraight, + MOVE_STRAIGHT_RAPID: MoveStraightRapid, + MOVE_ARC: MoveArc, + MOVE_SAFETY: MoveSafety, + MACHINE_SETTING: MachineSetting, + COMMENT: Comment, + }[action] + + +MoveClass = collections.namedtuple("Move", ("action", "position")) +MachineSettingClass = collections.namedtuple("MachineSetting", ("action", "key", "value")) +CommentClass = collections.namedtuple("Comment", ("action", "text")) + + +MoveStraight = lambda position: MoveClass(MOVE_STRAIGHT, position) +MoveStraightRapid = lambda position: MoveClass(MOVE_STRAIGHT_RAPID, position) +MoveArc = lambda position: MoveClass(MOVE_ARC, position) +MoveSafety = lambda: MoveClass(MOVE_SAFETY, None) +MachineSetting = lambda key, value: MachineSettingClass(MACHINE_SETTING, key, value) +Comment = lambda text: CommentClass(COMMENT, text) diff --git a/pycam/pycam/Toolpath/SupportGrid.py b/pycam/pycam/Toolpath/SupportGrid.py new file mode 100644 index 00000000..289d7864 --- /dev/null +++ b/pycam/pycam/Toolpath/SupportGrid.py @@ -0,0 +1,322 @@ +""" +Copyright 2010 Lars Kruse + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + +from pycam.Geometry import number +from pycam.Geometry.Model import Model +from pycam.Geometry.Plane import Plane +from pycam.Geometry.PointUtils import padd, pcross, pdot, pdist, pdiv, pmul, pnormalized, psub +from pycam.Geometry.Triangle import Triangle +from pycam.Geometry.utils import get_angle_pi, get_bisector + + +def _get_triangles_for_face(pts): + t1 = Triangle(pts[0], pts[1], pts[2]) + t2 = Triangle(pts[2], pts[3], pts[0]) + return (t1, t2) + + +def _add_cuboid_to_model(model, start, direction, height, width): + up = pmul((0, 0, 1, 'v'), height) + ortho_dir = pnormalized(pcross(direction, up)) + start1 = padd(start, pmul(ortho_dir, -width/2)) + start2 = padd(start1, up) + start3 = padd(start2, pmul(ortho_dir, width)) + start4 = psub(start3, up) + end1 = padd(start1, direction) + end2 = padd(start2, direction) + end3 = padd(start3, direction) + end4 = padd(start4, direction) + faces = ((start1, start2, start3, start4), (start1, end1, end2, start2), + (start2, end2, end3, start3), (start3, end3, end4, start4), + (start4, end4, end1, start1), (end4, end3, end2, end1)) + for face in faces: + t1, t2 = _get_triangles_for_face(face) + model.append(t1) + model.append(t2) + + +def _add_aligned_cuboid_to_model(minx, maxx, miny, maxy, minz, maxz): + points = ((minx, miny, minz), (maxx, miny, minz), (maxx, maxy, minz), (minx, maxy, minz), + (minx, miny, maxz), (maxx, miny, maxz), (maxx, maxy, maxz), (minx, maxy, maxz)) + triangles = [] + # lower face + triangles.extend(_get_triangles_for_face((points[0], points[1], points[2], points[3]))) + # upper face + triangles.extend(_get_triangles_for_face((points[7], points[6], points[5], points[4]))) + # front face + triangles.extend(_get_triangles_for_face((points[0], points[4], points[5], points[1]))) + # back face + triangles.extend(_get_triangles_for_face((points[2], points[6], points[7], points[3]))) + # right face + triangles.extend(_get_triangles_for_face((points[1], points[5], points[6], points[2]))) + # left face + triangles.extend(_get_triangles_for_face((points[3], points[7], points[4], points[0]))) + # add all triangles to the model + model = Model() + for t in triangles: + model.append(t) + return model + + +def get_support_grid_locations(minx, maxx, miny, maxy, dist_x, dist_y, offset_x=0.0, offset_y=0.0, + adjustments_x=None, adjustments_y=None): + """ calculate positions of a orthogonal grid of support bridges + + @param minx: minimum x value of the target area + @param maxx: maximum x value of the target area + @param miny: minimum y value of the target area + @param maxy: maximum y value of the target area + @param dist_x: distance between two lines parallel to the y axis + @param dist_y: distance between two lines parallel to the x axis + @param adjustments_x: iterable of offsets to be added to each x position + @param adjustments_y: iterable of offsets to be added to each y position + """ + def get_lines(center, dist, min_value, max_value): + """ generate a list of positions starting from the middle going up and + and down + """ + if dist > 0: + lines = [center] + current = center + while current - dist > min_value: + current -= dist + lines.insert(0, current) + current = center + while current + dist < max_value: + current += dist + lines.append(current) + else: + lines = [] + # remove lines that are out of range (e.g. due to a huge offset) + lines = [line for line in lines if min_value < line < max_value] + return lines + + # convert all inputs to the type defined in "number" + dist_x = number(dist_x) + dist_y = number(dist_y) + offset_x = number(offset_x) + offset_y = number(offset_y) + center_x = (maxx + minx) / 2 + offset_x + center_y = (maxy + miny) / 2 + offset_y + lines_x = get_lines(center_x, dist_x, minx, maxx) + lines_y = get_lines(center_y, dist_y, miny, maxy) + # apply as many offsets from adjustments_x and adjustments_y as available + for value_list, adjustments in ((lines_x, adjustments_x), (lines_y, adjustments_y)): + if adjustments: + for index, (current_value, adjustment) in enumerate(zip(value_list, adjustments)): + value_list[index] = current_value + number(adjustment) + return lines_x, lines_y + + +def get_support_grid(minx, maxx, miny, maxy, z_plane, dist_x, dist_y, thickness, height, length, + offset_x=0.0, offset_y=0.0, adjustments_x=None, adjustments_y=None): + lines_x, lines_y = get_support_grid_locations(minx, maxx, miny, maxy, dist_x, dist_y, offset_x, + offset_y, adjustments_x, adjustments_y) + # create all x grid lines + grid_model = Model() + # convert all inputs to "number" + thickness = number(thickness) + height = number(height) + # helper variables + thick_half = thickness / 2 + for line_x in lines_x: + # we make the grid slightly longer (by thickness) than necessary + grid_model += _add_aligned_cuboid_to_model( + line_x - thick_half, line_x + thick_half, miny - length, + maxy + length, z_plane, z_plane + height) + for line_y in lines_y: + # we make the grid slightly longer (by thickness) than necessary + grid_model += _add_aligned_cuboid_to_model( + minx - length, maxx + length, line_y - thick_half, + line_y + thick_half, z_plane, z_plane + height) + return grid_model + + +def get_support_distributed(model, z_plane, average_distance, min_bridges_per_polygon, thickness, + height, length, bounds=None, start_at_corners=False): + if (average_distance == 0) or (length == 0) or (thickness == 0) or (height == 0): + return + result = Model() + if not hasattr(model, "get_polygons"): + model = model.get_waterline_contour(Plane((0, 0, max(model.minz, z_plane)), + (0, 0, 1, 'v'))) + if model: + model = model.get_flat_projection(Plane((0, 0, z_plane), (0, 0, 1, 'v'))) + if model and bounds: + model = model.get_cropped_model_by_bounds(bounds) + if model: + polygons = model.get_polygons() + else: + return None + # minimum required distance between two bridge start points + avoid_distance = 1.5 * (abs(length) + thickness) + if start_at_corners: + bridge_calculator = _get_corner_bridges + else: + bridge_calculator = _get_edge_bridges + for polygon in polygons: + # no grid for _small_ inner polygons + # TODO: calculate a reasonable factor (see below) + if polygon.is_closed and (not polygon.is_outer()) \ + and (abs(polygon.get_area()) < 25000 * thickness ** 2): + continue + bridges = bridge_calculator(polygon, z_plane, min_bridges_per_polygon, average_distance, + avoid_distance) + for pos, direction in bridges: + _add_cuboid_to_model(result, pos, pmul(direction, length), height, thickness) + return result + + +class _BridgeCorner: + + # currently we only use the xy plane + up_vector = (0, 0, 1, 'v') + + def __init__(self, barycenter, location, p1, p2, p3): + self.location = location + self.position = p2 + self.direction = pnormalized(get_bisector(p1, p2, p3, self.up_vector)) + preferred_direction = pnormalized(psub(p2, barycenter)) + # direction_factor: 0..1 (bigger -> better) + direction_factor = (pdot(preferred_direction, self.direction) + 1) / 2 + angle = get_angle_pi(p1, p2, p3, self.up_vector, pi_factor=True) + # angle_factor: 0..1 (bigger -> better) + if angle > 0.5: + # use only angles > 90 degree + angle_factor = angle / 2.0 + else: + angle_factor = 0 + # priority: 0..1 (bigger -> better) + self.priority = angle_factor * direction_factor + + def get_position_priority(self, other_location, average_distance): + return self.priority / (1 + self.get_distance(other_location) / average_distance) + + def get_distance(self, other_location): + return min(abs(other_location - self.location), abs(1 + other_location - self.location)) + + def __str__(self): + return "%s (%s) - %s" % (self.position, self.location, self.priority) + + +def _get_corner_bridges(polygon, z_plane, min_bridges, average_distance, avoid_distance): + """ try to place support bridges at corners of a polygon + Priorities: + - bigger corner angles are preferred + - directions pointing away from the center of the polygon are preferred + """ + center = polygon.get_barycenter() + if center is None: + # polygon is open or zero-sized + return [] + points = polygon.get_points() + poly_lengths = polygon.get_lengths() + outline = sum(poly_lengths) + rel_avoid_distance = avoid_distance / outline + corner_positions = [] + length_sum = 0 + for l in poly_lengths: + corner_positions.append(length_sum / outline) + length_sum += l + num_of_bridges = int(max(min_bridges, round(outline / average_distance))) + rel_average_distance = 1.0 / num_of_bridges + corners = [] + for index in range(len(polygon.get_points())): + p1 = points[(index - 1) % len(points)] + p2 = points[index % len(points)] + p3 = points[(index + 1) % len(points)] + corner = _BridgeCorner(center, corner_positions[index], p1, p2, p3) + if corner.priority > 0: + # ignore sharp corners + corners.append(corner) + bridge_corners = [] + for index in range(num_of_bridges): + preferred_position = index * rel_average_distance + suitable_corners = [] + for corner in corners: + if corner.get_distance(preferred_position) < rel_average_distance: + # check if the corner is too close to neighbouring corners + if (not bridge_corners + or ((bridge_corners[-1].get_distance(corner.location) + >= rel_avoid_distance) + and (bridge_corners[0].get_distance(corner.location) + >= rel_avoid_distance))): + suitable_corners.append(corner) + get_priority = lambda corner: corner.get_position_priority(preferred_position, + rel_average_distance) + suitable_corners.sort(key=get_priority, reverse=True) + if suitable_corners: + bridge_corners.append(suitable_corners[0]) + corners.remove(suitable_corners[0]) + return [(c.position, c.direction) for c in bridge_corners] + + +def _get_edge_bridges(polygon, z_plane, min_bridges, average_distance, avoid_distance): + def is_near_list(point_list, point, distance): + for p in point_list: + if pdist(p, point) <= distance: + return True + return False + lines = polygon.get_lines() + poly_lengths = polygon.get_lengths() + num_of_bridges = max(min_bridges, int(round(sum(poly_lengths) / average_distance))) + real_average_distance = sum(poly_lengths) / num_of_bridges + max_line_index = poly_lengths.index(max(poly_lengths)) + positions = [] + current_line_index = max_line_index + distance_processed = poly_lengths[current_line_index] / 2 + positions.append(current_line_index) + while len(positions) < num_of_bridges: + current_line_index += 1 + current_line_index %= len(poly_lengths) + # skip lines that are not at least twice as long as the grid width + while (distance_processed + poly_lengths[current_line_index] < real_average_distance): + distance_processed += poly_lengths[current_line_index] + current_line_index += 1 + current_line_index %= len(poly_lengths) + positions.append(current_line_index) + distance_processed += poly_lengths[current_line_index] + distance_processed %= real_average_distance + result = [] + bridge_positions = [] + for line_index in positions: + position = polygon.get_middle_of_line(line_index) + # skip bridges that are close to another existing bridge + if is_near_list(bridge_positions, position, avoid_distance): + line = polygon.get_lines()[line_index] + # calculate two alternative points on the same line + position1 = pdiv(padd(position, line.p1), 2) + position2 = pdiv(padd(position, line.p2), 2) + if is_near_list(bridge_positions, position1, avoid_distance): + if is_near_list(bridge_positions, position2, avoid_distance): + # no valid alternative - we skip this bridge + continue + else: + # position2 is OK + position = position2 + else: + # position1 is OK + position = position1 + # append the original position (ignoring z_plane) + bridge_positions.append(position) + # move the point to z_plane + position = (position[0], position[1], z_plane) + bridge_dir = pnormalized(pcross(lines[line_index].dir, polygon.plane.n)) + result.append((position, bridge_dir)) + return result diff --git a/pycam/pycam/Toolpath/__init__.py b/pycam/pycam/Toolpath/__init__.py new file mode 100644 index 00000000..f47f68cb --- /dev/null +++ b/pycam/pycam/Toolpath/__init__.py @@ -0,0 +1,472 @@ +""" +Copyright 2010 Lars Kruse + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + +from enum import Enum +from itertools import groupby +import math +import os + +try: + import numpy + from OpenGL.arrays import vbo +except ImportError: + # both modules are required for visualization, only + pass + +from pycam.Geometry import epsilon, number, Box3D, DimensionalObject, Point3D +from pycam.Geometry.PointUtils import padd, pcross, pdist, pmul, pnorm, pnormalized, psub +import pycam.Utils.log + + +_log = pycam.Utils.log.get_logger() + + +MOVE_STRAIGHT, MOVE_STRAIGHT_RAPID, MOVE_ARC, MOVE_SAFETY, MACHINE_SETTING, COMMENT = range(6) +MOVES_LIST = (MOVE_STRAIGHT, MOVE_STRAIGHT_RAPID, MOVE_ARC) + + +class ToolpathPathMode(Enum): + CORNER_STYLE_EXACT_PATH = "exact_path" + CORNER_STYLE_EXACT_STOP = "exact stop" + CORNER_STYLE_OPTIMIZE_SPEED = "optimize_speed" + CORNER_STYLE_OPTIMIZE_TOLERANCE = "optimize_tolerance" + + +def _check_colinearity(p1, p2, p3): + v1 = pnormalized(psub(p2, p1)) + v2 = pnormalized(psub(p3, p2)) + # compare if the normalized distances between p1-p2 and p2-p3 are equal + return v1 == v2 + + +def simplify_toolpath(path): + """ remove multiple points in a line from a toolpath + + If A, B, C and D are on a straight line, then B and C will be removed. + This reduces memory consumption and avoids a severe slow-down of the machine + when moving along very small steps. + The toolpath is simplified _in_place_. + @value path: a single separate segment of a toolpath + @type path: list of points + """ + index = 1 + # stay compatible with pycam.Geometry.Path objects + if hasattr(path, "points"): + path = path.points + while index < len(path) - 1: + if _check_colinearity(path[index-1], path[index], path[index+1]): + path.pop(index) + # don't increase the counter - otherwise we skip one point + else: + index += 1 + + +class Toolpath(DimensionalObject): + + def __init__(self, toolpath_path=None, toolpath_filters=None, tool=None, **kwargs): + super().__init__(**kwargs) + if toolpath_path is None: + toolpath_path = [] + if toolpath_filters is None: + toolpath_filters = [] + self.filters = toolpath_filters + self.path = toolpath_path + self.tool = tool + self.clear_cache() + + def __get_path(self): + return self.__path + + def __set_path(self, new_path): + # use a read-only tuple instead of a list + # (otherwise we can't detect changes) + self.__path = tuple(new_path) + self.clear_cache() + + def __get_filters(self): + return self.__filters + + def __set_filters(self, new_filters): + # use a read-only tuple instead of a list + # (otherwise we can't detect changes) + self.__filters = tuple(new_filters) + self.clear_cache() + + # use a property in order to trigger "clear_cache" whenever the path changes + path = property(__get_path, __set_path) + filters = property(__get_filters, __set_filters) + + def copy(self): + return type(self)(toolpath_path=self.path, toolpath_filters=self.filters, tool=self.tool) + + def clear_cache(self): + self.opengl_safety_height = None + self._cache_basic_moves = None + self._cache_visual_filters_string = None + self._cache_visual_filters = None + self._cache_machine_distance_and_time = None + self._minx = None + self._maxx = None + self._miny = None + self._maxy = None + self._minz = None + self._maxz = None + + def __hash__(self): + return hash((self.__path, self.__filters)) + + def _get_limit_generic(self, idx, func): + values = [step.position[idx] for step in self.path if step.action in MOVES_LIST] + return func(values) + + @property + def minx(self): + if self._minx is None: + self._minx = self._get_limit_generic(0, min) + return self._minx + + @property + def maxx(self): + if self._maxx is None: + self._maxx = self._get_limit_generic(0, max) + return self._maxx + + @property + def miny(self): + if self._miny is None: + self._miny = self._get_limit_generic(1, min) + return self._miny + + @property + def maxy(self): + if self._maxy is None: + self._maxy = self._get_limit_generic(1, max) + return self._maxy + + @property + def minz(self): + if self._minz is None: + self._minz = self._get_limit_generic(2, min) + return self._minz + + @property + def maxz(self): + if self._maxz is None: + self._maxz = self._get_limit_generic(2, max) + return self._maxz + + def get_meta_data(self): + meta = self.toolpath_settings.get_string() + start_marker = self.toolpath_settings.META_MARKER_START + end_marker = self.toolpath_settings.META_MARKER_END + return os.linesep.join((start_marker, meta, end_marker)) + + def get_moves(self, max_time=None): + moves = self.get_basic_moves() + if max_time is None: + return moves + else: + # late import due to dependency cycle + import pycam.Toolpath.Filters + return moves | pycam.Toolpath.Filters.TimeLimit(max_time) + + def _rotate_point(self, rp, sp, v, angle): + vx = v[0] + vy = v[1] + vz = v[2] + x = ((sp[0] * (vy ** 2 + vz ** 2) + - vx * (sp[1] * vy + + sp[2] * vz + - vx * rp[0] + - vy * rp[1] + - vz * rp[2])) * (1 - math.cos(angle)) + + rp[0] * math.cos(angle) + + (-sp[2] * vy + sp[1] * vz - vz * rp[1] + vy * rp[2]) * math.sin(angle)) + y = ((sp[1] * (vx ** 2 + vz ** 2) + - vy * (sp[0] * vx + + sp[2] * vz + - vx * rp[0] + - vy * rp[1] + - vz * rp[2])) * (1 - math.cos(angle)) + + rp[1] * math.cos(angle) + + (sp[2] * vx - sp[0] * vz + vz * rp[0] - vx * rp[2]) * math.sin(angle)) + z = ((sp[2] * (vx ** 2 + vy ** 2) + - vz * (sp[0] * vx + + sp[1] * vy + - vx * rp[0] + - vy * rp[1] + - vz * rp[2])) * (1 - math.cos(angle)) + + rp[2] * math.cos(angle) + + (-sp[1] * vx + sp[0] * vy - vy * rp[0] + vx * rp[1]) * math.sin(angle)) + return (x, y, z) + + def draw_direction_cone_mesh(self, p1, p2, position=0.5, precision=12, size=0.1): + distance = psub(p2, p1) + length = pnorm(distance) + direction = pnormalized(distance) + if direction is None or length < 0.5: + # zero-length line + return [] + cone_length = length * size + cone_radius = cone_length / 3.0 + bottom = padd(p1, pmul(psub(p2, p1), position - size / 2)) + top = padd(p1, pmul(psub(p2, p1), position + size / 2)) + # generate a a line perpendicular to this line, cross product is good at this + cross = pcross(direction, (0, 0, -1)) + conepoints = [] + if pnorm(cross) != 0: + # The line direction is not in line with the z axis. + conep1 = padd(bottom, pmul(cross, cone_radius)) + conepoints = [self._rotate_point(conep1, bottom, direction, x) + for x in numpy.linspace(0, 2 * math.pi, precision)] + else: + # Z axis + # just add cone radius to the x axis and rotate the point + conep1 = (bottom[0] + cone_radius, bottom[1], bottom[2]) + conepoints = [self._rotate_point(conep1, p1, direction, x) + for x in numpy.linspace(0, 2*math.pi, precision)] + triangles = [(top, conepoints[idx], conepoints[idx + 1]) + for idx in range(len(conepoints) - 1)] + return triangles + + def get_moves_for_opengl(self, safety_height): + if self.opengl_safety_height != safety_height: + self.make_moves_for_opengl(safety_height) + self.make_vbo_for_moves() + return (self.opengl_coords, self.opengl_indices) + + # separate vertex coordinates from line definitions and convert to indices + def make_vbo_for_moves(self): + index = 0 + output = [] + store_vertices = {} + vertices = [] + for path in self.opengl_lines: + indices = [] + triangles = [] + triangle_indices = [] + # compress the lines into a centeral array containing all the vertices + # generate a matching index for each line + for idx in range(len(path[0]) - 1): + point = path[0][idx] + if point not in store_vertices: + store_vertices[point] = index + vertices.insert(index, point) + index += 1 + indices.append(store_vertices[point]) + point2 = path[0][idx + 1] + if point2 not in store_vertices: + store_vertices[point2] = index + vertices.insert(index, point2) + index += 1 + triangles.extend(self.draw_direction_cone_mesh(path[0][idx], path[0][idx + 1])) + for t in triangles: + for p in t: + if p not in store_vertices: + store_vertices[p] = index + vertices.insert(index, p) + index += 1 + triangle_indices.append(store_vertices[p]) + triangle_indices = numpy.array(triangle_indices, dtype=numpy.int32) + indices.append(store_vertices[path[0][-1]]) + # this list comprehension removes consecutive duplicate points. + indices = numpy.array([x[0] for x in groupby(indices)], dtype=numpy.int32) + output.append((indices, triangle_indices, path[1])) + vertices = numpy.array(vertices, dtype=numpy.float32) + self.opengl_coords = vbo.VBO(vertices) + self.opengl_indices = output + + def make_moves_for_opengl(self, safety_height): + # convert moves into lines for display with opengl + working_path = [] + outpaths = [] + for path in self.path: + if not path: + continue + + if len(outpaths) != 0: + lastp = outpaths[-1][0][-1] + working_path.append((path[0][0], path[0][1], safety_height)) + if ((abs(lastp[0] - path[0][0]) > epsilon) + or (abs(lastp[1] - path[0][1]) > epsilon)): + if ((abs(lastp[2] - path[0][2]) > epsilon) + or (pdist(lastp, path[0]) > self._max_safe_distance + epsilon)): + outpaths.append((tuple([x[0] for x in groupby(working_path)]), True)) + else: + working_path.append((0, 0, 0)) + working_path.append((path[0][0], path[0][1], safety_height)) + outpaths.append((working_path, True)) + + # add this move to last move if last move was not rapid + if not outpaths[-1][1]: + outpaths[-1] = (outpaths[-1][0] + tuple(path), False) + else: + # last move was rapid, so add last point of rapid to beginning of path + outpaths.append((tuple([x[0] for x in groupby((outpaths[-1][0][-1],) + + tuple(path))]), False)) + working_path = [] + working_path.append(path[-1]) + working_path.append((path[-1][0], path[-1][1], safety_height)) + outpaths.append((tuple([x[0] for x in groupby(working_path)]), True)) + self.opengl_safety_height = safety_height + self.opengl_lines = outpaths + + def get_machine_time(self, safety_height=0.0): + """ calculate an estimation of the time required for processing the + toolpath with the machine + + @rtype: float + @returns: the machine time used for processing the toolpath in minutes + """ + return self.get_machine_move_distance_and_time()[1] + + def get_machine_move_distance_and_time(self): + if self._cache_machine_distance_and_time is None: + min_feedrate = 1 + length = 0 + duration = 0 + feedrate = min_feedrate + current_position = None + # go through all points of the path + for step in self.get_basic_moves(): + if (step.action == MACHINE_SETTING) and (step.key == "feedrate"): + feedrate = step.value + elif step.action in MOVES_LIST: + if current_position is not None: + distance = pdist(step.position, current_position) + duration += distance / max(feedrate, min_feedrate) + length += distance + current_position = step.position + self._cache_machine_distance_and_time = length, duration + return self._cache_machine_distance_and_time + + def get_basic_moves(self, filters=None, reset_cache=False): + if filters is None: + # implicitly assume that we use the default (latest) filters if nothing is given + filters = self._cache_visual_filters or [] + if reset_cache or not self._cache_basic_moves or \ + (str(filters) != self._cache_visual_filters_string): + # late import due to dependency cycle + import pycam.Toolpath.Filters + all_filters = tuple(self.filters) + tuple(filters) + self._cache_basic_moves = pycam.Toolpath.Filters.get_filtered_moves(self.path, + all_filters) + self._cache_visual_filters_string = str(filters) + self._cache_visual_filters = filters + _log.debug("Applying toolpath filters: %s", + ", ".join([str(fil) for fil in all_filters])) + _log.debug("Toolpath step changes: %d (before) -> %d (after)", + len(self.path), len(self._cache_basic_moves)) + return self._cache_basic_moves + + +class Bounds: + + TYPE_RELATIVE_MARGIN = 0 + TYPE_FIXED_MARGIN = 1 + TYPE_CUSTOM = 2 + + def __init__(self, bounds_type=None, box=None, reference=None): + """ create a new Bounds instance + + @value bounds_type: any of TYPE_RELATIVE_MARGIN | TYPE_FIXED_MARGIN | + TYPE_CUSTOM + @type bounds_type: int + @value bounds_low: the lower margin of the boundary compared to the + reference object (for TYPE_RELATIVE_MARGIN | TYPE_FIXED_MARGIN) or + the specific boundary values (for TYPE_CUSTOM). Only the lower + values of the three axes (x, y and z) are given. + @type bounds_low: (tuple|list) of float + @value bounds_high: see 'bounds_low' + @type bounds_high: (tuple|list) of float + @value reference: optional default reference Bounds instance + @type reference: Bounds + """ + self.name = "No name" + self.set_type(bounds_type) + if box is None: + box = Box3D(Point3D(0, 0, 0), Point3D(0, 0, 0)) + self.set_bounds(box) + self.reference = reference + + def __repr__(self): + bounds_type_labels = ("relative", "fixed", "custom") + return "Bounds(%s, %s, %s)" % (bounds_type_labels[self.bounds_type], + self.bounds_low, self.bounds_high) + + def set_type(self, bounds_type): + # complain if an unknown bounds_type value was given + if bounds_type not in (Bounds.TYPE_RELATIVE_MARGIN, Bounds.TYPE_FIXED_MARGIN, + Bounds.TYPE_CUSTOM): + raise ValueError("failed to create an instance of pycam.Toolpath.Bounds due to an " + "invalid value of 'bounds_type': %s" % repr(bounds_type)) + else: + self.bounds_type = bounds_type + + def get_bounds(self): + return Box3D(Point3D(*self.bounds_low), Point3D(*self.bounds_high)) + + def set_bounds(self, box): + self.bounds_low = box.lower + self.bounds_high = box.upper + + def get_absolute_limits(self, reference=None): + """ calculate the current absolute limits of the Bounds instance + + @value reference: a reference object described by a tuple (or list) of + three item. These three values describe only the lower boundary of + this object (for the x, y and z axes). Each item must be a float + value. This argument is ignored for the boundary type "TYPE_CUSTOM". + @type reference: (tuple|list) of float + @returns: a tuple of two lists containing the low and high limits + @rvalue: tuple(list) + """ + # use the default reference if none was given + if reference is None: + reference = self.reference + # check if a reference is given (if necessary) + if self.bounds_type \ + in (Bounds.TYPE_RELATIVE_MARGIN, Bounds.TYPE_FIXED_MARGIN): + if reference is None: + raise ValueError("any non-custom boundary definition requires a reference " + "object for calculating absolute limits") + else: + ref_low, ref_high = reference.get_absolute_limits() + low = [None] * 3 + high = [None] * 3 + # calculate the absolute limits + if self.bounds_type == Bounds.TYPE_RELATIVE_MARGIN: + for index in range(3): + dim_width = ref_high[index] - ref_low[index] + low[index] = ref_low[index] - self.bounds_low[index] * dim_width + high[index] = ref_high[index] + self.bounds_high[index] * dim_width + elif self.bounds_type == Bounds.TYPE_FIXED_MARGIN: + for index in range(3): + low[index] = ref_low[index] - self.bounds_low[index] + high[index] = ref_high[index] + self.bounds_high[index] + elif self.bounds_type == Bounds.TYPE_CUSTOM: + for index in range(3): + low[index] = number(self.bounds_low[index]) + high[index] = number(self.bounds_high[index]) + else: + # this should not happen + raise NotImplementedError("the function 'get_absolute_limits' is currently not " + "implemented for the bounds_type '%s'" + % str(self.bounds_type)) + return Box3D(Point3D(low), Point3D(high)) diff --git a/pycam/pycam/Utils/FontCache.py b/pycam/pycam/Utils/FontCache.py new file mode 100644 index 00000000..ebda4009 --- /dev/null +++ b/pycam/pycam/Utils/FontCache.py @@ -0,0 +1,119 @@ +""" +Copyright 2010 Lars Kruse + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + +import os + +import pycam.Importers.CXFImporter +import pycam.Utils.log + + +DEFAULT_NAMES = ("normal", "default", "standard") + + +log = pycam.Utils.log.get_logger() + + +class FontCache: + """ The FontCache gradually loads fonts. This is more efficient than an + immediate initialization of all fonts for the DXF importer. + Use "get_font" for loading (incrementally) fonts until the requested font + name was found. + The functions "get_names" and "len()" trigger an immediate initialization + of all available fonts. + """ + + def __init__(self, font_dir=None, core=None): + self.font_dir = font_dir + self.fonts = {} + self.core = core + self._unused_font_files = list(self._get_font_files()) + + def is_loading_complete(self): + return len(self._unused_font_files) == 0 + + def _get_font_files(self): + if self.font_dir is None: + return [] + log.info("Font directory: %s", self.font_dir) + result = [] + files = os.listdir(self.font_dir) + for fname in files: + filename = os.path.join(self.font_dir, fname) + if filename.lower().endswith(".cxf") and os.path.isfile(filename): + result.append(filename) + result.sort() + return result + + def __len__(self): + self._load_all_files() + return len(self.fonts) + + def _get_font_without_loading(self, name): + for font_name in self.fonts: + if font_name.lower() == name.lower(): + return self.fonts[font_name] + return None + + def get_font_names(self): + self._load_all_files() + return self.fonts.keys() + + def get_font(self, name): + font = self._get_font_without_loading(name) + while not font and not self.is_loading_complete(): + self._load_next_file() + font = self._get_font_without_loading(name) + if font: + return font + else: + # no font with that name is available + for other_name in DEFAULT_NAMES: + font = self._get_font_without_loading(other_name) + if font: + return font + if self.fonts: + # return the first (random) font in the dictionary + return self.fonts.values()[0] + + def _load_all_files(self): + if self.core: + progress = self.core.get("progress") + progress.set_multiple(len(self._unused_font_files), "Loading font") + else: + progress = None + while not self.is_loading_complete(): + self._load_next_file(progress=progress) + if progress: + progress.update_multiple() + if progress: + progress.finish() + + def _load_next_file(self, progress=None): + if self.is_loading_complete(): + return + filename = self._unused_font_files.pop(0) + if progress: + callback = progress.update + progress.update(text="Loading font file %s" % os.path.basename(filename)) + else: + callback = None + charset = pycam.Importers.CXFImporter.import_font(filename, callback=callback) + if charset is not None: + for name in charset.get_names(): + self.fonts[name] = charset diff --git a/pycam/pycam/Utils/__init__.py b/pycam/pycam/Utils/__init__.py new file mode 100644 index 00000000..83d26eb2 --- /dev/null +++ b/pycam/pycam/Utils/__init__.py @@ -0,0 +1,350 @@ +""" +Copyright 2008 Lode Leroy + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + +import enum +import os +import re +import socket +import sys +import traceback +import urllib +from urllib.parse import urlparse +from urllib.request import url2pathname +# this is imported below on demand +# import win32com +# import win32api + + +# setproctitle is (optionally) imported +try: + from setproctitle import setproctitle +except ImportError: + # silently ignore name change requests + setproctitle = lambda name: None + + +__application_key = [] + + +class OSPlatform(enum.IntEnum): + LINUX = 0 + WINDOWS = 1 + MACOS = 2 + UNKNOWN = 3 + + +def get_platform(): + if hasattr(sys, "getwindowsversion"): + return OSPlatform.WINDOWS + elif sys.platform == "darwin": + return OSPlatform.MACOS + elif sys.platform.startswith("linux"): + return OSPlatform.LINUX + else: + return OSPlatform.UNKNOWN + + +def get_type_name(instance): + return type(instance).__name__ + + +def set_application_key(key): + while __application_key: + __application_key.pop() + __application_key.append(key) + + +def get_application_key(): + """ get the somehow unique name of the running application + + This application key can be used to distinguish application-specific namespaces in the data + storage (e.g. "pycam-gtk" or "pycam-cli"). + """ + return __application_key[0] if __application_key else None + + +def get_case_insensitive_file_pattern(pattern): + """ Convert something like "*.svg" into "*.[sS][vV][gG]" - as it is + required for GTK's FileFilter. + """ + result = [] + char_match = re.compile(r"[a-zA-Z]") + for char in pattern: + if char_match.match(char): + result.append("[%s%s]" % (char.lower(), char.upper())) + else: + result.append(char) + return "".join(result) + + +def get_non_conflicting_name(template, conflicts, start=None, get_next_func=None): + """ Find a string containing a number that is not in conflict with any of + the given strings. A name template (containing "%d") is required. + + You may use non-numbers (strings, floats, ...) as well. In this case + you need to override "start" and "get_next_func". + + @value template: a string template containing "%d" (e.g. "Object %d") + @type template: basestr + @value conflicts: a list of strings that need may not be used + @type conflicts: list(basestr) + @value start: optional initial value (default: len(conflicts) + 1) + @type start: undefined + @value get_next_func: function used for determining the next value to + be tested. This function defaults to "lambda value: value + 1". + @returns: a usable name that was not found in "conflicts" + @rtype: basestr + """ + index = 1 if start is None else start + if get_next_func is None: + get_next_func = lambda current: current + 1 + while (template % index) in conflicts: + index = get_next_func(index) + return template % index + + +class URIHandler: + + DEFAULT_PREFIX = "file://" + + def __init__(self, location): + self._uri = None + self.set_location(location) + + def __str__(self): + if self.is_local(): + return self.get_local_path() + else: + return self._uri.geturl() + + def set_location(self, location): + if isinstance(location, URIHandler): + self._uri = location._uri + elif not location: + self._uri = urlparse(self.DEFAULT_PREFIX) + elif (get_platform() == OSPlatform.WINDOWS) and (location[1:3] == ":\\"): + self._uri = urlparse(self.DEFAULT_PREFIX + location.replace("\\", "/")) + else: + self._uri = urlparse(location) + if not self._uri.scheme: + # always fill the "scheme" field - some functions expect this + self._uri = urlparse(self.DEFAULT_PREFIX + + os.path.realpath(os.path.abspath(location))) + + def is_local(self): + return bool(self and (not self._uri.scheme or (self._uri.scheme == "file"))) + + def get_local_path(self): + if self.is_local(): + return self.get_path() + else: + return None + + def get_path(self): + encoded_path = self._uri.path + if get_platform() == OSPlatform.WINDOWS: + # prepend "netloc" (the drive letter - e.g. "c:") + encoded_path = self._uri.netloc + encoded_path + # decode all special characters like "%20" and replace "/" with "\\" (Windows) + return url2pathname(encoded_path) + + def get_url(self): + return self._uri.geturl() + + def open(self): + if self.is_local(): + return open(self.get_local_path(), "rb") + else: + return urllib.urlopen(self._uri.geturl()) + + def retrieve_remote_file(self, destination, callback=None): + if callback: + download_callback = lambda current_blocks, block_size, num_of_blocks: callback() + else: + download_callback = None + try: + urllib.urlretrieve(self.get_url(), destination, download_callback) + return True + except IOError: + return False + + def __eq__(self, other): + if hasattr(other, "split"): + return self == URIHandler(other) + elif self.__class__ == other.__class__: + if self.is_local() and other.is_local(): + return self._uri.path == other._uri.path + else: + return tuple(self) == tuple(other) + else: + return hash(self) == hash(other) + + def __ne__(self, other): + return not self == other + + def __nonzero__(self): + return self.get_url() != self.DEFAULT_PREFIX + + def exists(self): + if not self: + return False + elif self.is_local(): + return os.path.exists(self.get_local_path()) + else: + try: + handle = self.open() + handle.close() + return True + except IOError: + return False + + def is_writable(self): + return bool(self.is_local() + and os.path.isfile(self.get_local_path()) + and os.access(self.get_local_path(), os.W_OK)) + + +def get_all_ips(): + """ try to get all IPs of this machine + + The resulting list of IPs contains non-local IPs first, followed by + local IPs (starting with "127...."). + """ + def get_ips_of_name(name): + try: + ips = socket.gethostbyname_ex(name) + if len(ips) == 3: + return ips[2] + except socket.gaierror: + return [] + result = [] + result.extend(get_ips_of_name(socket.gethostname())) + result.extend(get_ips_of_name("localhost")) + filtered_result = [] + for one_ip in result: + if one_ip not in filtered_result: + filtered_result.append(one_ip) + # non-local IPs first + filtered_result.sort(key=lambda ip: ((1 if ip.startswith("127.") else 0), ip)) + return filtered_result + + +def get_exception_report(): + return ("An unexpected exception occurred: please send the text below to the developers of " + "PyCAM. Thanks a lot!" + os.linesep + traceback.format_exc()) + + +def print_stack_trace(): + # for debug purposes + traceback.print_stack() + + +class MultiLevelDictionaryAccess: + """ translate a single- or multi-level dictionary access key into a target dict and key """ + + def __init__(self, base_dictionary): + self._data = base_dictionary + + def get_value(self, key_or_keys): + source_dict, source_key = self._get_recursive_access(key_or_keys, create_if_missing=False) + return source_dict[source_key] + + def set_value(self, key_or_keys, value): + target_dict, target_key = self._get_recursive_access(key_or_keys, create_if_missing=True) + target_dict[target_key] = value + + def apply_recursive_item_modification(self, test_should_apply, func_get_modified, + current_keys=None): + """ modify every item in a multi-level dictionary + + @param test_should_apply: callable expecting a single parameter (a value) and returning + True, if the value is supposed to be modified + @param func_get_modified: callable expecting a single parameter (a value) and returning the + modified value + """ + if current_keys is None: + current_keys = () + target_dict = self._data + else: + target_dict = self.get_value(current_keys) + for key, value in target_dict.items(): + this_item_keys = current_keys + (key, ) + if test_should_apply(value): + self.set_value(this_item_keys, func_get_modified(value)) + if isinstance(value, dict): + self.apply_recursive_item_modification(test_should_apply, func_get_modified, + current_keys=this_item_keys) + + def _get_recursive_access(self, key_or_keys, create_if_missing=False): + """ + @param base_dictionary: the dictionary containing the data to be accessed + @param key: string (single level access) or tuple of strings (multi level access) + @param create_if_missing: create nested dictionaries if necessary + @returns: tuple of (dict, str) for accessing the dictionary containing the target item + + @raises: + - KeyError: if one part of the access chain is missing and "create_if_missing" is False + - TypeError: if one part of the access chain is not a dictionary + """ + if isinstance(key_or_keys, tuple): + # multi-level dictionary access + keys = key_or_keys + else: + # single-level dictionary access + keys = [key_or_keys] + # recursively access the single- or multi-level target dictionary + target_dict = self._data + for key in keys[:-1]: + if key not in target_dict: + if create_if_missing: + target_dict[key] = {} + else: + raise KeyError("Key in sub-dictionary is missing: {}".format(key)) + # enter the next level + target_dict = target_dict[key] + if not isinstance(target_dict, dict): + raise TypeError("Invalid multi-level parameter set access key: {}" + .format(key_or_keys)) + return target_dict, keys[-1] + + +class ProgressCounter: + + def __init__(self, max_value, update_callback): + if max_value <= 0: + # prevent divide-by-zero in "get_percent" + self.max_value = 100 + else: + self.max_value = max_value + self.current_value = 0 + self.update_callback = update_callback + + def increment(self, increment=1): + self.current_value += increment + return self.update() + + def update(self): + if self.update_callback: + # "True" means: "quit requested via GUI" + return self.update_callback(percent=self.get_percent()) + else: + return False + + def get_percent(self): + return min(100, max(0, 100.0 * self.current_value / self.max_value)) diff --git a/pycam/pycam/Utils/events.py b/pycam/pycam/Utils/events.py new file mode 100644 index 00000000..218575b9 --- /dev/null +++ b/pycam/pycam/Utils/events.py @@ -0,0 +1,284 @@ +import collections +import contextlib + +import pycam.Gui.Settings +import pycam.Utils.log + + +log = pycam.Utils.log.get_logger() + + +UISection = collections.namedtuple("UISection", ("add_func", "clear_func", "widgets")) +UIWidget = collections.namedtuple("UIWidget", ("name", "obj", "weight", "args")) +UIEvent = collections.namedtuple("UIEvent", ("handlers", "blocker_tokens", "statistics")) +UIChain = collections.namedtuple("UIChain", ("func", "weight")) + + +__event_handlers = [] +__mainloop = [] + + +def get_mainloop(use_gtk=False): + """create new or return an existing mainloop + + @param use_gtk: supply Gtk with timeslots for event handling (active if this parameter is True + at least once) + """ + try: + mainloop = __mainloop[0] + except IndexError: + try: + mainloop = GtkMainLoop() + except ImportError: + log.warning("No event loop is available") + mainloop = None + __mainloop.append(mainloop) + return mainloop + + +class GtkMainLoop: + + def __init__(self): + import gi + gi.require_version("Gtk", "3.0") + from gi.repository import Gtk + self._gtk = Gtk + self._is_running = False + + def run(self): + if self._is_running: + log.warning("Refusing to run main loop again, while we are running") + return + self._is_running = True + try: + self._gtk.main() + except KeyboardInterrupt: + pass + self._is_running = False + + def stop(self): + if self._is_running: + log.debug("Stopping main loop") + self._gtk.main_quit() + else: + log.info("Main loop was stopped before") + + def update(self): + while self._gtk.events_pending(): + self._gtk.main_iteration() + + +def get_event_handler(): + if not __event_handlers: + __event_handlers.append(EventCore()) + return __event_handlers[0] + + +class EventCore(pycam.Gui.Settings.Settings): + + def __init__(self): + super().__init__() + self.event_handlers = {} + self.ui_sections = {} + self.chains = {} + self.state_dumps = [] + self.namespace = {} + + def register_event(self, event, target): + assert callable(target) or isinstance(target, str) + if event not in self.event_handlers: + self.event_handlers[event] = UIEvent([], [], + {"emitted": 0, "blocked": 0, "handled": 0}) + self.event_handlers[event].handlers.append(target) + + def unregister_event(self, event, target): + if event in self.event_handlers: + removal_list = [] + handlers = self.event_handlers[event] + for index, item in enumerate(handlers.handlers): + if target == item: + removal_list.append(index) + removal_list.reverse() + for index in removal_list: + handlers.handlers.pop(index) + else: + log.info("Trying to unregister an unknown event: %s", event) + + def get_events_summary(self): + return {key: {"handlers": tuple(handler for handler in event.handlers), + "emitted": event.statistics["emitted"], + "handled": event.statistics["handled"], + "blocked": event.statistics["blocked"]} + for key, event in self.event_handlers.items()} + + def get_events_summary_lines(self): + return ["{} ({:d}, {:d}/{:d})".format(event, len(stats["handlers"]), stats["handled"], + stats["emitted"]) + for event, stats in sorted(self.get_events_summary().items())] + + def emit_event(self, event): + log.debug2("Event emitted: %s", event) + if event in self.event_handlers: + self.event_handlers[event].statistics["emitted"] += 1 + if self.event_handlers[event].blocker_tokens: + self.event_handlers[event].statistics["blocked"] += 1 + log.debug2("Ignoring blocked event: %s", event) + else: + # prevent infinite recursion + with self.blocked_events({event}, disable_log=True): + self.event_handlers[event].statistics["handled"] += 1 + for handler in self.event_handlers[event].handlers: + log.debug2("Calling event handler: %s", handler) + if isinstance(handler, str): + # event names are acceptable + self.emit_event(handler) + else: + handler() + else: + log.debug("No events registered for event '%s'", event) + + def block_event(self, event, disable_log=False): + if event in self.event_handlers: + self.event_handlers[event].blocker_tokens.append(True) + if not disable_log: + log.debug2("Blocking an event: %s (%d blockers reached)", + event, len(self.event_handlers[event].blocker_tokens)) + else: + if not disable_log: + log.info("Trying to block an unknown event: %s", event) + + def unblock_event(self, event, disable_log=False): + if event in self.event_handlers: + if self.event_handlers[event].blocker_tokens: + self.event_handlers[event].blocker_tokens.pop() + if not disable_log: + log.debug2("Unblocking an event: %s (%d blockers remaining)", + event, len(self.event_handlers[event].blocker_tokens)) + else: + if not disable_log: + log.debug("Trying to unblock non-blocked event '%s'", event) + else: + # "disable_log" is only relevant for the debugging messages above + log.info("Trying to unblock an unknown event: %s", event) + + @contextlib.contextmanager + def blocked_events(self, events, emit_after=False, disable_log=False): + """ temporarily block a number of events for the duration of this context + + @param events: iterable of events to be blocked temporarily + @param emit_after: emit all given events at the end of the context + """ + unblock_list = [] + for event in events: + self.block_event(event, disable_log=disable_log) + unblock_list.append(event) + unblock_list.reverse() + try: + yield + finally: + for event in unblock_list: + self.unblock_event(event, disable_log=disable_log) + if emit_after: + for event in unblock_list: + self.emit_event(event) + + def register_ui_section(self, section, add_action, clear_action): + if section not in self.ui_sections: + self.ui_sections[section] = UISection(None, None, []) + else: + log.error("Trying to register a ui section twice: %s", section) + self.ui_sections[section] = UISection(add_action, clear_action, + self.ui_sections[section].widgets) + self._rebuild_ui_section(section) + + def unregister_ui_section(self, section): + if section in self.ui_sections: + ui_section = self.ui_sections[section] + while ui_section.widgets: + ui_section.widgets.pop() + del self.ui_sections[section] + else: + log.info("Trying to unregister a non-existent ui section: %s", section) + + def clear_ui_section(self, section): + ui_section = self.ui_sections[section] + while ui_section.widgets: + ui_section.widgets.pop() + + def _rebuild_ui_section(self, section): + if section in self.ui_sections: + ui_section = self.ui_sections[section] + if ui_section.add_func or ui_section.clear_func: + ui_section.widgets.sort(key=lambda x: x.weight) + ui_section.clear_func() + for item in ui_section.widgets: + ui_section.add_func(item.obj, item.name, **(item.args or {})) + else: + log.info("Failed to rebuild unknown ui section: %s", section) + + def register_ui(self, section, name, widget, weight=0, args_dict=None): + if section not in self.ui_sections: + log.info("Tried to register widget for non-existing UI: %s -> %s", name, section) + self.ui_sections[section] = UISection(None, None, []) + current_widgets = [item.obj for item in self.ui_sections[section].widgets] + if (widget is not None) and (widget in current_widgets): + log.info("Tried to register widget twice: %s -> %s", section, name) + return + self.ui_sections[section].widgets.append(UIWidget(name, widget, weight, args_dict)) + self._rebuild_ui_section(section) + + def unregister_ui(self, section, widget): + if (section in self.ui_sections) or (None in self.ui_sections): + if section not in self.ui_sections: + section = None + ui_section = self.ui_sections[section] + removal_list = [] + for index, item in enumerate(ui_section.widgets): + if item.obj == widget: + removal_list.append(index) + removal_list.reverse() + for index in removal_list: + ui_section.widgets.pop(index) + self._rebuild_ui_section(section) + else: + log.info("Trying to unregister unknown ui section: %s", section) + + def register_chain(self, name, func, weight=100): + if name not in self.chains: + self.chains[name] = [] + self.chains[name].append(UIChain(func, weight)) + self.chains[name].sort(key=lambda item: item.weight) + + def unregister_chain(self, name, func): + if name in self.chains: + for index, data in enumerate(self.chains[name]): + if data.func == func: + self.chains[name].pop(index) + break + else: + log.info("Trying to unregister unknown function from %s: %s", name, func) + else: + log.info("Trying to unregister from unknown chain: %s", name) + + def call_chain(self, name, *args, **kwargs): + if name in self.chains: + for data in self.chains[name]: + data.func(*args, **kwargs) + else: + # this may happen during startup + log.debug("Called an unknown chain: %s", name) + + def reset_state(self): + pass + + def register_namespace(self, name, value): + if name in self.namespace: + log.info("Trying to register the same key in namespace twice: %s", name) + self.namespace[name] = value + + def unregister_namespace(self, name): + if name not in self.namespace: + log.info("Tried to unregister an unknown name from namespace: %s", name) + + def get_namespace(self): + return self.namespace diff --git a/pycam/pycam/Utils/iterators.py b/pycam/pycam/Utils/iterators.py new file mode 100644 index 00000000..c592e3be --- /dev/null +++ b/pycam/pycam/Utils/iterators.py @@ -0,0 +1,139 @@ +""" +Copyright 2008 Lode Leroy + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + + +class Iterator: + def __init__(self, seq, start=0): + self.seq = seq + self.ind = start + + def __next__(self): + if self.ind >= len(self.seq): + return None + else: + item = self.seq[self.ind] + self.ind += 1 + return item + + def insert_before(self, item): + self.seq.insert(self.ind - 1, item) + self.ind += 1 + + def insert(self, item): + self.seq.insert(self.ind, item) + self.ind += 1 + + def replace(self, item_old, item_new): + for i in range(len(self.seq)): + if self.seq[i] == item_old: + self.seq[i] = item_new + + def remove(self, item): + for i in range(len(self.seq)): + if self.seq[i] == item: + del self.seq[i] + if i < self.ind: + self.ind -= 1 + return + + def take_next(self): + if self.ind >= len(self.seq): + return None + else: + return self.seq.pop(self.ind) + + def copy(self): + return Iterator(self.seq, self.ind) + + def peek(self, i=0): + if self.ind + i >= len(self.seq): + return None + else: + return self.seq[self.ind + i] + + def remains(self): + return len(self.seq) - self.ind + + +class CyclicIterator: + def __init__(self, seq, start=0): + self.seq = seq + self.ind = start + self.count = len(seq) + + def __next__(self): + item = self.seq[self.ind] + self.ind += 1 + if self.ind == len(self.seq): + self.ind = 0 + return item + + def copy(self): + return CyclicIterator(self.seq, self.ind) + + def peek(self, i=0): + idx = self.ind + i + while idx >= len(self.seq): + idx -= len(self.seq) + return self.seq[idx] + + +if __name__ == "__main__": + values = [1, 2, 4, 6] + print("l=", values) + i = Iterator(values) + print(i.peek()) + while True: + val = next(i) + if val is None: + break + if val == 4: + i.insert_before(3) + i.insert(5) + + print("l=", values) + i = Iterator(values) + print("peek(0)=", i.peek(0)) + print("peek(1)=", i.peek(1)) + print("i.next()=", next(i)) + print("peek(0)=", i.peek(0)) + print("peek(1)=", i.peek(1)) + + print("remains=", i.remains()) + + print("l=", values) + sum_value = 0 + i = CyclicIterator(values) + print("cycle :"), + while sum_value < 30: + val = next(i) + print(val), + sum_value += val + print("=", sum_value) + + i = Iterator(values) + print("l=", values) + next(i) + next(i) + print("next,next : ", i.peek()) + i.remove(2) + print("remove(2) : ", i.peek()) + i.remove(4) + print("remove(4) : ", i.peek()) + print("l=", values) diff --git a/pycam/pycam/Utils/locations.py b/pycam/pycam/Utils/locations.py new file mode 100644 index 00000000..0f0c76c2 --- /dev/null +++ b/pycam/pycam/Utils/locations.py @@ -0,0 +1,188 @@ +""" +Copyright 2010-2018 Lars Kruse + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + +import contextlib +import os +import sys +import tempfile + +import pycam.Utils +import pycam.Utils.log + + +APP_NAME = "pycam" +DATA_DIR_ENVIRON_KEY = "PYCAM_DATA_DIR" +FONT_DIR_ENVIRON_KEY = "PYCAM_FONT_DIR" + +# this directory represents the base of the development tree +PROJECT_BASE_DIR = os.path.realpath(os.path.join(os.path.dirname(os.path.realpath(__file__)), + os.pardir, os.pardir)) +# necessary for "pyinstaller" +if "_MEIPASS2" in os.environ: + PROJECT_BASE_DIR = os.path.normpath(os.environ["_MEIPASS2"]) + +# lookup list of directories for UI files, fonts, ... +DATA_BASE_DIRS = [os.path.join(PROJECT_BASE_DIR, "share"), + os.path.join(PROJECT_BASE_DIR, "share", APP_NAME), + os.path.join(sys.prefix, "local", "share", APP_NAME), + os.path.join(sys.prefix, "share", APP_NAME), '.'] +FONTS_SUBDIR = "fonts" +UI_SUBDIR = "ui" + +# respect an override via environment settings +if DATA_DIR_ENVIRON_KEY in os.environ: + DATA_BASE_DIRS.insert(0, os.path.normpath(os.environ[DATA_DIR_ENVIRON_KEY])) +if FONT_DIR_ENVIRON_KEY in os.environ: + FONT_DIR_OVERRIDE = os.path.normpath(os.environ[FONT_DIR_ENVIRON_KEY]) +else: + FONT_DIR_OVERRIDE = None +FONT_DIRS_FALLBACK = ["/usr/share/librecad/fonts", "/usr/share/qcad/fonts"] + + +log = pycam.Utils.log.get_logger() + + +def get_ui_file_location(filename, silent=False): + return get_data_file_location(os.path.join(UI_SUBDIR, filename), silent=silent) + + +def get_data_file_location(filename, silent=False, priority_directories=None): + if priority_directories is None: + scan_dirs = DATA_BASE_DIRS + else: + scan_dirs = tuple(priority_directories) + tuple(DATA_BASE_DIRS) + for base_dir in scan_dirs: + test_path = os.path.join(base_dir, filename) + if os.path.exists(test_path): + return test_path + if not silent: + log.error("Failed to locate a resource file (%s) in %s! " + "You can extend the search path by setting the environment variable '%s'.", + filename, DATA_BASE_DIRS, str(DATA_DIR_ENVIRON_KEY)) + return None + + +def get_font_dir(): + if FONT_DIR_OVERRIDE: + if os.path.isdir(FONT_DIR_OVERRIDE): + return FONT_DIR_OVERRIDE + else: + log.warn("You specified a font dir that does not exist (%s). I will ignore it.", + FONT_DIR_OVERRIDE) + font_dir = get_data_file_location(FONTS_SUBDIR, silent=True) + if font_dir is not None: + return font_dir + else: + log.warn("Failed to locate the fonts directory '%s' below '%s'. Falling back to '%s'.", + FONTS_SUBDIR, DATA_BASE_DIRS, ":".join(FONT_DIRS_FALLBACK)) + for font_dir_fallback in FONT_DIRS_FALLBACK: + if os.path.isdir(font_dir_fallback): + return font_dir_fallback + log.warn("None of the fallback font directories (%s) exist. No fonts will be available.", + ":".join(FONT_DIRS_FALLBACK)) + return None + + +def get_external_program_location(key): + extensions = ["", ".exe"] + potential_names = ["%s%s" % (key, ext) for ext in extensions] + windows_program_directories = {'inkscape': ['Inkscape'], 'pstoedit': ['pstoedit']} + # check the windows path via win32api + try: + import win32api + location = win32api.FindExecutable(key)[1] + if location: + return location + except Exception: + # Wildcard (non-system exiting) exception to match "ImportError" and + # "pywintypes.error" (for "not found"). + pass + # go through the PATH environment variable + if "PATH" in os.environ: + path_env = os.environ["PATH"] + for one_dir in path_env.split(os.pathsep): + for basename in potential_names: + location = os.path.join(one_dir, basename) + if os.path.isfile(location): + return location + # do a manual scan in the programs directory (only for windows) + program_dirs = ["C:\\Program Files", "C:\\Programme"] + try: + from win32com.shell import shellcon, shell + # The frozen application somehow does not provide this setting. + program_dirs.insert(0, shell.SHGetFolderPath(0, shellcon.CSIDL_PROGRAM_FILES, 0, 0)) + except ImportError: + # no other options for non-windows systems + pass + # scan the program directory + for program_dir in program_dirs: + for sub_dir in windows_program_directories[key]: + for basename in potential_names: + location = os.path.join(program_dir, sub_dir, basename) + if os.path.isfile(location): + return location + # nothing found + return None + + +def get_all_program_locations(core): + # TODO: this should move to a plugin + # import all external program locations into a dict + program_locations = {} + prefix = "external_program_" + for key in core: + if key.startswith(prefix) and core[key]: + program_locations[key[len(prefix):]] = core[key] + return program_locations + + +@contextlib.contextmanager +def open_file_context(filename, mode, is_text): + if isinstance(filename, pycam.Utils.URIHandler): + filename = filename.get_path() + if filename is None: + raise OSError("missing filename") + if mode == "r": + opened_file = open(filename, "r") + elif mode == "w": + handle, temp_filename = tempfile.mkstemp(prefix=os.path.basename(filename) + ".", + dir=os.path.dirname(filename), text=is_text) + opened_file = os.fdopen(handle, mode=mode) + else: + raise ValueError("Invalid 'mode' given: {}".format(mode)) + try: + yield opened_file + finally: + opened_file.close() + if mode == "w": + os.rename(temp_filename, filename) + + +@contextlib.contextmanager +def create_named_temporary_file(suffix=None): + file_handle, filename = tempfile.mkstemp(suffix=".dxf") + os.close(file_handle) + try: + yield filename + finally: + if os.path.isfile(filename): + try: + os.remove(filename) + except OSError as exc: + log.warn("Failed to remove temporary file (%s): %s", filename, exc) diff --git a/pycam/pycam/Utils/log.py b/pycam/pycam/Utils/log.py new file mode 100644 index 00000000..5fd1af47 --- /dev/null +++ b/pycam/pycam/Utils/log.py @@ -0,0 +1,198 @@ +""" +Copyright 2010 Lars Kruse + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + +import logging +import time + + +def is_debug(): + log = get_logger() + return log.level <= logging.DEBUG + + +def get_logger(suffix=None): + name = "PyCAM" + if suffix: + name += ".%s" % str(suffix) + logger = logging.getLogger(name) + if len(logger.handlers) == 0: + init_logger(logger) + return logger + + +def init_logger(log, logfilename=None): + if logfilename: + datetime_format = "%(asctime)s - %(name)s - %(levelname)s - %(message)s" + logfile_handler = logging.FileHandler(logfilename) + logfile_handler.setFormatter(datetime_format) + logfile_handler.addFilter(RepetitionsFilter(logfile_handler, log)) + log.addHandler(logfile_handler) + console_output = logging.StreamHandler() + console_output.addFilter(RepetitionsFilter(console_output, log)) + log.addHandler(console_output) + log.setLevel(logging.INFO) + log.debug2 = lambda *args, **kwargs: log.log(logging.DEBUG - 1, *args, **kwargs) + # store the latest log items in a queue (for pushing them into new handlers) + buffer_handler = BufferHandler() + buffer_handler.addFilter(RepetitionsFilter(buffer_handler, log)) + log.addHandler(buffer_handler) + + +def _push_back_old_logs(new_handler): + log = get_logger() + # push all older log items into the new handler + for handler in log.handlers: + if hasattr(handler, "push_back"): + handler.push_back(new_handler) + + +def add_stream(stream, level=None): + log = get_logger() + logstream = logging.StreamHandler(stream) + if level is not None: + logstream.setLevel(level) + logstream.addFilter(RepetitionsFilter(logstream, log)) + log.addHandler(logstream) + _push_back_old_logs(logstream) + + +def add_hook(callback, level=None): + log = get_logger() + loghook = HookHandler(callback) + if level is not None: + loghook.setLevel(level) + loghook.addFilter(RepetitionsFilter(loghook, log)) + log.addHandler(loghook) + _push_back_old_logs(loghook) + + +def add_gtk_gui(parent_window, level=None): + log = get_logger() + loggui = GTKHandler(parent_window) + if level is not None: + loggui.setLevel(level) + loggui.addFilter(RepetitionsFilter(loggui, log)) + log.addHandler(loggui) + _push_back_old_logs(loggui) + + +class RepetitionsFilter(logging.Filter): + + def __init__(self, handler, logger, **kwargs): + logging.Filter.__init__(self, **kwargs) + self._logger = logger + self._last_timestamp = 0 + self._last_record = None + # Every handler needs its own "filter" instance - this is not really + # a clean style. + self._handler = handler + self._suppressed_messages_counter = 0 + self._cmp_len = 30 + self._delay = 3 + + def filter(self, record): + now = time.time() + if self._logger.getEffectiveLevel() <= logging.DEBUG: + # skip only identical lines in debug mode + message_equal = (self._last_record + and (record.getMessage() == self._last_record.getMessage())) + similarity = "identical" + else: + # skip similar lines in non-debug modes + message_equal = self._last_record and record.getMessage().startswith( + self._last_record.getMessage()[:self._cmp_len]) + similarity = "similar" + if not is_debug() and (message_equal and (now - self._last_timestamp <= self._delay)): + self._suppressed_messages_counter += 1 + return False + else: + if self._suppressed_messages_counter > 0: + # inject a message regarding the previously suppressed messages + self._last_record.msg = "*** skipped %d %s message(s) ***" + self._last_record.args = (self._suppressed_messages_counter, similarity) + self._handler.emit(self._last_record) + self._last_record = record + self._last_timestamp = now + self._suppressed_messages_counter = 0 + return True + + +class BufferHandler(logging.Handler): + + MAX_LENGTH = 100 + + def __init__(self, **kwargs): + logging.Handler.__init__(self, **kwargs) + self.record_buffer = [] + + def emit(self, record): + self.record_buffer.append(record) + # reduce the record_buffer queue if necessary + while len(self.record_buffer) > self.MAX_LENGTH: + self.record_buffer.pop(0) + + def push_back(self, other_handler): + for record in self.record_buffer: + if record.levelno >= other_handler.level: + other_handler.emit(record) + + +class GTKHandler(logging.Handler): + + def __init__(self, parent_window=None, **kwargs): + logging.Handler.__init__(self, **kwargs) + self.parent_window = parent_window + + def emit(self, record): + message = self.format(record) + # Replace all "<>" characters (invalid for markup styles) with html entities. + message = message.replace("<", "<").replace(">", ">") + from gi.repository import Gtk + if record.levelno <= 20: + message_type = Gtk.MessageType.INFO + message_title = "Information" + elif record.levelno <= 30: + message_type = Gtk.MessageType.WARNING + message_title = "Warning" + else: + message_type = Gtk.MessageType.ERROR + message_title = "Error" + window = Gtk.MessageDialog(self.parent_window, type=message_type, + buttons=Gtk.ButtonsType.OK) + window.set_markup(str(message)) + window.set_title(message_title) + # make sure that the window gets destroyed later + for signal in ("close", "response"): + window.connect(signal, lambda dialog, *args: dialog.destroy()) + # accept "destroy" action -> remove window + window.connect("destroy", lambda *args: True) + # show the window, but don't wait for a response + window.show() + + +class HookHandler(logging.Handler): + + def __init__(self, callback, **kwargs): + logging.Handler.__init__(self, **kwargs) + self.callback = callback + + def emit(self, record): + message = self.format(record) + message_type = record.levelname + self.callback(message_type, message, record=record) diff --git a/pycam/pycam/Utils/polynomials.py b/pycam/pycam/Utils/polynomials.py new file mode 100644 index 00000000..5283a31c --- /dev/null +++ b/pycam/pycam/Utils/polynomials.py @@ -0,0 +1,242 @@ +""" +Copyright 2008 Lode Leroy + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + +import math + +from pycam.Geometry import sqrt + + +# see BRL-CAD/src/libbn/poly.c +EPSILON = 1e-4 +SMALL = 1e-4 +INV_2 = 0.5 +INV_3 = 1.0 / 3.0 +INV_4 = 0.25 +INV_27 = 1.0 / 27.0 +SQRT3 = sqrt(3.0) +PI_DIV_3 = math.pi / 3.0 + + +def near_zero(x, epsilon=EPSILON): + return abs(x) < epsilon + + +def cuberoot(x): + if x >= 0: + return pow(x, INV_3) + else: + return -pow(-x, INV_3) + + +def poly1_roots(a, b): + if near_zero(a): + return None + else: + return (-b / a, ) + + +def poly2_roots(a, b, c): + d = b * b - 4 * a * c + if d < 0: + return None + if near_zero(a): + return poly1_roots(b, c) + if d == 0: + return (-b / (2 * a), ) + q = sqrt(d) + if a < 0: + return ((-b + q) / (2 * a), (-b - q) / (2 * a)) + else: + return ((-b - q) / (2 * a), (-b + q) / (2 * a)) + + +def poly3_roots(a, b, c, d): + if near_zero(a): + return poly2_roots(b, c, d) + c1 = b / a + c2 = c / a + c3 = d / a + + c1_3 = c1 * INV_3 + a = c2 - c1 * c1_3 + b = (2 * c1 * c1 * c1 - 9 * c1 * c2 + 27 * c3) * INV_27 + delta = a * a + delta = b * b * INV_4 + delta * a * INV_27 + if delta > 0: + r_delta = sqrt(delta) + v_major_p3 = -INV_2 * b + r_delta + v_minor_p3 = -INV_2 * b - r_delta + v_major = cuberoot(v_major_p3) + v_minor = cuberoot(v_minor_p3) + return (v_major + v_minor - c1_3, ) + elif delta == 0: + b_2 = -b * INV_2 + s = cuberoot(b_2) + return (2 * s - c1_3, -s - c1_3, -s - c1_3, ) + else: + if a > 0: + fact = 0 + phi = 0 + cs_phi = 1.0 + sn_phi_s3 = 0.0 + else: + a *= -INV_3 + fact = sqrt(a) + f = -b * INV_2 / (a * fact) + if f >= 1.0: + phi = 0 + cs_phi = 1.0 + sn_phi_s3 = 0.0 + elif f <= -1.0: + phi = PI_DIV_3 + cs_phi = math.cos(phi) + sn_phi_s3 = math.sin(phi) * SQRT3 + else: + phi = math.acos(f) * INV_3 + cs_phi = math.cos(phi) + sn_phi_s3 = math.sin(phi) * SQRT3 + r1 = 2 * fact * cs_phi + r2 = fact * (sn_phi_s3 - cs_phi) + r3 = fact * (-sn_phi_s3 - cs_phi) + return (r1 - c1_3, r2 - c1_3, r3 - c1_3) + + +def poly4_roots(a, b, c, d, e): + if a == 0: + return poly3_roots(b, c, d, e) + c1 = float(b) / a + c2 = float(c) / a + c3 = float(d) / a + c4 = float(e) / a + roots3 = poly3_roots(1.0, -c2, c3 * c1 - 4 * c4, -c3 * c3 - c4 * c1 * c1 + 4 * c4 * c2) + if not roots3: + return None + if len(roots3) == 1: + u = roots3[0] + else: + u = max(roots3[0], roots3[1], roots3[2]) + p = c1 * c1 * INV_4 + u - c2 + u *= INV_2 + q = u * u - c4 + if p < 0: + if p < -SMALL: + return None + p = 0 + else: + p = sqrt(p) + if q < 0: + if q < -SMALL: + return None + q = 0 + else: + q = sqrt(q) + + quad1 = [1.0, c1 * INV_2 - p, 0] + quad2 = [1.0, c1 * INV_2 + p, 0] + + q1 = u - q + q2 = u + q + p = quad1[1] * q2 + quad2[1] * q1 - c3 + if near_zero(p): + quad1[2] = q1 + quad2[2] = q2 + else: + q = quad1[1] * q1 + quad2[1] * q2 - c3 + if near_zero(q): + quad1[2] = q2 + quad2[2] = q1 + else: + return None + roots1 = poly2_roots(quad1[0], quad1[1], quad1[2]) + roots2 = poly2_roots(quad2[0], quad2[1], quad2[2]) + if roots1 and roots2: + return roots1 + roots2 + elif roots1: + return roots1 + elif roots2: + return roots2 + else: + return None + + +def test_poly1(a, b): + roots = poly1_roots(a, b) + print(a, "*x+", b, "=0 ", roots) + if roots: + for r in roots: + f = a * r + b + if not near_zero(f): + print("ERROR:"), + print(" f(%f)=%f" % (r, f)) + + +def test_poly2(a, b, c): + roots = poly2_roots(a, b, c) + print(a, "*x^2+", b, "*x+", c, "=0 ", roots) + if roots: + for r in roots: + f = a * r * r + b * r + c + if not near_zero(f): + print("ERROR:"), + print(" f(%f)=%f" % (r, f)) + + +def test_poly3(a, b, c, d): + roots = poly3_roots(a, b, c, d) + print(a, "*x^3+", b, "*x^2+", c, "*x+", d, "=0 ", roots) + if roots: + for r in roots: + f = a * r * r * r + b * r * r + c * r + d + if not near_zero(f): + print("ERROR:"), + print(" f(%f)=%f" % (r, f)) + + +def test_poly4(a, b, c, d, e): + roots = poly4_roots(a, b, c, d, e) + print("f(x)=%g*x**4%+g*x**3%+g*x**2%+g*x%+g" % (a, b, c, d, e)) + print("roots:", roots) + if roots: + for r in roots: + f = a * r * r * r * r + b * r * r * r + c * r * r + d * r + e + if not near_zero(f, epsilon=SMALL): + print("ERROR:"), + print(" f(%f)=%f" % (r, f)) + return roots + + +if __name__ == "__main__": + test_poly1(1, 2) + + test_poly2(1, 2, 0) + test_poly2(1, 2, 1) + test_poly2(1, 2, 2) + + test_poly3(1, 0, 0, 0) + test_poly3(1, 0, 0, -1) + test_poly3(1, -1, 0, 0) + test_poly3(1, 0, -2, 0) + test_poly3(1, 0, -2, 1) + + test_poly4(1, 0, 0, 0, 0) + test_poly4(1, 0, 0, 0, -1) + test_poly4(1, 0, -2, 0, 1) + test_poly4(1, -10, 35, -50, +24) + test_poly4(1, 0, 6, -60, 36) + test_poly4(1, -25, 235.895, -995.565, 1585.25) diff --git a/pycam/pycam/Utils/progress.py b/pycam/pycam/Utils/progress.py new file mode 100644 index 00000000..e3a354a3 --- /dev/null +++ b/pycam/pycam/Utils/progress.py @@ -0,0 +1,39 @@ +from pycam.Utils.events import get_event_handler, get_mainloop + + +class ProgressContext: + + def __init__(self, title): + self._title = title + self._progress = get_event_handler().get("progress") + + def __enter__(self): + if self._progress: + self._progress.update(text=self._title, percent=0) + # start an indefinite pulse (until we receive more details) + self._progress.update() + else: + self._progress = None + return self + + def __exit__(self, exc_type, exc_value, traceback): + if self._progress: + self._progress.finish() + + def update(self, *args, **kwargs): + mainloop = get_mainloop() + if mainloop is None: + return False + mainloop.update() + if self._progress: + return self._progress.update(*args, **kwargs) + else: + return False + + def set_multiple(self, count, base_text=None): + if self._progress: + self._progress.set_multiple(count, base_text=base_text) + + def update_multiple(self): + if self._progress: + self._progress.update_multiple() diff --git a/pycam/pycam/Utils/rootsolver.py b/pycam/pycam/Utils/rootsolver.py new file mode 100644 index 00000000..fbdb999d --- /dev/null +++ b/pycam/pycam/Utils/rootsolver.py @@ -0,0 +1,61 @@ +""" +Copyright 2008 Lode Leroy + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + + +def find_root_subdivide(f, x0, x1, tolerance, scale): + ymin = 0 + xmin = 0 + while x1 - x0 > tolerance: + for i in range(scale): + x = x1 + (i / scale) * (x1 - x0) + y = f(x) + abs_y = abs(y) + if i == 0: + ymin = abs_y + xmin = x + else: + if abs_y < ymin: + ymin = abs_y + xmin = x + x0 = xmin - 1 / scale + x1 = xmin + 1 / scale + scale /= 10 + return xmin + + +def find_root_newton_raphson(f, df, x0, tolerance, maxiter): + x = x0 + iter_count = 0 + while iter_count < maxiter: + y = f(x) + if y == 0: + return x + dy = df(x) + if dy == 0: + return None + dx = y / dy + x = x - dx + if dx < tolerance: + break + iter_count += 1 + return x + + +def find_root(f, df=None, x0=0, x1=1, tolerance=0.001): + return find_root_subdivide(f=f, x0=x0, x1=x1, tolerance=tolerance, scale=10.0) diff --git a/pycam/pycam/Utils/threading.py b/pycam/pycam/Utils/threading.py new file mode 100644 index 00000000..a6e29542 --- /dev/null +++ b/pycam/pycam/Utils/threading.py @@ -0,0 +1,871 @@ +""" +Copyright 2010 Lars Kruse + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + +# multiprocessing is imported later +# import multiprocessing +import os +import platform +import queue +import random +import signal +import socket +import sys +import time +import uuid + +from pycam.errors import CommunicationError +import pycam.Utils +import pycam.Utils.log +log = pycam.Utils.log.get_logger() + + +try: + from multiprocessing.managers import SyncManager as _SyncManager +except ImportError as msg: + log.debug("Failed to import multiprocessing.managers.SyncMananger: %s", msg) +else: + # this class definition needs to be at the top level - for pyinstaller + class TaskManager(_SyncManager): + @classmethod + def _run_server(cls, *args): + # make sure that the server ignores SIGINT (KeyboardInterrupt) + signal.signal(signal.SIGINT, signal.SIG_IGN) + # prevent connection errors to trigger exceptions + try: + _SyncManager._run_server(*args) + except socket.error: + pass + +DEFAULT_PORT = 1250 + + +# TODO: create one or two classes for these functions (to get rid of the globals) + +# possible values: +# None: not initialized +# False: no threading +# multiprocessing: the multiprocessing module is imported and enabled later +__multiprocessing = None + +# needs to be initialized, if multiprocessing is enabled +__num_of_processes = None + +__manager = None +__closing = None +__task_source_uuid = None +__finished_jobs = [] +__issued_warnings = [] + + +def run_in_parallel(*args, **kwargs): + global __manager + if __manager is None: + if pycam.Utils.log.is_debug(): + # force serial processing in debug mode + kwargs = dict(kwargs) + kwargs["disable_multiprocessing"] = True + return run_in_parallel_local(*args, **kwargs) + else: + return run_in_parallel_remote(*args, **kwargs) + + +def is_pool_available(): + return __manager is not None + + +def is_multiprocessing_available(): + if (pycam.Utils.get_platform() == pycam.Utils.OSPlatform.WINDOWS) and \ + hasattr(sys, "frozen") and sys.frozen: + return False + try: + import multiprocessing + # try to initialize a semaphore - this can trigger shm access failures + # (e.g. on Debian Lenny with Python 2.6.6) + multiprocessing.Semaphore() + return True + except ImportError: + if "missing_module" not in __issued_warnings: + log.info("Python's multiprocessing module is missing: disabling parallel processing") + __issued_warnings.append("missing_module") + except OSError: + if "shm_access_failed" not in __issued_warnings: + log.info("Python's multiprocessing module failed to acquire read/write access to " + "shared memory (shm) - disabling parallel processing") + __issued_warnings.append("shm_access_failed") + return False + + +def is_multiprocessing_enabled(): + return bool(__multiprocessing) + + +def is_server_mode_available(): + # the following definition should be kept in sync with the documentation in + # docs/parallel-processing.md + return is_multiprocessing_available() + + +def get_number_of_processes(): + if __num_of_processes is None: + return 1 + else: + return __num_of_processes + + +def get_number_of_cores(): + try: + import multiprocessing + return multiprocessing.cpu_count() + except ImportError: + return None + + +def get_pool_statistics(): + global __manager + if __manager is None: + return [] + else: + return __manager.statistics().get_worker_statistics() + + +def get_task_statistics(): + global __manager + result = {} + if __manager is not None: + try: + result["tasks"] = __manager.tasks().qsize() + result["results"] = __manager.results().qsize() + except NotImplementedError: + # this can happen on MacOS (see multiprocessing doc) + pass + result["pending"] = __manager.pending_tasks().length() + result["cache"] = __manager.cache().length() + return result + + +class ManagerInfo: + """ this separate class allows proper pickling for "multiprocesssing" + """ + + def __init__(self, tasks, results, stats, cache, pending): + self.tasks_queue = tasks + self.results_queue = results + self.statistics = stats + self.cache = cache + self.pending_tasks = pending + + def get_tasks_queue(self): + return self.tasks_queue + + def get_results_queue(self): + return self.results_queue + + def get_statistics(self): + return self.statistics + + def get_cache(self): + return self.cache + + def get_pending_tasks(self): + return self.pending_tasks + + +def init_threading(number_of_processes=None, enable_server=False, remote=None, run_server=False, + server_credentials="", local_port=DEFAULT_PORT): + global __multiprocessing, __num_of_processes, __manager, __closing, __task_source_uuid + if __multiprocessing: + # kill the manager and clean everything up for a re-initialization + cleanup() + if (not is_server_mode_available()) and (enable_server or run_server): + # server mode is disabled for the Windows pyinstaller standalone + # due to "pickle errors". How to reproduce: run the standalone binary + # with "--enable-server --server-auth-key foo". + feature_matrix_text = ("Take a look at the wiki for a matrix of platforms and available " + "features: http://pycam.sourceforge.net/parallel-processing") + if enable_server: + log.warn("Unable to enable server mode with your current setup.\n%s", + feature_matrix_text) + elif run_server: + log.warn("Unable to run in server-only mode with the Windows standalone " + "executable.\n%s", feature_matrix_text) + else: + # no further warnings required + pass + enable_server = False + run_server = False + # only local -> no server settings allowed + if (not enable_server) and (not run_server): + remote = None + run_server = None + server_credentials = "" + if not is_multiprocessing_available(): + __multiprocessing = False + # Maybe a multiprocessing feature was explicitly requested? + # Issue some warnings if necessary. + multiprocessing_missing_text = ( + "Failed to enable server mode due to a lack of 'multiprocessing' capabilities. Please " + "use Python2.6 or install the 'python-multiprocessing' package.") + if enable_server: + log.warn("Failed to enable server mode due to a lack of 'multiprocessing' " + "capabilities. %s", multiprocessing_missing_text) + elif run_server: + log.warn("Failed to run in server-only mode due to a lack of 'multiprocessing' " + "capabilities. %s", multiprocessing_missing_text) + else: + # no further warnings required + pass + else: + import multiprocessing + if number_of_processes is None: + # use defaults + # don't enable threading for a single cpu + if (multiprocessing.cpu_count() > 1) or remote or run_server or enable_server: + __multiprocessing = multiprocessing + __num_of_processes = multiprocessing.cpu_count() + else: + __multiprocessing = False + elif (number_of_processes < 1) and (remote is None) and (enable_server is None): + # Zero processes are allowed if we use a remote server or offer a + # server. + __multiprocessing = False + else: + __multiprocessing = multiprocessing + __num_of_processes = number_of_processes + # initialize the manager + if not __multiprocessing: + __manager = None + log.info("Disabled parallel processing") + elif not enable_server and not run_server: + __manager = None + log.info("Enabled %d parallel local processes", __num_of_processes) + else: + # with multiprocessing + log.info("Enabled %d parallel local processes", __num_of_processes) + log.info("Allow remote processing") + # initialize the uuid list for all workers + worker_uuid_list = [str(uuid.uuid1()) for index in range(__num_of_processes)] + __task_source_uuid = str(uuid.uuid1()) + if remote is None: + # try to guess an appropriate interface for binding + if pycam.Utils.get_platform() == pycam.Utils.OSPlatform.WINDOWS: + # Windows does not support a wildcard interface listener + all_ips = pycam.Utils.get_all_ips() + if all_ips: + address = (all_ips[0], local_port) + log.info("Binding to local interface with IP %s", str(all_ips[0])) + else: + raise CommunicationError("Failed to find any local IP") + else: + # empty hostname -> wildcard interface + # (this does not work with Windows - see above) + address = ('', local_port) + else: + if ":" in remote: + host, port = remote.split(":", 1) + try: + port = int(port) + except ValueError: + log.warning("Invalid port specified: '%s' - using default port (%d) instead", + port, DEFAULT_PORT) + port = DEFAULT_PORT + else: + host = remote + port = DEFAULT_PORT + address = (host, port) + if remote is None: + tasks_queue = multiprocessing.Queue() + results_queue = multiprocessing.Queue() + statistics = ProcessStatistics() + cache = ProcessDataCache() + pending_tasks = PendingTasks() + info = ManagerInfo(tasks_queue, results_queue, statistics, cache, pending_tasks) + TaskManager.register("tasks", callable=info.get_tasks_queue) + TaskManager.register("results", callable=info.get_results_queue) + TaskManager.register("statistics", callable=info.get_statistics) + TaskManager.register("cache", callable=info.get_cache) + TaskManager.register("pending_tasks", callable=info.get_pending_tasks) + else: + TaskManager.register("tasks") + TaskManager.register("results") + TaskManager.register("statistics") + TaskManager.register("cache") + TaskManager.register("pending_tasks") + __manager = TaskManager(address=address, authkey=server_credentials) + # run the local server, connect to a remote one or begin serving + try: + if remote is None: + __manager.start() + log.info("Started a local server.") + else: + __manager.connect() + log.info("Connected to a remote task server.") + except (multiprocessing.AuthenticationError, socket.error) as err_msg: + __manager = None + return err_msg + except EOFError: + __manager = None + raise CommunicationError("Failed to bind to socket for unknown reasons") + # create the spawning process + __closing = __manager.Value("b", False) + if __num_of_processes > 0: + # only start the spawner, if we want to use local workers + spawner = __multiprocessing.Process(name="spawn", target=_spawn_daemon, + args=(__manager, __num_of_processes, + worker_uuid_list)) + spawner.start() + else: + spawner = None + # wait forever - in case of a server + if run_server: + log.info("Running a local server and waiting for remote connections.") + # the server can be stopped via CTRL-C - it is caught later + if spawner is not None: + spawner.join() + + +def cleanup(): + global __multiprocessing, __manager, __closing + if __multiprocessing and __closing: + log.debug("Shutting down process handler") + try: + __closing.set(True) + except (IOError, EOFError): + log.debug("Connection to manager lost during cleanup") + # Only managers that were started via ".start()" implement a "shutdown". + # Managers started via ".connect" may skip this. + if hasattr(__manager, "shutdown"): + # wait for the spawner and the worker threads to go down + time.sleep(2.5) + # __manager.shutdown() + time.sleep(0.1) + # check if it is still alive and kill it if necessary + if __manager._process.is_alive(): + __manager._process.terminate() + __manager = None + __closing = None + __multiprocessing = None + + +def _spawn_daemon(manager, number_of_processes, worker_uuid_list): + """ wait for items in the 'tasks' queue to appear and then spawn workers + """ + global __multiprocessing, __closing + tasks = manager.tasks() + results = manager.results() + stats = manager.statistics() + cache = manager.cache() + pending_tasks = manager.pending_tasks() + log.debug("Spawner daemon started with %d processes", number_of_processes) + log.debug("Registering %d worker threads: %s", len(worker_uuid_list), worker_uuid_list) + last_cache_update = time.time() + # use only the hostname (for brevity) - no domain part + hostname = platform.node().split(".", 1)[0] + try: + while not __closing.get(): + # check the expire timeout of the cache from time to time + if last_cache_update + 30 < time.time(): + cache.expire_cache_items() + last_cache_update = time.time() + if not tasks.empty(): + workers = [] + for task_id in worker_uuid_list: + task_name = "%s-%s" % (hostname, task_id) + worker = __multiprocessing.Process(name=task_name, target=_handle_tasks, + args=(tasks, results, stats, cache, + pending_tasks, __closing)) + worker.start() + workers.append(worker) + # wait until all workers are finished + for worker in workers: + worker.join() + else: + time.sleep(1.0) + except KeyboardInterrupt: + log.info("Spawner daemon killed by keyboard interrupt") + # set the "closing" flag and just exit + try: + __closing.set(True) + except (IOError, EOFError): + pass + except (IOError, EOFError): + # the connection was closed + log.info("Spawner daemon lost connection to server") + + +def _handle_tasks(tasks, results, stats, cache, pending_tasks, closing): + global __multiprocessing + name = __multiprocessing.current_process().name + local_cache = ProcessDataCache() + timeout_limit = 60 + timeout_counter = 0 + last_worker_notification = 0 + log.debug("Worker thread started: %s" % name) + try: + while (timeout_counter < timeout_limit) and not closing.get(): + if last_worker_notification + 30 < time.time(): + stats.worker_notification(name) + last_worker_notification = time.time() + start_time = time.time() + try: + job_id, task_id, func, args = tasks.get(timeout=0.2) + except queue.Empty: + time.sleep(1.8) + timeout_counter += 1 + continue + # TODO: if the client aborts/disconnects between "tasks.get" and + # "pending_tasks.add", the task is lost. We should better use some + # backup. + pending_tasks.add(job_id, task_id, (func, args)) + log.debug("Worker %s processes %s / %s", name, job_id, task_id) + # reset the timeout counter, if we found another item in the queue + timeout_counter = 0 + real_args = [] + for arg in args: + if isinstance(arg, ProcessDataCacheItemID): + try: + value = local_cache.get(arg) + except KeyError: + # TODO: we will break hard, if the item is expired + value = cache.get(arg) + local_cache.add(arg, value) + real_args.append(value) + elif isinstance(arg, list) and [True for item in arg + if isinstance(item, ProcessDataCacheItemID)]: + # check if any item in the list is cacheable + args_list = [] + for item in arg: + if isinstance(item, ProcessDataCacheItemID): + try: + value = local_cache.get(item) + except KeyError: + value = cache.get(item) + local_cache.add(item, value) + args_list.append(value) + else: + args_list.append(item) + real_args.append(args_list) + else: + real_args.append(arg) + stats.add_transfer_time(name, time.time() - start_time) + start_time = time.time() + results.put((job_id, task_id, func(real_args))) + pending_tasks.remove(job_id, task_id) + stats.add_process_time(name, time.time() - start_time) + except KeyboardInterrupt: + pass + log.debug("Worker thread finished after %d seconds of inactivity: %s", timeout_counter, name) + + +def run_in_parallel_remote(func, args_list, unordered=False, disable_multiprocessing=False, + callback=None): + global __multiprocessing, __num_of_processes, __manager, __task_source_uuid, __finished_jobs + if __multiprocessing is None: + # threading was not configured before + init_threading() + if __multiprocessing and not disable_multiprocessing: + job_id = str(uuid.uuid1()) + log.debug("Starting parallel tasks: %s", job_id) + tasks_queue = __manager.tasks() + results_queue = __manager.results() + remote_cache = __manager.cache() + stats = __manager.statistics() + pending_tasks = __manager.pending_tasks() + # add all tasks of this job to the queue + for index, args in enumerate(args_list): + if callback: + callback() + start_time = time.time() + result_args = [] + for arg in args: + # add the argument to the cache if possible + if hasattr(arg, "uuid"): + data_uuid = ProcessDataCacheItemID(arg.uuid) + if not remote_cache.contains(data_uuid): + log.debug("Adding cache item for job %s: %s - %s", + job_id, arg.uuid, arg.__class__) + remote_cache.add(data_uuid, arg) + result_args.append(data_uuid) + elif isinstance(arg, (list, set, tuple)): + # a list with - maybe containing cacheable items + new_arg_list = [] + for item in arg: + try: + data_uuid = ProcessDataCacheItemID(item.uuid) + except AttributeError: + # non-cacheable item + new_arg_list.append(item) + continue + if not remote_cache.contains(data_uuid): + log.debug("Adding cache item from list for job %s: %s - %s", + job_id, item.uuid, item.__class__) + remote_cache.add(data_uuid, item) + new_arg_list.append(data_uuid) + result_args.append(new_arg_list) + else: + result_args.append(arg) + tasks_queue.put((job_id, index, func, result_args)) + stats.add_queueing_time(__task_source_uuid, time.time() - start_time) + log.debug("Added %d tasks for job %s", len(args_list), job_id) + result_buffer = {} + index = 0 + cancelled = False + # wait for all results of this job + while (index < len(args_list)) and not cancelled: + if callback and callback(): + # cancel requested + cancelled = True + break + # re-inject stale tasks if necessary + stale_task = pending_tasks.get_stale_task() + if stale_task: + stale_job_id, stale_task_id = stale_task[:2] + if stale_job_id in __finished_jobs: + log.debug("Throwing away stale task of an old job: %s", stale_job_id) + pending_tasks.remove(stale_job_id, stale_task_id) + elif stale_job_id == job_id: + log.debug("Reinjecting stale task: %s / %s", job_id, stale_task_id) + stale_func, stale_args = stale_task[2] + tasks_queue.put((job_id, stale_task_id, stale_func, stale_args)) + pending_tasks.remove(job_id, stale_task_id) + else: + # non-local task + log.debug("Ignoring stale non-local task: %s / %s", + stale_job_id, stale_task_id) + try: + result_job_id, task_id, result = results_queue.get(timeout=1.0) + except queue.Empty: + time.sleep(1.0) + continue + if result_job_id == job_id: + log.debug("Received the result of a task: %s / %s", job_id, task_id) + try: + if unordered: + # just return the values in any order + yield result + index += 1 + else: + # return the results in order (based on task_id) + if task_id == index: + yield result + index += 1 + while index in result_buffer.keys(): + yield result_buffer[index] + del result_buffer[index] + index += 1 + else: + result_buffer[task_id] = result + except GeneratorExit: + # This exception is triggered when the caller stops + # requesting more items from the generator. + log.debug("Parallel processing cancelled: %s", job_id) + _cleanup_job(job_id, tasks_queue, pending_tasks, __finished_jobs) + # re-raise the GeneratorExit exception to finish destruction + raise + elif result_job_id in __finished_jobs: + # throw away this result of an old job + log.debug("Throwing away one result of an old job: %s", result_job_id) + else: + log.debug("Skipping result of non-local job: %s", result_job_id) + # put the result back to the queue for the next manager + results_queue.put((result_job_id, task_id, result)) + # wait a little bit to get some idle CPU cycles + time.sleep(0.2) + _cleanup_job(job_id, tasks_queue, pending_tasks, __finished_jobs) + if cancelled: + log.debug("Parallel processing cancelled: %s", job_id) + else: + log.debug("Parallel processing finished: %s", job_id) + else: + for args in args_list: + yield func(args) + + +def _cleanup_job(job_id, tasks_queue, pending_tasks, finished_jobs): + # flush the task queue + try: + queue_len = tasks_queue.qsize() + except NotImplementedError: + # this can happen on MacOS (according to the multiprocessing doc) + # -> no cleanup of old processes + queue_len = 0 + # remove all remaining tasks with the current job id + removed_job_counter = 0 + for index in range(queue_len): + try: + this_job_id, task_id, func, args = tasks_queue.get(timeout=0.1) + except queue.Empty: + break + if this_job_id != job_id: + tasks_queue.put((this_job_id, task_id, func, args)) + else: + removed_job_counter += 1 + if removed_job_counter > 0: + log.debug("Removed %d remaining tasks for %s", removed_job_counter, job_id) + # remove all stale tasks + pending_tasks.remove(job_id) + # limit the number of stored finished jobs + finished_jobs.append(job_id) + while len(finished_jobs) > 30: + finished_jobs.pop(0) + + +def run_in_parallel_local(func, args, unordered=False, disable_multiprocessing=False, + callback=None): + global __multiprocessing, __num_of_processes + if __multiprocessing is None: + # threading was not configured before + init_threading() + if __multiprocessing and not disable_multiprocessing: + # use the number of CPUs as the default number of worker threads + pool = __multiprocessing.Pool(__num_of_processes) + if unordered: + imap_func = pool.imap_unordered + else: + imap_func = pool.imap + # We need to use try/finally here to ensure the garbage collection + # of "pool". Otherwise a memory overflow is caused for Python 2.7. + try: + # Beware: we may not return "pool.imap" or "pool.imap_unordered" + # directly. It would somehow loose the focus and just hang infinitely. + # Thus we wrap our own generator around it. + for result in imap_func(func, args): + if callback and callback(): + # cancel requested + break + yield result + finally: + pool.terminate() + else: + for arg in args: + if callback and callback(): + # cancel requested + break + yield func(arg) + + +class OneProcess: + def __init__(self, name, is_queue=False): + self.is_queue = is_queue + self.name = name + self.transfer_time = 0 + self.transfer_count = 0 + self.process_time = 0 + self.process_count = 0 + + def __str__(self): + try: + if self.is_queue: + return "Queue %s: %s (%s/%s)" % (self.name, self.transfer_time/self.transfer_count, + self.transfer_time, self.transfer_count) + else: + return "Process %s: %s (%s/%s) - %s (%s/%s)" % ( + self.name, self.transfer_time/self.transfer_count, self.transfer_time, + self.transfer_count, self.process_time/self.process_count, self.process_time, + self.process_count) + except ZeroDivisionError: + # race condition between adding new objects and output + if self.is_queue: + return "Queue %s: not ready" % str(self.name) + else: + return "Process %s: not ready" % str(self.name) + + +class ProcessStatistics: + + def __init__(self, timeout=120): + self.processes = {} + self.queues = {} + self.workers = {} + self.timeout = timeout + + def __str__(self): + return os.linesep.join([str(item) + for item in self.processes.values() + self.queues.values()]) + + def _refresh_workers(self): + oldest_valid = time.time() - self.timeout + # be careful: the workers dictionary can be changed within the loop + for key, timestamp in list(self.workers.items()): + if timestamp < oldest_valid: + try: + del self.workers[key] + except KeyError: + pass + + def get_stats(self): + return str(self) + + def add_transfer_time(self, name, amount): + if name not in self.processes.keys(): + self.processes[name] = OneProcess(name) + self.processes[name].transfer_count += 1 + self.processes[name].transfer_time += amount + + def add_process_time(self, name, amount): + if name not in self.processes.keys(): + self.processes[name] = OneProcess(name) + self.processes[name].process_count += 1 + self.processes[name].process_time += amount + + def add_queueing_time(self, name, amount): + if name not in self.queues.keys(): + self.queues[name] = OneProcess(name, is_queue=True) + self.queues[name].transfer_count += 1 + self.queues[name].transfer_time += amount + + def worker_notification(self, name): + timestamp = time.time() + self.workers[name] = timestamp + + def get_worker_statistics(self): + self._refresh_workers() + now = time.time() + result = [] + # Cache the key list instead of iterating it - otherwise a + # "RuntimeError: dictionary changed size during iteration" may occur. + for key, worker_start_time in list(self.workers.items()): + try: + one_process = self.processes[key] + last_notification = int(now - worker_start_time) + except KeyError: + # no data available yet or the item was removed meanwhile + continue + num_of_tasks = one_process.process_count + process_time = one_process.process_time + # avoid divide-by-zero + avg_process_time = process_time / max(1, num_of_tasks) + avg_transfer_time = one_process.transfer_time / max(1, num_of_tasks) + result.append((key, last_notification, num_of_tasks, process_time, avg_process_time, + avg_transfer_time)) + return result + + +class PendingTasks: + + def __init__(self, stale_timeout=300): + # we assume that multiprocessing was imported before + import multiprocessing + self._lock = multiprocessing.Lock() + self._jobs = {} + self._stale_timeout = stale_timeout + # necessary in case of a lost connection + self._lock_timeout = 3 + + def add(self, job_id, task_id, info): + # no acquire and release: be as quick as possible (avoid lost tasks) + self._jobs[(job_id, task_id)] = (time.time(), info) + + def remove(self, job_id, task_id=None): + self._lock.acquire(block=True, timeout=self._lock_timeout) + if task_id is None: + # remove all tasks of this job + remove_keys = [] + for key in list(self._jobs.keys()): + if key[0] == job_id: + remove_keys.append(key) + for key in remove_keys: + try: + del self._jobs[key] + except KeyError: + # maybe they were removed in between + pass + else: + # remove only a specific task + if (job_id, task_id) in self._jobs: + del self._jobs[(job_id, task_id)] + self._lock.release() + + def get_stale_task(self): + self._lock.acquire(block=True, timeout=self._lock_timeout) + stale_start_time = time.time() - self._stale_timeout + stale_tasks = [] + # use a copy to prevent "dictionary changed size in iteration" errors + current_jobs = list(self._jobs.items()) + for (job_id, task_id), (start_time, info) in current_jobs: + if start_time < stale_start_time: + stale_tasks.append((job_id, task_id, info)) + if stale_tasks: + # pick a random task - otherwise some old tasks stop everything + result_index = random.randrange(0, len(stale_tasks)) + result = stale_tasks[result_index] + else: + result = None + self._lock.release() + return result + + def length(self): + return len(self._jobs) + + +class ProcessDataCache: + + def __init__(self, timeout=600): + self.cache = {} + self.timeout = timeout + + def _update_timestamp(self, name): + if isinstance(name, ProcessDataCacheItemID): + name = name.value + now = time.time() + try: + self.cache[name][1] = now + except KeyError: + # the item was deleted meanwhile + pass + + def expire_cache_items(self): + expired = time.time() - self.timeout + # use a copy in order to avoid "changed size during iteration" errors + for key in list(self.cache): + try: + if self.cache[key][1] < expired: + del self.cache[key] + except KeyError: + # ignore removed items + pass + + def contains(self, name): + if isinstance(name, ProcessDataCacheItemID): + name = name.value + self._update_timestamp(name) + self.expire_cache_items() + return name in self.cache.keys() + + def add(self, name, value): + now = time.time() + if isinstance(name, ProcessDataCacheItemID): + name = name.value + self.expire_cache_items() + self.cache[name] = [value, now] + + def get(self, name): + if isinstance(name, ProcessDataCacheItemID): + name = name.value + self._update_timestamp(name) + self.expire_cache_items() + return self.cache[name][0] + + def length(self): + return len(self.cache) + + +class ProcessDataCacheItemID: + + def __init__(self, value): + self.value = value diff --git a/pycam/pycam/__init__.py b/pycam/pycam/__init__.py new file mode 100644 index 00000000..9bc69fb6 --- /dev/null +++ b/pycam/pycam/__init__.py @@ -0,0 +1,95 @@ +""" +Copyright 2008 Lode Leroy + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + + +import os +import subprocess +import re + + +try: + from Version import VERSION + +except ImportError: + # Failed to import Version.py, we must be running out of a git + # checkout, so generate the version info from git tags. + + # + # These variables should only be changed by the release manager when + # creating a new stable release branch. + # + # In master: + # * 'parent_branch' stays set to 'master' + # * 'tag_glob' is changed to the glob for the next set of releases. + # + # In the new stable branch: + # * 'parent_branch' is set to the name of the new stable branch. + # * 'tag_glob' stays set to the glob for release tags on this branch. + # + parent_branch = "master" + tag_glob = "v0.7.*" + + repo_dir = os.path.abspath(os.path.join(os.path.dirname(__file__), os.pardir)) + + try: + current_branch = subprocess.check_output(["git", "rev-parse", "--abbrev-ref", "HEAD"], + cwd=repo_dir, stderr=subprocess.PIPE) + current_branch = current_branch.strip().decode("utf-8") + + git_describe = subprocess.check_output(["git", "describe", "--always", "--dirty", "--tags", + "--match", tag_glob], + cwd=repo_dir, stderr=subprocess.PIPE) + # remove the "v" prefix + git_describe = git_describe.strip().decode("utf-8").lstrip("v") + + # Special case: a tag containing "-pre" followed by a number + # indicates a pre-release, so we want the version number to + # be *less* than the tag without the "-preX". For example, + # "v0.7.0-pre2" is an earlier version than "v0.7.0". + # + # In Debian version numbers this is indicated by the + # tilde character "~", but git tags cannot contain tildes + # (https://git-scm.com/docs/git-check-ref-format, or see the + # "git-check-ref-format" manpage). So we replace the first + # "-pre" in tag names with "~pre". + git_describe = re.sub('-pre([0-9])', r'~pre\1', git_describe, 1) + + if current_branch == parent_branch: + # We're on master or on a stable/release branch, so the + # version number is just the 'git describe' output. + VERSION = git_describe + + else: + # We're on a temporary branch, so make a version number that + # sorts as *older than* nearby release versions. + parts = git_describe.split('-') + parts[0] = parts[0] + '~' + current_branch + VERSION = '-'.join(parts) + + # No matter how we made the version string, replace every "-" + # with ".", because that's what Debian version numbers expect. + # https://www.debian.org/doc/debian-policy/ch-controlfields.html#s-f-Version + VERSION = VERSION.replace('-', '.') + + except (subprocess.CalledProcessError, OSError): + # No pycam/Version.py and git failed to give us a version number, give up. + VERSION = "0.0-unknown" + + +DOC_BASE_URL = "http://pycam.sourceforge.net/%s/" diff --git a/pycam/pycam/errors.py b/pycam/pycam/errors.py new file mode 100644 index 00000000..329c3290 --- /dev/null +++ b/pycam/pycam/errors.py @@ -0,0 +1,47 @@ +class PycamBaseException(Exception): + pass + + +class AbortOperationException(PycamBaseException): + pass + + +class CommunicationError(PycamBaseException): + pass + + +class InitializationError(PycamBaseException): + pass + + +class InvalidDataError(PycamBaseException): + pass + + +class MissingAttributeError(InvalidDataError): + pass + + +class AmbiguousDataError(InvalidDataError): + pass + + +class UnexpectedAttributeError(InvalidDataError): + pass + + +class InvalidKeyError(InvalidDataError): + + def __init__(self, invalid_key, choice_enum): + # retrieve the pretty name of the enum + enum_name = str(choice_enum).split("'")[1] + super().__init__("Unknown {}: {} (should be one of: {})".format( + enum_name, invalid_key, ", ".join([item.value for item in choice_enum]))) + + +class LoadFileError(PycamBaseException): + pass + + +class MissingDependencyError(PycamBaseException): + """ a dependency (e.g. an external python module) is missing """ diff --git a/pycam/pycam/run_cli.py b/pycam/pycam/run_cli.py new file mode 100755 index 00000000..5149ea2c --- /dev/null +++ b/pycam/pycam/run_cli.py @@ -0,0 +1,76 @@ +#!/usr/bin/env python3 +""" + +Copyright 2017 Lars Kruse + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + +import argparse +import logging +import os +import sys + +try: + from pycam import VERSION +except ImportError: + # running locally (without a proper PYTHONPATH) requires manual intervention + sys.path.insert(0, os.path.realpath(os.path.join(os.path.dirname(os.path.realpath(__file__)), + os.pardir))) + from pycam import VERSION + +import pycam.errors +from pycam.Flow.parser import parse_yaml +import pycam.Utils +import pycam.Utils.log +import pycam.workspace.data_models + + +_log = pycam.Utils.log.get_logger() + +LOG_LEVELS = {"debug": logging.DEBUG, + "info": logging.INFO, + "warning": logging.WARNING, + "error": logging.ERROR, } + + +def get_args(): + parser = argparse.ArgumentParser(prog="PyCAM", description="scriptable PyCAM processing flow", + epilog="PyCAM website: https://github.com/SebKuzminsky/pycam") + parser.add_argument("--log-level", choices=LOG_LEVELS.keys(), default="warning", + help="choose the verbosity of log messages") + parser.add_argument("sources", metavar="FLOW_SPEC", type=argparse.FileType('r'), nargs="+", + help="processing flow description files in yaml format") + parser.add_argument("--version", action="version", version="%(prog)s {}".format(VERSION)) + return parser.parse_args() + + +def main_func(): + args = get_args() + _log.setLevel(LOG_LEVELS[args.log_level]) + for fname in args.sources: + try: + parse_yaml(fname) + except pycam.errors.PycamBaseException as exc: + print("Flow description parse failure ({}): {}".format(fname, exc), file=sys.stderr) + sys.exit(1) + pycam.Utils.set_application_key("pycam-cli") + for export in pycam.workspace.data_models.Export.get_collection(): + export.run_export() + + +if __name__ == "__main__": + main_func() diff --git a/pycam/pycam/run_gui.py b/pycam/pycam/run_gui.py new file mode 100755 index 00000000..f2f94d89 --- /dev/null +++ b/pycam/pycam/run_gui.py @@ -0,0 +1,340 @@ +#!/usr/bin/env python3 +""" + +Copyright 2010-2018 Lars Kruse +Copyright 2008-2009 Lode Leroy + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + +import argparse +import logging +import os +import socket +import sys +import warnings + +# we need the multiprocessing exception for remote connections +try: + import multiprocessing + from multiprocessing import AuthenticationError +except ImportError: + multiprocessing = None + # use an arbitrary other Exception + AuthenticationError = socket.error + +try: + from pycam import VERSION +except ImportError: + # running locally (without a proper PYTHONPATH) requires manual intervention + sys.path.insert(0, os.path.realpath(os.path.join(os.path.dirname(os.path.realpath(__file__)), + os.pardir))) + from pycam import VERSION + +from pycam.errors import InitializationError +from pycam.Flow.history import DataHistory, merge_history_and_block_events +from pycam.Gui import QuestionStatus +import pycam.Gui.common as GuiCommon +from pycam.Gui.common import EmergencyDialog +import pycam.Gui.Settings +import pycam.Gui.Console +import pycam.Importers.TestModel +import pycam.Importers +import pycam.Plugins +import pycam.Utils +from pycam.Utils.events import get_event_handler +import pycam.Utils.log +import pycam.Utils.threading + +# register the glut32.dll manually for the pyinstaller standalone executable +if hasattr(sys, "frozen") and sys.frozen and "_MEIPASS2" in os.environ: + from ctypes import windll + windll[os.path.join(os.path.normpath(os.environ["_MEIPASS2"]), "glut32.dll")] + +# The installer for PyODE does not add the required PATH variable. +if pycam.Utils.get_platform() == pycam.Utils.OSPlatform.WINDOWS: + os.environ["PATH"] = os.environ.get("PATH", "") + os.path.pathsep + sys.exec_prefix +# The GtkGLExt installer does not add the required PATH variable. +if pycam.Utils.get_platform() == pycam.Utils.OSPlatform.WINDOWS: + import _winreg + path = None + try: + reg = _winreg.ConnectRegistry(None, _winreg.HKEY_LOCAL_MACHINE) + regkey = _winreg.OpenKey(reg, r"SOFTWARE\GtkGLExt\1.0\Runtime") + except WindowsError: + regkey = None + index = 0 + while regkey: + try: + key, value = _winreg.EnumValue(regkey, index)[:2] + except WindowsError: + # no more items left + break + if key == "Path": + path = os.path.join(str(value), "bin") + break + index += 1 + if path: + os.environ["PATH"] = os.environ.get("PATH", "") + os.path.pathsep + path + + +EXIT_CODES = {"ok": 0, + "requirements": 1, + "load_model_failed": 2, + "write_output_failed": 3, + "parsing_failed": 4, + "server_without_password": 5, + "connection_error": 6, + "toolpath_error": 7} + +log = pycam.Utils.log.get_logger() + + +def show_gui(workspace_filename=None): + pycam.Utils.set_application_key("pycam-gtk") + deps_gtk = GuiCommon.requirements_details_gtk() + report_gtk = GuiCommon.get_dependency_report(deps_gtk, prefix="\t") + if GuiCommon.check_dependencies(deps_gtk): + from pycam.Gui.Project import ProjectGui + gui_class = ProjectGui + else: + full_report = [] + full_report.append("PyCAM dependency problem") + full_report.append("Error: Failed to load the GTK interface.") + full_report.append("Details:") + full_report.append(report_gtk) + full_report.append("") + full_report.append("Detailed list of requirements: %s" % GuiCommon.REQUIREMENTS_LINK) + log.critical(os.linesep.join(full_report)) + return EXIT_CODES["requirements"] + + event_manager = get_event_handler() + history = DataHistory() + event_manager.set("history", history) + + with merge_history_and_block_events(event_manager): + log.debug("Initializing user interface") + gui = gui_class(event_manager) + # initialize plugins + log.debug("Loading all available plugins") + plugin_manager = pycam.Plugins.PluginManager(core=event_manager) + plugin_manager.import_plugins() + # some more initialization + log.debug("Resetting preferences") + gui.reset_preferences() + log.debug("Loading preferences") + gui.load_preferences() + has_loaded_custom_workspace = False + log.debug("Loading workspace") + if workspace_filename is None: + gui.load_startup_workspace() + else: + if gui.load_workspace_from_file(workspace_filename): + has_loaded_custom_workspace = True + else: + gui.load_startup_workspace() + + log.debug("Finished initialization") + log.debug("Configured events: %s", ", ".join(event_manager.get_events_summary_lines())) + shutdown_calls = [] + + def shutdown_handler(): + # prevent repeated calls + if shutdown_calls: + return + shutdown_calls.append(True) + # optionally save workspace (based on configuration or dialog response) + if has_loaded_custom_workspace: + # A custom workspace file was given via command line - we always want to ask before + # overwriting it. + response = gui.get_question_response( + "Save Workspace to '{}'?".format(workspace_filename), True) + should_store = response.is_yes + elif event_manager.get("save_workspace_on_exit") == QuestionStatus.ASK.value: + response = gui.get_question_response("Save Workspace?", True, allow_memorize=True) + if response.should_memorize: + event_manager.set( + "save_workspace_on_exit", + (QuestionStatus.YES if response.is_yes else QuestionStatus.NO).value) + should_store = response.is_yes + elif event_manager.get("save_workspace_on_exit") == QuestionStatus.YES.value: + should_store = True + else: + should_store = False + if should_store: + gui.save_startup_workspace() + + gui.save_preferences() + with merge_history_and_block_events(event_manager, emit_events_after=False): + plugin_manager.disable_all_plugins() + # close the GUI + gui.stop() + history.cleanup() + + # Register our shutdown handler: it should be run _before_ the GTK main loop stops. + # Otherwise some references and signals are gone when the teardown actions are exeucted. + event_manager.register_event("mainloop-stop", shutdown_handler) + # open the GUI - wait until the window is closed + gui.run_forever() + event_manager.unregister_event("mainloop-stop", shutdown_handler) + # show final statistics + log.debug("Configured events: %s", ", ".join(event_manager.get_events_summary_lines())) + for event, stats in sorted(event_manager.get_events_summary().items()): + if len(stats["handlers"]) > 0: + log.info("Remaining listeners for event '%s': %s", + event, ", ".join(str(func) for func in stats["handlers"])) + # no error -> return no error code + return None + + +def execute(parser, args, pycam): + # try to change the process name + pycam.Utils.setproctitle("pycam") + + if args.trace: + log.setLevel(logging.DEBUG // 2) + elif args.debug: + log.setLevel(logging.DEBUG) + elif args.quiet: + log.setLevel(logging.WARNING) + # disable the progress bar + args.progress = "none" + # silence all warnings + warnings.filterwarnings("ignore") + else: + log.setLevel(logging.INFO) + + # check if server-auth-key is given -> this is mandatory for server mode + if (args.enable_server or args.start_server) and not args.server_authkey: + parser.error( + "You need to supply a shared secret for server mode. This is supposed to prevent you " + "from exposing your host to remote access without authentication.\nPlease add the " + "'--server-auth-key' argument followed by a shared secret password.") + return EXIT_CODES["server_without_password"] + + # initialize multiprocessing + try: + if args.server_authkey is None: + server_auth_key = None + else: + server_auth_key = args.server_authkey.encode("utf-8") + if args.start_server: + pycam.Utils.threading.init_threading( + args.parallel_processes, remote=args.remote_server, run_server=True, + server_credentials=server_auth_key) + pycam.Utils.threading.cleanup() + return EXIT_CODES["ok"] + else: + pycam.Utils.threading.init_threading( + args.parallel_processes, enable_server=args.enable_server, + remote=args.remote_server, server_credentials=server_auth_key) + except socket.error as err_msg: + log.error("Failed to connect to remote server: %s", err_msg) + return EXIT_CODES["connection_error"] + except AuthenticationError as err_msg: + log.error("The remote server rejected your authentication key: %s", err_msg) + return EXIT_CODES["connection_error"] + + try: + show_gui(workspace_filename=args.workspace_filename) + except InitializationError as exc: + EmergencyDialog("PyCAM startup failure", str(exc)) + return EXIT_CODES["requirements"] + + +def get_args_parser(): + parser = argparse.ArgumentParser(prog="PyCAM", description="Toolpath generator", + epilog="PyCAM website: https://github.com/SebKuzminsky/pycam") + # general options + group_processing = parser.add_argument_group("Processing") + group_processing.add_argument( + "--number-of-processes", dest="parallel_processes", default=None, type=int, + action="store", + help=("override the default detection of multiple CPU cores. Parallel processing only " + "works with Python 2.6 (or later) or with the additional 'multiprocessing' module.")) + group_processing.add_argument( + "--enable-server", dest="enable_server", default=False, action="store_true", + help="enable a local server and (optionally) remote worker servers.") + group_processing.add_argument( + "--remote-server", dest="remote_server", default=None, action="store", + help=("Connect to a remote task server to distribute the processing load. " + "The server is given as an IP or a hostname with an optional port (default: 1250) " + "separated by a colon.")) + group_processing.add_argument( + "--start-server-only", dest="start_server", default=False, action="store_true", + help="Start only a local server for handling remote requests.") + group_processing.add_argument( + "--server-auth-key", dest="server_authkey", default="", action="store", + help=("Secret used for connecting to a remote server or for granting access to remote " + "clients.")) + group_workspace = parser.add_argument_group("Workspace") + group_workspace.add_argument( + "--workspace-file", dest="workspace_filename", + help="Workspace file to be loaded during startup") + group_verbosity = parser.add_argument_group("Verbosity") + group_verbosity.add_argument( + "-q", "--quiet", dest="quiet", default=False, action="store_true", + help="output only warnings and errors.") + group_verbosity.add_argument( + "-d", "--debug", dest="debug", default=False, action="store_true", + help="enable output of debug messages.") + group_verbosity.add_argument( + "--trace", dest="trace", default=False, action="store_true", + help="enable more verbose debug messages.") + group_verbosity.add_argument( + "--progress", dest="progress", default="text", action="store", + choices=["none", "text", "bar", "dot"], + help=("specify the type of progress bar used in non-GUI mode. The following options are " + "available: text, none, bar, dot.")) + group_introspection = parser.add_argument_group("Introspection") + group_introspection.add_argument( + "--profiling", dest="profile_destination", action="store", + help="store profiling statistics in a file (only for debugging)") + group_introspection.add_argument("--version", action="version", + version="%(prog)s {}".format(VERSION)) + return parser + + +def main_func(): + # The PyInstaller standalone executable requires this "freeze_support" call. Otherwise we will + # see a warning regarding an invalid argument called "--multiprocessing-fork". This problem can + # be triggered on single-core systems with these arguments: + # "--enable-server --server-auth-key foo". + if hasattr(multiprocessing, "freeze_support"): + multiprocessing.freeze_support() + parser = get_args_parser() + args = parser.parse_args() + try: + if args.profile_destination: + import cProfile + exit_code = cProfile.run('execute(parser, args, pycam)', + args.profile_destination) + else: + # We need to add the parameter "pycam" to avoid weeeeird namespace + # issues. Any idea how to fix this? + exit_code = execute(parser, args, pycam) + except KeyboardInterrupt: + log.info("Quit requested") + exit_code = None + pycam.Utils.threading.cleanup() + if exit_code is not None: + sys.exit(exit_code) + else: + sys.exit(EXIT_CODES["ok"]) + + +if __name__ == "__main__": + main_func() diff --git a/pycam/pycam/workspace/__init__.py b/pycam/pycam/workspace/__init__.py new file mode 100644 index 00000000..1f090366 --- /dev/null +++ b/pycam/pycam/workspace/__init__.py @@ -0,0 +1,150 @@ +from enum import Enum + + +class CollectionName(Enum): + MODELS = "models" + TOOLS = "tools" + PROCESSES = "processes" + BOUNDS = "bounds" + TASKS = "tasks" + TOOLPATHS = "toolpaths" + EXPORT_SETTINGS = "export_settings" + EXPORTS = "exports" + + +class ToolShape(Enum): + FLAT_BOTTOM = "flat_bottom" + BALL_NOSE = "ball_nose" + TORUS = "torus" + + +class ProcessStrategy(Enum): + SLICE = "slice" + CONTOUR = "contour" + SURFACE = "surface" + ENGRAVE = "engrave" + + +class PathPattern(Enum): + SPIRAL = "spiral" + GRID = "grid" + + +class BoundsSpecification(Enum): + ABSOLUTE = "absolute" + MARGINS = "margins" + + +class TaskType(Enum): + MILLING = "milling" + + +class SourceType(Enum): + FILE = "file" + URL = "url" + COPY = "copy" + MODEL = "model" + TASK = "task" + TOOLPATH = "toolpath" + OBJECT = "object" + SUPPORT_BRIDGES = "support_bridges" + + +class ModelTransformationAction(Enum): + SCALE = "scale" + SHIFT = "shift" + ROTATE = "rotate" + MULTIPLY_MATRIX = "multiply_matrix" + PROJECTION = "projection" + TOGGLE_POLYGON_DIRECTIONS = "toggle_polygon_directions" + REVISE_POLYGON_DIRECTIONS = "revise_polygon_directions" + + +class ToolpathTransformationAction(Enum): + CROP = "crop" + CLONE = "clone" + SHIFT = "shift" + + +class ModelScaleTarget(Enum): + FACTOR = "factor" + SIZE = "size" + + +class PositionShiftTarget(Enum): + DISTANCE = "distance" + ALIGN_MIN = "align_min" + ALIGN_MAX = "align_max" + CENTER = "center" + + @classmethod + def _get_shift_offset(cls, shift_target, shift_axes, obj): + offset = [] + if shift_target == cls.DISTANCE: + for value in shift_axes: + offset.append(0.0 if value is None else value) + elif shift_target == cls.ALIGN_MIN: + for value, current_position in zip(shift_axes, (obj.minx, obj.miny, obj.minz)): + offset.append(0.0 if value is None else (value - current_position)) + elif shift_target == cls.ALIGN_MAX: + for value, current_position in zip(shift_axes, (obj.maxx, obj.maxy, obj.maxz)): + offset.append(0.0 if value is None else (value - current_position)) + elif shift_target == cls.CENTER: + for value, current_position in zip(shift_axes, obj.get_center()): + offset.append(0.0 if value is None else (value - current_position)) + else: + assert False + return offset + + +class SupportBridgesLayout(Enum): + GRID = "grid" + DISTRIBUTED = "distributed" + + +class DistributionStrategy(Enum): + CORNERS = "corners" + EVENLY = "evenly" + + +class TargetType(Enum): + FILE = "file" + + +class FormatType(Enum): + GCODE = "gcode" + MODEL = "model" + + +class FileType(Enum): + STL = "stl" + + +class GCodeDialect(Enum): + LINUXCNC = "linuxcnc" + + +class ToolpathFilter(Enum): + SAFETY_HEIGHT = "safety_height" + PLUNGE_FEEDRATE = "plunge_feedrate" + STEP_WIDTH = "step_width" + CORNER_STYLE = "corner_style" + FILENAME_EXTENSION = "filename_extension" + TOUCH_OFF = "touch_off" + UNIT = "unit" + + +class ToolBoundaryMode(Enum): + INSIDE = "inside" + ALONG = "along" + AROUND = "around" + + +class ModelType(Enum): + TRIMESH = "trimesh" + POLYGON = "polygon" + + +class LengthUnit(Enum): + METRIC_MM = "metric_mm" + IMPERIAL_INCH = "imperial_inch" diff --git a/pycam/pycam/workspace/data_models.py b/pycam/pycam/workspace/data_models.py new file mode 100644 index 00000000..0229737c --- /dev/null +++ b/pycam/pycam/workspace/data_models.py @@ -0,0 +1,1662 @@ +""" +Copyright 2017 Lars Kruse + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + +import collections +import copy +from enum import Enum +import functools +import io +import os.path +import time +import uuid + +from pycam.Cutters.CylindricalCutter import CylindricalCutter +from pycam.Cutters.SphericalCutter import SphericalCutter +from pycam.Cutters.ToroidalCutter import ToroidalCutter +from pycam.Geometry import Box3D, Point3D +import pycam.Geometry.Model +from pycam.Geometry.Plane import Plane +from pycam.PathGenerators import UpdateToolView +import pycam.PathGenerators.DropCutter +import pycam.PathGenerators.EngraveCutter +import pycam.PathGenerators.PushCutter +import pycam.Toolpath +import pycam.Toolpath.Filters as tp_filters +import pycam.Toolpath.MotionGrid as MotionGrid +import pycam.Toolpath.SupportGrid +from pycam.Importers import detect_file_type +from pycam.Utils import get_application_key, get_type_name, MultiLevelDictionaryAccess +from pycam.Utils.events import get_event_handler +from pycam.Utils.progress import ProgressContext +from pycam.Utils.locations import get_data_file_location +import pycam.Utils.log +from pycam.workspace import ( + BoundsSpecification, CollectionName, DistributionStrategy, FileType, FormatType, GCodeDialect, + ModelScaleTarget, ModelTransformationAction, ModelType, LengthUnit, PathPattern, + PositionShiftTarget, ProcessStrategy, SourceType, SupportBridgesLayout, TargetType, TaskType, + ToolBoundaryMode, ToolpathFilter, ToolpathTransformationAction, ToolShape) +from pycam.errors import (LoadFileError, PycamBaseException, InvalidDataError, InvalidKeyError, + MissingAttributeError, MissingDependencyError, UnexpectedAttributeError) + +_log = pycam.Utils.log.get_logger() + + +# dictionary of all collections by name +_data_collections = {} +_cache = {} + + +APPLICATION_ATTRIBUTES_KEY = "X-Application" + + +def _get_enum_value(enum_class, value): + try: + return enum_class(value) + except ValueError: + raise InvalidKeyError(value, enum_class) + + +def _get_enum_resolver(enum_class): + """ return a function that would convert a raw value to an enum item of the given class """ + return functools.partial(_get_enum_value, enum_class) + + +def _get_list_item_value(item_converter, values): + return [item_converter(value) for value in values] + + +def _get_list_resolver(item_converter): + return functools.partial(_get_list_item_value, item_converter) + + +def _bool_converter(value): + if isinstance(value, int): + if value == 1: + return True + elif value == 0: + return False + else: + raise InvalidDataError("Invalid boolean value: {} (int)".format(value)) + elif isinstance(value, str): + if value.lower() in ("true", "yes", "1", "on", "enabled"): + return True + elif value.lower() in ("false", "no", "0", "off", "disabled"): + return False + else: + raise InvalidDataError("Invalid boolean value: {} (string)".format(value)) + elif isinstance(value, bool): + return value + else: + raise InvalidDataError("Invalid boolean value type ({}): {}" + .format(get_type_name(value), value)) + + +class LimitSingle(collections.namedtuple("LimitSingle", ("value", "is_relative"))): + + @property + def export(self): + """return the storage string for later parsing""" + if self.is_relative: + return "{:f}%".format(100.0 * self.value) + else: + return self.value + + +Limit3D = collections.namedtuple("Limit3D", ("x", "y", "z")) +AxesValues = collections.namedtuple("AxesValues", ("x", "y", "z")) +CacheItem = collections.namedtuple("CacheItem", ("timestamp", "content")) + + +def _limit3d_converter(point): + """ convert a tuple or list of three numbers or a dict with x/y/z keys into a 'Limit3D' """ + if len(point) != 3: + raise InvalidDataError("A 3D limit needs to contain exactly three items: {}" + .format(point)) + result = [] + if isinstance(point, dict): + try: + point = (point["x"], point["y"], point["z"]) + except KeyError: + raise InvalidDataError("All three axis are required for lower/upper limits") + for value in point: + is_relative = False + if isinstance(value, LimitSingle): + value, is_relative = value + elif isinstance(value, str): + try: + if value.endswith("%"): + is_relative = True + # convert percent value to 0..1 + value = float(value[:-1]) / 100.0 + else: + value = float(value) + except ValueError: + raise InvalidDataError("Failed to parse float from 3D limit: {}".format(value)) + elif isinstance(value, (int, float)): + value = float(value) + else: + raise InvalidDataError("Non-numeric data supplied for 3D limit: {}".format(value)) + result.append(LimitSingle(value, is_relative)) + return Limit3D(*result) + + +def _axes_values_converter(data, allow_none=False, wanted_axes="xyz"): + result = {key: None for key in "xyz"} + if isinstance(data, (list, dict)): + if isinstance(data, dict): + data = dict(data) + for key in wanted_axes: + try: + value = data.pop(key) + except KeyError: + if allow_none: + value = None + else: + raise InvalidDataError("Missing mandatory axis component ({})".format(key)) + result[key] = value + if data: + raise InvalidDataError("Superfluous axes key(s) supplied: {} (expected: x / y / z)" + .format(" / ".join(data.keys()))) + else: + # a list + data = list(data) + if len(data) != len(wanted_axes): + raise InvalidDataError("Invalid number of axis components supplied: {:d} " + "(expected: {:d})".format(len(result), len(wanted_axes))) + for key, value in zip(wanted_axes, data): + result[key] = value + for key, value in result.items(): + try: + result[key] = None if value is None else float(value) + except ValueError: + raise InvalidDataError("Axis value is not a float: {} ({})" + .format(value, get_type_name(value))) + else: + try: + factor = float(data) + except ValueError: + raise InvalidDataError("Axis value is not a float: {} ({})" + .format(data, get_type_name(data))) + for key in result: + result[key] = factor + return AxesValues(**result) + + +def _get_from_collection(collection_name, wanted, many=False): + """ retrieve one or more items from a collection + + @param collection_name: identifier of the relevant collection + @param wanted: ID (or list of IDs) to be used for filtering the collection items + @param many: expect "wanted" to be a list; return a tuple instead of a single value + """ + default_result = [] if many else None + try: + collection = _data_collections[collection_name] + except KeyError: + _log.info("Requested item (%s) from unknown collection (%s)", wanted, collection_name) + return default_result + try: + if many: + return tuple(collection[item_id] for item_id in wanted + if collection[item_id] is not None) + else: + return collection[wanted] + except KeyError: + return default_result + + +def _get_collection_resolver(collection_name, many=False): + assert isinstance(collection_name, CollectionName) + return functools.partial(_get_from_collection, collection_name, many=many) + + +def _set_parser_context(description): + """ store a string describing the current parser context (useful for error messages) """ + def wrap(func): + @functools.wraps(func) + def inner_function(self, *args, **kwargs): + original_description = getattr(self, "_current_parser_context", None) + self._current_parser_context = description + try: + result = func(self, *args, **kwargs) + except PycamBaseException as exc: + # add a prefix to exceptions + exc.message = "{} -> {}".format(self._current_parser_context, exc) + raise exc + if original_description is None: + delattr(self, "_current_parser_context") + else: + self._current_parser_context = original_description + return result + return inner_function + return wrap + + +def _set_allowed_attributes(attr_set): + def wrap(func): + @functools.wraps(func) + def inner_function(self, *args, **kwargs): + self.validate_allowed_attributes(attr_set) + return func(self, *args, **kwargs) + return inner_function + return wrap + + +def _require_model_type(wanted_type): + def wrap(func): + @functools.wraps(func) + def inner_function(self, model, *args, **kwargs): + if (wanted_type == ModelType.TRIMESH) and not hasattr(model, "triangles"): + raise InvalidDataError( + "Expected 3D mesh model, but received '{}'".format(type(model))) + elif (wanted_type == ModelType.POLYGON) and not hasattr(model, "get_polygons"): + raise InvalidDataError( + "Expected 2D polygon model, but received '{}'".format(type(model))) + else: + return func(self, model, *args, **kwargs) + return inner_function + return wrap + + +class CacheStorage: + """ cache result values of a method + + The method's instance object may be a BaseDataContainer (or another non-trivial object). + Arguments for the method call are hashed. + Multiple data keys for a BaseDataContainer may be specified - a change of their value + invalidates cached values. + """ + + def __init__(self, relevant_dict_keys, max_cache_size=10): + self._relevant_dict_keys = tuple(relevant_dict_keys) + self._max_cache_size = max_cache_size + + def __call__(self, calc_function): + def wrapped(inst, *args, **kwargs): + return self.get_cached(inst, args, kwargs, calc_function) + return wrapped + + @classmethod + def _get_stable_hashs_for_value(cls, value): + """calculate a hash value for simple values and complex objects""" + if isinstance(value, dict): + for key_value in sorted(value.items()): + yield from cls._get_stable_hashs_for_value(key_value) + elif isinstance(value, (list, tuple)): + for item in value: + yield from cls._get_stable_hashs_for_value(item) + elif isinstance(value, (float, int, str)): + yield hash(value) + elif isinstance(value, pycam.Toolpath.Toolpath): + yield hash(value) + elif value is None: + yield hash(None) + elif isinstance(value, BaseDataContainer): + yield from cls._get_stable_hashs_for_value(value.get_dict()) + elif isinstance(value, Enum): + yield hash(value.value) + else: + assert False, ("Non-hashable type needs hash conversion for cache key: {}" + .format(type(value))) + + def _get_cache_key(self, inst, args, kwargs): + hashes = [] + for key in self._relevant_dict_keys: + value = inst.get_value(key) + hashes.append(hash(key)) + hashes.extend(self._get_stable_hashs_for_value(value)) + return (tuple(hashes) + + tuple(self._get_stable_hashs_for_value(args)) + + tuple(self._get_stable_hashs_for_value(kwargs))) + + def get_cached(self, inst, args, kwargs, calc_function): + # every instance manages its own cache + try: + hash(inst) + except TypeError: + # this item is not cacheable - deliver it directly + _log.info("Directly serving value due to non-hashable instance (skipping the cache): " + "%s", inst) + return calc_function(inst, *args, **kwargs) + try: + my_cache = _cache[hash(inst)] + except KeyError: + my_cache = {} + _cache[hash(inst)] = my_cache + cache_key = self._get_cache_key(inst, args, kwargs) + try: + return my_cache[cache_key].content + except KeyError: + pass + cache_item = CacheItem(time.time(), calc_function(inst, *args, **kwargs)) + my_cache[cache_key] = cache_item + if len(my_cache) > self._max_cache_size: + # remove the oldest cache item + item_list = [(key, value.timestamp) for key, value in my_cache.items()] + item_list.sort(key=lambda item: item[1]) + my_cache.pop(item_list[0][0]) + return cache_item.content + + +class BaseDataContainer: + + attribute_converters = {} + attribute_defaults = {} + changed_event = None + + def __init__(self, data): + assert isinstance(data, dict), "Expecting a dict, but received '{}'".format(type(data)) + data = copy.deepcopy(data) + # split the application-specific data (e.g. colors or visibility flags) from the model data + self._application_attributes = data.pop(APPLICATION_ATTRIBUTES_KEY, {}) + self._data = data + self._multi_level_dict = MultiLevelDictionaryAccess(self._data) + + @classmethod + def parse_from_dict(cls, data): + return cls(data) + + def get_value(self, key, default=None, raw=False): + """ get a value from the data dictionary + + @param key may be a simple string or a tuple of strings (multi-level access) + """ + try: + raw_value = self._multi_level_dict.get_value(key) + except KeyError: + if default is not None: + raw_value = default + elif key in self.attribute_defaults: + raw_value = copy.deepcopy(self.attribute_defaults[key]) + else: + if hasattr(self, "_current_parser_context"): + # the context will be added automatically + raise MissingAttributeError("missing attribute '{}'".format(key)) + else: + # generate a suitable context based on the object itself + raise MissingAttributeError("{} -> missing attribute '{}'" + .format(get_type_name(self), key)) + if raw: + return raw_value + elif key in self.attribute_converters: + value = self.attribute_converters[key](raw_value) + if hasattr(value, "set_related_collection"): + # special case for Source: we need the original collection for "copy" + value.set_related_collection(self.collection_name) + return value + else: + return raw_value + + def set_value(self, key, value): + """ set a value of the data dictionary and notify subscribes in case of changes + + @param key may be a simple string or a tuple of strings (multi-level access) + """ + new_value = copy.deepcopy(value) + try: + is_different = (self._multi_level_dict.get_value(key) != new_value) + except KeyError: + # the key is missing + is_different = True + if is_different: + self._multi_level_dict.set_value(key, new_value) + self.notify_changed() + + def extend_value(self, key, values): + """extend a value (which must be a list) with additional values + + This is just a convenience wrapper for the combination of "get_value", "get_dict", + "extend" and "set_value". + @param key may be a simple string or a tuple of strings (multi-level access) + """ + if values: + try: + current_list = self._multi_level_dict.get_value(key) + except KeyError: + current_list = [] + self._multi_level_dict.set_value(key, current_list) + current_list.extend(values) + self.notify_changed() + + def get_dict(self, with_application_attributes=False): + result = copy.deepcopy(self._data) + # fill missing slots with their default values + result_multi_level = MultiLevelDictionaryAccess(result) + # replace all enum variables with their value + result_multi_level.apply_recursive_item_modification(lambda value: isinstance(value, Enum), + lambda value: value.value) + for key, value in self.attribute_defaults.items(): + value = copy.deepcopy(value) + # resolve enums into their string representation + if isinstance(value, Enum): + value = value.value + try: + # check if the value for this key exists + result_multi_level.get_value(key) + except KeyError: + # the value does not exist: set it with its default + result_multi_level.set_value(key, value) + if with_application_attributes: + minimized_data = {key: value + for key, value in copy.deepcopy(self._application_attributes).items() + if value} + if minimized_data: + result[APPLICATION_ATTRIBUTES_KEY] = minimized_data + return result + + def _get_current_application_dict(self): + try: + return self._application_attributes[get_application_key()] + except KeyError: + self._application_attributes[get_application_key()] = {} + return self._application_attributes[get_application_key()] + + def set_application_value(self, key, value): + new_value = copy.deepcopy(value) + value_dict = self._get_current_application_dict() + if value_dict.get(key) != new_value: + value_dict[key] = new_value + self.notify_changed() + + def get_application_value(self, key, default=None): + return self._get_current_application_dict().get(key, default) + + @classmethod + def _get_not_matching_keys(cls, data_dict, allowed_keys): + """ retrieve hierarchical keys from a nested dictionary that are not part of 'allowed_keys' + + The items of the dict are tested for being contained in "allowed_keys". + Nested keys are specified as tuples of the keys of the nesting levels. + Valid examples (returning an empty result): + {"foo": "bar"}, {"foo", "baz", "fu"} + {"foo": {"bar": "baz"}}, {("foo", "bar"), "fu"} + {}, {"foo"} + {"foo": 1, "bar": {"baz": 2, "fu": {"foobar": 3}}}, + {"foo", ("bar", "baz"), ("bar, "fu", "foobar")} + """ + non_matching = set() + for key, value in data_dict.items(): + if key not in allowed_keys and (key, ) not in allowed_keys: + if isinstance(value, dict): + # the key itself is not allowed - try to go down to the next level + sub_keys = {tuple(allowed_key[1:]) + for allowed_key in allowed_keys + if isinstance(allowed_key, tuple) and (key == allowed_key[0])} + for sub_non_matching in cls._get_not_matching_keys(value, sub_keys): + if isinstance(sub_non_matching, tuple): + non_matching.add((key, ) + sub_non_matching) + else: + non_matching.add((key, sub_non_matching)) + else: + non_matching.add(key) + return non_matching + + def validate_allowed_attributes(self, allowed_attributes): + unexpected_attributes = self._get_not_matching_keys(self._data, allowed_attributes) + if unexpected_attributes: + unexpected_attributes_string = " / ".join( + "->".join(item) if isinstance(item, tuple) else item + for item in unexpected_attributes) + raise UnexpectedAttributeError("unexpected attributes were given: {}" + .format(unexpected_attributes_string)) + + def notify_changed(self): + if self.changed_event: + get_event_handler().emit_event(self.changed_event) + + def validate(self): + """ try to verify the validity of a data item + + All operations of the items are executed (avoiding permanent side-effects). Most problems + of the data structure should be discovered during this operation. Non-trivial problems + (e.g. missing permissions for file operations) are not guaranteed to be detected. + + throws PycamBaseException in case of errors + """ + raise NotImplementedError + + def __str__(self): + attr_dict_string = ", ".join("{}={}".format(key, value) + for key, value in self.get_dict().items()) + return "{}({})".format(get_type_name(self), attr_dict_string) + + +class BaseCollection: + + def __init__(self, name, list_changed_event=None): + self._name = name + self._list_changed_event = list_changed_event + self._data = [] + + @property + def list_changed_event(self): + return self._list_changed_event + + def clear(self): + if self._data: + while self._data: + self._data.pop() + self.notify_list_changed() + + def __setitem__(self, index, value): + if self._data[index] != value: + self._data[index] = value + self.notify_list_changed() + + def append(self, value): + self._data.append(value) + self.notify_list_changed() + + def __getitem__(self, index_or_key): + for item in self._data: + if index_or_key == item.get_id(): + return item + else: + # Not found by ID? Interpret the value as an index. + if isinstance(index_or_key, int): + return self._data[index_or_key] + else: + _log.warning("Failed to find item in collection (%s): %s (expected: %s)", + self._name, index_or_key, [item.get_id() for item in self._data]) + return None + + def __delitem__(self, index): + item = self[index] + if item is not None: + try: + self.remove(item) + except ValueError: + pass + + def remove(self, item): + _log.info("Removing '{}' from collection '{}'".format(item.get_id(), self._name)) + try: + self._data.remove(item) + except ValueError: + raise KeyError("Failed to remove '{}' from collection '{}'" + .format(item.get_id(), self._name)) + self.notify_list_changed() + + def __iter__(self): + return iter(self._data) + + def __len__(self): + return len(self._data) + + def __contains__(self, key): + return (key in self._data) or (key in [item.get_id() for item in self._data]) + + def __bool__(self): + return len(self._data) > 0 + + def swap_by_index(self, index1, index2): + assert index1 != index2 + smaller, bigger = min(index1, index2), max(index1, index2) + item1 = self._data.pop(bigger) + item2 = self._data.pop(smaller) + self._data.insert(smaller, item1) + self._data.insert(bigger, item2) + self.notify_list_changed() + + def get_dict(self, with_application_attributes=False, without_uuids=False): + result = {} + for item in self._data: + item_id = item.get_id() + data = item.get_dict(with_application_attributes=with_application_attributes) + if without_uuids: + try: + data.pop(item.unique_attribute) + except KeyError: + pass + result[item_id] = data + return result + + def notify_list_changed(self): + if self._list_changed_event: + get_event_handler().emit_event(self._list_changed_event) + + def validate(self): + for item in self._data: + item.validate() + + +class BaseCollectionItemDataContainer(BaseDataContainer): + + # the name of the collection should be overwritten in every subclass + collection_name = None + list_changed_event = None + unique_attribute = "uuid" + + def __init__(self, item_id, data, add_to_collection=True): + super().__init__(data) + assert self.collection_name is not None, ( + "Missing unique attribute ({}) of '{}' class" + .format(self.unique_attribute, get_type_name(self))) + if item_id is None: + item_id = uuid.uuid4().hex + try: + hash(item_id) + except TypeError: + raise InvalidDataError("Invalid item ID ({}): not hashable".format(item_id)) + self._data[self.unique_attribute] = item_id + if add_to_collection: + self.get_collection().append(self) + + def get_id(self): + return self.get_dict()[self.unique_attribute] + + @classmethod + def get_collection(cls): + try: + return _data_collections[cls.collection_name] + except KeyError: + collection = BaseCollection(cls.collection_name, + list_changed_event=cls.list_changed_event) + _data_collections[cls.collection_name] = collection + return collection + + +class Source(BaseDataContainer): + + attribute_converters = { + "type": _get_enum_resolver(SourceType), + "models": _get_collection_resolver(CollectionName.MODELS, many=True), + "layout": _get_enum_resolver(SupportBridgesLayout), + "distribution": _get_enum_resolver(DistributionStrategy), + ("grid", "distances"): functools.partial(_axes_values_converter, wanted_axes="xy"), + ("grid", "offsets", "x"): _get_list_resolver(float), + ("grid", "offsets", "y"): _get_list_resolver(float), + ("shape", "height"): float, + ("shape", "thickness"): float, + ("shape", "length"): float, + "average_distance": float, + "minimum_count": int, + } + attribute_defaults = { + ("grid", "offsets", "x"): [], + ("grid", "offsets", "y"): [], + "minimum_count": 3, + "average_distance": None, + } + + def __hash__(self): + source_type = self.get_value("type") + if source_type == SourceType.COPY: + raise TypeError("unhashable generic source") + elif source_type in (SourceType.FILE, SourceType.URL): + return hash(self.get_value("location")) + elif source_type == SourceType.MODEL: + return hash(self._get_source_model()) + elif source_type == SourceType.TASK: + return hash(self._get_source_task()) + elif source_type == SourceType.TOOLPATH: + return hash(self._get_source_toolpath()) + elif source_type == SourceType.OBJECT: + return hash(self._get_source_object()) + elif source_type == SourceType.SUPPORT_BRIDGES: + return hash(self._get_source_support_bridges()) + else: + raise InvalidKeyError(source_type, SourceType) + + @CacheStorage({"type"}) + @_set_parser_context("Source") + def get(self, related_collection_name): + _log.debug("Retrieving source {}".format(self)) + source_type = self.get_value("type") + if source_type == SourceType.COPY: + if related_collection_name is None: + # handle "validate" check gracefully + raise ValueError("'related_collection_name' may not be None") + else: + return self._get_source_copy(related_collection_name) + elif source_type in (SourceType.FILE, SourceType.URL): + return self._get_source_location(source_type) + elif source_type == SourceType.MODEL: + return self._get_source_model() + elif source_type == SourceType.TASK: + return self._get_source_task() + elif source_type == SourceType.TOOLPATH: + return self._get_source_toolpath() + elif source_type == SourceType.OBJECT: + return self._get_source_object() + elif source_type == SourceType.SUPPORT_BRIDGES: + return self._get_source_support_bridges() + else: + raise InvalidKeyError(source_type, SourceType) + + @_set_parser_context("Source 'copy'") + @_set_allowed_attributes({"type", "original"}) + def _get_source_copy(self, related_collection_name): + source_name = self.get_value("original") + return _get_from_collection(related_collection_name, source_name).get_model() + + @_set_parser_context("Source 'file/url'") + @_set_allowed_attributes({"type", "location"}) + def _get_source_location(self, source_type): + location = self.get_value("location") + if source_type == SourceType.FILE: + if not os.path.isabs(location): + # try to guess the absolute location + # TODO: add the directory of the most recently loaded workspace file + # guess the git base directory + git_checkout_dir = os.path.join(os.path.dirname(__file__), + os.path.pardir, os.path.pardir) + search_directories = [os.getcwd(), git_checkout_dir] + abs_location = get_data_file_location(location, silent=True, + priority_directories=search_directories) + # hopefully it worked - otherwise normal error handling will happen + if abs_location is not None: + location = abs_location + location = "file://" + os.path.abspath(location) + try: + detected_filetype = detect_file_type(location) + except MissingDependencyError as exc: + _log.critical(exc) + raise LoadFileError(exc) + if detected_filetype: + try: + return detected_filetype.importer(detected_filetype.uri) + except LoadFileError as exc: + raise InvalidDataError("Failed to detect file type ({}): {}".format(location, exc)) + else: + raise InvalidDataError("Failed to load data from '{}'".format(location)) + + @_set_parser_context("Source 'model'") + @_set_allowed_attributes({"type", "items"}) + def _get_source_model(self): + model_names = self.get_value("items") + return _get_from_collection(CollectionName.MODELS, model_names, many=True) + + @_set_parser_context("Source 'task'") + @_set_allowed_attributes({"type", "item"}) + def _get_source_task(self): + task_name = self.get_value("item") + return _get_from_collection(CollectionName.TASKS, task_name) + + @_set_parser_context("Source 'toolpath'") + @_set_allowed_attributes({"type", "items"}) + def _get_source_toolpath(self): + toolpath_names = self.get_value("items") + return _get_from_collection(CollectionName.TOOLPATHS, toolpath_names, many=True) + + @_set_parser_context("Source 'object'") + @_set_allowed_attributes({"type", "data"}) + def _get_source_object(self): + """ transfer method for intra-process transfer """ + return self.get_value("data") + + @staticmethod + def _get_values_or_repeat_last(input_values, default=0): + """ pass through values taken from an input list + + The last value is repeated forever, after the input list is exhausted. + In case of an empty list, the default value is returned again and again. + """ + value = default + for value in input_values: + yield value + # continue yielding the last value forever + while True: + yield value + + @_set_parser_context("Source 'support_bridges'") + @_set_allowed_attributes({ + "type", "models", "layout", "distribution", ("grid", "distances"), + "average_distance", "minimum_count", ("grid", "offsets", "x"), ("grid", "offsets", "y"), + ("shape", "height"), ("shape", "width"), ("shape", "length")}) + def _get_source_support_bridges(self): + layout = self.get_value("layout") + models = self.get_value("models") + height = self.get_value(("shape", "height")) + width = self.get_value(("shape", "width")) + bridge_length = self.get_value(("shape", "length")) + if layout == SupportBridgesLayout.GRID: + box = pycam.Geometry.Model.get_combined_bounds(model.get_model() for model in models) + if box is None: + return None + else: + grid_distances = self.get_value(("grid", "distances")) + grid_offsets_x = self.get_value(("grid", "offsets", "x")) + grid_offsets_y = self.get_value(("grid", "offsets", "y")) + return pycam.Toolpath.SupportGrid.get_support_grid( + box.lower.x, box.upper.x, box.lower.y, box.upper.y, box.lower.z, + grid_distances.x, grid_distances.y, height, width, bridge_length, + adjustments_x=self._get_values_or_repeat_last(grid_offsets_x), + adjustments_y=self._get_values_or_repeat_last(grid_offsets_y)) + elif layout == SupportBridgesLayout.DISTRIBUTED: + if not models: + return None + else: + distribution = self.get_value("distribution") + minimum_count = self.get_value("minimum_count") + average_distance = self.get_value("average_distance") + box = pycam.Geometry.Model.get_combined_bounds(model.get_model() + for model in models) + if box is None: + return None + else: + if distribution == DistributionStrategy.CORNERS: + start_at_corners = True + elif distribution == DistributionStrategy.EVENLY: + start_at_corners = False + else: + assert False + if average_distance is None: + dim_x, dim_y = box.get_dimensions()[:2] + # default distance: at least three pieces per side + average_distance = (dim_x + dim_y) / 6 + combined_model = pycam.Geometry.Model.get_combined_model(model.get_model() + for model in models) + return pycam.Toolpath.SupportGrid.get_support_distributed( + combined_model, combined_model.minz, average_distance, minimum_count, + width, height, bridge_length, start_at_corners=start_at_corners) + else: + assert False + + def validate(self): + try: + # try it with a invalid "related_collection_name" - hopefully it works + self.get(None) + except ValueError: + # The "copy" source requires a suitable "related_collection_name" parameter. Thus we + # cannot fully check the validity. + pass + + +class ModelTransformation(BaseDataContainer): + + attribute_converters = {"action": _get_enum_resolver(ModelTransformationAction), + "scale_target": _get_enum_resolver(ModelScaleTarget), + "shift_target": _get_enum_resolver(PositionShiftTarget), + "center": _axes_values_converter, + "vector": _axes_values_converter, + "angle": float, + "axes": functools.partial(_axes_values_converter, allow_none=True)} + + def get_transformed_model(self, model): + action = self.get_value("action") + if action == ModelTransformationAction.SCALE: + return self._get_scaled_model(model) + elif action == ModelTransformationAction.SHIFT: + return self._get_shifted_model(model) + elif action == ModelTransformationAction.ROTATE: + return self._get_rotated_model(model) + elif action == ModelTransformationAction.MULTIPLY_MATRIX: + return self._get_matrix_multiplied_model(model) + elif action == ModelTransformationAction.PROJECTION: + return self._get_projected_model(model) + elif action in (ModelTransformationAction.TOGGLE_POLYGON_DIRECTIONS, + ModelTransformationAction.REVISE_POLYGON_DIRECTIONS): + return self._get_polygon_transformed(model) + else: + raise InvalidKeyError(action, ModelTransformationAction) + + @_set_parser_context("Model transformation 'scale'") + @_set_allowed_attributes({"action", "scale_target", "axes"}) + def _get_scaled_model(self, model): + target = self.get_value("scale_target") + axes = self.get_value("axes") + kwargs = {} + if target == ModelScaleTarget.FACTOR: + for key, value in zip(("scale_x", "scale_y", "scale_z"), axes): + kwargs[key] = 1.0 if value is None else value + elif target == ModelScaleTarget.SIZE: + for key, current_size, target_size in zip( + ("scale_x", "scale_y", "scale_z"), model.get_dimensions(), axes): + if target_size == 0: + raise InvalidDataError("Model transformation 'scale' does not accept " + "zero as a target size ({}).".format(key)) + elif target_size is None: + kwargs[key] = 1.0 + elif current_size == 0: + kwargs[key] = 1.0 + # don't scale axis if it's flat + else: + kwargs[key] = target_size / current_size + else: + assert False + new_model = model.copy() + with ProgressContext("Scaling model") as progress: + new_model.scale(callback=progress.update, **kwargs) + return new_model + + @_set_parser_context("Model transformation 'shift'") + @_set_allowed_attributes({"action", "shift_target", "axes"}) + def _get_shifted_model(self, model): + target = self.get_value("shift_target") + axes = self.get_value("axes") + offset = target._get_shift_offset(target, axes, model) + new_model = model.copy() + with ProgressContext("Shifting Model") as progress: + new_model.shift(*offset, callback=progress.update) + return new_model + + @_set_parser_context("Model transformation 'rotate'") + @_set_allowed_attributes({"action", "center", "vector", "angle"}) + def _get_rotated_model(self, model): + center = self.get_value("center") + vector = self.get_value("vector") + angle = self.get_value("angle") + new_model = model.copy() + with ProgressContext("Rotating Model") as progress: + new_model.rotate(center, vector, angle, callback=progress.update) + return new_model + + @_set_parser_context("Model transformation 'matrix multiplication'") + @_set_allowed_attributes({"action", "matrix"}) + def _get_matrix_multiplied_model(self, model): + matrix = self.get_value("matrix") + lengths = [len(row) for row in matrix] + if not lengths == [3, 3, 3]: + raise InvalidDataError("Invalid Matrix row lengths ({}) - expected [3, 3, 3] instead." + .format(lengths)) + # add zero shift offsets (the fourth column) + for row in matrix: + row.append(0) + new_model = model.copy() + with ProgressContext("Transform Model") as progress: + new_model.transform_by_matrix(matrix, callback=progress.update) + return new_model + + @_set_parser_context("Model transformation 'projection'") + @_set_allowed_attributes({"action", "center", "vector"}) + @_require_model_type(ModelType.TRIMESH) + def _get_projected_model(self, model): + center = self.get_value("center") + vector = self.get_value("vector") + plane = Plane(center, vector) + with ProgressContext("Calculate waterline of model") as progress: + return model.get_waterline_contour(plane, callback=progress.update) + + @_set_parser_context("Model transformation 'polygon directions'") + @_set_allowed_attributes({"action"}) + @_require_model_type(ModelType.POLYGON) + def _get_polygon_transformed(self, model): + action = self.get_value("action") + new_model = model.copy() + if action == ModelTransformationAction.REVISE_POLYGON_DIRECTIONS: + with ProgressContext("Revise polygon directions") as progress: + new_model.revise_directions(callback=progress.update) + elif action == ModelTransformationAction.TOGGLE_POLYGON_DIRECTIONS: + with ProgressContext("Reverse polygon directions") as progress: + new_model.reverse_directions(callback=progress.update) + else: + assert False + return new_model + + def validate(self): + model = pycam.Geometry.Model.Model() + self.get_transformed_model(model) + + +class Model(BaseCollectionItemDataContainer): + + collection_name = CollectionName.MODELS + changed_event = "model-changed" + list_changed_event = "model-list-changed" + attribute_converters = {"source": Source, + "transformations": _get_list_resolver(ModelTransformation)} + attribute_defaults = {"transformations": []} + + @CacheStorage({"source", "transformations"}) + @_set_parser_context("Model") + def get_model(self): + _log.debug("Generating model {}".format(self.get_id())) + model = self.get_value("source").get(CollectionName.MODELS) + for transformation in self.get_value("transformations"): + model = transformation.get_transformed_model(model) + return model + + def validate(self): + self.get_model() + + +class Tool(BaseCollectionItemDataContainer): + + collection_name = CollectionName.TOOLS + changed_event = "tool-changed" + list_changed_event = "tool-list-changed" + attribute_converters = {"shape": _get_enum_resolver(ToolShape), + "tool_id": int, + "radius": float, + "diameter": float, + "toroid_radius": float, + "height": float, + "feed": float, + ("spindle", "speed"): float, + ("spindle", "spin_up_delay"): float, + ("spindle", "spin_up_enabled"): _bool_converter} + attribute_defaults = {"tool_id": 1, + "height": 10, + "feed": 300, + ("spindle", "speed"): 1000, + ("spindle", "spin_up_delay"): 0, + ("spindle", "spin_up_enabled"): True} + + @_set_parser_context("Tool") + def get_tool_geometry(self): + height = self.get_value("height") + shape = self.get_value("shape") + if shape == ToolShape.FLAT_BOTTOM: + return CylindricalCutter(self.radius, height=height) + elif shape == ToolShape.BALL_NOSE: + return SphericalCutter(self.radius, height=height) + elif shape == ToolShape.TORUS: + toroid_radius = self.get_value("toroid_radius") + return ToroidalCutter(self.radius, toroid_radius, height=height) + else: + raise InvalidKeyError(shape, ToolShape) + + @property + @_set_parser_context("Tool radius") + def radius(self): + """ offer a uniform interface for retrieving the radius value from "radius" or "diameter" + + May raise MissingAttributeError if valid input sources are missing. + """ + try: + return self.get_value("radius") + except MissingAttributeError: + pass + return self.get_value("diameter") / 2.0 + + @property + def diameter(self): + return 2 * self.radius + + def get_toolpath_filters(self): + result = [] + result.append(tp_filters.SelectTool(self.get_value("tool_id"))) + result.append(tp_filters.MachineSetting("feedrate", self.get_value("feed"))) + result.append(tp_filters.SpindleSpeed(self.get_value(("spindle", "speed")))) + if self.get_value(("spindle", "spin_up_enabled")): + result.append(tp_filters.TriggerSpindle( + delay=self.get_value(("spindle", "spin_up_delay")))) + return result + + def validate(self): + self.get_tool_geometry() + self.get_toolpath_filters() + + +class Process(BaseCollectionItemDataContainer): + + collection_name = CollectionName.PROCESSES + changed_event = "process-changed" + list_changed_event = "process-list-changed" + attribute_converters = {"strategy": _get_enum_resolver(ProcessStrategy), + "milling_style": _get_enum_resolver(MotionGrid.MillingStyle), + "path_pattern": _get_enum_resolver(PathPattern), + "grid_direction": _get_enum_resolver(MotionGrid.GridDirection), + "spiral_direction": _get_enum_resolver(MotionGrid.SpiralDirection), + "pocketing_type": _get_enum_resolver(MotionGrid.PocketingType), + "trace_models": _get_collection_resolver(CollectionName.MODELS, + many=True), + "rounded_corners": _bool_converter, + "radius_compensation": _bool_converter, + "overlap": float, + "step_down": float} + attribute_defaults = {"overlap": 0, + "path_pattern": PathPattern.GRID, + "grid_direction": MotionGrid.GridDirection.X, + "spiral_direction": MotionGrid.SpiralDirection.OUT, + "rounded_corners": True, + "radius_compensation": False} + + @_set_parser_context("Process") + def get_path_generator(self): + _log.debug("Retrieving path generator for process {}".format(self.get_id())) + strategy = _get_enum_value(ProcessStrategy, self.get_value("strategy")) + if strategy == ProcessStrategy.SLICE: + return pycam.PathGenerators.PushCutter.PushCutter(waterlines=False) + elif strategy == ProcessStrategy.CONTOUR: + return pycam.PathGenerators.PushCutter.PushCutter(waterlines=True) + elif strategy == ProcessStrategy.SURFACE: + return pycam.PathGenerators.DropCutter.DropCutter() + elif strategy == ProcessStrategy.ENGRAVE: + return pycam.PathGenerators.EngraveCutter.EngraveCutter() + else: + raise InvalidKeyError(strategy, ProcessStrategy) + + @_set_parser_context("Process") + def get_motion_grid(self, tool_radius, box, recurse_immediately=False): + """ create a generator for the moves to be tried (while respecting obstacles) for a process + """ + _log.debug("Generating motion grid for process {}".format(self.get_id())) + strategy = self.get_value("strategy") + overlap = self.get_value("overlap") + line_distance = 2 * tool_radius * (1 - overlap) + with ProgressContext("Calculating moves") as progress: + if strategy == ProcessStrategy.SLICE: + milling_style = self.get_value("milling_style") + path_pattern = self.get_value("path_pattern") + if path_pattern == PathPattern.SPIRAL: + func = functools.partial(MotionGrid.get_spiral, + spiral_direction=self.get_value("spiral_direction"), + rounded_corners=self.get_value("rounded_corners")) + elif path_pattern == PathPattern.GRID: + func = functools.partial(MotionGrid.get_fixed_grid, + grid_direction=self.get_value("grid_direction")) + else: + raise InvalidKeyError(path_pattern, PathPattern) + motion_grid = func(box, self.get_value("step_down"), line_distance=line_distance, + milling_style=milling_style) + elif strategy == ProcessStrategy.CONTOUR: + # The waterline only works with a millingstyle generating parallel lines in the + # same direction (not going backwards and forwards). Thus we just pick one of the + # "same direction" styles. + # TODO: probably the milling style should be configurable (but never "IGNORE"). + motion_grid = MotionGrid.get_fixed_grid( + box, self.get_value("step_down"), line_distance=line_distance, + grid_direction=MotionGrid.GridDirection.X, + milling_style=MotionGrid.MillingStyle.CONVENTIONAL, + use_fixed_start_position=True) + elif strategy == ProcessStrategy.SURFACE: + milling_style = self.get_value("milling_style") + path_pattern = self.get_value("path_pattern") + if path_pattern == PathPattern.SPIRAL: + func = functools.partial(MotionGrid.get_spiral, + spiral_direction=self.get_value("spiral_direction"), + rounded_corners=self.get_value("rounded_corners")) + elif path_pattern == PathPattern.GRID: + func = functools.partial(MotionGrid.get_fixed_grid, + grid_direction=self.get_value("grid_direction")) + else: + raise InvalidKeyError(path_pattern, PathPattern) + # surfacing requires a finer grid (arbitrary factor) + step_width = tool_radius / 4.0 + motion_grid = func(box, None, step_width=step_width, line_distance=line_distance, + milling_style=milling_style) + elif strategy == ProcessStrategy.ENGRAVE: + milling_style = self.get_value("milling_style") + models = [m.get_model() for m in self.get_value("trace_models")] + if not models: + _log.error("No trace models given: you need to assign a 2D model to the " + "engraving process.") + return None + radius_compensation = self.get_value("radius_compensation") + if radius_compensation: + with ProgressContext("Offsetting models") as offset_progress: + offset_progress.set_multiple(len(models), "Model") + for index, model in enumerate(models): + models[index] = model.get_offset_model(tool_radius, + callback=offset_progress.update) + offset_progress.update_multiple() + line_distance = 1.8 * tool_radius + step_width = tool_radius / 4.0 + pocketing_type = self.get_value("pocketing_type") + motion_grid = MotionGrid.get_lines_grid( + models, box, self.get_value("step_down"), line_distance=line_distance, + step_width=step_width, milling_style=milling_style, + pocketing_type=pocketing_type, skip_first_layer=True, callback=progress.update) + else: + raise InvalidKeyError(strategy, ProcessStrategy) + if recurse_immediately: + motion_grid = MotionGrid.resolve_multi_level_generator(motion_grid, 2) + return motion_grid + + def validate(self): + self.get_path_generator() + self.get_motion_grid(tool_radius=1, box=Box3D(Point3D(0, 0, 0), Point3D(1, 1, 1))) + + +class Boundary(BaseCollectionItemDataContainer): + + collection_name = CollectionName.BOUNDS + changed_event = "bounds-changed" + list_changed_event = "bounds-list-changed" + attribute_converters = {"specification": _get_enum_resolver(BoundsSpecification), + "reference_models": _get_collection_resolver(CollectionName.MODELS, + many=True), + "lower": _limit3d_converter, + "upper": _limit3d_converter, + "tool_boundary": _get_enum_resolver(ToolBoundaryMode)} + attribute_defaults = {"tool_boundary": ToolBoundaryMode.ALONG, + "reference_models": []} + + @_set_parser_context("Boundary") + def coerce_limits(self, models=None): + abs_boundary = self.get_absolute_limits(models=models) + if abs_boundary is None: + # nothing to be changed + return + for axis_name, lower, upper in (("X", abs_boundary.minx, abs_boundary.maxx), + ("Y", abs_boundary.miny, abs_boundary.maxy), + ("Z", abs_boundary.minz, abs_boundary.maxz)): + if upper < lower: + # TODO: implement boundary adjustment in case of conflicts + _log.warning("Negative Boundary encountered for %s: %g < %g. " + "Coercing is not implemented, yet.", axis_name, lower, upper) + + @CacheStorage({"specification", "reference_models", "lower", "upper", "tool_boundary"}) + @_set_parser_context("Boundary") + def get_absolute_limits(self, tool_radius=None, models=None): + lower = self.get_value("lower") + upper = self.get_value("upper") + if self.get_value("specification") == BoundsSpecification.MARGINS: + # choose the appropriate set of models + reference_models = self.get_value("reference_models") + if reference_models: + # configured models always take precedence + models = reference_models + elif models: + # use the supplied models (e.g. for toolpath calculation) + pass + else: + # use all visible models -> for live visualization + # TODO: filter for visible models + models = Model.get_collection() + model_box = pycam.Geometry.Model.get_combined_bounds([model.get_model() + for model in models]) + if model_box is None: + # zero-sized models -> no action + return None + low, high = [], [] + for model_lower, model_upper, margin_lower, margin_upper in zip( + model_box.lower, model_box.upper, lower, upper): + dim = model_upper - model_lower + if margin_lower.is_relative: + low.append(model_lower - margin_lower.value * dim) + else: + low.append(model_lower - margin_lower.value) + if margin_upper.is_relative: + high.append(model_upper + margin_upper.value * dim) + else: + high.append(model_upper + margin_upper.value) + else: + # absolute boundary + low, high = [], [] + for abs_lower, abs_upper in zip(lower, upper): + if abs_lower.is_relative: + raise InvalidDataError("Relative (%) values not allowed for absolute boundary") + low.append(abs_lower.value) + if abs_upper.is_relative: + raise InvalidDataError("Relative (%) values not allowed for absolute boundary") + high.append(abs_upper.value) + tool_limit = self.get_value("tool_boundary") + # apply inside/along/outside if a tool is given + if tool_radius and (tool_limit != ToolBoundaryMode.ALONG): + if tool_limit == ToolBoundaryMode.INSIDE: + offset = -tool_radius + else: + offset = tool_radius + # apply offset only for x and y + for index in range(2): + low[index] -= offset + high[index] += offset + return Box3D(Point3D(*low), Point3D(*high)) + + def validate(self): + self.get_absolute_limits() + + +class Task(BaseCollectionItemDataContainer): + + collection_name = CollectionName.TASKS + changed_event = "task-changed" + list_changed_event = "task-list-changed" + attribute_converters = {"process": _get_collection_resolver(CollectionName.PROCESSES), + "bounds": _get_collection_resolver(CollectionName.BOUNDS), + "tool": _get_collection_resolver(CollectionName.TOOLS), + "type": _get_enum_resolver(TaskType), + "collision_models": _get_collection_resolver(CollectionName.MODELS, + many=True)} + + @CacheStorage({"process", "bounds", "tool", "type", "collision_models"}) + @_set_parser_context("Task") + def generate_toolpath(self): + _log.debug("Generating toolpath for task {}".format(self.get_id())) + process = self.get_value("process") + bounds = self.get_value("bounds") + task_type = self.get_value("type") + if task_type == TaskType.MILLING: + tool = self.get_value("tool") + box = bounds.get_absolute_limits(tool_radius=tool.radius, + models=self.get_value("collision_models")) + path_generator = process.get_path_generator() + if path_generator is None: + # we assume that an error message was given already + return + models = [m.get_model() for m in self.get_value("collision_models")] + if not models: + # issue a warning - and go ahead ... + _log.warn("No collision model was selected. This can be intentional, but maybe " + "you simply forgot it.") + motion_grid = process.get_motion_grid(tool.radius, box, recurse_immediately=True) + _log.debug("MotionGrid completed") + if motion_grid is None: + # we assume that an error message was given already + return + with ProgressContext("Calculating toolpath") as progress: + draw_callback = UpdateToolView( + progress.update, + max_fps=get_event_handler().get("tool_progress_max_fps", 1)).update + moves = path_generator.generate_toolpath( + tool.get_tool_geometry(), models, motion_grid, minz=box.lower.z, + maxz=box.upper.z, draw_callback=draw_callback) + if not moves: + _log.info("No valid moves found") + return None + return pycam.Toolpath.Toolpath(toolpath_path=moves, tool=tool, + toolpath_filters=tool.get_toolpath_filters()) + else: + raise InvalidKeyError(task_type, TaskType) + + def validate(self): + # We cannot call "get_toolpath" - this would be too expensive. Use its attribute accesses + # directly instead. + self.get_value("process") + self.get_value("bounds") + task_type = self.get_value("type") + if task_type != TaskType.MILLING: + raise InvalidKeyError(task_type, TaskType) + + +class ToolpathTransformation(BaseDataContainer): + + attribute_converters = {"action": _get_enum_resolver(ToolpathTransformationAction), + # TODO: we should add and implement 'allow_percent=True' here + "offset": _axes_values_converter, + "clone_count": int, + "lower": functools.partial(_axes_values_converter, allow_none=True), + "upper": functools.partial(_axes_values_converter, allow_none=True), + "shift_target": _get_enum_resolver(PositionShiftTarget), + "axes": functools.partial(_axes_values_converter, allow_none=True), + "models": _get_collection_resolver(CollectionName.MODELS, many=True)} + + def get_transformed_toolpath(self, toolpath): + action = self.get_value("action") + if action == ToolpathTransformationAction.CROP: + return self._get_cropped_toolpath(toolpath) + elif action == ToolpathTransformationAction.CLONE: + return self._get_cloned_toolpath(toolpath) + elif action == ToolpathTransformationAction.SHIFT: + return self._get_shifted_toolpath(toolpath) + else: + raise InvalidKeyError(action, ToolpathTransformationAction) + + @CacheStorage({"action", "offset", "clone_count"}) + @_set_parser_context("Toolpath transformation 'clone'") + @_set_allowed_attributes({"action", "offset", "clone_count"}) + def _get_cloned_toolpath(self, toolpath): + offset = self.get_value("offset") + clone_count = self.get_value("clone_count") + new_moves = list(toolpath.path) + for index in range(1, (clone_count + 1)): + shift_matrix = ((1, 0, 0, index * offset[0]), + (0, 1, 0, index * offset[1]), + (0, 0, 1, index * offset[2])) + shifted = toolpath | tp_filters.TransformPosition(shift_matrix) + new_moves.extend(shifted) + new_toolpath = toolpath.copy() + new_toolpath.path = new_moves + return new_toolpath + + @CacheStorage({"action", "shift_target", "axes"}) + @_set_parser_context("Model transformation 'shift'") + @_set_allowed_attributes({"action", "shift_target", "axes"}) + def _get_shifted_toolpath(self, toolpath): + target = self.get_value("shift_target") + axes = self.get_value("axes") + offset = target._get_shift_offset(target, axes, toolpath) + shift_matrix = ((1, 0, 0, offset[0]), + (0, 1, 0, offset[1]), + (0, 0, 1, offset[2])) + new_toolpath = toolpath.copy() + new_toolpath.path = toolpath | tp_filters.TransformPosition(shift_matrix) + return new_toolpath + + @CacheStorage({"action", "models"}) + @_set_parser_context("Model transformation 'crop'") + @_set_allowed_attributes({"action", "models"}) + def _get_cropped_toolpath(self, toolpath): + polygons = [] + for model in [m.get_model() for m in self.get_value("models")]: + if hasattr(model, "get_polygons"): + polygons.extend(model.get_polygons()) + else: + raise InvalidDataError("Toolpath Crop: 'models' may only contain 2D models") + # Store the new toolpath first separately - otherwise we can't + # revert the changes in case of an empty result. + new_moves = toolpath | tp_filters.Crop(polygons) + if new_moves | tp_filters.MovesOnly(): + new_toolpath = toolpath.copy() + new_toolpath.path = new_moves + return new_toolpath + else: + _log.info("Toolpath cropping: the result is empty") + return None + + def validate(self): + toolpath = pycam.Toolpath.Toolpath() + self.get_transformed_toolpath(toolpath) + + +class Toolpath(BaseCollectionItemDataContainer): + + collection_name = CollectionName.TOOLPATHS + changed_event = "toolpath-changed" + list_changed_event = "toolpath-list-changed" + attribute_converters = {"source": Source, + "transformations": _get_list_resolver(ToolpathTransformation)} + attribute_defaults = {"transformations": []} + + @CacheStorage({"source", "transformations"}) + @_set_parser_context("Toolpath") + def get_toolpath(self): + _log.debug("Generating toolpath {}".format(self.get_id())) + task = self.get_value("source").get(CollectionName.TOOLPATHS) + toolpath = task.generate_toolpath() + for transformation in self.get_value("transformations"): + # the toolpath may be empty or invalidated by a transformation + if toolpath is not None: + toolpath = transformation.get_transformed_toolpath(toolpath) + return toolpath + + def append_transformation(self, transform_dict): + current_transformations = self.get_value("transformations", raw=True) + current_transformations.append(copy.deepcopy(transform_dict)) + # verify the result (bail out on error) + self.attribute_converters["transformations"](current_transformations) + # there was no problem - overwrite the previous transformations + self.set_value("transformations", current_transformations) + + def validate(self): + self.get_toolpath() + + +class ExportSettings(BaseCollectionItemDataContainer): + + collection_name = CollectionName.EXPORT_SETTINGS + changed_event = "export-settings-changed" + list_changed_event = "export-settings-list-changed" + + attribute_converters = {("gcode", ToolpathFilter.UNIT.value): _get_enum_resolver(LengthUnit)} + attribute_defaults = {("gcode", ToolpathFilter.UNIT.value): LengthUnit.METRIC_MM} + + def get_settings_by_type(self, export_type): + return self.get_dict().get(export_type, {}) + + def set_settings_by_type(self, export_type, value): + return self.set_value(export_type, value) + + @_set_parser_context("Export settings") + def get_toolpath_filters(self): + result = [] + for text_name, parameters in self.get_settings_by_type("gcode").items(): + filter_name = _get_enum_value(ToolpathFilter, text_name) + if filter_name == ToolpathFilter.SAFETY_HEIGHT: + result.append(tp_filters.SafetyHeight(float(parameters))) + elif filter_name == ToolpathFilter.PLUNGE_FEEDRATE: + result.append(tp_filters.PlungeFeedrate(float(parameters))) + elif filter_name == ToolpathFilter.STEP_WIDTH: + result.append(tp_filters.StepWidth({key: float(parameters[key]) for key in "xyz"})) + elif filter_name == ToolpathFilter.CORNER_STYLE: + mode = _get_enum_value(pycam.Toolpath.ToolpathPathMode, parameters["mode"]) + motion_tolerance = parameters.get("motion_tolerance", 0) + naive_tolerance = parameters.get("naive_tolerance", 0) + result.append(tp_filters.CornerStyle(mode, motion_tolerance, naive_tolerance)) + elif filter_name == ToolpathFilter.FILENAME_EXTENSION: + # this export setting is only used for filename dialogs + pass + elif filter_name == ToolpathFilter.UNIT: + unit = _get_enum_value(LengthUnit, parameters) + result.append(tp_filters.MachineSetting("unit", unit)) + elif filter_name == ToolpathFilter.TOUCH_OFF: + # TODO: implement this (see pycam/Exporters/GCodeExporter.py) + pass + else: + raise InvalidKeyError(filter_name, ToolpathFilter) + return result + + def validate(self): + self.get_toolpath_filters() + + +class Target(BaseDataContainer): + + attribute_converters = {"type": _get_enum_resolver(TargetType)} + + @_set_parser_context("Export target") + def open(self, dry_run=False): + _log.debug("Opening target {}".format(self)) + target_type = self.get_value("type") + if target_type == TargetType.FILE: + location = self.get_value("location") + if dry_run: + # run basic checks and raise errors in case of obvious problems + if not os.path.isdir(os.path.dirname(location)): + raise LoadFileError("Directory of target ({}) does not exist" + .format(location)) + else: + try: + return open(location, "w") + except OSError as exc: + raise LoadFileError(exc) + else: + raise InvalidKeyError(target_type, TargetType) + + def validate(self): + self.open(dry_run=True) + + +class Formatter(BaseDataContainer): + + attribute_converters = {"type": _get_enum_resolver(FormatType), + "filetype": _get_enum_resolver(FileType), + "dialect": _get_enum_resolver(GCodeDialect), + "export_settings": _get_collection_resolver( + CollectionName.EXPORT_SETTINGS)} + attribute_defaults = {"dialect": GCodeDialect.LINUXCNC, + "export_settings": None, + "comment": ""} + + @staticmethod + def _test_sources(items, test_function, message_template): + failing_items = [item for item in items if not test_function(item)] + if failing_items: + raise InvalidDataError( + message_template.format(" / ".join(get_type_name(item) for item in failing_items))) + + @_set_parser_context("Export formatter: type selection") + def write_data(self, source, target): + _log.debug("Writing formatter data {}".format(self)) + # we expect a tuple of items as input + if not isinstance(source, (list, tuple)): + raise InvalidDataError("Invalid source data type: {} (expected: list of items)" + .format(get_type_name(source))) + format_type = self.get_value("type") + if format_type == FormatType.GCODE: + self._test_sources(source, lambda item: isinstance(item, Toolpath), + "Invalid source data type: {} (expected: list of toolpaths)") + return self._write_gcode(source, target) + elif format_type == FormatType.MODEL: + self._test_sources(source, lambda item: isinstance(item, Model), + "Invalid source data type: {} (expected: list of models)") + self._test_sources(source, lambda item: item.get_model().is_export_supported(), + "Sources lacking 'export' support: {}") + return self._write_model(source, target) + else: + raise InvalidKeyError(format_type, FormatType) + + @_set_parser_context("Export formatter 'GCode'") + @_set_allowed_attributes({"type", "comment", "dialect", "export_settings"}) + def _write_gcode(self, source, target): + comment = self.get_value("comment") + dialect = self.get_value("dialect") + if dialect == GCodeDialect.LINUXCNC: + generator = pycam.Exporters.GCode.LinuxCNC.LinuxCNC(target, comment=comment) + else: + raise InvalidKeyError(dialect, GCodeDialect) + export_settings = self.get_value("export_settings") + if export_settings: + generator.add_filters(export_settings.get_toolpath_filters()) + for toolpath in source: + calculated = toolpath.get_toolpath() + # TODO: implement toolpath.get_meta_data() + generator.add_moves(calculated.path, calculated.filters) + generator.finish() + target.close() + return True + + @_set_parser_context("Export formatter 'Model'") + @_set_allowed_attributes({"type", "filetype"}) + def _write_model(self, source, target): + source = tuple(source) + if source: + export_name = " / ".join(item.get_id() for item in source) + else: + export_name = "unknown" + combined_model = pycam.Geometry.Model.get_combined_model(item.get_model() + for item in source) + filetype = self.get_value("filetype") + if filetype == FileType.STL: + from pycam.Exporters.STLExporter import STLExporter + self._test_sources(source, lambda item: hasattr(item.get_model(), "triangles"), + "Models without triangles: {}") + exporter = STLExporter(combined_model, name=export_name) + exporter.write(target) + target.close() + else: + raise InvalidKeyError(filetype, FileType) + + def validate(self): + self.write_data([], io.StringIO()) + + +class Export(BaseCollectionItemDataContainer): + + collection_name = CollectionName.EXPORTS + attribute_converters = {"format": Formatter, + "source": Source, + "target": Target} + + def run_export(self, dry_run=False): + _log.debug("Running export {}".format(self.get_id())) + formatter = self.get_value("format") + source = self.get_value("source").get(CollectionName.EXPORTS) + target = self.get_value("target") + if dry_run: + open_target = io.StringIO() + else: + open_target = target.open() + formatter.write_data(source, open_target) + + def validate(self): + self.run_export(dry_run=True) diff --git a/pycam/pyinstaller/hooks/hook-pycam.py b/pycam/pyinstaller/hooks/hook-pycam.py new file mode 100644 index 00000000..ce5c8fa3 --- /dev/null +++ b/pycam/pyinstaller/hooks/hook-pycam.py @@ -0,0 +1,3 @@ +# keysyms does not seem to be recognized by pyinstaller +# There will be exceptions after any keypress without this line. +hiddenimports = ["gtk.keysyms"] diff --git a/pycam/pyinstaller/pycam.spec b/pycam/pyinstaller/pycam.spec new file mode 100644 index 00000000..4ec594d0 --- /dev/null +++ b/pycam/pyinstaller/pycam.spec @@ -0,0 +1,197 @@ +# -*- mode: python -*- + +BASE_DIR = os.path.realpath(os.path.join(os.path.dirname(locals()["spec"]), + os.path.pardir)) + +# add the project's source directory to PYTHONPATH +sys.path.insert(0, os.path.join(BASE_DIR, "src")) +from pycam.Utils import get_platform, PLATFORM_LINUX, PLATFORM_WINDOWS, PLATFORM_MACOS +from pycam import VERSION + + +USE_DEBUG=False +UI_DATA_RELATIVE = os.path.join("share", "ui") +UI_DATA_DIR = os.path.join(BASE_DIR, UI_DATA_RELATIVE) +ORIGINAL_STARTUP_SCRIPT = os.path.join(BASE_DIR, "pycam") + +# renaming the STARTUP_SCRIPTS seems to be necessary only for Windows +rename_startup_script = (get_platform() == PLATFORM_WINDOWS) + +if rename_startup_script: + # We need to use a startup file ending with ".py" to allow forking in + # multiprocessing mode. Copy "pycam" to this file and remove it at the end. + STARTUP_SCRIPT = os.path.join(BASE_DIR, "pycamGUI.py") +else: + STARTUP_SCRIPT = ORIGINAL_STARTUP_SCRIPT + +data = [] +data.extend(Tree(UI_DATA_DIR, prefix=UI_DATA_RELATIVE)) + +# sample models +data.extend(Tree(os.path.join(BASE_DIR, "samples"), prefix="samples")) +# single-line fonts +data.extend(Tree(os.path.join(BASE_DIR, "share", "fonts"), prefix=os.path.join("share", "fonts"))) +# icon file +icon_file = os.path.join(BASE_DIR, "share", "pycam.ico") + + +if get_platform() == PLATFORM_WINDOWS: + # look for the location of "libpixbufloader-png.dll" (for Windows standalone executable) + start_dirs = (os.path.join(os.environ["PROGRAMFILES"], "Common files", "Gtk"), + os.path.join(os.environ["COMMONPROGRAMFILES"], "Gtk"), + r"C:\\") + def find_filename_below_dirs(dirs, filename): + for start_dir in dirs: + for root, dirs, files in os.walk(start_dir): + if filename in files: + return root + return None + gtk_loaders_dir = find_filename_below_dirs(start_dirs, "libpixbufloader-png.dll") + if gtk_loaders_dir is None: + print("Failed to locate Gtk installation (looking for libpixbufloader-png.dll)", + file=sys.stderr) + #sys.exit(1) + gtk_loaders_dir = start_dirs[0] + + # configure the pixbufloader (for the Windows standalone executable) + config_dir = gtk_loaders_dir + config_relative = os.path.join("etc", "gtk-2.0", "gdk-pixbuf.loaders") + while not os.path.isfile(os.path.join(config_dir, config_relative)): + new_config_dir = os.path.dirname(config_dir) + if (not new_config_dir) or (new_config_dir == config_dir): + print("Failed to locate '%s' around '%s'" % (config_relative, gtk_loaders_dir), + file=sys.stderr) + config_dir = None + break + config_dir = new_config_dir + + if config_dir: + gtk_pixbuf_config_file = os.path.join(config_dir, config_relative) + data.append((config_relative, os.path.join(config_dir, config_relative), "DATA")) + + # look for the GTK theme "MS-Windows" + # the required gtkrc file is loaded during startup + import _winreg + try: + k = _winreg.OpenKey(_winreg.HKEY_LOCAL_MACHINE, 'Software\\GTK2-Runtime') + except EnvironmentError: + print("Failed to detect the GTK2 runtime environment - the Windows theme will be missing") + gtkdir = None + else: + gtkdir = str(_winreg.QueryValueEx(k, 'InstallationDirectory')[0]) + + if gtkdir: + # we only need this dll file + wimp_engine_file = "libwimp.dll" + engine_dir = find_filename_below_dirs([gtkdir], wimp_engine_file) + if engine_dir: + if engine_dir.startswith(gtkdir): + relative_engine_dir = engine_dir[len(gtkdir):] + else: + relative_engine_dir = engine_dir + engine_dll = os.path.join(engine_dir, wimp_engine_file) + relative_engine_dll = os.path.join(relative_engine_dir, + wimp_engine_file) + data.append((relative_engine_dll, engine_dll, "BINARY")) + + + # somehow we need to add glut32.dll manually + glut32_dll = find_filename_below_dirs([sys.prefix], "glut32.dll") + if glut32_dll: + data.append((os.path.basename(glut32_dll), glut32_dll, "BINARY")) + sys_path_dirs = os.environ["PATH"].split(os.path.pathsep) + gdkglext_dll = find_filename_below_dirs(sys_path_dirs, + "libgdkglext-win32-1.0-0.dll") + if gdkglext_dll: + data.append((os.path.basename(gdkglext_dll), gdkglext_dll, "BINARY")) + + def get_pixbuf_loaders_prefix(gtk_loaders_dir): + prefix = [] + path_splits = gtk_loaders_dir.split(os.path.sep) + while path_splits and (not prefix or (prefix[-1].lower() != "lib")): + prefix.append(path_splits.pop()) + if prefix[-1].lower() == "lib": + prefix.reverse() + #return "\\".join(prefix) + return os.path.join(*prefix) + else: + return None + + gtk_pixbuf_loaders_prefix = get_pixbuf_loaders_prefix(gtk_loaders_dir) + if gtk_pixbuf_loaders_prefix is None: + print("Failed to extract the prefix from '%s'" % gtk_loaders_dir, file=sys.stderr) + # no additional files + else: + data.extend(Tree(gtk_loaders_dir, prefix=gtk_pixbuf_loaders_prefix)) +elif get_platform() == PLATFORM_LINUX: + pass +elif get_platform() == PLATFORM_MACOS: + pass + + +# do the STARTUP_SCRIPT/ORIGINAL_STARTUP_SCRIPT renaming before build +if rename_startup_script: + if os.path.exists(STARTUP_SCRIPT): + print("New startup script already exists: %s" % STARTUP_SCRIPT) + else: + os.rename(ORIGINAL_STARTUP_SCRIPT, STARTUP_SCRIPT) + + +analyze_scripts = [STARTUP_SCRIPT] +if get_platform() == PLATFORM_WINDOWS: + analyze_scripts.insert(0, os.path.join(HOMEPATH,'support\\_mountzlib.py')) + analyze_scripts.insert(1, os.path.join(HOMEPATH,'support\\useUnicode.py')) + output_name = os.path.join(BASE_DIR, "pycam-%s_standalone.exe" % VERSION) +elif get_platform() == PLATFORM_LINUX: + analyze_scripts.insert(0, os.path.join(HOMEPATH,'support/_mountzlib.py')) + analyze_scripts.insert(1, os.path.join(HOMEPATH,'support/useUnicode.py')) + #output_name=os.path.join('build/pyi.linux2/pycam', 'pycam') + output_name = os.path.join(BASE_DIR, "pycam-%s_standalone.bin" % VERSION) +elif get_platform() == PLATFORM_MACOS: + output_name = os.path.join(BASE_DIR, "pycam-%s_standalone.dmg" % VERSION) + + +a = Analysis(analyze_scripts, + #pathex=[os.path.join(BASE_DIR, "src")], + pathex=[BASE_DIR], + hookspath=[os.path.join(BASE_DIR, "pyinstaller", "hooks")]) + + +pyz = PYZ(a.pure) + + +# remove all ".svn" (subversion) files +for file_list in (data, a.datas): + flist_copy = list(file_list) + # clear the original list + while file_list: + file_list.pop() + # add all items that don't contain a ".svn" directory name + for fentry in flist_copy: + if not ".svn" in fentry[0].split(os.path.sep): + file_list.append(fentry) + + +exe = EXE(pyz, + data, + a.scripts, + a.binaries, + a.zipfiles, + a.datas, + exclude_binaries=False, + name=output_name, + icon=icon_file, + debug=USE_DEBUG, + strip=False, + upx=True, + console=USE_DEBUG, + ) + + +# We need to rename the startup script due to name clashes on Windows. +# Otherwise multiprocessing (multiple parallel local processes) fails. +if rename_startup_script: + if not os.path.exists(ORIGINAL_STARTUP_SCRIPT): + os.rename(STARTUP_SCRIPT, ORIGINAL_STARTUP_SCRIPT) + else: + print("Keeping original startup script: %s" % ORIGINAL_STARTUP_SCRIPT) diff --git a/pycam/pyinstaller/pyinstaller_fix_module_exception.patch b/pycam/pyinstaller/pyinstaller_fix_module_exception.patch new file mode 100644 index 00000000..42b4abbc --- /dev/null +++ b/pycam/pyinstaller/pyinstaller_fix_module_exception.patch @@ -0,0 +1,15 @@ +diff -ruN pyinstaller-1.4/iu.py pyinstaller-1.4.fixed//iu.py +--- pyinstaller-1.4/iu.py 2010-02-11 01:23:39.000000000 +0100 ++++ pyinstaller-1.4.fixed//iu.py 2010-08-23 19:07:50.000000000 +0200 +# see http://www.pyinstaller.org/ticket/205 +# Exceptions are thrown for imported modules are not available in Windows. +@@ -451,7 +451,8 @@ + if ctx and hasattr(sys.modules[ctx], nmparts[i]): + debug("importHook done with %s %s %s (case 1)" % (name, __globals_name, fromlist)) + return sys.modules[nmparts[0]] +- del sys.modules[fqname] ++ if fqname in sys.modules: ++ del sys.modules[fqname] + raise ImportError, "No module named %s" % fqname + if fromlist is None: + debug("importHook done with %s %s %s (case 2)" % (name, __globals_name, fromlist)) diff --git a/pycam/pyinstaller/pyinstaller_info.txt b/pycam/pyinstaller/pyinstaller_info.txt new file mode 100644 index 00000000..98a5f25c --- /dev/null +++ b/pycam/pyinstaller/pyinstaller_info.txt @@ -0,0 +1,27 @@ +PyInstaller (http://pyinstaller.org) can be used to create standalone binaries for Windows. + +How to build a standalone exe file (on Windows only): +1) install the PyCAM dependency installer: + https://pycam.svn.sourceforge.net/svnroot/pycam/dependency_installer + * add "C:\GtkGLext\1.0\bin" to your PATH environment variable +2) install UPX (compression) + * Debian/Ubuntu: apt-get install upx-ucl + * Windows: http://upx.sourceforge.net + * extract the archive to your program directory + * add this directory to your PATH environment variable +3) download pyinstaller (svn co http://svn.pyinstaller.org/tags/1.5 pyinstaller) +4) run "cmd.exe" (or open a terminal) +5) "cd PATH_TO_PYCAM" +6) "python PYINSTALLER_PATH/Configure.py" +7) "python PYINSTALLER_PATH/Build.py pyinstaller/pycam.spec" +8) test and upload the binary file "pycam-VERSION_standalone.?" + +Known issues: +* multiprocessing on Windows: no server/client capabilities +* python-setproctitle v1.0.1 causes a segfault - remove it from the build system +* Linux: pre-built executable don't seem to work across different versions of libc +* Linux/MacOS?: you need to remove the reference to "windll" at the top of the "pycam" script (line 32-36) + +Debugging: +* enable the "debug" parameter in the "EXE" call at the end of the spec file + diff --git a/pycam/release_info.txt b/pycam/release_info.txt new file mode 100644 index 00000000..273af707 --- /dev/null +++ b/pycam/release_info.txt @@ -0,0 +1,87 @@ +1) update the version and the changelog + - in "Changelog" (version, release date, changes) + - in "src/pycam/__init__.py" (version) + - commit the changes + +2) create the archives + - "make dist" + - carefully check the resulting content of the archives + +3a) create an svn tag for the release (includes uploading the archive files) + - "make upload" + +3b) create the Windows standalone binary + - see pyinstaller/pyinstall_info.txt for details + +4) upload files to sourceforge + - https://sourceforge.net/project/admin/explorer.php?group_id=237831 + - create a directory for the new release + - click at the icon to the left of the new directory and upload the new archives + - create a file called "release-notes-0.x" and upload it to the same directory + - first line: "PyCAM v0.x release notes:" + - second line: empty + - further lines: summary of changes (complete sentences) + - mark the release notes files as "Release notes" (see "Properties") + - set the release notes and the target operating systems for the archives + - zip: others + - exe: Windows + - tar.gz: Linux, Mac, BSD, Solaris + - standalone binary (Windows): no specific architecture + +5) announcements + - run "python setup.py register" (for the PyPI package index) + - create a project news items at sourceforge + - create a new release at http://freshmeat.net + - post the new release at http://www.cnczone.com/forums/showthread.php?t=63716 + - create a blog post at: http://fab.senselab.org + +6) other stuff + - create a new release tag for the bug tracker: + https://sourceforge.net/tracker/admin/index.php?group_id=237831&atid=1104176&add_group=1 + + +# Version numbers + +If the user runs pycam out of a git working directory without +taking any special action with respect to versioning, +pycam determines the version dynamically each time it's +invoked. The algorithm is at the top of pycam/__init__.py. + +When building Debian packages of pycam, the build system uses that code to +produce pycam/Version.py, which just sets the VERSION variable according +to the git working directory that the package was built from. + +Version numbers are determined like this: + +* Some commits correspond to actual releases, these are indicated by + special tags (like our "v0.5.1" tag, "v0.6.0", etc). The version + number of a commit with a release tag is just the release tag itself, + of course. + +* The version number of a commit without a release tag is constructed in a + "git describe"-like way: the most recent release tag, followed by the + number of commits since then, followed by the SHA of the current commit, + followed by "dirty" if there are uncommitted, non-ignored changes in + the git working directory. + +However, there's a complication needed to handle multiple branches. The +versioning code considers two kinds of branches: + +* Long-lived branches like master (for current development) and stable + release branches (we don't have any yet, but imagine a "v0" branch, + "v1", etc). These branches are where the release tags live. We + want un-tagged commits in these branches to have the simple kind of + version number described above (tag, commits since tag, SHA). Example: + v0.6.1.345.gabc123 ("345 commits after v0.6.1"). + +* Short-lived temporary branches (for new features, bug fixes, etc). These + branches have more complicated version numbers. Version numbers here + should show which long-lived branch this temporary branch came from + (by having a version number from that long-lived branch), but should + be clearly differentiated from versions actually from that long-lived + branch, and should include the name of the short-lived branch. Example: + v0.6.1~deb.version.sumpfralle.86.g6789cc3 ("deb-version-sumpfralle + branch, 86 commits after v0.6.1"). The "~" tilde character there + is deliberate: it sorts as "older than" in Debian version numbers, + so debs from short-lived branches will not replace debs from stable + release branches by mistake. diff --git a/pycam/requirements.txt b/pycam/requirements.txt new file mode 100644 index 00000000..40887f4c --- /dev/null +++ b/pycam/requirements.txt @@ -0,0 +1,3 @@ +PyOpenGL +PyYAML +svg.path diff --git a/pycam/samples/SampleScene2.scad b/pycam/samples/SampleScene2.scad new file mode 100644 index 00000000..a2e347a8 --- /dev/null +++ b/pycam/samples/SampleScene2.scad @@ -0,0 +1,24 @@ +// example scene for pycam + +module scene() { + sphere(r=15, center=true); + translate(v=[0,80,5]) cylinder(h = 10, r1 = 20, r2 = 10, center = true); + translate(v=[0,40,15]) { + intersection() { + translate([0,0,-15]) rotate([60,0,90]) cube([30, 20, 20], center=true); + cylinder(h = 30, r = 10, center = true); + } + } + translate([0,130,-5]) { + intersection() { + sphere(20, center=true); + rotate([30,60,0]) cube(30, center=true); + } + } +} + +// remove the parts of the objects below the zero plane +difference() { + scale([0.5, 0.5, 0.3]) scene(); + translate([0,0,-20]) cube([200,200,40], center=true); +} \ No newline at end of file diff --git a/pycam/samples/SampleScene3.scad b/pycam/samples/SampleScene3.scad new file mode 100644 index 00000000..4c996e53 --- /dev/null +++ b/pycam/samples/SampleScene3.scad @@ -0,0 +1,20 @@ +difference() { + sphere(r=30); + translate([-50, -50, -100]) cube([100, 100, 100]); +} + +translate([-30, 50, 0]) union() { + cube([140, 30, 10]); + translate([40, 15, 10]) rotate([0, 90, 0]) cylinder(r=10, h=60); +} + +translate([80, 0, 0]) scale(1.2) union() { + difference() { + cylinder(r1=20, r2=5, h=20); + translate([-25, 30, -10]) rotate([60, 0, 0]) cube([50, 50, 50]); + } + difference() { + translate([0, 35, -21]) rotate([70, 0, 0]) cylinder(r=16, h=50); + translate([-50, -50, -100]) cube([100, 100, 100]); + } +} \ No newline at end of file diff --git a/pycam/samples/Sphere_cut.scad b/pycam/samples/Sphere_cut.scad new file mode 100644 index 00000000..eae9b6af --- /dev/null +++ b/pycam/samples/Sphere_cut.scad @@ -0,0 +1,4 @@ +intersection() { + sphere(r=5, center=true, $fn=6); + cube([20,20,5], center=true); +} \ No newline at end of file diff --git a/pycam/samples/multilayer_engrave.svg b/pycam/samples/multilayer_engrave.svg new file mode 100644 index 00000000..84a1a29c --- /dev/null +++ b/pycam/samples/multilayer_engrave.svg @@ -0,0 +1,87 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + frame: redtext: green + + diff --git a/pycam/samples/polygon2.svg b/pycam/samples/polygon2.svg new file mode 100644 index 00000000..f795abf2 --- /dev/null +++ b/pycam/samples/polygon2.svg @@ -0,0 +1,68 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/pycam/samples/polygon3.svg b/pycam/samples/polygon3.svg new file mode 100644 index 00000000..8787e3ad --- /dev/null +++ b/pycam/samples/polygon3.svg @@ -0,0 +1,68 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/pycam/samples/polygon4.svg b/pycam/samples/polygon4.svg new file mode 100644 index 00000000..e7ea31de --- /dev/null +++ b/pycam/samples/polygon4.svg @@ -0,0 +1,72 @@ + + + + + + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/pycam/samples/polygon5.svg b/pycam/samples/polygon5.svg new file mode 100644 index 00000000..c12d3a18 --- /dev/null +++ b/pycam/samples/polygon5.svg @@ -0,0 +1,60 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/pycam/samples/polygons.svg b/pycam/samples/polygons.svg new file mode 100644 index 00000000..9b8bfb9a --- /dev/null +++ b/pycam/samples/polygons.svg @@ -0,0 +1,75 @@ + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/pycam/samples/pycam-text.dxf b/pycam/samples/pycam-text.dxf new file mode 100644 index 00000000..9a8cf835 --- /dev/null +++ b/pycam/samples/pycam-text.dxf @@ -0,0 +1,5160 @@ + 0 +SECTION + 2 +HEADER + 9 +$ACADVER + 1 +AC1009 + 9 +$EXTMIN + 10 +0.0 + 20 +0.0 + 30 +0.0 + 9 +$EXTMAX + 10 +1000.0 + 20 +1000.0 + 30 +0.0 + 9 +$FILLMODE + 70 + 0 + 9 +$SPLFRAME + 70 + 1 + 0 +ENDSEC + 0 +SECTION + 2 +TABLES + 0 +TABLE + 2 +LAYER + 70 +1 + 0 +LAYER + 2 +0 + 70 + 0 + 62 + 7 + 6 +CONTINUOUS + 0 +ENDTAB + 0 +ENDSEC + 0 +SECTION + 2 +ENTITIES + 0 +LINE + 8 +0 + 62 + 0 + 10 +19.345 + 20 +15.0001 + 30 +0.0 + 11 +6.81706 + 21 +15.0001 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +6.81706 + 20 +15.0001 + 30 +0.0 + 11 +0 + 21 +0.0564236 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +0 + 20 +0.0564236 + 30 +0.0 + 11 +3.37076 + 21 +0.0564236 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +3.37076 + 20 +0.0564236 + 30 +0.0 + 11 +5.59896 + 21 +4.92513 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +5.59896 + 20 +4.92513 + 30 +0.0 + 11 +15.5621 + 21 +4.92513 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +15.5621 + 20 +4.92513 + 30 +0.0 + 11 +16.18 + 21 +4.94769 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +16.18 + 20 +4.94769 + 30 +0.0 + 11 +16.7604 + 21 +5.01531 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +16.7604 + 20 +5.01531 + 30 +0.0 + 11 +17.3035 + 21 +5.12799 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +17.3035 + 20 +5.12799 + 30 +0.0 + 11 +17.809 + 21 +5.28564 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +17.809 + 20 +5.28564 + 30 +0.0 + 11 +18.2771 + 21 +5.48839 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +18.2771 + 20 +5.48839 + 30 +0.0 + 11 +18.7076 + 21 +5.73611 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +18.7076 + 20 +5.73611 + 30 +0.0 + 11 +19.1007 + 21 +6.02886 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +19.1007 + 20 +6.02886 + 30 +0.0 + 11 +19.4564 + 21 +6.3666 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +19.4564 + 20 +6.3666 + 30 +0.0 + 11 +22.2468 + 21 +12.4714 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +22.2468 + 20 +12.4714 + 30 +0.0 + 11 +22.3319 + 21 +12.7853 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +22.3319 + 20 +12.7853 + 30 +0.0 + 11 +22.3601 + 21 +13.0902 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +22.3601 + 20 +13.0902 + 30 +0.0 + 11 +22.3435 + 21 +13.3181 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +22.3435 + 20 +13.3181 + 30 +0.0 + 11 +22.2933 + 21 +13.5337 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +22.2933 + 20 +13.5337 + 30 +0.0 + 11 +22.21 + 21 +13.7371 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +22.21 + 20 +13.7371 + 30 +0.0 + 11 +22.0932 + 21 +13.9282 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +22.0932 + 20 +13.9282 + 30 +0.0 + 11 +21.9431 + 21 +14.1069 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +21.9431 + 20 +14.1069 + 30 +0.0 + 11 +21.7594 + 21 +14.2732 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +21.7594 + 20 +14.2732 + 30 +0.0 + 11 +21.5424 + 21 +14.4271 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +21.5424 + 20 +14.4271 + 30 +0.0 + 11 +21.2919 + 21 +14.5687 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +21.2919 + 20 +14.5687 + 30 +0.0 + 11 +20.8471 + 21 +14.7575 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +20.8471 + 20 +14.7575 + 30 +0.0 + 11 +20.3743 + 21 +14.8924 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +20.3743 + 20 +14.8924 + 30 +0.0 + 11 +19.8736 + 21 +14.9732 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +19.8736 + 20 +14.9732 + 30 +0.0 + 11 +19.345 + 21 +15.0001 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +16.48 + 20 +7.3974 + 30 +0.0 + 11 +16.3456 + 21 +7.20844 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +16.3456 + 20 +7.20844 + 30 +0.0 + 11 +16.1858 + 21 +7.04465 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +16.1858 + 20 +7.04465 + 30 +0.0 + 11 +16.0012 + 21 +6.90608 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +16.0012 + 20 +6.90608 + 30 +0.0 + 11 +15.7914 + 21 +6.79275 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +15.7914 + 20 +6.79275 + 30 +0.0 + 11 +15.5565 + 21 +6.70464 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +15.5565 + 20 +6.70464 + 30 +0.0 + 11 +15.2964 + 21 +6.64165 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +15.2964 + 20 +6.64165 + 30 +0.0 + 11 +15.0113 + 21 +6.60389 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +15.0113 + 20 +6.60389 + 30 +0.0 + 11 +14.701 + 21 +6.59131 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +14.701 + 20 +6.59131 + 30 +0.0 + 11 +6.46007 + 21 +6.59131 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +6.46007 + 20 +6.59131 + 30 +0.0 + 11 +9.62554 + 21 +13.5393 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +9.62554 + 20 +13.5393 + 30 +0.0 + 11 +17.5287 + 21 +13.5393 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +17.5287 + 20 +13.5393 + 30 +0.0 + 11 +17.814 + 21 +13.5253 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +17.814 + 20 +13.5253 + 30 +0.0 + 11 +18.0613 + 21 +13.4832 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +18.0613 + 20 +13.4832 + 30 +0.0 + 11 +18.2703 + 21 +13.413 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +18.2703 + 20 +13.413 + 30 +0.0 + 11 +18.4415 + 21 +13.3148 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +18.4415 + 20 +13.3148 + 30 +0.0 + 11 +18.5744 + 21 +13.1885 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +18.5744 + 20 +13.1885 + 30 +0.0 + 11 +18.6694 + 21 +13.034 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +18.6694 + 20 +13.034 + 30 +0.0 + 11 +18.7265 + 21 +12.8515 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +18.7265 + 20 +12.8515 + 30 +0.0 + 11 +18.7456 + 21 +12.6407 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +18.7456 + 20 +12.6407 + 30 +0.0 + 11 +18.7126 + 21 +12.3454 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +18.7126 + 20 +12.3454 + 30 +0.0 + 11 +18.6147 + 21 +12.0593 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +18.6147 + 20 +12.0593 + 30 +0.0 + 11 +16.48 + 21 +7.3974 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +19.8756 + 20 +-0 + 30 +0.0 + 11 +19.8756 + 21 +-0 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +38.0781 + 20 +15.0001 + 30 +0.0 + 11 +34.2389 + 21 +6.57329 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +34.2389 + 20 +6.57329 + 30 +0.0 + 11 +26.0174 + 21 +6.57329 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +26.0174 + 20 +6.57329 + 30 +0.0 + 11 +25.811 + 21 +6.60363 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +25.811 + 20 +6.60363 + 30 +0.0 + 11 +25.6321 + 21 +6.64806 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +25.6321 + 20 +6.64806 + 30 +0.0 + 11 +25.4807 + 21 +6.70649 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +25.4807 + 20 +6.70649 + 30 +0.0 + 11 +25.3569 + 21 +6.77903 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +25.3569 + 20 +6.77903 + 30 +0.0 + 11 +25.2607 + 21 +6.86561 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +25.2607 + 20 +6.86561 + 30 +0.0 + 11 +25.1918 + 21 +6.96636 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +25.1918 + 20 +6.96636 + 30 +0.0 + 11 +25.1506 + 21 +7.08117 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +25.1506 + 20 +7.08117 + 30 +0.0 + 11 +25.1368 + 21 +7.21007 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +25.1368 + 20 +7.21007 + 30 +0.0 + 11 +25.1418 + 21 +7.29867 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +25.1418 + 20 +7.29867 + 30 +0.0 + 11 +25.1563 + 21 +7.37799 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +25.1563 + 20 +7.37799 + 30 +0.0 + 11 +28.6399 + 21 +15.0001 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +28.6399 + 20 +15.0001 + 30 +0.0 + 11 +25.2692 + 21 +15.0001 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +25.2692 + 20 +15.0001 + 30 +0.0 + 11 +21.3169 + 21 +6.34858 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +21.3169 + 20 +6.34858 + 30 +0.0 + 11 +21.3033 + 21 +6.25 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +21.3033 + 20 +6.25 + 30 +0.0 + 11 +21.2989 + 21 +6.14187 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +21.2989 + 20 +6.14187 + 30 +0.0 + 11 +21.3338 + 21 +5.85667 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +21.3338 + 20 +5.85667 + 30 +0.0 + 11 +21.4382 + 21 +5.60949 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +21.4382 + 20 +5.60949 + 30 +0.0 + 11 +21.6122 + 21 +5.40033 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +21.6122 + 20 +5.40033 + 30 +0.0 + 11 +21.8558 + 21 +5.22922 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +21.8558 + 20 +5.22922 + 30 +0.0 + 11 +22.1693 + 21 +5.09619 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +22.1693 + 20 +5.09619 + 30 +0.0 + 11 +22.5522 + 21 +5.00119 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +22.5522 + 20 +5.00119 + 30 +0.0 + 11 +23.0049 + 21 +4.94417 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +23.0049 + 20 +4.94417 + 30 +0.0 + 11 +23.5271 + 21 +4.92513 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +23.5271 + 20 +4.92513 + 30 +0.0 + 11 +33.4712 + 21 +4.92513 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +33.4712 + 20 +4.92513 + 30 +0.0 + 11 +32.5907 + 21 +2.97814 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +32.5907 + 20 +2.97814 + 30 +0.0 + 11 +32.3233 + 21 +2.63997 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +32.3233 + 20 +2.63997 + 30 +0.0 + 11 +32.036 + 21 +2.34685 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +32.036 + 20 +2.34685 + 30 +0.0 + 11 +31.7286 + 21 +2.09885 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +31.7286 + 20 +2.09885 + 30 +0.0 + 11 +31.4014 + 21 +1.89594 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +31.4014 + 20 +1.89594 + 30 +0.0 + 11 +31.0543 + 21 +1.73817 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +31.0543 + 20 +1.73817 + 30 +0.0 + 11 +30.6872 + 21 +1.62543 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +30.6872 + 20 +1.62543 + 30 +0.0 + 11 +30.3003 + 21 +1.55783 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +30.3003 + 20 +1.55783 + 30 +0.0 + 11 +29.8936 + 21 +1.53526 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +29.8936 + 20 +1.53526 + 30 +0.0 + 11 +21.3928 + 21 +1.53526 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +21.3928 + 20 +1.53526 + 30 +0.0 + 11 +19.9499 + 21 +0.0564236 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +19.9499 + 20 +0.0564236 + 30 +0.0 + 11 +30.2867 + 21 +0.0564236 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +30.2867 + 20 +0.0564236 + 30 +0.0 + 11 +30.605 + 21 +0.0658094 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +30.605 + 20 +0.0658094 + 30 +0.0 + 11 +30.9328 + 21 +0.0939669 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +30.9328 + 20 +0.0939669 + 30 +0.0 + 11 +31.27 + 21 +0.140842 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +31.27 + 20 +0.140842 + 30 +0.0 + 11 +31.6165 + 21 +0.206435 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +31.6165 + 20 +0.206435 + 30 +0.0 + 11 +31.9725 + 21 +0.290744 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +31.9725 + 20 +0.290744 + 30 +0.0 + 11 +32.3378 + 21 +0.393826 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +32.3378 + 20 +0.393826 + 30 +0.0 + 11 +32.7124 + 21 +0.515625 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +32.7124 + 20 +0.515625 + 30 +0.0 + 11 +33.0962 + 21 +0.656142 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +33.0962 + 20 +0.656142 + 30 +0.0 + 11 +33.5561 + 21 +0.846463 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +33.5561 + 20 +0.846463 + 30 +0.0 + 11 +33.981 + 21 +1.05263 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +33.981 + 20 +1.05263 + 30 +0.0 + 11 +34.3708 + 21 +1.27463 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +34.3708 + 20 +1.27463 + 30 +0.0 + 11 +34.7254 + 21 +1.51247 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +34.7254 + 20 +1.51247 + 30 +0.0 + 11 +35.0449 + 21 +1.76606 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +35.0449 + 20 +1.76606 + 30 +0.0 + 11 +35.3293 + 21 +2.03543 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +35.3293 + 20 +2.03543 + 30 +0.0 + 11 +35.5787 + 21 +2.32047 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +35.5787 + 20 +2.32047 + 30 +0.0 + 11 +35.7932 + 21 +2.62115 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +35.7932 + 20 +2.62115 + 30 +0.0 + 11 +41.4296 + 21 +15.0001 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +41.4296 + 20 +15.0001 + 30 +0.0 + 11 +38.0781 + 21 +15.0001 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +44.4983 + 20 +6.38596 + 30 +0.0 + 11 +44.2043 + 21 +6.40061 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +44.2043 + 20 +6.40061 + 30 +0.0 + 11 +43.9494 + 21 +6.44439 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +43.9494 + 20 +6.44439 + 30 +0.0 + 11 +43.7339 + 21 +6.51747 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +43.7339 + 20 +6.51747 + 30 +0.0 + 11 +43.5575 + 21 +6.61974 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +43.5575 + 20 +6.61974 + 30 +0.0 + 11 +43.4204 + 21 +6.75131 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +43.4204 + 20 +6.75131 + 30 +0.0 + 11 +43.3225 + 21 +6.91211 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +43.3225 + 20 +6.91211 + 30 +0.0 + 11 +43.2638 + 21 +7.10221 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +43.2638 + 20 +7.10221 + 30 +0.0 + 11 +43.2442 + 21 +7.32156 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +43.2442 + 20 +7.32156 + 30 +0.0 + 11 +43.2535 + 21 +7.44125 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +43.2535 + 20 +7.44125 + 30 +0.0 + 11 +43.2817 + 21 +7.57482 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +43.2817 + 20 +7.57482 + 30 +0.0 + 11 +43.3286 + 21 +7.72239 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +43.3286 + 20 +7.72239 + 30 +0.0 + 11 +43.3944 + 21 +7.8839 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +43.3944 + 20 +7.8839 + 30 +0.0 + 11 +45.9589 + 21 +13.5393 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +45.9589 + 20 +13.5393 + 30 +0.0 + 11 +53.9365 + 21 +13.5393 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +53.9365 + 20 +13.5393 + 30 +0.0 + 11 +54.2263 + 21 +13.5253 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +54.2263 + 20 +13.5253 + 30 +0.0 + 11 +54.4774 + 21 +13.4832 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +54.4774 + 20 +13.4832 + 30 +0.0 + 11 +54.6897 + 21 +13.413 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +54.6897 + 20 +13.413 + 30 +0.0 + 11 +54.8636 + 21 +13.3148 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +54.8636 + 20 +13.3148 + 30 +0.0 + 11 +54.9987 + 21 +13.1885 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +54.9987 + 20 +13.1885 + 30 +0.0 + 11 +55.0954 + 21 +13.034 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +55.0954 + 20 +13.034 + 30 +0.0 + 11 +55.1533 + 21 +12.8515 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +55.1533 + 20 +12.8515 + 30 +0.0 + 11 +55.1726 + 21 +12.6407 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +55.1726 + 20 +12.6407 + 30 +0.0 + 11 +55.1633 + 21 +12.5131 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +55.1633 + 20 +12.5131 + 30 +0.0 + 11 +55.1354 + 21 +12.3737 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +55.1354 + 20 +12.3737 + 30 +0.0 + 11 +55.0889 + 21 +12.2226 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +55.0889 + 20 +12.2226 + 30 +0.0 + 11 +55.0237 + 21 +12.0593 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +55.0237 + 20 +12.0593 + 30 +0.0 + 11 +54.5553 + 21 +11.0299 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +54.5553 + 20 +11.0299 + 30 +0.0 + 11 +57.9258 + 21 +11.0299 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +57.9258 + 20 +11.0299 + 30 +0.0 + 11 +58.5819 + 21 +12.4714 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +58.5819 + 20 +12.4714 + 30 +0.0 + 11 +58.6656 + 21 +12.8 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +58.6656 + 20 +12.8 + 30 +0.0 + 11 +58.6935 + 21 +13.1078 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +58.6935 + 20 +13.1078 + 30 +0.0 + 11 +58.6774 + 21 +13.3356 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +58.6774 + 20 +13.3356 + 30 +0.0 + 11 +58.629 + 21 +13.5505 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +58.629 + 20 +13.5505 + 30 +0.0 + 11 +58.5486 + 21 +13.7526 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +58.5486 + 20 +13.7526 + 30 +0.0 + 11 +58.436 + 21 +13.9417 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +58.436 + 20 +13.9417 + 30 +0.0 + 11 +58.2913 + 21 +14.1179 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +58.2913 + 20 +14.1179 + 30 +0.0 + 11 +58.1143 + 21 +14.2813 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +58.1143 + 20 +14.2813 + 30 +0.0 + 11 +57.9053 + 21 +14.4315 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +57.9053 + 20 +14.4315 + 30 +0.0 + 11 +57.664 + 21 +14.5687 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +57.664 + 20 +14.5687 + 30 +0.0 + 11 +57.2293 + 21 +14.7575 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +57.2293 + 20 +14.7575 + 30 +0.0 + 11 +56.769 + 21 +14.8924 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +56.769 + 20 +14.8924 + 30 +0.0 + 11 +56.2832 + 21 +14.9732 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +56.2832 + 20 +14.9732 + 30 +0.0 + 11 +55.7721 + 21 +15.0001 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +55.7721 + 20 +15.0001 + 30 +0.0 + 11 +43.2622 + 21 +15.0001 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +43.2622 + 20 +15.0001 + 30 +0.0 + 11 +39.8544 + 21 +7.5089 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +39.8544 + 20 +7.5089 + 30 +0.0 + 11 +39.7706 + 21 +7.19575 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +39.7706 + 20 +7.19575 + 30 +0.0 + 11 +39.7425 + 21 +6.8915 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +39.7425 + 20 +6.8915 + 30 +0.0 + 11 +39.7589 + 21 +6.65901 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +39.7589 + 20 +6.65901 + 30 +0.0 + 11 +39.8079 + 21 +6.43869 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +39.8079 + 20 +6.43869 + 30 +0.0 + 11 +39.8899 + 21 +6.23068 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +39.8899 + 20 +6.23068 + 30 +0.0 + 11 +40.0044 + 21 +6.03489 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +40.0044 + 20 +6.03489 + 30 +0.0 + 11 +40.1518 + 21 +5.8514 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +40.1518 + 20 +5.8514 + 30 +0.0 + 11 +40.3321 + 21 +5.68018 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +40.3321 + 20 +5.68018 + 30 +0.0 + 11 +40.5453 + 21 +5.52126 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +40.5453 + 20 +5.52126 + 30 +0.0 + 11 +40.7914 + 21 +5.37457 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +40.7914 + 20 +5.37457 + 30 +0.0 + 11 +41.2251 + 21 +5.17817 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +41.2251 + 20 +5.17817 + 30 +0.0 + 11 +41.685 + 21 +5.03771 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +41.685 + 20 +5.03771 + 30 +0.0 + 11 +42.1707 + 21 +4.95329 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +42.1707 + 20 +4.95329 + 30 +0.0 + 11 +42.6818 + 21 +4.92513 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +42.6818 + 20 +4.92513 + 30 +0.0 + 11 +55.1353 + 21 +4.92513 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +55.1353 + 20 +4.92513 + 30 +0.0 + 11 +55.809 + 21 +6.38596 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +55.809 + 20 +6.38596 + 30 +0.0 + 11 +44.4983 + 21 +6.38596 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +74.0212 + 20 +15.0001 + 30 +0.0 + 11 +61.6436 + 21 +15.0001 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +61.6436 + 20 +15.0001 + 30 +0.0 + 11 +60.9685 + 21 +13.5199 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +60.9685 + 20 +13.5199 + 30 +0.0 + 11 +72.2051 + 21 +13.5199 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +72.2051 + 20 +13.5199 + 30 +0.0 + 11 +72.4488 + 21 +13.5072 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +72.4488 + 20 +13.5072 + 30 +0.0 + 11 +72.6733 + 21 +13.469 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +72.6733 + 20 +13.469 + 30 +0.0 + 11 +72.8792 + 21 +13.4048 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +72.8792 + 20 +13.4048 + 30 +0.0 + 11 +73.0663 + 21 +13.3146 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +73.0663 + 20 +13.3146 + 30 +0.0 + 11 +73.2547 + 21 +13.1787 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +73.2547 + 20 +13.1787 + 30 +0.0 + 11 +73.3896 + 21 +13.015 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +73.3896 + 20 +13.015 + 30 +0.0 + 11 +73.4706 + 21 +12.8233 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +73.4706 + 20 +12.8233 + 30 +0.0 + 11 +73.4978 + 21 +12.6037 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +73.4978 + 20 +12.6037 + 30 +0.0 + 11 +73.4647 + 21 +12.3454 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +73.4647 + 20 +12.3454 + 30 +0.0 + 11 +73.3668 + 21 +12.0593 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +73.3668 + 20 +12.0593 + 30 +0.0 + 11 +73.1036 + 21 +11.4791 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +73.1036 + 20 +11.4791 + 30 +0.0 + 11 +62.6167 + 21 +11.4791 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +62.6167 + 20 +11.4791 + 30 +0.0 + 11 +61.9988 + 21 +11.4522 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +61.9988 + 20 +11.4522 + 30 +0.0 + 11 +61.4371 + 21 +11.3714 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +61.4371 + 20 +11.3714 + 30 +0.0 + 11 +60.9315 + 21 +11.2367 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +60.9315 + 20 +11.2367 + 30 +0.0 + 11 +60.4822 + 21 +11.0482 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +60.4822 + 20 +11.0482 + 30 +0.0 + 11 +60.089 + 21 +10.8059 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +60.089 + 20 +10.8059 + 30 +0.0 + 11 +59.7519 + 21 +10.5099 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +59.7519 + 20 +10.5099 + 30 +0.0 + 11 +59.4708 + 21 +10.16 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +59.4708 + 20 +10.16 + 30 +0.0 + 11 +59.2458 + 21 +9.7564 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +59.2458 + 20 +9.7564 + 30 +0.0 + 11 +57.9163 + 21 +6.81565 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +57.9163 + 20 +6.81565 + 30 +0.0 + 11 +57.8604 + 21 +6.61963 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +57.8604 + 20 +6.61963 + 30 +0.0 + 11 +57.8418 + 21 +6.3666 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +57.8418 + 20 +6.3666 + 30 +0.0 + 11 +57.8511 + 21 +6.19211 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +57.8511 + 20 +6.19211 + 30 +0.0 + 11 +57.8792 + 21 +6.02886 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +57.8792 + 20 +6.02886 + 30 +0.0 + 11 +57.9261 + 21 +5.8769 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +57.9261 + 20 +5.8769 + 30 +0.0 + 11 +57.9917 + 21 +5.73611 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +57.9917 + 20 +5.73611 + 30 +0.0 + 11 +58.0758 + 21 +5.60661 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +58.0758 + 20 +5.60661 + 30 +0.0 + 11 +58.1789 + 21 +5.48839 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +58.1789 + 20 +5.48839 + 30 +0.0 + 11 +58.3007 + 21 +5.3814 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +58.3007 + 20 +5.3814 + 30 +0.0 + 11 +58.4411 + 21 +5.28564 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +58.4411 + 20 +5.28564 + 30 +0.0 + 11 +58.6003 + 21 +5.20117 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +58.6003 + 20 +5.20117 + 30 +0.0 + 11 +58.7782 + 21 +5.12799 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +58.7782 + 20 +5.12799 + 30 +0.0 + 11 +58.9747 + 21 +5.06597 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +58.9747 + 20 +5.06597 + 30 +0.0 + 11 +59.19 + 21 +5.01531 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +59.19 + 20 +5.01531 + 30 +0.0 + 11 +59.424 + 21 +4.97586 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +59.424 + 20 +4.97586 + 30 +0.0 + 11 +59.6767 + 21 +4.94769 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +59.6767 + 20 +4.94769 + 30 +0.0 + 11 +59.9482 + 21 +4.93078 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +59.9482 + 20 +4.93078 + 30 +0.0 + 11 +60.2382 + 21 +4.92513 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +60.2382 + 20 +4.92513 + 30 +0.0 + 11 +73.4603 + 21 +4.92513 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +73.4603 + 20 +4.92513 + 30 +0.0 + 11 +76.8686 + 21 +12.416 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +76.8686 + 20 +12.416 + 30 +0.0 + 11 +76.9519 + 21 +12.7438 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +76.9519 + 20 +12.7438 + 30 +0.0 + 11 +76.98 + 21 +13.0528 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +76.98 + 20 +13.0528 + 30 +0.0 + 11 +76.9636 + 21 +13.2852 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +76.9636 + 20 +13.2852 + 30 +0.0 + 11 +76.9146 + 21 +13.5046 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +76.9146 + 20 +13.5046 + 30 +0.0 + 11 +76.8328 + 21 +13.711 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +76.8328 + 20 +13.711 + 30 +0.0 + 11 +76.7182 + 21 +13.9047 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +76.7182 + 20 +13.9047 + 30 +0.0 + 11 +76.5707 + 21 +14.0854 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +76.5707 + 20 +14.0854 + 30 +0.0 + 11 +76.3904 + 21 +14.2533 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +76.3904 + 20 +14.2533 + 30 +0.0 + 11 +76.1774 + 21 +14.4085 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +76.1774 + 20 +14.4085 + 30 +0.0 + 11 +75.9312 + 21 +14.5507 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +75.9312 + 20 +14.5507 + 30 +0.0 + 11 +75.4893 + 21 +14.7471 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +75.4893 + 20 +14.7471 + 30 +0.0 + 11 +75.0238 + 21 +14.8876 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +75.0238 + 20 +14.8876 + 30 +0.0 + 11 +74.5344 + 21 +14.9719 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +74.5344 + 20 +14.9719 + 30 +0.0 + 11 +74.0212 + 21 +15.0001 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +62.6361 + 20 +6.61035 + 30 +0.0 + 11 +62.3664 + 21 +6.62299 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +62.3664 + 20 +6.62299 + 30 +0.0 + 11 +62.1383 + 21 +6.66075 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +62.1383 + 20 +6.66075 + 30 +0.0 + 11 +61.9518 + 21 +6.72368 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +61.9518 + 20 +6.72368 + 30 +0.0 + 11 +61.8071 + 21 +6.81179 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +61.8071 + 20 +6.81179 + 30 +0.0 + 11 +61.7037 + 21 +6.92507 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +61.7037 + 20 +6.92507 + 30 +0.0 + 11 +61.6421 + 21 +7.06342 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +61.6421 + 20 +7.06342 + 30 +0.0 + 11 +61.6221 + 21 +7.22683 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +61.6221 + 20 +7.22683 + 30 +0.0 + 11 +61.6436 + 21 +7.41536 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +61.6436 + 20 +7.41536 + 30 +0.0 + 11 +62.4114 + 21 +9.10058 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +62.4114 + 20 +9.10058 + 30 +0.0 + 11 +62.5774 + 21 +9.39794 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +62.5774 + 20 +9.39794 + 30 +0.0 + 11 +62.7763 + 21 +9.63465 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +62.7763 + 20 +9.63465 + 30 +0.0 + 11 +63.0079 + 21 +9.81033 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +63.0079 + 20 +9.81033 + 30 +0.0 + 11 +63.2725 + 21 +9.92469 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +63.2725 + 20 +9.92469 + 30 +0.0 + 11 +63.4586 + 21 +9.96614 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +63.4586 + 20 +9.96614 + 30 +0.0 + 11 +63.7172 + 21 +9.99544 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +63.7172 + 20 +9.99544 + 30 +0.0 + 11 +64.0483 + 21 +10.0129 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +64.0483 + 20 +10.0129 + 30 +0.0 + 11 +64.4521 + 21 +10.0186 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +64.4521 + 20 +10.0186 + 30 +0.0 + 11 +72.4296 + 21 +10.0186 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +72.4296 + 20 +10.0186 + 30 +0.0 + 11 +70.8751 + 21 +6.61035 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +70.8751 + 20 +6.61035 + 30 +0.0 + 11 +62.6361 + 21 +6.61035 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +97.6094 + 20 +15.0001 + 30 +0.0 + 11 +79.9122 + 21 +15.0001 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +79.9122 + 20 +15.0001 + 30 +0.0 + 11 +75.3251 + 21 +4.92513 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +75.3251 + 20 +4.92513 + 30 +0.0 + 11 +78.8074 + 21 +4.92513 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +78.8074 + 20 +4.92513 + 30 +0.0 + 11 +82.7207 + 21 +13.5393 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +82.7207 + 20 +13.5393 + 30 +0.0 + 11 +88.4135 + 21 +13.5393 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +88.4135 + 20 +13.5393 + 30 +0.0 + 11 +84.4821 + 21 +4.92513 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +84.4821 + 20 +4.92513 + 30 +0.0 + 11 +87.9835 + 21 +4.92513 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +87.9835 + 20 +4.92513 + 30 +0.0 + 11 +91.8972 + 21 +13.5393 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +91.8972 + 20 +13.5393 + 30 +0.0 + 11 +95.7929 + 21 +13.5393 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +95.7929 + 20 +13.5393 + 30 +0.0 + 11 +96.0869 + 21 +13.525 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +96.0869 + 20 +13.525 + 30 +0.0 + 11 +96.3417 + 21 +13.4819 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +96.3417 + 20 +13.4819 + 30 +0.0 + 11 +96.5572 + 21 +13.4103 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +96.5572 + 20 +13.4103 + 30 +0.0 + 11 +96.7336 + 21 +13.3098 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +96.7336 + 20 +13.3098 + 30 +0.0 + 11 +96.8707 + 21 +13.1808 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +96.8707 + 20 +13.1808 + 30 +0.0 + 11 +96.9688 + 21 +13.023 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +96.9688 + 20 +13.023 + 30 +0.0 + 11 +97.0275 + 21 +12.8365 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +97.0275 + 20 +12.8365 + 30 +0.0 + 11 +97.0471 + 21 +12.6213 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +97.0471 + 20 +12.6213 + 30 +0.0 + 11 +97.0142 + 21 +12.3404 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +97.0142 + 20 +12.3404 + 30 +0.0 + 11 +96.9161 + 21 +12.0593 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +96.9161 + 20 +12.0593 + 30 +0.0 + 11 +93.6582 + 21 +4.92513 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +93.6582 + 20 +4.92513 + 30 +0.0 + 11 +97.0661 + 21 +4.92513 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +97.0661 + 20 +4.92513 + 30 +0.0 + 11 +100.511 + 21 +12.4714 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +100.511 + 20 +12.4714 + 30 +0.0 + 11 +100.596 + 21 +12.7853 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +100.596 + 20 +12.7853 + 30 +0.0 + 11 +100.624 + 21 +13.0902 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +100.624 + 20 +13.0902 + 30 +0.0 + 11 +100.607 + 21 +13.3181 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +100.607 + 20 +13.3181 + 30 +0.0 + 11 +100.556 + 21 +13.5337 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +100.556 + 20 +13.5337 + 30 +0.0 + 11 +100.471 + 21 +13.7371 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +100.471 + 20 +13.7371 + 30 +0.0 + 11 +100.353 + 21 +13.9282 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +100.353 + 20 +13.9282 + 30 +0.0 + 11 +100.2 + 21 +14.1069 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +100.2 + 20 +14.1069 + 30 +0.0 + 11 +100.013 + 21 +14.2732 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +100.013 + 20 +14.2732 + 30 +0.0 + 11 +99.7928 + 21 +14.4271 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +99.7928 + 20 +14.4271 + 30 +0.0 + 11 +99.5383 + 21 +14.5687 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +99.5383 + 20 +14.5687 + 30 +0.0 + 11 +99.0944 + 21 +14.7575 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +99.0944 + 20 +14.7575 + 30 +0.0 + 11 +98.6249 + 21 +14.8924 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +98.6249 + 20 +14.8924 + 30 +0.0 + 11 +98.1299 + 21 +14.9732 + 31 +0.0 + 0 +LINE + 8 +0 + 62 + 0 + 10 +98.1299 + 20 +14.9732 + 30 +0.0 + 11 +97.6094 + 21 +15.0001 + 31 +0.0 + 0 +ENDSEC + 0 +EOF diff --git a/pycam/samples/pycam-textbox.scad b/pycam/samples/pycam-textbox.scad new file mode 100644 index 00000000..049da299 --- /dev/null +++ b/pycam/samples/pycam-textbox.scad @@ -0,0 +1,19 @@ +// Combine the PyCAM logo with a slightly depressed rounded-cornered box. + +module block(a, b, height, radius) { + translate([radius, radius, 0]) union() { + translate([-radius, 0, 0]) cube([a, b - 2 * radius, height]); + translate([0, -radius, 0]) cube([a - 2 * radius, b, height]); + cylinder(r=radius, h=height); + translate([a - 2 * radius, 0, 0]) cylinder(r=radius, h=height); + translate([a - 2 * radius, b - 2 * radius, 0]) cylinder(r=radius, h=height); + translate([0, b - 2 * radius, 0]) cylinder(r=radius, h=height); + } +} + +translate([0, 0, -10]) difference() { + block(130, 50, 10, 10); + translate([5, 5, 5]) block(120, 40, 6, 10); +} +translate([15, 17, -5.05]) linear_extrude(file="pycam-text.dxf", height=3); + diff --git a/pycam/samples/pycam_text_2d.svg b/pycam/samples/pycam_text_2d.svg new file mode 100644 index 00000000..3fdf174b --- /dev/null +++ b/pycam/samples/pycam_text_2d.svg @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/pycam/samples/rectangle.svg b/pycam/samples/rectangle.svg new file mode 100644 index 00000000..0caacf29 --- /dev/null +++ b/pycam/samples/rectangle.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/pycam/samples/simple-shapes.dxf b/pycam/samples/simple-shapes.dxf new file mode 100644 index 00000000..7faa4027 --- /dev/null +++ b/pycam/samples/simple-shapes.dxf @@ -0,0 +1,2836 @@ +999 +dxfrw 0.6.3 + 0 +SECTION + 2 +HEADER + 9 +$ACADVER + 1 +AC1021 + 9 +$DWGCODEPAGE + 3 +ANSI_1252 + 9 +$INSBASE + 10 +0 + 20 +0 + 30 +0 + 9 +$EXTMIN + 10 +-1.722074691379333 + 20 +0 + 30 +0 + 9 +$EXTMAX + 10 +200 + 20 +147.2369667870751 + 30 +0 + 9 +$LIMMIN + 10 +0 + 20 +0 + 9 +$LIMMAX + 10 +420 + 20 +297 + 9 +$ORTHOMODE + 70 + 0 + 9 +$REGENMODE + 70 + 1 + 9 +$FILLMODE + 70 + 1 + 9 +$QTEXTMODE + 70 + 0 + 9 +$MIRRTEXT + 70 + 0 + 9 +$LTSCALE + 40 +1 + 9 +$ATTMODE + 70 + 0 + 9 +$TEXTSIZE + 40 +2.5 + 9 +$TRACEWID + 40 +15.68 + 9 +$TEXTSTYLE + 7 +STANDARD + 9 +$CLAYER + 8 +0 + 9 +$CELTYPE + 6 +BYLAYER + 9 +$CECOLOR + 62 + 256 + 9 +$CELTSCALE + 40 +1 + 9 +$DISPSILH + 70 + 0 + 9 +$DIMSCALE + 40 +2.5 + 9 +$DIMASZ + 40 +2.5 + 9 +$DIMEXO + 40 +0.625 + 9 +$DIMDLI + 40 +3.75 + 9 +$DIMRND + 40 +0 + 9 +$DIMDLE + 40 +0 + 9 +$DIMEXE + 40 +1.25 + 9 +$DIMTP + 40 +0 + 9 +$DIMTM + 40 +0 + 9 +$DIMTXT + 40 +2.5 + 9 +$DIMCEN + 40 +2.5 + 9 +$DIMTSZ + 40 +0 + 9 +$DIMTOL + 70 + 0 + 9 +$DIMLIM + 70 + 0 + 9 +$DIMTIH + 70 + 0 + 9 +$DIMTOH + 70 + 0 + 9 +$DIMSE1 + 70 + 0 + 9 +$DIMSE2 + 70 + 0 + 9 +$DIMTAD + 70 + 1 + 9 +$DIMZIN + 70 + 8 + 9 +$DIMBLK + 1 + + 9 +$DIMASO + 70 + 1 + 9 +$DIMSHO + 70 + 1 + 9 +$DIMPOST + 1 + + 9 +$DIMAPOST + 1 + + 9 +$DIMALT + 70 + 0 + 9 +$DIMALTD + 70 + 3 + 9 +$DIMALTF + 40 +0.03937 + 9 +$DIMLFAC + 40 +1 + 9 +$DIMTOFL + 70 + 1 + 9 +$DIMTVP + 40 +0 + 9 +$DIMTIX + 70 + 0 + 9 +$DIMSOXD + 70 + 0 + 9 +$DIMSAH + 70 + 0 + 9 +$DIMBLK1 + 1 + + 9 +$DIMBLK2 + 1 + + 9 +$DIMSTYLE + 2 +STANDARD + 9 +$DIMCLRD + 70 + 0 + 9 +$DIMCLRE + 70 + 0 + 9 +$DIMCLRT + 70 + 0 + 9 +$DIMTFAC + 40 +1 + 9 +$DIMGAP + 40 +0.625 + 9 +$DIMJUST + 70 + 0 + 9 +$DIMSD1 + 70 + 0 + 9 +$DIMSD2 + 70 + 0 + 9 +$DIMTOLJ + 70 + 0 + 9 +$DIMTZIN + 70 + 8 + 9 +$DIMALTZ + 70 + 0 + 9 +$DIMALTTZ + 70 + 0 + 9 +$DIMUPT + 70 + 0 + 9 +$DIMDEC + 70 + 2 + 9 +$DIMTDEC + 70 + 2 + 9 +$DIMALTU + 70 + 2 + 9 +$DIMALTTD + 70 + 3 + 9 +$DIMTXSTY + 7 +STANDARD + 9 +$DIMAUNIT + 70 + 0 + 9 +$DIMADEC + 70 + 0 + 9 +$DIMALTRND + 40 +0 + 9 +$DIMAZIN + 70 + 0 + 9 +$DIMDSEP + 70 + 44 + 9 +$DIMATFIT + 70 + 3 + 9 +$DIMFRAC + 70 + 0 + 9 +$DIMLDRBLK + 1 +STANDARD + 9 +$DIMLUNIT + 70 + 2 + 9 +$DIMLWD + 70 + -2 + 9 +$DIMLWE + 70 + -2 + 9 +$DIMTMOVE + 70 + 0 + 9 +$DIMFXL + 40 +1 + 9 +$DIMFXLON + 70 + 0 + 9 +$DIMJOGANG + 40 +0.7854 + 9 +$DIMTFILL + 70 + 0 + 9 +$DIMTFILLCLR + 70 + 0 + 9 +$DIMARCSYM + 70 + 0 + 9 +$DIMLTYPE + 6 + + 9 +$DIMLTEX1 + 6 + + 9 +$DIMLTEX2 + 6 + + 9 +$LUNITS + 70 + 2 + 9 +$LUPREC + 70 + 4 + 9 +$SKETCHINC + 40 +1 + 9 +$FILLETRAD + 40 +0 + 9 +$AUNITS + 70 + 0 + 9 +$AUPREC + 70 + 2 + 9 +$MENU + 1 +. + 9 +$ELEVATION + 40 +0 + 9 +$PELEVATION + 40 +0 + 9 +$THICKNESS + 40 +0 + 9 +$LIMCHECK + 70 + 0 + 9 +$CHAMFERA + 40 +0 + 9 +$CHAMFERB + 40 +0 + 9 +$CHAMFERC + 40 +0 + 9 +$CHAMFERD + 40 +0 + 9 +$SKPOLY + 70 + 0 + 9 +$USRTIMER + 70 + 1 + 9 +$ANGBASE + 50 +0 + 9 +$ANGDIR + 70 + 0 + 9 +$PDMODE + 70 + 34 + 9 +$PDSIZE + 40 +0 + 9 +$PLINEWID + 40 +0 + 9 +$SPLFRAME + 70 + 0 + 9 +$SPLINETYPE + 70 + 2 + 9 +$SPLINESEGS + 70 + 8 + 9 +$HANDSEED + 5 +20000 + 9 +$SURFTAB1 + 70 + 6 + 9 +$SURFTAB2 + 70 + 6 + 9 +$SURFTYPE + 70 + 6 + 9 +$SURFU + 70 + 6 + 9 +$SURFV + 70 + 6 + 9 +$UCSBASE + 2 + + 9 +$UCSNAME + 2 + + 9 +$UCSORG + 10 +0 + 20 +0 + 30 +0 + 9 +$UCSXDIR + 10 +1 + 20 +0 + 30 +0 + 9 +$UCSYDIR + 10 +0 + 20 +1 + 30 +0 + 9 +$UCSORTHOREF + 2 + + 9 +$UCSORTHOVIEW + 70 + 0 + 9 +$UCSORGTOP + 10 +0 + 20 +0 + 30 +0 + 9 +$UCSORGBOTTOM + 10 +0 + 20 +0 + 30 +0 + 9 +$UCSORGLEFT + 10 +0 + 20 +0 + 30 +0 + 9 +$UCSORGRIGHT + 10 +0 + 20 +0 + 30 +0 + 9 +$UCSORGFRONT + 10 +0 + 20 +0 + 30 +0 + 9 +$UCSORGBACK + 10 +0 + 20 +0 + 30 +0 + 9 +$PUCSBASE + 2 + + 9 +$PUCSNAME + 2 + + 9 +$PUCSORG + 10 +0 + 20 +0 + 30 +0 + 9 +$PUCSXDIR + 10 +1 + 20 +0 + 30 +0 + 9 +$PUCSYDIR + 10 +0 + 20 +1 + 30 +0 + 9 +$PUCSORTHOREF + 2 + + 9 +$PUCSORTHOVIEW + 70 + 0 + 9 +$PUCSORGTOP + 10 +0 + 20 +0 + 30 +0 + 9 +$PUCSORGBOTTOM + 10 +0 + 20 +0 + 30 +0 + 9 +$PUCSORGLEFT + 10 +0 + 20 +0 + 30 +0 + 9 +$PUCSORGRIGHT + 10 +0 + 20 +0 + 30 +0 + 9 +$PUCSORGFRONT + 10 +0 + 20 +0 + 30 +0 + 9 +$PUCSORGBACK + 10 +0 + 20 +0 + 30 +0 + 9 +$USERI1 + 70 + 0 + 9 +$USERI2 + 70 + 0 + 9 +$USERI3 + 70 + 0 + 9 +$USERI4 + 70 + 0 + 9 +$USERI5 + 70 + 0 + 9 +$USERR1 + 40 +0 + 9 +$USERR2 + 40 +0 + 9 +$USERR3 + 40 +0 + 9 +$USERR4 + 40 +0 + 9 +$USERR5 + 40 +0 + 9 +$WORLDVIEW + 70 + 1 + 9 +$SHADEDGE + 70 + 3 + 9 +$SHADEDIF + 70 + 70 + 9 +$TILEMODE + 70 + 1 + 9 +$MAXACTVP + 70 + 64 + 9 +$PINSBASE + 10 +0 + 20 +0 + 30 +0 + 9 +$PLIMCHECK + 70 + 0 + 9 +$PEXTMIN + 10 +0 + 20 +0 + 30 +0 + 9 +$PEXTMAX + 10 +0 + 20 +0 + 30 +0 + 9 +$SNAPSTYLE + 70 + 0 + 9 +$PLIMMIN + 10 +0 + 20 +0 + 9 +$PLIMMAX + 10 +210 + 20 +297 + 9 +$UNITMODE + 70 + 0 + 9 +$VISRETAIN + 70 + 1 + 9 +$PLINEGEN + 70 + 0 + 9 +$PSLTSCALE + 70 + 1 + 9 +$TREEDEPTH + 70 + 3020 + 9 +$CMLSTYLE + 2 +Standard + 9 +$CMLJUST + 70 + 0 + 9 +$CMLSCALE + 40 +20 + 9 +$PROXYGRAPHICS + 70 + 1 + 9 +$MEASUREMENT + 70 + 1 + 9 +$CELWEIGHT +370 + -1 + 9 +$ENDCAPS +280 + 0 + 9 +$JOINSTYLE +280 + 0 + 9 +$LWDISPLAY +290 + 0 + 9 +$INSUNITS + 70 + 4 + 9 +$HYPERLINKBASE + 1 + + 9 +$STYLESHEET + 1 + + 9 +$XEDIT +290 + 1 + 9 +$CEPSNTYPE +380 + 0 + 9 +$PSTYLEMODE +290 + 1 + 9 +$EXTNAMES +290 + 1 + 9 +$PSVPSCALE + 40 +1 + 9 +$OLESTARTUP +290 + 0 + 9 +$SORTENTS +280 + 127 + 9 +$INDEXCTL +280 + 0 + 9 +$HIDETEXT +280 + 1 + 9 +$XCLIPFRAME +290 + 0 + 9 +$HALOGAP +280 + 0 + 9 +$OBSCOLOR + 70 + 257 + 9 +$OBSLTYPE +280 + 0 + 9 +$INTERSECTIONDISPLAY +280 + 0 + 9 +$INTERSECTIONCOLOR + 70 + 257 + 9 +$DIMASSOC +280 + 1 + 9 +$PROJECTNAME + 1 + + 9 +$CAMERADISPLAY +290 + 0 + 9 +$LENSLENGTH + 40 +50 + 9 +$CAMERAHEIGHT + 40 +0 + 9 +$STEPSPERSEC + 40 +2 + 9 +$STEPSIZE + 40 +50 + 9 +$3DDWFPREC + 40 +2 + 9 +$PSOLWIDTH + 40 +5 + 9 +$PSOLHEIGHT + 40 +80 + 9 +$LOFTANG1 + 40 +1.570796326794897 + 9 +$LOFTANG2 + 40 +1.570796326794897 + 9 +$LOFTMAG1 + 40 +0 + 9 +$LOFTMAG2 + 40 +0 + 9 +$LOFTPARAM + 70 + 7 + 9 +$LOFTNORMALS +280 + 1 + 9 +$LATITUDE + 40 +1 + 9 +$LONGITUDE + 40 +1 + 9 +$NORTHDIRECTION + 40 +0 + 9 +$TIMEZONE + 70 +-8000 + 9 +$LIGHTGLYPHDISPLAY +280 + 1 + 9 +$TILEMODELIGHTSYNCH +280 + 1 + 9 +$SOLIDHIST +280 + 1 + 9 +$SHOWHIST +280 + 1 + 9 +$DWFFRAME +280 + 2 + 9 +$DGNFRAME +280 + 0 + 9 +$REALWORLDSCALE +290 + 1 + 9 +$INTERFERECOLOR + 62 + 1 + 9 +$CSHADOW +280 + 0 + 9 +$SHADOWPLANELOCATION + 40 +0 + 0 +ENDSEC + 0 +SECTION + 2 +CLASSES + 0 +ENDSEC + 0 +SECTION + 2 +TABLES + 0 +TABLE + 2 +VPORT + 5 +8 +330 +0 +100 +AcDbSymbolTable + 70 + 1 + 0 +VPORT + 5 +31 +330 +2 +100 +AcDbSymbolTableRecord +100 +AcDbViewportTableRecord + 2 +*ACTIVE + 70 + 0 + 10 +0 + 20 +0 + 11 +1 + 21 +1 + 12 +121 + 22 +78.25 + 13 +0 + 23 +0 + 14 +10 + 24 +10 + 15 +10 + 25 +10 + 16 +0 + 26 +0 + 36 +1 + 17 +0 + 27 +0 + 37 +0 + 40 +169 + 41 +1.505917159763314 + 42 +50 + 43 +0 + 44 +0 + 50 +0 + 51 +0 + 71 + 0 + 72 + 100 + 73 + 1 + 74 + 3 + 75 + 0 + 76 + 1 + 77 + 0 + 78 + 0 +281 + 0 + 65 + 1 +110 +0 +120 +0 +130 +0 +111 +1 +121 +0 +131 +0 +112 +0 +122 +1 +132 +0 + 79 + 0 +146 +0 +348 +10020 + 60 + 7 + 61 + 5 +292 +1 +282 + 1 +141 +0 +142 +0 + 63 + 250 +421 +3358443 + 0 +ENDTAB + 0 +TABLE + 2 +LTYPE + 5 +5 +330 +0 +100 +AcDbSymbolTable + 70 + 4 + 0 +LTYPE + 5 +14 +330 +5 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +ByBlock + 70 + 0 + 3 + + 72 + 65 + 73 + 0 + 40 +0 + 0 +LTYPE + 5 +15 +330 +5 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +ByLayer + 70 + 0 + 3 + + 72 + 65 + 73 + 0 + 40 +0 + 0 +LTYPE + 5 +16 +330 +5 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +Continuous + 70 + 0 + 3 +Solid line + 72 + 65 + 73 + 0 + 40 +0 + 0 +LTYPE + 5 +32 +330 +5 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +DOT + 70 + 0 + 3 +Dot . . . . . . . . . . . . . . . . . . . . . . + 72 + 65 + 73 + 2 + 40 +6.35 + 49 +0 + 74 + 0 + 49 +-6.35 + 74 + 0 + 0 +LTYPE + 5 +33 +330 +5 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +DOTTINY + 70 + 0 + 3 +Dot (.15x) ..................................... + 72 + 65 + 73 + 2 + 40 +0.9525 + 49 +0 + 74 + 0 + 49 +-0.9525 + 74 + 0 + 0 +LTYPE + 5 +34 +330 +5 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +DOT2 + 70 + 0 + 3 +Dot (.5x) ..................................... + 72 + 65 + 73 + 2 + 40 +3.175 + 49 +0 + 74 + 0 + 49 +-3.175 + 74 + 0 + 0 +LTYPE + 5 +35 +330 +5 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +DOTX2 + 70 + 0 + 3 +Dot (2x) . . . . . . . . . . . . . + 72 + 65 + 73 + 2 + 40 +12.7 + 49 +0 + 74 + 0 + 49 +-12.7 + 74 + 0 + 0 +LTYPE + 5 +36 +330 +5 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +DASHED + 70 + 0 + 3 +Dashed _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ + 72 + 65 + 73 + 2 + 40 +19.05 + 49 +12.7 + 74 + 0 + 49 +-6.35 + 74 + 0 + 0 +LTYPE + 5 +37 +330 +5 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +DASHEDTINY + 70 + 0 + 3 +Dashed (.15x) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ + 72 + 65 + 73 + 2 + 40 +2.8575 + 49 +1.905 + 74 + 0 + 49 +-0.9525 + 74 + 0 + 0 +LTYPE + 5 +38 +330 +5 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +DASHED2 + 70 + 0 + 3 +Dashed (.5x) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ + 72 + 65 + 73 + 2 + 40 +9.524999999999999 + 49 +6.35 + 74 + 0 + 49 +-3.175 + 74 + 0 + 0 +LTYPE + 5 +39 +330 +5 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +DASHEDX2 + 70 + 0 + 3 +Dashed (2x) ____ ____ ____ ____ ____ ___ + 72 + 65 + 73 + 2 + 40 +38.09999999999999 + 49 +25.4 + 74 + 0 + 49 +-12.7 + 74 + 0 + 0 +LTYPE + 5 +3A +330 +5 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +DASHDOT + 70 + 0 + 3 +Dash dot __ . __ . __ . __ . __ . __ . __ . __ + 72 + 65 + 73 + 4 + 40 +25.4 + 49 +12.7 + 74 + 0 + 49 +-6.35 + 74 + 0 + 49 +0 + 74 + 0 + 49 +-6.35 + 74 + 0 + 0 +LTYPE + 5 +3B +330 +5 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +DASHDOTTINY + 70 + 0 + 3 +Dash dot (.15x) _._._._._._._._._._._._._._._. + 72 + 65 + 73 + 4 + 40 +3.81 + 49 +1.905 + 74 + 0 + 49 +-0.9525 + 74 + 0 + 49 +0 + 74 + 0 + 49 +-0.9525 + 74 + 0 + 0 +LTYPE + 5 +3C +330 +5 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +DASHDOT2 + 70 + 0 + 3 +Dash dot (.5x) _._._._._._._._._._._._._._._. + 72 + 65 + 73 + 4 + 40 +12.7 + 49 +6.35 + 74 + 0 + 49 +-3.175 + 74 + 0 + 49 +0 + 74 + 0 + 49 +-3.175 + 74 + 0 + 0 +LTYPE + 5 +3D +330 +5 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +DASHDOTX2 + 70 + 0 + 3 +Dash dot (2x) ____ . ____ . ____ . ___ + 72 + 65 + 73 + 4 + 40 +50.8 + 49 +25.4 + 74 + 0 + 49 +-12.7 + 74 + 0 + 49 +0 + 74 + 0 + 49 +-12.7 + 74 + 0 + 0 +LTYPE + 5 +3E +330 +5 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +DIVIDE + 70 + 0 + 3 +Divide ____ . . ____ . . ____ . . ____ . . ____ + 72 + 65 + 73 + 6 + 40 +31.75 + 49 +12.7 + 74 + 0 + 49 +-6.35 + 74 + 0 + 49 +0 + 74 + 0 + 49 +-6.35 + 74 + 0 + 49 +0 + 74 + 0 + 49 +-6.35 + 74 + 0 + 0 +LTYPE + 5 +3F +330 +5 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +DIVIDETINY + 70 + 0 + 3 +Divide (.15x) __..__..__..__..__..__..__..__.._ + 72 + 65 + 73 + 6 + 40 +4.7625 + 49 +1.905 + 74 + 0 + 49 +-0.9525 + 74 + 0 + 49 +0 + 74 + 0 + 49 +-0.9525 + 74 + 0 + 49 +0 + 74 + 0 + 49 +-0.9525 + 74 + 0 + 0 +LTYPE + 5 +40 +330 +5 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +DIVIDE2 + 70 + 0 + 3 +Divide (.5x) __..__..__..__..__..__..__..__.._ + 72 + 65 + 73 + 6 + 40 +15.875 + 49 +6.35 + 74 + 0 + 49 +-3.175 + 74 + 0 + 49 +0 + 74 + 0 + 49 +-3.175 + 74 + 0 + 49 +0 + 74 + 0 + 49 +-3.175 + 74 + 0 + 0 +LTYPE + 5 +41 +330 +5 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +DIVIDEX2 + 70 + 0 + 3 +Divide (2x) ________ . . ________ . . _ + 72 + 65 + 73 + 6 + 40 +63.5 + 49 +25.4 + 74 + 0 + 49 +-12.7 + 74 + 0 + 49 +0 + 74 + 0 + 49 +-12.7 + 74 + 0 + 49 +0 + 74 + 0 + 49 +-12.7 + 74 + 0 + 0 +LTYPE + 5 +42 +330 +5 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +BORDER + 70 + 0 + 3 +Border __ __ . __ __ . __ __ . __ __ . __ __ . + 72 + 65 + 73 + 6 + 40 +44.45 + 49 +12.7 + 74 + 0 + 49 +-6.35 + 74 + 0 + 49 +12.7 + 74 + 0 + 49 +-6.35 + 74 + 0 + 49 +0 + 74 + 0 + 49 +-6.35 + 74 + 0 + 0 +LTYPE + 5 +43 +330 +5 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +BORDERTINY + 70 + 0 + 3 +Border (.15x) __.__.__.__.__.__.__.__.__.__.__. + 72 + 65 + 73 + 6 + 40 +6.6675 + 49 +1.905 + 74 + 0 + 49 +-0.9525 + 74 + 0 + 49 +1.905 + 74 + 0 + 49 +-0.9525 + 74 + 0 + 49 +0 + 74 + 0 + 49 +-0.9525 + 74 + 0 + 0 +LTYPE + 5 +44 +330 +5 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +BORDER2 + 70 + 0 + 3 +Border (.5x) __.__.__.__.__.__.__.__.__.__.__. + 72 + 65 + 73 + 6 + 40 +22.225 + 49 +6.35 + 74 + 0 + 49 +-3.175 + 74 + 0 + 49 +6.35 + 74 + 0 + 49 +-3.175 + 74 + 0 + 49 +0 + 74 + 0 + 49 +-3.175 + 74 + 0 + 0 +LTYPE + 5 +45 +330 +5 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +BORDERX2 + 70 + 0 + 3 +Border (2x) ____ ____ . ____ ____ . ___ + 72 + 65 + 73 + 6 + 40 +88.89999999999999 + 49 +25.4 + 74 + 0 + 49 +-12.7 + 74 + 0 + 49 +25.4 + 74 + 0 + 49 +-12.7 + 74 + 0 + 49 +0 + 74 + 0 + 49 +-12.7 + 74 + 0 + 0 +LTYPE + 5 +46 +330 +5 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +CENTER + 70 + 0 + 3 +Center ____ _ ____ _ ____ _ ____ _ ____ _ ____ + 72 + 65 + 73 + 4 + 40 +50.8 + 49 +31.75 + 74 + 0 + 49 +-6.35 + 74 + 0 + 49 +6.35 + 74 + 0 + 49 +-6.35 + 74 + 0 + 0 +LTYPE + 5 +47 +330 +5 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +CENTERTINY + 70 + 0 + 3 +Center (.15x) ___ _ ___ _ ___ _ ___ _ ___ _ ___ + 72 + 65 + 73 + 4 + 40 +7.62 + 49 +4.7625 + 74 + 0 + 49 +-0.9525 + 74 + 0 + 49 +0.9525 + 74 + 0 + 49 +-0.9525 + 74 + 0 + 0 +LTYPE + 5 +48 +330 +5 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +CENTER2 + 70 + 0 + 3 +Center (.5x) ___ _ ___ _ ___ _ ___ _ ___ _ ___ + 72 + 65 + 73 + 4 + 40 +28.575 + 49 +19.05 + 74 + 0 + 49 +-3.175 + 74 + 0 + 49 +3.175 + 74 + 0 + 49 +-3.175 + 74 + 0 + 0 +LTYPE + 5 +49 +330 +5 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord + 2 +CENTERX2 + 70 + 0 + 3 +Center (2x) ________ __ ________ __ _____ + 72 + 65 + 73 + 4 + 40 +101.6 + 49 +63.5 + 74 + 0 + 49 +-12.7 + 74 + 0 + 49 +12.7 + 74 + 0 + 49 +-12.7 + 74 + 0 + 0 +ENDTAB + 0 +TABLE + 2 +LAYER + 5 +2 +330 +0 +100 +AcDbSymbolTable + 70 + 1 + 0 +LAYER + 5 +10 +330 +2 +100 +AcDbSymbolTableRecord +100 +AcDbLayerTableRecord + 2 +0 + 70 + 0 + 62 + 7 + 6 +CONTINUOUS +370 + 0 +390 +F + 0 +ENDTAB + 0 +TABLE + 2 +STYLE + 5 +3 +330 +0 +100 +AcDbSymbolTable + 70 + 3 + 0 +STYLE + 5 +4A +330 +2 +100 +AcDbSymbolTableRecord +100 +AcDbTextStyleTableRecord + 2 +Standard + 70 + 0 + 40 +0 + 41 +1 + 50 +0 + 71 + 0 + 42 +1 + 3 +txt + 4 + + 0 +ENDTAB + 0 +TABLE + 2 +VIEW + 5 +6 +330 +0 +100 +AcDbSymbolTable + 70 + 0 + 0 +ENDTAB + 0 +TABLE + 2 +UCS + 5 +7 +330 +0 +100 +AcDbSymbolTable + 70 + 0 + 0 +ENDTAB + 0 +TABLE + 2 +APPID + 5 +9 +330 +0 +100 +AcDbSymbolTable + 70 + 1 + 0 +APPID + 5 +12 +330 +9 +100 +AcDbSymbolTableRecord +100 +AcDbRegAppTableRecord + 2 +ACAD + 70 + 0 + 0 +APPID + 5 +4B +330 +9 +100 +AcDbSymbolTableRecord +100 +AcDbRegAppTableRecord + 2 +LibreCad + 70 + 0 + 0 +ENDTAB + 0 +TABLE + 2 +DIMSTYLE + 5 +A +330 +0 +100 +AcDbSymbolTable + 70 + 1 +100 +AcDbDimStyleTable + 71 + 1 + 0 +DIMSTYLE +105 +4C +330 +A +100 +AcDbSymbolTableRecord +100 +AcDbDimStyleTableRecord + 2 +Standard + 70 + 0 + 40 +1 + 41 +2.5 + 42 +0.625 + 43 +0.38 + 44 +1.25 + 45 +0 + 46 +0 + 47 +0 + 48 +0 + 49 +1 +140 +2.5 +141 +0.09 +142 +2.5 +143 +25.4 +144 +1 +145 +0 +146 +1 +147 +0.625 +148 +0 + 71 + 0 + 72 + 0 + 73 + 0 + 74 + 1 + 75 + 0 + 76 + 0 + 77 + 0 + 78 + 1 + 79 + 0 +170 + 0 +171 + 2 +172 + 0 +173 + 0 +174 + 0 +175 + 0 +176 + 0 +177 + 0 +178 + 0 +179 + 0 +271 + 2 +272 + 4 +273 + 2 +274 + 2 +275 + 0 +276 + 0 +277 + 2 +278 + 0 +279 + 0 +280 + 0 +281 + 0 +282 + 0 +283 + 1 +284 + 0 +285 + 0 +286 + 0 +288 + 0 +289 + 3 +340 +standard +341 + +371 + -2 +372 + -2 + 0 +ENDTAB + 0 +TABLE + 2 +BLOCK_RECORD + 5 +1 +330 +0 +100 +AcDbSymbolTable + 70 + 2 + 0 +BLOCK_RECORD + 5 +1F +330 +1 +100 +AcDbSymbolTableRecord +100 +AcDbBlockTableRecord + 2 +*Model_Space + 70 + 0 +280 + 1 +281 + 0 + 0 +BLOCK_RECORD + 5 +1E +330 +1 +100 +AcDbSymbolTableRecord +100 +AcDbBlockTableRecord + 2 +*Paper_Space + 70 + 0 +280 + 1 +281 + 0 + 0 +ENDTAB + 0 +ENDSEC + 0 +SECTION + 2 +BLOCKS + 0 +BLOCK + 5 +20 +330 +1F +100 +AcDbEntity + 8 +0 +100 +AcDbBlockBegin + 2 +*Model_Space + 70 + 0 + 10 +0 + 20 +0 + 30 +0 + 3 +*Model_Space + 1 + + 0 +ENDBLK + 5 +21 +330 +1F +100 +AcDbEntity + 8 +0 +100 +AcDbBlockEnd + 0 +BLOCK + 5 +1C +330 +1B +100 +AcDbEntity + 8 +0 +100 +AcDbBlockBegin + 2 +*Paper_Space + 70 + 0 + 10 +0 + 20 +0 + 30 +0 + 3 +*Paper_Space + 1 + + 0 +ENDBLK + 5 +1D +330 +1F +100 +AcDbEntity + 8 +0 +100 +AcDbBlockEnd + 0 +ENDSEC + 0 +SECTION + 2 +ENTITIES + 0 +ELLIPSE + 5 +4D +100 +AcDbEntity + 8 +0 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbEllipse + 10 +50 + 20 +110 + 30 +0 + 11 +50 + 21 +-30 + 31 +0 + 40 +0.4411764705882353 + 41 +0 + 42 +6.283185307179586 + 0 +LWPOLYLINE + 5 +4E +100 +AcDbEntity + 8 +0 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbPolyline + 90 + 5 + 70 + 0 + 43 +0 + 10 +10 + 20 +60 + 10 +10 + 20 +10 + 10 +90 + 20 +10 + 10 +90 + 20 +60 + 10 +10 + 20 +60 + 0 +LWPOLYLINE + 5 +4F +100 +AcDbEntity + 8 +0 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbPolyline + 90 + 5 + 70 + 0 + 43 +0 + 10 +130 + 20 +110 + 10 +200 + 20 +80 + 10 +200 + 20 +50 + 10 +160 + 20 +30 + 10 +130 + 20 +110 + 0 +LWPOLYLINE + 5 +50 +100 +AcDbEntity + 8 +0 + 6 +ByLayer + 62 + 256 +370 + -1 +100 +AcDbPolyline + 90 + 4 + 70 + 0 + 43 +0 + 10 +110 + 20 +70 + 10 +100 + 20 +0 + 10 +160 + 20 +-10 + 10 +110 + 20 +70 + 0 +ENDSEC + 0 +SECTION + 2 +OBJECTS + 0 +DICTIONARY + 5 +C +330 +0 +100 +AcDbDictionary +281 + 1 + 3 +ACAD_GROUP +350 +D + 0 +DICTIONARY + 5 +D +330 +C +100 +AcDbDictionary +281 + 1 + 0 +ENDSEC + 0 +EOF diff --git a/pycam/scripts/list_events.sh b/pycam/scripts/list_events.sh new file mode 100755 index 00000000..f6fdb71c --- /dev/null +++ b/pycam/scripts/list_events.sh @@ -0,0 +1,17 @@ +#!/bin/sh + +set -eu + +BASE_DIR=$(cd "$(dirname "$0")"; pwd) + +grep -rh _event "$BASE_DIR/../pycam" | \ + grep -v " def " | \ + grep -v configure_event | \ + grep -v expose_event | \ + sed 's/.*_event//g' | \ + grep '"' | \ + cut -f 2 -d '"' | \ + grep -E "^[0-9A-Za-z_-]+$" | \ + sort | \ + uniq -c + diff --git a/pycam/scripts/profile_pycam.py b/pycam/scripts/profile_pycam.py new file mode 100644 index 00000000..66f119c6 --- /dev/null +++ b/pycam/scripts/profile_pycam.py @@ -0,0 +1,56 @@ +import cProfile +from os.path import join +import pstats +import sys +from time import time + +from pycam.Cutters.CylindricalCutter import CylindricalCutter +from pycam.Geometry import Box3D, Point3D +from pycam.Gui.Console import ConsoleProgressBar +from pycam.Importers.STLImporter import import_model +from pycam.PathGenerators.DropCutter import DropCutter +from pycam.PathProcessors.PathAccumulator import PathAccumulator +from pycam.Toolpath import Bounds +from pycam.Toolpath.MotionGrid import get_fixed_grid +from pycam.Utils.locations import get_data_file_location + +# Disable multi processing +from pycam.Utils import threading +threading.__multiprocessing = False + +""" Profile PyCAM doing several operations, print out the top 10 +(sorted by actual local runtime) methods. +""" + +model = import_model(get_data_file_location(join('samples', 'pycam-textbox.stl'))) + + +def run_dropcutter(): + """ Run DropCutter on standard PyCAM sample plaque """ + progress_bar = ConsoleProgressBar(sys.stdout) + + overlap = .6 + layer_distance = 1 + tool = CylindricalCutter(10) + path_generator = DropCutter(PathAccumulator()) + bounds = Bounds(Bounds.TYPE_CUSTOM, Box3D(Point3D(model.minx-5, model.miny-5, model.minz), + Point3D(model.maxx+5, model.maxy+5, model.maxz))) + + low, high = bounds.get_absolute_limits() + line_distance = 2 * tool.radius * (1.0 - overlap) + + motion_grid = get_fixed_grid((low, high), layer_distance, + line_distance, tool.radius / 4.0) + path_generator.GenerateToolPath(tool, [model], motion_grid, minz=low[2], maxz=high[2], + draw_callback=progress_bar.update) + + +if __name__ == '__main__': + print(model.minx, model.miny, model.maxx, model.maxy) + start_time = time() + cProfile.run('run_dropcutter()', 'dropcutter.pyprof') + run_time = time() - start_time + print('\nDropcutter took %f seconds' % run_time) + p = pstats.Stats('dropcutter.pyprof') + print('Top ten time-consuming functions:') + p.sort_stats('time').print_stats(10) diff --git a/pycam/scripts/pycam_win32_postinstall.py b/pycam/scripts/pycam_win32_postinstall.py new file mode 100644 index 00000000..608e69ca --- /dev/null +++ b/pycam/scripts/pycam_win32_postinstall.py @@ -0,0 +1,90 @@ +""" +Copyright 2010 Lars Kruse + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + +import distutils.sysconfig +import os +import sys + +try: + logfile = os.path.join(distutils.sysconfig.PREFIX, "pycam-wininst-postinstall.log", "a") +except OSError: + logfile = None +if logfile: + sys.stdout = logfile + sys.stderr = logfile + +# There are some additional builtin functions available in the context of this script: +# https://docs.python.org/3/distutils/builtdist.html#the-postinstallation-script +# We use the following functions: +# create_shortcut +# directory_created +# file_created +# get_special_folder_path + +LINK_EXTENSION = ".lnk" + +try: + START_MENU_BASEDIR = get_special_folder_path("CSIDL_COMMON_PROGRAMS") +except OSError: + START_MENU_BASEDIR = get_special_folder_path("CSIDL_PROGRAMS") # noqa: F821 +except NameError: + START_MENU_BASEDIR = "C:\\" +START_MENU_SUBDIR = os.path.join(START_MENU_BASEDIR, "PyCAM") + +# create a start menu item for pycam +PYTHON_EXE = os.path.join(distutils.sysconfig.EXEC_PREFIX, "pythonw.exe") +# surround the start script with quotes to avoid space-issues +START_SCRIPT = '"%s"' % os.path.join(distutils.sysconfig.EXEC_PREFIX, "Scripts", "pycam-loader.py") + +SHARE_DIR = os.path.join(distutils.sysconfig.PREFIX, "share", "pycam") + +PYTHON_DOC_DIR = os.path.join(SHARE_DIR, "doc") + +ICON_FILE = os.path.join(SHARE_DIR, "pycam.ico") + +# add some more doc files +DOC_FILES = [("LICENSE.TXT", "License")] +WEB_LINKS = [ + (r"http://pycam.sourceforge.net/", "Project's Website"), + (r"http://sourceforge.net/tracker/?group_id=237831&atid=1104176", "Report a Bug"), + (r"http://sourceforge.net/projects/pycam/forums", "Forum Discussions"), + (r"http://sourceforge.net/apps/mediawiki/pycam/index.php?title=User_Manual", "User Manual")] + +MENU_ITEMS = map(lambda v: (os.path.join(PYTHON_DOC_DIR, v[0]), v[1]), DOC_FILES) +MENU_ITEMS.extend(WEB_LINKS) + +action = sys.argv[1] + + +if action == "-install": + if not os.path.exists(START_MENU_SUBDIR): + os.mkdir(START_MENU_SUBDIR) + directory_created(START_MENU_SUBDIR) # noqa: F821 + for menu_item in MENU_ITEMS: + target, description = menu_item + filename = os.path.join(START_MENU_SUBDIR, description) + LINK_EXTENSION + create_shortcut(target, description, filename) # noqa: F821 + file_created(filename) # noqa: F821 + filename = os.path.join(START_MENU_SUBDIR, "Run PyCAM") + LINK_EXTENSION + create_shortcut(PYTHON_EXE, "Run PyCAM", filename, START_SCRIPT, "", ICON_FILE) # noqa: F821 + file_created(filename) # noqa: F821 +elif action == "-remove": + pass +else: + pass diff --git a/pycam/scripts/pylint.sh b/pycam/scripts/pylint.sh new file mode 100755 index 00000000..a2ea6a48 --- /dev/null +++ b/pycam/scripts/pylint.sh @@ -0,0 +1,11 @@ +#!/bin/sh + +set -eu + +BASE_PATH="$(cd "$(dirname "$0")"; pwd)" + +IGNORE_LIST="C0103,C0111,C0301" +IGNORE_LIST="$IGNORE_LIST,W0511,W0602,W0603,W0612,W0613" +IGNORE_LIST="$IGNORE_LIST,R0201,R0902,R0903,R0911,R0912,R0913,R0914,R0915" + +PYTHONPATH="$BASE_PATH/pycam" pylint -i y -d "$IGNORE_LIST" "$1" diff --git a/pycam/scripts/run_flake8 b/pycam/scripts/run_flake8 new file mode 100755 index 00000000..2f5cb581 --- /dev/null +++ b/pycam/scripts/run_flake8 @@ -0,0 +1,34 @@ +#!/usr/bin/env python3 +""" +This script is just a wrapper around different versions of flake8. +It can be removed as soon as "python -m flake8" works across all common distributions. +""" + +import sys + + +def get_flake8_runner(): + def import_via_main_or_maincli(): + """ try to import "main" from flake8.main or flake8.main.cli + + The "flake8" module in Debian Jessie and Stretch, as well as Ubuntu Trusty/Xenial use + different names. + """ + try: + # Debian Stretch + from flake8.main.cli import main + except ImportError: + # Debian Jessie and Ubuntu Trusty + from flake8.main import main + return main + try: + return import_via_main_or_maincli() + except ImportError: + # probably a virtualenv on travis is hiding the system packages from us + sys.path.insert(0, "/usr/lib/python3/dist-packages") + return import_via_main_or_maincli() + + +if __name__ == "__main__": + runner = get_flake8_runner() + runner() diff --git a/pycam/setup.cfg b/pycam/setup.cfg new file mode 100644 index 00000000..15433f3b --- /dev/null +++ b/pycam/setup.cfg @@ -0,0 +1,25 @@ +[bdist_wininst] +#install_script = pycam_win32_postinstall.py +bitmap = share/ui/logo_gui_vertical.bmp + +[bdist_msi] +#install_script = pycam_win32_postinstall.py + +[bdist_rpm] +packager = Lars Kruse +doc_files = Changelog + README.md + INSTALL.TXT + LICENSE.TXT + COPYING.TXT + docs/ + examples/ + +[flake8] +max-line-length = 99 +# flake8 defaults: E121,E123,E126,E226,E24,E704,W503,W504 +# custom additions: +# E731: sometimes we like lambda +# E741: tolerate short names +# N806: TODO: fix these non-standard naming exceptions +ignore = E121,E123,E126,E226,E24,E704,W503,W504,E731,E741,N806 diff --git a/pycam/setup.py b/pycam/setup.py new file mode 100755 index 00000000..e61cfaa0 --- /dev/null +++ b/pycam/setup.py @@ -0,0 +1,88 @@ +#!/usr/bin/env python3 +""" +Copyright 2010 Lars Kruse +Copyright 2010 Arthur Magill + +This file is part of PyCAM. + +PyCAM is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with PyCAM. If not, see . +""" + +import glob +import os.path +from setuptools import setup, find_packages + +from pycam import VERSION + +BASE_DIR = os.path.realpath(os.path.abspath(os.path.dirname(__file__))) + + +setup( + name="pycam", + version=VERSION, + license="GPL v3", + description="Open Source CAM - Toolpath Generation for 3-Axis CNC machining", + author="Lars Kruse", + author_email="devel@sumpfralle.de", + provides=["pycam"], + requires=["PyOpenGL", "PyYAML"], + url="http://pycam.sourceforge.net/", + download_url="http://sourceforge.net/projects/pycam/files", + keywords=["3-axis", "cnc", "cam", "toolpath", "machining", "g-code"], + long_description="""IMPORTANT NOTE: Please read the list of requirements: +http://pycam.sourceforge.net/requirements +Basically you will need Python3, GTK and OpenGL. + +Windows: select Python 3.X in the following dialog. +""", + # full list of classifiers at: + # http://pypi.python.org/pypi?:action=list_classifiers + classifiers=[ + "Programming Language :: Python", + "Programming Language :: Python :: 3", + "Development Status :: 4 - Beta", + "License :: OSI Approved :: GNU General Public License (GPL)", + "Topic :: Scientific/Engineering", + "Environment :: Win32 (MS Windows)", + "Environment :: X11 Applications :: GTK", + "Intended Audience :: Manufacturing", + "Operating System :: Microsoft :: Windows", + "Operating System :: MacOS :: MacOS X", + "Operating System :: POSIX", + ], + packages=find_packages(exclude=["pycam.Test"]), + entry_points={ + "gui_scripts": [ + "pycam = pycam.run_gui:main_func", + ], + "console_scripts": [ + "pycam-cli = pycam.run_cli:main_func", + ], + }, + data_files=[ + ("share/pycam/doc", ["COPYING.TXT", + "INSTALL.md", + "LICENSE.TXT", + "README.md", + "Changelog", + "release_info.txt"]), + ("share/pycam/ui", glob.glob(os.path.join("share", "ui", "*"))), + ("share/pycam/fonts", glob.glob(os.path.join("share", "fonts", "*"))), + ("share/pycam", [os.path.join("share", "pycam.ico"), + os.path.join("share", "misc", "DXF.gpl")]), + ("share/pycam/samples", glob.glob(os.path.join("samples", "*"))), + ], +) + +# vim: tabstop=4 expandtab shiftwidth=4 softtabstop=4 diff --git a/pycam/share/desktop/pycam.desktop b/pycam/share/desktop/pycam.desktop new file mode 100644 index 00000000..a79e2c23 --- /dev/null +++ b/pycam/share/desktop/pycam.desktop @@ -0,0 +1,13 @@ +[Desktop Entry] +Version=1.0 +Name=PyCAM +GenericName=Toolpath Generator +Comment=generate GCode for 3-Axis CNC machining +Exec=pycam %u +TryExec=pycam +Terminal=false +Type=Application +Categories=Development;Engineering;Robotics;Education;Science;2DGraphics;VectorGraphics;3DGraphics; +MimeType=application/sla;image/svg+xml;application/postscript;image/vnd.dxf; +Icon=pycam + diff --git a/pycam/share/fonts/README b/pycam/share/fonts/README new file mode 100644 index 00000000..182f7c9c --- /dev/null +++ b/pycam/share/fonts/README @@ -0,0 +1,7 @@ +The fonts delivered with PyCAM are taken from QCAD: + http://www.qcad.org/ + +The fonts are licensed under the GPL v2.0 or later. + +Thanks to the QCAD developers for this great piece of work! + diff --git a/pycam/share/fonts/courier.cxf b/pycam/share/fonts/courier.cxf new file mode 100644 index 00000000..2600d40b --- /dev/null +++ b/pycam/share/fonts/courier.cxf @@ -0,0 +1,868 @@ +# Format: QCad II Font +# Creator: QCad 1 +# Version: 1 +# Name: Courier +# LetterSpacing: 3.0 +# WordSpacing: 6.75 +# LineSpacingFactor: 1.0 +# Author: Andrew Mustun + +[!] 2 +L 0,9,0,2 +L 0,1,0,0 + +["] 2 +L 3,9,3,6 +L 6,9,6,6 + +[#] 4 +L 3.5,9,2.5,0 +L 5.5,0,6.5,9 +L 1.5,6,7.5,6 +L 7.5,3,1.5,3 + +[$] 10 +L 1,0,1,3 +A 3.25,6.75,2.25,90,270 +L 8,9,8,6 +A 5.75,2.25,2.25,270,90 +L 3.25,4.5,5.75,4.5 +A 6,7,2,0,90 +A 3,2,2,180,270 +L 3,0,5.75,0 +L 6,9,3.25,9 +L 4.5,10,4.5,-1 + +[%] 5 +A 3,7,2,0,180 +A 3,7,2,180,0 +A 6,2,2,0,180 +A 6,2,2,180,0 +L 1,2,8,7 + +[&] 6 +L 6.5,0,7.5,0 +L 7.5,3.214989,4.925964,0.597641 +A 3.5,2,2,135.478088,315.478088 +L 2.074036,3.402359,5.069458,6.448231 +A 4,7.5,1.5,315.478271,209.372314 +L 2.69281,6.764282,6.5,0 + +['] 1 +L 1,9,0,7 + +[(] 1 +A 11.5,4.5,8.514693,139.763641,220.236359 + +[)] 1 +A -2.5,4.5,8.514693,319.763641,40.236359 + +[*] 5 +L 4.5,9,4.5,7 +L 2.5979,7.618034,4.5,7 +L 3.324402,5.381966,4.5,7 +L 5.675598,5.381966,4.5,7 +L 6.4021,7.618034,4.5,7 + +[+] 4 +L 1.5,4,7.5,4 +L 4.5,7,4.5,1 +L 1.5,0,7.5,0 +L 4.5,3,4.5,-3 + +[,] 2 +L 1,1,1,0 +L 1,0,0,-2 + +[-] 1 +L 1.5,4,7.5,4 + +[.] 1 +L 0,1,0,0 + +[/] 1 +L 7.5,10,1.5,-1 + +[0] 4 +A 10.141174,4.5,8.156516,154.203629,205.796356 +A -1.141174,4.5,8.156516,334.203644,25.796375 +A 4.5,7,2,31.65184,148.348526 +A 4.5,2,2,211.651459,328.348297 + +[1] 3 +L 1.5,0,7.5,0 +L 4.5,0,4.5,9 +L 4.5,9,1.5,7 + +[2] 5 +L 7.5,2,7.5,0 +L 7.5,0,1.5,0 +L 1.5,0,6.669739,4.639369 +A 5,6.5,2.5,311.904999,126.869896 +L 2.182617,7.511972,3.5,8.5 + +[3] 5 +A 5.5,7,2,270,99.823212 +A 5.696838,5.221589,3.783536,94.470367,144.984543 +A 4.666687,2.833332,2.838246,220.236084,12.980455 +A 5.5,3,2,13.76598,90 +L 5.5,5,4.5,5 + +[4] 4 +L 8,0,3,0 +L 6,0,6,9 +L 6,9,1,2 +L 1,2,8,2 + +[5] 6 +L 7.5,9,1.5,9 +L 1.5,1,3.34613,0.23077 +A 4.5,3,3,247.379745,0 +A 4.975891,3,2.524109,0,90 +A 4.975891,-1,6.524109,90,122.193237 +L 1.5,9,1.5,4.521068 + +[6] 5 +A 7.5,3,6,90,180 +A 4.5,3,3,180,270 +A 4.5,3,3,270,0 +A 5.5,3,2,0,90 +A 5.5,0,5,90,143.026321 + +[7] 3 +L 1,7,1,9 +L 1,9,8,9 +L 8,9,3,0 + +[8] 4 +A 4.5,7,2,90,270 +A 4.5,7,2,270,90 +A 4.5,2.5,2.5,90,270 +A 4.5,2.5,2.5,270,90 + +[9] 5 +A 4.5,6.5,2.5,90,270 +A -3.729675,4.790111,10.894594,344.034576,10.344007 +A 4.214355,2.763891,2.710038,229.544617,339.017487 +A 4.5,6.5,2.5,359.019745,90 +A 4.5,7,3,270,332.236603 + +[:] 2 +L 4.5,1,4.5,0 +L 4.5,4,4.5,5 + +[;] 3 +L 5,1,5,0 +L 5,0,4,-2 +L 5,5,5,4 + +[<] 2 +L 8,7,1,4 +L 1,4,8,1 + +[=] 2 +L 1.5,6,7.5,6 +L 7.5,3,1.5,3 + +[>] 2 +L 1,1,8,4 +L 8,4,1,7 + +[?] 5 +L 4.5,0,4.5,1 +L 4.5,2,4.5,4 +A 4.5,6.5,2.5,270,90 +A 4.5,4,5,90,126.869896 +L 1.5,7,1.5,8 + +[@] 11 +L 8,1,6.067566,0.28186 +A 4.5,4.5,4.5,333.472015,290.386322 +A 7.412354,2.943008,1.2,168.690186,337.880432 +A 4.439636,4,2,168.689804,270 +A 5.170288,5.5,1.5,348.690002,90 +A 5.049561,4.5,2.5,90,168.690094 +L 2.478455,4.392246,2.598083,4.990294 +A 4.360352,4,2,270,348.68985 +L 4.360352,2,4.439636,2 +L 6.321533,3.607756,7,7 +L 5.049561,7,5.170288,7 + +[A] 6 +L 0,0,3,0 +L 4.5,9,1,0 +L 4.5,9,2,9 +L 6,0,9,0 +L 4.5,9,8,0 +L 2.555542,4,6.444458,4 + +[B] 6 +L 2.5,9,2.5,0 +L 2.5,5,6,5 +A 6,2.5,2.5,270,90 +L 0.5,9,5.5,9 +A 5.5,7,2,270,90 +L 0.5,0,6,0 + +[C] 5 +L 8.200012,9,8.200012,6 +L 8.5,2,6.900024,0.799999 +L 0.5,5,0.5,4 +A 4.5,4,4,180,306.870178 +A 4.5,5,4,22.331678,180 + +[D] 6 +L 2.5,0,2.5,9 +A 4.436523,5,4,14.477451,90 +L 0.5,9,4.436523,9 +A 4.436462,4,4,270,345.52243 +A 2.5,4.5,6,345.52243,14.47745 +L 0.5,0,4.436462,0 + +[E] 7 +L 2.5,0,2.5,9 +L 0.5,9,8.5,9 +L 0.5,0,8.5,0 +L 8.5,0,8.5,2 +L 8.5,9,8.5,7 +L 5.5,6,5.5,3 +L 2.5,4.5,5.5,4.5 + +[F] 6 +L 2.5,0,2.5,9 +L 0.5,0,4.5,0 +L 0.5,9,8.5,9 +L 8.5,9,8.5,7 +L 5.5,6,5.5,3 +L 2.5,4.5,5.5,4.5 + +[G] 7 +L 0,5,0,4 +L 7.700012,9,7.700012,6 +A 4,5,4,22.331762,187.180756 +L 9,4,5,4 +L 7.700012,4,7.700012,1 +L 7.700012,1,5.24115,0.197433 +A 4,4,4,172.819244,288.076782 + +[H] 7 +L 2,0,2,9 +L 7,9,7,0 +L 2,4,7,4 +L 0.5,0,3.5,0 +L 3.5,9,0.5,9 +L 5.5,9,8.5,9 +L 8.5,0,5.5,0 + +[I] 3 +L 1,9,8,9 +L 1,0,8,0 +L 4.5,0,4.5,9 + +[J] 3 +L 8.5,9,4.5,9 +L 6.5,9,6.5,3 +A 3.5,3,3,180,0 + +[K] 7 +L 2,9,2,0 +L 7,0,2,5 +L 7,9,3,4 +L 0.5,9,3.5,9 +L 0.5,0,3.5,0 +L 8.5,9,5.5,9 +L 8.5,0,5.5,0 + +[L] 4 +L 1,9,4,9 +L 2,9,2,0 +L 1,0,8,0 +L 8,0,8,3 + +[M] 8 +L 0,0,3,0 +L 6,0,9,0 +L 0,9,3,9 +L 6,9,9,9 +L 1,0,1,9 +L 8,9,8,0 +L 1,9,4.5,2.75 +L 4.5,2.75,8,9 + +[N] 7 +L 0,9,3,9 +L 3,0,0,0 +L 9,9,6,9 +L 6,0,9,0 +L 1,9,1,0 +L 1,9,8,0 +L 8,0,8,9 + +[O] 8 +L 1,3,1,6 +A 4,6,3,90,180 +A 4,3,3,180,270 +L 4,9,5,9 +L 5,0,4,0 +L 8,6,8,3 +A 5,6,3,0,90 +A 5,3,3,270,0 + +[P] 5 +L 0.5,0,3.5,0 +L 1.5,0,1.5,9 +L 0.5,9,5.5,9 +L 1.5,4,5.5,4 +A 5.5,6.5,2.5,270,90 + +[Q] 9 +L 1,3,1,6 +A 4,6,3,90,180 +A 4,3,3,180,270 +L 4,9,5,9 +L 5,0,4,0 +L 8,6,8,3 +A 5,6,3,0,90 +A 5,3,3,270,0 +L 8,0,5,3 + +[R] 7 +L 0.5,0,3.5,0 +L 1.5,0,1.5,9 +L 0.5,9,5.5,9 +L 1.5,4,5.5,4 +A 5.5,6.5,2.5,270,90 +L 8.5,0,5.5,0 +L 7,0,5,4 + +[S] 9 +L 1,0,1,3 +A 3.25,6.75,2.25,90,270 +L 8,9,8,6 +A 5.75,2.25,2.25,270,90 +L 3.25,4.5,5.75,4.5 +A 6,7,2,0,90 +A 3,2,2,180,270 +L 3,0,5.75,0 +L 6,9,3.25,9 + +[T] 5 +L 1,7,1,9 +L 8,9,8,7 +L 1,9,8,9 +L 3,0,6,0 +L 4.5,9,4.5,0 + +[U] 6 +L 0,9,3,9 +L 9,9,6,9 +L 1.5,9,1.5,3 +A 4.5,3,3,180,270 +L 7.5,9,7.5,3 +A 4.5,3,3,270,0 + +[V] 4 +L 0,9,3,9 +L 9,9,6,9 +L 4.5,0,1.5,9 +L 7.5,9,4.5,0 + +[W] 6 +L 0,9,3,9 +L 6,9,9,9 +L 3,0,4.5,6 +L 4.5,6,6,0 +L 1.5,9,3,0 +L 6,0,7.5,9 + +[X] 6 +L 0,9,3,9 +L 6,9,9,9 +L 0,0,3,0 +L 6,0,9,0 +L 1.5,9,7.5,0 +L 1.5,0,7.5,9 + +[Y] 6 +L 0,9,3,9 +L 6,9,9,9 +L 3,0,6,0 +L 4.5,4,4.5,0 +L 1.5,9,4.5,4 +L 4.5,4,7.5,9 + +[Z] 5 +L 1,7,1,9 +L 1,9,8,9 +L 8,2,8,0 +L 8,0,1,0 +L 1,0,8,9 + +[[] 3 +L 4,-1,5,-1 +L 5,10,4,10 +L 4.5,10,4.5,-1 + +[\] 1 +L 1.5,10,7.5,-1 + +[]] 3 +L 4,10,5,10 +L 5,10,5,-1 +L 5,-1,4,-1 + +[^] 2 +L 4.5,9,1.5,6 +L 7.5,6,4.5,9 + +[_] 1 +L 8,-1,1,-1 + +[`] 1 +L 4,9,5,7 + +[a] 7 +L 8.5,0,6.5,0 +A 2.629639,1.996387,2,99.500282,263.421234 +A 3.89502,-5.565486,9.666677,74.366646,99.500168 +A 2.968506,4.935666,4.957857,263.421143,315.421631 +A 4.5,4.588459,2,0,90 +A 4.5,1.978687,4.609772,90,130.601288 +L 6.5,4.588459,6.5,0 + +[b] 5 +L 0.5,0,2.5,0 +L 2.5,0,2.5,9 +L 2.5,9,0.5,9 +A 5.5,3,3,0,180 +A 5.5,3,3,180,0 + +[c] 4 +L 7.5,6,7.5,4 +L 7.5,4,6.900024,4.800008 +L 7.5,1,5.653809,0.23077 +A 4.5,3,3,36.870007,292.619751 + +[d] 5 +L 8.5,0,6.5,0 +L 6.5,0,6.5,9 +A 3.5,3,3,0,180 +A 3.5,3,3,180,0 +L 6.5,9,4.5,9 + +[e] 3 +L 1.5,3,7.5,3 +L 7.5,1,5.653809,0.23077 +A 4.5,3,3,0,292.619751 + +[f] 5 +L 0.5,0,4.5,0 +L 2.5,0,2.5,7 +L 0.5,6,5.5,6 +L 7.5,8,5.210083,8.869694 +A 4.5,7,2,69.203148,180 + +[g] 6 +A 3.5,3,3,0,180 +A 3.5,3,3,180,0 +L 8.5,6,6.5,6 +L 6.5,6,6.5,-1 +A 4.5,-1,2,270,0 +L 4.5,-3,1.5,-3 + +[h] 7 +L 0.5,0,3.5,0 +L 0.5,9,2.5,9 +L 8.5,0,5.5,0 +L 2,9,2,0 +A 5,4,2,0,121.054588 +L 7,4,7,0 +L 2,4.528125,3.968262,5.713347 + +[i] 4 +L 7.5,0,1.5,0 +L 4.5,0,4.5,6 +L 4.5,6,2.5,6 +L 4.5,8,4.5,9 + +[j] 5 +L 3,6,7,6 +L 7,6,7,-1 +L 7,8,7,9 +L 2,-2,4.289917,-2.869694 +A 5,-1,2,249.203156,0 + +[k] 7 +L 0,0,2,0 +L 2,0,2,9 +L 2,9,0,9 +L 8,6,5,6 +L 6.5,6,2,2.696379 +L 8.5,0,5.5,0 +L 7,0,3.569214,3.848392 + +[l] 3 +L 1.5,0,7.5,0 +L 4.5,0,4.5,9 +L 4.5,9,2.5,9 + +[m] 11 +L 3,0,0,0 +L 0,6,1.5,6 +L 1.5,6,1.5,0 +L 4.5,0,4.5,5 +L 7.5,5,7.5,0 +L 6,0,4.5,0 +L 9,0,7.5,0 +L 4.5,4.55805,5.834961,5.746819 +L 1.5,4.55805,2.834961,5.746819 +A 3.5,5,1,0,131.687103 +A 6.5,5,1,0,131.687103 + +[n] 7 +L 2,6,2,0 +L 0.5,6,2,6 +L 0.5,0,3.5,0 +L 8.5,0,5.5,0 +L 7,3.5,7,0 +L 2,4.629692,2.8479,5.376266 +A 4.5,3.5,2.5,0,131.365814 + +[o] 2 +A 4.5,3,3,0,180 +A 4.5,3,3,180,0 + +[p] 5 +A 5.5,3,3,0,180 +A 5.5,3,3,180,0 +L 2.5,6,2.5,-3 +L 2.5,6,0.5,6 +L 0.5,-3,4.5,-3 + +[q] 5 +A 3.5,3,3,0,180 +A 3.5,3,3,180,0 +L 6.5,6,6.5,-3 +L 6.5,6,8.5,6 +L 8.5,-3,4.5,-3 + +[r] 5 +L 2.5,6,2.5,0 +L 1,6,2.5,6 +L 2.5,3.716239,4.329224,5.359669 +A 6,3.5,2.5,42.123169,131.93782 +L 1,0,6,0 + +[s] 7 +L 7.5,6,7.5,4 +A 4.128296,0.685942,5.475353,51.99017,107.455315 +L 6,3,3,3 +A 3,4.5,1.5,110.666405,270 +A 4.871704,5.314055,5.475353,231.990173,287.455322 +A 6,1.5,1.5,290.666412,90 +L 1.5,0,1.5,2 + +[t] 4 +L 1.5,6,6.5,6 +L 2.5,8,2.5,2 +A 4.5,2,2,180,290.796844 +L 7.5,1,5.210083,0.130304 + +[u] 7 +L 2,6,2,2 +L 7,6,7,0 +L 7,0,9,0 +L 7,1,4.710083,0.130306 +A 4,2,2,180,290.796844 +L 0.5,6,2,6 +L 5.5,6,7,6 + +[v] 4 +L 0,6,3,6 +L 6,6,9,6 +L 4.5,0,1.5,6 +L 4.5,0,7.5,6 + +[w] 6 +L 0,6,3,6 +L 6,6,9,6 +L 1,6,3,0 +L 4.5,5,3,0 +L 4.5,5,6,0 +L 6,0,8,6 + +[x] 6 +L 0,6,3,6 +L 6,6,9,6 +L 0,0,3,0 +L 6,0,9,0 +L 1.5,6,7.5,0 +L 1.5,0,7.5,6 + +[y] 5 +L 0,6,3,6 +L 6,6,9,6 +L 0,-3,5,-3 +L 3,-3,7.5,6 +L 1.5,6,4.5,0 + +[z] 5 +L 1,4,1,6 +L 1,6,8,6 +L 8,6,1,0 +L 1,0,8,0 +L 8,0,8,2 + +[{] 6 +L 3,5,2.300049,4.5 +L 2.300049,4.5,3,4 +A 5,8,2,90,180 +L 3,8,3,5 +A 5,1,2,180,270 +L 3,4,3,1 + +[|] 1 +L 4.5,10,4.5,-1 + +[}] 6 +L 6,5,6.699951,4.5 +L 6.699951,4.5,6,4 +A 4,8,2,0,90 +L 6,8,6,5 +A 4,1,2,270,0 +L 6,4,6,1 + +[~] 3 +L 5.333252,5.254646,3.666748,6.745354 +A 3,6,1,48.188911,180 +A 6,6,1,228.188904,0 + +[] 9 +L 2,6,2,2 +L 7,6,7,0 +L 7,0,9,0 +L 7,1,4.710083,0.130306 +A 4,2,2,180,290.796844 +L 0.5,6,2,6 +L 5.5,6,7,6 +L 3,8,3,9 +L 6,9,6,8 + +[] 4 +L 1.5,3,7.5,3 +L 7.5,1,5.653809,0.23077 +A 4.5,3,3,0,292.619751 +L 3.5,7,6.5,9 + +[] 9 +L 9,0,7,0 +A 3.129639,1.996387,2,99.500282,263.421234 +A 4.39502,-5.565487,9.666677,74.366646,99.500168 +A 3.468506,4.935665,4.957857,263.421143,315.421631 +A 5,4.588459,2,0,90 +A 5,1.978687,4.609772,90,130.601288 +L 7,4.588459,7,0 +L 3,8,3,9 +L 6,9,6,8 + +[] 8 +L 9,0,7,0 +A 3.129639,1.996387,2,99.500282,263.421234 +A 4.39502,-5.565487,9.666677,74.366646,99.500168 +A 3.468506,4.935665,4.957857,263.421143,315.421631 +A 5,4.588459,2,0,90 +A 5,1.978687,4.609772,90,130.601288 +L 7,4.588459,7,0 +L 6,7,3,9 + +[] 4 +L 1.5,3,7.5,3 +L 7.5,1,5.653809,0.23077 +A 4.5,3,3,0,292.619751 +L 6.5,7,3.5,9 + +[] 8 +L 0,0,3,0 +L 4.5,9,1,0 +L 4.5,9,2,9 +L 6,0,9,0 +L 4.5,9,8,0 +L 2.555542,4,6.444458,4 +L 3,10,3,11 +L 6,10,6,11 + +[] 4 +A 4.5,3,3,0,180 +A 4.5,3,3,180,0 +L 3,8,3,9 +L 6,9,6,8 + +[] 10 +L 1,3,1,6 +A 4,6,3,90,180 +A 4,3,3,180,270 +L 4,9,5,9 +L 5,0,4,0 +L 8,6,8,3 +A 5,6,3,0,90 +A 5,3,3,270,0 +L 3,10,3,11 +L 6,10,6,11 + +[] 8 +L 0,9,3,9 +L 9,9,6,9 +L 1.5,9,1.5,3 +A 4.5,3,3,180,270 +L 7.5,9,7.5,3 +A 4.5,3,3,270,0 +L 3,10,3,11 +L 6,10,6,11 + +[] 4 +A 4.5,4.5,4.5,0,180 +A 4.5,4.5,4.5,180,0 +A 4.5,4.5,2.915476,30.963757,329.036255 +L 7,7,7,5 + +[] 9 +A 4.5,4.5,4.5,0,180 +A 4.5,4.5,4.5,180,0 +L 3,2,3,7 +L 3,4,5,4 +A 5,5.5,1.5,270,90 +L 6,2,5,4 +L 6,2,6.5,2 +L 3.5,2,2.5,2 +L 2.5,7,5,7 + +[] 2 +A 4.5,7,2,0,180 +A 4.5,7,2,180,0 + +[] 3 +L 1.499878,6,7.499878,6 +L 4.499878,9,4.499878,3 +L 1.499878,2,7.499878,2 + +[] 8 +L 0,0,3,0 +L 4.5,9,1,0 +L 4.5,9,2,9 +L 6,0,9,0 +L 4.5,9,8,0 +L 2.555664,4,6.444336,4 +L 3,10,3,11 +L 6,10,6,11 + +[] 10 +L 1,3,1,6 +A 4,6,3,90,180 +A 4,3,3,180,270 +L 4,9,5,9 +L 5,0,4,0 +L 8,6,8,3 +A 5,6,3,0,90 +A 5,3,3,270,0 +L 3,10,3,11 +L 6,10,6,11 + +[] 2 +L 6.5,6,2.5,2 +L 2.5,6,6.5,2 + +[] 3 +A 4.5,4,2,0,180 +A 4.5,4,2,180,0 +L 2.5,2,6.5,6 + +[] 8 +L 0,9,3,9 +L 9,9,6,9 +L 1.5,9,1.5,3 +A 4.5,3,3,180,270 +L 7.5,9,7.5,3 +A 4.5,3,3,270,0 +L 3,10,3,11 +L 6,10,6,11 + +[] 8 +L 8.5,0,6.5,0 +A 2.629639,1.996387,2,99.500282,263.421234 +A 3.89502,-5.565486,9.666677,74.366646,99.500168 +A 2.968506,4.935666,4.957857,263.421143,315.421631 +A 4.5,4.588459,2,0,90 +A 4.5,1.978687,4.609772,90,130.601288 +L 6.5,4.588459,6.5,0 +L 5.5,7,2.5,9 + +[] 9 +L 8.5,0,6.5,0 +A 2.629639,1.996387,2,99.500282,263.421234 +A 3.89502,-5.565486,9.666677,74.366646,99.500168 +A 2.968506,4.935666,4.957857,263.421143,315.421631 +A 4.5,4.588459,2,0,90 +A 4.5,1.978687,4.609772,90,130.601288 +L 6.5,4.588459,6.5,0 +L 2.5,8,2.5,9 +L 5.5,9,5.5,8 + +[] 4 +L 1.5,3,7.5,3 +L 7.5,1,5.653809,0.23077 +A 4.5,3,3,0,292.619751 +L 6.5,7,3.5,9 + +[] 4 +L 1.5,3,7.5,3 +L 7.5,1,5.653809,0.23077 +A 4.5,3,3,0,292.619751 +L 3.5,7,6.5,9 + +[] 4 +A 4.5,3,3,0,180 +A 4.5,3,3,180,0 +L 3,8,3,9 +L 6,9,6,8 + +[] 3 +L 2,4,7,4 +L 4,6,5,6 +L 4,2,5,2 + +[] 3 +A 4.5,4,2,0,180 +A 4.5,4,2,180,0 +L 2.5,2,6.5,6 + +[] 9 +L 2,6,2,2 +L 7,6,7,0 +L 7,0,9,0 +L 7,1,4.709961,0.130306 +A 4,2,2,180,290.796844 +L 0.5,6,2,6 +L 5.5,6,7,6 +L 3,8,3,9 +L 6,9,6,8 + +[] 7 +L 0,0,3,0 +L 4.5,9,1,0 +L 4.5,9,2,9 +L 6,0,9,0 +L 4.5,9,8,0 +L 2.555664,4,6.444336,4 +A 4.5,10.5,0.75,0,360 + +[] 8 +L 8.5,0,6.5,0 +A 2.629639,1.996387,2,99.500282,263.421234 +A 3.89502,-5.565486,9.666677,74.366646,99.500168 +A 2.968506,4.935666,4.957857,263.421143,315.421631 +A 4.5,4.588459,2,0,90 +A 4.5,1.978687,4.609772,90,130.601288 +L 6.5,4.588459,6.5,0 +A 4.5,8.5,0.75,0,360 + +#EOF diff --git a/pycam/share/fonts/cursive.cxf b/pycam/share/fonts/cursive.cxf new file mode 100644 index 00000000..e30a6f5e --- /dev/null +++ b/pycam/share/fonts/cursive.cxf @@ -0,0 +1,660 @@ +# Format: QCad II Font +# Creator: QCad +# Version: 1 +# Name: Cursive +# LetterSpacing: 0.5 +# WordSpacing: 6.75 +# LineSpacingFactor: 1.0 +# Author: Andrew Mustun + +[!] 2 +L 2.329376,8.69334,0.776459,2.89777 +L 0,0,0.129425,0.48296 + +["] 2 +L 2.329376,8.69334,1.811737,6.76148 +L 4.811707,6.76148,5.329346,8.69334 + +[#] 4 +L 1.196136,0,3.607666,8.999999 +L 4.196136,0,6.607666,8.999999 +L -0.000031,3,6.999969,3 +L 0.803833,6,7.803833,6 + +[&] 5 +L 4.983215,0,2.996948,6.98907 +AR 4.284363,7.35494,1.33839,195.86496,307.833008 +L 5.105286,6.29789,1.259521,3.31126 +A 2.394287,1.85007,1.85007,127.833,307.83313 +L 3.529053,0.38888,6.759644,2.89778 + +['] 1 +L 2.329376,8.69334,1.811737,6.76148 + +[(] 1 +A 13.375824,0.6484,13.39153,143.076523,186.923752 + +[)] 1 +A -10.964691,7.07902,13.39169,323.076965,6.92363 + +[*] 2 +L 1.294067,4.82963,4.258789,0.96593 +L 5.294067,4.82963,0.258789,0.96593 + +[+] 2 +L 0.776489,2.89777,4.776489,2.89777 +L 3.294128,4.82963,2.25885,0.96593 + +[,] 1 +L 0,0,-0.517639,-1.93185 + +[-] 1 +L 0.776428,2.89777,4.776428,2.89777 + +[.] 1 +L 0,0,0.025879,0.0966 + +[/] 1 +L 0.111755,-1.44889,7.47644,11.10815 + +[0] 18 +A 4.487061,2.08942,3.65251,174.888962,206.092712 +A 2.014893,0.91717,0.91742,208.248138,268.668121 +A 1.842957,1.69956,1.70623,275.064636,314.517487 +A -1.3797,5.13753,6.41813,313.512726,334.89856 +L 4.432251,2.41482,4.765503,3.15704 +L 4.765503,3.15704,4.996765,3.79548 +L 4.996765,3.79548,5.200439,4.51321 +L 5.200439,4.51321,5.39502,5.5411 +L 5.39502,5.5411,5.467529,6.27852 +A 1.829956,6.60405,3.65205,354.896393,26.093731 +A 4.301636,7.77615,0.91744,28.249029,88.666687 +A 4.473572,6.99381,1.70618,95.064087,134.518051 +A 7.696289,3.55581,6.41813,133.512711,154.89856 +L 1.884338,6.27852,1.551086,5.5363 +L 1.551086,5.5363,1.319824,4.89786 +L 1.319824,4.89786,1.11615,4.18013 +L 1.11615,4.18013,0.92157,3.15225 +L 0.92157,3.15225,0.84906,2.41482 + +[1] 2 +L 1.811768,6.76148,4.329407,8.69334 +L 4.329407,8.69334,2,0 + +[2] 5 +L 4,0,0,0 +L 0,0,5.332336,5.75381 +A 4.048767,6.94333,1.75,317.177368,90 +L 3.67218,8.69334,4.048767,8.69334 +A 3.67218,6.94333,1.75,90,165 + +[3] 9 +L 2.329407,8.69334,4.700378,8.69334 +AR 4.700378,7.44335,1.24999,90,345 +L 5.907715,7.11983,5.715759,6.40319 +AR 3.6651,6.95263,2.123,345,270 +L 3.6651,4.82963,2.294128,4.82963 +AR 3.6651,3.57964,1.24999,90,345 +L 4.872498,3.25611,4.421631,1.57356 +AR 2.370972,2.12303,2.12303,345,270 +L 2.370972,0,0,0 + +[4] 3 +L 3.5,0,4.535278,3.8637 +L 5.517639,1.93185,0.517639,1.93185 +L 0.517639,1.93185,4.329407,8.69334 + +[5] 7 +L 6.329407,8.69334,2.329407,8.69334 +L 2.329407,8.69334,1.294128,4.82963 +L 1.294128,4.82963,3.6651,4.82963 +AR 3.6651,3.57963,1.25,90,345 +L 4.872498,3.2561,4.421631,1.57353 +AR 2.370972,2.12299,2.123,345,270 +L 2.370972,0,0,0 + +[6] 8 +A 8.234131,1.78898,7.4905,112.816887,165 +L 0.99884,3.72765,0.421631,1.57353 +A 1.629028,1.25001,1.25,165,270 +L 1.629028,0.00001,2.370972,0.00001 +A 2.370972,2.12302,2.12301,270,345 +L 4.421631,1.57354,4.872437,3.25612 +A 3.665039,3.57963,1.25,345,90 +L 3.665039,4.82963,1.388489,4.82963 + +[7] 3 +L 2.329407,8.69334,6.329407,8.69334 +L 6.329407,8.69334,1.5,0 +L 5.294128,4.82963,3.294128,4.82963 + +[8] 16 +AR 4.402893,7.43737,1.25596,90,351.164215 +L 5.643921,7.24445,5.394104,6.312 +AR 3.446777,6.83379,2.01601,345,276.215851 +L 3.6651,4.82963,2.828735,4.82963 +A 2.828735,2.82963,2,90,165 +L 0.896851,3.34725,0.421631,1.57352 +A 1.629028,1.25001,1.25001,165,270 +L 1.629028,0,2.465332,0 +A 2.465332,2,2,270,345 +L 4.397217,1.48238,4.872498,3.25611 +A 3.665039,3.57962,1.25001,345,90 +L 3.6651,4.82963,3.125916,4.82963 +AR 3.125916,6.07962,1.24999,270,165 +L 1.918518,6.40315,2.134644,7.21095 +AR 4.065857,6.6942,1.99913,165,90 +L 4.066528,8.69333,4.402893,8.69334 + +[9] 8 +A -1.904785,6.90437,7.49051,292.816925,345 +L 5.330505,4.96569,5.907715,7.1198 +A 4.700317,7.44334,1.25,345,90 +L 4.700317,8.69334,3.958374,8.69334 +A 3.958374,6.57032,2.12301,90,165 +L 1.907715,7.1198,1.456848,5.43722 +A 2.664307,5.11371,1.25001,165,270 +L 2.664246,3.8637,4.940796,3.8637 + +[:] 2 +L 0,0,0.025879,0.0966 +L 1.035278,3.8637,1.061157,3.9603 + +[;] 2 +L 1.035278,3.8637,1.061157,3.9603 +L 0,0,-0.517639,-1.93185 + +[<] 2 +L 6.441101,7.24445,1.794067,4.82963 +L 1.794067,4.82963,4.888184,1.44889 + +[=] 2 +L 1.164673,4.34666,5.164673,4.34666 +L 0.388245,1.44889,4.388245,1.44889 + +[>] 2 +L 2.441101,7.24445,5.794067,4.82963 +L 5.794067,4.82963,0.888184,1.44889 + +[?] 9 +L 2,0,2.129395,0.48296 +L 2.776428,2.89777,3.169373,4.36419 +AR 4.328491,4.0536,1.2,165,121.243988 +L 3.706055,5.07956,5.270386,6.02859 +A 4.647949,7.05454,1.2,301.244141,345 +L 5.807068,6.74395,5.907776,7.11983 +A 4.700378,7.44333,1.25,345,90 +L 4.700378,8.69334,3.958435,8.69334 +A 3.958435,6.57033,2.123,90,165 + +[A] 3 +L 0,0,5.329346,8.69334 +L 5.329346,8.69334,6,0 +L 5.813721,2.41482,1.480408,2.41482 + +[B] 10 +L 2.329346,8.69334,0,0 +L 0,0,3.465332,0 +A 3.465332,2,2,270,345 +L 5.397217,1.48236,5.619507,2.31199 +A 3.687622,2.82963,2,345,90 +L 1.294128,4.82963,4.643127,4.82963 +A 4.643127,6.32963,1.5,270,345 +L 6.09198,5.9414,6.323425,6.8051 +A 4.874512,7.19333,1.5,345,90 +L 2.329346,8.69334,4.874512,8.69334 + +[C] 5 +L 6.329346,8.69334,3.864014,8.69334 +A 3.864014,6.69333,2,90,165 +L 1.93219,7.21097,0.674622,2.51764 +A 2.606445,2,2,165,270 +L 2.606445,0,4,0 + +[D] 6 +L 2.329346,8.69334,0,0 +L 0,0,3.081665,0 +A 3.081665,2.5,2.5,270,345 +L 5.496521,1.85295,6.654785,6.1757 +A 4.7229,6.69333,2,345,90 +L 4.7229,8.69334,2.329346,8.69334 + +[E] 4 +L 6.329346,8.69334,2.329346,8.69334 +L 2.329346,8.69334,0,0 +L 0,0,4,0 +L 1.294067,4.82963,4.294067,4.82963 + +[F] 3 +L 6.329346,8.69334,2.329346,8.69334 +L 2.329346,8.69334,0,0 +L 1.294067,4.82963,5.294067,4.82963 + +[G] 7 +L 7.329346,8.69334,3.864014,8.69334 +A 3.864014,6.69333,2,90,165 +L 1.93219,7.21097,0.674622,2.51764 +A 2.606445,2,2,165,270 +L 2.606445,0,5,0 +L 5,0,6.294128,4.82963 +L 6.294128,4.82963,4.294128,4.82963 + +[H] 3 +L 2.329346,8.69334,0,0 +L 5,0,7.329346,8.69334 +L 1.294067,4.82963,6.294067,4.82963 + +[I] 1 +L 2.329346,8.69334,0,0 + +[J] 3 +L 0,0,1.465332,0 +A 1.465332,2,2,270,345 +L 5.329346,8.69334,3.397217,1.48236 + +[K] 3 +L 2.329346,8.69334,0,0 +L 7.329346,8.69334,1.035278,3.8637 +L 2.797607,5.216,5,0 + +[L] 2 +L 2.329346,8.69334,0,0 +L 0,0,4,0 + +[M] 4 +L 0,0,2.329346,8.69334 +L 2.329346,8.69334,4.035278,3.8637 +L 4.035278,3.8637,8.329346,8.69334 +L 8.329346,8.69334,6,0 + +[N] 3 +L 0,0,2.329346,8.69334 +L 2.329346,8.69334,5,0 +L 5,0,7.329346,8.69334 + +[O] 8 +L 4.7229,8.69334,4.247681,8.69334 +A 4.247681,6.19334,2.5,90,165 +L 1.832886,6.84038,0.674622,2.51764 +A 2.606445,2,2,165,270 +L 2.606445,0,3.081665,0 +A 3.081665,2.5,2.5,270,345 +L 5.49646,1.85295,6.654785,6.1757 +A 4.7229,6.69333,2,345,90 + +[P] 6 +L 0,0,2.329346,8.69334 +L 2.329346,8.69334,4.7229,8.69333 +AR 4.7229,6.69332,2.00001,90,345 +L 6.654785,6.1757,6.432495,5.34607 +AR 4.50061,5.86371,2.00001,345,270 +L 4.50061,3.8637,1.035278,3.8637 + +[Q] 9 +L 4.7229,8.69334,4.247681,8.69334 +A 4.247681,6.19334,2.5,90,165 +L 1.832886,6.84038,0.674622,2.51764 +A 2.606445,2,2,165,270 +L 2.606445,0,3.081665,0 +A 3.081665,2.5,2.5,270,345 +L 5.49646,1.85295,6.654785,6.1757 +A 4.7229,6.69333,2,345,90 +L 6,0,3.517639,1.93185 + +[R] 7 +L 0,0,2.329407,8.69334 +L 2.329407,8.69334,4.7229,8.69333 +AR 4.7229,6.69333,2.00001,90,345 +L 6.654785,6.17569,6.432495,5.34606 +AR 4.50061,5.86372,2.00002,345,270 +L 4.50061,3.8637,1.035278,3.8637 +L 4.035278,3.8637,5,0 + +[S] 5 +A 4.77533,4.72088,4.02201,60.18087,119.451851 +A 3.643188,6.72585,1.71947,119.451851,241.10733 +L 2.812439,5.22041,4.454468,4.31424 +AR 3.363098,2.33666,2.25873,61.107311,291.921448 +AR 2.704773,3.97246,4.02201,291.921448,231.799301 + +[T] 2 +L 2.329407,8.69334,7.329407,8.69334 +L 4.829407,8.69334,2.5,0 + +[U] 4 +L 2.337952,8.72546,0.683228,2.54976 +A 2.615051,2.03212,2,165,270 +A 3.020874,2.57947,2.57947,260.948517,344.383453 +L 5.505127,1.88508,7.337952,8.72546 + +[V] 2 +L 2.329407,8.69334,3,0 +L 3,0,8.329407,8.69334 + +[W] 4 +L 1.329407,8.69334,1,0 +L 1,0,4.552917,5.79556 +L 4.552917,5.79556,5,0 +L 5,0,9.284376,8.69334 + +[X] 2 +L 2.329407,8.69334,6,0 +L 8.329407,8.69334,0,0 + +[Y] 3 +L 2.329407,8.69334,4.035278,3.8637 +L 4.035278,3.8637,8.329407,8.69334 +L 4.035278,3.8637,3,0 + +[Z] 3 +L 2.329407,8.69334,7.329407,8.69334 +L 7.329407,8.69334,0,0 +L 0,0,5,0 + +[[] 3 +L 3.329346,8.69334,2.329346,8.69334 +L 2.329346,8.69334,-0.25885,-0.96593 +L -0.25885,-0.96593,0.74115,-0.96593 + +[\] 1 +L 4.111755,-1.44889,3.47644,11.10815 + +[]] 3 +L 2.329346,8.69334,3.329346,8.69334 +L 3.329346,8.69334,0.741211,-0.96593 +L 0.741211,-0.96593,-0.258789,-0.96593 + +[a] 8 +L 2.052979,5.79556,4.249756,5.79556 +AR 4.249756,4.79556,1,90,345 +L 5.215698,4.53674,4,0 +L 4,0,1.303223,0 +AR 1.303223,1,1,270,165 +L 0.33728,1.25883,0.577881,2.15659 +AR 1.543823,1.89777,1,165,90 +L 1.543823,2.89777,4.776489,2.89777 + +[b] 6 +L 2.329346,8.69334,0,0 +L 0,0,3.232666,0 +A 3.232666,1,1,270,345 +L 4.198608,0.74118,5.215576,4.53674 +A 4.249634,4.79556,1,345,90 +L 4.249634,5.79556,1.552979,5.79556 + +[c] 5 +L 4.552979,5.79556,2.320312,5.79556 +A 2.320312,4.79556,1,90,165 +L 1.35437,5.05438,0.33728,1.25882 +A 1.303223,1,1,165,270 +L 1.303223,0,3,0 + +[d] 6 +L 6.329346,8.69334,4,0 +L 4,0,1.303223,0 +AR 1.303223,1,1,270,165 +L 0.33728,1.25882,1.35437,5.05438 +AR 2.320312,4.79556,1,165,90 +L 2.320312,5.79556,5.552979,5.79556 + +[e] 8 +L 4,0,1.303223,0 +AR 1.303223,1,1,270,165 +L 0.33728,1.25882,1.35437,5.05438 +AR 2.320312,4.79555,1,165,90 +L 2.32019,5.79556,4.249756,5.79556 +AR 4.249756,4.79555,1,90,345 +L 5.215576,4.53674,4.776489,2.89777 +L 4.776489,2.89777,0.776489,2.89777 + +[f] 4 +L 5.329346,8.69334,4.09668,8.69334 +A 4.09668,7.69334,1,90,165 +L 3.130737,7.95216,1,0 +L 1.552856,5.79556,4.552979,5.79556 + +[g] 8 +L -0.776489,-2.89778,2.456177,-2.89778 +A 2.456177,-1.89776,1.00002,270,345 +L 3.422119,-2.15659,5.552856,5.79556 +L 5.552856,5.79556,2.32019,5.79556 +A 2.32019,4.79555,1,90,165 +L 1.35437,5.05438,0.33728,1.25882 +A 1.303223,1,1,165,270 +L 1.303223,0,4,0 + +[h] 4 +L 2.329346,8.69334,0,0 +L 1.552979,5.79556,4.249634,5.79556 +AR 4.249634,4.79556,1,90,345 +L 5.215576,4.53674,4,0 + +[i] 2 +L 0,0,1.552979,5.79556 +L 2.329346,8.69334,2.199951,8.21037 + +[j] 4 +L 0.456177,-2.89778,-0.776489,-2.89778 +L 4.329346,8.69334,4.199951,8.21037 +L 3.552856,5.79556,1.422119,-2.15659 +AR 0.456177,-1.897775,1,345.000244,270 + +[k] 3 +L 2.329346,8.69334,0,0 +L 0.776489,2.89777,5.552979,5.79556 +L 4,0,2.368652,3.8637 + +[l] 2 +L 2.329346,8.69334,0.33728,1.25882 +A 1.303223,1,1,165,270 + +[m] 5 +L 0,0,1.552979,5.79556 +L 1.552979,5.79556,6.249634,5.79556 +AR 6.249634,4.79556,1,90,345 +L 7.215576,4.53674,6,0 +L 4.552979,5.79556,3,0 + +[n] 4 +L 0,0,1.552979,5.79556 +L 1.552979,5.79556,4.249634,5.79556 +AR 4.249634,4.79556,1,90,345 +L 5.215576,4.53674,4,0 + +[o] 8 +L 3.598022,5.79556,2.703857,5.79556 +A 2.703857,4.29556,1.5,90,165 +L 1.255005,4.68378,0.505981,1.88823 +A 1.954834,1.5,1.5,165,270 +L 1.954834,0,2.848999,0 +A 2.848999,1.5,1.5,270,345 +L 4.297852,1.11177,5.046997,3.90733 +A 3.598022,4.29556,1.5,345,90 + +[p] 6 +L -0.776489,-2.89778,1.552979,5.79556 +L 1.552979,5.79556,4.249634,5.79556 +AR 4.249634,4.79557,0.99999,90,345 +L 5.215576,4.53674,4.198608,0.74118 +AR 3.232666,0.99999,0.99999,345,270 +L 3.232666,0,0,0 + +[q] 6 +L 4,0,1.303223,0 +AR 1.303223,1,1,270,165 +L 0.33728,1.25882,1.354248,5.05438 +AR 2.32019,4.79556,1,165,90 +L 2.32019,5.79556,5.552856,5.79556 +L 5.552856,5.79556,3.223511,-2.89778 + +[r] 3 +L 0,0,1.552979,5.79556 +L 1.552979,5.79556,3.249756,5.79556 +AR 3.249756,4.79556,1,90,345 + +[s] 6 +L 5.438477,5.36859,4.961548,5.54681 +A 2.730469,-1.57843,7.46638,72.613403,92.315514 +A 2.497314,4.68381,1.2,93.275612,232.790436 +L 1.771729,3.7281,3.811279,2.17945 +AR 3.062622,1.21828,1.21828,52.087662,260.887573 +AR 2.765015,6.82479,6.81022,270.881073,247.368668 + +[t] 2 +L 3.329346,8.69334,1,0 +L 1.552979,5.79556,4.552979,5.79556 + +[u] 4 +L 1.552856,5.79556,0.33728,1.25882 +A 1.303223,1,1,165,270 +L 1.303223,0,4,0 +L 4,0,5.552856,5.79556 + +[v] 2 +L 1.552856,5.79556,2,0 +L 2,0,5.552856,5.79556 + +[w] 4 +L 1.552856,5.79556,1.5,0 +L 1.5,0,4.035278,3.8637 +L 4.035278,3.8637,4.5,0 +L 4.5,0,7.552856,5.79556 + +[x] 2 +L 1.552979,5.79556,4,0 +L 5.552979,5.79556,0,0 + +[y] 4 +L -0.776489,-2.89778,-0.336426,-2.89778 +A -0.336426,-1.8978,0.99998,270,328.490936 +L 0.516113,-2.42042,5.552979,5.79556 +L 1.552856,5.79556,2,0 + +[z] 3 +L 1.552979,5.79556,5.552979,5.79556 +L 5.552979,5.79556,0,0 +L 0,0,4,0 + +[{] 6 +A 3.446777,8,1,90,165 +L 2.480835,8.25882,1.677002,5.25882 +AR 0.036499,5.698396,1.698396,345,270 +AR 0.036499,3,1,90,345 +L 1.002441,2.741181,0.33728,0.258819 +A 1.303223,0,1,165,270 + +[}] 6 +AR 2.143555,8,1,90,345 +L 3.109497,7.74118,2.444336,5.25882 +A 3.410278,5,1,165,270 +A 3.410278,2.301604,1.698396,90,165 +L 1.769775,2.741181,0.965942,-0.258819 +AR 0,0,1,345,270 + +[] 3 +L 1.98645,0.48296,6.342773,8.21037 +A 4.164673,4.34666,2.89778,60.587872,240.58786 +A 4.164673,4.34666,2.89778,240.58786,60.587872 + +[] 2 +A 3.480347,7.19334,1.5,76.951317,253.048615 +A 3.480347,7.19334,1.5,253.048615,76.951317 + +[] 3 +L 0.776367,4.89777,4.776367,4.89777 +L 3.294067,6.82963,2.258789,2.96593 +L -0.000122,2,3.999878,2 + +[] 5 +L 0,0,5.329346,8.69334 +L 5.329346,8.69334,6,0 +L 5.813721,2.41482,1.480469,2.41482 +L 3.652832,9.90073,3.782227,10.38371 +L 7.652832,9.90073,7.782227,10.38371 + +[] 10 +L 4.247803,8.69334,4.7229,8.69334 +L 6.654785,6.1757,5.496582,1.85295 +L 3.081787,0,2.606445,0 +L 0.674561,2.51764,1.832764,6.84038 +A 2.606445,2,2,165,270 +A 4.7229,6.69333,2,345,90 +L 3.652832,9.90073,3.782227,10.38371 +L 6.652832,9.90073,6.782227,10.38371 +A 4.247803,6.19334,2.5,90,165 +A 3.081787,2.5,2.5,270,345 + +[] 7 +L 7.329346,8.69334,5.496582,1.85296 +L 3.081787,0,2.606445,0 +L 0.674561,2.51764,2.329346,8.69334 +A 2.606445,2,2,165,270 +L 3.652832,9.90073,3.782227,10.38371 +L 6.652832,9.90073,6.782227,10.38371 +A 3.081787,2.5,2.5,270,345 + +[] 10 +L 3.329346,8.69334,3.199951,8.21037 +L 5.329346,8.69334,5.199951,8.21037 +L 2.052979,5.79556,4.249756,5.79556 +AR 4.249756,4.79556,1,90,345 +L 5.215576,4.53674,4,0 +L 4,0,1.303223,0 +AR 1.303223,1,1,270,165 +L 0.337402,1.25883,0.577881,2.15659 +AR 1.543701,1.89777,1,165,90 +L 1.543701,2.89777,4.776367,2.89777 + +[] 10 +L 3.329346,8.69334,3.199951,8.21037 +L 5.329346,8.69334,5.199951,8.21037 +L 3.598145,5.79556,2.703857,5.79556 +A 2.703857,4.29556,1.5,90,165 +L 1.254883,4.68378,0.505859,1.88823 +A 1.954834,1.5,1.5,165,270 +L 1.954834,0,2.848877,0 +A 2.848877,1.5,1.5,270,345 +L 4.297852,1.11177,5.046875,3.90733 +A 3.598145,4.29556,1.5,345,90 + +[] 3 +L 1.986572,0.48296,6.342773,8.21037 +A 4.164551,4.34666,2.89778,60.587872,240.58786 +A 4.164551,4.34666,2.89778,240.58786,60.587872 + +[] 2 +L 1.294189,4.82963,4.258789,0.96593 +L 5.294189,4.82963,0.258789,0.96593 + +[] 6 +L 3.329346,8.69334,3.199951,8.21037 +L 5.329346,8.69334,5.199951,8.21037 +L 1.552979,5.79556,0.337402,1.25882 +L 1.303223,0,4,0 +L 4,0,5.552979,5.79556 +A 1.303223,1,1,165,270 + +[] 4 +L 0,0,5.329346,8.69334 +L 5.329346,8.69334,6,0 +L 5.813721,2.41482,1.480469,2.41482 +A 5.717530,10.14222,0.4,0,360 + +[] 9 +A 4.264649,8.45186,0.35,0,360 +L 2.052979,5.79556,4.249756,5.79556 +AR 4.249756,4.79556,1,90,345 +L 5.215576,4.53674,4,0 +L 4,0,1.303223,0 +AR 1.303223,1,1,270,165 +L 0.337402,1.25883,0.577881,2.15659 +AR 1.543701,1.89777,1,165,90 +L 1.543701,2.89777,4.776367,2.89777 + +[#2205] //diameter +L 1.986572,0.48296,6.342773,8.21037 +A 4.164551,4.34666,2.89778,60.587872,240.58786 +A 4.164551,4.34666,2.89778,240.58786,60.587872 + + +#EOF diff --git a/pycam/share/fonts/cyrillic_ii.cxf b/pycam/share/fonts/cyrillic_ii.cxf new file mode 100644 index 00000000..66903ae5 --- /dev/null +++ b/pycam/share/fonts/cyrillic_ii.cxf @@ -0,0 +1,1028 @@ +# Format: QCad II Font +# Creator: QCad +# Version: 2 +# Name: Cyrillic_II +# LetterSpacing: 3.0 +# WordSpacing: 6.75 +# LineSpacingFactor: 1.0 +# Author: Andrew Mustun (Latin1) +# Author: Eugene Osintsev (Cyrillic) +# Author: Sam S. Ganzha (Cyrillic) + +[!] 2 +L 0,9,0,3 +L 0,0,0,0.5 + +["] 2 +L 0.5,7,1,9 +L 3.5,7,4,9 + +[#] 4 +L 1.999969,0,1.999969,8.999999 +L 4.999969,8.999999,4.999969,0 +L -0.000031,2.5,6.999969,2.5 +L 6.999969,6.499999,-0.000031,6.499999 + +[&] 5 +L 6,3.21499,3.425964,0.59764 +A 2,2,2,135.478088,315.478088 +L 0.574036,3.40236,3.569458,6.44823 +A 2.5,7.5,1.5,315.478271,209.372314 +L 1.19281,6.76428,5,0 + +['] 1 +L 0.5,7,1,9 + +[(] 1 +A 13,4,13,157.380142,202.619858 + +[)] 1 +A -12,4,13,337.380127,22.61986 + +[*] 2 +L 0,6,4,2 +L 4,6,0,2 + +[+] 2 +L 0,4,4,4 +L 2,6,2,2 + +[,] 2 +L 1,0,0,-3 +L 1,0,1,0.5 + +[-] 1 +L 0,4,4,4 + +[.] 1 +L 0,0,0,0.5 + +[/] 1 +L 4,9,0,0 + +[0] 10 +A 2,7.91049,1.08951,32.75695,147.243042 +A 4.93335,5.62352,4.80559,143.232468,169.491135 +A 4.93335,3.37648,4.80559,190.508865,216.767532 +A 2,1.08951,1.08951,212.756958,327.243042 +A -0.93335,3.37648,4.80559,323.232452,349.491119 +A -5.404663,4.46906,9.40473,347.913147,0.18851 +A -5.404663,4.53094,9.40473,359.811493,12.08686 +A -0.93335,5.62352,4.80559,10.50887,36.76754 +A 9.404663,4.46906,9.40473,179.811493,192.086868 +A 9.404663,4.53094,9.40473,167.913132,180.188507 + +[1] 2 +L 0,7,2,9 +L 2,9,2,0 + +[2] 4 +L 4,0,0,0 +L 0,0,3.864502,6.64668 +A 3,7.14931,1,329.82547,20.52911 +A 2,7,2,14.47751,165.522491 + +[3] 7 +L 0,9,2,9 +A 2,7,2,270,90 +L 2,5,1,5 +A 2,3,2,0,90 +L 4,3,4,2 +A 2,2,2,270,0 +L 2,0,0,0 + +[4] 3 +L 3.5,0,3.5,4 +L 5,2,0,2 +L 0,2,2,9 + +[5] 7 +L 4,9,0,9 +L 0,9,0,5 +L 0,5,2,5 +A 2,3,2,0,90 +L 4,3,4,2 +A 2,2,2,270,0 +L 2,0,0,0 + +[6] 6 +A 6,3.80385,6,120,180 +L 0,3.80385,0,2 +A 2,2,2,180,0 +L 4,2,4,3 +A 2,3,2,0,90 +L 2,5,0.120422,5 + +[7] 3 +L 0,9,4,9 +L 4,9,1.5,0 +L 2,5,4,5 + +[8] 8 +L 0,3,0,2 +A 2,2,2,180,0 +L 4,2,4,3 +A 2,3,2,0,180 +L 0.25,7.25,0.25,6.75 +A 2,6.75,1.75,180,0 +L 3.75,6.75,3.75,7.25 +A 2,7.25,1.75,0,180 + +[9] 6 +A -2,5.19615,6,300,0 +L 4,5.19615,4,7 +A 2,7,2,0,180 +L 0,7,0,6 +A 2,6,2,180,270 +L 2,4,3.879578,4 + +[:] 2 +L 0,0,0,0.5 +L 0,4,0,3.5 + +[;] 3 +L 1,0,0,-3 +L 1,0,1,0.5 +L 1,4,1,3.5 + +[<] 2 +L 4,7,0,3.5 +L 0,3.5,4,0 + +[=] 2 +L 0,5.5,4,5.5 +L 0,2.5,4,2.5 + +[>] 2 +L 0,7,4,3.5 +L 4,3.5,0,0 + +[?] 9 +L 2,0,2,0.5 +L 2,3,2,3.39445 +L 0,7,0,7.5 +L 1.5,9,2.5,9 +L 3.664062,6.49615,2.335938,4.50385 +A 4,3.39445,2,146.309937,180 +A 2,7.60555,2,326.309998,358.379272 +A 1.5,7.5,1.5,90,180 +A 2.5,7.5,1.5,1.87147,90 + +[@] 11 +L 8,1,6.067566,0.28186 +A 4.5,4.5,4.5,333.472015,290.386322 +A 7.412354,2.943008,1.2,168.690186,337.880432 +A 4.439636,4,2,168.689804,270 +A 5.170288,5.5,1.5,348.690002,90 +A 5.049561,4.5,2.5,90,168.690094 +L 2.478455,4.392246,2.598083,4.990294 +A 4.360352,4,2,270,348.68985 +L 4.360352,2,4.439636,2 +L 6.321533,3.607756,7,7 +L 5.049561,7,5.170288,7 + +[A] 3 +L 0,0,3,9 +L 3,9,6,0 +L 0.833313,2.5,5.166687,2.5 + +[B] 8 +L 0,0,0,9 +L 0,9,2.5,9 +A 2.5,7,2,270,90 +L 0,5,2.599976,5 +A 2.599976,2.6,2.4,0,90 +L 5,2.6,5,2.4 +A 2.599976,2.4,2.4,270,0 +L 2.599976,0,0,0 + +[C] 5 +L 4,9,2,9 +A 2,7,2,90,180 +L 0,7,0,2 +A 2,2,2,180,270 +L 2,0,4,0 + +[D] 6 +L 0,0,3,0 +A 3,2,2,270,0 +L 5,2,5,7 +A 3,7,2,0,90 +L 3,9,0,9 +L 0,9,0,0 + +[E] 4 +L 4,9,0,9 +L 0,9,0,0 +L 0,0,4,0 +L 0,5,3,5 + +[F] 3 +L 4,9,0,9 +L 0,9,0,0 +L 0,5,4,5 + +[G] 7 +L 5,9,2,9 +A 2,7,2,90,180 +L 0,7,0,2 +A 2,2,2,180,270 +L 2,0,5,0 +L 5,0,5,5 +L 5,5,3.5,5 + +[H] 3 +L 0,9,0,0 +L 5,0,5,9 +L 0,5,5,5 + +[I] 1 +L 0,9,0,0 + +[J] 3 +L 3,9,3,2 +A 1,2,2,270,0 +L 1,0,0,0 + +[K] 3 +L 0,9,0,0 +L 0,3.5,5,9 +L 1.671326,5.33844,5,0 + +[L] 2 +L 0,9,0,0 +L 0,0,4,0 + +[M] 4 +L 0,0,0,9 +L 0,9,3,4 +L 3,4,6,9 +L 6,9,6,0 + +[N] 3 +L 0,0,0,9 +L 0,9,5,0 +L 5,0,5,9 + +[O] 8 +L 0,2,0,7 +A 2,7,2,90,180 +L 2,9,3,9 +A 3,7,2,0,90 +L 5,7,5,2 +A 3,2,2,270,0 +L 3,0,2,0 +A 2,2,2,180,270 + +[P] 6 +L 0,0,0,9 +L 0,9,3,9 +A 3,7,2,0,90 +L 5,7,5,6 +A 3,6,2,270,0 +L 3,4,0,4 + +[Q] 9 +L 0,2,0,7 +A 2,7,2,90,180 +L 2,9,3,9 +A 3,7,2,0,90 +L 5,7,5,2 +A 3,2,2,270,0 +L 3,0,2,0 +A 2,2,2,180,270 +L 6,0,3,2 + +[R] 7 +L 0,0,0,9 +L 0,9,3,9 +A 3,7,2,0,90 +L 5,7,5,6 +A 3,6,2,270,0 +L 3,4,0,4 +L 3,4,5,0 + +[S] 5 +A 2,2.375,6.625,63.074589,90 +A 2,7,2,90,242.981201 +L 1.091431,5.21829,3.908569,3.78171 +A 3,2,2,270,62.98119 +A 3,6.625,6.625,243.074585,270 + +[T] 2 +L 0,9,6,9 +L 3,9,3,0 + +[U] 3 +L 0,9,0,2.5 +A 2.5,2.5,2.5,180,0 +L 5,2.5,5,9 + +[V] 2 +L 0,9,3,0 +L 3,0,6,9 + +[W] 4 +L 0,9,2,0 +L 2,0,4,6 +L 4,6,6,0 +L 6,0,8,9 + +[X] 2 +L 0,9,6,0 +L 0,0,6,9 + +[Y] 3 +L 0,9,3,5 +L 3,5,3,0 +L 3,5,6,9 + +[Z] 3 +L 0,9,5,9 +L 5,9,0,0 +L 0,0,5,0 + +[[] 3 +L 1,-1,0,-1 +L 0,-1,0,9 +L 0,9,1,9 + +[\] 1 +L 0,9,4,0 + +[]] 3 +L 0,9,1,9 +L 1,9,1,-1 +L 1,-1,0,-1 + +[a] 6 +L 0.5,6,2.5,6 +A 2.5,4.5,1.5,0,90 +L 4,4.5,4,0 +L 4,0,1.5,0 +A 1.5,1.5,1.5,90,270 +L 1.5,3,4,3 + +[b] 6 +L 0,9,0,0 +L 0,0,2.5,0 +A 2.5,1.5,1.5,270,0 +L 4,1.5,4,4.5 +A 2.5,4.5,1.5,0,90 +L 2.5,6,0,6 + +[c] 5 +L 3,6,1.5,6 +A 1.5,4.5,1.5,90,180 +L 0,4.5,0,1.5 +A 1.5,1.5,1.5,180,270 +L 1.5,0,3,0 + +[d] 6 +L 4,9,4,0 +L 4,0,1.5,0 +A 1.5,1.5,1.5,180,270 +L 0,1.5,0,4.5 +A 1.5,4.5,1.5,90,180 +L 1.5,6,4,6 + +[e] 6 +L 0,3,4,3 +L 4,3,4,4 +A 2,4,2,0,180 +L 0,4,0,1.5 +A 1.5,1.5,1.5,180,270 +L 1.5,0,4,0 + +[f] 4 +L 1,0,1,7.5 +A 2.5,7.5,1.5,90,180 +L 2.5,9,3,9 +L 0,6,3,6 + +[g] 8 +L 0,-3,2.5,-3 +A 2.5,-1.5,1.5,270,0 +L 4,-1.5,4,6 +L 4,6,1.5,6 +A 1.5,4.5,1.5,90,180 +L 0,4.5,0,1.5 +A 1.5,1.5,1.5,180,270 +L 1.5,0,4,0 + +[h] 4 +L 0,9,0,0 +L 0,6,2.5,6 +A 2.5,4.5,1.5,0,90 +L 4,4.5,4,0 + +[i] 2 +L 0,0,0,6 +L 0,8.5,0,9 + +[j] 4 +L 0,-3,0.5,-3 +A 0.5,-1.5,1.5,270,0 +L 2,-1.5,2,6 +L 2,8.5,2,9 + +[k] 3 +L 0,9,0,0 +L 0,3.5,4,6 +L 1.320923,4.32555,4,0 + +[l] 2 +L 0,9,0,1 +A 1,1,1,180,270 + +[m] 5 +L 0,0,0,6 +L 0,6,4.5,6 +A 4.5,4.5,1.5,0,90 +L 6,4.5,6,0 +L 3,6,3,0 + +[n] 4 +L 0,0,0,6 +L 0,6,2.5,6 +A 2.5,4.5,1.5,0,90 +L 4,4.5,4,0 + +[o] 4 +L 0,4,0,2 +A 2,2,2,180,0 +L 4,2,4,4 +A 2,4,2,0,180 + +[p] 6 +L 0,0,2.5,0 +A 2.5,1.5,1.5,270,0 +L 4,1.5,4,4.5 +A 2.5,4.5,1.5,0,90 +L 2.5,6,0,6 +L 0,6,0,-3 + +[q] 6 +L 4,0,1.5,0 +A 1.5,1.5,1.5,180,270 +L 0,1.5,0,4.5 +A 1.5,4.5,1.5,90,180 +L 1.5,6,4,6 +L 4,6,4,-3 + +[r] 3 +L 0,0,0,6 +L 0,6,2,6 +A 2,5,1,0,90 + +[s] 5 +A 2.164185,1.82088,4.0573,63.09737,108.27552 +A 1.268188,4.53406,1.2,108.274567,247.790543 +L 0.814575,3.42309,3.185425,2.45509 +A 2.731812,1.34412,1.19999,288.274933,67.791191 +A 1.835815,4.05732,4.05732,243.097656,288.275513 + +[t] 2 +L 0,6,3,6 +L 1,9,1,0 + +[u] 4 +L 0,6,0,1.5 +A 1.5,1.5,1.5,180,270 +L 1.5,0,4,0 +L 4,0,4,6 + +[v] 2 +L 0,6,2,0 +L 2,0,4,6 + +[w] 4 +L 0,6,1.5,0 +L 1.5,0,3,4 +L 3,4,4.5,0 +L 4.5,0,6,6 + +[x] 2 +L 0,6,4,0 +L 0,0,4,6 + +[y] 4 +L 0,6,2,0 +L 4,6,1.227905,-2.31623 +A 0.279297,-2,1,270,341.565063 +L 0.279297,-3,0,-3 + +[z] 3 +L 0,6,4,6 +L 4,6,0,0 +L 0,0,4,0 + +[{] 6 +A 2,8,1,90,180 +L 1,8,1,5 +A 0,5,1,270,0 +A 0,3,1,0,90 +L 1,3,1,0 +A 2,0,1,180,270 + +[}] 6 +A 0,8,1,0,90 +L 1,8,1,5 +A 2,5,1,180,270 +A 2,3,1,90,180 +L 1,3,1,0 +A 0,0,1,270,0 + +# Cyrillic letters -------------------------------------- + +[0450] 8 +L 0,3,4,3 +L 4,3,4,4 +A 2,4,2,0,180 +L 0,4,0,1.5 +A 1.5,1.5,1.5,180,270 +L 1.5,0,4,0 +L 1,9,1,8.5 +L 3,9,3,8.5 + +[0400] 6 +L 4,9,0,9 +L 0,9,0,0 +L 0,0,4,0 +L 0,5,3,5 +L 1,10.25,1,10.75 +L 3,10.25,3,10.75 + +[044E] 6 +L 0,6,0,0 +A 3,4.5,1.5,0,180 +A 3,1.5,1.5,180,0 +L 1.5,4.5,1.5,1.5 +L 4.5,4.5,4.5,1.5 +L 0,3,1.5,3 + +[0430] 8 +A 1.5,4.5,1.5,90,180 +A 1.5,1.5,1.5,180,270 +L 1.5,6,4,6 +L 0,4.5,0,1.5 +A 2.5,1.5,1.5,270,0 +L 1.5,0,2.5,0 +L 4,6,4,1.5 +A 5.5,1.5,1.5,180,270 + +[0431] 10 +A 1.5,4.5,1.5,90,180 +A 1.5,1.5,1.5,180,270 +L 0,4.5,0,1.5 +A 2.5,1.5,1.5,270,0 +L 1.5,0,2.5,0 +A 2.5,4.5,1.5,0,90 +L 1.5,6,2.5,6 +L 4,4.5,4,1.5 +L 0,9,4,9 +L 0,9,3.542072,5.578929 + +[0446] 5 +L 0,6,0,1.5 +A 1.5,1.5,1.5,180,270 +L 4,0,4,6 +L 1.5,0,5,0 +L 5,0,5,-1.5 + +[0434] 9 +A 1.5,1.5,1.5,180,270 +A 1.5,4.5,1.5,90,180 +L 0,4.5,0,1.5 +A 2.5,1.5,1.5,270,0 +L 1.5,0,2.5,0 +A 2.5,7.5,1.5,0,90 +L 4,7.5,4,1.5 +L 1.5,6,4,6 +L 0.5,9,2.5,9 + +[0435] 6 +L 0,3,4,3 +L 4,3,4,4 +A 2,4,2,0,180 +L 0,4,0,1.5 +A 1.5,1.5,1.5,180,270 +L 1.5,0,4,0 + +[0444] 3 +L 3,8,3,-3 +A 3,3,3,90,270 +A 3,3,3,270,90 + +[0433] 5 +A 1.835815,1.82088,4.0573,71.72448,116.90263 +A 2.731812,4.53406,1.2,292.209457,71.725433 +L 3.185425,3.42309,0.814575,2.45509 +A 1.268188,1.34412,1.19999,112.208809,251.725067 +A 2.164185,4.05732,4.05732,251.724487,296.902344 + +[0445] 2 +L 0,6,4,0 +L 0,0,4,6 + +[0438] 4 +L 0,6,0,1.5 +A 1.5,1.5,1.5,180,270 +L 1.5,0,4,0 +L 4,0,4,6 + +[0439] 5 +L 0,6,0,1.5 +A 1.5,1.5,1.5,180,270 +L 1.5,0,4,0 +L 4,0,4,6 +L 1,7.5,3,7.5 + +[043A] 3 +L 0,6,0,0 +L 0,3,4,6 +L 1.333333,4,4,0 + +[043B] 3 +L 4,6,4,0 +L 2.5,6,0,0 +L 2.5,6,4,6 + +[043C] 4 +L 0,6,0,0 +L 5,6,5,0 +L 0,6,2.5,2.5 +L 2.5,2.5,5,6 + +[043D] 3 +L 0,6,0,0 +L 4,6,4,0 +L 0,3,4,3 + +[043E] 4 +L 0,4,0,2 +A 2,2,2,180,0 +L 4,2,4,4 +A 2,4,2,0,180 + +[043F] 4 +L 0,0,0,6 +L 0,6,2.5,6 +A 2.5,4.5,1.5,0,90 +L 4,4.5,4,0 + +[044F] 5 +L 4,0,4,6 +A 1.5,4.5,1.5,90,270 +L 4,3,1.5,3 +L 4,6,1.5,6 +L 0,0,2.5,3 + +[0440] 6 +L 0,0,2.5,0 +A 2.5,1.5,1.5,270,0 +L 4,1.5,4,4.5 +A 2.5,4.5,1.5,0,90 +L 2.5,6,0,6 +L 0,6,0,-3 + +[0441] 5 +L 3,6,1.5,6 +A 1.5,4.5,1.5,90,180 +L 0,4.5,0,1.5 +A 1.5,1.5,1.5,180,270 +L 1.5,0,3,0 + +[0442] 5 +L 0,0,0,6 +L 0,6,4.5,6 +A 4.5,4.5,1.5,0,90 +L 6,4.5,6,0 +L 3,6,3,0 + +[0443] 6 +L 0,6,0,1.5 +A 1.5,1.5,1.5,180,270 +L 1.5,0,4,0 +A 2.5,-1.5,1.5,270,0 +L 4,6,4,-1.5 +L 0.5,-3,2.5,-3 + +[0436] 5 +L 3,6,3,0 +L 0,6,3,3 +L 3,3,6,6 +L 0,0,2.571429,3.428571 +L 6,0,3.428571,3.428571 + +[0432] 11 +A 1.5,4.5,1.5,90,180 +A 1.5,1.5,1.5,180,270 +L 0,4.5,0,1.5 +A 2.5,1.5,1.5,270,0 +L 1.5,0,2.5,0 +A 2.5,4.5,1.5,0,90 +L 1.5,6,2.5,6 +L 4,4.5,4,1.5 +L 1.894427,7.552786,0.294612,5.392771 +A 1,8,1,333.434949,180 +L 0,8,0,4.5 + +[044C] 4 +L 0,6,0,0 +A 2.5,1.5,1.5,270,90 +L 0,3,2.5,3 +L 0,0,2.5,0 + +[044B] 5 +L 0,6,0,0 +L 5,6,5,0 +A 2,1.5,1.5,270,90 +L 0,3,2,3 +L 0,0,2,0 + +[0437] 7 +A 2.5,4.5,1.5,270,90 +A 2.5,1.5,1.5,270,90 +L 1.5,3,2.5,3 +A 1.5,4.5,1.5,90,161.565051 +L 1.5,6,2.5,6 +A 1.5,1.5,1.5,198.434949,270 +L 1.5,0,2.5,0 + +[0448] 5 +L 0,6,0,1.5 +A 1.5,1.5,1.5,180,270 +L 6,6,6,0 +L 3,6,3,0 +L 1.5,0,6,0 + +[044D] 6 +A 2.5,4.5,1.5,0,90 +A 2.5,1.5,1.5,270,0 +L 4,4.5,4,1.5 +L 0,6,2.5,6 +L 0,0,2.5,0 +L 1.5,3,4,3 + +[0449] 6 +L 0,6,0,1.5 +A 1.5,1.5,1.5,180,270 +L 6,6,6,0 +L 3,6,3,0 +L 1.5,0,7,0 +L 7,0,7,-1.5 + +[0447] 4 +L 4,6,4,0 +A 1.5,4.5,1.5,180,270 +L 0,6,0,4.5 +L 1.5,3,4,3 + +[044A] 5 +L 1.5,6,1.5,0 +A 4,1.5,1.5,270,90 +L 1.5,3,4,3 +L 1.5,0,4,0 +L 0,6,1.5,6 + +[042E] 10 +A 3.5,7,2,90,180 +A 4,7,2,0,90 +L 3.5,9,4,9 +A 3.5,2,2,180,270 +A 4,2,2,270,0 +L 3.5,0,4,0 +L 0,9,0,0 +L 1.5,7,1.5,2 +L 6,7,6,2 +L 0,5,1.5,5 + +[0410] 3 +L 0,0,3,9 +L 3,9,6,0 +L 0.833313,2.5,5.166687,2.5 + +[0411] 7 +L 0,0,0,9 +L 0,5,2.599976,5 +A 2.599976,2.6,2.4,0,90 +L 5,2.6,5,2.4 +A 2.599976,2.4,2.4,270,0 +L 2.599976,0,0,0 +L 0,9,4,9 + +[0426] 4 +L 0,9,0,0 +L 5,9,5,0 +L 0,0,6,0 +L 6,0,6,-1.5 + +[0414] 6 +L 5.5,9,5.5,0 +L 0,0,6,0 +L 0,0,0,-1.5 +L 6,0,6,-1.5 +L 5.5,9,3.5,9 +L 3.5,9,0.5,0 + +[0415] 4 +L 4,9,0,9 +L 0,9,0,0 +L 0,0,4,0 +L 0,5,3,5 + +[0424] 9 +L 3,9,3,0 +A 2,4,2,180,270 +A 4,4,2,270,0 +L 2,2,4,2 +A 2,5.5,2,90,180 +L 2,7.5,4,7.5 +A 4,5.5,2,0,90 +L 6,5.5,6,4 +L 0,5.5,0,4 + +[0413] 2 +L 0,9,5,9 +L 0,9,0,0 + +[0425] 2 +L 0,9,6,0 +L 0,0,6,9 + +[0418] 3 +L 0,9,0,0 +L 5,0,5,9 +L 5,9,0,0 + +[0419] 4 +L 0,9,0,0 +L 0,0,5,9 +L 5,9,5,0 +L 1.5,10,3.5,10 + +[041A] 3 +L 0,9,0,0 +L 0,3.5,5,9 +L 1.671326,5.33844,5,0 + +[041B] 3 +L 5,0,5,9 +L 5,9,3.5,9 +L 3.5,9,0,0 + +[041C] 4 +L 0,0,0,9 +L 0,9,3,4 +L 3,4,6,9 +L 6,9,6,0 + +[041D] 3 +L 0,9,0,0 +L 5,0,5,9 +L 0,5,5,5 + +[041E] 8 +L 0,2,0,7 +A 2,7,2,90,180 +L 2,9,3,9 +A 3,7,2,0,90 +L 5,7,5,2 +A 3,2,2,270,0 +L 3,0,2,0 +A 2,2,2,180,270 + +[041F] 3 +L 5,0,5,9 +L 5,9,0,9 +L 0,9,0,0 + +[042F] 7 +L 5,0,5,9 +L 5,9,2,9 +L 0,7,0,6 +L 2,4,5,4 +L 0,0,3,4 +A 2,7,2,90,180 +A 2,6,2,180,270 + +[0420] 6 +L 0,0,0,9 +L 0,9,3,9 +A 3,7,2,0,90 +L 5,7,5,6 +A 3,6,2,270,0 +L 3,4,0,4 + +[0421] 5 +L 4,9,2,9 +A 2,7,2,90,180 +L 0,7,0,2 +A 2,2,2,180,270 +L 2,0,4,0 + +[0422] 2 +L 0,9,6,9 +L 3,9,3,0 + +[0423] 6 +L 2,4,5,4 +L 0,9,0,6 +A 2,6,2,180,270 +A 3,2,2,270,0 +L 5,9,5,2 +L 0.5,0,3,0 + +[0416] 5 +L 3,9,3,0 +L 0,9,3,4.5 +L 3,4.5,6,9 +L 0,0,2.7,4.95 +L 3.3,4.95,6,0 + +[0412] 8 +L 0,0,0,9 +L 0,9,2.5,9 +A 2.5,7,2,270,90 +L 0,5,2.599976,5 +A 2.599976,2.6,2.4,0,90 +L 5,2.6,5,2.4 +A 2.599976,2.4,2.4,270,0 +L 2.599976,0,0,0 + +[042C] 4 +L 0,9,0,0 +A 2.5,2.5,2.5,270,90 +L 0,5,2.5,5 +L 0,0,2.5,0 + +[042B] 5 +L 0,9,0,0 +L 6,9,6,0 +A 2,2.5,2.5,270,90 +L 0,5,2,5 +L 0,0,2,0 + +[0417] 9 +A 3,7,2,270,90 +L 3,5,2,5 +A 3,3,2,0,90 +L 5,3,5,2 +A 3,2,2,270,0 +A 2,7,2,90,135 +L 2,9,3,9 +A 2,2,2,206.565051,270 +L 2,0,3,0 + +[0428] 4 +L 0,9,0,0 +L 0,0,6,0 +L 6,0,6,9 +L 3,9,3,0 + +[042D] 6 +L 5,7,5,2 +A 3,7,2,0,90 +A 3,2,2,270,0 +L 0,9,3,9 +L 3,0,0,0 +L 5,5,2,5 + +[0429] 5 +L 0,9,0,0 +L 6,0,6,9 +L 3,9,3,0 +L 0,0,7,0 +L 7,0,7,-1.5 + +[0427] 4 +L 5,9,5,0 +L 2,4,5,4 +L 0,9,0,6 +A 2,6,2,180,270 + +[042A] 5 +L 1.5,9,1.5,0 +A 4,2.5,2.5,270,90 +L 1.5,5,4,5 +L 1.5,0,4,0 +L 0,9,1.5,9 + +# Additional signs (diameter, degree, plus/minus) ------------------- + +[00D8] 3 +A 3,4.5,3,77.471191,257.471191 +A 3,4.5,3,257.471191,77.471191 +L 2,0,4,9 + +[00B0] 2 +A 1.5,7.5,1.5,90,270 +A 1.5,7.5,1.5,270,90 + +[00B1] 3 +L -0.000122,5,3.999878,5 +L 1.999878,7,1.999878,3 +L -0.000122,1,3.999878,1 + +#EOF diff --git a/pycam/share/fonts/gothgbt.cxf b/pycam/share/fonts/gothgbt.cxf new file mode 100644 index 00000000..19b03398 --- /dev/null +++ b/pycam/share/fonts/gothgbt.cxf @@ -0,0 +1,3188 @@ +# Format: QCad II Font +# Creator: Adam Radlowski's "dodajf" program - GRASS font translator +# Version: 1.0.0 +# Name: Gothic Great Britain triplex +# LetterSpacing: 3.0 +# WordSpacing: 6.75 +# LineSpacingFactor: 1.0 +# Author: Hershey fonts + +[!] 20 +L 0.96,6.72,0.64,6.4 +L 0.64,6.4,0,6.08 +L 0,6.08,0.64,5.76 +L 0.64,5.76,0.96,2.24 +L 0.96,5.76,1.28,6.08 +L 1.28,6.08,0.96,6.4 +L 0.96,6.4,0.64,6.08 +L 0.64,6.08,0.96,5.76 +L 0.96,5.76,0.96,2.24 +L 0.96,6.72,1.28,6.4 +L 1.28,6.4,1.92,6.08 +L 1.92,6.08,1.28,5.76 +L 1.28,5.76,0.96,2.24 +L 0.96,0.96,0.32,0.32 +L 0.32,0.32,0.96,0 +L 0.96,0,1.6,0.32 +L 1.6,0.32,0.96,0.96 +L 0.96,0.64,0.64,0.32 +L 0.64,0.32,1.28,0.32 +L 1.28,0.32,0.96,0.64 + +["] 10 +L 0.32,6.72,0,6.4 +L 0,6.4,0,4.48 +L 0.32,6.4,0,4.48 +L 0.32,6.72,0.64,6.4 +L 0.64,6.4,0,4.48 +L 3.2,6.72,2.88,6.4 +L 2.88,6.4,2.88,4.48 +L 3.2,6.4,2.88,4.48 +L 3.2,6.72,3.52,6.4 +L 3.52,6.4,2.88,4.48 + +[#] 4 +L 2.56,6.72,0.32,-2.24 +L 4.48,6.72,2.24,-2.24 +L 0.32,3.2,4.8,3.2 +L 0,1.28,4.48,1.28 + +[$] 46 +L 1.6,8,1.6,-1.28 +L 2.88,8,2.88,-1.28 +L 2.88,6.72,3.52,6.4 +L 3.52,6.4,3.84,5.76 +L 3.84,5.76,3.84,5.12 +L 3.84,5.12,4.48,5.44 +L 4.48,5.44,4.16,6.08 +L 4.16,6.08,3.84,6.4 +L 3.84,6.4,2.88,6.72 +L 2.88,6.72,1.6,6.72 +L 1.6,6.72,0.64,6.4 +L 0.64,6.4,0,5.76 +L 0,5.76,0,4.8 +L 0,4.8,0.32,4.16 +L 0.32,4.16,1.28,3.52 +L 1.28,3.52,3.2,2.88 +L 3.2,2.88,3.84,2.56 +L 3.84,2.56,4.16,1.92 +L 4.16,1.92,4.16,0.96 +L 4.16,0.96,3.84,0.32 +L 4.16,5.44,3.84,6.08 +L 0.32,4.8,0.64,4.16 +L 0.64,4.16,1.28,3.84 +L 1.28,3.84,3.2,3.2 +L 3.2,3.2,3.84,2.88 +L 3.84,2.88,4.16,2.24 +L 0.64,0.64,0.32,1.28 +L 0.64,6.4,0.32,5.76 +L 0.32,5.76,0.32,5.12 +L 0.32,5.12,0.64,4.48 +L 0.64,4.48,1.28,4.16 +L 1.28,4.16,3.2,3.52 +L 3.2,3.52,4.16,2.88 +L 4.16,2.88,4.48,2.24 +L 4.48,2.24,4.48,1.28 +L 4.48,1.28,4.16,0.64 +L 4.16,0.64,3.84,0.32 +L 3.84,0.32,2.88,0 +L 2.88,0,1.6,0 +L 1.6,0,0.64,0.32 +L 0.64,0.32,0.32,0.64 +L 0.32,0.64,0,1.28 +L 0,1.28,0.64,1.6 +L 0.64,1.6,0.64,0.96 +L 0.64,0.96,0.96,0.32 +L 0.96,0.32,1.6,0 + +[%] 26 +L 5.76,6.72,0,0 +L 1.6,6.72,2.24,6.08 +L 2.24,6.08,2.24,5.44 +L 2.24,5.44,1.92,4.8 +L 1.92,4.8,1.28,4.48 +L 1.28,4.48,0.64,4.48 +L 0.64,4.48,0,5.12 +L 0,5.12,0,5.76 +L 0,5.76,0.32,6.4 +L 0.32,6.4,0.96,6.72 +L 0.96,6.72,1.6,6.72 +L 1.6,6.72,2.24,6.4 +L 2.24,6.4,3.2,6.08 +L 3.2,6.08,4.16,6.08 +L 4.16,6.08,5.12,6.4 +L 5.12,6.4,5.76,6.72 +L 4.48,2.24,3.84,1.92 +L 3.84,1.92,3.52,1.28 +L 3.52,1.28,3.52,0.64 +L 3.52,0.64,4.16,0 +L 4.16,0,4.8,0 +L 4.8,0,5.44,0.32 +L 5.44,0.32,5.76,0.96 +L 5.76,0.96,5.76,1.6 +L 5.76,1.6,5.12,2.24 +L 5.12,2.24,4.48,2.24 + +[&] 38 +L 5.44,4.16,5.76,3.84 +L 5.76,3.84,6.08,3.84 +L 6.08,3.84,6.4,4.16 +L 5.12,3.84,5.44,3.52 +L 5.44,3.52,6.08,3.52 +L 5.12,3.52,5.44,3.2 +L 5.44,3.2,5.76,3.2 +L 5.76,3.2,6.08,3.52 +L 6.08,3.52,6.4,4.16 +L 5.44,4.16,3.52,2.24 +L 3.2,1.92,1.28,0 +L 1.28,0,0,1.6 +L 0,1.6,1.92,3.52 +L 2.24,3.84,3.52,5.12 +L 3.52,5.12,2.24,6.72 +L 2.24,6.72,0.64,4.8 +L 0.64,4.8,2.56,2.88 +L 2.56,2.88,3.84,0.96 +L 3.84,0.96,4.48,0.32 +L 4.48,0.32,5.12,0 +L 5.12,0,5.76,0 +L 5.76,0,6.08,0.32 +L 6.08,0.32,6.4,0.96 +L 1.28,0.32,0.32,1.6 +L 3.2,5.12,2.24,6.4 +L 0.96,4.8,2.56,3.2 +L 2.56,3.2,3.84,1.28 +L 3.84,1.28,4.48,0.64 +L 4.48,0.64,5.12,0.32 +L 5.12,0.32,6.08,0.32 +L 1.6,0.32,0.32,1.92 +L 3.2,4.8,1.92,6.4 +L 0.96,5.12,2.88,3.2 +L 2.88,3.2,4.16,1.28 +L 4.16,1.28,4.48,0.96 +L 4.48,0.96,5.12,0.64 +L 5.12,0.64,6.08,0.64 +L 6.08,0.64,6.4,0.96 + +['] 10 +L 0.64,4.8,0.64,5.44 +L 0.64,5.44,0,6.08 +L 0,6.08,0.64,6.72 +L 0.64,6.72,0.96,6.08 +L 0.96,6.08,0.96,5.44 +L 0.96,5.44,0.64,4.8 +L 0.64,4.8,0,4.48 +L 0.64,6.4,0.32,6.08 +L 0.32,6.08,0.64,5.76 +L 0.64,5.76,0.64,6.4 + +[(] 21 +L 2.24,8,1.6,7.36 +L 1.6,7.36,0.96,6.4 +L 0.96,6.4,0.32,5.12 +L 0.32,5.12,0,3.52 +L 0,3.52,0,2.24 +L 0,2.24,0.32,0.64 +L 0.32,0.64,0.96,-0.64 +L 0.96,-0.64,1.6,-1.6 +L 1.6,-1.6,2.24,-2.24 +L 0.96,6.08,0.64,5.12 +L 0.64,5.12,0.32,3.84 +L 0.32,3.84,0.32,1.92 +L 0.32,1.92,0.64,0.64 +L 0.64,0.64,0.96,-0.32 +L 1.6,7.36,1.28,6.72 +L 1.28,6.72,0.96,5.76 +L 0.96,5.76,0.64,3.84 +L 0.64,3.84,0.64,1.92 +L 0.64,1.92,0.96,0 +L 0.96,0,1.28,-0.96 +L 1.28,-0.96,1.6,-1.6 + +[)] 21 +L 0,8,0.64,7.36 +L 0.64,7.36,1.28,6.4 +L 1.28,6.4,1.92,5.12 +L 1.92,5.12,2.24,3.52 +L 2.24,3.52,2.24,2.24 +L 2.24,2.24,1.92,0.64 +L 1.92,0.64,1.28,-0.64 +L 1.28,-0.64,0.64,-1.6 +L 0.64,-1.6,0,-2.24 +L 1.28,6.08,1.6,5.12 +L 1.6,5.12,1.92,3.84 +L 1.92,3.84,1.92,1.92 +L 1.92,1.92,1.6,0.64 +L 1.6,0.64,1.28,-0.32 +L 0.64,7.36,0.96,6.72 +L 0.96,6.72,1.28,5.76 +L 1.28,5.76,1.6,3.84 +L 1.6,3.84,1.6,1.92 +L 1.6,1.92,1.28,0 +L 1.28,0,0.96,-0.96 +L 0.96,-0.96,0.64,-1.6 + +[*] 21 +L 1.6,6.72,1.28,6.4 +L 1.28,6.4,1.92,3.2 +L 1.92,3.2,1.6,2.88 +L 1.6,6.72,1.6,2.88 +L 1.6,6.72,1.92,6.4 +L 1.92,6.4,1.28,3.2 +L 1.28,3.2,1.6,2.88 +L 0,5.76,0.32,5.76 +L 0.32,5.76,2.88,3.84 +L 2.88,3.84,3.2,3.84 +L 0,5.76,3.2,3.84 +L 0,5.76,0,5.44 +L 0,5.44,3.2,4.16 +L 3.2,4.16,3.2,3.84 +L 3.2,5.76,2.88,5.76 +L 2.88,5.76,0.32,3.84 +L 0.32,3.84,0,3.84 +L 3.2,5.76,0,3.84 +L 3.2,5.76,3.2,5.44 +L 3.2,5.44,0,4.16 +L 0,4.16,0,3.84 + +[+] 8 +L 2.56,5.76,2.56,0.32 +L 2.56,0.32,2.88,0.32 +L 2.56,5.76,2.88,5.76 +L 2.88,5.76,2.88,0.32 +L 0,3.2,5.44,3.2 +L 5.44,3.2,5.44,2.88 +L 0,3.2,0,2.88 +L 0,2.88,5.44,2.88 + +[,] 10 +L 0.64,-0.96,0.64,-0.32 +L 0.64,-0.32,0,0.32 +L 0,0.32,0.64,0.96 +L 0.64,0.96,0.96,0.32 +L 0.96,0.32,0.96,-0.32 +L 0.96,-0.32,0.64,-0.96 +L 0.64,-0.96,0,-1.28 +L 0.64,0.64,0.32,0.32 +L 0.32,0.32,0.64,0 +L 0.64,0,0.64,0.64 + +[-] 4 +L 0,3.2,5.44,3.2 +L 5.44,3.2,5.44,2.88 +L 0,3.2,0,2.88 +L 0,2.88,5.44,2.88 + +[.] 7 +L 0.64,0.96,0,0.32 +L 0,0.32,0.64,0 +L 0.64,0,1.28,0.32 +L 1.28,0.32,0.64,0.96 +L 0.64,0.64,0.32,0.32 +L 0.32,0.32,0.96,0.32 +L 0.96,0.32,0.64,0.64 + +[/] 4 +L 5.76,8,0,-2.24 +L 0,-2.24,0.32,-2.24 +L 5.76,8,6.08,8 +L 6.08,8,0.32,-2.24 + +[0] 26 +L 0.64,6.08,0.64,0.96 +L 0.64,0.96,0,0.64 +L 0.96,5.76,0.96,0.96 +L 0.96,0.96,1.92,0.32 +L 1.28,6.08,1.28,0.96 +L 1.28,0.96,1.92,0.64 +L 1.92,0.64,2.24,0.32 +L 0.64,6.08,1.28,6.08 +L 1.28,6.08,2.88,6.4 +L 2.88,6.4,3.52,6.72 +L 2.88,6.4,3.2,6.08 +L 3.2,6.08,3.84,5.76 +L 3.84,5.76,3.84,0.64 +L 3.2,6.4,4.16,5.76 +L 4.16,5.76,4.16,0.96 +L 3.52,6.72,3.84,6.4 +L 3.84,6.4,4.48,6.08 +L 4.48,6.08,5.12,6.08 +L 5.12,6.08,4.48,5.76 +L 4.48,5.76,4.48,0.64 +L 0,0.64,0.64,0.64 +L 0.64,0.64,1.28,0.32 +L 1.28,0.32,1.6,0 +L 1.6,0,2.24,0.32 +L 2.24,0.32,3.84,0.64 +L 3.84,0.64,4.48,0.64 + +[1] 19 +L 0,6.08,0.32,5.76 +L 0.32,5.76,0.64,5.12 +L 0.64,5.12,0.64,0.96 +L 0.64,0.96,0,0.64 +L 0.64,5.76,0.32,6.08 +L 0.32,6.08,0.64,6.4 +L 0.64,6.4,0.96,5.76 +L 0.96,5.76,0.96,0.64 +L 0.96,0.64,1.6,0.32 +L 0,6.08,0.96,6.72 +L 0.96,6.72,1.28,6.08 +L 1.28,6.08,1.28,0.96 +L 1.28,0.96,1.92,0.64 +L 1.92,0.64,2.24,0.64 +L 0,0.64,0.32,0.64 +L 0.32,0.64,0.96,0.32 +L 0.96,0.32,1.28,0 +L 1.28,0,1.6,0.32 +L 1.6,0.32,2.24,0.64 + +[2] 30 +L 0.32,6.08,0.96,6.08 +L 0.96,6.08,1.6,6.4 +L 1.6,6.4,1.92,6.72 +L 1.92,6.72,2.56,6.4 +L 2.56,6.4,3.52,6.08 +L 3.52,6.08,4.16,6.08 +L 1.6,6.08,2.24,6.4 +L 0.32,6.08,0.96,5.76 +L 0.96,5.76,1.6,5.76 +L 1.6,5.76,2.24,6.08 +L 2.24,6.08,2.56,6.4 +L 3.52,6.08,3.52,3.52 +L 3.84,5.76,3.84,3.84 +L 4.16,6.08,4.16,3.52 +L 4.16,3.52,1.92,3.52 +L 1.92,3.52,0.96,3.2 +L 0.96,3.2,0.32,2.56 +L 0.32,2.56,0,1.6 +L 0,1.6,0,0 +L 0,0,1.28,0.64 +L 1.28,0.64,2.56,0.96 +L 2.56,0.96,3.52,0.96 +L 3.52,0.96,4.8,0.64 +L 0.96,0.32,1.92,0.64 +L 1.92,0.64,3.52,0.64 +L 3.52,0.64,4.48,0.32 +L 0,0,1.6,0.32 +L 1.6,0.32,3.2,0.32 +L 3.2,0.32,4.16,0 +L 4.16,0,4.8,0.64 + +[3] 33 +L 0.32,6.08,0.64,6.08 +L 0.64,6.08,1.28,6.4 +L 1.28,6.4,1.6,6.72 +L 1.6,6.72,2.24,6.4 +L 2.24,6.4,3.52,6.08 +L 3.52,6.08,4.16,6.08 +L 1.28,6.08,1.92,6.4 +L 0.32,6.08,0.96,5.76 +L 0.96,5.76,1.6,5.76 +L 1.6,5.76,2.24,6.4 +L 3.52,6.08,3.52,3.84 +L 3.84,5.76,3.84,4.16 +L 4.16,6.08,4.16,3.84 +L 4.16,3.84,3.52,3.84 +L 3.52,3.84,2.56,3.52 +L 2.56,3.52,1.92,3.2 +L 1.92,3.52,2.56,3.2 +L 2.56,3.2,3.52,2.88 +L 3.52,2.88,4.16,2.88 +L 4.16,2.88,4.16,0.64 +L 3.84,2.56,3.84,0.96 +L 3.52,2.88,3.52,0.64 +L 0,0.64,0.64,0.96 +L 0.64,0.96,1.28,0.96 +L 1.28,0.96,1.92,0.64 +L 1.92,0.64,2.24,0.32 +L 1.28,0.64,1.92,0.32 +L 0,0.64,0.64,0.64 +L 0.64,0.64,1.28,0.32 +L 1.28,0.32,1.6,0 +L 1.6,0,2.24,0.32 +L 2.24,0.32,3.52,0.64 +L 3.52,0.64,4.16,0.64 + +[4] 25 +L 3.2,6.72,0,3.52 +L 0,3.52,0,1.92 +L 0,1.92,2.88,1.92 +L 3.52,1.92,4.8,1.92 +L 4.8,1.92,5.12,1.6 +L 5.12,1.6,5.12,2.24 +L 5.12,2.24,4.8,1.92 +L 0.32,3.52,0.32,2.24 +L 0.64,4.16,0.64,1.92 +L 2.88,6.4,2.88,0.96 +L 2.88,0.96,2.24,0.64 +L 3.2,5.44,3.52,6.08 +L 3.52,6.08,3.2,6.4 +L 3.2,6.4,3.2,0.64 +L 3.2,0.64,3.84,0.32 +L 3.2,6.72,3.84,6.08 +L 3.84,6.08,3.52,5.44 +L 3.52,5.44,3.52,0.96 +L 3.52,0.96,4.16,0.64 +L 4.16,0.64,4.48,0.64 +L 2.24,0.64,2.56,0.64 +L 2.56,0.64,3.2,0.32 +L 3.2,0.32,3.52,0 +L 3.52,0,3.84,0.32 +L 3.84,0.32,4.48,0.64 + +[5] 31 +L 0.32,6.72,0.32,3.84 +L 0.32,6.72,4.16,6.72 +L 0.64,6.4,3.52,6.4 +L 0.32,6.08,3.2,6.08 +L 3.2,6.08,3.84,6.4 +L 3.84,6.4,4.16,6.72 +L 3.52,4.8,3.2,4.48 +L 3.2,4.48,2.56,4.16 +L 2.56,4.16,1.28,3.84 +L 1.28,3.84,0.32,3.84 +L 2.56,4.16,2.88,4.16 +L 2.88,4.16,3.52,3.84 +L 3.52,3.84,3.52,0.64 +L 3.2,4.48,3.84,4.16 +L 3.84,4.16,3.84,0.96 +L 3.52,4.8,3.84,4.48 +L 3.84,4.48,4.48,4.16 +L 4.48,4.16,4.8,4.16 +L 4.8,4.16,4.16,3.84 +L 4.16,3.84,4.16,0.64 +L 0,0.64,0.64,0.96 +L 0.64,0.96,1.28,0.96 +L 1.28,0.96,1.92,0.64 +L 1.92,0.64,2.24,0.32 +L 1.28,0.64,1.92,0.32 +L 0,0.64,0.64,0.64 +L 0.64,0.64,1.28,0.32 +L 1.28,0.32,1.6,0 +L 1.6,0,2.24,0.32 +L 2.24,0.32,3.52,0.64 +L 3.52,0.64,4.16,0.64 + +[6] 37 +L 0.64,6.08,0.64,0.96 +L 0.64,0.96,0,0.64 +L 0.96,5.76,0.96,0.96 +L 0.96,0.96,1.92,0.32 +L 1.28,6.08,1.28,0.96 +L 1.28,0.96,1.92,0.64 +L 1.92,0.64,2.24,0.32 +L 0.64,6.08,1.28,6.08 +L 1.28,6.08,2.56,6.4 +L 2.56,6.4,3.2,6.72 +L 3.2,6.72,3.52,6.4 +L 3.52,6.4,4.16,6.08 +L 4.16,6.08,4.48,6.08 +L 2.88,6.4,3.52,6.08 +L 2.56,6.4,3.2,5.76 +L 3.2,5.76,3.84,5.76 +L 3.84,5.76,4.48,6.08 +L 1.28,3.52,1.6,3.52 +L 1.6,3.52,2.88,3.84 +L 2.88,3.84,3.52,4.16 +L 3.52,4.16,3.84,4.48 +L 2.88,3.84,3.2,3.84 +L 3.2,3.84,3.84,3.52 +L 3.84,3.52,3.84,0.64 +L 3.52,4.16,4.16,3.52 +L 4.16,3.52,4.16,0.96 +L 3.84,4.48,4.16,4.16 +L 4.16,4.16,4.8,3.84 +L 4.8,3.84,5.12,3.84 +L 5.12,3.84,4.48,3.52 +L 4.48,3.52,4.48,0.64 +L 0,0.64,0.64,0.64 +L 0.64,0.64,1.28,0.32 +L 1.28,0.32,1.6,0 +L 1.6,0,2.24,0.32 +L 2.24,0.32,3.84,0.64 +L 3.84,0.64,4.48,0.64 + +[7] 26 +L 0,6.08,0.64,6.72 +L 0.64,6.72,1.6,6.4 +L 1.6,6.4,3.2,6.4 +L 3.2,6.4,4.8,6.72 +L 0.32,6.4,1.28,6.08 +L 1.28,6.08,2.88,6.08 +L 2.88,6.08,3.84,6.4 +L 0,6.08,1.28,5.76 +L 1.28,5.76,2.24,5.76 +L 2.24,5.76,3.52,6.08 +L 3.52,6.08,4.8,6.72 +L 4.8,6.72,4.48,6.08 +L 4.48,6.08,3.84,5.12 +L 3.84,5.12,2.56,3.84 +L 2.56,3.84,1.92,2.88 +L 1.92,2.88,1.6,1.92 +L 1.6,1.92,1.6,0.96 +L 1.6,0.96,1.92,0 +L 2.24,3.2,1.92,2.24 +L 1.92,2.24,1.92,1.28 +L 1.92,1.28,2.24,0.32 +L 3.2,4.48,2.56,3.52 +L 2.56,3.52,2.24,2.56 +L 2.24,2.56,2.24,1.6 +L 2.24,1.6,2.56,0.64 +L 2.56,0.64,1.92,0 + +[8] 39 +L 0.64,5.76,0.64,3.84 +L 0.96,5.44,0.96,4.16 +L 1.28,5.76,1.28,3.84 +L 0.64,5.76,1.28,5.76 +L 1.28,5.76,2.88,6.08 +L 2.88,6.08,3.52,6.4 +L 3.52,6.4,3.84,6.72 +L 2.88,6.08,3.2,6.08 +L 3.2,6.08,3.84,5.76 +L 3.84,5.76,3.84,3.84 +L 3.52,6.4,4.16,6.08 +L 4.16,6.08,4.16,4.16 +L 3.84,6.72,4.16,6.4 +L 4.16,6.4,4.8,6.08 +L 4.8,6.08,5.12,6.08 +L 5.12,6.08,4.48,5.76 +L 4.48,5.76,4.48,3.84 +L 0.64,3.84,1.28,3.84 +L 1.28,3.84,3.84,2.88 +L 3.84,2.88,4.48,2.88 +L 4.48,3.84,3.84,3.84 +L 3.84,3.84,1.28,2.88 +L 1.28,2.88,0.64,2.88 +L 0.64,2.88,0.64,0.96 +L 0.64,0.96,0,0.64 +L 0.96,2.56,0.96,0.96 +L 0.96,0.96,1.92,0.32 +L 1.28,2.88,1.28,0.96 +L 1.28,0.96,1.92,0.64 +L 1.92,0.64,2.24,0.32 +L 3.84,2.88,3.84,0.64 +L 4.16,2.56,4.16,0.96 +L 4.48,2.88,4.48,0.64 +L 0,0.64,0.64,0.64 +L 0.64,0.64,1.28,0.32 +L 1.28,0.32,1.6,0 +L 1.6,0,2.24,0.32 +L 2.24,0.32,3.84,0.64 +L 3.84,0.64,4.48,0.64 + +[9] 38 +L 0.64,6.08,0.64,3.2 +L 0.64,3.2,0,2.88 +L 0.96,5.76,0.96,2.88 +L 0.96,2.88,1.6,2.56 +L 1.28,6.08,1.28,3.2 +L 1.28,3.2,1.92,2.88 +L 1.92,2.88,2.24,2.88 +L 0.64,6.08,1.28,6.08 +L 1.28,6.08,2.88,6.4 +L 2.88,6.4,3.52,6.72 +L 2.88,6.4,3.2,6.08 +L 3.2,6.08,3.84,5.76 +L 3.84,5.76,3.84,0.64 +L 3.2,6.4,4.16,5.76 +L 4.16,5.76,4.16,0.96 +L 3.52,6.72,3.84,6.4 +L 3.84,6.4,4.48,6.08 +L 4.48,6.08,5.12,6.08 +L 5.12,6.08,4.48,5.76 +L 4.48,5.76,4.48,0.64 +L 0,2.88,0.32,2.88 +L 0.32,2.88,0.96,2.56 +L 0.96,2.56,1.28,2.24 +L 1.28,2.24,1.6,2.56 +L 1.6,2.56,2.24,2.88 +L 2.24,2.88,3.52,3.2 +L 3.52,3.2,3.84,3.2 +L 0.32,0.64,0.96,0.96 +L 0.96,0.96,1.6,0.96 +L 1.6,0.96,2.24,0.64 +L 2.24,0.64,2.56,0.32 +L 1.6,0.64,2.24,0.32 +L 0.32,0.64,0.96,0.64 +L 0.96,0.64,1.6,0.32 +L 1.6,0.32,1.92,0 +L 1.92,0,2.56,0.32 +L 2.56,0.32,3.84,0.64 +L 3.84,0.64,4.48,0.64 + +[:] 14 +L 0.64,4.48,0,3.84 +L 0,3.84,0.64,3.52 +L 0.64,3.52,1.28,3.84 +L 1.28,3.84,0.64,4.48 +L 0.64,4.16,0.32,3.84 +L 0.32,3.84,0.96,3.84 +L 0.96,3.84,0.64,4.16 +L 0.64,0.96,0,0.32 +L 0,0.32,0.64,0 +L 0.64,0,1.28,0.32 +L 1.28,0.32,0.64,0.96 +L 0.64,0.64,0.32,0.32 +L 0.32,0.32,0.96,0.32 +L 0.96,0.32,0.64,0.64 + +[;] 17 +L 0.64,4.48,0,3.84 +L 0,3.84,0.64,3.52 +L 0.64,3.52,1.28,3.84 +L 1.28,3.84,0.64,4.48 +L 0.64,4.16,0.32,3.84 +L 0.32,3.84,0.96,3.84 +L 0.96,3.84,0.64,4.16 +L 0.64,-0.96,0.64,-0.32 +L 0.64,-0.32,0,0.32 +L 0,0.32,0.64,0.96 +L 0.64,0.96,0.96,0.32 +L 0.96,0.32,0.96,-0.32 +L 0.96,-0.32,0.64,-0.96 +L 0.64,-0.96,0,-1.28 +L 0.64,0.64,0.32,0.32 +L 0.32,0.32,0.64,0 +L 0.64,0,0.64,0.64 + +[<] 2 +L 5.12,5.76,0,2.88 +L 0,2.88,5.12,0 + +[=] 8 +L 0,4.48,5.44,4.48 +L 5.44,4.48,5.44,4.16 +L 0,4.48,0,4.16 +L 0,4.16,5.44,4.16 +L 0,1.92,5.44,1.92 +L 5.44,1.92,5.44,1.6 +L 0,1.92,0,1.6 +L 0,1.6,5.44,1.6 + +[>] 2 +L 0,5.76,5.12,2.88 +L 5.12,2.88,0,0 + +[?] 35 +L 0,5.44,0.32,6.08 +L 0.32,6.08,0.64,6.4 +L 0.64,6.4,1.6,6.72 +L 1.6,6.72,2.24,6.72 +L 2.24,6.72,3.2,6.4 +L 3.2,6.4,3.52,6.08 +L 3.52,6.08,3.84,5.44 +L 3.84,5.44,3.84,4.8 +L 3.84,4.8,3.52,4.16 +L 3.52,4.16,2.88,3.52 +L 2.88,3.52,2.24,3.2 +L 0.32,5.44,0.64,6.08 +L 3.2,6.08,3.52,5.76 +L 3.52,5.76,3.52,4.48 +L 3.52,4.48,3.2,4.16 +L 0,5.44,0.64,5.12 +L 0.64,5.12,0.64,5.76 +L 0.64,5.76,0.96,6.4 +L 0.96,6.4,1.6,6.72 +L 2.24,6.72,2.88,6.4 +L 2.88,6.4,3.2,5.76 +L 3.2,5.76,3.2,4.48 +L 3.2,4.48,2.88,3.84 +L 2.88,3.84,2.24,3.2 +L 1.92,3.2,1.92,2.24 +L 1.92,2.24,2.24,3.2 +L 2.24,3.2,1.6,3.2 +L 1.6,3.2,1.92,2.24 +L 1.92,0.96,1.28,0.32 +L 1.28,0.32,1.92,0 +L 1.92,0,2.56,0.32 +L 2.56,0.32,1.92,0.96 +L 1.92,0.64,1.6,0.32 +L 1.6,0.32,2.24,0.32 +L 2.24,0.32,1.92,0.64 + +[@] 48 +L 4.8,4.16,4.48,4.8 +L 4.48,4.8,3.84,5.12 +L 3.84,5.12,2.88,5.12 +L 2.88,5.12,2.24,4.8 +L 2.24,4.8,1.92,4.48 +L 1.92,4.48,1.6,3.52 +L 1.6,3.52,1.6,2.56 +L 1.6,2.56,1.92,1.92 +L 1.92,1.92,2.56,1.6 +L 2.56,1.6,3.52,1.6 +L 3.52,1.6,4.16,1.92 +L 4.16,1.92,4.48,2.56 +L 2.88,5.12,2.24,4.48 +L 2.24,4.48,1.92,3.52 +L 1.92,3.52,1.92,2.56 +L 1.92,2.56,2.24,1.92 +L 2.24,1.92,2.56,1.6 +L 4.8,5.12,4.48,2.56 +L 4.48,2.56,4.48,1.92 +L 4.48,1.92,5.12,1.6 +L 5.12,1.6,5.76,1.6 +L 5.76,1.6,6.4,2.24 +L 6.4,2.24,6.72,3.2 +L 6.72,3.2,6.72,3.84 +L 6.72,3.84,6.4,4.8 +L 6.4,4.8,6.08,5.44 +L 6.08,5.44,5.44,6.08 +L 5.44,6.08,4.8,6.4 +L 4.8,6.4,3.84,6.72 +L 3.84,6.72,2.88,6.72 +L 2.88,6.72,1.92,6.4 +L 1.92,6.4,1.28,6.08 +L 1.28,6.08,0.64,5.44 +L 0.64,5.44,0.32,4.8 +L 0.32,4.8,0,3.84 +L 0,3.84,0,2.88 +L 0,2.88,0.32,1.92 +L 0.32,1.92,0.64,1.28 +L 0.64,1.28,1.28,0.64 +L 1.28,0.64,1.92,0.32 +L 1.92,0.32,2.88,0 +L 2.88,0,3.84,0 +L 3.84,0,4.8,0.32 +L 4.8,0.32,5.44,0.64 +L 5.44,0.64,5.76,0.96 +L 5.12,5.12,4.8,2.56 +L 4.8,2.56,4.8,1.92 +L 4.8,1.92,5.12,1.6 + +[A] 38 +L 1.6,5.76,2.24,6.4 +L 2.24,6.4,2.88,6.72 +L 2.88,6.72,3.52,6.72 +L 3.52,6.72,3.84,6.4 +L 3.84,6.4,6.08,1.28 +L 6.08,1.28,6.4,0.96 +L 6.4,0.96,7.04,0.96 +L 3.2,6.4,3.52,6.08 +L 3.52,6.08,5.76,0.96 +L 5.76,0.96,6.08,0.32 +L 6.08,0.32,6.4,0.64 +L 6.4,0.64,5.76,0.96 +L 2.24,6.4,2.88,6.4 +L 2.88,6.4,3.2,6.08 +L 3.2,6.08,5.44,0.96 +L 5.44,0.96,5.76,0.32 +L 5.76,0.32,6.08,0 +L 6.08,0,6.4,0 +L 6.4,0,7.04,0.96 +L 1.6,4.48,1.92,4.8 +L 1.92,4.8,2.56,5.12 +L 2.56,5.12,2.88,5.12 +L 2.88,5.12,3.2,4.8 +L 2.88,4.8,2.88,4.48 +L 1.92,4.8,2.56,4.8 +L 2.56,4.8,2.88,4.16 +L 0,0,0.64,0.64 +L 0.64,0.64,1.28,0.96 +L 1.28,0.96,2.24,0.96 +L 2.24,0.96,2.88,0.64 +L 0.96,0.64,2.24,0.64 +L 2.24,0.64,2.56,0.32 +L 0,0,0.96,0.32 +L 0.96,0.32,1.92,0.32 +L 1.92,0.32,2.24,0 +L 2.24,0,2.88,0.64 +L 3.52,5.44,1.6,0.96 +L 2.24,2.56,4.8,2.56 + +[B] 66 +L 0,6.08,0.64,6.72 +L 0.64,6.72,1.6,6.72 +L 1.6,6.72,2.24,6.4 +L 2.24,6.4,2.88,6.72 +L 0.96,6.4,1.92,6.4 +L 0,6.08,0.64,6.4 +L 0.64,6.4,1.28,6.08 +L 1.28,6.08,2.24,6.08 +L 2.24,6.08,2.88,6.72 +L 1.6,5.12,1.28,4.8 +L 1.28,4.8,0.96,4.16 +L 0.96,4.16,0.96,3.84 +L 0.96,3.84,0.32,3.84 +L 0.32,3.84,0,3.52 +L 0,3.52,0,2.88 +L 0,2.88,0.32,3.2 +L 0.32,3.2,0.96,3.2 +L 0.96,3.2,0.96,1.28 +L 1.28,4.48,1.28,1.92 +L 0.32,3.52,1.28,3.52 +L 1.6,5.12,1.6,2.24 +L 1.6,2.24,1.28,1.6 +L 1.28,1.6,0.96,1.28 +L 3.2,5.76,2.88,5.44 +L 2.88,5.44,2.56,4.8 +L 2.56,4.8,2.56,1.92 +L 2.88,5.12,2.88,2.56 +L 3.2,5.76,3.2,2.88 +L 3.2,2.88,2.88,2.24 +L 2.88,2.24,2.56,1.92 +L 3.2,5.76,5.12,6.72 +L 5.12,6.72,5.76,6.4 +L 5.76,6.4,6.08,5.76 +L 6.08,5.76,6.08,5.12 +L 6.08,5.12,5.44,4.48 +L 5.44,4.48,4.16,3.84 +L 5.12,6.4,5.76,5.76 +L 5.76,5.76,5.76,5.12 +L 4.48,6.4,5.12,6.08 +L 5.12,6.08,5.44,5.76 +L 5.44,5.76,5.44,4.8 +L 5.44,4.8,4.8,4.16 +L 4.8,4.16,5.76,3.52 +L 5.76,3.52,6.08,2.88 +L 6.08,2.88,6.08,0.96 +L 5.44,3.52,5.76,2.88 +L 5.76,2.88,5.76,1.28 +L 4.8,4.16,5.12,3.84 +L 5.12,3.84,5.44,3.2 +L 5.44,3.2,5.44,0.96 +L 0.64,0,1.6,0.64 +L 1.6,0.64,2.56,0.96 +L 2.56,0.96,3.84,0.96 +L 3.84,0.96,4.8,0.64 +L 1.28,0.32,2.24,0.64 +L 2.24,0.64,3.84,0.64 +L 3.84,0.64,4.48,0.32 +L 0.64,0,1.92,0.32 +L 1.92,0.32,3.52,0.32 +L 3.52,0.32,4.16,0 +L 4.16,0,4.8,0.64 +L 4.8,0.64,5.44,0.96 +L 5.44,0.96,6.08,0.96 +L 4.16,3.84,4.16,0.96 +L 4.16,2.88,5.44,2.88 +L 4.16,1.92,5.44,1.92 + +[C] 49 +L 1.92,6.4,1.28,6.08 +L 1.28,6.08,0.64,5.44 +L 0.64,5.44,0.32,4.8 +L 0.32,4.8,0,3.84 +L 0,3.84,0,2.56 +L 0,2.56,0.32,1.6 +L 0.32,1.6,0.64,0.96 +L 0.64,0.96,1.6,0.32 +L 1.6,0.32,2.56,0 +L 2.56,0,3.52,0 +L 3.52,0,4.48,0.32 +L 4.48,0.32,5.12,0.64 +L 5.12,0.64,5.76,1.28 +L 5.76,1.28,6.08,1.92 +L 0.64,5.12,0.32,4.16 +L 0.32,4.16,0.32,2.56 +L 0.32,2.56,0.96,1.28 +L 0.96,1.28,1.92,0.64 +L 1.92,0.64,2.88,0.32 +L 2.88,0.32,3.84,0.32 +L 3.84,0.32,4.8,0.64 +L 1.92,6.4,1.28,5.76 +L 1.28,5.76,0.96,5.12 +L 0.96,5.12,0.64,4.16 +L 0.64,4.16,0.64,2.88 +L 0.64,2.88,0.96,1.92 +L 0.96,1.92,1.92,0.96 +L 1.92,0.96,2.88,0.64 +L 2.88,0.64,3.84,0.64 +L 3.84,0.64,4.8,0.96 +L 4.8,0.96,5.44,1.28 +L 5.44,1.28,6.08,1.92 +L 2.56,5.44,2.56,1.6 +L 2.88,5.44,2.88,2.24 +L 3.2,5.76,3.2,2.56 +L 3.2,2.56,2.88,1.92 +L 2.88,1.92,2.56,1.6 +L 2.56,5.44,3.2,5.76 +L 3.2,5.76,4.16,6.72 +L 4.16,6.72,4.8,6.4 +L 4.8,6.4,5.44,6.4 +L 5.44,6.4,5.76,6.72 +L 3.84,6.4,4.48,6.08 +L 4.48,6.08,5.12,6.08 +L 3.52,6.08,4.16,5.76 +L 4.16,5.76,4.8,5.76 +L 4.8,5.76,5.44,6.08 +L 5.44,6.08,5.76,6.72 +L 4.8,5.76,4.8,0.96 + +[D] 46 +L 0,6.72,4.48,6.72 +L 4.48,6.72,5.12,6.4 +L 5.12,6.4,5.44,5.76 +L 5.44,5.76,5.44,0.96 +L 0.64,6.4,4.48,6.4 +L 4.48,6.4,5.12,5.76 +L 5.12,5.76,5.12,1.28 +L 0,6.72,0.32,6.4 +L 0.32,6.4,0.96,6.08 +L 0.96,6.08,4.48,6.08 +L 4.48,6.08,4.8,5.76 +L 4.8,5.76,4.8,0.96 +L 1.92,5.12,1.6,4.8 +L 1.6,4.8,1.28,4.16 +L 1.28,4.16,1.28,3.84 +L 1.28,3.84,0.64,3.84 +L 0.64,3.84,0.32,3.52 +L 0.32,3.52,0.32,2.88 +L 0.32,2.88,0.64,3.2 +L 0.64,3.2,1.28,3.2 +L 1.28,3.2,1.28,1.6 +L 1.6,4.48,1.6,2.24 +L 0.64,3.52,1.6,3.52 +L 1.92,5.12,1.92,2.56 +L 1.92,2.56,1.6,1.92 +L 1.6,1.92,1.28,1.6 +L 0,0,0.96,0.64 +L 0.96,0.64,1.92,0.96 +L 1.92,0.96,3.2,0.96 +L 3.2,0.96,4.16,0.64 +L 0.64,0.32,1.6,0.64 +L 1.6,0.64,3.2,0.64 +L 3.2,0.64,3.84,0.32 +L 0,0,1.28,0.32 +L 1.28,0.32,2.88,0.32 +L 2.88,0.32,3.52,0 +L 3.52,0,4.16,0.64 +L 4.16,0.64,4.8,0.96 +L 4.8,0.96,5.44,0.96 +L 2.88,6.08,2.88,0.96 +L 2.88,4.48,3.52,4.16 +L 3.52,4.16,4.16,4.16 +L 4.16,4.16,4.8,4.48 +L 2.88,2.56,3.52,2.88 +L 3.52,2.88,4.16,2.88 +L 4.16,2.88,4.8,2.56 + +[E] 60 +L 0,6.08,0.64,6.72 +L 0.64,6.72,1.28,6.72 +L 1.28,6.72,1.92,6.4 +L 1.92,6.4,2.56,6.72 +L 0.96,6.4,1.6,6.4 +L 0,6.08,0.64,6.4 +L 0.64,6.4,1.28,6.08 +L 1.28,6.08,1.92,6.08 +L 1.92,6.08,2.56,6.72 +L 1.6,5.12,1.28,4.8 +L 1.28,4.8,0.96,4.16 +L 0.96,4.16,0.96,3.84 +L 0.96,3.84,0.32,3.84 +L 0.32,3.84,0,3.52 +L 0,3.52,0,2.88 +L 0,2.88,0.32,3.2 +L 0.32,3.2,0.96,3.2 +L 0.96,3.2,0.96,1.28 +L 1.28,4.48,1.28,1.92 +L 0.32,3.52,1.28,3.52 +L 1.6,5.12,1.6,2.24 +L 1.6,2.24,1.28,1.6 +L 1.28,1.6,0.96,1.28 +L 2.56,4.48,2.88,5.44 +L 2.88,5.44,3.2,6.08 +L 3.2,6.08,3.52,6.4 +L 3.52,6.4,4.16,6.72 +L 4.16,6.72,4.8,6.72 +L 4.8,6.72,5.76,6.4 +L 3.52,6.08,4.16,6.4 +L 4.16,6.4,4.8,6.4 +L 4.8,6.4,5.44,6.08 +L 2.88,5.44,3.2,5.76 +L 3.2,5.76,3.84,6.08 +L 3.84,6.08,4.48,6.08 +L 4.48,6.08,5.12,5.76 +L 5.12,5.76,5.76,6.4 +L 2.56,1.92,2.88,2.88 +L 2.88,2.88,3.2,3.52 +L 3.2,3.52,3.52,3.84 +L 3.52,3.84,4.16,3.84 +L 4.16,3.84,4.8,3.52 +L 3.52,3.52,4.16,3.52 +L 4.16,3.52,4.48,3.2 +L 2.88,2.88,3.2,3.2 +L 3.2,3.2,3.84,3.2 +L 3.84,3.2,4.16,2.88 +L 4.16,2.88,4.8,3.52 +L 0.64,0,1.6,0.64 +L 1.6,0.64,2.88,0.96 +L 2.88,0.96,4.48,0.96 +L 4.48,0.96,5.76,0.64 +L 1.28,0.32,2.24,0.64 +L 2.24,0.64,4.48,0.64 +L 4.48,0.64,5.44,0.32 +L 0.64,0,1.92,0.32 +L 1.92,0.32,4.16,0.32 +L 4.16,0.32,5.12,0 +L 5.12,0,5.76,0.64 +L 2.56,4.48,2.56,0.96 + +[F] 57 +L 0.96,6.08,1.6,6.72 +L 1.6,6.72,2.56,6.72 +L 2.56,6.72,3.2,6.4 +L 3.2,6.4,3.84,6.72 +L 1.92,6.4,2.88,6.4 +L 0.96,6.08,1.6,6.4 +L 1.6,6.4,2.24,6.08 +L 2.24,6.08,3.2,6.08 +L 3.2,6.08,3.84,6.72 +L 2.88,5.12,2.56,4.8 +L 2.56,4.8,2.24,4.16 +L 2.24,4.16,2.24,3.84 +L 2.24,3.84,1.6,3.84 +L 1.6,3.84,1.28,3.52 +L 1.28,3.52,1.28,2.88 +L 1.28,2.88,1.6,3.2 +L 1.6,3.2,2.24,3.2 +L 2.24,3.2,2.24,1.6 +L 2.56,4.48,2.56,2.24 +L 1.6,3.52,2.56,3.52 +L 2.88,5.12,2.88,2.56 +L 2.88,2.56,2.56,1.92 +L 2.56,1.92,2.24,1.6 +L 3.84,5.44,3.84,0.64 +L 3.84,0.64,3.52,0.32 +L 3.52,0.32,3.2,0.32 +L 3.2,0.32,1.92,0.96 +L 1.92,0.96,1.28,0.96 +L 1.28,0.96,0.64,0.64 +L 0.64,0.64,0,0 +L 4.16,5.44,4.16,0.96 +L 4.16,3.52,5.44,3.52 +L 2.88,0.32,2.56,0.32 +L 2.56,0.32,1.92,0.64 +L 1.92,0.64,0.96,0.64 +L 4.48,5.76,4.48,3.84 +L 4.48,3.84,5.44,3.84 +L 5.44,3.2,4.48,3.2 +L 4.48,3.2,4.48,1.28 +L 4.48,1.28,4.16,0.64 +L 4.16,0.64,2.88,0 +L 2.88,0,2.24,0 +L 2.24,0,1.6,0.32 +L 1.6,0.32,0.96,0.32 +L 0.96,0.32,0,0 +L 3.84,5.44,4.48,5.76 +L 4.48,5.76,5.44,6.72 +L 5.44,6.72,6.08,6.4 +L 6.08,6.4,6.72,6.4 +L 6.72,6.4,7.04,6.72 +L 5.12,6.4,5.76,6.08 +L 5.76,6.08,6.4,6.08 +L 4.8,6.08,5.44,5.76 +L 5.44,5.76,6.08,5.76 +L 6.08,5.76,6.72,6.08 +L 6.72,6.08,7.04,6.72 +L 5.44,5.76,5.44,1.28 + +[G] 59 +L 1.92,6.4,1.28,6.08 +L 1.28,6.08,0.64,5.44 +L 0.64,5.44,0.32,4.8 +L 0.32,4.8,0,3.84 +L 0,3.84,0,2.88 +L 0,2.88,0.32,1.92 +L 0.32,1.92,0.64,1.28 +L 0.64,1.28,1.28,0.64 +L 1.28,0.64,1.92,0.32 +L 1.92,0.32,2.88,0 +L 2.88,0,4.16,0 +L 4.16,0,5.12,0.32 +L 5.12,0.32,5.76,0.96 +L 5.76,0.96,6.08,1.6 +L 6.08,1.6,6.08,2.56 +L 6.08,2.56,5.76,3.2 +L 5.76,3.2,5.44,3.52 +L 5.44,3.52,4.8,3.84 +L 4.8,3.84,4.16,3.84 +L 0.64,5.12,0.32,4.16 +L 0.32,4.16,0.32,2.56 +L 0.32,2.56,0.64,1.6 +L 1.92,6.4,1.28,5.76 +L 1.28,5.76,0.96,5.12 +L 0.96,5.12,0.64,4.16 +L 0.64,4.16,0.64,2.56 +L 0.64,2.56,0.96,1.6 +L 0.96,1.6,1.28,0.96 +L 1.28,0.96,1.92,0.32 +L 5.44,0.96,5.76,1.28 +L 5.76,1.28,5.76,2.56 +L 5.76,2.56,5.44,3.2 +L 4.16,0,4.8,0.32 +L 4.8,0.32,5.12,0.64 +L 5.12,0.64,5.44,1.28 +L 5.44,1.28,5.44,2.56 +L 5.44,2.56,5.12,3.2 +L 5.12,3.2,4.8,3.52 +L 4.8,3.52,4.16,3.84 +L 2.56,5.44,2.56,1.28 +L 2.88,5.44,2.88,1.92 +L 3.2,5.76,3.2,2.24 +L 3.2,2.24,2.88,1.6 +L 2.88,1.6,2.56,1.28 +L 2.56,5.44,3.2,5.76 +L 3.2,5.76,4.16,6.72 +L 4.16,6.72,4.8,6.4 +L 4.8,6.4,5.44,6.4 +L 5.44,6.4,5.76,6.72 +L 3.84,6.4,4.48,6.08 +L 4.48,6.08,5.12,6.08 +L 3.52,6.08,4.16,5.76 +L 4.16,5.76,4.8,5.76 +L 4.8,5.76,5.44,6.08 +L 5.44,6.08,5.76,6.72 +L 5.44,6.08,4.16,3.84 +L 4.16,3.84,4.16,0 +L 4.16,2.56,5.44,2.56 +L 4.16,1.6,5.44,1.6 + +[H] 68 +L 0,6.08,0.64,6.72 +L 0.64,6.72,1.6,6.72 +L 1.6,6.72,2.24,6.4 +L 2.24,6.4,2.88,6.72 +L 0.96,6.4,1.92,6.4 +L 0,6.08,0.64,6.4 +L 0.64,6.4,1.28,6.08 +L 1.28,6.08,2.24,6.08 +L 2.24,6.08,2.88,6.72 +L 1.6,5.12,1.28,4.8 +L 1.28,4.8,0.96,4.16 +L 0.96,4.16,0.96,3.84 +L 0.96,3.84,0.32,3.84 +L 0.32,3.84,0,3.52 +L 0,3.52,0,2.88 +L 0,2.88,0.32,3.2 +L 0.32,3.2,0.96,3.2 +L 0.96,3.2,0.96,1.28 +L 1.28,4.48,1.28,1.92 +L 0.32,3.52,1.28,3.52 +L 1.6,5.12,1.6,2.24 +L 1.6,2.24,1.28,1.6 +L 1.28,1.6,0.96,1.28 +L 0.64,0,1.6,0.64 +L 1.6,0.64,2.56,0.96 +L 2.56,0.96,3.52,0.96 +L 3.52,0.96,4.16,0.64 +L 1.28,0.32,2.24,0.64 +L 2.24,0.64,3.2,0.64 +L 3.2,0.64,3.84,0.32 +L 0.64,0,1.92,0.32 +L 1.92,0.32,2.88,0.32 +L 2.88,0.32,3.52,0 +L 3.52,0,4.16,0.64 +L 3.2,5.76,2.88,5.44 +L 2.88,5.44,2.56,4.8 +L 2.56,4.8,2.56,1.92 +L 2.88,5.12,2.88,2.56 +L 3.2,5.76,3.2,2.88 +L 3.2,2.88,2.88,2.24 +L 2.88,2.24,2.56,1.92 +L 3.2,5.76,3.84,6.4 +L 3.84,6.4,4.48,6.72 +L 4.48,6.72,5.12,6.72 +L 5.12,6.72,5.76,6.4 +L 4.8,6.4,5.12,6.4 +L 5.12,6.4,5.44,6.08 +L 3.84,6.4,4.48,6.4 +L 4.48,6.4,5.12,5.76 +L 5.12,5.76,5.76,6.4 +L 4.16,3.84,4.8,4.16 +L 4.8,4.16,5.44,4.8 +L 5.44,4.8,5.76,4.48 +L 5.76,4.48,6.08,3.52 +L 6.08,3.52,6.08,2.24 +L 6.08,2.24,5.76,0.96 +L 5.76,0.96,5.12,0 +L 5.12,4.48,5.44,4.16 +L 5.44,4.16,5.76,3.52 +L 5.76,3.52,5.76,1.92 +L 5.76,1.92,5.44,0.96 +L 4.8,4.16,5.12,4.16 +L 5.12,4.16,5.44,3.52 +L 5.44,3.52,5.44,1.92 +L 5.44,1.92,5.12,0 +L 4.16,3.84,4.16,0.64 +L 4.16,2.88,5.44,2.88 +L 4.16,1.92,5.44,1.92 + +[I] 45 +L 0.96,6.08,1.6,6.72 +L 1.6,6.72,2.56,6.72 +L 2.56,6.72,3.52,6.4 +L 3.52,6.4,4.16,6.72 +L 1.92,6.4,3.2,6.4 +L 0.96,6.08,1.6,6.4 +L 1.6,6.4,2.56,6.08 +L 2.56,6.08,3.52,6.08 +L 3.52,6.08,4.16,6.72 +L 3.2,5.12,2.88,4.8 +L 2.88,4.8,2.56,4.16 +L 2.56,4.16,2.56,3.84 +L 2.56,3.84,1.92,3.84 +L 1.92,3.84,1.6,3.52 +L 1.6,3.52,1.6,2.88 +L 1.6,2.88,1.92,3.2 +L 1.92,3.2,2.56,3.2 +L 2.56,3.2,2.56,1.6 +L 2.88,4.48,2.88,2.24 +L 1.92,3.52,2.88,3.52 +L 3.2,5.12,3.2,2.56 +L 3.2,2.56,2.88,1.92 +L 2.88,1.92,2.56,1.6 +L 5.12,6.08,4.48,5.44 +L 4.48,5.44,4.16,4.48 +L 4.16,4.48,4.16,0.96 +L 4.16,0.96,3.84,0.32 +L 3.84,0.32,3.2,0.32 +L 3.2,0.32,1.92,0.96 +L 1.92,0.96,1.28,0.96 +L 1.28,0.96,0.64,0.64 +L 0.64,0.64,0,0 +L 4.48,5.12,4.48,1.28 +L 2.88,0.32,2.56,0.32 +L 2.56,0.32,1.92,0.64 +L 1.92,0.64,0.96,0.64 +L 5.12,6.08,4.8,5.44 +L 4.8,5.44,4.8,1.6 +L 4.8,1.6,4.48,0.96 +L 4.48,0.96,3.84,0.32 +L 3.84,0.32,3.2,0 +L 3.2,0,2.24,0 +L 2.24,0,1.6,0.32 +L 1.6,0.32,0.64,0.32 +L 0.64,0.32,0,0 + +[J] 43 +L 0.64,6.08,1.28,6.72 +L 1.28,6.72,2.24,6.72 +L 2.24,6.72,3.2,6.4 +L 3.2,6.4,3.84,6.72 +L 1.6,6.4,2.88,6.4 +L 0.64,6.08,1.28,6.4 +L 1.28,6.4,2.24,6.08 +L 2.24,6.08,3.2,6.08 +L 3.2,6.08,3.84,6.72 +L 2.88,5.12,2.56,4.8 +L 2.56,4.8,2.24,4.16 +L 2.24,4.16,2.24,3.84 +L 2.24,3.84,1.6,3.84 +L 1.6,3.84,1.28,3.52 +L 1.28,3.52,1.28,2.88 +L 1.28,2.88,1.6,3.2 +L 1.6,3.2,2.24,3.2 +L 2.24,3.2,2.24,1.6 +L 2.56,4.48,2.56,2.24 +L 1.6,3.52,2.56,3.52 +L 2.88,5.12,2.88,2.56 +L 2.88,2.56,2.56,1.92 +L 2.56,1.92,2.24,1.6 +L 4.8,6.08,4.16,5.44 +L 4.16,5.44,3.84,4.48 +L 3.84,4.48,3.84,0.96 +L 3.84,0.96,3.52,0.32 +L 4.16,5.12,4.16,1.28 +L 4.8,6.08,4.48,5.44 +L 4.48,5.44,4.48,1.6 +L 4.48,1.6,4.16,0.96 +L 4.16,0.96,3.52,0.32 +L 3.52,0.32,2.56,0 +L 2.56,0,1.6,0 +L 1.6,0,0.64,0.32 +L 0.64,0.32,0,0.96 +L 0,0.96,0,1.6 +L 0,1.6,0.32,1.92 +L 0.32,1.92,0.64,1.92 +L 0.64,1.92,0.96,1.6 +L 0.96,1.6,0.64,1.28 +L 0.64,1.28,0.32,1.28 +L 0,1.6,0.96,1.6 + +[K] 69 +L 0,6.08,0.64,6.72 +L 0.64,6.72,1.6,6.72 +L 1.6,6.72,2.24,6.4 +L 2.24,6.4,2.88,6.72 +L 0.96,6.4,1.92,6.4 +L 0,6.08,0.64,6.4 +L 0.64,6.4,1.28,6.08 +L 1.28,6.08,2.24,6.08 +L 2.24,6.08,2.88,6.72 +L 1.6,5.12,1.28,4.8 +L 1.28,4.8,0.96,4.16 +L 0.96,4.16,0.96,3.84 +L 0.96,3.84,0.32,3.84 +L 0.32,3.84,0,3.52 +L 0,3.52,0,2.88 +L 0,2.88,0.32,3.2 +L 0.32,3.2,0.96,3.2 +L 0.96,3.2,0.96,1.28 +L 1.28,4.48,1.28,1.92 +L 0.32,3.52,1.28,3.52 +L 1.6,5.12,1.6,2.24 +L 1.6,2.24,1.28,1.6 +L 1.28,1.6,0.96,1.28 +L 0.64,0,1.6,0.64 +L 1.6,0.64,2.56,0.96 +L 2.56,0.96,3.52,0.96 +L 3.52,0.96,4.16,0.64 +L 1.28,0.32,1.92,0.64 +L 1.92,0.64,3.2,0.64 +L 3.2,0.64,3.84,0.32 +L 0.64,0,1.92,0.32 +L 1.92,0.32,2.88,0.32 +L 2.88,0.32,3.52,0 +L 3.52,0,4.16,0.64 +L 3.2,5.76,2.88,5.44 +L 2.88,5.44,2.56,4.8 +L 2.56,4.8,2.56,1.92 +L 2.88,5.12,2.88,2.56 +L 3.2,5.76,3.2,2.88 +L 3.2,2.88,2.88,2.24 +L 2.88,2.24,2.56,1.92 +L 3.2,5.76,3.84,6.4 +L 3.84,6.4,4.48,6.72 +L 4.48,6.72,5.12,6.72 +L 5.12,6.72,5.76,6.4 +L 4.8,6.4,5.12,6.4 +L 5.12,6.4,5.44,6.08 +L 3.84,6.4,4.48,6.4 +L 4.48,6.4,5.12,5.76 +L 5.12,5.76,5.76,6.4 +L 4.16,3.84,5.12,4.8 +L 5.12,4.8,5.44,4.48 +L 5.44,4.48,6.08,4.16 +L 4.8,4.48,5.44,4.16 +L 5.44,4.16,6.08,4.16 +L 6.08,4.16,5.44,3.2 +L 5.44,3.2,4.8,2.56 +L 4.8,2.56,4.16,1.92 +L 4.8,2.56,5.44,2.24 +L 5.44,2.24,5.76,0.96 +L 5.76,0.96,6.08,0.32 +L 6.08,0.32,6.4,0.32 +L 5.44,1.6,5.76,0.32 +L 4.8,2.56,5.12,2.24 +L 5.12,2.24,5.44,0.32 +L 5.44,0.32,5.76,0 +L 5.76,0,6.08,0 +L 6.08,0,6.4,0.32 +L 4.16,3.84,4.16,0.64 + +[L] 51 +L 0,6.08,0.64,6.72 +L 0.64,6.72,1.6,6.72 +L 1.6,6.72,2.24,6.4 +L 2.24,6.4,2.88,6.72 +L 0.96,6.4,1.92,6.4 +L 0,6.08,0.64,6.4 +L 0.64,6.4,1.28,6.08 +L 1.28,6.08,2.24,6.08 +L 2.24,6.08,2.88,6.72 +L 1.6,5.12,1.28,4.8 +L 1.28,4.8,0.96,4.16 +L 0.96,4.16,0.96,3.84 +L 0.96,3.84,0.32,3.84 +L 0.32,3.84,0,3.52 +L 0,3.52,0,2.88 +L 0,2.88,0.32,3.2 +L 0.32,3.2,0.96,3.2 +L 0.96,3.2,0.96,1.28 +L 1.28,4.48,1.28,1.92 +L 0.32,3.52,1.28,3.52 +L 1.6,5.12,1.6,2.24 +L 1.6,2.24,1.28,1.6 +L 1.28,1.6,0.96,1.28 +L 0.64,0,1.6,0.64 +L 1.6,0.64,2.88,0.96 +L 2.88,0.96,4.48,0.96 +L 4.48,0.96,5.76,0.64 +L 1.28,0.32,2.24,0.64 +L 2.24,0.64,4.48,0.64 +L 4.48,0.64,5.44,0.32 +L 0.64,0,1.92,0.32 +L 1.92,0.32,4.16,0.32 +L 4.16,0.32,5.12,0 +L 5.12,0,5.76,0.64 +L 3.2,5.76,2.88,5.44 +L 2.88,5.44,2.56,4.8 +L 2.56,4.8,2.56,1.92 +L 2.88,5.12,2.88,2.56 +L 3.2,5.76,3.2,2.88 +L 3.2,2.88,2.88,2.24 +L 2.88,2.24,2.56,1.92 +L 3.2,5.76,3.84,6.4 +L 3.84,6.4,4.48,6.72 +L 4.48,6.72,5.12,6.72 +L 5.12,6.72,5.76,6.4 +L 4.8,6.4,5.12,6.4 +L 5.12,6.4,5.44,6.08 +L 3.84,6.4,4.48,6.4 +L 4.48,6.4,5.12,5.76 +L 5.12,5.76,5.76,6.4 +L 4.48,6.4,4.48,0.96 + +[M] 69 +L 2.24,5.44,1.92,5.12 +L 1.92,5.12,1.6,4.48 +L 1.6,4.48,1.6,3.84 +L 1.6,3.84,0.96,3.84 +L 0.96,3.84,0.64,3.52 +L 0.64,3.52,0.64,2.88 +L 0.64,2.88,0.96,3.2 +L 0.96,3.2,1.6,3.2 +L 1.6,3.2,1.6,1.92 +L 1.92,4.8,1.92,2.56 +L 0.96,3.52,1.92,3.52 +L 2.24,5.44,2.24,2.88 +L 2.24,2.88,1.92,2.24 +L 1.92,2.24,1.6,1.92 +L 0,0,0.64,0.64 +L 0.64,0.64,1.28,0.96 +L 1.28,0.96,1.92,0.96 +L 1.92,0.96,2.56,0.64 +L 2.56,0.64,2.88,0.64 +L 2.88,0.64,3.2,0.96 +L 0.96,0.64,1.92,0.64 +L 1.92,0.64,2.56,0.32 +L 0,0,0.64,0.32 +L 0.64,0.32,1.6,0.32 +L 1.6,0.32,2.24,0 +L 2.24,0,2.56,0 +L 2.56,0,2.88,0.32 +L 2.88,0.32,3.2,0.96 +L 2.24,5.44,3.52,6.72 +L 3.52,6.72,4.8,5.44 +L 4.8,5.44,4.8,1.28 +L 4.8,1.28,5.12,0.64 +L 5.12,0.64,5.44,0.64 +L 3.52,6.4,4.48,5.44 +L 4.48,5.44,4.48,0.96 +L 4.48,0.96,4.16,0.64 +L 4.16,0.64,4.48,0.32 +L 4.48,0.32,4.8,0.64 +L 4.8,0.64,4.48,0.96 +L 3.52,3.52,4.48,3.52 +L 2.88,6.08,3.2,6.08 +L 3.2,6.08,4.16,5.12 +L 4.16,5.12,4.16,3.84 +L 4.16,3.84,3.2,3.84 +L 3.2,3.2,4.16,3.2 +L 4.16,3.2,4.16,0.96 +L 4.16,0.96,3.84,0.64 +L 3.84,0.64,4.48,0 +L 4.48,0,5.44,0.64 +L 5.44,0.64,5.76,0.96 +L 4.8,5.44,6.08,6.72 +L 6.08,6.72,7.36,5.44 +L 7.36,5.44,7.36,1.28 +L 7.36,1.28,7.68,0.64 +L 7.68,0.64,8,0.64 +L 6.08,6.4,7.04,5.44 +L 7.04,5.44,7.04,0.96 +L 7.04,0.96,7.68,0.32 +L 6.08,3.52,7.04,3.52 +L 5.44,6.08,5.76,6.08 +L 5.76,6.08,6.72,5.12 +L 6.72,5.12,6.72,3.84 +L 6.72,3.84,5.76,3.84 +L 5.76,3.2,6.72,3.2 +L 6.72,3.2,6.72,0.64 +L 6.72,0.64,7.36,0 +L 7.36,0,8,0.64 +L 3.2,6.08,3.2,0.96 +L 5.76,6.08,5.76,0.96 + +[N] 54 +L 0,5.76,0.64,6.4 +L 0.64,6.4,1.28,6.72 +L 1.28,6.72,1.92,6.72 +L 1.92,6.72,2.56,6.4 +L 2.56,6.4,3.2,5.44 +L 3.2,5.44,4.8,1.92 +L 4.8,1.92,5.44,0.96 +L 5.44,0.96,5.76,0.64 +L 1.92,6.4,2.56,5.76 +L 2.56,5.76,2.88,5.12 +L 2.88,5.12,4.8,1.28 +L 4.8,1.28,5.76,0.32 +L 0.64,6.4,1.28,6.4 +L 1.28,6.4,1.92,6.08 +L 1.92,6.08,2.56,5.12 +L 2.56,5.12,4.16,1.6 +L 4.16,1.6,4.8,0.64 +L 4.8,0.64,5.12,0.32 +L 5.12,0.32,5.76,0 +L 4.8,6.08,5.44,5.76 +L 5.44,5.76,6.08,5.76 +L 6.08,5.76,6.72,6.08 +L 6.72,6.08,7.04,6.72 +L 5.12,6.4,5.76,6.08 +L 5.76,6.08,6.4,6.08 +L 4.8,6.08,5.44,6.72 +L 5.44,6.72,6.08,6.4 +L 6.08,6.4,6.72,6.4 +L 6.72,6.4,7.04,6.72 +L 1.28,3.84,0.64,3.84 +L 0.64,3.84,0.32,3.52 +L 0.32,3.52,0.32,2.88 +L 0.32,2.88,0.64,3.2 +L 0.64,3.2,1.28,3.2 +L 0.64,3.52,1.28,3.52 +L 0,0,0.64,0.64 +L 0.64,0.64,1.28,0.96 +L 1.28,0.96,2.24,0.96 +L 2.24,0.96,2.88,0.64 +L 0.96,0.64,1.92,0.64 +L 1.92,0.64,2.56,0.32 +L 0,0,0.96,0.32 +L 0.96,0.32,1.92,0.32 +L 1.92,0.32,2.24,0 +L 2.24,0,2.88,0.64 +L 1.28,6.4,1.28,0.96 +L 5.76,5.76,5.76,0 +L 3.52,4.8,3.84,4.48 +L 3.84,4.48,4.48,4.16 +L 4.48,4.16,5.12,4.16 +L 5.12,4.16,5.76,4.48 +L 1.28,2.24,1.92,2.56 +L 1.92,2.56,3.2,2.56 +L 3.2,2.56,3.84,2.24 + +[O] 57 +L 1.92,6.72,1.28,6.4 +L 1.28,6.4,0.64,5.76 +L 0.64,5.76,0.32,5.12 +L 0.32,5.12,0,4.16 +L 0,4.16,0,2.88 +L 0,2.88,0.32,1.92 +L 0.32,1.92,0.64,1.28 +L 0.64,1.28,1.28,0.64 +L 1.28,0.64,1.92,0.32 +L 1.92,0.32,2.88,0 +L 2.88,0,3.52,0 +L 3.52,0,4.48,0.32 +L 4.48,0.32,5.12,0.64 +L 5.12,0.64,5.76,1.28 +L 5.76,1.28,6.08,1.92 +L 6.08,1.92,6.4,2.88 +L 6.4,2.88,6.4,4.16 +L 6.4,4.16,6.08,5.12 +L 6.08,5.12,5.76,5.76 +L 5.76,5.76,5.12,6.4 +L 5.12,6.4,4.48,6.72 +L 4.48,6.72,4.16,6.4 +L 4.16,6.4,3.2,5.76 +L 3.2,5.76,2.24,5.44 +L 0.64,5.44,0.32,4.48 +L 0.32,4.48,0.32,2.56 +L 0.32,2.56,0.64,1.6 +L 1.92,6.72,1.28,6.08 +L 1.28,6.08,0.96,5.44 +L 0.96,5.44,0.64,4.48 +L 0.64,4.48,0.64,2.56 +L 0.64,2.56,0.96,1.6 +L 0.96,1.6,1.28,0.96 +L 1.28,0.96,1.92,0.32 +L 5.76,1.6,6.08,2.56 +L 6.08,2.56,6.08,4.48 +L 6.08,4.48,5.44,5.76 +L 5.44,5.76,5.12,6.08 +L 4.48,0.32,5.12,0.96 +L 5.12,0.96,5.44,1.6 +L 5.44,1.6,5.76,2.56 +L 5.76,2.56,5.76,4.48 +L 5.76,4.48,5.44,5.12 +L 5.44,5.12,4.8,6.08 +L 4.8,6.08,4.16,6.4 +L 2.24,5.44,2.24,1.28 +L 2.56,5.44,2.56,1.92 +L 2.88,5.44,2.88,2.24 +L 2.88,2.24,2.56,1.6 +L 2.56,1.6,2.24,1.28 +L 4.16,6.4,4.16,0.32 +L 4.16,4.48,4.8,4.16 +L 4.8,4.16,5.12,4.16 +L 5.12,4.16,5.76,4.48 +L 4.16,2.56,4.8,2.88 +L 4.8,2.88,5.12,2.88 +L 5.12,2.88,5.76,2.56 + +[P] 44 +L 0.32,6.72,0.64,6.4 +L 0.64,6.4,0.96,5.76 +L 0.96,5.76,0.96,3.84 +L 0.96,3.84,0.32,3.84 +L 0.32,3.84,0,3.52 +L 0,3.52,0,2.88 +L 0,2.88,0.32,3.2 +L 0.32,3.2,0.96,3.2 +L 0.96,3.2,0.96,0.64 +L 0.96,0.64,0,0 +L 0,0,0.96,0.32 +L 0.96,0.32,0.96,-2.24 +L 0.96,-2.24,1.6,-1.6 +L 0.96,6.08,1.28,5.44 +L 1.28,5.44,1.28,-1.6 +L 0.32,3.52,1.28,3.52 +L 0.32,6.72,0.96,6.4 +L 0.96,6.4,1.28,6.08 +L 1.28,6.08,1.6,5.44 +L 1.6,5.44,1.6,-1.6 +L 1.6,5.12,2.56,5.76 +L 2.56,5.76,3.84,6.72 +L 3.84,6.72,5.12,5.44 +L 5.12,5.44,5.12,0.96 +L 3.84,6.4,4.8,5.44 +L 4.8,5.44,4.8,0.96 +L 3.2,6.08,3.52,6.08 +L 3.52,6.08,4.48,5.12 +L 4.48,5.12,4.48,0.64 +L 2.56,0.96,3.52,0.96 +L 3.52,0.96,4.48,0.64 +L 2.88,0.64,3.52,0.64 +L 3.52,0.64,4.16,0.32 +L 2.56,0.32,3.2,0.32 +L 3.2,0.32,3.84,0 +L 3.84,0,4.48,0.64 +L 4.48,0.64,5.12,0.96 +L 2.56,5.76,2.56,-1.28 +L 2.56,4.48,3.2,4.16 +L 3.2,4.16,3.84,4.16 +L 3.84,4.16,4.48,4.48 +L 2.56,2.56,3.2,2.88 +L 3.2,2.88,3.84,2.88 +L 3.84,2.88,4.48,2.56 + +[Q] 71 +L 1.92,6.72,1.28,6.4 +L 1.28,6.4,0.64,5.76 +L 0.64,5.76,0.32,5.12 +L 0.32,5.12,0,4.16 +L 0,4.16,0,2.88 +L 0,2.88,0.32,1.92 +L 0.32,1.92,0.64,1.28 +L 0.64,1.28,1.28,0.64 +L 1.28,0.64,1.92,0.32 +L 1.92,0.32,2.56,0 +L 2.56,0,3.84,0 +L 3.84,0,4.48,0.32 +L 4.48,0.32,5.12,0.64 +L 5.12,0.64,5.76,1.28 +L 5.76,1.28,6.08,1.92 +L 6.08,1.92,6.4,2.88 +L 6.4,2.88,6.4,4.16 +L 6.4,4.16,6.08,5.12 +L 6.08,5.12,5.76,5.76 +L 5.76,5.76,5.12,6.4 +L 5.12,6.4,4.48,6.72 +L 4.48,6.72,4.16,6.4 +L 4.16,6.4,3.2,5.76 +L 3.2,5.76,2.24,5.44 +L 0.64,5.44,0.32,4.48 +L 0.32,4.48,0.32,2.56 +L 0.32,2.56,0.64,1.6 +L 1.92,6.72,1.28,6.08 +L 1.28,6.08,0.96,5.44 +L 0.96,5.44,0.64,4.48 +L 0.64,4.48,0.64,2.56 +L 0.64,2.56,0.96,1.6 +L 0.96,1.6,1.28,0.96 +L 1.28,0.96,1.92,0.32 +L 5.76,1.6,6.08,2.56 +L 6.08,2.56,6.08,4.48 +L 6.08,4.48,5.44,5.76 +L 5.44,5.76,5.12,6.08 +L 4.48,0.32,5.12,0.96 +L 5.12,0.96,5.44,1.6 +L 5.44,1.6,5.76,2.56 +L 5.76,2.56,5.76,4.48 +L 5.76,4.48,5.44,5.12 +L 5.44,5.12,4.8,6.08 +L 4.8,6.08,4.16,6.4 +L 2.24,5.44,2.24,1.28 +L 2.56,5.44,2.56,1.92 +L 2.88,5.44,2.88,2.24 +L 2.88,2.24,2.56,1.6 +L 2.56,1.6,2.24,1.28 +L 4.16,6.4,4.16,0.32 +L 4.16,4.48,4.8,4.16 +L 4.8,4.16,5.12,4.16 +L 5.12,4.16,5.76,4.48 +L 4.16,2.56,4.8,2.88 +L 4.8,2.88,5.12,2.88 +L 5.12,2.88,5.76,2.56 +L 2.56,0,2.88,0.32 +L 2.88,0.32,3.2,0.32 +L 3.2,0.32,3.84,0 +L 3.84,0,5.12,-1.6 +L 5.12,-1.6,5.76,-1.92 +L 5.76,-1.92,6.08,-1.92 +L 3.84,-0.32,4.48,-1.28 +L 4.48,-1.28,5.12,-1.92 +L 5.12,-1.92,5.44,-1.92 +L 3.2,0.32,3.52,0 +L 3.52,0,4.48,-1.92 +L 4.48,-1.92,5.12,-2.24 +L 5.12,-2.24,5.76,-2.24 +L 5.76,-2.24,6.08,-1.92 + +[R] 70 +L 0,6.08,0.64,6.72 +L 0.64,6.72,1.6,6.72 +L 1.6,6.72,2.24,6.4 +L 2.24,6.4,2.88,6.72 +L 0.96,6.4,1.92,6.4 +L 0,6.08,0.64,6.4 +L 0.64,6.4,1.28,6.08 +L 1.28,6.08,2.24,6.08 +L 2.24,6.08,2.88,6.72 +L 1.6,5.12,1.28,4.8 +L 1.28,4.8,0.96,4.16 +L 0.96,4.16,0.96,3.84 +L 0.96,3.84,0.32,3.84 +L 0.32,3.84,0,3.52 +L 0,3.52,0,2.88 +L 0,2.88,0.32,3.2 +L 0.32,3.2,0.96,3.2 +L 0.96,3.2,0.96,1.28 +L 1.28,4.48,1.28,1.92 +L 0.32,3.52,1.28,3.52 +L 1.6,5.12,1.6,2.24 +L 1.6,2.24,1.28,1.6 +L 1.28,1.6,0.96,1.28 +L 0.64,0,1.6,0.64 +L 1.6,0.64,2.56,0.96 +L 2.56,0.96,3.2,0.96 +L 3.2,0.96,4.16,0.64 +L 1.28,0.32,1.92,0.64 +L 1.92,0.64,3.2,0.64 +L 3.2,0.64,3.84,0.32 +L 0.64,0,1.92,0.32 +L 1.92,0.32,2.88,0.32 +L 2.88,0.32,3.52,0 +L 3.52,0,4.16,0.64 +L 3.2,5.76,2.88,5.44 +L 2.88,5.44,2.56,4.8 +L 2.56,4.8,2.56,1.92 +L 2.88,5.12,2.88,2.56 +L 3.2,5.76,3.2,2.88 +L 3.2,2.88,2.88,2.24 +L 2.88,2.24,2.56,1.92 +L 3.2,5.76,4.16,6.4 +L 4.16,6.4,4.8,6.72 +L 4.8,6.72,5.44,6.4 +L 5.44,6.4,5.76,5.76 +L 5.76,5.76,5.76,4.8 +L 5.76,4.8,5.44,4.16 +L 5.44,4.16,5.12,3.84 +L 5.12,3.84,3.84,3.2 +L 3.84,3.2,3.2,2.88 +L 4.8,6.4,5.12,6.4 +L 5.12,6.4,5.44,5.76 +L 5.44,5.76,5.44,4.48 +L 5.44,4.48,5.12,4.16 +L 4.16,6.4,4.8,6.08 +L 4.8,6.08,5.12,5.44 +L 5.12,5.44,5.12,4.48 +L 5.12,4.48,4.8,3.84 +L 4.8,3.84,3.84,3.2 +L 3.84,3.2,4.48,2.88 +L 4.48,2.88,4.8,2.56 +L 4.8,2.56,5.76,0.96 +L 5.76,0.96,6.08,0.64 +L 6.08,0.64,6.4,0.64 +L 4.8,2.24,5.44,0.96 +L 5.44,0.96,6.08,0.32 +L 3.84,3.2,4.48,2.56 +L 4.48,2.56,5.12,0.64 +L 5.12,0.64,5.76,0 +L 5.76,0,6.4,0.64 + +[S] 66 +L 3.84,5.76,3.52,6.08 +L 3.52,6.08,2.88,6.4 +L 2.88,6.4,1.92,6.72 +L 4.16,6.08,3.52,6.4 +L 4.48,6.4,3.2,6.72 +L 3.2,6.72,1.92,6.72 +L 1.92,6.72,0.96,6.4 +L 0.96,6.4,0.64,6.08 +L 0.64,6.08,0.32,5.44 +L 0.32,5.44,0.64,4.8 +L 0.64,4.8,0.96,4.48 +L 0.96,4.48,1.92,4.16 +L 1.92,4.16,4.48,4.16 +L 4.48,4.16,5.12,3.84 +L 5.12,3.84,5.44,3.52 +L 5.44,3.52,5.44,2.88 +L 5.44,2.88,5.12,1.92 +L 0.64,5.12,0.96,4.8 +L 0.96,4.8,1.92,4.48 +L 1.92,4.48,4.8,4.48 +L 4.8,4.48,5.44,4.16 +L 5.44,4.16,5.76,3.84 +L 5.76,3.84,5.76,3.2 +L 5.76,3.2,5.44,2.56 +L 0.64,6.08,0.64,5.44 +L 0.64,5.44,0.96,5.12 +L 0.96,5.12,1.92,4.8 +L 1.92,4.8,5.12,4.8 +L 5.12,4.8,5.76,4.48 +L 5.76,4.48,6.08,3.84 +L 6.08,3.84,6.08,3.2 +L 6.08,3.2,5.12,1.92 +L 5.12,1.92,3.84,0 +L 0,3.84,0.32,3.52 +L 0.32,3.52,0.96,3.2 +L 0.96,3.2,3.84,3.2 +L 3.84,3.2,4.16,2.88 +L 4.16,2.88,4.16,2.56 +L 4.16,2.56,3.84,1.92 +L 0.32,3.2,0.96,2.88 +L 0.96,2.88,3.52,2.88 +L 3.52,2.88,3.84,2.56 +L 0,3.84,0,3.52 +L 0,3.52,0.32,2.88 +L 0.32,2.88,0.96,2.56 +L 0.96,2.56,3.2,2.56 +L 3.2,2.56,3.84,2.24 +L 3.84,2.24,3.84,1.92 +L 0,0,0.96,0.64 +L 0.96,0.64,2.24,0.96 +L 2.24,0.96,3.2,0.96 +L 3.2,0.96,4.16,0.64 +L 0.64,0.32,1.6,0.64 +L 1.6,0.64,2.88,0.64 +L 2.88,0.64,3.84,0.32 +L 0,0,1.28,0.32 +L 1.28,0.32,2.88,0.32 +L 2.88,0.32,3.84,0 +L 4.48,6.4,3.84,5.76 +L 3.84,5.76,3.2,4.8 +L 2.88,4.16,2.24,3.2 +L 1.92,2.56,1.28,1.92 +L 1.28,1.92,0.64,1.6 +L 0.64,1.6,0.32,1.6 +L 0.32,1.6,0.32,1.92 +L 0.32,1.92,0.64,1.6 + +[T] 51 +L 0.64,5.44,0.32,4.8 +L 0.32,4.8,0,3.84 +L 0,3.84,0,2.56 +L 0,2.56,0.32,1.6 +L 0.32,1.6,0.96,0.64 +L 0.96,0.64,1.6,0.32 +L 1.6,0.32,2.56,0 +L 2.56,0,3.52,0 +L 3.52,0,4.48,0.32 +L 4.48,0.32,5.12,0.64 +L 5.12,0.64,5.76,1.28 +L 5.76,1.28,6.08,1.92 +L 0.32,2.56,0.64,1.6 +L 0.64,1.6,1.28,0.96 +L 1.28,0.96,1.92,0.64 +L 1.92,0.64,2.88,0.32 +L 2.88,0.32,3.84,0.32 +L 3.84,0.32,4.8,0.64 +L 0.64,5.44,0.32,4.48 +L 0.32,4.48,0.32,3.2 +L 0.32,3.2,0.64,2.24 +L 0.64,2.24,1.28,1.28 +L 1.28,1.28,1.92,0.96 +L 1.92,0.96,2.88,0.64 +L 2.88,0.64,3.84,0.64 +L 3.84,0.64,4.8,0.96 +L 4.8,0.96,5.44,1.28 +L 5.44,1.28,6.08,1.92 +L 0,5.76,0.32,6.4 +L 0.32,6.4,0.96,6.72 +L 0.96,6.72,2.24,6.72 +L 2.24,6.72,4.16,6.4 +L 4.16,6.4,5.44,6.4 +L 5.44,6.4,6.08,6.72 +L 2.56,6.4,3.84,6.08 +L 3.84,6.08,5.12,6.08 +L 0,5.76,0.32,6.08 +L 0.32,6.08,0.96,6.4 +L 0.96,6.4,1.92,6.4 +L 1.92,6.4,3.84,5.76 +L 3.84,5.76,4.8,5.76 +L 4.8,5.76,5.44,6.08 +L 5.44,6.08,6.08,6.72 +L 3.52,5.76,3.2,5.44 +L 3.2,5.44,2.56,5.12 +L 2.56,5.12,2.56,1.6 +L 2.88,5.12,2.88,2.24 +L 3.2,5.44,3.2,2.56 +L 3.2,2.56,2.88,1.92 +L 2.88,1.92,2.56,1.6 +L 4.8,5.76,4.8,0.96 + +[U] 59 +L 0,6.08,0.64,6.72 +L 0.64,6.72,1.28,6.72 +L 1.28,6.72,2.24,6.4 +L 2.24,6.4,2.88,6.72 +L 0.96,6.4,1.92,6.4 +L 0,6.08,0.64,6.4 +L 0.64,6.4,1.6,6.08 +L 1.6,6.08,2.24,6.08 +L 2.24,6.08,2.88,6.72 +L 0.96,5.44,0.64,4.8 +L 0.64,4.8,0.32,3.84 +L 0.32,3.84,0.32,2.56 +L 0.32,2.56,0.64,1.6 +L 0.64,1.6,0.96,0.96 +L 0.96,0.96,1.6,0.32 +L 1.6,0.32,2.56,0 +L 2.56,0,3.52,0 +L 3.52,0,4.48,0.32 +L 4.48,0.32,5.12,0.64 +L 5.12,0.64,5.76,0 +L 5.76,0,6.4,0.64 +L 0.64,2.56,0.96,1.6 +L 0.96,1.6,1.92,0.64 +L 1.92,0.64,2.88,0.32 +L 2.88,0.32,3.84,0.32 +L 0.96,5.44,0.64,4.16 +L 0.64,4.16,0.64,3.2 +L 0.64,3.2,0.96,2.24 +L 0.96,2.24,1.28,1.6 +L 1.28,1.6,1.92,0.96 +L 1.92,0.96,2.88,0.64 +L 2.88,0.64,4.16,0.64 +L 4.16,0.64,5.12,0.96 +L 4.16,5.76,2.88,5.44 +L 2.88,5.44,2.56,4.8 +L 2.56,4.8,2.56,1.6 +L 2.88,5.12,2.88,2.24 +L 3.2,5.44,3.2,2.56 +L 3.2,2.56,2.88,1.92 +L 2.88,1.92,2.56,1.6 +L 4.16,5.76,4.8,6.08 +L 4.8,6.08,5.44,6.72 +L 5.44,6.72,5.76,6.4 +L 5.76,6.4,6.4,6.08 +L 6.4,6.08,5.76,5.76 +L 5.76,5.76,5.76,1.28 +L 5.76,1.28,6.08,0.64 +L 6.08,0.64,6.4,0.64 +L 5.44,5.76,5.76,6.08 +L 5.76,6.08,5.44,6.4 +L 5.44,6.4,5.12,6.08 +L 5.12,6.08,5.44,5.76 +L 5.44,5.76,5.44,0.96 +L 5.44,0.96,6.08,0.32 +L 4.8,6.08,5.12,5.76 +L 5.12,5.76,5.12,0.96 +L 4.16,5.76,4.16,0.64 +L 4.16,4.16,5.12,4.16 +L 4.16,2.88,5.12,2.88 + +[V] 48 +L 0.32,6.72,0.64,6.4 +L 0.64,6.4,0.96,5.76 +L 0.96,5.76,0.96,3.84 +L 0.96,3.84,0.32,3.84 +L 0.32,3.84,0,3.52 +L 0,3.52,0,2.88 +L 0,2.88,0.32,3.2 +L 0.32,3.2,0.96,3.2 +L 0.96,3.2,0.96,0.96 +L 0.96,0.96,0.32,0.64 +L 0.96,6.08,1.28,5.44 +L 1.28,5.44,1.28,0.96 +L 0.32,3.52,1.28,3.52 +L 1.6,0.64,2.56,0.64 +L 2.56,0.64,3.2,0.32 +L 0.32,6.72,0.96,6.4 +L 0.96,6.4,1.28,6.08 +L 1.28,6.08,1.6,5.44 +L 1.6,5.44,1.6,0.96 +L 1.6,0.96,2.88,0.96 +L 2.88,0.96,3.84,0.64 +L 0.32,0.64,1.28,0.64 +L 1.28,0.64,2.24,0.32 +L 2.24,0.32,2.88,0 +L 2.88,0,3.84,0.64 +L 3.84,0.64,4.8,0.96 +L 4.8,0.96,5.44,0.96 +L 2.88,5.44,3.84,5.76 +L 3.84,5.76,4.48,6.08 +L 4.48,6.08,5.12,6.72 +L 5.12,6.72,5.44,6.4 +L 5.44,6.4,6.08,6.08 +L 6.08,6.08,5.44,5.76 +L 5.44,5.76,5.44,0.96 +L 5.12,5.76,5.44,6.08 +L 5.44,6.08,5.12,6.4 +L 5.12,6.4,4.8,6.08 +L 4.8,6.08,5.12,5.76 +L 5.12,5.76,5.12,1.28 +L 4.48,6.08,4.8,5.76 +L 4.8,5.76,4.8,0.96 +L 2.88,5.44,2.88,0.96 +L 2.88,4.48,3.52,4.16 +L 3.52,4.16,4.16,4.16 +L 4.16,4.16,4.8,4.48 +L 2.88,2.56,3.52,2.88 +L 3.52,2.88,4.16,2.88 +L 4.16,2.88,4.8,2.56 + +[W] 57 +L 0.32,6.72,0.64,6.4 +L 0.64,6.4,0.96,5.76 +L 0.96,5.76,0.96,3.84 +L 0.96,3.84,0.32,3.84 +L 0.32,3.84,0,3.52 +L 0,3.52,0,2.88 +L 0,2.88,0.32,3.2 +L 0.32,3.2,0.96,3.2 +L 0.96,3.2,0.96,0.96 +L 0.96,0.96,0.32,0.64 +L 0.96,6.08,1.28,5.44 +L 1.28,5.44,1.28,0.96 +L 0.32,3.52,1.28,3.52 +L 1.6,0.64,2.24,0.64 +L 2.24,0.64,2.88,0.32 +L 0.32,6.72,0.96,6.4 +L 0.96,6.4,1.28,6.08 +L 1.28,6.08,1.6,5.44 +L 1.6,5.44,1.6,0.96 +L 1.6,0.96,2.56,0.96 +L 2.56,0.96,3.2,0.64 +L 0.32,0.64,1.28,0.64 +L 1.28,0.64,2.24,0.32 +L 2.24,0.32,2.56,0 +L 2.56,0,3.2,0.64 +L 3.2,0.64,4.16,0.96 +L 4.16,0.96,4.8,0.64 +L 4.8,0.64,5.12,0 +L 5.12,0,5.76,0.64 +L 5.76,0.64,6.72,0.96 +L 2.56,6.08,3.52,6.72 +L 3.52,6.72,4.16,6.08 +L 4.16,6.08,4.16,0.96 +L 4.16,0.96,5.12,0.96 +L 5.12,0.96,5.76,0.64 +L 3.52,6.4,3.84,6.08 +L 3.84,6.08,3.84,0.96 +L 2.56,6.08,3.2,6.08 +L 3.2,6.08,3.52,5.76 +L 3.52,5.76,3.52,0.96 +L 3.52,0.96,3.2,0.64 +L 5.12,0.64,5.44,0.32 +L 5.12,6.08,6.08,6.72 +L 6.08,6.72,6.72,6.08 +L 6.72,6.08,6.72,0.96 +L 6.08,6.4,6.4,6.08 +L 6.4,6.08,6.4,0.96 +L 5.12,6.08,5.76,6.08 +L 5.76,6.08,6.08,5.76 +L 6.08,5.76,6.08,0.96 +L 6.08,0.96,5.76,0.64 +L 2.56,6.08,2.56,0.96 +L 5.12,6.08,5.12,0.96 +L 2.56,4.16,3.52,4.16 +L 2.56,2.88,3.52,2.88 +L 5.12,4.16,6.08,4.16 +L 5.12,2.88,6.08,2.88 + +[X] 39 +L 0,5.76,0.64,6.4 +L 0.64,6.4,1.28,6.72 +L 1.28,6.72,1.92,6.72 +L 1.92,6.72,2.24,6.4 +L 2.24,6.4,4.8,0.64 +L 4.8,0.64,5.12,0.32 +L 5.12,0.32,5.76,0.32 +L 1.6,6.4,1.92,6.08 +L 1.92,6.08,4.48,0.64 +L 4.48,0.64,4.8,0.32 +L 0.64,6.4,1.28,6.4 +L 1.28,6.4,1.6,6.08 +L 1.6,6.08,4.16,0.32 +L 4.16,0.32,4.48,0 +L 4.48,0,5.12,0 +L 5.12,0,5.76,0.32 +L 5.76,0.32,6.4,0.96 +L 4.8,6.72,5.44,6.4 +L 5.44,6.4,6.08,6.4 +L 6.08,6.4,6.4,6.72 +L 4.8,6.4,5.12,6.08 +L 5.12,6.08,5.76,6.08 +L 4.48,6.08,4.8,5.76 +L 4.8,5.76,5.44,5.76 +L 5.44,5.76,6.08,6.08 +L 6.08,6.08,6.4,6.72 +L 0,0,0.32,0.64 +L 0.32,0.64,0.96,0.96 +L 0.96,0.96,1.6,0.96 +L 1.6,0.96,1.92,0.64 +L 0.64,0.64,1.28,0.64 +L 1.28,0.64,1.6,0.32 +L 0,0,0.32,0.32 +L 0.32,0.32,0.96,0.32 +L 0.96,0.32,1.6,0 +L 4.8,6.72,3.52,3.84 +L 2.88,2.88,1.6,0 +L 1.28,3.52,2.56,3.52 +L 3.52,3.52,5.12,3.52 + +[Y] 58 +L 0.32,6.72,0.64,6.4 +L 0.64,6.4,0.96,5.76 +L 0.96,5.76,0.96,3.84 +L 0.96,3.84,0.32,3.84 +L 0.32,3.84,0,3.52 +L 0,3.52,0,2.88 +L 0,2.88,0.32,3.2 +L 0.32,3.2,0.96,3.2 +L 0.96,3.2,0.96,0.96 +L 0.96,0.96,0.32,0.64 +L 0.96,6.08,1.28,5.44 +L 1.28,5.44,1.28,0.96 +L 0.32,3.52,1.28,3.52 +L 1.6,0.64,2.56,0.64 +L 2.56,0.64,3.2,0.32 +L 0.32,6.72,0.96,6.4 +L 0.96,6.4,1.28,6.08 +L 1.28,6.08,1.6,5.44 +L 1.6,5.44,1.6,0.96 +L 1.6,0.96,2.88,0.96 +L 2.88,0.96,3.84,0.64 +L 0.32,0.64,1.28,0.64 +L 1.28,0.64,2.24,0.32 +L 2.24,0.32,2.88,0 +L 2.88,0,3.84,0.64 +L 3.84,0.64,4.8,0.96 +L 2.88,5.44,3.84,5.76 +L 3.84,5.76,4.48,6.08 +L 4.48,6.08,5.12,6.72 +L 5.12,6.72,5.44,6.4 +L 5.44,6.4,6.08,6.08 +L 6.08,6.08,5.44,5.76 +L 5.44,5.76,5.44,-0.96 +L 5.44,-0.96,5.12,-1.6 +L 5.12,-1.6,4.48,-2.24 +L 4.48,-2.24,3.84,-1.92 +L 3.84,-1.92,2.56,-1.6 +L 2.56,-1.6,0.96,-1.6 +L 5.12,5.76,5.44,6.08 +L 5.44,6.08,5.12,6.4 +L 5.12,6.4,4.8,6.08 +L 4.8,6.08,5.12,5.76 +L 5.12,5.76,5.12,0.64 +L 4.48,6.08,4.8,5.76 +L 4.8,5.76,4.8,0.96 +L 4.8,0.96,5.44,0 +L 4.8,-1.92,4.16,-1.6 +L 4.16,-1.6,3.2,-1.6 +L 5.12,-1.6,4.16,-1.28 +L 4.16,-1.28,2.24,-1.28 +L 2.24,-1.28,0.96,-1.6 +L 2.88,5.44,2.88,0.96 +L 2.88,4.48,3.52,4.16 +L 3.52,4.16,4.16,4.16 +L 4.16,4.16,4.8,4.48 +L 2.88,2.56,3.52,2.88 +L 3.52,2.88,4.16,2.88 +L 4.16,2.88,4.8,2.56 + +[Z] 35 +L 4.48,6.4,4.16,5.76 +L 4.16,5.76,2.56,3.84 +L 2.56,3.84,1.6,2.56 +L 1.6,2.56,0.96,1.28 +L 0.96,1.28,0,0 +L 3.84,5.12,1.28,1.6 +L 5.12,6.72,4.16,5.44 +L 4.16,5.44,3.52,4.16 +L 3.52,4.16,2.56,2.88 +L 2.56,2.88,0.96,0.96 +L 0.96,0.96,0.64,0.32 +L 0,6.08,0.64,6.72 +L 0.64,6.72,1.6,6.4 +L 1.6,6.4,3.52,6.4 +L 3.52,6.4,5.12,6.72 +L 0.32,6.4,1.6,6.08 +L 1.6,6.08,2.88,6.08 +L 2.88,6.08,4.16,6.4 +L 0,6.08,1.28,5.76 +L 1.28,5.76,2.56,5.76 +L 2.56,5.76,3.84,6.08 +L 3.84,6.08,4.48,6.4 +L 0.64,0.32,1.28,0.64 +L 1.28,0.64,2.56,0.96 +L 2.56,0.96,3.84,0.96 +L 3.84,0.96,5.12,0.64 +L 0.96,0.32,2.24,0.64 +L 2.24,0.64,3.52,0.64 +L 3.52,0.64,4.8,0.32 +L 0,0,1.6,0.32 +L 1.6,0.32,3.52,0.32 +L 3.52,0.32,4.48,0 +L 4.48,0,5.12,0.64 +L 0.96,3.52,2.24,3.52 +L 3.2,3.52,4.48,3.52 + +[[] 4 +L 0,8,0,-2.24 +L 0.32,8,0.32,-2.24 +L 0,8,2.24,8 +L 0,-2.24,2.24,-2.24 + +[\] 1 +L 0,6.72,4.48,-0.96 + +[]] 4 +L 1.92,8,1.92,-2.24 +L 2.24,8,2.24,-2.24 +L 0,8,2.24,8 +L 0,-2.24,2.24,-2.24 + +[^] 5 +L 0.96,4.8,1.6,5.76 +L 1.6,5.76,2.24,4.8 +L 0,3.84,1.6,5.44 +L 1.6,5.44,3.2,3.84 +L 1.6,5.44,1.6,0 + +[_] 1 +L 0,-0.64,5.12,-0.64 + +[`] 10 +L 0.96,6.72,0.32,6.4 +L 0.32,6.4,0,5.76 +L 0,5.76,0,5.12 +L 0,5.12,0.32,4.48 +L 0.32,4.48,0.96,5.12 +L 0.96,5.12,0.32,5.76 +L 0.32,5.76,0.32,6.4 +L 0.32,5.44,0.32,4.8 +L 0.32,4.8,0.64,5.12 +L 0.64,5.12,0.32,5.44 + +[a] 37 +L 0.96,2.88,0.32,2.24 +L 0.32,2.24,0,1.6 +L 0,1.6,0,0.96 +L 0,0.96,0.32,0.32 +L 0.32,0.32,0.96,0 +L 0.96,0,1.6,0.64 +L 1.6,0.64,2.56,0.96 +L 0,1.6,0.32,0.96 +L 0.32,0.96,0.64,0.64 +L 0.64,0.64,1.28,0.32 +L 0.32,2.24,0.32,1.6 +L 0.32,1.6,0.64,0.96 +L 0.64,0.96,1.28,0.64 +L 1.28,0.64,1.6,0.64 +L 0.32,3.52,0.96,3.52 +L 0.96,3.52,1.92,3.84 +L 1.92,3.84,2.56,4.16 +L 2.56,4.16,2.88,4.48 +L 2.88,4.48,3.52,3.84 +L 3.52,3.84,3.2,3.52 +L 3.2,3.52,3.2,0.96 +L 3.2,0.96,3.52,0.64 +L 3.52,0.64,3.84,0.64 +L 0.64,4.16,0.32,3.84 +L 0.32,3.84,1.28,3.84 +L 2.24,3.84,3.2,3.84 +L 3.2,3.84,2.88,4.16 +L 2.88,4.16,2.88,0.64 +L 2.88,0.64,3.2,0.32 +L 0,3.84,0.64,4.48 +L 0.64,4.48,0.96,4.16 +L 0.96,4.16,1.6,3.84 +L 1.6,3.84,2.56,3.52 +L 2.56,3.52,2.56,0.64 +L 2.56,0.64,3.2,0 +L 3.2,0,3.84,0.64 +L 0,3.84,1.6,2.24 + +[b] 30 +L 0.32,6.08,0.64,5.44 +L 0.64,5.44,0.64,0.96 +L 0.64,0.96,0,0.64 +L 0.96,5.44,0.64,6.08 +L 0.64,6.08,0.96,6.4 +L 0.96,6.4,0.96,0.96 +L 0.96,0.96,1.92,0.32 +L 0.32,6.08,1.28,6.72 +L 1.28,6.72,1.28,0.96 +L 1.28,0.96,1.92,0.64 +L 1.92,0.64,2.24,0.32 +L 0,0.64,0.64,0.64 +L 0.64,0.64,1.28,0.32 +L 1.28,0.32,1.6,0 +L 1.6,0,2.24,0.32 +L 2.24,0.32,3.2,0.64 +L 3.2,0.64,3.84,0.64 +L 1.28,3.52,2.24,3.84 +L 2.24,3.84,2.88,4.16 +L 2.88,4.16,3.2,4.48 +L 3.2,4.48,3.52,4.16 +L 3.52,4.16,4.16,3.84 +L 4.16,3.84,4.48,3.84 +L 4.48,3.84,3.84,3.52 +L 3.84,3.52,3.84,0.64 +L 2.88,4.16,3.52,3.84 +L 3.52,3.84,3.52,0.96 +L 2.24,3.84,2.56,3.84 +L 2.56,3.84,3.2,3.52 +L 3.2,3.52,3.2,0.64 + +[c] 23 +L 0.64,3.84,0.64,0.96 +L 0.64,0.96,0,0.64 +L 0,0.64,0.32,0.64 +L 0.32,0.64,0.96,0.32 +L 0.96,0.32,1.28,0 +L 0.96,3.84,0.96,0.64 +L 0.96,0.64,1.6,0.32 +L 1.28,3.84,1.28,0.96 +L 1.28,0.96,1.92,0.64 +L 1.92,0.64,2.24,0.64 +L 2.24,0.64,1.6,0.32 +L 1.6,0.32,1.28,0 +L 0.64,3.84,1.92,4.16 +L 1.92,4.16,2.56,4.48 +L 2.56,4.48,2.88,4.16 +L 2.88,4.16,3.52,3.84 +L 3.52,3.84,3.84,3.84 +L 2.24,4.16,2.56,3.84 +L 2.56,3.84,3.2,3.84 +L 1.28,3.84,1.92,4.16 +L 1.92,4.16,2.56,3.52 +L 2.56,3.52,3.2,3.52 +L 3.2,3.52,3.84,3.84 + +[d] 27 +L 2.24,4.48,1.6,4.16 +L 1.6,4.16,0.64,3.84 +L 0.64,3.84,0.64,0.96 +L 0.64,0.96,0,0.64 +L 0.96,3.84,0.96,0.96 +L 0.96,0.96,1.92,0.32 +L 2.24,4.48,1.28,3.84 +L 1.28,3.84,1.28,0.96 +L 1.28,0.96,1.92,0.64 +L 1.92,0.64,2.24,0.32 +L 0,0.64,0.64,0.64 +L 0.64,0.64,1.28,0.32 +L 1.28,0.32,1.6,0 +L 1.6,0,2.24,0.32 +L 2.24,0.32,3.2,0.64 +L 3.2,0.64,3.84,0.64 +L 0.64,6.08,1.6,6.72 +L 1.6,6.72,1.92,5.76 +L 1.92,5.76,3.84,3.84 +L 3.84,3.84,3.84,0.64 +L 1.6,5.76,0.96,6.08 +L 0.96,6.08,1.28,6.4 +L 1.28,6.4,1.6,5.76 +L 1.6,5.76,3.52,3.84 +L 3.52,3.84,3.52,0.96 +L 0.64,6.08,3.2,3.52 +L 3.2,3.52,3.2,0.64 + +[e] 20 +L 0.64,3.84,0.64,0.96 +L 0.64,0.96,0,0.64 +L 0,0.64,0.32,0.64 +L 0.32,0.64,0.96,0.32 +L 0.96,0.32,1.28,0 +L 0.96,3.84,0.96,0.64 +L 0.96,0.64,1.6,0.32 +L 1.28,3.84,1.28,0.96 +L 1.28,0.96,1.92,0.64 +L 1.92,0.64,2.24,0.64 +L 2.24,0.64,1.6,0.32 +L 1.6,0.32,1.28,0 +L 0.64,3.84,1.92,4.16 +L 1.92,4.16,2.56,4.48 +L 2.56,4.48,3.52,3.2 +L 3.52,3.2,2.88,2.88 +L 2.88,2.88,1.28,1.92 +L 2.24,4.16,3.2,3.2 +L 1.28,3.84,1.92,4.16 +L 1.92,4.16,2.88,2.88 + +[f] 25 +L 0.96,6.08,0.96,0.96 +L 0.96,0.96,0.32,0.64 +L 0.32,0.64,0.64,0.64 +L 0.64,0.64,1.28,0.32 +L 1.28,0.32,1.6,0 +L 1.28,6.08,1.28,0.64 +L 1.28,0.64,1.92,0.32 +L 1.6,6.08,1.6,0.96 +L 1.6,0.96,2.24,0.64 +L 2.24,0.64,2.56,0.64 +L 2.56,0.64,1.92,0.32 +L 1.92,0.32,1.6,0 +L 0.96,6.08,1.92,6.4 +L 1.92,6.4,2.56,6.72 +L 2.56,6.72,2.88,6.4 +L 2.88,6.4,3.52,6.08 +L 3.52,6.08,3.84,6.08 +L 2.24,6.4,2.56,6.08 +L 2.56,6.08,3.2,6.08 +L 1.6,6.08,1.92,6.4 +L 1.92,6.4,2.56,5.76 +L 2.56,5.76,3.2,5.76 +L 3.2,5.76,3.84,6.08 +L 0,4.48,0.96,4.48 +L 1.6,4.48,2.88,4.48 + +[g] 40 +L 0.64,3.84,0.64,0.96 +L 0.64,0.96,0,0.64 +L 0,0.64,0.32,0.64 +L 0.32,0.64,0.96,0.32 +L 0.96,0.32,1.28,0 +L 1.28,0,1.6,0.32 +L 1.6,0.32,2.24,0.64 +L 2.24,0.64,3.2,0.96 +L 0.96,3.52,0.96,0.64 +L 0.96,0.64,1.6,0.32 +L 1.28,3.84,1.28,0.96 +L 1.28,0.96,1.92,0.64 +L 1.92,0.64,2.24,0.64 +L 0.64,3.84,1.28,3.84 +L 1.28,3.84,2.24,4.16 +L 2.24,4.16,2.88,4.48 +L 2.88,4.48,3.2,4.16 +L 3.2,4.16,3.84,3.84 +L 3.84,3.84,4.48,3.84 +L 4.48,3.84,3.84,3.52 +L 3.84,3.52,3.84,-0.32 +L 3.84,-0.32,3.52,-1.28 +L 3.52,-1.28,2.88,-1.92 +L 2.88,-1.92,2.24,-2.24 +L 2.24,-2.24,1.92,-1.92 +L 1.92,-1.92,1.28,-1.6 +L 1.28,-1.6,0.64,-1.6 +L 2.56,4.16,3.52,3.52 +L 3.52,3.52,3.52,-0.32 +L 2.56,-1.92,1.92,-1.6 +L 1.92,-1.6,1.6,-1.6 +L 2.24,4.16,2.56,3.84 +L 2.56,3.84,3.2,3.52 +L 3.2,3.52,3.2,0.32 +L 3.2,0.32,3.52,-0.64 +L 3.52,-0.64,3.52,-1.28 +L 2.88,-1.92,2.56,-1.6 +L 2.56,-1.6,1.92,-1.28 +L 1.92,-1.28,1.28,-1.28 +L 1.28,-1.28,0.64,-1.6 + +[h] 35 +L 0.32,6.08,0.64,5.44 +L 0.64,5.44,0.64,0.96 +L 0.64,0.96,0,0.64 +L 0,0.64,0.32,0.64 +L 0.32,0.64,0.96,0.32 +L 0.96,0.32,1.28,0 +L 0.96,5.44,0.64,6.08 +L 0.64,6.08,0.96,6.4 +L 0.96,6.4,0.96,0.64 +L 0.96,0.64,1.6,0.32 +L 0.32,6.08,1.28,6.72 +L 1.28,6.72,1.28,0.96 +L 1.28,0.96,1.92,0.64 +L 1.92,0.64,1.28,0 +L 1.28,3.52,2.24,3.84 +L 2.24,3.84,2.88,4.16 +L 2.88,4.16,3.2,4.48 +L 3.2,4.48,3.52,4.16 +L 3.52,4.16,4.16,3.84 +L 4.16,3.84,4.48,3.84 +L 4.48,3.84,3.84,3.52 +L 3.84,3.52,3.84,0.64 +L 3.84,0.64,3.2,0 +L 3.2,0,2.88,-0.64 +L 2.88,4.16,3.52,3.84 +L 3.52,3.84,3.52,0.64 +L 3.52,0.64,3.2,0 +L 2.24,3.84,2.56,3.84 +L 2.56,3.84,3.2,3.52 +L 3.2,3.52,3.2,0.64 +L 3.2,0.64,2.88,-0.64 +L 2.88,-0.64,2.88,-1.6 +L 2.88,-1.6,3.2,-2.24 +L 3.2,-2.24,3.52,-2.24 +L 3.52,-2.24,2.88,-1.6 + +[i] 25 +L 0.96,6.72,0.32,6.08 +L 0.32,6.08,0.96,5.76 +L 0.96,5.76,1.6,6.08 +L 1.6,6.08,0.96,6.72 +L 0.96,6.4,0.64,6.08 +L 0.64,6.08,1.28,6.08 +L 1.28,6.08,0.96,6.4 +L 0.96,4.48,0.64,4.16 +L 0.64,4.16,0,3.84 +L 0,3.84,0.64,3.52 +L 0.64,3.52,0.64,0.64 +L 0.64,0.64,1.28,0 +L 1.28,0,1.92,0.64 +L 0.96,3.52,1.28,3.84 +L 1.28,3.84,0.96,4.16 +L 0.96,4.16,0.64,3.84 +L 0.64,3.84,0.96,3.52 +L 0.96,3.52,0.96,0.64 +L 0.96,0.64,1.28,0.32 +L 0.96,4.48,1.28,4.16 +L 1.28,4.16,1.92,3.84 +L 1.92,3.84,1.28,3.52 +L 1.28,3.52,1.28,0.96 +L 1.28,0.96,1.6,0.64 +L 1.6,0.64,1.92,0.64 + +[j] 29 +L 0.96,6.72,0.32,6.08 +L 0.32,6.08,0.96,5.76 +L 0.96,5.76,1.6,6.08 +L 1.6,6.08,0.96,6.72 +L 0.96,6.4,0.64,6.08 +L 0.64,6.08,1.28,6.08 +L 1.28,6.08,0.96,6.4 +L 0.96,4.48,0.64,4.16 +L 0.64,4.16,0,3.84 +L 0,3.84,0.64,3.52 +L 0.64,3.52,0.64,0.64 +L 0.64,0.64,1.28,0 +L 1.28,0,1.6,-0.64 +L 0.96,3.52,1.28,3.84 +L 1.28,3.84,0.96,4.16 +L 0.96,4.16,0.64,3.84 +L 0.64,3.84,0.96,3.52 +L 0.96,3.52,0.96,0.64 +L 0.96,0.64,1.28,0 +L 0.96,4.48,1.28,4.16 +L 1.28,4.16,1.92,3.84 +L 1.92,3.84,1.28,3.52 +L 1.28,3.52,1.28,0.64 +L 1.28,0.64,1.6,-0.64 +L 1.6,-0.64,1.6,-1.6 +L 1.6,-1.6,0.96,-2.24 +L 0.96,-2.24,0.32,-2.24 +L 0.32,-2.24,0.32,-1.92 +L 0.32,-1.92,0.96,-2.24 + +[k] 32 +L 0.32,6.08,0.64,5.44 +L 0.64,5.44,0.64,0.96 +L 0.64,0.96,0,0.64 +L 0,0.64,0.32,0.64 +L 0.32,0.64,0.96,0.32 +L 0.96,0.32,1.28,0 +L 0.96,5.44,0.64,6.08 +L 0.64,6.08,0.96,6.4 +L 0.96,6.4,0.96,0.64 +L 0.96,0.64,1.6,0.32 +L 0.32,6.08,1.28,6.72 +L 1.28,6.72,1.28,0.96 +L 1.28,0.96,1.92,0.64 +L 1.92,0.64,1.28,0 +L 1.28,3.52,2.24,4.16 +L 2.24,4.16,2.88,4.48 +L 2.88,4.48,3.52,3.52 +L 3.52,3.52,2.56,2.88 +L 2.56,2.88,1.28,1.92 +L 2.56,4.16,3.2,3.52 +L 2.24,4.16,2.88,3.2 +L 2.56,2.88,2.88,2.56 +L 2.88,2.56,3.52,0.96 +L 3.52,0.96,3.84,0.64 +L 3.84,0.64,4.16,0.64 +L 2.56,2.56,2.88,2.24 +L 2.88,2.24,3.2,0.64 +L 3.2,0.64,3.52,0.32 +L 2.24,2.56,2.56,2.24 +L 2.56,2.24,2.88,0.64 +L 2.88,0.64,3.52,0 +L 3.52,0,4.16,0.64 + +[l] 16 +L 0.32,6.08,0.64,5.44 +L 0.64,5.44,0.64,0.96 +L 0.64,0.96,0,0.64 +L 0,0.64,0.32,0.64 +L 0.32,0.64,0.96,0.32 +L 0.96,0.32,1.28,0 +L 0.96,5.44,0.64,6.08 +L 0.64,6.08,0.96,6.4 +L 0.96,6.4,0.96,0.64 +L 0.96,0.64,1.6,0.32 +L 0.32,6.08,1.28,6.72 +L 1.28,6.72,1.28,0.96 +L 1.28,0.96,1.92,0.64 +L 1.92,0.64,2.24,0.64 +L 2.24,0.64,1.6,0.32 +L 1.6,0.32,1.28,0 + +[m] 49 +L 0,3.84,0.32,3.84 +L 0.32,3.84,0.64,3.52 +L 0.64,3.52,0.64,0.96 +L 0.64,0.96,0,0.64 +L 0,0.64,0.32,0.64 +L 0.32,0.64,0.96,0.32 +L 0.96,0.32,1.28,0 +L 0.64,4.16,0.96,3.84 +L 0.96,3.84,0.96,0.64 +L 0.96,0.64,1.6,0.32 +L 0,3.84,0.64,4.48 +L 0.64,4.48,1.28,3.84 +L 1.28,3.84,1.28,0.96 +L 1.28,0.96,1.92,0.64 +L 1.92,0.64,1.28,0 +L 1.28,3.52,2.24,3.84 +L 2.24,3.84,2.88,4.16 +L 2.88,4.16,3.2,4.48 +L 3.2,4.48,3.84,3.84 +L 3.84,3.84,3.84,0.96 +L 3.84,0.96,4.48,0.64 +L 4.48,0.64,3.84,0 +L 2.88,4.16,3.52,3.84 +L 3.52,3.84,3.52,0.64 +L 3.52,0.64,4.16,0.32 +L 2.24,3.84,2.56,3.84 +L 2.56,3.84,3.2,3.52 +L 3.2,3.52,3.2,0.96 +L 3.2,0.96,2.88,0.64 +L 2.88,0.64,3.52,0.32 +L 3.52,0.32,3.84,0 +L 3.84,3.52,4.8,3.84 +L 4.8,3.84,5.44,4.16 +L 5.44,4.16,5.76,4.48 +L 5.76,4.48,6.08,4.16 +L 6.08,4.16,6.72,3.84 +L 6.72,3.84,7.04,3.84 +L 7.04,3.84,6.4,3.52 +L 6.4,3.52,6.4,0.96 +L 6.4,0.96,6.72,0.64 +L 6.72,0.64,7.04,0.64 +L 5.44,4.16,6.08,3.84 +L 6.08,3.84,6.08,0.64 +L 6.08,0.64,6.4,0.32 +L 4.8,3.84,5.12,3.84 +L 5.12,3.84,5.76,3.52 +L 5.76,3.52,5.76,0.64 +L 5.76,0.64,6.4,0 +L 6.4,0,7.04,0.64 + +[n] 33 +L 0,3.84,0.32,3.84 +L 0.32,3.84,0.64,3.52 +L 0.64,3.52,0.64,0.96 +L 0.64,0.96,0,0.64 +L 0,0.64,0.32,0.64 +L 0.32,0.64,0.96,0.32 +L 0.96,0.32,1.28,0 +L 0.64,4.16,0.96,3.84 +L 0.96,3.84,0.96,0.64 +L 0.96,0.64,1.6,0.32 +L 0,3.84,0.64,4.48 +L 0.64,4.48,1.28,3.84 +L 1.28,3.84,1.28,0.96 +L 1.28,0.96,1.92,0.64 +L 1.92,0.64,1.28,0 +L 1.28,3.52,2.24,3.84 +L 2.24,3.84,2.88,4.16 +L 2.88,4.16,3.2,4.48 +L 3.2,4.48,3.52,4.16 +L 3.52,4.16,4.16,3.84 +L 4.16,3.84,4.48,3.84 +L 4.48,3.84,3.84,3.52 +L 3.84,3.52,3.84,0.96 +L 3.84,0.96,4.16,0.64 +L 4.16,0.64,4.48,0.64 +L 2.88,4.16,3.52,3.84 +L 3.52,3.84,3.52,0.64 +L 3.52,0.64,3.84,0.32 +L 2.24,3.84,2.56,3.84 +L 2.56,3.84,3.2,3.52 +L 3.2,3.52,3.2,0.64 +L 3.2,0.64,3.84,0 +L 3.84,0,4.48,0.64 + +[o] 26 +L 0.64,3.84,0.64,0.96 +L 0.64,0.96,0,0.64 +L 0.96,3.52,0.96,0.96 +L 0.96,0.96,1.92,0.32 +L 1.28,3.84,1.28,0.96 +L 1.28,0.96,1.92,0.64 +L 1.92,0.64,2.24,0.32 +L 0,0.64,0.64,0.64 +L 0.64,0.64,1.28,0.32 +L 1.28,0.32,1.6,0 +L 1.6,0,2.24,0.32 +L 2.24,0.32,3.2,0.64 +L 3.2,0.64,3.84,0.64 +L 0.64,3.84,1.28,3.84 +L 1.28,3.84,2.24,4.16 +L 2.24,4.16,2.88,4.48 +L 2.88,4.48,3.2,4.16 +L 3.2,4.16,3.84,3.84 +L 3.84,3.84,4.48,3.84 +L 4.48,3.84,3.84,3.52 +L 3.84,3.52,3.84,0.64 +L 2.56,4.16,3.52,3.52 +L 3.52,3.52,3.52,0.96 +L 2.24,4.16,2.56,3.84 +L 2.56,3.84,3.2,3.52 +L 3.2,3.52,3.2,0.64 + +[p] 36 +L 0.32,4.48,0.64,3.84 +L 0.64,3.84,0.64,0.96 +L 0.64,0.96,0,0.64 +L 0,0.64,0.64,0.64 +L 0.64,0.64,0.64,-2.24 +L 0.64,4.16,0.96,3.84 +L 0.96,3.84,0.96,-1.92 +L 0.96,-1.92,1.28,-1.6 +L 1.28,-1.6,0.96,-0.96 +L 0.96,0.64,1.28,0.64 +L 1.28,0.64,1.92,0.32 +L 0.32,4.48,0.96,4.16 +L 0.96,4.16,1.28,3.84 +L 1.28,3.84,1.28,0.96 +L 1.28,0.96,1.92,0.64 +L 1.92,0.64,2.24,0.32 +L 1.28,0.32,1.6,0 +L 1.6,0,2.24,0.32 +L 2.24,0.32,3.2,0.64 +L 3.2,0.64,3.84,0.64 +L 1.28,0.32,1.28,-0.96 +L 1.28,-0.96,1.6,-1.6 +L 1.6,-1.6,0.64,-2.24 +L 1.28,3.52,2.24,3.84 +L 2.24,3.84,2.88,4.16 +L 2.88,4.16,3.2,4.48 +L 3.2,4.48,3.52,4.16 +L 3.52,4.16,4.16,3.84 +L 4.16,3.84,4.48,3.84 +L 4.48,3.84,3.84,3.52 +L 3.84,3.52,3.84,0.64 +L 2.88,4.16,3.52,3.84 +L 3.52,3.84,3.52,0.96 +L 2.24,3.84,2.56,3.84 +L 2.56,3.84,3.2,3.52 +L 3.2,3.52,3.2,0.64 + +[q] 30 +L 0.64,3.84,0.64,0.96 +L 0.64,0.96,0,0.64 +L 0.96,3.52,0.96,0.64 +L 0.96,0.64,1.6,0.32 +L 1.28,3.84,1.28,0.96 +L 1.28,0.96,1.92,0.64 +L 1.92,0.64,2.24,0.64 +L 0,0.64,0.32,0.64 +L 0.32,0.64,0.96,0.32 +L 0.96,0.32,1.28,0 +L 1.28,0,1.6,0.32 +L 1.6,0.32,2.24,0.64 +L 2.24,0.64,3.2,0.96 +L 0.64,3.84,1.28,3.84 +L 1.28,3.84,2.24,4.16 +L 2.24,4.16,2.88,4.48 +L 2.88,4.48,3.2,4.16 +L 3.2,4.16,3.84,3.84 +L 3.84,3.84,4.48,3.84 +L 4.48,3.84,3.84,3.52 +L 3.84,3.52,3.84,-2.24 +L 2.56,4.16,3.52,3.52 +L 3.52,3.52,3.52,-1.92 +L 3.52,-1.92,3.2,-1.6 +L 3.2,-1.6,3.52,-0.96 +L 2.24,4.16,2.56,3.84 +L 2.56,3.84,3.2,3.52 +L 3.2,3.52,3.2,-0.96 +L 3.2,-0.96,2.88,-1.6 +L 2.88,-1.6,3.84,-2.24 + +[r] 26 +L 0,3.84,0.32,3.84 +L 0.32,3.84,0.64,3.52 +L 0.64,3.52,0.64,0.96 +L 0.64,0.96,0,0.64 +L 0,0.64,0.32,0.64 +L 0.32,0.64,0.96,0.32 +L 0.96,0.32,1.28,0 +L 0.32,4.16,0.96,3.84 +L 0.96,3.84,0.96,0.64 +L 0.96,0.64,1.6,0.32 +L 0,3.84,0.64,4.48 +L 0.64,4.48,1.28,3.84 +L 1.28,3.84,1.28,0.96 +L 1.28,0.96,1.92,0.64 +L 1.92,0.64,2.24,0.64 +L 2.24,0.64,1.6,0.32 +L 1.6,0.32,1.28,0 +L 1.28,3.84,2.56,4.48 +L 2.56,4.48,2.88,4.16 +L 2.88,4.16,3.52,3.84 +L 3.52,3.84,3.84,3.84 +L 2.24,4.16,2.56,3.84 +L 2.56,3.84,3.2,3.84 +L 1.92,4.16,2.56,3.52 +L 2.56,3.52,3.2,3.52 +L 3.2,3.52,3.84,3.84 + +[s] 35 +L 0.32,3.84,0.32,2.56 +L 0.32,2.56,0.96,2.24 +L 0.96,2.24,2.88,2.24 +L 2.88,2.24,3.52,1.92 +L 3.52,1.92,3.52,0.64 +L 0.64,3.84,0.64,2.56 +L 3.2,1.92,3.2,0.64 +L 1.28,4.16,0.96,3.84 +L 0.96,3.84,0.96,2.56 +L 0.96,2.56,1.6,2.24 +L 2.24,2.24,2.88,1.92 +L 2.88,1.92,2.88,0.64 +L 2.88,0.64,2.56,0.32 +L 0.32,3.84,1.28,4.16 +L 1.28,4.16,1.92,4.48 +L 1.92,4.48,2.56,4.16 +L 2.56,4.16,3.2,4.16 +L 3.2,4.16,3.52,4.48 +L 1.6,4.16,2.24,4.16 +L 1.28,4.16,1.92,3.84 +L 1.92,3.84,2.56,3.84 +L 2.56,3.84,3.2,4.16 +L 3.52,0.64,2.56,0.32 +L 2.56,0.32,1.92,0 +L 1.92,0,1.28,0.32 +L 1.28,0.32,0.64,0.32 +L 0.64,0.32,0,0 +L 2.24,0.32,1.6,0.32 +L 2.56,0.32,1.92,0.64 +L 1.92,0.64,0.96,0.64 +L 0.96,0.64,0,0 +L 3.52,4.48,3.2,3.84 +L 3.2,3.84,2.56,2.88 +L 2.56,2.88,0.96,1.28 +L 0.96,1.28,0,0 + +[t] 18 +L 0.64,6.08,0.96,5.44 +L 0.96,5.44,0.96,0.96 +L 0.96,0.96,0.32,0.64 +L 0.32,0.64,0.64,0.64 +L 0.64,0.64,1.28,0.32 +L 1.28,0.32,1.6,0 +L 1.28,5.44,0.96,6.08 +L 0.96,6.08,1.28,6.4 +L 1.28,6.4,1.28,0.64 +L 1.28,0.64,1.92,0.32 +L 0.64,6.08,1.6,6.72 +L 1.6,6.72,1.6,0.96 +L 1.6,0.96,2.24,0.64 +L 2.24,0.64,2.56,0.64 +L 2.56,0.64,1.92,0.32 +L 1.92,0.32,1.6,0 +L 0,4.48,0.96,4.48 +L 1.6,4.48,2.56,4.48 + +[u] 33 +L 0,3.84,0.32,3.84 +L 0.32,3.84,0.64,3.52 +L 0.64,3.52,0.64,0.96 +L 0.64,0.96,0,0.64 +L 0.32,4.16,0.96,3.84 +L 0.96,3.84,0.96,0.64 +L 0.96,0.64,1.6,0.32 +L 0,3.84,0.64,4.48 +L 0.64,4.48,1.28,3.84 +L 1.28,3.84,1.28,0.96 +L 1.28,0.96,1.92,0.64 +L 1.92,0.64,2.24,0.64 +L 0,0.64,0.32,0.64 +L 0.32,0.64,0.96,0.32 +L 0.96,0.32,1.28,0 +L 1.28,0,1.6,0.32 +L 1.6,0.32,2.24,0.64 +L 2.24,0.64,3.2,0.96 +L 3.2,4.48,3.52,4.16 +L 3.52,4.16,4.16,3.84 +L 4.16,3.84,4.48,3.84 +L 4.48,3.84,3.84,3.52 +L 3.84,3.52,3.84,0.96 +L 3.84,0.96,4.16,0.64 +L 4.16,0.64,4.48,0.64 +L 2.88,4.16,3.52,3.84 +L 3.52,3.84,3.52,0.64 +L 3.52,0.64,3.84,0.32 +L 3.2,4.48,2.56,3.84 +L 2.56,3.84,3.2,3.52 +L 3.2,3.52,3.2,0.64 +L 3.2,0.64,3.84,0 +L 3.84,0,4.48,0.64 + +[v] 24 +L 0,4.48,0.32,3.84 +L 0.32,3.84,0.32,0.96 +L 0.32,0.96,1.28,0 +L 1.28,0,1.92,0.64 +L 1.92,0.64,2.88,0.96 +L 2.88,0.96,3.52,0.96 +L 0.32,4.16,0.64,3.84 +L 0.64,3.84,0.64,0.96 +L 0.64,0.96,1.6,0.32 +L 0,4.48,0.64,4.16 +L 0.64,4.16,0.96,3.84 +L 0.96,3.84,0.96,1.28 +L 0.96,1.28,1.28,0.96 +L 1.28,0.96,1.92,0.64 +L 2.88,4.48,3.2,4.16 +L 3.2,4.16,3.84,3.84 +L 3.84,3.84,4.16,3.84 +L 4.16,3.84,3.52,3.52 +L 3.52,3.52,3.52,0.96 +L 2.56,4.16,3.2,3.84 +L 3.2,3.84,3.2,1.28 +L 2.88,4.48,2.24,3.84 +L 2.24,3.84,2.88,3.52 +L 2.88,3.52,2.88,0.96 + +[w] 39 +L 0,4.48,0.32,3.84 +L 0.32,3.84,0.32,0.96 +L 0.32,0.96,1.28,0 +L 1.28,0,1.92,0.64 +L 1.92,0.64,2.88,0.96 +L 0.32,4.16,0.64,3.84 +L 0.64,3.84,0.64,0.96 +L 0.64,0.96,1.6,0.32 +L 0,4.48,0.64,4.16 +L 0.64,4.16,0.96,3.84 +L 0.96,3.84,0.96,1.28 +L 0.96,1.28,1.28,0.96 +L 1.28,0.96,1.92,0.64 +L 2.88,4.48,2.24,3.84 +L 2.24,3.84,2.88,3.52 +L 2.88,3.52,2.88,0.96 +L 2.88,0.96,3.84,0 +L 3.84,0,4.48,0.64 +L 4.48,0.64,5.44,0.96 +L 5.44,0.96,6.08,0.96 +L 2.56,4.16,3.2,3.84 +L 3.2,3.84,3.2,0.96 +L 3.2,0.96,4.16,0.32 +L 2.88,4.48,3.2,4.16 +L 3.2,4.16,3.84,3.84 +L 3.84,3.84,3.52,3.52 +L 3.52,3.52,3.52,1.28 +L 3.52,1.28,3.84,0.96 +L 3.84,0.96,4.48,0.64 +L 5.44,4.48,5.76,4.16 +L 5.76,4.16,6.4,3.84 +L 6.4,3.84,6.72,3.84 +L 6.72,3.84,6.08,3.52 +L 6.08,3.52,6.08,0.96 +L 5.12,4.16,5.76,3.84 +L 5.76,3.84,5.76,1.28 +L 5.44,4.48,4.8,3.84 +L 4.8,3.84,5.44,3.52 +L 5.44,3.52,5.44,0.96 + +[x] 37 +L 0.32,3.84,0.64,3.84 +L 0.64,3.84,1.28,3.52 +L 1.28,3.52,1.6,3.2 +L 1.6,3.2,2.88,0.64 +L 2.88,0.64,3.2,0.32 +L 3.2,0.32,3.84,0 +L 3.84,0,4.48,0.64 +L 0.96,4.16,1.6,3.84 +L 1.6,3.84,3.2,0.64 +L 3.2,0.64,3.84,0.32 +L 0.32,3.84,0.96,4.48 +L 0.96,4.48,1.6,4.16 +L 1.6,4.16,1.92,3.84 +L 1.92,3.84,3.2,1.28 +L 3.2,1.28,3.52,0.96 +L 3.52,0.96,4.16,0.64 +L 4.16,0.64,4.48,0.64 +L 2.56,2.56,3.52,4.48 +L 3.52,4.48,3.84,4.16 +L 3.84,4.16,4.48,4.16 +L 4.48,4.16,4.8,4.48 +L 3.52,4.16,3.84,3.84 +L 3.84,3.84,4.16,3.84 +L 3.2,3.84,3.84,3.52 +L 3.84,3.52,4.48,3.84 +L 4.48,3.84,4.8,4.48 +L 2.24,1.92,1.28,0 +L 1.28,0,0.96,0.32 +L 0.96,0.32,0.32,0.32 +L 0.32,0.32,0,0 +L 1.28,0.32,0.96,0.64 +L 0.96,0.64,0.64,0.64 +L 1.6,0.64,0.96,0.96 +L 0.96,0.96,0.32,0.64 +L 0.32,0.64,0,0 +L 0.96,2.24,1.92,2.24 +L 2.88,2.24,3.84,2.24 + +[y] 42 +L 0,3.84,0.32,3.84 +L 0.32,3.84,0.64,3.52 +L 0.64,3.52,0.64,0.96 +L 0.64,0.96,0,0.64 +L 0.32,4.16,0.96,3.84 +L 0.96,3.84,0.96,0.64 +L 0.96,0.64,1.6,0.32 +L 0,3.84,0.64,4.48 +L 0.64,4.48,1.28,3.84 +L 1.28,3.84,1.28,0.96 +L 1.28,0.96,1.92,0.64 +L 1.92,0.64,2.24,0.64 +L 0,0.64,0.32,0.64 +L 0.32,0.64,0.96,0.32 +L 0.96,0.32,1.28,0 +L 1.28,0,1.6,0.32 +L 1.6,0.32,2.24,0.64 +L 2.24,0.64,3.2,0.96 +L 3.2,4.48,3.52,4.16 +L 3.52,4.16,4.16,3.84 +L 4.16,3.84,4.48,3.84 +L 4.48,3.84,3.84,3.52 +L 3.84,3.52,3.84,-0.32 +L 3.84,-0.32,3.52,-1.28 +L 3.52,-1.28,2.88,-1.92 +L 2.88,-1.92,2.24,-2.24 +L 2.24,-2.24,1.92,-1.92 +L 1.92,-1.92,1.28,-1.6 +L 1.28,-1.6,0.64,-1.6 +L 2.88,4.16,3.52,3.84 +L 3.52,3.84,3.52,-0.32 +L 2.56,-1.92,1.92,-1.6 +L 1.92,-1.6,1.6,-1.6 +L 3.2,4.48,2.56,3.84 +L 2.56,3.84,3.2,3.52 +L 3.2,3.52,3.2,0.32 +L 3.2,0.32,3.52,-0.64 +L 3.52,-0.64,3.52,-1.28 +L 2.88,-1.92,2.56,-1.6 +L 2.56,-1.6,1.92,-1.28 +L 1.92,-1.28,1.28,-1.28 +L 1.28,-1.28,0.64,-1.6 + +[z] 22 +L 3.84,4.48,0,0 +L 0,3.84,0.64,3.52 +L 0.64,3.52,1.6,3.52 +L 1.6,3.52,2.56,3.84 +L 2.56,3.84,3.84,4.48 +L 0.32,4.16,0.96,3.84 +L 0.96,3.84,2.24,3.84 +L 0,3.84,0.64,4.48 +L 0.64,4.48,1.28,4.16 +L 1.28,4.16,2.56,4.16 +L 2.56,4.16,3.84,4.48 +L 0,0,1.28,0.64 +L 1.28,0.64,2.24,0.96 +L 2.24,0.96,3.2,0.96 +L 3.2,0.96,3.84,0.64 +L 1.6,0.64,2.88,0.64 +L 2.88,0.64,3.52,0.32 +L 0,0,1.28,0.32 +L 1.28,0.32,2.56,0.32 +L 2.56,0.32,3.2,0 +L 3.2,0,3.84,0.64 +L 0.64,2.24,3.2,2.24 + +[{] 34 +L 1.6,8,0.96,7.68 +L 0.96,7.68,0.64,7.36 +L 0.64,7.36,0.32,6.72 +L 0.32,6.72,0.32,6.08 +L 0.32,6.08,0.64,5.44 +L 0.64,5.44,0.96,5.12 +L 0.96,5.12,1.28,4.48 +L 1.28,4.48,1.28,3.84 +L 1.28,3.84,0.64,3.2 +L 0.96,7.68,0.64,7.04 +L 0.64,7.04,0.64,6.4 +L 0.64,6.4,0.96,5.76 +L 0.96,5.76,1.28,5.44 +L 1.28,5.44,1.6,4.8 +L 1.6,4.8,1.6,4.16 +L 1.6,4.16,1.28,3.52 +L 1.28,3.52,0,2.88 +L 0,2.88,1.28,2.24 +L 1.28,2.24,1.6,1.6 +L 1.6,1.6,1.6,0.96 +L 1.6,0.96,1.28,0.32 +L 1.28,0.32,0.96,0 +L 0.96,0,0.64,-0.64 +L 0.64,-0.64,0.64,-1.28 +L 0.64,-1.28,0.96,-1.92 +L 0.64,2.56,1.28,1.92 +L 1.28,1.92,1.28,1.28 +L 1.28,1.28,0.96,0.64 +L 0.96,0.64,0.64,0.32 +L 0.64,0.32,0.32,-0.32 +L 0.32,-0.32,0.32,-0.96 +L 0.32,-0.96,0.64,-1.6 +L 0.64,-1.6,0.96,-1.92 +L 0.96,-1.92,1.6,-2.24 + +[|] 1 +L 0,8,0,-2.24 + +[}] 34 +L 0,8,0.64,7.68 +L 0.64,7.68,0.96,7.36 +L 0.96,7.36,1.28,6.72 +L 1.28,6.72,1.28,6.08 +L 1.28,6.08,0.96,5.44 +L 0.96,5.44,0.64,5.12 +L 0.64,5.12,0.32,4.48 +L 0.32,4.48,0.32,3.84 +L 0.32,3.84,0.96,3.2 +L 0.64,7.68,0.96,7.04 +L 0.96,7.04,0.96,6.4 +L 0.96,6.4,0.64,5.76 +L 0.64,5.76,0.32,5.44 +L 0.32,5.44,0,4.8 +L 0,4.8,0,4.16 +L 0,4.16,0.32,3.52 +L 0.32,3.52,1.6,2.88 +L 1.6,2.88,0.32,2.24 +L 0.32,2.24,0,1.6 +L 0,1.6,0,0.96 +L 0,0.96,0.32,0.32 +L 0.32,0.32,0.64,0 +L 0.64,0,0.96,-0.64 +L 0.96,-0.64,0.96,-1.28 +L 0.96,-1.28,0.64,-1.92 +L 0.96,2.56,0.32,1.92 +L 0.32,1.92,0.32,1.28 +L 0.32,1.28,0.64,0.64 +L 0.64,0.64,0.96,0.32 +L 0.96,0.32,1.28,-0.32 +L 1.28,-0.32,1.28,-0.96 +L 1.28,-0.96,0.96,-1.6 +L 0.96,-1.6,0.64,-1.92 +L 0.64,-1.92,0,-2.24 + +#EOF diff --git a/pycam/share/fonts/gothgrt.cxf b/pycam/share/fonts/gothgrt.cxf new file mode 100644 index 00000000..fedbcfd5 --- /dev/null +++ b/pycam/share/fonts/gothgrt.cxf @@ -0,0 +1,3465 @@ +# Format: QCad II Font +# Creator: Adam Radlowski's "dodajf" program - GRASS font translator +# Version: 1.0.0 +# Name: Gothic German triplex +# LetterSpacing: 3.0 +# WordSpacing: 6.75 +# LineSpacingFactor: 1.0 +# Author: Hershey fonts + +[!] 20 +L 0.888889,6.222222,0.592593,5.925926 +L 0.592593,5.925926,0,5.62963 +L 0,5.62963,0.592593,5.333333 +L 0.592593,5.333333,0.888889,2.074074 +L 0.888889,5.333333,1.185185,5.62963 +L 1.185185,5.62963,0.888889,5.925926 +L 0.888889,5.925926,0.592593,5.62963 +L 0.592593,5.62963,0.888889,5.333333 +L 0.888889,5.333333,0.888889,2.074074 +L 0.888889,6.222222,1.185185,5.925926 +L 1.185185,5.925926,1.777778,5.62963 +L 1.777778,5.62963,1.185185,5.333333 +L 1.185185,5.333333,0.888889,2.074074 +L 0.888889,0.888889,0.296296,0.296296 +L 0.296296,0.296296,0.888889,0 +L 0.888889,0,1.481481,0.296296 +L 1.481481,0.296296,0.888889,0.888889 +L 0.888889,0.592593,0.592593,0.296296 +L 0.592593,0.296296,1.185185,0.296296 +L 1.185185,0.296296,0.888889,0.592593 + +["] 10 +L 0.296296,6.222222,0,5.925926 +L 0,5.925926,0,4.148148 +L 0.296296,5.925926,0,4.148148 +L 0.296296,6.222222,0.592593,5.925926 +L 0.592593,5.925926,0,4.148148 +L 2.962963,6.222222,2.666667,5.925926 +L 2.666667,5.925926,2.666667,4.148148 +L 2.962963,5.925926,2.666667,4.148148 +L 2.962963,6.222222,3.259259,5.925926 +L 3.259259,5.925926,2.666667,4.148148 + +[#] 4 +L 2.37037,6.222222,0.296296,-2.074074 +L 4.148148,6.222222,2.074074,-2.074074 +L 0.296296,2.962963,4.444444,2.962963 +L 0,1.185185,4.148148,1.185185 + +[$] 46 +L 1.481481,7.407407,1.481481,-1.185185 +L 2.666667,7.407407,2.666667,-1.185185 +L 2.666667,6.222222,3.259259,5.925926 +L 3.259259,5.925926,3.555556,5.333333 +L 3.555556,5.333333,3.555556,4.740741 +L 3.555556,4.740741,4.148148,5.037037 +L 4.148148,5.037037,3.851852,5.62963 +L 3.851852,5.62963,3.555556,5.925926 +L 3.555556,5.925926,2.666667,6.222222 +L 2.666667,6.222222,1.481481,6.222222 +L 1.481481,6.222222,0.592593,5.925926 +L 0.592593,5.925926,0,5.333333 +L 0,5.333333,0,4.444444 +L 0,4.444444,0.296296,3.851852 +L 0.296296,3.851852,1.185185,3.259259 +L 1.185185,3.259259,2.962963,2.666667 +L 2.962963,2.666667,3.555556,2.37037 +L 3.555556,2.37037,3.851852,1.777778 +L 3.851852,1.777778,3.851852,0.888889 +L 3.851852,0.888889,3.555556,0.296296 +L 3.851852,5.037037,3.555556,5.62963 +L 0.296296,4.444444,0.592593,3.851852 +L 0.592593,3.851852,1.185185,3.555556 +L 1.185185,3.555556,2.962963,2.962963 +L 2.962963,2.962963,3.555556,2.666667 +L 3.555556,2.666667,3.851852,2.074074 +L 0.592593,0.592593,0.296296,1.185185 +L 0.592593,5.925926,0.296296,5.333333 +L 0.296296,5.333333,0.296296,4.740741 +L 0.296296,4.740741,0.592593,4.148148 +L 0.592593,4.148148,1.185185,3.851852 +L 1.185185,3.851852,2.962963,3.259259 +L 2.962963,3.259259,3.851852,2.666667 +L 3.851852,2.666667,4.148148,2.074074 +L 4.148148,2.074074,4.148148,1.185185 +L 4.148148,1.185185,3.851852,0.592593 +L 3.851852,0.592593,3.555556,0.296296 +L 3.555556,0.296296,2.666667,0 +L 2.666667,0,1.481481,0 +L 1.481481,0,0.592593,0.296296 +L 0.592593,0.296296,0.296296,0.592593 +L 0.296296,0.592593,0,1.185185 +L 0,1.185185,0.592593,1.481481 +L 0.592593,1.481481,0.592593,0.888889 +L 0.592593,0.888889,0.888889,0.296296 +L 0.888889,0.296296,1.481481,0 + +[%] 26 +L 5.333333,6.222222,0,0 +L 1.481481,6.222222,2.074074,5.62963 +L 2.074074,5.62963,2.074074,5.037037 +L 2.074074,5.037037,1.777778,4.444444 +L 1.777778,4.444444,1.185185,4.148148 +L 1.185185,4.148148,0.592593,4.148148 +L 0.592593,4.148148,0,4.740741 +L 0,4.740741,0,5.333333 +L 0,5.333333,0.296296,5.925926 +L 0.296296,5.925926,0.888889,6.222222 +L 0.888889,6.222222,1.481481,6.222222 +L 1.481481,6.222222,2.074074,5.925926 +L 2.074074,5.925926,2.962963,5.62963 +L 2.962963,5.62963,3.851852,5.62963 +L 3.851852,5.62963,4.740741,5.925926 +L 4.740741,5.925926,5.333333,6.222222 +L 4.148148,2.074074,3.555556,1.777778 +L 3.555556,1.777778,3.259259,1.185185 +L 3.259259,1.185185,3.259259,0.592593 +L 3.259259,0.592593,3.851852,0 +L 3.851852,0,4.444444,0 +L 4.444444,0,5.037037,0.296296 +L 5.037037,0.296296,5.333333,0.888889 +L 5.333333,0.888889,5.333333,1.481481 +L 5.333333,1.481481,4.740741,2.074074 +L 4.740741,2.074074,4.148148,2.074074 + +[&] 38 +L 5.037037,3.851852,5.333333,3.555556 +L 5.333333,3.555556,5.62963,3.555556 +L 5.62963,3.555556,5.925926,3.851852 +L 4.740741,3.555556,5.037037,3.259259 +L 5.037037,3.259259,5.62963,3.259259 +L 4.740741,3.259259,5.037037,2.962963 +L 5.037037,2.962963,5.333333,2.962963 +L 5.333333,2.962963,5.62963,3.259259 +L 5.62963,3.259259,5.925926,3.851852 +L 5.037037,3.851852,3.259259,2.074074 +L 2.962963,1.777778,1.185185,0 +L 1.185185,0,0,1.481481 +L 0,1.481481,1.777778,3.259259 +L 2.074074,3.555556,3.259259,4.740741 +L 3.259259,4.740741,2.074074,6.222222 +L 2.074074,6.222222,0.592593,4.444444 +L 0.592593,4.444444,2.37037,2.666667 +L 2.37037,2.666667,3.555556,0.888889 +L 3.555556,0.888889,4.148148,0.296296 +L 4.148148,0.296296,4.740741,0 +L 4.740741,0,5.333333,0 +L 5.333333,0,5.62963,0.296296 +L 5.62963,0.296296,5.925926,0.888889 +L 1.185185,0.296296,0.296296,1.481481 +L 2.962963,4.740741,2.074074,5.925926 +L 0.888889,4.444444,2.37037,2.962963 +L 2.37037,2.962963,3.555556,1.185185 +L 3.555556,1.185185,4.148148,0.592593 +L 4.148148,0.592593,4.740741,0.296296 +L 4.740741,0.296296,5.62963,0.296296 +L 1.481481,0.296296,0.296296,1.777778 +L 2.962963,4.444444,1.777778,5.925926 +L 0.888889,4.740741,2.666667,2.962963 +L 2.666667,2.962963,3.851852,1.185185 +L 3.851852,1.185185,4.148148,0.888889 +L 4.148148,0.888889,4.740741,0.592593 +L 4.740741,0.592593,5.62963,0.592593 +L 5.62963,0.592593,5.925926,0.888889 + +['] 10 +L 0.592593,4.444444,0.592593,5.037037 +L 0.592593,5.037037,0,5.62963 +L 0,5.62963,0.592593,6.222222 +L 0.592593,6.222222,0.888889,5.62963 +L 0.888889,5.62963,0.888889,5.037037 +L 0.888889,5.037037,0.592593,4.444444 +L 0.592593,4.444444,0,4.148148 +L 0.592593,5.925926,0.296296,5.62963 +L 0.296296,5.62963,0.592593,5.333333 +L 0.592593,5.333333,0.592593,5.925926 + +[(] 21 +L 2.074074,7.407407,1.481481,6.814815 +L 1.481481,6.814815,0.888889,5.925926 +L 0.888889,5.925926,0.296296,4.740741 +L 0.296296,4.740741,0,3.259259 +L 0,3.259259,0,2.074074 +L 0,2.074074,0.296296,0.592593 +L 0.296296,0.592593,0.888889,-0.592593 +L 0.888889,-0.592593,1.481481,-1.481481 +L 1.481481,-1.481481,2.074074,-2.074074 +L 0.888889,5.62963,0.592593,4.740741 +L 0.592593,4.740741,0.296296,3.555556 +L 0.296296,3.555556,0.296296,1.777778 +L 0.296296,1.777778,0.592593,0.592593 +L 0.592593,0.592593,0.888889,-0.296296 +L 1.481481,6.814815,1.185185,6.222222 +L 1.185185,6.222222,0.888889,5.333333 +L 0.888889,5.333333,0.592593,3.555556 +L 0.592593,3.555556,0.592593,1.777778 +L 0.592593,1.777778,0.888889,0 +L 0.888889,0,1.185185,-0.888889 +L 1.185185,-0.888889,1.481481,-1.481481 + +[)] 21 +L 0,7.407407,0.592593,6.814815 +L 0.592593,6.814815,1.185185,5.925926 +L 1.185185,5.925926,1.777778,4.740741 +L 1.777778,4.740741,2.074074,3.259259 +L 2.074074,3.259259,2.074074,2.074074 +L 2.074074,2.074074,1.777778,0.592593 +L 1.777778,0.592593,1.185185,-0.592593 +L 1.185185,-0.592593,0.592593,-1.481481 +L 0.592593,-1.481481,0,-2.074074 +L 1.185185,5.62963,1.481481,4.740741 +L 1.481481,4.740741,1.777778,3.555556 +L 1.777778,3.555556,1.777778,1.777778 +L 1.777778,1.777778,1.481481,0.592593 +L 1.481481,0.592593,1.185185,-0.296296 +L 0.592593,6.814815,0.888889,6.222222 +L 0.888889,6.222222,1.185185,5.333333 +L 1.185185,5.333333,1.481481,3.555556 +L 1.481481,3.555556,1.481481,1.777778 +L 1.481481,1.777778,1.185185,0 +L 1.185185,0,0.888889,-0.888889 +L 0.888889,-0.888889,0.592593,-1.481481 + +[*] 21 +L 1.481481,6.222222,1.185185,5.925926 +L 1.185185,5.925926,1.777778,2.962963 +L 1.777778,2.962963,1.481481,2.666667 +L 1.481481,6.222222,1.481481,2.666667 +L 1.481481,6.222222,1.777778,5.925926 +L 1.777778,5.925926,1.185185,2.962963 +L 1.185185,2.962963,1.481481,2.666667 +L 0,5.333333,0.296296,5.333333 +L 0.296296,5.333333,2.666667,3.555556 +L 2.666667,3.555556,2.962963,3.555556 +L 0,5.333333,2.962963,3.555556 +L 0,5.333333,0,5.037037 +L 0,5.037037,2.962963,3.851852 +L 2.962963,3.851852,2.962963,3.555556 +L 2.962963,5.333333,2.666667,5.333333 +L 2.666667,5.333333,0.296296,3.555556 +L 0.296296,3.555556,0,3.555556 +L 2.962963,5.333333,0,3.555556 +L 2.962963,5.333333,2.962963,5.037037 +L 2.962963,5.037037,0,3.851852 +L 0,3.851852,0,3.555556 + +[+] 8 +L 2.37037,5.333333,2.37037,0.296296 +L 2.37037,0.296296,2.666667,0.296296 +L 2.37037,5.333333,2.666667,5.333333 +L 2.666667,5.333333,2.666667,0.296296 +L 0,2.962963,5.037037,2.962963 +L 5.037037,2.962963,5.037037,2.666667 +L 0,2.962963,0,2.666667 +L 0,2.666667,5.037037,2.666667 + +[,] 10 +L 0.592593,-0.888889,0.592593,-0.296296 +L 0.592593,-0.296296,0,0.296296 +L 0,0.296296,0.592593,0.888889 +L 0.592593,0.888889,0.888889,0.296296 +L 0.888889,0.296296,0.888889,-0.296296 +L 0.888889,-0.296296,0.592593,-0.888889 +L 0.592593,-0.888889,0,-1.185185 +L 0.592593,0.592593,0.296296,0.296296 +L 0.296296,0.296296,0.592593,0 +L 0.592593,0,0.592593,0.592593 + +[-] 4 +L 0,2.962963,5.037037,2.962963 +L 5.037037,2.962963,5.037037,2.666667 +L 0,2.962963,0,2.666667 +L 0,2.666667,5.037037,2.666667 + +[.] 7 +L 0.592593,0.888889,0,0.296296 +L 0,0.296296,0.592593,0 +L 0.592593,0,1.185185,0.296296 +L 1.185185,0.296296,0.592593,0.888889 +L 0.592593,0.592593,0.296296,0.296296 +L 0.296296,0.296296,0.888889,0.296296 +L 0.888889,0.296296,0.592593,0.592593 + +[/] 4 +L 5.333333,7.407407,0,-2.074074 +L 0,-2.074074,0.296296,-2.074074 +L 5.333333,7.407407,5.62963,7.407407 +L 5.62963,7.407407,0.296296,-2.074074 + +[0] 26 +L 0.592593,5.62963,0.592593,0.888889 +L 0.592593,0.888889,0,0.592593 +L 0.888889,5.333333,0.888889,0.888889 +L 0.888889,0.888889,1.777778,0.296296 +L 1.185185,5.62963,1.185185,0.888889 +L 1.185185,0.888889,1.777778,0.592593 +L 1.777778,0.592593,2.074074,0.296296 +L 0.592593,5.62963,1.185185,5.62963 +L 1.185185,5.62963,2.666667,5.925926 +L 2.666667,5.925926,3.259259,6.222222 +L 2.666667,5.925926,2.962963,5.62963 +L 2.962963,5.62963,3.555556,5.333333 +L 3.555556,5.333333,3.555556,0.592593 +L 2.962963,5.925926,3.851852,5.333333 +L 3.851852,5.333333,3.851852,0.888889 +L 3.259259,6.222222,3.555556,5.925926 +L 3.555556,5.925926,4.148148,5.62963 +L 4.148148,5.62963,4.740741,5.62963 +L 4.740741,5.62963,4.148148,5.333333 +L 4.148148,5.333333,4.148148,0.592593 +L 0,0.592593,0.592593,0.592593 +L 0.592593,0.592593,1.185185,0.296296 +L 1.185185,0.296296,1.481481,0 +L 1.481481,0,2.074074,0.296296 +L 2.074074,0.296296,3.555556,0.592593 +L 3.555556,0.592593,4.148148,0.592593 + +[1] 19 +L 0,5.62963,0.296296,5.333333 +L 0.296296,5.333333,0.592593,4.740741 +L 0.592593,4.740741,0.592593,0.888889 +L 0.592593,0.888889,0,0.592593 +L 0.592593,5.333333,0.296296,5.62963 +L 0.296296,5.62963,0.592593,5.925926 +L 0.592593,5.925926,0.888889,5.333333 +L 0.888889,5.333333,0.888889,0.592593 +L 0.888889,0.592593,1.481481,0.296296 +L 0,5.62963,0.888889,6.222222 +L 0.888889,6.222222,1.185185,5.62963 +L 1.185185,5.62963,1.185185,0.888889 +L 1.185185,0.888889,1.777778,0.592593 +L 1.777778,0.592593,2.074074,0.592593 +L 0,0.592593,0.296296,0.592593 +L 0.296296,0.592593,0.888889,0.296296 +L 0.888889,0.296296,1.185185,0 +L 1.185185,0,1.481481,0.296296 +L 1.481481,0.296296,2.074074,0.592593 + +[2] 30 +L 0.296296,5.62963,0.888889,5.62963 +L 0.888889,5.62963,1.481481,5.925926 +L 1.481481,5.925926,1.777778,6.222222 +L 1.777778,6.222222,2.37037,5.925926 +L 2.37037,5.925926,3.259259,5.62963 +L 3.259259,5.62963,3.851852,5.62963 +L 1.481481,5.62963,2.074074,5.925926 +L 0.296296,5.62963,0.888889,5.333333 +L 0.888889,5.333333,1.481481,5.333333 +L 1.481481,5.333333,2.074074,5.62963 +L 2.074074,5.62963,2.37037,5.925926 +L 3.259259,5.62963,3.259259,3.259259 +L 3.555556,5.333333,3.555556,3.555556 +L 3.851852,5.62963,3.851852,3.259259 +L 3.851852,3.259259,1.777778,3.259259 +L 1.777778,3.259259,0.888889,2.962963 +L 0.888889,2.962963,0.296296,2.37037 +L 0.296296,2.37037,0,1.481481 +L 0,1.481481,0,0 +L 0,0,1.185185,0.592593 +L 1.185185,0.592593,2.37037,0.888889 +L 2.37037,0.888889,3.259259,0.888889 +L 3.259259,0.888889,4.444444,0.592593 +L 0.888889,0.296296,1.777778,0.592593 +L 1.777778,0.592593,3.259259,0.592593 +L 3.259259,0.592593,4.148148,0.296296 +L 0,0,1.481481,0.296296 +L 1.481481,0.296296,2.962963,0.296296 +L 2.962963,0.296296,3.851852,0 +L 3.851852,0,4.444444,0.592593 + +[3] 33 +L 0.296296,5.62963,0.592593,5.62963 +L 0.592593,5.62963,1.185185,5.925926 +L 1.185185,5.925926,1.481481,6.222222 +L 1.481481,6.222222,2.074074,5.925926 +L 2.074074,5.925926,3.259259,5.62963 +L 3.259259,5.62963,3.851852,5.62963 +L 1.185185,5.62963,1.777778,5.925926 +L 0.296296,5.62963,0.888889,5.333333 +L 0.888889,5.333333,1.481481,5.333333 +L 1.481481,5.333333,2.074074,5.925926 +L 3.259259,5.62963,3.259259,3.555556 +L 3.555556,5.333333,3.555556,3.851852 +L 3.851852,5.62963,3.851852,3.555556 +L 3.851852,3.555556,3.259259,3.555556 +L 3.259259,3.555556,2.37037,3.259259 +L 2.37037,3.259259,1.777778,2.962963 +L 1.777778,3.259259,2.37037,2.962963 +L 2.37037,2.962963,3.259259,2.666667 +L 3.259259,2.666667,3.851852,2.666667 +L 3.851852,2.666667,3.851852,0.592593 +L 3.555556,2.37037,3.555556,0.888889 +L 3.259259,2.666667,3.259259,0.592593 +L 0,0.592593,0.592593,0.888889 +L 0.592593,0.888889,1.185185,0.888889 +L 1.185185,0.888889,1.777778,0.592593 +L 1.777778,0.592593,2.074074,0.296296 +L 1.185185,0.592593,1.777778,0.296296 +L 0,0.592593,0.592593,0.592593 +L 0.592593,0.592593,1.185185,0.296296 +L 1.185185,0.296296,1.481481,0 +L 1.481481,0,2.074074,0.296296 +L 2.074074,0.296296,3.259259,0.592593 +L 3.259259,0.592593,3.851852,0.592593 + +[4] 25 +L 2.962963,6.222222,0,3.259259 +L 0,3.259259,0,1.777778 +L 0,1.777778,2.666667,1.777778 +L 3.259259,1.777778,4.444444,1.777778 +L 4.444444,1.777778,4.740741,1.481481 +L 4.740741,1.481481,4.740741,2.074074 +L 4.740741,2.074074,4.444444,1.777778 +L 0.296296,3.259259,0.296296,2.074074 +L 0.592593,3.851852,0.592593,1.777778 +L 2.666667,5.925926,2.666667,0.888889 +L 2.666667,0.888889,2.074074,0.592593 +L 2.962963,5.037037,3.259259,5.62963 +L 3.259259,5.62963,2.962963,5.925926 +L 2.962963,5.925926,2.962963,0.592593 +L 2.962963,0.592593,3.555556,0.296296 +L 2.962963,6.222222,3.555556,5.62963 +L 3.555556,5.62963,3.259259,5.037037 +L 3.259259,5.037037,3.259259,0.888889 +L 3.259259,0.888889,3.851852,0.592593 +L 3.851852,0.592593,4.148148,0.592593 +L 2.074074,0.592593,2.37037,0.592593 +L 2.37037,0.592593,2.962963,0.296296 +L 2.962963,0.296296,3.259259,0 +L 3.259259,0,3.555556,0.296296 +L 3.555556,0.296296,4.148148,0.592593 + +[5] 31 +L 0.296296,6.222222,0.296296,3.555556 +L 0.296296,6.222222,3.851852,6.222222 +L 0.592593,5.925926,3.259259,5.925926 +L 0.296296,5.62963,2.962963,5.62963 +L 2.962963,5.62963,3.555556,5.925926 +L 3.555556,5.925926,3.851852,6.222222 +L 3.259259,4.444444,2.962963,4.148148 +L 2.962963,4.148148,2.37037,3.851852 +L 2.37037,3.851852,1.185185,3.555556 +L 1.185185,3.555556,0.296296,3.555556 +L 2.37037,3.851852,2.666667,3.851852 +L 2.666667,3.851852,3.259259,3.555556 +L 3.259259,3.555556,3.259259,0.592593 +L 2.962963,4.148148,3.555556,3.851852 +L 3.555556,3.851852,3.555556,0.888889 +L 3.259259,4.444444,3.555556,4.148148 +L 3.555556,4.148148,4.148148,3.851852 +L 4.148148,3.851852,4.444444,3.851852 +L 4.444444,3.851852,3.851852,3.555556 +L 3.851852,3.555556,3.851852,0.592593 +L 0,0.592593,0.592593,0.888889 +L 0.592593,0.888889,1.185185,0.888889 +L 1.185185,0.888889,1.777778,0.592593 +L 1.777778,0.592593,2.074074,0.296296 +L 1.185185,0.592593,1.777778,0.296296 +L 0,0.592593,0.592593,0.592593 +L 0.592593,0.592593,1.185185,0.296296 +L 1.185185,0.296296,1.481481,0 +L 1.481481,0,2.074074,0.296296 +L 2.074074,0.296296,3.259259,0.592593 +L 3.259259,0.592593,3.851852,0.592593 + +[6] 37 +L 0.592593,5.62963,0.592593,0.888889 +L 0.592593,0.888889,0,0.592593 +L 0.888889,5.333333,0.888889,0.888889 +L 0.888889,0.888889,1.777778,0.296296 +L 1.185185,5.62963,1.185185,0.888889 +L 1.185185,0.888889,1.777778,0.592593 +L 1.777778,0.592593,2.074074,0.296296 +L 0.592593,5.62963,1.185185,5.62963 +L 1.185185,5.62963,2.37037,5.925926 +L 2.37037,5.925926,2.962963,6.222222 +L 2.962963,6.222222,3.259259,5.925926 +L 3.259259,5.925926,3.851852,5.62963 +L 3.851852,5.62963,4.148148,5.62963 +L 2.666667,5.925926,3.259259,5.62963 +L 2.37037,5.925926,2.962963,5.333333 +L 2.962963,5.333333,3.555556,5.333333 +L 3.555556,5.333333,4.148148,5.62963 +L 1.185185,3.259259,1.481481,3.259259 +L 1.481481,3.259259,2.666667,3.555556 +L 2.666667,3.555556,3.259259,3.851852 +L 3.259259,3.851852,3.555556,4.148148 +L 2.666667,3.555556,2.962963,3.555556 +L 2.962963,3.555556,3.555556,3.259259 +L 3.555556,3.259259,3.555556,0.592593 +L 3.259259,3.851852,3.851852,3.259259 +L 3.851852,3.259259,3.851852,0.888889 +L 3.555556,4.148148,3.851852,3.851852 +L 3.851852,3.851852,4.444444,3.555556 +L 4.444444,3.555556,4.740741,3.555556 +L 4.740741,3.555556,4.148148,3.259259 +L 4.148148,3.259259,4.148148,0.592593 +L 0,0.592593,0.592593,0.592593 +L 0.592593,0.592593,1.185185,0.296296 +L 1.185185,0.296296,1.481481,0 +L 1.481481,0,2.074074,0.296296 +L 2.074074,0.296296,3.555556,0.592593 +L 3.555556,0.592593,4.148148,0.592593 + +[7] 26 +L 0,5.62963,0.592593,6.222222 +L 0.592593,6.222222,1.481481,5.925926 +L 1.481481,5.925926,2.962963,5.925926 +L 2.962963,5.925926,4.444444,6.222222 +L 0.296296,5.925926,1.185185,5.62963 +L 1.185185,5.62963,2.666667,5.62963 +L 2.666667,5.62963,3.555556,5.925926 +L 0,5.62963,1.185185,5.333333 +L 1.185185,5.333333,2.074074,5.333333 +L 2.074074,5.333333,3.259259,5.62963 +L 3.259259,5.62963,4.444444,6.222222 +L 4.444444,6.222222,4.148148,5.62963 +L 4.148148,5.62963,3.555556,4.740741 +L 3.555556,4.740741,2.37037,3.555556 +L 2.37037,3.555556,1.777778,2.666667 +L 1.777778,2.666667,1.481481,1.777778 +L 1.481481,1.777778,1.481481,0.888889 +L 1.481481,0.888889,1.777778,0 +L 2.074074,2.962963,1.777778,2.074074 +L 1.777778,2.074074,1.777778,1.185185 +L 1.777778,1.185185,2.074074,0.296296 +L 2.962963,4.148148,2.37037,3.259259 +L 2.37037,3.259259,2.074074,2.37037 +L 2.074074,2.37037,2.074074,1.481481 +L 2.074074,1.481481,2.37037,0.592593 +L 2.37037,0.592593,1.777778,0 + +[8] 39 +L 0.592593,5.333333,0.592593,3.555556 +L 0.888889,5.037037,0.888889,3.851852 +L 1.185185,5.333333,1.185185,3.555556 +L 0.592593,5.333333,1.185185,5.333333 +L 1.185185,5.333333,2.666667,5.62963 +L 2.666667,5.62963,3.259259,5.925926 +L 3.259259,5.925926,3.555556,6.222222 +L 2.666667,5.62963,2.962963,5.62963 +L 2.962963,5.62963,3.555556,5.333333 +L 3.555556,5.333333,3.555556,3.555556 +L 3.259259,5.925926,3.851852,5.62963 +L 3.851852,5.62963,3.851852,3.851852 +L 3.555556,6.222222,3.851852,5.925926 +L 3.851852,5.925926,4.444444,5.62963 +L 4.444444,5.62963,4.740741,5.62963 +L 4.740741,5.62963,4.148148,5.333333 +L 4.148148,5.333333,4.148148,3.555556 +L 0.592593,3.555556,1.185185,3.555556 +L 1.185185,3.555556,3.555556,2.666667 +L 3.555556,2.666667,4.148148,2.666667 +L 4.148148,3.555556,3.555556,3.555556 +L 3.555556,3.555556,1.185185,2.666667 +L 1.185185,2.666667,0.592593,2.666667 +L 0.592593,2.666667,0.592593,0.888889 +L 0.592593,0.888889,0,0.592593 +L 0.888889,2.37037,0.888889,0.888889 +L 0.888889,0.888889,1.777778,0.296296 +L 1.185185,2.666667,1.185185,0.888889 +L 1.185185,0.888889,1.777778,0.592593 +L 1.777778,0.592593,2.074074,0.296296 +L 3.555556,2.666667,3.555556,0.592593 +L 3.851852,2.37037,3.851852,0.888889 +L 4.148148,2.666667,4.148148,0.592593 +L 0,0.592593,0.592593,0.592593 +L 0.592593,0.592593,1.185185,0.296296 +L 1.185185,0.296296,1.481481,0 +L 1.481481,0,2.074074,0.296296 +L 2.074074,0.296296,3.555556,0.592593 +L 3.555556,0.592593,4.148148,0.592593 + +[9] 38 +L 0.592593,5.62963,0.592593,2.962963 +L 0.592593,2.962963,0,2.666667 +L 0.888889,5.333333,0.888889,2.666667 +L 0.888889,2.666667,1.481481,2.37037 +L 1.185185,5.62963,1.185185,2.962963 +L 1.185185,2.962963,1.777778,2.666667 +L 1.777778,2.666667,2.074074,2.666667 +L 0.592593,5.62963,1.185185,5.62963 +L 1.185185,5.62963,2.666667,5.925926 +L 2.666667,5.925926,3.259259,6.222222 +L 2.666667,5.925926,2.962963,5.62963 +L 2.962963,5.62963,3.555556,5.333333 +L 3.555556,5.333333,3.555556,0.592593 +L 2.962963,5.925926,3.851852,5.333333 +L 3.851852,5.333333,3.851852,0.888889 +L 3.259259,6.222222,3.555556,5.925926 +L 3.555556,5.925926,4.148148,5.62963 +L 4.148148,5.62963,4.740741,5.62963 +L 4.740741,5.62963,4.148148,5.333333 +L 4.148148,5.333333,4.148148,0.592593 +L 0,2.666667,0.296296,2.666667 +L 0.296296,2.666667,0.888889,2.37037 +L 0.888889,2.37037,1.185185,2.074074 +L 1.185185,2.074074,1.481481,2.37037 +L 1.481481,2.37037,2.074074,2.666667 +L 2.074074,2.666667,3.259259,2.962963 +L 3.259259,2.962963,3.555556,2.962963 +L 0.296296,0.592593,0.888889,0.888889 +L 0.888889,0.888889,1.481481,0.888889 +L 1.481481,0.888889,2.074074,0.592593 +L 2.074074,0.592593,2.37037,0.296296 +L 1.481481,0.592593,2.074074,0.296296 +L 0.296296,0.592593,0.888889,0.592593 +L 0.888889,0.592593,1.481481,0.296296 +L 1.481481,0.296296,1.777778,0 +L 1.777778,0,2.37037,0.296296 +L 2.37037,0.296296,3.555556,0.592593 +L 3.555556,0.592593,4.148148,0.592593 + +[:] 14 +L 0.592593,4.148148,0,3.555556 +L 0,3.555556,0.592593,3.259259 +L 0.592593,3.259259,1.185185,3.555556 +L 1.185185,3.555556,0.592593,4.148148 +L 0.592593,3.851852,0.296296,3.555556 +L 0.296296,3.555556,0.888889,3.555556 +L 0.888889,3.555556,0.592593,3.851852 +L 0.592593,0.888889,0,0.296296 +L 0,0.296296,0.592593,0 +L 0.592593,0,1.185185,0.296296 +L 1.185185,0.296296,0.592593,0.888889 +L 0.592593,0.592593,0.296296,0.296296 +L 0.296296,0.296296,0.888889,0.296296 +L 0.888889,0.296296,0.592593,0.592593 + +[;] 17 +L 0.592593,4.148148,0,3.555556 +L 0,3.555556,0.592593,3.259259 +L 0.592593,3.259259,1.185185,3.555556 +L 1.185185,3.555556,0.592593,4.148148 +L 0.592593,3.851852,0.296296,3.555556 +L 0.296296,3.555556,0.888889,3.555556 +L 0.888889,3.555556,0.592593,3.851852 +L 0.592593,-0.888889,0.592593,-0.296296 +L 0.592593,-0.296296,0,0.296296 +L 0,0.296296,0.592593,0.888889 +L 0.592593,0.888889,0.888889,0.296296 +L 0.888889,0.296296,0.888889,-0.296296 +L 0.888889,-0.296296,0.592593,-0.888889 +L 0.592593,-0.888889,0,-1.185185 +L 0.592593,0.592593,0.296296,0.296296 +L 0.296296,0.296296,0.592593,0 +L 0.592593,0,0.592593,0.592593 + +[<] 2 +L 4.740741,5.333333,0,2.666667 +L 0,2.666667,4.740741,0 + +[=] 8 +L 0,4.148148,5.037037,4.148148 +L 5.037037,4.148148,5.037037,3.851852 +L 0,4.148148,0,3.851852 +L 0,3.851852,5.037037,3.851852 +L 0,1.777778,5.037037,1.777778 +L 5.037037,1.777778,5.037037,1.481481 +L 0,1.777778,0,1.481481 +L 0,1.481481,5.037037,1.481481 + +[>] 2 +L 0,5.333333,4.740741,2.666667 +L 4.740741,2.666667,0,0 + +[?] 35 +L 0,5.037037,0.296296,5.62963 +L 0.296296,5.62963,0.592593,5.925926 +L 0.592593,5.925926,1.481481,6.222222 +L 1.481481,6.222222,2.074074,6.222222 +L 2.074074,6.222222,2.962963,5.925926 +L 2.962963,5.925926,3.259259,5.62963 +L 3.259259,5.62963,3.555556,5.037037 +L 3.555556,5.037037,3.555556,4.444444 +L 3.555556,4.444444,3.259259,3.851852 +L 3.259259,3.851852,2.666667,3.259259 +L 2.666667,3.259259,2.074074,2.962963 +L 0.296296,5.037037,0.592593,5.62963 +L 2.962963,5.62963,3.259259,5.333333 +L 3.259259,5.333333,3.259259,4.148148 +L 3.259259,4.148148,2.962963,3.851852 +L 0,5.037037,0.592593,4.740741 +L 0.592593,4.740741,0.592593,5.333333 +L 0.592593,5.333333,0.888889,5.925926 +L 0.888889,5.925926,1.481481,6.222222 +L 2.074074,6.222222,2.666667,5.925926 +L 2.666667,5.925926,2.962963,5.333333 +L 2.962963,5.333333,2.962963,4.148148 +L 2.962963,4.148148,2.666667,3.555556 +L 2.666667,3.555556,2.074074,2.962963 +L 1.777778,2.962963,1.777778,2.074074 +L 1.777778,2.074074,2.074074,2.962963 +L 2.074074,2.962963,1.481481,2.962963 +L 1.481481,2.962963,1.777778,2.074074 +L 1.777778,0.888889,1.185185,0.296296 +L 1.185185,0.296296,1.777778,0 +L 1.777778,0,2.37037,0.296296 +L 2.37037,0.296296,1.777778,0.888889 +L 1.777778,0.592593,1.481481,0.296296 +L 1.481481,0.296296,2.074074,0.296296 +L 2.074074,0.296296,1.777778,0.592593 + +[@] 48 +L 4.444444,3.851852,4.148148,4.444444 +L 4.148148,4.444444,3.555556,4.740741 +L 3.555556,4.740741,2.666667,4.740741 +L 2.666667,4.740741,2.074074,4.444444 +L 2.074074,4.444444,1.777778,4.148148 +L 1.777778,4.148148,1.481481,3.259259 +L 1.481481,3.259259,1.481481,2.37037 +L 1.481481,2.37037,1.777778,1.777778 +L 1.777778,1.777778,2.37037,1.481481 +L 2.37037,1.481481,3.259259,1.481481 +L 3.259259,1.481481,3.851852,1.777778 +L 3.851852,1.777778,4.148148,2.37037 +L 2.666667,4.740741,2.074074,4.148148 +L 2.074074,4.148148,1.777778,3.259259 +L 1.777778,3.259259,1.777778,2.37037 +L 1.777778,2.37037,2.074074,1.777778 +L 2.074074,1.777778,2.37037,1.481481 +L 4.444444,4.740741,4.148148,2.37037 +L 4.148148,2.37037,4.148148,1.777778 +L 4.148148,1.777778,4.740741,1.481481 +L 4.740741,1.481481,5.333333,1.481481 +L 5.333333,1.481481,5.925926,2.074074 +L 5.925926,2.074074,6.222222,2.962963 +L 6.222222,2.962963,6.222222,3.555556 +L 6.222222,3.555556,5.925926,4.444444 +L 5.925926,4.444444,5.62963,5.037037 +L 5.62963,5.037037,5.037037,5.62963 +L 5.037037,5.62963,4.444444,5.925926 +L 4.444444,5.925926,3.555556,6.222222 +L 3.555556,6.222222,2.666667,6.222222 +L 2.666667,6.222222,1.777778,5.925926 +L 1.777778,5.925926,1.185185,5.62963 +L 1.185185,5.62963,0.592593,5.037037 +L 0.592593,5.037037,0.296296,4.444444 +L 0.296296,4.444444,0,3.555556 +L 0,3.555556,0,2.666667 +L 0,2.666667,0.296296,1.777778 +L 0.296296,1.777778,0.592593,1.185185 +L 0.592593,1.185185,1.185185,0.592593 +L 1.185185,0.592593,1.777778,0.296296 +L 1.777778,0.296296,2.666667,0 +L 2.666667,0,3.555556,0 +L 3.555556,0,4.444444,0.296296 +L 4.444444,0.296296,5.037037,0.592593 +L 5.037037,0.592593,5.333333,0.888889 +L 4.740741,4.740741,4.444444,2.37037 +L 4.444444,2.37037,4.444444,1.777778 +L 4.444444,1.777778,4.740741,1.481481 + +[A] 44 +L 0.296296,5.62963,0.592593,5.333333 +L 0.592593,5.333333,0.296296,5.037037 +L 0.296296,5.037037,0,5.333333 +L 0,5.333333,0.296296,5.925926 +L 0.296296,5.925926,0.888889,6.222222 +L 0.888889,6.222222,1.481481,6.222222 +L 1.481481,6.222222,2.074074,5.925926 +L 2.074074,5.925926,2.37037,5.62963 +L 2.37037,5.62963,2.666667,4.740741 +L 2.666667,4.740741,2.666667,3.555556 +L 2.666667,3.555556,2.37037,2.666667 +L 2.37037,2.666667,1.777778,2.074074 +L 1.777778,2.074074,1.185185,1.777778 +L 1.185185,1.777778,0.296296,1.481481 +L 2.074074,5.62963,2.37037,4.740741 +L 2.37037,4.740741,2.37037,3.259259 +L 2.37037,3.259259,2.074074,2.666667 +L 1.481481,6.222222,1.777778,5.925926 +L 1.777778,5.925926,2.074074,5.037037 +L 2.074074,5.037037,2.074074,3.259259 +L 2.074074,3.259259,1.777778,2.37037 +L 1.777778,2.37037,1.185185,1.777778 +L 1.185185,1.481481,2.074074,0.592593 +L 0.888889,1.481481,2.074074,0.296296 +L 0.296296,1.481481,1.777778,0 +L 1.777778,0,3.851852,1.481481 +L 5.925926,5.925926,5.62963,5.62963 +L 5.62963,5.62963,5.925926,5.62963 +L 5.925926,5.62963,5.925926,5.925926 +L 5.925926,5.925926,5.62963,6.222222 +L 5.62963,6.222222,5.037037,6.222222 +L 5.037037,6.222222,4.444444,5.925926 +L 4.444444,5.925926,4.148148,5.62963 +L 4.148148,5.62963,3.851852,5.037037 +L 3.851852,5.037037,3.851852,0.592593 +L 3.851852,0.592593,4.444444,0 +L 4.444444,0,5.62963,1.185185 +L 4.444444,5.62963,4.148148,5.037037 +L 4.148148,5.037037,4.148148,0.888889 +L 4.148148,0.888889,4.740741,0.296296 +L 5.037037,6.222222,4.740741,5.925926 +L 4.740741,5.925926,4.444444,5.037037 +L 4.444444,5.037037,4.444444,1.185185 +L 4.444444,1.185185,5.037037,0.592593 + +[B] 73 +L 0,2.962963,0,2.666667 +L 0,2.666667,0.296296,2.37037 +L 0.296296,2.37037,0.888889,2.37037 +L 0.888889,2.37037,1.481481,2.666667 +L 1.481481,2.666667,1.481481,3.555556 +L 1.481481,3.555556,1.185185,4.148148 +L 1.185185,4.148148,0.592593,5.037037 +L 0.592593,5.037037,0.592593,5.62963 +L 0.592593,5.62963,1.185185,6.222222 +L 1.185185,3.555556,0.592593,4.740741 +L 0.888889,2.37037,1.185185,2.666667 +L 1.185185,2.666667,1.185185,3.259259 +L 1.185185,3.259259,0.592593,4.148148 +L 0.592593,4.148148,0.296296,4.740741 +L 0.296296,4.740741,0.296296,5.333333 +L 0.296296,5.333333,0.592593,5.925926 +L 0.592593,5.925926,1.185185,6.222222 +L 1.185185,6.222222,2.074074,6.222222 +L 2.074074,6.222222,2.666667,5.925926 +L 2.666667,5.925926,2.962963,5.62963 +L 2.962963,5.62963,3.259259,5.037037 +L 3.259259,5.037037,3.259259,2.666667 +L 3.259259,2.666667,2.962963,1.777778 +L 2.962963,1.777778,2.37037,1.185185 +L 2.666667,5.62963,2.962963,5.037037 +L 2.962963,5.037037,2.962963,2.074074 +L 2.074074,6.222222,2.37037,5.925926 +L 2.37037,5.925926,2.666667,5.037037 +L 2.666667,5.037037,2.666667,1.777778 +L 2.666667,1.777778,2.37037,1.185185 +L 3.259259,5.333333,3.555556,5.925926 +L 3.555556,5.925926,4.148148,6.222222 +L 4.148148,6.222222,4.740741,6.222222 +L 4.740741,6.222222,5.333333,5.925926 +L 5.333333,5.925926,5.62963,5.62963 +L 5.62963,5.62963,5.925926,5.037037 +L 5.925926,5.037037,6.222222,4.740741 +L 5.333333,5.62963,5.62963,5.037037 +L 4.740741,6.222222,5.037037,5.925926 +L 5.037037,5.925926,5.333333,5.037037 +L 5.333333,5.037037,5.62963,4.740741 +L 5.62963,4.740741,6.222222,4.740741 +L 6.222222,4.740741,3.259259,3.259259 +L 5.333333,4.148148,5.925926,3.555556 +L 5.925926,3.555556,6.222222,2.666667 +L 6.222222,2.666667,6.222222,1.777778 +L 6.222222,1.777778,5.925926,0.888889 +L 5.925926,0.888889,5.333333,0.296296 +L 5.333333,0.296296,4.444444,0 +L 4.444444,0,3.555556,0 +L 3.555556,0,2.666667,0.296296 +L 2.666667,0.296296,0.888889,1.185185 +L 0.888889,1.185185,0.592593,1.185185 +L 0.592593,1.185185,0.296296,0.888889 +L 5.037037,3.851852,5.333333,3.851852 +L 5.333333,3.851852,5.925926,3.259259 +L 4.444444,3.851852,5.333333,3.555556 +L 5.333333,3.555556,5.925926,2.962963 +L 5.925926,2.962963,6.222222,2.37037 +L 3.851852,0.296296,3.259259,0.296296 +L 3.259259,0.296296,1.481481,1.185185 +L 1.481481,1.185185,1.185185,1.185185 +L 5.62963,0.592593,5.037037,0.296296 +L 5.037037,0.296296,4.148148,0.296296 +L 4.148148,0.296296,3.259259,0.592593 +L 3.259259,0.592593,2.074074,1.185185 +L 2.074074,1.185185,1.185185,1.481481 +L 1.185185,1.481481,0.592593,1.481481 +L 0.592593,1.481481,0.296296,0.888889 +L 0.296296,0.888889,0.296296,0.296296 +L 0.296296,0.296296,0.592593,0 +L 0.592593,0,0.888889,0.296296 +L 0.888889,0.296296,0.592593,0.592593 + +[C] 61 +L 2.666667,5.62963,2.074074,6.222222 +L 2.074074,6.222222,1.481481,6.222222 +L 1.481481,6.222222,0.888889,5.925926 +L 0.888889,5.925926,0.296296,5.037037 +L 0.296296,5.037037,0,3.851852 +L 0,3.851852,0,2.666667 +L 0,2.666667,0.296296,1.481481 +L 0.296296,1.481481,0.888889,0.592593 +L 0.888889,0.592593,1.481481,0.296296 +L 1.481481,0.296296,2.37037,0 +L 2.37037,0,3.259259,0 +L 3.259259,0,4.148148,0.296296 +L 4.148148,0.296296,4.740741,0.592593 +L 4.740741,0.592593,5.333333,1.185185 +L 0.888889,5.62963,0.592593,5.037037 +L 0.592593,5.037037,0.296296,4.148148 +L 0.296296,4.148148,0.296296,2.666667 +L 0.296296,2.666667,0.592593,1.481481 +L 0.592593,1.481481,1.185185,0.592593 +L 1.185185,0.592593,2.074074,0.296296 +L 1.481481,6.222222,1.185185,5.925926 +L 1.185185,5.925926,0.888889,5.333333 +L 0.888889,5.333333,0.592593,4.148148 +L 0.592593,4.148148,0.592593,2.962963 +L 0.592593,2.962963,0.888889,1.777778 +L 0.888889,1.777778,1.185185,1.185185 +L 1.185185,1.185185,1.777778,0.592593 +L 1.777778,0.592593,2.666667,0.296296 +L 2.666667,0.296296,3.555556,0.296296 +L 3.555556,0.296296,4.444444,0.592593 +L 4.444444,0.592593,5.333333,1.185185 +L 3.555556,6.222222,2.666667,5.62963 +L 2.666667,5.62963,2.37037,5.333333 +L 2.37037,5.333333,2.074074,4.740741 +L 2.074074,4.740741,2.074074,4.444444 +L 2.074074,4.444444,2.37037,3.851852 +L 2.37037,3.851852,3.259259,3.259259 +L 3.259259,3.259259,3.555556,2.666667 +L 3.555556,2.666667,3.555556,2.074074 +L 2.37037,4.740741,2.37037,4.444444 +L 2.37037,4.444444,3.555556,3.259259 +L 3.555556,3.259259,3.555556,2.962963 +L 2.37037,5.333333,2.37037,5.037037 +L 2.37037,5.037037,2.666667,4.444444 +L 2.666667,4.444444,3.555556,3.851852 +L 3.555556,3.851852,3.851852,3.259259 +L 3.851852,3.259259,3.851852,2.666667 +L 3.851852,2.666667,3.555556,2.074074 +L 3.555556,2.074074,2.962963,1.777778 +L 2.962963,1.777778,2.666667,1.777778 +L 2.666667,1.777778,2.074074,2.074074 +L 2.074074,2.074074,1.777778,2.666667 +L 3.555556,6.222222,3.851852,5.925926 +L 3.851852,5.925926,4.444444,5.62963 +L 4.444444,5.62963,5.037037,5.62963 +L 3.555556,5.925926,3.851852,5.62963 +L 3.851852,5.62963,4.148148,5.62963 +L 3.259259,5.925926,3.851852,5.333333 +L 3.851852,5.333333,4.444444,5.333333 +L 4.444444,5.333333,5.037037,5.62963 +L 5.037037,5.62963,5.333333,5.925926 + +[D] 63 +L 0,4.444444,0,4.740741 +L 0,4.740741,0.296296,5.333333 +L 0.296296,5.333333,0.888889,5.925926 +L 0.888889,5.925926,1.777778,6.222222 +L 1.777778,6.222222,2.962963,6.222222 +L 2.962963,6.222222,3.851852,5.925926 +L 3.851852,5.925926,4.444444,5.62963 +L 4.444444,5.62963,5.037037,5.037037 +L 5.037037,5.037037,5.62963,4.148148 +L 5.62963,4.148148,5.925926,2.962963 +L 5.925926,2.962963,5.925926,1.777778 +L 5.925926,1.777778,5.62963,0.888889 +L 5.62963,0.888889,5.037037,0.296296 +L 5.037037,0.296296,4.148148,0 +L 4.148148,0,3.259259,0 +L 3.259259,0,2.37037,0.296296 +L 2.37037,0.296296,0.592593,1.185185 +L 0.592593,1.185185,0.296296,1.185185 +L 0.296296,1.185185,0,0.888889 +L 0.888889,5.62963,1.481481,5.925926 +L 1.481481,5.925926,2.962963,5.925926 +L 2.962963,5.925926,3.851852,5.62963 +L 3.851852,5.62963,4.444444,5.333333 +L 4.444444,5.333333,5.037037,4.740741 +L 5.037037,4.740741,5.62963,3.851852 +L 3.555556,0.296296,2.962963,0.296296 +L 2.962963,0.296296,1.185185,1.185185 +L 1.185185,1.185185,0.888889,1.185185 +L 0,4.740741,0.592593,5.333333 +L 0.592593,5.333333,1.481481,5.62963 +L 1.481481,5.62963,2.962963,5.62963 +L 2.962963,5.62963,3.851852,5.333333 +L 3.851852,5.333333,4.444444,5.037037 +L 4.444444,5.037037,5.037037,4.444444 +L 5.037037,4.444444,5.62963,3.555556 +L 5.62963,3.555556,5.925926,2.666667 +L 5.333333,0.592593,4.740741,0.296296 +L 4.740741,0.296296,3.851852,0.296296 +L 3.851852,0.296296,2.962963,0.592593 +L 2.962963,0.592593,1.777778,1.185185 +L 1.777778,1.185185,0.888889,1.481481 +L 0.888889,1.481481,0.296296,1.481481 +L 0.296296,1.481481,0,0.888889 +L 0,0.888889,0,0.296296 +L 0,0.296296,0.296296,0 +L 0.296296,0,0.592593,0.296296 +L 0.592593,0.296296,0.296296,0.592593 +L 2.37037,5.62963,1.481481,4.740741 +L 1.481481,4.740741,1.185185,4.148148 +L 1.185185,4.148148,1.185185,3.555556 +L 1.185185,3.555556,1.777778,2.37037 +L 1.777778,2.37037,1.777778,1.777778 +L 1.481481,3.851852,1.481481,3.555556 +L 1.481481,3.555556,1.777778,2.962963 +L 1.777778,2.962963,1.777778,2.666667 +L 1.481481,4.740741,1.481481,4.148148 +L 1.481481,4.148148,2.074074,2.962963 +L 2.074074,2.962963,2.074074,2.37037 +L 2.074074,2.37037,1.777778,1.777778 +L 1.777778,1.777778,1.481481,1.481481 +L 1.481481,1.481481,0.888889,1.481481 +L 0.888889,1.481481,0.592593,1.777778 +L 0.592593,1.777778,0.592593,2.074074 + +[E] 69 +L 2.666667,5.62963,2.074074,6.222222 +L 2.074074,6.222222,1.481481,6.222222 +L 1.481481,6.222222,0.888889,5.925926 +L 0.888889,5.925926,0.296296,5.037037 +L 0.296296,5.037037,0,3.851852 +L 0,3.851852,0,2.666667 +L 0,2.666667,0.296296,1.481481 +L 0.296296,1.481481,0.888889,0.592593 +L 0.888889,0.592593,1.481481,0.296296 +L 1.481481,0.296296,2.37037,0 +L 2.37037,0,3.259259,0 +L 3.259259,0,4.148148,0.296296 +L 4.148148,0.296296,4.740741,0.592593 +L 4.740741,0.592593,5.333333,1.185185 +L 0.888889,5.62963,0.592593,5.037037 +L 0.592593,5.037037,0.296296,4.148148 +L 0.296296,4.148148,0.296296,2.666667 +L 0.296296,2.666667,0.592593,1.481481 +L 0.592593,1.481481,1.185185,0.592593 +L 1.185185,0.592593,2.074074,0.296296 +L 1.481481,6.222222,1.185185,5.925926 +L 1.185185,5.925926,0.888889,5.333333 +L 0.888889,5.333333,0.592593,4.148148 +L 0.592593,4.148148,0.592593,2.962963 +L 0.592593,2.962963,0.888889,1.777778 +L 0.888889,1.777778,1.185185,1.185185 +L 1.185185,1.185185,1.777778,0.592593 +L 1.777778,0.592593,2.666667,0.296296 +L 2.666667,0.296296,3.555556,0.296296 +L 3.555556,0.296296,4.444444,0.592593 +L 4.444444,0.592593,5.333333,1.185185 +L 3.555556,6.222222,2.666667,5.62963 +L 2.666667,5.62963,2.37037,5.333333 +L 2.37037,5.333333,2.074074,4.740741 +L 2.074074,4.740741,2.074074,4.444444 +L 2.074074,4.444444,2.37037,3.851852 +L 2.37037,3.851852,3.259259,3.259259 +L 3.259259,3.259259,3.555556,2.666667 +L 3.555556,2.666667,3.555556,2.074074 +L 2.37037,4.740741,2.37037,4.444444 +L 2.37037,4.444444,3.555556,3.259259 +L 3.555556,3.259259,3.555556,2.962963 +L 2.37037,5.333333,2.37037,5.037037 +L 2.37037,5.037037,2.666667,4.444444 +L 2.666667,4.444444,3.555556,3.851852 +L 3.555556,3.851852,3.851852,3.259259 +L 3.851852,3.259259,3.851852,2.666667 +L 3.851852,2.666667,3.555556,2.074074 +L 3.555556,2.074074,2.962963,1.777778 +L 2.962963,1.777778,2.666667,1.777778 +L 2.666667,1.777778,2.074074,2.074074 +L 2.074074,2.074074,1.777778,2.666667 +L 3.555556,6.222222,3.851852,5.925926 +L 3.851852,5.925926,4.444444,5.62963 +L 4.444444,5.62963,5.037037,5.62963 +L 3.555556,5.925926,3.851852,5.62963 +L 3.851852,5.62963,4.148148,5.62963 +L 3.259259,5.925926,3.851852,5.333333 +L 3.851852,5.333333,4.444444,5.333333 +L 4.444444,5.333333,5.037037,5.62963 +L 5.037037,5.62963,5.333333,5.925926 +L 3.555556,3.851852,4.740741,4.740741 +L 4.740741,4.740741,5.037037,4.444444 +L 5.037037,4.444444,5.62963,4.444444 +L 4.444444,4.444444,4.740741,4.148148 +L 4.740741,4.148148,5.037037,4.148148 +L 4.148148,4.148148,4.444444,3.851852 +L 4.444444,3.851852,5.037037,3.851852 +L 5.037037,3.851852,5.62963,4.444444 + +[F] 70 +L 1.185185,3.851852,0.592593,4.148148 +L 0.592593,4.148148,0.296296,4.740741 +L 0.296296,4.740741,0.296296,5.333333 +L 0.296296,5.333333,0.592593,5.925926 +L 0.592593,5.925926,1.481481,6.222222 +L 1.481481,6.222222,2.37037,6.222222 +L 2.37037,6.222222,3.259259,5.925926 +L 3.259259,5.925926,4.444444,5.333333 +L 0.592593,5.62963,1.185185,5.925926 +L 1.185185,5.925926,2.666667,5.925926 +L 2.666667,5.925926,3.555556,5.62963 +L 0.296296,4.740741,0.592593,5.333333 +L 0.592593,5.333333,1.185185,5.62963 +L 1.185185,5.62963,2.666667,5.62963 +L 2.666667,5.62963,4.444444,5.333333 +L 4.444444,5.333333,5.037037,5.333333 +L 5.037037,5.333333,5.333333,5.62963 +L 5.333333,5.62963,5.333333,5.925926 +L 5.333333,5.925926,5.037037,6.222222 +L 5.037037,6.222222,4.740741,6.222222 +L 2.962963,5.62963,2.666667,5.333333 +L 2.666667,5.333333,2.37037,4.740741 +L 2.37037,4.740741,2.37037,4.148148 +L 2.37037,4.148148,2.666667,3.555556 +L 2.666667,3.555556,3.851852,2.37037 +L 3.851852,2.37037,4.148148,1.481481 +L 4.148148,1.481481,4.148148,0.592593 +L 4.148148,0.592593,3.851852,-0.296296 +L 3.851852,-0.296296,3.555556,-0.592593 +L 3.555556,-0.592593,2.962963,-0.888889 +L 3.259259,3.259259,4.148148,2.37037 +L 4.148148,2.37037,4.444444,1.481481 +L 4.444444,1.481481,4.444444,0.592593 +L 4.444444,0.592593,4.148148,0 +L 2.37037,4.148148,2.962963,3.555556 +L 2.962963,3.555556,3.851852,2.962963 +L 3.851852,2.962963,4.444444,2.37037 +L 4.444444,2.37037,4.740741,1.481481 +L 4.740741,1.481481,4.740741,0.592593 +L 4.740741,0.592593,4.444444,0 +L 4.444444,0,3.851852,-0.592593 +L 3.851852,-0.592593,2.962963,-0.888889 +L 2.962963,-0.888889,1.777778,-0.888889 +L 1.777778,-0.888889,0.888889,-0.592593 +L 0.888889,-0.592593,0.592593,-0.296296 +L 0.592593,-0.296296,0.296296,0.296296 +L 0.296296,0.296296,0.296296,1.185185 +L 0.296296,1.185185,0.888889,2.074074 +L 0.888889,2.074074,0.888889,2.666667 +L 0.888889,2.666667,0.592593,2.962963 +L 0.888889,-0.296296,0.592593,0 +L 0.592593,0,0.592593,1.185185 +L 0.592593,1.185185,0.888889,1.777778 +L 1.777778,-0.888889,1.185185,-0.592593 +L 1.185185,-0.592593,0.888889,0 +L 0.888889,0,0.888889,1.185185 +L 0.888889,1.185185,1.185185,2.074074 +L 1.185185,2.074074,1.185185,2.666667 +L 1.185185,2.666667,0.888889,2.962963 +L 0.888889,2.962963,0.296296,2.962963 +L 0.296296,2.962963,0,2.666667 +L 0,2.666667,0,2.37037 +L 3.555556,3.259259,4.740741,4.444444 +L 4.740741,4.444444,5.037037,4.148148 +L 5.037037,4.148148,5.62963,4.148148 +L 4.444444,4.148148,4.740741,3.851852 +L 4.740741,3.851852,5.037037,3.851852 +L 4.148148,3.851852,4.444444,3.555556 +L 4.444444,3.555556,5.037037,3.555556 +L 5.037037,3.555556,5.62963,4.148148 + +[G] 75 +L 3.851852,5.037037,3.555556,5.62963 +L 3.555556,5.62963,3.259259,5.925926 +L 3.259259,5.925926,2.666667,6.222222 +L 2.666667,6.222222,1.777778,6.222222 +L 1.777778,6.222222,0.888889,5.925926 +L 0.888889,5.925926,0.296296,5.037037 +L 0.296296,5.037037,0,3.851852 +L 0,3.851852,0,2.666667 +L 0,2.666667,0.296296,1.777778 +L 0.296296,1.777778,0.592593,1.185185 +L 0.592593,1.185185,1.185185,0.592593 +L 1.185185,0.592593,1.777778,0.296296 +L 1.777778,0.296296,2.666667,0 +L 2.666667,0,3.555556,0 +L 3.555556,0,4.444444,0.296296 +L 4.444444,0.296296,5.037037,0.592593 +L 5.037037,0.592593,5.62963,1.185185 +L 5.62963,1.185185,5.925926,2.074074 +L 5.925926,2.074074,5.925926,2.962963 +L 5.925926,2.962963,5.62963,3.851852 +L 5.62963,3.851852,5.037037,4.444444 +L 0.888889,5.62963,0.592593,5.037037 +L 0.592593,5.037037,0.296296,4.148148 +L 0.296296,4.148148,0.296296,2.666667 +L 0.296296,2.666667,0.592593,1.777778 +L 0.592593,1.777778,0.888889,1.185185 +L 5.333333,1.185185,5.62963,1.777778 +L 5.62963,1.777778,5.62963,2.962963 +L 5.62963,2.962963,5.333333,3.851852 +L 5.333333,3.851852,5.037037,4.148148 +L 1.777778,6.222222,1.185185,5.925926 +L 1.185185,5.925926,0.888889,5.333333 +L 0.888889,5.333333,0.592593,4.148148 +L 0.592593,4.148148,0.592593,2.666667 +L 0.592593,2.666667,0.888889,1.481481 +L 0.888889,1.481481,1.185185,0.888889 +L 1.185185,0.888889,1.777778,0.296296 +L 4.444444,0.296296,5.037037,0.888889 +L 5.037037,0.888889,5.333333,1.777778 +L 5.333333,1.777778,5.333333,2.962963 +L 5.333333,2.962963,5.037037,3.555556 +L 5.037037,3.555556,4.444444,4.148148 +L 3.851852,6.222222,2.962963,5.62963 +L 2.962963,5.62963,2.37037,5.037037 +L 2.37037,5.037037,2.074074,4.444444 +L 2.074074,4.444444,2.074074,4.148148 +L 2.074074,4.148148,2.37037,3.555556 +L 2.37037,3.555556,3.259259,2.962963 +L 3.259259,2.962963,3.555556,2.37037 +L 3.555556,2.37037,3.555556,1.777778 +L 2.37037,4.444444,2.37037,4.148148 +L 2.37037,4.148148,3.555556,2.962963 +L 3.555556,2.962963,3.555556,2.666667 +L 2.37037,5.037037,2.37037,4.740741 +L 2.37037,4.740741,2.666667,4.148148 +L 2.666667,4.148148,3.555556,3.555556 +L 3.555556,3.555556,3.851852,2.962963 +L 3.851852,2.962963,3.851852,2.37037 +L 3.851852,2.37037,3.555556,1.777778 +L 3.555556,1.777778,2.962963,1.481481 +L 2.962963,1.481481,2.666667,1.481481 +L 2.666667,1.481481,2.074074,1.777778 +L 2.074074,1.777778,1.777778,2.37037 +L 3.555556,3.555556,5.037037,4.444444 +L 5.037037,4.444444,5.333333,5.037037 +L 5.925926,6.222222,5.333333,5.037037 +L 5.037037,5.925926,6.222222,5.333333 +L 5.925926,6.222222,5.62963,5.925926 +L 5.62963,5.925926,5.037037,5.925926 +L 5.037037,5.925926,5.333333,5.62963 +L 5.333333,5.62963,5.333333,5.037037 +L 5.333333,5.037037,5.62963,5.333333 +L 5.62963,5.333333,6.222222,5.333333 +L 6.222222,5.333333,5.925926,5.62963 +L 5.925926,5.62963,5.925926,6.222222 + +[H] 66 +L 2.962963,6.222222,2.37037,5.925926 +L 2.37037,5.925926,1.777778,5.333333 +L 1.777778,5.333333,1.481481,4.740741 +L 1.481481,4.740741,1.481481,4.148148 +L 1.481481,4.148148,1.777778,3.555556 +L 1.777778,3.555556,2.37037,2.962963 +L 2.37037,2.962963,2.666667,2.37037 +L 2.666667,2.37037,2.666667,1.777778 +L 1.777778,4.444444,1.777778,4.148148 +L 1.777778,4.148148,2.666667,2.962963 +L 2.666667,2.962963,2.666667,2.666667 +L 1.777778,5.333333,1.777778,4.740741 +L 1.777778,4.740741,2.074074,4.148148 +L 2.074074,4.148148,2.666667,3.555556 +L 2.666667,3.555556,2.962963,2.962963 +L 2.962963,2.962963,2.962963,2.37037 +L 2.962963,2.37037,2.666667,1.777778 +L 2.666667,1.777778,2.37037,1.481481 +L 2.37037,1.481481,1.777778,1.185185 +L 1.777778,1.185185,1.185185,1.185185 +L 1.185185,1.185185,0.592593,1.481481 +L 0.592593,1.481481,0.296296,1.777778 +L 0.296296,1.777778,0,2.37037 +L 0,2.37037,0,2.962963 +L 0,2.962963,0.296296,3.259259 +L 0.296296,3.259259,0.592593,2.962963 +L 0.592593,2.962963,0.296296,2.666667 +L 2.962963,6.222222,3.555556,5.62963 +L 3.555556,5.62963,4.148148,5.62963 +L 4.148148,5.62963,4.740741,5.925926 +L 2.666667,5.925926,3.259259,5.62963 +L 2.37037,5.925926,2.666667,5.62963 +L 2.666667,5.62963,3.259259,5.333333 +L 3.259259,5.333333,3.851852,5.333333 +L 3.851852,5.333333,4.740741,5.925926 +L 2.962963,3.259259,5.037037,4.740741 +L 5.037037,4.740741,5.62963,3.851852 +L 5.62963,3.851852,5.925926,2.962963 +L 5.925926,2.962963,5.925926,2.074074 +L 5.925926,2.074074,5.62963,1.185185 +L 5.62963,1.185185,5.037037,0.592593 +L 5.037037,0.592593,4.148148,0.296296 +L 4.148148,0.296296,2.962963,0 +L 4.740741,4.444444,5.333333,3.851852 +L 5.333333,3.851852,5.62963,2.962963 +L 5.62963,2.962963,5.62963,1.777778 +L 5.62963,1.777778,5.333333,1.185185 +L 4.148148,4.148148,4.444444,4.148148 +L 4.444444,4.148148,5.037037,3.555556 +L 5.037037,3.555556,5.333333,2.666667 +L 5.333333,2.666667,5.333333,1.481481 +L 5.333333,1.481481,5.037037,0.888889 +L 5.037037,0.888889,4.740741,0.592593 +L 4.740741,0.592593,4.148148,0.296296 +L 4.148148,0.296296,3.555556,0.296296 +L 3.555556,0.296296,2.962963,0.592593 +L 2.962963,0.592593,2.37037,0.592593 +L 2.37037,0.592593,1.777778,0.296296 +L 1.777778,0.296296,1.481481,-0.296296 +L 1.481481,-0.296296,1.777778,-0.888889 +L 1.777778,-0.888889,2.37037,-1.185185 +L 2.37037,-1.185185,2.962963,-1.185185 +L 2.962963,-1.185185,3.555556,-0.888889 +L 3.259259,0.296296,2.666667,0.296296 +L 2.962963,0,2.37037,0.296296 +L 2.37037,0.296296,1.777778,0.296296 + +[I] 67 +L 2.074074,3.259259,1.481481,3.259259 +L 1.481481,3.259259,0.888889,3.555556 +L 0.888889,3.555556,0.592593,3.851852 +L 0.592593,3.851852,0.296296,4.444444 +L 0.296296,4.444444,0.296296,5.037037 +L 0.296296,5.037037,0.592593,5.62963 +L 0.592593,5.62963,0.888889,5.925926 +L 0.888889,5.925926,1.777778,6.222222 +L 1.777778,6.222222,2.37037,6.222222 +L 2.37037,6.222222,3.259259,5.925926 +L 3.259259,5.925926,4.148148,5.037037 +L 4.148148,5.037037,4.740741,4.740741 +L 0.888889,5.62963,1.481481,5.925926 +L 1.481481,5.925926,2.666667,5.925926 +L 2.666667,5.925926,3.259259,5.62963 +L 3.259259,5.62963,3.555556,5.333333 +L 0.296296,5.037037,0.592593,5.333333 +L 0.592593,5.333333,1.185185,5.62963 +L 1.185185,5.62963,2.37037,5.62963 +L 2.37037,5.62963,3.259259,5.333333 +L 3.259259,5.333333,3.851852,5.037037 +L 3.851852,5.037037,4.740741,4.740741 +L 4.740741,4.740741,5.333333,4.740741 +L 5.333333,4.740741,5.62963,5.037037 +L 5.62963,5.037037,5.62963,5.62963 +L 5.62963,5.62963,5.333333,5.925926 +L 5.333333,5.925926,4.740741,5.925926 +L 0.296296,0.888889,0.592593,0.592593 +L 0.592593,0.592593,0.296296,0.296296 +L 0.296296,0.296296,0,0.592593 +L 0,0.592593,0,1.185185 +L 0,1.185185,0.296296,1.481481 +L 0.296296,1.481481,0.888889,1.481481 +L 0.888889,1.481481,1.481481,1.185185 +L 1.481481,1.185185,2.074074,0.592593 +L 2.074074,0.592593,2.666667,-0.296296 +L 2.666667,-0.296296,3.259259,-0.888889 +L 1.481481,0.888889,1.777778,0.592593 +L 1.777778,0.592593,2.37037,-0.296296 +L 2.37037,-0.296296,2.666667,-0.592593 +L 0.888889,1.481481,1.185185,1.185185 +L 1.185185,1.185185,1.481481,0.592593 +L 1.481481,0.592593,2.074074,-0.296296 +L 2.074074,-0.296296,2.37037,-0.592593 +L 2.37037,-0.592593,2.962963,-0.888889 +L 2.962963,-0.888889,3.851852,-0.888889 +L 3.851852,-0.888889,4.444444,-0.592593 +L 4.444444,-0.592593,4.740741,-0.296296 +L 4.740741,-0.296296,5.037037,0.296296 +L 5.037037,0.296296,5.037037,1.185185 +L 5.037037,1.185185,4.740741,1.777778 +L 4.740741,1.777778,4.148148,2.666667 +L 4.148148,2.666667,3.851852,3.259259 +L 3.851852,3.259259,3.851852,3.555556 +L 4.740741,0.888889,4.740741,1.185185 +L 4.740741,1.185185,3.851852,2.666667 +L 3.851852,2.666667,3.851852,2.962963 +L 4.444444,-0.592593,4.740741,0 +L 4.740741,0,4.740741,0.592593 +L 4.740741,0.592593,4.444444,1.185185 +L 4.444444,1.185185,3.851852,2.074074 +L 3.851852,2.074074,3.555556,2.666667 +L 3.555556,2.666667,3.555556,3.259259 +L 3.555556,3.259259,4.148148,3.851852 +L 4.148148,3.851852,4.740741,3.851852 +L 4.740741,3.851852,5.037037,3.555556 +L 5.037037,3.555556,5.037037,3.259259 + +[J] 67 +L 2.074074,3.259259,1.481481,3.259259 +L 1.481481,3.259259,0.888889,3.555556 +L 0.888889,3.555556,0.592593,3.851852 +L 0.592593,3.851852,0.296296,4.444444 +L 0.296296,4.444444,0.296296,5.037037 +L 0.296296,5.037037,0.592593,5.62963 +L 0.592593,5.62963,0.888889,5.925926 +L 0.888889,5.925926,1.777778,6.222222 +L 1.777778,6.222222,2.37037,6.222222 +L 2.37037,6.222222,3.259259,5.925926 +L 3.259259,5.925926,4.148148,5.037037 +L 4.148148,5.037037,4.740741,4.740741 +L 0.888889,5.62963,1.481481,5.925926 +L 1.481481,5.925926,2.666667,5.925926 +L 2.666667,5.925926,3.259259,5.62963 +L 3.259259,5.62963,3.555556,5.333333 +L 0.296296,5.037037,0.592593,5.333333 +L 0.592593,5.333333,1.185185,5.62963 +L 1.185185,5.62963,2.37037,5.62963 +L 2.37037,5.62963,3.259259,5.333333 +L 3.259259,5.333333,3.851852,5.037037 +L 3.851852,5.037037,4.740741,4.740741 +L 4.740741,4.740741,5.333333,4.740741 +L 5.333333,4.740741,5.62963,5.037037 +L 5.62963,5.037037,5.62963,5.62963 +L 5.62963,5.62963,5.333333,5.925926 +L 5.333333,5.925926,4.740741,5.925926 +L 0.296296,0.888889,0.592593,0.592593 +L 0.592593,0.592593,0.296296,0.296296 +L 0.296296,0.296296,0,0.592593 +L 0,0.592593,0,1.185185 +L 0,1.185185,0.296296,1.481481 +L 0.296296,1.481481,0.888889,1.481481 +L 0.888889,1.481481,1.481481,1.185185 +L 1.481481,1.185185,2.074074,0.592593 +L 2.074074,0.592593,2.666667,-0.296296 +L 2.666667,-0.296296,3.259259,-0.888889 +L 1.481481,0.888889,1.777778,0.592593 +L 1.777778,0.592593,2.37037,-0.296296 +L 2.37037,-0.296296,2.666667,-0.592593 +L 0.888889,1.481481,1.185185,1.185185 +L 1.185185,1.185185,1.481481,0.592593 +L 1.481481,0.592593,2.074074,-0.296296 +L 2.074074,-0.296296,2.37037,-0.592593 +L 2.37037,-0.592593,2.962963,-0.888889 +L 2.962963,-0.888889,3.851852,-0.888889 +L 3.851852,-0.888889,4.444444,-0.592593 +L 4.444444,-0.592593,4.740741,-0.296296 +L 4.740741,-0.296296,5.037037,0.296296 +L 5.037037,0.296296,5.037037,1.185185 +L 5.037037,1.185185,4.740741,1.777778 +L 4.740741,1.777778,4.148148,2.666667 +L 4.148148,2.666667,3.851852,3.259259 +L 3.851852,3.259259,3.851852,3.555556 +L 4.740741,0.888889,4.740741,1.185185 +L 4.740741,1.185185,3.851852,2.666667 +L 3.851852,2.666667,3.851852,2.962963 +L 4.444444,-0.592593,4.740741,0 +L 4.740741,0,4.740741,0.592593 +L 4.740741,0.592593,4.444444,1.185185 +L 4.444444,1.185185,3.851852,2.074074 +L 3.851852,2.074074,3.555556,2.666667 +L 3.555556,2.666667,3.555556,3.259259 +L 3.555556,3.259259,4.148148,3.851852 +L 4.148148,3.851852,4.740741,3.851852 +L 4.740741,3.851852,5.037037,3.555556 +L 5.037037,3.555556,5.037037,3.259259 + +[K] 55 +L 5.925926,4.740741,5.62963,5.333333 +L 5.62963,5.333333,5.037037,5.925926 +L 5.037037,5.925926,4.148148,6.222222 +L 4.148148,6.222222,3.259259,6.222222 +L 3.259259,6.222222,2.37037,5.925926 +L 2.37037,5.925926,1.777778,5.333333 +L 1.777778,5.333333,1.481481,4.740741 +L 1.481481,4.740741,1.481481,3.851852 +L 1.481481,3.851852,1.777778,2.962963 +L 1.777778,2.962963,2.666667,1.185185 +L 2.666667,1.185185,2.666667,0.592593 +L 2.666667,0.592593,2.074074,0 +L 1.777778,3.851852,1.777778,3.555556 +L 1.777778,3.555556,2.666667,1.777778 +L 2.666667,1.777778,2.666667,1.481481 +L 2.074074,5.62963,1.777778,5.037037 +L 1.777778,5.037037,1.777778,4.148148 +L 1.777778,4.148148,2.074074,3.555556 +L 2.074074,3.555556,2.666667,2.37037 +L 2.666667,2.37037,2.962963,1.481481 +L 2.962963,1.481481,2.962963,0.888889 +L 2.962963,0.888889,2.666667,0.296296 +L 2.666667,0.296296,2.074074,0 +L 2.074074,0,1.481481,0 +L 1.481481,0,0.888889,0.296296 +L 0.296296,1.481481,0.888889,0.296296 +L 0,0.592593,1.185185,1.185185 +L 0.296296,1.481481,0.296296,0.888889 +L 0.296296,0.888889,0,0.592593 +L 0,0.592593,0.592593,0.592593 +L 0.592593,0.592593,0.888889,0.296296 +L 0.888889,0.296296,0.888889,0.888889 +L 0.888889,0.888889,1.185185,1.185185 +L 1.185185,1.185185,0.592593,1.185185 +L 0.592593,1.185185,0.296296,1.481481 +L 2.074074,3.555556,2.074074,4.148148 +L 2.074074,4.148148,2.37037,4.740741 +L 2.37037,4.740741,2.962963,5.037037 +L 2.962963,5.037037,3.851852,5.037037 +L 3.851852,5.037037,4.444444,4.740741 +L 4.444444,4.740741,5.037037,4.148148 +L 5.037037,4.148148,5.333333,4.148148 +L 4.148148,4.740741,4.740741,4.148148 +L 3.259259,5.037037,3.851852,4.740741 +L 3.851852,4.740741,4.148148,4.444444 +L 4.148148,4.444444,4.444444,3.851852 +L 5.333333,4.148148,2.666667,2.962963 +L 4.148148,3.555556,5.333333,0.888889 +L 5.333333,0.888889,5.62963,0.592593 +L 5.62963,0.592593,5.925926,0.592593 +L 3.851852,3.259259,5.037037,0.888889 +L 5.037037,0.888889,5.62963,0.296296 +L 3.555556,3.259259,4.740741,0.592593 +L 4.740741,0.592593,5.333333,0 +L 5.333333,0,6.222222,0.888889 + +[L] 57 +L 4.740741,2.37037,4.444444,2.074074 +L 4.444444,2.074074,3.555556,2.074074 +L 3.555556,2.074074,3.259259,2.37037 +L 3.259259,2.37037,3.259259,2.962963 +L 3.259259,2.962963,3.555556,3.555556 +L 3.555556,3.555556,4.148148,4.444444 +L 4.148148,4.444444,4.444444,5.037037 +L 4.444444,5.037037,4.444444,5.62963 +L 3.555556,2.962963,3.555556,3.259259 +L 3.555556,3.259259,4.444444,4.444444 +L 4.444444,4.444444,4.444444,4.740741 +L 3.851852,2.074074,3.555556,2.37037 +L 3.555556,2.37037,3.555556,2.666667 +L 3.555556,2.666667,3.851852,3.259259 +L 3.851852,3.259259,4.444444,3.851852 +L 4.444444,3.851852,4.740741,4.444444 +L 4.740741,4.444444,4.740741,5.037037 +L 4.740741,5.037037,4.444444,5.62963 +L 4.444444,5.62963,4.148148,5.925926 +L 4.148148,5.925926,3.259259,6.222222 +L 3.259259,6.222222,1.777778,6.222222 +L 1.777778,6.222222,0.888889,5.925926 +L 0.888889,5.925926,0.592593,5.62963 +L 0.592593,5.62963,0.296296,5.037037 +L 0.296296,5.037037,0.296296,4.444444 +L 0.296296,4.444444,0.592593,3.851852 +L 0.592593,3.851852,1.185185,2.962963 +L 1.185185,2.962963,1.481481,2.37037 +L 1.481481,2.37037,1.481481,2.074074 +L 1.481481,2.074074,1.185185,1.481481 +L 0.592593,4.740741,0.592593,4.444444 +L 0.592593,4.444444,1.481481,2.962963 +L 1.481481,2.962963,1.481481,2.666667 +L 0.592593,5.62963,0.592593,5.037037 +L 0.592593,5.037037,0.888889,4.444444 +L 0.888889,4.444444,1.481481,3.555556 +L 1.481481,3.555556,1.777778,2.962963 +L 1.777778,2.962963,1.777778,2.37037 +L 1.777778,2.37037,1.481481,1.777778 +L 1.481481,1.777778,0.888889,1.185185 +L 0.888889,1.185185,0,0.592593 +L 0.888889,1.185185,1.481481,1.185185 +L 1.481481,1.185185,2.37037,0.592593 +L 2.37037,0.592593,3.259259,0.296296 +L 3.259259,0.296296,4.148148,0.296296 +L 4.148148,0.296296,4.740741,0.592593 +L 1.185185,0.888889,1.481481,0.888889 +L 1.481481,0.888889,2.666667,0.296296 +L 2.666667,0.296296,2.962963,0.296296 +L 0,0.592593,0.592593,0.888889 +L 0.592593,0.888889,0.888889,0.888889 +L 0.888889,0.888889,2.074074,0.296296 +L 2.074074,0.296296,2.962963,0 +L 2.962963,0,3.555556,0 +L 3.555556,0,4.444444,0.296296 +L 4.444444,0.296296,4.740741,0.592593 +L 4.740741,0.592593,5.037037,1.185185 + +[M] 96 +L 0,2.962963,0,2.666667 +L 0,2.666667,0.296296,2.37037 +L 0.296296,2.37037,0.888889,2.37037 +L 0.888889,2.37037,1.481481,2.666667 +L 1.481481,2.666667,1.481481,3.555556 +L 1.481481,3.555556,1.185185,4.148148 +L 1.185185,4.148148,0.592593,5.037037 +L 0.592593,5.037037,0.592593,5.62963 +L 0.592593,5.62963,1.185185,6.222222 +L 1.185185,3.555556,0.592593,4.740741 +L 0.888889,2.37037,1.185185,2.666667 +L 1.185185,2.666667,1.185185,3.259259 +L 1.185185,3.259259,0.592593,4.148148 +L 0.592593,4.148148,0.296296,4.740741 +L 0.296296,4.740741,0.296296,5.333333 +L 0.296296,5.333333,0.592593,5.925926 +L 0.592593,5.925926,1.185185,6.222222 +L 1.185185,6.222222,1.777778,6.222222 +L 1.777778,6.222222,2.37037,5.925926 +L 2.37037,5.925926,2.962963,5.333333 +L 2.962963,5.333333,3.259259,4.444444 +L 3.259259,4.444444,3.259259,2.666667 +L 3.259259,2.666667,2.962963,1.777778 +L 2.962963,1.777778,2.666667,1.185185 +L 2.666667,1.185185,2.074074,0.592593 +L 2.074074,0.592593,1.185185,0 +L 1.185185,0,0.888889,0.296296 +L 0.888889,0.296296,0.592593,0.296296 +L 2.666667,5.333333,2.962963,4.444444 +L 2.962963,4.444444,2.962963,2.666667 +L 2.962963,2.666667,2.666667,1.777778 +L 2.666667,1.777778,2.37037,1.185185 +L 1.481481,0.296296,1.185185,0.592593 +L 1.185185,0.592593,0.888889,0.592593 +L 1.777778,6.222222,2.37037,5.62963 +L 2.37037,5.62963,2.666667,4.740741 +L 2.666667,4.740741,2.666667,2.666667 +L 2.666667,2.666667,2.37037,1.481481 +L 2.37037,1.481481,2.074074,0.888889 +L 2.074074,0.888889,1.777778,0.592593 +L 1.777778,0.592593,1.481481,0.888889 +L 1.481481,0.888889,1.185185,0.888889 +L 1.185185,0.888889,0.296296,0 +L 2.666667,5.925926,3.259259,6.222222 +L 3.259259,6.222222,3.851852,6.222222 +L 3.851852,6.222222,4.444444,5.925926 +L 4.444444,5.925926,5.037037,5.333333 +L 5.037037,5.333333,5.333333,4.444444 +L 5.333333,4.444444,5.333333,2.666667 +L 5.333333,2.666667,5.037037,1.777778 +L 5.037037,1.777778,4.740741,1.185185 +L 4.740741,1.185185,4.148148,0.592593 +L 4.148148,0.592593,3.555556,0 +L 3.555556,0,3.259259,0.296296 +L 3.259259,0.296296,2.962963,0.296296 +L 4.740741,5.333333,5.037037,4.444444 +L 5.037037,4.444444,5.037037,2.666667 +L 5.037037,2.666667,4.740741,1.481481 +L 3.851852,0.296296,3.555556,0.592593 +L 3.555556,0.592593,3.259259,0.592593 +L 3.851852,6.222222,4.444444,5.62963 +L 4.444444,5.62963,4.740741,4.740741 +L 4.740741,4.740741,4.740741,2.37037 +L 4.740741,2.37037,4.444444,1.185185 +L 4.444444,1.185185,4.148148,0.592593 +L 4.148148,0.592593,3.851852,0.888889 +L 3.851852,0.888889,3.555556,0.888889 +L 3.555556,0.888889,2.666667,0 +L 4.740741,5.62963,5.037037,5.925926 +L 5.037037,5.925926,5.62963,6.222222 +L 5.62963,6.222222,6.222222,6.222222 +L 6.222222,6.222222,6.814815,5.925926 +L 6.814815,5.925926,7.111111,5.62963 +L 7.111111,5.62963,7.407407,5.037037 +L 7.407407,5.037037,7.703704,4.740741 +L 6.814815,5.62963,7.111111,5.037037 +L 6.222222,6.222222,6.518519,5.925926 +L 6.518519,5.925926,6.814815,5.037037 +L 6.814815,5.037037,7.111111,4.740741 +L 7.111111,4.740741,7.703704,4.740741 +L 7.703704,4.740741,6.814815,4.148148 +L 6.814815,4.148148,6.518519,3.851852 +L 6.518519,3.851852,6.222222,2.962963 +L 6.222222,2.962963,6.222222,2.074074 +L 6.222222,2.074074,6.518519,0.888889 +L 6.518519,0.888889,7.111111,0 +L 7.111111,0,8,0.888889 +L 6.814815,3.851852,6.518519,3.259259 +L 6.518519,3.259259,6.518519,2.074074 +L 6.518519,2.074074,6.814815,1.185185 +L 6.814815,1.185185,7.407407,0.296296 +L 7.703704,4.740741,7.111111,4.148148 +L 7.111111,4.148148,6.814815,3.555556 +L 6.814815,3.555556,6.814815,2.37037 +L 6.814815,2.37037,7.111111,1.185185 +L 7.111111,1.185185,7.703704,0.592593 + +[N] 72 +L 0,2.962963,0,2.666667 +L 0,2.666667,0.296296,2.37037 +L 0.296296,2.37037,0.888889,2.37037 +L 0.888889,2.37037,1.481481,2.666667 +L 1.481481,2.666667,1.481481,3.555556 +L 1.481481,3.555556,1.185185,4.148148 +L 1.185185,4.148148,0.592593,5.037037 +L 0.592593,5.037037,0.592593,5.62963 +L 0.592593,5.62963,1.185185,6.222222 +L 1.185185,3.555556,0.592593,4.740741 +L 0.888889,2.37037,1.185185,2.666667 +L 1.185185,2.666667,1.185185,3.259259 +L 1.185185,3.259259,0.592593,4.148148 +L 0.592593,4.148148,0.296296,4.740741 +L 0.296296,4.740741,0.296296,5.333333 +L 0.296296,5.333333,0.592593,5.925926 +L 0.592593,5.925926,1.185185,6.222222 +L 1.185185,6.222222,2.074074,6.222222 +L 2.074074,6.222222,2.666667,5.925926 +L 2.666667,5.925926,3.259259,5.333333 +L 3.259259,5.333333,3.555556,4.444444 +L 3.555556,4.444444,3.555556,2.666667 +L 3.555556,2.666667,3.259259,1.777778 +L 3.259259,1.777778,2.962963,1.185185 +L 2.962963,1.185185,2.37037,0.592593 +L 2.37037,0.592593,1.481481,0 +L 1.481481,0,1.185185,0.296296 +L 1.185185,0.296296,0.592593,0.296296 +L 0.592593,0.296296,0,0 +L 2.962963,5.333333,3.259259,4.740741 +L 3.259259,4.740741,3.259259,2.666667 +L 3.259259,2.666667,2.962963,1.777778 +L 2.962963,1.777778,2.666667,1.185185 +L 2.666667,1.185185,2.37037,0.888889 +L 1.777778,0.296296,1.185185,0.592593 +L 1.185185,0.592593,0.592593,0.592593 +L 2.074074,6.222222,2.666667,5.62963 +L 2.666667,5.62963,2.962963,4.740741 +L 2.962963,4.740741,2.962963,2.666667 +L 2.962963,2.666667,2.666667,1.481481 +L 2.666667,1.481481,2.074074,0.592593 +L 2.074074,0.592593,1.481481,0.888889 +L 1.481481,0.888889,0.888889,0.888889 +L 0.888889,0.888889,0,0 +L 3.259259,5.62963,3.555556,5.925926 +L 3.555556,5.925926,4.148148,6.222222 +L 4.148148,6.222222,4.740741,6.222222 +L 4.740741,6.222222,5.333333,5.925926 +L 5.333333,5.925926,5.62963,5.62963 +L 5.62963,5.62963,5.925926,5.037037 +L 5.925926,5.037037,6.222222,4.740741 +L 5.333333,5.62963,5.62963,5.037037 +L 4.740741,6.222222,5.037037,5.925926 +L 5.037037,5.925926,5.333333,5.037037 +L 5.333333,5.037037,5.62963,4.740741 +L 5.62963,4.740741,6.222222,4.740741 +L 6.222222,4.740741,5.333333,4.148148 +L 5.333333,4.148148,5.037037,3.851852 +L 5.037037,3.851852,4.740741,2.962963 +L 4.740741,2.962963,4.740741,2.074074 +L 4.740741,2.074074,5.037037,0.888889 +L 5.037037,0.888889,5.62963,0 +L 5.62963,0,6.518519,0.888889 +L 5.333333,3.851852,5.037037,3.259259 +L 5.037037,3.259259,5.037037,2.074074 +L 5.037037,2.074074,5.333333,1.185185 +L 5.333333,1.185185,5.925926,0.296296 +L 6.222222,4.740741,5.62963,4.148148 +L 5.62963,4.148148,5.333333,3.555556 +L 5.333333,3.555556,5.333333,2.37037 +L 5.333333,2.37037,5.62963,1.185185 +L 5.62963,1.185185,6.222222,0.592593 + +[O] 56 +L 2.666667,6.222222,2.074074,5.925926 +L 2.074074,5.925926,1.481481,5.333333 +L 1.481481,5.333333,1.185185,4.740741 +L 1.185185,4.740741,1.185185,4.148148 +L 1.185185,4.148148,1.777778,2.962963 +L 1.777778,2.962963,1.777778,2.37037 +L 1.481481,4.444444,1.481481,4.148148 +L 1.481481,4.148148,1.777778,3.555556 +L 1.777778,3.555556,1.777778,3.259259 +L 1.481481,5.333333,1.481481,4.740741 +L 1.481481,4.740741,2.074074,3.555556 +L 2.074074,3.555556,2.074074,2.962963 +L 2.074074,2.962963,1.777778,2.37037 +L 1.777778,2.37037,1.481481,2.074074 +L 1.481481,2.074074,0.888889,2.074074 +L 0.888889,2.074074,0.592593,2.37037 +L 0.592593,2.37037,0.592593,2.666667 +L 2.666667,6.222222,2.962963,5.925926 +L 2.962963,5.925926,4.740741,5.333333 +L 4.740741,5.333333,5.62963,4.740741 +L 5.62963,4.740741,5.925926,4.148148 +L 5.925926,4.148148,6.222222,3.259259 +L 6.222222,3.259259,6.222222,2.37037 +L 6.222222,2.37037,5.925926,1.481481 +L 5.925926,1.481481,5.62963,0.888889 +L 5.62963,0.888889,5.037037,0.296296 +L 5.037037,0.296296,4.148148,0 +L 4.148148,0,3.259259,0 +L 3.259259,0,2.37037,0.296296 +L 2.37037,0.296296,0.592593,1.185185 +L 0.592593,1.185185,0.296296,1.185185 +L 0.296296,1.185185,0,0.888889 +L 2.666667,5.925926,2.962963,5.62963 +L 2.962963,5.62963,4.740741,5.037037 +L 4.740741,5.037037,5.333333,4.740741 +L 5.333333,4.740741,5.62963,4.444444 +L 2.666667,6.222222,2.666667,5.62963 +L 2.666667,5.62963,2.962963,5.333333 +L 2.962963,5.333333,4.740741,4.740741 +L 4.740741,4.740741,5.333333,4.444444 +L 5.333333,4.444444,5.925926,3.851852 +L 5.925926,3.851852,6.222222,3.259259 +L 3.555556,0.296296,2.962963,0.296296 +L 2.962963,0.296296,1.185185,1.185185 +L 1.185185,1.185185,0.888889,1.185185 +L 5.333333,0.592593,4.740741,0.296296 +L 4.740741,0.296296,3.851852,0.296296 +L 3.851852,0.296296,2.962963,0.592593 +L 2.962963,0.592593,1.777778,1.185185 +L 1.777778,1.185185,0.888889,1.481481 +L 0.888889,1.481481,0.296296,1.481481 +L 0.296296,1.481481,0,0.888889 +L 0,0.888889,0,0.296296 +L 0,0.296296,0.296296,0 +L 0.296296,0,0.592593,0.296296 +L 0.592593,0.296296,0.296296,0.592593 + +[P] 68 +L 0,2.962963,0,2.666667 +L 0,2.666667,0.296296,2.37037 +L 0.296296,2.37037,0.888889,2.37037 +L 0.888889,2.37037,1.481481,2.666667 +L 1.481481,2.666667,1.481481,3.555556 +L 1.481481,3.555556,1.185185,4.148148 +L 1.185185,4.148148,0.592593,5.037037 +L 0.592593,5.037037,0.592593,5.62963 +L 0.592593,5.62963,1.185185,6.222222 +L 1.185185,3.555556,0.592593,4.740741 +L 0.888889,2.37037,1.185185,2.666667 +L 1.185185,2.666667,1.185185,3.259259 +L 1.185185,3.259259,0.592593,4.148148 +L 0.592593,4.148148,0.296296,4.740741 +L 0.296296,4.740741,0.296296,5.333333 +L 0.296296,5.333333,0.592593,5.925926 +L 0.592593,5.925926,1.185185,6.222222 +L 1.185185,6.222222,2.074074,6.222222 +L 2.074074,6.222222,2.666667,5.925926 +L 2.666667,5.925926,2.962963,5.62963 +L 2.962963,5.62963,3.259259,5.037037 +L 3.259259,5.037037,3.259259,1.777778 +L 3.259259,1.185185,3.259259,-0.296296 +L 3.259259,-0.296296,2.962963,-0.888889 +L 2.962963,-0.888889,2.37037,-1.185185 +L 2.37037,-1.185185,1.481481,-1.185185 +L 1.481481,-1.185185,1.185185,-0.888889 +L 1.185185,-0.888889,1.185185,-0.296296 +L 1.185185,-0.296296,1.481481,0 +L 1.481481,0,1.777778,-0.296296 +L 1.777778,-0.296296,1.481481,-0.592593 +L 2.666667,5.62963,2.962963,5.037037 +L 2.962963,5.037037,2.962963,-0.296296 +L 2.962963,-0.296296,2.666667,-0.888889 +L 2.074074,6.222222,2.37037,5.925926 +L 2.37037,5.925926,2.666667,5.037037 +L 2.666667,5.037037,2.666667,1.777778 +L 2.666667,1.185185,2.666667,-0.296296 +L 2.666667,-0.296296,2.37037,-0.888889 +L 2.37037,-0.888889,2.074074,-1.185185 +L 3.259259,5.037037,4.740741,6.222222 +L 4.740741,6.222222,5.333333,5.333333 +L 5.333333,5.333333,5.62963,4.740741 +L 5.62963,4.740741,5.925926,3.555556 +L 5.925926,3.555556,5.925926,2.666667 +L 5.925926,2.666667,5.62963,1.777778 +L 5.62963,1.777778,5.037037,0.888889 +L 5.037037,0.888889,4.148148,0 +L 4.444444,5.925926,5.333333,4.740741 +L 5.333333,4.740741,5.62963,3.851852 +L 5.62963,3.851852,5.62963,3.555556 +L 4.148148,5.62963,4.740741,5.037037 +L 4.740741,5.037037,5.333333,4.148148 +L 5.333333,4.148148,5.62963,3.259259 +L 5.62963,3.259259,5.62963,2.37037 +L 5.62963,2.37037,5.333333,1.481481 +L 5.333333,1.481481,5.037037,0.888889 +L 4.444444,0.592593,3.851852,1.481481 +L 3.851852,1.481481,3.259259,1.777778 +L 2.666667,1.777778,2.074074,1.481481 +L 2.074074,1.481481,1.481481,0.888889 +L 4.444444,0.296296,3.851852,1.185185 +L 3.851852,1.185185,3.259259,1.481481 +L 3.259259,1.481481,2.37037,1.481481 +L 4.148148,0,3.555556,0.888889 +L 3.555556,0.888889,3.259259,1.185185 +L 2.666667,1.185185,2.074074,1.185185 +L 2.074074,1.185185,1.481481,0.888889 + +[Q] 64 +L 2.666667,6.222222,2.074074,5.925926 +L 2.074074,5.925926,1.481481,5.333333 +L 1.481481,5.333333,1.185185,4.740741 +L 1.185185,4.740741,1.185185,4.148148 +L 1.185185,4.148148,1.777778,2.962963 +L 1.777778,2.962963,1.777778,2.37037 +L 1.481481,4.444444,1.481481,4.148148 +L 1.481481,4.148148,1.777778,3.555556 +L 1.777778,3.555556,1.777778,3.259259 +L 1.481481,5.333333,1.481481,4.740741 +L 1.481481,4.740741,2.074074,3.555556 +L 2.074074,3.555556,2.074074,2.962963 +L 2.074074,2.962963,1.777778,2.37037 +L 1.777778,2.37037,1.481481,2.074074 +L 1.481481,2.074074,0.888889,2.074074 +L 0.888889,2.074074,0.592593,2.37037 +L 0.592593,2.37037,0.592593,2.666667 +L 2.666667,6.222222,2.962963,5.925926 +L 2.962963,5.925926,4.740741,5.333333 +L 4.740741,5.333333,5.62963,4.740741 +L 5.62963,4.740741,5.925926,4.148148 +L 5.925926,4.148148,6.222222,3.259259 +L 6.222222,3.259259,6.222222,2.37037 +L 6.222222,2.37037,5.925926,1.481481 +L 5.925926,1.481481,5.62963,0.888889 +L 5.037037,0.296296,4.148148,0 +L 4.148148,0,3.259259,0 +L 3.259259,0,2.37037,0.296296 +L 2.37037,0.296296,0.592593,1.185185 +L 0.592593,1.185185,0.296296,1.185185 +L 0.296296,1.185185,0,0.888889 +L 2.666667,5.925926,2.962963,5.62963 +L 2.962963,5.62963,4.740741,5.037037 +L 4.740741,5.037037,5.333333,4.740741 +L 5.333333,4.740741,5.62963,4.444444 +L 2.666667,6.222222,2.666667,5.62963 +L 2.666667,5.62963,2.962963,5.333333 +L 2.962963,5.333333,4.740741,4.740741 +L 4.740741,4.740741,5.333333,4.444444 +L 5.333333,4.444444,5.925926,3.851852 +L 5.925926,3.851852,6.222222,3.259259 +L 3.555556,0.296296,2.962963,0.296296 +L 2.962963,0.296296,1.185185,1.185185 +L 1.185185,1.185185,0.888889,1.185185 +L 5.037037,0.296296,3.851852,0.296296 +L 3.851852,0.296296,2.962963,0.592593 +L 2.962963,0.592593,1.777778,1.185185 +L 1.777778,1.185185,0.888889,1.481481 +L 0.888889,1.481481,0.296296,1.481481 +L 0.296296,1.481481,0,0.888889 +L 0,0.888889,0,0.296296 +L 0,0.296296,0.296296,0 +L 0.296296,0,0.592593,0.296296 +L 0.592593,0.296296,0.296296,0.592593 +L 3.851852,0.888889,4.444444,1.481481 +L 4.444444,1.481481,5.037037,1.481481 +L 5.037037,1.481481,6.222222,0.296296 +L 6.222222,0.296296,6.518519,0.296296 +L 4.740741,1.185185,5.037037,1.185185 +L 5.037037,1.185185,5.925926,0.296296 +L 4.148148,1.185185,4.444444,1.185185 +L 4.444444,1.185185,5.62963,0 +L 5.62963,0,6.222222,0 +L 6.222222,0,6.814815,0.592593 + +[R] 66 +L 0.296296,2.962963,0.296296,2.666667 +L 0.296296,2.666667,0.592593,2.37037 +L 0.592593,2.37037,1.185185,2.37037 +L 1.185185,2.37037,1.777778,2.666667 +L 1.777778,2.666667,1.777778,3.555556 +L 1.777778,3.555556,1.481481,4.148148 +L 1.481481,4.148148,0.888889,5.037037 +L 0.888889,5.037037,0.888889,5.62963 +L 0.888889,5.62963,1.481481,6.222222 +L 1.481481,3.555556,0.888889,4.740741 +L 1.185185,2.37037,1.481481,2.666667 +L 1.481481,2.666667,1.481481,3.259259 +L 1.481481,3.259259,0.888889,4.148148 +L 0.888889,4.148148,0.592593,4.740741 +L 0.592593,4.740741,0.592593,5.333333 +L 0.592593,5.333333,0.888889,5.925926 +L 0.888889,5.925926,1.481481,6.222222 +L 1.481481,6.222222,2.37037,6.222222 +L 2.37037,6.222222,2.962963,5.925926 +L 2.962963,5.925926,3.259259,5.62963 +L 3.259259,5.62963,3.555556,5.037037 +L 3.555556,5.037037,3.555556,1.481481 +L 3.555556,1.481481,3.259259,0.888889 +L 3.259259,0.888889,2.666667,0.296296 +L 2.666667,0.296296,2.074074,0 +L 2.074074,0,1.481481,0 +L 1.481481,0,0.888889,0.296296 +L 2.962963,5.62963,3.259259,5.037037 +L 3.259259,5.037037,3.259259,1.481481 +L 3.259259,1.481481,2.962963,0.888889 +L 2.37037,6.222222,2.666667,5.925926 +L 2.666667,5.925926,2.962963,5.037037 +L 2.962963,5.037037,2.962963,1.481481 +L 2.962963,1.481481,2.666667,0.592593 +L 2.666667,0.592593,2.074074,0 +L 0.296296,1.481481,0.888889,0.296296 +L 0,0.592593,1.185185,1.185185 +L 0.296296,1.481481,0.296296,0.888889 +L 0.296296,0.888889,0,0.592593 +L 0,0.592593,0.592593,0.592593 +L 0.592593,0.592593,0.888889,0.296296 +L 0.888889,0.296296,0.888889,0.888889 +L 0.888889,0.888889,1.185185,1.185185 +L 1.185185,1.185185,0.592593,1.185185 +L 0.592593,1.185185,0.296296,1.481481 +L 3.555556,5.333333,3.851852,5.925926 +L 3.851852,5.925926,4.444444,6.222222 +L 4.444444,6.222222,5.037037,6.222222 +L 5.037037,6.222222,5.62963,5.925926 +L 5.62963,5.925926,5.925926,5.62963 +L 5.925926,5.62963,6.222222,5.037037 +L 6.222222,5.037037,6.518519,4.740741 +L 5.62963,5.62963,5.925926,5.037037 +L 5.037037,6.222222,5.333333,5.925926 +L 5.333333,5.925926,5.62963,5.037037 +L 5.62963,5.037037,5.925926,4.740741 +L 5.925926,4.740741,6.518519,4.740741 +L 6.518519,4.740741,3.555556,3.259259 +L 4.148148,3.555556,5.333333,0.592593 +L 5.333333,0.592593,5.925926,0 +L 5.925926,0,6.814815,0.888889 +L 4.444444,3.555556,5.62963,0.888889 +L 5.62963,0.888889,6.222222,0.296296 +L 4.740741,3.851852,5.925926,0.888889 +L 5.925926,0.888889,6.222222,0.592593 +L 6.222222,0.592593,6.518519,0.592593 + +[S] 69 +L 5.925926,5.62963,5.62963,5.925926 +L 5.62963,5.925926,5.925926,6.222222 +L 5.925926,6.222222,6.222222,5.925926 +L 6.222222,5.925926,6.222222,5.333333 +L 6.222222,5.333333,5.925926,4.740741 +L 5.925926,4.740741,5.333333,4.740741 +L 5.333333,4.740741,4.148148,5.333333 +L 4.148148,5.333333,3.259259,5.62963 +L 3.259259,5.62963,2.074074,5.62963 +L 2.074074,5.62963,0.888889,5.333333 +L 0.888889,5.333333,0.296296,4.740741 +L 5.037037,5.037037,4.148148,5.62963 +L 4.148148,5.62963,3.259259,5.925926 +L 3.259259,5.925926,2.074074,5.925926 +L 2.074074,5.925926,1.185185,5.62963 +L 6.222222,5.333333,5.925926,5.037037 +L 5.925926,5.037037,5.333333,5.037037 +L 5.333333,5.037037,4.148148,5.925926 +L 4.148148,5.925926,3.259259,6.222222 +L 3.259259,6.222222,2.074074,6.222222 +L 2.074074,6.222222,1.185185,5.925926 +L 1.185185,5.925926,0.592593,5.333333 +L 0.592593,5.333333,0.296296,4.740741 +L 0.296296,4.740741,0,3.851852 +L 0,3.851852,0,2.666667 +L 0,2.666667,0.296296,1.777778 +L 0.296296,1.777778,0.592593,1.185185 +L 0.592593,1.185185,1.185185,0.592593 +L 1.185185,0.592593,1.777778,0.296296 +L 1.777778,0.296296,2.666667,0 +L 2.666667,0,3.851852,0 +L 3.851852,0,4.740741,0.296296 +L 4.740741,0.296296,5.333333,0.592593 +L 5.333333,0.592593,5.925926,1.185185 +L 5.925926,1.185185,6.222222,2.074074 +L 6.222222,2.074074,6.222222,2.962963 +L 6.222222,2.962963,5.925926,3.555556 +L 5.925926,3.555556,5.333333,3.851852 +L 5.333333,3.851852,4.444444,3.851852 +L 4.444444,3.851852,3.851852,3.555556 +L 3.851852,3.555556,3.259259,2.666667 +L 3.259259,2.666667,2.666667,2.37037 +L 2.666667,2.37037,2.074074,2.37037 +L 1.185185,0.888889,1.777778,0.592593 +L 1.777778,0.592593,2.666667,0.296296 +L 2.666667,0.296296,3.851852,0.296296 +L 3.851852,0.296296,5.037037,0.592593 +L 0.296296,1.777778,0.888889,1.185185 +L 0.888889,1.185185,1.481481,0.888889 +L 1.481481,0.888889,2.37037,0.592593 +L 2.37037,0.592593,3.851852,0.592593 +L 3.851852,0.592593,5.037037,0.888889 +L 5.037037,0.888889,5.62963,1.185185 +L 5.62963,1.185185,5.925926,1.481481 +L 5.925926,1.481481,6.222222,2.074074 +L 4.740741,3.555556,4.444444,3.555556 +L 4.444444,3.555556,3.259259,2.37037 +L 3.259259,2.37037,2.962963,2.37037 +L 6.222222,2.962963,5.62963,3.555556 +L 5.62963,3.555556,5.037037,3.555556 +L 5.037037,3.555556,4.444444,3.259259 +L 4.444444,3.259259,3.851852,2.37037 +L 3.851852,2.37037,3.259259,2.074074 +L 3.259259,2.074074,2.666667,2.074074 +L 2.666667,2.074074,2.074074,2.37037 +L 2.074074,2.37037,1.777778,2.962963 +L 1.777778,2.962963,1.777778,3.555556 +L 1.777778,3.555556,2.074074,4.148148 +L 2.074074,4.148148,2.666667,4.444444 + +[T] 63 +L 0.888889,3.851852,0.296296,4.148148 +L 0.296296,4.148148,0,4.740741 +L 0,4.740741,0,5.333333 +L 0,5.333333,0.296296,5.925926 +L 0.296296,5.925926,1.185185,6.222222 +L 1.185185,6.222222,2.666667,6.222222 +L 2.666667,6.222222,3.555556,5.925926 +L 3.555556,5.925926,4.740741,5.037037 +L 4.740741,5.037037,5.333333,5.037037 +L 5.333333,5.037037,5.62963,5.333333 +L 0.296296,5.62963,0.888889,5.925926 +L 0.888889,5.925926,2.666667,5.925926 +L 2.666667,5.925926,3.555556,5.62963 +L 3.555556,5.62963,4.444444,5.037037 +L 0,4.740741,0.296296,5.333333 +L 0.296296,5.333333,0.888889,5.62963 +L 0.888889,5.62963,2.666667,5.62963 +L 2.666667,5.62963,3.555556,5.333333 +L 3.555556,5.333333,4.740741,4.740741 +L 4.740741,4.740741,5.333333,4.740741 +L 5.333333,4.740741,5.62963,5.333333 +L 5.62963,5.333333,5.62963,5.925926 +L 5.62963,5.925926,5.333333,6.222222 +L 5.333333,6.222222,5.037037,5.925926 +L 5.037037,5.925926,5.333333,5.62963 +L 3.555556,5.333333,2.666667,4.444444 +L 2.666667,4.444444,2.37037,3.851852 +L 2.37037,3.851852,2.37037,3.259259 +L 2.37037,3.259259,2.962963,2.074074 +L 2.962963,2.074074,2.962963,1.481481 +L 2.666667,3.555556,2.666667,3.259259 +L 2.666667,3.259259,2.962963,2.666667 +L 2.962963,2.666667,2.962963,2.37037 +L 2.666667,4.444444,2.666667,3.851852 +L 2.666667,3.851852,3.259259,2.666667 +L 3.259259,2.666667,3.259259,2.074074 +L 3.259259,2.074074,2.962963,1.481481 +L 2.962963,1.481481,2.666667,1.185185 +L 2.666667,1.185185,2.074074,1.185185 +L 2.074074,1.185185,1.777778,1.481481 +L 1.777778,1.481481,1.777778,2.074074 +L 0.296296,0.592593,0.592593,0.296296 +L 0.592593,0.296296,0.296296,0 +L 0.296296,0,0,0.296296 +L 0,0.296296,0,0.888889 +L 0,0.888889,0.296296,1.481481 +L 0.296296,1.481481,0.888889,1.481481 +L 0.888889,1.481481,1.777778,1.185185 +L 1.777778,1.185185,2.962963,0.592593 +L 2.962963,0.592593,3.851852,0.296296 +L 3.851852,0.296296,4.740741,0.296296 +L 4.740741,0.296296,5.333333,0.592593 +L 0.888889,1.185185,1.185185,1.185185 +L 1.185185,1.185185,2.962963,0.296296 +L 2.962963,0.296296,3.555556,0.296296 +L 0,0.888889,0.296296,1.185185 +L 0.296296,1.185185,0.592593,1.185185 +L 0.592593,1.185185,1.185185,0.888889 +L 1.185185,0.888889,2.37037,0.296296 +L 2.37037,0.296296,3.259259,0 +L 3.259259,0,4.148148,0 +L 4.148148,0,5.037037,0.296296 +L 5.037037,0.296296,5.62963,0.888889 + +[U] 31 +L 0.296296,5.62963,0.592593,5.62963 +L 0.592593,5.62963,0.888889,5.333333 +L 0.888889,5.333333,0.888889,1.185185 +L 0.888889,1.185185,0.296296,0.888889 +L 0.592593,5.925926,1.185185,5.62963 +L 1.185185,5.62963,1.185185,0.888889 +L 1.185185,0.888889,2.074074,0.296296 +L 0,5.333333,0.888889,6.222222 +L 0.888889,6.222222,1.481481,5.62963 +L 1.481481,5.62963,1.481481,1.185185 +L 1.481481,1.185185,2.074074,0.592593 +L 2.074074,0.592593,2.666667,0.592593 +L 0.296296,0.888889,0.592593,0.888889 +L 0.592593,0.888889,1.185185,0.592593 +L 1.185185,0.592593,1.777778,0 +L 1.777778,0,2.666667,0.592593 +L 2.666667,0.592593,3.851852,1.481481 +L 3.259259,5.62963,3.555556,5.62963 +L 3.555556,5.62963,3.851852,5.333333 +L 3.851852,5.333333,3.851852,0.592593 +L 3.851852,0.592593,4.444444,0 +L 4.444444,0,5.333333,0.888889 +L 3.555556,5.925926,4.148148,5.62963 +L 4.148148,5.62963,4.148148,0.592593 +L 4.148148,0.592593,4.740741,0.296296 +L 2.962963,5.333333,3.851852,6.222222 +L 3.851852,6.222222,4.740741,5.62963 +L 4.740741,5.62963,4.444444,5.333333 +L 4.444444,5.333333,4.444444,0.888889 +L 4.444444,0.888889,4.740741,0.592593 +L 4.740741,0.592593,5.037037,0.592593 + +[V] 74 +L 0,2.962963,0,2.666667 +L 0,2.666667,0.296296,2.37037 +L 0.296296,2.37037,0.888889,2.37037 +L 0.888889,2.37037,1.481481,2.666667 +L 1.481481,2.666667,1.481481,3.555556 +L 1.481481,3.555556,1.185185,4.148148 +L 1.185185,4.148148,0.592593,5.037037 +L 0.592593,5.037037,0.592593,5.62963 +L 0.592593,5.62963,1.185185,6.222222 +L 1.185185,3.555556,0.592593,4.740741 +L 0.888889,2.37037,1.185185,2.666667 +L 1.185185,2.666667,1.185185,3.259259 +L 1.185185,3.259259,0.592593,4.148148 +L 0.592593,4.148148,0.296296,4.740741 +L 0.296296,4.740741,0.296296,5.333333 +L 0.296296,5.333333,0.592593,5.925926 +L 0.592593,5.925926,1.185185,6.222222 +L 1.185185,6.222222,2.074074,6.222222 +L 2.074074,6.222222,2.666667,5.925926 +L 2.666667,5.925926,2.962963,5.62963 +L 2.962963,5.62963,3.259259,5.037037 +L 3.259259,5.037037,3.259259,2.666667 +L 3.259259,2.666667,2.962963,1.777778 +L 2.962963,1.777778,2.37037,1.185185 +L 2.666667,5.62963,2.962963,5.037037 +L 2.962963,5.037037,2.962963,2.074074 +L 2.074074,6.222222,2.37037,5.925926 +L 2.37037,5.925926,2.666667,5.037037 +L 2.666667,5.037037,2.666667,1.777778 +L 2.666667,1.777778,2.37037,1.185185 +L 3.259259,5.333333,3.555556,5.925926 +L 3.555556,5.925926,4.148148,6.222222 +L 4.148148,6.222222,4.740741,6.222222 +L 4.740741,6.222222,5.333333,5.925926 +L 5.333333,5.925926,5.925926,5.037037 +L 5.925926,5.037037,6.222222,4.740741 +L 5.333333,5.62963,5.62963,5.037037 +L 4.740741,6.222222,5.037037,5.925926 +L 5.037037,5.925926,5.333333,5.037037 +L 5.333333,5.037037,5.62963,4.740741 +L 5.62963,4.740741,6.222222,4.740741 +L 5.62963,4.740741,5.037037,4.740741 +L 5.037037,4.740741,4.740741,4.444444 +L 4.740741,4.444444,4.740741,3.851852 +L 4.740741,3.851852,5.037037,3.259259 +L 5.037037,3.259259,5.925926,2.666667 +L 5.925926,2.666667,6.222222,2.074074 +L 5.037037,3.555556,5.925926,2.962963 +L 4.740741,4.148148,5.037037,3.851852 +L 5.037037,3.851852,5.925926,3.259259 +L 5.925926,3.259259,6.222222,2.666667 +L 6.222222,2.666667,6.222222,1.481481 +L 6.222222,1.481481,5.925926,0.888889 +L 5.925926,0.888889,5.333333,0.296296 +L 5.333333,0.296296,4.740741,0 +L 4.740741,0,3.555556,0 +L 3.555556,0,2.666667,0.296296 +L 2.666667,0.296296,0.888889,1.185185 +L 0.888889,1.185185,0.592593,1.185185 +L 0.592593,1.185185,0.296296,0.888889 +L 3.851852,0.296296,3.259259,0.296296 +L 3.259259,0.296296,1.481481,1.185185 +L 1.481481,1.185185,1.185185,1.185185 +L 5.62963,0.592593,5.037037,0.296296 +L 5.037037,0.296296,4.148148,0.296296 +L 4.148148,0.296296,3.259259,0.592593 +L 3.259259,0.592593,2.074074,1.185185 +L 2.074074,1.185185,1.185185,1.481481 +L 1.185185,1.481481,0.592593,1.481481 +L 0.592593,1.481481,0.296296,0.888889 +L 0.296296,0.888889,0.296296,0.296296 +L 0.296296,0.296296,0.592593,0 +L 0.592593,0,0.888889,0.296296 +L 0.888889,0.296296,0.592593,0.592593 + +[W] 105 +L 0,2.962963,0,2.666667 +L 0,2.666667,0.296296,2.37037 +L 0.296296,2.37037,0.888889,2.37037 +L 0.888889,2.37037,1.481481,2.666667 +L 1.481481,2.666667,1.481481,3.555556 +L 1.481481,3.555556,1.185185,4.148148 +L 1.185185,4.148148,0.592593,5.037037 +L 0.592593,5.037037,0.592593,5.62963 +L 0.592593,5.62963,1.185185,6.222222 +L 1.185185,3.555556,0.592593,4.740741 +L 0.888889,2.37037,1.185185,2.666667 +L 1.185185,2.666667,1.185185,3.259259 +L 1.185185,3.259259,0.592593,4.148148 +L 0.592593,4.148148,0.296296,4.740741 +L 0.296296,4.740741,0.296296,5.333333 +L 0.296296,5.333333,0.592593,5.925926 +L 0.592593,5.925926,1.185185,6.222222 +L 1.185185,6.222222,2.074074,6.222222 +L 2.074074,6.222222,2.666667,5.925926 +L 2.666667,5.925926,2.962963,5.62963 +L 2.962963,5.62963,3.259259,5.037037 +L 3.259259,5.037037,3.259259,3.851852 +L 3.259259,3.851852,2.962963,2.962963 +L 2.962963,2.962963,2.37037,2.074074 +L 2.37037,2.074074,1.777778,1.481481 +L 2.666667,5.62963,2.962963,5.037037 +L 2.962963,5.037037,2.962963,3.555556 +L 2.962963,3.555556,2.666667,2.666667 +L 2.074074,6.222222,2.37037,5.925926 +L 2.37037,5.925926,2.666667,5.037037 +L 2.666667,5.037037,2.666667,3.555556 +L 2.666667,3.555556,2.37037,2.37037 +L 2.37037,2.37037,1.777778,1.481481 +L 2.666667,5.925926,3.259259,6.222222 +L 3.259259,6.222222,4.148148,6.222222 +L 4.148148,6.222222,4.740741,5.925926 +L 5.333333,6.222222,4.444444,5.925926 +L 4.444444,5.925926,4.148148,5.333333 +L 4.148148,5.333333,4.148148,4.148148 +L 4.148148,4.148148,4.444444,3.259259 +L 4.444444,3.259259,5.037037,2.37037 +L 5.037037,2.37037,5.333333,1.777778 +L 5.333333,1.777778,5.333333,1.185185 +L 5.333333,1.185185,5.037037,0.592593 +L 4.444444,4.148148,4.444444,3.851852 +L 4.444444,3.851852,5.333333,2.37037 +L 5.333333,2.37037,5.333333,2.074074 +L 5.333333,6.222222,4.740741,5.925926 +L 4.740741,5.925926,4.444444,5.333333 +L 4.444444,5.333333,4.444444,4.444444 +L 4.444444,4.444444,4.740741,3.851852 +L 4.740741,3.851852,5.333333,2.962963 +L 5.333333,2.962963,5.62963,2.074074 +L 5.62963,2.074074,5.62963,1.481481 +L 5.62963,1.481481,5.333333,0.888889 +L 5.333333,0.888889,4.740741,0.296296 +L 4.740741,0.296296,4.148148,0 +L 4.148148,0,2.962963,0 +L 2.962963,0,2.37037,0.296296 +L 2.37037,0.296296,1.777778,0.888889 +L 1.777778,0.888889,1.185185,1.185185 +L 1.185185,1.185185,0.592593,1.185185 +L 0.592593,1.185185,0.296296,0.888889 +L 2.666667,0.296296,1.777778,1.185185 +L 1.777778,1.185185,1.481481,1.185185 +L 3.555556,0,2.962963,0.296296 +L 2.962963,0.296296,2.074074,1.185185 +L 2.074074,1.185185,1.481481,1.481481 +L 1.481481,1.481481,0.592593,1.481481 +L 0.592593,1.481481,0.296296,0.888889 +L 0.296296,0.888889,0.296296,0.296296 +L 0.296296,0.296296,0.592593,0 +L 0.592593,0,0.888889,0.296296 +L 0.888889,0.296296,0.592593,0.592593 +L 5.333333,6.222222,6.222222,6.222222 +L 6.222222,6.222222,6.814815,5.925926 +L 6.814815,5.925926,7.407407,5.037037 +L 7.407407,5.037037,7.703704,4.740741 +L 6.814815,5.62963,7.111111,5.037037 +L 6.222222,6.222222,6.518519,5.925926 +L 6.518519,5.925926,6.814815,5.037037 +L 6.814815,5.037037,7.111111,4.740741 +L 7.111111,4.740741,7.703704,4.740741 +L 7.111111,4.740741,6.518519,4.740741 +L 6.518519,4.740741,6.222222,4.444444 +L 6.222222,4.444444,6.222222,3.851852 +L 6.222222,3.851852,6.518519,3.259259 +L 6.518519,3.259259,7.407407,2.666667 +L 7.407407,2.666667,7.703704,2.074074 +L 6.518519,3.555556,7.407407,2.962963 +L 6.222222,4.148148,6.518519,3.851852 +L 6.518519,3.851852,7.407407,3.259259 +L 7.407407,3.259259,7.703704,2.666667 +L 7.703704,2.666667,7.703704,1.185185 +L 7.703704,1.185185,7.407407,0.592593 +L 7.407407,0.592593,7.111111,0.296296 +L 7.111111,0.296296,6.518519,0 +L 6.518519,0,5.62963,0 +L 5.62963,0,4.740741,0.296296 +L 5.925926,0.296296,5.62963,0.296296 +L 5.62963,0.296296,5.037037,0.592593 +L 7.407407,0.592593,6.814815,0.296296 +L 6.814815,0.296296,6.222222,0.296296 +L 6.222222,0.296296,5.62963,0.592593 +L 5.62963,0.592593,5.333333,0.888889 + +[X] 54 +L 0.592593,5.62963,1.185185,5.62963 +L 1.185185,5.62963,1.777778,5.333333 +L 1.777778,5.333333,2.074074,5.037037 +L 2.074074,5.037037,2.37037,4.148148 +L 2.37037,4.148148,2.37037,3.555556 +L 2.37037,2.962963,2.37037,1.777778 +L 2.37037,1.777778,2.074074,0.888889 +L 2.074074,0.888889,1.185185,0 +L 1.185185,0,0.592593,0.296296 +L 0.592593,0.296296,0,0 +L 1.481481,0.296296,0.888889,0.592593 +L 0.888889,0.592593,0.592593,0.592593 +L 1.777778,0.592593,1.481481,0.592593 +L 1.481481,0.592593,0.888889,0.888889 +L 0.888889,0.888889,0,0 +L 1.185185,5.925926,2.074074,5.62963 +L 2.074074,5.62963,2.37037,5.333333 +L 2.37037,5.333333,2.666667,4.444444 +L 2.666667,4.444444,2.666667,1.777778 +L 2.666667,1.777778,2.962963,1.185185 +L 2.962963,1.185185,3.555556,0.592593 +L 3.555556,0.592593,4.148148,0.296296 +L 0,5.333333,1.481481,6.222222 +L 1.481481,6.222222,2.074074,5.925926 +L 2.074074,5.925926,2.666667,5.333333 +L 2.666667,5.333333,2.962963,4.444444 +L 2.962963,4.444444,2.962963,3.555556 +L 2.962963,2.962963,2.962963,2.074074 +L 2.962963,2.074074,3.259259,1.185185 +L 3.259259,1.185185,3.555556,0.888889 +L 3.555556,0.888889,4.148148,0.592593 +L 4.148148,0.592593,4.740741,0.592593 +L 2.37037,1.777778,2.666667,0.888889 +L 2.666667,0.888889,3.259259,0.296296 +L 3.259259,0.296296,3.851852,0 +L 3.851852,0,5.333333,0.888889 +L 2.962963,4.444444,3.259259,5.333333 +L 3.259259,5.333333,4.148148,6.222222 +L 4.148148,6.222222,4.740741,5.925926 +L 4.740741,5.925926,5.333333,6.222222 +L 3.851852,5.925926,4.444444,5.62963 +L 4.444444,5.62963,4.740741,5.62963 +L 3.555556,5.62963,3.851852,5.62963 +L 3.851852,5.62963,4.444444,5.333333 +L 4.444444,5.333333,5.333333,6.222222 +L 0.592593,2.37037,1.185185,3.555556 +L 1.185185,3.555556,2.37037,3.555556 +L 2.962963,3.555556,4.148148,3.555556 +L 4.148148,3.555556,4.740741,4.148148 +L 1.185185,3.259259,4.148148,3.259259 +L 0.592593,2.37037,1.185185,2.962963 +L 1.185185,2.962963,2.37037,2.962963 +L 2.962963,2.962963,4.148148,2.962963 +L 4.148148,2.962963,4.740741,4.148148 + +[Y] 56 +L 0,2.962963,0,2.666667 +L 0,2.666667,0.296296,2.37037 +L 0.296296,2.37037,0.888889,2.37037 +L 0.888889,2.37037,1.481481,2.666667 +L 1.481481,2.666667,1.481481,3.555556 +L 1.481481,3.555556,1.185185,4.148148 +L 1.185185,4.148148,0.592593,5.037037 +L 0.592593,5.037037,0.592593,5.62963 +L 0.592593,5.62963,1.185185,6.222222 +L 1.185185,3.555556,0.592593,4.740741 +L 0.888889,2.37037,1.185185,2.666667 +L 1.185185,2.666667,1.185185,3.259259 +L 1.185185,3.259259,0.592593,4.148148 +L 0.592593,4.148148,0.296296,4.740741 +L 0.296296,4.740741,0.296296,5.333333 +L 0.296296,5.333333,0.592593,5.925926 +L 0.592593,5.925926,1.185185,6.222222 +L 1.185185,6.222222,2.074074,6.222222 +L 2.074074,6.222222,2.666667,5.925926 +L 2.666667,5.925926,2.962963,5.62963 +L 2.962963,5.62963,3.259259,5.037037 +L 3.259259,5.037037,3.259259,3.555556 +L 3.259259,3.555556,2.962963,2.666667 +L 2.962963,2.666667,2.666667,2.074074 +L 2.666667,2.074074,2.666667,1.777778 +L 2.666667,1.777778,3.259259,1.185185 +L 3.259259,1.185185,3.555556,1.185185 +L 2.666667,5.62963,2.962963,5.037037 +L 2.962963,5.037037,2.962963,3.259259 +L 2.962963,3.259259,2.666667,2.37037 +L 2.666667,2.37037,2.37037,1.777778 +L 2.37037,1.777778,3.259259,0.888889 +L 2.074074,6.222222,2.37037,5.925926 +L 2.37037,5.925926,2.666667,5.037037 +L 2.666667,5.037037,2.666667,3.259259 +L 2.666667,3.259259,2.37037,2.074074 +L 2.37037,2.074074,2.074074,1.481481 +L 2.074074,1.481481,2.962963,0.592593 +L 2.962963,0.592593,3.851852,1.481481 +L 3.259259,5.037037,5.62963,6.222222 +L 5.037037,5.925926,5.037037,0.296296 +L 5.037037,0.296296,4.740741,-0.592593 +L 5.333333,5.925926,5.333333,0.888889 +L 5.333333,0.888889,5.037037,0 +L 5.62963,6.222222,5.62963,1.481481 +L 5.62963,1.481481,5.333333,0.296296 +L 5.333333,0.296296,5.037037,-0.296296 +L 5.037037,-0.296296,4.444444,-0.888889 +L 4.444444,-0.888889,3.555556,-1.185185 +L 3.555556,-1.185185,2.37037,-1.185185 +L 2.37037,-1.185185,1.481481,-0.888889 +L 1.481481,-0.888889,0.888889,-0.296296 +L 0.888889,-0.296296,0.592593,0.296296 +L 0.592593,0.296296,0.888889,0.592593 +L 0.888889,0.592593,1.185185,0.296296 +L 1.185185,0.296296,0.888889,0 + +[Z] 56 +L 1.777778,5.333333,2.074074,5.925926 +L 2.074074,5.925926,2.666667,6.222222 +L 2.666667,6.222222,3.555556,6.222222 +L 3.555556,6.222222,4.148148,5.925926 +L 4.148148,5.925926,4.444444,5.62963 +L 4.444444,5.62963,4.740741,5.037037 +L 4.740741,5.037037,4.740741,4.148148 +L 4.740741,4.148148,4.444444,3.555556 +L 4.444444,3.555556,4.148148,3.259259 +L 4.148148,3.259259,3.555556,2.962963 +L 2.666667,2.962963,2.074074,3.259259 +L 2.074074,3.259259,1.777778,3.851852 +L 4.148148,5.62963,4.444444,5.333333 +L 4.444444,5.333333,4.444444,3.851852 +L 4.444444,3.851852,4.148148,3.555556 +L 3.555556,6.222222,3.851852,5.925926 +L 3.851852,5.925926,4.148148,5.333333 +L 4.148148,5.333333,4.148148,3.851852 +L 4.148148,3.851852,3.851852,3.259259 +L 3.851852,3.259259,3.555556,2.962963 +L 1.481481,1.777778,1.777778,2.37037 +L 1.777778,2.37037,2.074074,2.666667 +L 2.074074,2.666667,2.666667,2.962963 +L 2.666667,2.962963,3.555556,2.962963 +L 3.555556,2.962963,4.444444,2.666667 +L 4.444444,2.666667,5.037037,2.074074 +L 5.037037,2.074074,5.333333,1.481481 +L 5.333333,1.481481,5.333333,0.296296 +L 5.333333,0.296296,5.037037,-0.296296 +L 5.037037,-0.296296,4.444444,-0.888889 +L 4.444444,-0.888889,3.555556,-1.185185 +L 3.555556,-1.185185,2.37037,-1.185185 +L 2.37037,-1.185185,1.777778,-0.888889 +L 1.777778,-0.888889,0.888889,0.296296 +L 0.888889,0.296296,0.592593,0.592593 +L 4.740741,2.074074,5.037037,1.481481 +L 5.037037,1.481481,5.037037,0.296296 +L 5.037037,0.296296,4.740741,-0.296296 +L 3.555556,2.962963,4.444444,2.37037 +L 4.444444,2.37037,4.740741,1.777778 +L 4.740741,1.777778,4.740741,0 +L 4.740741,0,4.444444,-0.592593 +L 4.444444,-0.592593,4.148148,-0.888889 +L 4.148148,-0.888889,3.555556,-1.185185 +L 2.074074,-0.888889,1.777778,-0.592593 +L 1.777778,-0.592593,1.185185,0.296296 +L 1.185185,0.296296,0.888889,0.592593 +L 2.962963,-1.185185,2.37037,-0.888889 +L 2.37037,-0.888889,2.074074,-0.592593 +L 2.074074,-0.592593,1.481481,0.296296 +L 1.481481,0.296296,1.185185,0.592593 +L 1.185185,0.592593,0.296296,0.592593 +L 0.296296,0.592593,0,0.296296 +L 0,0.296296,0,-0.296296 +L 0,-0.296296,0.296296,-0.592593 +L 0.296296,-0.592593,0.592593,-0.592593 + +[[] 4 +L 0,7.407407,0,-2.074074 +L 0.296296,7.407407,0.296296,-2.074074 +L 0,7.407407,2.074074,7.407407 +L 0,-2.074074,2.074074,-2.074074 + +[\] 1 +L 0,6.222222,4.148148,-0.888889 + +[]] 4 +L 1.777778,7.407407,1.777778,-2.074074 +L 2.074074,7.407407,2.074074,-2.074074 +L 0,7.407407,2.074074,7.407407 +L 0,-2.074074,2.074074,-2.074074 + +[^] 5 +L 0.888889,4.444444,1.481481,5.333333 +L 1.481481,5.333333,2.074074,4.444444 +L 0,3.555556,1.481481,5.037037 +L 1.481481,5.037037,2.962963,3.555556 +L 1.481481,5.037037,1.481481,0 + +[_] 1 +L 0,-0.592593,4.740741,-0.592593 + +[`] 10 +L 0.888889,6.222222,0.296296,5.925926 +L 0.296296,5.925926,0,5.333333 +L 0,5.333333,0,4.740741 +L 0,4.740741,0.296296,4.148148 +L 0.296296,4.148148,0.888889,4.740741 +L 0.888889,4.740741,0.296296,5.333333 +L 0.296296,5.333333,0.296296,5.925926 +L 0.296296,5.037037,0.296296,4.444444 +L 0.296296,4.444444,0.592593,4.740741 +L 0.592593,4.740741,0.296296,5.037037 + +[a] 30 +L 2.074074,4.148148,1.185185,3.851852 +L 1.185185,3.851852,0.592593,3.555556 +L 0.592593,3.555556,0.296296,3.259259 +L 0.296296,3.259259,0,2.37037 +L 0,2.37037,0,1.481481 +L 0,1.481481,0.296296,0.592593 +L 0.296296,0.592593,0.592593,0 +L 0.592593,0,2.37037,0.888889 +L 0.296296,1.481481,0.592593,0.592593 +L 0.592593,0.592593,0.888889,0.296296 +L 1.185185,3.851852,0.592593,3.259259 +L 0.592593,3.259259,0.296296,2.37037 +L 0.296296,2.37037,0.296296,1.777778 +L 0.296296,1.777778,0.592593,0.888889 +L 0.592593,0.888889,1.185185,0.296296 +L 1.481481,3.851852,1.777778,3.555556 +L 1.777778,3.555556,2.37037,3.259259 +L 2.37037,3.259259,2.37037,0.592593 +L 2.37037,0.592593,2.962963,0 +L 2.962963,0,3.851852,0.888889 +L 1.777778,3.851852,2.666667,3.259259 +L 2.666667,3.259259,2.666667,0.888889 +L 2.666667,0.888889,3.259259,0.296296 +L 2.074074,4.148148,2.37037,3.851852 +L 2.37037,3.851852,2.962963,3.555556 +L 2.962963,3.555556,3.259259,3.555556 +L 2.962963,3.259259,3.259259,3.555556 +L 2.962963,3.259259,2.962963,0.888889 +L 2.962963,0.888889,3.259259,0.592593 +L 3.259259,0.592593,3.555556,0.592593 + +[b] 34 +L 0,5.62963,0.296296,5.333333 +L 0.296296,5.333333,0.592593,4.740741 +L 2.37037,6.222222,1.481481,5.925926 +L 1.481481,5.925926,0.888889,5.333333 +L 0.888889,5.333333,0.592593,4.740741 +L 0.592593,4.740741,0.592593,0.888889 +L 0.592593,0.888889,0.296296,0.592593 +L 1.185185,5.333333,0.888889,4.740741 +L 0.888889,4.740741,0.888889,0.888889 +L 0.888889,0.888889,1.777778,0.296296 +L 2.37037,6.222222,1.777778,5.925926 +L 1.777778,5.925926,1.481481,5.62963 +L 1.481481,5.62963,1.185185,4.740741 +L 1.185185,4.740741,1.185185,0.888889 +L 1.185185,0.888889,1.777778,0.592593 +L 1.777778,0.592593,2.074074,0.296296 +L 0.296296,0.592593,0.592593,0.592593 +L 0.592593,0.592593,1.185185,0.296296 +L 1.185185,0.296296,1.481481,0 +L 1.481481,0,2.37037,0.296296 +L 1.185185,3.259259,2.962963,4.148148 +L 2.962963,4.148148,3.259259,3.555556 +L 3.259259,3.555556,3.555556,2.666667 +L 3.555556,2.666667,3.555556,1.777778 +L 3.555556,1.777778,3.259259,0.888889 +L 3.259259,0.888889,2.962963,0.592593 +L 2.962963,0.592593,2.37037,0.296296 +L 2.666667,3.851852,2.962963,3.555556 +L 2.962963,3.555556,3.259259,2.962963 +L 2.37037,3.851852,2.962963,3.259259 +L 2.962963,3.259259,3.259259,2.37037 +L 3.259259,2.37037,3.259259,1.777778 +L 3.259259,1.777778,2.962963,0.888889 +L 2.962963,0.888889,2.37037,0.296296 + +[c] 19 +L 1.185185,3.851852,1.777778,3.259259 +L 1.777778,3.259259,2.37037,3.555556 +L 2.37037,3.555556,1.777778,4.148148 +L 1.777778,4.148148,1.185185,3.851852 +L 1.185185,3.851852,0.296296,3.259259 +L 0.296296,3.259259,0,2.666667 +L 0,2.666667,0,1.185185 +L 0,1.185185,0.296296,0.592593 +L 0.296296,0.592593,0.888889,0 +L 0.888889,0,2.074074,0.592593 +L 1.481481,3.851852,2.074074,3.555556 +L 0.592593,3.259259,0.296296,2.666667 +L 0.296296,2.666667,0.296296,1.185185 +L 0.296296,1.185185,0.592593,0.592593 +L 0.592593,0.592593,0.888889,0.296296 +L 0.888889,3.555556,0.592593,2.962963 +L 0.592593,2.962963,0.592593,1.481481 +L 0.592593,1.481481,0.888889,0.888889 +L 0.888889,0.888889,1.481481,0.296296 + +[d] 33 +L 1.185185,6.222222,0.296296,5.333333 +L 0.296296,5.333333,0.296296,4.740741 +L 0.296296,4.740741,0.592593,4.444444 +L 0.592593,4.444444,1.777778,3.851852 +L 1.777778,3.851852,2.666667,3.259259 +L 2.666667,3.259259,2.962963,2.666667 +L 2.962963,2.666667,2.962963,1.777778 +L 2.962963,1.777778,2.666667,0.888889 +L 2.666667,0.888889,2.074074,0.296296 +L 0.592593,5.037037,0.592593,4.740741 +L 0.592593,4.740741,1.777778,4.148148 +L 1.777778,4.148148,2.666667,3.555556 +L 2.666667,3.555556,2.962963,3.259259 +L 0.592593,5.62963,0.592593,5.333333 +L 0.592593,5.333333,0.888889,5.037037 +L 0.888889,5.037037,2.37037,4.148148 +L 2.37037,4.148148,2.962963,3.555556 +L 2.962963,3.555556,3.259259,2.666667 +L 3.259259,2.666667,3.259259,1.777778 +L 3.259259,1.777778,2.962963,0.888889 +L 2.962963,0.888889,2.074074,0.296296 +L 2.074074,0.296296,1.185185,0 +L 1.481481,3.851852,0.296296,3.259259 +L 0.296296,3.259259,0.296296,0.888889 +L 0.296296,0.888889,0,0.592593 +L 0.592593,3.259259,0.592593,0.888889 +L 0.592593,0.888889,1.481481,0.296296 +L 0.888889,3.555556,0.888889,0.888889 +L 0.888889,0.888889,1.481481,0.592593 +L 1.481481,0.592593,1.777778,0.296296 +L 0,0.592593,0.296296,0.592593 +L 0.296296,0.592593,0.888889,0.296296 +L 0.888889,0.296296,1.185185,0 + +[e] 19 +L 0.592593,1.777778,2.37037,2.962963 +L 2.37037,2.962963,1.481481,4.148148 +L 1.481481,4.148148,0.296296,3.259259 +L 0.296296,3.259259,0,2.666667 +L 0,2.666667,0,1.185185 +L 0,1.185185,0.296296,0.592593 +L 0.296296,0.592593,0.888889,0 +L 0.888889,0,2.074074,0.592593 +L 2.074074,2.962963,1.185185,3.851852 +L 0.592593,3.259259,0.296296,2.666667 +L 0.296296,2.666667,0.296296,1.185185 +L 0.296296,1.185185,0.592593,0.592593 +L 0.592593,0.592593,0.888889,0.296296 +L 1.777778,2.666667,1.185185,3.555556 +L 1.185185,3.555556,0.888889,3.555556 +L 0.888889,3.555556,0.592593,2.962963 +L 0.592593,2.962963,0.592593,1.481481 +L 0.592593,1.481481,0.888889,0.888889 +L 0.888889,0.888889,1.481481,0.296296 + +[f] 31 +L 2.962963,6.222222,2.666667,5.925926 +L 2.666667,5.925926,2.074074,5.925926 +L 2.074074,5.925926,1.481481,6.222222 +L 1.481481,6.222222,0.888889,6.222222 +L 0.888889,6.222222,0.592593,5.62963 +L 0.592593,5.62963,0.592593,4.148148 +L 0.592593,4.148148,0.296296,3.555556 +L 0.296296,3.555556,0,3.259259 +L 2.37037,5.62963,1.777778,5.62963 +L 1.777778,5.62963,1.185185,5.925926 +L 1.185185,5.925926,0.888889,5.925926 +L 2.962963,6.222222,2.666667,5.62963 +L 2.666667,5.62963,2.37037,5.333333 +L 2.37037,5.333333,1.777778,5.333333 +L 1.777778,5.333333,1.185185,5.62963 +L 1.185185,5.62963,0.888889,5.62963 +L 0.888889,5.62963,0.592593,5.333333 +L 0.592593,4.740741,0.888889,4.148148 +L 0.888889,4.148148,1.185185,3.851852 +L 1.185185,3.851852,1.777778,3.555556 +L 1.777778,3.555556,2.37037,3.555556 +L 2.37037,3.555556,2.37037,3.259259 +L 0,3.259259,0.592593,3.259259 +L 1.185185,3.259259,2.37037,3.259259 +L 0.592593,3.259259,0.592593,2.074074 +L 0.592593,2.074074,0.888889,-1.481481 +L 1.481481,3.555556,0.592593,3.555556 +L 0.592593,3.555556,0.888889,3.851852 +L 0.888889,3.851852,0.888889,0 +L 1.185185,3.259259,1.185185,2.074074 +L 1.185185,2.074074,0.888889,-1.481481 + +[g] 37 +L 2.074074,4.148148,1.185185,3.851852 +L 1.185185,3.851852,0.592593,3.555556 +L 0.592593,3.555556,0.296296,3.259259 +L 0.296296,3.259259,0,2.37037 +L 0,2.37037,0,1.481481 +L 0,1.481481,0.296296,0.592593 +L 0.296296,0.592593,0.592593,0 +L 0.592593,0,2.37037,0.888889 +L 0.296296,1.185185,0.592593,0.592593 +L 0.592593,0.592593,0.888889,0.296296 +L 1.185185,3.851852,0.592593,3.259259 +L 0.592593,3.259259,0.296296,2.37037 +L 0.296296,2.37037,0.296296,1.777778 +L 0.296296,1.777778,0.592593,0.888889 +L 0.592593,0.888889,1.185185,0.296296 +L 1.481481,3.851852,1.777778,3.555556 +L 1.777778,3.555556,2.37037,3.259259 +L 2.37037,3.259259,2.37037,0.888889 +L 2.37037,0.888889,2.666667,0 +L 2.666667,0,2.666667,-0.592593 +L 2.666667,-0.592593,2.37037,-1.185185 +L 1.777778,3.851852,2.666667,3.259259 +L 2.666667,3.259259,2.666667,0.296296 +L 2.074074,4.148148,2.37037,3.851852 +L 2.37037,3.851852,2.962963,3.555556 +L 2.962963,3.555556,3.259259,3.555556 +L 2.962963,3.259259,3.259259,3.555556 +L 2.962963,3.259259,2.962963,-0.296296 +L 2.962963,-0.296296,2.666667,-0.888889 +L 2.666667,-0.888889,2.37037,-1.185185 +L 2.37037,-1.185185,1.777778,-1.481481 +L 1.777778,-1.481481,0.888889,-1.481481 +L 0.888889,-1.481481,0.296296,-1.185185 +L 0.296296,-1.185185,0,-0.888889 +L 0,-0.888889,0,-0.592593 +L 0,-0.592593,0.296296,-0.592593 +L 0.296296,-0.592593,0.296296,-0.888889 + +[h] 34 +L 0,5.62963,0.296296,5.333333 +L 0.296296,5.333333,0.592593,4.740741 +L 2.37037,6.222222,1.481481,5.925926 +L 1.481481,5.925926,0.888889,5.333333 +L 0.888889,5.333333,0.592593,4.740741 +L 0.592593,4.740741,0.592593,0.888889 +L 0.592593,0.888889,0.296296,0.592593 +L 1.185185,5.333333,0.888889,4.740741 +L 0.888889,4.740741,0.888889,0.592593 +L 0.888889,0.592593,1.185185,0.296296 +L 2.37037,6.222222,1.777778,5.925926 +L 1.777778,5.925926,1.481481,5.62963 +L 1.481481,5.62963,1.185185,4.740741 +L 1.185185,4.740741,1.185185,0.888889 +L 1.185185,0.888889,1.481481,0.592593 +L 1.481481,0.592593,1.777778,0.592593 +L 0.296296,0.592593,0.888889,0.296296 +L 0.888889,0.296296,1.185185,0 +L 1.185185,0,2.074074,0.888889 +L 1.185185,3.259259,2.962963,4.148148 +L 2.962963,4.148148,3.259259,3.555556 +L 3.259259,3.555556,3.555556,2.37037 +L 3.555556,2.37037,3.555556,1.185185 +L 3.555556,1.185185,3.259259,0.296296 +L 3.259259,0.296296,2.962963,-0.296296 +L 2.962963,-0.296296,2.37037,-0.888889 +L 2.37037,-0.888889,1.481481,-1.481481 +L 2.666667,3.851852,2.962963,3.555556 +L 2.962963,3.555556,3.259259,2.666667 +L 2.37037,3.851852,2.962963,2.962963 +L 2.962963,2.962963,3.259259,2.074074 +L 3.259259,2.074074,3.259259,1.185185 +L 3.259259,1.185185,2.962963,0 +L 2.962963,0,2.37037,-0.888889 + +[i] 23 +L 1.185185,6.222222,0.888889,5.925926 +L 0.888889,5.925926,0.888889,5.62963 +L 0.888889,5.62963,1.185185,5.333333 +L 1.185185,5.333333,1.481481,5.62963 +L 1.481481,5.62963,1.481481,5.925926 +L 1.481481,5.925926,1.185185,6.222222 +L 0.888889,5.925926,1.481481,5.62963 +L 0.888889,5.62963,1.481481,5.925926 +L 0.296296,3.555556,0.592593,3.555556 +L 0.592593,3.555556,0.888889,3.259259 +L 0.888889,3.259259,0.888889,0.592593 +L 0.888889,0.592593,1.481481,0 +L 1.481481,0,2.37037,0.888889 +L 0.592593,3.851852,1.185185,3.555556 +L 1.185185,3.555556,1.185185,0.888889 +L 1.185185,0.888889,1.777778,0.296296 +L 0,3.259259,0.888889,4.148148 +L 0.888889,4.148148,1.185185,3.851852 +L 1.185185,3.851852,1.777778,3.555556 +L 1.481481,3.259259,1.777778,3.555556 +L 1.481481,3.259259,1.481481,0.888889 +L 1.481481,0.888889,1.777778,0.592593 +L 1.777778,0.592593,2.074074,0.592593 + +[j] 27 +L 1.481481,6.222222,1.185185,5.925926 +L 1.185185,5.925926,1.185185,5.62963 +L 1.185185,5.62963,1.481481,5.333333 +L 1.481481,5.333333,1.777778,5.62963 +L 1.777778,5.62963,1.777778,5.925926 +L 1.777778,5.925926,1.481481,6.222222 +L 1.185185,5.925926,1.777778,5.62963 +L 1.185185,5.62963,1.777778,5.925926 +L 0.592593,3.555556,0.888889,3.555556 +L 0.888889,3.555556,1.185185,3.259259 +L 1.185185,3.259259,1.185185,0 +L 1.185185,0,0.888889,-0.888889 +L 0.888889,-0.888889,0.592593,-1.185185 +L 0.592593,-1.185185,0,-1.481481 +L 0.888889,3.851852,1.481481,3.555556 +L 1.481481,3.555556,1.481481,0 +L 1.481481,0,1.185185,-0.592593 +L 0.296296,3.259259,1.185185,4.148148 +L 1.185185,4.148148,1.481481,3.851852 +L 1.481481,3.851852,2.074074,3.555556 +L 1.777778,3.259259,2.074074,3.555556 +L 1.777778,3.259259,1.777778,0 +L 1.777778,0,1.481481,-0.592593 +L 1.481481,-0.592593,0.888889,-1.185185 +L 0.888889,-1.185185,0,-1.481481 +L 1.777778,0,2.074074,-0.592593 +L 2.074074,-0.592593,2.37037,-0.888889 + +[k] 37 +L 0,5.62963,0.296296,5.333333 +L 0.296296,5.333333,0.592593,4.740741 +L 2.074074,6.222222,1.481481,5.925926 +L 1.481481,5.925926,0.888889,5.333333 +L 0.888889,5.333333,0.592593,4.740741 +L 0.592593,4.740741,0.592593,4.148148 +L 0.592593,4.148148,0.296296,3.555556 +L 0.296296,3.555556,0,3.259259 +L 0.592593,3.259259,0.592593,0.888889 +L 0.592593,0.888889,0.296296,0.592593 +L 1.185185,5.333333,0.888889,4.740741 +L 0.888889,4.740741,0.888889,4.148148 +L 0.888889,3.555556,0.592593,3.555556 +L 0.592593,3.555556,0.888889,4.148148 +L 0.888889,4.148148,0.888889,0.888889 +L 0.888889,0.888889,1.481481,0.296296 +L 2.074074,6.222222,1.481481,5.62963 +L 1.481481,5.62963,1.185185,4.740741 +L 1.185185,4.740741,1.185185,3.555556 +L 1.185185,3.259259,1.185185,0.888889 +L 1.185185,0.888889,1.481481,0.592593 +L 1.481481,0.592593,1.777778,0.592593 +L 0.296296,0.592593,0.888889,0.296296 +L 0.888889,0.296296,1.185185,0 +L 1.185185,0,2.074074,0.888889 +L 1.185185,4.444444,2.37037,5.333333 +L 2.37037,5.333333,2.666667,5.037037 +L 2.666667,5.037037,2.666667,4.444444 +L 2.666667,4.444444,2.074074,3.851852 +L 2.074074,3.851852,1.481481,3.555556 +L 2.074074,5.037037,2.37037,4.740741 +L 2.37037,4.740741,2.37037,4.444444 +L 2.37037,4.444444,2.074074,3.851852 +L 1.185185,3.555556,2.666667,3.555556 +L 2.666667,3.555556,2.666667,3.259259 +L 0,3.259259,0.592593,3.259259 +L 1.185185,3.259259,2.666667,3.259259 + +[l] 19 +L 0,5.62963,0.296296,5.333333 +L 0.296296,5.333333,0.592593,4.740741 +L 2.37037,6.222222,1.481481,5.925926 +L 1.481481,5.925926,0.888889,5.333333 +L 0.888889,5.333333,0.592593,4.740741 +L 0.592593,4.740741,0.592593,0.888889 +L 0.592593,0.888889,0.296296,0.592593 +L 1.185185,5.333333,0.888889,4.740741 +L 0.888889,4.740741,0.888889,0.592593 +L 0.888889,0.592593,1.481481,0.296296 +L 2.37037,6.222222,1.777778,5.925926 +L 1.777778,5.925926,1.481481,5.62963 +L 1.481481,5.62963,1.185185,4.740741 +L 1.185185,4.740741,1.185185,0.888889 +L 1.185185,0.888889,1.481481,0.592593 +L 1.481481,0.592593,1.777778,0.592593 +L 0.296296,0.592593,0.888889,0.296296 +L 0.888889,0.296296,1.185185,0 +L 1.185185,0,2.074074,0.888889 + +[m] 52 +L 0.296296,3.555556,0.592593,3.555556 +L 0.592593,3.555556,0.888889,3.259259 +L 0.888889,3.259259,0.888889,0.888889 +L 0.888889,0.888889,0.592593,0.592593 +L 0.592593,0.592593,1.185185,0 +L 0.592593,3.851852,1.185185,3.259259 +L 1.185185,3.259259,1.185185,0.888889 +L 1.185185,0.888889,0.888889,0.592593 +L 0.888889,0.592593,1.185185,0.296296 +L 1.185185,0.296296,1.481481,0.592593 +L 1.481481,0.592593,1.185185,0.888889 +L 0,3.259259,0.888889,4.148148 +L 0.888889,4.148148,1.481481,3.555556 +L 1.481481,3.555556,1.481481,0.888889 +L 1.481481,0.888889,1.777778,0.592593 +L 1.777778,0.592593,1.185185,0 +L 2.37037,3.851852,2.962963,3.555556 +L 2.962963,3.555556,3.259259,2.962963 +L 3.259259,2.962963,3.259259,0.888889 +L 3.259259,0.888889,2.962963,0.592593 +L 2.962963,0.592593,3.555556,0 +L 2.962963,3.851852,3.259259,3.555556 +L 3.259259,3.555556,3.555556,2.962963 +L 3.555556,2.962963,3.555556,0.888889 +L 3.555556,0.888889,3.259259,0.592593 +L 3.259259,0.592593,3.555556,0.296296 +L 3.555556,0.296296,3.851852,0.592593 +L 3.851852,0.592593,3.555556,0.888889 +L 1.481481,3.259259,2.37037,3.851852 +L 2.37037,3.851852,2.962963,4.148148 +L 2.962963,4.148148,3.555556,3.851852 +L 3.555556,3.851852,3.851852,3.259259 +L 3.851852,3.259259,3.851852,0.888889 +L 3.851852,0.888889,4.148148,0.592593 +L 4.148148,0.592593,3.555556,0 +L 4.740741,3.851852,5.037037,3.555556 +L 5.037037,3.555556,5.62963,3.259259 +L 5.62963,3.259259,5.62963,0.592593 +L 5.62963,0.592593,6.222222,0 +L 6.222222,0,7.111111,0.888889 +L 5.037037,3.851852,5.925926,3.259259 +L 5.925926,3.259259,5.925926,0.888889 +L 5.925926,0.888889,6.518519,0.296296 +L 3.851852,3.259259,4.740741,3.851852 +L 4.740741,3.851852,5.333333,4.148148 +L 5.333333,4.148148,5.62963,3.851852 +L 5.62963,3.851852,6.222222,3.555556 +L 6.222222,3.555556,6.518519,3.555556 +L 6.222222,3.259259,6.518519,3.555556 +L 6.222222,3.259259,6.222222,0.888889 +L 6.222222,0.888889,6.518519,0.592593 +L 6.518519,0.592593,6.814815,0.592593 + +[n] 33 +L 0.296296,3.555556,0.592593,3.555556 +L 0.592593,3.555556,0.888889,3.259259 +L 0.888889,3.259259,0.888889,0.888889 +L 0.888889,0.888889,0.592593,0.592593 +L 0.592593,0.592593,1.185185,0 +L 0.592593,3.851852,1.185185,3.259259 +L 1.185185,3.259259,1.185185,0.888889 +L 1.185185,0.888889,0.888889,0.592593 +L 0.888889,0.592593,1.185185,0.296296 +L 1.185185,0.296296,1.481481,0.592593 +L 1.481481,0.592593,1.185185,0.888889 +L 0,3.259259,0.888889,4.148148 +L 0.888889,4.148148,1.481481,3.555556 +L 1.481481,3.555556,1.481481,0.888889 +L 1.481481,0.888889,1.777778,0.592593 +L 1.777778,0.592593,1.185185,0 +L 2.37037,3.851852,2.666667,3.555556 +L 2.666667,3.555556,3.259259,3.259259 +L 3.259259,3.259259,3.259259,0.592593 +L 3.259259,0.592593,3.851852,0 +L 3.851852,0,4.740741,0.888889 +L 2.666667,3.851852,3.555556,3.259259 +L 3.555556,3.259259,3.555556,0.888889 +L 3.555556,0.888889,4.148148,0.296296 +L 1.481481,3.259259,2.37037,3.851852 +L 2.37037,3.851852,2.962963,4.148148 +L 2.962963,4.148148,3.259259,3.851852 +L 3.259259,3.851852,3.851852,3.555556 +L 3.851852,3.555556,4.148148,3.555556 +L 3.851852,3.259259,4.148148,3.555556 +L 3.851852,3.259259,3.851852,0.888889 +L 3.851852,0.888889,4.148148,0.592593 +L 4.148148,0.592593,4.444444,0.592593 + +[o] 27 +L 0.296296,3.259259,0.296296,0.888889 +L 0.296296,0.888889,0,0.592593 +L 0.592593,3.259259,0.592593,0.888889 +L 0.592593,0.888889,1.481481,0.296296 +L 1.185185,3.555556,0.888889,3.259259 +L 0.888889,3.259259,0.888889,0.888889 +L 0.888889,0.888889,1.481481,0.592593 +L 1.481481,0.592593,1.777778,0.296296 +L 0,0.592593,0.296296,0.592593 +L 0.296296,0.592593,0.888889,0.296296 +L 0.888889,0.296296,1.185185,0 +L 1.185185,0,2.074074,0.296296 +L 0.296296,3.259259,1.185185,3.555556 +L 1.185185,3.555556,2.666667,4.148148 +L 2.666667,4.148148,2.962963,3.555556 +L 2.962963,3.555556,3.259259,2.666667 +L 3.259259,2.666667,3.259259,1.777778 +L 3.259259,1.777778,2.962963,0.888889 +L 2.962963,0.888889,2.666667,0.592593 +L 2.666667,0.592593,2.074074,0.296296 +L 2.37037,3.851852,2.666667,3.555556 +L 2.666667,3.555556,2.962963,2.962963 +L 2.074074,3.851852,2.666667,3.259259 +L 2.666667,3.259259,2.962963,2.37037 +L 2.962963,2.37037,2.962963,1.777778 +L 2.962963,1.777778,2.666667,0.888889 +L 2.666667,0.888889,2.074074,0.296296 + +[p] 35 +L 0.888889,5.037037,0.296296,4.444444 +L 0.296296,4.444444,0.296296,3.851852 +L 0.296296,3.851852,0.592593,2.962963 +L 0.592593,2.962963,0.592593,0.888889 +L 0.592593,0.888889,0,0.296296 +L 0.592593,0.592593,0.888889,-1.481481 +L 0.592593,4.148148,0.592593,3.851852 +L 0.592593,3.851852,0.888889,2.962963 +L 0.888889,2.962963,0.888889,0 +L 0.592593,4.740741,0.592593,4.444444 +L 0.592593,4.444444,0.888889,3.851852 +L 0.888889,3.851852,1.185185,2.962963 +L 1.185185,2.962963,1.185185,0.888889 +L 1.185185,0.888889,1.481481,0.888889 +L 1.481481,0.888889,2.074074,0.592593 +L 2.074074,0.592593,2.37037,0.296296 +L 1.185185,0.592593,0.888889,-1.481481 +L 2.074074,0.296296,1.481481,0.592593 +L 2.37037,0.296296,1.777778,0 +L 1.777778,0,1.185185,0.592593 +L 0.592593,0.592593,0,0.296296 +L 1.185185,3.259259,2.962963,4.148148 +L 2.962963,4.148148,3.259259,3.555556 +L 3.259259,3.555556,3.555556,2.666667 +L 3.555556,2.666667,3.555556,1.777778 +L 3.555556,1.777778,3.259259,0.888889 +L 3.259259,0.888889,2.962963,0.592593 +L 2.962963,0.592593,2.37037,0.296296 +L 2.666667,3.851852,2.962963,3.555556 +L 2.962963,3.555556,3.259259,2.962963 +L 2.37037,3.851852,2.962963,3.259259 +L 2.962963,3.259259,3.259259,2.37037 +L 3.259259,2.37037,3.259259,1.777778 +L 3.259259,1.777778,2.962963,0.888889 +L 2.962963,0.888889,2.37037,0.296296 + +[q] 27 +L 2.074074,4.148148,1.185185,3.851852 +L 1.185185,3.851852,0.592593,3.555556 +L 0.592593,3.555556,0.296296,3.259259 +L 0.296296,3.259259,0,2.37037 +L 0,2.37037,0,1.481481 +L 0,1.481481,0.296296,0.592593 +L 0.296296,0.592593,0.592593,0 +L 0.592593,0,2.37037,0.888889 +L 0.296296,1.185185,0.592593,0.592593 +L 0.592593,0.592593,0.888889,0.296296 +L 1.185185,3.851852,0.592593,3.259259 +L 0.592593,3.259259,0.296296,2.37037 +L 0.296296,2.37037,0.296296,1.777778 +L 0.296296,1.777778,0.592593,0.888889 +L 0.592593,0.888889,1.185185,0.296296 +L 1.481481,3.851852,1.777778,3.555556 +L 1.777778,3.555556,2.37037,3.259259 +L 2.37037,3.259259,2.37037,0.888889 +L 2.37037,0.888889,2.666667,-1.481481 +L 1.777778,3.851852,2.666667,3.259259 +L 2.666667,3.259259,2.666667,0 +L 2.074074,4.148148,2.37037,3.851852 +L 2.37037,3.851852,2.962963,3.555556 +L 2.962963,3.555556,3.259259,3.555556 +L 2.962963,3.259259,3.259259,3.555556 +L 2.962963,3.259259,2.962963,0.888889 +L 2.962963,0.888889,2.666667,-1.481481 + +[r] 20 +L 0.296296,3.555556,0.592593,3.555556 +L 0.592593,3.555556,0.888889,3.259259 +L 0.888889,3.259259,0.888889,0.888889 +L 0.888889,0.888889,0.592593,0.592593 +L 0.592593,3.851852,1.185185,3.259259 +L 1.185185,3.259259,1.185185,0.592593 +L 1.185185,0.592593,1.777778,0.296296 +L 0,3.259259,0.888889,4.148148 +L 0.888889,4.148148,1.481481,3.555556 +L 1.481481,3.555556,1.481481,0.888889 +L 1.481481,0.888889,1.777778,0.592593 +L 1.777778,0.592593,2.074074,0.592593 +L 0.592593,0.592593,1.185185,0.296296 +L 1.185185,0.296296,1.481481,0 +L 1.481481,0,2.37037,0.888889 +L 2.074074,3.851852,2.37037,3.259259 +L 2.37037,3.259259,2.962963,3.555556 +L 2.962963,3.555556,2.666667,4.148148 +L 2.666667,4.148148,1.481481,3.555556 +L 2.37037,3.851852,2.666667,3.555556 + +[s] 26 +L 2.962963,6.222222,2.666667,5.925926 +L 2.666667,5.925926,2.074074,5.925926 +L 2.074074,5.925926,1.481481,6.222222 +L 1.481481,6.222222,0.888889,6.222222 +L 0.888889,6.222222,0.592593,5.62963 +L 0.592593,5.62963,0.592593,4.148148 +L 0.592593,4.148148,0.296296,3.555556 +L 0.296296,3.555556,0,3.259259 +L 2.37037,5.62963,1.777778,5.62963 +L 1.777778,5.62963,1.185185,5.925926 +L 1.185185,5.925926,0.888889,5.925926 +L 2.962963,6.222222,2.666667,5.62963 +L 2.666667,5.62963,2.37037,5.333333 +L 2.37037,5.333333,1.777778,5.333333 +L 1.777778,5.333333,1.185185,5.62963 +L 1.185185,5.62963,0.888889,5.62963 +L 0.888889,5.62963,0.592593,5.333333 +L 0.592593,4.740741,1.185185,3.259259 +L 0.592593,3.259259,0.592593,2.074074 +L 0.592593,2.074074,0.888889,-1.481481 +L 0.888889,3.555556,0.592593,3.555556 +L 0.592593,3.555556,0.888889,3.851852 +L 0.888889,3.851852,0.888889,0 +L 1.185185,3.259259,1.185185,2.074074 +L 1.185185,2.074074,0.888889,-1.481481 +L 0,3.259259,0.592593,3.259259 + +[t] 21 +L 1.481481,5.333333,1.185185,4.444444 +L 1.185185,4.444444,0.888889,3.851852 +L 0.888889,3.851852,0.592593,3.555556 +L 0.592593,3.555556,0,3.259259 +L 1.481481,5.333333,1.481481,3.555556 +L 1.481481,3.555556,2.37037,3.555556 +L 2.37037,3.555556,2.37037,3.259259 +L 0,3.259259,0.888889,3.259259 +L 1.481481,3.259259,2.37037,3.259259 +L 0.888889,3.259259,0.888889,0.888889 +L 0.888889,0.888889,0.592593,0.592593 +L 1.185185,3.555556,0.888889,3.555556 +L 0.888889,3.555556,1.185185,4.148148 +L 1.185185,4.148148,1.185185,0.888889 +L 1.185185,0.888889,1.777778,0.296296 +L 1.481481,3.259259,1.481481,0.888889 +L 1.481481,0.888889,1.777778,0.592593 +L 1.777778,0.592593,2.074074,0.592593 +L 0.592593,0.592593,1.185185,0.296296 +L 1.185185,0.296296,1.481481,0 +L 1.481481,0,2.37037,0.888889 + +[u] 33 +L 0.296296,3.555556,0.592593,3.555556 +L 0.592593,3.555556,0.888889,3.259259 +L 0.888889,3.259259,0.888889,0.888889 +L 0.888889,0.888889,0.592593,0.592593 +L 0.592593,3.851852,1.185185,3.259259 +L 1.185185,3.259259,1.185185,0.888889 +L 1.185185,0.888889,1.777778,0.296296 +L 0,3.259259,0.888889,4.148148 +L 0.888889,4.148148,1.481481,3.555556 +L 1.481481,3.555556,1.481481,0.888889 +L 1.481481,0.888889,2.074074,0.592593 +L 2.074074,0.592593,2.37037,0.296296 +L 0.592593,0.592593,0.888889,0.592593 +L 0.888889,0.592593,1.481481,0.296296 +L 1.481481,0.296296,1.777778,0 +L 1.777778,0,2.37037,0.296296 +L 2.37037,0.296296,3.259259,0.888889 +L 3.555556,4.148148,2.962963,3.555556 +L 2.962963,3.555556,3.259259,3.259259 +L 3.259259,3.259259,3.259259,0.592593 +L 3.259259,0.592593,3.851852,0 +L 3.851852,0,4.740741,0.888889 +L 3.555556,3.259259,3.851852,3.555556 +L 3.851852,3.555556,3.555556,3.851852 +L 3.555556,3.851852,3.259259,3.555556 +L 3.259259,3.555556,3.555556,3.259259 +L 3.555556,3.259259,3.555556,0.888889 +L 3.555556,0.888889,4.148148,0.296296 +L 3.555556,4.148148,4.148148,3.555556 +L 4.148148,3.555556,3.851852,3.259259 +L 3.851852,3.259259,3.851852,0.888889 +L 3.851852,0.888889,4.148148,0.592593 +L 4.148148,0.592593,4.444444,0.592593 + +[v] 33 +L 0.592593,4.740741,0,4.148148 +L 0,4.148148,0,3.555556 +L 0,3.555556,0.296296,2.666667 +L 0.296296,2.666667,0.296296,0.888889 +L 0.296296,0.888889,0,0.592593 +L 0.296296,3.851852,0.296296,3.555556 +L 0.296296,3.555556,0.592593,2.666667 +L 0.592593,2.666667,0.592593,0.888889 +L 0.592593,0.888889,1.481481,0.296296 +L 0.296296,4.444444,0.296296,4.148148 +L 0.296296,4.148148,0.592593,3.555556 +L 0.592593,3.555556,0.888889,2.666667 +L 0.888889,2.666667,0.888889,0.888889 +L 0.888889,0.888889,1.481481,0.592593 +L 1.481481,0.592593,1.777778,0.296296 +L 0,0.592593,0.296296,0.592593 +L 0.296296,0.592593,0.888889,0.296296 +L 0.888889,0.296296,1.185185,0 +L 1.185185,0,2.074074,0.296296 +L 0.888889,3.259259,2.666667,4.148148 +L 2.666667,4.148148,2.962963,3.555556 +L 2.962963,3.555556,3.259259,2.666667 +L 3.259259,2.666667,3.259259,1.777778 +L 3.259259,1.777778,2.962963,0.888889 +L 2.962963,0.888889,2.666667,0.592593 +L 2.666667,0.592593,2.074074,0.296296 +L 2.37037,3.851852,2.666667,3.555556 +L 2.666667,3.555556,2.962963,2.962963 +L 2.074074,3.851852,2.666667,3.259259 +L 2.666667,3.259259,2.962963,2.37037 +L 2.962963,2.37037,2.962963,1.777778 +L 2.962963,1.777778,2.666667,0.888889 +L 2.666667,0.888889,2.074074,0.296296 + +[w] 52 +L 0.592593,4.740741,0,4.148148 +L 0,4.148148,0,3.555556 +L 0,3.555556,0.296296,2.666667 +L 0.296296,2.666667,0.296296,0.888889 +L 0.296296,0.888889,0,0.592593 +L 0,0.592593,0.592593,0 +L 0.296296,3.851852,0.296296,3.555556 +L 0.296296,3.555556,0.592593,2.666667 +L 0.592593,2.666667,0.592593,0.888889 +L 0.592593,0.888889,0.296296,0.592593 +L 0.296296,0.592593,0.592593,0.296296 +L 0.592593,0.296296,0.888889,0.592593 +L 0.888889,0.592593,0.592593,0.888889 +L 0.296296,4.444444,0.296296,4.148148 +L 0.296296,4.148148,0.592593,3.555556 +L 0.592593,3.555556,0.888889,2.666667 +L 0.888889,2.666667,0.888889,0.888889 +L 0.888889,0.888889,1.185185,0.592593 +L 1.185185,0.592593,0.592593,0 +L 1.777778,3.851852,2.37037,3.555556 +L 2.37037,3.555556,2.666667,2.962963 +L 2.666667,2.962963,2.666667,0.888889 +L 2.666667,0.888889,2.37037,0.592593 +L 2.37037,3.851852,2.666667,3.555556 +L 2.666667,3.555556,2.962963,2.962963 +L 2.962963,2.962963,2.962963,0.888889 +L 2.962963,0.888889,3.851852,0.296296 +L 0.888889,3.259259,1.777778,3.851852 +L 1.777778,3.851852,2.37037,4.148148 +L 2.37037,4.148148,2.962963,3.851852 +L 2.962963,3.851852,3.259259,3.259259 +L 3.259259,3.259259,3.259259,0.888889 +L 3.259259,0.888889,3.851852,0.592593 +L 3.851852,0.592593,4.148148,0.296296 +L 2.37037,0.592593,2.666667,0.592593 +L 2.666667,0.592593,3.259259,0.296296 +L 3.259259,0.296296,3.555556,0 +L 3.555556,0,4.444444,0.296296 +L 3.259259,3.259259,5.037037,4.148148 +L 5.037037,4.148148,5.333333,3.555556 +L 5.333333,3.555556,5.62963,2.666667 +L 5.62963,2.666667,5.62963,2.074074 +L 5.62963,2.074074,5.333333,0.888889 +L 5.333333,0.888889,5.037037,0.592593 +L 5.037037,0.592593,4.444444,0.296296 +L 4.740741,3.851852,5.037037,3.555556 +L 5.037037,3.555556,5.333333,2.962963 +L 4.444444,3.851852,5.037037,3.259259 +L 5.037037,3.259259,5.333333,2.37037 +L 5.333333,2.37037,5.333333,1.777778 +L 5.333333,1.777778,5.037037,0.888889 +L 5.037037,0.888889,4.444444,0.296296 + +[x] 32 +L 0.592593,3.555556,0.888889,3.555556 +L 0.888889,3.555556,1.185185,3.259259 +L 1.185185,3.259259,1.185185,0.888889 +L 1.185185,0.888889,0.888889,0.888889 +L 0.888889,0.888889,0.296296,0.592593 +L 0.296296,0.592593,0,0 +L 0,0,0,-0.592593 +L 0,-0.592593,0.296296,-1.185185 +L 0.296296,-1.185185,0.888889,-1.481481 +L 0.888889,-1.481481,1.777778,-1.481481 +L 1.777778,-1.481481,2.666667,-1.185185 +L 2.666667,-1.185185,2.666667,-0.888889 +L 2.666667,-0.888889,2.37037,-0.888889 +L 2.37037,-0.888889,2.37037,-1.185185 +L 0.888889,3.851852,1.481481,3.259259 +L 1.481481,3.259259,1.481481,0.888889 +L 1.481481,0.888889,2.37037,0.296296 +L 0.296296,3.259259,1.185185,4.148148 +L 1.185185,4.148148,1.777778,3.555556 +L 1.777778,3.555556,1.777778,0.888889 +L 1.777778,0.888889,2.37037,0.592593 +L 2.37037,0.592593,2.666667,0.296296 +L 3.259259,0.592593,2.074074,0 +L 2.074074,0,1.777778,0.296296 +L 1.777778,0.296296,1.185185,0.592593 +L 1.185185,0.592593,0.592593,0.592593 +L 0.592593,0.592593,0,0 +L 2.37037,3.851852,2.666667,3.259259 +L 2.666667,3.259259,3.259259,3.555556 +L 3.259259,3.555556,2.962963,4.148148 +L 2.962963,4.148148,1.777778,3.555556 +L 2.666667,3.851852,2.962963,3.555556 + +[y] 33 +L 0.592593,4.740741,0,4.148148 +L 0,4.148148,0,3.555556 +L 0,3.555556,0.296296,2.666667 +L 0.296296,2.666667,0.296296,0.888889 +L 0.296296,0.888889,0,0.592593 +L 0.296296,3.851852,0.296296,3.555556 +L 0.296296,3.555556,0.592593,2.666667 +L 0.592593,2.666667,0.592593,0.592593 +L 0.592593,0.592593,1.185185,0.296296 +L 0.296296,4.444444,0.296296,4.148148 +L 0.296296,4.148148,0.592593,3.555556 +L 0.592593,3.555556,0.888889,2.666667 +L 0.888889,2.666667,0.888889,0.888889 +L 0.888889,0.888889,1.185185,0.592593 +L 1.185185,0.592593,1.481481,0.592593 +L 0,0.592593,0.592593,0.296296 +L 0.592593,0.296296,0.888889,0 +L 0.888889,0,1.777778,0.888889 +L 0.888889,3.259259,2.666667,4.148148 +L 2.666667,4.148148,2.962963,3.555556 +L 2.962963,3.555556,3.259259,2.37037 +L 3.259259,2.37037,3.259259,1.185185 +L 3.259259,1.185185,2.962963,0.296296 +L 2.962963,0.296296,2.666667,-0.296296 +L 2.666667,-0.296296,2.074074,-0.888889 +L 2.074074,-0.888889,1.185185,-1.481481 +L 2.37037,3.851852,2.666667,3.555556 +L 2.666667,3.555556,2.962963,2.666667 +L 2.074074,3.851852,2.666667,2.962963 +L 2.666667,2.962963,2.962963,2.074074 +L 2.962963,2.074074,2.962963,1.185185 +L 2.962963,1.185185,2.666667,0 +L 2.666667,0,2.074074,-0.888889 + +[z] 31 +L 0,3.259259,1.481481,4.148148 +L 1.481481,4.148148,2.074074,3.851852 +L 2.074074,3.851852,2.37037,3.259259 +L 2.37037,3.259259,2.37037,2.666667 +L 2.37037,2.666667,2.074074,2.074074 +L 2.074074,2.074074,0.888889,1.481481 +L 1.481481,3.851852,2.074074,3.555556 +L 1.185185,3.851852,1.777778,3.555556 +L 1.777778,3.555556,2.074074,2.962963 +L 2.074074,2.962963,2.074074,2.666667 +L 2.074074,2.666667,1.777778,2.074074 +L 1.777778,2.074074,1.481481,1.777778 +L 1.481481,1.777778,2.074074,1.185185 +L 2.074074,1.185185,2.37037,0.592593 +L 2.37037,0.592593,2.37037,-0.592593 +L 2.37037,-0.592593,2.074074,-1.185185 +L 2.074074,-1.185185,1.481481,-1.481481 +L 1.481481,-1.481481,0.888889,-1.481481 +L 0.888889,-1.481481,0.296296,-1.185185 +L 0.296296,-1.185185,0,-0.592593 +L 0,-0.592593,0,0 +L 0,0,0.296296,0.592593 +L 0.296296,0.592593,0.888889,0.888889 +L 0.888889,0.888889,2.666667,1.481481 +L 1.185185,1.481481,1.777778,1.185185 +L 1.777778,1.185185,2.074074,0.592593 +L 0.888889,1.481481,1.777778,0.888889 +L 1.777778,0.888889,2.074074,0.296296 +L 2.074074,0.296296,2.074074,-0.592593 +L 2.074074,-0.592593,1.777778,-1.185185 +L 1.777778,-1.185185,1.481481,-1.481481 + +[{] 34 +L 1.481481,7.407407,0.888889,7.111111 +L 0.888889,7.111111,0.592593,6.814815 +L 0.592593,6.814815,0.296296,6.222222 +L 0.296296,6.222222,0.296296,5.62963 +L 0.296296,5.62963,0.592593,5.037037 +L 0.592593,5.037037,0.888889,4.740741 +L 0.888889,4.740741,1.185185,4.148148 +L 1.185185,4.148148,1.185185,3.555556 +L 1.185185,3.555556,0.592593,2.962963 +L 0.888889,7.111111,0.592593,6.518519 +L 0.592593,6.518519,0.592593,5.925926 +L 0.592593,5.925926,0.888889,5.333333 +L 0.888889,5.333333,1.185185,5.037037 +L 1.185185,5.037037,1.481481,4.444444 +L 1.481481,4.444444,1.481481,3.851852 +L 1.481481,3.851852,1.185185,3.259259 +L 1.185185,3.259259,0,2.666667 +L 0,2.666667,1.185185,2.074074 +L 1.185185,2.074074,1.481481,1.481481 +L 1.481481,1.481481,1.481481,0.888889 +L 1.481481,0.888889,1.185185,0.296296 +L 1.185185,0.296296,0.888889,0 +L 0.888889,0,0.592593,-0.592593 +L 0.592593,-0.592593,0.592593,-1.185185 +L 0.592593,-1.185185,0.888889,-1.777778 +L 0.592593,2.37037,1.185185,1.777778 +L 1.185185,1.777778,1.185185,1.185185 +L 1.185185,1.185185,0.888889,0.592593 +L 0.888889,0.592593,0.592593,0.296296 +L 0.592593,0.296296,0.296296,-0.296296 +L 0.296296,-0.296296,0.296296,-0.888889 +L 0.296296,-0.888889,0.592593,-1.481481 +L 0.592593,-1.481481,0.888889,-1.777778 +L 0.888889,-1.777778,1.481481,-2.074074 + +[|] 1 +L 0,7.407407,0,-2.074074 + +[}] 34 +L 0,7.407407,0.592593,7.111111 +L 0.592593,7.111111,0.888889,6.814815 +L 0.888889,6.814815,1.185185,6.222222 +L 1.185185,6.222222,1.185185,5.62963 +L 1.185185,5.62963,0.888889,5.037037 +L 0.888889,5.037037,0.592593,4.740741 +L 0.592593,4.740741,0.296296,4.148148 +L 0.296296,4.148148,0.296296,3.555556 +L 0.296296,3.555556,0.888889,2.962963 +L 0.592593,7.111111,0.888889,6.518519 +L 0.888889,6.518519,0.888889,5.925926 +L 0.888889,5.925926,0.592593,5.333333 +L 0.592593,5.333333,0.296296,5.037037 +L 0.296296,5.037037,0,4.444444 +L 0,4.444444,0,3.851852 +L 0,3.851852,0.296296,3.259259 +L 0.296296,3.259259,1.481481,2.666667 +L 1.481481,2.666667,0.296296,2.074074 +L 0.296296,2.074074,0,1.481481 +L 0,1.481481,0,0.888889 +L 0,0.888889,0.296296,0.296296 +L 0.296296,0.296296,0.592593,0 +L 0.592593,0,0.888889,-0.592593 +L 0.888889,-0.592593,0.888889,-1.185185 +L 0.888889,-1.185185,0.592593,-1.777778 +L 0.888889,2.37037,0.296296,1.777778 +L 0.296296,1.777778,0.296296,1.185185 +L 0.296296,1.185185,0.592593,0.592593 +L 0.592593,0.592593,0.888889,0.296296 +L 0.888889,0.296296,1.185185,-0.296296 +L 1.185185,-0.296296,1.185185,-0.888889 +L 1.185185,-0.888889,0.888889,-1.481481 +L 0.888889,-1.481481,0.592593,-1.777778 +L 0.592593,-1.777778,0,-2.074074 + +#EOF diff --git a/pycam/share/fonts/gothitt.cxf b/pycam/share/fonts/gothitt.cxf new file mode 100644 index 00000000..e693e31c --- /dev/null +++ b/pycam/share/fonts/gothitt.cxf @@ -0,0 +1,2727 @@ +# Format: QCad II Font +# Creator: Adam Radlowski's "dodajf" program - GRASS font translator +# Version: 1.0.0 +# Name: Gothic Italian triplex +# LetterSpacing: 3.0 +# WordSpacing: 6.75 +# LineSpacingFactor: 1.0 +# Author: Hershey fonts + +[!] 20 +L 1.090909,7.636364,0.727273,7.272727 +L 0.727273,7.272727,0,6.909091 +L 0,6.909091,0.727273,6.545455 +L 0.727273,6.545455,1.090909,2.545455 +L 1.090909,6.545455,1.454545,6.909091 +L 1.454545,6.909091,1.090909,7.272727 +L 1.090909,7.272727,0.727273,6.909091 +L 0.727273,6.909091,1.090909,6.545455 +L 1.090909,6.545455,1.090909,2.545455 +L 1.090909,7.636364,1.454545,7.272727 +L 1.454545,7.272727,2.181818,6.909091 +L 2.181818,6.909091,1.454545,6.545455 +L 1.454545,6.545455,1.090909,2.545455 +L 1.090909,1.090909,0.363636,0.363636 +L 0.363636,0.363636,1.090909,0 +L 1.090909,0,1.818182,0.363636 +L 1.818182,0.363636,1.090909,1.090909 +L 1.090909,0.727273,0.727273,0.363636 +L 0.727273,0.363636,1.454545,0.363636 +L 1.454545,0.363636,1.090909,0.727273 + +["] 10 +L 0.363636,7.636364,0,7.272727 +L 0,7.272727,0,5.090909 +L 0.363636,7.272727,0,5.090909 +L 0.363636,7.636364,0.727273,7.272727 +L 0.727273,7.272727,0,5.090909 +L 3.636364,7.636364,3.272727,7.272727 +L 3.272727,7.272727,3.272727,5.090909 +L 3.636364,7.272727,3.272727,5.090909 +L 3.636364,7.636364,4,7.272727 +L 4,7.272727,3.272727,5.090909 + +[#] 4 +L 2.909091,7.636364,0.363636,-2.545455 +L 5.090909,7.636364,2.545455,-2.545455 +L 0.363636,3.636364,5.454545,3.636364 +L 0,1.454545,5.090909,1.454545 + +[$] 46 +L 1.818182,9.090909,1.818182,-1.454545 +L 3.272727,9.090909,3.272727,-1.454545 +L 3.272727,7.636364,4,7.272727 +L 4,7.272727,4.363636,6.545455 +L 4.363636,6.545455,4.363636,5.818182 +L 4.363636,5.818182,5.090909,6.181818 +L 5.090909,6.181818,4.727273,6.909091 +L 4.727273,6.909091,4.363636,7.272727 +L 4.363636,7.272727,3.272727,7.636364 +L 3.272727,7.636364,1.818182,7.636364 +L 1.818182,7.636364,0.727273,7.272727 +L 0.727273,7.272727,0,6.545455 +L 0,6.545455,0,5.454545 +L 0,5.454545,0.363636,4.727273 +L 0.363636,4.727273,1.454545,4 +L 1.454545,4,3.636364,3.272727 +L 3.636364,3.272727,4.363636,2.909091 +L 4.363636,2.909091,4.727273,2.181818 +L 4.727273,2.181818,4.727273,1.090909 +L 4.727273,1.090909,4.363636,0.363636 +L 4.727273,6.181818,4.363636,6.909091 +L 0.363636,5.454545,0.727273,4.727273 +L 0.727273,4.727273,1.454545,4.363636 +L 1.454545,4.363636,3.636364,3.636364 +L 3.636364,3.636364,4.363636,3.272727 +L 4.363636,3.272727,4.727273,2.545455 +L 0.727273,0.727273,0.363636,1.454545 +L 0.727273,7.272727,0.363636,6.545455 +L 0.363636,6.545455,0.363636,5.818182 +L 0.363636,5.818182,0.727273,5.090909 +L 0.727273,5.090909,1.454545,4.727273 +L 1.454545,4.727273,3.636364,4 +L 3.636364,4,4.727273,3.272727 +L 4.727273,3.272727,5.090909,2.545455 +L 5.090909,2.545455,5.090909,1.454545 +L 5.090909,1.454545,4.727273,0.727273 +L 4.727273,0.727273,4.363636,0.363636 +L 4.363636,0.363636,3.272727,0 +L 3.272727,0,1.818182,0 +L 1.818182,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 +L 0.363636,0.727273,0,1.454545 +L 0,1.454545,0.727273,1.818182 +L 0.727273,1.818182,0.727273,1.090909 +L 0.727273,1.090909,1.090909,0.363636 +L 1.090909,0.363636,1.818182,0 + +[%] 26 +L 6.545455,7.636364,0,0 +L 1.818182,7.636364,2.545455,6.909091 +L 2.545455,6.909091,2.545455,6.181818 +L 2.545455,6.181818,2.181818,5.454545 +L 2.181818,5.454545,1.454545,5.090909 +L 1.454545,5.090909,0.727273,5.090909 +L 0.727273,5.090909,0,5.818182 +L 0,5.818182,0,6.545455 +L 0,6.545455,0.363636,7.272727 +L 0.363636,7.272727,1.090909,7.636364 +L 1.090909,7.636364,1.818182,7.636364 +L 1.818182,7.636364,2.545455,7.272727 +L 2.545455,7.272727,3.636364,6.909091 +L 3.636364,6.909091,4.727273,6.909091 +L 4.727273,6.909091,5.818182,7.272727 +L 5.818182,7.272727,6.545455,7.636364 +L 5.090909,2.545455,4.363636,2.181818 +L 4.363636,2.181818,4,1.454545 +L 4,1.454545,4,0.727273 +L 4,0.727273,4.727273,0 +L 4.727273,0,5.454545,0 +L 5.454545,0,6.181818,0.363636 +L 6.181818,0.363636,6.545455,1.090909 +L 6.545455,1.090909,6.545455,1.818182 +L 6.545455,1.818182,5.818182,2.545455 +L 5.818182,2.545455,5.090909,2.545455 + +[&] 38 +L 6.181818,4.727273,6.545455,4.363636 +L 6.545455,4.363636,6.909091,4.363636 +L 6.909091,4.363636,7.272727,4.727273 +L 5.818182,4.363636,6.181818,4 +L 6.181818,4,6.909091,4 +L 5.818182,4,6.181818,3.636364 +L 6.181818,3.636364,6.545455,3.636364 +L 6.545455,3.636364,6.909091,4 +L 6.909091,4,7.272727,4.727273 +L 6.181818,4.727273,4,2.545455 +L 3.636364,2.181818,1.454545,0 +L 1.454545,0,0,1.818182 +L 0,1.818182,2.181818,4 +L 2.545455,4.363636,4,5.818182 +L 4,5.818182,2.545455,7.636364 +L 2.545455,7.636364,0.727273,5.454545 +L 0.727273,5.454545,2.909091,3.272727 +L 2.909091,3.272727,4.363636,1.090909 +L 4.363636,1.090909,5.090909,0.363636 +L 5.090909,0.363636,5.818182,0 +L 5.818182,0,6.545455,0 +L 6.545455,0,6.909091,0.363636 +L 6.909091,0.363636,7.272727,1.090909 +L 1.454545,0.363636,0.363636,1.818182 +L 3.636364,5.818182,2.545455,7.272727 +L 1.090909,5.454545,2.909091,3.636364 +L 2.909091,3.636364,4.363636,1.454545 +L 4.363636,1.454545,5.090909,0.727273 +L 5.090909,0.727273,5.818182,0.363636 +L 5.818182,0.363636,6.909091,0.363636 +L 1.818182,0.363636,0.363636,2.181818 +L 3.636364,5.454545,2.181818,7.272727 +L 1.090909,5.818182,3.272727,3.636364 +L 3.272727,3.636364,4.727273,1.454545 +L 4.727273,1.454545,5.090909,1.090909 +L 5.090909,1.090909,5.818182,0.727273 +L 5.818182,0.727273,6.909091,0.727273 +L 6.909091,0.727273,7.272727,1.090909 + +['] 10 +L 0.727273,5.454545,0.727273,6.181818 +L 0.727273,6.181818,0,6.909091 +L 0,6.909091,0.727273,7.636364 +L 0.727273,7.636364,1.090909,6.909091 +L 1.090909,6.909091,1.090909,6.181818 +L 1.090909,6.181818,0.727273,5.454545 +L 0.727273,5.454545,0,5.090909 +L 0.727273,7.272727,0.363636,6.909091 +L 0.363636,6.909091,0.727273,6.545455 +L 0.727273,6.545455,0.727273,7.272727 + +[(] 21 +L 2.545455,9.090909,1.818182,8.363636 +L 1.818182,8.363636,1.090909,7.272727 +L 1.090909,7.272727,0.363636,5.818182 +L 0.363636,5.818182,0,4 +L 0,4,0,2.545455 +L 0,2.545455,0.363636,0.727273 +L 0.363636,0.727273,1.090909,-0.727273 +L 1.090909,-0.727273,1.818182,-1.818182 +L 1.818182,-1.818182,2.545455,-2.545455 +L 1.090909,6.909091,0.727273,5.818182 +L 0.727273,5.818182,0.363636,4.363636 +L 0.363636,4.363636,0.363636,2.181818 +L 0.363636,2.181818,0.727273,0.727273 +L 0.727273,0.727273,1.090909,-0.363636 +L 1.818182,8.363636,1.454545,7.636364 +L 1.454545,7.636364,1.090909,6.545455 +L 1.090909,6.545455,0.727273,4.363636 +L 0.727273,4.363636,0.727273,2.181818 +L 0.727273,2.181818,1.090909,0 +L 1.090909,0,1.454545,-1.090909 +L 1.454545,-1.090909,1.818182,-1.818182 + +[)] 21 +L 0,9.090909,0.727273,8.363636 +L 0.727273,8.363636,1.454545,7.272727 +L 1.454545,7.272727,2.181818,5.818182 +L 2.181818,5.818182,2.545455,4 +L 2.545455,4,2.545455,2.545455 +L 2.545455,2.545455,2.181818,0.727273 +L 2.181818,0.727273,1.454545,-0.727273 +L 1.454545,-0.727273,0.727273,-1.818182 +L 0.727273,-1.818182,0,-2.545455 +L 1.454545,6.909091,1.818182,5.818182 +L 1.818182,5.818182,2.181818,4.363636 +L 2.181818,4.363636,2.181818,2.181818 +L 2.181818,2.181818,1.818182,0.727273 +L 1.818182,0.727273,1.454545,-0.363636 +L 0.727273,8.363636,1.090909,7.636364 +L 1.090909,7.636364,1.454545,6.545455 +L 1.454545,6.545455,1.818182,4.363636 +L 1.818182,4.363636,1.818182,2.181818 +L 1.818182,2.181818,1.454545,0 +L 1.454545,0,1.090909,-1.090909 +L 1.090909,-1.090909,0.727273,-1.818182 + +[*] 21 +L 1.818182,7.636364,1.454545,7.272727 +L 1.454545,7.272727,2.181818,3.636364 +L 2.181818,3.636364,1.818182,3.272727 +L 1.818182,7.636364,1.818182,3.272727 +L 1.818182,7.636364,2.181818,7.272727 +L 2.181818,7.272727,1.454545,3.636364 +L 1.454545,3.636364,1.818182,3.272727 +L 0,6.545455,0.363636,6.545455 +L 0.363636,6.545455,3.272727,4.363636 +L 3.272727,4.363636,3.636364,4.363636 +L 0,6.545455,3.636364,4.363636 +L 0,6.545455,0,6.181818 +L 0,6.181818,3.636364,4.727273 +L 3.636364,4.727273,3.636364,4.363636 +L 3.636364,6.545455,3.272727,6.545455 +L 3.272727,6.545455,0.363636,4.363636 +L 0.363636,4.363636,0,4.363636 +L 3.636364,6.545455,0,4.363636 +L 3.636364,6.545455,3.636364,6.181818 +L 3.636364,6.181818,0,4.727273 +L 0,4.727273,0,4.363636 + +[+] 8 +L 2.909091,6.545455,2.909091,0.363636 +L 2.909091,0.363636,3.272727,0.363636 +L 2.909091,6.545455,3.272727,6.545455 +L 3.272727,6.545455,3.272727,0.363636 +L 0,3.636364,6.181818,3.636364 +L 6.181818,3.636364,6.181818,3.272727 +L 0,3.636364,0,3.272727 +L 0,3.272727,6.181818,3.272727 + +[,] 10 +L 0.727273,-1.090909,0.727273,-0.363636 +L 0.727273,-0.363636,0,0.363636 +L 0,0.363636,0.727273,1.090909 +L 0.727273,1.090909,1.090909,0.363636 +L 1.090909,0.363636,1.090909,-0.363636 +L 1.090909,-0.363636,0.727273,-1.090909 +L 0.727273,-1.090909,0,-1.454545 +L 0.727273,0.727273,0.363636,0.363636 +L 0.363636,0.363636,0.727273,0 +L 0.727273,0,0.727273,0.727273 + +[-] 4 +L 0,3.636364,6.181818,3.636364 +L 6.181818,3.636364,6.181818,3.272727 +L 0,3.636364,0,3.272727 +L 0,3.272727,6.181818,3.272727 + +[.] 7 +L 0.727273,1.090909,0,0.363636 +L 0,0.363636,0.727273,0 +L 0.727273,0,1.454545,0.363636 +L 1.454545,0.363636,0.727273,1.090909 +L 0.727273,0.727273,0.363636,0.363636 +L 0.363636,0.363636,1.090909,0.363636 +L 1.090909,0.363636,0.727273,0.727273 + +[/] 4 +L 6.545455,9.090909,0,-2.545455 +L 0,-2.545455,0.363636,-2.545455 +L 6.545455,9.090909,6.909091,9.090909 +L 6.909091,9.090909,0.363636,-2.545455 + +[0] 26 +L 0.727273,6.909091,0.727273,1.090909 +L 0.727273,1.090909,0,0.727273 +L 1.090909,6.545455,1.090909,1.090909 +L 1.090909,1.090909,2.181818,0.363636 +L 1.454545,6.909091,1.454545,1.090909 +L 1.454545,1.090909,2.181818,0.727273 +L 2.181818,0.727273,2.545455,0.363636 +L 0.727273,6.909091,1.454545,6.909091 +L 1.454545,6.909091,3.272727,7.272727 +L 3.272727,7.272727,4,7.636364 +L 3.272727,7.272727,3.636364,6.909091 +L 3.636364,6.909091,4.363636,6.545455 +L 4.363636,6.545455,4.363636,0.727273 +L 3.636364,7.272727,4.727273,6.545455 +L 4.727273,6.545455,4.727273,1.090909 +L 4,7.636364,4.363636,7.272727 +L 4.363636,7.272727,5.090909,6.909091 +L 5.090909,6.909091,5.818182,6.909091 +L 5.818182,6.909091,5.090909,6.545455 +L 5.090909,6.545455,5.090909,0.727273 +L 0,0.727273,0.727273,0.727273 +L 0.727273,0.727273,1.454545,0.363636 +L 1.454545,0.363636,1.818182,0 +L 1.818182,0,2.545455,0.363636 +L 2.545455,0.363636,4.363636,0.727273 +L 4.363636,0.727273,5.090909,0.727273 + +[1] 19 +L 0,6.909091,0.363636,6.545455 +L 0.363636,6.545455,0.727273,5.818182 +L 0.727273,5.818182,0.727273,1.090909 +L 0.727273,1.090909,0,0.727273 +L 0.727273,6.545455,0.363636,6.909091 +L 0.363636,6.909091,0.727273,7.272727 +L 0.727273,7.272727,1.090909,6.545455 +L 1.090909,6.545455,1.090909,0.727273 +L 1.090909,0.727273,1.818182,0.363636 +L 0,6.909091,1.090909,7.636364 +L 1.090909,7.636364,1.454545,6.909091 +L 1.454545,6.909091,1.454545,1.090909 +L 1.454545,1.090909,2.181818,0.727273 +L 2.181818,0.727273,2.545455,0.727273 +L 0,0.727273,0.363636,0.727273 +L 0.363636,0.727273,1.090909,0.363636 +L 1.090909,0.363636,1.454545,0 +L 1.454545,0,1.818182,0.363636 +L 1.818182,0.363636,2.545455,0.727273 + +[2] 30 +L 0.363636,6.909091,1.090909,6.909091 +L 1.090909,6.909091,1.818182,7.272727 +L 1.818182,7.272727,2.181818,7.636364 +L 2.181818,7.636364,2.909091,7.272727 +L 2.909091,7.272727,4,6.909091 +L 4,6.909091,4.727273,6.909091 +L 1.818182,6.909091,2.545455,7.272727 +L 0.363636,6.909091,1.090909,6.545455 +L 1.090909,6.545455,1.818182,6.545455 +L 1.818182,6.545455,2.545455,6.909091 +L 2.545455,6.909091,2.909091,7.272727 +L 4,6.909091,4,4 +L 4.363636,6.545455,4.363636,4.363636 +L 4.727273,6.909091,4.727273,4 +L 4.727273,4,2.181818,4 +L 2.181818,4,1.090909,3.636364 +L 1.090909,3.636364,0.363636,2.909091 +L 0.363636,2.909091,0,1.818182 +L 0,1.818182,0,0 +L 0,0,1.454545,0.727273 +L 1.454545,0.727273,2.909091,1.090909 +L 2.909091,1.090909,4,1.090909 +L 4,1.090909,5.454545,0.727273 +L 1.090909,0.363636,2.181818,0.727273 +L 2.181818,0.727273,4,0.727273 +L 4,0.727273,5.090909,0.363636 +L 0,0,1.818182,0.363636 +L 1.818182,0.363636,3.636364,0.363636 +L 3.636364,0.363636,4.727273,0 +L 4.727273,0,5.454545,0.727273 + +[3] 33 +L 0.363636,6.909091,0.727273,6.909091 +L 0.727273,6.909091,1.454545,7.272727 +L 1.454545,7.272727,1.818182,7.636364 +L 1.818182,7.636364,2.545455,7.272727 +L 2.545455,7.272727,4,6.909091 +L 4,6.909091,4.727273,6.909091 +L 1.454545,6.909091,2.181818,7.272727 +L 0.363636,6.909091,1.090909,6.545455 +L 1.090909,6.545455,1.818182,6.545455 +L 1.818182,6.545455,2.545455,7.272727 +L 4,6.909091,4,4.363636 +L 4.363636,6.545455,4.363636,4.727273 +L 4.727273,6.909091,4.727273,4.363636 +L 4.727273,4.363636,4,4.363636 +L 4,4.363636,2.909091,4 +L 2.909091,4,2.181818,3.636364 +L 2.181818,4,2.909091,3.636364 +L 2.909091,3.636364,4,3.272727 +L 4,3.272727,4.727273,3.272727 +L 4.727273,3.272727,4.727273,0.727273 +L 4.363636,2.909091,4.363636,1.090909 +L 4,3.272727,4,0.727273 +L 0,0.727273,0.727273,1.090909 +L 0.727273,1.090909,1.454545,1.090909 +L 1.454545,1.090909,2.181818,0.727273 +L 2.181818,0.727273,2.545455,0.363636 +L 1.454545,0.727273,2.181818,0.363636 +L 0,0.727273,0.727273,0.727273 +L 0.727273,0.727273,1.454545,0.363636 +L 1.454545,0.363636,1.818182,0 +L 1.818182,0,2.545455,0.363636 +L 2.545455,0.363636,4,0.727273 +L 4,0.727273,4.727273,0.727273 + +[4] 25 +L 3.636364,7.636364,0,4 +L 0,4,0,2.181818 +L 0,2.181818,3.272727,2.181818 +L 4,2.181818,5.454545,2.181818 +L 5.454545,2.181818,5.818182,1.818182 +L 5.818182,1.818182,5.818182,2.545455 +L 5.818182,2.545455,5.454545,2.181818 +L 0.363636,4,0.363636,2.545455 +L 0.727273,4.727273,0.727273,2.181818 +L 3.272727,7.272727,3.272727,1.090909 +L 3.272727,1.090909,2.545455,0.727273 +L 3.636364,6.181818,4,6.909091 +L 4,6.909091,3.636364,7.272727 +L 3.636364,7.272727,3.636364,0.727273 +L 3.636364,0.727273,4.363636,0.363636 +L 3.636364,7.636364,4.363636,6.909091 +L 4.363636,6.909091,4,6.181818 +L 4,6.181818,4,1.090909 +L 4,1.090909,4.727273,0.727273 +L 4.727273,0.727273,5.090909,0.727273 +L 2.545455,0.727273,2.909091,0.727273 +L 2.909091,0.727273,3.636364,0.363636 +L 3.636364,0.363636,4,0 +L 4,0,4.363636,0.363636 +L 4.363636,0.363636,5.090909,0.727273 + +[5] 31 +L 0.363636,7.636364,0.363636,4.363636 +L 0.363636,7.636364,4.727273,7.636364 +L 0.727273,7.272727,4,7.272727 +L 0.363636,6.909091,3.636364,6.909091 +L 3.636364,6.909091,4.363636,7.272727 +L 4.363636,7.272727,4.727273,7.636364 +L 4,5.454545,3.636364,5.090909 +L 3.636364,5.090909,2.909091,4.727273 +L 2.909091,4.727273,1.454545,4.363636 +L 1.454545,4.363636,0.363636,4.363636 +L 2.909091,4.727273,3.272727,4.727273 +L 3.272727,4.727273,4,4.363636 +L 4,4.363636,4,0.727273 +L 3.636364,5.090909,4.363636,4.727273 +L 4.363636,4.727273,4.363636,1.090909 +L 4,5.454545,4.363636,5.090909 +L 4.363636,5.090909,5.090909,4.727273 +L 5.090909,4.727273,5.454545,4.727273 +L 5.454545,4.727273,4.727273,4.363636 +L 4.727273,4.363636,4.727273,0.727273 +L 0,0.727273,0.727273,1.090909 +L 0.727273,1.090909,1.454545,1.090909 +L 1.454545,1.090909,2.181818,0.727273 +L 2.181818,0.727273,2.545455,0.363636 +L 1.454545,0.727273,2.181818,0.363636 +L 0,0.727273,0.727273,0.727273 +L 0.727273,0.727273,1.454545,0.363636 +L 1.454545,0.363636,1.818182,0 +L 1.818182,0,2.545455,0.363636 +L 2.545455,0.363636,4,0.727273 +L 4,0.727273,4.727273,0.727273 + +[6] 37 +L 0.727273,6.909091,0.727273,1.090909 +L 0.727273,1.090909,0,0.727273 +L 1.090909,6.545455,1.090909,1.090909 +L 1.090909,1.090909,2.181818,0.363636 +L 1.454545,6.909091,1.454545,1.090909 +L 1.454545,1.090909,2.181818,0.727273 +L 2.181818,0.727273,2.545455,0.363636 +L 0.727273,6.909091,1.454545,6.909091 +L 1.454545,6.909091,2.909091,7.272727 +L 2.909091,7.272727,3.636364,7.636364 +L 3.636364,7.636364,4,7.272727 +L 4,7.272727,4.727273,6.909091 +L 4.727273,6.909091,5.090909,6.909091 +L 3.272727,7.272727,4,6.909091 +L 2.909091,7.272727,3.636364,6.545455 +L 3.636364,6.545455,4.363636,6.545455 +L 4.363636,6.545455,5.090909,6.909091 +L 1.454545,4,1.818182,4 +L 1.818182,4,3.272727,4.363636 +L 3.272727,4.363636,4,4.727273 +L 4,4.727273,4.363636,5.090909 +L 3.272727,4.363636,3.636364,4.363636 +L 3.636364,4.363636,4.363636,4 +L 4.363636,4,4.363636,0.727273 +L 4,4.727273,4.727273,4 +L 4.727273,4,4.727273,1.090909 +L 4.363636,5.090909,4.727273,4.727273 +L 4.727273,4.727273,5.454545,4.363636 +L 5.454545,4.363636,5.818182,4.363636 +L 5.818182,4.363636,5.090909,4 +L 5.090909,4,5.090909,0.727273 +L 0,0.727273,0.727273,0.727273 +L 0.727273,0.727273,1.454545,0.363636 +L 1.454545,0.363636,1.818182,0 +L 1.818182,0,2.545455,0.363636 +L 2.545455,0.363636,4.363636,0.727273 +L 4.363636,0.727273,5.090909,0.727273 + +[7] 26 +L 0,6.909091,0.727273,7.636364 +L 0.727273,7.636364,1.818182,7.272727 +L 1.818182,7.272727,3.636364,7.272727 +L 3.636364,7.272727,5.454545,7.636364 +L 0.363636,7.272727,1.454545,6.909091 +L 1.454545,6.909091,3.272727,6.909091 +L 3.272727,6.909091,4.363636,7.272727 +L 0,6.909091,1.454545,6.545455 +L 1.454545,6.545455,2.545455,6.545455 +L 2.545455,6.545455,4,6.909091 +L 4,6.909091,5.454545,7.636364 +L 5.454545,7.636364,5.090909,6.909091 +L 5.090909,6.909091,4.363636,5.818182 +L 4.363636,5.818182,2.909091,4.363636 +L 2.909091,4.363636,2.181818,3.272727 +L 2.181818,3.272727,1.818182,2.181818 +L 1.818182,2.181818,1.818182,1.090909 +L 1.818182,1.090909,2.181818,0 +L 2.545455,3.636364,2.181818,2.545455 +L 2.181818,2.545455,2.181818,1.454545 +L 2.181818,1.454545,2.545455,0.363636 +L 3.636364,5.090909,2.909091,4 +L 2.909091,4,2.545455,2.909091 +L 2.545455,2.909091,2.545455,1.818182 +L 2.545455,1.818182,2.909091,0.727273 +L 2.909091,0.727273,2.181818,0 + +[8] 39 +L 0.727273,6.545455,0.727273,4.363636 +L 1.090909,6.181818,1.090909,4.727273 +L 1.454545,6.545455,1.454545,4.363636 +L 0.727273,6.545455,1.454545,6.545455 +L 1.454545,6.545455,3.272727,6.909091 +L 3.272727,6.909091,4,7.272727 +L 4,7.272727,4.363636,7.636364 +L 3.272727,6.909091,3.636364,6.909091 +L 3.636364,6.909091,4.363636,6.545455 +L 4.363636,6.545455,4.363636,4.363636 +L 4,7.272727,4.727273,6.909091 +L 4.727273,6.909091,4.727273,4.727273 +L 4.363636,7.636364,4.727273,7.272727 +L 4.727273,7.272727,5.454545,6.909091 +L 5.454545,6.909091,5.818182,6.909091 +L 5.818182,6.909091,5.090909,6.545455 +L 5.090909,6.545455,5.090909,4.363636 +L 0.727273,4.363636,1.454545,4.363636 +L 1.454545,4.363636,4.363636,3.272727 +L 4.363636,3.272727,5.090909,3.272727 +L 5.090909,4.363636,4.363636,4.363636 +L 4.363636,4.363636,1.454545,3.272727 +L 1.454545,3.272727,0.727273,3.272727 +L 0.727273,3.272727,0.727273,1.090909 +L 0.727273,1.090909,0,0.727273 +L 1.090909,2.909091,1.090909,1.090909 +L 1.090909,1.090909,2.181818,0.363636 +L 1.454545,3.272727,1.454545,1.090909 +L 1.454545,1.090909,2.181818,0.727273 +L 2.181818,0.727273,2.545455,0.363636 +L 4.363636,3.272727,4.363636,0.727273 +L 4.727273,2.909091,4.727273,1.090909 +L 5.090909,3.272727,5.090909,0.727273 +L 0,0.727273,0.727273,0.727273 +L 0.727273,0.727273,1.454545,0.363636 +L 1.454545,0.363636,1.818182,0 +L 1.818182,0,2.545455,0.363636 +L 2.545455,0.363636,4.363636,0.727273 +L 4.363636,0.727273,5.090909,0.727273 + +[9] 38 +L 0.727273,6.909091,0.727273,3.636364 +L 0.727273,3.636364,0,3.272727 +L 1.090909,6.545455,1.090909,3.272727 +L 1.090909,3.272727,1.818182,2.909091 +L 1.454545,6.909091,1.454545,3.636364 +L 1.454545,3.636364,2.181818,3.272727 +L 2.181818,3.272727,2.545455,3.272727 +L 0.727273,6.909091,1.454545,6.909091 +L 1.454545,6.909091,3.272727,7.272727 +L 3.272727,7.272727,4,7.636364 +L 3.272727,7.272727,3.636364,6.909091 +L 3.636364,6.909091,4.363636,6.545455 +L 4.363636,6.545455,4.363636,0.727273 +L 3.636364,7.272727,4.727273,6.545455 +L 4.727273,6.545455,4.727273,1.090909 +L 4,7.636364,4.363636,7.272727 +L 4.363636,7.272727,5.090909,6.909091 +L 5.090909,6.909091,5.818182,6.909091 +L 5.818182,6.909091,5.090909,6.545455 +L 5.090909,6.545455,5.090909,0.727273 +L 0,3.272727,0.363636,3.272727 +L 0.363636,3.272727,1.090909,2.909091 +L 1.090909,2.909091,1.454545,2.545455 +L 1.454545,2.545455,1.818182,2.909091 +L 1.818182,2.909091,2.545455,3.272727 +L 2.545455,3.272727,4,3.636364 +L 4,3.636364,4.363636,3.636364 +L 0.363636,0.727273,1.090909,1.090909 +L 1.090909,1.090909,1.818182,1.090909 +L 1.818182,1.090909,2.545455,0.727273 +L 2.545455,0.727273,2.909091,0.363636 +L 1.818182,0.727273,2.545455,0.363636 +L 0.363636,0.727273,1.090909,0.727273 +L 1.090909,0.727273,1.818182,0.363636 +L 1.818182,0.363636,2.181818,0 +L 2.181818,0,2.909091,0.363636 +L 2.909091,0.363636,4.363636,0.727273 +L 4.363636,0.727273,5.090909,0.727273 + +[:] 14 +L 0.727273,5.090909,0,4.363636 +L 0,4.363636,0.727273,4 +L 0.727273,4,1.454545,4.363636 +L 1.454545,4.363636,0.727273,5.090909 +L 0.727273,4.727273,0.363636,4.363636 +L 0.363636,4.363636,1.090909,4.363636 +L 1.090909,4.363636,0.727273,4.727273 +L 0.727273,1.090909,0,0.363636 +L 0,0.363636,0.727273,0 +L 0.727273,0,1.454545,0.363636 +L 1.454545,0.363636,0.727273,1.090909 +L 0.727273,0.727273,0.363636,0.363636 +L 0.363636,0.363636,1.090909,0.363636 +L 1.090909,0.363636,0.727273,0.727273 + +[;] 17 +L 0.727273,5.090909,0,4.363636 +L 0,4.363636,0.727273,4 +L 0.727273,4,1.454545,4.363636 +L 1.454545,4.363636,0.727273,5.090909 +L 0.727273,4.727273,0.363636,4.363636 +L 0.363636,4.363636,1.090909,4.363636 +L 1.090909,4.363636,0.727273,4.727273 +L 0.727273,-1.090909,0.727273,-0.363636 +L 0.727273,-0.363636,0,0.363636 +L 0,0.363636,0.727273,1.090909 +L 0.727273,1.090909,1.090909,0.363636 +L 1.090909,0.363636,1.090909,-0.363636 +L 1.090909,-0.363636,0.727273,-1.090909 +L 0.727273,-1.090909,0,-1.454545 +L 0.727273,0.727273,0.363636,0.363636 +L 0.363636,0.363636,0.727273,0 +L 0.727273,0,0.727273,0.727273 + +[<] 2 +L 5.818182,6.545455,0,3.272727 +L 0,3.272727,5.818182,0 + +[=] 8 +L 0,5.090909,6.181818,5.090909 +L 6.181818,5.090909,6.181818,4.727273 +L 0,5.090909,0,4.727273 +L 0,4.727273,6.181818,4.727273 +L 0,2.181818,6.181818,2.181818 +L 6.181818,2.181818,6.181818,1.818182 +L 0,2.181818,0,1.818182 +L 0,1.818182,6.181818,1.818182 + +[>] 2 +L 0,6.545455,5.818182,3.272727 +L 5.818182,3.272727,0,0 + +[?] 35 +L 0,6.181818,0.363636,6.909091 +L 0.363636,6.909091,0.727273,7.272727 +L 0.727273,7.272727,1.818182,7.636364 +L 1.818182,7.636364,2.545455,7.636364 +L 2.545455,7.636364,3.636364,7.272727 +L 3.636364,7.272727,4,6.909091 +L 4,6.909091,4.363636,6.181818 +L 4.363636,6.181818,4.363636,5.454545 +L 4.363636,5.454545,4,4.727273 +L 4,4.727273,3.272727,4 +L 3.272727,4,2.545455,3.636364 +L 0.363636,6.181818,0.727273,6.909091 +L 3.636364,6.909091,4,6.545455 +L 4,6.545455,4,5.090909 +L 4,5.090909,3.636364,4.727273 +L 0,6.181818,0.727273,5.818182 +L 0.727273,5.818182,0.727273,6.545455 +L 0.727273,6.545455,1.090909,7.272727 +L 1.090909,7.272727,1.818182,7.636364 +L 2.545455,7.636364,3.272727,7.272727 +L 3.272727,7.272727,3.636364,6.545455 +L 3.636364,6.545455,3.636364,5.090909 +L 3.636364,5.090909,3.272727,4.363636 +L 3.272727,4.363636,2.545455,3.636364 +L 2.181818,3.636364,2.181818,2.545455 +L 2.181818,2.545455,2.545455,3.636364 +L 2.545455,3.636364,1.818182,3.636364 +L 1.818182,3.636364,2.181818,2.545455 +L 2.181818,1.090909,1.454545,0.363636 +L 1.454545,0.363636,2.181818,0 +L 2.181818,0,2.909091,0.363636 +L 2.909091,0.363636,2.181818,1.090909 +L 2.181818,0.727273,1.818182,0.363636 +L 1.818182,0.363636,2.545455,0.363636 +L 2.545455,0.363636,2.181818,0.727273 + +[@] 48 +L 5.454545,4.727273,5.090909,5.454545 +L 5.090909,5.454545,4.363636,5.818182 +L 4.363636,5.818182,3.272727,5.818182 +L 3.272727,5.818182,2.545455,5.454545 +L 2.545455,5.454545,2.181818,5.090909 +L 2.181818,5.090909,1.818182,4 +L 1.818182,4,1.818182,2.909091 +L 1.818182,2.909091,2.181818,2.181818 +L 2.181818,2.181818,2.909091,1.818182 +L 2.909091,1.818182,4,1.818182 +L 4,1.818182,4.727273,2.181818 +L 4.727273,2.181818,5.090909,2.909091 +L 3.272727,5.818182,2.545455,5.090909 +L 2.545455,5.090909,2.181818,4 +L 2.181818,4,2.181818,2.909091 +L 2.181818,2.909091,2.545455,2.181818 +L 2.545455,2.181818,2.909091,1.818182 +L 5.454545,5.818182,5.090909,2.909091 +L 5.090909,2.909091,5.090909,2.181818 +L 5.090909,2.181818,5.818182,1.818182 +L 5.818182,1.818182,6.545455,1.818182 +L 6.545455,1.818182,7.272727,2.545455 +L 7.272727,2.545455,7.636364,3.636364 +L 7.636364,3.636364,7.636364,4.363636 +L 7.636364,4.363636,7.272727,5.454545 +L 7.272727,5.454545,6.909091,6.181818 +L 6.909091,6.181818,6.181818,6.909091 +L 6.181818,6.909091,5.454545,7.272727 +L 5.454545,7.272727,4.363636,7.636364 +L 4.363636,7.636364,3.272727,7.636364 +L 3.272727,7.636364,2.181818,7.272727 +L 2.181818,7.272727,1.454545,6.909091 +L 1.454545,6.909091,0.727273,6.181818 +L 0.727273,6.181818,0.363636,5.454545 +L 0.363636,5.454545,0,4.363636 +L 0,4.363636,0,3.272727 +L 0,3.272727,0.363636,2.181818 +L 0.363636,2.181818,0.727273,1.454545 +L 0.727273,1.454545,1.454545,0.727273 +L 1.454545,0.727273,2.181818,0.363636 +L 2.181818,0.363636,3.272727,0 +L 3.272727,0,4.363636,0 +L 4.363636,0,5.454545,0.363636 +L 5.454545,0.363636,6.181818,0.727273 +L 6.181818,0.727273,6.545455,1.090909 +L 5.818182,5.818182,5.454545,2.909091 +L 5.454545,2.909091,5.454545,2.181818 +L 5.454545,2.181818,5.818182,1.818182 + +[A] 34 +L 2.181818,6.909091,1.454545,6.545455 +L 1.454545,6.545455,0.727273,5.818182 +L 0.727273,5.818182,0.363636,5.090909 +L 0.363636,5.090909,0,4 +L 0,4,0,2.909091 +L 0,2.909091,0.363636,2.181818 +L 0.363636,2.181818,1.090909,1.818182 +L 0.727273,5.454545,0.363636,4.363636 +L 0.363636,4.363636,0.363636,2.909091 +L 0.363636,2.909091,0.727273,2.181818 +L 2.181818,6.909091,1.454545,6.181818 +L 1.454545,6.181818,1.090909,5.454545 +L 1.090909,5.454545,0.727273,4.363636 +L 0.727273,4.363636,0.727273,3.272727 +L 0.727273,3.272727,1.090909,1.818182 +L 1.090909,1.818182,1.090909,1.090909 +L 1.090909,1.090909,0.727273,0.363636 +L 0.727273,0.363636,0,0 +L 5.090909,6.909091,5.818182,6.909091 +L 5.818182,6.909091,5.818182,0.727273 +L 5.818182,0.727273,5.090909,0.727273 +L 6.181818,6.909091,6.181818,0.727273 +L 6.545455,7.272727,6.545455,0.363636 +L 0,7.636364,1.090909,7.272727 +L 1.090909,7.272727,3.272727,6.909091 +L 3.272727,6.909091,5.090909,6.909091 +L 5.090909,6.909091,6.545455,7.272727 +L 6.545455,7.272727,7.272727,7.636364 +L 0.727273,4,5.818182,4 +L 0,0,1.090909,0.363636 +L 1.090909,0.363636,3.272727,0.727273 +L 3.272727,0.727273,5.090909,0.727273 +L 5.090909,0.727273,6.545455,0.363636 +L 6.545455,0.363636,7.272727,0 + +[B] 47 +L 1.454545,7.272727,1.454545,0.363636 +L 1.818182,7.272727,1.818182,0.363636 +L 2.909091,7.636364,2.181818,7.272727 +L 2.181818,7.272727,2.181818,0.363636 +L 2.181818,0.363636,2.909091,0 +L 0,6.181818,0.727273,6.909091 +L 0.727273,6.909091,1.454545,7.272727 +L 1.454545,7.272727,2.909091,7.636364 +L 2.909091,7.636364,4.727273,7.636364 +L 4.727273,7.636364,5.818182,7.272727 +L 5.818182,7.272727,6.545455,6.545455 +L 6.545455,6.545455,6.545455,5.818182 +L 6.545455,5.818182,6.181818,5.090909 +L 5.818182,6.909091,6.181818,6.545455 +L 6.181818,6.545455,6.181818,5.818182 +L 6.181818,5.818182,5.818182,5.090909 +L 4.727273,7.636364,5.454545,7.272727 +L 5.454545,7.272727,5.818182,6.545455 +L 5.818182,6.545455,5.818182,5.818182 +L 5.818182,5.818182,5.454545,5.454545 +L 3.272727,2.181818,2.545455,2.545455 +L 2.545455,2.545455,2.181818,3.272727 +L 2.181818,3.272727,2.181818,4 +L 2.181818,4,2.545455,4.727273 +L 2.545455,4.727273,2.909091,5.090909 +L 2.909091,5.090909,4,5.454545 +L 4,5.454545,5.090909,5.454545 +L 5.090909,5.454545,6.181818,5.090909 +L 6.181818,5.090909,6.909091,4.363636 +L 6.909091,4.363636,7.272727,3.636364 +L 7.272727,3.636364,7.272727,2.545455 +L 7.272727,2.545455,6.909091,1.454545 +L 6.909091,1.454545,6.181818,0.727273 +L 6.181818,0.727273,5.454545,0.363636 +L 5.454545,0.363636,4.363636,0 +L 4.363636,0,2.909091,0 +L 2.909091,0,1.454545,0.363636 +L 1.454545,0.363636,0.727273,0.727273 +L 0.727273,0.727273,0,1.454545 +L 6.545455,4.363636,6.909091,3.636364 +L 6.909091,3.636364,6.909091,2.181818 +L 6.909091,2.181818,6.545455,1.454545 +L 5.090909,5.454545,6.181818,4.727273 +L 6.181818,4.727273,6.545455,3.636364 +L 6.545455,3.636364,6.545455,2.181818 +L 6.545455,2.181818,6.181818,1.090909 +L 6.181818,1.090909,5.454545,0.363636 + +[C] 44 +L 7.272727,7.636364,6.909091,6.909091 +L 6.909091,6.909091,6.545455,6.181818 +L 6.545455,6.181818,5.818182,6.909091 +L 5.818182,6.909091,5.090909,7.272727 +L 5.090909,7.272727,4,7.636364 +L 4,7.636364,3.272727,7.636364 +L 3.272727,7.636364,2.181818,7.272727 +L 2.181818,7.272727,1.454545,6.909091 +L 1.454545,6.909091,0.727273,6.181818 +L 0.727273,6.181818,0.363636,5.454545 +L 0.363636,5.454545,0,4.363636 +L 0,4.363636,0,3.272727 +L 0,3.272727,0.363636,2.181818 +L 0.363636,2.181818,0.727273,1.454545 +L 0.727273,1.454545,1.454545,0.727273 +L 1.454545,0.727273,2.181818,0.363636 +L 2.181818,0.363636,3.272727,0 +L 3.272727,0,4,0 +L 4,0,5.090909,0.363636 +L 5.090909,0.363636,5.818182,0.727273 +L 5.818182,0.727273,6.545455,1.454545 +L 6.545455,1.454545,6.909091,0.727273 +L 6.909091,0.727273,7.272727,0 +L 6.909091,6.909091,6.545455,5.090909 +L 6.545455,5.090909,6.545455,2.545455 +L 6.545455,2.545455,6.909091,0.727273 +L 6.545455,5.818182,6.181818,6.181818 +L 6.545455,4.727273,6.181818,5.818182 +L 6.181818,5.818182,5.818182,6.545455 +L 5.818182,6.545455,5.090909,7.272727 +L 0.727273,5.818182,0.363636,4.727273 +L 0.363636,4.727273,0.363636,2.909091 +L 0.363636,2.909091,0.727273,1.818182 +L 2.181818,7.272727,1.454545,6.545455 +L 1.454545,6.545455,1.090909,5.818182 +L 1.090909,5.818182,0.727273,4.727273 +L 0.727273,4.727273,0.727273,2.909091 +L 0.727273,2.909091,1.090909,1.818182 +L 1.090909,1.818182,1.454545,1.090909 +L 1.454545,1.090909,2.181818,0.363636 +L 6.181818,1.454545,6.545455,1.818182 +L 5.090909,0.363636,5.818182,1.090909 +L 5.818182,1.090909,6.181818,1.818182 +L 6.181818,1.818182,6.545455,2.909091 + +[D] 34 +L 1.090909,7.272727,1.090909,0.363636 +L 1.454545,7.272727,1.454545,0.363636 +L 2.181818,7.636364,1.818182,7.272727 +L 1.818182,7.272727,1.818182,0.363636 +L 1.818182,0.363636,2.181818,0 +L 0,5.818182,0.363636,6.545455 +L 0.363636,6.545455,1.090909,7.272727 +L 1.090909,7.272727,2.181818,7.636364 +L 2.181818,7.636364,4,7.636364 +L 4,7.636364,5.090909,7.272727 +L 5.090909,7.272727,5.818182,6.909091 +L 5.818182,6.909091,6.545455,6.181818 +L 6.545455,6.181818,6.909091,5.454545 +L 6.909091,5.454545,7.272727,4.363636 +L 7.272727,4.363636,7.272727,3.272727 +L 7.272727,3.272727,6.909091,2.181818 +L 6.909091,2.181818,6.545455,1.454545 +L 6.545455,1.454545,5.818182,0.727273 +L 5.818182,0.727273,5.090909,0.363636 +L 5.090909,0.363636,4,0 +L 4,0,2.181818,0 +L 2.181818,0,1.090909,0.363636 +L 1.090909,0.363636,0.363636,1.090909 +L 0.363636,1.090909,0,1.818182 +L 6.545455,5.818182,6.909091,4.727273 +L 6.909091,4.727273,6.909091,2.909091 +L 6.909091,2.909091,6.545455,1.818182 +L 5.090909,7.272727,5.818182,6.545455 +L 5.818182,6.545455,6.181818,5.818182 +L 6.181818,5.818182,6.545455,4.727273 +L 6.545455,4.727273,6.545455,2.909091 +L 6.545455,2.909091,6.181818,1.818182 +L 6.181818,1.818182,5.818182,1.090909 +L 5.818182,1.090909,5.090909,0.363636 + +[E] 62 +L 7.272727,7.636364,6.909091,6.909091 +L 6.909091,6.909091,6.545455,6.181818 +L 6.545455,6.181818,5.818182,6.909091 +L 5.818182,6.909091,5.090909,7.272727 +L 5.090909,7.272727,4,7.636364 +L 4,7.636364,3.272727,7.636364 +L 3.272727,7.636364,2.181818,7.272727 +L 2.181818,7.272727,1.454545,6.909091 +L 1.454545,6.909091,0.727273,6.181818 +L 0.727273,6.181818,0.363636,5.454545 +L 0.363636,5.454545,0,4.363636 +L 0,4.363636,0,3.272727 +L 0,3.272727,0.363636,2.181818 +L 0.363636,2.181818,0.727273,1.454545 +L 0.727273,1.454545,1.454545,0.727273 +L 1.454545,0.727273,2.181818,0.363636 +L 2.181818,0.363636,3.272727,0 +L 3.272727,0,4,0 +L 4,0,5.090909,0.363636 +L 5.090909,0.363636,5.818182,0.727273 +L 5.818182,0.727273,6.545455,1.454545 +L 6.545455,1.454545,6.909091,0.727273 +L 6.909091,0.727273,7.272727,0 +L 6.909091,6.909091,6.545455,5.090909 +L 6.545455,5.090909,6.545455,2.545455 +L 6.545455,2.545455,6.909091,0.727273 +L 6.545455,5.818182,6.181818,6.181818 +L 6.545455,5.090909,5.818182,6.545455 +L 5.818182,6.545455,5.090909,7.272727 +L 0.727273,5.818182,0.363636,4.727273 +L 0.363636,4.727273,0.363636,2.909091 +L 0.363636,2.909091,0.727273,1.818182 +L 2.181818,7.272727,1.454545,6.545455 +L 1.454545,6.545455,1.090909,5.818182 +L 1.090909,5.818182,0.727273,4.727273 +L 0.727273,4.727273,0.727273,2.909091 +L 0.727273,2.909091,1.090909,1.818182 +L 1.090909,1.818182,1.454545,1.090909 +L 1.454545,1.090909,2.181818,0.363636 +L 6.181818,1.454545,6.545455,1.818182 +L 5.090909,0.363636,5.818182,1.090909 +L 5.818182,1.090909,6.181818,1.818182 +L 6.181818,1.818182,6.545455,2.909091 +L 0.727273,4,1.090909,4.363636 +L 1.090909,4.363636,2.181818,4.363636 +L 2.181818,4.363636,4.727273,3.636364 +L 4.727273,3.636364,5.818182,3.636364 +L 5.818182,3.636364,6.545455,4 +L 2.909091,4,3.636364,3.636364 +L 3.636364,3.636364,4.727273,3.272727 +L 4.727273,3.272727,5.454545,3.272727 +L 5.454545,3.272727,6.181818,3.636364 +L 1.818182,4.363636,3.636364,3.272727 +L 3.636364,3.272727,4.727273,2.909091 +L 4.727273,2.909091,5.454545,2.909091 +L 5.454545,2.909091,6.181818,3.272727 +L 6.181818,3.272727,6.545455,4 +L 6.545455,5.090909,6.181818,5.454545 +L 6.181818,5.454545,5.818182,5.454545 +L 5.818182,5.454545,5.454545,5.090909 +L 5.454545,5.090909,5.818182,4.727273 +L 5.818182,4.727273,6.181818,5.090909 + +[F] 47 +L 0.727273,6.909091,0.727273,0.363636 +L 1.818182,7.272727,1.090909,6.909091 +L 1.090909,6.909091,1.090909,0.727273 +L 2.545455,7.636364,1.818182,7.272727 +L 1.818182,7.272727,1.454545,6.545455 +L 1.454545,6.545455,1.454545,0.727273 +L 1.454545,0.727273,2.181818,0.727273 +L 0,6.181818,0.727273,6.909091 +L 0.727273,6.909091,1.454545,7.272727 +L 1.454545,7.272727,2.545455,7.636364 +L 2.545455,7.636364,4,7.636364 +L 4,7.636364,5.090909,7.272727 +L 5.090909,7.272727,5.818182,6.909091 +L 5.818182,6.909091,6.181818,6.545455 +L 6.181818,6.545455,7.272727,7.636364 +L 7.272727,7.636364,6.909091,6.909091 +L 6.909091,6.909091,6.545455,5.454545 +L 6.545455,5.454545,6.545455,4.363636 +L 6.545455,4.363636,6.909091,2.909091 +L 6.909091,2.909091,7.272727,2.181818 +L 6.545455,6.545455,6.181818,5.818182 +L 5.090909,7.272727,5.818182,6.545455 +L 5.818182,6.545455,6.181818,5.454545 +L 6.181818,5.454545,6.545455,4.363636 +L 1.454545,4,1.818182,4.363636 +L 1.818182,4.363636,2.545455,4.363636 +L 2.545455,4.363636,4.363636,4 +L 4.363636,4,5.454545,4 +L 5.454545,4,6.181818,4.363636 +L 3.272727,4,4.363636,3.636364 +L 4.363636,3.636364,5.090909,3.636364 +L 5.090909,3.636364,5.818182,4 +L 2.181818,4.363636,4.363636,3.272727 +L 4.363636,3.272727,5.090909,3.272727 +L 5.090909,3.272727,5.818182,3.636364 +L 5.818182,3.636364,6.181818,4.363636 +L 6.181818,4.363636,6.181818,5.454545 +L 6.181818,5.454545,5.818182,5.818182 +L 5.818182,5.818182,5.454545,5.818182 +L 5.454545,5.818182,5.090909,5.454545 +L 5.090909,5.454545,5.454545,5.090909 +L 5.454545,5.090909,5.818182,5.454545 +L 0,0,0.727273,0.363636 +L 0.727273,0.363636,2.181818,0.727273 +L 2.181818,0.727273,4,0.727273 +L 4,0.727273,6.181818,0.363636 +L 6.181818,0.363636,7.272727,0 + +[G] 66 +L 7.272727,7.636364,6.909091,6.909091 +L 6.909091,6.909091,6.545455,6.181818 +L 6.545455,6.181818,5.818182,6.909091 +L 5.818182,6.909091,5.090909,7.272727 +L 5.090909,7.272727,4,7.636364 +L 4,7.636364,3.272727,7.636364 +L 3.272727,7.636364,2.181818,7.272727 +L 2.181818,7.272727,1.454545,6.909091 +L 1.454545,6.909091,0.727273,6.181818 +L 0.727273,6.181818,0.363636,5.454545 +L 0.363636,5.454545,0,4.363636 +L 0,4.363636,0,3.272727 +L 0,3.272727,0.363636,2.181818 +L 0.363636,2.181818,0.727273,1.454545 +L 0.727273,1.454545,1.454545,0.727273 +L 1.454545,0.727273,2.181818,0.363636 +L 2.181818,0.363636,3.272727,0 +L 3.272727,0,4.363636,0 +L 4.363636,0,5.090909,0.363636 +L 5.090909,0.363636,5.818182,0.727273 +L 5.818182,0.727273,6.181818,1.090909 +L 6.181818,1.090909,6.545455,1.818182 +L 6.545455,1.818182,6.909091,0.727273 +L 6.909091,0.727273,7.272727,0 +L 6.909091,6.909091,6.545455,5.090909 +L 6.545455,5.090909,6.545455,2.545455 +L 6.545455,2.545455,6.909091,0.727273 +L 6.545455,5.818182,6.181818,6.181818 +L 6.545455,4.727273,6.181818,5.818182 +L 6.181818,5.818182,5.818182,6.545455 +L 5.818182,6.545455,5.090909,7.272727 +L 0.727273,5.818182,0.363636,4.727273 +L 0.363636,4.727273,0.363636,2.909091 +L 0.363636,2.909091,0.727273,1.818182 +L 2.181818,7.272727,1.454545,6.545455 +L 1.454545,6.545455,1.090909,5.818182 +L 1.090909,5.818182,0.727273,4.727273 +L 0.727273,4.727273,0.727273,2.909091 +L 0.727273,2.909091,1.090909,1.818182 +L 1.090909,1.818182,1.454545,1.090909 +L 1.454545,1.090909,2.181818,0.363636 +L 5.818182,1.090909,6.181818,1.818182 +L 6.181818,1.818182,6.181818,3.272727 +L 5.090909,0.363636,5.454545,0.727273 +L 5.454545,0.727273,5.818182,1.818182 +L 5.818182,1.818182,5.818182,3.636364 +L 1.090909,2.909091,1.454545,3.272727 +L 1.454545,3.272727,1.818182,2.909091 +L 1.818182,2.909091,1.454545,2.545455 +L 1.454545,2.545455,1.090909,2.545455 +L 1.090909,2.545455,0.727273,2.909091 +L 0.727273,4,1.090909,4.727273 +L 1.090909,4.727273,1.818182,5.090909 +L 1.818182,5.090909,2.545455,5.090909 +L 2.545455,5.090909,3.636364,4.727273 +L 3.636364,4.727273,4.727273,4 +L 4.727273,4,5.454545,3.636364 +L 1.090909,4.363636,1.818182,4.727273 +L 1.818182,4.727273,2.545455,4.727273 +L 2.545455,4.727273,3.636364,4.363636 +L 3.636364,4.363636,4.363636,4 +L 0.727273,4,1.454545,4.363636 +L 1.454545,4.363636,2.545455,4.363636 +L 2.545455,4.363636,4.727273,3.636364 +L 4.727273,3.636364,6.181818,3.636364 +L 6.181818,3.636364,6.545455,4 + +[H] 34 +L 0.727273,7.272727,0.727273,0.363636 +L 0.727273,0.363636,0,0 +L 1.090909,6.909091,1.090909,0.363636 +L 2.181818,6.909091,1.454545,6.909091 +L 1.454545,6.909091,1.454545,0.363636 +L 0,7.636364,0.727273,7.272727 +L 0.727273,7.272727,2.181818,6.909091 +L 2.181818,6.909091,4,6.909091 +L 4,6.909091,6.181818,7.272727 +L 6.181818,7.272727,7.272727,7.636364 +L 1.454545,4,1.818182,4.727273 +L 1.818182,4.727273,2.545455,5.454545 +L 2.545455,5.454545,3.636364,5.818182 +L 3.636364,5.818182,5.090909,5.818182 +L 5.090909,5.818182,6.181818,5.454545 +L 6.181818,5.454545,6.909091,4.727273 +L 6.909091,4.727273,7.272727,3.636364 +L 7.272727,3.636364,7.272727,2.545455 +L 7.272727,2.545455,6.909091,2.181818 +L 6.909091,2.181818,6.181818,1.818182 +L 6.545455,4.727273,6.909091,4 +L 6.909091,4,6.909091,2.909091 +L 6.909091,2.909091,6.545455,2.181818 +L 5.090909,5.818182,5.818182,5.454545 +L 5.818182,5.454545,6.181818,5.090909 +L 6.181818,5.090909,6.545455,4.363636 +L 6.545455,4.363636,6.545455,2.909091 +L 6.545455,2.909091,6.181818,1.818182 +L 6.181818,1.818182,6.181818,1.090909 +L 6.181818,1.090909,6.545455,0.363636 +L 6.545455,0.363636,7.272727,0 +L 0,0,1.454545,0.363636 +L 1.454545,0.363636,2.909091,0.363636 +L 2.909091,0.363636,4.727273,0 + +[I] 13 +L 3.272727,6.545455,3.272727,0.727273 +L 3.636364,6.181818,3.636364,1.090909 +L 4,6.545455,4,0.727273 +L 0,7.636364,1.454545,6.909091 +L 1.454545,6.909091,2.909091,6.545455 +L 2.909091,6.545455,4.363636,6.545455 +L 4.363636,6.545455,5.818182,6.909091 +L 5.818182,6.909091,7.272727,7.636364 +L 0,0,1.090909,0.363636 +L 1.090909,0.363636,2.545455,0.727273 +L 2.545455,0.727273,4.727273,0.727273 +L 4.727273,0.727273,6.181818,0.363636 +L 6.181818,0.363636,7.272727,0 + +[J] 28 +L 4.363636,6.545455,5.090909,6.545455 +L 5.090909,6.545455,5.090909,1.090909 +L 5.090909,1.090909,4.727273,0.363636 +L 4.727273,0.363636,4,0 +L 5.454545,6.545455,5.454545,1.090909 +L 5.454545,1.090909,5.090909,0.727273 +L 5.818182,6.909091,5.818182,0.727273 +L 0,7.636364,1.454545,6.909091 +L 1.454545,6.909091,2.909091,6.545455 +L 2.909091,6.545455,4.363636,6.545455 +L 4.363636,6.545455,5.818182,6.909091 +L 5.818182,6.909091,7.272727,7.636364 +L 0.363636,4.363636,0,3.636364 +L 0,3.636364,0,2.181818 +L 0,2.181818,0.363636,1.090909 +L 0.363636,1.090909,1.090909,0.363636 +L 1.090909,0.363636,2.181818,0 +L 2.181818,0,4,0 +L 4,0,5.090909,0.363636 +L 5.090909,0.363636,5.818182,0.727273 +L 5.818182,0.727273,6.545455,1.454545 +L 6.545455,1.454545,7.272727,2.545455 +L 0.363636,2.181818,0.727273,1.090909 +L 0.727273,1.090909,1.090909,0.727273 +L 0,2.909091,0.727273,2.181818 +L 0.727273,2.181818,1.090909,1.090909 +L 1.090909,1.090909,1.454545,0.363636 +L 1.454545,0.363636,2.181818,0 + +[K] 48 +L 0.727273,7.272727,0.727273,0.363636 +L 0.727273,0.363636,0,0 +L 1.090909,6.909091,1.090909,0.363636 +L 2.181818,6.909091,1.454545,6.909091 +L 1.454545,6.909091,1.454545,0.363636 +L 0,7.636364,0.727273,7.272727 +L 0.727273,7.272727,2.181818,6.909091 +L 2.181818,6.909091,4,6.909091 +L 4,6.909091,6.181818,7.272727 +L 6.181818,7.272727,7.272727,7.636364 +L 1.454545,4,1.818182,4.727273 +L 1.818182,4.727273,2.545455,5.454545 +L 2.545455,5.454545,3.636364,5.818182 +L 3.636364,5.818182,4.727273,5.818182 +L 4.727273,5.818182,5.818182,5.454545 +L 5.818182,5.454545,6.181818,5.090909 +L 6.181818,5.090909,6.181818,4.363636 +L 6.181818,4.363636,5.818182,4 +L 5.818182,4,4,3.272727 +L 4,3.272727,3.272727,2.909091 +L 3.272727,2.909091,2.909091,2.545455 +L 2.909091,2.545455,2.909091,2.181818 +L 2.909091,2.181818,3.272727,1.818182 +L 3.272727,1.818182,3.636364,2.181818 +L 3.636364,2.181818,3.272727,2.545455 +L 5.454545,5.454545,5.818182,5.090909 +L 5.818182,5.090909,5.818182,4.363636 +L 5.818182,4.363636,5.454545,4 +L 4.727273,5.818182,5.454545,5.090909 +L 5.454545,5.090909,5.454545,4.363636 +L 5.454545,4.363636,5.090909,4 +L 5.090909,4,4,3.272727 +L 4,3.272727,5.090909,3.272727 +L 5.090909,3.272727,6.181818,2.909091 +L 6.181818,2.909091,6.545455,2.181818 +L 6.545455,2.181818,6.545455,1.454545 +L 6.545455,1.454545,6.181818,1.090909 +L 5.454545,2.909091,6.181818,2.181818 +L 6.181818,2.181818,6.181818,1.454545 +L 4,3.272727,5.090909,2.909091 +L 5.090909,2.909091,5.818182,2.181818 +L 5.818182,2.181818,6.181818,1.090909 +L 6.181818,1.090909,6.545455,0.363636 +L 6.545455,0.363636,6.909091,0 +L 6.909091,0,7.272727,0 +L 0,0,1.454545,0.363636 +L 1.454545,0.363636,2.909091,0.363636 +L 2.909091,0.363636,4.727273,0 + +[L] 29 +L 0.727273,7.272727,0.727273,0.363636 +L 1.090909,6.909091,1.090909,0.727273 +L 2.181818,6.909091,1.454545,6.909091 +L 1.454545,6.909091,1.454545,0.727273 +L 1.454545,0.727273,2.181818,0.727273 +L 7.272727,5.818182,6.545455,4.727273 +L 6.545455,4.727273,6.181818,4 +L 6.181818,4,5.818182,2.909091 +L 5.818182,2.909091,5.818182,2.181818 +L 5.818182,2.181818,6.181818,1.454545 +L 6.181818,1.454545,6.909091,1.090909 +L 6.545455,4.363636,6.181818,3.272727 +L 6.181818,3.272727,6.181818,2.181818 +L 6.181818,2.181818,6.545455,1.454545 +L 7.272727,5.818182,6.909091,5.090909 +L 6.909091,5.090909,6.545455,3.636364 +L 6.545455,3.636364,6.545455,2.545455 +L 6.545455,2.545455,6.909091,1.090909 +L 6.909091,1.090909,7.272727,0 +L 0,7.636364,0.727273,7.272727 +L 0.727273,7.272727,2.181818,6.909091 +L 2.181818,6.909091,4,6.909091 +L 4,6.909091,6.181818,7.272727 +L 6.181818,7.272727,7.272727,7.636364 +L 0,0,0.727273,0.363636 +L 0.727273,0.363636,2.181818,0.727273 +L 2.181818,0.727273,4,0.727273 +L 4,0.727273,6.181818,0.363636 +L 6.181818,0.363636,7.272727,0 + +[M] 48 +L 3.272727,6.545455,3.272727,0.727273 +L 3.636364,6.181818,3.636364,1.090909 +L 4,6.545455,4,0.727273 +L 2.181818,0.727273,1.454545,1.454545 +L 1.454545,1.454545,0.727273,1.818182 +L 0.727273,1.818182,0.363636,2.181818 +L 0.363636,2.181818,0,3.272727 +L 0,3.272727,0,5.090909 +L 0,5.090909,0.363636,6.181818 +L 0.363636,6.181818,1.090909,6.909091 +L 1.090909,6.909091,1.818182,7.272727 +L 1.818182,7.272727,2.909091,7.636364 +L 2.909091,7.636364,4.363636,7.636364 +L 4.363636,7.636364,5.454545,7.272727 +L 5.454545,7.272727,6.181818,6.909091 +L 6.181818,6.909091,6.909091,6.181818 +L 6.909091,6.181818,7.272727,5.090909 +L 7.272727,5.090909,7.272727,3.272727 +L 7.272727,3.272727,6.909091,2.181818 +L 6.909091,2.181818,6.545455,1.818182 +L 6.545455,1.818182,5.818182,1.454545 +L 5.818182,1.454545,5.090909,0.727273 +L 0.727273,2.181818,0.363636,3.272727 +L 0.363636,3.272727,0.363636,5.090909 +L 0.363636,5.090909,0.727273,6.181818 +L 1.454545,1.454545,1.090909,2.181818 +L 1.090909,2.181818,0.727273,3.272727 +L 0.727273,3.272727,0.727273,5.454545 +L 0.727273,5.454545,1.090909,6.545455 +L 1.090909,6.545455,1.818182,7.272727 +L 6.545455,6.181818,6.909091,5.090909 +L 6.909091,5.090909,6.909091,3.272727 +L 6.909091,3.272727,6.545455,2.181818 +L 5.454545,7.272727,6.181818,6.545455 +L 6.181818,6.545455,6.545455,5.454545 +L 6.545455,5.454545,6.545455,3.272727 +L 6.545455,3.272727,6.181818,2.181818 +L 6.181818,2.181818,5.818182,1.454545 +L 0,7.636364,1.454545,6.909091 +L 1.454545,6.909091,2.909091,6.545455 +L 2.909091,6.545455,4.363636,6.545455 +L 4.363636,6.545455,5.818182,6.909091 +L 5.818182,6.909091,7.272727,7.636364 +L 0,0,1.090909,0.363636 +L 1.090909,0.363636,2.545455,0.727273 +L 2.545455,0.727273,4.727273,0.727273 +L 4.727273,0.727273,6.181818,0.363636 +L 6.181818,0.363636,7.272727,0 + +[N] 34 +L 0.727273,6.909091,0.727273,0.363636 +L 0.727273,0.363636,0,0 +L 1.454545,6.909091,1.090909,6.545455 +L 1.090909,6.545455,1.090909,0.363636 +L 2.545455,7.636364,1.818182,7.272727 +L 1.818182,7.272727,1.454545,6.545455 +L 1.454545,6.545455,1.454545,0.363636 +L 0,6.181818,0.727273,6.909091 +L 0.727273,6.909091,1.454545,7.272727 +L 1.454545,7.272727,2.545455,7.636364 +L 2.545455,7.636364,4,7.636364 +L 4,7.636364,5.090909,7.272727 +L 5.090909,7.272727,5.818182,6.909091 +L 5.818182,6.909091,6.545455,6.181818 +L 6.545455,6.181818,6.909091,5.454545 +L 6.909091,5.454545,7.272727,4.363636 +L 7.272727,4.363636,7.272727,2.909091 +L 7.272727,2.909091,6.909091,2.181818 +L 6.909091,2.181818,6.181818,1.818182 +L 6.545455,5.818182,6.909091,4.727273 +L 6.909091,4.727273,6.909091,3.272727 +L 6.909091,3.272727,6.545455,2.181818 +L 5.090909,7.272727,5.818182,6.545455 +L 5.818182,6.545455,6.181818,5.818182 +L 6.181818,5.818182,6.545455,4.727273 +L 6.545455,4.727273,6.545455,3.272727 +L 6.545455,3.272727,6.181818,1.818182 +L 6.181818,1.818182,6.181818,1.090909 +L 6.181818,1.090909,6.545455,0.363636 +L 6.545455,0.363636,6.909091,0 +L 6.909091,0,7.272727,0 +L 0,0,1.454545,0.363636 +L 1.454545,0.363636,2.909091,0.363636 +L 2.909091,0.363636,4.727273,0 + +[O] 44 +L 3.272727,7.636364,2.181818,7.272727 +L 2.181818,7.272727,1.454545,6.909091 +L 1.454545,6.909091,0.727273,6.181818 +L 0.727273,6.181818,0.363636,5.454545 +L 0.363636,5.454545,0,4.363636 +L 0,4.363636,0,3.272727 +L 0,3.272727,0.363636,2.181818 +L 0.363636,2.181818,0.727273,1.454545 +L 0.727273,1.454545,1.454545,0.727273 +L 1.454545,0.727273,2.181818,0.363636 +L 2.181818,0.363636,3.272727,0 +L 3.272727,0,4,0 +L 4,0,5.090909,0.363636 +L 5.090909,0.363636,5.818182,0.727273 +L 5.818182,0.727273,6.545455,1.454545 +L 6.545455,1.454545,6.909091,2.181818 +L 6.909091,2.181818,7.272727,3.272727 +L 7.272727,3.272727,7.272727,4.363636 +L 7.272727,4.363636,6.909091,5.454545 +L 6.909091,5.454545,6.545455,6.181818 +L 6.545455,6.181818,5.818182,6.909091 +L 5.818182,6.909091,5.090909,7.272727 +L 5.090909,7.272727,4,7.636364 +L 4,7.636364,3.272727,7.636364 +L 0.727273,5.818182,0.363636,4.727273 +L 0.363636,4.727273,0.363636,2.909091 +L 0.363636,2.909091,0.727273,1.818182 +L 2.181818,7.272727,1.454545,6.545455 +L 1.454545,6.545455,1.090909,5.818182 +L 1.090909,5.818182,0.727273,4.727273 +L 0.727273,4.727273,0.727273,2.909091 +L 0.727273,2.909091,1.090909,1.818182 +L 1.090909,1.818182,1.454545,1.090909 +L 1.454545,1.090909,2.181818,0.363636 +L 6.545455,1.818182,6.909091,2.909091 +L 6.909091,2.909091,6.909091,4.727273 +L 6.909091,4.727273,6.545455,5.818182 +L 5.090909,0.363636,5.818182,1.090909 +L 5.818182,1.090909,6.181818,1.818182 +L 6.181818,1.818182,6.545455,2.909091 +L 6.545455,2.909091,6.545455,4.727273 +L 6.545455,4.727273,6.181818,5.818182 +L 6.181818,5.818182,5.818182,6.545455 +L 5.818182,6.545455,5.090909,7.272727 + +[P] 37 +L 0.727273,6.545455,0.727273,0.363636 +L 1.818182,6.909091,1.090909,6.181818 +L 1.090909,6.181818,1.090909,0.727273 +L 3.272727,7.636364,2.545455,7.272727 +L 2.545455,7.272727,1.818182,6.545455 +L 1.818182,6.545455,1.454545,5.818182 +L 1.454545,5.818182,1.454545,0.727273 +L 1.454545,0.727273,2.181818,0.727273 +L 0,5.818182,0.727273,6.545455 +L 0.727273,6.545455,2.181818,7.272727 +L 2.181818,7.272727,3.272727,7.636364 +L 3.272727,7.636364,4.363636,7.636364 +L 4.363636,7.636364,5.454545,7.272727 +L 5.454545,7.272727,6.181818,6.909091 +L 6.181818,6.909091,6.909091,6.181818 +L 6.909091,6.181818,7.272727,5.090909 +L 7.272727,5.090909,7.272727,4.363636 +L 7.272727,4.363636,6.909091,3.272727 +L 6.909091,3.272727,6.181818,2.545455 +L 6.181818,2.545455,5.090909,2.181818 +L 5.090909,2.181818,3.636364,2.181818 +L 3.636364,2.181818,2.545455,2.545455 +L 2.545455,2.545455,1.818182,3.272727 +L 1.818182,3.272727,1.454545,4.363636 +L 6.545455,6.181818,6.909091,5.454545 +L 6.909091,5.454545,6.909091,4 +L 6.909091,4,6.545455,3.272727 +L 5.454545,7.272727,6.181818,6.545455 +L 6.181818,6.545455,6.545455,5.454545 +L 6.545455,5.454545,6.545455,4 +L 6.545455,4,6.181818,2.909091 +L 6.181818,2.909091,5.090909,2.181818 +L 0,0,0.727273,0.363636 +L 0.727273,0.363636,2.181818,0.727273 +L 2.181818,0.727273,4,0.727273 +L 4,0.727273,6.181818,0.363636 +L 6.181818,0.363636,7.272727,0 + +[Q] 58 +L 3.272727,7.636364,2.181818,7.272727 +L 2.181818,7.272727,1.454545,6.909091 +L 1.454545,6.909091,0.727273,6.181818 +L 0.727273,6.181818,0.363636,5.454545 +L 0.363636,5.454545,0,4.363636 +L 0,4.363636,0,3.272727 +L 0,3.272727,0.363636,2.181818 +L 0.363636,2.181818,0.727273,1.454545 +L 0.727273,1.454545,1.454545,0.727273 +L 1.454545,0.727273,2.181818,0.363636 +L 2.181818,0.363636,3.272727,0 +L 3.272727,0,4,0 +L 4,0,5.090909,0.363636 +L 5.090909,0.363636,5.818182,0.727273 +L 5.818182,0.727273,6.545455,1.454545 +L 6.545455,1.454545,6.909091,2.181818 +L 6.909091,2.181818,7.272727,3.272727 +L 7.272727,3.272727,7.272727,4.363636 +L 7.272727,4.363636,6.909091,5.454545 +L 6.909091,5.454545,6.545455,6.181818 +L 6.545455,6.181818,5.818182,6.909091 +L 5.818182,6.909091,5.090909,7.272727 +L 5.090909,7.272727,4,7.636364 +L 4,7.636364,3.272727,7.636364 +L 0.727273,5.818182,0.363636,4.727273 +L 0.363636,4.727273,0.363636,2.909091 +L 0.363636,2.909091,0.727273,1.818182 +L 2.181818,7.272727,1.454545,6.545455 +L 1.454545,6.545455,1.090909,5.818182 +L 1.090909,5.818182,0.727273,4.727273 +L 0.727273,4.727273,0.727273,2.909091 +L 0.727273,2.909091,1.090909,1.818182 +L 1.090909,1.818182,1.454545,1.090909 +L 1.454545,1.090909,2.181818,0.363636 +L 6.545455,1.818182,6.909091,2.909091 +L 6.909091,2.909091,6.909091,4.727273 +L 6.909091,4.727273,6.545455,5.818182 +L 5.090909,0.363636,5.818182,1.090909 +L 5.818182,1.090909,6.181818,1.818182 +L 6.181818,1.818182,6.545455,2.909091 +L 6.545455,2.909091,6.545455,4.727273 +L 6.545455,4.727273,6.181818,5.818182 +L 6.181818,5.818182,5.818182,6.545455 +L 5.818182,6.545455,5.090909,7.272727 +L 0.727273,2.909091,1.090909,2.181818 +L 1.090909,2.181818,2.181818,1.818182 +L 2.181818,1.818182,4.363636,1.454545 +L 4.363636,1.454545,6.909091,1.454545 +L 6.909091,1.454545,7.272727,1.090909 +L 7.272727,1.090909,7.272727,0.363636 +L 7.272727,0.363636,6.909091,0 +L 6.909091,0,6.909091,0.363636 +L 6.909091,0.363636,7.272727,0.727273 +L 2.909091,1.454545,3.636364,1.454545 +L 1.090909,2.181818,2.181818,1.454545 +L 2.181818,1.454545,3.272727,1.090909 +L 3.272727,1.090909,4,1.090909 +L 4,1.090909,4.363636,1.454545 + +[R] 49 +L 0.727273,6.545455,0.727273,0.363636 +L 0.727273,0.363636,0,0 +L 1.090909,6.545455,1.090909,0.363636 +L 1.454545,6.909091,1.454545,0.363636 +L 0,5.818182,0.727273,6.545455 +L 0.727273,6.545455,1.454545,6.909091 +L 1.454545,6.909091,2.181818,7.272727 +L 2.181818,7.272727,3.272727,7.636364 +L 3.272727,7.636364,4.727273,7.636364 +L 4.727273,7.636364,6.181818,7.272727 +L 6.181818,7.272727,6.909091,6.545455 +L 6.909091,6.545455,7.272727,5.818182 +L 7.272727,5.818182,7.272727,4.727273 +L 7.272727,4.727273,6.909091,4 +L 6.909091,4,6.545455,3.636364 +L 6.181818,6.909091,6.545455,6.545455 +L 6.545455,6.545455,6.909091,5.818182 +L 6.909091,5.818182,6.909091,4.727273 +L 6.909091,4.727273,6.545455,4 +L 4.727273,7.636364,5.454545,7.272727 +L 5.454545,7.272727,6.181818,6.545455 +L 6.181818,6.545455,6.545455,5.818182 +L 6.545455,5.818182,6.545455,4.363636 +L 6.545455,4.363636,6.181818,3.636364 +L 5.818182,3.272727,4.727273,2.909091 +L 4.727273,2.909091,3.636364,2.909091 +L 3.636364,2.909091,2.909091,3.272727 +L 2.909091,3.272727,2.909091,4 +L 2.909091,4,3.636364,4.363636 +L 3.636364,4.363636,4.727273,4.363636 +L 4.727273,4.363636,5.818182,4 +L 5.818182,4,6.545455,3.272727 +L 6.545455,3.272727,7.272727,2.181818 +L 7.272727,2.181818,7.272727,1.454545 +L 7.272727,1.454545,6.909091,1.090909 +L 6.909091,1.090909,6.545455,1.090909 +L 5.818182,3.636364,6.181818,3.272727 +L 6.181818,3.272727,6.909091,1.818182 +L 6.909091,1.818182,6.909091,1.454545 +L 6.909091,1.454545,6.545455,2.545455 +L 4.363636,4.363636,5.090909,4 +L 5.090909,4,5.818182,3.272727 +L 5.818182,3.272727,6.181818,2.545455 +L 6.181818,2.545455,6.545455,1.090909 +L 6.545455,1.090909,6.909091,0.363636 +L 6.909091,0.363636,7.272727,0 +L 0,0,1.454545,0.363636 +L 1.454545,0.363636,2.909091,0.363636 +L 2.909091,0.363636,4.727273,0 + +[S] 78 +L 4.363636,7.636364,6.545455,7.272727 +L 6.545455,7.272727,7.272727,7.636364 +L 7.272727,7.636364,6.909091,6.909091 +L 6.909091,6.909091,6.909091,6.181818 +L 6.909091,6.181818,6.181818,6.909091 +L 6.181818,6.909091,5.454545,7.272727 +L 5.454545,7.272727,4.363636,7.636364 +L 4.363636,7.636364,2.909091,7.636364 +L 2.909091,7.636364,1.818182,7.272727 +L 1.818182,7.272727,0.727273,6.181818 +L 0.727273,6.181818,0.363636,5.090909 +L 0.363636,5.090909,0.363636,4.363636 +L 0.363636,4.363636,0.727273,3.272727 +L 0.727273,3.272727,1.454545,2.545455 +L 1.454545,2.545455,2.545455,2.181818 +L 2.545455,2.181818,3.636364,2.181818 +L 3.636364,2.181818,4.363636,2.545455 +L 4.363636,2.545455,4.727273,2.909091 +L 4.727273,2.909091,5.090909,3.636364 +L 5.090909,3.636364,5.090909,4 +L 6.909091,7.272727,6.545455,6.909091 +L 6.545455,6.909091,6.909091,6.181818 +L 0.727273,4,1.090909,3.272727 +L 1.090909,3.272727,1.454545,2.909091 +L 1.454545,2.909091,2.545455,2.545455 +L 2.545455,2.545455,3.636364,2.545455 +L 3.636364,2.545455,4.363636,2.909091 +L 1.090909,6.545455,0.727273,5.818182 +L 0.727273,5.818182,0.727273,4.727273 +L 0.727273,4.727273,1.090909,4 +L 1.090909,4,1.818182,3.272727 +L 1.818182,3.272727,2.909091,2.909091 +L 2.909091,2.909091,3.636364,2.909091 +L 3.636364,2.909091,4.363636,3.272727 +L 4.363636,3.272727,5.090909,4 +L 5.090909,4,5.454545,4.363636 +L 5.454545,4.363636,5.818182,4.363636 +L 1.454545,3.636364,1.818182,3.636364 +L 1.818182,3.636364,2.181818,4 +L 2.181818,4,2.909091,4.727273 +L 2.909091,4.727273,3.636364,5.090909 +L 3.636364,5.090909,4.727273,5.090909 +L 4.727273,5.090909,5.454545,4.727273 +L 5.454545,4.727273,6.181818,4 +L 6.181818,4,6.545455,3.272727 +L 6.545455,3.272727,6.545455,2.181818 +L 6.545455,2.181818,6.181818,1.090909 +L 6.181818,1.090909,5.454545,0.363636 +L 2.909091,5.090909,3.636364,5.454545 +L 3.636364,5.454545,4.727273,5.454545 +L 4.727273,5.454545,5.818182,5.090909 +L 5.818182,5.090909,6.545455,4.363636 +L 6.545455,4.363636,6.909091,3.272727 +L 6.909091,3.272727,6.909091,2.181818 +L 6.909091,2.181818,6.545455,1.454545 +L 0.363636,1.454545,0.727273,0.727273 +L 0.727273,0.727273,0.363636,0.363636 +L 2.181818,4,2.181818,4.363636 +L 2.181818,4.363636,2.545455,5.090909 +L 2.545455,5.090909,2.909091,5.454545 +L 2.909091,5.454545,3.636364,5.818182 +L 3.636364,5.818182,4.727273,5.818182 +L 4.727273,5.818182,5.818182,5.454545 +L 5.818182,5.454545,6.909091,4.363636 +L 6.909091,4.363636,7.272727,3.272727 +L 7.272727,3.272727,7.272727,2.545455 +L 7.272727,2.545455,6.909091,1.454545 +L 6.909091,1.454545,6.181818,0.727273 +L 6.181818,0.727273,5.454545,0.363636 +L 5.454545,0.363636,4.363636,0 +L 4.363636,0,2.909091,0 +L 2.909091,0,1.818182,0.363636 +L 1.818182,0.363636,1.090909,0.727273 +L 1.090909,0.727273,0.363636,1.454545 +L 0.363636,1.454545,0.363636,0.727273 +L 0.363636,0.727273,0,0 +L 0,0,0.727273,0.363636 +L 0.727273,0.363636,2.909091,0 + +[T] 52 +L 3.272727,6.909091,1.818182,6.909091 +L 1.818182,6.909091,1.090909,6.545455 +L 1.090909,6.545455,0.727273,6.181818 +L 0.727273,6.181818,0.363636,5.454545 +L 0.363636,5.454545,0,4.363636 +L 0,4.363636,0,2.909091 +L 0,2.909091,0.363636,1.818182 +L 0.363636,1.818182,0.727273,1.090909 +L 0.727273,1.090909,1.090909,0.727273 +L 1.090909,0.727273,1.818182,0.363636 +L 1.818182,0.363636,2.909091,0 +L 2.909091,0,4,0 +L 4,0,5.090909,0.363636 +L 5.090909,0.363636,5.818182,0.727273 +L 5.818182,0.727273,6.545455,1.454545 +L 6.545455,1.454545,6.909091,2.181818 +L 6.909091,2.181818,7.272727,3.272727 +L 7.272727,3.272727,7.272727,4.727273 +L 7.272727,4.727273,6.909091,5.818182 +L 6.909091,5.818182,6.181818,6.545455 +L 6.181818,6.545455,5.454545,6.909091 +L 4.727273,6.909091,4.363636,6.545455 +L 4.363636,6.545455,4.363636,5.818182 +L 4.363636,5.818182,4.727273,5.454545 +L 4.727273,5.454545,5.090909,5.818182 +L 5.090909,5.818182,4.727273,6.181818 +L 0.363636,2.909091,0.727273,1.818182 +L 0.727273,1.818182,1.454545,1.090909 +L 1.454545,1.090909,2.181818,0.727273 +L 2.181818,0.727273,3.272727,0.363636 +L 3.272727,0.363636,4.363636,0.363636 +L 4.363636,0.363636,5.454545,0.727273 +L 0.727273,6.181818,0.363636,4.727273 +L 0.363636,4.727273,0.363636,3.636364 +L 0.363636,3.636364,0.727273,2.545455 +L 0.727273,2.545455,1.454545,1.454545 +L 1.454545,1.454545,2.181818,1.090909 +L 2.181818,1.090909,3.272727,0.727273 +L 3.272727,0.727273,4.363636,0.727273 +L 4.363636,0.727273,5.454545,1.090909 +L 5.454545,1.090909,6.181818,1.454545 +L 6.181818,1.454545,6.909091,2.545455 +L 6.909091,2.545455,7.272727,3.272727 +L 0,7.636364,1.090909,6.545455 +L 1.090909,6.909091,1.454545,7.272727 +L 0.363636,7.272727,0.727273,7.272727 +L 0.727273,7.272727,1.090909,7.636364 +L 1.090909,7.636364,1.818182,7.272727 +L 1.818182,7.272727,3.272727,6.909091 +L 3.272727,6.909091,5.454545,6.909091 +L 5.454545,6.909091,6.545455,7.272727 +L 6.545455,7.272727,7.272727,7.636364 + +[U] 37 +L 1.454545,6.909091,0.727273,6.181818 +L 0.727273,6.181818,0.363636,5.454545 +L 0.363636,5.454545,0,4.363636 +L 0,4.363636,0,3.272727 +L 0,3.272727,0.363636,2.181818 +L 0.363636,2.181818,0.727273,1.454545 +L 0.727273,1.454545,1.454545,0.727273 +L 1.454545,0.727273,2.181818,0.363636 +L 2.181818,0.363636,3.272727,0 +L 3.272727,0,4.727273,0 +L 4.727273,0,5.818182,0.363636 +L 5.818182,0.363636,6.545455,0.727273 +L 1.090909,6.181818,0.727273,5.454545 +L 0.727273,5.454545,0.363636,4.363636 +L 0.363636,4.363636,0.363636,2.909091 +L 0.363636,2.909091,0.727273,1.818182 +L 1.090909,6.545455,1.454545,6.181818 +L 1.454545,6.181818,1.454545,5.818182 +L 1.454545,5.818182,1.090909,5.090909 +L 1.090909,5.090909,0.727273,4 +L 0.727273,4,0.727273,2.909091 +L 0.727273,2.909091,1.090909,1.818182 +L 1.090909,1.818182,1.454545,1.090909 +L 1.454545,1.090909,2.181818,0.363636 +L 5.090909,6.909091,5.818182,6.909091 +L 5.818182,6.909091,5.818182,1.090909 +L 5.818182,1.090909,5.454545,0.363636 +L 5.454545,0.363636,4.727273,0 +L 6.181818,6.909091,6.181818,1.090909 +L 6.181818,1.090909,5.818182,0.727273 +L 6.545455,7.272727,6.545455,0.727273 +L 6.545455,0.727273,7.272727,0 +L 0,7.636364,1.090909,7.272727 +L 1.090909,7.272727,3.272727,6.909091 +L 3.272727,6.909091,5.090909,6.909091 +L 5.090909,6.909091,6.545455,7.272727 +L 6.545455,7.272727,7.272727,7.636364 + +[V] 17 +L 0,7.636364,3.636364,0 +L 0.363636,7.272727,0.727273,6.909091 +L 0.727273,6.909091,3.272727,1.454545 +L 3.272727,1.454545,3.636364,0.727273 +L 0.727273,7.272727,1.090909,6.909091 +L 1.090909,6.909091,3.636364,1.454545 +L 3.636364,1.454545,4,1.090909 +L 7.272727,7.636364,3.636364,0 +L 5.454545,4.727273,4.727273,2.909091 +L 6.181818,5.454545,4.727273,3.636364 +L 4.727273,3.636364,4.363636,2.545455 +L 4.363636,2.545455,4.363636,1.818182 +L 0,7.636364,0.727273,7.272727 +L 0.727273,7.272727,2.545455,6.909091 +L 2.545455,6.909091,4.727273,6.909091 +L 4.727273,6.909091,6.545455,7.272727 +L 6.545455,7.272727,7.272727,7.636364 + +[W] 49 +L 1.454545,6.909091,0.727273,6.181818 +L 0.727273,6.181818,0.363636,5.454545 +L 0.363636,5.454545,0,4.363636 +L 0,4.363636,0,3.272727 +L 0,3.272727,0.363636,2.181818 +L 0.363636,2.181818,0.727273,1.454545 +L 0.727273,1.454545,1.454545,0.727273 +L 1.454545,0.727273,2.181818,0.363636 +L 2.181818,0.363636,3.272727,0 +L 3.272727,0,4,0 +L 4,0,5.090909,0.363636 +L 5.090909,0.363636,5.818182,0.727273 +L 5.818182,0.727273,6.545455,1.454545 +L 6.545455,1.454545,6.909091,2.181818 +L 6.909091,2.181818,7.272727,3.272727 +L 7.272727,3.272727,7.272727,4.363636 +L 7.272727,4.363636,6.909091,5.454545 +L 6.909091,5.454545,6.545455,6.181818 +L 6.545455,6.181818,5.818182,6.909091 +L 0.727273,5.454545,0.363636,4.363636 +L 0.363636,4.363636,0.363636,3.272727 +L 0.363636,3.272727,0.727273,2.181818 +L 0.727273,2.181818,1.090909,1.454545 +L 0.727273,6.181818,1.090909,5.818182 +L 1.090909,5.818182,1.090909,5.454545 +L 1.090909,5.454545,0.727273,4.363636 +L 0.727273,4.363636,0.727273,3.272727 +L 0.727273,3.272727,1.090909,1.818182 +L 1.090909,1.818182,1.454545,1.090909 +L 1.454545,1.090909,2.181818,0.363636 +L 6.181818,1.454545,6.545455,2.181818 +L 6.545455,2.181818,6.909091,3.272727 +L 6.909091,3.272727,6.909091,4.363636 +L 6.909091,4.363636,6.545455,5.454545 +L 5.090909,0.363636,5.818182,1.090909 +L 5.818182,1.090909,6.181818,1.818182 +L 6.181818,1.818182,6.545455,3.272727 +L 6.545455,3.272727,6.545455,4.363636 +L 6.545455,4.363636,6.181818,5.454545 +L 6.181818,5.454545,6.181818,5.818182 +L 6.181818,5.818182,6.545455,6.181818 +L 3.272727,6.545455,3.272727,0 +L 3.636364,6.181818,3.636364,0.363636 +L 4,6.545455,4,0 +L 0,7.636364,1.454545,6.909091 +L 1.454545,6.909091,2.909091,6.545455 +L 2.909091,6.545455,4.363636,6.545455 +L 4.363636,6.545455,5.818182,6.909091 +L 5.818182,6.909091,7.272727,7.636364 + +[X] 23 +L 0,7.636364,5.818182,0.727273 +L 5.818182,0.727273,6.181818,0.363636 +L 0.363636,7.272727,1.090909,6.909091 +L 1.090909,6.909091,6.545455,0.363636 +L 1.454545,6.909091,7.272727,0 +L 7.272727,7.636364,4,4 +L 3.272727,3.272727,0.727273,0.363636 +L 2.909091,2.909091,1.818182,2.181818 +L 1.818182,2.181818,1.454545,1.454545 +L 3.272727,3.272727,1.818182,2.545455 +L 1.818182,2.545455,1.454545,2.181818 +L 1.454545,2.181818,1.090909,1.454545 +L 1.090909,1.454545,1.090909,0.727273 +L 0,7.636364,1.454545,6.909091 +L 1.454545,6.909091,2.909091,6.545455 +L 2.909091,6.545455,4.363636,6.545455 +L 4.363636,6.545455,5.818182,6.909091 +L 5.818182,6.909091,7.272727,7.636364 +L 0,0,0.727273,0.363636 +L 0.727273,0.363636,2.181818,0.727273 +L 2.181818,0.727273,4,0.727273 +L 4,0.727273,6.181818,0.363636 +L 6.181818,0.363636,7.272727,0 + +[Y] 31 +L 5.818182,6.909091,5.818182,0.363636 +L 6.181818,6.909091,6.181818,0.727273 +L 6.545455,7.272727,6.545455,0.727273 +L 1.090909,6.909091,0.363636,6.181818 +L 0.363636,6.181818,0,5.090909 +L 0,5.090909,0,4 +L 0,4,0.363636,2.909091 +L 0.363636,2.909091,1.090909,2.181818 +L 1.090909,2.181818,1.818182,1.818182 +L 1.818182,1.818182,2.909091,1.454545 +L 2.909091,1.454545,4,1.454545 +L 4,1.454545,5.090909,1.818182 +L 5.090909,1.818182,5.818182,2.181818 +L 1.454545,2.181818,2.545455,1.818182 +L 2.545455,1.818182,4.727273,1.818182 +L 0,4,0.363636,3.272727 +L 0.363636,3.272727,1.090909,2.545455 +L 1.090909,2.545455,2.181818,2.181818 +L 2.181818,2.181818,4.363636,2.181818 +L 4.363636,2.181818,5.090909,1.818182 +L 0,7.636364,1.454545,6.909091 +L 1.454545,6.909091,2.909091,6.545455 +L 2.909091,6.545455,4.363636,6.545455 +L 4.363636,6.545455,5.818182,6.909091 +L 5.818182,6.909091,7.272727,7.636364 +L 0,1.454545,0.727273,0.727273 +L 0.727273,0.727273,1.454545,0.363636 +L 1.454545,0.363636,2.909091,0 +L 2.909091,0,4.363636,0 +L 4.363636,0,5.818182,0.363636 +L 5.818182,0.363636,7.272727,1.090909 + +[Z] 57 +L 0,7.636364,0.363636,7.272727 +L 0.363636,7.272727,1.090909,6.909091 +L 1.090909,6.909091,2.181818,6.909091 +L 2.181818,6.909091,4,7.636364 +L 4,7.636364,5.090909,7.636364 +L 5.090909,7.636364,6.181818,7.272727 +L 6.181818,7.272727,6.545455,6.545455 +L 6.545455,6.545455,6.545455,5.818182 +L 6.545455,5.818182,6.181818,5.090909 +L 5.818182,7.272727,6.181818,6.545455 +L 6.181818,6.545455,6.181818,5.818182 +L 6.181818,5.818182,5.818182,5.090909 +L 5.090909,7.636364,5.454545,7.272727 +L 5.454545,7.272727,5.818182,6.545455 +L 5.818182,6.545455,5.818182,5.454545 +L 5.818182,4.727273,4.363636,4.363636 +L 4.363636,4.363636,3.636364,4.363636 +L 3.636364,4.363636,2.909091,4.727273 +L 2.909091,4.727273,2.909091,5.454545 +L 2.909091,5.454545,3.636364,5.818182 +L 3.636364,5.818182,4.363636,5.818182 +L 4.363636,5.818182,5.818182,5.454545 +L 4.363636,5.818182,5.090909,5.454545 +L 5.090909,5.454545,5.454545,5.090909 +L 5.454545,5.090909,5.090909,4.727273 +L 5.090909,4.727273,4.363636,4.363636 +L 6.181818,5.090909,6.909091,4.363636 +L 6.909091,4.363636,7.272727,3.272727 +L 7.272727,3.272727,7.272727,2.545455 +L 7.272727,2.545455,6.909091,1.454545 +L 6.909091,1.454545,6.181818,0.727273 +L 6.181818,0.727273,5.454545,0.363636 +L 5.454545,0.363636,4.363636,0 +L 4.363636,0,2.909091,0 +L 2.909091,0,1.818182,0.363636 +L 1.818182,0.363636,1.090909,0.727273 +L 1.090909,0.727273,0.363636,1.454545 +L 0.363636,1.454545,0,2.545455 +L 0,2.545455,0,3.272727 +L 0,3.272727,0.363636,4.363636 +L 0.363636,4.363636,0.727273,4.727273 +L 0.727273,4.727273,1.454545,5.090909 +L 1.454545,5.090909,2.181818,5.090909 +L 2.181818,5.090909,2.909091,4.727273 +L 2.909091,4.727273,2.909091,4 +L 2.909091,4,2.545455,3.636364 +L 2.545455,3.636364,2.181818,4 +L 2.181818,4,2.545455,4.363636 +L 5.818182,5.090909,6.545455,4.363636 +L 6.545455,4.363636,6.909091,3.636364 +L 6.909091,3.636364,6.909091,2.181818 +L 6.909091,2.181818,6.545455,1.454545 +L 5.818182,4.727273,6.181818,4.363636 +L 6.181818,4.363636,6.545455,3.636364 +L 6.545455,3.636364,6.545455,2.181818 +L 6.545455,2.181818,6.181818,1.090909 +L 6.181818,1.090909,5.454545,0.363636 + +[[] 4 +L 0,9.090909,0,-2.545455 +L 0.363636,9.090909,0.363636,-2.545455 +L 0,9.090909,2.545455,9.090909 +L 0,-2.545455,2.545455,-2.545455 + +[\] 1 +L 0,7.636364,5.090909,-1.090909 + +[]] 4 +L 2.181818,9.090909,2.181818,-2.545455 +L 2.545455,9.090909,2.545455,-2.545455 +L 0,9.090909,2.545455,9.090909 +L 0,-2.545455,2.545455,-2.545455 + +[^] 5 +L 1.090909,5.454545,1.818182,6.545455 +L 1.818182,6.545455,2.545455,5.454545 +L 0,4.363636,1.818182,6.181818 +L 1.818182,6.181818,3.636364,4.363636 +L 1.818182,6.181818,1.818182,0 + +[_] 1 +L 0,-0.727273,5.818182,-0.727273 + +[`] 10 +L 1.090909,7.636364,0.363636,7.272727 +L 0.363636,7.272727,0,6.545455 +L 0,6.545455,0,5.818182 +L 0,5.818182,0.363636,5.090909 +L 0.363636,5.090909,1.090909,5.818182 +L 1.090909,5.818182,0.363636,6.545455 +L 0.363636,6.545455,0.363636,7.272727 +L 0.363636,6.181818,0.363636,5.454545 +L 0.363636,5.454545,0.727273,5.818182 +L 0.727273,5.818182,0.363636,6.181818 + +[a] 28 +L 1.090909,3.636364,0,2.545455 +L 0,2.545455,0,1.090909 +L 0,1.090909,1.090909,0 +L 1.090909,0,2.545455,0.727273 +L 0.363636,2.545455,0.363636,1.090909 +L 0.363636,1.090909,1.090909,0.363636 +L 0.727273,3.272727,0.727273,1.454545 +L 0.727273,1.454545,1.818182,0.363636 +L 1.818182,2.909091,0,4.727273 +L 0,4.727273,0.363636,5.090909 +L 0.363636,5.090909,0.727273,4.727273 +L 0.727273,4.727273,0.363636,4.363636 +L 0.727273,4.727273,2.181818,4.727273 +L 2.181818,4.727273,2.909091,5.090909 +L 2.909091,5.090909,3.636364,4.363636 +L 3.636364,4.363636,3.636364,1.090909 +L 3.636364,1.090909,4,0.727273 +L 2.909091,4.727273,3.272727,4.363636 +L 3.272727,4.363636,3.272727,1.090909 +L 3.272727,1.090909,2.909091,0.727273 +L 2.909091,0.727273,3.272727,0.363636 +L 3.272727,0.363636,3.636364,0.727273 +L 3.636364,0.727273,3.272727,1.090909 +L 2.181818,4.727273,2.909091,4 +L 2.909091,4,2.909091,1.090909 +L 2.909091,1.090909,2.545455,0.727273 +L 2.545455,0.727273,3.272727,0 +L 3.272727,0,4,0.727273 + +[b] 19 +L 0.727273,6.909091,0,7.636364 +L 0,7.636364,0.363636,6.181818 +L 0.363636,6.181818,0.363636,1.090909 +L 0.363636,1.090909,1.454545,0 +L 1.454545,0,3.272727,0.727273 +L 3.272727,0.727273,4,1.090909 +L 0.727273,6.909091,0.727273,1.090909 +L 0.727273,1.090909,1.454545,0.363636 +L 0.727273,6.909091,1.454545,7.636364 +L 1.454545,7.636364,1.090909,6.181818 +L 1.090909,6.181818,1.090909,1.454545 +L 1.090909,1.454545,2.181818,0.363636 +L 1.090909,4.363636,2.909091,5.090909 +L 2.909091,5.090909,4,4 +L 4,4,4,1.090909 +L 2.909091,4.727273,3.636364,4 +L 3.636364,4,3.636364,1.090909 +L 2.181818,4.727273,3.272727,3.636364 +L 3.272727,3.636364,3.272727,0.727273 + +[c] 13 +L 0,4,0,0.727273 +L 0,0.727273,0.727273,0 +L 0.727273,0,1.454545,0.727273 +L 0.363636,4,0.363636,0.727273 +L 0.363636,0.727273,0.727273,0.363636 +L 0.727273,4.363636,0.727273,1.090909 +L 0.727273,1.090909,1.090909,0.727273 +L 1.090909,0.727273,1.454545,0.727273 +L 0,4,2.181818,5.090909 +L 2.181818,5.090909,2.909091,4.363636 +L 2.909091,4.363636,2.181818,4 +L 2.181818,4,1.454545,4.727273 +L 1.818182,4.727273,2.545455,4.363636 + +[d] 20 +L 1.818182,5.090909,0,4 +L 0,4,0,1.090909 +L 0,1.090909,1.090909,0 +L 1.090909,0,1.818182,0.363636 +L 1.818182,0.363636,2.909091,0.727273 +L 2.909091,0.727273,3.636364,0.727273 +L 0.363636,4,0.363636,1.090909 +L 0.363636,1.090909,1.090909,0.363636 +L 0.727273,4.363636,0.727273,1.454545 +L 0.727273,1.454545,1.818182,0.363636 +L 1.090909,6.545455,1.090909,7.636364 +L 1.090909,7.636364,1.454545,6.545455 +L 1.454545,6.545455,3.636364,4 +L 3.636364,4,3.636364,0.727273 +L 1.090909,6.545455,3.272727,4 +L 3.272727,4,3.272727,1.090909 +L 1.090909,6.545455,0,6.545455 +L 0,6.545455,1.090909,6.181818 +L 1.090909,6.181818,2.909091,4 +L 2.909091,4,2.909091,0.727273 + +[e] 13 +L 0,4,0,0.727273 +L 0,0.727273,0.727273,0 +L 0.727273,0,1.454545,0.727273 +L 0.363636,4,0.363636,0.727273 +L 0.363636,0.727273,0.727273,0.363636 +L 0.727273,4.363636,0.727273,1.090909 +L 0.727273,1.090909,1.090909,0.727273 +L 1.090909,0.727273,1.454545,0.727273 +L 0,4,2.181818,5.090909 +L 2.181818,5.090909,3.272727,3.636364 +L 3.272727,3.636364,0.727273,2.181818 +L 1.818182,4.727273,2.909091,3.636364 +L 1.454545,4.727273,2.545455,3.272727 + +[f] 18 +L 1.090909,6.545455,1.090909,1.090909 +L 1.090909,1.090909,0.727273,0.727273 +L 0.727273,0.727273,1.454545,0 +L 1.454545,6.545455,1.454545,1.090909 +L 1.454545,1.090909,1.090909,0.727273 +L 1.090909,0.727273,1.454545,0.363636 +L 1.454545,0.363636,1.818182,0.727273 +L 1.818182,0.727273,1.454545,1.090909 +L 1.818182,6.909091,1.818182,1.090909 +L 1.818182,1.090909,2.181818,0.727273 +L 2.181818,0.727273,1.454545,0 +L 1.090909,6.545455,3.272727,7.636364 +L 3.272727,7.636364,4,6.909091 +L 4,6.909091,3.272727,6.545455 +L 3.272727,6.545455,2.545455,7.272727 +L 2.909091,7.272727,3.636364,6.909091 +L 0,5.090909,1.090909,5.090909 +L 1.818182,5.090909,3.272727,5.090909 + +[g] 27 +L 0,4,0,1.090909 +L 0,1.090909,1.090909,0 +L 1.090909,0,2.909091,0.727273 +L 0.363636,4,0.363636,1.090909 +L 0.363636,1.090909,1.090909,0.363636 +L 0.727273,4.363636,0.727273,1.454545 +L 0.727273,1.454545,1.818182,0.363636 +L 0,4,0.727273,4.363636 +L 0.727273,4.363636,2.545455,5.090909 +L 2.545455,5.090909,3.636364,4 +L 3.636364,4,3.636364,-0.727273 +L 3.636364,-0.727273,3.272727,-1.454545 +L 3.272727,-1.454545,2.909091,-1.818182 +L 2.909091,-1.818182,2.181818,-2.181818 +L 2.181818,-2.181818,1.454545,-2.181818 +L 1.454545,-2.181818,0.727273,-1.818182 +L 0.727273,-1.818182,0,-2.181818 +L 0,-2.181818,0.727273,-2.545455 +L 0.727273,-2.545455,1.454545,-2.181818 +L 2.545455,4.727273,3.272727,4 +L 3.272727,4,3.272727,-0.727273 +L 3.272727,-0.727273,2.909091,-1.454545 +L 1.090909,-2.181818,0.363636,-2.181818 +L 1.818182,4.727273,2.909091,3.636364 +L 2.909091,3.636364,2.909091,-1.090909 +L 2.909091,-1.090909,2.545455,-1.818182 +L 2.545455,-1.818182,2.181818,-2.181818 + +[h] 30 +L 0.727273,6.909091,0,7.636364 +L 0,7.636364,0.363636,6.181818 +L 0.363636,6.181818,0.363636,1.090909 +L 0.363636,1.090909,0,0.727273 +L 0,0.727273,0.727273,0 +L 0.727273,6.909091,0.727273,1.090909 +L 0.727273,1.090909,0.363636,0.727273 +L 0.363636,0.727273,0.727273,0.363636 +L 0.727273,0.363636,1.090909,0.727273 +L 1.090909,0.727273,0.727273,1.090909 +L 0.727273,6.909091,1.454545,7.636364 +L 1.454545,7.636364,1.090909,6.181818 +L 1.090909,6.181818,1.090909,1.090909 +L 1.090909,1.090909,1.454545,0.727273 +L 1.454545,0.727273,0.727273,0 +L 1.090909,4.363636,2.181818,4.727273 +L 2.181818,4.727273,2.909091,5.090909 +L 2.909091,5.090909,4,4 +L 4,4,4,0.727273 +L 4,0.727273,2.909091,-0.727273 +L 2.909091,-0.727273,2.909091,-1.818182 +L 2.909091,-1.818182,3.272727,-2.545455 +L 3.272727,-2.545455,3.636364,-2.545455 +L 3.636364,-2.545455,2.909091,-1.818182 +L 2.909091,4.727273,3.636364,4 +L 3.636364,4,3.636364,0.727273 +L 3.636364,0.727273,3.272727,0 +L 2.181818,4.727273,3.272727,3.636364 +L 3.272727,3.636364,3.272727,0.363636 +L 3.272727,0.363636,2.909091,-0.727273 + +[i] 27 +L 0.727273,7.636364,0,6.909091 +L 0,6.909091,0.727273,6.181818 +L 0.727273,6.181818,1.454545,6.909091 +L 1.454545,6.909091,0.727273,7.636364 +L 0.727273,7.272727,0.363636,6.909091 +L 0.363636,6.909091,0.727273,6.545455 +L 0.727273,6.545455,1.090909,6.909091 +L 1.090909,6.909091,0.727273,7.272727 +L 0.727273,5.090909,0,4.363636 +L 0,4.363636,0.363636,4 +L 0.363636,4,0.363636,1.090909 +L 0.363636,1.090909,0,0.727273 +L 0,0.727273,0.727273,0 +L 0.727273,4,1.090909,4.363636 +L 1.090909,4.363636,0.727273,4.727273 +L 0.727273,4.727273,0.363636,4.363636 +L 0.363636,4.363636,0.727273,4 +L 0.727273,4,0.727273,1.090909 +L 0.727273,1.090909,0.363636,0.727273 +L 0.363636,0.727273,0.727273,0.363636 +L 0.727273,0.363636,1.090909,0.727273 +L 1.090909,0.727273,0.727273,1.090909 +L 0.727273,5.090909,1.454545,4.363636 +L 1.454545,4.363636,1.090909,4 +L 1.090909,4,1.090909,1.090909 +L 1.090909,1.090909,1.454545,0.727273 +L 1.454545,0.727273,0.727273,0 + +[j] 27 +L 0.727273,7.636364,0,6.909091 +L 0,6.909091,0.727273,6.181818 +L 0.727273,6.181818,1.454545,6.909091 +L 1.454545,6.909091,0.727273,7.636364 +L 0.727273,7.272727,0.363636,6.909091 +L 0.363636,6.909091,0.727273,6.545455 +L 0.727273,6.545455,1.090909,6.909091 +L 1.090909,6.909091,0.727273,7.272727 +L 0.727273,5.090909,0,4.363636 +L 0,4.363636,0.363636,4 +L 0.363636,4,0.363636,0.727273 +L 0.363636,0.727273,1.454545,-0.727273 +L 0.727273,4,1.090909,4.363636 +L 1.090909,4.363636,0.727273,4.727273 +L 0.727273,4.727273,0.363636,4.363636 +L 0.363636,4.363636,0.727273,4 +L 0.727273,4,0.727273,0.727273 +L 0.727273,0.727273,1.090909,0 +L 0.727273,5.090909,1.454545,4.363636 +L 1.454545,4.363636,1.090909,4 +L 1.090909,4,1.090909,0.363636 +L 1.090909,0.363636,1.454545,-0.727273 +L 1.454545,-0.727273,1.454545,-1.818182 +L 1.454545,-1.818182,0.727273,-2.545455 +L 0.727273,-2.545455,0,-2.181818 +L 0,-2.181818,0,-2.545455 +L 0,-2.545455,0.727273,-2.545455 + +[k] 33 +L 0.727273,6.909091,0,7.636364 +L 0,7.636364,0.363636,6.181818 +L 0.363636,6.181818,0.363636,1.090909 +L 0.363636,1.090909,0,0.727273 +L 0,0.727273,0.727273,0 +L 0.727273,6.909091,0.727273,1.090909 +L 0.727273,1.090909,0.363636,0.727273 +L 0.363636,0.727273,0.727273,0.363636 +L 0.727273,0.363636,1.090909,0.727273 +L 1.090909,0.727273,0.727273,1.090909 +L 0.727273,6.909091,1.454545,7.636364 +L 1.454545,7.636364,1.090909,6.181818 +L 1.090909,6.181818,1.090909,1.090909 +L 1.090909,1.090909,1.454545,0.727273 +L 1.454545,0.727273,0.727273,0 +L 1.090909,4,2.181818,4.727273 +L 2.181818,4.727273,2.909091,5.090909 +L 2.909091,5.090909,3.636364,4 +L 3.636364,4,2.545455,3.272727 +L 2.545455,3.272727,1.090909,2.181818 +L 2.545455,4.727273,3.272727,4 +L 2.181818,4.727273,2.909091,3.636364 +L 2.181818,2.909091,2.545455,2.545455 +L 2.545455,2.545455,2.909091,0.727273 +L 2.909091,0.727273,3.636364,0 +L 3.636364,0,4.363636,0.727273 +L 2.545455,2.909091,2.909091,2.181818 +L 2.909091,2.181818,3.272727,0.727273 +L 3.272727,0.727273,3.636364,0.363636 +L 2.545455,3.272727,2.909091,2.909091 +L 2.909091,2.909091,3.636364,1.090909 +L 3.636364,1.090909,4,0.727273 +L 4,0.727273,4.363636,0.727273 + +[l] 15 +L 0.727273,6.909091,0,7.636364 +L 0,7.636364,0.363636,6.181818 +L 0.363636,6.181818,0.363636,1.090909 +L 0.363636,1.090909,0,0.727273 +L 0,0.727273,0.727273,0 +L 0.727273,6.909091,0.727273,1.090909 +L 0.727273,1.090909,0.363636,0.727273 +L 0.363636,0.727273,0.727273,0.363636 +L 0.727273,0.363636,1.090909,0.727273 +L 1.090909,0.727273,0.727273,1.090909 +L 0.727273,6.909091,1.454545,7.636364 +L 1.454545,7.636364,1.090909,6.181818 +L 1.090909,6.181818,1.090909,1.090909 +L 1.090909,1.090909,1.454545,0.727273 +L 1.454545,0.727273,0.727273,0 + +[m] 48 +L 0,4.363636,0.363636,4.363636 +L 0.363636,4.363636,0.727273,4 +L 0.727273,4,0.727273,1.090909 +L 0.727273,1.090909,0.363636,0.727273 +L 0.363636,0.727273,1.090909,0 +L 0.727273,4.727273,1.090909,4.363636 +L 1.090909,4.363636,1.090909,1.090909 +L 1.090909,1.090909,0.727273,0.727273 +L 0.727273,0.727273,1.090909,0.363636 +L 1.090909,0.363636,1.454545,0.727273 +L 1.454545,0.727273,1.090909,1.090909 +L 0,4.363636,0.727273,5.090909 +L 0.727273,5.090909,1.454545,4.363636 +L 1.454545,4.363636,1.454545,1.090909 +L 1.454545,1.090909,1.818182,0.727273 +L 1.818182,0.727273,1.090909,0 +L 1.454545,4.363636,2.545455,4.727273 +L 2.545455,4.727273,3.272727,5.090909 +L 3.272727,5.090909,4.363636,4.363636 +L 4.363636,4.363636,4.363636,1.090909 +L 4.363636,1.090909,4.727273,0.727273 +L 4.727273,0.727273,4,0 +L 3.272727,4.727273,4,4.363636 +L 4,4.363636,4,1.090909 +L 4,1.090909,3.636364,0.727273 +L 3.636364,0.727273,4,0.363636 +L 4,0.363636,4.363636,0.727273 +L 4.363636,0.727273,4,1.090909 +L 2.545455,4.727273,3.636364,4 +L 3.636364,4,3.636364,1.090909 +L 3.636364,1.090909,3.272727,0.727273 +L 3.272727,0.727273,4,0 +L 4.363636,4.363636,5.454545,4.727273 +L 5.454545,4.727273,6.181818,5.090909 +L 6.181818,5.090909,7.272727,4.363636 +L 7.272727,4.363636,7.272727,1.090909 +L 7.272727,1.090909,7.636364,0.727273 +L 7.636364,0.727273,6.909091,0 +L 6.181818,4.727273,6.909091,4.363636 +L 6.909091,4.363636,6.909091,1.090909 +L 6.909091,1.090909,6.545455,0.727273 +L 6.545455,0.727273,6.909091,0.363636 +L 6.909091,0.363636,7.272727,0.727273 +L 7.272727,0.727273,6.909091,1.090909 +L 5.454545,4.727273,6.545455,4 +L 6.545455,4,6.545455,1.090909 +L 6.545455,1.090909,6.181818,0.727273 +L 6.181818,0.727273,6.909091,0 + +[n] 32 +L 0,4.363636,0.363636,4.363636 +L 0.363636,4.363636,0.727273,4 +L 0.727273,4,0.727273,1.090909 +L 0.727273,1.090909,0.363636,0.727273 +L 0.363636,0.727273,1.090909,0 +L 0.727273,4.727273,1.090909,4.363636 +L 1.090909,4.363636,1.090909,1.090909 +L 1.090909,1.090909,0.727273,0.727273 +L 0.727273,0.727273,1.090909,0.363636 +L 1.090909,0.363636,1.454545,0.727273 +L 1.454545,0.727273,1.090909,1.090909 +L 0,4.363636,0.727273,5.090909 +L 0.727273,5.090909,1.454545,4.363636 +L 1.454545,4.363636,1.454545,1.090909 +L 1.454545,1.090909,1.818182,0.727273 +L 1.818182,0.727273,1.090909,0 +L 1.454545,4.363636,2.545455,4.727273 +L 2.545455,4.727273,3.272727,5.090909 +L 3.272727,5.090909,4.363636,4.363636 +L 4.363636,4.363636,4.363636,1.090909 +L 4.363636,1.090909,4.727273,0.727273 +L 4.727273,0.727273,4,0 +L 3.272727,4.727273,4,4.363636 +L 4,4.363636,4,1.090909 +L 4,1.090909,3.636364,0.727273 +L 3.636364,0.727273,4,0.363636 +L 4,0.363636,4.363636,0.727273 +L 4.363636,0.727273,4,1.090909 +L 2.545455,4.727273,3.636364,4 +L 3.636364,4,3.636364,1.090909 +L 3.636364,1.090909,3.272727,0.727273 +L 3.272727,0.727273,4,0 + +[o] 16 +L 0,4,0,1.090909 +L 0,1.090909,1.090909,0 +L 1.090909,0,2.909091,0.727273 +L 2.909091,0.727273,3.636364,1.090909 +L 0.363636,4,0.363636,1.090909 +L 0.363636,1.090909,1.090909,0.363636 +L 0.727273,4.363636,0.727273,1.454545 +L 0.727273,1.454545,1.818182,0.363636 +L 0,4,0.727273,4.363636 +L 0.727273,4.363636,2.545455,5.090909 +L 2.545455,5.090909,3.636364,4 +L 3.636364,4,3.636364,1.090909 +L 2.545455,4.727273,3.272727,4 +L 3.272727,4,3.272727,1.090909 +L 1.818182,4.727273,2.909091,3.636364 +L 2.909091,3.636364,2.909091,0.727273 + +[p] 29 +L 0.363636,5.090909,0.727273,4.363636 +L 0.727273,4.363636,0.727273,1.090909 +L 0.727273,1.090909,0,0.727273 +L 0,0.727273,0.727273,0.727273 +L 0.727273,0.727273,0.727273,-1.454545 +L 0.727273,-1.454545,0.363636,-2.545455 +L 0.363636,-2.545455,1.090909,-1.818182 +L 1.090909,4.363636,1.090909,-1.818182 +L 0.363636,5.090909,1.090909,4.727273 +L 1.090909,4.727273,1.454545,4.363636 +L 1.454545,4.363636,1.454545,1.090909 +L 1.454545,1.090909,2.181818,0.727273 +L 2.181818,0.727273,2.545455,0.363636 +L 1.090909,0.727273,1.454545,0.727273 +L 1.454545,0.727273,2.181818,0.363636 +L 1.454545,0.363636,1.818182,0 +L 1.818182,0,3.636364,0.727273 +L 3.636364,0.727273,4.363636,1.090909 +L 1.454545,0.363636,1.454545,-1.454545 +L 1.454545,-1.454545,1.818182,-2.545455 +L 1.818182,-2.545455,1.090909,-1.818182 +L 1.454545,4.363636,2.545455,4.727273 +L 2.545455,4.727273,3.272727,5.090909 +L 3.272727,5.090909,4.363636,4 +L 4.363636,4,4.363636,1.090909 +L 3.272727,4.727273,4,4 +L 4,4,4,1.090909 +L 2.545455,4.727273,3.636364,3.636364 +L 3.636364,3.636364,3.636364,0.727273 + +[q] 19 +L 0,4,0,1.090909 +L 0,1.090909,1.090909,0 +L 1.090909,0,2.909091,0.727273 +L 0.363636,4,0.363636,1.090909 +L 0.363636,1.090909,1.090909,0.363636 +L 0.727273,4.363636,0.727273,1.454545 +L 0.727273,1.454545,1.818182,0.363636 +L 0,4,0.727273,4.363636 +L 0.727273,4.363636,2.545455,5.090909 +L 2.545455,5.090909,3.636364,4 +L 3.636364,4,3.636364,-1.454545 +L 3.636364,-1.454545,4,-2.545455 +L 4,-2.545455,3.272727,-1.818182 +L 2.545455,4.727273,3.272727,4 +L 3.272727,4,3.272727,-1.818182 +L 1.818182,4.727273,2.909091,3.636364 +L 2.909091,3.636364,2.909091,-1.454545 +L 2.909091,-1.454545,2.545455,-2.545455 +L 2.545455,-2.545455,3.272727,-1.818182 + +[r] 21 +L 0,4.363636,0.363636,4.363636 +L 0.363636,4.363636,0.727273,4 +L 0.727273,4,0.727273,1.090909 +L 0.727273,1.090909,0.363636,0.727273 +L 0.363636,0.727273,1.090909,0 +L 0.727273,4.727273,1.090909,4.363636 +L 1.090909,4.363636,1.090909,1.090909 +L 1.090909,1.090909,0.727273,0.727273 +L 0.727273,0.727273,1.090909,0.363636 +L 1.090909,0.363636,1.454545,0.727273 +L 1.454545,0.727273,1.090909,1.090909 +L 0,4.363636,0.727273,5.090909 +L 0.727273,5.090909,1.454545,4.363636 +L 1.454545,4.363636,1.454545,1.090909 +L 1.454545,1.090909,1.818182,0.727273 +L 1.818182,0.727273,1.090909,0 +L 1.454545,4.363636,2.909091,5.090909 +L 2.909091,5.090909,3.636364,4.363636 +L 3.636364,4.363636,2.909091,4 +L 2.909091,4,2.181818,4.727273 +L 2.545455,4.727273,3.272727,4.363636 + +[s] 23 +L 0,4,0,2.909091 +L 0,2.909091,0.727273,2.181818 +L 0.727273,2.181818,2.909091,3.272727 +L 2.909091,3.272727,3.636364,2.545455 +L 3.636364,2.545455,3.636364,1.090909 +L 0.363636,4,0.363636,2.909091 +L 0.363636,2.909091,0.727273,2.545455 +L 0.727273,4.363636,0.727273,2.909091 +L 0.727273,2.909091,1.090909,2.545455 +L 2.909091,2.909091,3.272727,2.545455 +L 3.272727,2.545455,3.272727,1.090909 +L 2.545455,2.909091,2.909091,2.545455 +L 2.909091,2.545455,2.909091,0.727273 +L 0,4,2.181818,5.090909 +L 2.181818,5.090909,3.272727,4.727273 +L 3.272727,4.727273,2.545455,4.363636 +L 2.545455,4.363636,1.454545,4.727273 +L 1.818182,4.727273,2.909091,4.727273 +L 3.636364,1.090909,1.454545,0 +L 1.454545,0,0,0.727273 +L 0,0.727273,0.727273,1.090909 +L 0.727273,1.090909,2.181818,0.363636 +L 0.727273,0.727273,1.454545,0.363636 + +[t] 17 +L 1.454545,6.909091,0.727273,7.636364 +L 0.727273,7.636364,1.090909,6.181818 +L 1.090909,6.181818,1.090909,1.090909 +L 1.090909,1.090909,0.727273,0.727273 +L 0.727273,0.727273,1.454545,0 +L 1.454545,6.909091,1.454545,1.090909 +L 1.454545,1.090909,1.090909,0.727273 +L 1.090909,0.727273,1.454545,0.363636 +L 1.454545,0.363636,1.818182,0.727273 +L 1.818182,0.727273,1.454545,1.090909 +L 1.454545,6.909091,2.181818,7.636364 +L 2.181818,7.636364,1.818182,6.181818 +L 1.818182,6.181818,1.818182,1.090909 +L 1.818182,1.090909,2.181818,0.727273 +L 2.181818,0.727273,1.454545,0 +L 0,5.090909,1.090909,5.090909 +L 1.818182,5.090909,2.909091,5.090909 + +[u] 28 +L 0,4.363636,0.363636,4.363636 +L 0.363636,4.363636,0.727273,4 +L 0.727273,4,0.727273,0.727273 +L 0.727273,0.727273,1.818182,0 +L 1.818182,0,3.636364,0.727273 +L 0.727273,4.727273,1.090909,4.363636 +L 1.090909,4.363636,1.090909,0.727273 +L 1.090909,0.727273,1.818182,0.363636 +L 0,4.363636,0.727273,5.090909 +L 0.727273,5.090909,1.454545,4.363636 +L 1.454545,4.363636,1.454545,1.090909 +L 1.454545,1.090909,2.545455,0.363636 +L 4,5.090909,4.727273,4.363636 +L 4.727273,4.363636,4.363636,4 +L 4.363636,4,4.363636,1.090909 +L 4.363636,1.090909,4.727273,0.727273 +L 4.727273,0.727273,5.090909,0.727273 +L 4,4,4.363636,4.363636 +L 4.363636,4.363636,4,4.727273 +L 4,4.727273,3.636364,4.363636 +L 3.636364,4.363636,4,4 +L 4,4,4,0.727273 +L 4,0.727273,4.363636,0.363636 +L 4,5.090909,3.272727,4.363636 +L 3.272727,4.363636,3.636364,4 +L 3.636364,4,3.636364,0.727273 +L 3.636364,0.727273,4.363636,0 +L 4.363636,0,5.090909,0.727273 + +[v] 24 +L 0,5.090909,0.363636,4.363636 +L 0.363636,4.363636,0.363636,1.090909 +L 0.363636,1.090909,1.818182,0 +L 1.818182,0,2.545455,0.727273 +L 2.545455,0.727273,4,1.454545 +L 0.363636,4.727273,0.727273,4.363636 +L 0.727273,4.363636,0.727273,1.090909 +L 0.727273,1.090909,1.818182,0.363636 +L 0,5.090909,0.727273,4.727273 +L 0.727273,4.727273,1.090909,4.363636 +L 1.090909,4.363636,1.090909,1.454545 +L 1.090909,1.454545,2.181818,0.727273 +L 2.181818,0.727273,2.545455,0.727273 +L 3.636364,5.090909,4.363636,4.363636 +L 4.363636,4.363636,4,4 +L 4,4,4,1.454545 +L 3.636364,4,4,4.363636 +L 4,4.363636,3.636364,4.727273 +L 3.636364,4.727273,3.272727,4.363636 +L 3.272727,4.363636,3.636364,4 +L 3.636364,4,3.636364,1.454545 +L 3.636364,5.090909,2.909091,4.363636 +L 2.909091,4.363636,3.272727,4 +L 3.272727,4,3.272727,1.090909 + +[w] 41 +L 0,5.090909,0.363636,4.363636 +L 0.363636,4.363636,0.363636,1.090909 +L 0.363636,1.090909,1.818182,0 +L 1.818182,0,2.545455,0.727273 +L 2.545455,0.727273,3.272727,1.090909 +L 0.363636,4.727273,0.727273,4.363636 +L 0.727273,4.363636,0.727273,1.090909 +L 0.727273,1.090909,1.818182,0.363636 +L 0,5.090909,0.727273,4.727273 +L 0.727273,4.727273,1.090909,4.363636 +L 1.090909,4.363636,1.090909,1.454545 +L 1.090909,1.454545,2.181818,0.727273 +L 2.181818,0.727273,2.545455,0.727273 +L 3.636364,5.090909,2.909091,4.363636 +L 2.909091,4.363636,3.272727,4 +L 3.272727,4,3.272727,1.090909 +L 3.272727,1.090909,4.727273,0 +L 4.727273,0,5.454545,0.727273 +L 5.454545,0.727273,6.909091,1.454545 +L 3.636364,4,4,4.363636 +L 4,4.363636,3.636364,4.727273 +L 3.636364,4.727273,3.272727,4.363636 +L 3.272727,4.363636,3.636364,4 +L 3.636364,4,3.636364,1.090909 +L 3.636364,1.090909,4.727273,0.363636 +L 3.636364,5.090909,4.363636,4.363636 +L 4.363636,4.363636,4,4 +L 4,4,4,1.454545 +L 4,1.454545,5.090909,0.727273 +L 5.090909,0.727273,5.454545,0.727273 +L 6.545455,5.090909,7.272727,4.363636 +L 7.272727,4.363636,6.909091,4 +L 6.909091,4,6.909091,1.454545 +L 6.545455,4,6.909091,4.363636 +L 6.909091,4.363636,6.545455,4.727273 +L 6.545455,4.727273,6.181818,4.363636 +L 6.181818,4.363636,6.545455,4 +L 6.545455,4,6.545455,1.454545 +L 6.545455,5.090909,5.818182,4.363636 +L 5.818182,4.363636,6.181818,4 +L 6.181818,4,6.181818,1.090909 + +[x] 25 +L 0,4.363636,0.727273,4 +L 0.727273,4,3.272727,0.363636 +L 3.272727,0.363636,3.636364,0 +L 3.636364,0,4.363636,0.727273 +L 0.363636,4.727273,1.090909,4.363636 +L 1.090909,4.363636,3.272727,0.727273 +L 3.272727,0.727273,4,0.363636 +L 0,4.363636,0.727273,5.090909 +L 0.727273,5.090909,1.090909,4.727273 +L 1.090909,4.727273,3.636364,1.090909 +L 3.636364,1.090909,4.363636,0.727273 +L 4.363636,5.090909,3.636364,5.090909 +L 3.636364,5.090909,3.636364,4.363636 +L 3.636364,4.363636,4.363636,4.363636 +L 4.363636,4.363636,4.363636,5.090909 +L 4.363636,5.090909,3.636364,4.363636 +L 3.636364,4.363636,2.545455,2.909091 +L 1.818182,2.181818,0.727273,0.727273 +L 0.727273,0.727273,0,0 +L 0,0,0.727273,0 +L 0.727273,0,0.727273,0.727273 +L 0.727273,0.727273,0,0.727273 +L 0,0.727273,0,0 +L 0.727273,2.545455,1.818182,2.545455 +L 2.545455,2.545455,3.636364,2.545455 + +[y] 35 +L 0,4.363636,0.363636,4.363636 +L 0.363636,4.363636,0.727273,4 +L 0.727273,4,0.727273,0.727273 +L 0.727273,0.727273,1.818182,0 +L 1.818182,0,3.636364,0.727273 +L 0.727273,4.727273,1.090909,4.363636 +L 1.090909,4.363636,1.090909,0.727273 +L 1.090909,0.727273,1.818182,0.363636 +L 0,4.363636,0.727273,5.090909 +L 0.727273,5.090909,1.454545,4.363636 +L 1.454545,4.363636,1.454545,1.090909 +L 1.454545,1.090909,2.545455,0.363636 +L 4,5.090909,4.727273,4.363636 +L 4.727273,4.363636,4.363636,4 +L 4.363636,4,4.363636,-0.727273 +L 4.363636,-0.727273,4,-1.454545 +L 4,-1.454545,3.636364,-1.818182 +L 3.636364,-1.818182,2.909091,-2.181818 +L 2.909091,-2.181818,2.181818,-2.181818 +L 2.181818,-2.181818,1.454545,-1.818182 +L 1.454545,-1.818182,0.727273,-2.181818 +L 0.727273,-2.181818,1.454545,-2.545455 +L 1.454545,-2.545455,2.181818,-2.181818 +L 4,4,4.363636,4.363636 +L 4.363636,4.363636,4,4.727273 +L 4,4.727273,3.636364,4.363636 +L 3.636364,4.363636,4,4 +L 4,4,4,-1.090909 +L 4,-1.090909,3.636364,-1.454545 +L 1.818182,-2.181818,1.090909,-2.181818 +L 4,5.090909,3.272727,4.363636 +L 3.272727,4.363636,3.636364,4 +L 3.636364,4,3.636364,-1.090909 +L 3.636364,-1.090909,3.272727,-1.818182 +L 3.272727,-1.818182,2.909091,-2.181818 + +[z] 29 +L 1.818182,4.727273,0.727273,4 +L 0.727273,4,0.727273,4.363636 +L 0.727273,4.363636,1.818182,4.727273 +L 1.818182,4.727273,2.545455,5.090909 +L 2.545455,5.090909,3.636364,4.363636 +L 3.636364,4.363636,3.636364,2.909091 +L 3.636364,2.909091,1.818182,2.181818 +L 2.545455,4.727273,3.272727,4.363636 +L 3.272727,4.363636,3.272727,2.909091 +L 1.818182,4.727273,2.909091,4 +L 2.909091,4,2.909091,2.909091 +L 2.909091,2.909091,2.545455,2.545455 +L 1.818182,2.181818,3.636364,1.454545 +L 3.636364,1.454545,3.636364,-0.727273 +L 3.636364,-0.727273,3.272727,-1.454545 +L 3.272727,-1.454545,2.909091,-1.818182 +L 2.909091,-1.818182,2.181818,-2.181818 +L 2.181818,-2.181818,1.454545,-2.181818 +L 1.454545,-2.181818,0.727273,-1.818182 +L 0.727273,-1.818182,0,-2.181818 +L 0,-2.181818,0.727273,-2.545455 +L 0.727273,-2.545455,1.454545,-2.181818 +L 3.272727,1.454545,3.272727,-1.090909 +L 3.272727,-1.090909,2.909091,-1.454545 +L 1.090909,-2.181818,0.363636,-2.181818 +L 2.545455,1.818182,2.909091,1.454545 +L 2.909091,1.454545,2.909091,-1.090909 +L 2.909091,-1.090909,2.545455,-1.818182 +L 2.545455,-1.818182,2.181818,-2.181818 + +[{] 34 +L 1.818182,9.090909,1.090909,8.727273 +L 1.090909,8.727273,0.727273,8.363636 +L 0.727273,8.363636,0.363636,7.636364 +L 0.363636,7.636364,0.363636,6.909091 +L 0.363636,6.909091,0.727273,6.181818 +L 0.727273,6.181818,1.090909,5.818182 +L 1.090909,5.818182,1.454545,5.090909 +L 1.454545,5.090909,1.454545,4.363636 +L 1.454545,4.363636,0.727273,3.636364 +L 1.090909,8.727273,0.727273,8 +L 0.727273,8,0.727273,7.272727 +L 0.727273,7.272727,1.090909,6.545455 +L 1.090909,6.545455,1.454545,6.181818 +L 1.454545,6.181818,1.818182,5.454545 +L 1.818182,5.454545,1.818182,4.727273 +L 1.818182,4.727273,1.454545,4 +L 1.454545,4,0,3.272727 +L 0,3.272727,1.454545,2.545455 +L 1.454545,2.545455,1.818182,1.818182 +L 1.818182,1.818182,1.818182,1.090909 +L 1.818182,1.090909,1.454545,0.363636 +L 1.454545,0.363636,1.090909,0 +L 1.090909,0,0.727273,-0.727273 +L 0.727273,-0.727273,0.727273,-1.454545 +L 0.727273,-1.454545,1.090909,-2.181818 +L 0.727273,2.909091,1.454545,2.181818 +L 1.454545,2.181818,1.454545,1.454545 +L 1.454545,1.454545,1.090909,0.727273 +L 1.090909,0.727273,0.727273,0.363636 +L 0.727273,0.363636,0.363636,-0.363636 +L 0.363636,-0.363636,0.363636,-1.090909 +L 0.363636,-1.090909,0.727273,-1.818182 +L 0.727273,-1.818182,1.090909,-2.181818 +L 1.090909,-2.181818,1.818182,-2.545455 + +[|] 1 +L 0,9.090909,0,-2.545455 + +[}] 34 +L 0,9.090909,0.727273,8.727273 +L 0.727273,8.727273,1.090909,8.363636 +L 1.090909,8.363636,1.454545,7.636364 +L 1.454545,7.636364,1.454545,6.909091 +L 1.454545,6.909091,1.090909,6.181818 +L 1.090909,6.181818,0.727273,5.818182 +L 0.727273,5.818182,0.363636,5.090909 +L 0.363636,5.090909,0.363636,4.363636 +L 0.363636,4.363636,1.090909,3.636364 +L 0.727273,8.727273,1.090909,8 +L 1.090909,8,1.090909,7.272727 +L 1.090909,7.272727,0.727273,6.545455 +L 0.727273,6.545455,0.363636,6.181818 +L 0.363636,6.181818,0,5.454545 +L 0,5.454545,0,4.727273 +L 0,4.727273,0.363636,4 +L 0.363636,4,1.818182,3.272727 +L 1.818182,3.272727,0.363636,2.545455 +L 0.363636,2.545455,0,1.818182 +L 0,1.818182,0,1.090909 +L 0,1.090909,0.363636,0.363636 +L 0.363636,0.363636,0.727273,0 +L 0.727273,0,1.090909,-0.727273 +L 1.090909,-0.727273,1.090909,-1.454545 +L 1.090909,-1.454545,0.727273,-2.181818 +L 1.090909,2.909091,0.363636,2.181818 +L 0.363636,2.181818,0.363636,1.454545 +L 0.363636,1.454545,0.727273,0.727273 +L 0.727273,0.727273,1.090909,0.363636 +L 1.090909,0.363636,1.454545,-0.363636 +L 1.454545,-0.363636,1.454545,-1.090909 +L 1.454545,-1.090909,1.090909,-1.818182 +L 1.090909,-1.818182,0.727273,-2.181818 +L 0.727273,-2.181818,0,-2.545455 + +#EOF diff --git a/pycam/share/fonts/greek_ol.cxf b/pycam/share/fonts/greek_ol.cxf new file mode 100644 index 00000000..2f597d11 --- /dev/null +++ b/pycam/share/fonts/greek_ol.cxf @@ -0,0 +1,14625 @@ +# Format: QCad II Font +# Creator: QCad +# Version: 1 +# Name: Greek OL +# LetterSpacing: 3.0 +# WordSpacing: 6.75 +# LineSpacingFactor: 1.0 +# Author: Kochi Gothic +# Author: Yoshimune Kobayashi (OutLine Version 2002.10.15) + +[!] 38 +L 0.9556,7.730689,0.9541,7.560664 +L 0.9541,7.560664,0.9496,7.348716 +L 0.9496,7.348716,0.9422,7.094842 +L 0.9422,7.094842,0.9318,6.799047 +L 0.9318,6.799047,0.9181,6.461327 +L 0.9181,6.461327,0.9018,6.081684 +L 0.9018,6.081684,0.8825,5.660116 +L 0.8825,5.660116,0.8599,5.196626 +L 0.8599,5.196626,0.8376,4.729873 +L 0.8376,4.729873,0.8181,4.298524 +L 0.8181,4.298524,0.8017,3.902576 +L 0.8017,3.902576,0.7883,3.542031 +L 0.7883,3.542031,0.7779,3.216888 +L 0.7779,3.216888,0.7705,2.927148 +L 0.7705,2.927148,0.766,2.67281 +L 0.766,2.67281,0.7645,2.453875 +L 0.7645,2.453875,0.382,2.453875 +L 0.382,2.453875,0.3791,2.67281 +L 0.3791,2.67281,0.3702,2.927148 +L 0.3702,2.927148,0.355,3.216888 +L 0.355,3.216888,0.3342,3.542031 +L 0.3342,3.542031,0.3072,3.902576 +L 0.3072,3.902576,0.2745,4.298524 +L 0.2745,4.298524,0.2356,4.729873 +L 0.2356,4.729873,0.1908,5.196626 +L 0.1908,5.196626,0.146,5.660116 +L 0.146,5.660116,0.1071,6.081684 +L 0.1071,6.081684,0.0744,6.461327 +L 0.0744,6.461327,0.0474,6.799047 +L 0.0474,6.799047,0.0265,7.094842 +L 0.0265,7.094842,0.0117,7.348716 +L 0.0117,7.348716,0.0025,7.560664 +L 0.0025,7.560664,-0.0005,7.730689 +L -0.0005,7.730689,0.9556,7.730689 +L 0.1908,0.367,0.1908,1.321 +L 0.1908,1.321,0.9556,1.321 +L 0.9556,1.321,0.9556,0.367 +L 0.9556,0.367,0.1908,0.367 + +["] 8 +L -0.0006,6.463656,0.4359,8.326938 +L 0.4359,8.326938,1.2514,8.326938 +L 1.2514,8.326938,0.3492,6.463656 +L 0.3492,6.463656,-0.0006,6.463656 +L 1.075,6.463656,1.6874,8.326938 +L 1.6874,8.326938,2.5629,8.326938 +L 2.5629,8.326938,1.4243,6.463656 +L 1.4243,6.463656,1.075,6.463656 + +[#] 32 +L 0.9615,0.252718,0.5463,0.252718 +L 0.5463,0.252718,0.7137,2.275 +L 0.7137,2.275,-0.0007,2.275 +L -0.0007,2.275,0.0444,2.911 +L 0.0444,2.911,0.7791,2.911 +L 0.7791,2.911,1.012,5.773 +L 1.012,5.773,0.1965,5.773 +L 0.1965,5.773,0.2386,6.409001 +L 0.2386,6.409001,1.069,6.409001 +L 1.069,6.409001,1.2216,8.207688 +L 1.2216,8.207688,1.6368,8.207688 +L 1.6368,8.207688,1.4842,6.409001 +L 1.4842,6.409001,2.4464,6.409001 +L 2.4464,6.409001,2.5985,8.207688 +L 2.5985,8.207688,3.0137,8.207688 +L 3.0137,8.207688,2.8616,6.409001 +L 2.8616,6.409001,3.698,6.409001 +L 3.698,6.409001,3.6563,5.773 +L 3.6563,5.773,2.8016,5.773 +L 2.8016,5.773,2.5688,2.911 +L 2.5688,2.911,3.5008,2.911 +L 3.5008,2.911,3.4591,2.275 +L 3.4591,2.275,2.5029,2.275 +L 2.5029,2.275,2.3359,0.252718 +L 2.3359,0.252718,1.9207,0.252718 +L 1.9207,0.252718,2.0877,2.275 +L 2.0877,2.275,1.1289,2.275 +L 1.1289,2.275,0.9615,0.252718 +L 1.4277,5.773,1.1943,2.911 +L 1.1943,2.911,2.1536,2.911 +L 2.1536,2.911,2.3864,5.773 +L 2.3864,5.773,1.4277,5.773 + +[&] 290 +L 3.5841,1.236531,3.5931,1.137156 +L 3.5931,1.137156,3.5366,1.084053 +L 3.5366,1.084053,3.4746,1.021632 +L 3.4746,1.021632,3.4077,0.949897 +L 3.4077,0.949897,3.3364,0.868844 +L 3.3364,0.868844,3.2601,0.778474 +L 3.2601,0.778474,3.1788,0.678789 +L 3.1788,0.678789,3.0926,0.569787 +L 3.0926,0.569787,3.0015,0.451469 +L 3.0015,0.451469,2.9123,0.56249 +L 2.9123,0.56249,2.8251,0.671957 +L 2.8251,0.671957,2.7399,0.779872 +L 2.7399,0.779872,2.6566,0.886234 +L 2.6566,0.886234,2.5754,0.991044 +L 2.5754,0.991044,2.4966,1.094301 +L 2.4966,1.094301,2.4198,1.196006 +L 2.4198,1.196006,2.3445,1.296156 +L 2.3445,1.296156,2.3202,1.265489 +L 2.3202,1.265489,2.29,1.23063 +L 2.29,1.23063,2.2543,1.19158 +L 2.2543,1.19158,2.2132,1.148336 +L 2.2132,1.148336,2.1661,1.1009 +L 2.1661,1.1009,2.1136,1.049272 +L 2.1136,1.049272,2.0556,0.993452 +L 2.0556,0.993452,1.9922,0.933438 +L 1.9922,0.933438,1.9223,0.87521 +L 1.9223,0.87521,1.8465,0.824746 +L 1.8465,0.824746,1.7643,0.782045 +L 1.7643,0.782045,1.6761,0.747109 +L 1.6761,0.747109,1.5814,0.719936 +L 1.5814,0.719936,1.4804,0.700527 +L 1.4804,0.700527,1.3734,0.688882 +L 1.3734,0.688882,1.2599,0.685 +L 1.2599,0.685,1.1256,0.69451 +L 1.1256,0.69451,0.9973,0.723042 +L 0.9973,0.723042,0.8749,0.770594 +L 0.8749,0.770594,0.759,0.837168 +L 0.759,0.837168,0.649,0.922762 +L 0.649,0.922762,0.5449,1.027378 +L 0.5449,1.027378,0.4468,1.151015 +L 0.4468,1.151015,0.3547,1.293672 +L 0.3547,1.293672,0.2714,1.445878 +L 0.2714,1.445878,0.1991,1.598163 +L 0.1991,1.598163,0.1381,1.750524 +L 0.1381,1.750524,0.0881,1.902965 +L 0.0881,1.902965,0.0495,2.055481 +L 0.0495,2.055481,0.0217,2.208077 +L 0.0217,2.208077,0.0049,2.360749 +L 0.0049,2.360749,-0.0006,2.5135 +L -0.0006,2.5135,0.0049,2.681738 +L 0.0049,2.681738,0.0207,2.841126 +L 0.0207,2.841126,0.047,2.991665 +L 0.047,2.991665,0.0836,3.133351 +L 0.0836,3.133351,0.1312,3.266188 +L 0.1312,3.266188,0.1892,3.390174 +L 0.1892,3.390174,0.2576,3.505308 +L 0.2576,3.505308,0.3368,3.611594 +L 0.3368,3.611594,0.4201,3.711357 +L 0.4201,3.711357,0.5013,3.806928 +L 0.5013,3.806928,0.5806,3.898306 +L 0.5806,3.898306,0.6574,3.985492 +L 0.6574,3.985492,0.7322,4.068486 +L 0.7322,4.068486,0.8046,4.147287 +L 0.8046,4.147287,0.8749,4.221896 +L 0.8749,4.221896,0.9433,4.292312 +L 0.9433,4.292312,0.9076,4.402207 +L 0.9076,4.402207,0.8724,4.513267 +L 0.8724,4.513267,0.8382,4.62549 +L 0.8382,4.62549,0.8055,4.738878 +L 0.8055,4.738878,0.7738,4.853432 +L 0.7738,4.853432,0.7431,4.969149 +L 0.7431,4.969149,0.7134,5.086032 +L 0.7134,5.086032,0.6851,5.204079 +L 0.6851,5.204079,0.6589,5.322513 +L 0.6589,5.322513,0.6361,5.440561 +L 0.6361,5.440561,0.6168,5.558217 +L 0.6168,5.558217,0.6009,5.675488 +L 0.6009,5.675488,0.5885,5.792371 +L 0.5885,5.792371,0.5801,5.908864 +L 0.5801,5.908864,0.5747,6.02497 +L 0.5747,6.02497,0.5732,6.140687 +L 0.5732,6.140687,0.5776,6.29006 +L 0.5776,6.29006,0.5905,6.435085 +L 0.5905,6.435085,0.6128,6.575765 +L 0.6128,6.575765,0.644,6.712094 +L 0.644,6.712094,0.6837,6.844077 +L 0.6837,6.844077,0.7327,6.97171 +L 0.7327,6.97171,0.7902,7.094997 +L 0.7902,7.094997,0.8566,7.213938 +L 0.8566,7.213938,0.9314,7.323406 +L 0.9314,7.323406,1.0122,7.418279 +L 1.0122,7.418279,1.1003,7.498554 +L 1.1003,7.498554,1.195,7.564235 +L 1.195,7.564235,1.2966,7.61532 +L 1.2966,7.61532,1.4051,7.651809 +L 1.4051,7.651809,1.5205,7.673702 +L 1.5205,7.673702,1.6424,7.681001 +L 1.6424,7.681001,1.7499,7.66951 +L 1.7499,7.66951,1.853,7.644977 +L 1.853,7.644977,1.9511,7.607401 +L 1.9511,7.607401,2.0447,7.556782 +L 2.0447,7.556782,2.1334,7.49312 +L 2.1334,7.49312,2.2181,7.416415 +L 2.2181,7.416415,2.2979,7.326667 +L 2.2979,7.326667,2.3732,7.223875 +L 2.3732,7.223875,2.4416,7.111845 +L 2.4416,7.111845,2.501,6.994382 +L 2.501,6.994382,2.5521,6.871482 +L 2.5521,6.871482,2.5942,6.743148 +L 2.5942,6.743148,2.6279,6.609381 +L 2.6279,6.609381,2.6527,6.470178 +L 2.6527,6.470178,2.6685,6.32554 +L 2.6685,6.32554,2.6764,6.175469 +L 2.6764,6.175469,2.6705,5.997292 +L 2.6705,5.997292,2.6536,5.827967 +L 2.6536,5.827967,2.6254,5.667491 +L 2.6254,5.667491,2.5863,5.515866 +L 2.5863,5.515866,2.5357,5.373093 +L 2.5357,5.373093,2.4738,5.23917 +L 2.4738,5.23917,2.4005,5.114097 +L 2.4005,5.114097,2.3162,4.997875 +L 2.3162,4.997875,2.2246,4.886001 +L 2.2246,4.886001,2.1284,4.773971 +L 2.1284,4.773971,2.0294,4.661786 +L 2.0294,4.661786,1.9258,4.549445 +L 1.9258,4.549445,1.8188,4.43695 +L 1.8188,4.43695,1.7083,4.324299 +L 1.7083,4.324299,1.5933,4.211492 +L 1.5933,4.211492,1.4754,4.098531 +L 1.4754,4.098531,1.5577,3.896908 +L 1.5577,3.896908,1.6473,3.696994 +L 1.6473,3.696994,1.744,3.498788 +L 1.744,3.498788,1.847,3.30229 +L 1.847,3.30229,1.9575,3.107498 +L 1.9575,3.107498,2.0744,2.914416 +L 2.0744,2.914416,2.1988,2.723041 +L 2.1988,2.723041,2.3296,2.533374 +L 2.3296,2.533374,2.3673,2.658292 +L 2.3673,2.658292,2.401,2.789575 +L 2.401,2.789575,2.4302,2.927226 +L 2.4302,2.927226,2.456,3.071242 +L 2.456,3.071242,2.4773,3.221625 +L 2.4773,3.221625,2.4951,3.378373 +L 2.4951,3.378373,2.5085,3.541488 +L 2.5085,3.541488,2.5179,3.710969 +L 2.5179,3.710969,3.1124,3.710969 +L 3.1124,3.710969,3.1006,3.47899 +L 3.1006,3.47899,3.0807,3.252602 +L 3.0807,3.252602,3.052,3.031802 +L 3.052,3.031802,3.0153,2.816594 +L 3.0153,2.816594,2.9698,2.606975 +L 2.9698,2.606975,2.9162,2.402945 +L 2.9162,2.402945,2.8543,2.204505 +L 2.8543,2.204505,2.7835,2.011655 +L 2.7835,2.011655,2.8697,1.921287 +L 2.8697,1.921287,2.9593,1.829055 +L 2.9593,1.829055,3.053,1.734959 +L 3.053,1.734959,3.1511,1.639 +L 3.1511,1.639,3.2532,1.541177 +L 3.2532,1.541177,3.3597,1.441492 +L 3.3597,1.441492,3.4702,1.339943 +L 3.4702,1.339943,3.5841,1.236531 +L 0.5732,2.414125,0.5752,2.29076 +L 0.5752,2.29076,0.5821,2.174072 +L 0.5821,2.174072,0.594,2.064061 +L 0.594,2.064061,0.6103,1.960727 +L 0.6103,1.960727,0.6311,1.864068 +L 0.6311,1.864068,0.6569,1.774088 +L 0.6569,1.774088,0.6871,1.690784 +L 0.6871,1.690784,0.7223,1.614156 +L 0.7223,1.614156,0.7629,1.545447 +L 0.7629,1.545447,0.8095,1.4859 +L 0.8095,1.4859,0.8625,1.435514 +L 0.8625,1.435514,0.9215,1.39429 +L 0.9215,1.39429,0.9874,1.362225 +L 0.9874,1.362225,1.0592,1.339322 +L 1.0592,1.339322,1.137,1.32558 +L 1.137,1.32558,1.2212,1.321 +L 1.2212,1.321,1.3208,1.323484 +L 1.3208,1.323484,1.4115,1.330938 +L 1.4115,1.330938,1.4938,1.34336 +L 1.4938,1.34336,1.5676,1.36075 +L 1.5676,1.36075,1.6325,1.383109 +L 1.6325,1.383109,1.6885,1.410437 +L 1.6885,1.410437,1.7365,1.442734 +L 1.7365,1.442734,1.7757,1.48 +L 1.7757,1.48,1.8089,1.518119 +L 1.8089,1.518119,1.8391,1.552979 +L 1.8391,1.552979,1.8663,1.584577 +L 1.8663,1.584577,1.8906,1.612914 +L 1.8906,1.612914,1.9124,1.637991 +L 1.9124,1.637991,1.9308,1.659807 +L 1.9308,1.659807,1.9466,1.678362 +L 1.9466,1.678362,1.959,1.693656 +L 1.959,1.693656,1.9243,1.747226 +L 1.9243,1.747226,1.8847,1.808559 +L 1.8847,1.808559,1.8406,1.877654 +L 1.8406,1.877654,1.792,1.954516 +L 1.792,1.954516,1.7395,2.039138 +L 1.7395,2.039138,1.682,2.131527 +L 1.682,2.131527,1.6206,2.231678 +L 1.6206,2.231678,1.5542,2.339594 +L 1.5542,2.339594,1.4853,2.456126 +L 1.4853,2.456126,1.416,2.582131 +L 1.416,2.582131,1.3456,2.717607 +L 1.3456,2.717607,1.2748,2.862554 +L 1.2748,2.862554,1.2029,3.016974 +L 1.2029,3.016974,1.1301,3.180865 +L 1.1301,3.180865,1.0563,3.354228 +L 1.0563,3.354228,0.9819,3.537063 +L 0.9819,3.537063,0.9527,3.500961 +L 0.9527,3.500961,0.922,3.462221 +L 0.922,3.462221,0.8908,3.420839 +L 0.8908,3.420839,0.8581,3.37682 +L 0.8581,3.37682,0.8249,3.330161 +L 0.8249,3.330161,0.7907,3.280861 +L 0.7907,3.280861,0.7555,3.228922 +L 0.7555,3.228922,0.7193,3.174344 +L 0.7193,3.174344,0.6851,3.113554 +L 0.6851,3.113554,0.6554,3.042982 +L 0.6554,3.042982,0.6301,2.962628 +L 0.6301,2.962628,0.6093,2.872492 +L 0.6093,2.872492,0.5935,2.772574 +L 0.5935,2.772574,0.5821,2.662873 +L 0.5821,2.662873,0.5752,2.54339 +L 0.5752,2.54339,0.5732,2.414125 +L 2.1027,6.205282,2.0977,6.306402 +L 2.0977,6.306402,2.0888,6.401079 +L 2.0888,6.401079,2.0764,6.489315 +L 2.0764,6.489315,2.0601,6.571104 +L 2.0601,6.571104,2.0398,6.646452 +L 2.0398,6.646452,2.0155,6.715354 +L 2.0155,6.715354,1.9877,6.777814 +L 1.9877,6.777814,1.956,6.833827 +L 1.956,6.833827,1.9218,6.883321 +L 1.9218,6.883321,1.8857,6.926216 +L 1.8857,6.926216,1.848,6.962511 +L 1.848,6.962511,1.8084,6.992208 +L 1.8084,6.992208,1.7672,7.015304 +L 1.7672,7.015304,1.7241,7.031801 +L 1.7241,7.031801,1.6796,7.041699 +L 1.6796,7.041699,1.6335,7.045001 +L 1.6335,7.045001,1.5859,7.042284 +L 1.5859,7.042284,1.5393,7.03413 +L 1.5393,7.03413,1.4947,7.020545 +L 1.4947,7.020545,1.4511,7.001524 +L 1.4511,7.001524,1.4095,6.977068 +L 1.4095,6.977068,1.3694,6.947177 +L 1.3694,6.947177,1.3302,6.911853 +L 1.3302,6.911853,1.2931,6.871093 +L 1.2931,6.871093,1.2584,6.822026 +L 1.2584,6.822026,1.2287,6.761781 +L 1.2287,6.761781,1.2039,6.690356 +L 1.2039,6.690356,1.1831,6.60775 +L 1.1831,6.60775,1.1672,6.513965 +L 1.1672,6.513965,1.1558,6.409001 +L 1.1558,6.409001,1.1489,6.292854 +L 1.1489,6.292854,1.1464,6.16553 +L 1.1464,6.16553,1.1474,6.060721 +L 1.1474,6.060721,1.1494,5.95995 +L 1.1494,5.95995,1.1534,5.863213 +L 1.1534,5.863213,1.1588,5.770516 +L 1.1588,5.770516,1.1658,5.681855 +L 1.1658,5.681855,1.1742,5.597231 +L 1.1742,5.597231,1.1841,5.516643 +L 1.1841,5.516643,1.196,5.440094 +L 1.196,5.440094,1.2094,5.363544 +L 1.2094,5.363544,1.2257,5.282957 +L 1.2257,5.282957,1.2445,5.198333 +L 1.2445,5.198333,1.2658,5.109672 +L 1.2658,5.109672,1.2896,5.016974 +L 1.2896,5.016974,1.3159,4.920239 +L 1.3159,4.920239,1.3451,4.819466 +L 1.3451,4.819466,1.3763,4.714656 +L 1.3763,4.714656,1.4432,4.782356 +L 1.4432,4.782356,1.5086,4.851298 +L 1.5086,4.851298,1.5725,4.92148 +L 1.5725,4.92148,1.6355,4.992906 +L 1.6355,4.992906,1.6969,5.065574 +L 1.6969,5.065574,1.7573,5.139484 +L 1.7573,5.139484,1.8163,5.214637 +L 1.8163,5.214637,1.8738,5.291031 +L 1.8738,5.291031,1.9273,5.372705 +L 1.9273,5.372705,1.9739,5.463696 +L 1.9739,5.463696,2.0135,5.564001 +L 2.0135,5.564001,2.0452,5.673625 +L 2.0452,5.673625,2.0705,5.792564 +L 2.0705,5.792564,2.0883,5.920821 +L 2.0883,5.920821,2.0987,6.058393 +L 2.0987,6.058393,2.1027,6.205282 + +['] 7 +L 0.9555,7.631313,0.2891,6.1705 +L 0.2891,6.1705,0.0443,6.1705 +L 0.0443,6.1705,0.3941,7.362999 +L 0.3941,7.362999,-0.0003,7.362999 +L -0.0003,7.362999,-0.0003,8.635001 +L -0.0003,8.635001,0.9555,8.635001 +L 0.9555,8.635001,0.9555,7.631313 + +[(] 66 +L 2.0879,-0.015594,1.6068,-0.313719 +L 1.6068,-0.313719,1.4195,-0.052704 +L 1.4195,-0.052704,1.2436,0.208621 +L 1.2436,0.208621,1.0782,0.470256 +L 1.0782,0.470256,0.9241,0.732203 +L 0.9241,0.732203,0.7809,0.99446 +L 0.7809,0.99446,0.6491,1.257028 +L 0.6491,1.257028,0.5277,1.519905 +L 0.5277,1.519905,0.4177,1.783093 +L 0.4177,1.783093,0.3196,2.05063 +L 0.3196,2.05063,0.2349,2.32655 +L 0.2349,2.32655,0.163,2.610856 +L 0.163,2.610856,0.1041,2.903547 +L 0.1041,2.903547,0.0585,3.204621 +L 0.0585,3.204621,0.0258,3.514081 +L 0.0258,3.514081,0.006,3.831926 +L 0.006,3.831926,-0.0005,4.158156 +L -0.0005,4.158156,0.006,4.485512 +L 0.006,4.485512,0.0258,4.804249 +L 0.0258,4.804249,0.0585,5.114369 +L 0.0585,5.114369,0.1041,5.415871 +L 0.1041,5.415871,0.163,5.708756 +L 0.163,5.708756,0.2349,5.993022 +L 0.2349,5.993022,0.3196,6.268671 +L 0.3196,6.268671,0.4177,6.535702 +L 0.4177,6.535702,0.5277,6.79831 +L 0.5277,6.79831,0.6491,7.060682 +L 0.6491,7.060682,0.7809,7.322824 +L 0.7809,7.322824,0.9241,7.584731 +L 0.9241,7.584731,1.0782,7.846406 +L 1.0782,7.846406,1.2436,8.107847 +L 1.2436,8.107847,1.4195,8.369056 +L 1.4195,8.369056,1.6068,8.630033 +L 1.6068,8.630033,2.0879,8.331908 +L 2.0879,8.331908,1.8947,8.077763 +L 1.8947,8.077763,1.7153,7.827114 +L 1.7153,7.827114,1.5498,7.579956 +L 1.5498,7.579956,1.3982,7.336294 +L 1.3982,7.336294,1.2605,7.096123 +L 1.2605,7.096123,1.1366,6.859448 +L 1.1366,6.859448,1.0261,6.626266 +L 1.0261,6.626266,0.93,6.39658 +L 0.93,6.39658,0.8468,6.162154 +L 0.8468,6.162154,0.7739,5.914765 +L 0.7739,5.914765,0.7125,5.654411 +L 0.7125,5.654411,0.6625,5.38109 +L 0.6625,5.38109,0.6233,5.094805 +L 0.6233,5.094805,0.5956,4.795553 +L 0.5956,4.795553,0.5787,4.483338 +L 0.5787,4.483338,0.5733,4.158156 +L 0.5733,4.158156,0.5787,3.834139 +L 0.5787,3.834139,0.5956,3.522932 +L 0.5956,3.522932,0.6233,3.224536 +L 0.6233,3.224536,0.6625,2.93895 +L 0.6625,2.93895,0.7125,2.666173 +L 0.7125,2.666173,0.7739,2.406206 +L 0.7739,2.406206,0.8468,2.15905 +L 0.8468,2.15905,0.93,1.924704 +L 0.93,1.924704,1.0261,1.694937 +L 1.0261,1.694937,1.1366,1.461523 +L 1.1366,1.461523,1.2605,1.224459 +L 1.2605,1.224459,1.3982,0.983746 +L 1.3982,0.983746,1.5498,0.739384 +L 1.5498,0.739384,1.7153,0.491374 +L 1.7153,0.491374,1.8947,0.239715 +L 1.8947,0.239715,2.0879,-0.015594 + +[)] 66 +L -0.0003,-0.015594,0.1929,0.239715 +L 0.1929,0.239715,0.3723,0.491374 +L 0.3723,0.491374,0.5377,0.739384 +L 0.5377,0.739384,0.6894,0.983746 +L 0.6894,0.983746,0.8271,1.224459 +L 0.8271,1.224459,0.951,1.461523 +L 0.951,1.461523,1.061,1.694937 +L 1.061,1.694937,1.1576,1.924704 +L 1.1576,1.924704,1.2413,2.15905 +L 1.2413,2.15905,1.3136,2.406206 +L 1.3136,2.406206,1.3751,2.666173 +L 1.3751,2.666173,1.4251,2.93895 +L 1.4251,2.93895,1.4643,3.224536 +L 1.4643,3.224536,1.492,3.522932 +L 1.492,3.522932,1.5089,3.834139 +L 1.5089,3.834139,1.5143,4.158156 +L 1.5143,4.158156,1.5089,4.483338 +L 1.5089,4.483338,1.492,4.795553 +L 1.492,4.795553,1.4643,5.094805 +L 1.4643,5.094805,1.4251,5.38109 +L 1.4251,5.38109,1.3751,5.654411 +L 1.3751,5.654411,1.3136,5.914765 +L 1.3136,5.914765,1.2413,6.162154 +L 1.2413,6.162154,1.1576,6.39658 +L 1.1576,6.39658,1.061,6.626266 +L 1.061,6.626266,0.951,6.859448 +L 0.951,6.859448,0.8271,7.096123 +L 0.8271,7.096123,0.6894,7.336294 +L 0.6894,7.336294,0.5377,7.579956 +L 0.5377,7.579956,0.3723,7.827114 +L 0.3723,7.827114,0.1929,8.077763 +L 0.1929,8.077763,-0.0003,8.331908 +L -0.0003,8.331908,0.4808,8.630033 +L 0.4808,8.630033,0.668,8.369056 +L 0.668,8.369056,0.8439,8.107847 +L 0.8439,8.107847,1.0094,7.846406 +L 1.0094,7.846406,1.1635,7.584731 +L 1.1635,7.584731,1.3067,7.322824 +L 1.3067,7.322824,1.4385,7.060682 +L 1.4385,7.060682,1.5594,6.79831 +L 1.5594,6.79831,1.6699,6.535702 +L 1.6699,6.535702,1.7675,6.268671 +L 1.7675,6.268671,1.8527,5.993022 +L 1.8527,5.993022,1.9246,5.708756 +L 1.9246,5.708756,1.9835,5.415871 +L 1.9835,5.415871,2.0291,5.114369 +L 2.0291,5.114369,2.0618,4.804249 +L 2.0618,4.804249,2.0816,4.485512 +L 2.0816,4.485512,2.0881,4.158156 +L 2.0881,4.158156,2.0816,3.831926 +L 2.0816,3.831926,2.0618,3.514081 +L 2.0618,3.514081,2.0291,3.204621 +L 2.0291,3.204621,1.9835,2.903547 +L 1.9835,2.903547,1.9246,2.610856 +L 1.9246,2.610856,1.8527,2.32655 +L 1.8527,2.32655,1.7675,2.05063 +L 1.7675,2.05063,1.6699,1.783093 +L 1.6699,1.783093,1.5594,1.519905 +L 1.5594,1.519905,1.4385,1.257028 +L 1.4385,1.257028,1.3067,0.99446 +L 1.3067,0.99446,1.1635,0.732203 +L 1.1635,0.732203,1.0094,0.470256 +L 1.0094,0.470256,0.8439,0.208621 +L 0.8439,0.208621,0.668,-0.052704 +L 0.668,-0.052704,0.4808,-0.313719 +L 0.4808,-0.313719,-0.0003,-0.015594 + +[*] 200 +L 2.1266,6.945625,2.1256,6.881303 +L 2.1256,6.881303,2.1231,6.800135 +L 2.1231,6.800135,2.1187,6.702117 +L 2.1187,6.702117,2.1127,6.587254 +L 2.1127,6.587254,2.1048,6.455544 +L 2.1048,6.455544,2.0954,6.306985 +L 2.0954,6.306985,2.0845,6.14158 +L 2.0845,6.14158,2.0711,5.959328 +L 2.0711,5.959328,2.0582,5.770787 +L 2.0582,5.770787,2.0463,5.586516 +L 2.0463,5.586516,2.0354,5.406516 +L 2.0354,5.406516,2.026,5.230784 +L 2.026,5.230784,2.0181,5.059325 +L 2.0181,5.059325,2.0112,4.892134 +L 2.0112,4.892134,2.0052,4.729213 +L 2.0052,4.729213,2.0013,4.570562 +L 2.0013,4.570562,2.0894,4.668384 +L 2.0894,4.668384,2.1811,4.770555 +L 2.1811,4.770555,2.2747,4.877072 +L 2.2747,4.877072,2.3709,4.987938 +L 2.3709,4.987938,2.4695,5.10315 +L 2.4695,5.10315,2.571,5.222711 +L 2.571,5.222711,2.6746,5.346619 +L 2.6746,5.346619,2.7806,5.474874 +L 2.7806,5.474874,2.8837,5.599328 +L 2.8837,5.599328,2.9773,5.711822 +L 2.9773,5.711822,3.0625,5.812362 +L 3.0625,5.812362,3.1379,5.900945 +L 3.1379,5.900945,3.2042,5.977572 +L 3.2042,5.977572,3.2612,6.042244 +L 3.2612,6.042244,3.3093,6.09496 +L 3.3093,6.09496,3.3484,6.135719 +L 3.3484,6.135719,3.6769,5.584188 +L 3.6769,5.584188,3.6383,5.54502 +L 3.6383,5.54502,3.5877,5.497079 +L 3.5877,5.497079,3.5253,5.440365 +L 3.5253,5.440365,3.451,5.374879 +L 3.451,5.374879,3.3653,5.30062 +L 3.3653,5.30062,3.2672,5.217586 +L 3.2672,5.217586,3.1577,5.125782 +L 3.1577,5.125782,3.0363,5.025203 +L 3.0363,5.025203,2.9104,4.920976 +L 2.9104,4.920976,2.7886,4.818223 +L 2.7886,4.818223,2.6696,4.716946 +L 2.6696,4.716946,2.5542,4.617144 +L 2.5542,4.617144,2.4422,4.518818 +L 2.4422,4.518818,2.3337,4.421966 +L 2.3337,4.421966,2.2282,4.326589 +L 2.2282,4.326589,2.1266,4.232687 +L 2.1266,4.232687,2.1266,4.207844 +L 2.1266,4.207844,2.2282,4.113943 +L 2.2282,4.113943,2.3337,4.018565 +L 2.3337,4.018565,2.4422,3.921714 +L 2.4422,3.921714,2.5542,3.823386 +L 2.5542,3.823386,2.6696,3.723584 +L 2.6696,3.723584,2.7886,3.622307 +L 2.7886,3.622307,2.9104,3.519555 +L 2.9104,3.519555,3.0363,3.415328 +L 3.0363,3.415328,3.1577,3.31475 +L 3.1577,3.31475,3.2672,3.222944 +L 3.2672,3.222944,3.3653,3.139912 +L 3.3653,3.139912,3.451,3.065652 +L 3.451,3.065652,3.5253,3.000166 +L 3.5253,3.000166,3.5877,2.943452 +L 3.5877,2.943452,3.6383,2.895511 +L 3.6383,2.895511,3.6769,2.856344 +L 3.6769,2.856344,3.3484,2.304812 +L 3.3484,2.304812,3.3093,2.345572 +L 3.3093,2.345572,3.2612,2.398287 +L 3.2612,2.398287,3.2042,2.462958 +L 3.2042,2.462958,3.1379,2.539585 +L 3.1379,2.539585,3.0625,2.62817 +L 3.0625,2.62817,2.9773,2.728709 +L 2.9773,2.728709,2.8837,2.841204 +L 2.8837,2.841204,2.7806,2.965656 +L 2.7806,2.965656,2.6746,3.093912 +L 2.6746,3.093912,2.571,3.21782 +L 2.571,3.21782,2.4695,3.337381 +L 2.4695,3.337381,2.3709,3.452594 +L 2.3709,3.452594,2.2747,3.563459 +L 2.2747,3.563459,2.1811,3.669976 +L 2.1811,3.669976,2.0894,3.772146 +L 2.0894,3.772146,2.0013,3.869969 +L 2.0013,3.869969,2.0052,3.715006 +L 2.0052,3.715006,2.0112,3.555695 +L 2.0112,3.555695,2.0181,3.392037 +L 2.0181,3.392037,2.026,3.224031 +L 2.026,3.224031,2.0354,3.051677 +L 2.0354,3.051677,2.0463,2.874976 +L 2.0463,2.874976,2.0582,2.693928 +L 2.0582,2.693928,2.0711,2.508531 +L 2.0711,2.508531,2.0845,2.329191 +L 2.0845,2.329191,2.0954,2.166308 +L 2.0954,2.166308,2.1048,2.019885 +L 2.1048,2.019885,2.1127,1.889921 +L 2.1127,1.889921,2.1187,1.776416 +L 2.1187,1.776416,2.1231,1.679371 +L 2.1231,1.679371,2.1256,1.598784 +L 2.1256,1.598784,2.1266,1.534656 +L 2.1266,1.534656,1.5529,1.534656 +L 1.5529,1.534656,1.5538,1.598784 +L 1.5538,1.598784,1.5563,1.679371 +L 1.5563,1.679371,1.5608,1.776416 +L 1.5608,1.776416,1.5667,1.889921 +L 1.5667,1.889921,1.5747,2.019885 +L 1.5747,2.019885,1.5841,2.166308 +L 1.5841,2.166308,1.5955,2.329191 +L 1.5955,2.329191,1.6083,2.508531 +L 1.6083,2.508531,1.6212,2.693928 +L 1.6212,2.693928,1.6336,2.874976 +L 1.6336,2.874976,1.644,3.051677 +L 1.644,3.051677,1.6534,3.224031 +L 1.6534,3.224031,1.6614,3.392037 +L 1.6614,3.392037,1.6683,3.555695 +L 1.6683,3.555695,1.6742,3.715006 +L 1.6742,3.715006,1.6782,3.869969 +L 1.6782,3.869969,1.589,3.772146 +L 1.589,3.772146,1.4974,3.669976 +L 1.4974,3.669976,1.4032,3.563459 +L 1.4032,3.563459,1.3066,3.452594 +L 1.3066,3.452594,1.2075,3.337381 +L 1.2075,3.337381,1.1059,3.21782 +L 1.1059,3.21782,1.0019,3.093912 +L 1.0019,3.093912,0.8959,2.965656 +L 0.8959,2.965656,0.7928,2.841204 +L 0.7928,2.841204,0.6992,2.728709 +L 0.6992,2.728709,0.6139,2.62817 +L 0.6139,2.62817,0.5386,2.539585 +L 0.5386,2.539585,0.4722,2.462958 +L 0.4722,2.462958,0.4153,2.398287 +L 0.4153,2.398287,0.3672,2.345572 +L 0.3672,2.345572,0.3281,2.304812 +L 0.3281,2.304812,-0.0004,2.856344 +L -0.0004,2.856344,0.0382,2.895511 +L 0.0382,2.895511,0.0887,2.943452 +L 0.0887,2.943452,0.1512,3.000166 +L 0.1512,3.000166,0.2255,3.065652 +L 0.2255,3.065652,0.3112,3.139912 +L 0.3112,3.139912,0.4093,3.222944 +L 0.4093,3.222944,0.5188,3.31475 +L 0.5188,3.31475,0.6402,3.415328 +L 0.6402,3.415328,0.766,3.519555 +L 0.766,3.519555,0.8884,3.622307 +L 0.8884,3.622307,1.0073,3.723584 +L 1.0073,3.723584,1.1233,3.823386 +L 1.1233,3.823386,1.2358,3.921714 +L 1.2358,3.921714,1.3448,4.018565 +L 1.3448,4.018565,1.4503,4.113943 +L 1.4503,4.113943,1.5529,4.207844 +L 1.5529,4.207844,1.5529,4.232687 +L 1.5529,4.232687,1.4503,4.326589 +L 1.4503,4.326589,1.3448,4.421966 +L 1.3448,4.421966,1.2358,4.518818 +L 1.2358,4.518818,1.1233,4.617144 +L 1.1233,4.617144,1.0073,4.716946 +L 1.0073,4.716946,0.8884,4.818223 +L 0.8884,4.818223,0.766,4.920976 +L 0.766,4.920976,0.6402,5.025203 +L 0.6402,5.025203,0.5188,5.125782 +L 0.5188,5.125782,0.4093,5.217586 +L 0.4093,5.217586,0.3112,5.30062 +L 0.3112,5.30062,0.2255,5.374879 +L 0.2255,5.374879,0.1512,5.440365 +L 0.1512,5.440365,0.0887,5.497079 +L 0.0887,5.497079,0.0382,5.54502 +L 0.0382,5.54502,-0.0004,5.584188 +L -0.0004,5.584188,0.3281,6.135719 +L 0.3281,6.135719,0.3672,6.09496 +L 0.3672,6.09496,0.4153,6.042244 +L 0.4153,6.042244,0.4722,5.977572 +L 0.4722,5.977572,0.5386,5.900945 +L 0.5386,5.900945,0.6139,5.812362 +L 0.6139,5.812362,0.6992,5.711822 +L 0.6992,5.711822,0.7928,5.599328 +L 0.7928,5.599328,0.8959,5.474874 +L 0.8959,5.474874,1.0019,5.346619 +L 1.0019,5.346619,1.1059,5.222711 +L 1.1059,5.222711,1.2075,5.10315 +L 1.2075,5.10315,1.3066,4.987938 +L 1.3066,4.987938,1.4032,4.877072 +L 1.4032,4.877072,1.4974,4.770555 +L 1.4974,4.770555,1.589,4.668384 +L 1.589,4.668384,1.6782,4.570562 +L 1.6782,4.570562,1.6742,4.729213 +L 1.6742,4.729213,1.6683,4.892134 +L 1.6683,4.892134,1.6614,5.059325 +L 1.6614,5.059325,1.6534,5.230784 +L 1.6534,5.230784,1.644,5.406516 +L 1.644,5.406516,1.6336,5.586516 +L 1.6336,5.586516,1.6212,5.770787 +L 1.6212,5.770787,1.6083,5.959328 +L 1.6083,5.959328,1.5955,6.14158 +L 1.5955,6.14158,1.5841,6.306985 +L 1.5841,6.306985,1.5747,6.455544 +L 1.5747,6.455544,1.5667,6.587254 +L 1.5667,6.587254,1.5608,6.702117 +L 1.5608,6.702117,1.5563,6.800135 +L 1.5563,6.800135,1.5538,6.881303 +L 1.5538,6.881303,1.5529,6.945625 +L 1.5529,6.945625,2.1266,6.945625 + +[+] 12 +L -0.0004,4.819,1.4722,4.819 +L 1.4722,4.819,1.4722,7.512064 +L 1.4722,7.512064,2.0459,7.512064 +L 2.0459,7.512064,2.0459,4.819 +L 2.0459,4.819,3.405,4.819 +L 3.405,4.819,3.405,4.183 +L 3.405,4.183,2.0459,4.183 +L 2.0459,4.183,2.0459,1.072562 +L 2.0459,1.072562,1.4722,1.072562 +L 1.4722,1.072562,1.4722,4.183 +L 1.4722,4.183,-0.0004,4.183 +L -0.0004,4.183,-0.0004,4.819 + +[,] 7 +L 0.9557,0.317313,0.2895,-0.880156 +L 0.2895,-0.880156,0.0445,-0.880156 +L 0.0445,-0.880156,0.3941,0.049 +L 0.3941,0.049,-0.0003,0.049 +L -0.0003,0.049,-0.0003,1.321 +L -0.0003,1.321,0.9557,1.321 +L 0.9557,1.321,0.9557,0.317313 + +[-] 4 +L -0.0002,4.819,3.307,4.819 +L 3.307,4.819,3.307,4.183 +L 3.307,4.183,-0.0002,4.183 +L -0.0002,4.183,-0.0002,4.819 + +[.] 4 +L 0.9556,0.049,-0.0004,0.049 +L -0.0004,0.049,-0.0004,1.321 +L -0.0004,1.321,0.9556,1.321 +L 0.9556,1.321,0.9556,0.049 + +[/] 4 +L 3.3127,8.267315,3.7189,8.073532 +L 3.7189,8.073532,0.4147,0.058938 +L 0.4147,0.058938,-0.0005,0.217938 +L -0.0005,0.217938,3.3127,8.267315 + +[0] 128 +L -0.0002,4.192938,0.0073,4.533141 +L 0.0073,4.533141,0.0306,4.863098 +L 0.0306,4.863098,0.0687,5.182806 +L 0.0687,5.182806,0.1227,5.492266 +L 0.1227,5.492266,0.1916,5.791478 +L 0.1916,5.791478,0.2763,6.080441 +L 0.2763,6.080441,0.3759,6.359156 +L 0.3759,6.359156,0.4913,6.627625 +L 0.4913,6.627625,0.6162,6.874509 +L 0.6162,6.874509,0.746,7.088476 +L 0.746,7.088476,0.8808,7.269526 +L 0.8808,7.269526,1.0195,7.417656 +L 1.0195,7.417656,1.1632,7.532869 +L 1.1632,7.532869,1.3118,7.615164 +L 1.3118,7.615164,1.4644,7.664542 +L 1.4644,7.664542,1.622,7.681001 +L 1.622,7.681001,1.7796,7.664542 +L 1.7796,7.664542,1.9327,7.615164 +L 1.9327,7.615164,2.0813,7.532869 +L 2.0813,7.532869,2.225,7.417656 +L 2.225,7.417656,2.3647,7.269526 +L 2.3647,7.269526,2.4995,7.088476 +L 2.4995,7.088476,2.6298,6.874509 +L 2.6298,6.874509,2.7556,6.627625 +L 2.7556,6.627625,2.8716,6.359001 +L 2.8716,6.359001,2.9722,6.07982 +L 2.9722,6.07982,3.0569,5.790079 +L 3.0569,5.790079,3.1267,5.489781 +L 3.1267,5.489781,3.1807,5.178924 +L 3.1807,5.178924,3.2194,4.857508 +L 3.2194,4.857508,3.2422,4.525532 +L 3.2422,4.525532,3.2501,4.183 +L 3.2501,4.183,3.2422,3.840467 +L 3.2422,3.840467,3.2194,3.508492 +L 3.2194,3.508492,3.1807,3.187076 +L 3.1807,3.187076,3.1267,2.876218 +L 3.1267,2.876218,3.0569,2.57592 +L 3.0569,2.57592,2.9722,2.286179 +L 2.9722,2.286179,2.8716,2.006999 +L 2.8716,2.006999,2.7556,1.738375 +L 2.7556,1.738375,2.6298,1.491491 +L 2.6298,1.491491,2.4995,1.277523 +L 2.4995,1.277523,2.3647,1.096474 +L 2.3647,1.096474,2.225,0.948344 +L 2.225,0.948344,2.0813,0.833131 +L 2.0813,0.833131,1.9327,0.750836 +L 1.9327,0.750836,1.7796,0.701459 +L 1.7796,0.701459,1.622,0.685 +L 1.622,0.685,1.4644,0.701459 +L 1.4644,0.701459,1.3118,0.750836 +L 1.3118,0.750836,1.1632,0.833131 +L 1.1632,0.833131,1.0195,0.948344 +L 1.0195,0.948344,0.8808,1.096474 +L 0.8808,1.096474,0.746,1.277523 +L 0.746,1.277523,0.6162,1.491491 +L 0.6162,1.491491,0.4913,1.738375 +L 0.4913,1.738375,0.3759,2.007154 +L 0.3759,2.007154,0.2763,2.2868 +L 0.2763,2.2868,0.1916,2.577317 +L 0.1916,2.577317,0.1227,2.878704 +L 0.1227,2.878704,0.0687,3.190958 +L 0.0687,3.190958,0.0306,3.514081 +L 0.0306,3.514081,0.0073,3.848075 +L 0.0073,3.848075,-0.0002,4.192938 +L 0.7648,4.183,0.7688,3.857819 +L 0.7688,3.857819,0.7817,3.550572 +L 0.7817,3.550572,0.8025,3.261258 +L 0.8025,3.261258,0.8317,2.989879 +L 0.8317,2.989879,0.8699,2.736433 +L 0.8699,2.736433,0.916,2.500923 +L 0.916,2.500923,0.9705,2.283346 +L 0.9705,2.283346,1.0334,2.083704 +L 1.0334,2.083704,1.1018,1.904944 +L 1.1018,1.904944,1.1711,1.750021 +L 1.1711,1.750021,1.2425,1.618931 +L 1.2425,1.618931,1.3148,1.511675 +L 1.3148,1.511675,1.3891,1.428256 +L 1.3891,1.428256,1.4654,1.368669 +L 1.4654,1.368669,1.5427,1.332917 +L 1.5427,1.332917,1.622,1.321 +L 1.622,1.321,1.7003,1.332917 +L 1.7003,1.332917,1.7776,1.368669 +L 1.7776,1.368669,1.8534,1.428256 +L 1.8534,1.428256,1.9277,1.511675 +L 1.9277,1.511675,2.001,1.618931 +L 2.001,1.618931,2.0729,1.750021 +L 2.0729,1.750021,2.1432,1.904944 +L 2.1432,1.904944,2.2121,2.083704 +L 2.2121,2.083704,2.276,2.2835 +L 2.276,2.2835,2.3315,2.501544 +L 2.3315,2.501544,2.3786,2.737831 +L 2.3786,2.737831,2.4172,2.992362 +L 2.4172,2.992362,2.447,3.265139 +L 2.447,3.265139,2.4683,3.55616 +L 2.4683,3.55616,2.4811,3.865427 +L 2.4811,3.865427,2.4851,4.192938 +L 2.4851,4.192938,2.4811,4.525922 +L 2.4811,4.525922,2.4683,4.839186 +L 2.4683,4.839186,2.447,5.13273 +L 2.447,5.13273,2.4172,5.406554 +L 2.4172,5.406554,2.3786,5.660659 +L 2.3786,5.660659,2.3315,5.895045 +L 2.3315,5.895045,2.276,6.109711 +L 2.276,6.109711,2.2121,6.304656 +L 2.2121,6.304656,2.1432,6.478175 +L 2.1432,6.478175,2.0729,6.628556 +L 2.0729,6.628556,2.001,6.755802 +L 2.001,6.755802,1.9277,6.859914 +L 1.9277,6.859914,1.8534,6.940889 +L 1.8534,6.940889,1.7776,6.998729 +L 1.7776,6.998729,1.7003,7.033431 +L 1.7003,7.033431,1.622,7.045001 +L 1.622,7.045001,1.5427,7.033431 +L 1.5427,7.033431,1.4654,6.998729 +L 1.4654,6.998729,1.3891,6.940889 +L 1.3891,6.940889,1.3148,6.859914 +L 1.3148,6.859914,1.2425,6.755802 +L 1.2425,6.755802,1.1711,6.628556 +L 1.1711,6.628556,1.1018,6.478175 +L 1.1018,6.478175,1.0334,6.304656 +L 1.0334,6.304656,0.9705,6.109554 +L 0.9705,6.109554,0.916,5.894424 +L 0.916,5.894424,0.8699,5.659262 +L 0.8699,5.659262,0.8317,5.40407 +L 0.8317,5.40407,0.8025,5.128849 +L 0.8025,5.128849,0.7817,4.833596 +L 0.7817,4.833596,0.7688,4.518313 +L 0.7688,4.518313,0.7648,4.183 + +[1] 23 +L 1.3531,0.570719,0.7793,0.570719 +L 0.7793,0.570719,0.7793,6.274843 +L 0.7793,6.274843,0.7754,6.342388 +L 0.7754,6.342388,0.763,6.400926 +L 0.763,6.400926,0.7422,6.450458 +L 0.7422,6.450458,0.7135,6.490984 +L 0.7135,6.490984,0.6763,6.522504 +L 0.6763,6.522504,0.6312,6.545019 +L 0.6312,6.545019,0.5782,6.558528 +L 0.5782,6.558528,0.5163,6.563032 +L 0.5163,6.563032,-0.0005,6.563032 +L -0.0005,6.563032,-0.0005,7.094687 +L -0.0005,7.094687,0.2061,7.119453 +L 0.2061,7.119453,0.3899,7.161456 +L 0.3899,7.161456,0.5509,7.220691 +L 0.5509,7.220691,0.6887,7.297164 +L 0.6887,7.297164,0.8041,7.390871 +L 0.8041,7.390871,0.8963,7.501816 +L 0.8963,7.501816,0.9656,7.629993 +L 0.9656,7.629993,1.0122,7.775407 +L 1.0122,7.775407,1.3531,7.775407 +L 1.3531,7.775407,1.3531,7.199032 +L 1.3531,7.199032,1.3531,0.570719 + +[2] 87 +L 1.5742,7.681001,1.7417,7.673432 +L 1.7417,7.673432,1.9012,7.650721 +L 1.9012,7.650721,2.0523,7.612874 +L 2.0523,7.612874,2.1945,7.559886 +L 2.1945,7.559886,2.3293,7.491761 +L 2.3293,7.491761,2.4552,7.408497 +L 2.4552,7.408497,2.5731,7.310092 +L 2.5731,7.310092,2.6826,7.196547 +L 2.6826,7.196547,2.7812,7.069029 +L 2.7812,7.069029,2.8669,6.928701 +L 2.8669,6.928701,2.9392,6.775563 +L 2.9392,6.775563,2.9982,6.609614 +L 2.9982,6.609614,3.0443,6.430856 +L 3.0443,6.430856,3.0775,6.239286 +L 3.0775,6.239286,3.0968,6.034908 +L 3.0968,6.034908,3.1037,5.817719 +L 3.1037,5.817719,3.0923,5.604528 +L 3.0923,5.604528,3.0586,5.389786 +L 3.0586,5.389786,3.0022,5.17349 +L 3.0022,5.17349,2.9229,4.955641 +L 2.9229,4.955641,2.8213,4.736239 +L 2.8213,4.736239,2.697,4.515284 +L 2.697,4.515284,2.5503,4.292778 +L 2.5503,4.292778,2.3808,4.068718 +L 2.3808,4.068718,0.618,1.639 +L 0.618,1.639,3.0468,1.639 +L 3.0468,1.639,2.9363,0.685 +L 2.9363,0.685,-0.0004,0.685 +L -0.0004,0.685,-0.0004,1.653906 +L -0.0004,1.653906,1.762,4.227719 +L 1.762,4.227719,1.8973,4.417774 +L 1.8973,4.417774,2.0147,4.612797 +L 2.0147,4.612797,2.1138,4.812789 +L 2.1138,4.812789,2.1945,5.01775 +L 2.1945,5.01775,2.258,5.22768 +L 2.258,5.22768,2.3031,5.442578 +L 2.3031,5.442578,2.3298,5.662446 +L 2.3298,5.662446,2.3387,5.88728 +L 2.3387,5.88728,2.3348,6.061809 +L 2.3348,6.061809,2.3229,6.220189 +L 2.3229,6.220189,2.3036,6.362419 +L 2.3036,6.362419,2.2758,6.4885 +L 2.2758,6.4885,2.2401,6.598433 +L 2.2401,6.598433,2.197,6.69222 +L 2.197,6.69222,2.1455,6.769855 +L 2.1455,6.769855,2.0865,6.831346 +L 2.0865,6.831346,2.0221,6.881419 +L 2.0221,6.881419,1.9552,6.924819 +L 1.9552,6.924819,1.8859,6.96154 +L 1.8859,6.96154,1.814,6.991585 +L 1.814,6.991585,1.7402,7.014956 +L 1.7402,7.014956,1.6634,7.031647 +L 1.6634,7.031647,1.5841,7.041662 +L 1.5841,7.041662,1.5024,7.045001 +L 1.5024,7.045001,1.4181,7.04209 +L 1.4181,7.04209,1.3364,7.033356 +L 1.3364,7.033356,1.2566,7.018797 +L 1.2566,7.018797,1.1788,6.998419 +L 1.1788,6.998419,1.1035,6.972216 +L 1.1035,6.972216,1.0302,6.94019 +L 1.0302,6.94019,0.9588,6.902343 +L 0.9588,6.902343,0.89,6.858672 +L 0.89,6.858672,0.8261,6.801726 +L 0.8261,6.801726,0.7711,6.72405 +L 0.7711,6.72405,0.7245,6.625645 +L 0.7245,6.625645,0.6858,6.506512 +L 0.6858,6.506512,0.6561,6.36665 +L 0.6561,6.36665,0.6353,6.206058 +L 0.6353,6.206058,0.6224,6.024736 +L 0.6224,6.024736,0.618,5.822687 +L 0.618,5.822687,0.0447,5.822687 +L 0.0447,5.822687,0.0516,6.078113 +L 0.0516,6.078113,0.0729,6.312729 +L 0.0729,6.312729,0.1086,6.526541 +L 0.1086,6.526541,0.1587,6.719546 +L 0.1587,6.719546,0.2226,6.891746 +L 0.2226,6.891746,0.3009,7.043137 +L 0.3009,7.043137,0.3935,7.173722 +L 0.3935,7.173722,0.5,7.2835 +L 0.5,7.2835,0.6165,7.376665 +L 0.6165,7.376665,0.7379,7.457407 +L 0.7379,7.457407,0.8647,7.525728 +L 0.8647,7.525728,0.9965,7.581625 +L 0.9965,7.581625,1.1333,7.625102 +L 1.1333,7.625102,1.275,7.656156 +L 1.275,7.656156,1.4221,7.674788 +L 1.4221,7.674788,1.5742,7.681001 + +[3] 195 +L 1.5288,7.681001,1.6898,7.672189 +L 1.6898,7.672189,1.8439,7.645753 +L 1.8439,7.645753,1.991,7.601695 +L 1.991,7.601695,2.1313,7.540013 +L 2.1313,7.540013,2.2641,7.460707 +L 2.2641,7.460707,2.3904,7.363777 +L 2.3904,7.363777,2.5098,7.249225 +L 2.5098,7.249225,2.6223,7.117047 +L 2.6223,7.117047,2.7248,6.974234 +L 2.7248,6.974234,2.813,6.827773 +L 2.813,6.827773,2.8883,6.677661 +L 2.8883,6.677661,2.9498,6.523903 +L 2.9498,6.523903,2.9973,6.366493 +L 2.9973,6.366493,3.031,6.205437 +L 3.031,6.205437,3.0518,6.04073 +L 3.0518,6.04073,3.0588,5.872375 +L 3.0588,5.872375,3.0548,5.763916 +L 3.0548,5.763916,3.0439,5.654683 +L 3.0439,5.654683,3.0261,5.544671 +L 3.0261,5.544671,3.0013,5.433882 +L 3.0013,5.433882,2.9686,5.322319 +L 2.9686,5.322319,2.929,5.209978 +L 2.929,5.209978,2.8824,5.096862 +L 2.8824,5.096862,2.8289,4.982968 +L 2.8289,4.982968,2.7694,4.874044 +L 2.7694,4.874044,2.708,4.775833 +L 2.708,4.775833,2.6436,4.688338 +L 2.6436,4.688338,2.5762,4.611554 +L 2.5762,4.611554,2.5058,4.545486 +L 2.5058,4.545486,2.433,4.490131 +L 2.433,4.490131,2.3572,4.445489 +L 2.3572,4.445489,2.2789,4.411562 +L 2.2789,4.411562,2.3587,4.383031 +L 2.3587,4.383031,2.439,4.342155 +L 2.439,4.342155,2.5197,4.288935 +L 2.5197,4.288935,2.6,4.223372 +L 2.6,4.223372,2.6807,4.145464 +L 2.6807,4.145464,2.7615,4.05521 +L 2.7615,4.05521,2.8428,3.952613 +L 2.8428,3.952613,2.924,3.837672 +L 2.924,3.837672,3.0003,3.713027 +L 3.0003,3.713027,3.0667,3.581315 +L 3.0667,3.581315,3.1227,3.442539 +L 3.1227,3.442539,3.1683,3.296699 +L 3.1683,3.296699,3.204,3.143794 +L 3.204,3.143794,3.2292,2.983823 +L 3.2292,2.983823,3.2446,2.816787 +L 3.2446,2.816787,3.25,2.642687 +L 3.25,2.642687,3.2431,2.455155 +L 3.2431,2.455155,3.2228,2.272671 +L 3.2228,2.272671,3.1886,2.095232 +L 3.1886,2.095232,3.141,1.92284 +L 3.141,1.92284,3.0796,1.755494 +L 3.0796,1.755494,3.0043,1.593193 +L 3.0043,1.593193,2.9161,1.435941 +L 2.9161,1.435941,2.8135,1.283734 +L 2.8135,1.283734,2.6991,1.143406 +L 2.6991,1.143406,2.5737,1.021788 +L 2.5737,1.021788,2.438,0.91888 +L 2.438,0.91888,2.2908,0.834684 +L 2.2908,0.834684,2.1332,0.769198 +L 2.1332,0.769198,1.9643,0.72242 +L 1.9643,0.72242,1.7849,0.694355 +L 1.7849,0.694355,1.5947,0.685 +L 1.5947,0.685,1.4267,0.691638 +L 1.4267,0.691638,1.2657,0.711551 +L 1.2657,0.711551,1.1121,0.744742 +L 1.1121,0.744742,0.9659,0.791208 +L 0.9659,0.791208,0.8267,0.850948 +L 0.8267,0.850948,0.6954,0.923966 +L 0.6954,0.923966,0.5705,1.010259 +L 0.5705,1.010259,0.4536,1.109828 +L 0.4536,1.109828,0.3471,1.225157 +L 0.3471,1.225157,0.2549,1.358732 +L 0.2549,1.358732,0.1766,1.51055 +L 0.1766,1.51055,0.1127,1.680613 +L 0.1127,1.680613,0.0632,1.868921 +L 0.0632,1.868921,0.0275,2.075474 +L 0.0275,2.075474,0.0067,2.30027 +L 0.0067,2.30027,-0.0007,2.543312 +L -0.0007,2.543312,0.573,2.543312 +L 0.573,2.543312,0.5775,2.353645 +L 0.5775,2.353645,0.5899,2.182146 +L 0.5899,2.182146,0.6112,2.028814 +L 0.6112,2.028814,0.6409,1.893648 +L 0.6409,1.893648,0.6786,1.776649 +L 0.6786,1.776649,0.7251,1.677818 +L 0.7251,1.677818,0.7801,1.597153 +L 0.7801,1.597153,0.8435,1.534656 +L 0.8435,1.534656,0.9134,1.484581 +L 0.9134,1.484581,0.9872,1.441181 +L 0.9872,1.441181,1.0655,1.404458 +L 1.0655,1.404458,1.1483,1.374413 +L 1.1483,1.374413,1.2355,1.351046 +L 1.2355,1.351046,1.3271,1.334354 +L 1.3271,1.334354,1.4227,1.324339 +L 1.4227,1.324339,1.5228,1.321 +L 1.5228,1.321,1.6274,1.325736 +L 1.6274,1.325736,1.7265,1.339943 +L 1.7265,1.339943,1.8211,1.363623 +L 1.8211,1.363623,1.9103,1.396773 +L 1.9103,1.396773,1.9945,1.439396 +L 1.9945,1.439396,2.0738,1.491491 +L 2.0738,1.491491,2.1481,1.553057 +L 2.1481,1.553057,2.2175,1.624094 +L 2.2175,1.624094,2.2804,1.705767 +L 2.2804,1.705767,2.3344,1.799243 +L 2.3344,1.799243,2.3805,1.904517 +L 2.3805,1.904517,2.4181,2.021593 +L 2.4181,2.021593,2.4474,2.15047 +L 2.4474,2.15047,2.4682,2.291148 +L 2.4682,2.291148,2.4811,2.443627 +L 2.4811,2.443627,2.485,2.607906 +L 2.485,2.607906,2.4791,2.791322 +L 2.4791,2.791322,2.4622,2.963948 +L 2.4622,2.963948,2.4335,3.125782 +L 2.4335,3.125782,2.3934,3.276824 +L 2.3934,3.276824,2.3423,3.417075 +L 2.3423,3.417075,2.2789,3.546534 +L 2.2789,3.546534,2.2046,3.665202 +L 2.2046,3.665202,2.1189,3.773078 +L 2.1189,3.773078,2.0257,3.869154 +L 2.0257,3.869154,1.9291,3.952418 +L 1.9291,3.952418,1.8295,4.022875 +L 1.8295,4.022875,1.7265,4.08052 +L 1.7265,4.08052,1.6199,4.125354 +L 1.6199,4.125354,1.5104,4.15738 +L 1.5104,4.15738,1.3975,4.176595 +L 1.3975,4.176595,1.281,4.183 +L 1.281,4.183,1.281,4.819 +L 1.281,4.819,1.398,4.825095 +L 1.398,4.825095,1.508,4.843378 +L 1.508,4.843378,1.6115,4.87385 +L 1.6115,4.87385,1.7081,4.916512 +L 1.7081,4.916512,1.7983,4.971362 +L 1.7983,4.971362,1.8816,5.038401 +L 1.8816,5.038401,1.9579,5.117629 +L 1.9579,5.117629,2.0282,5.209047 +L 2.0282,5.209047,2.0901,5.306753 +L 2.0901,5.306753,2.1441,5.404846 +L 2.1441,5.404846,2.1897,5.503329 +L 2.1897,5.503329,2.2274,5.6022 +L 2.2274,5.6022,2.2566,5.701458 +L 2.2566,5.701458,2.2769,5.801105 +L 2.2769,5.801105,2.2898,5.90114 +L 2.2898,5.90114,2.2938,6.001563 +L 2.2938,6.001563,2.2898,6.120036 +L 2.2898,6.120036,2.2779,6.231989 +L 2.2779,6.231989,2.2581,6.337419 +L 2.2581,6.337419,2.2309,6.436329 +L 2.2309,6.436329,2.1952,6.528715 +L 2.1952,6.528715,2.1521,6.614582 +L 2.1521,6.614582,2.1005,6.693926 +L 2.1005,6.693926,2.0411,6.766751 +L 2.0411,6.766751,1.9772,6.831965 +L 1.9772,6.831965,1.9103,6.888483 +L 1.9103,6.888483,1.8409,6.93631 +L 1.8409,6.93631,1.7691,6.975438 +L 1.7691,6.975438,1.6948,7.005871 +L 1.6948,7.005871,1.618,7.027609 +L 1.618,7.027609,1.5392,7.040652 +L 1.5392,7.040652,1.4574,7.045001 +L 1.4574,7.045001,1.3732,7.041622 +L 1.3732,7.041622,1.2914,7.031492 +L 1.2914,7.031492,1.2117,7.014605 +L 1.2117,7.014605,1.1339,6.990964 +L 1.1339,6.990964,1.0586,6.96057 +L 1.0586,6.96057,0.9852,6.923422 +L 0.9852,6.923422,0.9139,6.879516 +L 0.9139,6.879516,0.845,6.82886 +L 0.845,6.82886,0.7811,6.765858 +L 0.7811,6.765858,0.7261,6.684921 +L 0.7261,6.684921,0.679,6.58605 +L 0.679,6.58605,0.6409,6.469247 +L 0.6409,6.469247,0.6112,6.334506 +L 0.6112,6.334506,0.5899,6.181834 +L 0.5899,6.181834,0.5775,6.011229 +L 0.5775,6.011229,0.573,5.822687 +L 0.573,5.822687,-0.0007,5.822687 +L -0.0007,5.822687,0.0067,6.082616 +L 0.0067,6.082616,0.029,6.320804 +L 0.029,6.320804,0.0657,6.537256 +L 0.0657,6.537256,0.1172,6.731969 +L 0.1172,6.731969,0.1831,6.904944 +L 0.1831,6.904944,0.2643,7.05618 +L 0.2643,7.05618,0.3595,7.185677 +L 0.3595,7.185677,0.47,7.293438 +L 0.47,7.293438,0.5894,7.384273 +L 0.5894,7.384273,0.7127,7.462997 +L 0.7127,7.462997,0.8396,7.529608 +L 0.8396,7.529608,0.9699,7.58411 +L 0.9699,7.58411,1.1042,7.626499 +L 1.1042,7.626499,1.2424,7.656777 +L 1.2424,7.656777,1.3836,7.674945 +L 1.3836,7.674945,1.5288,7.681001 + +[4] 14 +L 2.5392,0.312344,1.9654,0.312344 +L 1.9654,0.312344,1.9654,1.956999 +L 1.9654,1.956999,-0.0006,1.956999 +L -0.0006,1.956999,-0.0006,2.443938 +L -0.0006,2.443938,2.0402,7.636281 +L 2.0402,7.636281,2.5392,7.636281 +L 2.5392,7.636281,2.5392,2.911 +L 2.5392,2.911,3.3488,2.911 +L 3.3488,2.911,3.3488,1.956999 +L 3.3488,1.956999,2.5392,1.956999 +L 2.5392,1.956999,2.5392,0.312344 +L 1.9654,5.902189,0.7495,2.911 +L 0.7495,2.911,1.9654,2.911 +L 1.9654,2.911,1.9654,5.902189 + +[5] 127 +L 1.6544,5.137,1.814,5.12815 +L 1.814,5.12815,1.968,5.101598 +L 1.968,5.101598,2.1162,5.057345 +L 2.1162,5.057345,2.2594,4.995391 +L 2.2594,4.995391,2.3966,4.915736 +L 2.3966,4.915736,2.5289,4.81838 +L 2.5289,4.81838,2.6553,4.703321 +L 2.6553,4.703321,2.7766,4.570562 +L 2.7766,4.570562,2.8876,4.422199 +L 2.8876,4.422199,2.9838,4.260327 +L 2.9838,4.260327,3.065,4.084945 +L 3.065,4.084945,3.1314,3.896055 +L 3.1314,3.896055,3.1834,3.693656 +L 3.1834,3.693656,3.2206,3.477749 +L 3.2206,3.477749,3.2424,3.248331 +L 3.2424,3.248331,3.2498,3.005406 +L 3.2498,3.005406,3.2424,2.768886 +L 3.2424,2.768886,3.2186,2.541293 +L 3.2186,2.541293,3.18,2.32263 +L 3.18,2.32263,3.126,2.112894 +L 3.126,2.112894,3.0561,1.912087 +L 3.0561,1.912087,2.9709,1.720208 +L 2.9709,1.720208,2.8703,1.537257 +L 2.8703,1.537257,2.7539,1.363234 +L 2.7539,1.363234,2.625,1.204274 +L 2.625,1.204274,2.4853,1.066506 +L 2.4853,1.066506,2.3357,0.949936 +L 2.3357,0.949936,2.1751,0.854559 +L 2.1751,0.854559,2.0047,0.780377 +L 2.0047,0.780377,1.8234,0.727389 +L 1.8234,0.727389,1.6321,0.695598 +L 1.6321,0.695598,1.4305,0.685 +L 1.4305,0.685,1.2645,0.692375 +L 1.2645,0.692375,1.1079,0.714503 +L 1.1079,0.714503,0.9612,0.751379 +L 0.9612,0.751379,0.824,0.803008 +L 0.824,0.803008,0.6967,0.869387 +L 0.6967,0.869387,0.5792,0.950517 +L 0.5792,0.950517,0.4712,1.046398 +L 0.4712,1.046398,0.3731,1.157031 +L 0.3731,1.157031,0.2854,1.278455 +L 0.2854,1.278455,0.2096,1.40671 +L 0.2096,1.40671,0.1452,1.541798 +L 0.1452,1.541798,0.0927,1.683719 +L 0.0927,1.683719,0.0521,1.83247 +L 0.0521,1.83247,0.0228,1.988055 +L 0.0228,1.988055,0.0055,2.15047 +L 0.0055,2.15047,-0.0005,2.319719 +L -0.0005,2.319719,0.5733,2.319719 +L 0.5733,2.319719,0.5763,2.203845 +L 0.5763,2.203845,0.5867,2.094728 +L 0.5867,2.094728,0.6035,1.992363 +L 0.6035,1.992363,0.6273,1.896753 +L 0.6273,1.896753,0.658,1.807899 +L 0.658,1.807899,0.6957,1.725797 +L 0.6957,1.725797,0.7403,1.650451 +L 0.7403,1.650451,0.7913,1.58186 +L 0.7913,1.58186,0.8478,1.52072 +L 0.8478,1.52072,0.9087,1.467733 +L 0.9087,1.467733,0.9731,1.422898 +L 0.9731,1.422898,1.042,1.386215 +L 1.042,1.386215,1.1153,1.357683 +L 1.1153,1.357683,1.1921,1.337304 +L 1.1921,1.337304,1.2734,1.325075 +L 1.2734,1.325075,1.3586,1.321 +L 1.3586,1.321,1.4755,1.327948 +L 1.4755,1.327948,1.587,1.348794 +L 1.587,1.348794,1.694,1.383537 +L 1.694,1.383537,1.7966,1.432176 +L 1.7966,1.432176,1.8942,1.494711 +L 1.8942,1.494711,1.9874,1.571145 +L 1.9874,1.571145,2.0756,1.661475 +L 2.0756,1.661475,2.1593,1.765704 +L 2.1593,1.765704,2.2356,1.88243 +L 2.2356,1.88243,2.302,2.010258 +L 2.302,2.010258,2.358,2.14919 +L 2.358,2.14919,2.4036,2.299223 +L 2.4036,2.299223,2.4392,2.460358 +L 2.4392,2.460358,2.4645,2.632594 +L 2.4645,2.632594,2.4799,2.815933 +L 2.4799,2.815933,2.4853,3.010374 +L 2.4853,3.010374,2.4813,3.194257 +L 2.4813,3.194257,2.47,3.365796 +L 2.47,3.365796,2.4511,3.524989 +L 2.4511,3.524989,2.4249,3.67184 +L 2.4249,3.67184,2.3912,3.806345 +L 2.3912,3.806345,2.3496,3.928507 +L 2.3496,3.928507,2.301,4.038323 +L 2.301,4.038323,2.2445,4.135796 +L 2.2445,4.135796,2.1826,4.221392 +L 2.1826,4.221392,2.1177,4.295573 +L 2.1177,4.295573,2.0488,4.358343 +L 2.0488,4.358343,1.977,4.409699 +L 1.977,4.409699,1.9016,4.449644 +L 1.9016,4.449644,1.8224,4.478175 +L 1.8224,4.478175,1.7401,4.495294 +L 1.7401,4.495294,1.6544,4.501 +L 1.6544,4.501,1.5672,4.498904 +L 1.5672,4.498904,1.4835,4.492615 +L 1.4835,4.492615,1.4032,4.482134 +L 1.4032,4.482134,1.3269,4.467461 +L 1.3269,4.467461,1.2536,4.448596 +L 1.2536,4.448596,1.1832,4.425537 +L 1.1832,4.425537,1.1168,4.398286 +L 1.1168,4.398286,1.0539,4.366843 +L 1.0539,4.366843,0.9954,4.331442 +L 0.9954,4.331442,0.9414,4.292312 +L 0.9414,4.292312,0.8929,4.249458 +L 0.8929,4.249458,0.8488,4.202875 +L 0.8488,4.202875,0.8096,4.152566 +L 0.8096,4.152566,0.7759,4.098531 +L 0.7759,4.098531,0.7467,4.040769 +L 0.7467,4.040769,0.7224,3.979281 +L 0.7224,3.979281,0.1546,3.979281 +L 0.1546,3.979281,0.331,7.681001 +L 0.331,7.681001,2.9243,7.681001 +L 2.9243,7.681001,2.7687,6.726999 +L 2.7687,6.726999,0.8537,6.726999 +L 0.8537,6.726999,0.767,4.823969 +L 0.767,4.823969,0.8765,4.897335 +L 0.8765,4.897335,0.986,4.96092 +L 0.986,4.96092,1.0965,5.014723 +L 1.0965,5.014723,1.207,5.058742 +L 1.207,5.058742,1.3185,5.09298 +L 1.3185,5.09298,1.43,5.117436 +L 1.43,5.117436,1.5419,5.132108 +L 1.5419,5.132108,1.6544,5.137 + +[6] 185 +L 1.7081,5.137,1.8448,5.128032 +L 1.8448,5.128032,1.9806,5.101132 +L 1.9806,5.101132,2.1153,5.056297 +L 2.1153,5.056297,2.2496,4.993528 +L 2.2496,4.993528,2.3834,4.912825 +L 2.3834,4.912825,2.5167,4.814186 +L 2.5167,4.814186,2.649,4.697615 +L 2.649,4.697615,2.7808,4.563109 +L 2.7808,4.563109,2.9041,4.412067 +L 2.9041,4.412067,3.0106,4.245885 +L 3.0106,4.245885,3.1013,4.064565 +L 3.1013,4.064565,3.1751,3.868105 +L 3.1751,3.868105,3.2326,3.656506 +L 3.2326,3.656506,3.2737,3.429768 +L 3.2737,3.429768,3.2985,3.187891 +L 3.2985,3.187891,3.3064,2.930875 +L 3.3064,2.930875,3.299,2.711823 +L 3.299,2.711823,3.2762,2.499369 +L 3.2762,2.499369,3.2381,2.293516 +L 3.2381,2.293516,3.1851,2.094261 +L 3.1851,2.094261,3.1172,1.901606 +L 3.1172,1.901606,3.0334,1.71555 +L 3.0334,1.71555,2.9348,1.536093 +L 2.9348,1.536093,2.8209,1.363234 +L 2.8209,1.363234,2.696,1.204274 +L 2.696,1.204274,2.5647,1.066506 +L 2.5647,1.066506,2.426,0.949936 +L 2.426,0.949936,2.2808,0.854559 +L 2.2808,0.854559,2.1282,0.780377 +L 2.1282,0.780377,1.9697,0.727389 +L 1.9697,0.727389,1.8032,0.695598 +L 1.8032,0.695598,1.6308,0.685 +L 1.6308,0.685,1.4658,0.695365 +L 1.4658,0.695365,1.3067,0.726458 +L 1.3067,0.726458,1.1536,0.77828 +L 1.1536,0.77828,1.0065,0.850832 +L 1.0065,0.850832,0.8658,0.944112 +L 0.8658,0.944112,0.731,1.058122 +L 0.731,1.058122,0.6017,1.19286 +L 0.6017,1.19286,0.4793,1.348328 +L 0.4793,1.348328,0.3668,1.537567 +L 0.3668,1.537567,0.2692,1.773622 +L 0.2692,1.773622,0.187,2.056492 +L 0.187,2.056492,0.1196,2.386176 +L 0.1196,2.386176,0.0671,2.762674 +L 0.0671,2.762674,0.0294,3.185989 +L 0.0294,3.185989,0.0071,3.656118 +L 0.0071,3.656118,-0.0003,4.173063 +L -0.0003,4.173063,0.0076,4.580965 +L 0.0076,4.580965,0.0309,4.964957 +L 0.0309,4.964957,0.0705,5.325036 +L 0.0705,5.325036,0.1255,5.661203 +L 0.1255,5.661203,0.1969,5.973458 +L 0.1969,5.973458,0.2836,6.2618 +L 0.2836,6.2618,0.3861,6.526232 +L 0.3861,6.526232,0.5046,6.766751 +L 0.5046,6.766751,0.6344,6.981028 +L 0.6344,6.981028,0.7716,7.166735 +L 0.7716,7.166735,0.9158,7.323872 +L 0.9158,7.323872,1.0674,7.452439 +L 1.0674,7.452439,1.2265,7.552435 +L 1.2265,7.552435,1.3929,7.62386 +L 1.3929,7.62386,1.5664,7.666716 +L 1.5664,7.666716,1.7472,7.681001 +L 1.7472,7.681001,1.8864,7.674788 +L 1.8864,7.674788,2.0202,7.656156 +L 2.0202,7.656156,2.149,7.625102 +L 2.149,7.625102,2.2729,7.581625 +L 2.2729,7.581625,2.3913,7.525728 +L 2.3913,7.525728,2.5043,7.457407 +L 2.5043,7.457407,2.6123,7.376665 +L 2.6123,7.376665,2.7149,7.2835 +L 2.7149,7.2835,2.809,7.182184 +L 2.809,7.182184,2.8902,7.076986 +L 2.8902,7.076986,2.9591,6.967905 +L 2.9591,6.967905,3.0151,6.854946 +L 3.0151,6.854946,3.0592,6.738103 +L 3.0592,6.738103,3.0904,6.617377 +L 3.0904,6.617377,3.1092,6.49277 +L 3.1092,6.49277,3.1152,6.364281 +L 3.1152,6.364281,2.3507,6.364281 +L 2.3507,6.364281,2.3472,6.447276 +L 2.3472,6.447276,2.3373,6.524834 +L 2.3373,6.524834,2.3205,6.596958 +L 2.3205,6.596958,2.2967,6.663649 +L 2.2967,6.663649,2.2665,6.724905 +L 2.2665,6.724905,2.2298,6.780724 +L 2.2298,6.780724,2.1857,6.831111 +L 2.1857,6.831111,2.1356,6.876062 +L 2.1356,6.876062,2.0811,6.915658 +L 2.0811,6.915658,2.0257,6.949972 +L 2.0257,6.949972,1.9687,6.979009 +L 1.9687,6.979009,1.9107,7.002766 +L 1.9107,7.002766,1.8513,7.021244 +L 1.8513,7.021244,1.7913,7.034441 +L 1.7913,7.034441,1.7294,7.042361 +L 1.7294,7.042361,1.6664,7.045001 +L 1.6664,7.045001,1.5758,7.03615 +L 1.5758,7.03615,1.4861,7.009598 +L 1.4861,7.009598,1.3969,6.965345 +L 1.3969,6.965345,1.3092,6.90339 +L 1.3092,6.90339,1.222,6.823736 +L 1.222,6.823736,1.1358,6.72638 +L 1.1358,6.72638,1.0506,6.611323 +L 1.0506,6.611323,0.9658,6.478562 +L 0.9658,6.478562,0.8866,6.325307 +L 0.8866,6.325307,0.8167,6.148762 +L 0.8167,6.148762,0.7563,5.948925 +L 0.7563,5.948925,0.7047,5.725798 +L 0.7047,5.725798,0.6631,5.479378 +L 0.6631,5.479378,0.6309,5.209668 +L 0.6309,5.209668,0.6076,4.916666 +L 0.6076,4.916666,0.5942,4.600375 +L 0.5942,4.600375,0.7122,4.726147 +L 0.7122,4.726147,0.836,4.835148 +L 0.836,4.835148,0.9663,4.927381 +L 0.9663,4.927381,1.1026,5.002843 +L 1.1026,5.002843,1.2448,5.061537 +L 1.2448,5.061537,1.3934,5.103461 +L 1.3934,5.103461,1.5475,5.128615 +L 1.5475,5.128615,1.7081,5.137 +L 1.553,1.321,1.6595,1.327327 +L 1.6595,1.327327,1.7611,1.34631 +L 1.7611,1.34631,1.8577,1.377947 +L 1.8577,1.377947,1.9494,1.422238 +L 1.9494,1.422238,2.0356,1.479185 +L 2.0356,1.479185,2.1173,1.548786 +L 2.1173,1.548786,2.1936,1.631043 +L 2.1936,1.631043,2.2655,1.725953 +L 2.2655,1.725953,2.3304,1.833363 +L 2.3304,1.833363,2.3864,1.953118 +L 2.3864,1.953118,2.4339,2.085217 +L 2.4339,2.085217,2.4726,2.22966 +L 2.4726,2.22966,2.5028,2.386448 +L 2.5028,2.386448,2.5246,2.55558 +L 2.5246,2.55558,2.5375,2.737055 +L 2.5375,2.737055,2.5419,2.930875 +L 2.5419,2.930875,2.538,3.13339 +L 2.538,3.13339,2.5266,3.321077 +L 2.5266,3.321077,2.5077,3.493936 +L 2.5077,3.493936,2.4815,3.651965 +L 2.4815,3.651965,2.4478,3.795166 +L 2.4478,3.795166,2.4067,3.923538 +L 2.4067,3.923538,2.3576,4.037082 +L 2.3576,4.037082,2.3011,4.135796 +L 2.3011,4.135796,2.2392,4.221392 +L 2.2392,4.221392,2.1743,4.295573 +L 2.1743,4.295573,2.1054,4.358343 +L 2.1054,4.358343,2.0336,4.409699 +L 2.0336,4.409699,1.9578,4.449644 +L 1.9578,4.449644,1.8795,4.478175 +L 1.8795,4.478175,1.7967,4.495294 +L 1.7967,4.495294,1.711,4.501 +L 1.711,4.501,1.5827,4.495915 +L 1.5827,4.495915,1.4633,4.48066 +L 1.4633,4.48066,1.3528,4.455234 +L 1.3528,4.455234,1.2507,4.419636 +L 1.2507,4.419636,1.1581,4.373871 +L 1.1581,4.373871,1.0744,4.317933 +L 1.0744,4.317933,0.999,4.251825 +L 0.999,4.251825,0.9331,4.175546 +L 0.9331,4.175546,0.8742,4.09135 +L 0.8742,4.09135,0.8207,4.001485 +L 0.8207,4.001485,0.7726,3.905953 +L 0.7726,3.905953,0.7295,3.804753 +L 0.7295,3.804753,0.6923,3.697887 +L 0.6923,3.697887,0.6601,3.585352 +L 0.6601,3.585352,0.6334,3.467151 +L 0.6334,3.467151,0.6121,3.343281 +L 0.6121,3.343281,0.6279,3.043797 +L 0.6279,3.043797,0.6502,2.77141 +L 0.6502,2.77141,0.6795,2.526116 +L 0.6795,2.526116,0.7146,2.307918 +L 0.7146,2.307918,0.7568,2.116815 +L 0.7568,2.116815,0.8048,1.952807 +L 0.8048,1.952807,0.8598,1.815895 +L 0.8598,1.815895,0.9213,1.706079 +L 0.9213,1.706079,0.9876,1.615826 +L 0.9876,1.615826,1.0575,1.537607 +L 1.0575,1.537607,1.1313,1.471421 +L 1.1313,1.471421,1.2081,1.41727 +L 1.2081,1.41727,1.2889,1.375152 +L 1.2889,1.375152,1.3736,1.345068 +L 1.3736,1.345068,1.4613,1.327017 +L 1.4613,1.327017,1.553,1.321 + +[7] 7 +L -0.0007,7.681001,2.8522,7.681001 +L 2.8522,7.681001,2.8522,6.811469 +L 2.8522,6.811469,1.1647,0.461406 +L 1.1647,0.461406,0.522,0.461406 +L 0.522,0.461406,2.1323,6.726999 +L 2.1323,6.726999,-0.0007,6.726999 +L -0.0007,6.726999,-0.0007,7.681001 + +[8] 256 +L 0,2.642687,0.0039,2.823231 +L 0.0039,2.823231,0.0163,2.992208 +L 0.0163,2.992208,0.0366,3.149617 +L 0.0366,3.149617,0.0654,3.295457 +L 0.0654,3.295457,0.1025,3.42973 +L 0.1025,3.42973,0.1476,3.552435 +L 0.1476,3.552435,0.2011,3.663572 +L 0.2011,3.663572,0.2626,3.763141 +L 0.2626,3.763141,0.3295,3.854092 +L 0.3295,3.854092,0.3983,3.939376 +L 0.3983,3.939376,0.4692,4.018992 +L 0.4692,4.018992,0.542,4.092942 +L 0.542,4.092942,0.6173,4.161224 +L 0.6173,4.161224,0.6941,4.223837 +L 0.6941,4.223837,0.7734,4.280784 +L 0.7734,4.280784,0.8542,4.332063 +L 0.8542,4.332063,0.7714,4.394171 +L 0.7714,4.394171,0.6941,4.46125 +L 0.6941,4.46125,0.6223,4.533296 +L 0.6223,4.533296,0.5569,4.610312 +L 0.5569,4.610312,0.4964,4.692296 +L 0.4964,4.692296,0.4424,4.779249 +L 0.4424,4.779249,0.3939,4.871172 +L 0.3939,4.871172,0.3508,4.968063 +L 0.3508,4.968063,0.3136,5.07 +L 0.3136,5.07,0.2809,5.17706 +L 0.2809,5.17706,0.2536,5.289245 +L 0.2536,5.289245,0.2309,5.406554 +L 0.2309,5.406554,0.2135,5.528988 +L 0.2135,5.528988,0.2011,5.656545 +L 0.2011,5.656545,0.1937,5.789228 +L 0.1937,5.789228,0.1912,5.927031 +L 0.1912,5.927031,0.1982,6.091584 +L 0.1982,6.091584,0.2185,6.252328 +L 0.2185,6.252328,0.2527,6.409272 +L 0.2527,6.409272,0.3012,6.56241 +L 0.3012,6.56241,0.3626,6.711744 +L 0.3626,6.711744,0.438,6.857274 +L 0.438,6.857274,0.5271,6.999 +L 0.5271,6.999,0.6302,7.136922 +L 0.6302,7.136922,0.7432,7.26444 +L 0.7432,7.26444,0.8631,7.374956 +L 0.8631,7.374956,0.9894,7.46847 +L 0.9894,7.46847,1.1227,7.544981 +L 1.1227,7.544981,1.2619,7.60449 +L 1.2619,7.60449,1.4081,7.646996 +L 1.4081,7.646996,1.5612,7.672499 +L 1.5612,7.672499,1.7207,7.681001 +L 1.7207,7.681001,1.8803,7.672499 +L 1.8803,7.672499,2.0334,7.646996 +L 2.0334,7.646996,2.1795,7.60449 +L 2.1795,7.60449,2.3188,7.544981 +L 2.3188,7.544981,2.452,7.46847 +L 2.452,7.46847,2.5784,7.374956 +L 2.5784,7.374956,2.6983,7.26444 +L 2.6983,7.26444,2.8113,7.136922 +L 2.8113,7.136922,2.9143,6.999 +L 2.9143,6.999,3.0035,6.857274 +L 3.0035,6.857274,3.0788,6.711744 +L 3.0788,6.711744,3.1402,6.56241 +L 3.1402,6.56241,3.1888,6.409272 +L 3.1888,6.409272,3.223,6.252328 +L 3.223,6.252328,3.2433,6.091584 +L 3.2433,6.091584,3.2502,5.927031 +L 3.2502,5.927031,3.2473,5.789304 +L 3.2473,5.789304,3.2383,5.656856 +L 3.2383,5.656856,3.2235,5.529687 +L 3.2235,5.529687,3.2027,5.407796 +L 3.2027,5.407796,3.1759,5.291187 +L 3.1759,5.291187,3.1437,5.179855 +L 3.1437,5.179855,3.1051,5.073804 +L 3.1051,5.073804,3.0605,4.973032 +L 3.0605,4.973032,3.0109,4.876839 +L 3.0109,4.876839,2.9564,4.784529 +L 2.9564,4.784529,2.897,4.696102 +L 2.897,4.696102,2.8331,4.611554 +L 2.8331,4.611554,2.7647,4.53089 +L 2.7647,4.53089,2.6914,4.454108 +L 2.6914,4.454108,2.6131,4.381206 +L 2.6131,4.381206,2.5303,4.312187 +L 2.5303,4.312187,2.6076,4.258812 +L 2.6076,4.258812,2.6849,4.200546 +L 2.6849,4.200546,2.7617,4.137389 +L 2.7617,4.137389,2.8385,4.069339 +L 2.8385,4.069339,2.9143,3.9964 +L 2.9143,3.9964,2.9906,3.918569 +L 2.9906,3.918569,3.0659,3.835848 +L 3.0659,3.835848,3.1412,3.748234 +L 3.1412,3.748234,3.2116,3.652158 +L 3.2116,3.652158,3.2725,3.54405 +L 3.2725,3.54405,3.3241,3.423907 +L 3.3241,3.423907,3.3662,3.29173 +L 3.3662,3.29173,3.3994,3.14752 +L 3.3994,3.14752,3.4227,2.991277 +L 3.4227,2.991277,3.437,2.822999 +L 3.437,2.822999,3.4415,2.642687 +L 3.4415,2.642687,3.4336,2.439396 +L 3.4336,2.439396,3.4093,2.244411 +L 3.4093,2.244411,3.3692,2.057733 +L 3.3692,2.057733,3.3127,1.879362 +L 3.3127,1.879362,3.2403,1.7093 +L 3.2403,1.7093,3.1516,1.547544 +L 3.1516,1.547544,3.0471,1.394094 +L 3.0471,1.394094,2.9262,1.248953 +L 2.9262,1.248953,2.7944,1.116777 +L 2.7944,1.116777,2.6577,1.002224 +L 2.6577,1.002224,2.515,0.905294 +L 2.515,0.905294,2.3673,0.825988 +L 2.3673,0.825988,2.2137,0.764306 +L 2.2137,0.764306,2.0547,0.720247 +L 2.0547,0.720247,1.8907,0.693812 +L 1.8907,0.693812,1.7207,0.685 +L 1.7207,0.685,1.5508,0.693812 +L 1.5508,0.693812,1.3868,0.720247 +L 1.3868,0.720247,1.2277,0.764306 +L 1.2277,0.764306,1.0741,0.825988 +L 1.0741,0.825988,0.9265,0.905294 +L 0.9265,0.905294,0.7838,1.002224 +L 0.7838,1.002224,0.647,1.116777 +L 0.647,1.116777,0.5153,1.248953 +L 0.5153,1.248953,0.3944,1.394094 +L 0.3944,1.394094,0.2898,1.547544 +L 0.2898,1.547544,0.2011,1.7093 +L 0.2011,1.7093,0.1288,1.879362 +L 0.1288,1.879362,0.0723,2.057733 +L 0.0723,2.057733,0.0322,2.244411 +L 0.0322,2.244411,0.0079,2.439396 +L 0.0079,2.439396,0,2.642687 +L 0.765,2.543312,0.7689,2.394173 +L 0.7689,2.394173,0.7813,2.254815 +L 0.7813,2.254815,0.8021,2.125239 +L 0.8021,2.125239,0.8314,2.005446 +L 0.8314,2.005446,0.8685,1.895434 +L 0.8685,1.895434,0.9141,1.795205 +L 0.9141,1.795205,0.9681,1.704758 +L 0.9681,1.704758,1.0305,1.624094 +L 1.0305,1.624094,1.0994,1.553057 +L 1.0994,1.553057,1.1732,1.491491 +L 1.1732,1.491491,1.2525,1.439396 +L 1.2525,1.439396,1.3362,1.396773 +L 1.3362,1.396773,1.4249,1.363623 +L 1.4249,1.363623,1.5186,1.339943 +L 1.5186,1.339943,1.6172,1.325736 +L 1.6172,1.325736,1.7207,1.321 +L 1.7207,1.321,1.8243,1.325736 +L 1.8243,1.325736,1.9229,1.339943 +L 1.9229,1.339943,2.0165,1.363623 +L 2.0165,1.363623,2.1052,1.396773 +L 2.1052,1.396773,2.1889,1.439396 +L 2.1889,1.439396,2.2682,1.491491 +L 2.2682,1.491491,2.342,1.553057 +L 2.342,1.553057,2.4109,1.624094 +L 2.4109,1.624094,2.4733,1.704758 +L 2.4733,1.704758,2.5273,1.795205 +L 2.5273,1.795205,2.5729,1.895434 +L 2.5729,1.895434,2.6101,2.005446 +L 2.6101,2.005446,2.6393,2.125239 +L 2.6393,2.125239,2.6601,2.254815 +L 2.6601,2.254815,2.6725,2.394173 +L 2.6725,2.394173,2.6765,2.543312 +L 2.6765,2.543312,2.6725,2.680069 +L 2.6725,2.680069,2.6606,2.807122 +L 2.6606,2.807122,2.6408,2.92447 +L 2.6408,2.92447,2.6131,3.032113 +L 2.6131,3.032113,2.5769,3.130052 +L 2.5769,3.130052,2.5328,3.218286 +L 2.5328,3.218286,2.4813,3.296815 +L 2.4813,3.296815,2.4213,3.36564 +L 2.4213,3.36564,2.3524,3.429885 +L 2.3524,3.429885,2.2747,3.494673 +L 2.2747,3.494673,2.187,3.560004 +L 2.187,3.560004,2.0899,3.625879 +L 2.0899,3.625879,1.9838,3.692297 +L 1.9838,3.692297,1.8674,3.759259 +L 1.8674,3.759259,1.742,3.826764 +L 1.742,3.826764,1.6073,3.894812 +L 1.6073,3.894812,1.5146,3.847803 +L 1.5146,3.847803,1.4269,3.796214 +L 1.4269,3.796214,1.3437,3.740044 +L 1.3437,3.740044,1.2649,3.679293 +L 1.2649,3.679293,1.1906,3.613962 +L 1.1906,3.613962,1.1212,3.54405 +L 1.1212,3.54405,1.0563,3.469557 +L 1.0563,3.469557,0.9964,3.390483 +L 0.9964,3.390483,0.9418,3.306054 +L 0.9418,3.306054,0.8948,3.215492 +L 0.8948,3.215492,0.8551,3.118794 +L 0.8551,3.118794,0.8224,3.015965 +L 0.8224,3.015965,0.7972,2.907002 +L 0.7972,2.907002,0.7793,2.791905 +L 0.7793,2.791905,0.7684,2.670675 +L 0.7684,2.670675,0.765,2.543312 +L 2.4852,6.026406,2.4823,6.144686 +L 2.4823,6.144686,2.4728,6.256054 +L 2.4728,6.256054,2.4565,6.360517 +L 2.4565,6.360517,2.4342,6.458066 +L 2.4342,6.458066,2.4055,6.548708 +L 2.4055,6.548708,2.3703,6.632438 +L 2.3703,6.632438,2.3287,6.709261 +L 2.3287,6.709261,2.2811,6.779172 +L 2.2811,6.779172,2.2276,6.841476 +L 2.2276,6.841476,2.1691,6.895472 +L 2.1691,6.895472,2.1062,6.941162 +L 2.1062,6.941162,2.0383,6.978542 +L 2.0383,6.978542,1.966,7.007618 +L 1.966,7.007618,1.8892,7.028387 +L 1.8892,7.028387,1.8074,7.040846 +L 1.8074,7.040846,1.7207,7.045001 +L 1.7207,7.045001,1.634,7.040846 +L 1.634,7.040846,1.5523,7.028387 +L 1.5523,7.028387,1.4755,7.007618 +L 1.4755,7.007618,1.4031,6.978542 +L 1.4031,6.978542,1.3353,6.941162 +L 1.3353,6.941162,1.2723,6.895472 +L 1.2723,6.895472,1.2139,6.841476 +L 1.2139,6.841476,1.1604,6.779172 +L 1.1604,6.779172,1.1128,6.709261 +L 1.1128,6.709261,1.0712,6.632438 +L 1.0712,6.632438,1.036,6.548708 +L 1.036,6.548708,1.0073,6.458066 +L 1.0073,6.458066,0.985,6.360517 +L 0.985,6.360517,0.9686,6.256054 +L 0.9686,6.256054,0.9592,6.144686 +L 0.9592,6.144686,0.9562,6.026406 +L 0.9562,6.026406,0.9577,5.898034 +L 0.9577,5.898034,0.9632,5.778744 +L 0.9632,5.778744,0.9726,5.668539 +L 0.9726,5.668539,0.9855,5.567418 +L 0.9855,5.567418,1.0018,5.475379 +L 1.0018,5.475379,1.0221,5.392425 +L 1.0221,5.392425,1.0464,5.318554 +L 1.0464,5.318554,1.0741,5.253766 +L 1.0741,5.253766,1.1118,5.192782 +L 1.1118,5.192782,1.1668,5.130324 +L 1.1668,5.130324,1.2386,5.06639 +L 1.2386,5.06639,1.3273,5.000981 +L 1.3273,5.000981,1.4334,4.934097 +L 1.4334,4.934097,1.5557,4.865738 +L 1.5557,4.865738,1.6955,4.795904 +L 1.6955,4.795904,1.852,4.724594 +L 1.852,4.724594,1.9184,4.764383 +L 1.9184,4.764383,1.9823,4.809217 +L 1.9823,4.809217,2.0433,4.859099 +L 2.0433,4.859099,2.1012,4.914028 +L 2.1012,4.914028,2.1562,4.974002 +L 2.1562,4.974002,2.2088,5.039022 +L 2.2088,5.039022,2.2583,5.10909 +L 2.2583,5.10909,2.3049,5.184204 +L 2.3049,5.184204,2.347,5.265294 +L 2.347,5.265294,2.3837,5.353296 +L 2.3837,5.353296,2.4149,5.448207 +L 2.4149,5.448207,2.4401,5.550028 +L 2.4401,5.550028,2.46,5.658758 +L 2.46,5.658758,2.4743,5.774398 +L 2.4743,5.774398,2.4828,5.896948 +L 2.4828,5.896948,2.4852,6.026406 + +[9] 185 +L 1.5975,3.229,1.4612,3.237966 +L 1.4612,3.237966,1.3255,3.264868 +L 1.3255,3.264868,1.1907,3.309703 +L 1.1907,3.309703,1.0559,3.372472 +L 1.0559,3.372472,0.9222,3.453176 +L 0.9222,3.453176,0.7894,3.551814 +L 0.7894,3.551814,0.6566,3.668385 +L 0.6566,3.668385,0.5248,3.802891 +L 0.5248,3.802891,0.4019,3.953933 +L 0.4019,3.953933,0.2949,4.120114 +L 0.2949,4.120114,0.2047,4.301436 +L 0.2047,4.301436,0.1304,4.497895 +L 0.1304,4.497895,0.0729,4.709493 +L 0.0729,4.709493,0.0323,4.936232 +L 0.0323,4.936232,0.0075,5.178108 +L 0.0075,5.178108,-0.0009,5.435124 +L -0.0009,5.435124,0.007,5.654178 +L 0.007,5.654178,0.0293,5.866631 +L 0.0293,5.866631,0.0675,6.072485 +L 0.0675,6.072485,0.1205,6.271739 +L 0.1205,6.271739,0.1889,6.464393 +L 0.1889,6.464393,0.2721,6.650451 +L 0.2721,6.650451,0.3712,6.829908 +L 0.3712,6.829908,0.4847,7.002766 +L 0.4847,7.002766,0.6095,7.161726 +L 0.6095,7.161726,0.7413,7.299494 +L 0.7413,7.299494,0.8796,7.416066 +L 0.8796,7.416066,1.0252,7.511442 +L 1.0252,7.511442,1.1773,7.585625 +L 1.1773,7.585625,1.3364,7.638611 +L 1.3364,7.638611,1.5024,7.670403 +L 1.5024,7.670403,1.6753,7.681001 +L 1.6753,7.681001,1.8403,7.670637 +L 1.8403,7.670637,1.9993,7.639542 +L 1.9993,7.639542,2.1524,7.587719 +L 2.1524,7.587719,2.2991,7.51517 +L 2.2991,7.51517,2.4403,7.421888 +L 2.4403,7.421888,2.5751,7.307878 +L 2.5751,7.307878,2.7039,7.173138 +L 2.7039,7.173138,2.8268,7.017673 +L 2.8268,7.017673,2.9392,6.828433 +L 2.9392,6.828433,3.0368,6.592379 +L 3.0368,6.592379,3.1191,6.309509 +L 3.1191,6.309509,3.1865,5.979824 +L 3.1865,5.979824,3.239,5.603325 +L 3.239,5.603325,3.2766,5.18001 +L 3.2766,5.18001,3.2989,4.709882 +L 3.2989,4.709882,3.3064,4.192938 +L 3.3064,4.192938,3.2984,3.785034 +L 3.2984,3.785034,3.2747,3.401043 +L 3.2747,3.401043,3.2355,3.040964 +L 3.2355,3.040964,3.1805,2.704797 +L 3.1805,2.704797,3.1092,2.392541 +L 3.1092,2.392541,3.0225,2.1042 +L 3.0225,2.1042,2.9199,1.839768 +L 2.9199,1.839768,2.8015,1.599249 +L 2.8015,1.599249,2.6717,1.384973 +L 2.6717,1.384973,2.5344,1.199266 +L 2.5344,1.199266,2.3902,1.042129 +L 2.3902,1.042129,2.2381,0.913562 +L 2.2381,0.913562,2.0796,0.813566 +L 2.0796,0.813566,1.9131,0.742141 +L 1.9131,0.742141,1.7397,0.699285 +L 1.7397,0.699285,1.5588,0.685 +L 1.5588,0.685,1.4196,0.691211 +L 1.4196,0.691211,1.2853,0.709843 +L 1.2853,0.709843,1.1565,0.740898 +L 1.1565,0.740898,1.0332,0.784374 +L 1.0332,0.784374,0.9147,0.840273 +L 0.9147,0.840273,0.8013,0.908594 +L 0.8013,0.908594,0.6933,0.989336 +L 0.6933,0.989336,0.5907,1.0825 +L 0.5907,1.0825,0.4971,1.183816 +L 0.4971,1.183816,0.4158,1.289013 +L 0.4158,1.289013,0.3469,1.398094 +L 0.3469,1.398094,0.2904,1.511054 +L 0.2904,1.511054,0.2468,1.627898 +L 0.2468,1.627898,0.2156,1.748624 +L 0.2156,1.748624,0.1968,1.87323 +L 0.1968,1.87323,0.1904,2.001719 +L 0.1904,2.001719,0.9554,2.001719 +L 0.9554,2.001719,0.9588,1.918725 +L 0.9588,1.918725,0.9687,1.841166 +L 0.9687,1.841166,0.9856,1.769042 +L 0.9856,1.769042,1.0089,1.702351 +L 1.0089,1.702351,1.0391,1.641096 +L 1.0391,1.641096,1.0763,1.585276 +L 1.0763,1.585276,1.1199,1.53489 +L 1.1199,1.53489,1.1704,1.489938 +L 1.1704,1.489938,1.2249,1.450343 +L 1.2249,1.450343,1.2804,1.416028 +L 1.2804,1.416028,1.3374,1.386991 +L 1.3374,1.386991,1.3953,1.363234 +L 1.3953,1.363234,1.4543,1.344756 +L 1.4543,1.344756,1.5148,1.331559 +L 1.5148,1.331559,1.5767,1.32364 +L 1.5767,1.32364,1.6396,1.321 +L 1.6396,1.321,1.7298,1.329851 +L 1.7298,1.329851,1.82,1.356402 +L 1.82,1.356402,1.9086,1.400654 +L 1.9086,1.400654,1.9963,1.46261 +L 1.9963,1.46261,2.0835,1.542265 +L 2.0835,1.542265,2.1693,1.63962 +L 2.1693,1.63962,2.2545,1.754678 +L 2.2545,1.754678,2.3382,1.887437 +L 2.3382,1.887437,2.4175,2.040692 +L 2.4175,2.040692,2.4874,2.217238 +L 2.4874,2.217238,2.5478,2.417075 +L 2.5478,2.417075,2.5993,2.640203 +L 2.5993,2.640203,2.6414,2.886622 +L 2.6414,2.886622,2.6741,3.156332 +L 2.6741,3.156332,2.6974,3.449333 +L 2.6974,3.449333,2.7118,3.765625 +L 2.7118,3.765625,2.5939,3.639853 +L 2.5939,3.639853,2.47,3.530852 +L 2.47,3.530852,2.3397,3.438619 +L 2.3397,3.438619,2.2035,3.363156 +L 2.2035,3.363156,2.0608,3.304462 +L 2.0608,3.304462,1.9126,3.262539 +L 1.9126,3.262539,1.758,3.237385 +L 1.758,3.237385,1.5975,3.229 +L 1.7531,7.045001,1.6465,7.038672 +L 1.6465,7.038672,1.545,7.01969 +L 1.545,7.01969,1.4484,6.988053 +L 1.4484,6.988053,1.3567,6.943763 +L 1.3567,6.943763,1.27,6.886815 +L 1.27,6.886815,1.1887,6.817215 +L 1.1887,6.817215,1.1119,6.734958 +L 1.1119,6.734958,1.0406,6.640048 +L 1.0406,6.640048,0.9757,6.532636 +L 0.9757,6.532636,0.9197,6.412882 +L 0.9197,6.412882,0.8721,6.280783 +L 0.8721,6.280783,0.833,6.13634 +L 0.833,6.13634,0.8028,5.979552 +L 0.8028,5.979552,0.7815,5.81042 +L 0.7815,5.81042,0.7686,5.628945 +L 0.7686,5.628945,0.7641,5.435124 +L 0.7641,5.435124,0.7676,5.232609 +L 0.7676,5.232609,0.779,5.044923 +L 0.779,5.044923,0.7978,4.872065 +L 0.7978,4.872065,0.8241,4.714035 +L 0.8241,4.714035,0.8578,4.570834 +L 0.8578,4.570834,0.8994,4.442462 +L 0.8994,4.442462,0.9479,4.328918 +L 0.9479,4.328918,1.0044,4.230204 +L 1.0044,4.230204,1.0664,4.144608 +L 1.0664,4.144608,1.1318,4.070427 +L 1.1318,4.070427,1.2001,4.007657 +L 1.2001,4.007657,1.2725,3.956301 +L 1.2725,3.956301,1.3478,3.916356 +L 1.3478,3.916356,1.4266,3.887826 +L 1.4266,3.887826,1.5088,3.870706 +L 1.5088,3.870706,1.5945,3.865 +L 1.5945,3.865,1.7228,3.870085 +L 1.7228,3.870085,1.8428,3.885341 +L 1.8428,3.885341,1.9532,3.910767 +L 1.9532,3.910767,2.0548,3.946363 +L 2.0548,3.946363,2.148,3.99213 +L 2.148,3.99213,2.2317,4.048067 +L 2.2317,4.048067,2.3065,4.114175 +L 2.3065,4.114175,2.3729,4.190453 +L 2.3729,4.190453,2.4319,4.274649 +L 2.4319,4.274649,2.4854,4.364515 +L 2.4854,4.364515,2.5334,4.460046 +L 2.5334,4.460046,2.5765,4.561245 +L 2.5765,4.561245,2.6137,4.668113 +L 2.6137,4.668113,2.6459,4.780647 +L 2.6459,4.780647,2.6727,4.898849 +L 2.6727,4.898849,2.694,5.022719 +L 2.694,5.022719,2.6781,5.322202 +L 2.6781,5.322202,2.6558,5.594592 +L 2.6558,5.594592,2.6266,5.839884 +L 2.6266,5.839884,2.5914,6.058082 +L 2.5914,6.058082,2.5493,6.249185 +L 2.5493,6.249185,2.5007,6.413193 +L 2.5007,6.413193,2.4462,6.550105 +L 2.4462,6.550105,2.3848,6.659921 +L 2.3848,6.659921,2.3184,6.750174 +L 2.3184,6.750174,2.2485,6.828392 +L 2.2485,6.828392,2.1747,6.89458 +L 2.1747,6.89458,2.0974,6.948731 +L 2.0974,6.948731,2.0167,6.990848 +L 2.0167,6.990848,1.9324,7.020932 +L 1.9324,7.020932,1.8447,7.038984 +L 1.8447,7.038984,1.7531,7.045001 + +[:] 8 +L 0.9556,4.501,-0.0004,4.501 +L -0.0004,4.501,-0.0004,5.773 +L -0.0004,5.773,0.9556,5.773 +L 0.9556,5.773,0.9556,4.501 +L 0.9556,1.321,-0.0004,1.321 +L -0.0004,1.321,-0.0004,2.592999 +L -0.0004,2.592999,0.9556,2.592999 +L 0.9556,2.592999,0.9556,1.321 + +[;] 11 +L 0.9555,4.501,-0.0005,4.501 +L -0.0005,4.501,-0.0005,5.773 +L -0.0005,5.773,0.9555,5.773 +L 0.9555,5.773,0.9555,4.501 +L 0.9555,1.504843,0.409,0.123531 +L 0.409,0.123531,0.167,0.123531 +L 0.167,0.123531,0.3939,1.321 +L 0.3939,1.321,-0.0005,1.321 +L -0.0005,1.321,-0.0005,2.592999 +L -0.0005,2.592999,0.9555,2.592999 +L 0.9555,2.592999,0.9555,1.504843 + +[<] 14 +L 3.5907,0.173219,3.2563,-0.273969 +L 3.2563,-0.273969,0.0655,3.855063 +L 0.0655,3.855063,0.0367,3.901101 +L 0.0367,3.901101,0.0159,3.947295 +L 0.0159,3.947295,0.004,3.993644 +L 0.004,3.993644,-0.0004,4.040148 +L -0.0004,4.040148,0.004,4.086808 +L 0.004,4.086808,0.0159,4.133623 +L 0.0159,4.133623,0.0367,4.180593 +L 0.0367,4.180593,0.0655,4.227719 +L 0.0655,4.227719,3.2563,8.351785 +L 3.2563,8.351785,3.5907,7.904597 +L 3.5907,7.904597,0.6031,4.048843 +L 0.6031,4.048843,3.5907,0.173219 + +[=] 8 +L -0.0006,5.455,3.3637,5.455 +L 3.3637,5.455,3.3637,4.819 +L 3.3637,4.819,-0.0006,4.819 +L -0.0006,4.819,-0.0006,5.455 +L -0.0006,3.547,3.3637,3.547 +L 3.3637,3.547,3.3637,2.911 +L 3.3637,2.911,-0.0006,2.911 +L -0.0006,2.911,-0.0006,3.547 + +[>] 14 +L -0.0008,0.173219,2.9839,4.048843 +L 2.9839,4.048843,-0.0008,7.904597 +L -0.0008,7.904597,0.3337,8.351785 +L 0.3337,8.351785,3.5245,4.227719 +L 3.5245,4.227719,3.5527,4.180593 +L 3.5527,4.180593,3.573,4.133623 +L 3.573,4.133623,3.5849,4.086808 +L 3.5849,4.086808,3.5889,4.040148 +L 3.5889,4.040148,3.5849,3.993644 +L 3.5849,3.993644,3.573,3.947295 +L 3.573,3.947295,3.5527,3.901101 +L 3.5527,3.901101,3.5245,3.855063 +L 3.5245,3.855063,0.3337,-0.273969 +L 0.3337,-0.273969,-0.0008,0.173219 + +[?] 170 +L 1.3382,0.367,1.3382,1.321 +L 1.3382,1.321,2.1029,1.321 +L 2.1029,1.321,2.1029,0.367 +L 2.1029,0.367,1.3382,0.367 +L 1.7653,7.999001,1.8844,7.999818 +L 1.8844,7.999818,2.0016,7.992326 +L 2.0016,7.992326,2.117,7.976525 +L 2.117,7.976525,2.2303,7.952419 +L 2.2303,7.952419,2.3415,7.920007 +L 2.3415,7.920007,2.4505,7.879285 +L 2.4505,7.879285,2.5578,7.830259 +L 2.5578,7.830259,2.663,7.772922 +L 2.663,7.772922,2.7634,7.709417 +L 2.7634,7.709417,2.8565,7.641871 +L 2.8565,7.641871,2.9422,7.570291 +L 2.9422,7.570291,3.0208,7.494672 +L 3.0208,7.494672,3.0916,7.415018 +L 3.0916,7.415018,3.1553,7.331326 +L 3.1553,7.331326,3.2115,7.243595 +L 3.2115,7.243595,3.2606,7.151827 +L 3.2606,7.151827,3.3027,7.057229 +L 3.3027,7.057229,3.3396,6.960998 +L 3.3396,6.960998,3.3706,6.863137 +L 3.3706,6.863137,3.3961,6.763644 +L 3.3961,6.763644,3.4159,6.662522 +L 3.4159,6.662522,3.43,6.559771 +L 3.43,6.559771,3.4385,6.455389 +L 3.4385,6.455389,3.4412,6.349374 +L 3.4412,6.349374,3.435,6.156525 +L 3.435,6.156525,3.4164,5.975477 +L 3.4164,5.975477,3.3854,5.806228 +L 3.3854,5.806228,3.3423,5.648782 +L 3.3423,5.648782,3.2866,5.503135 +L 3.2866,5.503135,3.2185,5.369289 +L 3.2185,5.369289,3.1382,5.247245 +L 3.1382,5.247245,3.0453,5.137 +L 3.0453,5.137,2.9474,5.035142 +L 2.9474,5.035142,2.8521,4.93825 +L 2.8521,4.93825,2.7589,4.846329 +L 2.7589,4.846329,2.6682,4.759374 +L 2.6682,4.759374,2.5798,4.677392 +L 2.5798,4.677392,2.4936,4.600375 +L 2.4936,4.600375,2.4099,4.528328 +L 2.4099,4.528328,2.3284,4.46125 +L 2.3284,4.46125,2.2523,4.395259 +L 2.2523,4.395259,2.1849,4.326472 +L 2.1849,4.326472,2.126,4.254892 +L 2.126,4.254892,2.0757,4.180516 +L 2.0757,4.180516,2.0338,4.103345 +L 2.0338,4.103345,2.0004,4.023379 +L 2.0004,4.023379,1.9756,3.940618 +L 1.9756,3.940618,1.9595,3.855063 +L 1.9595,3.855063,1.9481,3.766246 +L 1.9481,3.766246,1.9384,3.673704 +L 1.9384,3.673704,1.9302,3.577434 +L 1.9302,3.577434,1.9236,3.477437 +L 1.9236,3.477437,1.9184,3.373715 +L 1.9184,3.373715,1.9146,3.266266 +L 1.9146,3.266266,1.9124,3.15509 +L 1.9124,3.15509,1.9117,3.040187 +L 1.9117,3.040187,1.9117,2.488656 +L 1.9117,2.488656,1.3382,2.488656 +L 1.3382,2.488656,1.3382,3.040187 +L 1.3382,3.040187,1.3394,3.156642 +L 1.3394,3.156642,1.3431,3.272476 +L 1.3431,3.272476,1.3496,3.387689 +L 1.3496,3.387689,1.3585,3.502281 +L 1.3585,3.502281,1.3701,3.616252 +L 1.3701,3.616252,1.3842,3.729602 +L 1.3842,3.729602,1.4008,3.84233 +L 1.4008,3.84233,1.4202,3.954437 +L 1.4202,3.954437,1.4447,4.064838 +L 1.4447,4.064838,1.4774,4.172441 +L 1.4774,4.172441,1.5183,4.27725 +L 1.5183,4.27725,1.5673,4.379267 +L 1.5673,4.379267,1.6243,4.478485 +L 1.6243,4.478485,1.6897,4.57491 +L 1.6897,4.57491,1.763,4.66854 +L 1.763,4.66854,1.8445,4.759374 +L 1.8445,4.759374,1.9283,4.848036 +L 1.9283,4.848036,2.0093,4.935145 +L 2.0093,4.935145,2.0873,5.020701 +L 2.0873,5.020701,2.1621,5.104703 +L 2.1621,5.104703,2.234,5.187154 +L 2.234,5.187154,2.3028,5.268051 +L 2.3028,5.268051,2.3687,5.347395 +L 2.3687,5.347395,2.4314,5.425187 +L 2.4314,5.425187,2.4889,5.506863 +L 2.4889,5.506863,2.5387,5.597851 +L 2.5387,5.597851,2.5808,5.698158 +L 2.5808,5.698158,2.6152,5.807782 +L 2.6152,5.807782,2.642,5.92672 +L 2.642,5.92672,2.6611,6.054977 +L 2.6611,6.054977,2.6725,6.192549 +L 2.6725,6.192549,2.6764,6.339438 +L 2.6764,6.339438,2.6744,6.430351 +L 2.6744,6.430351,2.668,6.516762 +L 2.668,6.516762,2.6576,6.598667 +L 2.6576,6.598667,2.6427,6.67607 +L 2.6427,6.67607,2.6239,6.74897 +L 2.6239,6.74897,2.6009,6.817368 +L 2.6009,6.817368,2.5734,6.881264 +L 2.5734,6.881264,2.5419,6.940656 +L 2.5419,6.940656,2.5077,6.995741 +L 2.5077,6.995741,2.4725,7.046708 +L 2.4725,7.046708,2.4361,7.093563 +L 2.4361,7.093563,2.3985,7.136301 +L 2.3985,7.136301,2.3598,7.174926 +L 2.3598,7.174926,2.3202,7.209435 +L 2.3202,7.209435,2.2793,7.239831 +L 2.2793,7.239831,2.2372,7.26611 +L 2.2372,7.26611,2.1923,7.288818 +L 2.1923,7.288818,2.143,7.308499 +L 2.143,7.308499,2.089,7.325152 +L 2.089,7.325152,2.0303,7.338777 +L 2.0303,7.338777,1.9672,7.349376 +L 1.9672,7.349376,1.8995,7.356945 +L 1.8995,7.356945,1.8272,7.361488 +L 1.8272,7.361488,1.7504,7.362999 +L 1.7504,7.362999,1.6726,7.361253 +L 1.6726,7.361253,1.5983,7.356014 +L 1.5983,7.356014,1.5272,7.34728 +L 1.5272,7.34728,1.4593,7.335052 +L 1.4593,7.335052,1.3946,7.31933 +L 1.3946,7.31933,1.3332,7.300113 +L 1.3332,7.300113,1.275,7.277407 +L 1.275,7.277407,1.22,7.251203 +L 1.22,7.251203,1.168,7.220072 +L 1.168,7.220072,1.1189,7.182573 +L 1.1189,7.182573,1.0728,7.138708 +L 1.0728,7.138708,1.0295,7.088476 +L 1.0295,7.088476,0.9891,7.031879 +L 0.9891,7.031879,0.9517,6.968916 +L 0.9517,6.968916,0.917,6.899587 +L 0.917,6.899587,0.8853,6.82389 +L 0.8853,6.82389,0.8571,6.74381 +L 0.8571,6.74381,0.8325,6.661318 +L 0.8325,6.661318,0.8117,6.576425 +L 0.8117,6.576425,0.7946,6.489122 +L 0.7946,6.489122,0.7815,6.399411 +L 0.7815,6.399411,0.7721,6.307296 +L 0.7721,6.307296,0.7664,6.212774 +L 0.7664,6.212774,0.7644,6.115844 +L 0.7644,6.115844,0.7644,5.688531 +L 0.7644,5.688531,-0.0003,5.688531 +L -0.0003,5.688531,-0.0003,6.115844 +L -0.0003,6.115844,0.0029,6.215336 +L 0.0029,6.215336,0.0123,6.317544 +L 0.0123,6.317544,0.0279,6.42247 +L 0.0279,6.42247,0.0499,6.530112 +L 0.0499,6.530112,0.0784,6.640474 +L 0.0784,6.640474,0.1131,6.753553 +L 0.1131,6.753553,0.154,6.869346 +L 0.154,6.869346,0.2013,6.98786 +L 0.2013,6.98786,0.2548,7.104393 +L 0.2548,7.104393,0.3143,7.21425 +L 0.3143,7.21425,0.3799,7.317428 +L 0.3799,7.317428,0.4515,7.413932 +L 0.4515,7.413932,0.5291,7.503757 +L 0.5291,7.503757,0.613,7.586904 +L 0.613,7.586904,0.703,7.663377 +L 0.703,7.663377,0.7988,7.733172 +L 0.7988,7.733172,0.9004,7.795476 +L 0.9004,7.795476,1.0077,7.849474 +L 1.0077,7.849474,1.1202,7.895162 +L 1.1202,7.895162,1.2383,7.932544 +L 1.2383,7.932544,1.3619,7.96162 +L 1.3619,7.96162,1.4908,7.982387 +L 1.4908,7.982387,1.6253,7.994848 +L 1.6253,7.994848,1.7653,7.999001 + +[@] 341 +L -0.0003,4.004125,0.0086,4.405701 +L 0.0086,4.405701,0.0354,4.79307 +L 0.0354,4.79307,0.0805,5.16623 +L 0.0805,5.16623,0.1434,5.525183 +L 0.1434,5.525183,0.2241,5.869929 +L 0.2241,5.869929,0.3232,6.200468 +L 0.3232,6.200468,0.4397,6.516798 +L 0.4397,6.516798,0.5744,6.818922 +L 0.5744,6.818922,0.7216,7.095502 +L 0.7216,7.095502,0.8752,7.335206 +L 0.8752,7.335206,1.0347,7.538031 +L 1.0347,7.538031,1.2007,7.703982 +L 1.2007,7.703982,1.3736,7.833054 +L 1.3736,7.833054,1.5525,7.925246 +L 1.5525,7.925246,1.7378,7.980562 +L 1.7378,7.980562,1.9295,7.999001 +L 1.9295,7.999001,2.1302,7.98196 +L 2.1302,7.98196,2.319,7.930835 +L 2.319,7.930835,2.4954,7.84563 +L 2.4954,7.84563,2.6594,7.72634 +L 2.6594,7.72634,2.8115,7.57297 +L 2.8115,7.57297,2.9512,7.385516 +L 2.9512,7.385516,3.079,7.163979 +L 3.079,7.163979,3.1945,6.90836 +L 3.1945,6.90836,3.297,6.630381 +L 3.297,6.630381,3.3862,6.341766 +L 3.3862,6.341766,3.4615,6.042517 +L 3.4615,6.042517,3.523,5.732629 +L 3.523,5.732629,3.5705,5.412106 +L 3.5705,5.412106,3.6047,5.080946 +L 3.6047,5.080946,3.6255,4.739151 +L 3.6255,4.739151,3.632,4.386718 +L 3.632,4.386718,3.627,4.153848 +L 3.627,4.153848,3.6122,3.927265 +L 3.6122,3.927265,3.5869,3.706971 +L 3.5869,3.706971,3.5512,3.492965 +L 3.5512,3.492965,3.5056,3.285248 +L 3.5056,3.285248,3.4496,3.08382 +L 3.4496,3.08382,3.3842,2.88868 +L 3.3842,2.88868,3.3079,2.699828 +L 3.3079,2.699828,3.2277,2.525728 +L 3.2277,2.525728,3.1469,2.37484 +L 3.1469,2.37484,3.0671,2.247167 +L 3.0671,2.247167,2.9879,2.142706 +L 2.9879,2.142706,2.9096,2.06146 +L 2.9096,2.06146,2.8313,2.003426 +L 2.8313,2.003426,2.7535,1.968607 +L 2.7535,1.968607,2.6762,1.956999 +L 2.6762,1.956999,2.6059,1.958863 +L 2.6059,1.958863,2.5405,1.964453 +L 2.5405,1.964453,2.4805,1.97377 +L 2.4805,1.97377,2.426,1.986812 +L 2.426,1.986812,2.377,2.003581 +L 2.377,2.003581,2.3329,2.024078 +L 2.3329,2.024078,2.2942,2.048301 +L 2.2942,2.048301,2.261,2.076249 +L 2.261,2.076249,2.2318,2.108547 +L 2.2318,2.108547,2.204,2.145812 +L 2.204,2.145812,2.1793,2.188046 +L 2.1793,2.188046,2.1565,2.23525 +L 2.1565,2.23525,2.1357,2.287422 +L 2.1357,2.287422,2.1178,2.344562 +L 2.1178,2.344562,2.1015,2.406671 +L 2.1015,2.406671,2.0876,2.47375 +L 2.0876,2.47375,2.048,2.410903 +L 2.048,2.410903,2.0078,2.351549 +L 2.0078,2.351549,1.9677,2.29569 +L 1.9677,2.29569,1.9266,2.243324 +L 1.9266,2.243324,1.8859,2.194452 +L 1.8859,2.194452,1.8443,2.149073 +L 1.8443,2.149073,1.8027,2.107188 +L 1.8027,2.107188,1.7606,2.068796 +L 1.7606,2.068796,1.717,2.03615 +L 1.717,2.03615,1.6709,2.011501 +L 1.6709,2.011501,1.6214,1.994848 +L 1.6214,1.994848,1.5693,1.986191 +L 1.5693,1.986191,1.5143,1.985531 +L 1.5143,1.985531,1.4569,1.992868 +L 1.4569,1.992868,1.3964,2.008202 +L 1.3964,2.008202,1.3335,2.031531 +L 1.3335,2.031531,1.2701,2.063711 +L 1.2701,2.063711,1.2101,2.105597 +L 1.2101,2.105597,1.1527,2.157186 +L 1.1527,2.157186,1.0977,2.218481 +L 1.0977,2.218481,1.0461,2.289479 +L 1.0461,2.289479,0.9971,2.370182 +L 0.9971,2.370182,0.951,2.460591 +L 0.951,2.460591,0.9079,2.560704 +L 0.9079,2.560704,0.8687,2.667609 +L 0.8687,2.667609,0.8351,2.778396 +L 0.8351,2.778396,0.8068,2.893065 +L 0.8068,2.893065,0.784,3.011617 +L 0.784,3.011617,0.7667,3.13405 +L 0.7667,3.13405,0.7553,3.260366 +L 0.7553,3.260366,0.7488,3.390562 +L 0.7488,3.390562,0.7479,3.524641 +L 0.7479,3.524641,0.7513,3.661475 +L 0.7513,3.661475,0.7593,3.79994 +L 0.7593,3.79994,0.7702,3.940036 +L 0.7702,3.940036,0.785,4.081761 +L 0.785,4.081761,0.8033,4.225118 +L 0.8033,4.225118,0.8256,4.370104 +L 0.8256,4.370104,0.8514,4.516722 +L 0.8514,4.516722,0.8806,4.664968 +L 0.8806,4.664968,0.9143,4.811819 +L 0.9143,4.811819,0.952,4.954243 +L 0.952,4.954243,0.9941,5.092242 +L 0.9941,5.092242,1.0402,5.225818 +L 1.0402,5.225818,1.0907,5.354965 +L 1.0907,5.354965,1.1457,5.479688 +L 1.1457,5.479688,1.2042,5.599988 +L 1.2042,5.599988,1.2676,5.71586 +L 1.2676,5.71586,1.3325,5.824164 +L 1.3325,5.824164,1.3969,5.921752 +L 1.3969,5.921752,1.4603,6.008627 +L 1.4603,6.008627,1.5233,6.08479 +L 1.5233,6.08479,1.5852,6.150237 +L 1.5852,6.150237,1.6461,6.20497 +L 1.6461,6.20497,1.7066,6.24899 +L 1.7066,6.24899,1.7665,6.282296 +L 1.7665,6.282296,1.8245,6.307258 +L 1.8245,6.307258,1.8795,6.326238 +L 1.8795,6.326238,1.932,6.339244 +L 1.932,6.339244,1.9811,6.34627 +L 1.9811,6.34627,2.0277,6.347319 +L 2.0277,6.347319,2.0717,6.342388 +L 2.0717,6.342388,2.1124,6.33148 +L 2.1124,6.33148,2.1505,6.314593 +L 2.1505,6.314593,2.1862,6.292934 +L 2.1862,6.292934,2.2204,6.2677 +L 2.2204,6.2677,2.2526,6.238898 +L 2.2526,6.238898,2.2833,6.206523 +L 2.2833,6.206523,2.3125,6.170578 +L 2.3125,6.170578,2.3398,6.131062 +L 2.3398,6.131062,2.3656,6.087972 +L 2.3656,6.087972,2.3893,6.041313 +L 2.3893,6.041313,2.4463,6.543157 +L 2.4463,6.543157,2.8645,6.543157 +L 2.8645,6.543157,2.7822,6.735308 +L 2.7822,6.735308,2.6916,6.901838 +L 2.6916,6.901838,2.5935,7.042748 +L 2.5935,7.042748,2.4874,7.15804 +L 2.4874,7.15804,2.3735,7.24771 +L 2.3735,7.24771,2.2511,7.311761 +L 2.2511,7.311761,2.1208,7.35019 +L 2.1208,7.35019,1.9831,7.362999 +L 1.9831,7.362999,1.8409,7.348638 +L 1.8409,7.348638,1.7036,7.30555 +L 1.7036,7.30555,1.5718,7.233736 +L 1.5718,7.233736,1.445,7.133194 +L 1.445,7.133194,1.3231,7.003931 +L 1.3231,7.003931,1.2062,6.845939 +L 1.2062,6.845939,1.0947,6.659222 +L 1.0947,6.659222,0.9882,6.443781 +L 0.9882,6.443781,0.891,6.204505 +L 0.891,6.204505,0.8068,5.946285 +L 0.8068,5.946285,0.7355,5.669122 +L 0.7355,5.669122,0.677,5.373016 +L 0.677,5.373016,0.6314,5.057966 +L 0.6314,5.057966,0.5992,4.723973 +L 0.5992,4.723973,0.5794,4.371036 +L 0.5794,4.371036,0.573,3.999156 +L 0.573,3.999156,0.5784,3.62879 +L 0.5784,3.62879,0.5948,3.277911 +L 0.5948,3.277911,0.6215,2.946519 +L 0.6215,2.946519,0.6592,2.634614 +L 0.6592,2.634614,0.7077,2.342195 +L 0.7077,2.342195,0.7672,2.069262 +L 0.7672,2.069262,0.837,1.815818 +L 0.837,1.815818,0.9183,1.58186 +L 0.9183,1.58186,1.01,1.371657 +L 1.01,1.371657,1.113,1.189483 +L 1.113,1.189483,1.227,1.035335 +L 1.227,1.035335,1.3518,0.909214 +L 1.3518,0.909214,1.4876,0.81112 +L 1.4876,0.81112,1.6347,0.741053 +L 1.6347,0.741053,1.7928,0.699012 +L 1.7928,0.699012,1.9622,0.685 +L 1.9622,0.685,2.0663,0.689309 +L 2.0663,0.689309,2.1674,0.702235 +L 2.1674,0.702235,2.2645,0.72378 +L 2.2645,0.72378,2.3576,0.753942 +L 2.3576,0.753942,2.4478,0.792721 +L 2.4478,0.792721,2.534,0.840118 +L 2.534,0.840118,2.6168,0.896134 +L 2.6168,0.896134,2.6955,0.960766 +L 2.6955,0.960766,2.7738,1.038364 +L 2.7738,1.038364,2.8531,1.133274 +L 2.8531,1.133274,2.9344,1.245498 +L 2.9344,1.245498,3.0166,1.375035 +L 3.0166,1.375035,3.1003,1.521885 +L 3.1003,1.521885,3.1856,1.686047 +L 3.1856,1.686047,3.2723,1.867524 +L 3.2723,1.867524,3.3605,2.066312 +L 3.3605,2.066312,3.7846,1.822843 +L 3.7846,1.822843,3.7127,1.637875 +L 3.7127,1.637875,3.6354,1.460591 +L 3.6354,1.460591,3.5527,1.290993 +L 3.5527,1.290993,3.4655,1.129082 +L 3.4655,1.129082,3.3724,0.974856 +L 3.3724,0.974856,3.2747,0.828317 +L 3.2747,0.828317,3.1712,0.689464 +L 3.1712,0.689464,3.0632,0.558296 +L 3.0632,0.558296,2.9487,0.43893 +L 2.9487,0.43893,2.8278,0.33548 +L 2.8278,0.33548,2.7005,0.247944 +L 2.7005,0.247944,2.5662,0.176324 +L 2.5662,0.176324,2.425,0.12062 +L 2.425,0.12062,2.2774,0.080831 +L 2.2774,0.080831,2.1233,0.056958 +L 2.1233,0.056958,1.9622,0.048999 +L 1.9622,0.048999,1.7437,0.067051 +L 1.7437,0.067051,1.5366,0.121202 +L 1.5366,0.121202,1.3409,0.211455 +L 1.3409,0.211455,1.1566,0.337808 +L 1.1566,0.337808,0.9837,0.500263 +L 0.9837,0.500263,0.8222,0.698819 +L 0.8222,0.698819,0.672,0.933477 +L 0.672,0.933477,0.5328,1.204235 +L 0.5328,1.204235,0.4075,1.50069 +L 0.4075,1.50069,0.2995,1.81244 +L 0.2995,1.81244,0.2078,2.139486 +L 0.2078,2.139486,0.133,2.481824 +L 0.133,2.481824,0.0745,2.839457 +L 0.0745,2.839457,0.0329,3.212386 +L 0.0329,3.212386,0.0076,3.600608 +L 0.0076,3.600608,-0.0003,4.004125 +L 2.6465,3.283656,2.6331,3.179197 +L 2.6331,3.179197,2.6222,3.08444 +L 2.6222,3.08444,2.6143,2.999389 +L 2.6143,2.999389,2.6093,2.924043 +L 2.6093,2.924043,2.6069,2.858401 +L 2.6069,2.858401,2.6073,2.802463 +L 2.6073,2.802463,2.6103,2.756231 +L 2.6103,2.756231,2.6163,2.719704 +L 2.6163,2.719704,2.6252,2.690006 +L 2.6252,2.690006,2.6371,2.664271 +L 2.6371,2.664271,2.6519,2.642494 +L 2.6519,2.642494,2.6698,2.624675 +L 2.6698,2.624675,2.6901,2.610817 +L 2.6901,2.610817,2.7134,2.600918 +L 2.7134,2.600918,2.7396,2.59498 +L 2.7396,2.59498,2.7689,2.592999 +L 2.7689,2.592999,2.7956,2.600143 +L 2.7956,2.600143,2.8254,2.62157 +L 2.8254,2.62157,2.8576,2.657282 +L 2.8576,2.657282,2.8927,2.707281 +L 2.8927,2.707281,2.9304,2.771564 +L 2.9304,2.771564,2.971,2.850133 +L 2.971,2.850133,3.0141,2.942986 +L 3.0141,2.942986,3.0602,3.050125 +L 3.0602,3.050125,3.1048,3.17054 +L 3.1048,3.17054,3.1434,3.303221 +L 3.1434,3.303221,3.1757,3.448169 +L 3.1757,3.448169,3.2024,3.605382 +L 3.2024,3.605382,3.2232,3.774863 +L 3.2232,3.774863,3.2381,3.956612 +L 3.2381,3.956612,3.247,4.150625 +L 3.247,4.150625,3.25,4.356907 +L 3.25,4.356907,3.2455,4.65736 +L 3.2455,4.65736,3.2326,4.945082 +L 3.2326,4.945082,3.2108,5.220071 +L 3.2108,5.220071,3.1806,5.482329 +L 3.1806,5.482329,3.1415,5.731852 +L 3.1415,5.731852,3.0934,5.968645 +L 3.0934,5.968645,3.0374,6.192704 +L 3.0374,6.192704,2.972,6.404031 +L 2.972,6.404031,2.6465,3.283656 +L 2.1119,3.368125,2.3358,5.410281 +L 2.3358,5.410281,2.319,5.479145 +L 2.319,5.479145,2.3011,5.541642 +L 2.3011,5.541642,2.2813,5.597773 +L 2.2813,5.597773,2.2595,5.647539 +L 2.2595,5.647539,2.2362,5.690938 +L 2.2362,5.690938,2.2115,5.727971 +L 2.2115,5.727971,2.1847,5.758638 +L 2.1847,5.758638,2.1565,5.782938 +L 2.1565,5.782938,2.1267,5.801688 +L 2.1267,5.801688,2.0955,5.8157 +L 2.0955,5.8157,2.0628,5.824978 +L 2.0628,5.824978,2.0286,5.829519 +L 2.0286,5.829519,1.9935,5.829326 +L 1.9935,5.829326,1.9563,5.824394 +L 1.9563,5.824394,1.9182,5.814731 +L 1.9182,5.814731,1.8785,5.800328 +L 1.8785,5.800328,1.8384,5.77925 +L 1.8384,5.77925,1.7973,5.749553 +L 1.7973,5.749553,1.7561,5.71124 +L 1.7561,5.71124,1.715,5.66431 +L 1.715,5.66431,1.6734,5.608759 +L 1.6734,5.608759,1.6318,5.544594 +L 1.6318,5.544594,1.5897,5.471809 +L 1.5897,5.471809,1.547,5.390406 +L 1.547,5.390406,1.5054,5.302404 +L 1.5054,5.302404,1.4658,5.209823 +L 1.4658,5.209823,1.4281,5.112661 +L 1.4281,5.112661,1.393,5.010918 +L 1.393,5.010918,1.3593,4.904595 +L 1.3593,4.904595,1.3276,4.79369 +L 1.3276,4.79369,1.2983,4.678206 +L 1.2983,4.678206,1.2706,4.558141 +L 1.2706,4.558141,1.2458,4.435978 +L 1.2458,4.435978,1.224,4.314205 +L 1.224,4.314205,1.2057,4.192821 +L 1.2057,4.192821,1.1903,4.071824 +L 1.1903,4.071824,1.1784,3.951216 +L 1.1784,3.951216,1.1695,3.830995 +L 1.1695,3.830995,1.164,3.711163 +L 1.164,3.711163,1.1616,3.591718 +L 1.1616,3.591718,1.1621,3.476157 +L 1.1621,3.476157,1.1645,3.367969 +L 1.1645,3.367969,1.1695,3.267159 +L 1.1695,3.267159,1.1764,3.173721 +L 1.1764,3.173721,1.1858,3.087663 +L 1.1858,3.087663,1.1972,3.008978 +L 1.1972,3.008978,1.2111,2.937667 +L 1.2111,2.937667,1.2275,2.873734 +L 1.2275,2.873734,1.2458,2.816516 +L 1.2458,2.816516,1.2671,2.765354 +L 1.2671,2.765354,1.2904,2.720246 +L 1.2904,2.720246,1.3171,2.681195 +L 1.3171,2.681195,1.3459,2.648199 +L 1.3459,2.648199,1.3776,2.62126 +L 1.3776,2.62126,1.4118,2.600375 +L 1.4118,2.600375,1.4484,2.585547 +L 1.4484,2.585547,1.4871,2.57654 +L 1.4871,2.57654,1.5262,2.573125 +L 1.5262,2.573125,1.5669,2.575299 +L 1.5669,2.575299,1.6085,2.583063 +L 1.6085,2.583063,1.6506,2.596415 +L 1.6506,2.596415,1.6937,2.615359 +L 1.6937,2.615359,1.7378,2.639892 +L 1.7378,2.639892,1.7829,2.670016 +L 1.7829,2.670016,1.828,2.709726 +L 1.828,2.709726,1.8721,2.763024 +L 1.8721,2.763024,1.9147,2.829908 +L 1.9147,2.829908,1.9563,2.910379 +L 1.9563,2.910379,1.9969,3.004436 +L 1.9969,3.004436,2.0361,3.112079 +L 2.0361,3.112079,2.0742,3.233309 +L 2.0742,3.233309,2.1119,3.368125 + +[A] 14 +L 3.5845,0.521031,2.9423,0.521031 +L 2.9423,0.521031,2.5271,2.592999 +L 2.5271,2.592999,1.0571,2.592999 +L 1.0571,2.592999,0.6419,0.521031 +L 0.6419,0.521031,-0.0007,0.521031 +L -0.0007,0.521031,1.4277,7.621376 +L 1.4277,7.621376,1.5144,7.621376 +L 1.5144,7.621376,2.0698,7.621376 +L 2.0698,7.621376,2.1565,7.621376 +L 2.1565,7.621376,3.5845,0.521031 +L 1.7621,6.21025,1.2241,3.547 +L 1.2241,3.547,2.3597,3.547 +L 2.3597,3.547,1.8216,6.21025 +L 1.8216,6.21025,1.7621,6.21025 + +[B] 121 +L 2.6764,2.652625,2.671,2.803939 +L 2.671,2.803939,2.6536,2.94485 +L 2.6536,2.94485,2.6249,3.075357 +L 2.6249,3.075357,2.5843,3.195461 +L 2.5843,3.195461,2.5322,3.305162 +L 2.5322,3.305162,2.4693,3.404459 +L 2.4693,3.404459,2.394,3.493353 +L 2.394,3.493353,2.3078,3.571844 +L 2.3078,3.571844,2.2082,3.640553 +L 2.2082,3.640553,2.0947,3.7001 +L 2.0947,3.7001,1.9679,3.750486 +L 1.9679,3.750486,1.8262,3.79171 +L 1.8262,3.79171,1.6706,3.823774 +L 1.6706,3.823774,1.5012,3.846677 +L 1.5012,3.846677,1.3178,3.86042 +L 1.3178,3.86042,1.1201,3.865 +L 1.1201,3.865,0.5731,3.865 +L 0.5731,3.865,0.5731,1.321 +L 0.5731,1.321,1.0453,1.321 +L 1.0453,1.321,1.297,1.32725 +L 1.297,1.32725,1.5249,1.345999 +L 1.5249,1.345999,1.7286,1.377247 +L 1.7286,1.377247,1.9084,1.420996 +L 1.9084,1.420996,2.064,1.477243 +L 2.064,1.477243,2.1963,1.545991 +L 2.1963,1.545991,2.3043,1.627238 +L 2.3043,1.627238,2.388,1.720984 +L 2.388,1.720984,2.4559,1.823037 +L 2.4559,1.823037,2.5144,1.929206 +L 2.5144,1.929206,2.5639,2.039489 +L 2.5639,2.039489,2.6046,2.153887 +L 2.6046,2.153887,2.6358,2.272399 +L 2.6358,2.272399,2.6586,2.395026 +L 2.6586,2.395026,2.672,2.521768 +L 2.672,2.521768,2.6764,2.652625 +L 2.4852,5.773,2.4812,5.885145 +L 2.4812,5.885145,2.4693,5.990539 +L 2.4693,5.990539,2.449,6.089176 +L 2.449,6.089176,2.4207,6.181059 +L 2.4207,6.181059,2.3846,6.266186 +L 2.3846,6.266186,2.34,6.344561 +L 2.34,6.344561,2.2875,6.416181 +L 2.2875,6.416181,2.227,6.481045 +L 2.227,6.481045,2.1522,6.538694 +L 2.1522,6.538694,2.0561,6.588651 +L 2.0561,6.588651,1.9396,6.630925 +L 1.9396,6.630925,1.8024,6.665511 +L 1.8024,6.665511,1.6443,6.692413 +L 1.6443,6.692413,1.4655,6.711628 +L 1.4655,6.711628,1.2658,6.723157 +L 1.2658,6.723157,1.0453,6.726999 +L 1.0453,6.726999,0.5731,6.726999 +L 0.5731,6.726999,0.5731,4.819 +L 0.5731,4.819,1.1231,4.819 +L 1.1231,4.819,1.3198,4.822843 +L 1.3198,4.822843,1.4992,4.834372 +L 1.4992,4.834372,1.6617,4.853587 +L 1.6617,4.853587,1.8069,4.880488 +L 1.8069,4.880488,1.9347,4.915076 +L 1.9347,4.915076,2.0452,4.957348 +L 2.0452,4.957348,2.1388,5.007308 +L 2.1388,5.007308,2.2151,5.064953 +L 2.2151,5.064953,2.2781,5.129819 +L 2.2781,5.129819,2.3335,5.201439 +L 2.3335,5.201439,2.3796,5.279813 +L 2.3796,5.279813,2.4178,5.364942 +L 2.4178,5.364942,2.4475,5.456824 +L 2.4475,5.456824,2.4683,5.555463 +L 2.4683,5.555463,2.4812,5.660853 +L 2.4812,5.660853,2.4852,5.773 +L -0.0001,0.367,-0.0001,7.681001 +L -0.0001,7.681001,1.1201,7.681001 +L 1.1201,7.681001,1.4115,7.673197 +L 1.4115,7.673197,1.6795,7.64979 +L 1.6795,7.64979,1.9238,7.61078 +L 1.9238,7.61078,2.1443,7.55616 +L 2.1443,7.55616,2.3415,7.485937 +L 2.3415,7.485937,2.5149,7.400111 +L 2.5149,7.400111,2.665,7.298679 +L 2.665,7.298679,2.7914,7.181642 +L 2.7914,7.181642,2.8994,7.049619 +L 2.8994,7.049619,2.992,6.903235 +L 2.992,6.903235,3.0708,6.742488 +L 3.0708,6.742488,3.1352,6.567379 +L 3.1352,6.567379,3.1858,6.377906 +L 3.1858,6.377906,3.2214,6.174071 +L 3.2214,6.174071,3.2432,5.955874 +L 3.2432,5.955874,3.2502,5.723313 +L 3.2502,5.723313,3.2412,5.524097 +L 3.2412,5.524097,3.215,5.328919 +L 3.215,5.328919,3.1709,5.137777 +L 3.1709,5.137777,3.1094,4.950672 +L 3.1094,4.950672,3.0307,4.767604 +L 3.0307,4.767604,2.9341,4.588574 +L 2.9341,4.588574,2.8201,4.413582 +L 2.8201,4.413582,2.6883,4.242626 +L 2.6883,4.242626,2.8647,4.069495 +L 2.8647,4.069495,3.0178,3.885496 +L 3.0178,3.885496,3.1471,3.690628 +L 3.1471,3.690628,3.2531,3.48489 +L 3.2531,3.48489,3.3354,3.268284 +L 3.3354,3.268284,3.3943,3.040808 +L 3.3943,3.040808,3.4295,2.802463 +L 3.4295,2.802463,3.4414,2.553249 +L 3.4414,2.553249,3.434,2.318903 +L 3.434,2.318903,3.4127,2.095348 +L 3.4127,2.095348,3.377,1.882585 +L 3.377,1.882585,3.327,1.680613 +L 3.327,1.680613,3.263,1.489433 +L 3.263,1.489433,3.1843,1.309044 +L 3.1843,1.309044,3.0916,1.139446 +L 3.0916,1.139446,2.9841,0.98064 +L 2.9841,0.98064,2.8553,0.836818 +L 2.8553,0.836818,2.6962,0.712172 +L 2.6962,0.712172,2.508,0.606703 +L 2.508,0.606703,2.2899,0.520411 +L 2.2899,0.520411,2.0417,0.453293 +L 2.0417,0.453293,1.7643,0.405352 +L 1.7643,0.405352,1.4571,0.376588 +L 1.4571,0.376588,1.1201,0.367 +L 1.1201,0.367,-0.0001,0.367 + +[C] 130 +L -0.0005,4.227719,0.0085,4.565399 +L 0.0085,4.565399,0.0337,4.892754 +L 0.0337,4.892754,0.0768,5.209785 +L 0.0768,5.209785,0.1363,5.516488 +L 0.1363,5.516488,0.2136,5.812867 +L 0.2136,5.812867,0.3072,6.09892 +L 0.3072,6.09892,0.4182,6.374645 +L 0.4182,6.374645,0.5465,6.640048 +L 0.5465,6.640048,0.6867,6.88402 +L 0.6867,6.88402,0.8349,7.095465 +L 0.8349,7.095465,0.99,7.27438 +L 0.99,7.27438,1.153,7.420762 +L 1.153,7.420762,1.3234,7.534617 +L 1.3234,7.534617,1.5008,7.615942 +L 1.5008,7.615942,1.6861,7.664736 +L 1.6861,7.664736,1.8788,7.681001 +L 1.8788,7.681001,2.0334,7.673625 +L 2.0334,7.673625,2.1841,7.651499 +L 2.1841,7.651499,2.3297,7.614622 +L 2.3297,7.614622,2.4714,7.562992 +L 2.4714,7.562992,2.6087,7.496613 +L 2.6087,7.496613,2.7415,7.415482 +L 2.7415,7.415482,2.8703,7.319601 +L 2.8703,7.319601,2.9946,7.20897 +L 2.9946,7.20897,3.1106,7.077063 +L 3.1106,7.077063,3.2146,6.917366 +L 3.2146,6.917366,3.3068,6.729873 +L 3.3068,6.729873,3.3866,6.514586 +L 3.3866,6.514586,3.4539,6.271505 +L 3.4539,6.271505,3.5094,6.00063 +L 3.5094,6.00063,3.553,5.701962 +L 3.553,5.701962,3.5847,5.3755 +L 3.5847,5.3755,2.8856,5.3755 +L 2.8856,5.3755,2.8638,5.627199 +L 2.8638,5.627199,2.8361,5.855605 +L 2.8361,5.855605,2.8019,6.060721 +L 2.8019,6.060721,2.7618,6.242545 +L 2.7618,6.242545,2.7152,6.401079 +L 2.7152,6.401079,2.6627,6.536325 +L 2.6627,6.536325,2.6037,6.648278 +L 2.6037,6.648278,2.5393,6.736938 +L 2.5393,6.736938,2.4694,6.809138 +L 2.4694,6.809138,2.3956,6.871715 +L 2.3956,6.871715,2.3188,6.924662 +L 2.3188,6.924662,2.2381,6.967985 +L 2.2381,6.967985,2.1538,7.001678 +L 2.1538,7.001678,2.0656,7.025746 +L 2.0656,7.025746,1.974,7.040188 +L 1.974,7.040188,1.8788,7.045001 +L 1.8788,7.045001,1.7698,7.033586 +L 1.7698,7.033586,1.6643,6.99935 +L 1.6643,6.99935,1.5622,6.942286 +L 1.5622,6.942286,1.4631,6.8624 +L 1.4631,6.8624,1.3675,6.759684 +L 1.3675,6.759684,1.2754,6.634147 +L 1.2754,6.634147,1.1862,6.485783 +L 1.1862,6.485783,1.1005,6.314593 +L 1.1005,6.314593,1.0217,6.122132 +L 1.0217,6.122132,0.9538,5.909952 +L 0.9538,5.909952,0.8958,5.678051 +L 0.8958,5.678051,0.8488,5.42643 +L 0.8488,5.42643,0.8116,5.15509 +L 0.8116,5.15509,0.7853,4.864029 +L 0.7853,4.864029,0.7695,4.55325 +L 0.7695,4.55325,0.7645,4.22275 +L 0.7645,4.22275,0.7695,3.88375 +L 0.7695,3.88375,0.7853,3.564856 +L 0.7853,3.564856,0.8116,3.266072 +L 0.8116,3.266072,0.8488,2.987394 +L 0.8488,2.987394,0.8958,2.728825 +L 0.8958,2.728825,0.9538,2.490364 +L 0.9538,2.490364,1.0217,2.272011 +L 1.0217,2.272011,1.1005,2.073766 +L 1.1005,2.073766,1.1862,1.897336 +L 1.1862,1.897336,1.2754,1.744431 +L 1.2754,1.744431,1.3675,1.615048 +L 1.3675,1.615048,1.4631,1.509192 +L 1.4631,1.509192,1.5622,1.426857 +L 1.5622,1.426857,1.6643,1.368048 +L 1.6643,1.368048,1.7698,1.332762 +L 1.7698,1.332762,1.8788,1.321 +L 1.8788,1.321,1.9844,1.326628 +L 1.9844,1.326628,2.086,1.343515 +L 2.086,1.343515,2.1836,1.371657 +L 2.1836,1.371657,2.2767,1.411058 +L 2.2767,1.411058,2.3664,1.461716 +L 2.3664,1.461716,2.4521,1.523631 +L 2.4521,1.523631,2.5334,1.596805 +L 2.5334,1.596805,2.6107,1.681234 +L 2.6107,1.681234,2.6825,1.783832 +L 2.6825,1.783832,2.7464,1.911505 +L 2.7464,1.911505,2.8029,2.064254 +L 2.8029,2.064254,2.8519,2.242081 +L 2.8519,2.242081,2.8936,2.444986 +L 2.8936,2.444986,2.9273,2.672966 +L 2.9273,2.672966,2.9535,2.926023 +L 2.9535,2.926023,2.9723,3.204156 +L 2.9723,3.204156,3.6715,3.204156 +L 3.6715,3.204156,3.6501,2.878276 +L 3.6501,2.878276,3.6155,2.576385 +L 3.6155,2.576385,3.5684,2.298486 +L 3.5684,2.298486,3.5084,2.044574 +L 3.5084,2.044574,3.4356,1.814652 +L 3.4356,1.814652,3.3499,1.608722 +L 3.3499,1.608722,3.2513,1.42678 +L 3.2513,1.42678,3.1398,1.268828 +L 3.1398,1.268828,3.0164,1.131993 +L 3.0164,1.131993,2.8837,1.013403 +L 2.8837,1.013403,2.741,0.913058 +L 2.741,0.913058,2.5884,0.830957 +L 2.5884,0.830957,2.4258,0.767101 +L 2.4258,0.767101,2.2534,0.721489 +L 2.2534,0.721489,2.0711,0.694123 +L 2.0711,0.694123,1.8788,0.685 +L 1.8788,0.685,1.6861,0.701264 +L 1.6861,0.701264,1.5008,0.75006 +L 1.5008,0.75006,1.3234,0.831383 +L 1.3234,0.831383,1.153,0.945238 +L 1.153,0.945238,0.99,1.091622 +L 0.99,1.091622,0.8349,1.270536 +L 0.8349,1.270536,0.6867,1.48198 +L 0.6867,1.48198,0.5465,1.725953 +L 0.5465,1.725953,0.4182,1.992752 +L 0.4182,1.992752,0.3072,2.272671 +L 0.3072,2.272671,0.2136,2.565711 +L 0.2136,2.565711,0.1363,2.871871 +L 0.1363,2.871871,0.0768,3.191152 +L 0.0768,3.191152,0.0337,3.523553 +L 0.0337,3.523553,0.0085,3.869076 +L 0.0085,3.869076,-0.0005,4.227719 + +[D] 70 +L -0.0008,0.367,-0.0008,7.681001 +L -0.0008,7.681001,1.1764,7.681001 +L 1.1764,7.681001,1.4529,7.665241 +L 1.4529,7.665241,1.7076,7.61796 +L 1.7076,7.61796,1.9404,7.53916 +L 1.9404,7.53916,2.1525,7.428836 +L 2.1525,7.428836,2.3432,7.286995 +L 2.3432,7.286995,2.5122,7.113631 +L 2.5122,7.113631,2.6603,6.908747 +L 2.6603,6.908747,2.7867,6.672343 +L 2.7867,6.672343,2.8952,6.410319 +L 2.8952,6.410319,2.9893,6.128577 +L 2.9893,6.128577,3.0691,5.827113 +L 3.0691,5.827113,3.134,5.50593 +L 3.134,5.50593,3.1845,5.165028 +L 3.1845,5.165028,3.2207,4.804404 +L 3.2207,4.804404,3.2425,4.424062 +L 3.2425,4.424062,3.2499,4.024 +L 3.2499,4.024,3.2425,3.623938 +L 3.2425,3.623938,3.2207,3.243596 +L 3.2207,3.243596,3.1845,2.882973 +L 3.1845,2.882973,3.134,2.54207 +L 3.134,2.54207,3.0691,2.220887 +L 3.0691,2.220887,2.9893,1.919423 +L 2.9893,1.919423,2.8952,1.637681 +L 2.8952,1.637681,2.7867,1.375656 +L 2.7867,1.375656,2.6603,1.139252 +L 2.6603,1.139252,2.5122,0.93437 +L 2.5122,0.93437,2.3432,0.761007 +L 2.3432,0.761007,2.1525,0.619164 +L 2.1525,0.619164,1.9404,0.508842 +L 1.9404,0.508842,1.7076,0.430042 +L 1.7076,0.430042,1.4529,0.38276 +L 1.4529,0.38276,1.1764,0.367 +L 1.1764,0.367,-0.0008,0.367 +L 2.4849,4.024,2.4805,4.327676 +L 2.4805,4.327676,2.4666,4.615125 +L 2.4666,4.615125,2.4438,4.88635 +L 2.4438,4.88635,2.4121,5.141348 +L 2.4121,5.141348,2.3715,5.380119 +L 2.3715,5.380119,2.3209,5.602665 +L 2.3209,5.602665,2.262,5.808984 +L 2.262,5.808984,2.1936,5.999078 +L 2.1936,5.999078,2.1133,6.169686 +L 2.1133,6.169686,2.0172,6.317544 +L 2.0172,6.317544,1.9057,6.442654 +L 1.9057,6.442654,1.7789,6.545019 +L 1.7789,6.545019,1.6362,6.624636 +L 1.6362,6.624636,1.4786,6.681505 +L 1.4786,6.681505,1.3052,6.715626 +L 1.3052,6.715626,1.117,6.726999 +L 1.117,6.726999,0.5729,6.726999 +L 0.5729,6.726999,0.5729,1.321 +L 0.5729,1.321,1.117,1.321 +L 1.117,1.321,1.3052,1.332375 +L 1.3052,1.332375,1.4786,1.366495 +L 1.4786,1.366495,1.6362,1.423364 +L 1.6362,1.423364,1.7789,1.50298 +L 1.7789,1.50298,1.9057,1.605344 +L 1.9057,1.605344,2.0172,1.730456 +L 2.0172,1.730456,2.1133,1.878314 +L 2.1133,1.878314,2.1936,2.048921 +L 2.1936,2.048921,2.262,2.239015 +L 2.262,2.239015,2.3209,2.445335 +L 2.3209,2.445335,2.3715,2.667881 +L 2.3715,2.667881,2.4121,2.906652 +L 2.4121,2.906652,2.4438,3.16165 +L 2.4438,3.16165,2.4666,3.432874 +L 2.4666,3.432874,2.4805,3.720324 +L 2.4805,3.720324,2.4849,4.024 + +[E] 12 +L 3.0346,7.681001,3.0346,6.726999 +L 3.0346,6.726999,0.5726,6.726999 +L 0.5726,6.726999,0.5726,4.819 +L 0.5726,4.819,2.6253,4.819 +L 2.6253,4.819,2.6253,3.865 +L 2.6253,3.865,0.5726,3.865 +L 0.5726,3.865,0.5726,1.321 +L 0.5726,1.321,3.0346,1.321 +L 3.0346,1.321,3.0346,0.367 +L 3.0346,0.367,-0.0007,0.367 +L -0.0007,0.367,-0.0007,7.681001 +L -0.0007,7.681001,3.0346,7.681001 + +[F] 10 +L 0.5732,0.56575,-0.0005,0.56575 +L -0.0005,0.56575,-0.0005,7.681001 +L -0.0005,7.681001,3.0347,7.681001 +L 3.0347,7.681001,3.0347,6.726999 +L 3.0347,6.726999,0.5732,6.726999 +L 0.5732,6.726999,0.5732,4.819 +L 0.5732,4.819,2.6254,4.819 +L 2.6254,4.819,2.6254,3.865 +L 2.6254,3.865,0.5732,3.865 +L 0.5732,3.865,0.5732,0.56575 + +[G] 128 +L -0.0009,4.227719,0.008,4.565399 +L 0.008,4.565399,0.0338,4.892754 +L 0.0338,4.892754,0.0764,5.209785 +L 0.0764,5.209785,0.1358,5.516488 +L 0.1358,5.516488,0.2131,5.812867 +L 0.2131,5.812867,0.3068,6.09892 +L 0.3068,6.09892,0.4183,6.374645 +L 0.4183,6.374645,0.5461,6.640048 +L 0.5461,6.640048,0.6868,6.88402 +L 0.6868,6.88402,0.8345,7.095465 +L 0.8345,7.095465,0.9895,7.27438 +L 0.9895,7.27438,1.1526,7.420762 +L 1.1526,7.420762,1.323,7.534617 +L 1.323,7.534617,1.5004,7.615942 +L 1.5004,7.615942,1.6857,7.664736 +L 1.6857,7.664736,1.8784,7.681001 +L 1.8784,7.681001,2.033,7.673625 +L 2.033,7.673625,2.1836,7.651499 +L 2.1836,7.651499,2.3298,7.614622 +L 2.3298,7.614622,2.471,7.562992 +L 2.471,7.562992,2.6082,7.496613 +L 2.6082,7.496613,2.7415,7.415482 +L 2.7415,7.415482,2.8698,7.319601 +L 2.8698,7.319601,2.9942,7.20897 +L 2.9942,7.20897,3.1106,7.077063 +L 3.1106,7.077063,3.2147,6.917366 +L 3.2147,6.917366,3.3064,6.729873 +L 3.3064,6.729873,3.3861,6.514586 +L 3.3861,6.514586,3.454,6.271505 +L 3.454,6.271505,3.5095,6.00063 +L 3.5095,6.00063,3.5531,5.701962 +L 3.5531,5.701962,3.5843,5.3755 +L 3.5843,5.3755,2.8852,5.3755 +L 2.8852,5.3755,2.8634,5.627199 +L 2.8634,5.627199,2.8357,5.855605 +L 2.8357,5.855605,2.8015,6.060721 +L 2.8015,6.060721,2.7613,6.242545 +L 2.7613,6.242545,2.7148,6.401079 +L 2.7148,6.401079,2.6622,6.536325 +L 2.6622,6.536325,2.6038,6.648278 +L 2.6038,6.648278,2.5389,6.736938 +L 2.5389,6.736938,2.469,6.809138 +L 2.469,6.809138,2.3957,6.871715 +L 2.3957,6.871715,2.3184,6.924662 +L 2.3184,6.924662,2.2376,6.967985 +L 2.2376,6.967985,2.1534,7.001678 +L 2.1534,7.001678,2.0652,7.025746 +L 2.0652,7.025746,1.974,7.040188 +L 1.974,7.040188,1.8784,7.045001 +L 1.8784,7.045001,1.7699,7.033586 +L 1.7699,7.033586,1.6639,6.99935 +L 1.6639,6.99935,1.5618,6.942286 +L 1.5618,6.942286,1.4627,6.8624 +L 1.4627,6.8624,1.3671,6.759684 +L 1.3671,6.759684,1.2749,6.634147 +L 1.2749,6.634147,1.1862,6.485783 +L 1.1862,6.485783,1.1,6.314593 +L 1.1,6.314593,1.0217,6.122132 +L 1.0217,6.122132,0.9534,5.909952 +L 0.9534,5.909952,0.8954,5.678051 +L 0.8954,5.678051,0.8483,5.42643 +L 0.8483,5.42643,0.8117,5.15509 +L 0.8117,5.15509,0.7849,4.864029 +L 0.7849,4.864029,0.7696,4.55325 +L 0.7696,4.55325,0.7641,4.22275 +L 0.7641,4.22275,0.7691,3.88375 +L 0.7691,3.88375,0.7839,3.564856 +L 0.7839,3.564856,0.8087,3.266072 +L 0.8087,3.266072,0.8439,2.987394 +L 0.8439,2.987394,0.8885,2.728825 +L 0.8885,2.728825,0.9435,2.490364 +L 0.9435,2.490364,1.0079,2.272011 +L 1.0079,2.272011,1.0822,2.073766 +L 1.0822,2.073766,1.1635,1.897336 +L 1.1635,1.897336,1.2477,1.744431 +L 1.2477,1.744431,1.3354,1.615048 +L 1.3354,1.615048,1.4261,1.509192 +L 1.4261,1.509192,1.5202,1.426857 +L 1.5202,1.426857,1.6178,1.368048 +L 1.6178,1.368048,1.7179,1.332762 +L 1.7179,1.332762,1.8219,1.321 +L 1.8219,1.321,1.922,1.326667 +L 1.922,1.326667,2.0191,1.34367 +L 2.0191,1.34367,2.1118,1.372007 +L 2.1118,1.372007,2.201,1.41168 +L 2.201,1.41168,2.2867,1.462688 +L 2.2867,1.462688,2.3684,1.52503 +L 2.3684,1.52503,2.4467,1.598706 +L 2.4467,1.598706,2.521,1.683719 +L 2.521,1.683719,2.5894,1.786898 +L 2.5894,1.786898,2.6513,1.915077 +L 2.6513,1.915077,2.7054,2.068254 +L 2.7054,2.068254,2.7524,2.246429 +L 2.7524,2.246429,2.7921,2.449604 +L 2.7921,2.449604,2.8243,2.677779 +L 2.8243,2.677779,2.8495,2.930952 +L 2.8495,2.930952,2.8674,3.209124 +L 2.8674,3.209124,2.8674,3.865 +L 2.8674,3.865,1.8784,3.865 +L 1.8784,3.865,1.8784,4.501 +L 1.8784,4.501,3.4411,4.501 +L 3.4411,4.501,3.4411,0.516063 +L 3.4411,0.516063,2.9779,0.516063 +L 2.9779,0.516063,2.8257,1.152063 +L 2.8257,1.152063,2.7133,1.042595 +L 2.7133,1.042595,2.5949,0.947722 +L 2.5949,0.947722,2.4715,0.867446 +L 2.4715,0.867446,2.3422,0.801765 +L 2.3422,0.801765,2.2079,0.750681 +L 2.2079,0.750681,2.0677,0.714191 +L 2.0677,0.714191,1.922,0.692298 +L 1.922,0.692298,1.7709,0.685 +L 1.7709,0.685,1.5806,0.701264 +L 1.5806,0.701264,1.3988,0.75006 +L 1.3988,0.75006,1.2259,0.831383 +L 1.2259,0.831383,1.0624,0.945238 +L 1.0624,0.945238,0.9073,1.091622 +L 0.9073,1.091622,0.7611,1.270536 +L 0.7611,1.270536,0.6239,1.48198 +L 0.6239,1.48198,0.4956,1.725953 +L 0.4956,1.725953,0.3791,1.992752 +L 0.3791,1.992752,0.2785,2.272671 +L 0.2785,2.272671,0.1933,2.565711 +L 0.1933,2.565711,0.1235,2.871871 +L 0.1235,2.871871,0.069,3.191152 +L 0.069,3.191152,0.0303,3.523553 +L 0.0303,3.523553,0.007,3.869076 +L 0.007,3.869076,-0.0009,4.227719 + +[H] 12 +L 0.573,0.56575,-0.0008,0.56575 +L -0.0008,0.56575,-0.0008,7.780375 +L -0.0008,7.780375,0.573,7.780375 +L 0.573,7.780375,0.573,4.819 +L 0.573,4.819,2.485,4.819 +L 2.485,4.819,2.485,7.780375 +L 2.485,7.780375,3.0588,7.780375 +L 3.0588,7.780375,3.0588,0.56575 +L 3.0588,0.56575,2.485,0.56575 +L 2.485,0.56575,2.485,3.865 +L 2.485,3.865,0.573,3.865 +L 0.573,3.865,0.573,0.56575 + +[I] 4 +L 0.5731,0.570719,-0.0006,0.570719 +L -0.0006,0.570719,-0.0006,7.671063 +L -0.0006,7.671063,0.5731,7.671063 +L 0.5731,7.671063,0.5731,0.570719 + +[J] 68 +L 1.1287,1.003,1.1941,1.006688 +L 1.1941,1.006688,1.2565,1.017751 +L 1.2565,1.017751,1.315,1.03619 +L 1.315,1.03619,1.3705,1.062004 +L 1.3705,1.062004,1.4225,1.095193 +L 1.4225,1.095193,1.4716,1.135759 +L 1.4716,1.135759,1.5166,1.183699 +L 1.5166,1.183699,1.5588,1.239016 +L 1.5588,1.239016,1.5964,1.307607 +L 1.5964,1.307607,1.6291,1.395376 +L 1.6291,1.395376,1.6569,1.50232 +L 1.6569,1.50232,1.6797,1.628441 +L 1.6797,1.628441,1.6975,1.773738 +L 1.6975,1.773738,1.7099,1.938212 +L 1.7099,1.938212,1.7173,2.121862 +L 1.7173,2.121862,1.7203,2.324687 +L 1.7203,2.324687,1.7203,7.725719 +L 1.7203,7.725719,2.2935,7.725719 +L 2.2935,7.725719,2.2935,2.324687 +L 2.2935,2.324687,2.2886,1.996207 +L 2.2886,1.996207,2.2737,1.696451 +L 2.2737,1.696451,2.2485,1.425422 +L 2.2485,1.425422,2.2133,1.183116 +L 2.2133,1.183116,2.1682,0.969538 +L 2.1682,0.969538,2.1132,0.784685 +L 2.1132,0.784685,2.0478,0.628558 +L 2.0478,0.628558,1.9725,0.501157 +L 1.9725,0.501157,1.8892,0.395182 +L 1.8892,0.395182,1.8005,0.303337 +L 1.8005,0.303337,1.7054,0.225623 +L 1.7054,0.225623,1.6048,0.16204 +L 1.6048,0.16204,1.4983,0.112585 +L 1.4983,0.112585,1.3858,0.07726 +L 1.3858,0.07726,1.2674,0.056064 +L 1.2674,0.056064,1.1436,0.048999 +L 1.1436,0.048999,1.0207,0.056803 +L 1.0207,0.056803,0.9037,0.08021 +L 0.9037,0.08021,0.7928,0.119222 +L 0.7928,0.119222,0.6867,0.17384 +L 0.6867,0.17384,0.5866,0.244063 +L 0.5866,0.244063,0.4925,0.32989 +L 0.4925,0.32989,0.4033,0.431322 +L 0.4033,0.431322,0.3206,0.548359 +L 0.3206,0.548359,0.2453,0.680691 +L 0.2453,0.680691,0.1799,0.828007 +L 0.1799,0.828007,0.1249,0.990307 +L 0.1249,0.990307,0.0798,1.16759 +L 0.0798,1.16759,0.0446,1.359858 +L 0.0446,1.359858,0.0193,1.567109 +L 0.0193,1.567109,0.0045,1.789344 +L 0.0045,1.789344,-0.0005,2.026562 +L -0.0005,2.026562,0.5728,2.026562 +L 0.5728,2.026562,0.5753,1.898113 +L 0.5753,1.898113,0.5822,1.778591 +L 0.5822,1.778591,0.5936,1.667998 +L 0.5936,1.667998,0.6094,1.566332 +L 0.6094,1.566332,0.6303,1.473596 +L 0.6303,1.473596,0.655,1.389786 +L 0.655,1.389786,0.6848,1.314906 +L 0.6848,1.314906,0.7194,1.248953 +L 0.7194,1.248953,0.7576,1.191307 +L 0.7576,1.191307,0.7997,1.141349 +L 0.7997,1.141349,0.8453,1.099076 +L 0.8453,1.099076,0.8948,1.064488 +L 0.8948,1.064488,0.9478,1.037587 +L 0.9478,1.037587,1.0043,1.018372 +L 1.0043,1.018372,1.0648,1.006843 +L 1.0648,1.006843,1.1287,1.003 + +[K] 12 +L 0.5729,0.570719,-0.0003,0.570719 +L -0.0003,0.570719,-0.0003,7.671063 +L -0.0003,7.671063,0.5729,7.671063 +L 0.5729,7.671063,0.5729,4.5805 +L 0.5729,4.5805,2.1891,7.671063 +L 2.1891,7.671063,2.9601,7.671063 +L 2.9601,7.671063,1.6278,5.146938 +L 1.6278,5.146938,3.2083,0.570719 +L 3.2083,0.570719,2.4374,0.570719 +L 2.4374,0.570719,1.1853,4.30225 +L 1.1853,4.30225,0.5729,3.144531 +L 0.5729,3.144531,0.5729,0.570719 + +[L] 8 +L -0.0007,7.581625,0.5731,7.581625 +L 0.5731,7.581625,0.5731,1.321 +L 0.5731,1.321,3.0345,1.321 +L 3.0345,1.321,3.0345,0.367 +L 3.0345,0.367,0.5731,0.367 +L 0.5731,0.367,-0.0007,0.367 +L -0.0007,0.367,-0.0007,1.321 +L -0.0007,1.321,-0.0007,7.581625 + +[M] 16 +L 0.5732,0.570719,-0.0006,0.570719 +L -0.0006,0.570719,-0.0006,7.671063 +L -0.0006,7.671063,0.815,7.671063 +L 0.815,7.671063,1.7802,2.602938 +L 1.7802,2.602938,1.852,2.602938 +L 1.852,2.602938,2.8167,7.671063 +L 2.8167,7.671063,3.6322,7.671063 +L 3.6322,7.671063,3.6322,0.570719 +L 3.6322,0.570719,3.059,0.570719 +L 3.059,0.570719,3.059,5.827656 +L 3.059,5.827656,3.0198,5.827656 +L 3.0198,5.827656,2.067,0.600531 +L 2.067,0.600531,1.5651,0.600531 +L 1.5651,0.600531,0.6123,5.827656 +L 0.6123,5.827656,0.5732,5.827656 +L 0.5732,5.827656,0.5732,0.570719 + +[N] 10 +L 0.5728,0.570719,-0.0004,0.570719 +L -0.0004,0.570719,-0.0004,7.671063 +L -0.0004,7.671063,0.7671,7.671063 +L 0.7671,7.671063,2.4849,2.205437 +L 2.4849,2.205437,2.4849,7.671063 +L 2.4849,7.671063,3.0586,7.671063 +L 3.0586,7.671063,3.0586,0.570719 +L 3.0586,0.570719,2.2906,0.570719 +L 2.2906,0.570719,0.5728,6.091 +L 0.5728,6.091,0.5728,0.570719 + +[O] 128 +L -0.0008,4.227719,0.0072,4.565399 +L 0.0072,4.565399,0.0309,4.892754 +L 0.0309,4.892754,0.0706,5.209785 +L 0.0706,5.209785,0.1261,5.516488 +L 0.1261,5.516488,0.1974,5.812867 +L 0.1974,5.812867,0.2841,6.09892 +L 0.2841,6.09892,0.3872,6.374645 +L 0.3872,6.374645,0.5056,6.640048 +L 0.5056,6.640048,0.6369,6.88402 +L 0.6369,6.88402,0.7776,7.095465 +L 0.7776,7.095465,0.9267,7.27438 +L 0.9267,7.27438,1.0858,7.420762 +L 1.0858,7.420762,1.2538,7.534617 +L 1.2538,7.534617,1.4311,7.615942 +L 1.4311,7.615942,1.6174,7.664736 +L 1.6174,7.664736,1.8126,7.681001 +L 1.8126,7.681001,2.0079,7.664736 +L 2.0079,7.664736,2.1937,7.615942 +L 2.1937,7.615942,2.3705,7.534617 +L 2.3705,7.534617,2.539,7.420762 +L 2.539,7.420762,2.698,7.27438 +L 2.698,7.27438,2.8482,7.095465 +L 2.8482,7.095465,2.9894,6.88402 +L 2.9894,6.88402,3.1217,6.640048 +L 3.1217,6.640048,3.2411,6.37449 +L 3.2411,6.37449,3.3446,6.0983 +L 3.3446,6.0983,3.4328,5.81147 +L 3.4328,5.81147,3.5047,5.514004 +L 3.5047,5.514004,3.5607,5.205902 +L 3.5607,5.205902,3.6003,4.887165 +L 3.6003,4.887165,3.6241,4.557791 +L 3.6241,4.557791,3.632,4.217781 +L 3.632,4.217781,3.6241,3.861467 +L 3.6241,3.861467,3.6003,3.517964 +L 3.6003,3.517964,3.5607,3.18727 +L 3.5607,3.18727,3.5047,2.869386 +L 3.5047,2.869386,3.4328,2.564313 +L 3.4328,2.564313,3.3446,2.27205 +L 3.3446,2.27205,3.2411,1.992595 +L 3.2411,1.992595,3.1217,1.725953 +L 3.1217,1.725953,2.9894,1.48198 +L 2.9894,1.48198,2.8482,1.270536 +L 2.8482,1.270536,2.698,1.091622 +L 2.698,1.091622,2.539,0.945238 +L 2.539,0.945238,2.3705,0.831383 +L 2.3705,0.831383,2.1937,0.75006 +L 2.1937,0.75006,2.0079,0.701264 +L 2.0079,0.701264,1.8126,0.685 +L 1.8126,0.685,1.6174,0.701264 +L 1.6174,0.701264,1.4311,0.75006 +L 1.4311,0.75006,1.2538,0.831383 +L 1.2538,0.831383,1.0858,0.945238 +L 1.0858,0.945238,0.9267,1.091622 +L 0.9267,1.091622,0.7776,1.270536 +L 0.7776,1.270536,0.6369,1.48198 +L 0.6369,1.48198,0.5056,1.725953 +L 0.5056,1.725953,0.3872,1.992752 +L 0.3872,1.992752,0.2841,2.272671 +L 0.2841,2.272671,0.1974,2.565711 +L 0.1974,2.565711,0.1261,2.871871 +L 0.1261,2.871871,0.0706,3.191152 +L 0.0706,3.191152,0.0309,3.523553 +L 0.0309,3.523553,0.0072,3.869076 +L 0.0072,3.869076,-0.0008,4.227719 +L 0.7642,4.22275,0.7692,3.88375 +L 0.7692,3.88375,0.784,3.564856 +L 0.784,3.564856,0.8088,3.266072 +L 0.8088,3.266072,0.843,2.987394 +L 0.843,2.987394,0.8871,2.728825 +L 0.8871,2.728825,0.9416,2.490364 +L 0.9416,2.490364,1.0055,2.272011 +L 1.0055,2.272011,1.0793,2.073766 +L 1.0793,2.073766,1.1596,1.897336 +L 1.1596,1.897336,1.2433,1.744431 +L 1.2433,1.744431,1.3301,1.615048 +L 1.3301,1.615048,1.4202,1.509192 +L 1.4202,1.509192,1.5134,1.426857 +L 1.5134,1.426857,1.6105,1.368048 +L 1.6105,1.368048,1.7101,1.332762 +L 1.7101,1.332762,1.8126,1.321 +L 1.8126,1.321,1.9157,1.332762 +L 1.9157,1.332762,2.0158,1.368048 +L 2.0158,1.368048,2.1124,1.426857 +L 2.1124,1.426857,2.206,1.509192 +L 2.206,1.509192,2.2967,1.615048 +L 2.2967,1.615048,2.3839,1.744431 +L 2.3839,1.744431,2.4681,1.897336 +L 2.4681,1.897336,2.5494,2.073766 +L 2.5494,2.073766,2.6237,2.272166 +L 2.6237,2.272166,2.6886,2.490985 +L 2.6886,2.490985,2.7431,2.730223 +L 2.7431,2.730223,2.7877,2.989879 +L 2.7877,2.989879,2.8229,3.269953 +L 2.8229,3.269953,2.8477,3.570446 +L 2.8477,3.570446,2.8625,3.891358 +L 2.8625,3.891358,2.8675,4.232687 +L 2.8675,4.232687,2.8625,4.560858 +L 2.8625,4.560858,2.8477,4.869619 +L 2.8477,4.869619,2.8229,5.158971 +L 2.8229,5.158971,2.7877,5.428913 +L 2.7877,5.428913,2.7431,5.679447 +L 2.7431,5.679447,2.6886,5.910572 +L 2.6886,5.910572,2.6237,6.122288 +L 2.6237,6.122288,2.5494,6.314593 +L 2.5494,6.314593,2.4681,6.485783 +L 2.4681,6.485783,2.3839,6.634147 +L 2.3839,6.634147,2.2967,6.759684 +L 2.2967,6.759684,2.206,6.8624 +L 2.206,6.8624,2.1124,6.942286 +L 2.1124,6.942286,2.0158,6.99935 +L 2.0158,6.99935,1.9157,7.033586 +L 1.9157,7.033586,1.8126,7.045001 +L 1.8126,7.045001,1.7101,7.033586 +L 1.7101,7.033586,1.6105,6.99935 +L 1.6105,6.99935,1.5134,6.942286 +L 1.5134,6.942286,1.4202,6.8624 +L 1.4202,6.8624,1.3301,6.759684 +L 1.3301,6.759684,1.2433,6.634147 +L 1.2433,6.634147,1.1596,6.485783 +L 1.1596,6.485783,1.0793,6.314593 +L 1.0793,6.314593,1.0055,6.122132 +L 1.0055,6.122132,0.9416,5.909952 +L 0.9416,5.909952,0.8871,5.678051 +L 0.8871,5.678051,0.843,5.42643 +L 0.843,5.42643,0.8088,5.15509 +L 0.8088,5.15509,0.784,4.864029 +L 0.784,4.864029,0.7692,4.55325 +L 0.7692,4.55325,0.7642,4.22275 + +[P] 72 +L 0.5736,0.56575,-0.0001,0.56575 +L -0.0001,0.56575,-0.0001,7.681001 +L -0.0001,7.681001,1.1771,7.681001 +L 1.1771,7.681001,1.4793,7.67281 +L 1.4793,7.67281,1.7553,7.648238 +L 1.7553,7.648238,2.004,7.607284 +L 2.004,7.607284,2.226,7.54995 +L 2.226,7.54995,2.4212,7.476233 +L 2.4212,7.476233,2.5892,7.386137 +L 2.5892,7.386137,2.7309,7.279658 +L 2.7309,7.279658,2.8458,7.156797 +L 2.8458,7.156797,2.9405,7.020504 +L 2.9405,7.020504,3.0227,6.873733 +L 3.0227,6.873733,3.0921,6.716482 +L 3.0921,6.716482,3.1491,6.548746 +L 3.1491,6.548746,3.1937,6.370531 +L 3.1937,6.370531,3.2254,6.181834 +L 3.2254,6.181834,3.2442,5.982658 +L 3.2442,5.982658,3.2501,5.773 +L 3.2501,5.773,3.2442,5.563342 +L 3.2442,5.563342,3.2244,5.364166 +L 3.2244,5.364166,3.1927,5.175469 +L 3.1927,5.175469,3.1471,4.997254 +L 3.1471,4.997254,3.0896,4.82952 +L 3.0896,4.82952,3.0183,4.672267 +L 3.0183,4.672267,2.935,4.525494 +L 2.935,4.525494,2.8379,4.389203 +L 2.8379,4.389203,2.7215,4.266342 +L 2.7215,4.266342,2.5773,4.159865 +L 2.5773,4.159865,2.4064,4.069767 +L 2.4064,4.069767,2.2077,3.996051 +L 2.2077,3.996051,1.9817,3.938716 +L 1.9817,3.938716,1.729,3.897763 +L 1.729,3.897763,1.4486,3.87319 +L 1.4486,3.87319,1.1414,3.865 +L 1.1414,3.865,0.5736,3.865 +L 0.5736,3.865,0.5736,0.56575 +L 2.4856,5.773,2.4822,5.885145 +L 2.4822,5.885145,2.4708,5.990539 +L 2.4708,5.990539,2.4524,6.089176 +L 2.4524,6.089176,2.4267,6.181059 +L 2.4267,6.181059,2.3935,6.266186 +L 2.3935,6.266186,2.3528,6.344561 +L 2.3528,6.344561,2.3048,6.416181 +L 2.3048,6.416181,2.2493,6.481045 +L 2.2493,6.481045,2.1804,6.538694 +L 2.1804,6.538694,2.0902,6.588651 +L 2.0902,6.588651,1.9798,6.630925 +L 1.9798,6.630925,1.8485,6.665511 +L 1.8485,6.665511,1.6963,6.692413 +L 1.6963,6.692413,1.5239,6.711628 +L 1.5239,6.711628,1.3312,6.723157 +L 1.3312,6.723157,1.1171,6.726999 +L 1.1171,6.726999,0.5736,6.726999 +L 0.5736,6.726999,0.5736,4.819 +L 0.5736,4.819,1.1171,4.819 +L 1.1171,4.819,1.3312,4.822843 +L 1.3312,4.822843,1.5239,4.834372 +L 1.5239,4.834372,1.6963,4.853587 +L 1.6963,4.853587,1.8485,4.880488 +L 1.8485,4.880488,1.9798,4.915076 +L 1.9798,4.915076,2.0902,4.957348 +L 2.0902,4.957348,2.1804,5.007308 +L 2.1804,5.007308,2.2493,5.064953 +L 2.2493,5.064953,2.3048,5.129819 +L 2.3048,5.129819,2.3528,5.201439 +L 2.3528,5.201439,2.3935,5.279813 +L 2.3935,5.279813,2.4267,5.364942 +L 2.4267,5.364942,2.4524,5.456824 +L 2.4524,5.456824,2.4708,5.555463 +L 2.4708,5.555463,2.4822,5.660853 +L 2.4822,5.660853,2.4856,5.773 + +[Q] 134 +L -0.001,4.227719,0.0069,4.565399 +L 0.0069,4.565399,0.0307,4.892754 +L 0.0307,4.892754,0.0699,5.209785 +L 0.0699,5.209785,0.1254,5.516488 +L 0.1254,5.516488,0.1967,5.812867 +L 0.1967,5.812867,0.2839,6.09892 +L 0.2839,6.09892,0.387,6.374645 +L 0.387,6.374645,0.5054,6.640048 +L 0.5054,6.640048,0.6367,6.88402 +L 0.6367,6.88402,0.7774,7.095465 +L 0.7774,7.095465,0.9265,7.27438 +L 0.9265,7.27438,1.0856,7.420762 +L 1.0856,7.420762,1.253,7.534617 +L 1.253,7.534617,1.4304,7.615942 +L 1.4304,7.615942,1.6167,7.664736 +L 1.6167,7.664736,1.8124,7.681001 +L 1.8124,7.681001,2.0076,7.664736 +L 2.0076,7.664736,2.1934,7.615942 +L 2.1934,7.615942,2.3703,7.534617 +L 2.3703,7.534617,2.5383,7.420762 +L 2.5383,7.420762,2.6978,7.27438 +L 2.6978,7.27438,2.8475,7.095465 +L 2.8475,7.095465,2.9892,6.88402 +L 2.9892,6.88402,3.121,6.640048 +L 3.121,6.640048,3.2409,6.37449 +L 3.2409,6.37449,3.3444,6.0983 +L 3.3444,6.0983,3.4321,5.81147 +L 3.4321,5.81147,3.5045,5.514004 +L 3.5045,5.514004,3.5599,5.205902 +L 3.5599,5.205902,3.5996,4.887165 +L 3.5996,4.887165,3.6239,4.557791 +L 3.6239,4.557791,3.6318,4.217781 +L 3.6318,4.217781,3.6239,3.863913 +L 3.6239,3.863913,3.6006,3.522777 +L 3.6006,3.522777,3.5614,3.194374 +L 3.5614,3.194374,3.5064,2.878704 +L 3.5064,2.878704,3.4356,2.575764 +L 3.4356,2.575764,3.3499,2.285558 +L 3.3499,2.285558,3.2473,2.008086 +L 3.2473,2.008086,3.1299,1.743344 +L 3.1299,1.743344,3.6169,0.829093 +L 3.6169,0.829093,3.0016,0.367 +L 3.0016,0.367,2.6547,1.052687 +L 2.6547,1.052687,2.5611,0.96651 +L 2.5611,0.96651,2.4635,0.891824 +L 2.4635,0.891824,2.3629,0.828627 +L 2.3629,0.828627,2.2593,0.776922 +L 2.2593,0.776922,2.1523,0.736706 +L 2.1523,0.736706,2.0418,0.70798 +L 2.0418,0.70798,1.9289,0.690744 +L 1.9289,0.690744,1.8124,0.685 +L 1.8124,0.685,1.6167,0.701264 +L 1.6167,0.701264,1.4304,0.75006 +L 1.4304,0.75006,1.253,0.831383 +L 1.253,0.831383,1.0856,0.945238 +L 1.0856,0.945238,0.9265,1.091622 +L 0.9265,1.091622,0.7774,1.270536 +L 0.7774,1.270536,0.6367,1.48198 +L 0.6367,1.48198,0.5054,1.725953 +L 0.5054,1.725953,0.387,1.992752 +L 0.387,1.992752,0.2839,2.272671 +L 0.2839,2.272671,0.1967,2.565711 +L 0.1967,2.565711,0.1254,2.871871 +L 0.1254,2.871871,0.0699,3.191152 +L 0.0699,3.191152,0.0307,3.523553 +L 0.0307,3.523553,0.0069,3.869076 +L 0.0069,3.869076,-0.001,4.227719 +L 0.7635,4.22275,0.769,3.88375 +L 0.769,3.88375,0.7833,3.564856 +L 0.7833,3.564856,0.8081,3.266072 +L 0.8081,3.266072,0.8428,2.987394 +L 0.8428,2.987394,0.8869,2.728825 +L 0.8869,2.728825,0.9414,2.490364 +L 0.9414,2.490364,1.0053,2.272011 +L 1.0053,2.272011,1.0786,2.073766 +L 1.0786,2.073766,1.1594,1.897336 +L 1.1594,1.897336,1.2431,1.744431 +L 1.2431,1.744431,1.3298,1.615048 +L 1.3298,1.615048,1.42,1.509192 +L 1.42,1.509192,1.5132,1.426857 +L 1.5132,1.426857,1.6098,1.368048 +L 1.6098,1.368048,1.7094,1.332762 +L 1.7094,1.332762,1.8124,1.321 +L 1.8124,1.321,1.8754,1.325425 +L 1.8754,1.325425,1.9368,1.3387 +L 1.9368,1.3387,1.9982,1.360827 +L 1.9982,1.360827,2.0577,1.391805 +L 2.0577,1.391805,2.1157,1.431632 +L 2.1157,1.431632,2.1731,1.480311 +L 2.1731,1.480311,2.2296,1.537839 +L 2.2296,1.537839,2.2846,1.604218 +L 2.2846,1.604218,1.7763,2.702312 +L 1.7763,2.702312,2.3322,3.104781 +L 2.3322,3.104781,2.6666,2.409156 +L 2.6666,2.409156,2.7137,2.589817 +L 2.7137,2.589817,2.7543,2.783987 +L 2.7543,2.783987,2.789,2.991665 +L 2.789,2.991665,2.8167,3.212851 +L 2.8167,3.212851,2.839,3.447547 +L 2.839,3.447547,2.8544,3.695752 +L 2.8544,3.695752,2.8638,3.957465 +L 2.8638,3.957465,2.8668,4.232687 +L 2.8668,4.232687,2.8623,4.560858 +L 2.8623,4.560858,2.847,4.869619 +L 2.847,4.869619,2.8222,5.158971 +L 2.8222,5.158971,2.7875,5.428913 +L 2.7875,5.428913,2.7429,5.679447 +L 2.7429,5.679447,2.6879,5.910572 +L 2.6879,5.910572,2.6235,6.122288 +L 2.6235,6.122288,2.5492,6.314593 +L 2.5492,6.314593,2.4679,6.485783 +L 2.4679,6.485783,2.3837,6.634147 +L 2.3837,6.634147,2.296,6.759684 +L 2.296,6.759684,2.2058,6.8624 +L 2.2058,6.8624,2.1122,6.942286 +L 2.1122,6.942286,2.0156,6.99935 +L 2.0156,6.99935,1.9155,7.033586 +L 1.9155,7.033586,1.8124,7.045001 +L 1.8124,7.045001,1.7094,7.033586 +L 1.7094,7.033586,1.6098,6.99935 +L 1.6098,6.99935,1.5132,6.942286 +L 1.5132,6.942286,1.42,6.8624 +L 1.42,6.8624,1.3298,6.759684 +L 1.3298,6.759684,1.2431,6.634147 +L 1.2431,6.634147,1.1594,6.485783 +L 1.1594,6.485783,1.0786,6.314593 +L 1.0786,6.314593,1.0053,6.122132 +L 1.0053,6.122132,0.9414,5.909952 +L 0.9414,5.909952,0.8869,5.678051 +L 0.8869,5.678051,0.8428,5.42643 +L 0.8428,5.42643,0.8081,5.15509 +L 0.8081,5.15509,0.7833,4.864029 +L 0.7833,4.864029,0.769,4.55325 +L 0.769,4.55325,0.7635,4.22275 + +[R] 76 +L 0.5729,0.56575,-0.0008,0.56575 +L -0.0008,0.56575,-0.0008,7.681001 +L -0.0008,7.681001,1.1764,7.681001 +L 1.1764,7.681001,1.4791,7.67281 +L 1.4791,7.67281,1.7546,7.648238 +L 1.7546,7.648238,2.0038,7.607284 +L 2.0038,7.607284,2.2258,7.54995 +L 2.2258,7.54995,2.4205,7.476233 +L 2.4205,7.476233,2.589,7.386137 +L 2.589,7.386137,2.7302,7.279658 +L 2.7302,7.279658,2.8451,7.156797 +L 2.8451,7.156797,2.9398,7.020504 +L 2.9398,7.020504,3.0225,6.873733 +L 3.0225,6.873733,3.0919,6.716482 +L 3.0919,6.716482,3.1484,6.548746 +L 3.1484,6.548746,3.1929,6.370531 +L 3.1929,6.370531,3.2247,6.181834 +L 3.2247,6.181834,3.2435,5.982658 +L 3.2435,5.982658,3.2494,5.773 +L 3.2494,5.773,3.245,5.565167 +L 3.245,5.565167,3.2296,5.371463 +L 3.2296,5.371463,3.2053,5.19189 +L 3.2053,5.19189,3.1711,5.026446 +L 3.1711,5.026446,3.1261,4.875131 +L 3.1261,4.875131,3.072,4.737947 +L 3.072,4.737947,3.0076,4.614893 +L 3.0076,4.614893,2.9333,4.505969 +L 2.9333,4.505969,2.8511,4.408612 +L 2.8511,4.408612,2.7639,4.320261 +L 2.7639,4.320261,2.6717,4.240917 +L 2.6717,4.240917,2.5731,4.170578 +L 2.5731,4.170578,2.4696,4.109246 +L 2.4696,4.109246,2.3606,4.056918 +L 2.3606,4.056918,2.2466,4.013597 +L 2.2466,4.013597,2.1267,3.979281 +L 2.1267,3.979281,3.3455,0.56575 +L 3.3455,0.56575,2.5568,0.56575 +L 2.5568,0.56575,1.4122,3.874938 +L 1.4122,3.874938,1.1407,3.865 +L 1.1407,3.865,0.5729,3.865 +L 0.5729,3.865,0.5729,0.56575 +L 2.4854,5.773,2.4814,5.885145 +L 2.4814,5.885145,2.4705,5.990539 +L 2.4705,5.990539,2.4517,6.089176 +L 2.4517,6.089176,2.426,6.181059 +L 2.426,6.181059,2.3928,6.266186 +L 2.3928,6.266186,2.3526,6.344561 +L 2.3526,6.344561,2.3041,6.416181 +L 2.3041,6.416181,2.2486,6.481045 +L 2.2486,6.481045,2.1802,6.538694 +L 2.1802,6.538694,2.09,6.588651 +L 2.09,6.588651,1.979,6.630925 +L 1.979,6.630925,1.8482,6.665511 +L 1.8482,6.665511,1.6966,6.692413 +L 1.6966,6.692413,1.5232,6.711628 +L 1.5232,6.711628,1.3305,6.723157 +L 1.3305,6.723157,1.1169,6.726999 +L 1.1169,6.726999,0.5729,6.726999 +L 0.5729,6.726999,0.5729,4.819 +L 0.5729,4.819,1.1169,4.819 +L 1.1169,4.819,1.3305,4.822843 +L 1.3305,4.822843,1.5232,4.834372 +L 1.5232,4.834372,1.6966,4.853587 +L 1.6966,4.853587,1.8482,4.880488 +L 1.8482,4.880488,1.979,4.915076 +L 1.979,4.915076,2.09,4.957348 +L 2.09,4.957348,2.1802,5.007308 +L 2.1802,5.007308,2.2486,5.064953 +L 2.2486,5.064953,2.3041,5.129819 +L 2.3041,5.129819,2.3526,5.201439 +L 2.3526,5.201439,2.3928,5.279813 +L 2.3928,5.279813,2.426,5.364942 +L 2.426,5.364942,2.4517,5.456824 +L 2.4517,5.456824,2.4705,5.555463 +L 2.4705,5.555463,2.4814,5.660853 +L 2.4814,5.660853,2.4854,5.773 + +[S] 194 +L -0.0002,2.543312,0.7643,2.543312 +L 0.7643,2.543312,0.7688,2.394173 +L 0.7688,2.394173,0.7806,2.254815 +L 0.7806,2.254815,0.802,2.125239 +L 0.802,2.125239,0.8312,2.005446 +L 0.8312,2.005446,0.8678,1.895434 +L 0.8678,1.895434,0.9144,1.795205 +L 0.9144,1.795205,0.9679,1.704758 +L 0.9679,1.704758,1.0304,1.624094 +L 1.0304,1.624094,1.0992,1.553057 +L 1.0992,1.553057,1.1731,1.491491 +L 1.1731,1.491491,1.2518,1.439396 +L 1.2518,1.439396,1.3356,1.396773 +L 1.3356,1.396773,1.4248,1.363623 +L 1.4248,1.363623,1.5179,1.339943 +L 1.5179,1.339943,1.617,1.325736 +L 1.617,1.325736,1.7201,1.321 +L 1.7201,1.321,1.8424,1.326163 +L 1.8424,1.326163,1.9554,1.34165 +L 1.9554,1.34165,2.0599,1.367466 +L 2.0599,1.367466,2.1556,1.403606 +L 2.1556,1.403606,2.2423,1.450072 +L 2.2423,1.450072,2.3206,1.506863 +L 2.3206,1.506863,2.3899,1.573978 +L 2.3899,1.573978,2.4509,1.651423 +L 2.4509,1.651423,2.5039,1.73756 +L 2.5039,1.73756,2.5495,1.830763 +L 2.5495,1.830763,2.5881,1.93103 +L 2.5881,1.93103,2.6198,2.038363 +L 2.6198,2.038363,2.6446,2.152761 +L 2.6446,2.152761,2.6624,2.274224 +L 2.6624,2.274224,2.6728,2.402751 +L 2.6728,2.402751,2.6763,2.538344 +L 2.6763,2.538344,2.6714,2.671452 +L 2.6714,2.671452,2.6575,2.797495 +L 2.6575,2.797495,2.6347,2.916473 +L 2.6347,2.916473,2.602,3.028386 +L 2.602,3.028386,2.5599,3.133235 +L 2.5599,3.133235,2.5083,3.231018 +L 2.5083,3.231018,2.4474,3.321737 +L 2.4474,3.321737,2.3775,3.405392 +L 2.3775,3.405392,2.2968,3.485512 +L 2.2968,3.485512,2.2031,3.565632 +L 2.2031,3.565632,2.0966,3.645754 +L 2.0966,3.645754,1.9777,3.725875 +L 1.9777,3.725875,1.8469,3.805996 +L 1.8469,3.805996,1.7022,3.886118 +L 1.7022,3.886118,1.5456,3.966238 +L 1.5456,3.966238,1.3767,4.046358 +L 1.3767,4.046358,1.2087,4.129159 +L 1.2087,4.129159,1.0541,4.217316 +L 1.0541,4.217316,0.9149,4.310829 +L 0.9149,4.310829,0.7896,4.409699 +L 0.7896,4.409699,0.6791,4.513926 +L 0.6791,4.513926,0.5825,4.623512 +L 0.5825,4.623512,0.5007,4.738452 +L 0.5007,4.738452,0.4328,4.858751 +L 0.4328,4.858751,0.3763,4.982891 +L 0.3763,4.982891,0.3268,5.109361 +L 0.3268,5.109361,0.2852,5.238161 +L 0.2852,5.238161,0.2515,5.369289 +L 0.2515,5.369289,0.2247,5.502746 +L 0.2247,5.502746,0.2059,5.638534 +L 0.2059,5.638534,0.195,5.776649 +L 0.195,5.776649,0.191,5.917093 +L 0.191,5.917093,0.198,6.073842 +L 0.198,6.073842,0.2188,6.228573 +L 0.2188,6.228573,0.2535,6.381284 +L 0.2535,6.381284,0.3025,6.531978 +L 0.3025,6.531978,0.3654,6.68065 +L 0.3654,6.68065,0.4417,6.827306 +L 0.4417,6.827306,0.5329,6.971943 +L 0.5329,6.971943,0.6375,7.114562 +L 0.6375,7.114562,0.7519,7.247323 +L 0.7519,7.247323,0.8718,7.36238 +L 0.8718,7.36238,0.9982,7.459736 +L 0.9982,7.459736,1.1304,7.539392 +L 1.1304,7.539392,1.2677,7.601345 +L 1.2677,7.601345,1.4109,7.645598 +L 1.4109,7.645598,1.5595,7.67215 +L 1.5595,7.67215,1.7141,7.681001 +L 1.7141,7.681001,1.8756,7.674479 +L 1.8756,7.674479,2.0292,7.654915 +L 2.0292,7.654915,2.1769,7.622307 +L 2.1769,7.622307,2.3176,7.576656 +L 2.3176,7.576656,2.4509,7.517965 +L 2.4509,7.517965,2.5777,7.446228 +L 2.5777,7.446228,2.6981,7.361449 +L 2.6981,7.361449,2.8111,7.263627 +L 2.8111,7.263627,2.9141,7.152994 +L 2.9141,7.152994,3.0033,7.029785 +L 3.0033,7.029785,3.0786,6.893995 +L 3.0786,6.893995,3.1401,6.745633 +L 3.1401,6.745633,3.1881,6.584691 +L 3.1881,6.584691,3.2223,6.411174 +L 3.2223,6.411174,3.2431,6.22508 +L 3.2431,6.22508,3.2501,6.026406 +L 3.2501,6.026406,2.4851,6.026406 +L 2.4851,6.026406,2.4821,6.157069 +L 2.4821,6.157069,2.4722,6.278261 +L 2.4722,6.278261,2.4553,6.38998 +L 2.4553,6.38998,2.4325,6.492226 +L 2.4325,6.492226,2.4028,6.585001 +L 2.4028,6.585001,2.3661,6.668307 +L 2.3661,6.668307,2.3225,6.74214 +L 2.3225,6.74214,2.273,6.8065 +L 2.273,6.8065,2.2175,6.8624 +L 2.2175,6.8624,2.159,6.910843 +L 2.159,6.910843,2.0946,6.951837 +L 2.0946,6.951837,2.0272,6.985374 +L 2.0272,6.985374,1.9554,7.01146 +L 1.9554,7.01146,1.8796,7.030094 +L 1.8796,7.030094,1.7988,7.041273 +L 1.7988,7.041273,1.7141,7.045001 +L 1.7141,7.045001,1.6299,7.041002 +L 1.6299,7.041002,1.5496,7.029007 +L 1.5496,7.029007,1.4743,7.009016 +L 1.4743,7.009016,1.403,6.981028 +L 1.403,6.981028,1.3366,6.945044 +L 1.3366,6.945044,1.2736,6.901062 +L 1.2736,6.901062,1.2157,6.849084 +L 1.2157,6.849084,1.1622,6.789111 +L 1.1622,6.789111,1.1136,6.721293 +L 1.1136,6.721293,1.0715,6.645792 +L 1.0715,6.645792,1.0363,6.562604 +L 1.0363,6.562604,1.0076,6.47173 +L 1.0076,6.47173,0.9848,6.37317 +L 0.9848,6.37317,0.9684,6.266925 +L 0.9684,6.266925,0.959,6.152995 +L 0.959,6.152995,0.956,6.031374 +L 0.956,6.031374,0.958,5.912047 +L 0.958,5.912047,0.966,5.800018 +L 0.966,5.800018,0.9798,5.695285 +L 0.9798,5.695285,0.9982,5.597851 +L 0.9982,5.597851,1.0224,5.507714 +L 1.0224,5.507714,1.0512,5.424877 +L 1.0512,5.424877,1.0859,5.349336 +L 1.0859,5.349336,1.1255,5.281093 +L 1.1255,5.281093,1.176,5.216189 +L 1.176,5.216189,1.2419,5.150664 +L 1.2419,5.150664,1.3232,5.084517 +L 1.3232,5.084517,1.4198,5.01775 +L 1.4198,5.01775,1.5318,4.950362 +L 1.5318,4.950362,1.6596,4.882351 +L 1.6596,4.882351,1.8023,4.813721 +L 1.8023,4.813721,1.9609,4.744468 +L 1.9609,4.744468,2.1234,4.671529 +L 2.1234,4.671529,2.277,4.591834 +L 2.277,4.591834,2.4231,4.505387 +L 2.4231,4.505387,2.5614,4.412183 +L 2.5614,4.412183,2.6912,4.312226 +L 2.6912,4.312226,2.8136,4.205515 +L 2.8136,4.205515,2.927,4.092049 +L 2.927,4.092049,3.0335,3.971829 +L 3.0335,3.971829,3.1292,3.843068 +L 3.1292,3.843068,3.2119,3.703981 +L 3.2119,3.703981,3.2818,3.55457 +L 3.2818,3.55457,3.3392,3.394832 +L 3.3392,3.394832,3.3838,3.224768 +L 3.3838,3.224768,3.4155,3.044381 +L 3.4155,3.044381,3.4344,2.853665 +L 3.4344,2.853665,3.4413,2.652625 +L 3.4413,2.652625,3.4344,2.44813 +L 3.4344,2.44813,3.4136,2.25202 +L 3.4136,2.25202,3.3779,2.064293 +L 3.3779,2.064293,3.3293,1.884953 +L 3.3293,1.884953,3.2659,1.713997 +L 3.2659,1.713997,3.1896,1.551426 +L 3.1896,1.551426,3.0984,1.397239 +L 3.0984,1.397239,2.9934,1.251438 +L 2.9934,1.251438,2.875,1.118678 +L 2.875,1.118678,2.7457,1.00362 +L 2.7457,1.00362,2.604,0.906265 +L 2.604,0.906265,2.4509,0.826609 +L 2.4509,0.826609,2.2859,0.764654 +L 2.2859,0.764654,2.1095,0.720402 +L 2.1095,0.720402,1.9202,0.693851 +L 1.9202,0.693851,1.7201,0.685 +L 1.7201,0.685,1.5268,0.692958 +L 1.5268,0.692958,1.3435,0.716831 +L 1.3435,0.716831,1.1711,0.75662 +L 1.1711,0.75662,1.0086,0.812324 +L 1.0086,0.812324,0.8569,0.883943 +L 0.8569,0.883943,0.7147,0.971479 +L 0.7147,0.971479,0.5834,1.07493 +L 0.5834,1.07493,0.4626,1.194296 +L 0.4626,1.194296,0.354,1.326783 +L 0.354,1.326783,0.2604,1.469596 +L 0.2604,1.469596,0.1801,1.622735 +L 0.1801,1.622735,0.1157,1.786199 +L 0.1157,1.786199,0.0647,1.959988 +L 0.0647,1.959988,0.0285,2.144104 +L 0.0285,2.144104,0.0067,2.338545 +L 0.0067,2.338545,-0.0002,2.543312 + +[T] 8 +L 1.956,0.461406,1.3828,0.461406 +L 1.3828,0.461406,1.3828,6.726999 +L 1.3828,6.726999,-0.0006,6.726999 +L -0.0006,6.726999,-0.0006,7.681001 +L -0.0006,7.681001,3.3275,7.681001 +L 3.3275,7.681001,3.3275,6.726999 +L 3.3275,6.726999,1.956,6.726999 +L 1.956,6.726999,1.956,0.461406 + +[U] 70 +L 1.5291,1.321,1.6311,1.3269 +L 1.6311,1.3269,1.7283,1.344602 +L 1.7283,1.344602,1.8204,1.374103 +L 1.8204,1.374103,1.9086,1.415405 +L 1.9086,1.415405,1.9919,1.46851 +L 1.9919,1.46851,2.0711,1.533414 +L 2.0711,1.533414,2.145,1.610119 +L 2.145,1.610119,2.2148,1.698625 +L 2.2148,1.698625,2.2782,1.801804 +L 2.2782,1.801804,2.3332,1.922529 +L 2.3332,1.922529,2.3793,2.0608 +L 2.3793,2.0608,2.418,2.216617 +L 2.418,2.216617,2.4477,2.38998 +L 2.4477,2.38998,2.4685,2.580889 +L 2.4685,2.580889,2.4814,2.789343 +L 2.4814,2.789343,2.4853,3.015344 +L 2.4853,3.015344,2.4853,7.64622 +L 2.4853,7.64622,3.0591,7.64622 +L 3.0591,7.64622,3.0591,3.015344 +L 3.0591,3.015344,3.0522,2.683058 +L 3.0522,2.683058,3.0313,2.379344 +L 3.0313,2.379344,2.9977,2.1042 +L 2.9977,2.1042,2.9501,1.857626 +L 2.9501,1.857626,2.8886,1.63962 +L 2.8886,1.63962,2.8143,1.450188 +L 2.8143,1.450188,2.7261,1.289324 +L 2.7261,1.289324,2.6241,1.157031 +L 2.6241,1.157031,2.5121,1.046398 +L 2.5121,1.046398,2.3927,0.950517 +L 2.3927,0.950517,2.2663,0.869387 +L 2.2663,0.869387,2.1331,0.803008 +L 2.1331,0.803008,1.9928,0.751379 +L 1.9928,0.751379,1.8452,0.714503 +L 1.8452,0.714503,1.6906,0.692375 +L 1.6906,0.692375,1.5291,0.685 +L 1.5291,0.685,1.3676,0.692375 +L 1.3676,0.692375,1.213,0.714503 +L 1.213,0.714503,1.0653,0.751379 +L 1.0653,0.751379,0.9256,0.803008 +L 0.9256,0.803008,0.7918,0.869387 +L 0.7918,0.869387,0.666,0.950517 +L 0.666,0.950517,0.5461,1.046398 +L 0.5461,1.046398,0.4341,1.157031 +L 0.4341,1.157031,0.332,1.289324 +L 0.332,1.289324,0.2443,1.450188 +L 0.2443,1.450188,0.1695,1.63962 +L 0.1695,1.63962,0.1081,1.857626 +L 0.1081,1.857626,0.0605,2.1042 +L 0.0605,2.1042,0.0268,2.379344 +L 0.0268,2.379344,0.0065,2.683058 +L 0.0065,2.683058,0.0001,3.015344 +L 0.0001,3.015344,0.0001,7.64622 +L 0.0001,7.64622,0.5733,7.64622 +L 0.5733,7.64622,0.5733,3.015344 +L 0.5733,3.015344,0.5778,2.789343 +L 0.5778,2.789343,0.5907,2.580889 +L 0.5907,2.580889,0.6115,2.38998 +L 0.6115,2.38998,0.6412,2.216617 +L 0.6412,2.216617,0.6789,2.0608 +L 0.6789,2.0608,0.7254,1.922529 +L 0.7254,1.922529,0.7799,1.801804 +L 0.7799,1.801804,0.8434,1.698625 +L 0.8434,1.698625,0.9137,1.610119 +L 0.9137,1.610119,0.988,1.533414 +L 0.988,1.533414,1.0668,1.46851 +L 1.0668,1.46851,1.15,1.415405 +L 1.15,1.415405,1.2377,1.374103 +L 1.2377,1.374103,1.3309,1.344602 +L 1.3309,1.344602,1.428,1.3269 +L 1.428,1.3269,1.5291,1.321 + +[V] 10 +L 3.5849,7.671063,2.1565,0.570719 +L 2.1565,0.570719,2.0698,0.570719 +L 2.0698,0.570719,1.5139,0.570719 +L 1.5139,0.570719,1.4277,0.570719 +L 1.4277,0.570719,-0.0003,7.671063 +L -0.0003,7.671063,0.6418,7.671063 +L 0.6418,7.671063,1.7621,2.101092 +L 1.7621,2.101092,1.822,2.101092 +L 1.822,2.101092,2.9418,7.671063 +L 2.9418,7.671063,3.5849,7.671063 + +[W] 13 +L -0.0006,7.671063,0.6118,7.671063 +L 0.6118,7.671063,1.0929,3.358188 +L 1.0929,3.358188,1.5591,7.671063 +L 1.5591,7.671063,2.1715,7.671063 +L 2.1715,7.671063,2.6382,3.358188 +L 2.6382,3.358188,3.1188,7.671063 +L 3.1188,7.671063,3.7283,7.671063 +L 3.7283,7.671063,2.9424,0.570719 +L 2.9424,0.570719,2.33,0.570719 +L 2.33,0.570719,1.8643,4.858751 +L 1.8643,4.858751,1.3981,0.570719 +L 1.3981,0.570719,0.7881,0.570719 +L 0.7881,0.570719,-0.0006,7.671063 + +[X] 12 +L 3.6268,0.570719,2.9272,0.570719 +L 2.9272,0.570719,1.753,3.452594 +L 1.753,3.452594,0.6986,0.570719 +L 0.6986,0.570719,0,0.570719 +L 0,0.570719,1.3883,4.356907 +L 1.3883,4.356907,0.0416,7.671063 +L 0.0416,7.671063,0.7402,7.671063 +L 0.7402,7.671063,1.8402,4.953156 +L 1.8402,4.953156,2.8826,7.671063 +L 2.8826,7.671063,3.5817,7.671063 +L 3.5817,7.671063,2.2043,4.068718 +L 2.2043,4.068718,3.6268,0.570719 + +[Y] 9 +L 2.0459,0.570719,1.4727,0.570719 +L 1.4727,0.570719,1.4727,3.34825 +L 1.4727,3.34825,-0.0004,7.616408 +L -0.0004,7.616408,0.6423,7.616408 +L 0.6423,7.616408,1.7595,4.30225 +L 1.7595,4.30225,2.8773,7.616408 +L 2.8773,7.616408,3.5194,7.616408 +L 3.5194,7.616408,2.0459,3.34825 +L 2.0459,3.34825,2.0459,0.570719 + +[Z] 10 +L 0.1727,7.681001,3.086,7.681001 +L 3.086,7.681001,3.086,6.831346 +L 3.086,6.831346,0.7137,1.321 +L 0.7137,1.321,3.2025,1.321 +L 3.2025,1.321,3.2025,0.367 +L 3.2025,0.367,-0.0002,0.367 +L -0.0002,0.367,-0.0002,1.216656 +L -0.0002,1.216656,2.3716,6.726999 +L 2.3716,6.726999,0.1727,6.726999 +L 0.1727,6.726999,0.1727,7.681001 + +[[] 8 +L -0.0007,8.317001,1.7592,8.317001 +L 1.7592,8.317001,1.7592,7.681001 +L 1.7592,7.681001,0.5731,7.681001 +L 0.5731,7.681001,0.5731,0.367 +L 0.5731,0.367,1.7592,0.367 +L 1.7592,0.367,1.7592,-0.269 +L 1.7592,-0.269,-0.0007,-0.269 +L -0.0007,-0.269,-0.0007,8.317001 + +[\] 4 +L 0.4091,8.267315,3.7223,0.217938 +L 3.7223,0.217938,3.3071,0.058938 +L 3.3071,0.058938,-0.0002,8.073532 +L -0.0002,8.073532,0.4091,8.267315 + +[a] 197 +L 1.5141,5.773,1.6696,5.766169 +L 1.6696,5.766169,1.8163,5.745671 +L 1.8163,5.745671,1.954,5.711513 +L 1.954,5.711513,2.0829,5.663688 +L 2.0829,5.663688,2.2028,5.6022 +L 2.2028,5.6022,2.3142,5.527047 +L 2.3142,5.527047,2.4168,5.438231 +L 2.4168,5.438231,2.5105,5.33575 +L 2.5105,5.33575,2.5942,5.220227 +L 2.5942,5.220227,2.6665,5.092281 +L 2.6665,5.092281,2.728,4.951914 +L 2.728,4.951914,2.778,4.799126 +L 2.778,4.799126,2.8171,4.633914 +L 2.8171,4.633914,2.8449,4.456281 +L 2.8449,4.456281,2.8617,4.266226 +L 2.8617,4.266226,2.8677,4.06375 +L 2.8677,4.06375,2.8677,1.753281 +L 2.8677,1.753281,2.8697,1.60942 +L 2.8697,1.60942,2.8776,1.46851 +L 2.8776,1.46851,2.891,1.330548 +L 2.891,1.330548,2.9093,1.195539 +L 2.9093,1.195539,2.9326,1.063479 +L 2.9326,1.063479,2.9618,0.93437 +L 2.9618,0.93437,2.9955,0.808209 +L 2.9955,0.808209,3.0352,0.685 +L 3.0352,0.685,2.3415,0.685 +L 2.3415,0.685,2.3296,0.761473 +L 2.3296,0.761473,2.3182,0.836856 +L 2.3182,0.836856,2.3078,0.911155 +L 2.3078,0.911155,2.2984,0.984367 +L 2.2984,0.984367,2.29,1.056492 +L 2.29,1.056492,2.282,1.12753 +L 2.282,1.12753,2.2761,1.19748 +L 2.2761,1.19748,2.2702,1.266344 +L 2.2702,1.266344,2.2196,1.197712 +L 2.2196,1.197712,2.1661,1.133429 +L 2.1661,1.133429,2.1096,1.073494 +L 2.1096,1.073494,2.0492,1.017906 +L 2.0492,1.017906,1.9858,0.966665 +L 1.9858,0.966665,1.9194,0.919774 +L 1.9194,0.919774,1.849,0.877228 +L 1.849,0.877228,1.7757,0.839031 +L 1.7757,0.839031,1.7004,0.805104 +L 1.7004,0.805104,1.626,0.775369 +L 1.626,0.775369,1.5527,0.749826 +L 1.5527,0.749826,1.4784,0.728476 +L 1.4784,0.728476,1.4051,0.711319 +L 1.4051,0.711319,1.3327,0.698354 +L 1.3327,0.698354,1.2604,0.68958 +L 1.2604,0.68958,1.1885,0.685 +L 1.1885,0.685,1.0553,0.690783 +L 1.0553,0.690783,0.9294,0.708135 +L 0.9294,0.708135,0.81,0.737055 +L 0.81,0.737055,0.6985,0.777543 +L 0.6985,0.777543,0.5935,0.829599 +L 0.5935,0.829599,0.4954,0.893221 +L 0.4954,0.893221,0.4042,0.968413 +L 0.4042,0.968413,0.3205,1.055171 +L 0.3205,1.055171,0.2452,1.151324 +L 0.2452,1.151324,0.1803,1.254699 +L 0.1803,1.254699,0.1248,1.365292 +L 0.1248,1.365292,0.0802,1.483106 +L 0.0802,1.483106,0.0445,1.608139 +L 0.0445,1.608139,0.0197,1.740394 +L 0.0197,1.740394,0.0049,1.879868 +L 0.0049,1.879868,-0.0006,2.026562 +L -0.0006,2.026562,0.0029,2.139213 +L 0.0029,2.139213,0.0128,2.251088 +L 0.0128,2.251088,0.0287,2.362186 +L 0.0287,2.362186,0.0514,2.472507 +L 0.0514,2.472507,0.0812,2.582052 +L 0.0812,2.582052,0.1168,2.690821 +L 0.1168,2.690821,0.1595,2.798815 +L 0.1595,2.798815,0.209,2.906031 +L 0.209,2.906031,0.2645,3.010297 +L 0.2645,3.010297,0.3289,3.109439 +L 0.3289,3.109439,0.4003,3.203457 +L 0.4003,3.203457,0.4805,3.292351 +L 0.4805,3.292351,0.5682,3.376121 +L 0.5682,3.376121,0.6633,3.454768 +L 0.6633,3.454768,0.7669,3.528289 +L 0.7669,3.528289,0.8779,3.596687 +L 0.8779,3.596687,1.0008,3.662058 +L 1.0008,3.662058,1.139,3.726496 +L 1.139,3.726496,1.2921,3.790003 +L 1.2921,3.790003,1.4615,3.852578 +L 1.4615,3.852578,1.6469,3.914222 +L 1.6469,3.914222,1.847,3.974933 +L 1.847,3.974933,2.0626,4.034714 +L 2.0626,4.034714,2.2939,4.093563 +L 2.2939,4.093563,2.2939,4.277405 +L 2.2939,4.277405,2.291,4.364048 +L 2.291,4.364048,2.282,4.447585 +L 2.282,4.447585,2.2667,4.528018 +L 2.2667,4.528018,2.2454,4.605344 +L 2.2454,4.605344,2.2176,4.679564 +L 2.2176,4.679564,2.1849,4.750679 +L 2.1849,4.750679,2.1453,4.818689 +L 2.1453,4.818689,2.0997,4.883594 +L 2.0997,4.883594,2.0482,4.942986 +L 2.0482,4.942986,1.9907,4.994459 +L 1.9907,4.994459,1.9263,5.038014 +L 1.9263,5.038014,1.8559,5.073649 +L 1.8559,5.073649,1.7796,5.101364 +L 1.7796,5.101364,1.6974,5.121162 +L 1.6974,5.121162,1.6092,5.133041 +L 1.6092,5.133041,1.5141,5.137 +L 1.5141,5.137,1.4378,5.13374 +L 1.4378,5.13374,1.3664,5.123958 +L 1.3664,5.123958,1.299,5.107652 +L 1.299,5.107652,1.2361,5.084828 +L 1.2361,5.084828,1.1771,5.055482 +L 1.1771,5.055482,1.1236,5.019614 +L 1.1236,5.019614,1.0741,4.977224 +L 1.0741,4.977224,1.0285,4.928312 +L 1.0285,4.928312,0.9879,4.873423 +L 0.9879,4.873423,0.9502,4.8131 +L 0.9502,4.8131,0.9155,4.747342 +L 0.9155,4.747342,0.8858,4.676149 +L 0.8858,4.676149,0.8591,4.599521 +L 0.8591,4.599521,0.8358,4.517459 +L 0.8358,4.517459,0.816,4.429963 +L 0.816,4.429963,0.8001,4.337032 +L 0.8001,4.337032,0.158,4.337032 +L 0.158,4.337032,0.1778,4.490092 +L 0.1778,4.490092,0.207,4.636243 +L 0.207,4.636243,0.2467,4.775485 +L 0.2467,4.775485,0.2952,4.907818 +L 0.2952,4.907818,0.3547,5.033238 +L 0.3547,5.033238,0.423,5.151751 +L 0.423,5.151751,0.5013,5.263353 +L 0.5013,5.263353,0.5895,5.368047 +L 0.5895,5.368047,0.6851,5.462958 +L 0.6851,5.462958,0.7867,5.545215 +L 0.7867,5.545215,0.8937,5.614815 +L 0.8937,5.614815,1.0067,5.671761 +L 1.0067,5.671761,1.1251,5.716053 +L 1.1251,5.716053,1.2495,5.74769 +L 1.2495,5.74769,1.3788,5.766672 +L 1.3788,5.766672,1.5141,5.773 +L 2.2939,3.502281,2.1384,3.456282 +L 2.1384,3.456282,1.9927,3.410204 +L 1.9927,3.410204,1.8564,3.364049 +L 1.8564,3.364049,1.7291,3.317816 +L 1.7291,3.317816,1.6112,3.271506 +L 1.6112,3.271506,1.5032,3.225119 +L 1.5032,3.225119,1.4041,3.178652 +L 1.4041,3.178652,1.3139,3.13211 +L 1.3139,3.13211,1.2326,3.084363 +L 1.2326,3.084363,1.1583,3.034287 +L 1.1583,3.034287,1.0919,2.981882 +L 1.0919,2.981882,1.0325,2.927148 +L 1.0325,2.927148,0.9804,2.870085 +L 0.9804,2.870085,0.9363,2.810693 +L 0.9363,2.810693,0.8987,2.748972 +L 0.8987,2.748972,0.869,2.684921 +L 0.869,2.684921,0.8442,2.617494 +L 0.8442,2.617494,0.8234,2.545641 +L 0.8234,2.545641,0.8055,2.469363 +L 0.8055,2.469363,0.7902,2.38866 +L 0.7902,2.38866,0.7788,2.303531 +L 0.7788,2.303531,0.7709,2.213977 +L 0.7709,2.213977,0.7659,2.119998 +L 0.7659,2.119998,0.7644,2.021593 +L 0.7644,2.021593,0.7664,1.938444 +L 0.7664,1.938444,0.7728,1.86042 +L 0.7728,1.86042,0.7837,1.787518 +L 0.7837,1.787518,0.7981,1.719742 +L 0.7981,1.719742,0.8174,1.65709 +L 0.8174,1.65709,0.8402,1.599561 +L 0.8402,1.599561,0.868,1.547155 +L 0.868,1.547155,0.9007,1.499875 +L 0.9007,1.499875,0.9363,1.457951 +L 0.9363,1.457951,0.975,1.421618 +L 0.975,1.421618,1.0166,1.390873 +L 1.0166,1.390873,1.0622,1.365719 +L 1.0622,1.365719,1.1117,1.346155 +L 1.1117,1.346155,1.1643,1.332179 +L 1.1643,1.332179,1.2198,1.323795 +L 1.2198,1.323795,1.2782,1.321 +L 1.2782,1.321,1.3397,1.325736 +L 1.3397,1.325736,1.4021,1.334974 +L 1.4021,1.334974,1.4655,1.348716 +L 1.4655,1.348716,1.5294,1.366962 +L 1.5294,1.366962,1.5943,1.389708 +L 1.5943,1.389708,1.6597,1.416958 +L 1.6597,1.416958,1.7261,1.448712 +L 1.7261,1.448712,1.7935,1.484968 +L 1.7935,1.484968,1.8604,1.530697 +L 1.8604,1.530697,1.9263,1.590865 +L 1.9263,1.590865,1.9907,1.665474 +L 1.9907,1.665474,2.0541,1.754523 +L 2.0541,1.754523,2.1156,1.858014 +L 2.1156,1.858014,2.176,1.975943 +L 2.176,1.975943,2.2355,2.108314 +L 2.2355,2.108314,2.2939,2.255124 +L 2.2939,2.255124,2.2939,3.502281 + +[b] 118 +L 0.5733,0.665125,-0.0004,0.665125 +L -0.0004,0.665125,-0.0004,7.80025 +L -0.0004,7.80025,0.5733,7.80025 +L 0.5733,7.80025,0.5733,5.201594 +L 0.5733,5.201594,0.6917,5.335517 +L 0.6917,5.335517,0.8101,5.451584 +L 0.8101,5.451584,0.9281,5.549794 +L 0.9281,5.549794,1.0465,5.630149 +L 1.0465,5.630149,1.1649,5.692646 +L 1.1649,5.692646,1.2823,5.737287 +L 1.2823,5.737287,1.3998,5.764073 +L 1.3998,5.764073,1.5177,5.773 +L 1.5177,5.773,1.6723,5.763606 +L 1.6723,5.763606,1.8214,5.735425 +L 1.8214,5.735425,1.9656,5.688454 +L 1.9656,5.688454,2.1043,5.622696 +L 2.1043,5.622696,2.2371,5.538149 +L 2.2371,5.538149,2.3644,5.434814 +L 2.3644,5.434814,2.4868,5.312692 +L 2.4868,5.312692,2.6028,5.171781 +L 2.6028,5.171781,2.7098,5.011539 +L 2.7098,5.011539,2.8024,4.831422 +L 2.8024,4.831422,2.8812,4.631429 +L 2.8812,4.631429,2.9446,4.411562 +L 2.9446,4.411562,2.9947,4.17182 +L 2.9947,4.17182,3.0303,3.912204 +L 3.0303,3.912204,3.0516,3.632711 +L 3.0516,3.632711,3.0586,3.333344 +L 3.0586,3.333344,3.0516,3.074309 +L 3.0516,3.074309,3.0308,2.823891 +L 3.0308,2.823891,2.9962,2.582091 +L 2.9962,2.582091,2.9466,2.34891 +L 2.9466,2.34891,2.8837,2.124346 +L 2.8837,2.124346,2.8069,1.9084 +L 2.8069,1.9084,2.7157,1.70107 +L 2.7157,1.70107,2.6107,1.502359 +L 2.6107,1.502359,2.4928,1.319486 +L 2.4928,1.319486,2.3629,1.15967 +L 2.3629,1.15967,2.2222,1.022913 +L 2.2222,1.022913,2.0696,0.909214 +L 2.0696,0.909214,1.9061,0.818574 +L 1.9061,0.818574,1.7302,0.750991 +L 1.7302,0.750991,1.5424,0.706467 +L 1.5424,0.706467,1.3438,0.685 +L 1.3438,0.685,1.2362,0.690435 +L 1.2362,0.690435,1.1322,0.706738 +L 1.1322,0.706738,1.0311,0.733911 +L 1.0311,0.733911,0.933,0.771954 +L 0.933,0.771954,0.8384,0.820864 +L 0.8384,0.820864,0.7467,0.880644 +L 0.7467,0.880644,0.6585,0.951293 +L 0.6585,0.951293,0.5733,1.032812 +L 0.5733,1.032812,0.5733,0.665125 +L 1.3235,1.321,1.4305,1.338856 +L 1.4305,1.338856,1.5315,1.372551 +L 1.5315,1.372551,1.6277,1.422082 +L 1.6277,1.422082,1.7188,1.487453 +L 1.7188,1.487453,1.8041,1.568661 +L 1.8041,1.568661,1.8843,1.665707 +L 1.8843,1.665707,1.9586,1.778591 +L 1.9586,1.778591,2.028,1.907313 +L 2.028,1.907313,2.0904,2.049233 +L 2.0904,2.049233,2.1444,2.20171 +L 2.1444,2.20171,2.19,2.364748 +L 2.19,2.364748,2.2272,2.538344 +L 2.2272,2.538344,2.2569,2.722498 +L 2.2569,2.722498,2.2772,2.917211 +L 2.2772,2.917211,2.2896,3.122482 +L 2.2896,3.122482,2.2936,3.338312 +L 2.2936,3.338312,2.2896,3.5989 +L 2.2896,3.5989,2.2767,3.836585 +L 2.2767,3.836585,2.2554,4.051367 +L 2.2554,4.051367,2.2257,4.243247 +L 2.2257,4.243247,2.1875,4.412223 +L 2.1875,4.412223,2.14,4.558295 +L 2.14,4.558295,2.0845,4.681467 +L 2.0845,4.681467,2.0201,4.781734 +L 2.0201,4.781734,1.9517,4.865 +L 1.9517,4.865,1.8804,4.937164 +L 1.8804,4.937164,1.8075,4.998223 +L 1.8075,4.998223,1.7327,5.048183 +L 1.7327,5.048183,1.6564,5.08704 +L 1.6564,5.08704,1.5776,5.114796 +L 1.5776,5.114796,1.4979,5.131448 +L 1.4979,5.131448,1.4156,5.137 +L 1.4156,5.137,1.3244,5.130169 +L 1.3244,5.130169,1.2392,5.109672 +L 1.2392,5.109672,1.158,5.075512 +L 1.158,5.075512,1.0827,5.027688 +L 1.0827,5.027688,1.0123,4.9662 +L 1.0123,4.9662,0.9459,4.891047 +L 0.9459,4.891047,0.8855,4.802231 +L 0.8855,4.802231,0.83,4.69975 +L 0.83,4.69975,0.7794,4.590205 +L 0.7794,4.590205,0.7348,4.480193 +L 0.7348,4.480193,0.6942,4.369716 +L 0.6942,4.369716,0.6595,4.258773 +L 0.6595,4.258773,0.6303,4.147364 +L 0.6303,4.147364,0.606,4.035491 +L 0.606,4.035491,0.5872,3.92315 +L 0.5872,3.92315,0.5733,3.810344 +L 0.5733,3.810344,0.5733,1.981844 +L 0.5733,1.981844,0.604,1.904634 +L 0.604,1.904634,0.6367,1.832006 +L 0.6367,1.832006,0.6699,1.763956 +L 0.6699,1.763956,0.7041,1.700488 +L 0.7041,1.700488,0.7398,1.641601 +L 0.7398,1.641601,0.7769,1.587294 +L 0.7769,1.587294,0.8151,1.537567 +L 0.8151,1.537567,0.8537,1.492422 +L 0.8537,1.492422,0.8959,1.452245 +L 0.8959,1.452245,0.9429,1.417425 +L 0.9429,1.417425,0.9945,1.387961 +L 0.9945,1.387961,1.0504,1.363855 +L 1.0504,1.363855,1.1114,1.345107 +L 1.1114,1.345107,1.1773,1.331714 +L 1.1773,1.331714,1.2481,1.323679 +L 1.2481,1.323679,1.3235,1.321 + +[c] 130 +L -0.0003,3.219063,0.0081,3.468665 +L 0.0081,3.468665,0.0334,3.710659 +L 0.0334,3.710659,0.0755,3.945043 +L 0.0755,3.945043,0.1345,4.17182 +L 0.1345,4.17182,0.2103,4.39099 +L 0.2103,4.39099,0.3029,4.602549 +L 0.3029,4.602549,0.4124,4.8065 +L 0.4124,4.8065,0.5388,5.002843 +L 0.5388,5.002843,0.676,5.183349 +L 0.676,5.183349,0.8197,5.339787 +L 0.8197,5.339787,0.9673,5.472157 +L 0.9673,5.472157,1.1219,5.580461 +L 1.1219,5.580461,1.2805,5.664697 +L 1.2805,5.664697,1.446,5.724865 +L 1.446,5.724865,1.6164,5.760966 +L 1.6164,5.760966,1.7918,5.773 +L 1.7918,5.773,1.9796,5.765625 +L 1.9796,5.765625,2.1575,5.743497 +L 2.1575,5.743497,2.3249,5.70662 +L 2.3249,5.70662,2.4825,5.654992 +L 2.4825,5.654992,2.6301,5.588613 +L 2.6301,5.588613,2.7684,5.507483 +L 2.7684,5.507483,2.8957,5.411601 +L 2.8957,5.411601,3.0136,5.300968 +L 3.0136,5.300968,3.1207,5.17838 +L 3.1207,5.17838,3.2148,5.04663 +L 3.2148,5.04663,3.297,4.905721 +L 3.297,4.905721,3.3669,4.755649 +L 3.3669,4.755649,3.4249,4.596416 +L 3.4249,4.596416,3.4705,4.428022 +L 3.4705,4.428022,3.5037,4.250466 +L 3.5037,4.250466,3.525,4.06375 +L 3.525,4.06375,2.8521,4.06375 +L 2.8521,4.06375,2.8283,4.204972 +L 2.8283,4.204972,2.7986,4.335479 +L 2.7986,4.335479,2.7629,4.455271 +L 2.7629,4.455271,2.7228,4.564351 +L 2.7228,4.564351,2.6772,4.662717 +L 2.6772,4.662717,2.6262,4.750369 +L 2.6262,4.750369,2.5697,4.827307 +L 2.5697,4.827307,2.5073,4.893531 +L 2.5073,4.893531,2.4399,4.950594 +L 2.4399,4.950594,2.3656,5.000048 +L 2.3656,5.000048,2.2853,5.041894 +L 2.2853,5.041894,2.1991,5.076132 +L 2.1991,5.076132,2.1069,5.102762 +L 2.1069,5.102762,2.0078,5.121783 +L 2.0078,5.121783,1.9028,5.133196 +L 1.9028,5.133196,1.7918,5.137 +L 1.7918,5.137,1.6957,5.129935 +L 1.6957,5.129935,1.6025,5.10874 +L 1.6025,5.10874,1.5104,5.073416 +L 1.5104,5.073416,1.4207,5.023961 +L 1.4207,5.023961,1.333,4.960376 +L 1.333,4.960376,1.2478,4.882663 +L 1.2478,4.882663,1.165,4.790817 +L 1.165,4.790817,1.0838,4.684843 +L 1.0838,4.684843,1.009,4.562877 +L 1.009,4.562877,0.9446,4.423053 +L 0.9446,4.423053,0.8891,4.265373 +L 0.8891,4.265373,0.844,4.089836 +L 0.844,4.089836,0.8088,3.896443 +L 0.8088,3.896443,0.784,3.685193 +L 0.784,3.685193,0.7692,3.456087 +L 0.7692,3.456087,0.7642,3.209124 +L 0.7642,3.209124,0.7692,2.982736 +L 0.7692,2.982736,0.785,2.770632 +L 0.785,2.770632,0.8118,2.572814 +L 0.8118,2.572814,0.8479,2.389281 +L 0.8479,2.389281,0.895,2.220033 +L 0.895,2.220033,0.9525,2.06507 +L 0.9525,2.06507,1.0204,1.924393 +L 1.0204,1.924393,1.0991,1.798 +L 1.0991,1.798,1.1834,1.686203 +L 1.1834,1.686203,1.2696,1.589312 +L 1.2696,1.589312,1.3568,1.507328 +L 1.3568,1.507328,1.446,1.44025 +L 1.446,1.44025,1.5371,1.388078 +L 1.5371,1.388078,1.6293,1.350812 +L 1.6293,1.350812,1.7234,1.328453 +L 1.7234,1.328453,1.8186,1.321 +L 1.8186,1.321,1.9127,1.323252 +L 1.9127,1.323252,2.0029,1.330006 +L 2.0029,1.330006,2.0881,1.341263 +L 2.0881,1.341263,2.1694,1.357023 +L 2.1694,1.357023,2.2457,1.377287 +L 2.2457,1.377287,2.318,1.402053 +L 2.318,1.402053,2.3859,1.431322 +L 2.3859,1.431322,2.4493,1.465093 +L 2.4493,1.465093,2.5092,1.509115 +L 2.5092,1.509115,2.5662,1.569126 +L 2.5662,1.569126,2.6202,1.645132 +L 2.6202,1.645132,2.6728,1.737133 +L 2.6728,1.737133,2.7213,1.845126 +L 2.7213,1.845126,2.7679,1.969111 +L 2.7679,1.969111,2.8115,2.10909 +L 2.8115,2.10909,2.8521,2.265063 +L 2.8521,2.265063,3.5517,2.265063 +L 3.5517,2.265063,3.521,2.079356 +L 3.521,2.079356,3.4794,1.904828 +L 3.4794,1.904828,3.4264,1.741481 +L 3.4264,1.741481,3.3624,1.589312 +L 3.3624,1.589312,3.2881,1.448325 +L 3.2881,1.448325,3.2024,1.318515 +L 3.2024,1.318515,3.1058,1.199887 +L 3.1058,1.199887,2.9988,1.092437 +L 2.9988,1.092437,2.8818,0.996944 +L 2.8818,0.996944,2.756,0.914184 +L 2.756,0.914184,2.6212,0.844156 +L 2.6212,0.844156,2.4785,0.78686 +L 2.4785,0.78686,2.3264,0.742295 +L 2.3264,0.742295,2.1659,0.710464 +L 2.1659,0.710464,1.9969,0.691367 +L 1.9969,0.691367,1.8186,0.685 +L 1.8186,0.685,1.6402,0.697034 +L 1.6402,0.697034,1.4668,0.733135 +L 1.4668,0.733135,1.2993,0.793304 +L 1.2993,0.793304,1.1378,0.877539 +L 1.1378,0.877539,0.9812,0.985842 +L 0.9812,0.985842,0.8306,1.118213 +L 0.8306,1.118213,0.6859,1.27465 +L 0.6859,1.27465,0.5462,1.455156 +L 0.5462,1.455156,0.4179,1.651188 +L 0.4179,1.651188,0.3069,1.854209 +L 0.3069,1.854209,0.2132,2.064216 +L 0.2132,2.064216,0.136,2.281211 +L 0.136,2.281211,0.0765,2.505193 +L 0.0765,2.505193,0.0339,2.736162 +L 0.0339,2.736162,0.0081,2.974119 +L 0.0081,2.974119,-0.0003,3.219063 + +[d] 118 +L 2.2939,0.665125,2.2939,1.032812 +L 2.2939,1.032812,2.2126,0.951293 +L 2.2126,0.951293,2.1269,0.880644 +L 2.1269,0.880644,2.0372,0.820864 +L 2.0372,0.820864,1.9426,0.771954 +L 1.9426,0.771954,1.844,0.733911 +L 1.844,0.733911,1.7419,0.706738 +L 1.7419,0.706738,1.6339,0.690435 +L 1.6339,0.690435,1.5229,0.685 +L 1.5229,0.685,1.3465,0.705884 +L 1.3465,0.705884,1.18,0.748662 +L 1.18,0.748662,1.0245,0.813333 +L 1.0245,0.813333,0.8788,0.899898 +L 0.8788,0.899898,0.743,1.008357 +L 0.743,1.008357,0.6182,1.138709 +L 0.6182,1.138709,0.5032,1.290954 +L 0.5032,1.290954,0.3982,1.465093 +L 0.3982,1.465093,0.305,1.653595 +L 0.305,1.653595,0.2238,1.84893 +L 0.2238,1.84893,0.1549,2.051096 +L 0.1549,2.051096,0.0989,2.260093 +L 0.0989,2.260093,0.0553,2.475923 +L 0.0553,2.475923,0.0241,2.698585 +L 0.0241,2.698585,0.0058,2.928079 +L 0.0058,2.928079,-0.0002,3.164405 +L -0.0002,3.164405,0.0058,3.465094 +L 0.0058,3.465094,0.0256,3.748545 +L 0.0256,3.748545,0.0583,4.014761 +L 0.0583,4.014761,0.1049,4.263742 +L 0.1049,4.263742,0.1643,4.495488 +L 0.1643,4.495488,0.2362,4.709998 +L 0.2362,4.709998,0.3219,4.907272 +L 0.3219,4.907272,0.4205,5.087313 +L 0.4205,5.087313,0.5275,5.248021 +L 0.5275,5.248021,0.638,5.387301 +L 0.638,5.387301,0.751,5.505154 +L 0.751,5.505154,0.8669,5.601578 +L 0.8669,5.601578,0.9868,5.676574 +L 0.9868,5.676574,1.1097,5.730145 +L 1.1097,5.730145,1.2355,5.762286 +L 1.2355,5.762286,1.3644,5.773 +L 1.3644,5.773,1.4744,5.763606 +L 1.4744,5.763606,1.5853,5.735425 +L 1.5853,5.735425,1.6983,5.688454 +L 1.6983,5.688454,1.8133,5.622696 +L 1.8133,5.622696,1.9307,5.538149 +L 1.9307,5.538149,2.0496,5.434814 +L 2.0496,5.434814,2.171,5.312692 +L 2.171,5.312692,2.2939,5.171781 +L 2.2939,5.171781,2.2939,7.80025 +L 2.2939,7.80025,2.8676,7.80025 +L 2.8676,7.80025,2.8676,0.665125 +L 2.8676,0.665125,2.2939,0.665125 +L 1.4392,5.137,1.3782,5.130012 +L 1.3782,5.130012,1.3188,5.109052 +L 1.3188,5.109052,1.2593,5.074114 +L 1.2593,5.074114,1.2018,5.025203 +L 1.2018,5.025203,1.1444,4.962317 +L 1.1444,4.962317,1.0889,4.885457 +L 1.0889,4.885457,1.0334,4.794622 +L 1.0334,4.794622,0.9794,4.689812 +L 0.9794,4.689812,0.9283,4.568079 +L 0.9283,4.568079,0.8847,4.426469 +L 0.8847,4.426469,0.8481,4.264984 +L 0.8481,4.264984,0.8184,4.083625 +L 0.8184,4.083625,0.7946,3.882391 +L 0.7946,3.882391,0.7777,3.661281 +L 0.7777,3.661281,0.7673,3.420296 +L 0.7673,3.420296,0.7639,3.159437 +L 0.7639,3.159437,0.7673,2.967519 +L 0.7673,2.967519,0.7767,2.784296 +L 0.7767,2.784296,0.7916,2.60977 +L 0.7916,2.60977,0.8129,2.443938 +L 0.8129,2.443938,0.8406,2.2868 +L 0.8406,2.2868,0.8743,2.138359 +L 0.8743,2.138359,0.914,1.998613 +L 0.914,1.998613,0.9601,1.867563 +L 0.9601,1.867563,1.0126,1.748157 +L 1.0126,1.748157,1.072,1.643348 +L 1.072,1.643348,1.1379,1.553134 +L 1.1379,1.553134,1.2113,1.477516 +L 1.2113,1.477516,1.291,1.416493 +L 1.291,1.416493,1.3782,1.370066 +L 1.3782,1.370066,1.4724,1.338235 +L 1.4724,1.338235,1.5734,1.321 +L 1.5734,1.321,1.6408,1.323911 +L 1.6408,1.323911,1.7052,1.332646 +L 1.7052,1.332646,1.7677,1.347202 +L 1.7677,1.347202,1.8261,1.367582 +L 1.8261,1.367582,1.8826,1.393785 +L 1.8826,1.393785,1.9351,1.42581 +L 1.9351,1.42581,1.9862,1.463657 +L 1.9862,1.463657,2.0337,1.507328 +L 2.0337,1.507328,2.0788,1.557753 +L 2.0788,1.557753,2.1195,1.615865 +L 2.1195,1.615865,2.1571,1.681662 +L 2.1571,1.681662,2.1918,1.755144 +L 2.1918,1.755144,2.222,1.836314 +L 2.222,1.836314,2.2493,1.925169 +L 2.2493,1.925169,2.273,2.02171 +L 2.273,2.02171,2.2939,2.125938 +L 2.2939,2.125938,2.2939,3.770594 +L 2.2939,3.770594,2.279,3.890465 +L 2.279,3.890465,2.2582,4.009093 +L 2.2582,4.009093,2.2314,4.126481 +L 2.2314,4.126481,2.1982,4.242626 +L 2.1982,4.242626,2.1591,4.357528 +L 2.1591,4.357528,2.1145,4.471188 +L 2.1145,4.471188,2.064,4.583606 +L 2.064,4.583606,2.0065,4.694782 +L 2.0065,4.694782,1.946,4.798426 +L 1.946,4.798426,1.8816,4.888252 +L 1.8816,4.888252,1.8152,4.964258 +L 1.8152,4.964258,1.7459,5.026446 +L 1.7459,5.026446,1.673,5.074812 +L 1.673,5.074812,1.5982,5.109361 +L 1.5982,5.109361,1.5199,5.130091 +L 1.5199,5.130091,1.4392,5.137 + +[e] 133 +L 0,3.219063,0.0084,3.468665 +L 0.0084,3.468665,0.0332,3.710659 +L 0.0332,3.710659,0.0748,3.945043 +L 0.0748,3.945043,0.1333,4.17182 +L 0.1333,4.17182,0.2076,4.39099 +L 0.2076,4.39099,0.2992,4.602549 +L 0.2992,4.602549,0.4068,4.8065 +L 0.4068,4.8065,0.5316,5.002843 +L 0.5316,5.002843,0.6679,5.183349 +L 0.6679,5.183349,0.8101,5.339787 +L 0.8101,5.339787,0.9587,5.472157 +L 0.9587,5.472157,1.1133,5.580461 +L 1.1133,5.580461,1.2738,5.664697 +L 1.2738,5.664697,1.4403,5.724865 +L 1.4403,5.724865,1.6137,5.760966 +L 1.6137,5.760966,1.7931,5.773 +L 1.7931,5.773,1.9645,5.763568 +L 1.9645,5.763568,2.131,5.735268 +L 2.131,5.735268,2.2915,5.688104 +L 2.2915,5.688104,2.4461,5.622074 +L 2.4461,5.622074,2.5947,5.537177 +L 2.5947,5.537177,2.7384,5.433417 +L 2.7384,5.433417,2.8762,5.31079 +L 2.8762,5.31079,3.0085,5.169296 +L 3.0085,5.169296,3.1299,5.006919 +L 3.1299,5.006919,3.2349,4.821639 +L 3.2349,4.821639,3.3236,4.613457 +L 3.3236,4.613457,3.3964,4.382371 +L 3.3964,4.382371,3.4529,4.128382 +L 3.4529,4.128382,3.4925,3.851492 +L 3.4925,3.851492,3.5173,3.551697 +L 3.5173,3.551697,3.5252,3.229 +L 3.5252,3.229,2.8534,3.229 +L 2.8534,3.229,0.765,3.229 +L 0.765,3.229,0.765,3.159437 +L 0.765,3.159437,0.7704,2.939066 +L 0.7704,2.939066,0.7863,2.732591 +L 0.7863,2.732591,0.8121,2.540013 +L 0.8121,2.540013,0.8487,2.361332 +L 0.8487,2.361332,0.8958,2.196548 +L 0.8958,2.196548,0.9533,2.045661 +L 0.9533,2.045661,1.0211,1.908672 +L 1.0211,1.908672,1.0994,1.785578 +L 1.0994,1.785578,1.1837,1.676692 +L 1.1837,1.676692,1.2699,1.582325 +L 1.2699,1.582325,1.3576,1.502476 +L 1.3576,1.502476,1.4467,1.437144 +L 1.4467,1.437144,1.5374,1.386331 +L 1.5374,1.386331,1.6296,1.350036 +L 1.6296,1.350036,1.7237,1.328259 +L 1.7237,1.328259,1.8193,1.321 +L 1.8193,1.321,1.914,1.323252 +L 1.914,1.323252,2.0032,1.330006 +L 2.0032,1.330006,2.0889,1.341263 +L 2.0889,1.341263,2.1696,1.357023 +L 2.1696,1.357023,2.2459,1.377287 +L 2.2459,1.377287,2.3183,1.402053 +L 2.3183,1.402053,2.3862,1.431322 +L 2.3862,1.431322,2.4501,1.465093 +L 2.4501,1.465093,2.5095,1.509115 +L 2.5095,1.509115,2.567,1.569126 +L 2.567,1.569126,2.6215,1.645132 +L 2.6215,1.645132,2.673,1.737133 +L 2.673,1.737133,2.7226,1.845126 +L 2.7226,1.845126,2.7687,1.969111 +L 2.7687,1.969111,2.8123,2.10909 +L 2.8123,2.10909,2.8534,2.265063 +L 2.8534,2.265063,3.552,2.265063 +L 3.552,2.265063,3.5153,2.070349 +L 3.5153,2.070349,3.4688,1.88868 +L 3.4688,1.88868,3.4123,1.720053 +L 3.4123,1.720053,3.3469,1.564469 +L 3.3469,1.564469,3.2706,1.421928 +L 3.2706,1.421928,3.1853,1.29243 +L 3.1853,1.29243,3.0902,1.175974 +L 3.0902,1.175974,2.9862,1.072562 +L 2.9862,1.072562,2.8722,0.981727 +L 2.8722,0.981727,2.7488,0.903003 +L 2.7488,0.903003,2.6165,0.836391 +L 2.6165,0.836391,2.4758,0.78189 +L 2.4758,0.78189,2.3252,0.739501 +L 2.3252,0.739501,2.1657,0.709223 +L 2.1657,0.709223,1.9972,0.691056 +L 1.9972,0.691056,1.8193,0.685 +L 1.8193,0.685,1.641,0.697034 +L 1.641,0.697034,1.4681,0.733135 +L 1.4681,0.733135,1.3001,0.793304 +L 1.3001,0.793304,1.1381,0.877539 +L 1.1381,0.877539,0.9825,0.985842 +L 0.9825,0.985842,0.8309,1.118213 +L 0.8309,1.118213,0.6862,1.27465 +L 0.6862,1.27465,0.547,1.455156 +L 0.547,1.455156,0.4186,1.651188 +L 0.4186,1.651188,0.3077,1.854209 +L 0.3077,1.854209,0.2135,2.064216 +L 0.2135,2.064216,0.1367,2.281211 +L 0.1367,2.281211,0.0768,2.505193 +L 0.0768,2.505193,0.0342,2.736162 +L 0.0342,2.736162,0.0084,2.974119 +L 0.0084,2.974119,0,3.219063 +L 1.6167,5.137,1.5216,5.13075 +L 1.5216,5.13075,1.4309,5.112001 +L 1.4309,5.112001,1.3452,5.080752 +L 1.3452,5.080752,1.2639,5.037003 +L 1.2639,5.037003,1.1866,4.980756 +L 1.1866,4.980756,1.1138,4.91201 +L 1.1138,4.91201,1.0449,4.830762 +L 1.0449,4.830762,0.9815,4.737016 +L 0.9815,4.737016,0.922,4.635894 +L 0.922,4.635894,0.8685,4.53252 +L 0.8685,4.53252,0.82,4.426896 +L 0.82,4.426896,0.7764,4.31902 +L 0.7764,4.31902,0.7377,4.208891 +L 0.7377,4.208891,0.705,4.096513 +L 0.705,4.096513,0.6773,3.981882 +L 0.6773,3.981882,0.6545,3.865 +L 0.6545,3.865,2.62,3.865 +L 2.62,3.865,2.5977,4.015654 +L 2.5977,4.015654,2.57,4.15707 +L 2.57,4.15707,2.5373,4.289246 +L 2.5373,4.289246,2.4996,4.412183 +L 2.4996,4.412183,2.457,4.525883 +L 2.457,4.525883,2.4094,4.630344 +L 2.4094,4.630344,2.3564,4.725564 +L 2.3564,4.725564,2.299,4.811548 +L 2.299,4.811548,2.2355,4.887825 +L 2.2355,4.887825,2.1662,4.953933 +L 2.1662,4.953933,2.0904,5.00987 +L 2.0904,5.00987,2.0081,5.055638 +L 2.0081,5.055638,1.9199,5.091233 +L 1.9199,5.091233,1.8248,5.11666 +L 1.8248,5.11666,1.7237,5.131915 +L 1.7237,5.131915,1.6167,5.137 + +[f] 60 +L 1.5826,7.045001,1.5172,7.040886 +L 1.5172,7.040886,1.4573,7.02854 +L 1.4573,7.02854,1.4038,7.007967 +L 1.4038,7.007967,1.3557,6.979164 +L 1.3557,6.979164,1.3141,6.942131 +L 1.3141,6.942131,1.2784,6.896869 +L 1.2784,6.896869,1.2487,6.843378 +L 1.2487,6.843378,1.2239,6.781657 +L 1.2239,6.781657,1.2051,6.708988 +L 1.2051,6.708988,1.1878,6.622656 +L 1.1878,6.622656,1.1734,6.522661 +L 1.1734,6.522661,1.1615,6.409001 +L 1.1615,6.409001,1.1526,6.281675 +L 1.1526,6.281675,1.1461,6.140687 +L 1.1461,6.140687,1.1422,5.986035 +L 1.1422,5.986035,1.1407,5.817719 +L 1.1407,5.817719,1.1407,5.455 +L 1.1407,5.455,2.1891,5.455 +L 2.1891,5.455,2.1891,4.819 +L 2.1891,4.819,1.1407,4.819 +L 1.1407,4.819,1.1407,0.56575 +L 1.1407,0.56575,0.5669,0.56575 +L 0.5669,0.56575,0.5669,4.819 +L 0.5669,4.819,-0.0009,4.819 +L -0.0009,4.819,-0.0009,5.455 +L -0.0009,5.455,0.5669,5.455 +L 0.5669,5.455,0.5669,5.792876 +L 0.5669,5.792876,0.5714,6.06767 +L 0.5714,6.06767,0.5838,6.318166 +L 0.5838,6.318166,0.6056,6.544359 +L 0.6056,6.544359,0.6353,6.746253 +L 0.6353,6.746253,0.674,6.923847 +L 0.674,6.923847,0.7205,7.077143 +L 0.7205,7.077143,0.776,7.206137 +L 0.776,7.206137,0.8404,7.310828 +L 0.8404,7.310828,0.9118,7.397589 +L 0.9118,7.397589,0.9896,7.472778 +L 0.9896,7.472778,1.0733,7.536402 +L 1.0733,7.536402,1.1625,7.588459 +L 1.1625,7.588459,1.2586,7.628944 +L 1.2586,7.628944,1.3607,7.657865 +L 1.3607,7.657865,1.4687,7.675216 +L 1.4687,7.675216,1.5826,7.681001 +L 1.5826,7.681001,1.6931,7.678905 +L 1.6931,7.678905,1.7987,7.672615 +L 1.7987,7.672615,1.8997,7.662134 +L 1.8997,7.662134,1.9959,7.64746 +L 1.9959,7.64746,2.087,7.628596 +L 2.087,7.628596,2.1742,7.605539 +L 2.1742,7.605539,2.2555,7.578288 +L 2.2555,7.578288,2.3328,7.546845 +L 2.3328,7.546845,2.3328,6.811469 +L 2.3328,6.811469,2.2302,6.866203 +L 2.2302,6.866203,2.1306,6.913638 +L 2.1306,6.913638,2.0325,6.953777 +L 2.0325,6.953777,1.9374,6.986617 +L 1.9374,6.986617,1.8452,7.012161 +L 1.8452,7.012161,1.7551,7.030404 +L 1.7551,7.030404,1.6679,7.041351 +L 1.6679,7.041351,1.5826,7.045001 + +[g] 345 +L 0.3823,4.212812,0.3872,4.36009 +L 0.3872,4.36009,0.4031,4.503795 +L 0.4031,4.503795,0.4278,4.64393 +L 0.4278,4.64393,0.4645,4.780492 +L 0.4645,4.780492,0.5106,4.913484 +L 0.5106,4.913484,0.5666,5.042904 +L 0.5666,5.042904,0.634,5.168754 +L 0.634,5.168754,0.7108,5.291031 +L 0.7108,5.291031,0.7985,5.403993 +L 0.7985,5.403993,0.8971,5.501892 +L 0.8971,5.501892,1.0066,5.584731 +L 1.0066,5.584731,1.1265,5.652508 +L 1.1265,5.652508,1.2583,5.705222 +L 1.2583,5.705222,1.4,5.742876 +L 1.4,5.742876,1.5536,5.765469 +L 1.5536,5.765469,1.7176,5.773 +L 1.7176,5.773,1.8271,5.769662 +L 1.8271,5.769662,1.9321,5.759647 +L 1.9321,5.759647,2.0322,5.742954 +L 2.0322,5.742954,2.1273,5.719585 +L 2.1273,5.719585,2.2185,5.68954 +L 2.2185,5.68954,2.3037,5.652818 +L 2.3037,5.652818,2.3849,5.609421 +L 2.3849,5.609421,2.4613,5.559345 +L 2.4613,5.559345,2.5693,5.631856 +L 2.5693,5.631856,2.6802,5.697848 +L 2.6802,5.697848,2.7942,5.757317 +L 2.7942,5.757317,2.9101,5.810265 +L 2.9101,5.810265,3.0291,5.856693 +L 3.0291,5.856693,3.1509,5.896597 +L 3.1509,5.896597,3.2753,5.929981 +L 3.2753,5.929981,3.4026,5.956843 +L 3.4026,5.956843,3.4026,5.286062 +L 3.4026,5.286062,3.313,5.289168 +L 3.313,5.289168,3.2263,5.288547 +L 3.2263,5.288547,3.143,5.2842 +L 3.143,5.2842,3.0627,5.276125 +L 3.0627,5.276125,2.9855,5.264325 +L 2.9855,5.264325,2.9111,5.248797 +L 2.9111,5.248797,2.8398,5.229542 +L 2.8398,5.229542,2.7724,5.206562 +L 2.7724,5.206562,2.8393,5.090573 +L 2.8393,5.090573,2.8973,4.971168 +L 2.8973,4.971168,2.9468,4.848347 +L 2.9468,4.848347,2.9874,4.72211 +L 2.9874,4.72211,3.0182,4.592456 +L 3.0182,4.592456,3.0409,4.459386 +L 3.0409,4.459386,3.0548,4.322901 +L 3.0548,4.322901,3.0588,4.183 +L 3.0588,4.183,3.0533,4.030987 +L 3.0533,4.030987,3.0375,3.883011 +L 3.0375,3.883011,3.0102,3.739073 +L 3.0102,3.739073,2.9726,3.599171 +L 2.9726,3.599171,2.924,3.463307 +L 2.924,3.463307,2.8646,3.33148 +L 2.8646,3.33148,2.7952,3.20369 +L 2.7952,3.20369,2.7139,3.079938 +L 2.7139,3.079938,2.6218,2.965811 +L 2.6218,2.965811,2.5187,2.866902 +L 2.5187,2.866902,2.4038,2.783211 +L 2.4038,2.783211,2.2779,2.714734 +L 2.2779,2.714734,2.1412,2.661475 +L 2.1412,2.661475,1.9925,2.623434 +L 1.9925,2.623434,1.832,2.600607 +L 1.832,2.600607,1.6606,2.592999 +L 1.6606,2.592999,1.5907,2.594164 +L 1.5907,2.594164,1.5228,2.597658 +L 1.5228,2.597658,1.4564,2.60348 +L 1.4564,2.60348,1.3925,2.611632 +L 1.3925,2.611632,1.3306,2.622114 +L 1.3306,2.622114,1.2701,2.634923 +L 1.2701,2.634923,1.2122,2.650063 +L 1.2122,2.650063,1.1562,2.66753 +L 1.1562,2.66753,1.1091,2.624132 +L 1.1091,2.624132,1.068,2.583373 +L 1.068,2.583373,1.0338,2.545253 +L 1.0338,2.545253,1.0056,2.509773 +L 1.0056,2.509773,0.9838,2.476933 +L 0.9838,2.476933,0.9679,2.446732 +L 0.9679,2.446732,0.959,2.419171 +L 0.959,2.419171,0.956,2.39425 +L 0.956,2.39425,0.9605,2.373249 +L 0.9605,2.373249,0.9739,2.352481 +L 0.9739,2.352481,0.9966,2.331946 +L 0.9966,2.331946,1.0284,2.311644 +L 1.0284,2.311644,1.0695,2.291575 +L 1.0695,2.291575,1.1195,2.271739 +L 1.1195,2.271739,1.179,2.252136 +L 1.179,2.252136,1.2474,2.232766 +L 1.2474,2.232766,1.3217,2.213512 +L 1.3217,2.213512,1.4,2.194258 +L 1.4,2.194258,1.4817,2.175003 +L 1.4817,2.175003,1.5669,2.15575 +L 1.5669,2.15575,1.6561,2.136495 +L 1.6561,2.136495,1.7488,2.117242 +L 1.7488,2.117242,1.8449,2.097988 +L 1.8449,2.097988,1.945,2.078733 +L 1.945,2.078733,2.046,2.058237 +L 2.046,2.058237,2.1481,2.035258 +L 2.1481,2.035258,2.2502,2.009794 +L 2.2502,2.009794,2.3522,1.981844 +L 2.3522,1.981844,2.4553,1.95141 +L 2.4553,1.95141,2.5584,1.918492 +L 2.5584,1.918492,2.6614,1.883089 +L 2.6614,1.883089,2.7645,1.845203 +L 2.7645,1.845203,2.8651,1.803396 +L 2.8651,1.803396,2.9597,1.756231 +L 2.9597,1.756231,3.0489,1.70371 +L 3.0489,1.70371,3.1321,1.645832 +L 3.1321,1.645832,3.2084,1.582597 +L 3.2084,1.582597,3.2808,1.514006 +L 3.2808,1.514006,3.3462,1.440055 +L 3.3462,1.440055,3.4056,1.36075 +L 3.4056,1.36075,3.4581,1.27729 +L 3.4581,1.27729,3.5047,1.19088 +L 3.5047,1.19088,3.5434,1.101521 +L 3.5434,1.101521,3.5761,1.00921 +L 3.5761,1.00921,3.6003,0.91395 +L 3.6003,0.91395,3.6182,0.815741 +L 3.6182,0.815741,3.6286,0.71458 +L 3.6286,0.71458,3.6325,0.610469 +L 3.6325,0.610469,3.6246,0.49642 +L 3.6246,0.49642,3.6008,0.385322 +L 3.6008,0.385322,3.5612,0.277174 +L 3.5612,0.277174,3.5057,0.171976 +L 3.5057,0.171976,3.4344,0.069728 +L 3.4344,0.069728,3.3467,-0.029567 +L 3.3467,-0.029567,3.2436,-0.125916 +L 3.2436,-0.125916,3.1247,-0.219313 +L 3.1247,-0.219313,2.9934,-0.305489 +L 2.9934,-0.305489,2.8527,-0.380176 +L 2.8527,-0.380176,2.7025,-0.443373 +L 2.7025,-0.443373,2.5435,-0.495078 +L 2.5435,-0.495078,2.3755,-0.535294 +L 2.3755,-0.535294,2.1977,-0.56402 +L 2.1977,-0.56402,2.0114,-0.581256 +L 2.0114,-0.581256,1.8161,-0.587 +L 1.8161,-0.587,1.6204,-0.581217 +L 1.6204,-0.581217,1.4341,-0.563865 +L 1.4341,-0.563865,1.2573,-0.534945 +L 1.2573,-0.534945,1.0888,-0.494456 +L 1.0888,-0.494456,0.9293,-0.442401 +L 0.9293,-0.442401,0.7796,-0.378778 +L 0.7796,-0.378778,0.6389,-0.303587 +L 0.6389,-0.303587,0.5071,-0.216828 +L 0.5071,-0.216828,0.3882,-0.122693 +L 0.3882,-0.122693,0.2852,-0.025376 +L 0.2852,-0.025376,0.1979,0.075124 +L 0.1979,0.075124,0.1266,0.178808 +L 0.1266,0.178808,0.0711,0.285676 +L 0.0711,0.285676,0.0315,0.395726 +L 0.0315,0.395726,0.0077,0.508959 +L 0.0077,0.508959,-0.0002,0.625375 +L -0.0002,0.625375,0.0017,0.709029 +L 0.0017,0.709029,0.0087,0.791053 +L 0.0087,0.791053,0.0196,0.871445 +L 0.0196,0.871445,0.0354,0.950206 +L 0.0354,0.950206,0.0562,1.027339 +L 0.0562,1.027339,0.081,1.102841 +L 0.081,1.102841,0.1107,1.176713 +L 0.1107,1.176713,0.1444,1.248953 +L 0.1444,1.248953,0.1856,1.320107 +L 0.1856,1.320107,0.2356,1.390717 +L 0.2356,1.390717,0.2951,1.460784 +L 0.2951,1.460784,0.3639,1.530308 +L 0.3639,1.530308,0.4417,1.599289 +L 0.4417,1.599289,0.5289,1.667726 +L 0.5289,1.667726,0.6255,1.735619 +L 0.6255,1.735619,0.7321,1.802969 +L 0.7321,1.802969,0.6875,1.827812 +L 0.6875,1.827812,0.6468,1.855141 +L 0.6468,1.855141,0.6092,1.884953 +L 0.6092,1.884953,0.574,1.91725 +L 0.574,1.91725,0.5423,1.952031 +L 0.5423,1.952031,0.5141,1.989296 +L 0.5141,1.989296,0.4883,2.029046 +L 0.4883,2.029046,0.4655,2.071281 +L 0.4655,2.071281,0.4457,2.114758 +L 0.4457,2.114758,0.4293,2.158234 +L 0.4293,2.158234,0.415,2.20171 +L 0.415,2.20171,0.4031,2.245188 +L 0.4031,2.245188,0.3937,2.288664 +L 0.3937,2.288664,0.3872,2.332141 +L 0.3872,2.332141,0.3833,2.375617 +L 0.3833,2.375617,0.3823,2.419093 +L 0.3823,2.419093,0.3882,2.474138 +L 0.3882,2.474138,0.406,2.532444 +L 0.406,2.532444,0.4358,2.594009 +L 0.4358,2.594009,0.4784,2.658836 +L 0.4784,2.658836,0.5329,2.726923 +L 0.5329,2.726923,0.5993,2.798271 +L 0.5993,2.798271,0.6771,2.87288 +L 0.6771,2.87288,0.7677,2.95075 +L 0.7677,2.95075,0.7479,2.972682 +L 0.7479,2.972682,0.7251,3.001213 +L 0.7251,3.001213,0.7004,3.036344 +L 0.7004,3.036344,0.6726,3.078075 +L 0.6726,3.078075,0.6429,3.126403 +L 0.6429,3.126403,0.6102,3.18133 +L 0.6102,3.18133,0.5755,3.242858 +L 0.5755,3.242858,0.5378,3.310985 +L 0.5378,3.310985,0.5012,3.387572 +L 0.5012,3.387572,0.4695,3.474487 +L 0.4695,3.474487,0.4427,3.571727 +L 0.4427,3.571727,0.4209,3.679293 +L 0.4209,3.679293,0.4041,3.797184 +L 0.4041,3.797184,0.3917,3.925402 +L 0.3917,3.925402,0.3842,4.063944 +L 0.3842,4.063944,0.3823,4.212812 +L 1.1468,4.183,1.1492,4.091117 +L 1.1492,4.091117,1.1552,4.001796 +L 1.1552,4.001796,1.1666,3.915037 +L 1.1666,3.915037,1.1819,3.83084 +L 1.1819,3.83084,1.2018,3.749204 +L 1.2018,3.749204,1.226,3.670132 +L 1.226,3.670132,1.2543,3.593621 +L 1.2543,3.593621,1.2875,3.519672 +L 1.2875,3.519672,1.3246,3.451546 +L 1.3246,3.451546,1.3668,3.392503 +L 1.3668,3.392503,1.4138,3.342544 +L 1.4138,3.342544,1.4654,3.301668 +L 1.4654,3.301668,1.5213,3.269876 +L 1.5213,3.269876,1.5823,3.247167 +L 1.5823,3.247167,1.6477,3.233542 +L 1.6477,3.233542,1.7176,3.229 +L 1.7176,3.229,1.7869,3.233542 +L 1.7869,3.233542,1.8518,3.247167 +L 1.8518,3.247167,1.9123,3.269876 +L 1.9123,3.269876,1.9688,3.301668 +L 1.9688,3.301668,2.0203,3.342544 +L 2.0203,3.342544,2.0678,3.392503 +L 2.0678,3.392503,2.1105,3.451546 +L 2.1105,3.451546,2.1491,3.519672 +L 2.1491,3.519672,2.1833,3.593776 +L 2.1833,3.593776,2.2125,3.670753 +L 2.2125,3.670753,2.2373,3.750602 +L 2.2373,3.750602,2.2581,3.833324 +L 2.2581,3.833324,2.274,3.918918 +L 2.274,3.918918,2.2849,4.007386 +L 2.2849,4.007386,2.2918,4.098725 +L 2.2918,4.098725,2.2943,4.192938 +L 2.2943,4.192938,2.2918,4.293748 +L 2.2918,4.293748,2.2849,4.389979 +L 2.2849,4.389979,2.274,4.481629 +L 2.274,4.481629,2.2581,4.568699 +L 2.2581,4.568699,2.2373,4.651188 +L 2.2373,4.651188,2.2125,4.729097 +L 2.2125,4.729097,2.1833,4.802424 +L 2.1833,4.802424,2.1491,4.871172 +L 2.1491,4.871172,2.1105,4.933476 +L 2.1105,4.933476,2.0678,4.987472 +L 2.0678,4.987472,2.0203,5.033162 +L 2.0203,5.033162,1.9688,5.070542 +L 1.9688,5.070542,1.9123,5.099618 +L 1.9123,5.099618,1.8518,5.120385 +L 1.8518,5.120385,1.7869,5.132846 +L 1.7869,5.132846,1.7176,5.137 +L 1.7176,5.137,1.6477,5.132846 +L 1.6477,5.132846,1.5823,5.120385 +L 1.5823,5.120385,1.5213,5.099618 +L 1.5213,5.099618,1.4654,5.070542 +L 1.4654,5.070542,1.4138,5.033162 +L 1.4138,5.033162,1.3668,4.987472 +L 1.3668,4.987472,1.3246,4.933476 +L 1.3246,4.933476,1.2875,4.871172 +L 1.2875,4.871172,1.2543,4.802269 +L 1.2543,4.802269,1.226,4.728475 +L 1.226,4.728475,1.2018,4.649791 +L 1.2018,4.649791,1.1819,4.566215 +L 1.1819,4.566215,1.1666,4.477748 +L 1.1666,4.477748,1.1552,4.38439 +L 1.1552,4.38439,1.1492,4.28614 +L 1.1492,4.28614,1.1468,4.183 +L 0.7648,0.595562,0.7687,0.535006 +L 0.7687,0.535006,0.7836,0.477554 +L 0.7836,0.477554,0.8064,0.423209 +L 0.8064,0.423209,0.8391,0.371968 +L 0.8391,0.371968,0.8812,0.323834 +L 0.8812,0.323834,0.9322,0.278804 +L 0.9322,0.278804,0.9937,0.236882 +L 0.9937,0.236882,1.063,0.198063 +L 1.063,0.198063,1.1403,0.163126 +L 1.1403,0.163126,1.2226,0.132848 +L 1.2226,0.132848,1.3093,0.107227 +L 1.3093,0.107227,1.4009,0.086266 +L 1.4009,0.086266,1.4976,0.069962 +L 1.4976,0.069962,1.5986,0.058316 +L 1.5986,0.058316,1.7052,0.051329 +L 1.7052,0.051329,1.8161,0.048999 +L 1.8161,0.048999,1.9271,0.051329 +L 1.9271,0.051329,2.0332,0.058316 +L 2.0332,0.058316,2.1352,0.069962 +L 2.1352,0.069962,2.2314,0.086266 +L 2.2314,0.086266,2.3235,0.107227 +L 2.3235,0.107227,2.4097,0.132848 +L 2.4097,0.132848,2.492,0.163126 +L 2.492,0.163126,2.5693,0.198063 +L 2.5693,0.198063,2.6391,0.236882 +L 2.6391,0.236882,2.7001,0.278804 +L 2.7001,0.278804,2.7506,0.323834 +L 2.7506,0.323834,2.7932,0.371968 +L 2.7932,0.371968,2.8259,0.423209 +L 2.8259,0.423209,2.8492,0.477554 +L 2.8492,0.477554,2.8631,0.535006 +L 2.8631,0.535006,2.8675,0.595562 +L 2.8675,0.595562,2.8626,0.700372 +L 2.8626,0.700372,2.8472,0.796176 +L 2.8472,0.796176,2.822,0.882974 +L 2.822,0.882974,2.7858,0.960766 +L 2.7858,0.960766,2.7397,1.029551 +L 2.7397,1.029551,2.6832,1.089333 +L 2.6832,1.089333,2.6173,1.140106 +L 2.6173,1.140106,2.5405,1.181875 +L 2.5405,1.181875,2.4603,1.21786 +L 2.4603,1.21786,2.383,1.251282 +L 2.383,1.251282,2.3086,1.282144 +L 2.3086,1.282144,2.2373,1.310441 +L 2.2373,1.310441,2.1694,1.336177 +L 2.1694,1.336177,2.1045,1.359352 +L 2.1045,1.359352,2.0426,1.379966 +L 2.0426,1.379966,1.9836,1.398016 +L 1.9836,1.398016,1.9261,1.414591 +L 1.9261,1.414591,1.8716,1.430778 +L 1.8716,1.430778,1.8171,1.446577 +L 1.8171,1.446577,1.7656,1.461988 +L 1.7656,1.461988,1.7141,1.477011 +L 1.7141,1.477011,1.6655,1.491646 +L 1.6655,1.491646,1.617,1.505892 +L 1.617,1.505892,1.5714,1.51975 +L 1.5714,1.51975,1.4683,1.476895 +L 1.4683,1.476895,1.3732,1.432797 +L 1.3732,1.432797,1.2855,1.387457 +L 1.2855,1.387457,1.2047,1.340875 +L 1.2047,1.340875,1.1314,1.293052 +L 1.1314,1.293052,1.066,1.243985 +L 1.066,1.243985,1.0075,1.193675 +L 1.0075,1.193675,0.956,1.142124 +L 0.956,1.142124,0.9109,1.087934 +L 0.9109,1.087934,0.8718,1.029707 +L 0.8718,1.029707,0.8391,0.967442 +L 0.8391,0.967442,0.8123,0.901141 +L 0.8123,0.901141,0.7915,0.830801 +L 0.7915,0.830801,0.7767,0.756425 +L 0.7767,0.756425,0.7677,0.678012 +L 0.7677,0.678012,0.7648,0.595562 + +[h] 64 +L 0.5732,0.819156,-0.0006,0.819156 +L -0.0006,0.819156,-0.0006,7.80025 +L -0.0006,7.80025,0.5732,7.80025 +L 0.5732,7.80025,0.5732,5.117124 +L 0.5732,5.117124,0.7069,5.270845 +L 0.7069,5.270845,0.8407,5.40407 +L 0.8407,5.40407,0.9735,5.516799 +L 0.9735,5.516799,1.1063,5.609031 +L 1.1063,5.609031,1.2381,5.680768 +L 1.2381,5.680768,1.3709,5.732009 +L 1.3709,5.732009,1.5027,5.762753 +L 1.5027,5.762753,1.634,5.773 +L 1.634,5.773,1.7331,5.768225 +L 1.7331,5.768225,1.8326,5.7539 +L 1.8326,5.7539,1.9332,5.730029 +L 1.9332,5.730029,2.0348,5.696606 +L 2.0348,5.696606,2.1369,5.653634 +L 2.1369,5.653634,2.2399,5.601112 +L 2.2399,5.601112,2.3435,5.539043 +L 2.3435,5.539043,2.448,5.467423 +L 2.448,5.467423,2.5461,5.379109 +L 2.5461,5.379109,2.6313,5.266965 +L 2.6313,5.266965,2.7037,5.130984 +L 2.7037,5.130984,2.7631,4.971168 +L 2.7631,4.971168,2.8087,4.787518 +L 2.8087,4.787518,2.8414,4.580034 +L 2.8414,4.580034,2.8612,4.348716 +L 2.8612,4.348716,2.8682,4.093563 +L 2.8682,4.093563,2.8682,0.819156 +L 2.8682,0.819156,2.2944,0.819156 +L 2.2944,0.819156,2.2944,4.093563 +L 2.2944,4.093563,2.2914,4.242431 +L 2.2914,4.242431,2.2825,4.378489 +L 2.2825,4.378489,2.2677,4.501737 +L 2.2677,4.501737,2.2469,4.612176 +L 2.2469,4.612176,2.2206,4.709804 +L 2.2206,4.709804,2.1884,4.794622 +L 2.1884,4.794622,2.1497,4.86663 +L 2.1497,4.86663,2.1061,4.925829 +L 2.1061,4.925829,2.0556,4.975321 +L 2.0556,4.975321,1.9991,5.018216 +L 1.9991,5.018216,1.9372,5.054511 +L 1.9372,5.054511,1.8683,5.084206 +L 1.8683,5.084206,1.794,5.107304 +L 1.794,5.107304,1.7127,5.123801 +L 1.7127,5.123801,1.6255,5.133701 +L 1.6255,5.133701,1.5324,5.137 +L 1.5324,5.137,1.4551,5.1311 +L 1.4551,5.1311,1.3778,5.113398 +L 1.3778,5.113398,1.3015,5.083897 +L 1.3015,5.083897,1.2252,5.042594 +L 1.2252,5.042594,1.1489,4.98949 +L 1.1489,4.98949,1.0736,4.924586 +L 1.0736,4.924586,0.9993,4.847881 +L 0.9993,4.847881,0.9244,4.759374 +L 0.9244,4.759374,0.8536,4.660544 +L 0.8536,4.660544,0.7912,4.552861 +L 0.7912,4.552861,0.7357,4.436329 +L 0.7357,4.436329,0.6881,4.310945 +L 0.6881,4.310945,0.6485,4.176712 +L 0.6485,4.176712,0.6158,4.033627 +L 0.6158,4.033627,0.591,3.881692 +L 0.591,3.881692,0.5732,3.720907 +L 0.5732,3.720907,0.5732,0.819156 + +[i] 8 +L 0.5733,0.570719,0,0.570719 +L 0,0.570719,0,5.658719 +L 0,5.658719,0.5733,5.658719 +L 0.5733,5.658719,0.5733,0.570719 +L 0.5733,6.726999,0,6.726999 +L 0,6.726999,0,7.681001 +L 0,7.681001,0.5733,7.681001 +L 0.5733,7.681001,0.5733,6.726999 + +[j] 72 +L 1.0065,0.367,1.0669,0.370727 +L 1.0669,0.370727,1.1234,0.381907 +L 1.1234,0.381907,1.1769,0.400539 +L 1.1769,0.400539,1.227,0.426625 +L 1.227,0.426625,1.273,0.460165 +L 1.273,0.460165,1.3161,0.501157 +L 1.3161,0.501157,1.3558,0.549602 +L 1.3558,0.549602,1.392,0.6055 +L 1.392,0.6055,1.4237,0.670016 +L 1.4237,0.670016,1.4524,0.744314 +L 1.4524,0.744314,1.4752,0.828395 +L 1.4752,0.828395,1.495,0.922258 +L 1.495,0.922258,1.5099,1.025903 +L 1.5099,1.025903,1.5208,1.13933 +L 1.5208,1.13933,1.5267,1.26254 +L 1.5267,1.26254,1.5297,1.395531 +L 1.5297,1.395531,1.5297,5.604062 +L 1.5297,5.604062,2.103,5.604062 +L 2.103,5.604062,2.103,1.395531 +L 2.103,1.395531,2.0975,1.135759 +L 2.0975,1.135759,2.0816,0.89555 +L 2.0816,0.89555,2.0559,0.674908 +L 2.0559,0.674908,2.0197,0.473829 +L 2.0197,0.473829,1.9726,0.292313 +L 1.9726,0.292313,1.9152,0.130363 +L 1.9152,0.130363,1.8478,-0.012022 +L 1.8478,-0.012022,1.77,-0.134844 +L 1.77,-0.134844,1.6853,-0.240818 +L 1.6853,-0.240818,1.5981,-0.332662 +L 1.5981,-0.332662,1.5089,-0.410376 +L 1.5089,-0.410376,1.4177,-0.47396 +L 1.4177,-0.47396,1.3236,-0.523415 +L 1.3236,-0.523415,1.2275,-0.55874 +L 1.2275,-0.55874,1.1284,-0.579935 +L 1.1284,-0.579935,1.0273,-0.587 +L 1.0273,-0.587,0.9237,-0.58044 +L 0.9237,-0.58044,0.8241,-0.560758 +L 0.8241,-0.560758,0.728,-0.527958 +L 0.728,-0.527958,0.6359,-0.482035 +L 0.6359,-0.482035,0.5467,-0.422993 +L 0.5467,-0.422993,0.462,-0.350829 +L 0.462,-0.350829,0.3807,-0.265546 +L 0.3807,-0.265546,0.3029,-0.167141 +L 0.3029,-0.167141,0.2316,-0.057323 +L 0.2316,-0.057323,0.1701,0.062199 +L 0.1701,0.062199,0.1186,0.191424 +L 0.1186,0.191424,0.0755,0.330356 +L 0.0755,0.330356,0.0423,0.47899 +L 0.0423,0.47899,0.0185,0.637332 +L 0.0185,0.637332,0.0046,0.805376 +L 0.0046,0.805376,-0.0003,0.983125 +L -0.0003,0.983125,0.5734,0.983125 +L 0.5734,0.983125,0.5754,0.888253 +L 0.5754,0.888253,0.5814,0.802386 +L 0.5814,0.802386,0.5913,0.725527 +L 0.5913,0.725527,0.6051,0.657672 +L 0.6051,0.657672,0.623,0.598822 +L 0.623,0.598822,0.6458,0.54898 +L 0.6458,0.54898,0.6715,0.508144 +L 0.6715,0.508144,0.7018,0.476312 +L 0.7018,0.476312,0.735,0.450693 +L 0.735,0.450693,0.7691,0.428488 +L 0.7691,0.428488,0.8048,0.4097 +L 0.8048,0.4097,0.842,0.394328 +L 0.842,0.394328,0.8806,0.382372 +L 0.8806,0.382372,0.9213,0.373832 +L 0.9213,0.373832,0.9634,0.368708 +L 0.9634,0.368708,1.0065,0.367 +L 2.103,6.726999,1.5297,6.726999 +L 1.5297,6.726999,1.5297,7.681001 +L 1.5297,7.681001,2.103,7.681001 +L 2.103,7.681001,2.103,6.726999 + +[k] 12 +L 0.5731,0.570719,-0.0007,0.570719 +L -0.0007,0.570719,-0.0007,7.671063 +L -0.0007,7.671063,0.5731,7.671063 +L 0.5731,7.671063,0.5731,2.95075 +L 0.5731,2.95075,2.0575,5.509657 +L 2.0575,5.509657,2.7417,5.509657 +L 2.7417,5.509657,1.511,3.472469 +L 1.511,3.472469,3.0346,0.570719 +L 3.0346,0.570719,2.276,0.570719 +L 2.276,0.570719,1.126,2.816594 +L 1.126,2.816594,0.5731,1.907313 +L 0.5731,1.907313,0.5731,0.570719 + +[l] 4 +L 0.5732,0.570719,0,0.570719 +L 0,0.570719,0,7.671063 +L 0,7.671063,0.5732,7.671063 +L 0.5732,7.671063,0.5732,0.570719 + +[m] 131 +L 0.5734,0.819156,-0.0004,0.819156 +L -0.0004,0.819156,-0.0004,5.787908 +L -0.0004,5.787908,0.5734,5.787908 +L 0.5734,5.787908,0.5734,5.2165 +L 0.5734,5.2165,0.6536,5.34693 +L 0.6536,5.34693,0.7329,5.459969 +L 0.7329,5.459969,0.8122,5.555618 +L 0.8122,5.555618,0.8905,5.633875 +L 0.8905,5.633875,0.9697,5.694742 +L 0.9697,5.694742,1.048,5.73822 +L 1.048,5.73822,1.1258,5.764304 +L 1.1258,5.764304,1.2036,5.773 +L 1.2036,5.773,1.2809,5.769273 +L 1.2809,5.769273,1.3542,5.758094 +L 1.3542,5.758094,1.4256,5.73946 +L 1.4256,5.73946,1.4939,5.713374 +L 1.4939,5.713374,1.5584,5.679836 +L 1.5584,5.679836,1.6208,5.638843 +L 1.6208,5.638843,1.6792,5.590398 +L 1.6792,5.590398,1.7357,5.5345 +L 1.7357,5.5345,1.7878,5.472778 +L 1.7878,5.472778,1.8358,5.406865 +L 1.8358,5.406865,1.8789,5.33676 +L 1.8789,5.33676,1.9181,5.262461 +L 1.9181,5.262461,1.9518,5.183971 +L 1.9518,5.183971,1.982,5.101287 +L 1.982,5.101287,2.0072,5.014412 +L 2.0072,5.014412,2.0281,4.923344 +L 2.0281,4.923344,2.0414,4.956999 +L 2.0414,4.956999,2.0588,4.998341 +L 2.0588,4.998341,2.0806,5.047368 +L 2.0806,5.047368,2.1054,5.104081 +L 2.1054,5.104081,2.1351,5.168482 +L 2.1351,5.168482,2.1688,5.240568 +L 2.1688,5.240568,2.2064,5.32034 +L 2.2064,5.32034,2.248,5.407796 +L 2.248,5.407796,2.2936,5.493392 +L 2.2936,5.493392,2.3442,5.567574 +L 2.3442,5.567574,2.3982,5.630343 +L 2.3982,5.630343,2.4561,5.681699 +L 2.4561,5.681699,2.5196,5.721643 +L 2.5196,5.721643,2.5865,5.750175 +L 2.5865,5.750175,2.6578,5.767294 +L 2.6578,5.767294,2.7336,5.773 +L 2.7336,5.773,2.8119,5.768846 +L 2.8119,5.768846,2.8892,5.756385 +L 2.8892,5.756385,2.9655,5.735618 +L 2.9655,5.735618,3.0418,5.706543 +L 3.0418,5.706543,3.1171,5.669162 +L 3.1171,5.669162,3.1924,5.623472 +L 3.1924,5.623472,3.2662,5.569476 +L 3.2662,5.569476,3.3401,5.507172 +L 3.3401,5.507172,3.4084,5.426935 +L 3.4084,5.426935,3.4679,5.319136 +L 3.4679,5.319136,3.5184,5.183776 +L 3.5184,5.183776,3.5596,5.020855 +L 3.5596,5.020855,3.5913,4.830374 +L 3.5913,4.830374,3.6145,4.61233 +L 3.6145,4.61233,3.6284,4.366727 +L 3.6284,4.366727,3.6324,4.093563 +L 3.6324,4.093563,3.6324,0.819156 +L 3.6324,0.819156,3.0586,0.819156 +L 3.0586,0.819156,3.0586,4.093563 +L 3.0586,4.093563,3.0576,4.242431 +L 3.0576,4.242431,3.0527,4.378489 +L 3.0527,4.378489,3.0443,4.501737 +L 3.0443,4.501737,3.0329,4.612176 +L 3.0329,4.612176,3.019,4.709804 +L 3.019,4.709804,3.0012,4.794622 +L 3.0012,4.794622,2.9803,4.86663 +L 2.9803,4.86663,2.9556,4.925829 +L 2.9556,4.925829,2.9293,4.975321 +L 2.9293,4.975321,2.9001,5.018216 +L 2.9001,5.018216,2.8694,5.054511 +L 2.8694,5.054511,2.8367,5.084206 +L 2.8367,5.084206,2.802,5.107304 +L 2.802,5.107304,2.7653,5.123801 +L 2.7653,5.123801,2.7267,5.133701 +L 2.7267,5.133701,2.6855,5.137 +L 2.6855,5.137,2.6325,5.131294 +L 2.6325,5.131294,2.581,5.114175 +L 2.581,5.114175,2.5315,5.085644 +L 2.5315,5.085644,2.4829,5.045699 +L 2.4829,5.045699,2.4363,4.994343 +L 2.4363,4.994343,2.3917,4.931574 +L 2.3917,4.931574,2.3481,4.857391 +L 2.3481,4.857391,2.3065,4.771796 +L 2.3065,4.771796,2.2669,4.677506 +L 2.2669,4.677506,2.2317,4.577239 +L 2.2317,4.577239,2.2005,4.470993 +L 2.2005,4.470993,2.1737,4.35877 +L 2.1737,4.35877,2.1499,4.240567 +L 2.1499,4.240567,2.1301,4.116388 +L 2.1301,4.116388,2.1148,3.98623 +L 2.1148,3.98623,2.1029,3.850094 +L 2.1029,3.850094,2.1029,0.819156 +L 2.1029,0.819156,1.5296,0.819156 +L 1.5296,0.819156,1.5296,4.093563 +L 1.5296,4.093563,1.5276,4.242431 +L 1.5276,4.242431,1.5227,4.378489 +L 1.5227,4.378489,1.5148,4.501737 +L 1.5148,4.501737,1.5039,4.612176 +L 1.5039,4.612176,1.489,4.709804 +L 1.489,4.709804,1.4712,4.794622 +L 1.4712,4.794622,1.4503,4.86663 +L 1.4503,4.86663,1.4266,4.925829 +L 1.4266,4.925829,1.3998,4.975321 +L 1.3998,4.975321,1.3711,5.018216 +L 1.3711,5.018216,1.3399,5.054511 +L 1.3399,5.054511,1.3076,5.084206 +L 1.3076,5.084206,1.2725,5.107304 +L 1.2725,5.107304,1.2353,5.123801 +L 1.2353,5.123801,1.1967,5.133701 +L 1.1967,5.133701,1.156,5.137 +L 1.156,5.137,1.1025,5.131294 +L 1.1025,5.131294,1.052,5.114175 +L 1.052,5.114175,1.0014,5.085644 +L 1.0014,5.085644,0.9539,5.045699 +L 0.9539,5.045699,0.9073,4.994343 +L 0.9073,4.994343,0.8617,4.931574 +L 0.8617,4.931574,0.8181,4.857391 +L 0.8181,4.857391,0.7765,4.771796 +L 0.7765,4.771796,0.7374,4.677506 +L 0.7374,4.677506,0.7022,4.577239 +L 0.7022,4.577239,0.6705,4.470993 +L 0.6705,4.470993,0.6437,4.35877 +L 0.6437,4.35877,0.6199,4.240567 +L 0.6199,4.240567,0.6006,4.116388 +L 0.6006,4.116388,0.5853,3.98623 +L 0.5853,3.98623,0.5734,3.850094 +L 0.5734,3.850094,0.5734,0.819156 + +[n] 64 +L 0.573,0.819156,-0.0003,0.819156 +L -0.0003,0.819156,-0.0003,5.787908 +L -0.0003,5.787908,0.573,5.787908 +L 0.573,5.787908,0.573,5.117124 +L 0.573,5.117124,0.7068,5.270845 +L 0.7068,5.270845,0.8401,5.40407 +L 0.8401,5.40407,0.9728,5.516799 +L 0.9728,5.516799,1.1056,5.609031 +L 1.1056,5.609031,1.2379,5.680768 +L 1.2379,5.680768,1.3707,5.732009 +L 1.3707,5.732009,1.5025,5.762753 +L 1.5025,5.762753,1.6333,5.773 +L 1.6333,5.773,1.7324,5.768225 +L 1.7324,5.768225,1.8325,5.7539 +L 1.8325,5.7539,1.9336,5.730029 +L 1.9336,5.730029,2.0346,5.696606 +L 2.0346,5.696606,2.1367,5.653634 +L 2.1367,5.653634,2.2398,5.601112 +L 2.2398,5.601112,2.3438,5.539043 +L 2.3438,5.539043,2.4479,5.467423 +L 2.4479,5.467423,2.5465,5.379109 +L 2.5465,5.379109,2.6317,5.266965 +L 2.6317,5.266965,2.7035,5.130984 +L 2.7035,5.130984,2.763,4.971168 +L 2.763,4.971168,2.8086,4.787518 +L 2.8086,4.787518,2.8413,4.580034 +L 2.8413,4.580034,2.8611,4.348716 +L 2.8611,4.348716,2.8675,4.093563 +L 2.8675,4.093563,2.8675,0.819156 +L 2.8675,0.819156,2.2943,0.819156 +L 2.2943,0.819156,2.2943,4.093563 +L 2.2943,4.093563,2.2913,4.242431 +L 2.2913,4.242431,2.2824,4.378489 +L 2.2824,4.378489,2.2675,4.501737 +L 2.2675,4.501737,2.2472,4.612176 +L 2.2472,4.612176,2.2209,4.709804 +L 2.2209,4.709804,2.1882,4.794622 +L 2.1882,4.794622,2.1501,4.86663 +L 2.1501,4.86663,2.106,4.925829 +L 2.106,4.925829,2.0554,4.975321 +L 2.0554,4.975321,1.9995,5.018216 +L 1.9995,5.018216,1.9365,5.054511 +L 1.9365,5.054511,1.8682,5.084206 +L 1.8682,5.084206,1.7933,5.107304 +L 1.7933,5.107304,1.7126,5.123801 +L 1.7126,5.123801,1.6254,5.133701 +L 1.6254,5.133701,1.5322,5.137 +L 1.5322,5.137,1.4544,5.130362 +L 1.4544,5.130362,1.3757,5.110449 +L 1.3757,5.110449,1.2974,5.077258 +L 1.2974,5.077258,1.2181,5.030793 +L 1.2181,5.030793,1.1388,4.971052 +L 1.1388,4.971052,1.0586,4.898034 +L 1.0586,4.898034,0.9783,4.811741 +L 0.9783,4.811741,0.8975,4.712171 +L 0.8975,4.712171,0.8217,4.597929 +L 0.8217,4.597929,0.7553,4.467617 +L 0.7553,4.467617,0.6998,4.321232 +L 0.6998,4.321232,0.6543,4.158777 +L 0.6543,4.158777,0.6186,3.980252 +L 0.6186,3.980252,0.5938,3.785654 +L 0.5938,3.785654,0.5785,3.574988 +L 0.5785,3.574988,0.573,3.34825 +L 0.573,3.34825,0.573,0.819156 + +[o] 128 +L -0.0001,3.273719,0.0078,3.51051 +L 0.0078,3.51051,0.0306,3.741402 +L 0.0306,3.741402,0.0693,3.966394 +L 0.0693,3.966394,0.1238,4.185484 +L 0.1238,4.185484,0.1931,4.398675 +L 0.1931,4.398675,0.2783,4.605965 +L 0.2783,4.605965,0.3794,4.807355 +L 0.3794,4.807355,0.4959,5.002843 +L 0.4959,5.002843,0.6232,5.183349 +L 0.6232,5.183349,0.758,5.339787 +L 0.758,5.339787,0.9002,5.472157 +L 0.9002,5.472157,1.0493,5.580461 +L 1.0493,5.580461,1.2054,5.664697 +L 1.2054,5.664697,1.3694,5.724865 +L 1.3694,5.724865,1.5398,5.760966 +L 1.5398,5.760966,1.7172,5.773 +L 1.7172,5.773,1.8946,5.760966 +L 1.8946,5.760966,2.065,5.724865 +L 2.065,5.724865,2.2285,5.664697 +L 2.2285,5.664697,2.3851,5.580461 +L 2.3851,5.580461,2.5347,5.472157 +L 2.5347,5.472157,2.6764,5.339787 +L 2.6764,5.339787,2.8122,5.183349 +L 2.8122,5.183349,2.941,5.002843 +L 2.941,5.002843,3.0584,4.807277 +L 3.0584,4.807277,3.16,4.605653 +L 3.16,4.605653,3.2462,4.397976 +L 3.2462,4.397976,3.3166,4.184242 +L 3.3166,4.184242,3.3711,3.964453 +L 3.3711,3.964453,3.4097,3.738607 +L 3.4097,3.738607,3.4335,3.506706 +L 3.4335,3.506706,3.4414,3.26875 +L 3.4414,3.26875,3.4335,3.012161 +L 3.4335,3.012161,3.4097,2.764111 +L 3.4097,2.764111,3.3711,2.524602 +L 3.3711,2.524602,3.3166,2.293632 +L 3.3166,2.293632,3.2462,2.071204 +L 3.2462,2.071204,3.16,1.857314 +L 3.16,1.857314,3.0584,1.651966 +L 3.0584,1.651966,2.941,1.455156 +L 2.941,1.455156,2.8122,1.27465 +L 2.8122,1.27465,2.6764,1.118213 +L 2.6764,1.118213,2.5347,0.985842 +L 2.5347,0.985842,2.3851,0.877539 +L 2.3851,0.877539,2.2285,0.793304 +L 2.2285,0.793304,2.065,0.733135 +L 2.065,0.733135,1.8946,0.697034 +L 1.8946,0.697034,1.7172,0.685 +L 1.7172,0.685,1.5398,0.697034 +L 1.5398,0.697034,1.3694,0.733135 +L 1.3694,0.733135,1.2054,0.793304 +L 1.2054,0.793304,1.0493,0.877539 +L 1.0493,0.877539,0.9002,0.985842 +L 0.9002,0.985842,0.758,1.118213 +L 0.758,1.118213,0.6232,1.27465 +L 0.6232,1.27465,0.4959,1.455156 +L 0.4959,1.455156,0.3794,1.652043 +L 0.3794,1.652043,0.2783,1.857626 +L 0.2783,1.857626,0.1931,2.071901 +L 0.1931,2.071901,0.1238,2.294875 +L 0.1238,2.294875,0.0693,2.526543 +L 0.0693,2.526543,0.0306,2.766906 +L 0.0306,2.766906,0.0078,3.015965 +L 0.0078,3.015965,-0.0001,3.273719 +L 0.7649,3.26875,0.7694,3.028386 +L 0.7694,3.028386,0.7837,2.804171 +L 0.7837,2.804171,0.807,2.596106 +L 0.807,2.596106,0.8402,2.404187 +L 0.8402,2.404187,0.8823,2.228418 +L 0.8823,2.228418,0.9343,2.068796 +L 0.9343,2.068796,0.9958,1.925324 +L 0.9958,1.925324,1.0661,1.798 +L 1.0661,1.798,1.1424,1.686203 +L 1.1424,1.686203,1.2197,1.589312 +L 1.2197,1.589312,1.299,1.507328 +L 1.299,1.507328,1.3803,1.44025 +L 1.3803,1.44025,1.4625,1.388078 +L 1.4625,1.388078,1.5458,1.350812 +L 1.5458,1.350812,1.631,1.328453 +L 1.631,1.328453,1.7172,1.321 +L 1.7172,1.321,1.8034,1.328453 +L 1.8034,1.328453,1.8886,1.350812 +L 1.8886,1.350812,1.9719,1.388078 +L 1.9719,1.388078,2.0541,1.44025 +L 2.0541,1.44025,2.1349,1.507328 +L 2.1349,1.507328,2.2146,1.589312 +L 2.2146,1.589312,2.2929,1.686203 +L 2.2929,1.686203,2.3702,1.798 +L 2.3702,1.798,2.4421,1.92548 +L 2.4421,1.92548,2.504,2.069417 +L 2.504,2.069417,2.557,2.229816 +L 2.557,2.229816,2.6001,2.406671 +L 2.6001,2.406671,2.6338,2.599987 +L 2.6338,2.599987,2.6576,2.809761 +L 2.6576,2.809761,2.672,3.035995 +L 2.672,3.035995,2.6764,3.278687 +L 2.6764,3.278687,2.672,3.509346 +L 2.672,3.509346,2.6576,3.724322 +L 2.6576,3.724322,2.6338,3.923615 +L 2.6338,3.923615,2.6001,4.107227 +L 2.6001,4.107227,2.557,4.275154 +L 2.557,4.275154,2.504,4.427401 +L 2.504,4.427401,2.4421,4.563964 +L 2.4421,4.563964,2.3702,4.684843 +L 2.3702,4.684843,2.2929,4.790817 +L 2.2929,4.790817,2.2146,4.882663 +L 2.2146,4.882663,2.1349,4.960376 +L 2.1349,4.960376,2.0541,5.023961 +L 2.0541,5.023961,1.9719,5.073416 +L 1.9719,5.073416,1.8886,5.10874 +L 1.8886,5.10874,1.8034,5.129935 +L 1.8034,5.129935,1.7172,5.137 +L 1.7172,5.137,1.631,5.129935 +L 1.631,5.129935,1.5458,5.10874 +L 1.5458,5.10874,1.4625,5.073416 +L 1.4625,5.073416,1.3803,5.023961 +L 1.3803,5.023961,1.299,4.960376 +L 1.299,4.960376,1.2197,4.882663 +L 1.2197,4.882663,1.1424,4.790817 +L 1.1424,4.790817,1.0661,4.684843 +L 1.0661,4.684843,0.9958,4.563808 +L 0.9958,4.563808,0.9343,4.426779 +L 0.9343,4.426779,0.8823,4.273757 +L 0.8823,4.273757,0.8402,4.104742 +L 0.8402,4.104742,0.807,3.919734 +L 0.807,3.919734,0.7837,3.718733 +L 0.7837,3.718733,0.7694,3.501738 +L 0.7694,3.501738,0.7649,3.26875 + +[p] 118 +L 0,-0.189499,0,5.787908 +L 0,5.787908,0.5733,5.787908 +L 0.5733,5.787908,0.5733,5.186687 +L 0.5733,5.186687,0.6863,5.324104 +L 0.6863,5.324104,0.8012,5.443199 +L 0.8012,5.443199,0.9191,5.543972 +L 0.9191,5.543972,1.04,5.626422 +L 1.04,5.626422,1.1629,5.69055 +L 1.1629,5.69055,1.2882,5.736356 +L 1.2882,5.736356,1.4166,5.763839 +L 1.4166,5.763839,1.5474,5.773 +L 1.5474,5.773,1.699,5.763256 +L 1.699,5.763256,1.8447,5.734027 +L 1.8447,5.734027,1.9854,5.685309 +L 1.9854,5.685309,2.1211,5.617104 +L 2.1211,5.617104,2.2514,5.529414 +L 2.2514,5.529414,2.3768,5.422237 +L 2.3768,5.422237,2.4967,5.295572 +L 2.4967,5.295572,2.6107,5.149422 +L 2.6107,5.149422,2.7167,4.987511 +L 2.7167,4.987511,2.8069,4.813564 +L 2.8069,4.813564,2.8842,4.627586 +L 2.8842,4.627586,2.9471,4.429574 +L 2.9471,4.429574,2.9961,4.219528 +L 2.9961,4.219528,3.0308,3.997448 +L 3.0308,3.997448,3.0521,3.763335 +L 3.0521,3.763335,3.0595,3.517188 +L 3.0595,3.517188,3.0526,3.280784 +L 3.0526,3.280784,3.0318,3.056025 +L 3.0318,3.056025,2.9971,2.842912 +L 2.9971,2.842912,2.9491,2.641446 +L 2.9491,2.641446,2.8871,2.451624 +L 2.8871,2.451624,2.8118,2.273447 +L 2.8118,2.273447,2.7216,2.106917 +L 2.7216,2.106917,2.6186,1.952031 +L 2.6186,1.952031,2.5051,1.811742 +L 2.5051,1.811742,2.3857,1.688997 +L 2.3857,1.688997,2.2594,1.5838 +L 2.2594,1.5838,2.1266,1.496148 +L 2.1266,1.496148,1.9878,1.426042 +L 1.9878,1.426042,1.8427,1.373483 +L 1.8427,1.373483,1.6906,1.338468 +L 1.6906,1.338468,1.5325,1.321 +L 1.5325,1.321,1.4012,1.326124 +L 1.4012,1.326124,1.2729,1.341495 +L 1.2729,1.341495,1.148,1.367116 +L 1.148,1.367116,1.0271,1.402984 +L 1.0271,1.402984,0.9092,1.449101 +L 0.9092,1.449101,0.7933,1.505464 +L 0.7933,1.505464,0.6823,1.572078 +L 0.6823,1.572078,0.5733,1.648938 +L 0.5733,1.648938,0.5733,-0.189499 +L 0.5733,-0.189499,0,-0.189499 +L 1.5058,1.956999,1.588,1.971906 +L 1.588,1.971906,1.6663,1.99675 +L 1.6663,1.99675,1.7416,2.031531 +L 1.7416,2.031531,1.8134,2.076249 +L 1.8134,2.076249,1.8823,2.130906 +L 1.8823,2.130906,1.9467,2.1955 +L 1.9467,2.1955,2.0092,2.270031 +L 2.0092,2.270031,2.0676,2.3545 +L 2.0676,2.3545,2.1206,2.450924 +L 2.1206,2.450924,2.1667,2.561324 +L 2.1667,2.561324,2.2059,2.685698 +L 2.2059,2.685698,2.2376,2.824046 +L 2.2376,2.824046,2.2628,2.97637 +L 2.2628,2.97637,2.2807,3.142668 +L 2.2807,3.142668,2.2911,3.322941 +L 2.2911,3.322941,2.2945,3.517188 +L 2.2945,3.517188,2.2906,3.707708 +L 2.2906,3.707708,2.2797,3.886739 +L 2.2797,3.886739,2.2613,4.054278 +L 2.2613,4.054278,2.2361,4.210328 +L 2.2361,4.210328,2.2024,4.354888 +L 2.2024,4.354888,2.1627,4.487957 +L 2.1627,4.487957,2.1147,4.609536 +L 2.1147,4.609536,2.0597,4.719625 +L 2.0597,4.719625,2.0002,4.817447 +L 2.0002,4.817447,1.9378,4.902227 +L 1.9378,4.902227,1.8724,4.973963 +L 1.8724,4.973963,1.804,5.032656 +L 1.804,5.032656,1.7337,5.078306 +L 1.7337,5.078306,1.6603,5.110913 +L 1.6603,5.110913,1.584,5.130479 +L 1.584,5.130479,1.5058,5.137 +L 1.5058,5.137,1.4007,5.130556 +L 1.4007,5.130556,1.3021,5.111225 +L 1.3021,5.111225,1.2095,5.079006 +L 1.2095,5.079006,1.1242,5.033899 +L 1.1242,5.033899,1.045,4.975904 +L 1.045,4.975904,0.9716,4.905021 +L 0.9716,4.905021,0.9057,4.821252 +L 0.9057,4.821252,0.8458,4.724594 +L 0.8458,4.724594,0.7913,4.623821 +L 0.7913,4.623821,0.7432,4.527707 +L 0.7432,4.527707,0.7011,4.436251 +L 0.7011,4.436251,0.664,4.349453 +L 0.664,4.349453,0.6327,4.267314 +L 0.6327,4.267314,0.607,4.189832 +L 0.607,4.189832,0.5881,4.117009 +L 0.5881,4.117009,0.5733,4.048843 +L 0.5733,4.048843,0.5733,2.602938 +L 0.5733,2.602938,0.5991,2.515713 +L 0.5991,2.515713,0.6298,2.435397 +L 0.6298,2.435397,0.6654,2.361993 +L 0.6654,2.361993,0.7076,2.295496 +L 0.7076,2.295496,0.7546,2.235909 +L 0.7546,2.235909,0.8071,2.183233 +L 0.8071,2.183233,0.8656,2.137466 +L 0.8656,2.137466,0.929,2.098609 +L 0.929,2.098609,0.9964,2.06542 +L 0.9964,2.06542,1.0648,2.036655 +L 1.0648,2.036655,1.1351,2.012316 +L 1.1351,2.012316,1.2065,1.992402 +L 1.2065,1.992402,1.2788,1.976915 +L 1.2788,1.976915,1.3532,1.965851 +L 1.3532,1.965851,1.429,1.959212 +L 1.429,1.959212,1.5058,1.956999 + +[q] 113 +L 2.8674,-0.398188,2.2942,-0.398188 +L 2.2942,5.658719,2.8674,5.658719 +L 2.8674,5.658719,2.8674,-0.398188 +L 1.3587,5.773,1.4786,5.765391 +L 1.4786,5.765391,1.5971,5.742566 +L 1.5971,5.742566,1.7135,5.704524 +L 1.7135,5.704524,1.8284,5.651267 +L 1.8284,5.651267,1.9414,5.582791 +L 1.9414,5.582791,2.0524,5.499098 +L 2.0524,5.499098,2.1614,5.40019 +L 2.1614,5.40019,2.2684,5.286062 +L 2.2902,3.75592,2.2788,3.900712 +L 2.2788,3.900712,2.2595,4.041003 +L 2.2595,4.041003,2.2337,4.176788 +L 2.2337,4.176788,2.2,4.308073 +L 2.2,4.308073,2.1584,4.434854 +L 2.1584,4.434854,2.1099,4.557131 +L 2.1099,4.557131,2.0534,4.674907 +L 2.0534,4.674907,1.991,4.783209 +L 1.991,4.783209,1.9246,4.877072 +L 1.9246,4.877072,1.8532,4.956496 +L 1.8532,4.956496,1.7779,5.021477 +L 1.7779,5.021477,1.6986,5.072018 +L 1.6986,5.072018,1.6144,5.108119 +L 1.6144,5.108119,1.5262,5.12978 +L 1.5262,5.12978,1.4331,5.137 +L 1.4331,5.137,1.3647,5.128965 +L 1.3647,5.128965,1.2983,5.104858 +L 1.2983,5.104858,1.2349,5.064682 +L 1.2349,5.064682,1.1744,5.008434 +L 1.1744,5.008434,1.116,4.936116 +L 1.116,4.936116,1.0605,4.847727 +L 1.0605,4.847727,1.0084,4.743266 +L 1.0084,4.743266,0.9584,4.622733 +L 0.9584,4.622733,0.9128,4.492965 +L 0.9128,4.492965,0.8732,4.360788 +L 0.8732,4.360788,0.84,4.226204 +L 0.84,4.226204,0.8127,4.089214 +L 0.8127,4.089214,0.7919,3.949818 +L 0.7919,3.949818,0.7761,3.808014 +L 0.7761,3.808014,0.7672,3.663804 +L 0.7672,3.663804,0.7642,3.517188 +L 0.7642,3.517188,0.7681,3.313934 +L 0.7681,3.313934,0.779,3.126519 +L 0.779,3.126519,0.7979,2.954943 +L 0.7979,2.954943,0.8241,2.799203 +L 0.8241,2.799203,0.8583,2.659301 +L 0.8583,2.659301,0.8994,2.535238 +L 0.8994,2.535238,0.9485,2.427012 +L 0.9485,2.427012,1.0045,2.334625 +L 1.0045,2.334625,1.0674,2.254815 +L 1.0674,2.254815,1.1348,2.184321 +L 1.1348,2.184321,1.2061,2.123143 +L 1.2061,2.123143,1.2824,2.071281 +L 1.2824,2.071281,1.3647,2.028737 +L 1.3647,2.028737,1.4504,1.995508 +L 1.4504,1.995508,1.5411,1.971596 +L 1.5411,1.971596,1.6367,1.956999 +L 1.6367,1.956999,1.71,1.959329 +L 1.71,1.959329,1.7809,1.966316 +L 1.7809,1.966316,1.8493,1.977962 +L 1.8493,1.977962,1.9157,1.994266 +L 1.9157,1.994266,1.9791,2.015228 +L 1.9791,2.015228,2.0405,2.040848 +L 2.0405,2.040848,2.0985,2.071126 +L 2.0985,2.071126,2.1545,2.106063 +L 2.1545,2.106063,2.2075,2.148142 +L 2.2075,2.148142,2.2555,2.199848 +L 2.2882,1.476118,2.1921,1.428721 +L 2.1921,1.428721,2.091,1.389942 +L 2.091,1.389942,1.9855,1.35978 +L 1.9855,1.35978,1.874,1.338235 +L 1.874,1.338235,1.7581,1.325309 +L 1.7581,1.325309,1.6367,1.321 +L 1.6367,1.321,1.4707,1.338196 +L 1.4707,1.338196,1.3112,1.372396 +L 1.3112,1.372396,1.1576,1.423596 +L 1.1576,1.423596,1.0099,1.4918 +L 1.0099,1.4918,0.8682,1.577007 +L 0.8682,1.577007,0.733,1.679215 +L 0.733,1.679215,0.6036,1.798427 +L 0.6036,1.798427,0.4808,1.934641 +L 0.4808,1.934641,0.3678,2.085993 +L 0.3678,2.085993,0.2697,2.250622 +L 0.2697,2.250622,0.1875,2.428526 +L 0.1875,2.428526,0.1201,2.619706 +L 0.1201,2.619706,0.0671,2.824163 +L 0.0671,2.824163,0.0294,3.041896 +L 0.0294,3.041896,0.0071,3.272903 +L 0.0071,3.272903,-0.0008,3.517188 +L -0.0008,3.517188,0.0051,3.726186 +L 0.0051,3.726186,0.022,3.930836 +L 0.022,3.930836,0.0497,4.131138 +L 0.0497,4.131138,0.0894,4.327093 +L 0.0894,4.327093,0.1404,4.518701 +L 0.1404,4.518701,0.2023,4.705961 +L 0.2023,4.705961,0.2756,4.888874 +L 0.2756,4.888874,0.3609,5.067438 +L 0.3609,5.067438,0.4555,5.232804 +L 0.4555,5.232804,0.5591,5.376121 +L 0.5591,5.376121,0.671,5.49739 +L 0.671,5.49739,0.7909,5.596609 +L 0.7909,5.596609,0.9198,5.67378 +L 0.9198,5.67378,1.0575,5.728903 +L 1.0575,5.728903,1.2042,5.761975 +L 1.2042,5.761975,1.3587,5.773 +L 2.2684,5.286062,2.2942,5.253068 +L 2.2942,5.253068,2.2942,5.658719 +L 2.2942,3.606625,2.2902,3.75592 +L 2.2555,2.199848,2.2942,2.254428 +L 2.2942,2.254428,2.2942,3.606625 +L 2.2942,1.479787,2.2882,1.476118 +L 2.2942,-0.398188,2.2942,1.479787 + +[r] 38 +L 0.5731,0.570719,-0.0002,0.570719 +L -0.0002,0.570719,-0.0002,5.658719 +L -0.0002,5.658719,0.5731,5.658719 +L 0.5731,5.658719,0.5731,4.749438 +L 0.5731,4.749438,0.6023,4.801609 +L 0.6023,4.801609,0.64,4.861234 +L 0.64,4.861234,0.6855,4.928312 +L 0.6855,4.928312,0.7391,5.002843 +L 0.7391,5.002843,0.801,5.084828 +L 0.801,5.084828,0.8708,5.174266 +L 0.8708,5.174266,0.9491,5.271156 +L 0.9491,5.271156,1.0348,5.3755 +L 1.0348,5.3755,1.1305,5.474254 +L 1.1305,5.474254,1.2395,5.554375 +L 1.2395,5.554375,1.3599,5.615864 +L 1.3599,5.615864,1.4932,5.658719 +L 1.4932,5.658719,1.6378,5.682942 +L 1.6378,5.682942,1.7959,5.688531 +L 1.7959,5.688531,1.9658,5.675488 +L 1.9658,5.675488,2.1472,5.643812 +L 2.1472,5.643812,2.1472,4.719625 +L 2.1472,4.719625,1.9866,4.739072 +L 1.9866,4.739072,1.8316,4.742761 +L 1.8316,4.742761,1.6824,4.730688 +L 1.6824,4.730688,1.5402,4.702856 +L 1.5402,4.702856,1.4035,4.659263 +L 1.4035,4.659263,1.2732,4.599909 +L 1.2732,4.599909,1.1493,4.524795 +L 1.1493,4.524795,1.0314,4.433921 +L 1.0314,4.433921,0.9244,4.326667 +L 0.9244,4.326667,0.8312,4.20241 +L 0.8312,4.20241,0.7519,4.06115 +L 0.7519,4.06115,0.6875,3.902887 +L 0.6875,3.902887,0.638,3.727622 +L 0.638,3.727622,0.6023,3.535354 +L 0.6023,3.535354,0.5805,3.326084 +L 0.5805,3.326084,0.5731,3.099811 +L 0.5731,3.099811,0.5731,0.570719 + +[s] 194 +L -0.0005,2.245188,0.764,2.245188 +L 0.764,2.245188,0.7684,2.115263 +L 0.7684,2.115263,0.7803,1.996284 +L 0.7803,1.996284,0.8016,1.888253 +L 0.8016,1.888253,0.8309,1.791168 +L 0.8309,1.791168,0.8675,1.70503 +L 0.8675,1.70503,0.9141,1.629839 +L 0.9141,1.629839,0.9676,1.565594 +L 0.9676,1.565594,1.03,1.512296 +L 1.03,1.512296,1.0989,1.46746 +L 1.0989,1.46746,1.1727,1.428604 +L 1.1727,1.428604,1.2515,1.395725 +L 1.2515,1.395725,1.3352,1.368824 +L 1.3352,1.368824,1.4244,1.347902 +L 1.4244,1.347902,1.5176,1.332956 +L 1.5176,1.332956,1.6167,1.323988 +L 1.6167,1.323988,1.7197,1.321 +L 1.7197,1.321,1.8297,1.32395 +L 1.8297,1.32395,1.9333,1.3328 +L 1.9333,1.3328,2.0304,1.347551 +L 2.0304,1.347551,2.1215,1.368203 +L 2.1215,1.368203,2.2063,1.394755 +L 2.2063,1.394755,2.2855,1.427208 +L 2.2855,1.427208,2.3574,1.46556 +L 2.3574,1.46556,2.4233,1.509812 +L 2.4233,1.509812,2.4827,1.559189 +L 2.4827,1.559189,2.5343,1.612914 +L 2.5343,1.612914,2.5774,1.670986 +L 2.5774,1.670986,2.6131,1.733406 +L 2.6131,1.733406,2.6403,1.800174 +L 2.6403,1.800174,2.6601,1.87129 +L 2.6601,1.87129,2.672,1.946752 +L 2.672,1.946752,2.676,2.026562 +L 2.676,2.026562,2.671,2.140299 +L 2.671,2.140299,2.6572,2.245497 +L 2.6572,2.245497,2.6344,2.342156 +L 2.6344,2.342156,2.6017,2.430272 +L 2.6017,2.430272,2.5595,2.50985 +L 2.5595,2.50985,2.508,2.580889 +L 2.508,2.580889,2.4471,2.643386 +L 2.4471,2.643386,2.3772,2.697344 +L 2.3772,2.697344,2.2974,2.745207 +L 2.2974,2.745207,2.2063,2.789422 +L 2.2063,2.789422,2.1042,2.829986 +L 2.1042,2.829986,1.9922,2.866902 +L 1.9922,2.866902,1.8684,2.900169 +L 1.8684,2.900169,1.7346,2.929788 +L 1.7346,2.929788,1.5889,2.955758 +L 1.5889,2.955758,1.4333,2.978079 +L 1.4333,2.978079,1.2773,3.003621 +L 1.2773,3.003621,1.1321,3.039256 +L 1.1321,3.039256,0.9983,3.084983 +L 0.9983,3.084983,0.8745,3.140805 +L 0.8745,3.140805,0.762,3.206718 +L 0.762,3.206718,0.6604,3.282725 +L 0.6604,3.282725,0.5692,3.368824 +L 0.5692,3.368824,0.489,3.465016 +L 0.489,3.465016,0.4191,3.567923 +L 0.4191,3.567923,0.3582,3.674169 +L 0.3582,3.674169,0.3076,3.783753 +L 0.3076,3.783753,0.265,3.896676 +L 0.265,3.896676,0.2323,4.012937 +L 0.2323,4.012937,0.209,4.132537 +L 0.209,4.132537,0.1952,4.255474 +L 0.1952,4.255474,0.1907,4.38175 +L 0.1907,4.38175,0.1976,4.506318 +L 0.1976,4.506318,0.2185,4.629101 +L 0.2185,4.629101,0.2531,4.750097 +L 0.2531,4.750097,0.3022,4.869308 +L 0.3022,4.869308,0.3651,4.986735 +L 0.3651,4.986735,0.4414,5.102374 +L 0.4414,5.102374,0.5326,5.216229 +L 0.5326,5.216229,0.6371,5.328296 +L 0.6371,5.328296,0.7516,5.432525 +L 0.7516,5.432525,0.8715,5.522855 +L 0.8715,5.522855,0.9978,5.599287 +L 0.9978,5.599287,1.1301,5.661824 +L 1.1301,5.661824,1.2674,5.710464 +L 1.2674,5.710464,1.4106,5.745206 +L 1.4106,5.745206,1.5592,5.766051 +L 1.5592,5.766051,1.7138,5.773 +L 1.7138,5.773,1.8753,5.768108 +L 1.8753,5.768108,2.0289,5.753436 +L 2.0289,5.753436,2.1765,5.72898 +L 2.1765,5.72898,2.3173,5.694742 +L 2.3173,5.694742,2.4505,5.650723 +L 2.4505,5.650723,2.5774,5.59692 +L 2.5774,5.59692,2.6978,5.533335 +L 2.6978,5.533335,2.8107,5.459969 +L 2.8107,5.459969,2.9138,5.377286 +L 2.9138,5.377286,3.003,5.285752 +L 3.003,5.285752,3.0783,5.185367 +L 3.0783,5.185367,3.1397,5.076132 +L 3.1397,5.076132,3.1878,4.958048 +L 3.1878,4.958048,3.222,4.831111 +L 3.222,4.831111,3.2428,4.695325 +L 3.2428,4.695325,3.2497,4.550687 +L 3.2497,4.550687,2.4847,4.550687 +L 2.4847,4.550687,2.4808,4.626189 +L 2.4808,4.626189,2.4699,4.696179 +L 2.4699,4.696179,2.451,4.760656 +L 2.451,4.760656,2.4253,4.819621 +L 2.4253,4.819621,2.3916,4.873075 +L 2.3916,4.873075,2.351,4.921015 +L 2.351,4.921015,2.3019,4.963444 +L 2.3019,4.963444,2.2459,5.00036 +L 2.2459,5.00036,2.1855,5.032384 +L 2.1855,5.032384,2.123,5.06014 +L 2.123,5.06014,2.0586,5.083624 +L 2.0586,5.083624,1.9932,5.10284 +L 1.9932,5.10284,1.9258,5.117785 +L 1.9258,5.117785,1.8575,5.12846 +L 1.8575,5.12846,1.7866,5.134864 +L 1.7866,5.134864,1.7138,5.137 +L 1.7138,5.137,1.6414,5.134516 +L 1.6414,5.134516,1.5701,5.127063 +L 1.5701,5.127063,1.5012,5.114641 +L 1.5012,5.114641,1.4343,5.09725 +L 1.4343,5.09725,1.3699,5.074891 +L 1.3699,5.074891,1.3065,5.047563 +L 1.3065,5.047563,1.2456,5.015267 +L 1.2456,5.015267,1.1866,4.978 +L 1.1866,4.978,1.1326,4.936232 +L 1.1326,4.936232,1.0855,4.890426 +L 1.0855,4.890426,1.0459,4.840583 +L 1.0459,4.840583,1.0132,4.786705 +L 1.0132,4.786705,0.9879,4.728785 +L 0.9879,4.728785,0.9696,4.666832 +L 0.9696,4.666832,0.9587,4.600841 +L 0.9587,4.600841,0.9557,4.530812 +L 0.9557,4.530812,0.9587,4.426081 +L 0.9587,4.426081,0.9696,4.330509 +L 0.9696,4.330509,0.9874,4.2441 +L 0.9874,4.2441,1.0122,4.166852 +L 1.0122,4.166852,1.0439,4.098764 +L 1.0439,4.098764,1.083,4.039838 +L 1.083,4.039838,1.1291,3.990073 +L 1.1291,3.990073,1.1826,3.949469 +L 1.1826,3.949469,1.2451,3.914494 +L 1.2451,3.914494,1.3194,3.881614 +L 1.3194,3.881614,1.4061,3.850831 +L 1.4061,3.850831,1.5047,3.822145 +L 1.5047,3.822145,1.6147,3.795554 +L 1.6147,3.795554,1.7371,3.771059 +L 1.7371,3.771059,1.8713,3.748661 +L 1.8713,3.748661,2.017,3.728359 +L 2.017,3.728359,2.1666,3.705029 +L 2.1666,3.705029,2.3083,3.673548 +L 2.3083,3.673548,2.4451,3.633914 +L 2.4451,3.633914,2.5754,3.58613 +L 2.5754,3.58613,2.6988,3.530192 +L 2.6988,3.530192,2.8167,3.466102 +L 2.8167,3.466102,2.9282,3.393862 +L 2.9282,3.393862,3.0332,3.313469 +L 3.0332,3.313469,3.1288,3.221702 +L 3.1288,3.221702,3.2116,3.115339 +L 3.2116,3.115339,3.2814,2.994382 +L 3.2814,2.994382,3.3389,2.858829 +L 3.3389,2.858829,3.3835,2.708678 +L 3.3835,2.708678,3.4152,2.543933 +L 3.4152,2.543933,3.435,2.364592 +L 3.435,2.364592,3.441,2.170656 +L 3.441,2.170656,3.4336,2.019459 +L 3.4336,2.019459,3.4113,1.873929 +L 3.4113,1.873929,3.3736,1.734066 +L 3.3736,1.734066,3.3211,1.599872 +L 3.3211,1.599872,3.2537,1.471344 +L 3.2537,1.471344,3.1719,1.348483 +L 3.1719,1.348483,3.0748,1.231291 +L 3.0748,1.231291,2.9634,1.119765 +L 2.9634,1.119765,2.839,1.017867 +L 2.839,1.017867,2.7057,0.929556 +L 2.7057,0.929556,2.564,0.85483 +L 2.564,0.85483,2.4134,0.793692 +L 2.4134,0.793692,2.2538,0.746139 +L 2.2538,0.746139,2.0844,0.712172 +L 2.0844,0.712172,1.907,0.691792 +L 1.907,0.691792,1.7197,0.685 +L 1.7197,0.685,1.5265,0.69094 +L 1.5265,0.69094,1.3432,0.708756 +L 1.3432,0.708756,1.1707,0.738453 +L 1.1707,0.738453,1.0082,0.780026 +L 1.0082,0.780026,0.8566,0.83348 +L 0.8566,0.83348,0.7149,0.898811 +L 0.7149,0.898811,0.5831,0.976021 +L 0.5831,0.976021,0.4622,1.065109 +L 0.4622,1.065109,0.3537,1.166696 +L 0.3537,1.166696,0.2601,1.281405 +L 0.2601,1.281405,0.1798,1.409234 +L 0.1798,1.409234,0.1154,1.550184 +L 0.1154,1.550184,0.0644,1.704253 +L 0.0644,1.704253,0.0282,1.871445 +L 0.0282,1.871445,0.0064,2.051756 +L 0.0064,2.051756,-0.0005,2.245188 + +[t] 31 +L 0.7131,7.20897,1.2655,7.695908 +L 1.2655,7.695908,1.2863,7.695908 +L 1.2863,7.695908,1.2863,5.773 +L 1.2863,5.773,2.192,5.773 +L 2.192,5.773,2.192,5.137 +L 2.192,5.137,1.2863,5.137 +L 1.2863,5.137,1.2863,1.544594 +L 1.2863,1.544594,1.2893,1.492189 +L 1.2893,1.492189,1.2977,1.446772 +L 1.2977,1.446772,1.3116,1.408341 +L 1.3116,1.408341,1.3309,1.376898 +L 1.3309,1.376898,1.3557,1.352442 +L 1.3557,1.352442,1.3854,1.334974 +L 1.3854,1.334974,1.4211,1.324494 +L 1.4211,1.324494,1.4627,1.321 +L 1.4627,1.321,2.0454,1.321 +L 2.0454,1.321,2.0454,0.685 +L 2.0454,0.685,1.3765,0.685 +L 1.3765,0.685,1.2209,0.700138 +L 1.2209,0.700138,1.0862,0.745557 +L 1.0862,0.745557,0.9722,0.821253 +L 0.9722,0.821253,0.8791,0.927226 +L 0.8791,0.927226,0.8062,1.063479 +L 0.8062,1.063479,0.7542,1.23001 +L 0.7542,1.23001,0.7235,1.426818 +L 0.7235,1.426818,0.7131,1.653906 +L 0.7131,1.653906,0.7131,5.137 +L 0.7131,5.137,-0.0009,5.137 +L -0.0009,5.137,-0.0009,5.773 +L -0.0009,5.773,0.7131,5.773 +L 0.7131,5.773,0.7131,7.20897 + +[u] 64 +L 2.2938,5.633875,2.8675,5.633875 +L 2.8675,5.633875,2.8675,0.665125 +L 2.8675,0.665125,2.2938,0.665125 +L 2.2938,0.665125,2.2938,1.340875 +L 2.2938,1.340875,2.16,1.187155 +L 2.16,1.187155,2.0267,1.05393 +L 2.0267,1.05393,1.8939,0.941201 +L 1.8939,0.941201,1.7611,0.848968 +L 1.7611,0.848968,1.6288,0.777232 +L 1.6288,0.777232,1.497,0.725992 +L 1.497,0.725992,1.3648,0.695249 +L 1.3648,0.695249,1.2335,0.685 +L 1.2335,0.685,1.1344,0.689775 +L 1.1344,0.689775,1.0343,0.704099 +L 1.0343,0.704099,0.9342,0.727971 +L 0.9342,0.727971,0.8321,0.761394 +L 0.8321,0.761394,0.7306,0.804366 +L 0.7306,0.804366,0.6275,0.856888 +L 0.6275,0.856888,0.5239,0.918958 +L 0.5239,0.918958,0.4189,0.990578 +L 0.4189,0.990578,0.3208,1.07889 +L 0.3208,1.07889,0.2356,1.191036 +L 0.2356,1.191036,0.1632,1.327017 +L 0.1632,1.327017,0.1043,1.486832 +L 0.1043,1.486832,0.0587,1.670482 +L 0.0587,1.670482,0.0255,1.877966 +L 0.0255,1.877966,0.0057,2.109284 +L 0.0057,2.109284,-0.0008,2.364437 +L -0.0008,2.364437,-0.0008,5.633875 +L -0.0008,5.633875,0.5735,5.633875 +L 0.5735,5.633875,0.5735,2.364437 +L 0.5735,2.364437,0.576,2.215569 +L 0.576,2.215569,0.5854,2.07951 +L 0.5854,2.07951,0.5993,1.956263 +L 0.5993,1.956263,0.6201,1.845824 +L 0.6201,1.845824,0.6468,1.748197 +L 0.6468,1.748197,0.679,1.663378 +L 0.679,1.663378,0.7172,1.59137 +L 0.7172,1.59137,0.7618,1.532172 +L 0.7618,1.532172,0.8113,1.482678 +L 0.8113,1.482678,0.8678,1.439784 +L 0.8678,1.439784,0.9302,1.403489 +L 0.9302,1.403489,0.9986,1.373794 +L 0.9986,1.373794,1.0734,1.350696 +L 1.0734,1.350696,1.1542,1.334199 +L 1.1542,1.334199,1.2414,1.3243 +L 1.2414,1.3243,1.335,1.321 +L 1.335,1.321,1.4128,1.327638 +L 1.4128,1.327638,1.4911,1.347551 +L 1.4911,1.347551,1.5694,1.380742 +L 1.5694,1.380742,1.6487,1.427208 +L 1.6487,1.427208,1.7289,1.486948 +L 1.7289,1.486948,1.8082,1.559966 +L 1.8082,1.559966,1.8885,1.646259 +L 1.8885,1.646259,1.9697,1.745828 +L 1.9697,1.745828,2.046,1.86007 +L 2.046,1.86007,2.1114,1.990383 +L 2.1114,1.990383,2.1669,2.136768 +L 2.1669,2.136768,2.2125,2.299223 +L 2.2125,2.299223,2.2482,2.477748 +L 2.2482,2.477748,2.2729,2.672345 +L 2.2729,2.672345,2.2888,2.883012 +L 2.2888,2.883012,2.2938,3.10975 +L 2.2938,3.10975,2.2938,5.633875 + +[v] 8 +L 3.4652,5.623938,2.0972,0.685 +L 2.0972,0.685,1.3679,0.685 +L 1.3679,0.685,-0.0006,5.623938 +L -0.0006,5.623938,0.639,5.623938 +L 0.639,5.623938,1.7117,1.639 +L 1.7117,1.639,1.7533,1.639 +L 1.7533,1.639,2.8255,5.623938 +L 2.8255,5.623938,3.4652,5.623938 + +[w] 13 +L 0,5.658719,0.6124,5.658719 +L 0.6124,5.658719,1.093,2.568157 +L 1.093,2.568157,1.5588,5.658719 +L 1.5588,5.658719,2.1722,5.658719 +L 2.1722,5.658719,2.6379,2.568157 +L 2.6379,2.568157,3.1185,5.658719 +L 3.1185,5.658719,3.7279,5.658719 +L 3.7279,5.658719,2.9421,0.570719 +L 2.9421,0.570719,2.3297,0.570719 +L 2.3297,0.570719,1.864,3.646375 +L 1.864,3.646375,1.3977,0.570719 +L 1.3977,0.570719,0.7888,0.570719 +L 0.7888,0.570719,0,5.658719 + +[x] 12 +L 3.5254,0.570719,2.8823,0.570719 +L 2.8823,0.570719,1.7026,2.652625 +L 1.7026,2.652625,0.6388,0.570719 +L 0.6388,0.570719,-0.0003,0.570719 +L -0.0003,0.570719,1.3681,3.248875 +L 1.3681,3.248875,-0.0003,5.658719 +L -0.0003,5.658719,0.6388,5.658719 +L 0.6388,5.658719,1.7625,3.686125 +L 1.7625,3.686125,2.8258,5.658719 +L 2.8258,5.658719,3.465,5.658719 +L 3.465,5.658719,2.0876,3.10975 +L 2.0876,3.10975,3.5254,0.570719 + +[y] 24 +L 0.9461,0.496188,1.2598,1.395531 +L 1.2598,1.395531,-0.0007,5.658719 +L -0.0007,5.658719,0.6563,5.658719 +L 0.6563,5.658719,1.6185,2.389281 +L 1.6185,2.389281,2.7838,5.658719 +L 2.7838,5.658719,3.4676,5.658719 +L 3.4676,5.658719,1.5739,0.347124 +L 1.5739,0.347124,1.4748,0.09038 +L 1.4748,0.09038,1.3564,-0.120869 +L 1.3564,-0.120869,1.2191,-0.286623 +L 1.2191,-0.286623,1.0626,-0.406882 +L 1.0626,-0.406882,0.8872,-0.481647 +L 0.8872,-0.481647,0.693,-0.510915 +L 0.693,-0.510915,0.4799,-0.49469 +L 0.4799,-0.49469,0.247,-0.432968 +L 0.247,-0.432968,0.247,0.312344 +L 0.247,0.312344,0.3709,0.261958 +L 0.3709,0.261958,0.4849,0.232533 +L 0.4849,0.232533,0.5879,0.22407 +L 0.5879,0.22407,0.6806,0.23657 +L 0.6806,0.23657,0.7623,0.270031 +L 0.7623,0.270031,0.8347,0.324456 +L 0.8347,0.324456,0.8951,0.39984 +L 0.8951,0.39984,0.9461,0.496188 + +[z] 10 +L 0.1724,5.773,3.0857,5.773 +L 3.0857,5.773,3.0857,4.893531 +L 3.0857,4.893531,0.815,1.321 +L 0.815,1.321,3.2017,1.321 +L 3.2017,1.321,3.2017,0.367 +L 3.2017,0.367,-0.0011,0.367 +L -0.0011,0.367,-0.0011,1.246469 +L -0.0011,1.246469,2.2697,4.819 +L 2.2697,4.819,0.1724,4.819 +L 0.1724,4.819,0.1724,5.773 + +[{] 135 +L 1.9894,-0.269,1.87,-0.263954 +L 1.87,-0.263954,1.7516,-0.248814 +L 1.7516,-0.248814,1.6351,-0.223582 +L 1.6351,-0.223582,1.5202,-0.188258 +L 1.5202,-0.188258,1.4067,-0.14284 +L 1.4067,-0.14284,1.2947,-0.08733 +L 1.2947,-0.08733,1.1842,-0.021727 +L 1.1842,-0.021727,1.0752,0.053969 +L 1.0752,0.053969,0.9737,0.143096 +L 0.9737,0.143096,0.8855,0.248992 +L 0.8855,0.248992,0.8112,0.371658 +L 0.8112,0.371658,0.7502,0.511093 +L 0.7502,0.511093,0.7031,0.667299 +L 0.7031,0.667299,0.669,0.840273 +L 0.669,0.840273,0.6486,1.030017 +L 0.6486,1.030017,0.6417,1.236531 +L 0.6417,1.236531,0.6417,2.6725 +L 0.6417,2.6725,0.6402,2.840545 +L 0.6402,2.840545,0.6353,2.994382 +L 0.6353,2.994382,0.6268,3.134011 +L 0.6268,3.134011,0.6154,3.259434 +L 0.6154,3.259434,0.6006,3.370649 +L 0.6006,3.370649,0.5823,3.467655 +L 0.5823,3.467655,0.5605,3.550455 +L 0.5605,3.550455,0.5357,3.619046 +L 0.5357,3.619046,0.504,3.676692 +L 0.504,3.676692,0.4623,3.726651 +L 0.4623,3.726651,0.4108,3.768925 +L 0.4108,3.768925,0.3489,3.803512 +L 0.3489,3.803512,0.2765,3.830412 +L 0.2765,3.830412,0.1943,3.849628 +L 0.1943,3.849628,0.1021,3.861157 +L 0.1021,3.861157,-0.0004,3.865 +L -0.0004,3.865,-0.0004,4.501 +L -0.0004,4.501,0.1021,4.504843 +L 0.1021,4.504843,0.1943,4.516372 +L 0.1943,4.516372,0.2765,4.535587 +L 0.2765,4.535587,0.3489,4.562488 +L 0.3489,4.562488,0.4108,4.597076 +L 0.4108,4.597076,0.4623,4.639349 +L 0.4623,4.639349,0.504,4.689308 +L 0.504,4.689308,0.5357,4.746953 +L 0.5357,4.746953,0.5605,4.815544 +L 0.5605,4.815544,0.5823,4.898345 +L 0.5823,4.898345,0.6006,4.995353 +L 0.6006,4.995353,0.6154,5.106566 +L 0.6154,5.106566,0.6268,5.231988 +L 0.6268,5.231988,0.6353,5.371618 +L 0.6353,5.371618,0.6402,5.525456 +L 0.6402,5.525456,0.6417,5.6935 +L 0.6417,5.6935,0.6417,7.129469 +L 0.6417,7.129469,0.6486,7.335982 +L 0.6486,7.335982,0.669,7.525728 +L 0.669,7.525728,0.7031,7.698702 +L 0.7031,7.698702,0.7502,7.854909 +L 0.7502,7.854909,0.8112,7.994342 +L 0.8112,7.994342,0.8855,8.11701 +L 0.8855,8.11701,0.9737,8.222904 +L 0.9737,8.222904,1.0752,8.312033 +L 1.0752,8.312033,1.1842,8.387729 +L 1.1842,8.387729,1.2947,8.453332 +L 1.2947,8.453332,1.4067,8.508842 +L 1.4067,8.508842,1.5202,8.554261 +L 1.5202,8.554261,1.6351,8.589582 +L 1.6351,8.589582,1.7516,8.614816 +L 1.7516,8.614816,1.87,8.629955 +L 1.87,8.629955,1.9894,8.635001 +L 1.9894,8.635001,1.9894,8.317001 +L 1.9894,8.317001,1.917,8.314479 +L 1.917,8.314479,1.8462,8.30691 +L 1.8462,8.30691,1.7773,8.294295 +L 1.7773,8.294295,1.7094,8.27663 +L 1.7094,8.27663,1.6435,8.253922 +L 1.6435,8.253922,1.5796,8.226168 +L 1.5796,8.226168,1.5167,8.193366 +L 1.5167,8.193366,1.4563,8.155517 +L 1.4563,8.155517,1.3998,8.105866 +L 1.3998,8.105866,1.3507,8.037665 +L 1.3507,8.037665,1.3096,7.950906 +L 1.3096,7.950906,1.2759,7.845592 +L 1.2759,7.845592,1.2492,7.72172 +L 1.2492,7.72172,1.2303,7.579296 +L 1.2303,7.579296,1.2194,7.418316 +L 1.2194,7.418316,1.2155,7.238782 +L 1.2155,7.238782,1.2155,5.773 +L 1.2155,5.773,1.2115,5.559072 +L 1.2115,5.559072,1.2006,5.361991 +L 1.2006,5.361991,1.1813,5.181758 +L 1.1813,5.181758,1.1545,5.018371 +L 1.1545,5.018371,1.1203,4.871832 +L 1.1203,4.871832,1.0787,4.74214 +L 1.0787,4.74214,1.0292,4.629294 +L 1.0292,4.629294,0.9722,4.533296 +L 0.9722,4.533296,0.9112,4.451197 +L 0.9112,4.451197,0.8508,4.380043 +L 0.8508,4.380043,0.7908,4.319836 +L 0.7908,4.319836,0.7309,4.270573 +L 0.7309,4.270573,0.6719,4.23226 +L 0.6719,4.23226,0.613,4.204893 +L 0.613,4.204893,0.554,4.188473 +L 0.554,4.188473,0.4955,4.183 +L 0.4955,4.183,0.554,4.177527 +L 0.554,4.177527,0.613,4.161106 +L 0.613,4.161106,0.6719,4.13374 +L 0.6719,4.13374,0.7309,4.095425 +L 0.7309,4.095425,0.7908,4.046164 +L 0.7908,4.046164,0.8508,3.985957 +L 0.8508,3.985957,0.9112,3.914803 +L 0.9112,3.914803,0.9722,3.832704 +L 0.9722,3.832704,1.0292,3.736706 +L 1.0292,3.736706,1.0787,3.623861 +L 1.0787,3.623861,1.1203,3.494169 +L 1.1203,3.494169,1.1545,3.347629 +L 1.1545,3.347629,1.1813,3.184242 +L 1.1813,3.184242,1.2006,3.004009 +L 1.2006,3.004009,1.2115,2.806927 +L 1.2115,2.806927,1.2155,2.592999 +L 1.2155,2.592999,1.2155,1.127218 +L 1.2155,1.127218,1.2194,0.947684 +L 1.2194,0.947684,1.2303,0.786705 +L 1.2303,0.786705,1.2492,0.644279 +L 1.2492,0.644279,1.2759,0.520411 +L 1.2759,0.520411,1.3096,0.415096 +L 1.3096,0.415096,1.3507,0.328337 +L 1.3507,0.328337,1.3998,0.260133 +L 1.3998,0.260133,1.4563,0.210484 +L 1.4563,0.210484,1.5167,0.172636 +L 1.5167,0.172636,1.5796,0.139835 +L 1.5796,0.139835,1.6435,0.112079 +L 1.6435,0.112079,1.7094,0.089371 +L 1.7094,0.089371,1.7773,0.071709 +L 1.7773,0.071709,1.8462,0.059092 +L 1.8462,0.059092,1.917,0.051523 +L 1.917,0.051523,1.9894,0.048999 +L 1.9894,0.048999,1.9894,-0.269 + +[}] 135 +L -0.0003,-0.269,-0.0003,0.048999 +L -0.0003,0.048999,0.0721,0.051523 +L 0.0721,0.051523,0.1429,0.059092 +L 0.1429,0.059092,0.2123,0.071709 +L 0.2123,0.071709,0.2797,0.089371 +L 0.2797,0.089371,0.3451,0.112079 +L 0.3451,0.112079,0.4095,0.139835 +L 0.4095,0.139835,0.4719,0.172636 +L 0.4719,0.172636,0.5333,0.210484 +L 0.5333,0.210484,0.5893,0.260133 +L 0.5893,0.260133,0.6384,0.328337 +L 0.6384,0.328337,0.6795,0.415096 +L 0.6795,0.415096,0.7137,0.520411 +L 0.7137,0.520411,0.74,0.644279 +L 0.74,0.644279,0.7583,0.786705 +L 0.7583,0.786705,0.7697,0.947684 +L 0.7697,0.947684,0.7736,1.127218 +L 0.7736,1.127218,0.7736,2.592999 +L 0.7736,2.592999,0.7771,2.806927 +L 0.7771,2.806927,0.789,3.004009 +L 0.789,3.004009,0.8078,3.184242 +L 0.8078,3.184242,0.8346,3.347629 +L 0.8346,3.347629,0.8688,3.494169 +L 0.8688,3.494169,0.9104,3.623861 +L 0.9104,3.623861,0.9599,3.736706 +L 0.9599,3.736706,1.0169,3.832704 +L 1.0169,3.832704,1.0779,3.914803 +L 1.0779,3.914803,1.1383,3.985957 +L 1.1383,3.985957,1.1983,4.046164 +L 1.1983,4.046164,1.2577,4.095425 +L 1.2577,4.095425,1.3172,4.13374 +L 1.3172,4.13374,1.3766,4.161106 +L 1.3766,4.161106,1.4351,4.177527 +L 1.4351,4.177527,1.4936,4.183 +L 1.4936,4.183,1.4351,4.188473 +L 1.4351,4.188473,1.3766,4.204893 +L 1.3766,4.204893,1.3172,4.23226 +L 1.3172,4.23226,1.2577,4.270573 +L 1.2577,4.270573,1.1983,4.319836 +L 1.1983,4.319836,1.1383,4.380043 +L 1.1383,4.380043,1.0779,4.451197 +L 1.0779,4.451197,1.0169,4.533296 +L 1.0169,4.533296,0.9599,4.629294 +L 0.9599,4.629294,0.9104,4.74214 +L 0.9104,4.74214,0.8688,4.871832 +L 0.8688,4.871832,0.8346,5.018371 +L 0.8346,5.018371,0.8078,5.181758 +L 0.8078,5.181758,0.789,5.361991 +L 0.789,5.361991,0.7771,5.559072 +L 0.7771,5.559072,0.7736,5.773 +L 0.7736,5.773,0.7736,7.238782 +L 0.7736,7.238782,0.7697,7.418316 +L 0.7697,7.418316,0.7583,7.579296 +L 0.7583,7.579296,0.74,7.72172 +L 0.74,7.72172,0.7137,7.845592 +L 0.7137,7.845592,0.6795,7.950906 +L 0.6795,7.950906,0.6384,8.037665 +L 0.6384,8.037665,0.5893,8.105866 +L 0.5893,8.105866,0.5333,8.155517 +L 0.5333,8.155517,0.4719,8.193366 +L 0.4719,8.193366,0.4095,8.226168 +L 0.4095,8.226168,0.3451,8.253922 +L 0.3451,8.253922,0.2797,8.27663 +L 0.2797,8.27663,0.2123,8.294295 +L 0.2123,8.294295,0.1429,8.30691 +L 0.1429,8.30691,0.0721,8.314479 +L 0.0721,8.314479,-0.0003,8.317001 +L -0.0003,8.317001,-0.0003,8.635001 +L -0.0003,8.635001,0.1191,8.629955 +L 0.1191,8.629955,0.2371,8.614816 +L 0.2371,8.614816,0.354,8.589582 +L 0.354,8.589582,0.4689,8.554261 +L 0.4689,8.554261,0.5824,8.508842 +L 0.5824,8.508842,0.6944,8.453332 +L 0.6944,8.453332,0.8049,8.387729 +L 0.8049,8.387729,0.9139,8.312033 +L 0.9139,8.312033,1.0154,8.222904 +L 1.0154,8.222904,1.1036,8.11701 +L 1.1036,8.11701,1.1779,7.994342 +L 1.1779,7.994342,1.2389,7.854909 +L 1.2389,7.854909,1.2865,7.698702 +L 1.2865,7.698702,1.3201,7.525728 +L 1.3201,7.525728,1.3405,7.335982 +L 1.3405,7.335982,1.3469,7.129469 +L 1.3469,7.129469,1.3469,5.6935 +L 1.3469,5.6935,1.3489,5.525456 +L 1.3489,5.525456,1.3538,5.371618 +L 1.3538,5.371618,1.3618,5.231988 +L 1.3618,5.231988,1.3732,5.106566 +L 1.3732,5.106566,1.388,4.995353 +L 1.388,4.995353,1.4059,4.898345 +L 1.4059,4.898345,1.4272,4.815544 +L 1.4272,4.815544,1.4519,4.746953 +L 1.4519,4.746953,1.4827,4.689308 +L 1.4827,4.689308,1.5243,4.639349 +L 1.5243,4.639349,1.5758,4.597076 +L 1.5758,4.597076,1.6377,4.562488 +L 1.6377,4.562488,1.7096,4.535587 +L 1.7096,4.535587,1.7918,4.516372 +L 1.7918,4.516372,1.884,4.504843 +L 1.884,4.504843,1.9866,4.501 +L 1.9866,4.501,1.9866,3.865 +L 1.9866,3.865,1.884,3.861157 +L 1.884,3.861157,1.7918,3.849628 +L 1.7918,3.849628,1.7096,3.830412 +L 1.7096,3.830412,1.6377,3.803512 +L 1.6377,3.803512,1.5758,3.768925 +L 1.5758,3.768925,1.5243,3.726651 +L 1.5243,3.726651,1.4827,3.676692 +L 1.4827,3.676692,1.4519,3.619046 +L 1.4519,3.619046,1.4272,3.550455 +L 1.4272,3.550455,1.4059,3.467655 +L 1.4059,3.467655,1.388,3.370649 +L 1.388,3.370649,1.3732,3.259434 +L 1.3732,3.259434,1.3618,3.134011 +L 1.3618,3.134011,1.3538,2.994382 +L 1.3538,2.994382,1.3489,2.840545 +L 1.3489,2.840545,1.3469,2.6725 +L 1.3469,2.6725,1.3469,1.236531 +L 1.3469,1.236531,1.3405,1.030017 +L 1.3405,1.030017,1.3201,0.840273 +L 1.3201,0.840273,1.2865,0.667299 +L 1.2865,0.667299,1.2389,0.511093 +L 1.2389,0.511093,1.1779,0.371658 +L 1.1779,0.371658,1.1036,0.248992 +L 1.1036,0.248992,1.0154,0.143096 +L 1.0154,0.143096,0.9139,0.053969 +L 0.9139,0.053969,0.8049,-0.021727 +L 0.8049,-0.021727,0.6944,-0.08733 +L 0.6944,-0.08733,0.5824,-0.14284 +L 0.5824,-0.14284,0.4689,-0.188258 +L 0.4689,-0.188258,0.354,-0.223582 +L 0.354,-0.223582,0.2371,-0.248814 +L 0.2371,-0.248814,0.1191,-0.263954 +L 0.1191,-0.263954,-0.0003,-0.269 + +# Greek letters + +[Α] 153 +L 2.1966,6.735546,2.3794,6.732728 +L 2.3794,6.732643,2.4369,6.730711 +L 2.4369,6.730711,2.5488,6.724955 +L 2.5488,6.724909,2.6014,6.721038 +L 2.6014,6.721038,2.6539,6.716207 +L 2.6539,6.716207,2.6539,6.636917 +L 2.6539,6.636917,2.6559,6.566334 +L 2.6559,6.566334,2.6598,6.505416 +L 2.6598,6.505416,2.6638,6.453206 +L 2.6638,6.453206,2.6702,6.411629 +L 2.6702,6.411629,2.6767,6.378748 +L 2.6767,6.378748,2.6856,6.354577 +L 2.6856,6.354577,2.6965,6.341044 +L 2.6965,6.341044,2.7614,6.166996 +L 2.7614,6.166996,2.8233,5.991987 +L 2.8233,5.991987,2.8828,5.817938 +L 2.8828,5.817938,2.9403,5.642929 +L 2.9403,5.642929,2.9953,5.467916 +L 2.9953,5.467916,3.0473,5.291936 +L 3.0473,5.291936,3.0978,5.11596 +L 3.0978,5.11596,3.1459,4.939979 +L 3.1459,4.939979,3.4526,4.085221 +L 3.4526,4.085221,3.513,3.91327 +L 3.5125,3.91311,3.5388,3.832856 +L 3.5388,3.832856,3.5626,3.755508 +L 3.5626,3.755508,3.5854,3.682017 +L 3.5854,3.682017,3.623,3.545708 +L 3.623,3.545686,3.6374,3.482836 +L 3.6374,3.482836,3.6686,3.367773 +L 3.6686,3.367773,3.6993,3.256577 +L 3.6993,3.256577,3.731,3.148282 +L 3.731,3.148282,3.7617,3.044822 +L 3.7617,3.044822,3.7944,2.944264 +L 3.7944,2.944264,3.8276,2.848533 +L 3.8276,2.848533,3.8608,2.755714 +L 3.8608,2.755714,3.8945,2.667724 +L 3.8945,2.667724,4.2285,1.553836 +L 4.2285,1.553836,4.2582,1.476482 +L 4.2582,1.476482,4.2889,1.402032 +L 4.2889,1.402032,4.3226,1.32951 +L 4.3226,1.32951,4.3593,1.258927 +L 4.3593,1.258927,4.3989,1.189308 +L 4.3989,1.189308,4.4415,1.12259 +L 4.4415,1.12259,4.4881,1.057807 +L 4.4881,1.057807,4.5367,0.994954 +L 4.5367,0.994954,4.5644,0.994954 +L 4.5644,0.994954,4.6303,0.992963 +L 4.6303,0.993025,4.668,0.99109 +L 4.668,0.99109,4.7532,0.985007 +L 4.7532,0.985289,4.8002,0.982388 +L 4.8002,0.982388,4.8498,0.97755 +L 4.8498,0.97755,4.8498,0.666204 +L 4.8498,0.666204,3.189,0.685543 +L 3.189,0.685543,3.189,0.994954 +L 3.189,0.994954,3.5021,0.994954 +L 3.5021,0.994954,3.7736,1.343048 +L 3.7736,1.343048,3.7548,1.368188 +L 3.7548,1.368188,3.737,1.399129 +L 3.737,1.399129,3.7186,1.435871 +L 3.7186,1.435871,3.7003,1.477444 +L 3.7003,1.477444,3.6805,1.524824 +L 3.6805,1.524824,3.6626,1.578009 +L 3.6626,1.578009,3.6428,1.636022 +L 3.6428,1.636022,3.6235,1.699839 +L 3.6235,1.699839,3.5992,1.797499 +L 3.5992,1.797499,3.5745,1.89419 +L 3.5745,1.89419,3.5482,1.989914 +L 3.5482,1.989914,3.52,2.084672 +L 3.52,2.084672,3.4902,2.179431 +L 3.4902,2.179431,3.4605,2.272254 +L 3.4605,2.272254,3.4288,2.365077 +L 3.4288,2.365077,3.3956,2.456937 +L 3.3956,2.456937,3.3941,2.497546 +L 3.3941,2.497546,3.3941,2.535255 +L 3.3941,2.535255,3.3936,2.570061 +L 3.3936,2.570061,3.3936,2.603908 +L 3.3936,2.603908,3.3921,2.633881 +L 3.3921,2.633881,3.3911,2.662887 +L 3.3911,2.662887,3.3896,2.688992 +L 3.3896,2.688992,3.3877,2.713168 +L 3.3877,2.713168,1.548,2.713168 +L 1.548,2.713168,1.5054,2.658054 +L 1.5054,2.658054,1.4638,2.600037 +L 1.4638,2.600037,1.4241,2.536223 +L 1.4241,2.536223,1.3835,2.469505 +L 1.3835,2.469505,1.3448,2.396988 +L 1.3448,2.396988,1.3072,2.321568 +L 1.3072,2.321568,1.2705,2.240342 +L 1.2705,2.240342,1.2349,2.156221 +L 1.2349,2.156221,0.999,1.562538 +L 0.999,1.562538,0.8702,1.343048 +L 0.8702,1.343048,1.1481,0.994954 +L 1.1481,0.994954,1.2036,0.994954 +L 1.2036,0.994954,1.3211,0.99296 +L 1.3211,0.993025,1.3835,0.99109 +L 1.3835,0.99109,1.5886,0.982047 +L 1.5886,0.982388,1.6619,0.97755 +L 1.6619,0.97755,1.6619,0.666204 +L 1.6619,0.666204,-0.0008,0.685543 +L -0.0008,0.685543,-0.0008,0.994954 +L -0.0008,0.994954,0.3138,0.994954 +L 0.3138,0.994954,0.3618,1.055872 +L 0.3618,1.055872,0.4074,1.118722 +L 0.4074,1.118722,0.449,1.182539 +L 0.449,1.182539,0.4887,1.249253 +L 0.4887,1.249253,0.5243,1.317903 +L 0.5243,1.317903,0.5575,1.388492 +L 0.5575,1.388492,0.5868,1.460041 +L 0.5868,1.460041,0.6135,1.534498 +L 0.6135,1.534498,1.1481,2.956834 +L 1.1481,2.956834,1.1883,3.107669 +L 1.1883,3.107669,1.2274,3.253672 +L 1.2274,3.253672,1.2685,3.39581 +L 1.2685,3.39581,1.3087,3.533113 +L 1.3087,3.533113,1.3508,3.665583 +L 1.3508,3.665583,1.3919,3.794179 +L 1.3919,3.794179,1.4335,3.918913 +L 1.4335,3.918913,1.4756,4.038814 +L 1.4756,4.038814,1.9325,5.748324 +L 1.9325,5.748324,2.1535,6.341044 +L 2.1535,6.341044,2.1966,6.576005 +L 2.1966,6.576005,2.1966,6.735546 +L 2.2545,5.893357,2.2535,5.83051 +L 2.2535,5.83051,2.2516,5.773463 +L 2.2516,5.773463,2.2486,5.722216 +L 2.2486,5.722216,2.2446,5.676772 +L 2.2446,5.676772,2.2402,5.637124 +L 2.2402,5.637124,2.2342,5.604251 +L 2.2342,5.604251,2.2263,5.576211 +L 2.2263,5.576211,2.2189,5.553973 +L 2.2189,5.553973,1.7482,3.811589 +L 1.7482,3.811589,1.4692,3.087369 +L 1.4692,3.087369,3.1672,3.087369 +L 3.1672,3.087369,3.1692,3.134741 +L 3.1692,3.134741,3.1672,3.188889 +L 3.1672,3.188889,3.1583,3.248838 +L 3.1583,3.248838,3.1459,3.314589 +L 3.1459,3.314589,3.1266,3.387108 +L 3.1266,3.387108,3.1028,3.466395 +L 3.1028,3.466395,3.073,3.551485 +L 3.073,3.551485,3.0389,3.642377 +L 3.0389,3.642377,2.9581,3.857029 +L 2.9581,3.857029,2.8828,4.065888 +L 2.8828,4.065888,2.8124,4.269907 +L 2.8124,4.269907,2.746,4.469088 +L 2.746,4.469088,2.6836,4.663442 +L 2.6836,4.663442,2.6266,4.85199 +L 2.6266,4.85199,2.5736,5.035701 +L 2.5736,5.035701,2.5251,5.215549 +L 2.5251,5.215549,2.3754,5.658397 +L 2.3754,5.658397,2.3754,5.884656 +L 2.3754,5.884656,2.311,5.893357 +L 2.311,5.893357,2.2545,5.893357 + +[Β] 182 +L 0.0003,6.735546,2.5406,6.735546 +L 2.5406,6.735546,2.5861,6.731675 +L 2.5861,6.731675,2.6278,6.725875 +L 2.6278,6.725875,2.6644,6.718139 +L 2.6644,6.718139,2.6981,6.708471 +L 2.6981,6.708471,2.7268,6.695901 +L 2.7268,6.695901,2.7531,6.681397 +L 2.7531,6.681397,2.7744,6.663993 +L 2.7744,6.663993,2.7927,6.644654 +L 2.7927,6.644654,2.8636,6.601142 +L 2.8636,6.601142,3.0013,6.512972 +L 3.0013,6.513154,3.0682,6.468674 +L 3.0682,6.468674,3.1321,6.424196 +L 3.1321,6.424196,3.1966,6.378748 +L 3.1966,6.378748,3.258,6.333308 +L 3.258,6.333308,3.3179,6.287859 +L 3.3179,6.287859,3.3601,6.202774 +L 3.3601,6.202774,3.4017,6.117687 +L 3.4017,6.117687,3.481,5.943694 +L 3.481,5.943641,3.5563,5.765755 +L 3.5563,5.765728,3.5929,5.6758 +L 3.5929,5.6758,3.6271,5.584912 +L 3.6271,5.584912,3.6464,5.5298 +L 3.6464,5.5298,3.6633,5.478553 +L 3.6633,5.478553,3.6752,5.430202 +L 3.6752,5.430202,3.6841,5.386694 +L 3.6841,5.386694,3.69,5.346081 +L 3.69,5.346081,3.692,5.309339 +L 3.692,5.309339,3.69,5.276468 +L 3.69,5.276468,3.6851,5.247461 +L 3.6851,5.247461,3.6851,4.762065 +L 3.6851,4.762065,3.1668,4.10456 +L 3.1668,4.10456,3.1341,4.103596 +L 3.1341,4.103596,3.1004,4.103596 +L 3.1004,4.103596,2.9944,4.097686 +L 2.9944,4.097794,2.9558,4.094895 +L 2.9558,4.094895,2.8785,4.086957 +L 2.8785,4.087157,2.8785,3.921812 +L 2.8785,3.921812,3.1668,3.921812 +L 3.1668,3.921812,3.8862,3.00808 +L 3.8862,3.00808,3.8862,2.104978 +L 3.8862,2.104978,3.8476,1.995717 +L 3.8476,1.995717,3.807,1.886454 +L 3.807,1.886454,3.7654,1.77816 +L 3.7654,1.77816,3.7217,1.670832 +L 3.7217,1.670832,3.6772,1.563501 +L 3.6772,1.563501,3.6311,1.457146 +L 3.6311,1.457146,3.583,1.350784 +L 3.583,1.350784,3.5335,1.245389 +L 3.5335,1.245389,3.4701,1.192209 +L 3.4701,1.192209,3.4076,1.141929 +L 3.4076,1.141929,3.3477,1.095515 +L 3.3477,1.095515,3.2887,1.051034 +L 3.2887,1.051034,3.2327,1.010428 +L 3.2327,1.010428,3.1777,0.972716 +L 3.1777,0.972716,3.1242,0.938873 +L 3.1242,0.938873,3.0737,0.907934 +L 3.0737,0.907934,3.0231,0.876023 +L 3.0231,0.876023,2.9706,0.847982 +L 2.9706,0.847982,2.9181,0.824779 +L 2.9181,0.824779,2.8646,0.806409 +L 2.8646,0.806409,2.8101,0.792871 +L 2.8101,0.792871,2.7551,0.784169 +L 2.7551,0.784169,2.6991,0.779332 +L 2.6991,0.779332,2.6421,0.779332 +L 2.6421,0.779332,0.0003,0.797708 +L 0.0003,0.797708,0.0003,1.108088 +L 0.0003,1.108088,0.3149,1.108088 +L 0.3149,1.108088,0.6003,1.473583 +L 0.6003,1.473583,0.6003,6.041297 +L 0.6003,6.041297,0.3149,6.406793 +L 0.3149,6.406793,0.2877,6.404859 +L 0.2877,6.404859,0.2564,6.403892 +L 0.2564,6.403892,0.2237,6.404859 +L 0.2237,6.404859,0.1861,6.406793 +L 0.1861,6.406793,0.1445,6.409694 +L 0.1445,6.409694,0.0999,6.413561 +L 0.0999,6.413561,0.0003,6.425499 +L 0.0003,6.425166,0.0003,6.735546 +L 1.3683,6.361345,1.1047,6.017125 +L 1.1047,6.017125,1.0903,4.124868 +L 1.0903,4.124868,1.9886,4.116166 +L 1.9886,4.116166,2.0297,4.117133 +L 2.0297,4.117133,2.0699,4.119068 +L 2.0699,4.119068,2.1065,4.122935 +L 2.1065,4.122935,2.1402,4.12777 +L 2.1402,4.12777,2.1719,4.134536 +L 2.1719,4.134536,2.2007,4.142274 +L 2.2007,4.142274,2.2284,4.151939 +L 2.2284,4.151939,2.2522,4.162576 +L 2.2522,4.162576,2.3691,4.212857 +L 2.3691,4.212857,2.4796,4.256368 +L 2.4796,4.256368,2.5832,4.293113 +L 2.5832,4.293113,2.6803,4.323086 +L 2.6803,4.323086,2.7714,4.346293 +L 2.7714,4.346293,2.8577,4.36273 +L 2.8577,4.36273,2.9359,4.372398 +L 2.9359,4.372398,3.0083,4.376269 +L 3.0083,4.376269,3.0093,4.440086 +L 3.0093,4.440086,3.0122,4.498098 +L 3.0122,4.498098,3.0162,4.550312 +L 3.0162,4.550312,3.0212,4.596724 +L 3.0212,4.596724,3.0291,4.636368 +L 3.0291,4.636368,3.0365,4.670208 +L 3.0365,4.670208,3.0469,4.698252 +L 3.0469,4.698252,3.0588,4.719523 +L 3.0588,4.719523,3.2084,5.136266 +L 3.2084,5.136266,3.2084,5.192346 +L 3.2084,5.192346,3.2055,5.248427 +L 3.2055,5.248427,3.199,5.304508 +L 3.199,5.304508,3.1886,5.361551 +L 3.1886,5.361551,3.1757,5.418605 +L 3.1757,5.418605,3.1594,5.475652 +L 3.1594,5.475652,3.1391,5.532699 +L 3.1391,5.532699,3.1158,5.590715 +L 3.1158,5.590715,3.0083,5.88756 +L 3.0083,5.88756,3.0083,6.101246 +L 3.0083,6.101246,2.9449,6.100278 +L 2.9449,6.100278,2.8785,6.104148 +L 2.8785,6.104148,2.8131,6.11285 +L 2.8131,6.11285,2.7467,6.124449 +L 2.7467,6.124449,2.6798,6.139924 +L 2.6798,6.139924,2.6109,6.160229 +L 2.6109,6.160229,2.5435,6.184399 +L 2.5435,6.184399,2.4737,6.212445 +L 2.4737,6.212445,2.4003,6.245318 +L 2.4003,6.245318,2.3285,6.274326 +L 2.3285,6.274326,2.2591,6.298496 +L 2.2591,6.298496,2.1922,6.31977 +L 2.1922,6.31977,2.1273,6.336206 +L 2.1273,6.336206,2.0649,6.348778 +L 2.0649,6.348778,2.004,6.356512 +L 2.004,6.356512,1.946,6.361345 +L 1.946,6.361345,1.3683,6.361345 +L 1.0561,3.741969,1.0561,1.374957 +L 1.0561,1.374957,1.3257,1.037499 +L 1.3257,1.037499,1.5139,1.025902 +L 1.5139,1.025899,1.6071,1.022031 +L 1.6071,1.022031,1.7022,1.01913 +L 1.7022,1.01913,1.8925,1.017185 +L 1.8925,1.017197,1.9896,1.01816 +L 1.9896,1.01816,2.0857,1.020096 +L 2.0857,1.020096,2.1729,1.01913 +L 2.1729,1.01913,2.2512,1.021065 +L 2.2512,1.021065,2.3216,1.025899 +L 2.3216,1.025899,2.384,1.033631 +L 2.384,1.033631,2.4375,1.044272 +L 2.4375,1.044272,2.4816,1.057807 +L 2.4816,1.057807,2.5178,1.074241 +L 2.5178,1.074241,2.5465,1.09358 +L 2.5465,1.09358,2.6684,1.166101 +L 2.6684,1.166101,2.7774,1.236687 +L 2.7774,1.236687,2.8755,1.306306 +L 2.8755,1.306306,2.9597,1.373984 +L 2.9597,1.373984,3.034,1.440702 +L 3.034,1.440702,3.0955,1.505492 +L 3.0955,1.505492,3.144,1.569307 +L 3.144,1.569307,3.1817,1.631189 +L 3.1817,1.631189,3.2392,1.775262 +L 3.2392,1.775262,3.2897,1.904827 +L 3.2897,1.904827,3.3323,2.020854 +L 3.3323,2.020854,3.367,2.122383 +L 3.367,2.122383,3.3947,2.21037 +L 3.3947,2.21037,3.4136,2.283854 +L 3.4136,2.283854,3.4255,2.343802 +L 3.4255,2.343802,3.4289,2.390219 +L 3.4289,2.390219,3.3868,2.617441 +L 3.3868,2.617441,3.3497,2.708335 +L 3.3497,2.708335,3.2748,2.884259 +L 3.2758,2.884312,3.2372,2.969402 +L 3.2372,2.969402,3.201,3.053524 +L 3.201,3.053524,3.1242,3.215887 +L 3.1242,3.215967,3.0866,3.294289 +L 3.0866,3.294289,3.0291,3.330061 +L 3.0291,3.330061,2.9706,3.363904 +L 2.9706,3.363904,2.8596,3.425185 +L 2.8596,3.42482,2.7526,3.47833 +L 2.7526,3.478001,2.6991,3.501209 +L 2.6991,3.501209,2.6476,3.522476 +L 2.6476,3.522476,2.2096,3.705227 +L 2.2096,3.705227,2.0272,3.741969 +L 2.0272,3.741969,1.0561,3.741969 + +[Γ] 42 +L -0.0001,6.695901,3.658,6.687199 +L 3.658,6.687199,3.658,4.832652 +L 3.658,4.832652,3.3845,4.832652 +L 3.3845,4.832652,3.3845,5.490154 +L 3.3845,5.490154,3.2819,5.618755 +L 3.2819,5.618755,3.1774,5.738653 +L 3.1774,5.738653,3.0699,5.851784 +L 3.0699,5.851784,2.9613,5.956206 +L 2.9613,5.956206,2.8514,6.052898 +L 2.8514,6.052898,2.7394,6.14089 +L 2.7394,6.14089,2.6244,6.221147 +L 2.6244,6.221147,2.5085,6.293665 +L 2.5085,6.293665,2.4793,6.311068 +L 2.4793,6.311068,2.4461,6.325573 +L 2.4461,6.325573,2.4094,6.338141 +L 2.4094,6.338141,2.3678,6.348778 +L 2.3678,6.348778,2.3212,6.356512 +L 2.3212,6.356512,2.2726,6.362315 +L 2.2726,6.362315,2.2181,6.366182 +L 2.2181,6.366182,2.1587,6.367149 +L 2.1587,6.367149,1.3402,6.367149 +L 1.3402,6.367149,1.0558,6.001654 +L 1.0558,6.001654,1.0558,1.433936 +L 1.0558,1.433936,1.3412,1.068444 +L 1.3412,1.068444,1.3689,1.068444 +L 1.3689,1.068444,1.4011,1.067475 +L 1.4011,1.067475,1.5577,1.058789 +L 1.5577,1.058773,1.6553,1.050796 +L 1.6553,1.051034,1.6553,0.739691 +L 1.6553,0.739691,-0.0001,0.75903 +L -0.0001,0.75903,-0.0001,1.068444 +L -0.0001,1.068444,0.3145,1.068444 +L 0.3145,1.068444,0.5999,1.433936 +L 0.5999,1.433936,0.5999,6.001654 +L 0.5999,6.001654,0.3145,6.367149 +L 0.3145,6.367149,0.2873,6.365214 +L 0.2873,6.365214,0.2234,6.365214 +L 0.2234,6.365214,0.1857,6.367149 +L 0.1857,6.367149,0.1451,6.370047 +L 0.1451,6.370047,0.1005,6.373916 +L 0.1005,6.373916,0.0004,6.38597 +L -0.0001,6.38552,-0.0001,6.695901 + +[Δ] 140 +L 1.7966,6.735546,2.2604,6.735546 +L 2.2604,6.735546,2.2614,6.666892 +L 2.2614,6.666892,2.2663,6.599207 +L 2.2663,6.599207,2.2743,6.532493 +L 2.2743,6.532493,2.2842,6.466739 +L 2.2842,6.466739,2.299,6.400021 +L 2.299,6.400021,2.3169,6.335238 +L 2.3169,6.335238,2.3367,6.270456 +L 2.3367,6.270456,2.3605,6.205673 +L 2.3605,6.205673,2.4051,6.091576 +L 2.4051,6.091576,2.4487,5.976515 +L 2.4487,5.976515,2.4898,5.862418 +L 2.4898,5.862418,2.5294,5.746389 +L 2.5294,5.746389,2.5671,5.631325 +L 2.5671,5.631325,2.6023,5.515295 +L 2.6023,5.515295,2.636,5.400228 +L 2.636,5.400228,2.6667,5.284203 +L 2.6667,5.284203,2.6974,5.177838 +L 2.6974,5.177838,2.7281,5.073415 +L 2.7281,5.073415,2.7608,4.970918 +L 2.7608,4.970918,2.7935,4.870362 +L 2.7935,4.870362,2.8272,4.771736 +L 2.8272,4.771736,2.8609,4.675046 +L 2.8609,4.675046,2.9303,4.488363 +L 2.9303,4.48843,2.9848,4.350158 +L 2.9848,4.350158,3.0348,4.213826 +L 3.0348,4.213826,3.0829,4.079424 +L 3.0829,4.079424,3.1285,3.947922 +L 3.1285,3.947922,3.1701,3.817389 +L 3.1701,3.817389,3.2097,3.688786 +L 3.2097,3.688786,3.2469,3.562122 +L 3.2469,3.562122,3.2806,3.437392 +L 3.2806,3.437392,3.3128,3.327162 +L 3.3128,3.327162,3.3465,3.218862 +L 3.3465,3.218862,3.3802,3.112507 +L 3.3802,3.112507,3.4158,3.009047 +L 3.4158,3.009047,3.4515,2.907519 +L 3.4515,2.907519,3.4887,2.807926 +L 3.4887,2.807926,3.5268,2.711236 +L 3.5268,2.711236,3.566,2.616478 +L 3.566,2.616478,4.272,0.779332 +L 4.272,0.779332,-0.0009,0.797708 +L -0.0009,0.797708,0.0001,0.87409 +L 0.0001,0.87409,0.002,0.941778 +L 0.002,0.941778,0.0045,1.000757 +L 0.0045,1.000757,0.0085,1.052007 +L 0.0085,1.052007,0.0129,1.09455 +L 0.0129,1.09455,0.0189,1.12839 +L 0.0189,1.12839,0.0268,1.154494 +L 0.0268,1.154494,0.0347,1.171905 +L 0.0347,1.171905,0.6253,2.705417 +L 0.6253,2.705433,0.664,2.810828 +L 0.664,2.810828,0.7002,2.913322 +L 0.7002,2.913322,0.7319,3.012915 +L 0.7319,3.012915,0.7621,3.109605 +L 0.7621,3.109605,0.7889,3.204363 +L 0.7889,3.204363,0.8131,3.295254 +L 0.8131,3.295254,0.8334,3.383243 +L 0.8334,3.383243,1.105,4.396573 +L 1.105,4.396573,1.1565,4.542572 +L 1.1565,4.542572,1.2055,4.68471 +L 1.2055,4.68471,1.2511,4.821048 +L 1.2511,4.821048,1.2932,4.952548 +L 1.2932,4.952548,1.3329,5.079215 +L 1.3329,5.079215,1.4032,5.317926 +L 1.4032,5.318041,1.433,5.430202 +L 1.433,5.430202,1.4984,5.644984 +L 1.4984,5.64486,1.5326,5.750256 +L 1.5326,5.750256,1.5662,5.852746 +L 1.5662,5.852746,1.6019,5.953309 +L 1.6019,5.953309,1.6381,6.051934 +L 1.6381,6.051934,1.6738,6.147657 +L 1.6738,6.147657,1.7327,6.296495 +L 1.7327,6.296561,1.7511,6.352643 +L 1.7511,6.352643,1.7664,6.410658 +L 1.7664,6.410658,1.7788,6.47061 +L 1.7788,6.47061,1.7877,6.533457 +L 1.7877,6.533457,1.7947,6.598239 +L 1.7947,6.598239,1.7966,6.665929 +L 1.7966,6.665929,1.7966,6.735546 +L 1.868,5.893357,1.866,5.777325 +L 1.866,5.777331,1.863,5.72705 +L 1.863,5.72705,1.8591,5.683538 +L 1.8591,5.683538,1.8541,5.64486 +L 1.8541,5.64486,1.8477,5.611986 +L 1.8477,5.611986,1.8412,5.585881 +L 1.8412,5.585881,1.8323,5.564607 +L 1.8323,5.564607,1.7996,5.454378 +L 1.7996,5.454378,1.7664,5.347053 +L 1.7664,5.347053,1.6767,5.044321 +L 1.6767,5.044408,1.6495,4.94965 +L 1.6495,4.94965,1.6222,4.857793 +L 1.6222,4.857793,1.5975,4.769801 +L 1.5975,4.769801,1.5306,4.572548 +L 1.5306,4.572548,1.4676,4.380134 +L 1.4676,4.380134,1.4077,4.191586 +L 1.4077,4.191586,1.3507,4.006905 +L 1.3507,4.006905,1.2972,3.82609 +L 1.2972,3.82609,1.2467,3.649146 +L 1.2467,3.649146,1.1991,3.477032 +L 1.1991,3.477032,1.1545,3.307823 +L 1.1545,3.307823,1.1109,3.136676 +L 1.1109,3.136676,1.0653,2.969402 +L 1.0653,2.969402,1.0178,2.805994 +L 1.0178,2.805994,0.9697,2.647416 +L 0.9697,2.647416,0.9187,2.493679 +L 0.9187,2.493679,0.8661,2.343802 +L 0.8661,2.343802,0.8111,2.197803 +L 0.8111,2.197803,0.7552,2.056632 +L 0.7552,2.056632,0.4906,1.399129 +L 0.4906,1.399129,3.3658,1.381723 +L 3.3658,1.381723,3.3415,1.449411 +L 3.3415,1.449411,3.3182,1.516122 +L 3.3182,1.516122,3.2969,1.580904 +L 3.2969,1.580904,3.2766,1.64569 +L 3.2766,1.64569,3.2573,1.70951 +L 3.2573,1.70951,3.2404,1.771391 +L 3.2404,1.771391,3.2236,1.832308 +L 3.2236,1.832308,3.2092,1.89322 +L 3.2092,1.89322,3.18,2.00345 +L 3.18,2.00345,3.1503,2.109814 +L 3.1503,2.109814,3.1195,2.214237 +L 3.1195,2.214237,3.0868,2.314799 +L 3.0868,2.314799,3.0551,2.412456 +L 3.0551,2.412456,3.0214,2.507214 +L 3.0214,2.507214,2.9877,2.598102 +L 2.9877,2.598102,2.9521,2.686094 +L 2.9521,2.686094,2.6459,3.728434 +L 2.6459,3.728434,2.5656,3.936317 +L 2.5656,3.936317,2.4903,4.138407 +L 2.4903,4.138407,2.4199,4.33469 +L 2.4199,4.33469,2.3545,4.525169 +L 2.3545,4.525169,2.2936,4.710821 +L 2.2936,4.710821,2.2376,4.89163 +L 2.2376,4.89163,2.1861,5.066645 +L 2.1861,5.066645,2.1385,5.235855 +L 2.1385,5.235855,1.9889,5.665169 +L 1.9889,5.665169,1.9889,5.884656 +L 1.9889,5.884656,1.925,5.893357 +L 1.925,5.893357,1.868,5.893357 + +[Ε] 60 +L -0.0003,6.735546,3.8862,6.735546 +L 3.8862,6.735546,3.8862,5.082116 +L 3.8862,5.082116,3.6186,5.092753 +L 3.6186,5.092753,3.6191,5.157536 +L 3.6191,5.157536,3.6171,5.21942 +L 3.6171,5.21942,3.6132,5.278399 +L 3.6132,5.278399,3.6057,5.33448 +L 3.6057,5.33448,3.5968,5.387663 +L 3.5968,5.387663,3.5839,5.437944 +L 3.5839,5.437944,3.5711,5.486285 +L 3.5711,5.486285,3.5532,5.530767 +L 3.5532,5.530767,3.4165,5.896262 +L 3.4165,5.896262,3.4026,6.105114 +L 3.4026,6.105114,3.361,6.105114 +L 3.361,6.105114,3.3243,6.106084 +L 3.3243,6.106084,3.2629,6.109672 +L 3.2629,6.109948,3.2188,6.115283 +L 3.2188,6.115747,3.2034,6.119616 +L 3.2034,6.119616,3.1925,6.124449 +L 3.1925,6.124449,2.8244,6.361345 +L 2.8244,6.361345,1.3444,6.361345 +L 1.3444,6.361345,1.0561,5.975549 +L 1.0561,5.975549,1.0561,4.116166 +L 1.0561,4.116166,2.1173,4.116166 +L 2.1173,4.116166,2.6079,4.736926 +L 2.6079,4.736926,2.6079,5.139167 +L 2.6079,5.139167,2.8814,5.139167 +L 2.8814,5.139167,2.8814,2.718968 +L 2.8814,2.718968,2.6079,2.718968 +L 2.6079,2.718968,2.6079,3.120242 +L 2.6079,3.120242,2.1173,3.741969 +L 2.1173,3.741969,1.0561,3.741969 +L 1.0561,3.741969,1.0561,1.366255 +L 1.0561,1.366255,1.3583,1.000757 +L 1.3583,1.000757,2.921,1.000757 +L 2.921,1.000757,3.0032,1.102282 +L 3.0032,1.102282,3.0786,1.198975 +L 3.0786,1.198975,3.1474,1.290836 +L 3.1474,1.290836,3.2084,1.378825 +L 3.2084,1.378825,3.2624,1.461976 +L 3.2624,1.461976,3.3094,1.541267 +L 3.3094,1.541267,3.3491,1.616687 +L 3.3491,1.616687,3.3813,1.6863 +L 3.3813,1.6863,3.6112,2.271287 +L 3.6112,2.271287,3.6112,2.536223 +L 3.6112,2.536223,3.8862,2.527522 +L 3.8862,2.527522,3.8862,0.672008 +L 3.8862,0.672008,-0.0003,0.691346 +L -0.0003,0.691346,-0.0003,1.000757 +L -0.0003,1.000757,0.3138,1.000757 +L 0.3138,1.000757,0.5992,1.366255 +L 0.5992,1.366255,0.5992,6.014221 +L 0.5992,6.014221,0.3138,6.394222 +L 0.3138,6.394222,0.2871,6.392291 +L 0.2871,6.392291,0.2237,6.392291 +L 0.2237,6.392291,0.186,6.394222 +L 0.186,6.394222,0.1449,6.397125 +L 0.1449,6.397125,0.0522,6.406996 +L 0.0522,6.406793,-0.0003,6.413561 +L -0.0003,6.413561,-0.0003,6.735546 + +[Ζ] 192 +L 0.1956,6.695901,3.6381,6.687199 +L 3.6381,6.687199,3.6381,6.513154 +L 3.6381,6.513154,3.1981,5.947505 +L 3.1981,5.947505,3.1694,5.890458 +L 3.1694,5.890458,3.1188,5.787952 +L 3.1188,5.787962,3.0787,5.703697 +L 3.0782,5.70384,3.0609,5.668067 +L 3.0609,5.668067,3.0475,5.637124 +L 3.0475,5.637124,3.0346,5.610054 +L 3.0346,5.610054,2.9974,5.514217 +L 2.9969,5.51433,2.9781,5.471784 +L 2.9781,5.471784,2.9434,5.39328 +L 2.9424,5.39346,2.9256,5.358654 +L 2.9256,5.358654,2.9087,5.327714 +L 2.9087,5.327714,2.8924,5.298708 +L 2.8924,5.298708,2.8542,5.243593 +L 2.8542,5.243593,2.8166,5.183645 +L 2.8166,5.183645,2.7774,5.118858 +L 2.7774,5.118858,2.7403,5.049242 +L 2.7403,5.049242,2.7026,4.974789 +L 2.7026,4.974789,2.666,4.895499 +L 2.666,4.895499,2.6303,4.811377 +L 2.6303,4.811377,2.5946,4.722421 +L 2.5946,4.722421,2.5713,4.674076 +L 2.5713,4.674076,2.548,4.627667 +L 2.548,4.627667,2.5253,4.585118 +L 2.5253,4.585118,2.5005,4.544511 +L 2.5005,4.544511,2.4767,4.507765 +L 2.4767,4.507765,2.4529,4.472957 +L 2.4529,4.472957,2.4272,4.441051 +L 2.4272,4.441051,2.4034,4.413007 +L 2.4034,4.413007,2.3731,4.357896 +L 2.3731,4.357896,2.3172,4.245676 +L 2.3172,4.245734,2.2914,4.188682 +L 2.2914,4.188682,2.2661,4.131637 +L 2.2661,4.131637,2.22,4.014557 +L 2.22,4.01464,2.1973,3.955655 +L 2.1973,3.955655,2.1745,3.906341 +L 2.1745,3.906341,2.1507,3.860897 +L 2.1507,3.860897,2.1269,3.817389 +L 2.1269,3.817389,2.1036,3.777744 +L 2.1036,3.777744,2.0793,3.740034 +L 2.0793,3.740034,2.0556,3.70619 +L 2.0556,3.70619,2.0298,3.674284 +L 2.0298,3.674284,2.006,3.645275 +L 2.006,3.645275,1.9768,3.588228 +L 1.9768,3.588228,1.9267,3.485719 +L 1.9267,3.485734,1.9039,3.442226 +L 1.9039,3.442226,1.8861,3.401613 +L 1.8861,3.401613,1.8539,3.335058 +L 1.8539,3.334895,1.8425,3.307823 +L 1.8425,3.307823,1.8182,3.24691 +L 1.8182,3.24691,1.793,3.187926 +L 1.793,3.187926,1.7662,3.131846 +L 1.7662,3.131846,1.7385,3.076728 +L 1.7385,3.076728,1.7077,3.024515 +L 1.7077,3.024515,1.676,2.973268 +L 1.676,2.973268,1.6433,2.924922 +L 1.6433,2.924922,1.6086,2.877546 +L 1.6086,2.877546,1.5799,2.820497 +L 1.5799,2.820497,1.5294,2.718764 +L 1.5294,2.718968,1.5071,2.674494 +L 1.5071,2.674494,1.4887,2.634851 +L 1.4887,2.634851,1.4709,2.599074 +L 1.4709,2.599074,1.457,2.567163 +L 1.457,2.567163,1.4451,2.540092 +L 1.4451,2.540092,1.4214,2.479174 +L 1.4214,2.479174,1.3956,2.420195 +L 1.3956,2.420195,1.3678,2.363141 +L 1.3678,2.363141,1.3386,2.30706 +L 1.3386,2.30706,1.3074,2.252915 +L 1.3074,2.252915,1.2747,2.200702 +L 1.2747,2.200702,1.24,2.150424 +L 1.24,2.150424,1.2043,2.102076 +L 1.2043,2.102076,1.1796,2.057599 +L 1.1796,2.057599,1.1558,2.013121 +L 1.1558,2.013121,1.1112,1.921419 +L 1.1112,1.92126,1.0706,1.825635 +L 1.0706,1.825539,1.0517,1.776228 +L 1.0517,1.776228,1.0334,1.725947 +L 1.0334,1.725947,1.0042,1.663093 +L 1.0042,1.663093,0.9705,1.597348 +L 0.9705,1.597348,0.9308,1.527729 +L 0.9308,1.527729,0.8862,1.45521 +L 0.8862,1.45521,0.8367,1.378825 +L 0.8367,1.378825,0.7832,1.3005 +L 0.7832,1.3005,0.7227,1.218314 +L 0.7227,1.218314,0.6583,1.133227 +L 0.6583,1.133227,0.6583,1.068444 +L 0.6583,1.068444,2.6164,1.079079 +L 2.6164,1.079079,2.7096,1.137091 +L 2.7096,1.137091,2.88,1.246928 +L 2.88,1.247324,2.9563,1.299537 +L 2.9563,1.299537,3.0287,1.349815 +L 3.0287,1.349815,3.096,1.398164 +L 3.096,1.398164,3.1565,1.444573 +L 3.1565,1.444573,3.213,1.489054 +L 3.213,1.489054,3.5742,1.945437 +L 3.5742,1.945437,3.5742,2.347673 +L 3.5742,2.347673,3.8482,2.347673 +L 3.8482,2.347673,3.8482,0.739691 +L 3.8482,0.739691,-0.0006,0.75903 +L -0.0006,0.75903,0.2491,1.407831 +L 0.2491,1.407831,0.3016,1.511074 +L 0.3016,1.511291,0.3274,1.557704 +L 0.3274,1.557704,0.3521,1.601216 +L 0.3521,1.601216,0.3779,1.641826 +L 0.3779,1.641826,0.4017,1.679534 +L 0.4017,1.679534,0.425,1.71434 +L 0.425,1.71434,0.4492,1.745286 +L 0.4492,1.745286,0.4745,1.78976 +L 0.4745,1.78976,0.5196,1.87482 +L 0.5196,1.874851,0.5394,1.914494 +L 0.5394,1.914494,0.5731,1.988009 +L 0.5731,1.987978,0.586,2.022792 +L 0.586,2.022792,0.5979,2.054696 +L 0.5979,2.054696,0.645,2.157983 +L 0.6445,2.158156,0.6668,2.2036 +L 0.6668,2.2036,0.6861,2.247115 +L 0.6861,2.247115,0.7227,2.322513 +L 0.7227,2.322531,0.7396,2.35444 +L 0.7396,2.35444,0.7535,2.384415 +L 0.7535,2.384415,0.799,2.448235 +L 0.799,2.448235,0.8407,2.514953 +L 0.8407,2.514953,0.8803,2.582634 +L 0.8803,2.582634,0.917,2.651287 +L 0.917,2.651287,0.9521,2.721873 +L 0.9521,2.721873,0.9834,2.794392 +L 0.9834,2.794392,1.0121,2.866909 +L 1.0121,2.866909,1.0379,2.942329 +L 1.0379,2.942329,1.0929,3.045959 +L 1.0934,3.045789,1.1459,3.136747 +L 1.1464,3.136676,1.1716,3.177289 +L 1.1716,3.177289,1.2202,3.248975 +L 1.2212,3.248838,1.244,3.279783 +L 1.244,3.279783,1.2717,3.326193 +L 1.2717,3.326193,1.2985,3.375508 +L 1.2985,3.375508,1.3242,3.425782 +L 1.3242,3.425782,1.3485,3.478968 +L 1.3485,3.478968,1.3718,3.533113 +L 1.3718,3.533113,1.3936,3.590163 +L 1.3936,3.590163,1.4154,3.649146 +L 1.4154,3.649146,1.4352,3.710058 +L 1.4352,3.710058,1.4635,3.76324 +L 1.4635,3.76324,1.4907,3.812555 +L 1.4907,3.812555,1.5175,3.859934 +L 1.5175,3.859934,1.5432,3.903445 +L 1.5432,3.903445,1.569,3.944055 +L 1.569,3.944055,1.6176,4.016607 +L 1.6176,4.01657,1.6413,4.047516 +L 1.6413,4.047516,1.6696,4.093925 +L 1.6696,4.093925,1.6958,4.142274 +L 1.6958,4.142274,1.7216,4.193521 +L 1.7216,4.193521,1.7454,4.245734 +L 1.7454,4.245734,1.7692,4.300845 +L 1.7692,4.300845,1.791,4.357896 +L 1.791,4.357896,1.8128,4.415912 +L 1.8128,4.415912,1.8326,4.476828 +L 1.8326,4.476828,1.8613,4.530006 +L 1.8613,4.530006,1.8881,4.580288 +L 1.8881,4.580288,1.9148,4.627667 +L 1.9148,4.627667,1.9411,4.671175 +L 1.9411,4.671175,1.9664,4.711788 +L 1.9664,4.711788,1.9911,4.749499 +L 1.9911,4.749499,2.0159,4.783337 +L 2.0159,4.783337,2.0387,4.814282 +L 2.0387,4.814282,2.0665,4.861661 +L 2.0665,4.861661,2.12,4.960281 +L 2.12,4.960281,2.1452,5.013467 +L 2.1452,5.013467,2.1695,5.068581 +L 2.1695,5.068581,2.1923,5.124662 +L 2.1923,5.124662,2.2151,5.183645 +L 2.2151,5.183645,2.2369,5.244556 +L 2.2369,5.244556,2.2701,5.306444 +L 2.2701,5.306444,2.3013,5.36349 +L 2.3013,5.36349,2.3588,5.466027 +L 2.3588,5.465985,2.4108,5.55126 +L 2.4113,5.551068,2.4351,5.586848 +L 2.4351,5.586848,2.4579,5.618755 +L 2.4579,5.618755,2.4826,5.667098 +L 2.4826,5.667098,2.5054,5.714478 +L 2.5054,5.714478,2.5282,5.758958 +L 2.5282,5.758958,2.5476,5.800534 +L 2.5476,5.800534,2.5807,5.878982 +L 2.5812,5.878858,2.5946,5.913665 +L 2.5946,5.913665,2.6065,5.947505 +L 2.6065,5.947505,2.77,6.367149 +L 2.77,6.367149,0.9526,6.367149 +L 0.9526,6.367149,0.4705,5.745422 +L 0.4705,5.745422,0.4705,5.344148 +L 0.4705,5.344148,0.1956,5.344148 +L 0.1956,5.344148,0.1956,6.695901 + +[Η] 57 +L -0.001,6.695901,1.6544,6.678495 +L 1.6544,6.678495,1.6544,6.367149 +L 1.6544,6.367149,1.3397,6.367149 +L 1.3397,6.367149,1.0553,5.984251 +L 1.0553,5.984251,1.0553,4.13744 +L 1.0553,4.13744,3.3831,4.156776 +L 3.3831,4.156776,3.3831,6.001654 +L 3.3831,6.001654,3.0977,6.367149 +L 3.0977,6.367149,3.0709,6.365214 +L 3.0709,6.365214,3.006,6.365214 +L 3.006,6.365214,2.9698,6.367149 +L 2.9698,6.367149,2.9282,6.370047 +L 2.9282,6.370047,2.8836,6.373916 +L 2.8836,6.373916,2.8361,6.379722 +L 2.8361,6.379722,2.7835,6.38552 +L 2.7835,6.38552,2.7835,6.695901 +L 2.7835,6.695901,4.4384,6.678495 +L 4.4384,6.678495,4.4384,6.367149 +L 4.4384,6.367149,4.1253,6.367149 +L 4.1253,6.367149,3.8399,6.001654 +L 3.8399,6.001654,3.8399,1.433936 +L 3.8399,1.433936,4.1253,1.068444 +L 4.1253,1.068444,4.153,1.068444 +L 4.153,1.068444,4.1847,1.067475 +L 4.1847,1.067475,4.2566,1.06339 +L 4.2566,1.063604,4.2982,1.061675 +L 4.2982,1.061675,4.3413,1.058773 +L 4.3413,1.058773,4.4384,1.050719 +L 4.4384,1.051034,4.4384,0.739691 +L 4.4384,0.739691,2.7835,0.75903 +L 2.7835,0.75903,2.7835,1.068444 +L 2.7835,1.068444,3.0977,1.068444 +L 3.0977,1.068444,3.3831,1.433936 +L 3.3831,1.433936,3.3831,3.808687 +L 3.3831,3.808687,1.0553,3.808687 +L 1.0553,3.808687,1.0553,1.433936 +L 1.0553,1.433936,1.3397,1.068444 +L 1.3397,1.068444,1.3685,1.068444 +L 1.3685,1.068444,1.4002,1.067475 +L 1.4002,1.067475,1.4725,1.06344 +L 1.4725,1.063604,1.5132,1.061675 +L 1.5132,1.061675,1.5568,1.058773 +L 1.5568,1.058773,1.6544,1.050815 +L 1.6544,1.051034,1.6544,0.739691 +L 1.6544,0.739691,-0.001,0.75903 +L -0.001,0.75903,-0.001,1.068444 +L -0.001,1.068444,0.3131,1.068444 +L 0.3131,1.068444,0.5985,1.433936 +L 0.5985,1.433936,0.5985,6.001654 +L 0.5985,6.001654,0.3131,6.367149 +L 0.3131,6.367149,0.2864,6.365214 +L 0.2864,6.365214,0.222,6.365214 +L 0.222,6.365214,0.1843,6.367149 +L 0.1843,6.367149,0.1442,6.370047 +L 0.1442,6.370047,0.1001,6.373916 +L 0.1001,6.373916,-0.001,6.385952 +L -0.001,6.38552,-0.001,6.695901 + +[Θ] 205 +L 1.6178,6.735546,2.7307,6.735546 +L 2.7307,6.735546,2.7589,6.73361 +L 2.7589,6.73361,2.7881,6.728776 +L 2.7881,6.728776,2.8198,6.720074 +L 2.8198,6.720074,2.8535,6.707506 +L 2.8535,6.707506,2.8892,6.692034 +L 2.8892,6.692034,2.9269,6.673659 +L 2.9269,6.673659,2.9675,6.651425 +L 2.9675,6.651425,3.0091,6.625316 +L 3.0091,6.625316,3.1112,6.562469 +L 3.1112,6.562469,3.2083,6.493815 +L 3.2083,6.493815,3.3034,6.422262 +L 3.3034,6.422262,3.3946,6.344911 +L 3.3946,6.344911,3.4808,6.264655 +L 3.4808,6.264655,3.565,6.179568 +L 3.565,6.179568,3.6453,6.08964 +L 3.6453,6.08964,3.7216,5.995854 +L 3.7216,5.995854,4.0001,5.639058 +L 4.0001,5.639058,4.1437,5.39346 +L 4.1437,5.39346,4.1685,5.32288 +L 4.1685,5.32288,4.1938,5.254227 +L 4.1938,5.254227,4.2374,5.118893 +L 4.2374,5.118858,4.2577,5.05311 +L 4.2577,5.05311,4.2755,4.988322 +L 4.2755,4.988322,4.2924,4.925475 +L 4.2924,4.925475,4.3067,4.862627 +L 4.3067,4.862627,4.3439,4.725321 +L 4.3439,4.725321,4.3756,4.595756 +L 4.3756,4.595756,4.4014,4.472957 +L 4.4014,4.472957,4.4232,4.35886 +L 4.4232,4.35886,4.4395,4.251534 +L 4.4395,4.251534,4.4499,4.152908 +L 4.4499,4.152908,4.4559,4.061052 +L 4.4559,4.061052,4.4569,3.97693 +L 4.4569,3.97693,4.4569,3.254644 +L 4.4569,3.254644,4.2646,2.506248 +L 4.2646,2.506248,4.2508,2.447263 +L 4.2508,2.447263,4.2359,2.387314 +L 4.2359,2.387314,4.219,2.328335 +L 4.219,2.328335,4.2002,2.26839 +L 4.2002,2.26839,4.1794,2.209407 +L 4.1794,2.209407,4.1566,2.150424 +L 4.1566,2.150424,4.1328,2.090476 +L 4.1328,2.090476,4.1081,2.031494 +L 4.1081,2.031494,3.5145,1.25409 +L 3.5145,1.25409,3.4407,1.193172 +L 3.4407,1.193172,3.3634,1.132257 +L 3.3634,1.132257,3.2826,1.072309 +L 3.2826,1.072309,3.1994,1.012364 +L 3.1994,1.012364,3.1137,0.953378 +L 3.1137,0.953378,3.025,0.894398 +L 3.025,0.894398,2.9328,0.836382 +L 2.9328,0.836382,2.8382,0.779332 +L 2.8382,0.779332,1.8036,0.779332 +L 1.8036,0.779332,1.7486,0.782237 +L 1.7486,0.782237,1.6832,0.797708 +L 1.6832,0.797708,1.6069,0.824779 +L 1.6069,0.824779,1.5222,0.863457 +L 1.5222,0.863457,1.4256,0.9147 +L 1.4256,0.9147,1.3201,0.976587 +L 1.3201,0.976587,1.2031,1.050072 +L 1.2031,1.050072,1.0763,1.136128 +L 1.0763,1.136128,1.0401,1.168037 +L 1.0401,1.168037,1.0049,1.199945 +L 1.0049,1.199945,0.9717,1.23185 +L 0.9717,1.23185,0.941,1.263758 +L 0.941,1.263758,0.9113,1.295669 +L 0.9113,1.295669,0.884,1.327578 +L 0.884,1.327578,0.8578,1.359486 +L 0.8578,1.359486,0.834,1.39139 +L 0.834,1.39139,0.3707,1.994749 +L 0.3707,1.994749,0.3316,2.094343 +L 0.3316,2.094343,0.2939,2.196834 +L 0.2939,2.196834,0.2573,2.30223 +L 0.2573,2.30223,0.2216,2.41052 +L 0.2216,2.41052,0.1879,2.521719 +L 0.1879,2.521719,0.1552,2.635816 +L 0.1552,2.635816,0.123,2.751845 +L 0.123,2.751845,0.0918,2.87174 +L 0.0918,2.87174,0.07,2.961668 +L 0.07,2.961668,0.0517,3.05449 +L 0.0517,3.05449,0.0353,3.149249 +L 0.0353,3.149249,0.0224,3.24594 +L 0.0224,3.24594,0.0125,3.345532 +L 0.0125,3.345532,0.0056,3.447057 +L 0.0056,3.447057,0.0001,3.550517 +L 0.0001,3.550517,-0.0004,3.656881 +L -0.0004,3.656881,0.0016,3.804816 +L 0.0016,3.804816,0.0061,3.946954 +L 0.0061,3.946954,0.0145,4.084258 +L 0.0145,4.084258,0.0264,4.214788 +L 0.0264,4.214788,0.0413,4.339521 +L 0.0413,4.339521,0.0591,4.458455 +L 0.0591,4.458455,0.0814,4.572548 +L 0.0814,4.572548,0.1067,4.679877 +L 0.1067,4.679877,0.2915,5.356718 +L 0.2915,5.356718,0.4059,5.576211 +L 0.4059,5.576211,0.5407,5.744454 +L 0.5407,5.744454,0.6665,5.897228 +L 0.6665,5.897228,0.7835,6.035495 +L 0.7835,6.035495,0.8925,6.158294 +L 0.8925,6.158294,0.9926,6.265625 +L 0.9926,6.265625,1.0842,6.358448 +L 1.0842,6.358448,1.166,6.435803 +L 1.166,6.435803,1.2393,6.49865 +L 1.2393,6.49865,1.6178,6.735546 +L 1.8393,6.361345,1.6352,6.212445 +L 1.6352,6.212445,1.4469,6.047101 +L 1.4469,6.047101,1.2745,5.862418 +L 1.2745,5.862418,1.1194,5.660332 +L 1.1194,5.660332,0.9787,5.439876 +L 0.9787,5.439876,0.8548,5.20201 +L 0.8548,5.20201,0.7478,4.945782 +L 0.7478,4.945782,0.6556,4.671175 +L 0.6556,4.671175,0.6006,4.43235 +L 0.6006,4.43235,0.563,4.191586 +L 0.563,4.191586,0.5407,3.948889 +L 0.5407,3.948889,0.5338,3.703291 +L 0.5338,3.703291,0.5437,3.454795 +L 0.5437,3.454795,0.5694,3.20533 +L 0.5694,3.20533,0.611,2.952966 +L 0.611,2.952966,0.6695,2.698666 +L 0.6695,2.698666,0.7042,2.57877 +L 0.7042,2.57877,0.7409,2.460804 +L 0.7409,2.460804,0.7785,2.345738 +L 0.7785,2.345738,0.8172,2.232609 +L 0.8172,2.232609,0.8588,2.121414 +L 0.8588,2.121414,0.9004,2.013121 +L 0.9004,2.013121,0.945,1.906759 +L 0.945,1.906759,0.9906,1.802332 +L 0.9906,1.802332,1.048,1.723042 +L 1.048,1.723042,1.1055,1.649558 +L 1.1055,1.649558,1.1635,1.580904 +L 1.1635,1.580904,1.2225,1.519027 +L 1.2225,1.519027,1.2819,1.462946 +L 1.2819,1.462946,1.3414,1.411699 +L 1.3414,1.411699,1.4013,1.366255 +L 1.4013,1.366255,1.4613,1.327578 +L 1.4613,1.327578,1.8249,1.090682 +L 1.8249,1.090682,2.6167,1.08198 +L 2.6167,1.08198,3.0012,1.327578 +L 3.0012,1.327578,3.0656,1.372056 +L 3.0656,1.372056,3.126,1.419435 +L 3.126,1.419435,3.1855,1.470678 +L 3.1855,1.470678,3.2425,1.523861 +L 3.2425,1.523861,3.2975,1.579942 +L 3.2975,1.579942,3.351,1.638921 +L 3.351,1.638921,3.4015,1.700808 +L 3.4015,1.700808,3.4511,1.76559 +L 3.4511,1.76559,3.5085,1.896125 +L 3.5085,1.896125,3.5635,2.036326 +L 3.5635,2.036326,3.6185,2.18523 +L 3.6185,2.18523,3.6725,2.343802 +L 3.6725,2.343802,3.7246,2.512048 +L 3.7246,2.512048,3.7781,2.688992 +L 3.7781,2.688992,3.8296,2.876578 +L 3.8296,2.876578,3.9059,3.174323 +L 3.9059,3.174387,3.9287,3.277847 +L 3.9287,3.277847,3.948,3.38421 +L 3.948,3.38421,3.9624,3.4925 +L 3.9624,3.4925,3.9743,3.603699 +L 3.9743,3.603699,3.9822,3.716831 +L 3.9822,3.716831,3.9862,3.831894 +L 3.9862,3.831894,3.9862,3.948889 +L 3.9862,3.948889,3.6939,5.073415 +L 3.6939,5.073415,3.6542,5.188476 +L 3.6542,5.188476,3.6126,5.297738 +L 3.6126,5.297738,3.57,5.400228 +L 3.57,5.400228,3.5254,5.495956 +L 3.5254,5.495956,3.4808,5.584912 +L 3.4808,5.584912,3.4342,5.667098 +L 3.4342,5.667098,3.3867,5.743487 +L 3.3867,5.743487,3.3371,5.813107 +L 3.3371,5.813107,3.2995,5.858551 +L 3.2995,5.858551,3.2578,5.903031 +L 3.2578,5.903031,3.2123,5.947505 +L 3.2123,5.947505,3.1617,5.99102 +L 3.1617,5.99102,3.1092,6.034531 +L 3.1092,6.034531,3.0507,6.07707 +L 3.0507,6.07707,2.9893,6.119616 +L 2.9893,6.119616,2.9234,6.161195 +L 2.9234,6.161195,2.6023,6.361345 +L 2.6023,6.361345,1.8393,6.361345 +L 1.1888,4.696316,1.4632,4.696316 +L 1.4632,4.696316,1.4632,4.584155 +L 1.4632,4.584155,1.4642,4.476828 +L 1.4642,4.476828,1.4642,4.374329 +L 1.4642,4.374329,1.4682,4.182881 +L 1.4682,4.182884,1.4732,4.008825 +L 1.4742,4.008838,1.4766,3.928584 +L 1.4766,3.928584,3.0151,3.928584 +L 3.0151,3.928584,3.0151,4.696316 +L 3.0151,4.696316,3.2886,4.696316 +L 3.2886,4.696316,3.2886,2.600037 +L 3.2886,2.600037,3.021,2.600037 +L 3.021,2.600037,3.022,2.710264 +L 3.022,2.710264,3.022,2.918156 +L 3.022,2.918156,3.021,3.016782 +L 3.021,3.016782,3.0151,3.200499 +L 3.0151,3.200496,3.0111,3.28558 +L 3.0111,3.28558,3.0061,3.367773 +L 3.0061,3.367773,1.4632,3.367773 +L 1.4632,3.367773,1.4632,2.600037 +L 1.4632,2.600037,1.1888,2.600037 +L 1.1888,2.600037,1.1888,4.696316 + +[Ι] 24 +L -0.0007,6.695901,2.053,6.678494 +L 2.053,6.678494,2.053,6.367149 +L 2.053,6.367149,1.5392,6.367149 +L 1.5392,6.367149,1.2543,6.001653 +L 1.2543,6.001653,1.2543,1.433936 +L 1.2543,1.433936,1.5392,1.068444 +L 1.5392,1.068444,1.5937,1.068444 +L 1.5937,1.068444,1.6522,1.067475 +L 1.6522,1.067475,1.9088,1.059179 +L 1.9088,1.058773,2.053,1.050877 +L 2.053,1.051034,2.053,0.739691 +L 2.053,0.739691,-0.0007,0.75903 +L -0.0007,0.75903,-0.0007,1.068444 +L -0.0007,1.068444,0.5126,1.068444 +L 0.5126,1.068444,0.798,1.433936 +L 0.798,1.433936,0.798,6.001653 +L 0.798,6.001653,0.5126,6.367149 +L 0.5126,6.367149,0.4596,6.365214 +L 0.4596,6.365214,0.3431,6.365214 +L 0.3431,6.365214,0.2807,6.367149 +L 0.2807,6.367149,0.2143,6.370047 +L 0.2143,6.370047,0.1459,6.373916 +L 0.1459,6.373916,-0.0007,6.385668 +L -0.0007,6.38552,-0.0007,6.695901 + +[Κ] 121 +L -0.0001,6.695901,1.6543,6.678494 +L 1.6543,6.678494,1.6543,6.367149 +L 1.6543,6.367149,1.3397,6.367149 +L 1.3397,6.367149,1.0553,6.001653 +L 1.0553,6.001653,1.0553,3.625936 +L 1.0553,3.625936,1.1048,3.625936 +L 1.1048,3.625936,3.1878,6.304298 +L 3.1878,6.304298,3.1878,6.367149 +L 3.1878,6.367149,3.0411,6.363278 +L 3.0411,6.365214,2.8915,6.366182 +L 2.8915,6.367149,2.7408,6.372952 +L 2.7408,6.373916,2.5882,6.384553 +L 2.5882,6.38552,2.5882,6.695901 +L 2.5882,6.695901,4.25,6.678494 +L 4.25,6.678494,4.2441,6.367149 +L 4.2441,6.367149,4.1926,6.365214 +L 4.1926,6.365214,4.142,6.360379 +L 4.142,6.360379,4.0935,6.351678 +L 4.0935,6.351678,4.0469,6.339109 +L 4.0469,6.339109,4.0008,6.323637 +L 4.0008,6.323637,3.9567,6.305264 +L 3.9567,6.305264,3.9141,6.283028 +L 3.9141,6.283028,3.7734,6.19697 +L 3.7734,6.196005,3.6832,6.135089 +L 3.6832,6.135089,3.5985,6.075141 +L 3.5985,6.075141,3.5212,6.016155 +L 3.5212,6.016155,3.4504,5.956206 +L 3.4504,5.956206,3.3869,5.898193 +L 3.3869,5.898193,3.3295,5.840181 +L 3.3295,5.840181,3.2809,5.782164 +L 3.2809,5.782164,2.453,4.722421 +L 2.453,4.722421,2.4555,4.693411 +L 2.4555,4.693411,2.4624,4.65474 +L 2.4624,4.65474,2.4753,4.606393 +L 2.4753,4.606393,2.4926,4.549345 +L 2.4926,4.549345,2.5139,4.483594 +L 2.5139,4.483594,2.5407,4.408174 +L 2.5407,4.408174,2.5724,4.324053 +L 2.5724,4.324053,2.6427,4.146142 +L 2.6427,4.147109,2.6774,4.065888 +L 2.6774,4.065888,2.7131,3.9866 +L 2.7131,3.9866,2.7508,3.910212 +L 2.7508,3.910212,2.7904,3.835761 +L 2.7904,3.835761,2.831,3.76421 +L 2.831,3.76421,2.8726,3.693623 +L 2.8726,3.693623,2.9172,3.625936 +L 2.9172,3.625936,2.9916,3.476066 +L 2.9916,3.475097,3.0252,3.402582 +L 3.0252,3.402582,3.0887,3.264313 +L 3.0887,3.263346,3.1164,3.196628 +L 3.1164,3.196628,3.1422,3.131846 +L 3.1422,3.131846,3.1665,3.068996 +L 3.1665,3.068996,3.1977,2.982939 +L 3.1977,2.982939,3.2571,2.828201 +L 3.2571,2.828232,3.2854,2.758615 +L 3.2854,2.758615,3.3126,2.695764 +L 3.3126,2.695764,3.3384,2.637748 +L 3.3384,2.637748,3.3864,2.539884 +L 3.3869,2.540092,3.4226,2.490774 +L 3.4226,2.490774,3.4573,2.438561 +L 3.4573,2.438561,3.492,2.383449 +L 3.492,2.383449,3.5267,2.325436 +L 3.5267,2.325436,3.5604,2.264519 +L 3.5604,2.264519,3.5931,2.200702 +L 3.5931,2.200702,3.6258,2.133987 +L 3.6258,2.133987,3.6585,2.065334 +L 3.6585,2.065334,3.6837,2.001518 +L 3.6837,2.001518,3.7159,1.931898 +L 3.7159,1.931898,3.7556,1.858413 +L 3.7556,1.858413,3.8026,1.779123 +L 3.8026,1.779123,3.8566,1.695974 +L 3.8566,1.695974,3.9191,1.607982 +L 3.9191,1.607982,3.9884,1.514193 +L 3.9884,1.514193,4.3353,1.06941 +L 4.3353,1.068444,4.3952,1.067475 +L 4.3952,1.067475,4.5087,1.062641 +L 4.5087,1.061675,4.6494,1.052007 +L 4.6494,1.051034,4.6494,0.739691 +L 4.6494,0.739691,2.7884,0.75903 +L 2.7884,0.75903,2.7884,1.068444 +L 2.7884,1.068444,3.3869,1.068444 +L 3.3869,1.068444,3.3869,1.397194 +L 3.3869,1.397194,3.3116,1.503552 +L 3.3116,1.503552,3.2373,1.617653 +L 3.2373,1.617653,3.166,1.738517 +L 3.166,1.738517,3.0951,1.866149 +L 3.0951,1.866149,3.0262,2.001518 +L 3.0262,2.001518,2.9598,2.142689 +L 2.9598,2.142689,2.8944,2.292561 +L 2.8944,2.292561,2.831,2.448235 +L 2.831,2.448235,2.5243,3.234337 +L 2.5243,3.234337,2.4906,3.287516 +L 2.4906,3.287516,2.455,3.341661 +L 2.455,3.341661,2.4168,3.397749 +L 2.4168,3.397749,2.3762,3.455758 +L 2.3762,3.455758,2.287,3.574575 +L 2.288,3.574693,2.1899,3.700393 +L 2.1889,3.699421,2.1909,3.784511 +L 2.1909,3.784514,2.1889,3.87347 +L 2.1889,3.87347,2.1869,3.919882 +L 2.1869,3.919882,2.18,4.015607 +L 2.18,4.015607,2.174,4.064919 +L 2.174,4.064919,1.9397,4.064919 +L 1.9397,4.064919,1.0553,2.931692 +L 1.0553,2.931692,1.0553,1.433936 +L 1.0553,1.433936,1.3397,1.068444 +L 1.3397,1.068444,1.4001,1.067475 +L 1.4001,1.067475,1.5131,1.062641 +L 1.5131,1.061675,1.6543,1.052007 +L 1.6543,1.051034,1.6543,0.739691 +L 1.6543,0.739691,-0.0001,0.75903 +L -0.0001,0.75903,-0.0001,1.068444 +L -0.0001,1.068444,0.3131,1.068444 +L 0.3131,1.068444,0.5984,1.433936 +L 0.5984,1.433936,0.5984,6.001653 +L 0.5984,6.001653,0.3131,6.367149 +L 0.3131,6.367149,0.2556,6.363278 +L 0.2556,6.365214,0.1842,6.366182 +L 0.1842,6.367149,0.099,6.372952 +L 0.099,6.373916,-0.0001,6.38552 +L -0.0001,6.38552,-0.0001,6.695901 + +[Λ] 150 +L 2.195,6.735546,2.3778,6.732728 +L 2.3778,6.732643,2.4353,6.730711 +L 2.4353,6.730711,2.5473,6.724963 +L 2.5473,6.724909,2.5998,6.721038 +L 2.5998,6.721038,2.6523,6.716207 +L 2.6523,6.716207,2.6523,6.638852 +L 2.6523,6.638852,2.6543,6.570199 +L 2.6543,6.570199,2.6582,6.510251 +L 2.6582,6.510251,2.6627,6.459972 +L 2.6627,6.459972,2.6686,6.419359 +L 2.6686,6.419359,2.6751,6.38745 +L 2.6751,6.38745,2.684,6.36425 +L 2.684,6.36425,2.6949,6.35071 +L 2.6949,6.35071,2.7593,6.181502 +L 2.7593,6.181502,2.8213,6.012287 +L 2.8213,6.012287,2.8812,5.842112 +L 2.8812,5.842112,2.9382,5.671938 +L 2.9382,5.671938,2.9932,5.501756 +L 2.9932,5.501756,3.0467,5.331582 +L 3.0467,5.331582,3.0962,5.161404 +L 3.0962,5.161404,3.1438,4.990256 +L 3.1438,4.990256,3.451,4.158708 +L 3.451,4.158708,3.4817,4.072651 +L 3.4817,4.072651,3.5367,3.913122 +L 3.5367,3.91311,3.561,3.83866 +L 3.561,3.83866,3.5838,3.767107 +L 3.5838,3.767107,3.6204,3.63462 +L 3.6214,3.634638,3.6353,3.573726 +L 3.6353,3.573726,3.666,3.461565 +L 3.666,3.461565,3.6972,3.352298 +L 3.6972,3.352298,3.7602,3.146391 +L 3.7602,3.146347,3.7929,3.048691 +L 3.7929,3.048691,3.8261,2.954898 +L 3.8261,2.954898,3.8593,2.864974 +L 3.8593,2.864974,3.893,2.778917 +L 3.893,2.778917,4.2269,1.665032 +L 4.2269,1.665032,4.2561,1.587677 +L 4.2561,1.587677,4.2873,1.513226 +L 4.2873,1.513226,4.321,1.440702 +L 4.321,1.440702,4.3577,1.369153 +L 4.3577,1.369153,4.3973,1.3005 +L 4.3973,1.3005,4.4409,1.233782 +L 4.4409,1.233782,4.4865,1.169 +L 4.4865,1.169,4.5351,1.106152 +L 4.5351,1.106152,4.5628,1.106152 +L 4.5628,1.106152,4.6287,1.104155 +L 4.6287,1.104217,4.6664,1.102282 +L 4.6664,1.102282,4.7977,1.09289 +L 4.7977,1.092617,4.8482,1.088749 +L 4.8482,1.088749,4.8482,0.7774 +L 4.8482,0.7774,3.1864,0.796735 +L 3.1864,0.796735,3.1864,1.106152 +L 3.1864,1.106152,3.5005,1.106152 +L 3.5005,1.106152,3.7785,1.454244 +L 3.7785,1.454244,3.665,1.636988 +L 3.665,1.636988,3.6239,1.794598 +L 3.6239,1.794598,3.5818,1.954138 +L 3.5818,1.954138,3.5362,2.11368 +L 3.5362,2.11368,3.4877,2.274189 +L 3.4877,2.274189,3.4371,2.435666 +L 3.4371,2.435666,3.3846,2.597139 +L 3.3846,2.597139,3.3301,2.760547 +L 3.3301,2.760547,3.2716,2.924922 +L 3.2716,2.924922,3.227,3.092201 +L 3.227,3.092201,3.1775,3.259475 +L 3.1775,3.259475,3.125,3.428687 +L 3.125,3.428687,3.071,3.597896 +L 3.071,3.597896,3.013,3.769043 +L 3.013,3.769043,2.9526,3.940187 +L 2.9526,3.940187,2.8891,4.112298 +L 2.8891,4.112298,2.8227,4.285375 +L 2.8227,4.285375,2.7479,4.501034 +L 2.7479,4.500997,2.7127,4.606393 +L 2.7127,4.606393,2.68,4.710821 +L 2.68,4.710821,2.6493,4.812346 +L 2.6493,4.812346,2.6206,4.912901 +L 2.6206,4.912901,2.5483,5.176924 +L 2.5478,5.176875,2.5284,5.243593 +L 2.5284,5.243593,2.5081,5.311274 +L 2.5081,5.311274,2.4447,5.508612 +L 2.4442,5.508526,2.4224,5.573309 +L 2.4224,5.573309,2.3986,5.637124 +L 2.3986,5.637124,2.3986,5.715446 +L 2.3986,5.715446,2.3956,5.843092 +L 2.3952,5.843079,2.3937,5.869187 +L 2.3937,5.869187,2.3917,5.893356 +L 2.3917,5.893356,2.2584,5.893356 +L 2.2584,5.893356,2.2584,5.832445 +L 2.2584,5.832445,2.2559,5.770558 +L 2.2559,5.770558,2.25,5.710609 +L 2.25,5.710609,2.2401,5.649694 +L 2.2401,5.649694,2.2287,5.58878 +L 2.2287,5.58878,2.2133,5.528831 +L 2.2133,5.528831,2.195,5.468879 +L 2.195,5.468879,2.1737,5.409903 +L 2.1737,5.409903,1.7109,3.756474 +L 1.7109,3.756474,1.6158,3.480981 +L 1.6158,3.4809,1.5722,3.3494 +L 1.5722,3.3494,1.5315,3.221766 +L 1.5315,3.221766,1.4939,3.097999 +L 1.4939,3.097999,1.4592,2.978104 +L 1.4592,2.978104,1.426,2.862075 +L 1.426,2.862075,1.3963,2.750876 +L 1.3963,2.750876,1.3601,2.635816 +L 1.3601,2.635816,1.3244,2.523655 +L 1.3244,2.523655,1.2878,2.414391 +L 1.2878,2.414391,1.2501,2.308033 +L 1.2501,2.308033,1.2125,2.204569 +L 1.2125,2.204569,1.1748,2.104011 +L 1.1748,2.104011,1.1362,2.005382 +L 1.1362,2.005382,1.0965,1.91063 +L 1.0965,1.91063,1.0653,1.829407 +L 1.0653,1.829407,1.0341,1.754953 +L 1.0341,1.754953,1.0054,1.688235 +L 1.0054,1.688235,0.9776,1.627321 +L 0.9776,1.627321,0.9504,1.574138 +L 0.9504,1.574138,0.9241,1.526759 +L 0.9241,1.526759,0.8993,1.487119 +L 0.8993,1.487119,0.8755,1.454244 +L 0.8755,1.454244,1.1466,1.106152 +L 1.1466,1.106152,1.2016,1.106152 +L 1.2016,1.106152,1.3185,1.104168 +L 1.3185,1.104217,1.3819,1.102282 +L 1.3819,1.102282,1.5157,1.096358 +L 1.5157,1.096485,1.6604,1.088591 +L 1.6604,1.088749,1.6604,0.7774 +L 1.6604,0.7774,-0.0009,0.796735 +L -0.0009,0.796735,-0.0009,1.106152 +L -0.0009,1.106152,0.3122,1.106152 +L 0.3122,1.106152,0.3603,1.167064 +L 0.3603,1.167064,0.4058,1.229918 +L 0.4058,1.229918,0.4485,1.293734 +L 0.4485,1.293734,0.4871,1.360452 +L 0.4871,1.360452,0.5228,1.429102 +L 0.5228,1.429102,0.556,1.498718 +L 0.556,1.498718,0.5852,1.57124 +L 0.5852,1.57124,0.612,1.64569 +L 0.612,1.64569,1.1466,3.062226 +L 1.1466,3.062226,1.1862,3.208232 +L 1.1862,3.208232,1.2258,3.35037 +L 1.2258,3.35037,1.267,3.48767 +L 1.267,3.48767,1.3071,3.621106 +L 1.3071,3.621106,1.3487,3.750671 +L 1.3487,3.750671,1.3903,3.875405 +L 1.3903,3.875405,1.432,3.996268 +L 1.432,3.996268,1.4741,4.113268 +L 1.4741,4.113268,1.9309,5.775391 +L 1.9309,5.775391,2.1519,6.35071 +L 2.1519,6.35071,2.195,6.579872 +L 2.195,6.579872,2.195,6.735546 + +[Μ] 173 +L -0.0008,6.735546,1.1566,6.735546 +L 1.1566,6.735546,1.2215,6.638852 +L 1.2215,6.638852,1.2894,6.52282 +L 1.2894,6.52282,1.3617,6.38745 +L 1.3617,6.38745,1.4371,6.231777 +L 1.4371,6.231777,1.5163,6.057734 +L 1.5163,6.057734,1.5996,5.864353 +L 1.5996,5.864353,1.6868,5.650664 +L 1.6868,5.650664,1.8602,5.206797 +L 1.8602,5.206848,1.9395,4.998958 +L 1.9395,4.998958,2.0158,4.793007 +L 2.0158,4.793007,2.0861,4.590925 +L 2.0861,4.590925,2.1525,4.390771 +L 2.1525,4.390771,2.2144,4.194488 +L 2.2144,4.194488,2.2724,4.000136 +L 2.2724,4.000136,2.3269,3.808687 +L 2.3269,3.808687,2.4012,3.590256 +L 2.4012,3.590163,2.4389,3.483799 +L 2.4389,3.483799,2.4765,3.379376 +L 2.4765,3.379376,2.5514,3.178358 +L 2.5509,3.178256,2.862,2.382533 +L 2.861,2.38248,2.863,2.30706 +L 2.863,2.30706,2.864,2.234545 +L 2.864,2.234545,2.866,2.16493 +L 2.866,2.16493,2.868,2.037293 +L 2.868,2.037293,2.868,1.923196 +L 2.868,1.923196,2.869,1.870986 +L 2.869,1.870986,2.9185,1.870986 +L 2.9185,1.870986,2.9859,1.965741 +L 2.9859,1.965741,3.0528,2.077906 +L 3.0528,2.077906,3.1177,2.206504 +L 3.1177,2.206504,3.1821,2.350576 +L 3.1821,2.350576,3.2465,2.512048 +L 3.2465,2.512048,3.3089,2.689965 +L 3.3089,2.689965,3.3714,2.884312 +L 3.3714,2.884312,3.4318,3.09607 +L 3.4318,3.09607,3.4883,3.313621 +L 3.4883,3.313621,3.5458,3.529242 +L 3.5458,3.529242,3.6062,3.742936 +L 3.6062,3.742936,3.6677,3.954692 +L 3.6677,3.954692,3.7306,4.163545 +L 3.7306,4.163545,3.7965,4.370465 +L 3.7965,4.370465,3.8629,4.574481 +L 3.8629,4.574481,3.9312,4.776571 +L 3.9312,4.776571,4.2741,6.082873 +L 4.2741,6.082873,4.3068,6.166994 +L 4.3068,6.166994,4.3336,6.250153 +L 4.3336,6.250153,4.3554,6.332343 +L 4.3554,6.332343,4.3742,6.413561 +L 4.3742,6.413561,4.3871,6.494779 +L 4.3871,6.494779,4.397,6.57407 +L 4.397,6.57407,4.4019,6.653356 +L 4.4019,6.653356,4.4029,6.730711 +L 4.4029,6.730711,5.6644,6.713304 +L 5.6644,6.713304,5.6644,6.401956 +L 5.6644,6.401956,5.3513,6.401956 +L 5.3513,6.401956,5.0659,6.036464 +L 5.0659,6.036464,5.0659,1.459078 +L 5.0659,1.459078,5.3513,1.084878 +L 5.3513,1.084878,5.379,1.083915 +L 5.379,1.083915,5.4097,1.083915 +L 5.4097,1.083915,5.5237,1.077642 +L 5.5237,1.078112,5.5678,1.074241 +L 5.5678,1.074241,5.6148,1.071343 +L 5.6148,1.071343,5.6644,1.067475 +L 5.6644,1.067475,5.6644,0.748393 +L 5.6644,0.748393,3.8034,0.767732 +L 3.8034,0.767732,3.8034,1.084878 +L 3.8034,1.084878,4.3167,1.084878 +L 4.3167,1.084878,4.6021,1.459078 +L 4.6021,1.459078,4.5952,5.634226 +L 4.5952,5.634226,4.4663,5.634226 +L 4.4663,5.634226,4.4663,5.578145 +L 4.4663,5.578145,4.4654,5.522064 +L 4.4654,5.522064,4.4614,5.465984 +L 4.4614,5.465984,4.454,5.410868 +L 4.454,5.410868,4.4445,5.356717 +L 4.4445,5.356717,4.4327,5.302572 +L 4.4327,5.302572,4.4188,5.249389 +L 4.4188,5.249389,4.4029,5.196213 +L 4.4029,5.196213,4.3747,5.11499 +L 4.3747,5.11499,4.3484,5.037635 +L 4.3484,5.037635,4.3246,4.962216 +L 4.3246,4.962216,4.3028,4.890667 +L 4.3028,4.890667,4.282,4.821048 +L 4.282,4.821048,4.2464,4.691474 +L 4.2464,4.691483,4.2305,4.630568 +L 4.2305,4.630568,4.1567,4.400441 +L 4.1567,4.400441,4.0848,4.176111 +L 4.0848,4.176111,4.016,3.956624 +L 4.016,3.956624,3.9511,3.743902 +L 3.9511,3.743902,3.8891,3.536981 +L 3.8891,3.536981,3.8312,3.334895 +L 3.8312,3.334895,3.7762,3.139579 +L 3.7762,3.139579,3.7246,2.950064 +L 3.7246,2.950064,3.6885,2.803093 +L 3.6885,2.803093,3.6513,2.661922 +L 3.6513,2.661922,3.6132,2.524618 +L 3.6132,2.524618,3.5735,2.392154 +L 3.5735,2.392154,3.5324,2.264519 +L 3.5324,2.264519,3.4908,2.140753 +L 3.4908,2.140753,3.4472,2.021825 +L 3.4472,2.021825,3.4041,1.907728 +L 3.4041,1.907728,3.0761,1.067475 +L 3.0761,1.067475,3.0741,0.987224 +L 3.0741,0.987222,3.0686,0.907925 +L 3.0681,0.907934,3.0642,0.868291 +L 3.0642,0.868291,3.0592,0.827681 +L 3.0592,0.827681,3.0543,0.788033 +L 3.0543,0.788033,3.0473,0.748393 +L 3.0473,0.748393,2.9185,0.748393 +L 2.9185,0.748393,2.8605,0.83445 +L 2.8605,0.83445,2.8036,0.926307 +L 2.8036,0.926307,2.7471,1.024929 +L 2.7471,1.024929,2.6921,1.12839 +L 2.6921,1.12839,2.6381,1.23862 +L 2.6381,1.23862,2.5856,1.355618 +L 2.5856,1.355618,2.535,1.477444 +L 2.535,1.477444,2.4835,1.60605 +L 2.4835,1.60605,2.4106,1.793631 +L 2.4106,1.793631,2.3398,1.978311 +L 2.3398,1.978311,2.2734,2.160092 +L 2.2734,2.160092,2.211,2.338005 +L 2.211,2.338005,2.1505,2.513018 +L 2.1505,2.513018,2.095,2.684159 +L 2.095,2.684159,2.0415,2.85337 +L 2.0415,2.85337,1.991,3.018715 +L 1.991,3.018715,1.9514,3.15408 +L 1.9514,3.15408,1.9097,3.287516 +L 1.9097,3.287516,1.8661,3.420952 +L 1.8661,3.420952,1.822,3.553421 +L 1.822,3.553421,1.776,3.683953 +L 1.776,3.683953,1.7284,3.814486 +L 1.7284,3.814486,1.6788,3.943086 +L 1.6788,3.943086,1.6278,4.070722 +L 1.6278,4.070722,1.55,4.277642 +L 1.55,4.277642,1.4767,4.47779 +L 1.4767,4.47779,1.4083,4.673111 +L 1.4083,4.673111,1.3444,4.861661 +L 1.3444,4.861661,1.2854,5.044407 +L 1.2854,5.044407,1.2299,5.220386 +L 1.2299,5.220386,1.1814,5.391527 +L 1.1814,5.391527,1.1358,5.555905 +L 1.1358,5.555905,1.1066,5.64003 +L 1.1066,5.64003,1.0813,5.722216 +L 1.0813,5.722216,1.0595,5.803435 +L 1.0595,5.803435,1.0407,5.881756 +L 1.0407,5.881756,1.0258,5.957176 +L 1.0258,5.957176,1.0134,6.031629 +L 1.0134,6.031629,1.005,6.104147 +L 1.005,6.104147,1.0001,6.173767 +L 1.0001,6.173767,0.8712,6.173767 +L 0.8712,6.173767,0.8712,1.496783 +L 0.8712,1.496783,1.1566,1.131295 +L 1.1566,1.131295,1.2121,1.131295 +L 1.2121,1.131295,1.2696,1.130322 +L 1.2696,1.130322,1.5262,1.122064 +L 1.5262,1.12162,1.6699,1.113734 +L 1.6699,1.113888,1.6699,0.802538 +L 1.6699,0.802538,-0.0008,0.821877 +L -0.0008,0.821877,-0.0008,1.131295 +L -0.0008,1.131295,0.3123,1.131295 +L 0.3123,1.131295,0.5977,1.496783 +L 0.5977,1.496783,0.5977,6.064504 +L 0.5977,6.064504,0.3123,6.419359 +L 0.3123,6.419359,0.2856,6.417426 +L 0.2856,6.417426,0.2222,6.417426 +L 0.2222,6.417426,0.1835,6.419359 +L 0.1835,6.419359,0.1434,6.422262 +L 0.1434,6.422262,0.0993,6.426128 +L 0.0993,6.426128,0.0507,6.430964 +L 0.0507,6.430964,-0.0008,6.436767 +L -0.0008,6.436767,-0.0008,6.735546 + +[Ν] 162 +L -0.0002,6.735546,1.1513,6.735546 +L 1.1513,6.735546,1.1989,6.673659 +L 1.1989,6.673659,1.2445,6.610812 +L 1.2445,6.610812,1.2881,6.546997 +L 1.2881,6.546997,1.3287,6.483178 +L 1.3287,6.483178,1.3678,6.418396 +L 1.3678,6.418396,1.406,6.351678 +L 1.406,6.351678,1.4397,6.284964 +L 1.4397,6.284964,1.4744,6.218245 +L 1.4744,6.218245,1.4912,6.169896 +L 1.4912,6.169896,1.5259,6.083808 +L 1.5259,6.083843,1.5422,6.046131 +L 1.5422,6.046131,1.5581,6.011324 +L 1.5581,6.011324,1.5883,5.952206 +L 1.5883,5.952342,1.6022,5.928169 +L 1.6022,5.928169,1.6438,5.869187 +L 1.6438,5.869187,1.6844,5.805367 +L 1.6844,5.805367,1.7241,5.73672 +L 1.7241,5.73672,1.7627,5.665168 +L 1.7627,5.665168,1.7999,5.58878 +L 1.7999,5.58878,1.838,5.507556 +L 1.838,5.507556,1.8747,5.422469 +L 1.8747,5.422469,1.9114,5.333513 +L 1.9114,5.333513,1.9346,5.289036 +L 1.9346,5.289036,1.9579,5.246491 +L 1.9579,5.246491,1.9807,5.206848 +L 1.9807,5.206848,2.0283,5.133233 +L 2.0283,5.133363,2.0511,5.100488 +L 2.0511,5.100488,2.0749,5.069547 +L 2.0749,5.069547,2.0977,5.041506 +L 2.0977,5.041506,2.1289,4.979619 +L 2.1289,4.979619,2.1581,4.923538 +L 2.1581,4.923538,2.277,4.685822 +L 2.277,4.685683,2.3127,4.591916 +L 2.3127,4.59189,2.3285,4.550312 +L 2.3285,4.550312,2.3454,4.511634 +L 2.3454,4.511634,2.3612,4.476828 +L 2.3612,4.476828,2.3761,4.445885 +L 2.3761,4.445885,2.392,4.417844 +L 2.392,4.417844,2.4063,4.393672 +L 2.4063,4.393672,2.4504,4.32792 +L 2.4504,4.32792,2.494,4.258304 +L 2.494,4.258304,2.5371,4.184819 +L 2.5371,4.184819,2.5783,4.107464 +L 2.5783,4.107464,2.6189,4.027211 +L 2.6189,4.027211,2.6585,3.94212 +L 2.6585,3.94212,2.6982,3.854131 +L 2.6982,3.854131,2.7358,3.762271 +L 2.7358,3.762271,2.9518,3.214032 +L 2.9518,3.214032,3.1094,2.977136 +L 3.1094,2.977136,3.1431,2.913322 +L 3.1431,2.913322,3.1753,2.850472 +L 3.1753,2.850472,3.2065,2.786656 +L 3.2065,2.786656,3.2348,2.723805 +L 3.2348,2.723805,3.263,2.660956 +L 3.263,2.660956,3.2898,2.599074 +L 3.2898,2.599074,3.3145,2.536223 +L 3.3145,2.536223,3.3393,2.47434 +L 3.3393,2.47434,3.367,2.427931 +L 3.367,2.427931,3.3968,2.38248 +L 3.3968,2.38248,3.4245,2.33994 +L 3.4245,2.33994,3.4528,2.298359 +L 3.4528,2.298359,3.48,2.259681 +L 3.48,2.259681,3.5355,2.187312 +L 3.5345,2.187166,3.5613,2.154289 +L 3.5613,2.154289,3.6113,2.154289 +L 3.6113,2.154289,3.6113,6.064504 +L 3.6113,6.064504,3.3259,6.419359 +L 3.3259,6.419359,3.2997,6.417426 +L 3.2997,6.417426,3.2348,6.417426 +L 3.2348,6.417426,3.1976,6.419359 +L 3.1976,6.419359,3.157,6.422262 +L 3.157,6.422262,3.1119,6.426128 +L 3.1119,6.426128,3.0638,6.430964 +L 3.0638,6.430964,3.0128,6.436767 +L 3.0128,6.436767,3.0128,6.585668 +L 3.0128,6.585668,3.0331,6.735546 +L 3.0331,6.735546,4.4838,6.718139 +L 4.4838,6.718139,4.4838,6.419359 +L 4.4838,6.419359,4.1707,6.419359 +L 4.1707,6.419359,3.8853,6.064504 +L 3.8853,6.064504,3.8853,0.546304 +L 3.8853,0.546304,3.6113,0.546304 +L 3.6113,0.546304,3.6113,0.948547 +L 3.6113,0.948547,3.5464,1.037499 +L 3.5464,1.037499,3.484,1.130322 +L 3.484,1.130322,3.4215,1.22605 +L 3.4215,1.22605,3.3621,1.325642 +L 3.3621,1.325642,3.3056,1.430068 +L 3.3056,1.430068,3.2506,1.537396 +L 3.2506,1.537396,3.1976,1.647622 +L 3.1976,1.647622,3.1471,1.762689 +L 3.1471,1.762689,3.1213,1.805232 +L 3.1213,1.805232,3.0965,1.845841 +L 3.0965,1.845841,3.0717,1.884518 +L 3.0717,1.884518,3.046,1.92223 +L 3.046,1.92223,3.0212,1.958009 +L 3.0212,1.958009,2.9717,2.02464 +L 2.9717,2.024721,2.9469,2.054696 +L 2.9469,2.054696,2.8978,2.122383 +L 2.8978,2.122383,2.8503,2.190068 +L 2.8503,2.190068,2.8052,2.259681 +L 2.8052,2.259681,2.7596,2.331233 +L 2.7596,2.331233,2.719,2.403754 +L 2.719,2.403754,2.6783,2.477238 +L 2.6783,2.477238,2.6397,2.552658 +L 2.6397,2.552658,2.603,2.629046 +L 2.603,2.629046,2.5465,2.779886 +L 2.5465,2.779886,2.4891,2.926858 +L 2.4891,2.926858,2.4276,3.068023 +L 2.4276,3.068023,2.3662,3.20533 +L 2.3662,3.20533,2.3008,3.337797 +L 2.3008,3.337797,2.2344,3.465429 +L 2.2344,3.465429,2.165,3.589194 +L 2.165,3.589194,2.0947,3.708129 +L 2.0947,3.708129,1.8162,4.383031 +L 1.8162,4.383031,1.7919,4.448787 +L 1.7919,4.448787,1.7677,4.510668 +L 1.7677,4.510668,1.7404,4.56965 +L 1.7404,4.56965,1.7112,4.625731 +L 1.7112,4.625731,1.681,4.679877 +L 1.681,4.679877,1.6493,4.73016 +L 1.6493,4.73016,1.6151,4.777536 +L 1.6151,4.777536,1.5804,4.822014 +L 1.5804,4.822014,1.5541,4.873261 +L 1.5541,4.873261,1.5269,4.925474 +L 1.5269,4.925474,1.4748,5.034554 +L 1.4748,5.034737,1.4496,5.091787 +L 1.4496,5.091787,1.4238,5.149797 +L 1.4238,5.149797,1.3733,5.270521 +L 1.3733,5.270663,1.3505,5.319012 +L 1.3505,5.319012,1.3208,5.373158 +L 1.3208,5.373158,1.2851,5.432137 +L 1.2851,5.432137,1.2435,5.496925 +L 1.2435,5.496925,1.1934,5.566542 +L 1.1934,5.566542,1.1384,5.641962 +L 1.1384,5.641962,1.077,5.722216 +L 1.077,5.722216,1.0076,5.808272 +L 1.0076,5.808272,1.0017,6.173767 +L 1.0017,6.173767,0.8729,6.173767 +L 0.8729,6.173767,0.8729,1.496783 +L 0.8729,1.496783,1.1577,1.131295 +L 1.1577,1.131295,1.186,1.131295 +L 1.186,1.131295,1.2177,1.130322 +L 1.2177,1.130322,1.3753,1.121636 +L 1.3753,1.12162,1.4724,1.113641 +L 1.4724,1.113888,1.4724,0.959181 +L 1.4724,0.959181,1.4506,0.802538 +L 1.4506,0.802538,-0.0002,0.821877 +L -0.0002,0.821877,-0.0002,1.131295 +L -0.0002,1.131295,0.314,1.131295 +L 0.314,1.131295,0.5989,1.496783 +L 0.5989,1.496783,0.5989,6.064504 +L 0.5989,6.064504,0.314,6.419359 +L 0.314,6.419359,0.2862,6.417426 +L 0.2862,6.417426,0.2228,6.417426 +L 0.2228,6.417426,0.1851,6.419359 +L 0.1851,6.419359,0.1435,6.422262 +L 0.1435,6.422262,0.0994,6.426128 +L 0.0994,6.426128,0.0519,6.430964 +L 0.0519,6.430964,-0.0002,6.436767 +L -0.0002,6.436767,-0.0002,6.735546 + +[Ξ] 86 +L 0.4068,6.45417,3.883,6.45417 +L 3.883,6.45417,3.775,5.928169 +L 3.775,5.928169,3.7522,5.862418 +L 3.7522,5.862418,3.7314,5.796666 +L 3.7314,5.796666,3.714,5.730917 +L 3.714,5.730917,3.7006,5.665168 +L 3.7006,5.665168,3.6902,5.599417 +L 3.6902,5.599417,3.6823,5.532699 +L 3.6823,5.532699,3.6778,5.466949 +L 3.6778,5.466949,3.6759,5.401198 +L 3.6759,5.401198,3.6759,5.125628 +L 3.6759,5.125628,3.4024,5.125628 +L 3.4024,5.125628,3.4024,5.893356 +L 3.4024,5.893356,0.765,5.893356 +L 0.765,5.893356,0.4811,5.527865 +L 0.4811,5.527865,0.4811,5.125628 +L 0.4811,5.125628,0.2061,5.125628 +L 0.2061,5.125628,0.2061,5.67387 +L 0.2061,5.67387,0.4068,6.199872 +L 0.4068,6.199872,0.4068,6.45417 +L 0.817,4.676978,1.0816,4.676978 +L 1.0816,4.676978,1.0816,4.116166 +L 1.0816,4.116166,3.0179,4.116166 +L 3.0179,4.116166,3.0179,4.627667 +L 3.0179,4.627667,3.282,4.618961 +L 3.282,4.618961,3.282,4.5184 +L 3.282,4.5184,3.2805,4.420747 +L 3.2805,4.420747,3.2745,4.32695 +L 3.2745,4.32695,3.2661,4.237029 +L 3.2661,4.237029,3.2547,4.150976 +L 3.2547,4.150976,3.2408,4.068787 +L 3.2408,4.068787,3.223,3.989499 +L 3.223,3.989499,3.1754,3.801806 +L 3.1749,3.801918,3.1507,3.690719 +L 3.1507,3.690719,3.1308,3.580493 +L 3.1308,3.580493,3.113,3.471233 +L 3.113,3.471233,3.0996,3.362935 +L 3.0996,3.362935,3.0902,3.255611 +L 3.0902,3.255611,3.0838,3.149249 +L 3.0838,3.149249,3.0823,3.042887 +L 3.0823,3.042887,2.8088,3.042887 +L 2.8088,3.042887,2.8088,3.554388 +L 2.8088,3.554388,0.8913,3.554388 +L 0.8913,3.554388,0.8913,3.042887 +L 0.8913,3.042887,0.6178,3.053524 +L 0.6178,3.053524,0.6183,3.152151 +L 0.6183,3.152151,0.6223,3.248838 +L 0.6223,3.248838,0.6287,3.342634 +L 0.6287,3.342634,0.6367,3.433521 +L 0.6367,3.433521,0.6485,3.52151 +L 0.6485,3.52151,0.6619,3.606598 +L 0.6619,3.606598,0.6773,3.689756 +L 0.6773,3.689756,0.6961,3.770009 +L 0.6961,3.770009,0.7268,3.886039 +L 0.7268,3.886039,0.7516,4.002068 +L 0.7516,4.002068,0.7729,4.116166 +L 0.7729,4.116166,0.7903,4.230263 +L 0.7903,4.230263,0.8041,4.343392 +L 0.8041,4.343392,0.8125,4.455553 +L 0.8125,4.455553,0.817,4.566751 +L 0.817,4.566751,0.817,4.676978 +L 0.2061,2.357344,0.4811,2.357344 +L 0.4811,2.357344,0.4811,1.590579 +L 0.4811,1.590579,3.117,1.590579 +L 3.117,1.590579,3.4024,1.956071 +L 3.4024,1.956071,3.4024,2.357344 +L 3.4024,2.357344,3.6664,2.357344 +L 3.6664,2.357344,3.6585,1.791695 +L 3.6585,1.791695,3.5163,1.432001 +L 3.5163,1.432001,3.5054,1.406865 +L 3.5054,1.406865,3.4965,1.373984 +L 3.4965,1.373984,3.4886,1.334344 +L 3.4886,1.334344,3.4826,1.28793 +L 3.4826,1.28793,3.4762,1.233782 +L 3.4762,1.233782,3.4717,1.17287 +L 3.4717,1.17287,3.4658,1.02882 +L 3.4658,1.028797,-0.0005,1.028797 +L -0.0005,1.028797,0.107,1.563501 +L 0.107,1.563501,0.1323,1.625388 +L 0.1323,1.625388,0.1531,1.688235 +L 0.1531,1.688235,0.1704,1.752055 +L 0.1704,1.752055,0.1858,1.816838 +L 0.1858,1.816838,0.1957,1.882583 +L 0.1957,1.882583,0.2036,1.948338 +L 0.2036,1.948338,0.2061,2.016019 +L 0.2061,2.016019,0.2061,2.357344 + +[Ο] 190 +L 1.9116,6.735546,2.3536,6.735546 +L 2.3536,6.735546,2.4002,6.734578 +L 2.4002,6.734578,2.4428,6.732643 +L 2.4428,6.732643,2.4844,6.728776 +L 2.4844,6.728776,2.5206,6.723941 +L 2.5206,6.723941,2.5557,6.717171 +L 2.5557,6.717171,2.5865,6.709437 +L 2.5865,6.709437,2.6142,6.700735 +L 2.6142,6.700735,2.639,6.690102 +L 2.639,6.690102,3.3227,6.396152 +L 3.3227,6.396152,3.3792,6.355545 +L 3.3792,6.355545,3.4288,6.317835 +L 3.4288,6.317835,3.4743,6.28206 +L 3.4743,6.28206,3.512,6.248218 +L 3.512,6.248218,3.5447,6.217275 +L 3.5447,6.217275,3.5715,6.189238 +L 3.5715,6.189238,3.5942,6.163127 +L 3.5942,6.163127,3.6081,6.138954 +L 3.6081,6.138954,3.6993,6.013257 +L 3.6993,6.013257,3.789,5.874987 +L 3.789,5.874987,3.8767,5.725114 +L 3.8767,5.725114,3.9649,5.562674 +L 3.9649,5.562674,4.0521,5.387663 +L 4.0521,5.387663,4.1383,5.200081 +L 4.1383,5.200081,4.2235,4.999927 +L 4.2235,4.999927,4.3077,4.78817 +L 4.3077,4.78817,4.4509,4.421709 +L 4.4509,4.421709,4.4509,3.081564 +L 4.4509,3.081564,4.0372,1.99668 +L 4.0372,1.99668,4.0075,1.933833 +L 4.0075,1.933833,3.9718,1.866149 +L 3.9718,1.866149,3.9282,1.791695 +L 3.9282,1.791695,3.8786,1.712412 +L 3.8786,1.712412,3.8202,1.627321 +L 3.8202,1.627321,3.7538,1.535461 +L 3.7538,1.535461,3.6819,1.43877 +L 3.6819,1.43877,3.6022,1.336279 +L 3.6022,1.336279,3.4089,1.151596 +L 3.4089,1.151596,3.3564,1.118722 +L 3.3564,1.118722,3.3029,1.086814 +L 3.3029,1.086814,3.2504,1.057807 +L 3.2504,1.057807,3.1984,1.030733 +L 3.1984,1.030733,3.1468,1.005594 +L 3.1468,1.005594,3.0958,0.981418 +L 3.0958,0.981418,3.0453,0.960144 +L 3.0453,0.960144,2.9957,0.941778 +L 2.9957,0.941778,2.5458,0.748393 +L 2.5458,0.748393,2.0766,0.748393 +L 2.0766,0.748393,2.0256,0.751295 +L 2.0256,0.751295,1.9736,0.758064 +L 1.9736,0.758064,1.9206,0.769664 +L 1.9206,0.769664,1.8651,0.7832 +L 1.8651,0.7832,1.8076,0.801576 +L 1.8076,0.801576,1.7501,0.823813 +L 1.7501,0.823813,1.6897,0.848952 +L 1.6897,0.848952,1.6044,0.882793 +L 1.6044,0.882793,1.5177,0.918571 +L 1.5177,0.918571,1.43,0.957249 +L 1.43,0.957249,1.3433,0.998822 +L 1.3433,0.998822,1.2537,1.042333 +L 1.2537,1.042333,1.165,1.088749 +L 1.165,1.088749,1.0753,1.138061 +L 1.0753,1.138061,0.9841,1.189308 +L 0.9841,1.189308,0.5491,1.739482 +L 0.5491,1.739482,0.5214,1.797499 +L 0.5214,1.797499,0.4956,1.852611 +L 0.4956,1.852611,0.4094,2.036156 +L 0.4104,2.036326,0.3787,2.108068 +L 0.3777,2.107879,0.0071,3.070927 +L 0.0071,3.070927,-0.0004,4.38497 +L -0.0004,4.38497,0.392,5.412798 +L 0.392,5.412798,0.4232,5.483387 +L 0.4232,5.483387,0.4594,5.555905 +L 0.4594,5.555905,0.5005,5.632291 +L 0.5005,5.632291,0.5471,5.711581 +L 0.5471,5.711581,0.5981,5.792801 +L 0.5981,5.792801,0.6551,5.877888 +L 0.6551,5.877888,0.7171,5.964908 +L 0.7171,5.964908,0.7844,6.055802 +L 0.7844,6.055802,0.8479,6.126387 +L 0.8479,6.126387,0.9217,6.196005 +L 0.9217,6.196005,1.0059,6.263689 +L 1.0059,6.263689,1.0981,6.331369 +L 1.0981,6.331369,1.2006,6.397125 +L 1.2006,6.397125,1.3141,6.461908 +L 1.3141,6.461908,1.437,6.525723 +L 1.437,6.525723,1.5693,6.587606 +L 1.5693,6.587606,1.9116,6.735546 +L 2.1326,6.361345,1.4469,6.071273 +L 1.4469,6.071273,1.3894,6.036464 +L 1.3894,6.036464,1.3329,5.997789 +L 1.3329,5.997789,1.2794,5.957176 +L 1.2794,5.957176,1.2269,5.912695 +L 1.2269,5.912695,1.1754,5.866286 +L 1.1754,5.866286,1.1258,5.816974 +L 1.1258,5.816974,1.0802,5.764761 +L 1.0802,5.764761,1.0342,5.709646 +L 1.0342,5.709646,0.993,5.627457 +L 0.993,5.627457,0.9524,5.539468 +L 0.9524,5.539468,0.9113,5.446645 +L 0.9113,5.446645,0.8716,5.348985 +L 0.8716,5.348985,0.8315,5.245525 +L 0.8315,5.245525,0.7919,5.136265 +L 0.7919,5.136265,0.7522,5.022167 +L 0.7522,5.022167,0.7131,4.90227 +L 0.7131,4.90227,0.4837,4.031075 +L 0.4837,4.031075,0.4708,3.859934 +L 0.4708,3.859934,0.4738,3.757437 +L 0.4738,3.757437,0.4832,3.64334 +L 0.4832,3.64334,0.4991,3.517646 +L 0.4991,3.517646,0.5204,3.382274 +L 0.5204,3.382274,0.5481,3.234337 +L 0.5481,3.234337,0.5828,3.076728 +L 0.5828,3.076728,0.6234,2.907519 +L 0.6234,2.907519,0.67,2.72767 +L 0.67,2.72767,0.729,2.536223 +L 0.729,2.536223,0.7889,2.357344 +L 0.7889,2.357344,0.8523,2.192 +L 0.8523,2.192,0.9187,2.038262 +L 0.9187,2.038262,0.9861,1.897091 +L 0.9861,1.897091,1.0565,1.767526 +L 1.0565,1.767526,1.1298,1.651493 +L 1.1298,1.651493,1.2051,1.548033 +L 1.2051,1.548033,1.2715,1.510325 +L 1.2715,1.510325,1.3369,1.474549 +L 1.3369,1.474549,1.4033,1.440702 +L 1.4033,1.440702,1.4702,1.407831 +L 1.4702,1.407831,1.5381,1.376889 +L 1.5381,1.376889,1.6049,1.347879 +L 1.6049,1.347879,1.6723,1.320808 +L 1.6723,1.320808,1.7402,1.294704 +L 1.7402,1.294704,1.8324,1.255056 +L 1.8324,1.255056,1.9181,1.219284 +L 1.9181,1.219284,1.9998,1.190274 +L 1.9998,1.190274,2.0751,1.166101 +L 2.0751,1.166101,2.1455,1.146762 +L 2.1455,1.146762,2.2114,1.133227 +L 2.2114,1.133227,2.2704,1.125491 +L 2.2704,1.125491,2.3258,1.12259 +L 2.3258,1.12259,3.0096,1.411699 +L 3.0096,1.411699,3.07,1.441675 +L 3.07,1.441675,3.1275,1.476482 +L 3.1275,1.476482,3.185,1.517092 +L 3.185,1.517092,3.2405,1.562538 +L 3.2405,1.562538,3.2935,1.612816 +L 3.2935,1.612816,3.3455,1.667931 +L 3.3455,1.667931,3.3961,1.727882 +L 3.3961,1.727882,3.4446,1.793631 +L 3.4446,1.793631,3.4882,1.886454 +L 3.4882,1.886454,3.5318,1.984114 +L 3.5318,1.984114,3.5734,2.085641 +L 3.5734,2.085641,3.6146,2.192 +L 3.6146,2.192,3.6542,2.303196 +L 3.6542,2.303196,3.6924,2.418259 +L 3.6924,2.418259,3.7295,2.538153 +L 3.7295,2.538153,3.7657,2.662887 +L 3.7657,2.662887,3.9867,3.51571 +L 3.9867,3.51571,3.9872,3.626905 +L 3.9872,3.626905,3.9847,3.7352 +L 3.9847,3.7352,3.9777,3.841558 +L 3.9777,3.841558,3.9688,3.943086 +L 3.9688,3.943086,3.9559,4.042681 +L 3.9559,4.042681,3.9411,4.139373 +L 3.9411,4.139373,3.9232,4.232192 +L 3.9232,4.232192,3.9014,4.322117 +L 3.9014,4.322117,3.623,5.290972 +L 3.623,5.290972,3.5883,5.377991 +L 3.5883,5.377991,3.5497,5.463082 +L 3.5497,5.463082,3.509,5.546234 +L 3.509,5.546234,3.4644,5.62649 +L 3.4644,5.62649,3.4179,5.704812 +L 3.4179,5.704812,3.3673,5.780232 +L 3.3673,5.780232,3.3138,5.853716 +L 3.3138,5.853716,3.2593,5.925268 +L 3.2593,5.925268,3.1984,5.961044 +L 3.1984,5.961044,3.1354,5.995854 +L 3.1354,5.995854,3.072,6.029691 +L 3.072,6.029691,3.0081,6.062572 +L 3.0081,6.062572,2.9422,6.09351 +L 2.9422,6.09351,2.8758,6.123486 +L 2.8758,6.123486,2.8074,6.152492 +L 2.8074,6.152492,2.7381,6.179567 +L 2.7381,6.179567,2.6355,6.222112 +L 2.6355,6.222112,2.5399,6.258855 +L 2.5399,6.258855,2.4532,6.289794 +L 2.4532,6.289794,2.3724,6.315899 +L 2.3724,6.315899,2.3011,6.335238 +L 2.3011,6.335238,2.2377,6.349746 +L 2.2377,6.349746,2.1812,6.358448 +L 2.1812,6.358448,2.1326,6.361345 + +[Π] 41 +L -0.0007,6.695901,4.4387,6.678494 +L 4.4387,6.678494,4.4387,6.367149 +L 4.4387,6.367149,4.124,6.367149 +L 4.124,6.367149,3.8387,6.001653 +L 3.8387,6.001653,3.8387,1.433936 +L 3.8387,1.433936,4.124,1.068444 +L 4.124,1.068444,4.1528,1.068444 +L 4.1528,1.068444,4.1845,1.067475 +L 4.1845,1.067475,4.2558,1.063502 +L 4.2558,1.063604,4.2975,1.061675 +L 4.2975,1.061675,4.3401,1.058773 +L 4.3401,1.058773,4.4387,1.050809 +L 4.4387,1.051034,4.4387,0.739691 +L 4.4387,0.739691,2.7823,0.75903 +L 2.7823,0.75903,2.7823,1.068444 +L 2.7823,1.068444,3.0974,1.068444 +L 3.0974,1.068444,3.3828,1.433936 +L 3.3828,1.433936,3.3828,6.001653 +L 3.3828,6.001653,3.0984,6.367149 +L 3.0984,6.367149,1.339,6.367149 +L 1.339,6.367149,1.0541,6.001653 +L 1.0541,6.001653,1.0541,1.433936 +L 1.0541,1.433936,1.339,1.068444 +L 1.339,1.068444,1.3682,1.068444 +L 1.3682,1.068444,1.399,1.067475 +L 1.399,1.067475,1.557,1.058745 +L 1.557,1.058773,1.6536,1.050706 +L 1.6536,1.051034,1.6536,0.739691 +L 1.6536,0.739691,-0.0007,0.75903 +L -0.0007,0.75903,-0.0007,1.068444 +L -0.0007,1.068444,0.3124,1.068444 +L 0.3124,1.068444,0.5978,1.433936 +L 0.5978,1.433936,0.5978,6.001653 +L 0.5978,6.001653,0.3124,6.367149 +L 0.3124,6.367149,0.2852,6.365214 +L 0.2852,6.365214,0.2212,6.365214 +L 0.2212,6.365214,0.1841,6.367149 +L 0.1841,6.367149,0.1434,6.370047 +L 0.1434,6.370047,0.0989,6.373916 +L 0.0989,6.373916,-0.0007,6.385869 +L -0.0007,6.38552,-0.0007,6.695901 + +[Ρ] 102 +L -0.0006,6.735546,2.3251,6.735546 +L 2.3251,6.735546,2.3846,6.732643 +L 2.3846,6.732643,2.4465,6.725873 +L 2.4465,6.725873,2.5114,6.714272 +L 2.5114,6.714272,2.5778,6.698804 +L 2.5778,6.698804,2.6472,6.67753 +L 2.6472,6.67753,2.7175,6.652388 +L 2.7175,6.652388,2.7914,6.622413 +L 2.7914,6.622413,2.8667,6.587606 +L 2.8667,6.587606,2.9544,6.552795 +L 2.9544,6.552795,3.0396,6.516053 +L 3.0396,6.516053,3.1228,6.478343 +L 3.1228,6.478343,3.2021,6.439666 +L 3.2021,6.439666,3.2794,6.400021 +L 3.2794,6.400021,3.3542,6.358448 +L 3.3542,6.358448,3.4256,6.316871 +L 3.4256,6.316871,3.4935,6.273359 +L 3.4935,6.273359,3.544,6.170865 +L 3.544,6.170865,3.5921,6.06547 +L 3.5921,6.06547,3.6381,5.959112 +L 3.6381,5.959112,3.6837,5.849848 +L 3.6837,5.849848,3.7268,5.738652 +L 3.7268,5.738652,3.7699,5.62649 +L 3.7699,5.62649,3.8106,5.511427 +L 3.8106,5.511427,3.8512,5.394432 +L 3.8512,5.394432,3.8532,5.193305 +L 3.8532,5.193308,3.8522,5.107252 +L 3.8522,5.107252,3.8492,5.031835 +L 3.8492,5.031835,3.8457,4.966086 +L 3.8457,4.966086,3.8418,4.910971 +L 3.8418,4.910971,3.8363,4.865525 +L 3.8363,4.865525,3.8299,4.830715 +L 3.8299,4.830715,3.7838,4.705018 +L 3.7838,4.705018,3.7392,4.586087 +L 3.7392,4.586087,3.6976,4.474892 +L 3.6976,4.474892,3.655,4.371432 +L 3.655,4.371432,3.6153,4.273774 +L 3.6153,4.273774,3.5757,4.184819 +L 3.5757,4.184819,3.5371,4.101661 +L 3.5371,4.101661,3.5014,4.027211 +L 3.5014,4.027211,3.4419,3.984664 +L 3.4419,3.984664,3.3825,3.945018 +L 3.3825,3.945018,3.325,3.909245 +L 3.325,3.909245,3.2675,3.876372 +L 3.2675,3.876372,3.212,3.846396 +L 3.212,3.846396,3.1575,3.820291 +L 3.1575,3.820291,3.1045,3.797083 +L 3.1045,3.797083,3.0525,3.776776 +L 3.0525,3.776776,2.6105,3.59113 +L 2.6105,3.59113,2.4183,3.554388 +L 2.4183,3.554388,1.0553,3.554388 +L 1.0553,3.554388,1.0553,1.434906 +L 1.0553,1.434906,1.3406,1.070377 +L 1.3406,1.070377,1.5126,1.067361 +L 1.5126,1.067475,1.575,1.06554 +L 1.575,1.06554,1.7806,1.056507 +L 1.7806,1.056838,1.8544,1.052007 +L 1.8544,1.052007,1.8544,0.740654 +L 1.8544,0.740654,-0.0006,0.759997 +L -0.0006,0.759997,-0.0006,1.070377 +L -0.0006,1.070377,0.314,1.070377 +L 0.314,1.070377,0.5994,1.434906 +L 0.5994,1.434906,0.5994,6.032596 +L 0.5994,6.032596,0.314,6.401956 +L 0.314,6.401956,0.2868,6.400021 +L 0.2868,6.400021,0.2571,6.400021 +L 0.2571,6.400021,0.1857,6.402072 +L 0.1857,6.401956,0.1436,6.404859 +L 0.1436,6.404859,0.0519,6.414815 +L 0.0519,6.414529,-0.0006,6.421295 +L -0.0006,6.421295,-0.0006,6.735546 +L 1.3392,6.361345,1.0756,6.027762 +L 1.0756,6.027762,1.0617,3.928584 +L 1.0617,3.928584,2.2379,3.928584 +L 2.2379,3.928584,2.2919,3.927615 +L 2.2919,3.927615,2.3395,3.928584 +L 2.3395,3.928584,2.3816,3.931486 +L 2.3816,3.931486,2.4153,3.937285 +L 2.4153,3.937285,2.445,3.945018 +L 2.445,3.945018,2.4678,3.955655 +L 2.4678,3.955655,2.4847,3.968228 +L 2.4847,3.968228,2.4941,3.982729 +L 2.4941,3.982729,2.6244,4.063949 +L 2.6244,4.063949,2.7398,4.146142 +L 2.7398,4.146142,2.8444,4.228328 +L 2.8444,4.228328,2.9346,4.31148 +L 2.9346,4.31148,3.0133,4.395602 +L 3.0133,4.395602,3.0792,4.479729 +L 3.0792,4.479729,3.1318,4.563846 +L 3.1318,4.563846,3.1719,4.649901 +L 3.1719,4.649901,3.3785,5.153668 +L 3.3785,5.153668,3.1437,5.721249 +L 3.1437,5.721249,3.1124,5.7841 +L 3.1124,5.7841,3.0773,5.843079 +L 3.0773,5.843079,3.0396,5.896262 +L 3.0396,5.896262,2.999,5.946539 +L 2.999,5.946539,2.9554,5.99102 +L 2.9554,5.99102,2.9103,6.031629 +L 2.9103,6.031629,2.8602,6.068368 +L 2.8602,6.068368,2.8087,6.099314 +L 2.8087,6.099314,2.395,6.361345 +L 2.395,6.361345,1.3392,6.361345 + +[Σ] 84 +L 0,6.681397,3.8592,6.663993 +L 3.8592,6.663993,3.8597,6.593408 +L 3.8597,6.593408,3.8647,6.525723 +L 3.8647,6.525723,3.8726,6.459972 +L 3.8726,6.459972,3.8835,6.396152 +L 3.8835,6.396152,3.8974,6.334274 +L 3.8974,6.334274,3.9147,6.274326 +L 3.9147,6.274326,3.9351,6.216309 +L 3.9351,6.216309,3.9583,6.161194 +L 3.9583,6.161194,3.9836,6.09351 +L 3.9836,6.09351,4.0059,6.029691 +L 4.0059,6.029691,4.0242,5.968776 +L 4.0242,5.968776,4.0381,5.909797 +L 4.0381,5.909797,4.0495,5.854679 +L 4.0495,5.854679,4.0574,5.801503 +L 4.0574,5.801503,4.0614,5.752191 +L 4.0614,5.752191,4.0599,5.704812 +L 4.0599,5.704812,4.0599,5.073415 +L 4.0599,5.073415,3.7943,5.073415 +L 3.7943,5.073415,3.7943,5.145929 +L 3.7943,5.145929,3.7909,5.216515 +L 3.7909,5.216515,3.7829,5.285168 +L 3.7829,5.285168,3.7725,5.351886 +L 3.7725,5.351886,3.7587,5.417639 +L 3.7587,5.417639,3.7408,5.481452 +L 3.7408,5.481452,3.7195,5.543336 +L 3.7195,5.543336,3.6943,5.60425 +L 3.6943,5.60425,3.6531,5.715446 +L 3.6531,5.715446,3.6085,5.821808 +L 3.6085,5.821808,3.5625,5.923332 +L 3.5625,5.923332,3.5159,6.01906 +L 3.5159,6.01906,3.4673,6.109948 +L 3.4673,6.109948,3.4158,6.196005 +L 3.4158,6.196005,3.3638,6.276258 +L 3.3638,6.276258,3.3098,6.352643 +L 3.3098,6.352643,0.8631,6.34394 +L 0.8631,6.34394,0.8631,6.279157 +L 0.8631,6.279157,2.6746,3.959526 +L 2.6746,3.959526,0.663,1.382689 +L 0.663,1.382689,0.6699,1.309202 +L 0.6699,1.309202,3.509,1.309202 +L 3.509,1.309202,3.5565,1.373021 +L 3.5565,1.373021,3.6006,1.442638 +L 3.6006,1.442638,3.6427,1.519027 +L 3.6427,1.519027,3.6824,1.602179 +L 3.6824,1.602179,3.719,1.692103 +L 3.719,1.692103,3.7537,1.78976 +L 3.7537,1.78976,3.7854,1.89322 +L 3.7854,1.89322,3.8156,2.00345 +L 3.8156,2.00345,3.9014,2.282922 +L 3.9014,2.282891,3.9227,2.348643 +L 3.9227,2.348643,3.944,2.412456 +L 3.944,2.412456,3.9653,2.47434 +L 3.9653,2.47434,3.9866,2.534289 +L 3.9866,2.534289,3.9905,2.608724 +L 3.9901,2.608739,3.993,2.723796 +L 3.993,2.723805,3.993,2.763449 +L 3.993,2.763449,3.9945,2.804059 +L 3.9945,2.804059,3.9945,2.844668 +L 3.9945,2.844668,4.268,2.844668 +L 4.268,2.844668,4.268,2.168794 +L 4.268,2.168794,4.266,2.094344 +L 4.266,2.094344,4.2611,2.017954 +L 4.2611,2.017954,4.2522,1.938668 +L 4.2522,1.938668,4.2398,1.856478 +L 4.2398,1.856478,4.2244,1.771391 +L 4.2244,1.771391,4.2046,1.684364 +L 4.2046,1.684364,4.1828,1.594447 +L 4.1828,1.594447,4.1565,1.502589 +L 4.1565,1.502589,4.1352,1.422336 +L 4.1352,1.422336,4.1169,1.346916 +L 4.1169,1.346916,4.1015,1.277297 +L 4.1015,1.277297,4.0882,1.21348 +L 4.0882,1.21348,4.0773,1.154494 +L 4.0773,1.154494,4.0698,1.101319 +L 4.0698,1.101319,4.0639,1.05394 +L 4.0639,1.05394,4.0599,1.011394 +L 4.0599,1.011394,4.046,0.748393 +L 4.046,0.748393,0,0.748393 +L 0,0.748393,0,1.169 +L 0,1.169,1.9968,3.740034 +L 1.9968,3.740034,1.9968,3.940187 +L 1.9968,3.940187,0,6.508319 +L 0,6.508319,0,6.681397 + +[Τ] 71 +L -0.0003,6.735546,4.0615,6.735546 +L 4.0615,6.735546,4.0615,5.082116 +L 4.0615,5.082116,3.8029,5.092753 +L 3.8029,5.092753,3.8029,5.157536 +L 3.8029,5.157536,3.8014,5.21942 +L 3.8014,5.21942,3.797,5.278399 +L 3.797,5.278399,3.79,5.33448 +L 3.79,5.33448,3.7816,5.387663 +L 3.7816,5.387663,3.7697,5.437943 +L 3.7697,5.437943,3.7553,5.486285 +L 3.7553,5.486285,3.7385,5.530766 +L 3.7385,5.530766,3.6057,5.896262 +L 3.6057,5.896262,3.6057,6.105113 +L 3.6057,6.105113,3.5596,6.105113 +L 3.5596,6.105113,3.5126,6.109948 +L 3.5126,6.109948,3.465,6.119615 +L 3.465,6.119615,3.4174,6.133151 +L 3.4174,6.133151,3.3699,6.151527 +L 3.3699,6.151527,3.3218,6.174733 +L 3.3218,6.174733,3.2728,6.201804 +L 3.2728,6.201804,3.1831,6.259911 +L 3.1831,6.259818,3.1117,6.303648 +L 3.1117,6.303331,3.0805,6.320738 +L 3.0805,6.320738,3.0523,6.335238 +L 3.0523,6.335238,3.0285,6.346843 +L 3.0285,6.346843,3.0082,6.355545 +L 3.0082,6.355545,2.9903,6.361345 +L 2.9903,6.361345,2.2818,6.361345 +L 2.2818,6.361345,2.2818,1.428136 +L 2.2818,1.428136,2.5682,1.062641 +L 2.5682,1.062641,3.022,1.062641 +L 3.022,1.062641,3.1102,1.058907 +L 3.1102,1.058773,3.1499,1.055872 +L 3.1499,1.055872,3.2212,1.048526 +L 3.2212,1.048136,3.2519,1.042333 +L 3.2519,1.042333,3.2807,1.036536 +L 3.2807,1.036536,3.2807,0.733892 +L 3.2807,0.733892,0.8261,0.752261 +L 0.8261,0.752261,0.8261,1.062641 +L 0.8261,1.062641,1.5396,1.062641 +L 1.5396,1.062641,1.825,1.428136 +L 1.825,1.428136,1.825,6.361345 +L 1.825,6.361345,1.2408,6.361345 +L 1.2408,6.361345,1.1938,6.359412 +L 1.1938,6.359412,1.1472,6.352643 +L 1.1472,6.352643,1.1016,6.342976 +L 1.1016,6.342976,1.0545,6.32944 +L 1.0545,6.32944,1.0095,6.311068 +L 1.0095,6.311068,0.9634,6.289794 +L 0.9634,6.289794,0.9173,6.263689 +L 0.9173,6.263689,0.8727,6.233712 +L 0.8727,6.233712,0.8286,6.205672 +L 0.8286,6.205672,0.7508,6.160643 +L 0.7508,6.160228,0.6924,6.128082 +L 0.6924,6.128317,0.6696,6.116717 +L 0.6696,6.116717,0.6497,6.109948 +L 0.6497,6.109948,0.6344,6.105113 +L 0.6344,6.105113,0.4753,6.08771 +L 0.4753,6.08771,0.4753,6.030663 +L 0.4753,6.030663,0.4719,5.972647 +L 0.4719,5.972647,0.4644,5.9156 +L 0.4644,5.9156,0.4545,5.857584 +L 0.4545,5.857584,0.4397,5.798598 +L 0.4397,5.798598,0.4208,5.739619 +L 0.4208,5.739619,0.4,5.68064 +L 0.4,5.68064,0.3753,5.621654 +L 0.3753,5.621654,0.3366,5.515283 +L 0.3366,5.515295,0.2732,5.348186 +L 0.2737,5.348016,0.2737,5.082116 +L 0.2737,5.082116,-0.0003,5.082116 +L -0.0003,5.082116,-0.0003,6.735546 + +[Υ] 86 +L 0.7128,6.735546,1.348,6.735546 +L 1.348,6.735546,1.8623,6.07707 +L 1.8623,6.07707,1.8623,5.456309 +L 1.8623,5.456309,2.1977,5.456309 +L 2.1977,5.456309,2.1977,6.07707 +L 2.1977,6.07707,2.7115,6.735546 +L 2.7115,6.735546,3.3477,6.735546 +L 3.3477,6.735546,3.4423,6.617578 +L 3.4423,6.617578,3.5295,6.501549 +L 3.5295,6.501549,3.6103,6.388424 +L 3.6103,6.388424,3.6846,6.276258 +L 3.6846,6.276258,3.752,6.165065 +L 3.752,6.165065,3.8115,6.056768 +L 3.8115,6.056768,3.865,5.95041 +L 3.865,5.95041,3.9116,5.845014 +L 3.9116,5.845014,3.9482,5.750256 +L 3.9482,5.750256,3.9799,5.662267 +L 3.9799,5.662267,4.0057,5.581041 +L 4.0057,5.581041,4.0275,5.505627 +L 4.0275,5.505627,4.0443,5.436974 +L 4.0443,5.436974,4.0542,5.375093 +L 4.0542,5.375093,4.0602,5.319975 +L 4.0602,5.319975,4.0612,5.270663 +L 4.0612,5.270663,4.0612,4.63927 +L 4.0612,4.63927,3.7877,4.63927 +L 3.7877,4.63927,3.7877,5.296768 +L 3.7877,5.296768,3.3948,5.808272 +L 3.3948,5.808272,3.3948,6.173767 +L 3.3948,6.173767,2.9533,6.173767 +L 2.9533,6.173767,2.8512,6.036464 +L 2.8512,6.036464,2.7541,5.893356 +L 2.7541,5.893356,2.662,5.744452 +L 2.662,5.744452,2.5748,5.589745 +L 2.5748,5.589745,2.4945,5.429239 +L 2.4945,5.429239,2.4172,5.263894 +L 2.4172,5.263894,2.3469,5.091787 +L 2.3469,5.091787,2.281,4.913874 +L 2.281,4.913874,2.281,1.496783 +L 2.281,1.496783,2.5664,1.131295 +L 2.5664,1.131295,2.6204,1.131295 +L 2.6204,1.131295,2.6788,1.130322 +L 2.6788,1.130322,2.9355,1.122023 +L 2.9355,1.12162,3.0802,1.113734 +L 3.0802,1.113888,3.0802,0.802538 +L 3.0802,0.802538,1.025,0.821877 +L 1.025,0.821877,1.025,1.131295 +L 1.025,1.131295,1.5397,1.131295 +L 1.5397,1.131295,1.8251,1.516122 +L 1.8251,1.516122,1.8251,4.763034 +L 1.8251,4.763034,1.8212,4.822014 +L 1.8212,4.822014,1.8132,4.880996 +L 1.8132,4.880996,1.8018,4.939009 +L 1.8018,4.939009,1.788,4.997028 +L 1.788,4.997028,1.7701,5.055039 +L 1.7701,5.055039,1.7483,5.113055 +L 1.7483,5.113055,1.7236,5.170106 +L 1.7236,5.170106,1.671,5.301606 +L 1.671,5.301606,1.6126,5.431174 +L 1.6126,5.431174,1.5492,5.558807 +L 1.5492,5.558807,1.4778,5.685473 +L 1.4778,5.685473,1.4005,5.810205 +L 1.4005,5.810205,1.3173,5.933004 +L 1.3173,5.933004,1.2271,6.054833 +L 1.2271,6.054833,1.1315,6.173767 +L 1.1315,6.173767,0.6771,6.173767 +L 0.6771,6.173767,0.6771,5.808272 +L 0.6771,5.808272,0.2728,5.296768 +L 0.2728,5.296768,0.2728,4.63927 +L 0.2728,4.63927,-0.0007,4.63927 +L -0.0007,4.63927,-0.0007,5.215549 +L -0.0007,5.215549,0.0013,5.279365 +L 0.0013,5.279365,0.0058,5.342215 +L 0.0058,5.342215,0.0132,5.406032 +L 0.0132,5.406032,0.0241,5.468879 +L 0.0241,5.468879,0.038,5.531732 +L 0.038,5.531732,0.0558,5.593613 +L 0.0558,5.593613,0.0766,5.65646 +L 0.0766,5.65646,0.0994,5.718348 +L 0.0994,5.718348,0.1559,5.848882 +L 0.1559,5.848882,0.2173,5.978447 +L 0.2173,5.978447,0.2857,6.108015 +L 0.2857,6.108015,0.359,6.235649 +L 0.359,6.235649,0.4383,6.362315 +L 0.4383,6.362315,0.525,6.487045 +L 0.525,6.487045,0.6157,6.611779 +L 0.6157,6.611779,0.7128,6.735546 + +[Φ] 173 +L 1.198,6.729744,2.8524,6.711372 +L 2.8524,6.711372,2.8524,6.400992 +L 2.8524,6.400992,2.5387,6.400992 +L 2.5387,6.400992,2.2534,6.035494 +L 2.2534,6.035494,2.2539,6.000687 +L 2.2539,6.000687,2.2539,5.963945 +L 2.2539,5.963945,2.2548,5.925268 +L 2.2548,5.925268,2.2613,5.799573 +L 2.2613,5.79957,2.2633,5.753154 +L 2.2633,5.753154,2.2672,5.705775 +L 2.2672,5.705775,2.349,5.705775 +L 2.349,5.705775,2.4872,5.700247 +L 2.4872,5.699974,2.5447,5.694175 +L 2.5447,5.694175,2.5942,5.688372 +L 2.5942,5.688372,2.6369,5.67967 +L 2.6369,5.67967,2.6715,5.670002 +L 2.6715,5.670002,2.6978,5.659365 +L 2.6978,5.659365,3.4326,5.170106 +L 3.4326,5.170106,3.4985,5.118858 +L 3.4985,5.118858,3.5619,5.054076 +L 3.5619,5.054076,3.6263,4.974788 +L 3.6263,4.974788,3.6887,4.882928 +L 3.6887,4.882928,3.7517,4.777536 +L 3.7517,4.777536,3.8126,4.658603 +L 3.8126,4.658603,3.8735,4.526138 +L 3.8735,4.526138,3.9345,4.380134 +L 3.9345,4.380134,3.9583,4.309547 +L 3.9583,4.309547,3.9796,4.238965 +L 3.9796,4.238965,3.9989,4.167409 +L 3.9989,4.167409,4.0123,4.095859 +L 4.0123,4.095859,4.0227,4.024309 +L 4.0227,4.024309,4.0306,3.952757 +L 4.0306,3.952757,4.0331,3.880236 +L 4.0331,3.880236,4.0331,3.30879 +L 4.0331,3.30879,3.9568,3.099934 +L 3.9568,3.099934,3.8825,2.911386 +L 3.8825,2.911386,3.8101,2.746046 +L 3.8101,2.746046,3.7403,2.601973 +L 3.7403,2.601973,3.6724,2.481109 +L 3.6724,2.481109,3.6065,2.381517 +L 3.6065,2.381517,3.5431,2.303196 +L 3.5431,2.303196,3.4821,2.248081 +L 3.4821,2.248081,2.6497,1.692103 +L 2.6497,1.692103,2.5918,1.690171 +L 2.5918,1.690171,2.5363,1.689205 +L 2.5363,1.689205,2.4838,1.68727 +L 2.4838,1.68727,2.3386,1.684473 +L 2.3386,1.684364,2.2945,1.684364 +L 2.2945,1.684364,2.2534,1.683402 +L 2.2534,1.683402,2.2534,1.354652 +L 2.2534,1.354652,2.5387,0.989157 +L 2.5387,0.989157,2.567,0.989157 +L 2.567,0.989157,2.6329,0.987101 +L 2.6329,0.987222,2.671,0.985289 +L 2.671,0.985289,2.8023,0.975897 +L 2.8023,0.975619,2.8524,0.971751 +L 2.8524,0.971751,2.8524,0.660401 +L 2.8524,0.660401,1.198,0.67974 +L 1.198,0.67974,1.198,0.989157 +L 1.198,0.989157,1.5111,0.989157 +L 1.5111,0.989157,1.7965,1.354652 +L 1.7965,1.354652,1.7965,1.683402 +L 1.7965,1.683402,1.4264,1.683402 +L 1.4264,1.683402,0.7194,2.13592 +L 0.7194,2.13592,0.6297,2.202637 +L 0.6297,2.202637,0.5455,2.278057 +L 0.5455,2.278057,0.4662,2.362178 +L 0.4662,2.362178,0.3919,2.453069 +L 0.3919,2.453069,0.323,2.552658 +L 0.323,2.552658,0.2601,2.659989 +L 0.2601,2.659989,0.2021,2.775049 +L 0.2021,2.775049,0.1491,2.898818 +L 0.1491,2.898818,0.1144,2.994539 +L 0.1144,2.994539,0.0842,3.084466 +L 0.0842,3.084466,0.0579,3.167621 +L 0.0579,3.167621,0.0366,3.24497 +L 0.0366,3.24497,0.0208,3.315556 +L 0.0208,3.315556,0.0089,3.380339 +L 0.0089,3.380339,0.0024,3.439324 +L 0.0024,3.439324,-0.0005,3.491538 +L -0.0005,3.491538,-0.0005,3.991435 +L -0.0005,3.991435,0.0495,4.245734 +L 0.0495,4.245734,0.0842,4.338557 +L 0.0842,4.338557,0.1506,4.508894 +L 0.1506,4.508735,0.1833,4.588023 +L 0.1833,4.588023,0.2427,4.732118 +L 0.2427,4.732089,0.2992,4.858885 +L 0.2992,4.858756,0.323,4.898403 +L 0.323,4.898403,0.3508,4.93708 +L 0.3508,4.93708,0.38,4.974788 +L 0.38,4.974788,0.4107,5.01153 +L 0.4107,5.01153,0.4459,5.048272 +L 0.4459,5.048272,0.483,5.083079 +L 0.483,5.083079,0.5217,5.117892 +L 0.5217,5.117892,0.5628,5.150767 +L 0.5628,5.150767,1.4041,5.705775 +L 1.4041,5.705775,1.7965,5.705775 +L 1.7965,5.705775,1.7965,6.035494 +L 1.7965,6.035494,1.5111,6.400992 +L 1.5111,6.400992,1.4849,6.399057 +L 1.4849,6.399057,1.4542,6.398089 +L 1.4542,6.398089,1.421,6.399057 +L 1.421,6.399057,1.3828,6.400992 +L 1.3828,6.400992,1.3422,6.403892 +L 1.3422,6.403892,1.2981,6.407758 +L 1.2981,6.407758,1.198,6.419716 +L 1.198,6.419359,1.198,6.729744 +L 1.6251,5.331582,1.4661,5.224254 +L 1.4661,5.224254,1.3184,5.11499 +L 1.3184,5.11499,1.1831,5.004764 +L 1.1831,5.004764,1.0593,4.893568 +L 1.0593,4.893568,0.9468,4.781407 +L 0.9468,4.781407,0.8467,4.667306 +L 0.8467,4.667306,0.7595,4.553213 +L 0.7595,4.553213,0.6837,4.437183 +L 0.6837,4.437183,0.4632,3.853164 +L 0.4632,3.853164,0.4622,3.789348 +L 0.4622,3.789348,0.4662,3.721664 +L 0.4662,3.721664,0.4766,3.650109 +L 0.4766,3.650109,0.4915,3.573726 +L 0.4915,3.573726,0.5113,3.494436 +L 0.5113,3.494436,0.5375,3.411283 +L 0.5375,3.411283,0.5693,3.323295 +L 0.5693,3.323295,0.6049,3.231435 +L 0.6049,3.231435,0.652,3.118306 +L 0.652,3.118306,0.7011,3.009047 +L 0.7011,3.009047,0.7531,2.906553 +L 0.7531,2.906553,0.8096,2.808893 +L 0.8096,2.808893,0.8675,2.717037 +L 0.8675,2.717037,0.9295,2.630013 +L 0.9295,2.630013,0.9944,2.548794 +L 0.9944,2.548794,1.0618,2.47337 +L 1.0618,2.47337,1.2471,2.344775 +L 1.2471,2.344775,1.6112,2.107879 +L 1.6112,2.107879,1.7688,2.099177 +L 1.7688,2.099177,1.7752,5.331582 +L 1.7752,5.331582,1.6251,5.331582 +L 2.2578,5.331582,2.2578,2.057599 +L 2.2578,2.057599,2.3029,2.058567 +L 2.3029,2.058567,2.345,2.0605 +L 2.345,2.0605,2.3807,2.064368 +L 2.3807,2.064368,2.4124,2.069202 +L 2.4124,2.069202,2.4397,2.075971 +L 2.4397,2.075971,2.4615,2.084672 +L 2.4615,2.084672,2.4808,2.093374 +L 2.4808,2.093374,2.4927,2.104978 +L 2.4927,2.104978,2.6438,2.208438 +L 2.6438,2.208438,2.7835,2.317698 +L 2.7835,2.317698,2.9118,2.430829 +L 2.9118,2.430829,3.0278,2.548794 +L 3.0278,2.548794,3.1323,2.670626 +L 3.1323,2.670626,3.226,2.798256 +L 3.226,2.798256,3.3067,2.929756 +L 3.3067,2.929756,3.3771,3.066094 +L 3.3771,3.066094,3.5773,3.58436 +L 3.5773,3.58436,3.5773,3.650109 +L 3.5773,3.650109,3.5748,3.709095 +L 3.5748,3.709095,3.5723,3.761308 +L 3.5723,3.761308,3.5683,3.805785 +L 3.5683,3.805785,3.5634,3.844462 +L 3.5634,3.844462,3.5574,3.875405 +L 3.5574,3.875405,3.5495,3.899574 +L 3.5495,3.899574,3.5406,3.916978 +L 3.5406,3.916978,3.4549,4.123899 +L 3.4549,4.123899,3.3637,4.315351 +L 3.3637,4.315351,3.2686,4.49036 +L 3.2686,4.49036,3.1665,4.649901 +L 3.1665,4.649901,3.062,4.793007 +L 3.062,4.793007,2.95,4.92064 +L 2.95,4.92064,2.834,5.032804 +L 2.834,5.032804,2.7146,5.128526 +L 2.7146,5.128526,2.3936,5.331582 +L 2.3936,5.331582,2.2578,5.331582 + +[Χ] 227 +L 0.2008,6.695901,2.0618,6.678494 +L 2.0618,6.678494,2.0618,6.367149 +L 2.0618,6.367149,1.7477,6.367149 +L 1.7477,6.367149,1.4772,6.020026 +L 1.4772,6.020026,1.8978,5.481452 +L 1.8978,5.481452,1.932,5.415703 +L 1.932,5.415703,1.9637,5.349951 +L 1.9637,5.349951,1.9934,5.285168 +L 1.9934,5.285168,2.0222,5.221352 +L 2.0222,5.221352,2.0509,5.157536 +L 2.0509,5.157536,2.0777,5.093716 +L 2.0777,5.093716,2.1262,4.969954 +L 2.1262,4.969954,2.1867,4.873118 +L 2.1872,4.873261,2.2154,4.827817 +L 2.2154,4.827817,2.2749,4.743932 +L 2.2749,4.743696,2.3036,4.705018 +L 2.3036,4.705018,2.3333,4.667306 +L 2.3333,4.667306,2.3616,4.631534 +L 2.3616,4.631534,2.5325,4.421709 +L 2.5325,4.421709,2.6306,4.547412 +L 2.6306,4.547412,2.7218,4.674076 +L 2.7218,4.674076,2.805,4.80074 +L 2.805,4.80074,2.8803,4.928375 +L 2.8803,4.928375,2.9487,5.056974 +L 2.9487,5.056974,3.0101,5.185576 +L 3.0101,5.185576,3.0636,5.315144 +L 3.0636,5.315144,3.1107,5.444709 +L 3.1107,5.444709,3.2608,5.801503 +L 3.2608,5.801503,3.3887,6.020026 +L 3.3887,6.020026,3.1107,6.367149 +L 3.1107,6.367149,3.0845,6.365214 +L 3.0845,6.365214,3.0195,6.365214 +L 3.0195,6.365214,2.9824,6.367149 +L 2.9824,6.367149,2.9408,6.370047 +L 2.9408,6.370047,2.8967,6.373916 +L 2.8967,6.373916,2.7971,6.385869 +L 2.7971,6.38552,2.7971,6.695901 +L 2.7971,6.695901,4.4584,6.678494 +L 4.4584,6.678494,4.4584,6.367149 +L 4.4584,6.367149,4.1453,6.367149 +L 4.1453,6.367149,3.6101,5.682571 +L 3.6101,5.682571,3.5745,5.611017 +L 3.5745,5.611017,3.5388,5.535597 +L 3.5388,5.535597,3.5036,5.458248 +L 3.5036,5.458248,3.4689,5.378961 +L 3.4689,5.378961,3.4343,5.296768 +L 3.4343,5.296768,3.3649,5.123785 +L 3.3649,5.123692,3.3322,5.033767 +L 3.3322,5.033767,3.2876,4.923538 +L 3.2876,4.923538,3.238,4.814282 +L 3.238,4.814282,3.1845,4.708886 +L 3.1845,4.708886,3.129,4.604457 +L 3.129,4.604457,3.0676,4.502933 +L 3.0676,4.502933,3.0032,4.40334 +L 3.0032,4.40334,2.9348,4.305683 +L 2.9348,4.305683,2.861,4.210924 +L 2.861,4.210924,2.8615,4.190617 +L 2.8615,4.190617,2.8664,4.161613 +L 2.8664,4.161613,2.8754,4.122935 +L 2.8754,4.122935,2.8892,4.07459 +L 2.8892,4.07459,2.9086,4.017543 +L 2.9086,4.017543,2.9309,3.951787 +L 2.9309,3.951787,2.9576,3.876372 +L 2.9576,3.876372,2.9893,3.791281 +L 2.9893,3.791281,3.0339,3.677186 +L 3.0339,3.677186,3.0795,3.568889 +L 3.0795,3.568889,3.129,3.466395 +L 3.129,3.466395,3.1796,3.368739 +L 3.1796,3.368739,3.2341,3.276879 +L 3.2341,3.276879,3.2896,3.189859 +L 3.2896,3.189859,3.349,3.108636 +L 3.349,3.108636,3.4105,3.033216 +L 3.4105,3.033216,3.4957,2.918156 +L 3.4957,2.918156,3.5745,2.806957 +L 3.5745,2.806957,3.6458,2.699633 +L 3.6458,2.699633,3.7117,2.596173 +L 3.7117,2.596173,3.7692,2.496577 +L 3.7692,2.496577,3.8207,2.400856 +L 3.8207,2.400856,3.8643,2.308996 +L 3.8643,2.308996,3.903,2.220041 +L 3.903,2.220041,3.9277,2.166858 +L 3.9277,2.166858,3.9545,2.11755 +L 3.9545,2.11755,3.9803,2.071137 +L 3.9803,2.071137,4.006,2.028591 +L 4.006,2.028591,4.0308,1.988948 +L 4.0308,1.988948,4.0546,1.953172 +L 4.0546,1.953172,4.0779,1.920298 +L 4.0779,1.920298,4.1016,1.891288 +L 4.1016,1.891288,4.7443,1.068444 +L 4.7443,1.068444,4.772,1.068444 +L 4.772,1.068444,4.8032,1.067475 +L 4.8032,1.067475,4.9613,1.058711 +L 4.9613,1.058773,5.0574,1.050719 +L 5.0574,1.051034,5.0574,0.739691 +L 5.0574,0.739691,3.1964,0.75903 +L 3.1964,0.75903,3.1964,1.068444 +L 3.1964,1.068444,3.795,1.079079 +L 3.795,1.079079,3.795,1.141929 +L 3.795,1.141929,3.7365,1.219284 +L 3.7365,1.219284,3.68,1.296632 +L 3.68,1.296632,3.6265,1.374957 +L 3.6265,1.374957,3.576,1.452309 +L 3.576,1.452309,3.5274,1.529664 +L 3.5274,1.529664,3.4833,1.607982 +L 3.4833,1.607982,3.4422,1.685337 +L 3.4422,1.685337,3.4035,1.762689 +L 3.4035,1.762689,3.3768,1.831343 +L 3.3768,1.831343,3.3441,1.905793 +L 3.3441,1.905793,3.3015,1.98508 +L 3.3015,1.98508,3.2509,2.069202 +L 3.2509,2.069202,3.1935,2.158156 +L 3.1935,2.158156,3.1261,2.252915 +L 3.1261,2.252915,3.0513,2.352507 +L 3.0513,2.352507,2.968,2.456937 +L 2.968,2.456937,2.9427,2.506248 +L 2.9427,2.506248,2.8773,2.639836 +L 2.8773,2.639684,2.857,2.680291 +L 2.857,2.680291,2.8387,2.718002 +L 2.8387,2.718002,2.8209,2.752812 +L 2.8209,2.752812,2.804,2.78569 +L 2.804,2.78569,2.7778,2.858208 +L 2.7778,2.858208,2.7475,2.927821 +L 2.7475,2.927821,2.7148,2.994539 +L 2.7148,2.994539,2.6792,3.060294 +L 2.6792,3.060294,2.6405,3.123141 +L 2.6405,3.123141,2.5979,3.183093 +L 2.5979,3.183093,2.5523,3.241105 +L 2.5523,3.241105,2.5043,3.297186 +L 2.5043,3.297186,2.2625,3.297186 +L 2.2625,3.297186,2.2625,2.931692 +L 2.2625,2.931692,2.1475,2.787619 +L 2.1475,2.787619,2.044,2.650322 +L 2.044,2.650322,1.9508,2.52075 +L 1.9508,2.52075,1.8676,2.397955 +L 1.8676,2.397955,1.7952,2.282891 +L 1.7952,2.282891,1.7338,2.17556 +L 1.7338,2.17556,1.6823,2.075005 +L 1.6823,2.075005,1.6416,1.982182 +L 1.6416,1.982182,1.6149,1.924166 +L 1.6149,1.924166,1.5644,1.820494 +L 1.5634,1.820706,1.5376,1.775262 +L 1.5376,1.775262,1.4895,1.692834 +L 1.489,1.69307,1.4653,1.65826 +L 1.4653,1.65826,1.4415,1.626355 +L 1.4415,1.626355,1.277,1.416533 +L 1.277,1.416533,1.549,1.068444 +L 1.549,1.068444,1.5767,1.068444 +L 1.5767,1.068444,1.608,1.067475 +L 1.608,1.067475,1.6803,1.063443 +L 1.6803,1.063604,1.7219,1.061675 +L 1.7219,1.061675,1.7655,1.058773 +L 1.7655,1.058773,1.8621,1.050892 +L 1.8621,1.051034,1.8621,0.739691 +L 1.8621,0.739691,0.0007,0.75903 +L 0.0007,0.75903,0.0007,1.068444 +L 0.0007,1.068444,0.5145,1.068444 +L 0.5145,1.068444,1.1492,1.882583 +L 1.1492,1.882583,1.1937,1.94447 +L 1.1937,1.94447,1.2373,2.009253 +L 1.2373,2.009253,1.277,2.075005 +L 1.277,2.075005,1.3151,2.142689 +L 1.3151,2.142689,1.3508,2.211339 +L 1.3508,2.211339,1.383,2.282891 +L 1.383,2.282891,1.4137,2.356375 +L 1.4137,2.356375,1.4415,2.430829 +L 1.4415,2.430829,1.4762,2.494642 +L 1.4762,2.494642,1.5138,2.559427 +L 1.5138,2.559427,1.5535,2.62421 +L 1.5535,2.62421,1.5951,2.688992 +L 1.5951,2.688992,1.6387,2.753781 +L 1.6387,2.753781,1.6852,2.81953 +L 1.6852,2.81953,1.7338,2.885281 +L 1.7338,2.885281,1.7834,2.95103 +L 1.7834,2.95103,1.818,2.997443 +L 1.818,2.997443,1.8488,3.041918 +L 1.8488,3.041918,1.8755,3.084466 +L 1.8755,3.084466,1.9003,3.124107 +L 1.9003,3.124107,1.9201,3.161819 +L 1.9201,3.161819,1.9374,3.197591 +L 1.9374,3.197591,1.9518,3.230472 +L 1.9518,3.230472,1.9627,3.260444 +L 1.9627,3.260444,2.0261,3.413334 +L 2.0261,3.413213,2.0564,3.478968 +L 2.0564,3.478968,2.0856,3.53988 +L 2.0856,3.53988,2.1123,3.594028 +L 2.1123,3.594028,2.1381,3.641407 +L 2.1381,3.641407,2.1609,3.682986 +L 2.1609,3.682986,2.1832,3.718759 +L 2.1832,3.718759,2.1213,3.803853 +L 2.1213,3.803853,2.0608,3.889906 +L 2.0608,3.889906,2.0048,3.977892 +L 2.0048,3.977892,1.9518,4.067818 +L 1.9518,4.067818,1.9018,4.158708 +L 1.9018,4.158708,1.8542,4.251534 +L 1.8542,4.251534,1.8106,4.345327 +L 1.8106,4.345327,1.7705,4.440086 +L 1.7705,4.440086,1.7447,4.489396 +L 1.7447,4.489396,1.7194,4.53581 +L 1.7194,4.53581,1.6952,4.579321 +L 1.6952,4.579321,1.6694,4.619927 +L 1.6694,4.619927,1.6441,4.658603 +L 1.6441,4.658603,1.6203,4.694385 +L 1.6203,4.694385,1.5951,4.728225 +L 1.5951,4.728225,1.5693,4.759167 +L 1.5693,4.759167,1.5426,4.810414 +L 1.5426,4.810414,1.492,4.916818 +L 1.492,4.916772,1.4663,4.97189 +L 1.4663,4.97189,1.4415,5.028934 +L 1.4415,5.028934,1.4177,5.08695 +L 1.4177,5.08695,1.3929,5.146899 +L 1.3929,5.146899,1.3701,5.207813 +L 1.3701,5.207813,1.3424,5.260996 +L 1.3424,5.260996,1.3136,5.311274 +L 1.3136,5.311274,1.2869,5.357687 +L 1.2869,5.357687,1.2596,5.402167 +L 1.2596,5.402167,1.2334,5.442774 +L 1.2334,5.442774,1.2076,5.479516 +L 1.2076,5.479516,1.1809,5.514329 +L 1.1809,5.514329,1.1561,5.545271 +L 1.1561,5.545271,0.5145,6.367149 +L 0.5145,6.367149,0.4882,6.365214 +L 0.4882,6.365214,0.4233,6.365214 +L 0.4233,6.365214,0.3871,6.367149 +L 0.3871,6.367149,0.3445,6.370047 +L 0.3445,6.370047,0.3004,6.373916 +L 0.3004,6.373916,0.2008,6.385869 +L 0.2008,6.38552,0.2008,6.695901 + +[Ψ] 106 +L 0.5126,6.735546,0.9461,6.735546 +L 0.9461,6.735546,1.2588,6.333306 +L 1.2588,6.333306,1.2588,3.904408 +L 1.2588,3.904408,1.3916,3.567882 +L 1.3926,3.56792,1.4337,3.465429 +L 1.4337,3.465429,1.5501,3.184858 +L 1.5511,3.185024,1.5868,3.099934 +L 1.5868,3.099934,1.9569,2.642586 +L 1.9569,2.642586,2.1913,2.642586 +L 2.1913,2.642586,2.1913,6.406791 +L 2.1913,6.406791,2.1437,6.404859 +L 2.1437,6.404859,2.0971,6.403892 +L 2.0971,6.403892,2.0486,6.404859 +L 2.0486,6.404859,1.999,6.406791 +L 1.999,6.406791,1.9485,6.409694 +L 1.9485,6.409694,1.897,6.413561 +L 1.897,6.413561,1.7919,6.42515 +L 1.7919,6.425166,1.7919,6.735546 +L 1.7919,6.735546,3.0588,6.718139 +L 3.0588,6.718139,3.0588,6.406791 +L 3.0588,6.406791,2.6585,6.406791 +L 2.6585,6.406791,2.6738,2.642586 +L 2.6738,2.642586,2.9087,2.642586 +L 2.9087,2.642586,3.0058,2.772151 +L 3.0058,2.772151,3.096,2.900749 +L 3.096,2.900749,3.1772,3.028383 +L 3.1772,3.028383,3.2506,3.155048 +L 3.2506,3.155048,3.3165,3.279783 +L 3.3165,3.279783,3.3744,3.403548 +L 3.3744,3.403548,3.424,3.526347 +L 3.424,3.526347,3.4671,3.648177 +L 3.4671,3.648177,3.4904,3.711993 +L 3.4904,3.711993,3.5107,3.776776 +L 3.5107,3.776776,3.528,3.842527 +L 3.528,3.842527,3.5409,3.908276 +L 3.5409,3.908276,3.5508,3.974994 +L 3.5508,3.974994,3.5568,4.041712 +L 3.5568,4.041712,3.5607,4.109397 +L 3.5607,4.109397,3.5607,6.333306 +L 3.5607,6.333306,3.8778,6.735546 +L 3.8778,6.735546,4.3193,6.735546 +L 4.3193,6.735546,4.839,6.101246 +L 4.839,6.101246,4.839,5.407002 +L 4.839,5.407002,4.5655,5.407002 +L 4.5655,5.407002,4.5655,5.808272 +L 4.5655,5.808272,4.2584,6.173767 +L 4.2584,6.173767,4.0176,6.173767 +L 4.0176,6.173767,4.0176,4.147109 +L 4.0176,4.147109,4.0181,4.043647 +L 4.0181,4.043647,4.0181,3.866703 +L 4.0181,3.866703,4.0126,3.727454 +L 4.0126,3.727461,4.0086,3.672349 +L 4.0086,3.672349,4.0027,3.625936 +L 4.0027,3.625936,3.9968,3.590163 +L 3.9968,3.590163,3.7371,2.922023 +L 3.7371,2.922023,3.7233,2.88915 +L 3.7233,2.88915,3.701,2.85337 +L 3.701,2.85337,3.6727,2.814696 +L 3.6727,2.814696,3.6341,2.774086 +L 3.6341,2.774086,3.5895,2.730575 +L 3.5895,2.730575,3.537,2.684159 +L 3.537,2.684159,3.4765,2.635816 +L 3.4765,2.635816,3.4091,2.584569 +L 3.4091,2.584569,3.0375,2.347673 +L 3.0375,2.347673,2.98,2.344775 +L 2.98,2.344775,2.874,2.340976 +L 2.874,2.340907,2.6877,2.337247 +L 2.6877,2.337036,2.6466,2.337036 +L 2.6466,2.337036,2.6466,1.496783 +L 2.6466,1.496783,2.9255,1.131295 +L 2.9255,1.131295,2.9533,1.131295 +L 2.9533,1.131295,2.984,1.130322 +L 2.984,1.130322,3.0549,1.126281 +L 3.0549,1.126458,3.0945,1.124525 +L 3.0945,1.124525,3.1381,1.12162 +L 3.1381,1.12162,3.2332,1.113563 +L 3.2332,1.113888,3.2332,0.802538 +L 3.2332,0.802538,1.5922,0.821877 +L 1.5922,0.821877,1.5922,1.131295 +L 1.5922,1.131295,1.9059,1.131295 +L 1.9059,1.131295,2.1913,1.496783 +L 2.1913,1.496783,2.1913,2.337036 +L 2.1913,2.337036,1.8023,2.347673 +L 1.8023,2.347673,1.6482,2.447263 +L 1.6482,2.447263,1.5085,2.551695 +L 1.5085,2.551695,1.3817,2.659023 +L 1.3817,2.659023,1.2677,2.771184 +L 1.2677,2.771184,1.1686,2.88818 +L 1.1686,2.88818,1.0834,3.00808 +L 1.0834,3.00808,1.0111,3.132808 +L 1.0111,3.132808,0.9536,3.260444 +L 0.9536,3.260444,0.9184,3.353267 +L 0.9184,3.353267,0.8882,3.44029 +L 0.8882,3.44029,0.8629,3.52151 +L 0.8629,3.52151,0.8426,3.59596 +L 0.8426,3.59596,0.8257,3.664614 +L 0.8257,3.664614,0.8139,3.727461 +L 0.8139,3.727461,0.8069,3.784514 +L 0.8069,3.784514,0.8049,3.835761 +L 0.8049,3.835761,0.7911,6.173767 +L 0.7911,6.173767,0.5577,6.173767 +L 0.5577,6.173767,0.2748,5.808272 +L 0.2748,5.808272,0.2748,5.407002 +L 0.2748,5.407002,0.0003,5.407002 +L 0.0003,5.407002,0.0003,6.101246 +L 0.0003,6.101246,0.5126,6.735546 + +[Ω] 154 +L 1.4219,6.735546,2.1364,6.735546 +L 2.1364,6.735546,2.1736,6.731675 +L 2.1736,6.731675,2.2087,6.725873 +L 2.2087,6.725873,2.2409,6.718139 +L 2.2409,6.718139,2.2712,6.707506 +L 2.2712,6.707506,2.2999,6.694933 +L 2.2999,6.694933,2.3257,6.680427 +L 2.3257,6.680427,2.3504,6.663022 +L 2.3504,6.663022,2.3722,6.642723 +L 2.3722,6.642723,2.4406,6.60211 +L 2.4406,6.60211,2.506,6.561497 +L 2.506,6.561497,2.6239,6.484552 +L 2.6239,6.484146,2.6784,6.446436 +L 2.6784,6.446436,2.73,6.409694 +L 2.73,6.409694,2.7775,6.373916 +L 2.7775,6.373916,2.8221,6.339109 +L 2.8221,6.339109,3.0144,6.136056 +L 3.0144,6.136056,3.0986,6.023894 +L 3.0986,6.023894,3.1769,5.913665 +L 3.1769,5.913665,3.2482,5.805367 +L 3.2482,5.805367,3.3146,5.699009 +L 3.3146,5.699009,3.3731,5.595549 +L 3.3731,5.595549,3.4261,5.493054 +L 3.4261,5.493054,3.4737,5.393459 +L 3.4737,5.393459,3.5138,5.295806 +L 3.5138,5.295806,3.6565,4.927409 +L 3.6565,4.927409,3.6644,3.788385 +L 3.6639,3.788381,3.6624,3.730365 +L 3.6624,3.730365,3.6585,3.675251 +L 3.6585,3.675251,3.6515,3.621106 +L 3.6515,3.621106,3.6416,3.568889 +L 3.6416,3.568889,3.6307,3.518612 +L 3.6307,3.518612,3.6159,3.470266 +L 3.6159,3.470266,3.6,3.422887 +L 3.6,3.422887,3.5396,3.269146 +L 3.5396,3.269146,3.4722,3.116375 +L 3.4722,3.116375,3.3979,2.965536 +L 3.3979,2.965536,3.3156,2.816628 +L 3.3156,2.816628,3.2279,2.667725 +L 3.2279,2.667725,3.1323,2.521719 +L 3.1323,2.521719,3.0302,2.375714 +L 3.0302,2.375714,2.9222,2.231641 +L 2.9222,2.231641,2.4654,1.641826 +L 2.4654,1.641826,2.4654,1.309202 +L 2.4654,1.309202,3.3998,1.309202 +L 3.3998,1.309202,3.3998,2.076934 +L 3.3998,2.076934,3.6639,2.076934 +L 3.6639,2.076934,3.6496,0.748393 +L 3.6496,0.748393,2.1919,0.748393 +L 2.1919,0.748393,2.1919,1.951236 +L 2.1919,1.951236,2.6557,2.551695 +L 2.6557,2.551695,2.7082,2.656066 +L 2.7082,2.656118,2.731,2.703497 +L 2.731,2.703497,2.7518,2.747978 +L 2.7518,2.747978,2.7865,2.829099 +L 2.7865,2.829198,2.8003,2.864974 +L 2.8003,2.864974,2.8122,2.898818 +L 2.8122,2.898818,3.1828,3.836727 +L 3.1828,3.836727,3.1868,3.975961 +L 3.1868,3.975963,3.1888,4.176118 +L 3.1888,4.176111,3.1888,4.239932 +L 3.1888,4.239932,3.1908,4.303747 +L 3.1908,4.303747,3.1908,4.365628 +L 3.1908,4.365628,3.1888,4.43235 +L 3.1888,4.43235,3.1858,4.497132 +L 3.1858,4.497132,3.1779,4.56288 +L 3.1779,4.56288,3.165,4.627667 +L 3.165,4.627667,3.1486,4.692449 +L 3.1486,4.692449,3.1288,4.757232 +L 3.1288,4.757232,3.1046,4.821048 +L 3.1046,4.821048,3.0768,4.884866 +L 3.0768,4.884866,2.9846,5.126593 +L 2.9846,5.126593,2.8955,5.341249 +L 2.8955,5.341249,2.8122,5.5298 +L 2.8122,5.5298,2.7339,5.691273 +L 2.7339,5.691273,2.6596,5.825676 +L 2.6596,5.825676,2.5893,5.933969 +L 2.5893,5.933969,2.5239,6.015192 +L 2.5239,6.015192,2.4624,6.070306 +L 2.4624,6.070306,2.0076,6.361345 +L 2.0076,6.361345,1.8659,6.359501 +L 1.8659,6.359412,1.8049,6.35748 +L 1.8049,6.35748,1.7509,6.354577 +L 1.7509,6.354577,1.6622,6.345596 +L 1.6622,6.345875,1.63,6.340077 +L 1.63,6.340077,1.6028,6.333306 +L 1.6028,6.333306,1.147,6.04226 +L 1.147,6.04226,1.1108,6.013257 +L 1.1108,6.013257,1.0756,5.979413 +L 1.0756,5.979413,1.0404,5.940736 +L 1.0404,5.940736,1.0082,5.89916 +L 1.0082,5.89916,0.977,5.852746 +L 0.977,5.852746,0.9473,5.801503 +L 0.9473,5.801503,0.9176,5.746388 +L 0.9176,5.746388,0.8908,5.687406 +L 0.8908,5.687406,0.5628,4.85682 +L 0.5628,4.85682,0.539,4.793007 +L 0.539,4.793007,0.5192,4.729192 +L 0.5192,4.729192,0.5014,4.664409 +L 0.5014,4.664409,0.4885,4.600592 +L 0.4885,4.600592,0.4771,4.534844 +L 0.4771,4.534844,0.4687,4.470057 +L 0.4687,4.470057,0.4647,4.404303 +L 0.4647,4.404303,0.4627,4.338557 +L 0.4627,4.338557,0.4627,3.87347 +L 0.4627,3.87347,0.9403,2.644518 +L 0.9403,2.644518,0.9691,2.599074 +L 0.9691,2.599074,1.0008,2.550723 +L 1.0008,2.550723,1.0365,2.499482 +L 1.0365,2.499482,1.1192,2.388023 +L 1.1192,2.388286,1.2143,2.263332 +L 1.2148,2.263552,1.2693,2.196834 +L 1.2693,2.196834,1.4616,1.951236 +L 1.4616,1.951236,1.4616,1.139996 +L 1.4616,1.139996,1.4596,0.965947 +L 1.4586,0.96595,1.4527,0.868281 +L 1.4527,0.868291,1.4447,0.784144 +L 1.4447,0.784169,1.4403,0.748393 +L 1.4403,0.748393,0.0009,0.748393 +L 0.0009,0.748393,0.0009,2.076934 +L 0.0009,2.076934,0.2744,2.076934 +L 0.2744,2.076934,0.2744,1.309202 +L 0.2744,1.309202,1.1881,1.309202 +L 1.1881,1.309202,1.1881,1.641826 +L 1.1881,1.641826,0.5301,2.499482 +L 0.5301,2.499482,0.4815,2.567163 +L 0.4815,2.567163,0.436,2.635816 +L 0.436,2.635816,0.3899,2.706402 +L 0.3899,2.706402,0.3463,2.778917 +L 0.3463,2.778917,0.3052,2.852401 +L 0.3052,2.852401,0.2655,2.926858 +L 0.2655,2.926858,0.2274,3.00324 +L 0.2274,3.00324,0.1912,3.081564 +L 0.1912,3.081564,0.0574,3.450928 +L 0.0574,3.450928,0.0009,3.690719 +L 0.0009,3.690719,0.0009,4.78817 +L 0.0009,4.78817,0.0505,5.036672 +L 0.0505,5.036672,0.1109,5.185576 +L 0.1109,5.185576,0.1684,5.323846 +L 0.1684,5.323846,0.2259,5.451476 +L 0.2259,5.451476,0.2814,5.567508 +L 0.2814,5.567508,0.3349,5.672904 +L 0.3349,5.672904,0.3874,5.76669 +L 0.3874,5.76669,0.4374,5.849848 +L 0.4374,5.849848,0.4855,5.922366 +L 0.4855,5.922366,0.5747,6.029691 +L 0.5747,6.029691,0.6609,6.128317 +L 0.6609,6.128317,0.7451,6.218245 +L 0.7451,6.218245,0.8274,6.301399 +L 0.8274,6.301399,0.9086,6.375851 +L 0.9086,6.375851,0.9859,6.442569 +L 0.9859,6.442569,1.0622,6.500585 +L 1.0622,6.500585,1.1365,6.55086 +L 1.1365,6.55086,1.4219,6.735546 + +[α] 154 +L 1.2095,4.634433,1.7342,4.634433 +L 1.7342,4.634433,1.7818,4.570616 +L 1.7818,4.570616,1.8259,4.504868 +L 1.8259,4.504868,1.8695,4.439112 +L 1.8695,4.439112,1.9101,4.372398 +L 1.9101,4.372398,1.9488,4.304714 +L 1.9488,4.304714,1.9869,4.236061 +L 1.9869,4.236061,2.0221,4.167409 +L 2.0221,4.167409,2.0543,4.096827 +L 2.0543,4.096827,2.1891,3.740034 +L 2.1891,3.740034,2.2104,3.681054 +L 2.2104,3.681054,2.2272,3.625936 +L 2.2272,3.625936,2.2416,3.575659 +L 2.2416,3.575659,2.2495,3.530215 +L 2.2495,3.530215,2.254,3.488636 +L 2.254,3.488636,2.256,3.45189 +L 2.256,3.45189,2.2525,3.419985 +L 2.2525,3.419985,2.246,3.392911 +L 2.246,3.392911,2.2525,2.844668 +L 2.2525,2.844668,2.3808,2.854337 +L 2.3808,2.854337,2.3818,2.907519 +L 2.3818,2.907519,2.3868,2.960701 +L 2.3868,2.960701,2.3922,3.013878 +L 2.3922,3.013878,2.4006,3.068996 +L 2.4006,3.068996,2.411,3.124107 +L 2.411,3.124107,2.4244,3.179225 +L 2.4244,3.179225,2.4413,3.236268 +L 2.4413,3.236268,2.4596,3.293319 +L 2.4596,3.293319,2.7361,3.996268 +L 2.7361,3.996268,2.7792,4.22446 +L 2.7792,4.22446,2.7792,4.379167 +L 2.7792,4.379167,3.0532,4.379167 +L 3.0532,4.379167,3.0532,3.940187 +L 3.0532,3.940187,3.0175,3.69459 +L 3.0175,3.69459,2.5934,2.616478 +L 2.5934,2.616478,2.5602,2.557496 +L 2.5602,2.557496,2.5255,2.498513 +L 2.5255,2.498513,2.4878,2.43953 +L 2.4878,2.43953,2.4492,2.381517 +L 2.4492,2.381517,2.4081,2.323501 +L 2.4081,2.323501,2.365,2.265488 +L 2.365,2.265488,2.3194,2.207471 +L 2.3194,2.207471,2.2723,2.150424 +L 2.2723,2.150424,2.2723,1.6747 +L 2.2723,1.6747,2.5651,1.309202 +L 2.5651,1.309202,2.7217,1.309202 +L 2.7217,1.309202,3.0071,1.6747 +L 3.0071,1.6747,3.0071,2.076934 +L 3.0071,2.076934,3.2806,2.076934 +L 3.2806,2.076934,3.2806,1.382689 +L 3.2806,1.382689,2.7633,0.748393 +L 2.7633,0.748393,2.3238,0.748393 +L 2.3238,0.748393,1.9354,1.21348 +L 1.9354,1.21348,1.9126,1.186403 +L 1.9126,1.186403,1.8853,1.159332 +L 1.8853,1.159332,1.8556,1.131295 +L 1.8556,1.131295,1.8204,1.103251 +L 1.8204,1.103251,1.7422,1.045132 +L 1.7422,1.045238,1.6971,1.015262 +L 1.6971,1.015262,1.6485,0.985289 +L 1.6485,0.985289,1.3681,0.827681 +L 1.3681,0.827681,1.3408,0.806409 +L 1.3408,0.806409,1.3091,0.789006 +L 1.3091,0.789006,1.272,0.775468 +L 1.272,0.775468,1.2313,0.763861 +L 1.2313,0.763861,1.1862,0.755159 +L 1.1862,0.755159,1.1357,0.750328 +L 1.1357,0.750328,1.0817,0.747427 +L 1.0817,0.747427,1.0232,0.748393 +L 1.0232,0.748393,0.9757,0.747427 +L 0.9757,0.747427,0.9286,0.750328 +L 0.9286,0.750328,0.8835,0.755159 +L 0.8835,0.755159,0.8389,0.763861 +L 0.8389,0.763861,0.7973,0.775468 +L 0.7973,0.775468,0.7557,0.789006 +L 0.7557,0.789006,0.716,0.806409 +L 0.716,0.806409,0.6774,0.827681 +L 0.6774,0.827681,0.4049,0.993991 +L 0.4049,0.993991,0.1953,0.993991 +L 0.1953,0.993991,0.1953,1.063604 +L 0.1953,1.063604,0.1923,1.131295 +L 0.1923,1.131295,0.1844,1.19801 +L 0.1844,1.19801,0.174,1.263758 +L 0.174,1.263758,0.1591,1.327578 +L 0.1591,1.327578,0.1413,1.390428 +L 0.1413,1.390428,0.121,1.451339 +L 0.121,1.451339,0.0947,1.511291 +L 0.0947,1.511291,0.0021,1.758821 +L 0.0021,1.758821,-0.0054,2.835966 +L -0.0054,2.835966,-0.0044,2.89978 +L -0.0044,2.89978,0.0006,2.962634 +L 0.0006,2.962634,0.0085,3.02645 +L 0.0085,3.02645,0.0194,3.089297 +L 0.0194,3.089297,0.0338,3.152151 +L 0.0338,3.152151,0.0501,3.214032 +L 0.0501,3.214032,0.0699,3.276879 +L 0.0699,3.276879,0.0937,3.338766 +L 0.0937,3.338766,0.1433,3.457694 +L 0.1433,3.457694,0.1913,3.568889 +L 0.1913,3.568889,0.2384,3.672349 +L 0.2384,3.672349,0.285,3.767107 +L 0.285,3.767107,0.3316,3.855098 +L 0.3316,3.855098,0.3761,3.934381 +L 0.3761,3.934381,0.4207,4.005937 +L 0.4207,4.005937,0.4624,4.068787 +L 0.4624,4.068787,0.5555,4.16824 +L 0.5545,4.168379,0.5956,4.208992 +L 0.5956,4.208992,0.6323,4.244762 +L 0.6323,4.244762,0.6645,4.275707 +L 0.6645,4.275707,0.7185,4.320503 +L 0.7195,4.320188,0.7408,4.333723 +L 0.7408,4.333723,1.2095,4.634433 +L 1.4211,4.31148,0.9643,4.019475 +L 0.9643,4.019475,0.9113,3.972096 +L 0.9113,3.972096,0.8612,3.917946 +L 0.8612,3.917946,0.8122,3.856066 +L 0.8122,3.856066,0.7646,3.786446 +L 0.7646,3.786446,0.7195,3.710058 +L 0.7195,3.710058,0.6759,3.624974 +L 0.6759,3.624974,0.6338,3.534082 +L 0.6338,3.534082,0.5932,3.434487 +L 0.5932,3.434487,0.5614,3.347467 +L 0.5614,3.347467,0.5337,3.264313 +L 0.5337,3.264313,0.5094,3.185024 +L 0.5094,3.185024,0.4901,3.110571 +L 0.4901,3.110571,0.4742,3.03902 +L 0.4742,3.03902,0.4624,2.972302 +L 0.4624,2.972302,0.4539,2.909455 +L 0.4539,2.909455,0.4515,2.850472 +L 0.4515,2.850472,0.4515,1.689205 +L 0.4515,1.689205,0.9217,1.079079 +L 0.9217,1.079079,1.0936,1.133227 +L 1.0936,1.133227,1.4067,1.334344 +L 1.4067,1.334344,1.5707,1.334344 +L 1.5707,1.334344,1.5717,1.397194 +L 1.5717,1.397194,1.5742,1.45521 +L 1.5742,1.45521,1.5782,1.505492 +L 1.5782,1.505492,1.5826,1.550932 +L 1.5826,1.550932,1.5905,1.590579 +L 1.5905,1.590579,1.5995,1.623453 +L 1.5995,1.623453,1.6089,1.650528 +L 1.6089,1.650528,1.6208,1.671802 +L 1.6208,1.671802,1.6589,1.768493 +L 1.6589,1.768493,1.6921,1.855515 +L 1.6921,1.855515,1.7189,1.933833 +L 1.7189,1.933833,1.7407,2.00345 +L 1.7407,2.00345,1.7555,2.063398 +L 1.7555,2.063398,1.7664,2.115611 +L 1.7664,2.115611,1.7714,2.158156 +L 1.7714,2.158156,1.7699,2.192 +L 1.7699,2.192,1.7635,3.608533 +L 1.7635,3.608533,1.5782,4.084258 +L 1.5782,4.084258,1.5707,4.302779 +L 1.5707,4.302779,1.4211,4.31148 + +[β] 198 +L 1.7195,6.45417,2.3547,6.45417 +L 2.3547,6.45417,2.5464,6.390355 +L 2.5464,6.390355,2.8244,6.207608 +L 2.8244,6.207608,2.8546,6.205672 +L 2.8546,6.205672,2.8848,6.202774 +L 2.8848,6.202774,2.977,6.197045 +L 2.977,6.19697,3.0067,6.194072 +L 3.0067,6.194072,3.0682,6.190136 +L 3.0682,6.190204,3.0682,6.064504 +L 3.0682,6.064504,3.0687,6.01422 +L 3.0687,6.01422,3.0687,5.972647 +L 3.0687,5.972647,3.0697,5.938803 +L 3.0697,5.938803,3.0726,5.896283 +L 3.0726,5.896262,3.0741,5.88756 +L 3.0741,5.88756,3.1316,5.738652 +L 3.1316,5.738652,3.1757,5.595549 +L 3.1757,5.595549,3.2059,5.456309 +L 3.2059,5.456309,3.2228,5.32288 +L 3.2228,5.32288,3.2257,5.194278 +L 3.2257,5.194278,3.2148,5.069547 +L 3.2148,5.069547,3.1901,4.950616 +L 3.1901,4.950616,3.1529,4.836519 +L 3.1529,4.836519,3.1078,4.722421 +L 3.1078,4.722421,3.0602,4.613159 +L 3.0602,4.613159,3.0117,4.508735 +L 3.0117,4.508735,2.9602,4.409143 +L 2.9602,4.409143,2.9076,4.314384 +L 2.9076,4.314384,2.8531,4.22446 +L 2.8531,4.22446,2.7966,4.139373 +L 2.7966,4.139373,2.7392,4.059116 +L 2.7392,4.059116,2.483,3.730366 +L 2.483,3.730366,2.5529,3.636574 +L 2.5529,3.636574,2.6203,3.537947 +L 2.6203,3.537947,2.6852,3.435457 +L 2.6852,3.435457,2.7471,3.329095 +L 2.7471,3.329095,2.8056,3.218862 +L 2.8056,3.218862,2.8625,3.103805 +L 2.8625,3.103805,2.9156,2.983902 +L 2.9156,2.983902,2.9671,2.86014 +L 2.9671,2.86014,2.9894,2.802127 +L 2.9894,2.802127,3.0251,2.702646 +L 3.0251,2.702534,3.0503,2.627115 +L 3.0503,2.627115,3.0592,2.598102 +L 3.0592,2.598102,3.0647,2.575868 +L 3.0647,2.575868,3.0682,2.559427 +L 3.0682,2.559427,3.0687,2.456937 +L 3.0687,2.456937,3.0687,2.363141 +L 3.0687,2.363141,3.0682,2.27902 +L 3.0682,2.27902,3.0657,2.20457 +L 3.0657,2.20457,3.0632,2.139787 +L 3.0632,2.139787,3.0578,2.083706 +L 3.0578,2.083706,3.0523,2.038263 +L 3.0523,2.038263,3.0449,2.000551 +L 3.0449,2.000551,2.7748,1.333378 +L 2.7748,1.333378,2.6247,1.141929 +L 2.6247,1.141929,2.5648,1.09455 +L 2.5648,1.09455,2.5058,1.050072 +L 2.5058,1.050072,2.4473,1.00656 +L 2.4473,1.00656,2.3904,0.96595 +L 2.3904,0.96595,2.3329,0.926307 +L 2.3329,0.926307,2.2774,0.889565 +L 2.2774,0.889565,2.2229,0.854755 +L 2.2229,0.854755,2.1684,0.821877 +L 2.1684,0.821877,2.1079,0.786105 +L 2.1079,0.786105,2.0539,0.75903 +L 2.0539,0.75903,2.0079,0.738726 +L 2.0079,0.738726,1.9692,0.726156 +L 1.9692,0.726156,1.9365,0.720352 +L 1.9365,0.720352,1.9122,0.722288 +L 1.9122,0.722288,1.8939,0.731954 +L 1.8939,0.731954,1.883,0.748393 +L 1.883,0.748393,1.5263,0.748393 +L 1.5263,0.748393,1.4842,0.750328 +L 1.4842,0.750328,1.4445,0.754196 +L 1.4445,0.754196,1.4088,0.762898 +L 1.4088,0.762898,1.3756,0.773535 +L 1.3756,0.773535,1.3454,0.788034 +L 1.3454,0.788034,1.3192,0.805444 +L 1.3192,0.805444,1.2964,0.825748 +L 1.2964,0.825748,1.277,0.848952 +L 1.277,0.848952,0.6706,1.223148 +L 0.6706,1.223148,0.6706,1.169969 +L 0.6706,1.169969,0.6666,1.11679 +L 0.6666,1.11679,0.6602,1.061675 +L 0.6602,1.061675,0.6493,1.00656 +L 0.6493,1.00656,0.6349,0.950479 +L 0.6349,0.950479,0.6176,0.892466 +L 0.6176,0.892466,0.5963,0.83445 +L 0.5963,0.83445,0.571,0.776433 +L 0.571,0.776433,0.5477,0.713583 +L 0.5477,0.713583,0.5274,0.653635 +L 0.5274,0.653635,0.5096,0.597554 +L 0.5096,0.597554,0.4957,0.543408 +L 0.4957,0.543408,0.4853,0.492158 +L 0.4853,0.492158,0.4774,0.443816 +L 0.4774,0.443816,0.4724,0.399335 +L 0.4724,0.399335,0.4719,0.356791 +L 0.4719,0.356791,0.4719,-0.265903 +L 0.4719,-0.265903,0.0007,-0.265903 +L 0.0007,-0.265903,0.5076,3.317492 +L 0.5076,3.317492,0.793,4.699216 +L 0.793,4.699216,1.0417,5.513363 +L 1.0417,5.513363,1.0962,5.617024 +L 1.0972,5.616823,1.1502,5.707816 +L 1.1502,5.70771,1.1765,5.748323 +L 1.1765,5.748323,1.2002,5.785066 +L 1.2002,5.785066,1.225,5.819872 +L 1.225,5.819872,1.2488,5.850814 +L 1.2488,5.850814,1.7195,6.45417 +L 1.9548,6.079975,1.8513,5.947505 +L 1.8513,5.947505,1.7542,5.809235 +L 1.7542,5.809235,1.665,5.666135 +L 1.665,5.666135,1.5823,5.519163 +L 1.5823,5.519163,1.5064,5.367354 +L 1.5064,5.367354,1.4371,5.209749 +L 1.4371,5.209749,1.3756,5.048272 +L 1.3756,5.048272,1.3206,4.881962 +L 1.3206,4.881962,1.2567,4.612195 +L 1.2567,4.612195,1.1973,4.345327 +L 1.1973,4.345327,1.1398,4.079424 +L 1.1398,4.079424,1.0843,3.816422 +L 1.0843,3.816422,1.0323,3.554388 +L 1.0323,3.554388,0.9832,3.295254 +L 0.9832,3.295254,0.9357,3.037087 +L 0.9357,3.037087,0.8921,2.781819 +L 0.8921,2.781819,0.8064,2.240342 +L 0.8064,2.240342,0.7999,2.191035 +L 0.7999,2.191035,0.792,2.144621 +L 0.792,2.144621,0.7801,2.103045 +L 0.7801,2.103045,0.7672,2.064368 +L 0.7672,2.064368,0.7523,2.030527 +L 0.7523,2.030527,0.7335,2.000551 +L 0.7335,2.000551,0.7142,1.973474 +L 0.7142,1.973474,0.6919,1.951236 +L 0.6919,1.951236,0.7811,1.840044 +L 0.7811,1.840044,0.8648,1.739482 +L 0.8648,1.739482,0.9441,1.649558 +L 0.9441,1.649558,1.0189,1.57124 +L 1.0189,1.57124,1.0883,1.503552 +L 1.0883,1.503552,1.1542,1.447471 +L 1.1542,1.447471,1.2136,1.401062 +L 1.2136,1.401062,1.2701,1.366255 +L 1.2701,1.366255,1.3524,1.311137 +L 1.3524,1.311137,1.4272,1.262792 +L 1.4272,1.262792,1.4946,1.222182 +L 1.4946,1.222182,1.5555,1.188338 +L 1.5555,1.188338,1.6085,1.161268 +L 1.6085,1.161268,1.6551,1.140959 +L 1.6551,1.140959,1.6947,1.12839 +L 1.6947,1.12839,1.7264,1.12259 +L 1.7264,1.12259,1.9192,1.12259 +L 1.9192,1.12259,2.597,1.979277 +L 2.597,1.979277,2.589,2.610674 +L 2.589,2.610674,2.5454,2.720901 +L 2.5454,2.720901,2.5018,2.827266 +L 2.5018,2.827266,2.4186,3.02758 +L 2.4181,3.027417,2.3785,3.120243 +L 2.3785,3.120243,2.2992,3.295347 +L 2.2992,3.295254,2.261,3.376475 +L 2.261,3.376475,2.2031,3.411284 +L 2.2031,3.411284,2.0911,3.474044 +L 2.0911,3.474134,2.0366,3.502175 +L 2.0366,3.502175,1.9836,3.52828 +L 1.9836,3.52828,1.882,3.574139 +L 1.882,3.573726,1.8335,3.593065 +L 1.8335,3.593065,1.772,3.625936 +L 1.772,3.625936,1.7131,3.662678 +L 1.7131,3.662678,1.6551,3.703291 +L 1.6551,3.703291,1.5996,3.747772 +L 1.5996,3.747772,1.5466,3.796115 +L 1.5466,3.796115,1.4951,3.848327 +L 1.4951,3.848327,1.446,3.903446 +L 1.446,3.903446,1.3974,3.962428 +L 1.3974,3.962428,1.3974,4.133569 +L 1.3974,4.133569,1.5461,4.141252 +L 1.5461,4.141302,1.6868,4.147024 +L 1.6868,4.147109,1.7567,4.14904 +L 1.7567,4.14904,1.8899,4.150973 +L 1.8899,4.150976,1.9548,4.150976 +L 1.9548,4.150976,2.1263,3.92568 +L 2.1263,3.92568,2.216,4.028177 +L 2.216,4.028177,2.3022,4.13744 +L 2.3022,4.13744,2.3824,4.2525 +L 2.3824,4.2525,2.4577,4.374329 +L 2.4577,4.374329,2.5281,4.502933 +L 2.5281,4.502933,2.594,4.63733 +L 2.594,4.63733,2.6549,4.779468 +L 2.6549,4.779468,2.7114,4.927409 +L 2.7114,4.927409,2.7565,5.040453 +L 2.7565,5.040536,2.7729,5.087916 +L 2.7729,5.087916,2.7857,5.129495 +L 2.7857,5.129495,2.7937,5.164305 +L 2.7937,5.164305,2.7991,5.193308 +L 2.7991,5.193308,2.8001,5.216515 +L 2.8001,5.216515,2.7962,5.232956 +L 2.7962,5.232956,2.7962,5.458248 +L 2.7962,5.458248,2.318,6.079975 +L 2.318,6.079975,1.9548,6.079975 + +[γ] 108 +L 0.5152,4.649901,0.9502,4.649901 +L 0.9502,4.649901,0.9977,4.585118 +L 0.9977,4.585118,1.0428,4.520336 +L 1.0428,4.520336,1.0849,4.453618 +L 1.0849,4.453618,1.1266,4.3869 +L 1.1266,4.3869,1.1657,4.319218 +L 1.1657,4.319218,1.2029,4.250569 +L 1.2029,4.250569,1.2375,4.181915 +L 1.2375,4.181915,1.2712,4.111328 +L 1.2712,4.111328,1.4565,3.625936 +L 1.4565,3.625936,1.4709,2.602942 +L 1.4709,2.602942,1.5992,2.613576 +L 1.5992,2.613576,1.6012,2.675457 +L 1.6012,2.675457,1.6062,2.738311 +L 1.6062,2.738311,1.6151,2.802127 +L 1.6151,2.802127,1.628,2.865943 +L 1.628,2.865943,1.6438,2.931692 +L 1.6438,2.931692,1.6637,2.99841 +L 1.6637,2.99841,1.6864,3.065128 +L 1.6864,3.065128,1.7132,3.133778 +L 1.7132,3.133778,1.9907,3.84543 +L 1.9907,3.84543,2.0214,3.912148 +L 2.0214,3.912148,2.0551,3.979832 +L 2.0551,3.979832,2.0907,4.048479 +L 2.0907,4.048479,2.1304,4.118099 +L 2.1304,4.118099,2.173,4.188682 +L 2.173,4.188682,2.2186,4.25927 +L 2.2186,4.25927,2.2676,4.330819 +L 2.2676,4.330819,2.3192,4.404303 +L 2.3192,4.404303,2.5129,4.649901 +L 2.5129,4.649901,2.8617,4.649901 +L 2.8617,4.649901,2.8617,4.210924 +L 2.8617,4.210924,2.4118,3.636574 +L 2.4118,3.636574,2.3405,3.497499 +L 2.3415,3.497338,2.3206,3.455758 +L 2.3206,3.455758,2.3033,3.417081 +L 2.3033,3.417081,2.2879,3.381308 +L 2.2879,3.381308,2.2751,3.347467 +L 2.2751,3.347467,2.2632,3.316526 +L 2.2632,3.316526,2.2354,3.255611 +L 2.2354,3.255611,2.2057,3.194693 +L 2.2057,3.194693,2.175,3.134741 +L 2.175,3.134741,2.1433,3.076728 +L 2.1433,3.076728,2.1091,3.018715 +L 2.1091,3.018715,2.0739,2.961668 +L 2.0739,2.961668,2.0372,2.905587 +L 2.0372,2.905587,1.9986,2.850472 +L 1.9986,2.850472,1.9629,2.774086 +L 1.9629,2.774086,1.9282,2.695765 +L 1.9282,2.695765,1.8945,2.615508 +L 1.8945,2.615508,1.8618,2.533319 +L 1.8618,2.533319,1.8291,2.448235 +L 1.8291,2.448235,1.7964,2.362178 +L 1.7964,2.362178,1.7647,2.274189 +L 1.7647,2.274189,1.735,2.183299 +L 1.735,2.183299,1.3,0.530836 +L 1.3,0.530836,1.2688,0.406102 +L 1.2688,0.406102,1.2356,0.288143 +L 1.2356,0.288143,1.1969,0.177913 +L 1.1969,0.177913,1.1543,0.073487 +L 1.1543,0.073487,1.1097,-0.024172 +L 1.1097,-0.024172,1.0602,-0.114097 +L 1.0602,-0.114097,1.0072,-0.198218 +L 1.0072,-0.198218,0.9502,-0.274605 +L 0.9502,-0.274605,0.6004,-0.264936 +L 0.6004,-0.264936,0.6024,-0.169215 +L 0.6024,-0.169215,0.6043,-0.078324 +L 0.6043,-0.078324,0.6083,0.006769 +L 0.6083,0.006769,0.6152,0.08702 +L 0.6152,0.08702,0.6232,0.162439 +L 0.6232,0.162439,0.6331,0.232056 +L 0.6331,0.232056,0.644,0.296845 +L 0.644,0.296845,0.6578,0.356791 +L 0.6578,0.356791,1.0849,2.000551 +L 1.0849,2.000551,1.1186,2.133987 +L 1.1186,2.133987,1.1444,2.264519 +L 1.1444,2.264519,1.1612,2.391182 +L 1.1612,2.391182,1.1697,2.514953 +L 1.1697,2.514953,1.1702,2.635816 +L 1.1702,2.635816,1.1617,2.752812 +L 1.1617,2.752812,1.1459,2.867876 +L 1.1459,2.867876,1.1216,2.979071 +L 1.1216,2.979071,1.0711,3.181157 +L 1.0711,3.181157,1.0225,3.363905 +L 1.0225,3.363905,0.972,3.527314 +L 0.972,3.527314,0.9239,3.670417 +L 0.9239,3.670417,0.8749,3.79418 +L 0.8749,3.79418,0.8263,3.898612 +L 0.8263,3.898612,0.7778,3.982729 +L 0.7778,3.982729,0.7297,4.047516 +L 0.7297,4.047516,0.1366,3.297187 +L 0.1366,3.297187,0.0009,3.297187 +L 0.0009,3.297187,0.0038,3.374542 +L 0.0038,3.374542,0.0083,3.449962 +L 0.0083,3.449962,0.0162,3.523446 +L 0.0162,3.523446,0.0266,3.594998 +L 0.0266,3.594998,0.0405,3.664614 +L 0.0405,3.664614,0.0583,3.733267 +L 0.0583,3.733267,0.0782,3.799986 +L 0.0782,3.799986,0.1019,3.864769 +L 0.1019,3.864769,0.1485,3.97693 +L 0.1485,3.97693,0.1971,4.084258 +L 0.1971,4.084258,0.2466,4.188682 +L 0.2466,4.188682,0.2976,4.289246 +L 0.2976,4.289246,0.3497,4.38497 +L 0.3497,4.38497,0.4042,4.476828 +L 0.4042,4.476828,0.4587,4.564816 +L 0.4587,4.564816,0.5152,4.649901 + +[δ] 152 +L 0.8993,6.735546,1.4141,6.735546 +L 1.4141,6.735546,1.4621,6.73361 +L 1.4621,6.73361,1.5097,6.727806 +L 1.5097,6.727806,1.5563,6.718139 +L 1.5563,6.718139,1.6009,6.704602 +L 1.6009,6.704602,1.6464,6.686231 +L 1.6464,6.686231,1.6891,6.664957 +L 1.6891,6.664957,1.7317,6.63982 +L 1.7317,6.63982,1.7748,6.610812 +L 1.7748,6.610812,1.8853,6.527654 +L 1.8853,6.527654,1.9933,6.437734 +L 1.9933,6.437734,2.0998,6.342008 +L 2.0998,6.342008,2.2034,6.24048 +L 2.2034,6.24048,2.3064,6.133151 +L 2.3064,6.133151,2.4075,6.020026 +L 2.4075,6.020026,2.5056,5.901095 +L 2.5056,5.901095,2.6027,5.776364 +L 2.6027,5.776364,2.6027,5.082116 +L 2.6027,5.082116,2.3738,5.082116 +L 2.3738,5.082116,2.3738,5.484353 +L 2.3738,5.484353,2.2965,5.586847 +L 2.2965,5.586847,2.2222,5.681605 +L 2.2222,5.681605,2.1513,5.767662 +L 2.1513,5.767662,2.0844,5.845014 +L 2.0844,5.845014,2.0205,5.913665 +L 2.0205,5.913665,1.9596,5.97361 +L 1.9596,5.97361,1.9021,6.025826 +L 1.9021,6.025826,1.8486,6.068368 +L 1.8486,6.068368,1.4007,6.361345 +L 1.4007,6.361345,1.148,6.361345 +L 1.148,6.361345,0.8676,5.978447 +L 0.8676,5.978447,0.8676,5.778296 +L 0.8676,5.778296,1.2947,5.213617 +L 1.2947,5.213617,1.3363,5.159468 +L 1.3363,5.159468,1.3824,5.107252 +L 1.3824,5.107252,1.4304,5.056974 +L 1.4304,5.056974,1.4815,5.008629 +L 1.4815,5.008629,1.5365,4.961253 +L 1.5365,4.961253,1.5919,4.915806 +L 1.5919,4.915806,1.6519,4.872294 +L 1.6519,4.872294,1.7138,4.830715 +L 1.7138,4.830715,1.7574,4.794943 +L 1.7574,4.794943,1.7981,4.759167 +L 1.7981,4.759167,1.8342,4.725321 +L 1.8342,4.725321,1.8684,4.691483 +L 1.8684,4.691483,1.9001,4.658603 +L 1.9001,4.658603,1.9289,4.626697 +L 1.9289,4.626697,1.9531,4.595756 +L 1.9531,4.595756,2.0587,4.453874 +L 2.0577,4.453618,2.1355,4.339521 +L 2.1355,4.339521,2.2093,4.22349 +L 2.2093,4.22349,2.2767,4.105529 +L 2.2767,4.105529,2.3416,3.9866 +L 2.3416,3.9866,2.4006,3.865731 +L 2.4006,3.865731,2.4551,3.742936 +L 2.4551,3.742936,2.5056,3.61917 +L 2.5056,3.61917,2.5274,3.560188 +L 2.5274,3.560188,2.5452,3.505073 +L 2.5452,3.505073,2.575,3.411398 +L 2.574,3.411284,2.5849,3.371637 +L 2.5849,3.371637,2.5938,3.33683 +L 2.5938,3.33683,2.6027,3.281756 +L 2.6027,3.281716,2.6027,2.453069 +L 2.6027,2.453069,2.5997,2.396022 +L 2.5997,2.396022,2.5977,2.343802 +L 2.5977,2.343802,2.5918,2.296423 +L 2.5918,2.296423,2.5839,2.25485 +L 2.5839,2.25485,2.574,2.21714 +L 2.574,2.21714,2.5631,2.184262 +L 2.5631,2.184262,2.5482,2.157194 +L 2.5482,2.157194,2.5319,2.133987 +L 2.5319,2.133987,2.462,1.956071 +L 2.462,1.956071,2.3892,1.79073 +L 2.3892,1.79073,2.3134,1.637958 +L 2.3134,1.637958,2.2346,1.497756 +L 2.2346,1.497756,2.1528,1.371089 +L 2.1528,1.371089,2.0676,1.256992 +L 2.0676,1.256992,1.9794,1.155467 +L 1.9794,1.155467,1.8892,1.067475 +L 1.8892,1.067475,1.5251,0.821877 +L 1.5251,0.821877,1.4938,0.802538 +L 1.4938,0.802538,1.4602,0.786105 +L 1.4602,0.786105,1.422,0.772563 +L 1.422,0.772563,1.3784,0.761929 +L 1.3784,0.761929,1.3308,0.754196 +L 1.3308,0.754196,1.2788,0.749363 +L 1.2788,0.749363,1.2213,0.747427 +L 1.2213,0.747427,1.1619,0.748393 +L 1.1619,0.748393,0.6927,0.748393 +L 0.6927,0.748393,0.5951,0.882793 +L 0.5951,0.882793,0.4999,1.024929 +L 0.4999,1.024929,0.4078,1.173837 +L 0.4078,1.173837,0.3201,1.331446 +L 0.3201,1.331446,0.2354,1.496783 +L 0.2354,1.496783,0.1541,1.668897 +L 0.1541,1.668897,0.0748,1.849712 +L 0.0748,1.849712,0.0005,2.037293 +L 0.0005,2.037293,0.0005,3.116375 +L 0.0005,3.116375,0.0788,3.311692 +L 0.0788,3.311692,0.1541,3.485734 +L 0.1541,3.485734,0.2254,3.639476 +L 0.2254,3.639476,0.2928,3.772912 +L 0.2928,3.772912,0.3572,3.884108 +L 0.3572,3.884108,0.4187,3.975963 +L 0.4187,3.975963,0.4762,4.04558 +L 0.4762,4.04558,0.5297,4.095859 +L 0.5297,4.095859,1.0004,4.396573 +L 1.0004,4.396573,1.0578,4.396573 +L 1.0578,4.396573,1.1133,4.397537 +L 1.1133,4.397537,1.2159,4.401332 +L 1.2159,4.401408,1.3085,4.407075 +L 1.3085,4.407207,1.3521,4.411075 +L 1.3521,4.411075,1.3918,4.415912 +L 1.3918,4.415912,1.3918,4.479729 +L 1.3918,4.479729,0.5931,5.514329 +L 0.5931,5.514329,0.5931,6.328472 +L 0.5931,6.328472,0.8993,6.735546 +L 1.1222,4.022374,1.0241,3.894741 +L 1.0241,3.894741,0.9345,3.768074 +L 0.9345,3.768074,0.8517,3.644312 +L 0.8517,3.644312,0.7774,3.522476 +L 0.7774,3.522476,0.71,3.401613 +L 0.71,3.401613,0.6506,3.283648 +L 0.6506,3.283648,0.599,3.167622 +L 0.599,3.167622,0.5326,2.99352 +L 0.5326,2.993576,0.5118,2.930726 +L 0.5118,2.930726,0.4945,2.864008 +L 0.4945,2.864008,0.4811,2.794392 +L 0.4811,2.794392,0.4702,2.721873 +L 0.4702,2.721873,0.4628,2.645481 +L 0.4628,2.645481,0.4588,2.566197 +L 0.4588,2.566197,0.4563,2.483045 +L 0.4563,2.483045,0.4563,1.719174 +L 0.4563,1.719174,0.926,1.12259 +L 0.926,1.12259,0.9667,1.12259 +L 0.9667,1.12259,1.0063,1.123556 +L 1.0063,1.123556,1.045,1.123556 +L 1.045,1.123556,1.1168,1.125414 +L 1.1168,1.125491,1.2124,1.130979 +L 1.2124,1.131295,1.3006,1.186403 +L 1.3006,1.186403,1.3848,1.240551 +L 1.3848,1.240551,1.5424,1.346867 +L 1.5424,1.346916,1.6871,1.449293 +L 1.6871,1.449411,1.8169,1.548752 +L 1.8159,1.549,1.8595,1.645691 +L 1.8595,1.645691,1.9447,1.84101 +L 1.9447,1.84101,1.9863,1.940599 +L 1.9863,1.940599,2.0676,2.143708 +L 2.0676,2.143655,2.1459,2.350631 +L 2.1459,2.350576,2.1459,3.425782 +L 2.1459,3.425782,1.6757,4.022374 +L 1.6757,4.022374,1.1222,4.022374 + +[ε] 77 +L 1.0416,4.676978,1.768,4.676978 +L 1.768,4.676978,2.0831,4.230263 +L 2.0831,4.230263,2.0841,4.185786 +L 2.0841,4.185786,2.0841,4.087157 +L 2.0841,4.087157,2.0831,4.033979 +L 2.0831,4.033979,2.0732,3.856052 +L 2.0732,3.856067,2.0687,3.791281 +L 2.0687,3.791281,1.9335,3.791281 +L 1.9335,3.791281,1.5336,4.302779 +L 1.5336,4.302779,1.169,4.302779 +L 1.169,4.302779,0.6849,3.65881 +L 0.6849,3.65881,0.6849,3.455758 +L 0.6849,3.455758,0.9703,3.087369 +L 0.9703,3.087369,1.6837,3.087369 +L 1.6837,3.087369,1.6837,2.525587 +L 1.6837,2.525587,1.1556,2.525587 +L 1.1556,2.525587,0.9628,2.462737 +L 0.9628,2.462737,0.6849,2.27999 +L 0.6849,2.27999,0.5828,2.274508 +L 0.5828,2.274189,0.5541,2.272254 +L 0.5541,2.272254,0.5006,2.270346 +L 0.5006,2.270318,0.456,2.270318 +L 0.456,2.270318,0.456,1.429102 +L 0.456,1.429102,0.7414,1.063604 +L 0.7414,1.063604,0.8127,1.064577 +L 0.8127,1.064577,0.8801,1.068444 +L 0.8801,1.068444,0.9435,1.078112 +L 0.9435,1.078112,1.004,1.091651 +L 1.004,1.091651,1.0595,1.11002 +L 1.0595,1.11002,1.112,1.133227 +L 1.112,1.133227,1.1605,1.160298 +L 1.1605,1.160298,1.2046,1.193172 +L 1.2046,1.193172,1.2958,1.24829 +L 1.2958,1.24829,1.387,1.311137 +L 1.387,1.311137,1.4757,1.380757 +L 1.4757,1.380757,1.5653,1.457146 +L 1.5653,1.457146,1.655,1.541267 +L 1.655,1.541267,1.7422,1.631189 +L 1.7422,1.631189,1.8314,1.727882 +L 1.8314,1.727882,1.9181,1.831343 +L 1.9181,1.831343,2.0534,1.831343 +L 2.0534,1.831343,2.0534,1.393323 +L 2.0534,1.393323,2.0053,1.332411 +L 2.0053,1.332411,1.9553,1.275365 +L 1.9553,1.275365,1.9047,1.22025 +L 1.9047,1.22025,1.8532,1.167064 +L 1.8532,1.167064,1.7997,1.117756 +L 1.7997,1.117756,1.7452,1.06941 +L 1.7452,1.06941,1.6887,1.024929 +L 1.6887,1.024929,1.6332,0.982388 +L 1.6332,0.982388,1.3235,0.789018 +L 1.3235,0.789006,1.2884,0.772563 +L 1.2884,0.772563,1.2487,0.759997 +L 1.2487,0.759997,1.2046,0.749363 +L 1.2046,0.749363,1.1566,0.741627 +L 1.1566,0.741627,1.1031,0.73679 +L 1.1031,0.73679,1.0461,0.734858 +L 1.0461,0.734858,0.5065,0.734858 +L 0.5065,0.734858,0.0001,1.393323 +L 0.0001,1.393323,0.0001,2.196834 +L 0.0001,2.196834,0.349,2.600037 +L 0.349,2.600037,0.6061,2.608739 +L 0.6061,2.608739,0.2291,3.573726 +L 0.2291,3.573726,0.2291,3.617235 +L 0.2291,3.617235,0.2271,3.663648 +L 0.2271,3.663648,0.2271,3.712963 +L 0.2271,3.712963,0.2231,3.944065 +L 0.2221,3.944055,0.2211,4.008838 +L 0.2211,4.008838,0.2796,4.075556 +L 0.2796,4.075556,0.3405,4.140338 +L 0.3405,4.140338,0.4035,4.203189 +L 0.4035,4.203189,0.4689,4.264101 +L 0.4689,4.264101,0.5372,4.324053 +L 0.5372,4.324053,0.6076,4.381102 +L 0.6076,4.381102,0.6809,4.437183 +L 0.6809,4.437183,0.7562,4.491329 +L 0.7562,4.491329,1.0416,4.676978 + +[ζ] 92 +L 0.7351,6.45417,0.7975,6.45417 +L 0.7975,6.45417,0.8629,6.453206 +L 0.8629,6.453206,0.9967,6.449316 +L 0.9967,6.449335,1.1369,6.44349 +L 1.1369,6.443531,1.284,6.43374 +L 1.284,6.433867,1.284,6.079975 +L 1.284,6.079975,0.9699,6.079975 +L 0.9699,6.079975,0.685,5.699009 +L 0.685,5.699009,0.685,5.498855 +L 0.685,5.498855,0.9769,5.133363 +L 0.9769,5.133363,1.1344,5.133363 +L 1.1344,5.133363,1.9331,6.153459 +L 1.9331,6.153459,2.4821,6.153459 +L 2.4821,6.153459,2.4821,5.716412 +L 2.4821,5.716412,2.3771,5.585881 +L 2.3771,5.585881,2.27,5.462113 +L 2.27,5.462113,2.1581,5.345117 +L 2.1581,5.345117,2.0431,5.234891 +L 2.0431,5.234891,1.9262,5.131431 +L 1.9262,5.131431,1.8053,5.034737 +L 1.8053,5.034737,1.6814,4.944812 +L 1.6814,4.944812,1.5546,4.861661 +L 1.5546,4.861661,1.4778,4.809442 +L 1.4778,4.809442,1.403,4.753361 +L 1.403,4.753361,1.3306,4.693411 +L 1.3306,4.693411,1.2603,4.629598 +L 1.2603,4.629598,1.1929,4.561915 +L 1.1929,4.561915,1.1285,4.489396 +L 1.1285,4.489396,1.0655,4.413977 +L 1.0655,4.413977,1.0061,4.333723 +L 1.0061,4.333723,0.9679,4.246698 +L 0.9679,4.246698,0.8946,4.071834 +L 0.8946,4.071689,0.8203,3.893827 +L 0.8203,3.893775,0.7489,3.713982 +L 0.7489,3.713928,0.7133,3.623038 +L 0.7133,3.623038,0.2733,2.568129 +L 0.2733,2.568129,0.2733,2.483045 +L 0.2733,2.483045,0.2713,2.390225 +L 0.2723,2.390219,0.2688,2.23938 +L 0.2688,2.23938,0.2673,2.185231 +L 0.2673,2.185231,0.3204,2.124313 +L 0.3204,2.124313,0.3877,2.065334 +L 0.3877,2.065334,0.4685,2.008287 +L 0.4685,2.008287,0.5636,1.953172 +L 0.5636,1.953172,0.6726,1.899023 +L 0.6726,1.899023,0.7935,1.846813 +L 0.7935,1.846813,0.9303,1.79653 +L 0.9303,1.79653,1.0799,1.748187 +L 1.0799,1.748187,1.1949,1.704676 +L 1.1949,1.704676,1.3068,1.660195 +L 1.3068,1.660195,1.4144,1.614751 +L 1.4144,1.614751,1.5189,1.568335 +L 1.5189,1.568335,1.62,1.521928 +L 1.62,1.521928,1.7171,1.473583 +L 1.7171,1.473583,1.8107,1.425234 +L 1.8107,1.425234,1.9014,1.374957 +L 1.9014,1.374957,2.2819,0.911802 +L 2.2819,0.911802,2.2819,0.111193 +L 2.2819,0.111193,1.9589,-0.280407 +L 1.9589,-0.280407,1.1245,-0.280407 +L 1.1245,-0.280407,0.8104,0.116995 +L 0.8104,0.116995,0.8104,0.560812 +L 0.8104,0.560812,1.1592,0.560812 +L 1.1592,0.560812,1.5665,0 +L 1.5665,0,1.723,0 +L 1.723,0,2.0084,0.387732 +L 2.0084,0.387732,2.0084,0.590788 +L 2.0084,0.590788,1.9599,0.647835 +L 1.9599,0.647835,1.8964,0.703916 +L 1.8964,0.703916,1.8172,0.759997 +L 1.8172,0.759997,1.724,0.816078 +L 1.724,0.816078,1.615,0.871192 +L 1.615,0.871192,1.4912,0.925337 +L 1.4912,0.925337,1.3514,0.979483 +L 1.3514,0.979483,1.1978,1.033631 +L 1.1978,1.033631,1.0849,1.075211 +L 1.0849,1.075211,0.9759,1.118722 +L 0.9759,1.118722,0.8698,1.162233 +L 0.8698,1.162233,0.7658,1.207677 +L 0.7658,1.207677,0.6657,1.255056 +L 0.6657,1.255056,0.5696,1.302436 +L 0.5696,1.302436,0.4764,1.35175 +L 0.4764,1.35175,0.3872,1.402032 +L 0.3872,1.402032,-0.0002,1.880654 +L -0.0002,1.880654,-0.0002,2.701562 +L -0.0002,2.701562,0.0513,2.95103 +L 0.0513,2.95103,0.525,4.158708 +L 0.525,4.158708,0.6746,4.5184 +L 0.6746,4.5184,0.8025,4.739829 +L 0.8025,4.739829,0.411,5.236824 +L 0.411,5.236824,0.411,6.048066 +L 0.411,6.048066,0.7351,6.45417 + +[η] 80 +L 0.5122,4.649901,0.9468,4.649901 +L 0.9468,4.649901,1.3303,4.165478 +L 1.3303,4.165478,1.7078,4.649901 +L 1.7078,4.649901,2.3405,4.649901 +L 2.3405,4.649901,2.8533,3.974027 +L 2.8533,3.974027,2.8533,3.818352 +L 2.8533,3.818352,2.8484,3.662678 +L 2.8484,3.662678,2.84,3.507008 +L 2.84,3.507008,2.8271,3.35037 +L 2.8271,3.35037,2.8097,3.194693 +L 2.8097,3.194693,2.7874,3.037087 +L 2.7874,3.037087,2.7632,2.880442 +L 2.7632,2.880442,2.7329,2.722836 +L 2.7329,2.722836,2.3475,0.749363 +L 2.3475,0.749363,2.3252,0.631398 +L 2.3252,0.631398,2.3063,0.510531 +L 2.3063,0.510531,2.2905,0.386763 +L 2.2905,0.386763,2.2786,0.260099 +L 2.2786,0.260099,2.2677,0.1315 +L 2.2677,0.1315,2.2603,-0.000969 +L 2.2603,-0.000969,2.2558,-0.136334 +L 2.2558,-0.136334,2.2538,-0.274605 +L 2.2538,-0.274605,2.1939,-0.276536 +L 2.1939,-0.276536,2.075,-0.276536 +L 2.075,-0.276536,2.017,-0.274605 +L 2.017,-0.274605,1.9605,-0.271703 +L 1.9605,-0.271703,1.906,-0.267835 +L 1.906,-0.267835,1.7975,-0.256216 +L 1.7975,-0.256235,1.798,-0.133433 +L 1.798,-0.133433,1.8015,-0.01644 +L 1.8015,-0.01644,1.8059,0.09379 +L 1.8059,0.09379,1.8124,0.199181 +L 1.8124,0.199181,1.8198,0.297811 +L 1.8198,0.297811,1.8307,0.389668 +L 1.8307,0.389668,1.8411,0.47669 +L 1.8411,0.47669,1.8555,0.556941 +L 1.8555,0.556941,2.3276,2.978136 +L 2.3276,2.978105,2.3475,3.10187 +L 2.3475,3.10187,2.3643,3.231435 +L 2.3643,3.231435,2.3777,3.36584 +L 2.3777,3.36584,2.3871,3.506043 +L 2.3871,3.506043,2.3945,3.650109 +L 2.3945,3.650109,2.3975,3.799986 +L 2.3975,3.799986,2.3975,3.955656 +L 2.3975,3.955656,2.1042,4.320188 +L 2.1042,4.320188,1.9471,4.320188 +L 1.9471,4.320188,1.7935,4.121 +L 1.7935,4.121,1.6523,3.924717 +L 1.6523,3.924717,1.5245,3.730366 +L 1.5245,3.730366,1.4095,3.53988 +L 1.4095,3.53988,1.309,3.351335 +L 1.309,3.351335,1.2227,3.166652 +L 1.2227,3.166652,1.1479,2.983902 +L 1.1479,2.983902,1.088,2.805022 +L 1.088,2.805022,0.7714,1.407831 +L 0.7714,1.407831,0.7446,1.313073 +L 0.7446,1.313073,0.7218,1.221216 +L 0.7218,1.221216,0.702,1.133227 +L 0.702,1.133227,0.6852,1.048136 +L 0.6852,1.048136,0.6733,0.966917 +L 0.6733,0.966917,0.6644,0.887629 +L 0.6644,0.887629,0.6589,0.81221 +L 0.6589,0.81221,0.6564,0.739691 +L 0.6564,0.739691,0.2001,0.739691 +L 0.2001,0.739691,0.2016,0.842186 +L 0.2016,0.842186,0.2041,0.938874 +L 0.2041,0.938874,0.2095,1.030733 +L 0.2095,1.030733,0.2165,1.11679 +L 0.2165,1.11679,0.2254,1.19801 +L 0.2254,1.19801,0.2358,1.273429 +L 0.2358,1.273429,0.2501,1.343048 +L 0.2501,1.343048,0.265,1.407831 +L 0.265,1.407831,0.698,3.060294 +L 0.698,3.060294,0.9958,3.864769 +L 0.9958,3.864769,0.9824,3.974027 +L 0.9824,3.974027,0.7263,4.294077 +L 0.7263,4.294077,0.1367,3.553422 +L 0.1367,3.553422,0.0009,3.553422 +L 0.0009,3.553422,0.0009,3.991435 +L 0.0009,3.991435,0.5122,4.649901 + +[θ] 149 +L 1.4062,6.45417,1.9324,6.45417 +L 1.9324,6.45417,2.0255,6.330407 +L 2.0255,6.330407,2.1137,6.208573 +L 2.1137,6.208573,2.194,6.088677 +L 2.194,6.088677,2.2683,5.970711 +L 2.2683,5.970711,2.3367,5.855651 +L 2.3367,5.855651,2.3971,5.742517 +L 2.3971,5.742517,2.4516,5.632291 +L 2.4516,5.632291,2.5002,5.523997 +L 2.5002,5.523997,2.6419,5.158499 +L 2.6419,5.158499,2.6419,3.733267 +L 2.6419,3.733267,2.6399,3.599831 +L 2.6399,3.599831,2.635,3.49346 +L 2.634,3.493473,2.63,3.449962 +L 2.63,3.449962,2.6251,3.413213 +L 2.6251,3.413213,2.6191,3.382274 +L 2.6191,3.382274,2.6132,3.359071 +L 2.6132,3.359071,2.3506,2.362178 +L 2.3506,2.362178,2.0384,1.531597 +L 2.0384,1.531597,2.0018,1.448441 +L 2.0018,1.448441,1.9592,1.368188 +L 1.9592,1.368188,1.9066,1.290836 +L 1.9066,1.290836,1.8482,1.216379 +L 1.8482,1.216379,1.7808,1.14483 +L 1.7808,1.14483,1.7075,1.076177 +L 1.7075,1.076177,1.6242,1.010428 +L 1.6242,1.010428,1.4726,0.904264 +L 1.4726,0.904063,1.4171,0.866358 +L 1.4171,0.866358,1.3646,0.83445 +L 1.3646,0.83445,1.317,0.807376 +L 1.317,0.807376,1.2754,0.786105 +L 1.2754,0.786105,1.2387,0.769664 +L 1.2387,0.769664,1.206,0.75903 +L 1.206,0.75903,1.1803,0.754196 +L 1.1803,0.754196,0.7036,0.754196 +L 0.7036,0.754196,0.6115,0.876995 +L 0.6115,0.876995,0.5253,0.996893 +L 0.5253,0.996893,0.445,1.115824 +L 0.445,1.115824,0.3727,1.23185 +L 0.3727,1.23185,0.3043,1.346916 +L 0.3043,1.346916,0.2448,1.459078 +L 0.2448,1.459078,0.1903,1.569307 +L 0.1903,1.569307,0.1428,1.677598 +L 0.1428,1.677598,0.0011,2.043096 +L 0.0011,2.043096,-0.0049,3.477032 +L -0.0049,3.477032,-0.0049,3.549554 +L -0.0049,3.549554,0.0011,3.624974 +L 0.0011,3.624974,0.009,3.704261 +L 0.009,3.704261,0.0209,3.785477 +L 0.0209,3.785477,0.0348,3.870567 +L 0.0348,3.870567,0.0536,3.958558 +L 0.0536,3.958558,0.0754,4.049447 +L 0.0754,4.049447,0.1002,4.144206 +L 0.1002,4.144206,0.1586,4.366597 +L 0.1586,4.366597,0.222,4.588023 +L 0.222,4.588023,0.2894,4.807512 +L 0.2894,4.807512,0.3608,5.026035 +L 0.3608,5.026035,0.4371,5.241657 +L 0.4371,5.241657,0.5163,5.456309 +L 0.5163,5.456309,0.6006,5.669033 +L 0.6006,5.669033,0.6898,5.879824 +L 0.6898,5.879824,0.7145,5.922366 +L 0.7145,5.922366,0.7413,5.96201 +L 0.7413,5.96201,0.771,5.999722 +L 0.771,5.999722,0.8017,6.034531 +L 0.8017,6.034531,0.8334,6.067405 +L 0.8334,6.067405,0.8671,6.098344 +L 0.8671,6.098344,0.9028,6.127354 +L 0.9028,6.127354,0.9385,6.153459 +L 0.9385,6.153459,1.4062,6.45417 +L 1.6351,6.079975,1.542,6.018091 +L 1.542,6.018091,1.4558,5.964908 +L 1.4558,5.964908,1.3745,5.920434 +L 1.3745,5.920434,1.3002,5.884655 +L 1.3002,5.884655,1.2318,5.856614 +L 1.2318,5.856614,1.1704,5.837276 +L 1.1704,5.837276,1.1149,5.826638 +L 1.1149,5.826638,1.0653,5.824709 +L 1.0653,5.824709,1.0653,5.757025 +L 1.0653,5.757025,1.0614,5.697073 +L 1.0614,5.697073,1.0574,5.643894 +L 1.0574,5.643894,1.0524,5.598447 +L 1.0524,5.598447,1.0455,5.559769 +L 1.0455,5.559769,1.0376,5.528831 +L 1.0376,5.528831,1.0267,5.503689 +L 1.0267,5.503689,1.0148,5.487255 +L 1.0148,5.487255,0.9623,5.343185 +L 0.9623,5.343185,0.9117,5.201047 +L 0.9117,5.201047,0.8632,5.05891 +L 0.8632,5.05891,0.8156,4.917742 +L 0.8156,4.917742,0.77,4.777536 +L 0.77,4.777536,0.7264,4.63927 +L 0.7264,4.63927,0.6442,4.362854 +L 0.6442,4.36273,0.6263,4.289246 +L 0.6263,4.289246,0.6085,4.219626 +L 0.6085,4.219626,0.5897,4.153875 +L 0.5897,4.153875,0.5718,4.091028 +L 0.5718,4.091028,0.552,4.033011 +L 0.552,4.033011,0.5332,3.977892 +L 0.5332,3.977892,0.5144,3.926648 +L 0.5144,3.926648,0.4945,3.879269 +L 0.4945,3.879269,2.1712,3.870567 +L 2.1712,3.870567,2.1752,3.946955 +L 2.1752,3.946955,2.1791,4.025272 +L 2.1791,4.025272,2.1831,4.106496 +L 2.1831,4.106496,2.1871,4.275698 +L 2.1871,4.275707,2.1871,4.453618 +L 2.1871,4.453618,2.1841,4.545477 +L 2.1841,4.545477,2.1841,5.01153 +L 2.1841,5.01153,2.1276,5.239725 +L 2.1276,5.239725,2.0959,5.32288 +L 2.0959,5.32288,2.0642,5.402167 +L 2.0642,5.402167,2.0345,5.479516 +L 2.0345,5.479516,1.976,5.623641 +L 1.976,5.623589,1.9473,5.690307 +L 1.9473,5.690307,1.9195,5.75509 +L 1.9195,5.75509,1.8928,5.816007 +L 1.8928,5.816007,1.7352,6.044196 +L 1.7352,6.044196,1.7075,6.079975 +L 1.7075,6.079975,1.6351,6.079975 +L 0.4509,3.544717,0.4509,2.394087 +L 0.4509,2.394087,0.4579,2.045995 +L 0.4579,2.045995,0.7215,1.37979 +L 0.7215,1.37979,0.7542,1.327578 +L 0.7542,1.327578,0.8116,1.234544 +L 0.8116,1.234755,0.8394,1.195111 +L 0.8394,1.195111,0.8632,1.159332 +L 0.8632,1.159332,0.9197,1.078806 +L 0.9207,1.079079,1.0931,1.133227 +L 1.0931,1.133227,1.4062,1.334344 +L 1.4062,1.334344,1.5707,1.334344 +L 1.5707,1.334344,1.5717,1.387526 +L 1.5717,1.387526,1.5757,1.441675 +L 1.5757,1.441675,1.5816,1.496783 +L 1.5816,1.496783,1.5925,1.552871 +L 1.5925,1.552871,1.6034,1.61088 +L 1.6034,1.61088,1.6173,1.668897 +L 1.6173,1.668897,1.6351,1.729815 +L 1.6351,1.729815,1.6559,1.79073 +L 1.6559,1.79073,1.7184,1.950274 +L 1.7184,1.950274,1.7778,2.108842 +L 1.7778,2.108842,1.8323,2.26645 +L 1.8323,2.26645,1.8838,2.423093 +L 1.8838,2.423093,1.9324,2.579736 +L 1.9324,2.579736,1.977,2.734443 +L 1.977,2.734443,2.0176,2.88818 +L 2.0176,2.88818,2.0553,3.041918 +L 2.0553,3.041918,2.1544,3.536016 +L 2.1544,3.536016,0.4509,3.544717 + +[ι] 42 +L 0.3931,4.61026,1.0709,4.61026 +L 1.0709,4.61026,1.0283,4.48843 +L 1.0283,4.48843,0.9877,4.366597 +L 0.9877,4.366597,0.951,4.244762 +L 0.951,4.244762,0.9134,4.121 +L 0.9134,4.121,0.8787,3.998201 +L 0.8787,3.998201,0.846,3.87347 +L 0.846,3.87347,0.8143,3.748735 +L 0.8143,3.748735,0.7855,3.623038 +L 0.7855,3.623038,0.4853,2.171692 +L 0.4853,2.171692,0.4783,2.11755 +L 0.4783,2.11755,0.4724,2.058567 +L 0.4724,2.058567,0.4684,1.994749 +L 0.4684,1.994749,0.4645,1.927067 +L 0.4645,1.927067,0.4615,1.855515 +L 0.4615,1.855515,0.4565,1.698879 +L 0.4565,1.698872,0.4565,1.394296 +L 0.4565,1.394296,0.7499,1.028797 +L 0.7499,1.028797,0.9064,1.028797 +L 0.9064,1.028797,1.5198,1.79653 +L 1.5198,1.79653,1.6556,1.79653 +L 1.6556,1.79653,1.6556,1.357551 +L 1.6556,1.357551,1.1423,0.654604 +L 1.1423,0.654604,0.5071,0.654604 +L 0.5071,0.654604,0.0007,1.357551 +L 0.0007,1.357551,0.0017,1.505492 +L 0.0017,1.505492,0.0047,1.648595 +L 0.0047,1.648595,0.0106,1.784929 +L 0.0106,1.784929,0.0185,1.915464 +L 0.0185,1.915464,0.0285,2.040195 +L 0.0285,2.040195,0.0403,2.160092 +L 0.0403,2.160092,0.0542,2.273223 +L 0.0542,2.273223,0.0711,2.380551 +L 0.0711,2.380551,0.3446,3.805785 +L 0.3446,3.805785,0.3574,3.882172 +L 0.3574,3.882172,0.3683,3.966293 +L 0.3683,3.966293,0.3783,4.056217 +L 0.3783,4.056217,0.3852,4.152908 +L 0.3852,4.152908,0.3892,4.257335 +L 0.3892,4.257335,0.3931,4.367567 +L 0.3931,4.367567,0.3941,4.485529 +L 0.3941,4.485529,0.3931,4.61026 + +[κ] 108 +L 0.608,4.634433,1.0649,4.634433 +L 1.0649,4.634433,1.0649,3.940188 +L 1.0649,3.940188,1.0163,3.684922 +L 1.0163,3.684922,1.0014,3.650109 +L 1.0014,3.650109,0.9866,3.603699 +L 0.9866,3.603699,0.9697,3.546649 +L 0.9697,3.546649,0.9529,3.478968 +L 0.9529,3.478968,0.9162,3.311713 +L 0.9162,3.311692,0.8746,3.099953 +L 0.8756,3.099934,0.9172,3.099934 +L 0.9172,3.099934,1.5435,3.904408 +L 1.5435,3.904408,1.6267,3.972022 +L 1.6267,3.972096,1.6693,4.005937 +L 1.6693,4.005937,1.8011,4.105799 +L 1.8011,4.105529,1.8467,4.13744 +L 1.8467,4.13744,1.9319,4.199172 +L 1.9319,4.199319,1.9745,4.236061 +L 1.9745,4.236061,2.0221,4.282476 +L 2.0221,4.282476,2.0717,4.335652 +L 2.0717,4.335652,2.1271,4.398506 +L 2.1271,4.398506,2.1856,4.469088 +L 2.1856,4.469088,2.2471,4.547412 +L 2.2471,4.547412,2.3134,4.634433 +L 2.3134,4.634433,2.5493,4.634433 +L 2.5493,4.634433,2.8624,4.215758 +L 2.8624,4.215758,2.8624,3.940188 +L 2.8624,3.940188,2.5344,3.52151 +L 2.5344,3.52151,2.5027,3.559218 +L 2.5027,3.559218,2.3878,3.700223 +L 2.3878,3.700393,2.362,3.733267 +L 2.362,3.733267,2.3372,3.76421 +L 2.3372,3.76421,2.3134,3.79418 +L 2.3134,3.79418,2.2907,3.790315 +L 2.2907,3.790315,2.2669,3.784514 +L 2.2669,3.784514,2.2411,3.77484 +L 2.2411,3.77484,2.2134,3.762271 +L 2.2134,3.762271,2.1846,3.747772 +L 2.1846,3.747772,2.1529,3.729396 +L 2.1529,3.729396,2.1192,3.708129 +L 2.1192,3.708129,2.0845,3.684922 +L 2.0845,3.684922,1.9736,3.612404 +L 1.9736,3.612404,1.8646,3.534083 +L 1.8646,3.534083,1.7585,3.447057 +L 1.7585,3.447057,1.6555,3.354234 +L 1.6555,3.354234,1.5544,3.253672 +L 1.5544,3.253672,1.4553,3.145378 +L 1.4553,3.145378,1.3582,3.030318 +L 1.3582,3.030318,1.265,2.908482 +L 1.265,2.908482,1.265,2.844669 +L 1.265,2.844669,1.5504,2.844669 +L 1.5504,2.844669,1.5871,2.795358 +L 1.5871,2.795358,1.6218,2.748941 +L 1.6218,2.748941,1.6525,2.705433 +L 1.6525,2.705433,1.6812,2.66482 +L 1.6812,2.66482,1.705,2.626149 +L 1.705,2.626149,1.7258,2.59037 +L 1.7258,2.59037,1.7427,2.556529 +L 1.7427,2.556529,1.7575,2.525587 +L 1.7575,2.525587,1.7813,2.455001 +L 1.7813,2.455001,1.8051,2.385385 +L 1.8051,2.385385,1.8259,2.315762 +L 1.8259,2.315762,1.8457,2.247115 +L 1.8457,2.247115,1.8646,2.178465 +L 1.8646,2.178465,1.8824,2.110777 +L 1.8824,2.110777,1.8992,2.044059 +L 1.8992,2.044059,1.9131,1.977341 +L 1.9131,1.977341,1.9636,1.835275 +L 1.9636,1.835204,2.0231,1.657374 +L 2.0231,1.657297,2.039,1.607012 +L 2.039,1.607012,2.0637,1.520129 +L 2.0637,1.519993,2.0786,1.309202 +L 2.0786,1.309202,2.3134,1.309202 +L 2.3134,1.309202,2.7267,1.821671 +L 2.7267,1.821671,2.8624,1.821671 +L 2.8624,1.821671,2.8624,1.382689 +L 2.8624,1.382689,2.3481,0.748393 +L 2.3481,0.748393,1.9131,0.748393 +L 1.9131,0.748393,1.8437,0.855721 +L 1.8437,0.855721,1.7714,0.981418 +L 1.7714,0.981418,1.701,1.124525 +L 1.701,1.124525,1.6307,1.285032 +L 1.6307,1.285032,1.5593,1.464875 +L 1.5593,1.464875,1.49,1.66213 +L 1.49,1.66213,1.4206,1.877752 +L 1.4206,1.877752,1.3512,2.110777 +L 1.3512,2.110777,1.3304,2.167828 +L 1.3304,2.167828,1.3086,2.223909 +L 1.3086,2.223909,1.2819,2.27999 +L 1.2819,2.27999,1.2522,2.33607 +L 1.2522,2.33607,1.2195,2.392154 +L 1.2195,2.392154,1.1838,2.447263 +L 1.1838,2.447263,1.1441,2.503343 +L 1.1441,2.503343,1.1005,2.557496 +L 1.1005,2.557496,0.9331,2.76828 +L 0.9331,2.76828,0.8915,2.705433 +L 0.8915,2.705433,0.8518,2.627115 +L 0.8518,2.627115,0.8142,2.533319 +L 0.8142,2.533319,0.7755,2.423093 +L 0.7755,2.423093,0.7379,2.298359 +L 0.7379,2.298359,0.7012,2.156221 +L 0.7012,2.156221,0.6655,1.999585 +L 0.6655,1.999585,0.6308,1.827472 +L 0.6308,1.827472,0.4733,1.133227 +L 0.4733,1.133227,0.4733,0.748393 +L 0.4733,0.748393,0.0016,0.748393 +L 0.0016,0.748393,0.4515,3.282682 +L 0.4515,3.282682,0.608,4.122935 +L 0.608,4.122935,0.608,4.634433 + +[λ] 95 +L 0.9367,6.45417,1.5649,6.45417 +L 1.5649,6.45417,2.0733,5.792801 +L 2.0733,5.792801,2.0733,2.319633 +L 2.0733,2.319633,2.3438,1.631189 +L 2.3438,1.631189,2.3725,1.58381 +L 2.3725,1.58381,2.4023,1.538366 +L 2.4023,1.538366,2.4607,1.454343 +L 2.4607,1.454244,2.4895,1.415567 +L 2.4895,1.415567,2.5182,1.377855 +L 2.5182,1.377855,2.5777,1.309233 +L 2.5777,1.309202,2.7382,1.309202 +L 2.7382,1.309202,3.0315,1.6747 +L 3.0315,1.6747,3.0315,2.076934 +L 3.0315,2.076934,3.305,2.076934 +L 3.305,2.076934,3.305,1.382689 +L 3.305,1.382689,2.7759,0.748393 +L 2.7759,0.748393,2.327,0.748393 +L 2.327,0.748393,2.2754,0.817044 +L 2.2754,0.817044,2.2269,0.887629 +L 2.2269,0.887629,2.1803,0.958215 +L 2.1803,0.958215,2.1367,1.029767 +L 2.1367,1.029767,2.0961,1.102282 +L 2.0961,1.102282,2.0574,1.175769 +L 2.0574,1.175769,2.0218,1.249253 +L 2.0218,1.249253,1.99,1.324676 +L 1.99,1.324676,1.7988,1.808136 +L 1.7988,1.808136,1.7988,3.562124 +L 1.7988,3.562124,1.7483,3.562124 +L 1.7483,3.562124,1.6967,3.485734 +L 1.6967,3.485734,1.6462,3.408379 +L 1.6462,3.408379,1.5986,3.328129 +L 1.5986,3.328129,1.554,3.24691 +L 1.554,3.24691,1.5124,3.163754 +L 1.5124,3.163754,1.4708,3.07866 +L 1.4708,3.07866,1.4341,2.99261 +L 1.4341,2.99261,1.3994,2.904614 +L 1.3994,2.904614,0.8435,1.47938 +L 0.8435,1.47938,0.8178,1.423299 +L 0.8178,1.423299,0.79,1.366255 +L 0.79,1.366255,0.7573,1.308239 +L 0.7573,1.308239,0.7216,1.24829 +L 0.7216,1.24829,0.682,1.187375 +L 0.682,1.187375,0.6394,1.124525 +L 0.6394,1.124525,0.5938,1.060709 +L 0.5938,1.060709,0.5433,0.994954 +L 0.5433,0.994954,0.351,0.748393 +L 0.351,0.748393,0.0002,0.748393 +L 0.0002,0.748393,0.0002,1.189308 +L 0.0002,1.189308,0.0795,1.294704 +L 0.0795,1.294704,0.1528,1.401062 +L 0.1528,1.401062,0.2222,1.510325 +L 0.2222,1.510325,0.2856,1.621517 +L 0.2856,1.621517,0.3471,1.735614 +L 0.3471,1.735614,0.4016,1.851647 +L 0.4016,1.851647,0.4531,1.969609 +L 0.4531,1.969609,0.5007,2.090476 +L 0.5007,2.090476,0.569,2.257854 +L 0.569,2.257749,0.6344,2.409678 +L 0.6344,2.409558,0.6939,2.546824 +L 0.6939,2.546862,0.7494,2.66874 +L 0.7504,2.668691,0.787,2.713169 +L 0.787,2.713169,0.8247,2.76828 +L 0.8247,2.76828,0.8653,2.834035 +L 0.8653,2.834035,0.9069,2.910418 +L 0.9069,2.910418,0.9506,2.996474 +L 0.9506,2.996474,0.9971,3.094131 +L 0.9971,3.094131,1.0427,3.202429 +L 1.0427,3.202429,1.0923,3.320394 +L 1.0923,3.320394,1.2419,3.550517 +L 1.2419,3.550517,1.2795,3.623038 +L 1.2795,3.623038,1.3162,3.698458 +L 1.3162,3.698458,1.3519,3.776776 +L 1.3519,3.776776,1.3866,3.857999 +L 1.3866,3.857999,1.4212,3.94212 +L 1.4212,3.94212,1.4549,4.030108 +L 1.4549,4.030108,1.4876,4.12003 +L 1.4876,4.12003,1.5213,4.212857 +L 1.5213,4.212857,1.7562,4.799776 +L 1.7562,4.799776,1.7988,5.029903 +L 1.7988,5.029903,1.7978,5.076313 +L 1.7978,5.076313,1.7958,5.119821 +L 1.7958,5.119821,1.7919,5.160434 +L 1.7919,5.160434,1.7859,5.197176 +L 1.7859,5.197176,1.778,5.23102 +L 1.778,5.23102,1.7691,5.261959 +L 1.7691,5.261959,1.7592,5.289999 +L 1.7592,5.289999,1.7463,5.314172 +L 1.7463,5.314172,1.6165,5.681605 +L 1.6165,5.681605,1.6165,5.893356 +L 1.6165,5.893356,0.9823,5.893356 +L 0.9823,5.893356,0.7028,5.527865 +L 0.7028,5.527865,0.7028,5.125628 +L 0.7028,5.125628,0.4293,5.125628 +L 0.4293,5.125628,0.4293,5.819872 +L 0.4293,5.819872,0.9367,6.45417 + +[μ] 122 +L 1.3059,4.649901,1.4219,4.646851 +L 1.4219,4.647006,1.4635,4.64507 +L 1.4635,4.64507,1.6032,4.635981 +L 1.6032,4.636368,1.6528,4.631534 +L 1.6528,4.631534,1.6528,4.238965 +L 1.6528,4.238965,1.6518,4.201254 +L 1.6518,4.201254,1.6498,4.162576 +L 1.6498,4.162576,1.6429,4.122935 +L 1.6429,4.122935,1.6349,4.081359 +L 1.6349,4.081359,1.626,4.038814 +L 1.626,4.038814,1.6003,3.947791 +L 1.5993,3.947922,1.5834,3.901511 +L 1.5834,3.901511,1.5319,3.76324 +L 1.5319,3.76324,1.4803,3.627872 +L 1.4803,3.627872,1.4328,3.495406 +L 1.4328,3.495406,1.3892,3.364871 +L 1.3892,3.364871,1.3466,3.237238 +L 1.3466,3.237238,1.3069,3.111541 +L 1.3069,3.111541,1.2703,2.989708 +L 1.2703,2.989708,1.2346,2.868842 +L 1.2346,2.868842,1.2059,2.755714 +L 1.2059,2.755714,1.1533,2.547877 +L 1.1533,2.547827,1.1078,2.365139 +L 1.1087,2.365077,1.0889,2.282891 +L 1.0889,2.282891,1.0582,2.138725 +L 1.0572,2.138818,1.0572,1.689205 +L 1.0572,1.689205,1.5269,1.096485 +L 1.5269,1.096485,1.6161,1.210582 +L 1.6161,1.210582,1.7003,1.325642 +L 1.7003,1.325642,1.7776,1.441675 +L 1.7776,1.441675,1.849,1.557704 +L 1.849,1.557704,1.9124,1.6747 +L 1.9124,1.6747,1.9709,1.792665 +L 1.9709,1.792665,2.0204,1.91063 +L 2.0204,1.91063,2.065,2.028591 +L 2.065,2.028591,2.1185,2.16396 +L 2.1185,2.16396,2.1681,2.301264 +L 2.1681,2.301264,2.2146,2.440496 +L 2.2146,2.440496,2.2582,2.580698 +L 2.2582,2.580698,2.2989,2.723806 +L 2.2989,2.723806,2.3355,2.867876 +L 2.3355,2.867876,2.3682,3.013878 +L 2.3682,3.013878,2.3989,3.161819 +L 2.3989,3.161819,2.6328,4.165478 +L 2.6328,4.165478,2.6566,4.227359 +L 2.6566,4.227359,2.6843,4.288273 +L 2.6843,4.288273,2.7121,4.349194 +L 2.7121,4.349194,2.7448,4.41011 +L 2.7448,4.41011,2.7785,4.470057 +L 2.7785,4.470057,2.8151,4.530006 +L 2.8151,4.530006,2.8538,4.589951 +L 2.8538,4.589951,2.8954,4.649901 +L 2.8954,4.649901,3.2432,4.640236 +L 3.2432,4.640236,3.2432,4.539675 +L 3.2432,4.539675,3.2403,4.442017 +L 3.2403,4.442017,3.2353,4.348224 +L 3.2353,4.348224,3.2274,4.257335 +L 3.2274,4.257335,3.2165,4.170314 +L 3.2165,4.170314,3.2016,4.086193 +L 3.2016,4.086193,3.1858,4.005937 +L 3.1858,4.005937,3.1649,3.928584 +L 3.1649,3.928584,2.7398,2.284826 +L 2.7398,2.284826,2.716,2.180394 +L 2.716,2.180394,2.6972,2.075971 +L 2.6972,2.075971,2.6814,1.969609 +L 2.6814,1.969609,2.6695,1.861313 +L 2.6695,1.861313,2.6625,1.752055 +L 2.6625,1.752055,2.6576,1.641826 +L 2.6576,1.641826,2.6576,1.529664 +L 2.6576,1.529664,2.6615,1.416533 +L 2.6615,1.416533,2.9172,1.096485 +L 2.9172,1.096485,3.378,1.689205 +L 3.378,1.689205,3.378,2.091439 +L 3.378,2.091439,3.6515,2.091439 +L 3.6515,2.091439,3.6515,1.397194 +L 3.6515,1.397194,3.1382,0.739691 +L 3.1382,0.739691,2.7032,0.739691 +L 2.7032,0.739691,2.39,1.141929 +L 2.39,1.141929,2.3821,1.762689 +L 2.3821,1.762689,2.2543,1.762689 +L 2.2543,1.762689,2.2543,1.397194 +L 2.2543,1.397194,1.74,0.739691 +L 1.74,0.739691,1.3059,0.739691 +L 1.3059,0.739691,0.7926,1.397194 +L 0.7926,1.397194,0.7847,1.762689 +L 0.7847,1.762689,0.6559,1.762689 +L 0.6559,1.762689,0.6559,1.160298 +L 0.6559,1.160298,0.6559,1.085848 +L 0.6559,1.085848,0.649,1.009459 +L 0.649,1.009459,0.642,0.930172 +L 0.642,0.930172,0.6301,0.847982 +L 0.6301,0.847982,0.6153,0.762898 +L 0.6153,0.762898,0.5964,0.675873 +L 0.5964,0.675873,0.5746,0.585951 +L 0.5746,0.585951,0.5499,0.494094 +L 0.5499,0.494094,0.5281,0.40417 +L 0.5281,0.40417,0.5092,0.312316 +L 0.5092,0.312316,0.4934,0.21852 +L 0.4934,0.21852,0.4805,0.123762 +L 0.4805,0.123762,0.4696,0.026108 +L 0.4696,0.026108,0.4627,-0.072521 +L 0.4627,-0.072521,0.4577,-0.173076 +L 0.4577,-0.173076,0.4577,-0.274605 +L 0.4577,-0.274605,0.0009,-0.264936 +L 0.0009,-0.264936,0.0019,-0.169215 +L 0.0019,-0.169215,0.0039,-0.080253 +L 0.0039,-0.080253,0.0068,0.002898 +L 0.0068,0.002898,0.0138,0.080253 +L 0.0138,0.080253,0.0197,0.151802 +L 0.0197,0.151802,0.0286,0.21659 +L 0.0286,0.21659,0.0375,0.275571 +L 0.0375,0.275571,0.0494,0.328752 +L 0.0494,0.328752,0.7877,3.179225 +L 0.7877,3.179225,1.0443,4.165478 +L 1.0443,4.165478,1.0681,4.227359 +L 1.0681,4.227359,1.0939,4.288273 +L 1.0939,4.288273,1.1236,4.349194 +L 1.1236,4.349194,1.1553,4.41011 +L 1.1553,4.41011,1.19,4.470057 +L 1.19,4.470057,1.2257,4.530006 +L 1.2257,4.530006,1.2643,4.589951 +L 1.2643,4.589951,1.3059,4.649901 + +[ν] 65 +L 0.3137,4.676978,0.9479,4.676978 +L 0.9479,4.676978,1.0063,4.592856 +L 1.0063,4.592856,1.0598,4.5068 +L 1.0598,4.5068,1.1104,4.421709 +L 1.1104,4.421709,1.1589,4.33469 +L 1.1589,4.33469,1.2055,4.247666 +L 1.2055,4.247666,1.2491,4.159677 +L 1.2491,4.159677,1.2887,4.071689 +L 1.2887,4.071689,1.3244,3.982729 +L 1.3244,3.982729,1.4602,3.617235 +L 1.4602,3.617235,1.4602,1.873881 +L 1.4602,1.873881,1.5246,1.882583 +L 1.5246,1.882583,2.1667,2.704467 +L 2.1667,2.704467,2.2103,2.76828 +L 2.2103,2.76828,2.2509,2.834998 +L 2.2509,2.834998,2.2896,2.902686 +L 2.2896,2.902686,2.3253,2.971336 +L 2.3253,2.971336,2.359,3.041918 +L 2.359,3.041918,2.3907,3.114439 +L 2.3907,3.114439,2.4184,3.187926 +L 2.4184,3.187926,2.4442,3.262374 +L 2.4442,3.262374,2.4828,3.352298 +L 2.4828,3.352298,2.5145,3.438355 +L 2.5145,3.438355,2.5423,3.520541 +L 2.5423,3.520541,2.5621,3.600798 +L 2.5621,3.600798,2.578,3.676221 +L 2.578,3.676221,2.5869,3.748735 +L 2.5869,3.748735,2.5898,3.818352 +L 2.5898,3.818352,2.5879,3.88314 +L 2.5879,3.88314,2.5294,4.062844 +L 2.5294,4.062987,2.5016,4.157746 +L 2.5016,4.157746,2.4779,4.2554 +L 2.4779,4.2554,2.4531,4.35596 +L 2.4531,4.35596,2.4303,4.460386 +L 2.4303,4.460386,2.4085,4.566751 +L 2.4085,4.566751,2.3877,4.676978 +L 2.3877,4.676978,2.7444,4.676978 +L 2.7444,4.676978,3.0586,4.221562 +L 3.0586,4.221562,3.0595,4.121969 +L 3.0595,4.121969,3.0566,4.027211 +L 3.0566,4.027211,3.0486,3.935354 +L 3.0486,3.935354,3.0368,3.846396 +L 3.0368,3.846396,3.0209,3.761308 +L 3.0209,3.761308,2.9991,3.680082 +L 2.9991,3.680082,2.9743,3.601767 +L 2.9743,3.601767,2.9446,3.527314 +L 2.9446,3.527314,2.4382,2.220041 +L 2.4382,2.220041,2.4085,2.158156 +L 2.4085,2.158156,2.3728,2.090476 +L 2.3728,2.090476,2.3292,2.016989 +L 2.3292,2.016989,2.2797,1.937701 +L 2.2797,1.937701,2.2212,1.852611 +L 2.2212,1.852611,2.1558,1.76172 +L 2.1558,1.76172,2.0825,1.665032 +L 2.0825,1.665032,2.0022,1.562538 +L 2.0022,1.562538,1.3284,0.704882 +L 1.3284,0.704882,1.0043,1.123556 +L 1.0043,1.123556,1.0043,3.937285 +L 1.0043,3.937285,0.714,4.302779 +L 0.714,4.302779,0.5584,4.302779 +L 0.5584,4.302779,0.274,3.937285 +L 0.274,3.937285,0.274,3.279784 +L 0.274,3.279784,0.0005,3.279784 +L 0.0005,3.279784,0.0005,4.230263 +L 0.0005,4.230263,0.3137,4.676978 + +[ξ] 178 +L 0.9237,6.735546,1.872,6.735546 +L 1.872,6.735546,1.874,6.645618 +L 1.874,6.645618,1.874,6.476412 +L 1.874,6.476412,1.8701,6.318806 +L 1.8701,6.318802,1.8671,6.24435 +L 1.8671,6.24435,1.8631,6.173767 +L 1.8631,6.173767,1.8582,6.105113 +L 1.8582,6.105113,1.8007,6.105113 +L 1.8007,6.105113,1.7442,6.110914 +L 1.7442,6.110914,1.6877,6.120585 +L 1.6877,6.120585,1.6322,6.135089 +L 1.6322,6.135089,1.5748,6.154425 +L 1.5748,6.154425,1.5193,6.179567 +L 1.5193,6.179567,1.4638,6.208573 +L 1.4638,6.208573,1.4083,6.242415 +L 1.4083,6.242415,1.2299,6.361345 +L 1.2299,6.361345,1.1586,6.361345 +L 1.1586,6.361345,0.889,6.01422 +L 0.889,6.01422,0.9336,5.960074 +L 0.9336,5.960074,0.9822,5.908827 +L 0.9822,5.908827,1.0327,5.861448 +L 1.0327,5.861448,1.0852,5.816974 +L 1.0852,5.816974,1.1417,5.77733 +L 1.1417,5.77733,1.1992,5.740582 +L 1.1992,5.740582,1.2596,5.70771 +L 1.2596,5.70771,1.3221,5.678704 +L 1.3221,5.678704,1.9226,5.424405 +L 1.9226,5.424405,2.6707,5.413768 +L 2.6707,5.413768,2.6707,4.822983 +L 2.6707,4.822983,2.0722,4.950616 +L 2.0722,4.950616,1.986,4.982524 +L 1.986,4.982524,1.9028,5.009595 +L 1.9028,5.009595,1.8215,5.033767 +L 1.8215,5.033767,1.7442,5.052143 +L 1.7442,5.052143,1.6689,5.067611 +L 1.6689,5.067611,1.5966,5.078248 +L 1.5966,5.078248,1.5262,5.084052 +L 1.5262,5.084052,1.4588,5.08695 +L 1.4588,5.08695,0.9237,4.750466 +L 0.9237,4.750466,0.889,4.71372 +L 0.889,4.71372,0.8544,4.676978 +L 0.8544,4.676978,0.7899,4.602623 +L 0.7899,4.602522,0.7582,4.564816 +L 0.7582,4.564816,0.7008,4.489396 +L 0.7008,4.489396,0.674,4.450719 +L 0.674,4.450719,0.674,4.250569 +L 0.674,4.250569,0.7691,4.130671 +L 0.7691,4.130671,0.8613,4.022374 +L 0.8613,4.022374,0.9544,3.924717 +L 0.9544,3.924717,1.0476,3.83866 +L 1.0476,3.83866,1.1378,3.76324 +L 1.1378,3.76324,1.2289,3.699421 +L 1.2289,3.699421,1.3191,3.646245 +L 1.3191,3.646245,1.4083,3.604669 +L 1.4083,3.604669,1.8364,3.421921 +L 1.8364,3.421921,1.8651,3.411284 +L 1.8651,3.411284,1.8998,3.401613 +L 1.8998,3.401613,1.9424,3.393878 +L 1.9424,3.393878,1.991,3.388078 +L 1.991,3.388078,2.0474,3.383244 +L 2.0474,3.383244,2.1099,3.379376 +L 2.1099,3.379376,2.1812,3.37744 +L 2.1812,3.37744,2.2575,3.376475 +L 2.2575,3.376475,2.4716,3.376475 +L 2.4716,3.376475,2.4735,3.220798 +L 2.4735,3.220798,2.4706,3.070931 +L 2.4716,3.070928,2.4696,2.999372 +L 2.4696,2.999372,2.4666,2.928793 +L 2.4666,2.928793,2.4626,2.86014 +L 2.4626,2.86014,2.4567,2.793425 +L 2.4567,2.793425,2.3804,2.792452 +L 2.3804,2.792452,2.3081,2.794392 +L 2.3081,2.794392,2.2407,2.799225 +L 2.2407,2.799225,2.1773,2.806957 +L 2.1773,2.806957,2.1178,2.817594 +L 2.1178,2.817594,2.0623,2.83113 +L 2.0623,2.83113,2.0118,2.84757 +L 2.0118,2.84757,1.9642,2.865943 +L 1.9642,2.865943,1.544,3.048691 +L 1.544,3.048691,0.8098,2.730575 +L 0.8098,2.730575,0.7632,2.701562 +L 0.7632,2.701562,0.7186,2.670626 +L 0.7186,2.670626,0.674,2.636779 +L 0.674,2.636779,0.6304,2.600037 +L 0.6304,2.600037,0.5878,2.56136 +L 0.5878,2.56136,0.5462,2.519787 +L 0.5462,2.519787,0.5055,2.476276 +L 0.5055,2.476276,0.4669,2.428896 +L 0.4669,2.428896,0.4748,2.102076 +L 0.4748,2.102076,0.5155,2.10014 +L 0.5155,2.10014,0.5551,2.096276 +L 0.5551,2.096276,0.5937,2.090476 +L 0.5937,2.090476,0.6324,2.081771 +L 0.6324,2.081771,0.67,2.070171 +L 0.67,2.070171,0.7077,2.055666 +L 0.7077,2.055666,0.7444,2.039228 +L 0.7444,2.039228,0.781,2.01989 +L 0.781,2.01989,0.9069,1.945437 +L 0.9069,1.945437,1.0317,1.874851 +L 1.0317,1.874851,1.1546,1.809099 +L 1.1546,1.809099,1.2775,1.74915 +L 1.2775,1.74915,1.3964,1.694039 +L 1.3964,1.694039,1.5173,1.642792 +L 1.5173,1.642792,1.6342,1.597348 +L 1.6342,1.597348,1.7878,1.543961 +L 1.7878,1.544162,1.8255,1.529664 +L 1.8255,1.529664,1.8661,1.513226 +L 1.8661,1.513226,1.9077,1.494851 +L 1.9077,1.494851,1.9513,1.474549 +L 1.9513,1.474549,2.0445,1.428434 +L 2.0435,1.428136,2.094,1.402032 +L 2.094,1.402032,2.2724,1.193172 +L 2.2724,1.193172,2.2724,0.391603 +L 2.2724,0.391603,1.7581,-0.256235 +L 1.7581,-0.256235,1.1378,-0.256235 +L 1.1378,-0.256235,1.0952,-0.254299 +L 1.0952,-0.254299,1.0545,-0.250431 +L 1.0545,-0.250431,1.0188,-0.242699 +L 1.0188,-0.242699,0.9861,-0.233028 +L 0.9861,-0.233028,0.9564,-0.21949 +L 0.9564,-0.21949,0.9297,-0.204022 +L 0.9297,-0.204022,0.9079,-0.185649 +L 0.9079,-0.185649,0.889,-0.163409 +L 0.889,-0.163409,0.6155,0 +L 0.6155,0,0.4005,0 +L 0.4005,0,0.4005,0.073487 +L 0.4005,0.073487,0.4015,0.21659 +L 0.4015,0.21659,0.4084,0.42544 +L 0.4084,0.42544,0.4104,0.494094 +L 0.4104,0.494094,0.4144,0.560812 +L 0.4144,0.560812,0.4768,0.560812 +L 0.4768,0.560812,0.5323,0.558876 +L 0.5323,0.558876,0.5789,0.555005 +L 0.5789,0.555005,0.6195,0.550174 +L 0.6195,0.550174,0.6522,0.543408 +L 0.6522,0.543408,0.678,0.535673 +L 0.678,0.535673,0.6958,0.526972 +L 0.6958,0.526972,0.7067,0.516332 +L 0.7067,0.516332,1.2636,0.169211 +L 1.2636,0.169211,1.3151,0.135368 +L 1.3151,0.135368,1.3607,0.106358 +L 1.3607,0.106358,1.4004,0.083154 +L 1.4004,0.083154,1.435,0.064783 +L 1.435,0.064783,1.4618,0.051247 +L 1.4618,0.051247,1.4826,0.042545 +L 1.4826,0.042545,1.4965,0.038678 +L 1.4965,0.038678,1.5054,0.04061 +L 1.5054,0.04061,1.7987,0.414803 +L 1.7987,0.414803,1.7908,1.002692 +L 1.7908,1.002692,1.7274,1.001727 +L 1.7274,1.001727,1.6649,1.004628 +L 1.6649,1.004628,1.6025,1.010428 +L 1.6025,1.010428,1.5431,1.021065 +L 1.5431,1.021065,1.4836,1.033631 +L 1.4836,1.033631,1.4261,1.051034 +L 1.4261,1.051034,1.3687,1.071343 +L 1.3687,1.071343,1.3132,1.09455 +L 1.3132,1.09455,0.4292,1.50742 +L 0.4292,1.50742,0.3787,1.541267 +L 0.3787,1.541267,0.3262,1.580904 +L 0.3262,1.580904,0.2747,1.625388 +L 0.2747,1.625388,0.2221,1.6747 +L 0.2221,1.6747,0.1676,1.728848 +L 0.1676,1.728848,0.1131,1.787825 +L 0.1131,1.787825,0.0566,1.851647 +L 0.0566,1.851647,0.0012,1.920298 +L 0.0012,1.920298,0.0012,2.471439 +L 0.0012,2.471439,0.5145,3.133778 +L 0.5145,3.133778,1,3.14248 +L 1,3.14248,1,3.207265 +L 1,3.207265,0.4005,3.978866 +L 0.4005,3.978866,0.4005,4.787208 +L 0.4005,4.787208,0.7236,5.191376 +L 0.7236,5.191376,1.0089,5.200081 +L 1.0089,5.200081,1.0089,5.264864 +L 1.0089,5.264864,0.6076,5.779259 +L 0.6076,5.779259,0.6076,6.330407 +L 0.6076,6.330407,0.9237,6.735546 + +[ο] 152 +L 1.4198,4.649901,1.8291,4.649901 +L 1.8291,4.649901,1.9153,4.59866 +L 1.9153,4.59866,2.0005,4.546441 +L 2.0005,4.546441,2.0857,4.492296 +L 2.0857,4.492296,2.171,4.437183 +L 2.171,4.437183,2.2542,4.381102 +L 2.2542,4.381102,2.3384,4.323086 +L 2.3384,4.323086,2.4217,4.263137 +L 2.4217,4.263137,2.5029,4.202223 +L 2.5029,4.202223,2.5445,4.119068 +L 2.5445,4.119068,2.6179,3.961277 +L 2.6189,3.961459,2.6843,3.815632 +L 2.6843,3.815454,2.714,3.7468 +L 2.714,3.7468,2.7427,3.681054 +L 2.7427,3.681054,2.7675,3.617235 +L 2.7675,3.617235,2.7933,3.550517 +L 2.7933,3.550517,2.8151,3.486704 +L 2.8151,3.486704,2.8329,3.426755 +L 2.8329,3.426755,2.8478,3.368739 +L 2.8478,3.368739,2.8587,3.31459 +L 2.8587,3.31459,2.8666,3.263346 +L 2.8666,3.263346,2.8686,3.215001 +L 2.8686,3.215001,2.8686,2.566197 +L 2.8686,2.566197,2.6189,1.919332 +L 2.6189,1.919332,2.5891,1.861313 +L 2.5891,1.861313,2.5584,1.804268 +L 2.5584,1.804268,2.5247,1.746252 +L 2.5247,1.746252,2.4871,1.688235 +L 2.4871,1.688235,2.4474,1.629256 +L 2.4474,1.629256,2.4048,1.57124 +L 2.4048,1.57124,2.3582,1.512254 +L 2.3582,1.512254,2.2482,1.377824 +L 2.2482,1.377855,2.1878,1.307273 +L 2.1878,1.307273,2.1274,1.241521 +L 2.1274,1.241521,2.0689,1.180606 +L 2.0689,1.180606,2.0104,1.124525 +L 2.0104,1.124525,1.9529,1.074241 +L 1.9529,1.074241,1.8984,1.027834 +L 1.8984,1.027834,1.8439,0.986253 +L 1.8439,0.986253,1.4416,0.739691 +L 1.4416,0.739691,1.0046,0.749363 +L 1.0046,0.749363,0.531,1.051034 +L 0.531,1.051034,0.4784,1.098414 +L 0.4784,1.098414,0.4259,1.158362 +L 0.4259,1.158362,0.3724,1.230884 +L 0.3724,1.230884,0.3179,1.315008 +L 0.3179,1.315008,0.2624,1.412662 +L 0.2624,1.412662,0.2079,1.523861 +L 0.2079,1.523861,0.1514,1.64666 +L 0.1514,1.64666,0.0939,1.782028 +L 0.0939,1.782028,0.0712,1.846813 +L 0.0712,1.846813,0.0503,1.90966 +L 0.0503,1.90966,0.0325,1.969609 +L 0.0325,1.969609,0.0186,2.027626 +L 0.0186,2.027626,0.0077,2.083706 +L 0.0077,2.083706,0.0008,2.137855 +L 0.0008,2.137855,-0.0051,2.189102 +L -0.0051,2.189102,-0.0071,2.237447 +L -0.0071,2.237447,0.0008,2.850472 +L 0.0008,2.850472,0.0682,3.017748 +L 0.0682,3.017748,0.1326,3.172456 +L 0.1326,3.172456,0.196,3.315556 +L 0.196,3.315556,0.2575,3.446094 +L 0.2575,3.446094,0.3159,3.564052 +L 0.3159,3.564052,0.3734,3.670417 +L 0.3734,3.670417,0.4289,3.76421 +L 0.4289,3.76421,0.4814,3.84543 +L 0.4814,3.84543,0.5696,3.950822 +L 0.5696,3.950822,0.6568,4.048479 +L 0.6568,4.048479,0.741,4.138407 +L 0.741,4.138407,0.8243,4.220593 +L 0.8243,4.220593,0.9045,4.294077 +L 0.9045,4.294077,0.9828,4.359828 +L 0.9828,4.359828,1.0591,4.416876 +L 1.0591,4.416876,1.1344,4.467156 +L 1.1344,4.467156,1.4198,4.649901 +L 1.6249,4.302779,1.4842,4.210924 +L 1.4842,4.210924,1.3564,4.122935 +L 1.3564,4.122935,1.2434,4.038814 +L 1.2434,4.038814,1.1453,3.958558 +L 1.1453,3.958558,1.0591,3.881204 +L 1.0591,3.881204,0.9878,3.808688 +L 0.9878,3.808688,0.9313,3.739068 +L 0.9313,3.739068,0.8877,3.673316 +L 0.8877,3.673316,0.4725,2.602942 +L 0.4725,2.602942,0.4675,2.584569 +L 0.4675,2.584569,0.4626,2.562332 +L 0.4626,2.562332,0.4586,2.534289 +L 0.4586,2.534289,0.4556,2.501415 +L 0.4556,2.501415,0.4517,2.421158 +L 0.4517,2.421158,0.4497,2.321565 +L 0.4497,2.321568,0.4507,2.258718 +L 0.4507,2.258718,0.4537,2.200702 +L 0.4537,2.200702,0.4586,2.147519 +L 0.4586,2.147519,0.4646,2.097242 +L 0.4646,2.097242,0.4725,2.050829 +L 0.4725,2.050829,0.4824,2.009253 +L 0.4824,2.009253,0.4953,1.970575 +L 0.4953,1.970575,0.5082,1.936735 +L 0.5082,1.936735,0.5428,1.845841 +L 0.5428,1.845841,0.5726,1.759791 +L 0.5726,1.759791,0.5973,1.679534 +L 0.5973,1.679534,0.6182,1.603148 +L 0.6182,1.603148,0.633,1.532562 +L 0.633,1.532562,0.6449,1.46778 +L 0.6449,1.46778,0.6518,1.406865 +L 0.6518,1.406865,0.6538,1.35175 +L 0.6538,1.35175,0.8213,1.334344 +L 0.8213,1.334344,1.2306,1.079079 +L 1.2306,1.079079,1.3752,1.168037 +L 1.3752,1.168037,1.5031,1.25409 +L 1.5031,1.25409,1.616,1.336279 +L 1.616,1.336279,1.7141,1.414597 +L 1.7141,1.414597,1.7964,1.489054 +L 1.7964,1.489054,1.8638,1.559633 +L 1.8638,1.559633,1.9163,1.626355 +L 1.9163,1.626355,1.9529,1.689205 +L 1.9529,1.689205,2.386,2.782952 +L 2.387,2.782788,2.3949,2.809862 +L 2.3949,2.809862,2.4018,2.842737 +L 2.4018,2.842737,2.4078,2.880442 +L 2.4078,2.880442,2.4108,2.922024 +L 2.4108,2.922024,2.4137,2.969403 +L 2.4137,2.969403,2.4137,3.021616 +L 2.4137,3.021616,2.4118,3.138612 +L 2.4108,3.138612,2.4098,3.194693 +L 2.4098,3.194693,2.4048,3.247875 +L 2.4048,3.247875,2.3979,3.298153 +L 2.3979,3.298153,2.3909,3.344566 +L 2.3909,3.344566,2.3791,3.387108 +L 2.3791,3.387108,2.3682,3.426755 +L 2.3682,3.426755,2.3543,3.462531 +L 2.3543,3.462531,2.3216,3.551486 +L 2.3216,3.551486,2.2938,3.636574 +L 2.2938,3.636574,2.2691,3.715861 +L 2.2691,3.715861,2.2492,3.791281 +L 2.2492,3.791281,2.2324,3.861866 +L 2.2324,3.861866,2.2205,3.928584 +L 2.2205,3.928584,2.2126,3.990463 +L 2.2126,3.990463,2.2086,4.047516 +L 2.2086,4.047516,2.161,4.048479 +L 2.161,4.048479,2.1174,4.051382 +L 2.1174,4.051382,2.0778,4.057181 +L 2.0778,4.057181,2.0421,4.065888 +L 2.0421,4.065888,2.0104,4.075556 +L 2.0104,4.075556,1.9827,4.088126 +L 1.9827,4.088126,1.9589,4.103596 +L 1.9589,4.103596,1.9391,4.12003 +L 1.9391,4.12003,1.8509,4.168952 +L 1.8509,4.169343,1.7686,4.217124 +L 1.7686,4.216722,1.6933,4.26114 +L 1.6933,4.261206,1.6249,4.303088 + +[π] 78 +L 3.6174,4.933212,3.66,4.907104 +L 3.66,4.907104,3.66,4.750466 +L 3.66,4.750466,3.1457,4.116166 +L 3.1457,4.116166,2.4619,4.116166 +L 2.4619,4.116166,2.46,3.963394 +L 2.46,3.963394,2.456,3.814486 +L 2.456,3.814486,2.45,3.669452 +L 2.45,3.669452,2.4421,3.527314 +L 2.4421,3.527314,2.4312,3.388078 +L 2.4312,3.388078,2.4164,3.253672 +L 2.4164,3.253672,2.4015,3.121208 +L 2.4015,3.121208,2.3837,2.993576 +L 2.3837,2.993576,2.3569,2.81953 +L 2.3569,2.81953,2.3331,2.648386 +L 2.3331,2.648386,2.3133,2.480144 +L 2.3133,2.480144,2.2955,2.314799 +L 2.2955,2.314799,2.2816,2.153323 +L 2.2816,2.153323,2.2717,1.993782 +L 2.2717,1.993782,2.2657,1.837139 +L 2.2657,1.837139,2.2618,1.683402 +L 2.2618,1.683402,2.5551,1.309202 +L 2.5551,1.309202,2.7107,1.309202 +L 2.7107,1.309202,3.1249,1.821671 +L 3.1249,1.821671,3.2606,1.821671 +L 3.2606,1.821671,3.2606,1.382689 +L 3.2606,1.382689,2.7463,0.748393 +L 2.7463,0.748393,2.3123,0.748393 +L 2.3123,0.748393,1.798,1.432001 +L 1.798,1.432001,1.799,1.556735 +L 1.799,1.556735,1.803,1.675663 +L 1.803,1.675663,1.8089,1.787825 +L 1.8089,1.787825,1.8178,1.89322 +L 1.8178,1.89322,1.8297,1.993782 +L 1.8297,1.993782,1.8426,2.087574 +L 1.8426,2.087574,1.8575,2.17556 +L 1.8575,2.17556,1.8773,2.256783 +L 1.8773,2.256783,2.1904,3.477032 +L 2.1904,3.477032,2.1983,4.116166 +L 2.1983,4.116166,1.4631,4.116166 +L 1.4631,4.116166,1.4561,3.477032 +L 1.4561,3.477032,0.9993,1.710472 +L 0.9993,1.710472,0.9498,1.557704 +L 0.9498,1.557704,0.8992,1.414597 +L 0.8992,1.414597,0.8457,1.280198 +L 0.8457,1.280198,0.7912,1.155467 +L 0.7912,1.155467,0.7337,1.039434 +L 0.7337,1.039434,0.6743,0.933076 +L 0.6743,0.933076,0.6128,0.836382 +L 0.6128,0.836382,0.5494,0.748393 +L 0.5494,0.748393,0.2006,0.748393 +L 0.2006,0.748393,0.2006,1.193172 +L 0.2006,1.193172,0.2799,1.298571 +L 0.2799,1.298571,0.3512,1.402032 +L 0.3512,1.402032,0.4186,1.503552 +L 0.4186,1.503552,0.4781,1.604114 +L 0.4781,1.604114,0.5326,1.70274 +L 0.5326,1.70274,0.5801,1.799434 +L 0.5801,1.799434,0.6208,1.89419 +L 0.6208,1.89419,0.6574,1.987978 +L 0.6574,1.987978,0.9567,3.033216 +L 0.9567,3.033216,1.1916,3.625936 +L 1.1916,3.625936,1.1945,3.69459 +L 1.1945,3.69459,1.1995,4.004967 +L 1.1995,4.004971,1.1995,4.116166 +L 1.1995,4.116166,0.7506,4.116166 +L 0.7506,4.116166,0.3502,3.604669 +L 0.3502,3.604669,0.0004,3.614336 +L 0.0004,3.614336,0.0004,3.787413 +L 0.0004,3.787413,0.7139,4.676978 +L 0.7139,4.676978,2.9326,4.676978 +L 2.9326,4.676978,3.1249,4.74176 +L 3.1249,4.74176,3.1596,4.762065 +L 3.1596,4.762065,3.2319,4.799232 +L 3.2329,4.798811,3.2705,4.81718 +L 3.2705,4.81718,3.3112,4.833616 +L 3.3112,4.833616,3.3944,4.864949 +L 3.3954,4.864559,3.438,4.879064 +L 3.438,4.879064,3.6174,4.933212 + +[ρ] 155 +L 1.4201,4.649901,1.8274,4.649901 +L 1.8274,4.649901,1.9116,4.59866 +L 1.9116,4.59866,1.9978,4.546441 +L 1.9978,4.546441,2.082,4.492296 +L 2.082,4.492296,2.1653,4.437183 +L 2.1653,4.437183,2.2495,4.381102 +L 2.2495,4.381102,2.3328,4.323086 +L 2.3328,4.323086,2.415,4.263137 +L 2.415,4.263137,2.4973,4.202223 +L 2.4973,4.202223,2.5369,4.119068 +L 2.5369,4.119068,2.5755,4.038814 +L 2.5755,4.038814,2.6449,3.887173 +L 2.6449,3.887003,2.6766,3.815454 +L 2.6766,3.815454,2.7361,3.681243 +L 2.7351,3.681054,2.7608,3.617235 +L 2.7608,3.617235,2.7866,3.548581 +L 2.7866,3.548581,2.8074,3.479935 +L 2.8074,3.479935,2.8262,3.411284 +L 2.8262,3.411284,2.8391,3.341661 +L 2.8391,3.341661,2.85,3.272048 +L 2.85,3.272048,2.858,3.201459 +L 2.858,3.201459,2.8609,3.131846 +L 2.8609,3.131846,2.8609,3.060294 +L 2.8609,3.060294,2.8629,2.957797 +L 2.8629,2.957797,2.8629,2.864974 +L 2.8629,2.864974,2.8619,2.780852 +L 2.8619,2.780852,2.856,2.641602 +L 2.856,2.641613,2.852,2.586505 +L 2.852,2.586505,2.8461,2.540092 +L 2.8461,2.540092,2.8391,2.503343 +L 2.8391,2.503343,2.5686,1.836176 +L 2.5686,1.836176,2.4982,1.728848 +L 2.4982,1.728848,2.416,1.623453 +L 2.416,1.623453,2.3209,1.518057 +L 2.3209,1.518057,2.2138,1.414597 +L 2.2138,1.414597,2.0949,1.311137 +L 2.0949,1.311137,1.9621,1.208647 +L 1.9621,1.208647,1.8185,1.106152 +L 1.8185,1.106152,1.6619,1.005594 +L 1.6619,1.005594,1.6044,1.003656 +L 1.6044,1.003656,1.5469,1.000757 +L 1.5469,1.000757,1.4915,0.999791 +L 1.4915,0.999791,1.436,0.997859 +L 1.436,0.997859,1.3299,0.995957 +L 1.3299,0.995926,1.2774,0.995926 +L 1.2774,0.995926,1.2279,0.994954 +L 1.2279,0.994954,0.8067,1.251192 +L 0.8067,1.251192,0.5996,1.251192 +L 0.5996,1.251192,0.5927,1.762689 +L 0.5927,1.762689,0.4648,1.762689 +L 0.4648,1.762689,0.4648,-0.274605 +L 0.4648,-0.274605,0.0011,-0.274605 +L 0.0011,-0.274605,0.1586,1.736584 +L 0.1586,1.736584,0.1676,1.821671 +L 0.1676,1.821671,0.1765,1.906759 +L 0.1765,1.906759,0.1844,1.993782 +L 0.1844,1.993782,0.1903,2.080802 +L 0.1903,2.080802,0.1953,2.169763 +L 0.1953,2.169763,0.1983,2.258718 +L 0.1983,2.258718,0.1993,2.348643 +L 0.1993,2.348643,0.2013,2.502384 +L 0.2013,2.502381,0.2052,2.567163 +L 0.2052,2.567163,0.2112,2.633881 +L 0.2112,2.633881,0.2201,2.702534 +L 0.2201,2.702534,0.231,2.773118 +L 0.231,2.773118,0.2449,2.845635 +L 0.2449,2.845635,0.2607,2.920089 +L 0.2607,2.920089,0.2785,2.996474 +L 0.2785,2.996474,0.3063,3.106701 +L 0.3063,3.106701,0.336,3.216934 +L 0.336,3.216934,0.3657,3.329095 +L 0.3657,3.329095,0.3984,3.442226 +L 0.3984,3.442226,0.4331,3.55535 +L 0.4331,3.55535,0.4678,3.669452 +L 0.4678,3.669452,0.5045,3.784514 +L 0.5045,3.784514,0.5431,3.901511 +L 0.5431,3.901511,0.5986,3.972096 +L 0.5986,3.972096,0.6511,4.037842 +L 0.6511,4.037842,0.7037,4.099729 +L 0.7037,4.099729,0.7552,4.156776 +L 0.7552,4.156776,0.8057,4.208992 +L 0.8057,4.208992,0.8543,4.257335 +L 0.8543,4.257335,0.9028,4.300845 +L 0.9028,4.300845,0.9504,4.339521 +L 0.9504,4.339521,1.4201,4.649901 +L 1.6054,4.302779,1.1575,4.002068 +L 1.1575,4.002068,1.1099,3.963394 +L 1.1099,3.963394,1.0624,3.91118 +L 1.0624,3.91118,1.0128,3.84543 +L 1.0128,3.84543,0.9643,3.766138 +L 0.9643,3.766138,0.9127,3.674285 +L 0.9127,3.674285,0.8612,3.56792 +L 0.8612,3.56792,0.8097,3.448992 +L 0.8097,3.448992,0.7572,3.316526 +L 0.7572,3.316526,0.7334,3.253672 +L 0.7334,3.253672,0.7136,3.179225 +L 0.7136,3.179225,0.6957,3.094131 +L 0.6957,3.094131,0.6828,2.996474 +L 0.6828,2.996474,0.671,2.88818 +L 0.671,2.88818,0.663,2.76828 +L 0.663,2.76828,0.6591,2.636779 +L 0.6591,2.636779,0.6571,2.493679 +L 0.6571,2.493679,0.6591,2.447263 +L 0.6591,2.447263,0.667,2.395052 +L 0.667,2.395052,0.6789,2.337036 +L 0.6789,2.337036,0.6947,2.273223 +L 0.6947,2.273223,0.7146,2.202637 +L 0.7146,2.202637,0.7413,2.126252 +L 0.7413,2.126252,0.772,2.044059 +L 0.772,2.044059,0.8067,1.956071 +L 0.8067,1.956071,0.8206,1.91643 +L 0.8206,1.91643,0.8305,1.874851 +L 0.8305,1.874851,0.8414,1.833275 +L 0.8414,1.833275,0.8473,1.79073 +L 0.8473,1.79073,0.8533,1.746252 +L 0.8533,1.746252,0.8563,1.701772 +L 0.8563,1.701772,0.8573,1.655361 +L 0.8573,1.655361,0.8573,1.607982 +L 0.8573,1.607982,1.0208,1.590579 +L 1.0208,1.590579,1.4201,1.334344 +L 1.4201,1.334344,1.5608,1.424268 +L 1.5608,1.424268,1.6857,1.509356 +L 1.6857,1.509356,1.7967,1.591542 +L 1.7967,1.591542,1.8928,1.669866 +L 1.8928,1.669866,1.973,1.744316 +L 1.973,1.744316,2.0394,1.814905 +L 2.0394,1.814905,2.09,1.882583 +L 2.09,1.882583,2.1266,1.945437 +L 2.1266,1.945437,2.3754,2.594234 +L 2.3754,2.594234,2.3754,3.297187 +L 2.3754,3.297187,2.3744,3.313621 +L 2.3744,3.313621,2.3704,3.335864 +L 2.3704,3.335864,2.3526,3.395798 +L 2.3526,3.39581,2.3238,3.478119 +L 2.3238,3.478002,2.304,3.526347 +L 2.304,3.526347,2.2832,3.581462 +L 2.2832,3.581462,2.2584,3.638509 +L 2.2584,3.638509,2.2366,3.695556 +L 2.2366,3.695556,2.2178,3.753569 +L 2.2178,3.753569,2.2029,3.811589 +L 2.2029,3.811589,2.192,3.8696 +L 2.192,3.8696,2.1831,3.928584 +L 2.1831,3.928584,2.1782,3.987568 +L 2.1782,3.987568,2.1762,4.047516 +L 2.1762,4.047516,2.1296,4.048479 +L 2.1296,4.048479,2.087,4.051382 +L 2.087,4.051382,2.0484,4.057181 +L 2.0484,4.057181,2.0137,4.065888 +L 2.0137,4.065888,1.983,4.075556 +L 1.983,4.075556,1.9552,4.088126 +L 1.9552,4.088126,1.9324,4.103596 +L 1.9324,4.103596,1.9116,4.12003 +L 1.9116,4.12003,1.7848,4.193227 +L 1.7848,4.193521,1.6738,4.260892 +L 1.6738,4.261206,1.6054,4.302692 + +[σ] 136 +L 1.4257,4.649901,3.2678,4.649901 +L 3.2678,4.649901,3.2678,4.064919 +L 3.2678,4.064919,2.6743,4.056217 +L 2.6743,4.056217,2.7674,3.608533 +L 2.7674,3.608533,2.7922,3.53988 +L 2.7922,3.53988,2.814,3.471233 +L 2.814,3.471233,2.8318,3.401613 +L 2.8318,3.401613,2.8457,3.331997 +L 2.8457,3.331997,2.8556,3.262374 +L 2.8556,3.262374,2.8635,3.192757 +L 2.8635,3.192757,2.8675,3.122175 +L 2.8675,3.122175,2.8675,2.694796 +L 2.8675,2.694796,2.8655,2.648386 +L 2.8655,2.648386,2.8635,2.604875 +L 2.8635,2.604875,2.8576,2.563295 +L 2.8576,2.563295,2.8497,2.524618 +L 2.8497,2.524618,2.8398,2.487876 +L 2.8398,2.487876,2.8279,2.454036 +L 2.8279,2.454036,2.812,2.423093 +L 2.812,2.423093,2.7962,2.394087 +L 2.7962,2.394087,2.7367,2.224993 +L 2.7367,2.224874,2.706,2.145587 +L 2.706,2.145587,2.6763,2.0721 +L 2.6763,2.0721,2.6475,2.002486 +L 2.6475,2.002486,2.6178,1.936735 +L 2.6178,1.936735,2.5891,1.874851 +L 2.5891,1.874851,2.5603,1.8178 +L 2.5603,1.8178,2.4037,1.57124 +L 2.4037,1.57124,2.3175,1.461976 +L 2.3175,1.461976,2.2293,1.359486 +L 2.2293,1.359486,2.1382,1.262792 +L 2.1382,1.262792,2.047,1.171905 +L 2.047,1.171905,1.9529,1.086814 +L 1.9529,1.086814,1.8587,1.008496 +L 1.8587,1.008496,1.7606,0.935009 +L 1.7606,0.935009,1.6625,0.868291 +L 1.6625,0.868291,1.616,0.84025 +L 1.616,0.84025,1.5753,0.816078 +L 1.5753,0.816078,1.5387,0.794806 +L 1.5387,0.794806,1.504,0.776433 +L 1.504,0.776433,1.4435,0.751143 +L 1.4435,0.751295,1.4197,0.743559 +L 1.4197,0.743559,1.3979,0.739691 +L 1.3979,0.739691,1.1126,0.739691 +L 1.1126,0.739691,0.9203,0.803508 +L 0.9203,0.803508,0.85,0.847019 +L 0.85,0.847019,0.7211,0.930246 +L 0.7211,0.930172,0.6617,0.970781 +L 0.6617,0.970781,0.6052,1.010428 +L 0.6052,1.010428,0.5527,1.049106 +L 0.5527,1.049106,0.5031,1.086814 +L 0.5031,1.086814,0.4566,1.123556 +L 0.4566,1.123556,0.4258,1.154494 +L 0.4258,1.154494,0.3951,1.187375 +L 0.3951,1.187375,0.3674,1.222182 +L 0.3674,1.222182,0.3406,1.258927 +L 0.3406,1.258927,0.3149,1.296632 +L 0.3149,1.296632,0.2921,1.338215 +L 0.2921,1.338215,0.2703,1.380757 +L 0.2703,1.380757,0.2495,1.425234 +L 0.2495,1.425234,0.0651,1.89999 +L 0.0651,1.89999,0.0443,1.958009 +L 0.0443,1.958009,0.0295,2.011188 +L 0.0295,2.011188,0.0166,2.0605 +L 0.0166,2.0605,0.0077,2.105946 +L 0.0077,2.105946,0.0017,2.147519 +L 0.0017,2.147519,-0.0003,2.185231 +L -0.0003,2.185231,0.0017,2.218108 +L 0.0017,2.218108,0.0077,2.248081 +L 0.0077,2.248081,0.0146,2.850472 +L 0.0146,2.850472,0.081,3.017748 +L 0.081,3.017748,0.1454,3.172456 +L 0.1454,3.172456,0.2088,3.315556 +L 0.2088,3.315556,0.2703,3.446094 +L 0.2703,3.446094,0.3277,3.564052 +L 0.3277,3.564052,0.3852,3.670417 +L 0.3852,3.670417,0.4397,3.76421 +L 0.4397,3.76421,0.4922,3.84543 +L 0.4922,3.84543,0.5804,3.950822 +L 0.5804,3.950822,0.6666,4.048479 +L 0.6666,4.048479,0.7509,4.138407 +L 0.7509,4.138407,0.8321,4.220593 +L 0.8321,4.220593,0.9134,4.294077 +L 0.9134,4.294077,0.9907,4.359828 +L 0.9907,4.359828,1.068,4.416876 +L 1.068,4.416876,1.1403,4.467156 +L 1.1403,4.467156,1.4257,4.649901 +L 1.6407,4.302779,1.4861,4.197385 +L 1.4861,4.197385,1.3415,4.090061 +L 1.3415,4.090061,1.2107,3.980798 +L 1.2107,3.980798,1.0898,3.871535 +L 1.0898,3.871535,0.9808,3.759372 +L 0.9808,3.759372,0.8827,3.647211 +L 0.8827,3.647211,0.7955,3.533113 +L 0.7955,3.533113,0.7201,3.417081 +L 0.7201,3.417081,0.5002,2.833069 +L 0.5002,2.833069,0.4922,1.689205 +L 0.4922,1.689205,0.5408,1.629256 +L 0.5408,1.629256,0.5923,1.57124 +L 0.5923,1.57124,0.6468,1.514193 +L 0.6468,1.514193,0.7063,1.460041 +L 0.7063,1.460041,0.7687,1.406865 +L 0.7687,1.406865,0.8341,1.356581 +L 0.8341,1.356581,0.9045,1.308239 +L 0.9045,1.308239,0.9768,1.261822 +L 0.9768,1.261822,1.2414,1.08778 +L 1.2414,1.08778,1.5129,1.254756 +L 1.5129,1.255056,1.6031,1.31694 +L 1.6031,1.31694,1.6893,1.380757 +L 1.6893,1.380757,1.7705,1.448441 +L 1.7705,1.448441,1.8478,1.518057 +L 1.8478,1.518057,1.9212,1.590579 +L 1.9212,1.590579,1.9895,1.666961 +L 1.9895,1.666961,2.0539,1.745286 +L 2.0539,1.745286,2.0975,1.830373 +L 2.0975,1.830373,2.1412,1.92126 +L 2.1412,1.92126,2.1848,2.017954 +L 2.1848,2.017954,2.2293,2.119479 +L 2.2293,2.119479,2.2739,2.227773 +L 2.2739,2.227773,2.3185,2.340907 +L 2.3185,2.340907,2.3651,2.460805 +L 2.3651,2.460805,2.4107,2.585532 +L 2.4107,2.585532,2.4107,3.699421 +L 2.4107,3.699421,2.3601,3.760342 +L 2.3601,3.760342,2.3056,3.820291 +L 2.3056,3.820291,2.2472,3.878301 +L 2.2472,3.878301,2.1848,3.935354 +L 2.1848,3.935354,2.1174,3.990463 +L 2.1174,3.990463,2.046,4.044614 +L 2.046,4.044614,1.9697,4.096827 +L 1.9697,4.096827,1.8904,4.148074 +L 1.8904,4.148074,1.8468,4.174182 +L 1.8468,4.174182,1.7715,4.22188 +L 1.7715,4.221562,1.6823,4.276587 +L 1.6823,4.276674,1.6596,4.291178 +L 1.6596,4.291178,1.6407,4.302779 + +[τ] 41 +L 0.7129,4.634433,3.2695,4.625731 +L 3.2695,4.625731,3.2695,4.451682 +L 3.2695,4.451682,2.9553,4.050415 +L 2.9553,4.050415,1.8723,4.033011 +L 1.8723,4.033011,1.8723,3.585326 +L 1.8723,3.585326,1.5621,2.799225 +L 1.5621,2.799225,1.4689,2.571034 +L 1.4689,2.571034,1.463,1.6747 +L 1.463,1.6747,1.7543,1.309202 +L 1.7543,1.309202,2.121,1.309202 +L 2.121,1.309202,2.5352,1.821671 +L 2.5352,1.821671,2.67,1.821671 +L 2.67,1.821671,2.67,1.382689 +L 2.67,1.382689,2.1566,0.748393 +L 2.1566,0.748393,1.5125,0.748393 +L 1.5125,0.748393,0.9982,1.382689 +L 0.9982,1.382689,0.9992,1.498718 +L 0.9992,1.498718,1.0032,1.609917 +L 1.0032,1.609917,1.0082,1.71434 +L 1.0082,1.71434,1.0151,1.814905 +L 1.0151,1.814905,1.024,1.908692 +L 1.024,1.908692,1.0359,1.998616 +L 1.0359,1.998616,1.0488,2.081771 +L 1.0488,2.081771,1.0636,2.160092 +L 1.0636,2.160092,1.1112,2.34284 +L 1.1112,2.34284,1.1568,2.517851 +L 1.1568,2.517851,1.2034,2.684159 +L 1.2034,2.684159,1.249,2.842737 +L 1.249,2.842737,1.2926,2.99261 +L 1.2926,2.99261,1.3362,3.133778 +L 1.3362,3.133778,1.3788,3.267214 +L 1.3788,3.267214,1.4204,3.392911 +L 1.4204,3.392911,1.5978,3.858962 +L 1.5978,3.858962,1.5978,4.050415 +L 1.5978,4.050415,1.0488,4.050415 +L 1.0488,4.050415,0.7971,3.886395 +L 0.7971,3.886039,0.4285,3.639401 +L 0.4285,3.639476,0.1361,3.282682 +L 0.1361,3.282682,0.0004,3.282682 +L 0.0004,3.282682,0.0004,3.721664 +L 0.0004,3.721664,0.7129,4.634433 + +[υ] 129 +L 0.5143,4.676978,1.1495,4.676978 +L 1.1495,4.676978,1.4646,4.269907 +L 1.4646,4.269907,1.4646,3.667512 +L 1.4646,3.667512,1.4607,3.600798 +L 1.4607,3.600798,1.4567,3.532148 +L 1.4567,3.532148,1.4478,3.462531 +L 1.4478,3.462531,1.4359,3.390976 +L 1.4359,3.390976,1.422,3.318461 +L 1.422,3.318461,1.4052,3.244007 +L 1.4052,3.244007,1.3853,3.168588 +L 1.3853,3.168588,1.0722,1.948338 +L 1.0722,1.948338,1.0643,1.309202 +L 1.0643,1.309202,2.1127,1.309202 +L 2.1127,1.309202,2.2138,1.440702 +L 2.2138,1.440702,2.3069,1.57124 +L 2.3069,1.57124,2.3921,1.699839 +L 2.3921,1.699839,2.4684,1.827472 +L 2.4684,1.827472,2.5388,1.954138 +L 2.5388,1.954138,2.5992,2.079839 +L 2.5992,2.079839,2.6528,2.2036 +L 2.6528,2.2036,2.6983,2.327369 +L 2.6983,2.327369,2.7449,2.437539 +L 2.7449,2.437598,2.7618,2.48594 +L 2.7618,2.48594,2.7766,2.528488 +L 2.7766,2.528488,2.7865,2.567163 +L 2.7865,2.567163,2.7935,2.600037 +L 2.7935,2.600037,2.7974,2.628078 +L 2.7974,2.628078,2.7974,3.715861 +L 2.7974,3.715861,2.3981,4.233165 +L 2.3981,4.233165,2.3981,4.676978 +L 2.3981,4.676978,2.7469,4.676978 +L 2.7469,4.676978,2.8054,4.59189 +L 2.8054,4.59189,2.8599,4.5068 +L 2.8599,4.5068,2.9114,4.419777 +L 2.9114,4.419777,2.9599,4.333723 +L 2.9599,4.333723,3.0055,4.245734 +L 3.0055,4.245734,3.0481,4.157746 +L 3.0481,4.157746,3.0888,4.069754 +L 3.0888,4.069754,3.1254,3.979832 +L 3.1254,3.979832,3.1492,3.923751 +L 3.1492,3.923751,3.171,3.8696 +L 3.171,3.8696,3.1898,3.818352 +L 3.1898,3.818352,3.2077,3.769044 +L 3.2077,3.769044,3.2235,3.721664 +L 3.2235,3.721664,3.2354,3.677186 +L 3.2354,3.677186,3.2543,3.594128 +L 3.2543,3.594028,3.0184,2.363141 +L 3.0184,2.363141,2.9926,2.252915 +L 2.9926,2.252915,2.9659,2.147519 +L 2.9659,2.147519,2.9362,2.045029 +L 2.9362,2.045029,2.9054,1.946403 +L 2.9054,1.946403,2.8737,1.852611 +L 2.8737,1.852611,2.841,1.76172 +L 2.841,1.76172,2.8054,1.675663 +L 2.8054,1.675663,2.7687,1.593477 +L 2.7687,1.593477,2.6121,1.344981 +L 2.6121,1.344981,2.5675,1.292768 +L 2.5675,1.292768,2.519,1.240551 +L 2.519,1.240551,2.4674,1.189308 +L 2.4674,1.189308,2.411,1.13903 +L 2.411,1.13903,2.3505,1.088749 +L 2.3505,1.088749,2.2871,1.038469 +L 2.2871,1.038469,2.2197,0.99012 +L 2.2197,0.99012,2.1484,0.941778 +L 2.1484,0.941778,2.075,0.894398 +L 2.075,0.894398,2.0077,0.853788 +L 2.0077,0.853788,1.9432,0.819942 +L 1.9432,0.819942,1.8828,0.791901 +L 1.8828,0.791901,1.8263,0.7716 +L 1.8263,0.7716,1.7748,0.757095 +L 1.7748,0.757095,1.7282,0.749363 +L 1.7282,0.749363,1.6846,0.748393 +L 1.6846,0.748393,1.1138,0.748393 +L 1.1138,0.748393,0.6005,1.419435 +L 0.6005,1.419435,0.6025,1.541267 +L 0.6025,1.541267,0.6055,1.656331 +L 0.6055,1.656331,0.6114,1.766553 +L 0.6114,1.766553,0.6203,1.870014 +L 0.6203,1.870014,0.6322,1.967677 +L 0.6322,1.967677,0.6451,2.05953 +L 0.6451,2.05953,0.66,2.145587 +L 0.66,2.145587,0.6788,2.225844 +L 0.6788,2.225844,0.9533,3.269085 +L 0.9533,3.269147,0.9672,3.334895 +L 0.9672,3.334895,0.9781,3.401613 +L 0.9781,3.401613,0.988,3.4693 +L 0.988,3.4693,0.9939,3.537947 +L 0.9939,3.537947,0.9989,3.607567 +L 0.9989,3.607567,1.0009,3.678153 +L 1.0009,3.678153,0.9999,3.750671 +L 0.9999,3.750671,1.0019,3.836728 +L 1.0019,3.836728,1.0019,3.994334 +L 1.0019,3.994334,0.9979,4.132612 +L 0.9979,4.132601,0.9939,4.193521 +L 0.9939,4.193521,0.991,4.250569 +L 0.991,4.250569,0.985,4.302779 +L 0.985,4.302779,0.7511,4.302779 +L 0.7511,4.302779,0.6996,4.233165 +L 0.6996,4.233165,0.6501,4.158708 +L 0.6501,4.158708,0.6025,4.081359 +L 0.6025,4.081359,0.5559,4.000136 +L 0.5559,4.000136,0.5123,3.915049 +L 0.5123,3.915049,0.4687,3.826091 +L 0.4687,3.826091,0.4261,3.733267 +L 0.4261,3.733267,0.3865,3.636574 +L 0.3865,3.636574,0.331,3.534826 +L 0.331,3.535049,0.3003,3.48767 +L 0.3003,3.48767,0.2686,3.442226 +L 0.2686,3.442226,0.2359,3.398715 +L 0.2359,3.398715,0.2022,3.357132 +L 0.2022,3.357132,0.1665,3.317492 +L 0.1665,3.317492,0.1298,3.279784 +L 0.1298,3.279784,0.001,3.279784 +L 0.001,3.279784,0.003,3.357132 +L 0.003,3.357132,0.0079,3.432556 +L 0.0079,3.432556,0.0159,3.506043 +L 0.0159,3.506043,0.0258,3.577594 +L 0.0258,3.577594,0.0416,3.647211 +L 0.0416,3.647211,0.0575,3.715861 +L 0.0575,3.715861,0.0783,3.782579 +L 0.0783,3.782579,0.1011,3.847365 +L 0.1011,3.847365,0.1487,3.959527 +L 0.1487,3.959527,0.1962,4.069754 +L 0.1962,4.069754,0.2468,4.177084 +L 0.2468,4.177084,0.2983,4.282476 +L 0.2983,4.282476,0.3508,4.38497 +L 0.3508,4.38497,0.4033,4.484562 +L 0.4033,4.484562,0.4588,4.582219 +L 0.4588,4.582219,0.5143,4.676978 + +[φ] 197 +L 1.599,6.184398,2.0559,6.184398 +L 2.0559,6.184398,2.0559,5.508526 +L 2.0559,5.508526,2.0123,5.261959 +L 2.0123,5.261959,1.9895,5.194278 +L 1.9895,5.194278,1.9687,5.12756 +L 1.9687,5.12756,1.9488,5.061811 +L 1.9488,5.061811,1.9102,4.934222 +L 1.9102,4.934175,1.8933,4.871328 +L 1.8933,4.871328,1.8775,4.810414 +L 1.8775,4.810414,1.8626,4.750466 +L 1.8626,4.750466,1.9013,4.701151 +L 1.9013,4.701151,1.9399,4.65474 +L 1.9399,4.65474,1.9796,4.61026 +L 1.9796,4.61026,2.0212,4.567715 +L 2.0212,4.567715,2.0628,4.528074 +L 2.0628,4.528074,2.1064,4.49036 +L 2.1064,4.49036,2.149,4.454587 +L 2.149,4.454587,2.1946,4.421709 +L 2.1946,4.421709,2.258,4.379167 +L 2.258,4.379167,2.3204,4.332754 +L 2.3204,4.332754,2.3829,4.28344 +L 2.3829,4.28344,2.4433,4.230263 +L 2.4433,4.230263,2.5038,4.173214 +L 2.5038,4.173214,2.5632,4.113268 +L 2.5632,4.113268,2.6217,4.049447 +L 2.6217,4.049447,2.6782,3.982729 +L 2.6782,3.982729,2.8763,3.736163 +L 2.8763,3.736163,2.8763,3.011942 +L 2.8763,3.011942,2.8724,2.945231 +L 2.8724,2.945231,2.8645,2.878509 +L 2.8645,2.878509,2.8536,2.811795 +L 2.8536,2.811795,2.8387,2.74411 +L 2.8387,2.74411,2.8199,2.676427 +L 2.8199,2.676427,2.7971,2.608739 +L 2.7971,2.608739,2.7703,2.540092 +L 2.7703,2.540092,2.7099,2.389253 +L 2.7099,2.389253,2.6445,2.248081 +L 2.6445,2.248081,2.5761,2.115611 +L 2.5761,2.115611,2.5038,1.991849 +L 2.5038,1.991849,2.4284,1.877752 +L 2.4284,1.877752,2.3492,1.773326 +L 2.3492,1.773326,2.2659,1.676635 +L 2.2659,1.676635,2.1777,1.590579 +L 2.1777,1.590579,1.5287,1.169 +L 1.5287,1.169,1.494,1.133227 +L 1.494,1.133227,1.4266,1.060783 +L 1.4266,1.060709,1.3642,0.990062 +L 1.3642,0.99012,1.3067,0.920356 +L 1.3067,0.920504,1.279,0.885697 +L 1.279,0.885697,1.279,-0.274605 +L 1.279,-0.274605,0.8231,-0.274605 +L 0.8231,-0.274605,0.8231,0.402236 +L 0.8231,0.402236,0.8261,0.456386 +L 0.8261,0.456386,0.8311,0.50763 +L 0.8311,0.50763,0.837,0.554042 +L 0.837,0.554042,0.8459,0.595618 +L 0.8459,0.595618,0.8568,0.634296 +L 0.8568,0.634296,0.8707,0.667171 +L 0.8707,0.667171,0.8846,0.697143 +L 0.8846,0.697143,0.9014,0.722288 +L 0.9014,0.722288,0.9183,0.772563 +L 0.9183,0.772563,0.9361,0.823813 +L 0.9361,0.823813,0.951,0.876023 +L 0.951,0.876023,0.9678,0.929208 +L 0.9678,0.929208,0.9827,0.983354 +L 0.9827,0.983354,1.0094,1.094493 +L 1.0094,1.09455,1.0223,1.151596 +L 1.0223,1.151596,0.9856,1.198975 +L 0.9856,1.198975,0.946,1.245389 +L 0.946,1.245389,0.9034,1.289863 +L 0.9034,1.289863,0.8578,1.334344 +L 0.8578,1.334344,0.8093,1.376889 +L 0.8093,1.376889,0.7577,1.418468 +L 0.7577,1.418468,0.7042,1.459078 +L 0.7042,1.459078,0.6467,1.497756 +L 0.6467,1.497756,0.5932,1.534498 +L 0.5932,1.534498,0.5387,1.576074 +L 0.5387,1.576074,0.4842,1.621517 +L 0.4842,1.621517,0.4277,1.671802 +L 0.4277,1.671802,0.3723,1.726913 +L 0.3723,1.726913,0.3158,1.786862 +L 0.3158,1.786862,0.2583,1.850678 +L 0.2583,1.850678,0.1988,1.919332 +L 0.1988,1.919332,0.0006,2.16493 +L 0.0006,2.16493,0.0006,2.850472 +L 0.0006,2.850472,0.0026,2.912353 +L 0.0026,2.912353,0.0076,3.02453 +L 0.0076,3.024515,0.0135,3.073829 +L 0.0135,3.073829,0.0205,3.120243 +L 0.0205,3.120243,0.0294,3.162781 +L 0.0294,3.162781,0.0393,3.200496 +L 0.0393,3.200496,0.0512,3.234337 +L 0.0512,3.234337,0.1146,3.387108 +L 0.1146,3.387108,0.183,3.535049 +L 0.183,3.535049,0.2523,3.677186 +L 0.2523,3.677186,0.3257,3.814486 +L 0.3257,3.814486,0.402,3.946955 +L 0.402,3.946955,0.4813,4.07362 +L 0.4813,4.07362,0.5645,4.195454 +L 0.5645,4.195454,0.6497,4.31148 +L 0.6497,4.31148,0.8142,4.476828 +L 0.8142,4.476828,0.8588,4.507765 +L 0.8588,4.507765,0.9034,4.536775 +L 0.9034,4.536775,0.95,4.564816 +L 0.95,4.564816,0.9936,4.590925 +L 0.9936,4.590925,1.0401,4.615094 +L 1.0401,4.615094,1.0857,4.63733 +L 1.0857,4.63733,1.1323,4.658603 +L 1.1323,4.658603,1.1789,4.676978 +L 1.1789,4.676978,1.2403,4.705018 +L 1.2403,4.705018,1.3008,4.735958 +L 1.3008,4.735958,1.3582,4.771736 +L 1.3582,4.771736,1.4117,4.812346 +L 1.4117,4.812346,1.4623,4.85682 +L 1.4623,4.85682,1.5118,4.905169 +L 1.5118,4.905169,1.5564,4.957385 +L 1.5564,4.957385,1.599,5.014432 +L 1.599,5.014432,1.599,6.184398 +L 1.1353,4.31148,1.0352,4.180949 +L 1.0352,4.180949,0.945,4.051382 +L 0.945,4.051382,0.8608,3.923751 +L 0.8608,3.923751,0.7835,3.798051 +L 0.7835,3.798051,0.7161,3.675251 +L 0.7161,3.675251,0.6557,3.553422 +L 0.6557,3.553422,0.6021,3.434487 +L 0.6021,3.434487,0.5338,3.253839 +L 0.5348,3.253672,0.514,3.179225 +L 0.514,3.179225,0.4971,3.094131 +L 0.4971,3.094131,0.4822,2.996474 +L 0.4822,2.996474,0.4713,2.88818 +L 0.4713,2.88818,0.4634,2.76828 +L 0.4634,2.76828,0.4595,2.636779 +L 0.4595,2.636779,0.4575,2.493679 +L 0.4575,2.493679,0.4575,2.201668 +L 0.4575,2.201668,0.506,2.140753 +L 0.506,2.140753,0.5576,2.082737 +L 0.5576,2.082737,0.613,2.02569 +L 0.613,2.02569,0.6725,1.971545 +L 0.6725,1.971545,0.7339,1.918365 +L 0.7339,1.918365,0.7993,1.868085 +L 0.7993,1.868085,0.8697,1.819736 +L 0.8697,1.819736,0.942,1.773326 +L 0.942,1.773326,1.1789,1.616687 +L 1.1789,1.616687,1.1799,1.812004 +L 1.1799,1.812004,1.1838,1.999585 +L 1.1838,1.999585,1.1888,2.179431 +L 1.1888,2.179431,1.1977,2.352507 +L 1.1977,2.352507,1.2086,2.517851 +L 1.2086,2.517851,1.2225,2.675457 +L 1.2225,2.675457,1.2373,2.825333 +L 1.2373,2.825333,1.2572,2.968434 +L 1.2572,2.968434,1.3781,4.31148 +L 1.3781,4.31148,1.1353,4.31148 +L 1.6426,4.448787,1.6565,4.213826 +L 1.6565,4.213826,1.6664,3.991435 +L 1.6664,3.991435,1.6694,3.781613 +L 1.6694,3.781613,1.6694,3.585326 +L 1.6694,3.585326,1.6644,3.402582 +L 1.6644,3.402582,1.6555,3.232404 +L 1.6555,3.232404,1.6407,3.075762 +L 1.6407,3.075762,1.6208,2.931692 +L 1.6208,2.931692,1.5079,1.626355 +L 1.5079,1.626355,1.5921,1.678568 +L 1.5921,1.678568,1.7497,1.78113 +L 1.7497,1.781058,1.824,1.831343 +L 1.824,1.831343,1.8943,1.88162 +L 1.8943,1.88162,1.9607,1.930932 +L 1.9607,1.930932,2.0241,1.980246 +L 2.0241,1.980246,2.0856,2.028591 +L 2.0856,2.028591,2.1153,2.093374 +L 2.1153,2.093374,2.144,2.158156 +L 2.144,2.158156,2.2015,2.288864 +L 2.2015,2.288691,2.2283,2.355409 +L 2.2283,2.355409,2.2808,2.489734 +L 2.2808,2.489811,2.3056,2.557496 +L 2.3056,2.557496,2.3333,2.618413 +L 2.3333,2.618413,2.3561,2.679328 +L 2.3561,2.679328,2.3759,2.743144 +L 2.3759,2.743144,2.3928,2.806957 +L 2.3928,2.806957,2.4047,2.872712 +L 2.4047,2.872712,2.4136,2.939428 +L 2.4136,2.939428,2.4195,3.008081 +L 2.4195,3.008081,2.4205,3.07866 +L 2.4205,3.07866,2.4205,3.699421 +L 2.4205,3.699421,2.37,3.760342 +L 2.37,3.760342,2.3155,3.820291 +L 2.3155,3.820291,2.257,3.878301 +L 2.257,3.878301,2.1946,3.935354 +L 2.1946,3.935354,2.1272,3.990463 +L 2.1272,3.990463,2.0559,4.044614 +L 2.0559,4.044614,1.9805,4.096827 +L 1.9805,4.096827,1.9003,4.148074 +L 1.9003,4.148074,1.7467,4.242244 +L 1.7467,4.241867,1.716,4.260236 +L 1.716,4.260236,1.6634,4.290992 +L 1.6634,4.291178,1.6426,4.302779 +L 1.6426,4.302779,1.6426,4.448787 + +[χ] 124 +L 0.5255,4.676978,0.9635,4.676978 +L 0.9635,4.676978,1.0101,4.613159 +L 1.0101,4.613159,1.0566,4.547412 +L 1.0566,4.547412,1.0983,4.481658 +L 1.0983,4.481658,1.1409,4.41494 +L 1.1409,4.41494,1.1785,4.347259 +L 1.1785,4.347259,1.2162,4.278609 +L 1.2162,4.278609,1.2518,4.209956 +L 1.2518,4.209956,1.2845,4.139373 +L 1.2845,4.139373,1.4342,3.744781 +L 1.4342,3.744867,1.4461,3.704261 +L 1.4461,3.704261,1.457,3.659783 +L 1.457,3.659783,1.4728,3.564136 +L 1.4718,3.564052,1.4778,3.511839 +L 1.4778,3.511839,1.4817,3.456728 +L 1.4817,3.456728,1.4847,3.398715 +L 1.4847,3.398715,1.6125,3.398715 +L 1.6125,3.398715,1.6135,3.457694 +L 1.6135,3.457694,1.6185,3.518612 +L 1.6185,3.518612,1.6264,3.579527 +L 1.6264,3.579527,1.6373,3.641407 +L 1.6373,3.641407,1.6522,3.703291 +L 1.6522,3.703291,1.669,3.765176 +L 1.669,3.765176,1.6898,3.828992 +L 1.6898,3.828992,1.7126,3.892809 +L 1.7126,3.892809,1.7374,3.951787 +L 1.7374,3.951787,1.7592,4.012705 +L 1.7592,4.012705,1.7761,4.075556 +L 1.7761,4.075556,1.7909,4.138407 +L 1.7909,4.138407,1.8018,4.203189 +L 1.8018,4.203189,1.8088,4.268938 +L 1.8088,4.268938,1.8117,4.335652 +L 1.8117,4.335652,1.8117,4.676978 +L 1.8117,4.676978,2.4895,4.676978 +L 2.4895,4.676978,1.7196,2.662887 +L 1.7196,2.662887,1.4847,2.073069 +L 1.4847,2.073069,1.4847,2.001518 +L 1.4847,2.001518,1.4837,1.931898 +L 1.4837,1.931898,1.4837,1.864217 +L 1.4837,1.864217,1.4808,1.668897 +L 1.4808,1.668897,1.4768,1.54611 +L 1.4768,1.546098,1.4778,1.519027 +L 1.4778,1.519027,1.4837,1.454198 +L 1.4847,1.454244,1.4897,1.416533 +L 1.4897,1.416533,1.4966,1.37592 +L 1.4966,1.37592,1.5045,1.331446 +L 1.5045,1.331446,1.5154,1.283097 +L 1.5154,1.283097,1.5273,1.23185 +L 1.5273,1.23185,1.566,1.08778 +L 1.566,1.08778,1.5977,0.950479 +L 1.5977,0.950479,1.6244,0.820914 +L 1.6244,0.820914,1.6462,0.698113 +L 1.6462,0.698113,1.6621,0.583052 +L 1.6621,0.583052,1.673,0.474755 +L 1.673,0.474755,1.678,0.374194 +L 1.678,0.374194,1.677,0.280407 +L 1.677,0.280407,2.1268,0.280407 +L 2.1268,0.280407,2.5401,0.791901 +L 2.5401,0.791901,2.6748,0.791901 +L 2.6748,0.791901,2.6748,0.353891 +L 2.6748,0.353891,2.1625,-0.280407 +L 2.1625,-0.280407,1.7275,-0.280407 +L 1.7275,-0.280407,1.676,-0.207889 +L 1.676,-0.207889,1.6284,-0.129568 +L 1.6284,-0.129568,1.5828,-0.045444 +L 1.5828,-0.045444,1.5392,0.045444 +L 1.5392,0.045444,1.4986,0.142138 +L 1.4986,0.142138,1.4599,0.245598 +L 1.4599,0.245598,1.4243,0.353891 +L 1.4243,0.353891,1.3718,0.538659 +L 1.3718,0.538572,1.3311,0.674986 +L 1.3311,0.674909,1.3093,0.742594 +L 1.3093,0.742594,1.2885,0.809305 +L 1.2885,0.809305,1.2439,0.940763 +L 1.2439,0.940812,1.2201,1.005594 +L 1.2201,1.005594,1.2201,1.046201 +L 1.2201,1.046201,1.2201,1.083915 +L 1.2201,1.083915,1.2201,1.120658 +L 1.2201,1.120658,1.2172,1.214453 +L 1.2162,1.214443,1.2152,1.241521 +L 1.2152,1.241521,1.2142,1.265693 +L 1.2142,1.265693,1.0774,1.265693 +L 1.0774,1.265693,1.0784,1.210582 +L 1.0784,1.210582,1.0765,1.1574 +L 1.0765,1.1574,1.0715,1.104217 +L 1.0715,1.104217,1.0646,1.052974 +L 1.0646,1.052974,1.0566,1.002692 +L 1.0566,1.002692,1.0447,0.953378 +L 1.0447,0.953378,1.0299,0.905036 +L 1.0299,0.905036,1.014,0.857656 +L 1.014,0.857656,0.686,0.025136 +L 0.686,0.025136,0.685,-0.01257 +L 0.685,-0.01257,0.685,-0.087025 +L 0.685,-0.087025,0.683,-0.163409 +L 0.683,-0.163409,0.6811,-0.202086 +L 0.6811,-0.202086,0.6801,-0.24173 +L 0.6801,-0.24173,0.6781,-0.280407 +L 0.6781,-0.280407,0.0013,-0.271703 +L 0.0013,-0.271703,0.0013,-0.094758 +L 0.0013,-0.094758,0.0766,-0.000969 +L 0.0766,-0.000969,0.1529,0.111193 +L 0.1529,0.111193,0.2302,0.240764 +L 0.2302,0.240764,0.3095,0.388698 +L 0.3095,0.388698,0.3887,0.553077 +L 0.3887,0.553077,0.47,0.73582 +L 0.47,0.73582,0.5522,0.936944 +L 0.5522,0.936944,0.6355,1.154494 +L 0.6355,1.154494,1.1419,2.477238 +L 1.1419,2.477238,1.1617,2.519787 +L 1.1617,2.519787,1.1775,2.560397 +L 1.1775,2.560397,1.1904,2.599074 +L 1.1904,2.599074,1.1993,2.634851 +L 1.1993,2.634851,1.2043,2.667725 +L 1.2043,2.667725,1.2063,2.699633 +L 1.2063,2.699633,1.2043,2.72864 +L 1.2043,2.72864,1.1993,2.754747 +L 1.1993,2.754747,1.1993,3.357132 +L 1.1993,3.357132,0.9992,3.902477 +L 0.9992,3.902477,0.9992,4.116166 +L 0.9992,4.116166,0.5503,4.116166 +L 0.5503,4.116166,0.137,3.604669 +L 0.137,3.604669,0.0013,3.604669 +L 0.0013,3.604669,0.0013,4.042681 +L 0.0013,4.042681,0.5255,4.676978 + +[ψ] 150 +L 1.5914,6.194072,2.0621,6.194072 +L 2.0621,6.194072,1.4626,1.590579 +L 1.4626,1.590579,1.5002,1.589609 +L 1.5002,1.589609,1.5359,1.591542 +L 1.5359,1.591542,1.5735,1.597348 +L 1.5735,1.597348,1.6082,1.60605 +L 1.6082,1.60605,1.6419,1.617653 +L 1.6419,1.617653,1.6756,1.633124 +L 1.6756,1.633124,1.7083,1.651493 +L 1.7083,1.651493,1.741,1.673734 +L 1.741,1.673734,2.0264,1.845841 +L 2.0264,1.845841,2.1909,1.845841 +L 2.1909,1.845841,2.1919,1.904827 +L 2.1919,1.904827,2.1949,1.961874 +L 2.1949,1.961874,2.1998,2.016989 +L 2.1998,2.016989,2.2077,2.070171 +L 2.2077,2.070171,2.2157,2.122384 +L 2.2157,2.122384,2.2266,2.172662 +L 2.2266,2.172662,2.2404,2.220041 +L 2.2404,2.220041,2.2543,2.26742 +L 2.2543,2.26742,2.5546,3.335864 +L 2.5546,3.335864,2.5655,3.380339 +L 2.5655,3.380339,2.5754,3.421921 +L 2.5754,3.421921,2.5883,3.500196 +L 2.5883,3.500239,2.5912,3.535049 +L 2.5912,3.535049,2.5932,3.56889 +L 2.5932,3.56889,2.5932,3.598866 +L 2.5932,3.598866,2.5902,3.627872 +L 2.5902,3.627872,2.5902,3.686855 +L 2.5902,3.686855,2.5863,3.745837 +L 2.5863,3.745837,2.5793,3.804817 +L 2.5793,3.804817,2.5684,3.863801 +L 2.5684,3.863801,2.5546,3.921812 +L 2.5546,3.921812,2.5367,3.979832 +L 2.5367,3.979832,2.5149,4.036878 +L 2.5149,4.036878,2.4902,4.093925 +L 2.4902,4.093925,2.3831,4.659574 +L 2.3831,4.659574,2.4485,4.659574 +L 2.4485,4.659574,2.5734,4.65767 +L 2.5734,4.657639,2.6329,4.655707 +L 2.6329,4.655707,2.7468,4.649994 +L 2.7468,4.649901,2.8538,4.642242 +L 2.8538,4.642168,2.8548,4.574481 +L 2.8548,4.574481,2.8568,4.511634 +L 2.8568,4.511634,2.8608,4.455553 +L 2.8608,4.455553,2.8667,4.404303 +L 2.8667,4.404303,2.8737,4.35886 +L 2.8737,4.35886,2.8816,4.319218 +L 2.8816,4.319218,2.8915,4.285375 +L 2.8915,4.285375,2.9034,4.257335 +L 2.9034,4.257335,2.9391,4.167409 +L 2.9391,4.167409,2.9688,4.082326 +L 2.9688,4.082326,2.9955,4.004003 +L 2.9955,4.004003,3.0164,3.931487 +L 3.0164,3.931487,3.0332,3.864769 +L 3.0332,3.864769,3.0441,3.803853 +L 3.0441,3.803853,3.052,3.749705 +L 3.052,3.749705,3.053,3.700393 +L 3.053,3.700393,3.053,3.225635 +L 3.053,3.225635,3.052,3.188889 +L 3.052,3.188889,3.0491,3.150212 +L 3.0491,3.150212,3.0441,3.109606 +L 3.0441,3.109606,3.0362,3.068023 +L 3.0362,3.068023,3.0263,3.025484 +L 3.0263,3.025484,3.0134,2.981006 +L 3.0134,2.981006,2.9995,2.93556 +L 2.9995,2.93556,2.9827,2.88818 +L 2.9827,2.88818,2.6537,2.056632 +L 2.6537,2.056632,2.613,1.964773 +L 2.613,1.964773,2.5645,1.876786 +L 2.5645,1.876786,2.51,1.791695 +L 2.51,1.791695,2.4466,1.711442 +L 2.4466,1.711442,2.3782,1.63409 +L 2.3782,1.63409,2.3009,1.560606 +L 2.3009,1.560606,2.2167,1.490017 +L 2.2167,1.490017,2.1255,1.423299 +L 2.1255,1.423299,1.6776,1.189308 +L 1.6776,1.189308,1.4982,1.088749 +L 1.4982,1.088749,1.3417,0.960144 +L 1.3417,0.960144,1.2564,0.850887 +L 1.2564,0.850887,1.2564,-0.309417 +L 1.2564,-0.309417,0.7996,-0.299743 +L 0.7996,-0.299743,0.8016,-0.203052 +L 0.8016,-0.203052,0.8046,-0.108294 +L 0.8046,-0.108294,0.8115,-0.01644 +L 0.8115,-0.01644,0.8185,0.072516 +L 0.8185,0.072516,0.8294,0.159541 +L 0.8294,0.159541,0.8432,0.243662 +L 0.8432,0.243662,0.8581,0.324885 +L 0.8581,0.324885,0.8769,0.403203 +L 0.8769,0.403203,0.9066,0.516332 +L 0.9066,0.516332,0.9314,0.625594 +L 0.9314,0.625594,0.9532,0.731954 +L 0.9532,0.731954,0.9711,0.835414 +L 0.9711,0.835414,0.9829,0.935009 +L 0.9829,0.935009,0.9919,1.0317 +L 0.9919,1.0317,0.9968,1.125491 +L 0.9968,1.125491,0.9968,1.216379 +L 0.9968,1.216379,0.7144,1.216379 +L 0.7144,1.216379,0.0009,2.174597 +L 0.0009,2.174597,0.0009,3.24497 +L 0.0009,3.24497,0.0515,3.490568 +L 0.0515,3.490568,0.2794,4.048479 +L 0.2794,4.048479,0.3111,4.102627 +L 0.3111,4.102627,0.3418,4.153875 +L 0.3418,4.153875,0.4042,4.24964 +L 0.4042,4.249602,0.434,4.294077 +L 0.434,4.294077,0.4637,4.336625 +L 0.4637,4.336625,0.4924,4.376269 +L 0.4924,4.376269,0.5222,4.413977 +L 0.5222,4.413977,0.7144,4.659574 +L 0.7144,4.659574,1.0592,4.650873 +L 1.0592,4.650873,1.0592,4.476828 +L 1.0592,4.476828,0.9859,4.381102 +L 0.9859,4.381102,0.9185,4.285375 +L 0.9185,4.285375,0.8541,4.189653 +L 0.8541,4.189653,0.7976,4.093925 +L 0.7976,4.093925,0.7431,3.998201 +L 0.7431,3.998201,0.6966,3.901511 +L 0.6966,3.901511,0.653,3.805785 +L 0.653,3.805785,0.6143,3.710058 +L 0.6143,3.710058,0.4716,3.362935 +L 0.4716,3.362935,0.4647,2.596173 +L 0.4647,2.596173,0.7293,1.91063 +L 0.7293,1.91063,0.757,1.863251 +L 0.757,1.863251,0.7848,1.81877 +L 0.7848,1.81877,0.8135,1.775262 +L 0.8135,1.775262,0.8422,1.734649 +L 0.8422,1.734649,0.87,1.695974 +L 0.87,1.695974,0.8977,1.65826 +L 0.8977,1.65826,0.9265,1.623453 +L 0.9265,1.623453,0.9542,1.590579 +L 0.9542,1.590579,1.193,1.590579 +L 1.193,1.590579,1.194,1.780096 +L 1.194,1.780096,1.197,1.960908 +L 1.197,1.960908,1.201,2.132052 +L 1.201,2.132052,1.2089,2.294495 +L 1.2089,2.294495,1.2168,2.447263 +L 1.2168,2.447263,1.2287,2.591336 +L 1.2287,2.591336,1.2416,2.725738 +L 1.2416,2.725738,1.2564,2.851438 +L 1.2564,2.851438,1.5696,4.879064 +L 1.5696,4.879064,1.5775,4.943847 +L 1.5775,4.943847,1.5825,5.010564 +L 1.5825,5.010564,1.5864,5.078248 +L 1.5864,5.078248,1.5924,5.220386 +L 1.5924,5.220386,1.5934,5.29387 +L 1.5934,5.29387,1.5934,5.36929 +L 1.5934,5.36929,1.5914,5.445675 +L 1.5914,5.445675,1.5914,6.194072 + +[ω] 196 +L 1.4136,4.649901,1.6564,4.640236 +L 1.6564,4.640236,1.6564,4.467156 +L 1.6564,4.467156,1.6019,4.400441 +L 1.6019,4.400441,1.5445,4.336625 +L 1.5445,4.336625,1.485,4.275707 +L 1.485,4.275707,1.4246,4.218657 +L 1.4246,4.218657,1.3611,4.163545 +L 1.3611,4.163545,1.2947,4.112298 +L 1.2947,4.112298,1.2274,4.064919 +L 1.2274,4.064919,1.157,4.019475 +L 1.157,4.019475,1.1174,3.983697 +L 1.1174,3.983697,1.044,3.914099 +L 1.044,3.91408,1.0103,3.880237 +L 1.0103,3.880237,0.9796,3.847365 +L 0.9796,3.847365,0.9509,3.815454 +L 0.9509,3.815454,0.9251,3.784514 +L 0.9251,3.784514,0.9003,3.754539 +L 0.9003,3.754539,0.7576,3.527314 +L 0.7576,3.527314,0.7358,3.460592 +L 0.7358,3.460592,0.6962,3.330188 +L 0.6962,3.330061,0.6774,3.266242 +L 0.6774,3.266242,0.6586,3.202429 +L 0.6586,3.202429,0.607,3.015906 +L 0.608,3.015813,0.5723,2.877546 +L 0.5723,2.877546,0.5416,2.747978 +L 0.5416,2.747978,0.5169,2.627115 +L 0.5169,2.627115,0.4951,2.514953 +L 0.4951,2.514953,0.4792,2.41052 +L 0.4792,2.41052,0.4673,2.314799 +L 0.4673,2.314799,0.4604,2.22681 +L 0.4604,2.22681,0.4574,2.147519 +L 0.4574,2.147519,0.4574,1.689205 +L 0.4574,1.689205,0.938,1.068444 +L 0.938,1.068444,1.1104,1.123556 +L 1.1104,1.123556,1.2501,1.212446 +L 1.2501,1.212515,1.3185,1.257955 +L 1.3185,1.257955,1.3869,1.304371 +L 1.3869,1.304371,1.4553,1.35175 +L 1.4553,1.35175,1.5227,1.400092 +L 1.5227,1.400092,1.59,1.448441 +L 1.59,1.448441,1.6564,1.497756 +L 1.6564,1.497756,1.6832,1.585745 +L 1.6832,1.585745,1.7099,1.680503 +L 1.7099,1.680503,1.7357,1.781058 +L 1.7357,1.781058,1.7625,1.888389 +L 1.7625,1.888389,1.7882,2.002486 +L 1.7882,2.002486,1.8398,2.249955 +L 1.8398,2.250017,1.8962,2.55176 +L 1.8972,2.551695,1.925,2.715104 +L 1.925,2.715104,1.9478,2.875611 +L 1.9478,2.875611,1.9656,3.033216 +L 1.9656,3.033216,1.9815,3.185991 +L 1.9815,3.185991,1.9924,3.33683 +L 1.9924,3.33683,1.9993,3.482836 +L 1.9993,3.482836,2.0003,3.625936 +L 2.0003,3.625936,2.4749,3.625936 +L 2.4749,3.625936,2.3877,2.822428 +L 2.3877,2.822428,2.3818,2.750876 +L 2.3818,2.750876,2.3739,2.678362 +L 2.3739,2.678362,2.3649,2.603908 +L 2.3649,2.603908,2.354,2.528488 +L 2.354,2.528488,2.3412,2.451133 +L 2.3412,2.451133,2.3124,2.292624 +L 2.3124,2.292562,2.2946,2.211339 +L 2.2946,2.211339,2.2886,2.156221 +L 2.2886,2.156221,2.2817,2.097242 +L 2.2817,2.097242,2.2777,2.034395 +L 2.2777,2.034395,2.2728,1.966711 +L 2.2728,1.966711,2.2698,1.895156 +L 2.2698,1.895156,2.2678,1.81877 +L 2.2678,1.81877,2.2659,1.653426 +L 2.2659,1.653429,2.2659,1.433936 +L 2.2659,1.433936,2.5532,1.068444 +L 2.5532,1.068444,2.7336,1.133227 +L 2.7336,1.133227,3.1557,1.407831 +L 3.1557,1.407831,3.1963,1.446508 +L 3.1963,1.446508,3.235,1.485183 +L 3.235,1.485183,3.2717,1.523861 +L 3.2717,1.523861,3.3063,1.562538 +L 3.3063,1.562538,3.34,1.601216 +L 3.34,1.601216,3.3717,1.63989 +L 3.3717,1.63989,3.4005,1.678568 +L 3.4005,1.678568,3.4282,1.717245 +L 3.4282,1.717245,3.6076,1.945437 +L 3.6076,1.945437,3.6076,3.072864 +L 3.6076,3.072864,3.6046,3.15408 +L 3.6046,3.15408,3.5977,3.232404 +L 3.5977,3.232404,3.5868,3.306854 +L 3.5868,3.306854,3.5719,3.378403 +L 3.5719,3.378403,3.5541,3.446094 +L 3.5541,3.446094,3.5323,3.510876 +L 3.5323,3.510876,3.5085,3.571791 +L 3.5085,3.571791,3.4659,3.683953 +L 3.4659,3.683953,3.4223,3.790315 +L 3.4223,3.790315,3.3767,3.890874 +L 3.3767,3.890874,3.3291,3.987568 +L 3.3291,3.987568,3.2806,4.078455 +L 3.2806,4.078455,3.23,4.164512 +L 3.23,4.164512,3.1775,4.244762 +L 3.1775,4.244762,3.122,4.320188 +L 3.122,4.320188,3.0655,4.318147 +L 3.0655,4.318248,3.0319,4.319218 +L 3.0319,4.319218,2.9942,4.321154 +L 2.9942,4.321154,2.9536,4.324053 +L 2.9536,4.324053,2.909,4.32792 +L 2.909,4.32792,2.8604,4.332754 +L 2.8604,4.332754,2.8089,4.339521 +L 2.8089,4.339521,2.8089,4.649901 +L 2.8089,4.649901,3.3579,4.649901 +L 3.3579,4.649901,3.452,4.527108 +L 3.452,4.527108,3.5392,4.407207 +L 3.5392,4.407207,3.6195,4.290212 +L 3.6195,4.290212,3.6928,4.175149 +L 3.6928,4.175149,3.7592,4.06202 +L 3.7592,4.06202,3.8187,3.950822 +L 3.8187,3.950822,3.8712,3.842527 +L 3.8712,3.842527,3.9168,3.736163 +L 3.9168,3.736163,3.9524,3.641407 +L 3.9524,3.641407,3.9841,3.553422 +L 3.9841,3.553422,4.0099,3.471233 +L 4.0099,3.471233,4.0307,3.396779 +L 4.0307,3.396779,4.0466,3.328129 +L 4.0466,3.328129,4.0575,3.266242 +L 4.0575,3.266242,4.0634,3.210161 +L 4.0634,3.210161,4.0644,3.161819 +L 4.0644,3.161819,4.0644,2.448235 +L 4.0644,2.448235,4.0634,2.391182 +L 4.0634,2.391182,4.0595,2.338972 +L 4.0595,2.338972,4.0535,2.292562 +L 4.0535,2.292562,4.0456,2.250017 +L 4.0456,2.250017,4.0367,2.212302 +L 4.0367,2.212302,4.0238,2.179431 +L 4.0238,2.179431,4.0099,2.15139 +L 4.0099,2.15139,3.9931,2.128181 +L 3.9931,2.128181,3.9584,2.033422 +L 3.9584,2.033422,3.9237,1.942535 +L 3.9237,1.942535,3.889,1.85358 +L 3.889,1.85358,3.8533,1.767526 +L 3.8533,1.767526,3.8177,1.685337 +L 3.8177,1.685337,3.781,1.605084 +L 3.781,1.605084,3.7443,1.527729 +L 3.7443,1.527729,3.7067,1.453275 +L 3.7067,1.453275,3.6452,1.377855 +L 3.6452,1.377855,3.5838,1.307273 +L 3.5838,1.307273,3.5253,1.241521 +L 3.5253,1.241521,3.4659,1.180606 +L 3.4659,1.180606,3.4084,1.124525 +L 3.4084,1.124525,3.3529,1.074241 +L 3.3529,1.074241,3.2974,1.027834 +L 3.2974,1.027834,3.2439,0.986253 +L 3.2439,0.986253,2.9635,0.81221 +L 2.9635,0.81221,2.9199,0.786105 +L 2.9199,0.786105,2.8783,0.763861 +L 2.8783,0.763861,2.8396,0.746458 +L 2.8396,0.746458,2.8039,0.734858 +L 2.8039,0.734858,2.7712,0.729054 +L 2.7712,0.729054,2.7425,0.727119 +L 2.7425,0.727119,2.7167,0.73099 +L 2.7167,0.73099,2.6939,0.739691 +L 2.6939,0.739691,2.3134,0.739691 +L 2.3134,0.739691,1.9289,1.22508 +L 1.9289,1.22508,1.9061,1.19704 +L 1.9061,1.19704,1.8794,1.169 +L 1.8794,1.169,1.8497,1.139996 +L 1.8497,1.139996,1.815,1.11002 +L 1.815,1.11002,1.7783,1.080047 +L 1.7783,1.080047,1.6911,1.017953 +L 1.6911,1.01816,1.6435,0.986253 +L 1.6435,0.986253,1.3661,0.81221 +L 1.3661,0.81221,1.3205,0.786105 +L 1.3205,0.786105,1.2789,0.763861 +L 1.2789,0.763861,1.2392,0.746458 +L 1.2392,0.746458,1.2056,0.734858 +L 1.2056,0.734858,1.1719,0.729054 +L 1.1719,0.729054,1.1441,0.727119 +L 1.1441,0.727119,1.1174,0.73099 +L 1.1174,0.73099,1.0936,0.739691 +L 1.0936,0.739691,0.716,0.739691 +L 0.716,0.739691,0.0016,1.653429 +L 0.0016,1.653429,0.0016,2.321568 +L 0.0016,2.321568,0.0045,2.389253 +L 0.0045,2.389253,0.0135,2.466601 +L 0.0135,2.466601,0.0303,2.552658 +L 0.0303,2.552658,0.0531,2.647416 +L 0.0531,2.647416,0.0808,2.750876 +L 0.0808,2.750876,0.1165,2.863038 +L 0.1165,2.863038,0.1581,2.984874 +L 0.1581,2.984874,0.2047,3.114439 +L 0.2047,3.114439,0.3088,3.357132 +L 0.3088,3.357132,0.4267,3.58436 +L 0.4267,3.58436,0.5575,3.798051 +L 0.5575,3.798051,0.7012,3.997235 +L 0.7012,3.997235,0.8587,4.181915 +L 0.8587,4.181915,1.0311,4.352093 +L 1.0311,4.352093,1.2155,4.507765 +L 1.2155,4.507765,1.4136,4.649901 + +#EOF# Format: QCad Unicode Font +# Creator: QCad +# Version: 1.5.1 +# Name: greekOL+ +# Dimensions: 0.2 0.6 1.4 +# Original: Kochi Gothic +# Modification:OutLine +# Yoshimune Kobayashi +# Version 2003.01.10 + +# Greek Umlaut Accent characters + +[Ά] 157 +L 2.1973,6.735547,2.3801,6.732729 +L 2.3801,6.732644,2.4376,6.730712 +L 2.4376,6.730712,2.5496,6.724956 +L 2.5496,6.72491,2.6021,6.721039 +L 2.6021,6.721039,2.6546,6.716208 +L 2.6546,6.716208,2.6546,6.636918 +L 2.6546,6.636918,2.6566,6.566335 +L 2.6566,6.566335,2.6606,6.505417 +L 2.6606,6.505417,2.6645,6.453207 +L 2.6645,6.453207,2.671,6.41163 +L 2.671,6.41163,2.6774,6.378747 +L 2.6774,6.378747,2.6863,6.354578 +L 2.6863,6.354578,2.6972,6.341045 +L 2.6972,6.341045,2.7621,6.166996 +L 2.7621,6.166996,2.8241,5.991988 +L 2.8241,5.991988,2.8835,5.817939 +L 2.8835,5.817939,2.941,5.64293 +L 2.941,5.64293,2.996,5.467917 +L 2.996,5.467917,3.048,5.291937 +L 3.048,5.291937,3.0986,5.11596 +L 3.0986,5.11596,3.1466,4.93998 +L 3.1466,4.93998,3.4533,4.085222 +L 3.4533,4.085222,3.5138,3.913272 +L 3.5133,3.913111,3.5395,3.832857 +L 3.5395,3.832857,3.5633,3.755507 +L 3.5633,3.755507,3.5861,3.682017 +L 3.5861,3.682017,3.6238,3.545707 +L 3.6238,3.545686,3.6381,3.482837 +L 3.6381,3.482837,3.6694,3.367772 +L 3.6694,3.367772,3.7001,3.256578 +L 3.7001,3.256578,3.7318,3.148283 +L 3.7318,3.148283,3.7625,3.044823 +L 3.7625,3.044823,3.7952,2.944264 +L 3.7952,2.944264,3.8284,2.848534 +L 3.8284,2.848534,3.8616,2.755715 +L 3.8616,2.755715,3.8953,2.667725 +L 3.8953,2.667725,4.2292,1.553837 +L 4.2292,1.553837,4.259,1.476482 +L 4.259,1.476482,4.2897,1.40203 +L 4.2897,1.40203,4.3234,1.32951 +L 4.3234,1.32951,4.36,1.258927 +L 4.36,1.258927,4.3997,1.189308 +L 4.3997,1.189308,4.4423,1.12259 +L 4.4423,1.12259,4.4889,1.057807 +L 4.4889,1.057807,4.5374,0.994954 +L 4.5374,0.994954,4.5652,0.994954 +L 4.5652,0.994954,4.6311,0.992963 +L 4.6311,0.993025,4.6687,0.991089 +L 4.6687,0.991089,4.7539,0.985007 +L 4.7539,0.985289,4.801,0.982388 +L 4.801,0.982388,4.8506,0.97755 +L 4.8506,0.97755,4.8506,0.666204 +L 4.8506,0.666204,3.1897,0.685543 +L 3.1897,0.685543,3.1897,0.994954 +L 3.1897,0.994954,3.5029,0.994954 +L 3.5029,0.994954,3.7744,1.343048 +L 3.7744,1.343048,3.7556,1.368188 +L 3.7556,1.368188,3.7377,1.399129 +L 3.7377,1.399129,3.7194,1.435871 +L 3.7194,1.435871,3.7011,1.477444 +L 3.7011,1.477444,3.6812,1.524824 +L 3.6812,1.524824,3.6634,1.578009 +L 3.6634,1.578009,3.6436,1.636023 +L 3.6436,1.636023,3.6243,1.699838 +L 3.6243,1.699838,3.6,1.7975 +L 3.6,1.7975,3.5752,1.89419 +L 3.5752,1.89419,3.549,1.989914 +L 3.549,1.989914,3.5207,2.084672 +L 3.5207,2.084672,3.491,2.179431 +L 3.491,2.179431,3.4613,2.272254 +L 3.4613,2.272254,3.4295,2.365077 +L 3.4295,2.365077,3.3963,2.456938 +L 3.3963,2.456938,3.3949,2.497547 +L 3.3949,2.497547,3.3949,2.535255 +L 3.3949,2.535255,3.3944,2.570061 +L 3.3944,2.570061,3.3944,2.603908 +L 3.3944,2.603908,3.3929,2.633882 +L 3.3929,2.633882,3.3919,2.662888 +L 3.3919,2.662888,3.3904,2.688991 +L 3.3904,2.688991,3.3884,2.713169 +L 3.3884,2.713169,1.5487,2.713169 +L 1.5487,2.713169,1.5061,2.658054 +L 1.5061,2.658054,1.4645,2.600037 +L 1.4645,2.600037,1.4249,2.536224 +L 1.4249,2.536224,1.3843,2.469506 +L 1.3843,2.469506,1.3456,2.396988 +L 1.3456,2.396988,1.3079,2.321568 +L 1.3079,2.321568,1.2713,2.240342 +L 1.2713,2.240342,1.2356,2.156221 +L 1.2356,2.156221,0.9998,1.562539 +L 0.9998,1.562539,0.8709,1.343048 +L 0.8709,1.343048,1.1489,0.994954 +L 1.1489,0.994954,1.2044,0.994954 +L 1.2044,0.994954,1.3218,0.99296 +L 1.3218,0.993025,1.3843,0.991089 +L 1.3843,0.991089,1.5894,0.982047 +L 1.5894,0.982388,1.6627,0.97755 +L 1.6627,0.97755,1.6627,0.666204 +L 1.6627,0.666204,-0.0001,0.685543 +L -0.0001,0.685543,-0.0001,0.994954 +L -0.0001,0.994954,0.3145,0.994954 +L 0.3145,0.994954,0.3626,1.055872 +L 0.3626,1.055872,0.4082,1.118722 +L 0.4082,1.118722,0.4498,1.182539 +L 0.4498,1.182539,0.4894,1.249254 +L 0.4894,1.249254,0.5251,1.317903 +L 0.5251,1.317903,0.5583,1.388492 +L 0.5583,1.388492,0.5875,1.460041 +L 0.5875,1.460041,0.6143,1.534499 +L 0.6143,1.534499,1.1489,2.956835 +L 1.1489,2.956835,1.189,3.10767 +L 1.189,3.10767,1.2282,3.253673 +L 1.2282,3.253673,1.2693,3.395808 +L 1.2693,3.395808,1.3094,3.533113 +L 1.3094,3.533113,1.3516,3.665583 +L 1.3516,3.665583,1.3927,3.794179 +L 1.3927,3.794179,1.4343,3.918913 +L 1.4343,3.918913,1.4764,4.038815 +L 1.4764,4.038815,1.9332,5.748325 +L 1.9332,5.748325,2.1542,6.341045 +L 2.1542,6.341045,2.1973,6.576006 +L 2.1973,6.576006,2.1973,6.735547 +L 2.2553,5.893358,2.2543,5.830511 +L 2.2543,5.830511,2.2523,5.773463 +L 2.2523,5.773463,2.2493,5.722216 +L 2.2493,5.722216,2.2454,5.676773 +L 2.2454,5.676773,2.2409,5.637124 +L 2.2409,5.637124,2.235,5.604252 +L 2.235,5.604252,2.227,5.576212 +L 2.227,5.576212,2.2196,5.553974 +L 2.2196,5.553974,1.7489,3.811588 +L 1.7489,3.811588,1.47,3.087368 +L 1.47,3.087368,3.1679,3.087368 +L 3.1679,3.087368,3.1699,3.134741 +L 3.1699,3.134741,3.1679,3.188888 +L 3.1679,3.188888,3.159,3.248838 +L 3.159,3.248838,3.1466,3.31459 +L 3.1466,3.31459,3.1273,3.387107 +L 3.1273,3.387107,3.1035,3.466395 +L 3.1035,3.466395,3.0738,3.551486 +L 3.0738,3.551486,3.0396,3.642378 +L 3.0396,3.642378,2.9589,3.857028 +L 2.9589,3.857028,2.8835,4.065887 +L 2.8835,4.065887,2.8132,4.269908 +L 2.8132,4.269908,2.7468,4.469089 +L 2.7468,4.469089,2.6844,4.663442 +L 2.6844,4.663442,2.6274,4.851991 +L 2.6274,4.851991,2.5744,5.035702 +L 2.5744,5.035702,2.5258,5.215549 +L 2.5258,5.215549,2.3762,5.658398 +L 2.3762,5.658398,2.3762,5.884657 +L 2.3762,5.884657,2.3118,5.893358 +L 2.3118,5.893358,2.2553,5.893358 +L 1.8725,6.735547,0.5903,5.094445 +L 0.5903,5.094445,-0.0003,5.094445 +L -0.0003,5.094445,0.8697,6.735547 +L 0.8697,6.735547,1.8725,6.735547 + +[Ή] 64 +L 2.0004,6.735547,5.8869,6.735547 +L 5.8869,6.735547,5.8869,5.082117 +L 5.8869,5.082117,5.6193,5.092754 +L 5.6193,5.092754,5.6198,5.157537 +L 5.6198,5.157537,5.6178,5.21942 +L 5.6178,5.21942,5.6139,5.2784 +L 5.6139,5.2784,5.6065,5.334481 +L 5.6065,5.334481,5.5975,5.387663 +L 5.5975,5.387663,5.5847,5.437945 +L 5.5847,5.437945,5.5718,5.486286 +L 5.5718,5.486286,5.5539,5.530768 +L 5.5539,5.530768,5.4172,5.896261 +L 5.4172,5.896261,5.4033,6.105113 +L 5.4033,6.105113,5.3617,6.105113 +L 5.3617,6.105113,5.325,6.106085 +L 5.325,6.106085,5.2636,6.109673 +L 5.2636,6.109948,5.2195,6.115282 +L 5.2195,6.115748,5.2041,6.119617 +L 5.2041,6.119617,5.1932,6.124448 +L 5.1932,6.124448,4.8251,6.361344 +L 4.8251,6.361344,3.3451,6.361344 +L 3.3451,6.361344,3.0568,5.975548 +L 3.0568,5.975548,3.0568,4.116166 +L 3.0568,4.116166,4.1181,4.116166 +L 4.1181,4.116166,4.6086,4.736926 +L 4.6086,4.736926,4.6086,5.139168 +L 4.6086,5.139168,4.8821,5.139168 +L 4.8821,5.139168,4.8821,2.718967 +L 4.8821,2.718967,4.6086,2.718967 +L 4.6086,2.718967,4.6086,3.120243 +L 4.6086,3.120243,4.1181,3.741969 +L 4.1181,3.741969,3.0568,3.741969 +L 3.0568,3.741969,3.0568,1.366256 +L 3.0568,1.366256,3.359,1.000757 +L 3.359,1.000757,4.9217,1.000757 +L 4.9217,1.000757,5.004,1.102282 +L 5.004,1.102282,5.0793,1.198975 +L 5.0793,1.198975,5.1481,1.290836 +L 5.1481,1.290836,5.2091,1.378825 +L 5.2091,1.378825,5.2631,1.461976 +L 5.2631,1.461976,5.3102,1.541267 +L 5.3102,1.541267,5.3498,1.616687 +L 5.3498,1.616687,5.382,1.6863 +L 5.382,1.6863,5.6119,2.271288 +L 5.6119,2.271288,5.6119,2.536224 +L 5.6119,2.536224,5.8869,2.527523 +L 5.8869,2.527523,5.8869,0.672008 +L 5.8869,0.672008,2.0004,0.691346 +L 2.0004,0.691346,2.0004,1.000757 +L 2.0004,1.000757,2.3146,1.000757 +L 2.3146,1.000757,2.5999,1.366256 +L 2.5999,1.366256,2.5999,6.014222 +L 2.5999,6.014222,2.3146,6.394223 +L 2.3146,6.394223,2.2878,6.392291 +L 2.2878,6.392291,2.2244,6.392291 +L 2.2244,6.392291,2.1867,6.394223 +L 2.1867,6.394223,2.1456,6.397126 +L 2.1456,6.397126,2.0529,6.406997 +L 2.0529,6.406794,2.0004,6.413562 +L 2.0004,6.413562,2.0004,6.735547 +L 1.8728,6.735547,0.5906,5.094445 +L 0.5906,5.094445,0,5.094445 +L 0,5.094445,0.87,6.735547 +L 0.87,6.735547,1.8728,6.735547 + +[Ί] 61 +L 1.9997,6.695902,3.6551,6.678496 +L 3.6551,6.678496,3.6551,6.36715 +L 3.6551,6.36715,3.3405,6.36715 +L 3.3405,6.36715,3.0561,5.98425 +L 3.0561,5.98425,3.0561,4.13744 +L 3.0561,4.13744,5.3838,4.156775 +L 5.3838,4.156775,5.3838,6.001653 +L 5.3838,6.001653,5.0984,6.36715 +L 5.0984,6.36715,5.0716,6.365215 +L 5.0716,6.365215,5.0067,6.365215 +L 5.0067,6.365215,4.9705,6.36715 +L 4.9705,6.36715,4.9289,6.370046 +L 4.9289,6.370046,4.8843,6.373917 +L 4.8843,6.373917,4.8368,6.379723 +L 4.8368,6.379723,4.7843,6.385521 +L 4.7843,6.385521,4.7843,6.695902 +L 4.7843,6.695902,6.4391,6.678496 +L 6.4391,6.678496,6.4391,6.36715 +L 6.4391,6.36715,6.126,6.36715 +L 6.126,6.36715,5.8406,6.001653 +L 5.8406,6.001653,5.8406,1.433936 +L 5.8406,1.433936,6.126,1.068445 +L 6.126,1.068445,6.1537,1.068445 +L 6.1537,1.068445,6.1854,1.067475 +L 6.1854,1.067475,6.2573,1.06339 +L 6.2573,1.063604,6.2989,1.061675 +L 6.2989,1.061675,6.342,1.058773 +L 6.342,1.058773,6.4391,1.050719 +L 6.4391,1.051034,6.4391,0.739691 +L 6.4391,0.739691,4.7843,0.75903 +L 4.7843,0.75903,4.7843,1.068445 +L 4.7843,1.068445,5.0984,1.068445 +L 5.0984,1.068445,5.3838,1.433936 +L 5.3838,1.433936,5.3838,3.808687 +L 5.3838,3.808687,3.0561,3.808687 +L 3.0561,3.808687,3.0561,1.433936 +L 3.0561,1.433936,3.3405,1.068445 +L 3.3405,1.068445,3.3692,1.068445 +L 3.3692,1.068445,3.4009,1.067475 +L 3.4009,1.067475,3.4732,1.063441 +L 3.4732,1.063604,3.5139,1.061675 +L 3.5139,1.061675,3.5575,1.058773 +L 3.5575,1.058773,3.6551,1.050815 +L 3.6551,1.051034,3.6551,0.739691 +L 3.6551,0.739691,1.9997,0.75903 +L 1.9997,0.75903,1.9997,1.068445 +L 1.9997,1.068445,2.3138,1.068445 +L 2.3138,1.068445,2.5992,1.433936 +L 2.5992,1.433936,2.5992,6.001653 +L 2.5992,6.001653,2.3138,6.36715 +L 2.3138,6.36715,2.2871,6.365215 +L 2.2871,6.365215,2.2227,6.365215 +L 2.2227,6.365215,2.185,6.36715 +L 2.185,6.36715,2.1449,6.370046 +L 2.1449,6.370046,2.1008,6.373917 +L 2.1008,6.373917,1.9997,6.385953 +L 1.9997,6.385521,1.9997,6.695902 +L 1.8729,6.735547,0.5906,5.094445 +L 0.5906,5.094445,0,5.094445 +L 0,5.094445,0.87,6.735547 +L 0.87,6.735547,1.8729,6.735547 + +[Ό] 28 +L 2,6.695902,4.0537,6.678494 +L 4.0537,6.678494,4.0537,6.36715 +L 4.0537,6.36715,3.5399,6.36715 +L 3.5399,6.36715,3.255,6.001653 +L 3.255,6.001653,3.255,1.433936 +L 3.255,1.433936,3.5399,1.068445 +L 3.5399,1.068445,3.5944,1.068445 +L 3.5944,1.068445,3.6529,1.067475 +L 3.6529,1.067475,3.9095,1.059179 +L 3.9095,1.058773,4.0537,1.050877 +L 4.0537,1.051034,4.0537,0.739691 +L 4.0537,0.739691,2,0.75903 +L 2,0.75903,2,1.068445 +L 2,1.068445,2.5133,1.068445 +L 2.5133,1.068445,2.7987,1.433936 +L 2.7987,1.433936,2.7987,6.001653 +L 2.7987,6.001653,2.5133,6.36715 +L 2.5133,6.36715,2.4603,6.365215 +L 2.4603,6.365215,2.3439,6.365215 +L 2.3439,6.365215,2.2814,6.36715 +L 2.2814,6.36715,2.215,6.370046 +L 2.215,6.370046,2.1467,6.373917 +L 2.1467,6.373917,2,6.385669 +L 2,6.385521,2,6.695902 +L 1.8729,6.735547,0.5906,5.094445 +L 0.5906,5.094445,0,5.094445 +L 0,5.094445,0.8701,6.735547 +L 0.8701,6.735547,1.8729,6.735547 + +[Ύ] 36 +L 0.3185,6.695902,2.3722,6.678494 +L 2.3722,6.678494,2.3722,6.36715 +L 2.3722,6.36715,1.8584,6.36715 +L 1.8584,6.36715,1.5735,6.001653 +L 1.5735,6.001653,1.5735,1.433936 +L 1.5735,1.433936,1.8584,1.068445 +L 1.8584,1.068445,1.9129,1.068445 +L 1.9129,1.068445,1.9714,1.067475 +L 1.9714,1.067475,2.2281,1.059179 +L 2.2281,1.058773,2.3722,1.050877 +L 2.3722,1.051034,2.3722,0.739691 +L 2.3722,0.739691,0.3185,0.75903 +L 0.3185,0.75903,0.3185,1.068445 +L 0.3185,1.068445,0.8318,1.068445 +L 0.8318,1.068445,1.1172,1.433936 +L 1.1172,1.433936,1.1172,6.001653 +L 1.1172,6.001653,0.8318,6.36715 +L 0.8318,6.36715,0.7788,6.365215 +L 0.7788,6.365215,0.6624,6.365215 +L 0.6624,6.365215,0.5999,6.36715 +L 0.5999,6.36715,0.5336,6.370046 +L 0.5336,6.370046,0.4652,6.373917 +L 0.4652,6.373917,0.3185,6.385669 +L 0.3185,6.385521,0.3185,6.695902 +L -0.0003,7.557676,0.6844,7.557676 +L 0.6844,7.557676,0.6844,6.995901 +L 0.6844,6.995901,-0.0003,6.995901 +L -0.0003,6.995901,-0.0003,7.557676 +L 2.0063,7.557676,2.6911,7.557676 +L 2.6911,7.557676,2.6911,6.995901 +L 2.6911,6.995901,2.0063,6.995901 +L 2.0063,6.995901,2.0063,7.557676 +L 2.482,8.503029,1.3999,6.995901 +L 1.3999,6.995901,0.8093,6.995901 +L 0.8093,6.995901,1.4787,8.503029 +L 1.4787,8.503029,2.482,8.503029 + +[ΐ] 32 +L 0.3182,6.695902,2.3719,6.678494 +L 2.3719,6.678494,2.3719,6.36715 +L 2.3719,6.36715,1.8581,6.36715 +L 1.8581,6.36715,1.5732,6.001653 +L 1.5732,6.001653,1.5732,1.433936 +L 1.5732,1.433936,1.8581,1.068445 +L 1.8581,1.068445,1.9126,1.068445 +L 1.9126,1.068445,1.971,1.067475 +L 1.971,1.067475,2.2277,1.059179 +L 2.2277,1.058773,2.3719,1.050877 +L 2.3719,1.051034,2.3719,0.739691 +L 2.3719,0.739691,0.3182,0.75903 +L 0.3182,0.75903,0.3182,1.068445 +L 0.3182,1.068445,0.8315,1.068445 +L 0.8315,1.068445,1.1169,1.433936 +L 1.1169,1.433936,1.1169,6.001653 +L 1.1169,6.001653,0.8315,6.36715 +L 0.8315,6.36715,0.7785,6.365215 +L 0.7785,6.365215,0.662,6.365215 +L 0.662,6.365215,0.5996,6.36715 +L 0.5996,6.36715,0.5332,6.370046 +L 0.5332,6.370046,0.4648,6.373917 +L 0.4648,6.373917,0.3182,6.385669 +L 0.3182,6.385521,0.3182,6.695902 +L -0.0007,7.557676,0.6841,7.557676 +L 0.6841,7.557676,0.6841,6.995901 +L 0.6841,6.995901,-0.0007,6.995901 +L -0.0007,6.995901,-0.0007,7.557676 +L 2.006,7.557676,2.6907,7.557676 +L 2.6907,7.557676,2.6907,6.995901 +L 2.6907,6.995901,2.006,6.995901 +L 2.006,6.995901,2.006,7.557676 + +[Ϊ] 194 +L 2.9125,6.735546,3.3545,6.735546 +L 3.3545,6.735546,3.4011,6.734578 +L 3.4011,6.734578,3.4437,6.732643 +L 3.4437,6.732643,3.4853,6.728776 +L 3.4853,6.728776,3.5215,6.723941 +L 3.5215,6.723941,3.5566,6.717171 +L 3.5566,6.717171,3.5874,6.709437 +L 3.5874,6.709437,3.6151,6.700735 +L 3.6151,6.700735,3.6399,6.690102 +L 3.6399,6.690102,4.3236,6.39615 +L 4.3236,6.39615,4.3801,6.355545 +L 4.3801,6.355545,4.4297,6.317835 +L 4.4297,6.317835,4.4752,6.28206 +L 4.4752,6.28206,4.5129,6.248217 +L 4.5129,6.248217,4.5456,6.217275 +L 4.5456,6.217275,4.5724,6.189238 +L 4.5724,6.189238,4.5951,6.163126 +L 4.5951,6.163126,4.609,6.138956 +L 4.609,6.138956,4.7002,6.013258 +L 4.7002,6.013258,4.7899,5.874987 +L 4.7899,5.874987,4.8776,5.725116 +L 4.8776,5.725116,4.9658,5.562676 +L 4.9658,5.562676,5.053,5.387663 +L 5.053,5.387663,5.1392,5.200081 +L 5.1392,5.200081,5.2244,4.999927 +L 5.2244,4.999927,5.3086,4.788169 +L 5.3086,4.788169,5.4518,4.421708 +L 5.4518,4.421708,5.4518,3.081565 +L 5.4518,3.081565,5.0381,1.99668 +L 5.0381,1.99668,5.0084,1.933833 +L 5.0084,1.933833,4.9727,1.866149 +L 4.9727,1.866149,4.9291,1.791695 +L 4.9291,1.791695,4.8795,1.712411 +L 4.8795,1.712411,4.8211,1.627322 +L 4.8211,1.627322,4.7547,1.535461 +L 4.7547,1.535461,4.6828,1.438769 +L 4.6828,1.438769,4.6031,1.33628 +L 4.6031,1.33628,4.4098,1.151596 +L 4.4098,1.151596,4.3573,1.118722 +L 4.3573,1.118722,4.3038,1.086814 +L 4.3038,1.086814,4.2513,1.057807 +L 4.2513,1.057807,4.1993,1.030733 +L 4.1993,1.030733,4.1477,1.005594 +L 4.1477,1.005594,4.0967,0.981418 +L 4.0967,0.981418,4.0462,0.960144 +L 4.0462,0.960144,3.9966,0.941778 +L 3.9966,0.941778,3.5467,0.748393 +L 3.5467,0.748393,3.0775,0.748393 +L 3.0775,0.748393,3.0265,0.751295 +L 3.0265,0.751295,2.9745,0.758064 +L 2.9745,0.758064,2.9214,0.769664 +L 2.9214,0.769664,2.866,0.7832 +L 2.866,0.7832,2.8085,0.801576 +L 2.8085,0.801576,2.751,0.823813 +L 2.751,0.823813,2.6906,0.848952 +L 2.6906,0.848952,2.6053,0.882793 +L 2.6053,0.882793,2.5186,0.918571 +L 2.5186,0.918571,2.4309,0.957249 +L 2.4309,0.957249,2.3442,0.998822 +L 2.3442,0.998822,2.2545,1.042333 +L 2.2545,1.042333,2.1659,1.088749 +L 2.1659,1.088749,2.0762,1.138061 +L 2.0762,1.138061,1.985,1.189308 +L 1.985,1.189308,1.55,1.739483 +L 1.55,1.739483,1.5222,1.7975 +L 1.5222,1.7975,1.4965,1.852611 +L 1.4965,1.852611,1.4103,2.036157 +L 1.4113,2.036327,1.3796,2.108068 +L 1.3786,2.10788,1.0079,3.070928 +L 1.0079,3.070928,1.0005,4.384971 +L 1.0005,4.384971,1.3929,5.412798 +L 1.3929,5.412798,1.4241,5.483389 +L 1.4241,5.483389,1.4603,5.555905 +L 1.4603,5.555905,1.5014,5.632293 +L 1.5014,5.632293,1.548,5.711583 +L 1.548,5.711583,1.599,5.792801 +L 1.599,5.792801,1.656,5.877889 +L 1.656,5.877889,1.718,5.964907 +L 1.718,5.964907,1.7853,6.055802 +L 1.7853,6.055802,1.8488,6.126387 +L 1.8488,6.126387,1.9226,6.196005 +L 1.9226,6.196005,2.0068,6.263689 +L 2.0068,6.263689,2.099,6.331367 +L 2.099,6.331367,2.2015,6.397125 +L 2.2015,6.397125,2.315,6.461908 +L 2.315,6.461908,2.4379,6.525723 +L 2.4379,6.525723,2.5702,6.587606 +L 2.5702,6.587606,2.9125,6.735546 +L 3.1335,6.361343,2.4478,6.071274 +L 2.4478,6.071274,2.3903,6.036464 +L 2.3903,6.036464,2.3338,5.99779 +L 2.3338,5.99779,2.2803,5.957177 +L 2.2803,5.957177,2.2278,5.912695 +L 2.2278,5.912695,2.1763,5.866286 +L 2.1763,5.866286,2.1267,5.816975 +L 2.1267,5.816975,2.0811,5.764761 +L 2.0811,5.764761,2.0351,5.709646 +L 2.0351,5.709646,1.9939,5.627458 +L 1.9939,5.627458,1.9533,5.53947 +L 1.9533,5.53947,1.9122,5.446647 +L 1.9122,5.446647,1.8725,5.348985 +L 1.8725,5.348985,1.8324,5.245525 +L 1.8324,5.245525,1.7928,5.136265 +L 1.7928,5.136265,1.7531,5.022167 +L 1.7531,5.022167,1.714,4.90227 +L 1.714,4.90227,1.4846,4.031075 +L 1.4846,4.031075,1.4717,3.859935 +L 1.4717,3.859935,1.4747,3.757437 +L 1.4747,3.757437,1.4841,3.64334 +L 1.4841,3.64334,1.4999,3.517645 +L 1.4999,3.517645,1.5213,3.382274 +L 1.5213,3.382274,1.549,3.234338 +L 1.549,3.234338,1.5837,3.076729 +L 1.5837,3.076729,1.6243,2.90752 +L 1.6243,2.90752,1.6709,2.727671 +L 1.6709,2.727671,1.7298,2.536224 +L 1.7298,2.536224,1.7898,2.357345 +L 1.7898,2.357345,1.8532,2.192001 +L 1.8532,2.192001,1.9196,2.038263 +L 1.9196,2.038263,1.987,1.897091 +L 1.987,1.897091,2.0574,1.767526 +L 2.0574,1.767526,2.1307,1.651493 +L 2.1307,1.651493,2.206,1.548033 +L 2.206,1.548033,2.2724,1.510325 +L 2.2724,1.510325,2.3378,1.474549 +L 2.3378,1.474549,2.4042,1.440702 +L 2.4042,1.440702,2.4711,1.407831 +L 2.4711,1.407831,2.5389,1.376889 +L 2.5389,1.376889,2.6058,1.347879 +L 2.6058,1.347879,2.6732,1.320809 +L 2.6732,1.320809,2.7411,1.294704 +L 2.7411,1.294704,2.8333,1.255056 +L 2.8333,1.255056,2.919,1.219284 +L 2.919,1.219284,3.0007,1.190274 +L 3.0007,1.190274,3.076,1.166101 +L 3.076,1.166101,3.1464,1.146763 +L 3.1464,1.146763,3.2123,1.133227 +L 3.2123,1.133227,3.2713,1.125491 +L 3.2713,1.125491,3.3267,1.12259 +L 3.3267,1.12259,4.0105,1.4117 +L 4.0105,1.4117,4.0709,1.441676 +L 4.0709,1.441676,4.1284,1.476482 +L 4.1284,1.476482,4.1859,1.517092 +L 4.1859,1.517092,4.2414,1.562539 +L 4.2414,1.562539,4.2944,1.612816 +L 4.2944,1.612816,4.3464,1.667931 +L 4.3464,1.667931,4.397,1.727882 +L 4.397,1.727882,4.4455,1.793631 +L 4.4455,1.793631,4.4891,1.886454 +L 4.4891,1.886454,4.5327,1.984113 +L 4.5327,1.984113,4.5743,2.085642 +L 4.5743,2.085642,4.6155,2.192001 +L 4.6155,2.192001,4.6551,2.303195 +L 4.6551,2.303195,4.6932,2.41826 +L 4.6932,2.41826,4.7304,2.538152 +L 4.7304,2.538152,4.7666,2.662888 +L 4.7666,2.662888,4.9876,3.51571 +L 4.9876,3.51571,4.9881,3.626906 +L 4.9881,3.626906,4.9856,3.735201 +L 4.9856,3.735201,4.9786,3.841558 +L 4.9786,3.841558,4.9697,3.943085 +L 4.9697,3.943085,4.9568,4.042682 +L 4.9568,4.042682,4.942,4.139372 +L 4.942,4.139372,4.9241,4.232193 +L 4.9241,4.232193,4.9023,4.322118 +L 4.9023,4.322118,4.6239,5.290973 +L 4.6239,5.290973,4.5892,5.377991 +L 4.5892,5.377991,4.5506,5.463082 +L 4.5506,5.463082,4.5099,5.546236 +L 4.5099,5.546236,4.4653,5.62649 +L 4.4653,5.62649,4.4188,5.704813 +L 4.4188,5.704813,4.3682,5.780233 +L 4.3682,5.780233,4.3147,5.853717 +L 4.3147,5.853717,4.2602,5.925268 +L 4.2602,5.925268,4.1993,5.961044 +L 4.1993,5.961044,4.1363,5.995855 +L 4.1363,5.995855,4.0729,6.029692 +L 4.0729,6.029692,4.009,6.062572 +L 4.009,6.062572,3.9431,6.09351 +L 3.9431,6.09351,3.8767,6.123486 +L 3.8767,6.123486,3.8083,6.152492 +L 3.8083,6.152492,3.739,6.179567 +L 3.739,6.179567,3.6364,6.222113 +L 3.6364,6.222113,3.5408,6.258855 +L 3.5408,6.258855,3.4541,6.289794 +L 3.4541,6.289794,3.3733,6.315899 +L 3.3733,6.315899,3.302,6.335238 +L 3.302,6.335238,3.2385,6.349746 +L 3.2385,6.349746,3.1821,6.358448 +L 3.1821,6.358448,3.1335,6.361343 +L 1.8735,6.735546,0.5913,5.094445 +L 0.5913,5.094445,0.0007,5.094445 +L 0.0007,5.094445,0.8707,6.735546 +L 0.8707,6.735546,1.8735,6.735546 + +[Ϋ] 110 +L 2.5113,6.735546,2.9449,6.735546 +L 2.9449,6.735546,3.2575,6.333306 +L 3.2575,6.333306,3.2575,3.904408 +L 3.2575,3.904408,3.3903,3.567882 +L 3.3913,3.56792,3.4324,3.465429 +L 3.4324,3.465429,3.5488,3.184858 +L 3.5498,3.185024,3.5855,3.099934 +L 3.5855,3.099934,3.9556,2.642586 +L 3.9556,2.642586,4.19,2.642586 +L 4.19,2.642586,4.19,6.406791 +L 4.19,6.406791,4.1424,6.404859 +L 4.1424,6.404859,4.0958,6.403892 +L 4.0958,6.403892,4.0473,6.404859 +L 4.0473,6.404859,3.9977,6.406791 +L 3.9977,6.406791,3.9472,6.409694 +L 3.9472,6.409694,3.8957,6.413561 +L 3.8957,6.413561,3.7906,6.42515 +L 3.7906,6.425166,3.7906,6.735546 +L 3.7906,6.735546,5.0575,6.718139 +L 5.0575,6.718139,5.0575,6.406791 +L 5.0575,6.406791,4.6572,6.406791 +L 4.6572,6.406791,4.6726,2.642586 +L 4.6726,2.642586,4.9074,2.642586 +L 4.9074,2.642586,5.0045,2.772151 +L 5.0045,2.772151,5.0947,2.900749 +L 5.0947,2.900749,5.176,3.028383 +L 5.176,3.028383,5.2493,3.155048 +L 5.2493,3.155048,5.3152,3.279783 +L 5.3152,3.279783,5.3732,3.403548 +L 5.3732,3.403548,5.4227,3.526347 +L 5.4227,3.526347,5.4658,3.648177 +L 5.4658,3.648177,5.4891,3.711993 +L 5.4891,3.711993,5.5094,3.776776 +L 5.5094,3.776776,5.5268,3.842527 +L 5.5268,3.842527,5.5396,3.908276 +L 5.5396,3.908276,5.5495,3.974994 +L 5.5495,3.974994,5.5555,4.041712 +L 5.5555,4.041712,5.5595,4.109397 +L 5.5595,4.109397,5.5595,6.333306 +L 5.5595,6.333306,5.8766,6.735546 +L 5.8766,6.735546,6.318,6.735546 +L 6.318,6.735546,6.8378,6.101246 +L 6.8378,6.101246,6.8378,5.407001 +L 6.8378,5.407001,6.5643,5.407001 +L 6.5643,5.407001,6.5643,5.808272 +L 6.5643,5.808272,6.2571,6.173767 +L 6.2571,6.173767,6.0163,6.173767 +L 6.0163,6.173767,6.0163,4.147109 +L 6.0163,4.147109,6.0168,4.043647 +L 6.0168,4.043647,6.0168,3.866703 +L 6.0168,3.866703,6.0113,3.727454 +L 6.0113,3.727461,6.0074,3.672349 +L 6.0074,3.672349,6.0014,3.625936 +L 6.0014,3.625936,5.9955,3.590163 +L 5.9955,3.590163,5.7358,2.922023 +L 5.7358,2.922023,5.722,2.88915 +L 5.722,2.88915,5.6997,2.85337 +L 5.6997,2.85337,5.6714,2.814696 +L 5.6714,2.814696,5.6328,2.774086 +L 5.6328,2.774086,5.5882,2.730575 +L 5.5882,2.730575,5.5357,2.684159 +L 5.5357,2.684159,5.4752,2.635816 +L 5.4752,2.635816,5.4078,2.584569 +L 5.4078,2.584569,5.0362,2.347673 +L 5.0362,2.347673,4.9788,2.344775 +L 4.9788,2.344775,4.8727,2.340976 +L 4.8727,2.340907,4.6864,2.337247 +L 4.6864,2.337036,4.6453,2.337036 +L 4.6453,2.337036,4.6453,1.496783 +L 4.6453,1.496783,4.9243,1.131295 +L 4.9243,1.131295,4.952,1.131295 +L 4.952,1.131295,4.9827,1.130322 +L 4.9827,1.130322,5.0536,1.126281 +L 5.0536,1.126458,5.0932,1.124525 +L 5.0932,1.124525,5.1368,1.12162 +L 5.1368,1.12162,5.2319,1.113563 +L 5.2319,1.113888,5.2319,0.802538 +L 5.2319,0.802538,3.591,0.821877 +L 3.591,0.821877,3.591,1.131295 +L 3.591,1.131295,3.9046,1.131295 +L 3.9046,1.131295,4.19,1.496783 +L 4.19,1.496783,4.19,2.337036 +L 4.19,2.337036,3.801,2.347673 +L 3.801,2.347673,3.6469,2.447263 +L 3.6469,2.447263,3.5072,2.551695 +L 3.5072,2.551695,3.3804,2.659023 +L 3.3804,2.659023,3.2664,2.771184 +L 3.2664,2.771184,3.1673,2.88818 +L 3.1673,2.88818,3.0821,3.00808 +L 3.0821,3.00808,3.0098,3.132808 +L 3.0098,3.132808,2.9523,3.260444 +L 2.9523,3.260444,2.9171,3.353267 +L 2.9171,3.353267,2.8869,3.44029 +L 2.8869,3.44029,2.8616,3.52151 +L 2.8616,3.52151,2.8413,3.59596 +L 2.8413,3.59596,2.8245,3.664614 +L 2.8245,3.664614,2.8126,3.727461 +L 2.8126,3.727461,2.8056,3.784514 +L 2.8056,3.784514,2.8037,3.835761 +L 2.8037,3.835761,2.7898,6.173767 +L 2.7898,6.173767,2.5564,6.173767 +L 2.5564,6.173767,2.2735,5.808272 +L 2.2735,5.808272,2.2735,5.407001 +L 2.2735,5.407001,1.999,5.407001 +L 1.999,5.407001,1.999,6.101246 +L 1.999,6.101246,2.5113,6.735546 +L 1.8732,6.735546,0.5909,5.094445 +L 0.5909,5.094445,0.0003,5.094445 +L 0.0003,5.094445,0.8703,6.735546 +L 0.8703,6.735546,1.8732,6.735546 + +[Ώ] 114 +L 1.0736,7.557677,1.7584,7.557677 +L 1.7584,7.557677,1.7584,6.9959 +L 1.7584,6.9959,1.0736,6.9959 +L 1.0736,6.9959,1.0736,7.557677 +L 3.0803,7.557677,3.765,7.557677 +L 3.765,7.557677,3.765,6.9959 +L 3.765,6.9959,3.0803,6.9959 +L 3.0803,6.9959,3.0803,7.557677 +L 0.5123,6.735546,0.9458,6.735546 +L 0.9458,6.735546,1.2584,6.333306 +L 1.2584,6.333306,1.2584,3.904408 +L 1.2584,3.904408,1.3912,3.567882 +L 1.3922,3.56792,1.4333,3.465429 +L 1.4333,3.465429,1.5498,3.184858 +L 1.5508,3.185024,1.5864,3.099934 +L 1.5864,3.099934,1.9565,2.642586 +L 1.9565,2.642586,2.1909,2.642586 +L 2.1909,2.642586,2.1909,6.406791 +L 2.1909,6.406791,2.1433,6.404859 +L 2.1433,6.404859,2.0968,6.403892 +L 2.0968,6.403892,2.0482,6.404859 +L 2.0482,6.404859,1.9987,6.406791 +L 1.9987,6.406791,1.9481,6.409694 +L 1.9481,6.409694,1.8966,6.413561 +L 1.8966,6.413561,1.7916,6.42515 +L 1.7916,6.425166,1.7916,6.735546 +L 1.7916,6.735546,3.0585,6.718139 +L 3.0585,6.718139,3.0585,6.406791 +L 3.0585,6.406791,2.6581,6.406791 +L 2.6581,6.406791,2.6735,2.642586 +L 2.6735,2.642586,2.9083,2.642586 +L 2.9083,2.642586,3.0055,2.772151 +L 3.0055,2.772151,3.0956,2.900749 +L 3.0956,2.900749,3.1769,3.028383 +L 3.1769,3.028383,3.2502,3.155048 +L 3.2502,3.155048,3.3161,3.279783 +L 3.3161,3.279783,3.3741,3.403548 +L 3.3741,3.403548,3.4236,3.526347 +L 3.4236,3.526347,3.4667,3.648177 +L 3.4667,3.648177,3.49,3.711993 +L 3.49,3.711993,3.5103,3.776776 +L 3.5103,3.776776,3.5277,3.842527 +L 3.5277,3.842527,3.5406,3.908276 +L 3.5406,3.908276,3.5505,3.974994 +L 3.5505,3.974994,3.5564,4.041712 +L 3.5564,4.041712,3.5604,4.109397 +L 3.5604,4.109397,3.5604,6.333306 +L 3.5604,6.333306,3.8775,6.735546 +L 3.8775,6.735546,4.3189,6.735546 +L 4.3189,6.735546,4.8387,6.101246 +L 4.8387,6.101246,4.8387,5.407001 +L 4.8387,5.407001,4.5652,5.407001 +L 4.5652,5.407001,4.5652,5.808272 +L 4.5652,5.808272,4.258,6.173767 +L 4.258,6.173767,4.0172,6.173767 +L 4.0172,6.173767,4.0172,4.147109 +L 4.0172,4.147109,4.0177,4.043647 +L 4.0177,4.043647,4.0177,3.866703 +L 4.0177,3.866703,4.0122,3.727454 +L 4.0122,3.727461,4.0083,3.672349 +L 4.0083,3.672349,4.0023,3.625936 +L 4.0023,3.625936,3.9964,3.590163 +L 3.9964,3.590163,3.7368,2.922023 +L 3.7368,2.922023,3.7229,2.88915 +L 3.7229,2.88915,3.7006,2.85337 +L 3.7006,2.85337,3.6724,2.814696 +L 3.6724,2.814696,3.6337,2.774086 +L 3.6337,2.774086,3.5891,2.730575 +L 3.5891,2.730575,3.5366,2.684159 +L 3.5366,2.684159,3.4761,2.635816 +L 3.4761,2.635816,3.4088,2.584569 +L 3.4088,2.584569,3.0372,2.347673 +L 3.0372,2.347673,2.9797,2.344775 +L 2.9797,2.344775,2.8737,2.340976 +L 2.8737,2.340907,2.6874,2.337247 +L 2.6874,2.337036,2.6462,2.337036 +L 2.6462,2.337036,2.6462,1.496783 +L 2.6462,1.496783,2.9252,1.131295 +L 2.9252,1.131295,2.9529,1.131295 +L 2.9529,1.131295,2.9837,1.130322 +L 2.9837,1.130322,3.0545,1.126281 +L 3.0545,1.126458,3.0941,1.124525 +L 3.0941,1.124525,3.1377,1.12162 +L 3.1377,1.12162,3.2329,1.113563 +L 3.2329,1.113888,3.2329,0.802538 +L 3.2329,0.802538,1.5919,0.821877 +L 1.5919,0.821877,1.5919,1.131295 +L 1.5919,1.131295,1.9055,1.131295 +L 1.9055,1.131295,2.1909,1.496783 +L 2.1909,1.496783,2.1909,2.337036 +L 2.1909,2.337036,1.802,2.347673 +L 1.802,2.347673,1.6479,2.447263 +L 1.6479,2.447263,1.5081,2.551695 +L 1.5081,2.551695,1.3813,2.659023 +L 1.3813,2.659023,1.2673,2.771184 +L 1.2673,2.771184,1.1683,2.88818 +L 1.1683,2.88818,1.083,3.00808 +L 1.083,3.00808,1.0107,3.132808 +L 1.0107,3.132808,0.9532,3.260444 +L 0.9532,3.260444,0.918,3.353267 +L 0.918,3.353267,0.8878,3.44029 +L 0.8878,3.44029,0.8625,3.52151 +L 0.8625,3.52151,0.8422,3.59596 +L 0.8422,3.59596,0.8254,3.664614 +L 0.8254,3.664614,0.8135,3.727461 +L 0.8135,3.727461,0.8066,3.784514 +L 0.8066,3.784514,0.8046,3.835761 +L 0.8046,3.835761,0.7907,6.173767 +L 0.7907,6.173767,0.5573,6.173767 +L 0.5573,6.173767,0.2744,5.808272 +L 0.2744,5.808272,0.2744,5.407001 +L 0.2744,5.407001,-0.0001,5.407001 +L -0.0001,5.407001,-0.0001,6.101246 +L -0.0001,6.101246,0.5123,6.735546 + +[ά] 158 +L 1.2087,4.634433,1.7334,4.634433 +L 1.7334,4.634433,1.7809,4.570616 +L 1.7809,4.570616,1.825,4.504868 +L 1.825,4.504868,1.8686,4.439112 +L 1.8686,4.439112,1.9093,4.372398 +L 1.9093,4.372398,1.9479,4.304714 +L 1.9479,4.304714,1.9861,4.236061 +L 1.9861,4.236061,2.0212,4.167409 +L 2.0212,4.167409,2.0534,4.096827 +L 2.0534,4.096827,2.1882,3.740034 +L 2.1882,3.740034,2.2095,3.681054 +L 2.2095,3.681054,2.2264,3.625936 +L 2.2264,3.625936,2.2407,3.575659 +L 2.2407,3.575659,2.2487,3.530215 +L 2.2487,3.530215,2.2531,3.488636 +L 2.2531,3.488636,2.2551,3.45189 +L 2.2551,3.45189,2.2516,3.419985 +L 2.2516,3.419985,2.2452,3.392911 +L 2.2452,3.392911,2.2516,2.844668 +L 2.2516,2.844668,2.38,2.854337 +L 2.38,2.854337,2.3809,2.907519 +L 2.3809,2.907519,2.3859,2.960701 +L 2.3859,2.960701,2.3913,3.013878 +L 2.3913,3.013878,2.3998,3.068996 +L 2.3998,3.068996,2.4102,3.124107 +L 2.4102,3.124107,2.4236,3.179225 +L 2.4236,3.179225,2.4404,3.236268 +L 2.4404,3.236268,2.4587,3.293319 +L 2.4587,3.293319,2.7352,3.996268 +L 2.7352,3.996268,2.7783,4.22446 +L 2.7783,4.22446,2.7783,4.379167 +L 2.7783,4.379167,3.0523,4.379167 +L 3.0523,4.379167,3.0523,3.940187 +L 3.0523,3.940187,3.0166,3.69459 +L 3.0166,3.69459,2.5925,2.616478 +L 2.5925,2.616478,2.5593,2.557496 +L 2.5593,2.557496,2.5246,2.498513 +L 2.5246,2.498513,2.487,2.439531 +L 2.487,2.439531,2.4483,2.381517 +L 2.4483,2.381517,2.4072,2.323501 +L 2.4072,2.323501,2.3641,2.265487 +L 2.3641,2.265487,2.3185,2.207471 +L 2.3185,2.207471,2.2714,2.150425 +L 2.2714,2.150425,2.2714,1.6747 +L 2.2714,1.6747,2.5643,1.309202 +L 2.5643,1.309202,2.7208,1.309202 +L 2.7208,1.309202,3.0062,1.6747 +L 3.0062,1.6747,3.0062,2.076933 +L 3.0062,2.076933,3.2797,2.076933 +L 3.2797,2.076933,3.2797,1.382689 +L 3.2797,1.382689,2.7625,0.748393 +L 2.7625,0.748393,2.323,0.748393 +L 2.323,0.748393,1.9345,1.21348 +L 1.9345,1.21348,1.9117,1.186403 +L 1.9117,1.186403,1.8845,1.159332 +L 1.8845,1.159332,1.8548,1.131295 +L 1.8548,1.131295,1.8196,1.103251 +L 1.8196,1.103251,1.7413,1.045132 +L 1.7413,1.045238,1.6962,1.015262 +L 1.6962,1.015262,1.6477,0.985289 +L 1.6477,0.985289,1.3672,0.827681 +L 1.3672,0.827681,1.34,0.806409 +L 1.34,0.806409,1.3083,0.789006 +L 1.3083,0.789006,1.2711,0.775468 +L 1.2711,0.775468,1.2305,0.763861 +L 1.2305,0.763861,1.1854,0.755159 +L 1.1854,0.755159,1.1348,0.750328 +L 1.1348,0.750328,1.0808,0.747427 +L 1.0808,0.747427,1.0224,0.748393 +L 1.0224,0.748393,0.9748,0.747427 +L 0.9748,0.747427,0.9277,0.750328 +L 0.9277,0.750328,0.8826,0.755159 +L 0.8826,0.755159,0.8381,0.763861 +L 0.8381,0.763861,0.7964,0.775468 +L 0.7964,0.775468,0.7548,0.789006 +L 0.7548,0.789006,0.7152,0.806409 +L 0.7152,0.806409,0.6765,0.827681 +L 0.6765,0.827681,0.404,0.993991 +L 0.404,0.993991,0.1944,0.993991 +L 0.1944,0.993991,0.1944,1.063604 +L 0.1944,1.063604,0.1915,1.131295 +L 0.1915,1.131295,0.1835,1.19801 +L 0.1835,1.19801,0.1731,1.263758 +L 0.1731,1.263758,0.1583,1.327578 +L 0.1583,1.327578,0.1404,1.390428 +L 0.1404,1.390428,0.1201,1.451339 +L 0.1201,1.451339,0.0939,1.511291 +L 0.0939,1.511291,0.0012,1.758821 +L 0.0012,1.758821,-0.0062,2.835967 +L -0.0062,2.835967,-0.0052,2.89978 +L -0.0052,2.89978,-0.0003,2.962634 +L -0.0003,2.962634,0.0076,3.02645 +L 0.0076,3.02645,0.0185,3.089297 +L 0.0185,3.089297,0.0329,3.152151 +L 0.0329,3.152151,0.0493,3.214031 +L 0.0493,3.214031,0.0691,3.276879 +L 0.0691,3.276879,0.0929,3.338766 +L 0.0929,3.338766,0.1424,3.457694 +L 0.1424,3.457694,0.1905,3.568889 +L 0.1905,3.568889,0.2375,3.672349 +L 0.2375,3.672349,0.2841,3.767107 +L 0.2841,3.767107,0.3307,3.855097 +L 0.3307,3.855097,0.3753,3.934381 +L 0.3753,3.934381,0.4199,4.005937 +L 0.4199,4.005937,0.4615,4.068787 +L 0.4615,4.068787,0.5546,4.16824 +L 0.5537,4.168379,0.5948,4.208992 +L 0.5948,4.208992,0.6314,4.244762 +L 0.6314,4.244762,0.6636,4.275707 +L 0.6636,4.275707,0.7177,4.320503 +L 0.7186,4.320188,0.74,4.333723 +L 0.74,4.333723,1.2087,4.634433 +L 1.4202,4.31148,0.9634,4.019475 +L 0.9634,4.019475,0.9104,3.972096 +L 0.9104,3.972096,0.8604,3.917947 +L 0.8604,3.917947,0.8113,3.856066 +L 0.8113,3.856066,0.7637,3.786446 +L 0.7637,3.786446,0.7186,3.710058 +L 0.7186,3.710058,0.675,3.624973 +L 0.675,3.624973,0.6329,3.534082 +L 0.6329,3.534082,0.5923,3.434487 +L 0.5923,3.434487,0.5606,3.347467 +L 0.5606,3.347467,0.5328,3.264313 +L 0.5328,3.264313,0.5086,3.185024 +L 0.5086,3.185024,0.4892,3.110571 +L 0.4892,3.110571,0.4734,3.03902 +L 0.4734,3.03902,0.4615,2.972302 +L 0.4615,2.972302,0.4531,2.909455 +L 0.4531,2.909455,0.4506,2.850472 +L 0.4506,2.850472,0.4506,1.689205 +L 0.4506,1.689205,0.9208,1.079079 +L 0.9208,1.079079,1.0927,1.133227 +L 1.0927,1.133227,1.4059,1.334344 +L 1.4059,1.334344,1.5699,1.334344 +L 1.5699,1.334344,1.5709,1.397194 +L 1.5709,1.397194,1.5733,1.45521 +L 1.5733,1.45521,1.5773,1.505492 +L 1.5773,1.505492,1.5818,1.550931 +L 1.5818,1.550931,1.5897,1.590579 +L 1.5897,1.590579,1.5986,1.623453 +L 1.5986,1.623453,1.608,1.650527 +L 1.608,1.650527,1.6199,1.671802 +L 1.6199,1.671802,1.6581,1.768493 +L 1.6581,1.768493,1.6913,1.855515 +L 1.6913,1.855515,1.718,1.933833 +L 1.718,1.933833,1.7398,2.00345 +L 1.7398,2.00345,1.7547,2.063398 +L 1.7547,2.063398,1.7656,2.115611 +L 1.7656,2.115611,1.7705,2.158157 +L 1.7705,2.158157,1.769,2.192 +L 1.769,2.192,1.7626,3.608533 +L 1.7626,3.608533,1.5773,4.084258 +L 1.5773,4.084258,1.5699,4.302779 +L 1.5699,4.302779,1.4202,4.31148 +L 2.5757,6.500007,1.2939,4.858906 +L 1.2939,4.858906,0.7028,4.858906 +L 0.7028,4.858906,1.5728,6.500007 +L 1.5728,6.500007,2.5757,6.500007 + +[έ] 81 +L 1.0408,4.676978,1.7671,4.676978 +L 1.7671,4.676978,2.0822,4.230263 +L 2.0822,4.230263,2.0832,4.185786 +L 2.0832,4.185786,2.0832,4.087157 +L 2.0832,4.087157,2.0822,4.033979 +L 2.0822,4.033979,2.0723,3.856052 +L 2.0723,3.856067,2.0679,3.791281 +L 2.0679,3.791281,1.9326,3.791281 +L 1.9326,3.791281,1.5328,4.302779 +L 1.5328,4.302779,1.1681,4.302779 +L 1.1681,4.302779,0.684,3.65881 +L 0.684,3.65881,0.684,3.455758 +L 0.684,3.455758,0.9694,3.087369 +L 0.9694,3.087369,1.6829,3.087369 +L 1.6829,3.087369,1.6829,2.525587 +L 1.6829,2.525587,1.1547,2.525587 +L 1.1547,2.525587,0.962,2.462737 +L 0.962,2.462737,0.684,2.27999 +L 0.684,2.27999,0.582,2.274509 +L 0.582,2.274189,0.5532,2.272254 +L 0.5532,2.272254,0.4997,2.270346 +L 0.4997,2.270318,0.4551,2.270318 +L 0.4551,2.270318,0.4551,1.429102 +L 0.4551,1.429102,0.7405,1.063604 +L 0.7405,1.063604,0.8119,1.064577 +L 0.8119,1.064577,0.8792,1.068445 +L 0.8792,1.068445,0.9427,1.078112 +L 0.9427,1.078112,1.0031,1.091651 +L 1.0031,1.091651,1.0586,1.11002 +L 1.0586,1.11002,1.1111,1.133227 +L 1.1111,1.133227,1.1597,1.160298 +L 1.1597,1.160298,1.2038,1.193172 +L 1.2038,1.193172,1.2949,1.24829 +L 1.2949,1.24829,1.3861,1.311137 +L 1.3861,1.311137,1.4748,1.380757 +L 1.4748,1.380757,1.5645,1.457146 +L 1.5645,1.457146,1.6542,1.541267 +L 1.6542,1.541267,1.7414,1.631189 +L 1.7414,1.631189,1.8305,1.727882 +L 1.8305,1.727882,1.9172,1.831343 +L 1.9172,1.831343,2.0525,1.831343 +L 2.0525,1.831343,2.0525,1.393323 +L 2.0525,1.393323,2.0045,1.332411 +L 2.0045,1.332411,1.9544,1.275365 +L 1.9544,1.275365,1.9039,1.22025 +L 1.9039,1.22025,1.8523,1.167064 +L 1.8523,1.167064,1.7988,1.117756 +L 1.7988,1.117756,1.7443,1.06941 +L 1.7443,1.06941,1.6878,1.024929 +L 1.6878,1.024929,1.6324,0.982388 +L 1.6324,0.982388,1.3227,0.789018 +L 1.3227,0.789006,1.2875,0.772563 +L 1.2875,0.772563,1.2479,0.759997 +L 1.2479,0.759997,1.2038,0.749363 +L 1.2038,0.749363,1.1557,0.741627 +L 1.1557,0.741627,1.1022,0.73679 +L 1.1022,0.73679,1.0452,0.734858 +L 1.0452,0.734858,0.5057,0.734858 +L 0.5057,0.734858,-0.0007,1.393323 +L -0.0007,1.393323,-0.0007,2.196834 +L -0.0007,2.196834,0.3481,2.600037 +L 0.3481,2.600037,0.6052,2.608739 +L 0.6052,2.608739,0.2282,3.573726 +L 0.2282,3.573726,0.2282,3.617235 +L 0.2282,3.617235,0.2262,3.663648 +L 0.2262,3.663648,0.2262,3.712963 +L 0.2262,3.712963,0.2223,3.944065 +L 0.2213,3.944055,0.2203,4.008838 +L 0.2203,4.008838,0.2787,4.075556 +L 0.2787,4.075556,0.3397,4.140338 +L 0.3397,4.140338,0.4026,4.203189 +L 0.4026,4.203189,0.468,4.264101 +L 0.468,4.264101,0.5364,4.324053 +L 0.5364,4.324053,0.6067,4.381102 +L 0.6067,4.381102,0.6801,4.437183 +L 0.6801,4.437183,0.7554,4.491329 +L 0.7554,4.491329,1.0408,4.676978 +L 1.9777,6.500007,0.6954,4.858906 +L 0.6954,4.858906,0.1048,4.858906 +L 0.1048,4.858906,0.9744,6.500007 +L 0.9744,6.500007,1.9777,6.500007 + +[ή] 84 +L 0.5114,4.649901,0.9459,4.649901 +L 0.9459,4.649901,1.3294,4.165478 +L 1.3294,4.165478,1.707,4.649901 +L 1.707,4.649901,2.3397,4.649901 +L 2.3397,4.649901,2.8525,3.974027 +L 2.8525,3.974027,2.8525,3.818351 +L 2.8525,3.818351,2.8475,3.662679 +L 2.8475,3.662679,2.8391,3.507008 +L 2.8391,3.507008,2.8262,3.35037 +L 2.8262,3.35037,2.8089,3.194693 +L 2.8089,3.194693,2.7866,3.037087 +L 2.7866,3.037087,2.7623,2.880442 +L 2.7623,2.880442,2.7321,2.722836 +L 2.7321,2.722836,2.3466,0.749363 +L 2.3466,0.749363,2.3243,0.631397 +L 2.3243,0.631397,2.3055,0.510531 +L 2.3055,0.510531,2.2896,0.386763 +L 2.2896,0.386763,2.2777,0.260099 +L 2.2777,0.260099,2.2668,0.1315 +L 2.2668,0.1315,2.2594,-0.000969 +L 2.2594,-0.000969,2.2549,-0.136334 +L 2.2549,-0.136334,2.253,-0.274605 +L 2.253,-0.274605,2.193,-0.276536 +L 2.193,-0.276536,2.0741,-0.276536 +L 2.0741,-0.276536,2.0161,-0.274605 +L 2.0161,-0.274605,1.9596,-0.271703 +L 1.9596,-0.271703,1.9051,-0.267835 +L 1.9051,-0.267835,1.7966,-0.256216 +L 1.7966,-0.256235,1.7971,-0.133433 +L 1.7971,-0.133433,1.8006,-0.01644 +L 1.8006,-0.01644,1.8051,0.09379 +L 1.8051,0.09379,1.8115,0.199181 +L 1.8115,0.199181,1.8189,0.297811 +L 1.8189,0.297811,1.8298,0.389668 +L 1.8298,0.389668,1.8402,0.47669 +L 1.8402,0.47669,1.8546,0.556941 +L 1.8546,0.556941,2.3268,2.978136 +L 2.3268,2.978105,2.3466,3.10187 +L 2.3466,3.10187,2.3635,3.231435 +L 2.3635,3.231435,2.3768,3.36584 +L 2.3768,3.36584,2.3862,3.506043 +L 2.3862,3.506043,2.3937,3.650109 +L 2.3937,3.650109,2.3966,3.799986 +L 2.3966,3.799986,2.3966,3.955656 +L 2.3966,3.955656,2.1033,4.320188 +L 2.1033,4.320188,1.9463,4.320188 +L 1.9463,4.320188,1.7927,4.121 +L 1.7927,4.121,1.6515,3.924717 +L 1.6515,3.924717,1.5236,3.730366 +L 1.5236,3.730366,1.4087,3.53988 +L 1.4087,3.53988,1.3081,3.351335 +L 1.3081,3.351335,1.2219,3.166652 +L 1.2219,3.166652,1.1471,2.983902 +L 1.1471,2.983902,1.0871,2.805022 +L 1.0871,2.805022,0.7705,1.407831 +L 0.7705,1.407831,0.7438,1.313073 +L 0.7438,1.313073,0.721,1.221216 +L 0.721,1.221216,0.7012,1.133227 +L 0.7012,1.133227,0.6843,1.048136 +L 0.6843,1.048136,0.6724,0.966917 +L 0.6724,0.966917,0.6635,0.887629 +L 0.6635,0.887629,0.658,0.81221 +L 0.658,0.81221,0.6556,0.739691 +L 0.6556,0.739691,0.1992,0.739691 +L 0.1992,0.739691,0.2007,0.842186 +L 0.2007,0.842186,0.2032,0.938874 +L 0.2032,0.938874,0.2087,1.030733 +L 0.2087,1.030733,0.2156,1.11679 +L 0.2156,1.11679,0.2245,1.19801 +L 0.2245,1.19801,0.2349,1.273429 +L 0.2349,1.273429,0.2493,1.343048 +L 0.2493,1.343048,0.2641,1.407831 +L 0.2641,1.407831,0.6972,3.060294 +L 0.6972,3.060294,0.995,3.864769 +L 0.995,3.864769,0.9816,3.974027 +L 0.9816,3.974027,0.7254,4.294077 +L 0.7254,4.294077,0.1358,3.553422 +L 0.1358,3.553422,0.0001,3.553422 +L 0.0001,3.553422,0.0001,3.991435 +L 0.0001,3.991435,0.5114,4.649901 +L 2.5755,6.500007,1.2937,4.858906 +L 1.2937,4.858906,0.7026,4.858906 +L 0.7026,4.858906,1.5727,6.500007 +L 1.5727,6.500007,2.5755,6.500007 + +[ί] 46 +L 0.5008,4.61026,1.1786,4.61026 +L 1.1786,4.61026,1.136,4.48843 +L 1.136,4.48843,1.0953,4.366597 +L 1.0953,4.366597,1.0587,4.244762 +L 1.0587,4.244762,1.021,4.121 +L 1.021,4.121,0.9863,3.998201 +L 0.9863,3.998201,0.9536,3.87347 +L 0.9536,3.87347,0.9219,3.748735 +L 0.9219,3.748735,0.8932,3.623038 +L 0.8932,3.623038,0.5929,2.171692 +L 0.5929,2.171692,0.586,2.11755 +L 0.586,2.11755,0.58,2.058567 +L 0.58,2.058567,0.5761,1.994749 +L 0.5761,1.994749,0.5721,1.927067 +L 0.5721,1.927067,0.5691,1.855515 +L 0.5691,1.855515,0.5642,1.698879 +L 0.5642,1.698872,0.5642,1.394296 +L 0.5642,1.394296,0.8575,1.028797 +L 0.8575,1.028797,1.0141,1.028797 +L 1.0141,1.028797,1.6275,1.79653 +L 1.6275,1.79653,1.7632,1.79653 +L 1.7632,1.79653,1.7632,1.357551 +L 1.7632,1.357551,1.2499,0.654604 +L 1.2499,0.654604,0.6147,0.654604 +L 0.6147,0.654604,0.1084,1.357551 +L 0.1084,1.357551,0.1093,1.505492 +L 0.1093,1.505492,0.1123,1.648595 +L 0.1123,1.648595,0.1183,1.784929 +L 0.1183,1.784929,0.1262,1.915464 +L 0.1262,1.915464,0.1361,2.040195 +L 0.1361,2.040195,0.148,2.160092 +L 0.148,2.160092,0.1619,2.273223 +L 0.1619,2.273223,0.1787,2.380551 +L 0.1787,2.380551,0.4522,3.805785 +L 0.4522,3.805785,0.4651,3.882172 +L 0.4651,3.882172,0.476,3.966293 +L 0.476,3.966293,0.4859,4.056217 +L 0.4859,4.056217,0.4928,4.152908 +L 0.4928,4.152908,0.4968,4.257335 +L 0.4968,4.257335,0.5008,4.367567 +L 0.5008,4.367567,0.5018,4.485529 +L 0.5018,4.485529,0.5008,4.61026 +L 1.8722,6.500007,0.59,4.858906 +L 0.59,4.858906,-0.0006,4.858906 +L -0.0006,4.858906,0.8694,6.500007 +L 0.8694,6.500007,1.8722,6.500007 + +[あ] 141 +L 0.5133,4.676978,1.1485,4.676978 +L 1.1485,4.676978,1.4636,4.269907 +L 1.4636,4.269907,1.4636,3.667512 +L 1.4636,3.667512,1.4596,3.600798 +L 1.4596,3.600798,1.4557,3.532148 +L 1.4557,3.532148,1.4467,3.462531 +L 1.4467,3.462531,1.4348,3.390976 +L 1.4348,3.390976,1.421,3.318461 +L 1.421,3.318461,1.4041,3.244007 +L 1.4041,3.244007,1.3843,3.168588 +L 1.3843,3.168588,1.0712,1.948338 +L 1.0712,1.948338,1.0632,1.309202 +L 1.0632,1.309202,2.1117,1.309202 +L 2.1117,1.309202,2.2127,1.440702 +L 2.2127,1.440702,2.3059,1.57124 +L 2.3059,1.57124,2.3911,1.699839 +L 2.3911,1.699839,2.4674,1.827472 +L 2.4674,1.827472,2.5378,1.954139 +L 2.5378,1.954139,2.5982,2.079839 +L 2.5982,2.079839,2.6517,2.2036 +L 2.6517,2.2036,2.6973,2.327369 +L 2.6973,2.327369,2.7439,2.437539 +L 2.7439,2.437598,2.7607,2.48594 +L 2.7607,2.48594,2.7756,2.528488 +L 2.7756,2.528488,2.7855,2.567163 +L 2.7855,2.567163,2.7924,2.600037 +L 2.7924,2.600037,2.7964,2.628078 +L 2.7964,2.628078,2.7964,3.715861 +L 2.7964,3.715861,2.397,4.233165 +L 2.397,4.233165,2.397,4.676978 +L 2.397,4.676978,2.7459,4.676978 +L 2.7459,4.676978,2.8043,4.59189 +L 2.8043,4.59189,2.8588,4.5068 +L 2.8588,4.5068,2.9103,4.419777 +L 2.9103,4.419777,2.9589,4.333723 +L 2.9589,4.333723,3.0045,4.245734 +L 3.0045,4.245734,3.0471,4.157746 +L 3.0471,4.157746,3.0877,4.069754 +L 3.0877,4.069754,3.1244,3.979832 +L 3.1244,3.979832,3.1482,3.923751 +L 3.1482,3.923751,3.17,3.8696 +L 3.17,3.8696,3.1888,3.818351 +L 3.1888,3.818351,3.2066,3.769044 +L 3.2066,3.769044,3.2225,3.721664 +L 3.2225,3.721664,3.2344,3.677186 +L 3.2344,3.677186,3.2532,3.594128 +L 3.2532,3.594028,3.0174,2.363141 +L 3.0174,2.363141,2.9916,2.252915 +L 2.9916,2.252915,2.9648,2.147519 +L 2.9648,2.147519,2.9351,2.045029 +L 2.9351,2.045029,2.9044,1.946403 +L 2.9044,1.946403,2.8727,1.852611 +L 2.8727,1.852611,2.84,1.76172 +L 2.84,1.76172,2.8043,1.675663 +L 2.8043,1.675663,2.7677,1.593477 +L 2.7677,1.593477,2.6111,1.344981 +L 2.6111,1.344981,2.5665,1.292768 +L 2.5665,1.292768,2.5179,1.240551 +L 2.5179,1.240551,2.4664,1.189308 +L 2.4664,1.189308,2.4099,1.13903 +L 2.4099,1.13903,2.3495,1.088749 +L 2.3495,1.088749,2.2861,1.038469 +L 2.2861,1.038469,2.2187,0.99012 +L 2.2187,0.99012,2.1473,0.941778 +L 2.1473,0.941778,2.074,0.894398 +L 2.074,0.894398,2.0066,0.853788 +L 2.0066,0.853788,1.9422,0.819942 +L 1.9422,0.819942,1.8818,0.791901 +L 1.8818,0.791901,1.8253,0.7716 +L 1.8253,0.7716,1.7737,0.757095 +L 1.7737,0.757095,1.7272,0.749363 +L 1.7272,0.749363,1.6836,0.748393 +L 1.6836,0.748393,1.1128,0.748393 +L 1.1128,0.748393,0.5995,1.419435 +L 0.5995,1.419435,0.6015,1.541267 +L 0.6015,1.541267,0.6044,1.656331 +L 0.6044,1.656331,0.6104,1.766553 +L 0.6104,1.766553,0.6193,1.870014 +L 0.6193,1.870014,0.6312,1.967677 +L 0.6312,1.967677,0.6441,2.05953 +L 0.6441,2.05953,0.6589,2.145587 +L 0.6589,2.145587,0.6778,2.225844 +L 0.6778,2.225844,0.9523,3.269085 +L 0.9523,3.269147,0.9661,3.334895 +L 0.9661,3.334895,0.977,3.401613 +L 0.977,3.401613,0.9869,3.469301 +L 0.9869,3.469301,0.9929,3.537947 +L 0.9929,3.537947,0.9978,3.607567 +L 0.9978,3.607567,0.9998,3.678153 +L 0.9998,3.678153,0.9988,3.750671 +L 0.9988,3.750671,1.0008,3.836728 +L 1.0008,3.836728,1.0008,3.994334 +L 1.0008,3.994334,0.9968,4.132612 +L 0.9968,4.132601,0.9929,4.193521 +L 0.9929,4.193521,0.9899,4.250569 +L 0.9899,4.250569,0.984,4.302779 +L 0.984,4.302779,0.7501,4.302779 +L 0.7501,4.302779,0.6986,4.233165 +L 0.6986,4.233165,0.649,4.158708 +L 0.649,4.158708,0.6015,4.081359 +L 0.6015,4.081359,0.5549,4.000136 +L 0.5549,4.000136,0.5113,3.915049 +L 0.5113,3.915049,0.4677,3.826091 +L 0.4677,3.826091,0.4251,3.733267 +L 0.4251,3.733267,0.3854,3.636573 +L 0.3854,3.636573,0.3299,3.534826 +L 0.3299,3.535049,0.2992,3.48767 +L 0.2992,3.48767,0.2675,3.442226 +L 0.2675,3.442226,0.2348,3.398715 +L 0.2348,3.398715,0.2011,3.357132 +L 0.2011,3.357132,0.1655,3.317492 +L 0.1655,3.317492,0.1288,3.279784 +L 0.1288,3.279784,0,3.279784 +L 0,3.279784,0.0019,3.357132 +L 0.0019,3.357132,0.0069,3.432555 +L 0.0069,3.432555,0.0148,3.506043 +L 0.0148,3.506043,0.0247,3.577594 +L 0.0247,3.577594,0.0406,3.647211 +L 0.0406,3.647211,0.0564,3.715861 +L 0.0564,3.715861,0.0773,3.782579 +L 0.0773,3.782579,0.1,3.847365 +L 0.1,3.847365,0.1476,3.959527 +L 0.1476,3.959527,0.1952,4.069754 +L 0.1952,4.069754,0.2457,4.177084 +L 0.2457,4.177084,0.2972,4.282476 +L 0.2972,4.282476,0.3498,4.38497 +L 0.3498,4.38497,0.4023,4.484563 +L 0.4023,4.484563,0.4578,4.582219 +L 0.4578,4.582219,0.5133,4.676978 +L 0.2804,5.893356,0.9651,5.893356 +L 0.9651,5.893356,0.9651,5.331582 +L 0.9651,5.331582,0.2804,5.331582 +L 0.2804,5.331582,0.2804,5.893356 +L 2.287,5.893356,2.9718,5.893356 +L 2.9718,5.893356,2.9718,5.331582 +L 2.9718,5.331582,2.287,5.331582 +L 2.287,5.331582,2.287,5.893356 +L 2.7627,6.83871,1.6806,5.331582 +L 1.6806,5.331582,1.09,5.331582 +L 1.09,5.331582,1.7594,6.83871 +L 1.7594,6.83871,2.7627,6.83871 + +[い] 50 +L 0,5.893356,0.6847,5.893356 +L 0.6847,5.893356,0.6847,5.331582 +L 0.6847,5.331582,0,5.331582 +L 0,5.331582,0,5.893356 +L 2.0066,5.893356,2.6914,5.893356 +L 2.6914,5.893356,2.6914,5.331582 +L 2.6914,5.331582,2.0066,5.331582 +L 2.0066,5.331582,2.0066,5.893356 +L 0.9107,4.61026,1.5885,4.61026 +L 1.5885,4.61026,1.5459,4.48843 +L 1.5459,4.48843,1.5052,4.366597 +L 1.5052,4.366597,1.4686,4.244762 +L 1.4686,4.244762,1.4309,4.121 +L 1.4309,4.121,1.3962,3.998201 +L 1.3962,3.998201,1.3635,3.87347 +L 1.3635,3.87347,1.3318,3.748735 +L 1.3318,3.748735,1.3031,3.623038 +L 1.3031,3.623038,1.0028,2.171692 +L 1.0028,2.171692,0.9959,2.11755 +L 0.9959,2.11755,0.9899,2.058567 +L 0.9899,2.058567,0.986,1.994749 +L 0.986,1.994749,0.982,1.927067 +L 0.982,1.927067,0.979,1.855515 +L 0.979,1.855515,0.9741,1.698879 +L 0.9741,1.698872,0.9741,1.394296 +L 0.9741,1.394296,1.2674,1.028797 +L 1.2674,1.028797,1.424,1.028797 +L 1.424,1.028797,2.0374,1.79653 +L 2.0374,1.79653,2.1731,1.79653 +L 2.1731,1.79653,2.1731,1.357551 +L 2.1731,1.357551,1.6598,0.654604 +L 1.6598,0.654604,1.0246,0.654604 +L 1.0246,0.654604,0.5182,1.357551 +L 0.5182,1.357551,0.5192,1.505492 +L 0.5192,1.505492,0.5222,1.648595 +L 0.5222,1.648595,0.5282,1.784929 +L 0.5282,1.784929,0.5361,1.915464 +L 0.5361,1.915464,0.546,2.040195 +L 0.546,2.040195,0.5579,2.160092 +L 0.5579,2.160092,0.5718,2.273223 +L 0.5718,2.273223,0.5886,2.380551 +L 0.5886,2.380551,0.8621,3.805785 +L 0.8621,3.805785,0.875,3.882172 +L 0.875,3.882172,0.8859,3.966293 +L 0.8859,3.966293,0.8958,4.056217 +L 0.8958,4.056217,0.9027,4.152908 +L 0.9027,4.152908,0.9067,4.257335 +L 0.9067,4.257335,0.9107,4.367567 +L 0.9107,4.367567,0.9117,4.485529 +L 0.9117,4.485529,0.9107,4.61026 + +[う] 137 +L 0.5146,4.676978,1.1498,4.676978 +L 1.1498,4.676978,1.4649,4.269907 +L 1.4649,4.269907,1.4649,3.667512 +L 1.4649,3.667512,1.461,3.600798 +L 1.461,3.600798,1.457,3.532148 +L 1.457,3.532148,1.4481,3.462531 +L 1.4481,3.462531,1.4362,3.390976 +L 1.4362,3.390976,1.4223,3.318461 +L 1.4223,3.318461,1.4055,3.244007 +L 1.4055,3.244007,1.3857,3.168588 +L 1.3857,3.168588,1.0725,1.948338 +L 1.0725,1.948338,1.0646,1.309202 +L 1.0646,1.309202,2.113,1.309202 +L 2.113,1.309202,2.2141,1.440702 +L 2.2141,1.440702,2.3072,1.57124 +L 2.3072,1.57124,2.3924,1.699839 +L 2.3924,1.699839,2.4687,1.827472 +L 2.4687,1.827472,2.5391,1.954139 +L 2.5391,1.954139,2.5995,2.079839 +L 2.5995,2.079839,2.6531,2.2036 +L 2.6531,2.2036,2.6986,2.327369 +L 2.6986,2.327369,2.7452,2.437539 +L 2.7452,2.437598,2.7621,2.48594 +L 2.7621,2.48594,2.7769,2.528488 +L 2.7769,2.528488,2.7868,2.567163 +L 2.7868,2.567163,2.7938,2.600037 +L 2.7938,2.600037,2.7977,2.628078 +L 2.7977,2.628078,2.7977,3.715861 +L 2.7977,3.715861,2.3984,4.233165 +L 2.3984,4.233165,2.3984,4.676978 +L 2.3984,4.676978,2.7472,4.676978 +L 2.7472,4.676978,2.8057,4.59189 +L 2.8057,4.59189,2.8602,4.5068 +L 2.8602,4.5068,2.9117,4.419777 +L 2.9117,4.419777,2.9602,4.333723 +L 2.9602,4.333723,3.0058,4.245734 +L 3.0058,4.245734,3.0484,4.157746 +L 3.0484,4.157746,3.0891,4.069754 +L 3.0891,4.069754,3.1257,3.979832 +L 3.1257,3.979832,3.1495,3.923751 +L 3.1495,3.923751,3.1713,3.8696 +L 3.1713,3.8696,3.1901,3.818351 +L 3.1901,3.818351,3.208,3.769044 +L 3.208,3.769044,3.2238,3.721664 +L 3.2238,3.721664,3.2357,3.677186 +L 3.2357,3.677186,3.2546,3.594128 +L 3.2546,3.594028,3.0187,2.363141 +L 3.0187,2.363141,2.993,2.252915 +L 2.993,2.252915,2.9662,2.147519 +L 2.9662,2.147519,2.9365,2.045029 +L 2.9365,2.045029,2.9057,1.946403 +L 2.9057,1.946403,2.874,1.852611 +L 2.874,1.852611,2.8413,1.76172 +L 2.8413,1.76172,2.8057,1.675663 +L 2.8057,1.675663,2.769,1.593477 +L 2.769,1.593477,2.6124,1.344981 +L 2.6124,1.344981,2.5678,1.292768 +L 2.5678,1.292768,2.5193,1.240551 +L 2.5193,1.240551,2.4678,1.189308 +L 2.4678,1.189308,2.4113,1.13903 +L 2.4113,1.13903,2.3508,1.088749 +L 2.3508,1.088749,2.2874,1.038469 +L 2.2874,1.038469,2.22,0.99012 +L 2.22,0.99012,2.1487,0.941778 +L 2.1487,0.941778,2.0753,0.894398 +L 2.0753,0.894398,2.008,0.853788 +L 2.008,0.853788,1.9435,0.819942 +L 1.9435,0.819942,1.8831,0.791901 +L 1.8831,0.791901,1.8266,0.7716 +L 1.8266,0.7716,1.7751,0.757095 +L 1.7751,0.757095,1.7285,0.749363 +L 1.7285,0.749363,1.6849,0.748393 +L 1.6849,0.748393,1.1141,0.748393 +L 1.1141,0.748393,0.6008,1.419435 +L 0.6008,1.419435,0.6028,1.541267 +L 0.6028,1.541267,0.6058,1.656331 +L 0.6058,1.656331,0.6117,1.766553 +L 0.6117,1.766553,0.6206,1.870014 +L 0.6206,1.870014,0.6325,1.967677 +L 0.6325,1.967677,0.6454,2.05953 +L 0.6454,2.05953,0.6603,2.145587 +L 0.6603,2.145587,0.6791,2.225844 +L 0.6791,2.225844,0.9536,3.269085 +L 0.9536,3.269147,0.9675,3.334895 +L 0.9675,3.334895,0.9784,3.401613 +L 0.9784,3.401613,0.9883,3.469301 +L 0.9883,3.469301,0.9942,3.537947 +L 0.9942,3.537947,0.9992,3.607567 +L 0.9992,3.607567,1.0012,3.678153 +L 1.0012,3.678153,1.0002,3.750671 +L 1.0002,3.750671,1.0022,3.836728 +L 1.0022,3.836728,1.0022,3.994334 +L 1.0022,3.994334,0.9982,4.132612 +L 0.9982,4.132601,0.9942,4.193521 +L 0.9942,4.193521,0.9913,4.250569 +L 0.9913,4.250569,0.9853,4.302779 +L 0.9853,4.302779,0.7514,4.302779 +L 0.7514,4.302779,0.6999,4.233165 +L 0.6999,4.233165,0.6504,4.158708 +L 0.6504,4.158708,0.6028,4.081359 +L 0.6028,4.081359,0.5562,4.000136 +L 0.5562,4.000136,0.5126,3.915049 +L 0.5126,3.915049,0.469,3.826091 +L 0.469,3.826091,0.4264,3.733267 +L 0.4264,3.733267,0.3868,3.636573 +L 0.3868,3.636573,0.3313,3.534826 +L 0.3313,3.535049,0.3006,3.48767 +L 0.3006,3.48767,0.2689,3.442226 +L 0.2689,3.442226,0.2362,3.398715 +L 0.2362,3.398715,0.2025,3.357132 +L 0.2025,3.357132,0.1668,3.317492 +L 0.1668,3.317492,0.1301,3.279784 +L 0.1301,3.279784,0.0013,3.279784 +L 0.0013,3.279784,0.0033,3.357132 +L 0.0033,3.357132,0.0082,3.432555 +L 0.0082,3.432555,0.0162,3.506043 +L 0.0162,3.506043,0.0261,3.577594 +L 0.0261,3.577594,0.0419,3.647211 +L 0.0419,3.647211,0.0578,3.715861 +L 0.0578,3.715861,0.0786,3.782579 +L 0.0786,3.782579,0.1014,3.847365 +L 0.1014,3.847365,0.149,3.959527 +L 0.149,3.959527,0.1965,4.069754 +L 0.1965,4.069754,0.2471,4.177084 +L 0.2471,4.177084,0.2986,4.282476 +L 0.2986,4.282476,0.3511,4.38497 +L 0.3511,4.38497,0.4036,4.484563 +L 0.4036,4.484563,0.4591,4.582219 +L 0.4591,4.582219,0.5146,4.676978 +L 0.2817,5.893356,0.9665,5.893356 +L 0.9665,5.893356,0.9665,5.331582 +L 0.9665,5.331582,0.2817,5.331582 +L 0.2817,5.331582,0.2817,5.893356 +L 2.2884,5.893356,2.9731,5.893356 +L 2.9731,5.893356,2.9731,5.331582 +L 2.9731,5.331582,2.2884,5.331582 +L 2.2884,5.331582,2.2884,5.893356 + +[え] 156 +L 1.4195,4.649901,1.8288,4.649901 +L 1.8288,4.649901,1.915,4.59866 +L 1.915,4.59866,2.0002,4.546441 +L 2.0002,4.546441,2.0854,4.492295 +L 2.0854,4.492295,2.1706,4.437183 +L 2.1706,4.437183,2.2539,4.381102 +L 2.2539,4.381102,2.3381,4.323086 +L 2.3381,4.323086,2.4213,4.263137 +L 2.4213,4.263137,2.5026,4.202223 +L 2.5026,4.202223,2.5442,4.119068 +L 2.5442,4.119068,2.6175,3.961277 +L 2.6185,3.961459,2.6839,3.815632 +L 2.6839,3.815454,2.7137,3.7468 +L 2.7137,3.7468,2.7424,3.681054 +L 2.7424,3.681054,2.7672,3.617235 +L 2.7672,3.617235,2.7929,3.550517 +L 2.7929,3.550517,2.8147,3.486704 +L 2.8147,3.486704,2.8326,3.426755 +L 2.8326,3.426755,2.8474,3.368739 +L 2.8474,3.368739,2.8583,3.31459 +L 2.8583,3.31459,2.8663,3.263346 +L 2.8663,3.263346,2.8682,3.215001 +L 2.8682,3.215001,2.8682,2.566197 +L 2.8682,2.566197,2.6185,1.919332 +L 2.6185,1.919332,2.5888,1.861313 +L 2.5888,1.861313,2.5581,1.804268 +L 2.5581,1.804268,2.5244,1.746252 +L 2.5244,1.746252,2.4867,1.688235 +L 2.4867,1.688235,2.4471,1.629256 +L 2.4471,1.629256,2.4045,1.57124 +L 2.4045,1.57124,2.3579,1.512254 +L 2.3579,1.512254,2.2479,1.377824 +L 2.2479,1.377855,2.1875,1.307273 +L 2.1875,1.307273,2.127,1.241521 +L 2.127,1.241521,2.0686,1.180606 +L 2.0686,1.180606,2.0101,1.124525 +L 2.0101,1.124525,1.9526,1.074241 +L 1.9526,1.074241,1.8981,1.027834 +L 1.8981,1.027834,1.8436,0.986253 +L 1.8436,0.986253,1.4413,0.739691 +L 1.4413,0.739691,1.0043,0.749363 +L 1.0043,0.749363,0.5306,1.051034 +L 0.5306,1.051034,0.4781,1.098414 +L 0.4781,1.098414,0.4256,1.158362 +L 0.4256,1.158362,0.3721,1.230884 +L 0.3721,1.230884,0.3176,1.315008 +L 0.3176,1.315008,0.2621,1.412662 +L 0.2621,1.412662,0.2076,1.523861 +L 0.2076,1.523861,0.1511,1.646659 +L 0.1511,1.646659,0.0936,1.782028 +L 0.0936,1.782028,0.0708,1.846813 +L 0.0708,1.846813,0.05,1.90966 +L 0.05,1.90966,0.0322,1.969609 +L 0.0322,1.969609,0.0183,2.027626 +L 0.0183,2.027626,0.0074,2.083706 +L 0.0074,2.083706,0.0005,2.137855 +L 0.0005,2.137855,-0.0055,2.189102 +L -0.0055,2.189102,-0.0075,2.237447 +L -0.0075,2.237447,0.0005,2.850472 +L 0.0005,2.850472,0.0679,3.017748 +L 0.0679,3.017748,0.1323,3.172456 +L 0.1323,3.172456,0.1957,3.315556 +L 0.1957,3.315556,0.2571,3.446094 +L 0.2571,3.446094,0.3156,3.564052 +L 0.3156,3.564052,0.3731,3.670417 +L 0.3731,3.670417,0.4286,3.76421 +L 0.4286,3.76421,0.4811,3.84543 +L 0.4811,3.84543,0.5693,3.950822 +L 0.5693,3.950822,0.6565,4.048479 +L 0.6565,4.048479,0.7407,4.138407 +L 0.7407,4.138407,0.8239,4.220593 +L 0.8239,4.220593,0.9042,4.294077 +L 0.9042,4.294077,0.9825,4.359828 +L 0.9825,4.359828,1.0588,4.416876 +L 1.0588,4.416876,1.1341,4.467156 +L 1.1341,4.467156,1.4195,4.649901 +L 1.6246,4.302779,1.4839,4.210924 +L 1.4839,4.210924,1.3561,4.122935 +L 1.3561,4.122935,1.2431,4.038814 +L 1.2431,4.038814,1.145,3.958557 +L 1.145,3.958557,1.0588,3.881204 +L 1.0588,3.881204,0.9874,3.808688 +L 0.9874,3.808688,0.931,3.739068 +L 0.931,3.739068,0.8874,3.673316 +L 0.8874,3.673316,0.4722,2.602942 +L 0.4722,2.602942,0.4672,2.584569 +L 0.4672,2.584569,0.4622,2.562332 +L 0.4622,2.562332,0.4583,2.534289 +L 0.4583,2.534289,0.4553,2.501415 +L 0.4553,2.501415,0.4513,2.421158 +L 0.4513,2.421158,0.4494,2.321565 +L 0.4494,2.321568,0.4504,2.258718 +L 0.4504,2.258718,0.4533,2.200702 +L 0.4533,2.200702,0.4583,2.147519 +L 0.4583,2.147519,0.4642,2.097242 +L 0.4642,2.097242,0.4722,2.050829 +L 0.4722,2.050829,0.4821,2.009253 +L 0.4821,2.009253,0.4949,1.970575 +L 0.4949,1.970575,0.5078,1.936735 +L 0.5078,1.936735,0.5425,1.845841 +L 0.5425,1.845841,0.5722,1.759791 +L 0.5722,1.759791,0.597,1.679534 +L 0.597,1.679534,0.6178,1.603148 +L 0.6178,1.603148,0.6327,1.532562 +L 0.6327,1.532562,0.6446,1.46778 +L 0.6446,1.46778,0.6515,1.406865 +L 0.6515,1.406865,0.6535,1.35175 +L 0.6535,1.35175,0.821,1.334344 +L 0.821,1.334344,1.2302,1.079079 +L 1.2302,1.079079,1.3749,1.168037 +L 1.3749,1.168037,1.5027,1.25409 +L 1.5027,1.25409,1.6157,1.336279 +L 1.6157,1.336279,1.7138,1.414597 +L 1.7138,1.414597,1.7961,1.489054 +L 1.7961,1.489054,1.8634,1.559633 +L 1.8634,1.559633,1.916,1.626355 +L 1.916,1.626355,1.9526,1.689205 +L 1.9526,1.689205,2.3857,2.782952 +L 2.3866,2.782788,2.3946,2.809862 +L 2.3946,2.809862,2.4015,2.842737 +L 2.4015,2.842737,2.4075,2.880442 +L 2.4075,2.880442,2.4104,2.922024 +L 2.4104,2.922024,2.4134,2.969403 +L 2.4134,2.969403,2.4134,3.021616 +L 2.4134,3.021616,2.4114,3.138612 +L 2.4104,3.138612,2.4094,3.194693 +L 2.4094,3.194693,2.4045,3.247875 +L 2.4045,3.247875,2.3975,3.298153 +L 2.3975,3.298153,2.3906,3.344566 +L 2.3906,3.344566,2.3787,3.387108 +L 2.3787,3.387108,2.3678,3.426755 +L 2.3678,3.426755,2.3539,3.462531 +L 2.3539,3.462531,2.3212,3.551486 +L 2.3212,3.551486,2.2935,3.636573 +L 2.2935,3.636573,2.2687,3.715861 +L 2.2687,3.715861,2.2489,3.791281 +L 2.2489,3.791281,2.2321,3.861866 +L 2.2321,3.861866,2.2202,3.928584 +L 2.2202,3.928584,2.2122,3.990463 +L 2.2122,3.990463,2.2083,4.047516 +L 2.2083,4.047516,2.1607,4.048479 +L 2.1607,4.048479,2.1171,4.051382 +L 2.1171,4.051382,2.0775,4.057181 +L 2.0775,4.057181,2.0418,4.065888 +L 2.0418,4.065888,2.0101,4.075556 +L 2.0101,4.075556,1.9823,4.088126 +L 1.9823,4.088126,1.9586,4.103596 +L 1.9586,4.103596,1.9387,4.12003 +L 1.9387,4.12003,1.8506,4.168952 +L 1.8506,4.169343,1.7683,4.217124 +L 1.7683,4.216722,1.693,4.26114 +L 1.693,4.261206,1.6246,4.303088 +L 2.3658,6.500007,1.0836,4.858906 +L 1.0836,4.858906,0.493,4.858906 +L 0.493,4.858906,1.362,6.500007 +L 1.362,6.500007,2.3658,6.500007 + +[ύ] 133 +L 0.514,4.676978,1.1492,4.676978 +L 1.1492,4.676978,1.4643,4.269907 +L 1.4643,4.269907,1.4643,3.667512 +L 1.4643,3.667512,1.4603,3.600798 +L 1.4603,3.600798,1.4564,3.532148 +L 1.4564,3.532148,1.4474,3.462531 +L 1.4474,3.462531,1.4356,3.390976 +L 1.4356,3.390976,1.4217,3.318461 +L 1.4217,3.318461,1.4048,3.244007 +L 1.4048,3.244007,1.385,3.168588 +L 1.385,3.168588,1.0719,1.948338 +L 1.0719,1.948338,1.064,1.309202 +L 1.064,1.309202,2.1124,1.309202 +L 2.1124,1.309202,2.2134,1.440702 +L 2.2134,1.440702,2.3066,1.57124 +L 2.3066,1.57124,2.3918,1.699839 +L 2.3918,1.699839,2.4681,1.827472 +L 2.4681,1.827472,2.5385,1.954139 +L 2.5385,1.954139,2.5989,2.079839 +L 2.5989,2.079839,2.6524,2.2036 +L 2.6524,2.2036,2.698,2.327369 +L 2.698,2.327369,2.7446,2.437539 +L 2.7446,2.437598,2.7614,2.48594 +L 2.7614,2.48594,2.7763,2.528488 +L 2.7763,2.528488,2.7862,2.567163 +L 2.7862,2.567163,2.7931,2.600037 +L 2.7931,2.600037,2.7971,2.628078 +L 2.7971,2.628078,2.7971,3.715861 +L 2.7971,3.715861,2.3978,4.233165 +L 2.3978,4.233165,2.3978,4.676978 +L 2.3978,4.676978,2.7466,4.676978 +L 2.7466,4.676978,2.805,4.59189 +L 2.805,4.59189,2.8595,4.5068 +L 2.8595,4.5068,2.9111,4.419777 +L 2.9111,4.419777,2.9596,4.333723 +L 2.9596,4.333723,3.0052,4.245734 +L 3.0052,4.245734,3.0478,4.157746 +L 3.0478,4.157746,3.0884,4.069754 +L 3.0884,4.069754,3.1251,3.979832 +L 3.1251,3.979832,3.1489,3.923751 +L 3.1489,3.923751,3.1707,3.8696 +L 3.1707,3.8696,3.1895,3.818351 +L 3.1895,3.818351,3.2073,3.769044 +L 3.2073,3.769044,3.2232,3.721664 +L 3.2232,3.721664,3.2351,3.677186 +L 3.2351,3.677186,3.2539,3.594128 +L 3.2539,3.594028,3.0181,2.363141 +L 3.0181,2.363141,2.9923,2.252915 +L 2.9923,2.252915,2.9656,2.147519 +L 2.9656,2.147519,2.9358,2.045029 +L 2.9358,2.045029,2.9051,1.946403 +L 2.9051,1.946403,2.8734,1.852611 +L 2.8734,1.852611,2.8407,1.76172 +L 2.8407,1.76172,2.805,1.675663 +L 2.805,1.675663,2.7684,1.593477 +L 2.7684,1.593477,2.6118,1.344981 +L 2.6118,1.344981,2.5672,1.292768 +L 2.5672,1.292768,2.5186,1.240551 +L 2.5186,1.240551,2.4671,1.189308 +L 2.4671,1.189308,2.4106,1.13903 +L 2.4106,1.13903,2.3502,1.088749 +L 2.3502,1.088749,2.2868,1.038469 +L 2.2868,1.038469,2.2194,0.99012 +L 2.2194,0.99012,2.148,0.941778 +L 2.148,0.941778,2.0747,0.894398 +L 2.0747,0.894398,2.0073,0.853788 +L 2.0073,0.853788,1.9429,0.819942 +L 1.9429,0.819942,1.8825,0.791901 +L 1.8825,0.791901,1.826,0.7716 +L 1.826,0.7716,1.7745,0.757095 +L 1.7745,0.757095,1.7279,0.749363 +L 1.7279,0.749363,1.6843,0.748393 +L 1.6843,0.748393,1.1135,0.748393 +L 1.1135,0.748393,0.6002,1.419435 +L 0.6002,1.419435,0.6022,1.541267 +L 0.6022,1.541267,0.6051,1.656331 +L 0.6051,1.656331,0.6111,1.766553 +L 0.6111,1.766553,0.62,1.870014 +L 0.62,1.870014,0.6319,1.967677 +L 0.6319,1.967677,0.6448,2.05953 +L 0.6448,2.05953,0.6596,2.145587 +L 0.6596,2.145587,0.6785,2.225844 +L 0.6785,2.225844,0.953,3.269085 +L 0.953,3.269147,0.9668,3.334895 +L 0.9668,3.334895,0.9777,3.401613 +L 0.9777,3.401613,0.9876,3.469301 +L 0.9876,3.469301,0.9936,3.537947 +L 0.9936,3.537947,0.9985,3.607567 +L 0.9985,3.607567,1.0005,3.678153 +L 1.0005,3.678153,0.9995,3.750671 +L 0.9995,3.750671,1.0015,3.836728 +L 1.0015,3.836728,1.0015,3.994334 +L 1.0015,3.994334,0.9976,4.132612 +L 0.9976,4.132601,0.9936,4.193521 +L 0.9936,4.193521,0.9906,4.250569 +L 0.9906,4.250569,0.9847,4.302779 +L 0.9847,4.302779,0.7508,4.302779 +L 0.7508,4.302779,0.6993,4.233165 +L 0.6993,4.233165,0.6497,4.158708 +L 0.6497,4.158708,0.6022,4.081359 +L 0.6022,4.081359,0.5556,4.000136 +L 0.5556,4.000136,0.512,3.915049 +L 0.512,3.915049,0.4684,3.826091 +L 0.4684,3.826091,0.4258,3.733267 +L 0.4258,3.733267,0.3861,3.636573 +L 0.3861,3.636573,0.3307,3.534826 +L 0.3307,3.535049,0.2999,3.48767 +L 0.2999,3.48767,0.2682,3.442226 +L 0.2682,3.442226,0.2355,3.398715 +L 0.2355,3.398715,0.2018,3.357132 +L 0.2018,3.357132,0.1662,3.317492 +L 0.1662,3.317492,0.1295,3.279784 +L 0.1295,3.279784,0.0007,3.279784 +L 0.0007,3.279784,0.0027,3.357132 +L 0.0027,3.357132,0.0076,3.432555 +L 0.0076,3.432555,0.0155,3.506043 +L 0.0155,3.506043,0.0254,3.577594 +L 0.0254,3.577594,0.0413,3.647211 +L 0.0413,3.647211,0.0572,3.715861 +L 0.0572,3.715861,0.078,3.782579 +L 0.078,3.782579,0.1008,3.847365 +L 0.1008,3.847365,0.1483,3.959527 +L 0.1483,3.959527,0.1959,4.069754 +L 0.1959,4.069754,0.2464,4.177084 +L 0.2464,4.177084,0.298,4.282476 +L 0.298,4.282476,0.3505,4.38497 +L 0.3505,4.38497,0.403,4.484563 +L 0.403,4.484563,0.4585,4.582219 +L 0.4585,4.582219,0.514,4.676978 +L 2.9517,6.500007,1.6694,4.858906 +L 1.6694,4.858906,1.0788,4.858906 +L 1.0788,4.858906,1.9479,6.500007 +L 1.9479,6.500007,2.9517,6.500007 + +[ώ] 200 +L 1.4132,4.649901,1.656,4.640236 +L 1.656,4.640236,1.656,4.467156 +L 1.656,4.467156,1.6015,4.400441 +L 1.6015,4.400441,1.544,4.336625 +L 1.544,4.336625,1.4846,4.275707 +L 1.4846,4.275707,1.4241,4.218657 +L 1.4241,4.218657,1.3607,4.163545 +L 1.3607,4.163545,1.2943,4.112298 +L 1.2943,4.112298,1.2269,4.064919 +L 1.2269,4.064919,1.1566,4.019475 +L 1.1566,4.019475,1.117,3.983697 +L 1.117,3.983697,1.0436,3.914099 +L 1.0436,3.91408,1.0099,3.880237 +L 1.0099,3.880237,0.9792,3.847365 +L 0.9792,3.847365,0.9505,3.815454 +L 0.9505,3.815454,0.9247,3.784514 +L 0.9247,3.784514,0.8999,3.754539 +L 0.8999,3.754539,0.7572,3.527314 +L 0.7572,3.527314,0.7354,3.460592 +L 0.7354,3.460592,0.6958,3.330188 +L 0.6958,3.330061,0.677,3.266242 +L 0.677,3.266242,0.6581,3.202429 +L 0.6581,3.202429,0.6066,3.015906 +L 0.6076,3.015813,0.5719,2.877546 +L 0.5719,2.877546,0.5412,2.747978 +L 0.5412,2.747978,0.5164,2.627115 +L 0.5164,2.627115,0.4946,2.514953 +L 0.4946,2.514953,0.4788,2.410521 +L 0.4788,2.410521,0.4669,2.314799 +L 0.4669,2.314799,0.46,2.22681 +L 0.46,2.22681,0.457,2.147519 +L 0.457,2.147519,0.457,1.689205 +L 0.457,1.689205,0.9376,1.068445 +L 0.9376,1.068445,1.11,1.123556 +L 1.11,1.123556,1.2497,1.212446 +L 1.2497,1.212515,1.3181,1.257955 +L 1.3181,1.257955,1.3865,1.304371 +L 1.3865,1.304371,1.4549,1.35175 +L 1.4549,1.35175,1.5222,1.400092 +L 1.5222,1.400092,1.5896,1.448441 +L 1.5896,1.448441,1.656,1.497756 +L 1.656,1.497756,1.6828,1.585745 +L 1.6828,1.585745,1.7095,1.680503 +L 1.7095,1.680503,1.7353,1.781058 +L 1.7353,1.781058,1.7621,1.888389 +L 1.7621,1.888389,1.7878,2.002486 +L 1.7878,2.002486,1.8393,2.249955 +L 1.8393,2.250017,1.8958,2.55176 +L 1.8968,2.551695,1.9246,2.715104 +L 1.9246,2.715104,1.9474,2.875611 +L 1.9474,2.875611,1.9652,3.033216 +L 1.9652,3.033216,1.9811,3.185991 +L 1.9811,3.185991,1.992,3.33683 +L 1.992,3.33683,1.9989,3.482836 +L 1.9989,3.482836,1.9999,3.625936 +L 1.9999,3.625936,2.4745,3.625936 +L 2.4745,3.625936,2.3873,2.822428 +L 2.3873,2.822428,2.3814,2.750876 +L 2.3814,2.750876,2.3735,2.678362 +L 2.3735,2.678362,2.3645,2.603908 +L 2.3645,2.603908,2.3536,2.528488 +L 2.3536,2.528488,2.3408,2.451133 +L 2.3408,2.451133,2.312,2.292624 +L 2.312,2.292562,2.2942,2.211339 +L 2.2942,2.211339,2.2882,2.156221 +L 2.2882,2.156221,2.2813,2.097242 +L 2.2813,2.097242,2.2773,2.034395 +L 2.2773,2.034395,2.2724,1.966711 +L 2.2724,1.966711,2.2694,1.895155 +L 2.2694,1.895155,2.2674,1.81877 +L 2.2674,1.81877,2.2655,1.653426 +L 2.2655,1.653429,2.2655,1.433936 +L 2.2655,1.433936,2.5528,1.068445 +L 2.5528,1.068445,2.7332,1.133227 +L 2.7332,1.133227,3.1553,1.407831 +L 3.1553,1.407831,3.1959,1.446508 +L 3.1959,1.446508,3.2346,1.485183 +L 3.2346,1.485183,3.2713,1.523861 +L 3.2713,1.523861,3.3059,1.562538 +L 3.3059,1.562538,3.3396,1.601216 +L 3.3396,1.601216,3.3713,1.63989 +L 3.3713,1.63989,3.4001,1.678568 +L 3.4001,1.678568,3.4278,1.717245 +L 3.4278,1.717245,3.6072,1.945437 +L 3.6072,1.945437,3.6072,3.072863 +L 3.6072,3.072863,3.6042,3.15408 +L 3.6042,3.15408,3.5973,3.232404 +L 3.5973,3.232404,3.5864,3.306855 +L 3.5864,3.306855,3.5715,3.378403 +L 3.5715,3.378403,3.5537,3.446094 +L 3.5537,3.446094,3.5319,3.510876 +L 3.5319,3.510876,3.5081,3.571791 +L 3.5081,3.571791,3.4655,3.683953 +L 3.4655,3.683953,3.4219,3.790315 +L 3.4219,3.790315,3.3763,3.890874 +L 3.3763,3.890874,3.3287,3.987568 +L 3.3287,3.987568,3.2802,4.078455 +L 3.2802,4.078455,3.2296,4.164512 +L 3.2296,4.164512,3.1771,4.244762 +L 3.1771,4.244762,3.1216,4.320188 +L 3.1216,4.320188,3.0651,4.318147 +L 3.0651,4.318249,3.0314,4.319218 +L 3.0314,4.319218,2.9938,4.321154 +L 2.9938,4.321154,2.9532,4.324053 +L 2.9532,4.324053,2.9086,4.32792 +L 2.9086,4.32792,2.86,4.332755 +L 2.86,4.332755,2.8085,4.339521 +L 2.8085,4.339521,2.8085,4.649901 +L 2.8085,4.649901,3.3575,4.649901 +L 3.3575,4.649901,3.4516,4.527108 +L 3.4516,4.527108,3.5388,4.407207 +L 3.5388,4.407207,3.6191,4.290212 +L 3.6191,4.290212,3.6924,4.175149 +L 3.6924,4.175149,3.7588,4.062021 +L 3.7588,4.062021,3.8182,3.950822 +L 3.8182,3.950822,3.8708,3.842527 +L 3.8708,3.842527,3.9164,3.736163 +L 3.9164,3.736163,3.952,3.641407 +L 3.952,3.641407,3.9837,3.553422 +L 3.9837,3.553422,4.0095,3.471233 +L 4.0095,3.471233,4.0303,3.396779 +L 4.0303,3.396779,4.0462,3.328129 +L 4.0462,3.328129,4.0571,3.266242 +L 4.0571,3.266242,4.063,3.210161 +L 4.063,3.210161,4.064,3.161819 +L 4.064,3.161819,4.064,2.448235 +L 4.064,2.448235,4.063,2.391182 +L 4.063,2.391182,4.059,2.338972 +L 4.059,2.338972,4.0531,2.292562 +L 4.0531,2.292562,4.0452,2.250017 +L 4.0452,2.250017,4.0363,2.212302 +L 4.0363,2.212302,4.0234,2.179431 +L 4.0234,2.179431,4.0095,2.15139 +L 4.0095,2.15139,3.9927,2.128181 +L 3.9927,2.128181,3.958,2.033422 +L 3.958,2.033422,3.9233,1.942535 +L 3.9233,1.942535,3.8886,1.85358 +L 3.8886,1.85358,3.8529,1.767526 +L 3.8529,1.767526,3.8173,1.685337 +L 3.8173,1.685337,3.7806,1.605084 +L 3.7806,1.605084,3.7439,1.527729 +L 3.7439,1.527729,3.7063,1.453275 +L 3.7063,1.453275,3.6448,1.377855 +L 3.6448,1.377855,3.5834,1.307273 +L 3.5834,1.307273,3.5249,1.241521 +L 3.5249,1.241521,3.4655,1.180606 +L 3.4655,1.180606,3.408,1.124525 +L 3.408,1.124525,3.3525,1.074241 +L 3.3525,1.074241,3.297,1.027834 +L 3.297,1.027834,3.2435,0.986253 +L 3.2435,0.986253,2.9631,0.81221 +L 2.9631,0.81221,2.9195,0.786105 +L 2.9195,0.786105,2.8778,0.763861 +L 2.8778,0.763861,2.8392,0.746458 +L 2.8392,0.746458,2.8035,0.734858 +L 2.8035,0.734858,2.7708,0.729054 +L 2.7708,0.729054,2.7421,0.727119 +L 2.7421,0.727119,2.7163,0.73099 +L 2.7163,0.73099,2.6935,0.739691 +L 2.6935,0.739691,2.313,0.739691 +L 2.313,0.739691,1.9285,1.22508 +L 1.9285,1.22508,1.9057,1.19704 +L 1.9057,1.19704,1.879,1.168999 +L 1.879,1.168999,1.8493,1.139996 +L 1.8493,1.139996,1.8146,1.11002 +L 1.8146,1.11002,1.7779,1.080047 +L 1.7779,1.080047,1.6907,1.017953 +L 1.6907,1.01816,1.6431,0.986253 +L 1.6431,0.986253,1.3657,0.81221 +L 1.3657,0.81221,1.3201,0.786105 +L 1.3201,0.786105,1.2785,0.763861 +L 1.2785,0.763861,1.2388,0.746458 +L 1.2388,0.746458,1.2051,0.734858 +L 1.2051,0.734858,1.1715,0.729054 +L 1.1715,0.729054,1.1437,0.727119 +L 1.1437,0.727119,1.117,0.73099 +L 1.117,0.73099,1.0932,0.739691 +L 1.0932,0.739691,0.7156,0.739691 +L 0.7156,0.739691,0.0012,1.653429 +L 0.0012,1.653429,0.0012,2.321568 +L 0.0012,2.321568,0.0041,2.389253 +L 0.0041,2.389253,0.013,2.466601 +L 0.013,2.466601,0.0299,2.552658 +L 0.0299,2.552658,0.0527,2.647416 +L 0.0527,2.647416,0.0804,2.750876 +L 0.0804,2.750876,0.1161,2.863038 +L 0.1161,2.863038,0.1577,2.984874 +L 0.1577,2.984874,0.2043,3.114439 +L 0.2043,3.114439,0.3083,3.357132 +L 0.3083,3.357132,0.4263,3.58436 +L 0.4263,3.58436,0.5571,3.798051 +L 0.5571,3.798051,0.7008,3.997235 +L 0.7008,3.997235,0.8583,4.181915 +L 0.8583,4.181915,1.0307,4.352093 +L 1.0307,4.352093,1.2151,4.507765 +L 1.2151,4.507765,1.4132,4.649901 +L 2.9512,6.500007,1.6689,4.858906 +L 1.6689,4.858906,1.0783,4.858906 +L 1.0783,4.858906,1.9474,6.500007 +L 1.9474,6.500007,2.9512,6.500007 + +#EOF diff --git a/pycam/share/fonts/greekc.cxf b/pycam/share/fonts/greekc.cxf new file mode 100644 index 00000000..f1a22249 --- /dev/null +++ b/pycam/share/fonts/greekc.cxf @@ -0,0 +1,1833 @@ +# Format: QCad II Font +# Creator: Adam Radlowski's "dodajf" program - GRASS font translator +# Version: 1.0.0 +# Name: Greek Complex +# LetterSpacing: 3.0 +# WordSpacing: 6.75 +# LineSpacingFactor: 1.0 +# Author: Hershey fonts + +[!] 9 +L 0.363636,7.636364,0,6.909091 +L 0,6.909091,0.363636,2.545455 +L 0.363636,2.545455,0.727273,6.909091 +L 0.727273,6.909091,0.363636,7.636364 +L 0.363636,6.909091,0.363636,4.727273 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +["] 10 +L 0.363636,5.090909,0,4.727273 +L 0,4.727273,0.363636,4.363636 +L 0.363636,4.363636,0.727273,4.727273 +L 0.727273,4.727273,0.363636,5.090909 +L 0.363636,0,0,0.363636 +L 0,0.363636,0.363636,0.727273 +L 0.363636,0.727273,0.727273,0.363636 +L 0.727273,0.363636,0.727273,-0.363636 +L 0.727273,-0.363636,0.363636,-1.090909 +L 0.363636,-1.090909,0,-1.454545 + +[#] 4 +L 2.909091,7.636364,0.363636,-2.545455 +L 5.090909,7.636364,2.545455,-2.545455 +L 0.363636,3.636364,5.454545,3.636364 +L 0,1.454545,5.090909,1.454545 + +[$] 34 +L 1.818182,9.090909,1.818182,-1.454545 +L 3.272727,9.090909,3.272727,-1.454545 +L 4.727273,6.545455,4.363636,6.181818 +L 4.363636,6.181818,4.727273,5.818182 +L 4.727273,5.818182,5.090909,6.181818 +L 5.090909,6.181818,5.090909,6.545455 +L 5.090909,6.545455,4.363636,7.272727 +L 4.363636,7.272727,3.272727,7.636364 +L 3.272727,7.636364,1.818182,7.636364 +L 1.818182,7.636364,0.727273,7.272727 +L 0.727273,7.272727,0,6.545455 +L 0,6.545455,0,5.818182 +L 0,5.818182,0.363636,5.090909 +L 0.363636,5.090909,0.727273,4.727273 +L 0.727273,4.727273,1.454545,4.363636 +L 1.454545,4.363636,3.636364,3.636364 +L 3.636364,3.636364,4.363636,3.272727 +L 4.363636,3.272727,5.090909,2.545455 +L 0,5.818182,0.727273,5.090909 +L 0.727273,5.090909,1.454545,4.727273 +L 1.454545,4.727273,3.636364,4 +L 3.636364,4,4.363636,3.636364 +L 4.363636,3.636364,4.727273,3.272727 +L 4.727273,3.272727,5.090909,2.545455 +L 5.090909,2.545455,5.090909,1.090909 +L 5.090909,1.090909,4.363636,0.363636 +L 4.363636,0.363636,3.272727,0 +L 3.272727,0,1.818182,0 +L 1.818182,0,0.727273,0.363636 +L 0.727273,0.363636,0,1.090909 +L 0,1.090909,0,1.454545 +L 0,1.454545,0.363636,1.818182 +L 0.363636,1.818182,0.727273,1.454545 +L 0.727273,1.454545,0.363636,1.090909 + +[%] 26 +L 6.545455,7.636364,0,0 +L 1.818182,7.636364,2.545455,6.909091 +L 2.545455,6.909091,2.545455,6.181818 +L 2.545455,6.181818,2.181818,5.454545 +L 2.181818,5.454545,1.454545,5.090909 +L 1.454545,5.090909,0.727273,5.090909 +L 0.727273,5.090909,0,5.818182 +L 0,5.818182,0,6.545455 +L 0,6.545455,0.363636,7.272727 +L 0.363636,7.272727,1.090909,7.636364 +L 1.090909,7.636364,1.818182,7.636364 +L 1.818182,7.636364,2.545455,7.272727 +L 2.545455,7.272727,3.636364,6.909091 +L 3.636364,6.909091,4.727273,6.909091 +L 4.727273,6.909091,5.818182,7.272727 +L 5.818182,7.272727,6.545455,7.636364 +L 5.090909,2.545455,4.363636,2.181818 +L 4.363636,2.181818,4,1.454545 +L 4,1.454545,4,0.727273 +L 4,0.727273,4.727273,0 +L 4.727273,0,5.454545,0 +L 5.454545,0,6.181818,0.363636 +L 6.181818,0.363636,6.545455,1.090909 +L 6.545455,1.090909,6.545455,1.818182 +L 6.545455,1.818182,5.818182,2.545455 +L 5.818182,2.545455,5.090909,2.545455 + +[&] 43 +L 6.545455,4.727273,6.181818,4.363636 +L 6.181818,4.363636,6.545455,4 +L 6.545455,4,6.909091,4.363636 +L 6.909091,4.363636,6.909091,4.727273 +L 6.909091,4.727273,6.545455,5.090909 +L 6.545455,5.090909,6.181818,5.090909 +L 6.181818,5.090909,5.818182,4.727273 +L 5.818182,4.727273,5.454545,4 +L 5.454545,4,4.727273,2.181818 +L 4.727273,2.181818,4,1.090909 +L 4,1.090909,3.272727,0.363636 +L 3.272727,0.363636,2.545455,0 +L 2.545455,0,1.454545,0 +L 1.454545,0,0.363636,0.363636 +L 0.363636,0.363636,0,1.090909 +L 0,1.090909,0,2.181818 +L 0,2.181818,0.363636,2.909091 +L 0.363636,2.909091,2.545455,4.363636 +L 2.545455,4.363636,3.272727,5.090909 +L 3.272727,5.090909,3.636364,5.818182 +L 3.636364,5.818182,3.636364,6.545455 +L 3.636364,6.545455,3.272727,7.272727 +L 3.272727,7.272727,2.545455,7.636364 +L 2.545455,7.636364,1.818182,7.272727 +L 1.818182,7.272727,1.454545,6.545455 +L 1.454545,6.545455,1.454545,5.818182 +L 1.454545,5.818182,1.818182,4.727273 +L 1.818182,4.727273,2.545455,3.636364 +L 2.545455,3.636364,4.363636,1.090909 +L 4.363636,1.090909,5.090909,0.363636 +L 5.090909,0.363636,6.181818,0 +L 6.181818,0,6.545455,0 +L 6.545455,0,6.909091,0.363636 +L 6.909091,0.363636,6.909091,0.727273 +L 1.454545,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,1.090909 +L 0.363636,1.090909,0.363636,2.181818 +L 0.363636,2.181818,0.727273,2.909091 +L 0.727273,2.909091,1.454545,3.636364 +L 1.454545,5.818182,1.818182,5.090909 +L 1.818182,5.090909,4.727273,1.090909 +L 4.727273,1.090909,5.454545,0.363636 +L 5.454545,0.363636,6.181818,0 + +['] 6 +L 0.363636,6.909091,0,7.272727 +L 0,7.272727,0.363636,7.636364 +L 0.363636,7.636364,0.727273,7.272727 +L 0.727273,7.272727,0.727273,6.545455 +L 0.727273,6.545455,0.363636,5.818182 +L 0.363636,5.818182,0,5.454545 + +[(] 16 +L 2.545455,9.090909,1.818182,8.363636 +L 1.818182,8.363636,1.090909,7.272727 +L 1.090909,7.272727,0.363636,5.818182 +L 0.363636,5.818182,0,4 +L 0,4,0,2.545455 +L 0,2.545455,0.363636,0.727273 +L 0.363636,0.727273,1.090909,-0.727273 +L 1.090909,-0.727273,1.818182,-1.818182 +L 1.818182,-1.818182,2.545455,-2.545455 +L 1.818182,8.363636,1.090909,6.909091 +L 1.090909,6.909091,0.727273,5.818182 +L 0.727273,5.818182,0.363636,4 +L 0.363636,4,0.363636,2.545455 +L 0.363636,2.545455,0.727273,0.727273 +L 0.727273,0.727273,1.090909,-0.363636 +L 1.090909,-0.363636,1.818182,-1.818182 + +[)] 16 +L 0,9.090909,0.727273,8.363636 +L 0.727273,8.363636,1.454545,7.272727 +L 1.454545,7.272727,2.181818,5.818182 +L 2.181818,5.818182,2.545455,4 +L 2.545455,4,2.545455,2.545455 +L 2.545455,2.545455,2.181818,0.727273 +L 2.181818,0.727273,1.454545,-0.727273 +L 1.454545,-0.727273,0.727273,-1.818182 +L 0.727273,-1.818182,0,-2.545455 +L 0.727273,8.363636,1.454545,6.909091 +L 1.454545,6.909091,1.818182,5.818182 +L 1.818182,5.818182,2.181818,4 +L 2.181818,4,2.181818,2.545455 +L 2.181818,2.545455,1.818182,0.727273 +L 1.818182,0.727273,1.454545,-0.363636 +L 1.454545,-0.363636,0.727273,-1.818182 + +[*] 3 +L 1.818182,7.636364,1.818182,3.272727 +L 0,6.545455,3.636364,4.363636 +L 3.636364,6.545455,0,4.363636 + +[+] 2 +L 3.272727,6.545455,3.272727,0 +L 0,3.272727,6.545455,3.272727 + +[,] 6 +L 0.363636,0,0,0.363636 +L 0,0.363636,0.363636,0.727273 +L 0.363636,0.727273,0.727273,0.363636 +L 0.727273,0.363636,0.727273,-0.363636 +L 0.727273,-0.363636,0.363636,-1.090909 +L 0.363636,-1.090909,0,-1.454545 + +[-] 1 +L 0,3.272727,6.545455,3.272727 + +[.] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[/] 1 +L 6.545455,9.090909,0,-2.545455 + +[0] 34 +L 2.181818,7.636364,1.090909,7.272727 +L 1.090909,7.272727,0.363636,6.181818 +L 0.363636,6.181818,0,4.363636 +L 0,4.363636,0,3.272727 +L 0,3.272727,0.363636,1.454545 +L 0.363636,1.454545,1.090909,0.363636 +L 1.090909,0.363636,2.181818,0 +L 2.181818,0,2.909091,0 +L 2.909091,0,4,0.363636 +L 4,0.363636,4.727273,1.454545 +L 4.727273,1.454545,5.090909,3.272727 +L 5.090909,3.272727,5.090909,4.363636 +L 5.090909,4.363636,4.727273,6.181818 +L 4.727273,6.181818,4,7.272727 +L 4,7.272727,2.909091,7.636364 +L 2.909091,7.636364,2.181818,7.636364 +L 2.181818,7.636364,1.454545,7.272727 +L 1.454545,7.272727,1.090909,6.909091 +L 1.090909,6.909091,0.727273,6.181818 +L 0.727273,6.181818,0.363636,4.363636 +L 0.363636,4.363636,0.363636,3.272727 +L 0.363636,3.272727,0.727273,1.454545 +L 0.727273,1.454545,1.090909,0.727273 +L 1.090909,0.727273,1.454545,0.363636 +L 1.454545,0.363636,2.181818,0 +L 2.909091,0,3.636364,0.363636 +L 3.636364,0.363636,4,0.727273 +L 4,0.727273,4.363636,1.454545 +L 4.363636,1.454545,4.727273,3.272727 +L 4.727273,3.272727,4.727273,4.363636 +L 4.727273,4.363636,4.363636,6.181818 +L 4.363636,6.181818,4,6.909091 +L 4,6.909091,3.636364,7.272727 +L 3.636364,7.272727,2.909091,7.636364 + +[1] 5 +L 0,6.181818,0.727273,6.545455 +L 0.727273,6.545455,1.818182,7.636364 +L 1.818182,7.636364,1.818182,0 +L 1.454545,7.272727,1.454545,0 +L 0,0,3.272727,0 + +[2] 37 +L 0.363636,6.181818,0.727273,5.818182 +L 0.727273,5.818182,0.363636,5.454545 +L 0.363636,5.454545,0,5.818182 +L 0,5.818182,0,6.181818 +L 0,6.181818,0.363636,6.909091 +L 0.363636,6.909091,0.727273,7.272727 +L 0.727273,7.272727,1.818182,7.636364 +L 1.818182,7.636364,3.272727,7.636364 +L 3.272727,7.636364,4.363636,7.272727 +L 4.363636,7.272727,4.727273,6.909091 +L 4.727273,6.909091,5.090909,6.181818 +L 5.090909,6.181818,5.090909,5.454545 +L 5.090909,5.454545,4.727273,4.727273 +L 4.727273,4.727273,3.636364,4 +L 3.636364,4,1.818182,3.272727 +L 1.818182,3.272727,1.090909,2.909091 +L 1.090909,2.909091,0.363636,2.181818 +L 0.363636,2.181818,0,1.090909 +L 0,1.090909,0,0 +L 3.272727,7.636364,4,7.272727 +L 4,7.272727,4.363636,6.909091 +L 4.363636,6.909091,4.727273,6.181818 +L 4.727273,6.181818,4.727273,5.454545 +L 4.727273,5.454545,4.363636,4.727273 +L 4.363636,4.727273,3.272727,4 +L 3.272727,4,1.818182,3.272727 +L 0,0.727273,0.363636,1.090909 +L 0.363636,1.090909,1.090909,1.090909 +L 1.090909,1.090909,2.909091,0.363636 +L 2.909091,0.363636,4,0.363636 +L 4,0.363636,4.727273,0.727273 +L 4.727273,0.727273,5.090909,1.090909 +L 1.090909,1.090909,2.909091,0 +L 2.909091,0,4.363636,0 +L 4.363636,0,4.727273,0.363636 +L 4.727273,0.363636,5.090909,1.090909 +L 5.090909,1.090909,5.090909,1.818182 + +[3] 39 +L 0.363636,6.181818,0.727273,5.818182 +L 0.727273,5.818182,0.363636,5.454545 +L 0.363636,5.454545,0,5.818182 +L 0,5.818182,0,6.181818 +L 0,6.181818,0.363636,6.909091 +L 0.363636,6.909091,0.727273,7.272727 +L 0.727273,7.272727,1.818182,7.636364 +L 1.818182,7.636364,3.272727,7.636364 +L 3.272727,7.636364,4.363636,7.272727 +L 4.363636,7.272727,4.727273,6.545455 +L 4.727273,6.545455,4.727273,5.454545 +L 4.727273,5.454545,4.363636,4.727273 +L 4.363636,4.727273,3.272727,4.363636 +L 3.272727,4.363636,2.181818,4.363636 +L 3.272727,7.636364,4,7.272727 +L 4,7.272727,4.363636,6.545455 +L 4.363636,6.545455,4.363636,5.454545 +L 4.363636,5.454545,4,4.727273 +L 4,4.727273,3.272727,4.363636 +L 3.272727,4.363636,4,4 +L 4,4,4.727273,3.272727 +L 4.727273,3.272727,5.090909,2.545455 +L 5.090909,2.545455,5.090909,1.454545 +L 5.090909,1.454545,4.727273,0.727273 +L 4.727273,0.727273,4.363636,0.363636 +L 4.363636,0.363636,3.272727,0 +L 3.272727,0,1.818182,0 +L 1.818182,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 +L 0.363636,0.727273,0,1.454545 +L 0,1.454545,0,1.818182 +L 0,1.818182,0.363636,2.181818 +L 0.363636,2.181818,0.727273,1.818182 +L 0.727273,1.818182,0.363636,1.454545 +L 4.363636,3.636364,4.727273,2.545455 +L 4.727273,2.545455,4.727273,1.454545 +L 4.727273,1.454545,4.363636,0.727273 +L 4.363636,0.727273,4,0.363636 +L 4,0.363636,3.272727,0 + +[4] 5 +L 3.636364,6.909091,3.636364,0 +L 4,7.636364,4,0 +L 4,7.636364,0,2.181818 +L 0,2.181818,5.818182,2.181818 +L 2.545455,0,5.090909,0 + +[5] 29 +L 0.727273,7.636364,0,4 +L 0,4,0.727273,4.727273 +L 0.727273,4.727273,1.818182,5.090909 +L 1.818182,5.090909,2.909091,5.090909 +L 2.909091,5.090909,4,4.727273 +L 4,4.727273,4.727273,4 +L 4.727273,4,5.090909,2.909091 +L 5.090909,2.909091,5.090909,2.181818 +L 5.090909,2.181818,4.727273,1.090909 +L 4.727273,1.090909,4,0.363636 +L 4,0.363636,2.909091,0 +L 2.909091,0,1.818182,0 +L 1.818182,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 +L 0.363636,0.727273,0,1.454545 +L 0,1.454545,0,1.818182 +L 0,1.818182,0.363636,2.181818 +L 0.363636,2.181818,0.727273,1.818182 +L 0.727273,1.818182,0.363636,1.454545 +L 2.909091,5.090909,3.636364,4.727273 +L 3.636364,4.727273,4.363636,4 +L 4.363636,4,4.727273,2.909091 +L 4.727273,2.909091,4.727273,2.181818 +L 4.727273,2.181818,4.363636,1.090909 +L 4.363636,1.090909,3.636364,0.363636 +L 3.636364,0.363636,2.909091,0 +L 0.727273,7.636364,4.363636,7.636364 +L 0.727273,7.272727,2.545455,7.272727 +L 2.545455,7.272727,4.363636,7.636364 + +[6] 42 +L 4.363636,6.545455,4,6.181818 +L 4,6.181818,4.363636,5.818182 +L 4.363636,5.818182,4.727273,6.181818 +L 4.727273,6.181818,4.727273,6.545455 +L 4.727273,6.545455,4.363636,7.272727 +L 4.363636,7.272727,3.636364,7.636364 +L 3.636364,7.636364,2.545455,7.636364 +L 2.545455,7.636364,1.454545,7.272727 +L 1.454545,7.272727,0.727273,6.545455 +L 0.727273,6.545455,0.363636,5.818182 +L 0.363636,5.818182,0,4.363636 +L 0,4.363636,0,2.181818 +L 0,2.181818,0.363636,1.090909 +L 0.363636,1.090909,1.090909,0.363636 +L 1.090909,0.363636,2.181818,0 +L 2.181818,0,2.909091,0 +L 2.909091,0,4,0.363636 +L 4,0.363636,4.727273,1.090909 +L 4.727273,1.090909,5.090909,2.181818 +L 5.090909,2.181818,5.090909,2.545455 +L 5.090909,2.545455,4.727273,3.636364 +L 4.727273,3.636364,4,4.363636 +L 4,4.363636,2.909091,4.727273 +L 2.909091,4.727273,2.545455,4.727273 +L 2.545455,4.727273,1.454545,4.363636 +L 1.454545,4.363636,0.727273,3.636364 +L 0.727273,3.636364,0.363636,2.545455 +L 2.545455,7.636364,1.818182,7.272727 +L 1.818182,7.272727,1.090909,6.545455 +L 1.090909,6.545455,0.727273,5.818182 +L 0.727273,5.818182,0.363636,4.363636 +L 0.363636,4.363636,0.363636,2.181818 +L 0.363636,2.181818,0.727273,1.090909 +L 0.727273,1.090909,1.454545,0.363636 +L 1.454545,0.363636,2.181818,0 +L 2.909091,0,3.636364,0.363636 +L 3.636364,0.363636,4.363636,1.090909 +L 4.363636,1.090909,4.727273,2.181818 +L 4.727273,2.181818,4.727273,2.545455 +L 4.727273,2.545455,4.363636,3.636364 +L 4.363636,3.636364,3.636364,4.363636 +L 3.636364,4.363636,2.909091,4.727273 + +[7] 21 +L 0,7.636364,0,5.454545 +L 0,6.181818,0.363636,6.909091 +L 0.363636,6.909091,1.090909,7.636364 +L 1.090909,7.636364,1.818182,7.636364 +L 1.818182,7.636364,3.636364,6.545455 +L 3.636364,6.545455,4.363636,6.545455 +L 4.363636,6.545455,4.727273,6.909091 +L 4.727273,6.909091,5.090909,7.636364 +L 0.363636,6.909091,1.090909,7.272727 +L 1.090909,7.272727,1.818182,7.272727 +L 1.818182,7.272727,3.636364,6.545455 +L 5.090909,7.636364,5.090909,6.545455 +L 5.090909,6.545455,4.727273,5.454545 +L 4.727273,5.454545,3.272727,3.636364 +L 3.272727,3.636364,2.909091,2.909091 +L 2.909091,2.909091,2.545455,1.818182 +L 2.545455,1.818182,2.545455,0 +L 4.727273,5.454545,2.909091,3.636364 +L 2.909091,3.636364,2.545455,2.909091 +L 2.545455,2.909091,2.181818,1.818182 +L 2.181818,1.818182,2.181818,0 + +[8] 51 +L 1.818182,7.636364,0.727273,7.272727 +L 0.727273,7.272727,0.363636,6.545455 +L 0.363636,6.545455,0.363636,5.454545 +L 0.363636,5.454545,0.727273,4.727273 +L 0.727273,4.727273,1.818182,4.363636 +L 1.818182,4.363636,3.272727,4.363636 +L 3.272727,4.363636,4.363636,4.727273 +L 4.363636,4.727273,4.727273,5.454545 +L 4.727273,5.454545,4.727273,6.545455 +L 4.727273,6.545455,4.363636,7.272727 +L 4.363636,7.272727,3.272727,7.636364 +L 3.272727,7.636364,1.818182,7.636364 +L 1.818182,7.636364,1.090909,7.272727 +L 1.090909,7.272727,0.727273,6.545455 +L 0.727273,6.545455,0.727273,5.454545 +L 0.727273,5.454545,1.090909,4.727273 +L 1.090909,4.727273,1.818182,4.363636 +L 3.272727,4.363636,4,4.727273 +L 4,4.727273,4.363636,5.454545 +L 4.363636,5.454545,4.363636,6.545455 +L 4.363636,6.545455,4,7.272727 +L 4,7.272727,3.272727,7.636364 +L 1.818182,4.363636,0.727273,4 +L 0.727273,4,0.363636,3.636364 +L 0.363636,3.636364,0,2.909091 +L 0,2.909091,0,1.454545 +L 0,1.454545,0.363636,0.727273 +L 0.363636,0.727273,0.727273,0.363636 +L 0.727273,0.363636,1.818182,0 +L 1.818182,0,3.272727,0 +L 3.272727,0,4.363636,0.363636 +L 4.363636,0.363636,4.727273,0.727273 +L 4.727273,0.727273,5.090909,1.454545 +L 5.090909,1.454545,5.090909,2.909091 +L 5.090909,2.909091,4.727273,3.636364 +L 4.727273,3.636364,4.363636,4 +L 4.363636,4,3.272727,4.363636 +L 1.818182,4.363636,1.090909,4 +L 1.090909,4,0.727273,3.636364 +L 0.727273,3.636364,0.363636,2.909091 +L 0.363636,2.909091,0.363636,1.454545 +L 0.363636,1.454545,0.727273,0.727273 +L 0.727273,0.727273,1.090909,0.363636 +L 1.090909,0.363636,1.818182,0 +L 3.272727,0,4,0.363636 +L 4,0.363636,4.363636,0.727273 +L 4.363636,0.727273,4.727273,1.454545 +L 4.727273,1.454545,4.727273,2.909091 +L 4.727273,2.909091,4.363636,3.636364 +L 4.363636,3.636364,4,4 +L 4,4,3.272727,4.363636 + +[9] 42 +L 4.727273,5.090909,4.363636,4 +L 4.363636,4,3.636364,3.272727 +L 3.636364,3.272727,2.545455,2.909091 +L 2.545455,2.909091,2.181818,2.909091 +L 2.181818,2.909091,1.090909,3.272727 +L 1.090909,3.272727,0.363636,4 +L 0.363636,4,0,5.090909 +L 0,5.090909,0,5.454545 +L 0,5.454545,0.363636,6.545455 +L 0.363636,6.545455,1.090909,7.272727 +L 1.090909,7.272727,2.181818,7.636364 +L 2.181818,7.636364,2.909091,7.636364 +L 2.909091,7.636364,4,7.272727 +L 4,7.272727,4.727273,6.545455 +L 4.727273,6.545455,5.090909,5.454545 +L 5.090909,5.454545,5.090909,3.272727 +L 5.090909,3.272727,4.727273,1.818182 +L 4.727273,1.818182,4.363636,1.090909 +L 4.363636,1.090909,3.636364,0.363636 +L 3.636364,0.363636,2.545455,0 +L 2.545455,0,1.454545,0 +L 1.454545,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,1.090909 +L 0.363636,1.090909,0.363636,1.454545 +L 0.363636,1.454545,0.727273,1.818182 +L 0.727273,1.818182,1.090909,1.454545 +L 1.090909,1.454545,0.727273,1.090909 +L 2.181818,2.909091,1.454545,3.272727 +L 1.454545,3.272727,0.727273,4 +L 0.727273,4,0.363636,5.090909 +L 0.363636,5.090909,0.363636,5.454545 +L 0.363636,5.454545,0.727273,6.545455 +L 0.727273,6.545455,1.454545,7.272727 +L 1.454545,7.272727,2.181818,7.636364 +L 2.909091,7.636364,3.636364,7.272727 +L 3.636364,7.272727,4.363636,6.545455 +L 4.363636,6.545455,4.727273,5.454545 +L 4.727273,5.454545,4.727273,3.272727 +L 4.727273,3.272727,4.363636,1.818182 +L 4.363636,1.818182,4,1.090909 +L 4,1.090909,3.272727,0.363636 +L 3.272727,0.363636,2.545455,0 + +[:] 8 +L 0.363636,5.090909,0,4.727273 +L 0,4.727273,0.363636,4.363636 +L 0.363636,4.363636,0.727273,4.727273 +L 0.727273,4.727273,0.363636,5.090909 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[;] 10 +L 0.363636,5.090909,0,4.727273 +L 0,4.727273,0.363636,4.363636 +L 0.363636,4.363636,0.727273,4.727273 +L 0.727273,4.727273,0.363636,5.090909 +L 0.363636,0,0,0.363636 +L 0,0.363636,0.363636,0.727273 +L 0.363636,0.727273,0.727273,0.363636 +L 0.727273,0.363636,0.727273,-0.363636 +L 0.727273,-0.363636,0.363636,-1.090909 +L 0.363636,-1.090909,0,-1.454545 + +[<] 2 +L 5.818182,6.545455,0,3.272727 +L 0,3.272727,5.818182,0 + +[=] 2 +L 0,4.363636,6.545455,4.363636 +L 0,2.181818,6.545455,2.181818 + +[>] 2 +L 0,6.545455,5.818182,3.272727 +L 5.818182,3.272727,0,0 + +[?] 26 +L 0.363636,6.181818,0.727273,5.818182 +L 0.727273,5.818182,0.363636,5.454545 +L 0.363636,5.454545,0,5.818182 +L 0,5.818182,0,6.181818 +L 0,6.181818,0.363636,6.909091 +L 0.363636,6.909091,0.727273,7.272727 +L 0.727273,7.272727,1.454545,7.636364 +L 1.454545,7.636364,2.545455,7.636364 +L 2.545455,7.636364,3.636364,7.272727 +L 3.636364,7.272727,4,6.909091 +L 4,6.909091,4.363636,6.181818 +L 4.363636,6.181818,4.363636,5.454545 +L 4.363636,5.454545,4,4.727273 +L 4,4.727273,3.636364,4.363636 +L 3.636364,4.363636,2.181818,3.636364 +L 2.181818,3.636364,2.181818,2.545455 +L 2.545455,7.636364,3.272727,7.272727 +L 3.272727,7.272727,3.636364,6.909091 +L 3.636364,6.909091,4,6.181818 +L 4,6.181818,4,5.454545 +L 4,5.454545,3.636364,4.727273 +L 3.636364,4.727273,2.909091,4 +L 2.181818,0.727273,1.818182,0.363636 +L 1.818182,0.363636,2.181818,0 +L 2.181818,0,2.545455,0.363636 +L 2.545455,0.363636,2.181818,0.727273 + +[@] 48 +L 5.454545,4.727273,5.090909,5.454545 +L 5.090909,5.454545,4.363636,5.818182 +L 4.363636,5.818182,3.272727,5.818182 +L 3.272727,5.818182,2.545455,5.454545 +L 2.545455,5.454545,2.181818,5.090909 +L 2.181818,5.090909,1.818182,4 +L 1.818182,4,1.818182,2.909091 +L 1.818182,2.909091,2.181818,2.181818 +L 2.181818,2.181818,2.909091,1.818182 +L 2.909091,1.818182,4,1.818182 +L 4,1.818182,4.727273,2.181818 +L 4.727273,2.181818,5.090909,2.909091 +L 3.272727,5.818182,2.545455,5.090909 +L 2.545455,5.090909,2.181818,4 +L 2.181818,4,2.181818,2.909091 +L 2.181818,2.909091,2.545455,2.181818 +L 2.545455,2.181818,2.909091,1.818182 +L 5.454545,5.818182,5.090909,2.909091 +L 5.090909,2.909091,5.090909,2.181818 +L 5.090909,2.181818,5.818182,1.818182 +L 5.818182,1.818182,6.545455,1.818182 +L 6.545455,1.818182,7.272727,2.545455 +L 7.272727,2.545455,7.636364,3.636364 +L 7.636364,3.636364,7.636364,4.363636 +L 7.636364,4.363636,7.272727,5.454545 +L 7.272727,5.454545,6.909091,6.181818 +L 6.909091,6.181818,6.181818,6.909091 +L 6.181818,6.909091,5.454545,7.272727 +L 5.454545,7.272727,4.363636,7.636364 +L 4.363636,7.636364,3.272727,7.636364 +L 3.272727,7.636364,2.181818,7.272727 +L 2.181818,7.272727,1.454545,6.909091 +L 1.454545,6.909091,0.727273,6.181818 +L 0.727273,6.181818,0.363636,5.454545 +L 0.363636,5.454545,0,4.363636 +L 0,4.363636,0,3.272727 +L 0,3.272727,0.363636,2.181818 +L 0.363636,2.181818,0.727273,1.454545 +L 0.727273,1.454545,1.454545,0.727273 +L 1.454545,0.727273,2.181818,0.363636 +L 2.181818,0.363636,3.272727,0 +L 3.272727,0,4.363636,0 +L 4.363636,0,5.454545,0.363636 +L 5.454545,0.363636,6.181818,0.727273 +L 6.181818,0.727273,6.545455,1.090909 +L 5.818182,5.818182,5.454545,2.909091 +L 5.454545,2.909091,5.454545,2.181818 +L 5.454545,2.181818,5.818182,1.818182 + +[A] 6 +L 3.272727,7.636364,0.727273,0 +L 3.272727,7.636364,5.818182,0 +L 3.272727,6.545455,5.454545,0 +L 1.454545,2.181818,4.727273,2.181818 +L 0,0,2.181818,0 +L 4.363636,0,6.545455,0 + +[B] 33 +L 1.090909,7.636364,1.090909,0 +L 1.454545,7.636364,1.454545,0 +L 0,7.636364,4.363636,7.636364 +L 4.363636,7.636364,5.454545,7.272727 +L 5.454545,7.272727,5.818182,6.909091 +L 5.818182,6.909091,6.181818,6.181818 +L 6.181818,6.181818,6.181818,5.454545 +L 6.181818,5.454545,5.818182,4.727273 +L 5.818182,4.727273,5.454545,4.363636 +L 5.454545,4.363636,4.363636,4 +L 4.363636,7.636364,5.090909,7.272727 +L 5.090909,7.272727,5.454545,6.909091 +L 5.454545,6.909091,5.818182,6.181818 +L 5.818182,6.181818,5.818182,5.454545 +L 5.818182,5.454545,5.454545,4.727273 +L 5.454545,4.727273,5.090909,4.363636 +L 5.090909,4.363636,4.363636,4 +L 1.454545,4,4.363636,4 +L 4.363636,4,5.454545,3.636364 +L 5.454545,3.636364,5.818182,3.272727 +L 5.818182,3.272727,6.181818,2.545455 +L 6.181818,2.545455,6.181818,1.454545 +L 6.181818,1.454545,5.818182,0.727273 +L 5.818182,0.727273,5.454545,0.363636 +L 5.454545,0.363636,4.363636,0 +L 4.363636,0,0,0 +L 4.363636,4,5.090909,3.636364 +L 5.090909,3.636364,5.454545,3.272727 +L 5.454545,3.272727,5.818182,2.545455 +L 5.818182,2.545455,5.818182,1.454545 +L 5.818182,1.454545,5.454545,0.727273 +L 5.454545,0.727273,5.090909,0.363636 +L 5.090909,0.363636,4.363636,0 + +[C] 6 +L 1.090909,7.636364,1.090909,0 +L 1.454545,7.636364,1.454545,0 +L 0,7.636364,5.454545,7.636364 +L 5.454545,7.636364,5.454545,5.454545 +L 5.454545,5.454545,5.090909,7.636364 +L 0,0,2.545455,0 + +[D] 5 +L 2.909091,7.636364,0,0 +L 2.909091,7.636364,5.818182,0 +L 2.909091,6.545455,5.454545,0 +L 0.363636,0.363636,5.454545,0.363636 +L 0,0,5.818182,0 + +[E] 10 +L 1.090909,7.636364,1.090909,0 +L 1.454545,7.636364,1.454545,0 +L 3.636364,5.454545,3.636364,2.545455 +L 0,7.636364,5.818182,7.636364 +L 5.818182,7.636364,5.818182,5.454545 +L 5.818182,5.454545,5.454545,7.636364 +L 1.454545,4,3.636364,4 +L 0,0,5.818182,0 +L 5.818182,0,5.818182,2.181818 +L 5.818182,2.181818,5.454545,0 + +[F] 8 +L 4.727273,7.636364,0,0 +L 5.090909,7.636364,0.363636,0 +L 0.363636,7.636364,0,5.454545 +L 0,5.454545,0,7.636364 +L 0,7.636364,5.090909,7.636364 +L 0,0,5.090909,0 +L 5.090909,0,5.090909,2.181818 +L 5.090909,2.181818,4.727273,0 + +[G] 9 +L 1.090909,7.636364,1.090909,0 +L 1.454545,7.636364,1.454545,0 +L 5.818182,7.636364,5.818182,0 +L 6.181818,7.636364,6.181818,0 +L 0,7.636364,2.545455,7.636364 +L 4.727273,7.636364,7.272727,7.636364 +L 1.454545,4,5.818182,4 +L 0,0,2.545455,0 +L 4.727273,0,7.272727,0 + +[H] 42 +L 2.545455,7.636364,1.454545,7.272727 +L 1.454545,7.272727,0.727273,6.545455 +L 0.727273,6.545455,0.363636,5.818182 +L 0.363636,5.818182,0,4.363636 +L 0,4.363636,0,3.272727 +L 0,3.272727,0.363636,1.818182 +L 0.363636,1.818182,0.727273,1.090909 +L 0.727273,1.090909,1.454545,0.363636 +L 1.454545,0.363636,2.545455,0 +L 2.545455,0,3.272727,0 +L 3.272727,0,4.363636,0.363636 +L 4.363636,0.363636,5.090909,1.090909 +L 5.090909,1.090909,5.454545,1.818182 +L 5.454545,1.818182,5.818182,3.272727 +L 5.818182,3.272727,5.818182,4.363636 +L 5.818182,4.363636,5.454545,5.818182 +L 5.454545,5.818182,5.090909,6.545455 +L 5.090909,6.545455,4.363636,7.272727 +L 4.363636,7.272727,3.272727,7.636364 +L 3.272727,7.636364,2.545455,7.636364 +L 2.545455,7.636364,1.818182,7.272727 +L 1.818182,7.272727,1.090909,6.545455 +L 1.090909,6.545455,0.727273,5.818182 +L 0.727273,5.818182,0.363636,4.363636 +L 0.363636,4.363636,0.363636,3.272727 +L 0.363636,3.272727,0.727273,1.818182 +L 0.727273,1.818182,1.090909,1.090909 +L 1.090909,1.090909,1.818182,0.363636 +L 1.818182,0.363636,2.545455,0 +L 3.272727,0,4,0.363636 +L 4,0.363636,4.727273,1.090909 +L 4.727273,1.090909,5.090909,1.818182 +L 5.090909,1.818182,5.454545,3.272727 +L 5.454545,3.272727,5.454545,4.363636 +L 5.454545,4.363636,5.090909,5.818182 +L 5.090909,5.818182,4.727273,6.545455 +L 4.727273,6.545455,4,7.272727 +L 4,7.272727,3.272727,7.636364 +L 1.818182,5.090909,1.818182,2.545455 +L 4,5.090909,4,2.545455 +L 1.818182,4,4,4 +L 1.818182,3.636364,4,3.636364 + +[I] 4 +L 1.090909,7.636364,1.090909,0 +L 1.454545,7.636364,1.454545,0 +L 0,7.636364,2.545455,7.636364 +L 0,0,2.545455,0 + +[J] 9 +L 1.090909,7.636364,1.090909,0 +L 1.454545,7.636364,1.454545,0 +L 6.181818,7.636364,1.454545,2.909091 +L 3.272727,4.363636,6.181818,0 +L 2.909091,4.363636,5.818182,0 +L 0,7.636364,2.545455,7.636364 +L 4.727273,7.636364,6.909091,7.636364 +L 0,0,2.545455,0 +L 4.727273,0,6.909091,0 + +[K] 5 +L 3.272727,7.636364,0.727273,0 +L 3.272727,7.636364,5.818182,0 +L 3.272727,6.545455,5.454545,0 +L 0,0,2.181818,0 +L 4.363636,0,6.545455,0 + +[L] 10 +L 1.090909,7.636364,1.090909,0 +L 1.454545,7.636364,3.636364,1.090909 +L 1.090909,7.636364,3.636364,0 +L 6.181818,7.636364,3.636364,0 +L 6.181818,7.636364,6.181818,0 +L 6.545455,7.636364,6.545455,0 +L 0,7.636364,1.454545,7.636364 +L 6.181818,7.636364,7.636364,7.636364 +L 0,0,2.181818,0 +L 5.090909,0,7.636364,0 + +[M] 7 +L 1.090909,7.636364,1.090909,0 +L 1.454545,7.636364,5.818182,0.727273 +L 1.454545,6.909091,5.818182,0 +L 5.818182,7.636364,5.818182,0 +L 0,7.636364,1.454545,7.636364 +L 4.727273,7.636364,6.909091,7.636364 +L 0,0,2.181818,0 + +[N] 12 +L 0.363636,8,0,6.181818 +L 5.818182,8,5.454545,6.181818 +L 1.818182,4.727273,1.454545,2.909091 +L 4.363636,4.727273,4,2.909091 +L 0.363636,1.454545,0,-0.363636 +L 5.818182,1.454545,5.454545,-0.363636 +L 0.363636,7.272727,5.454545,7.272727 +L 0.363636,6.909091,5.454545,6.909091 +L 1.818182,4,4,4 +L 1.818182,3.636364,4,3.636364 +L 0.363636,0.727273,5.454545,0.727273 +L 0.363636,0.363636,5.454545,0.363636 + +[O] 38 +L 2.545455,7.636364,1.454545,7.272727 +L 1.454545,7.272727,0.727273,6.545455 +L 0.727273,6.545455,0.363636,5.818182 +L 0.363636,5.818182,0,4.363636 +L 0,4.363636,0,3.272727 +L 0,3.272727,0.363636,1.818182 +L 0.363636,1.818182,0.727273,1.090909 +L 0.727273,1.090909,1.454545,0.363636 +L 1.454545,0.363636,2.545455,0 +L 2.545455,0,3.272727,0 +L 3.272727,0,4.363636,0.363636 +L 4.363636,0.363636,5.090909,1.090909 +L 5.090909,1.090909,5.454545,1.818182 +L 5.454545,1.818182,5.818182,3.272727 +L 5.818182,3.272727,5.818182,4.363636 +L 5.818182,4.363636,5.454545,5.818182 +L 5.454545,5.818182,5.090909,6.545455 +L 5.090909,6.545455,4.363636,7.272727 +L 4.363636,7.272727,3.272727,7.636364 +L 3.272727,7.636364,2.545455,7.636364 +L 2.545455,7.636364,1.818182,7.272727 +L 1.818182,7.272727,1.090909,6.545455 +L 1.090909,6.545455,0.727273,5.818182 +L 0.727273,5.818182,0.363636,4.363636 +L 0.363636,4.363636,0.363636,3.272727 +L 0.363636,3.272727,0.727273,1.818182 +L 0.727273,1.818182,1.090909,1.090909 +L 1.090909,1.090909,1.818182,0.363636 +L 1.818182,0.363636,2.545455,0 +L 3.272727,0,4,0.363636 +L 4,0.363636,4.727273,1.090909 +L 4.727273,1.090909,5.090909,1.818182 +L 5.090909,1.818182,5.454545,3.272727 +L 5.454545,3.272727,5.454545,4.363636 +L 5.454545,4.363636,5.090909,5.818182 +L 5.090909,5.818182,4.727273,6.545455 +L 4.727273,6.545455,4,7.272727 +L 4,7.272727,3.272727,7.636364 + +[P] 7 +L 1.090909,7.636364,1.090909,0 +L 1.454545,7.636364,1.454545,0 +L 5.818182,7.636364,5.818182,0 +L 6.181818,7.636364,6.181818,0 +L 0,7.636364,7.272727,7.636364 +L 0,0,2.545455,0 +L 4.727273,0,7.272727,0 + +[Q] 19 +L 1.090909,7.636364,1.090909,0 +L 1.454545,7.636364,1.454545,0 +L 0,7.636364,4.363636,7.636364 +L 4.363636,7.636364,5.454545,7.272727 +L 5.454545,7.272727,5.818182,6.909091 +L 5.818182,6.909091,6.181818,6.181818 +L 6.181818,6.181818,6.181818,5.090909 +L 6.181818,5.090909,5.818182,4.363636 +L 5.818182,4.363636,5.454545,4 +L 5.454545,4,4.363636,3.636364 +L 4.363636,3.636364,1.454545,3.636364 +L 4.363636,7.636364,5.090909,7.272727 +L 5.090909,7.272727,5.454545,6.909091 +L 5.454545,6.909091,5.818182,6.181818 +L 5.818182,6.181818,5.818182,5.090909 +L 5.818182,5.090909,5.454545,4.363636 +L 5.454545,4.363636,5.090909,4 +L 5.090909,4,4.363636,3.636364 +L 0,0,2.545455,0 + +[R] 10 +L 0.363636,7.636364,2.909091,4 +L 2.909091,4,0,0 +L 0,7.636364,2.545455,4 +L 0,7.636364,5.454545,7.636364 +L 5.454545,7.636364,5.818182,5.454545 +L 5.818182,5.454545,5.090909,7.636364 +L 0.363636,0.363636,5.090909,0.363636 +L 0,0,5.454545,0 +L 5.454545,0,5.818182,2.181818 +L 5.818182,2.181818,5.090909,0 + +[S] 8 +L 2.545455,7.636364,2.545455,0 +L 2.909091,7.636364,2.909091,0 +L 0.363636,7.636364,0,5.454545 +L 0,5.454545,0,7.636364 +L 0,7.636364,5.454545,7.636364 +L 5.454545,7.636364,5.454545,5.454545 +L 5.454545,5.454545,5.090909,7.636364 +L 1.454545,0,4,0 + +[T] 23 +L 0,5.818182,0,6.545455 +L 0,6.545455,0.363636,7.272727 +L 0.363636,7.272727,0.727273,7.636364 +L 0.727273,7.636364,1.454545,7.636364 +L 1.454545,7.636364,1.818182,7.272727 +L 1.818182,7.272727,2.181818,6.545455 +L 2.181818,6.545455,2.545455,5.090909 +L 2.545455,5.090909,2.545455,0 +L 0,6.545455,0.727273,7.272727 +L 0.727273,7.272727,1.454545,7.272727 +L 1.454545,7.272727,2.181818,6.545455 +L 5.454545,5.818182,5.454545,6.545455 +L 5.454545,6.545455,5.090909,7.272727 +L 5.090909,7.272727,4.727273,7.636364 +L 4.727273,7.636364,4,7.636364 +L 4,7.636364,3.636364,7.272727 +L 3.636364,7.272727,3.272727,6.545455 +L 3.272727,6.545455,2.909091,5.090909 +L 2.909091,5.090909,2.909091,0 +L 5.454545,6.545455,4.727273,7.272727 +L 4.727273,7.272727,4,7.272727 +L 4,7.272727,3.272727,6.545455 +L 1.454545,0,4,0 + +[U] 34 +L 2.545455,7.636364,2.545455,0 +L 2.909091,7.636364,2.909091,0 +L 1.818182,5.818182,0.727273,5.454545 +L 0.727273,5.454545,0.363636,5.090909 +L 0.363636,5.090909,0,4.363636 +L 0,4.363636,0,3.272727 +L 0,3.272727,0.363636,2.545455 +L 0.363636,2.545455,0.727273,2.181818 +L 0.727273,2.181818,1.818182,1.818182 +L 1.818182,1.818182,3.636364,1.818182 +L 3.636364,1.818182,4.727273,2.181818 +L 4.727273,2.181818,5.090909,2.545455 +L 5.090909,2.545455,5.454545,3.272727 +L 5.454545,3.272727,5.454545,4.363636 +L 5.454545,4.363636,5.090909,5.090909 +L 5.090909,5.090909,4.727273,5.454545 +L 4.727273,5.454545,3.636364,5.818182 +L 3.636364,5.818182,1.818182,5.818182 +L 1.818182,5.818182,1.090909,5.454545 +L 1.090909,5.454545,0.727273,5.090909 +L 0.727273,5.090909,0.363636,4.363636 +L 0.363636,4.363636,0.363636,3.272727 +L 0.363636,3.272727,0.727273,2.545455 +L 0.727273,2.545455,1.090909,2.181818 +L 1.090909,2.181818,1.818182,1.818182 +L 3.636364,1.818182,4.363636,2.181818 +L 4.363636,2.181818,4.727273,2.545455 +L 4.727273,2.545455,5.090909,3.272727 +L 5.090909,3.272727,5.090909,4.363636 +L 5.090909,4.363636,4.727273,5.090909 +L 4.727273,5.090909,4.363636,5.454545 +L 4.363636,5.454545,3.636364,5.818182 +L 1.454545,7.636364,4,7.636364 +L 1.454545,0,4,0 + +[V] 7 +L 0.727273,7.636364,5.454545,0 +L 1.090909,7.636364,5.818182,0 +L 5.818182,7.636364,0.727273,0 +L 0,7.636364,2.181818,7.636364 +L 4.363636,7.636364,6.545455,7.636364 +L 0,0,2.181818,0 +L 4.363636,0,6.545455,0 + +[W] 27 +L 3.272727,7.636364,3.272727,0 +L 3.636364,7.636364,3.636364,0 +L 0,5.090909,0.363636,5.454545 +L 0.363636,5.454545,1.090909,5.090909 +L 1.090909,5.090909,1.454545,3.636364 +L 1.454545,3.636364,1.818182,2.909091 +L 1.818182,2.909091,2.181818,2.545455 +L 2.181818,2.545455,2.909091,2.181818 +L 0.363636,5.454545,0.727273,5.090909 +L 0.727273,5.090909,1.090909,3.636364 +L 1.090909,3.636364,1.454545,2.909091 +L 1.454545,2.909091,1.818182,2.545455 +L 1.818182,2.545455,2.909091,2.181818 +L 2.909091,2.181818,4,2.181818 +L 4,2.181818,5.090909,2.545455 +L 5.090909,2.545455,5.454545,2.909091 +L 5.454545,2.909091,5.818182,3.636364 +L 5.818182,3.636364,6.181818,5.090909 +L 6.181818,5.090909,6.545455,5.454545 +L 4,2.181818,4.727273,2.545455 +L 4.727273,2.545455,5.090909,2.909091 +L 5.090909,2.909091,5.454545,3.636364 +L 5.454545,3.636364,5.818182,5.090909 +L 5.818182,5.090909,6.545455,5.454545 +L 6.545455,5.454545,6.909091,5.090909 +L 2.181818,7.636364,4.727273,7.636364 +L 2.181818,0,4.727273,0 + +[X] 33 +L 0,1.090909,0.363636,0 +L 0.363636,0,1.818182,0 +L 1.818182,0,1.090909,1.454545 +L 1.090909,1.454545,0.363636,2.909091 +L 0.363636,2.909091,0,4 +L 0,4,0,5.454545 +L 0,5.454545,0.363636,6.545455 +L 0.363636,6.545455,1.090909,7.272727 +L 1.090909,7.272727,2.181818,7.636364 +L 2.181818,7.636364,3.636364,7.636364 +L 3.636364,7.636364,4.727273,7.272727 +L 4.727273,7.272727,5.454545,6.545455 +L 5.454545,6.545455,5.818182,5.454545 +L 5.818182,5.454545,5.818182,4 +L 5.818182,4,5.454545,2.909091 +L 5.454545,2.909091,4.727273,1.454545 +L 4.727273,1.454545,4,0 +L 4,0,5.454545,0 +L 5.454545,0,5.818182,1.090909 +L 1.090909,1.454545,0.727273,2.545455 +L 0.727273,2.545455,0.363636,4 +L 0.363636,4,0.363636,5.454545 +L 0.363636,5.454545,0.727273,6.545455 +L 0.727273,6.545455,1.454545,7.272727 +L 1.454545,7.272727,2.181818,7.636364 +L 3.636364,7.636364,4.363636,7.272727 +L 4.363636,7.272727,5.090909,6.545455 +L 5.090909,6.545455,5.454545,5.454545 +L 5.454545,5.454545,5.454545,4 +L 5.454545,4,5.090909,2.545455 +L 5.090909,2.545455,4.727273,1.454545 +L 0.363636,0.363636,1.454545,0.363636 +L 4.363636,0.363636,5.454545,0.363636 + +[Y] 0 + +[Z] 0 + +[[] 4 +L 0,9.090909,0,-2.545455 +L 0.363636,9.090909,0.363636,-2.545455 +L 0,9.090909,2.545455,9.090909 +L 0,-2.545455,2.545455,-2.545455 + +[\] 1 +L 0,7.636364,5.090909,-1.090909 + +[]] 4 +L 2.181818,9.090909,2.181818,-2.545455 +L 2.545455,9.090909,2.545455,-2.545455 +L 0,9.090909,2.545455,9.090909 +L 0,-2.545455,2.545455,-2.545455 + +[^] 5 +L 1.090909,5.454545,1.818182,6.545455 +L 1.818182,6.545455,2.545455,5.454545 +L 0,4.363636,1.818182,6.181818 +L 1.818182,6.181818,3.636364,4.363636 +L 1.818182,6.181818,1.818182,0 + +[_] 1 +L 0,-0.727273,5.818182,-0.727273 + +[`] 6 +L 0.727273,7.636364,0.363636,7.272727 +L 0.363636,7.272727,0,6.545455 +L 0,6.545455,0,5.818182 +L 0,5.818182,0.363636,5.454545 +L 0.363636,5.454545,0.727273,5.818182 +L 0.727273,5.818182,0.363636,6.181818 + +[a] 32 +L 2.545455,5.090909,1.454545,4.727273 +L 1.454545,4.727273,0.727273,4 +L 0.727273,4,0.363636,3.272727 +L 0.363636,3.272727,0,2.181818 +L 0,2.181818,0,1.090909 +L 0,1.090909,0.363636,0.363636 +L 0.363636,0.363636,1.454545,0 +L 1.454545,0,2.181818,0 +L 2.181818,0,2.909091,0.363636 +L 2.909091,0.363636,4,1.454545 +L 4,1.454545,4.727273,2.545455 +L 4.727273,2.545455,5.454545,4 +L 5.454545,4,5.818182,5.090909 +L 2.545455,5.090909,1.818182,4.727273 +L 1.818182,4.727273,1.090909,4 +L 1.090909,4,0.727273,3.272727 +L 0.727273,3.272727,0.363636,2.181818 +L 0.363636,2.181818,0.363636,1.090909 +L 0.363636,1.090909,0.727273,0.363636 +L 0.727273,0.363636,1.454545,0 +L 2.545455,5.090909,3.272727,5.090909 +L 3.272727,5.090909,4,4.727273 +L 4,4.727273,4.363636,4 +L 4.363636,4,5.090909,1.090909 +L 5.090909,1.090909,5.454545,0.363636 +L 5.454545,0.363636,5.818182,0 +L 3.272727,5.090909,3.636364,4.727273 +L 3.636364,4.727273,4,4 +L 4,4,4.727273,1.090909 +L 4.727273,1.090909,5.090909,0.363636 +L 5.090909,0.363636,5.818182,0 +L 5.818182,0,6.181818,0 + +[b] 45 +L 4,7.636364,2.909091,7.272727 +L 2.909091,7.272727,2.181818,6.545455 +L 2.181818,6.545455,1.454545,5.090909 +L 1.454545,5.090909,1.090909,4 +L 1.090909,4,0.727273,2.545455 +L 0.727273,2.545455,0.363636,0.363636 +L 0.363636,0.363636,0,-2.545455 +L 4,7.636364,3.272727,7.272727 +L 3.272727,7.272727,2.545455,6.545455 +L 2.545455,6.545455,1.818182,5.090909 +L 1.818182,5.090909,1.454545,4 +L 1.454545,4,1.090909,2.545455 +L 1.090909,2.545455,0.727273,0.363636 +L 0.727273,0.363636,0.363636,-2.545455 +L 4,7.636364,4.727273,7.636364 +L 4.727273,7.636364,5.454545,7.272727 +L 5.454545,7.272727,5.818182,6.909091 +L 5.818182,6.909091,5.818182,5.818182 +L 5.818182,5.818182,5.454545,5.090909 +L 5.454545,5.090909,5.090909,4.727273 +L 5.090909,4.727273,4,4.363636 +L 4,4.363636,2.545455,4.363636 +L 4.727273,7.636364,5.454545,6.909091 +L 5.454545,6.909091,5.454545,5.818182 +L 5.454545,5.818182,5.090909,5.090909 +L 5.090909,5.090909,4.727273,4.727273 +L 4.727273,4.727273,4,4.363636 +L 2.545455,4.363636,4,4 +L 4,4,4.727273,3.272727 +L 4.727273,3.272727,5.090909,2.545455 +L 5.090909,2.545455,5.090909,1.454545 +L 5.090909,1.454545,4.727273,0.727273 +L 4.727273,0.727273,4.363636,0.363636 +L 4.363636,0.363636,3.272727,0 +L 3.272727,0,2.545455,0 +L 2.545455,0,1.818182,0.363636 +L 1.818182,0.363636,1.454545,0.727273 +L 1.454545,0.727273,1.090909,1.818182 +L 2.545455,4.363636,3.636364,4 +L 3.636364,4,4.363636,3.272727 +L 4.363636,3.272727,4.727273,2.545455 +L 4.727273,2.545455,4.727273,1.454545 +L 4.727273,1.454545,4.363636,0.727273 +L 4.363636,0.727273,4,0.363636 +L 4,0.363636,3.272727,0 + +[c] 20 +L 0,4,0.727273,4.727273 +L 0.727273,4.727273,1.454545,5.090909 +L 1.454545,5.090909,2.181818,5.090909 +L 2.181818,5.090909,2.909091,4.727273 +L 2.909091,4.727273,3.272727,4.363636 +L 3.272727,4.363636,3.636364,3.272727 +L 3.636364,3.272727,3.636364,1.818182 +L 3.636364,1.818182,3.272727,0.363636 +L 3.272727,0.363636,2.181818,-2.545455 +L 0.363636,4.363636,1.090909,4.727273 +L 1.090909,4.727273,2.545455,4.727273 +L 2.545455,4.727273,3.272727,4.363636 +L 6.181818,5.090909,5.818182,4 +L 5.818182,4,5.454545,3.272727 +L 5.454545,3.272727,3.636364,0.727273 +L 3.636364,0.727273,2.545455,-1.090909 +L 2.545455,-1.090909,1.818182,-2.545455 +L 5.818182,5.090909,5.454545,4 +L 5.454545,4,5.090909,3.272727 +L 5.090909,3.272727,3.636364,0.727273 + +[d] 38 +L 3.636364,4.727273,2.909091,5.090909 +L 2.909091,5.090909,2.181818,5.090909 +L 2.181818,5.090909,1.090909,4.727273 +L 1.090909,4.727273,0.363636,3.636364 +L 0.363636,3.636364,0,2.545455 +L 0,2.545455,0,1.454545 +L 0,1.454545,0.363636,0.727273 +L 0.363636,0.727273,0.727273,0.363636 +L 0.727273,0.363636,1.454545,0 +L 1.454545,0,2.181818,0 +L 2.181818,0,3.272727,0.363636 +L 3.272727,0.363636,4,1.454545 +L 4,1.454545,4.363636,2.545455 +L 4.363636,2.545455,4.363636,3.636364 +L 4.363636,3.636364,4,4.363636 +L 4,4.363636,2.545455,6.181818 +L 2.545455,6.181818,2.181818,6.909091 +L 2.181818,6.909091,2.181818,7.636364 +L 2.181818,7.636364,2.545455,8 +L 2.545455,8,3.272727,8 +L 3.272727,8,4,7.636364 +L 4,7.636364,4.727273,6.909091 +L 2.181818,5.090909,1.454545,4.727273 +L 1.454545,4.727273,0.727273,3.636364 +L 0.727273,3.636364,0.363636,2.545455 +L 0.363636,2.545455,0.363636,1.090909 +L 0.363636,1.090909,0.727273,0.363636 +L 2.181818,0,2.909091,0.363636 +L 2.909091,0.363636,3.636364,1.454545 +L 3.636364,1.454545,4,2.545455 +L 4,2.545455,4,4 +L 4,4,3.636364,4.727273 +L 3.636364,4.727273,2.909091,5.818182 +L 2.909091,5.818182,2.545455,6.545455 +L 2.545455,6.545455,2.545455,7.272727 +L 2.545455,7.272727,2.909091,7.636364 +L 2.909091,7.636364,3.636364,7.636364 +L 3.636364,7.636364,4.727273,6.909091 + +[e] 24 +L 4.363636,4,3.636364,4.727273 +L 3.636364,4.727273,2.909091,5.090909 +L 2.909091,5.090909,1.454545,5.090909 +L 1.454545,5.090909,0.727273,4.727273 +L 0.727273,4.727273,0.727273,4 +L 0.727273,4,1.454545,3.272727 +L 1.454545,3.272727,2.545455,2.909091 +L 1.454545,5.090909,1.090909,4.727273 +L 1.090909,4.727273,1.090909,4 +L 1.090909,4,1.818182,3.272727 +L 1.818182,3.272727,2.545455,2.909091 +L 2.545455,2.909091,0.727273,2.545455 +L 0.727273,2.545455,0,1.818182 +L 0,1.818182,0,1.090909 +L 0,1.090909,0.363636,0.363636 +L 0.363636,0.363636,1.454545,0 +L 1.454545,0,2.545455,0 +L 2.545455,0,3.272727,0.363636 +L 3.272727,0.363636,4,1.090909 +L 2.545455,2.909091,1.090909,2.545455 +L 1.090909,2.545455,0.363636,1.818182 +L 0.363636,1.818182,0.363636,1.090909 +L 0.363636,1.090909,0.727273,0.363636 +L 0.727273,0.363636,1.454545,0 + +[f] 27 +L 2.909091,7.636364,2.181818,7.272727 +L 2.181818,7.272727,1.818182,6.909091 +L 1.818182,6.909091,1.818182,6.545455 +L 1.818182,6.545455,2.181818,6.181818 +L 2.181818,6.181818,3.272727,5.818182 +L 3.272727,5.818182,5.090909,5.818182 +L 5.090909,5.818182,5.090909,6.181818 +L 5.090909,6.181818,4,5.818182 +L 4,5.818182,2.545455,5.090909 +L 2.545455,5.090909,1.454545,4.363636 +L 1.454545,4.363636,0.363636,3.272727 +L 0.363636,3.272727,0,2.181818 +L 0,2.181818,0,1.454545 +L 0,1.454545,0.363636,0.727273 +L 0.363636,0.727273,1.454545,0 +L 1.454545,0,2.545455,-0.727273 +L 2.545455,-0.727273,2.909091,-1.454545 +L 2.909091,-1.454545,2.909091,-2.181818 +L 2.909091,-2.181818,2.545455,-2.545455 +L 2.545455,-2.545455,1.818182,-2.545455 +L 1.818182,-2.545455,1.454545,-2.181818 +L 3.272727,5.454545,1.818182,4.363636 +L 1.818182,4.363636,0.727273,3.272727 +L 0.727273,3.272727,0.363636,2.181818 +L 0.363636,2.181818,0.363636,1.454545 +L 0.363636,1.454545,0.727273,0.727273 +L 0.727273,0.727273,1.454545,0 + +[g] 24 +L 0,3.636364,0.363636,4.363636 +L 0.363636,4.363636,1.090909,5.090909 +L 1.090909,5.090909,2.181818,5.090909 +L 2.181818,5.090909,2.545455,4.727273 +L 2.545455,4.727273,2.545455,4 +L 2.545455,4,2.181818,2.545455 +L 2.181818,2.545455,1.454545,0 +L 1.818182,5.090909,2.181818,4.727273 +L 2.181818,4.727273,2.181818,4 +L 2.181818,4,1.818182,2.545455 +L 1.818182,2.545455,1.090909,0 +L 2.181818,2.545455,2.909091,4 +L 2.909091,4,3.636364,4.727273 +L 3.636364,4.727273,4.363636,5.090909 +L 4.363636,5.090909,5.090909,5.090909 +L 5.090909,5.090909,5.818182,4.727273 +L 5.818182,4.727273,6.181818,4.363636 +L 6.181818,4.363636,6.181818,3.272727 +L 6.181818,3.272727,5.818182,1.454545 +L 5.818182,1.454545,4.727273,-2.545455 +L 5.090909,5.090909,5.818182,4.363636 +L 5.818182,4.363636,5.818182,3.272727 +L 5.818182,3.272727,5.454545,1.454545 +L 5.454545,1.454545,4.363636,-2.545455 + +[h] 38 +L 0,3.636364,0.363636,4.363636 +L 0.363636,4.363636,1.090909,5.090909 +L 1.090909,5.090909,2.181818,5.090909 +L 2.181818,5.090909,2.545455,4.727273 +L 2.545455,4.727273,2.545455,4 +L 2.545455,4,2.181818,2.181818 +L 2.181818,2.181818,2.181818,1.090909 +L 2.181818,1.090909,2.545455,0.363636 +L 2.545455,0.363636,2.909091,0 +L 1.818182,5.090909,2.181818,4.727273 +L 2.181818,4.727273,2.181818,4 +L 2.181818,4,1.818182,2.181818 +L 1.818182,2.181818,1.818182,1.090909 +L 1.818182,1.090909,2.181818,0.363636 +L 2.181818,0.363636,2.909091,0 +L 2.909091,0,3.636364,0 +L 3.636364,0,4.363636,0.363636 +L 4.363636,0.363636,5.090909,1.090909 +L 5.090909,1.090909,5.818182,2.181818 +L 5.818182,2.181818,6.181818,3.272727 +L 6.181818,3.272727,6.545455,5.090909 +L 6.545455,5.090909,6.545455,6.545455 +L 6.545455,6.545455,6.181818,7.272727 +L 6.181818,7.272727,5.454545,7.636364 +L 5.454545,7.636364,4.727273,7.636364 +L 4.727273,7.636364,4,6.909091 +L 4,6.909091,4,6.181818 +L 4,6.181818,4.363636,5.090909 +L 4.363636,5.090909,5.090909,4 +L 5.090909,4,5.818182,3.272727 +L 5.818182,3.272727,6.909091,2.545455 +L 4.363636,0.363636,5.090909,1.454545 +L 5.090909,1.454545,5.454545,2.181818 +L 5.454545,2.181818,5.818182,3.272727 +L 5.818182,3.272727,6.181818,5.090909 +L 6.181818,5.090909,6.181818,6.545455 +L 6.181818,6.545455,5.818182,7.272727 +L 5.818182,7.272727,5.454545,7.636364 + +[i] 11 +L 1.090909,5.090909,0.363636,2.545455 +L 0.363636,2.545455,0,1.090909 +L 0,1.090909,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,1.454545,0 +L 1.454545,0,2.181818,0.727273 +L 2.181818,0.727273,2.545455,1.454545 +L 1.454545,5.090909,0.727273,2.545455 +L 0.727273,2.545455,0.363636,1.090909 +L 0.363636,1.090909,0.363636,0.363636 +L 0.363636,0.363636,0.727273,0 + +[j] 19 +L 1.454545,5.090909,0,0 +L 1.818182,5.090909,0.363636,0 +L 5.090909,5.090909,5.454545,4.727273 +L 5.454545,4.727273,5.818182,4.727273 +L 5.818182,4.727273,5.454545,5.090909 +L 5.454545,5.090909,4.727273,5.090909 +L 4.727273,5.090909,4,4.727273 +L 4,4.727273,2.545455,3.272727 +L 2.545455,3.272727,1.818182,2.909091 +L 1.818182,2.909091,1.090909,2.909091 +L 1.818182,2.909091,2.545455,2.545455 +L 2.545455,2.545455,3.272727,0.363636 +L 3.272727,0.363636,3.636364,0 +L 1.818182,2.909091,2.181818,2.545455 +L 2.181818,2.545455,2.909091,0.363636 +L 2.909091,0.363636,3.272727,0 +L 3.272727,0,4,0 +L 4,0,4.727273,0.363636 +L 4.727273,0.363636,5.454545,1.454545 + +[k] 15 +L 0.363636,7.636364,1.090909,7.636364 +L 1.090909,7.636364,1.818182,7.272727 +L 1.818182,7.272727,2.181818,6.909091 +L 2.181818,6.909091,2.545455,6.181818 +L 2.545455,6.181818,4.727273,1.090909 +L 4.727273,1.090909,5.090909,0.363636 +L 5.090909,0.363636,5.454545,0 +L 1.090909,7.636364,1.818182,6.909091 +L 1.818182,6.909091,2.181818,6.181818 +L 2.181818,6.181818,4.363636,1.090909 +L 4.363636,1.090909,4.727273,0.363636 +L 4.727273,0.363636,5.454545,0 +L 5.454545,0,5.818182,0 +L 2.909091,5.090909,0,0 +L 2.909091,5.090909,0.363636,0 + +[l] 18 +L 2.181818,5.090909,0,-2.545455 +L 2.545455,5.090909,0.363636,-2.545455 +L 2.181818,4,1.818182,1.818182 +L 1.818182,1.818182,1.818182,0.727273 +L 1.818182,0.727273,2.545455,0 +L 2.545455,0,3.272727,0 +L 3.272727,0,4,0.363636 +L 4,0.363636,4.727273,1.090909 +L 4.727273,1.090909,5.454545,2.181818 +L 6.181818,5.090909,5.090909,1.090909 +L 5.090909,1.090909,5.090909,0.363636 +L 5.090909,0.363636,5.454545,0 +L 5.454545,0,6.545455,0 +L 6.545455,0,7.272727,0.727273 +L 7.272727,0.727273,7.636364,1.454545 +L 6.545455,5.090909,5.454545,1.090909 +L 5.454545,1.090909,5.454545,0.363636 +L 5.454545,0.363636,5.818182,0 + +[m] 14 +L 1.090909,5.090909,0.363636,0 +L 1.454545,5.090909,1.090909,2.909091 +L 1.090909,2.909091,0.727273,1.090909 +L 0.727273,1.090909,0.363636,0 +L 5.090909,5.090909,4.727273,3.636364 +L 4.727273,3.636364,4,2.181818 +L 5.454545,5.090909,5.090909,4 +L 5.090909,4,4.727273,3.272727 +L 4.727273,3.272727,4,2.181818 +L 4,2.181818,3.272727,1.454545 +L 3.272727,1.454545,2.181818,0.727273 +L 2.181818,0.727273,1.454545,0.363636 +L 1.454545,0.363636,0.363636,0 +L 0,5.090909,1.454545,5.090909 + +[n] 35 +L 2.909091,7.636364,2.181818,7.272727 +L 2.181818,7.272727,1.818182,6.909091 +L 1.818182,6.909091,1.818182,6.545455 +L 1.818182,6.545455,2.181818,6.181818 +L 2.181818,6.181818,3.272727,5.818182 +L 3.272727,5.818182,4.363636,5.818182 +L 3.272727,5.818182,1.818182,5.454545 +L 1.818182,5.454545,1.090909,5.090909 +L 1.090909,5.090909,0.727273,4.363636 +L 0.727273,4.363636,0.727273,3.636364 +L 0.727273,3.636364,1.454545,2.909091 +L 1.454545,2.909091,2.545455,2.545455 +L 2.545455,2.545455,3.636364,2.545455 +L 3.272727,5.818182,2.181818,5.454545 +L 2.181818,5.454545,1.454545,5.090909 +L 1.454545,5.090909,1.090909,4.363636 +L 1.090909,4.363636,1.090909,3.636364 +L 1.090909,3.636364,1.818182,2.909091 +L 1.818182,2.909091,2.545455,2.545455 +L 2.545455,2.545455,1.090909,2.181818 +L 1.090909,2.181818,0.363636,1.818182 +L 0.363636,1.818182,0,1.090909 +L 0,1.090909,0,0.363636 +L 0,0.363636,0.727273,-0.363636 +L 0.727273,-0.363636,2.545455,-1.090909 +L 2.545455,-1.090909,2.909091,-1.454545 +L 2.909091,-1.454545,2.909091,-2.181818 +L 2.909091,-2.181818,2.181818,-2.545455 +L 2.181818,-2.545455,1.454545,-2.545455 +L 2.545455,2.545455,1.454545,2.181818 +L 1.454545,2.181818,0.727273,1.818182 +L 0.727273,1.818182,0.363636,1.090909 +L 0.363636,1.090909,0.363636,0.363636 +L 0.363636,0.363636,1.090909,-0.363636 +L 1.090909,-0.363636,2.545455,-1.090909 + +[o] 26 +L 2.181818,5.090909,1.090909,4.727273 +L 1.090909,4.727273,0.363636,3.636364 +L 0.363636,3.636364,0,2.545455 +L 0,2.545455,0,1.454545 +L 0,1.454545,0.363636,0.727273 +L 0.363636,0.727273,0.727273,0.363636 +L 0.727273,0.363636,1.454545,0 +L 1.454545,0,2.181818,0 +L 2.181818,0,3.272727,0.363636 +L 3.272727,0.363636,4,1.454545 +L 4,1.454545,4.363636,2.545455 +L 4.363636,2.545455,4.363636,3.636364 +L 4.363636,3.636364,4,4.363636 +L 4,4.363636,3.636364,4.727273 +L 3.636364,4.727273,2.909091,5.090909 +L 2.909091,5.090909,2.181818,5.090909 +L 2.181818,5.090909,1.454545,4.727273 +L 1.454545,4.727273,0.727273,3.636364 +L 0.727273,3.636364,0.363636,2.545455 +L 0.363636,2.545455,0.363636,1.090909 +L 0.363636,1.090909,0.727273,0.363636 +L 2.181818,0,2.909091,0.363636 +L 2.909091,0.363636,3.636364,1.454545 +L 3.636364,1.454545,4,2.545455 +L 4,2.545455,4,4 +L 4,4,3.636364,4.727273 + +[p] 10 +L 2.545455,4.727273,1.090909,0 +L 2.545455,4.727273,1.454545,0 +L 4.727273,4.727273,4.727273,0 +L 4.727273,4.727273,5.090909,0 +L 0,4,0.727273,4.727273 +L 0.727273,4.727273,1.818182,5.090909 +L 1.818182,5.090909,6.545455,5.090909 +L 0,4,0.727273,4.363636 +L 0.727273,4.363636,1.818182,4.727273 +L 1.818182,4.727273,6.545455,4.727273 + +[q] 25 +L 1.454545,1.818182,1.818182,0.727273 +L 1.818182,0.727273,2.181818,0.363636 +L 2.181818,0.363636,2.909091,0 +L 2.909091,0,3.636364,0 +L 3.636364,0,4.727273,0.363636 +L 4.727273,0.363636,5.454545,1.454545 +L 5.454545,1.454545,5.818182,2.545455 +L 5.818182,2.545455,5.818182,3.636364 +L 5.818182,3.636364,5.454545,4.363636 +L 5.454545,4.363636,5.090909,4.727273 +L 5.090909,4.727273,4.363636,5.090909 +L 4.363636,5.090909,3.636364,5.090909 +L 3.636364,5.090909,2.545455,4.727273 +L 2.545455,4.727273,1.818182,3.636364 +L 1.818182,3.636364,1.454545,2.545455 +L 1.454545,2.545455,0,-2.545455 +L 3.636364,0,4.363636,0.363636 +L 4.363636,0.363636,5.090909,1.454545 +L 5.090909,1.454545,5.454545,2.545455 +L 5.454545,2.545455,5.454545,4 +L 5.454545,4,5.090909,4.727273 +L 3.636364,5.090909,2.909091,4.727273 +L 2.909091,4.727273,2.181818,3.636364 +L 2.181818,3.636364,1.818182,2.545455 +L 1.818182,2.545455,0.363636,-2.545455 + +[r] 27 +L 5.818182,5.090909,2.181818,5.090909 +L 2.181818,5.090909,1.090909,4.727273 +L 1.090909,4.727273,0.363636,3.636364 +L 0.363636,3.636364,0,2.545455 +L 0,2.545455,0,1.454545 +L 0,1.454545,0.363636,0.727273 +L 0.363636,0.727273,0.727273,0.363636 +L 0.727273,0.363636,1.454545,0 +L 1.454545,0,2.181818,0 +L 2.181818,0,3.272727,0.363636 +L 3.272727,0.363636,4,1.454545 +L 4,1.454545,4.363636,2.545455 +L 4.363636,2.545455,4.363636,3.636364 +L 4.363636,3.636364,4,4.363636 +L 4,4.363636,3.636364,4.727273 +L 3.636364,4.727273,2.909091,5.090909 +L 2.181818,5.090909,1.454545,4.727273 +L 1.454545,4.727273,0.727273,3.636364 +L 0.727273,3.636364,0.363636,2.545455 +L 0.363636,2.545455,0.363636,1.090909 +L 0.363636,1.090909,0.727273,0.363636 +L 2.181818,0,2.909091,0.363636 +L 2.909091,0.363636,3.636364,1.454545 +L 3.636364,1.454545,4,2.545455 +L 4,2.545455,4,4 +L 4,4,3.636364,4.727273 +L 3.636364,4.727273,5.818182,4.727273 + +[s] 8 +L 3.272727,4.727273,2.181818,0 +L 3.272727,4.727273,2.545455,0 +L 0,4,0.727273,4.727273 +L 0.727273,4.727273,1.818182,5.090909 +L 1.818182,5.090909,5.818182,5.090909 +L 0,4,0.727273,4.363636 +L 0.727273,4.363636,1.818182,4.727273 +L 1.818182,4.727273,5.818182,4.727273 + +[t] 25 +L 0,3.636364,0.363636,4.363636 +L 0.363636,4.363636,1.090909,5.090909 +L 1.090909,5.090909,2.181818,5.090909 +L 2.181818,5.090909,2.545455,4.727273 +L 2.545455,4.727273,2.545455,4 +L 2.545455,4,1.818182,1.818182 +L 1.818182,1.818182,1.818182,0.727273 +L 1.818182,0.727273,2.545455,0 +L 1.818182,5.090909,2.181818,4.727273 +L 2.181818,4.727273,2.181818,4 +L 2.181818,4,1.454545,1.818182 +L 1.454545,1.818182,1.454545,0.727273 +L 1.454545,0.727273,1.818182,0.363636 +L 1.818182,0.363636,2.545455,0 +L 2.545455,0,2.909091,0 +L 2.909091,0,4,0.363636 +L 4,0.363636,4.727273,1.090909 +L 4.727273,1.090909,5.454545,2.181818 +L 5.454545,2.181818,5.818182,3.272727 +L 5.818182,3.272727,5.818182,4.363636 +L 5.818182,4.363636,5.454545,5.090909 +L 5.454545,5.090909,5.090909,4.727273 +L 5.090909,4.727273,5.454545,4.363636 +L 5.454545,4.363636,5.818182,3.272727 +L 5.454545,2.181818,5.818182,4.363636 + +[u] 31 +L 1.818182,4.727273,1.090909,4.363636 +L 1.090909,4.363636,0.363636,3.636364 +L 0.363636,3.636364,0,2.545455 +L 0,2.545455,0,1.454545 +L 0,1.454545,0.363636,0.727273 +L 0.363636,0.727273,0.727273,0.363636 +L 0.727273,0.363636,1.454545,0 +L 1.454545,0,2.545455,0 +L 2.545455,0,3.636364,0.363636 +L 3.636364,0.363636,4.727273,1.090909 +L 4.727273,1.090909,5.454545,2.181818 +L 5.454545,2.181818,5.818182,3.272727 +L 5.818182,3.272727,5.818182,4.363636 +L 5.818182,4.363636,5.090909,5.090909 +L 5.090909,5.090909,4.363636,5.090909 +L 4.363636,5.090909,3.636364,4.363636 +L 3.636364,4.363636,2.909091,2.909091 +L 2.909091,2.909091,2.181818,1.090909 +L 2.181818,1.090909,1.090909,-2.545455 +L 0,1.454545,0.727273,0.727273 +L 0.727273,0.727273,1.454545,0.363636 +L 1.454545,0.363636,2.545455,0.363636 +L 2.545455,0.363636,3.636364,0.727273 +L 3.636364,0.727273,4.727273,1.454545 +L 4.727273,1.454545,5.454545,2.181818 +L 5.818182,4.363636,5.090909,4.727273 +L 5.090909,4.727273,4.363636,4.727273 +L 4.363636,4.727273,3.636364,4 +L 3.636364,4,2.909091,2.909091 +L 2.909091,2.909091,2.181818,0.727273 +L 2.181818,0.727273,1.454545,-2.545455 + +[v] 17 +L 0.363636,5.090909,1.090909,5.090909 +L 1.090909,5.090909,1.818182,4.727273 +L 1.818182,4.727273,2.181818,4 +L 2.181818,4,4,-1.454545 +L 4,-1.454545,4.363636,-2.181818 +L 4.363636,-2.181818,4.727273,-2.545455 +L 1.090909,5.090909,1.454545,4.727273 +L 1.454545,4.727273,1.818182,4 +L 1.818182,4,3.636364,-1.454545 +L 3.636364,-1.454545,4,-2.181818 +L 4,-2.181818,4.727273,-2.545455 +L 4.727273,-2.545455,5.454545,-2.545455 +L 5.818182,5.090909,5.454545,4.363636 +L 5.454545,4.363636,4.727273,3.272727 +L 4.727273,3.272727,1.090909,-0.727273 +L 1.090909,-0.727273,0.363636,-1.818182 +L 0.363636,-1.818182,0,-2.545455 + +[w] 26 +L 5.090909,7.636364,2.909091,-2.545455 +L 5.454545,7.636364,2.545455,-2.545455 +L 0,3.636364,0.363636,4.363636 +L 0.363636,4.363636,1.090909,5.090909 +L 1.090909,5.090909,2.181818,5.090909 +L 2.181818,5.090909,2.545455,4.727273 +L 2.545455,4.727273,2.545455,4 +L 2.545455,4,2.181818,2.181818 +L 2.181818,2.181818,2.181818,1.090909 +L 2.181818,1.090909,2.909091,0.363636 +L 2.909091,0.363636,4,0.363636 +L 4,0.363636,4.727273,0.727273 +L 4.727273,0.727273,5.818182,1.818182 +L 5.818182,1.818182,6.545455,2.909091 +L 1.818182,5.090909,2.181818,4.727273 +L 2.181818,4.727273,2.181818,4 +L 2.181818,4,1.818182,2.181818 +L 1.818182,2.181818,1.818182,1.090909 +L 1.818182,1.090909,2.181818,0.363636 +L 2.181818,0.363636,2.909091,0 +L 2.909091,0,4,0 +L 4,0,4.727273,0.363636 +L 4.727273,0.363636,5.454545,1.090909 +L 5.454545,1.090909,6.181818,2.181818 +L 6.181818,2.181818,6.545455,2.909091 +L 6.545455,2.909091,7.272727,5.090909 + +[x] 36 +L 0.363636,3.636364,1.090909,4.363636 +L 1.090909,4.363636,2.181818,4.727273 +L 2.181818,4.727273,1.818182,5.090909 +L 1.818182,5.090909,1.090909,4.727273 +L 1.090909,4.727273,0.363636,3.636364 +L 0.363636,3.636364,0,2.545455 +L 0,2.545455,0,1.454545 +L 0,1.454545,0.363636,0.363636 +L 0.363636,0.363636,0.727273,0 +L 0.727273,0,1.454545,0 +L 1.454545,0,2.181818,0.363636 +L 2.181818,0.363636,2.909091,1.454545 +L 2.909091,1.454545,3.272727,2.545455 +L 0,1.454545,0.363636,0.727273 +L 0.363636,0.727273,0.727273,0.363636 +L 0.727273,0.363636,1.454545,0.363636 +L 1.454545,0.363636,2.181818,0.727273 +L 2.181818,0.727273,2.909091,1.454545 +L 2.909091,2.545455,2.909091,1.454545 +L 2.909091,1.454545,3.272727,0.363636 +L 3.272727,0.363636,3.636364,0 +L 3.636364,0,4.363636,0 +L 4.363636,0,5.090909,0.363636 +L 5.090909,0.363636,5.818182,1.454545 +L 5.818182,1.454545,6.181818,2.545455 +L 6.181818,2.545455,6.181818,3.636364 +L 6.181818,3.636364,5.818182,4.727273 +L 5.818182,4.727273,5.454545,5.090909 +L 5.454545,5.090909,5.090909,4.727273 +L 5.090909,4.727273,5.818182,4.363636 +L 5.818182,4.363636,6.181818,3.636364 +L 2.909091,1.454545,3.272727,0.727273 +L 3.272727,0.727273,3.636364,0.363636 +L 3.636364,0.363636,4.363636,0.363636 +L 4.363636,0.363636,5.090909,0.727273 +L 5.090909,0.727273,5.818182,1.454545 + +[y] 0 + +[z] 0 + +[{] 34 +L 1.818182,9.090909,1.090909,8.727273 +L 1.090909,8.727273,0.727273,8.363636 +L 0.727273,8.363636,0.363636,7.636364 +L 0.363636,7.636364,0.363636,6.909091 +L 0.363636,6.909091,0.727273,6.181818 +L 0.727273,6.181818,1.090909,5.818182 +L 1.090909,5.818182,1.454545,5.090909 +L 1.454545,5.090909,1.454545,4.363636 +L 1.454545,4.363636,0.727273,3.636364 +L 1.090909,8.727273,0.727273,8 +L 0.727273,8,0.727273,7.272727 +L 0.727273,7.272727,1.090909,6.545455 +L 1.090909,6.545455,1.454545,6.181818 +L 1.454545,6.181818,1.818182,5.454545 +L 1.818182,5.454545,1.818182,4.727273 +L 1.818182,4.727273,1.454545,4 +L 1.454545,4,0,3.272727 +L 0,3.272727,1.454545,2.545455 +L 1.454545,2.545455,1.818182,1.818182 +L 1.818182,1.818182,1.818182,1.090909 +L 1.818182,1.090909,1.454545,0.363636 +L 1.454545,0.363636,1.090909,0 +L 1.090909,0,0.727273,-0.727273 +L 0.727273,-0.727273,0.727273,-1.454545 +L 0.727273,-1.454545,1.090909,-2.181818 +L 0.727273,2.909091,1.454545,2.181818 +L 1.454545,2.181818,1.454545,1.454545 +L 1.454545,1.454545,1.090909,0.727273 +L 1.090909,0.727273,0.727273,0.363636 +L 0.727273,0.363636,0.363636,-0.363636 +L 0.363636,-0.363636,0.363636,-1.090909 +L 0.363636,-1.090909,0.727273,-1.818182 +L 0.727273,-1.818182,1.090909,-2.181818 +L 1.090909,-2.181818,1.818182,-2.545455 + +[|] 1 +L 0,9.090909,0,-2.545455 + +[}] 34 +L 0,9.090909,0.727273,8.727273 +L 0.727273,8.727273,1.090909,8.363636 +L 1.090909,8.363636,1.454545,7.636364 +L 1.454545,7.636364,1.454545,6.909091 +L 1.454545,6.909091,1.090909,6.181818 +L 1.090909,6.181818,0.727273,5.818182 +L 0.727273,5.818182,0.363636,5.090909 +L 0.363636,5.090909,0.363636,4.363636 +L 0.363636,4.363636,1.090909,3.636364 +L 0.727273,8.727273,1.090909,8 +L 1.090909,8,1.090909,7.272727 +L 1.090909,7.272727,0.727273,6.545455 +L 0.727273,6.545455,0.363636,6.181818 +L 0.363636,6.181818,0,5.454545 +L 0,5.454545,0,4.727273 +L 0,4.727273,0.363636,4 +L 0.363636,4,1.818182,3.272727 +L 1.818182,3.272727,0.363636,2.545455 +L 0.363636,2.545455,0,1.818182 +L 0,1.818182,0,1.090909 +L 0,1.090909,0.363636,0.363636 +L 0.363636,0.363636,0.727273,0 +L 0.727273,0,1.090909,-0.727273 +L 1.090909,-0.727273,1.090909,-1.454545 +L 1.090909,-1.454545,0.727273,-2.181818 +L 1.090909,2.909091,0.363636,2.181818 +L 0.363636,2.181818,0.363636,1.454545 +L 0.363636,1.454545,0.727273,0.727273 +L 0.727273,0.727273,1.090909,0.363636 +L 1.090909,0.363636,1.454545,-0.363636 +L 1.454545,-0.363636,1.454545,-1.090909 +L 1.454545,-1.090909,1.090909,-1.818182 +L 1.090909,-1.818182,0.727273,-2.181818 +L 0.727273,-2.181818,0,-2.545455 + +#EOF diff --git a/pycam/share/fonts/greekcs.cxf b/pycam/share/fonts/greekcs.cxf new file mode 100644 index 00000000..545f3859 --- /dev/null +++ b/pycam/share/fonts/greekcs.cxf @@ -0,0 +1,1480 @@ +# Format: QCad II Font +# Creator: Adam Radlowski's "dodajf" program - GRASS font translator +# Version: 1.0.0 +# Name: Greek Complex Small +# LetterSpacing: 3.0 +# WordSpacing: 6.75 +# LineSpacingFactor: 1.0 +# Author: Hershey fonts + +[!] 9 +L 0.5,6.5,0,6 +L 0,6,0.5,2.5 +L 0.5,2.5,1,6 +L 1,6,0.5,6.5 +L 0.5,6,0.5,4.5 +L 0.5,1,0,0.5 +L 0,0.5,0.5,0 +L 0.5,0,1,0.5 +L 1,0.5,0.5,1 + +["] 10 +L 0.5,4.5,0,4 +L 0,4,0.5,3.5 +L 0.5,3.5,1,4 +L 1,4,0.5,4.5 +L 1,0.5,0.5,0 +L 0.5,0,0,0.5 +L 0,0.5,0.5,1 +L 0.5,1,1,0.5 +L 1,0.5,1,-0.5 +L 1,-0.5,0,-1.5 + +[#] 4 +L 2.5,6.5,0.5,-2 +L 4.5,6.5,2.5,-2 +L 0.5,3.5,5,3.5 +L 0,1,4.5,1 + +[$] 26 +L 1.5,8,1.5,-2 +L 3,8,3,-2 +L 4.5,6,4,6 +L 4,6,4,5.5 +L 4,5.5,4.5,5.5 +L 4.5,5.5,4.5,6 +L 4.5,6,3.5,6.5 +L 3.5,6.5,1,6.5 +L 1,6.5,0,6 +L 0,6,0,5 +L 0,5,0.5,4 +L 0.5,4,4,2.5 +L 4,2.5,4.5,2 +L 0,5,0.5,4.5 +L 0.5,4.5,4,3 +L 4,3,4.5,2 +L 4.5,2,4.5,1 +L 4.5,1,4,0.5 +L 4,0.5,3,0 +L 3,0,1.5,0 +L 1.5,0,0.5,0.5 +L 0.5,0.5,0,1 +L 0,1,0,1.5 +L 0,1.5,0.5,1.5 +L 0.5,1.5,0.5,1 +L 0.5,1,0,1 + +[%] 20 +L 6,6.5,0,0 +L 1.5,6.5,2,6 +L 2,6,2,5 +L 2,5,1.5,4.5 +L 1.5,4.5,0.5,4.5 +L 0.5,4.5,0,5 +L 0,5,0,6 +L 0,6,0.5,6.5 +L 0.5,6.5,1.5,6.5 +L 1.5,6.5,3.5,6 +L 3.5,6,5,6 +L 5,6,6,6.5 +L 4.5,2,4,1.5 +L 4,1.5,4,0.5 +L 4,0.5,4.5,0 +L 4.5,0,5.5,0 +L 5.5,0,6,0.5 +L 6,0.5,6,1.5 +L 6,1.5,5.5,2 +L 5.5,2,4.5,2 + +[&] 35 +L 6.5,4,6,4 +L 6,4,6,3.5 +L 6,3.5,6.5,3.5 +L 6.5,3.5,6.5,4 +L 6.5,4,6,4.5 +L 6,4.5,5.5,4.5 +L 5.5,4.5,5,4 +L 5,4,4.5,2 +L 4.5,2,4,1 +L 4,1,3.5,0.5 +L 3.5,0.5,2.5,0 +L 2.5,0,1.5,0 +L 1.5,0,0.5,0.5 +L 0.5,0.5,0,1 +L 0,1,0,2 +L 0,2,0.5,2.5 +L 0.5,2.5,1.5,3 +L 1.5,3,3,4 +L 3,4,3.5,5 +L 3.5,5,3.5,6 +L 3.5,6,3,6.5 +L 3,6.5,2,6.5 +L 2,6.5,1.5,6 +L 1.5,6,1.5,5 +L 1.5,5,2,3.5 +L 2,3.5,4.5,0.5 +L 4.5,0.5,5.5,0 +L 5.5,0,6,0 +L 6,0,6.5,0.5 +L 1.5,0,0.5,1 +L 0.5,1,0.5,2 +L 0.5,2,1.5,3 +L 1.5,5,2,4 +L 2,4,5,0.5 +L 5,0.5,5.5,0 + +['] 6 +L 1,6,0.5,5.5 +L 0.5,5.5,0,6 +L 0,6,0.5,6.5 +L 0.5,6.5,1,6 +L 1,6,1,5 +L 1,5,0,4 + +[(] 12 +L 2.5,8,1.5,7 +L 1.5,7,0.5,5.5 +L 0.5,5.5,0,4 +L 0,4,0,2 +L 0,2,0.5,0.5 +L 0.5,0.5,1.5,-1 +L 1.5,-1,2.5,-2 +L 1.5,7,1,6 +L 1,6,0.5,4 +L 0.5,4,0.5,2 +L 0.5,2,1,0 +L 1,0,1.5,-1 + +[)] 12 +L 0,8,1,7 +L 1,7,2,5.5 +L 2,5.5,2.5,4 +L 2.5,4,2.5,2 +L 2.5,2,2,0.5 +L 2,0.5,1,-1 +L 1,-1,0,-2 +L 1,7,1.5,6 +L 1.5,6,2,4 +L 2,4,2,2 +L 2,2,1.5,0 +L 1.5,0,1,-1 + +[*] 3 +L 1.5,7,1.5,4 +L 0,6.5,3,4.5 +L 3,6.5,0,4.5 + +[+] 2 +L 3,6,3,0 +L 0,3,6,3 + +[,] 6 +L 1,0.5,0.5,0 +L 0.5,0,0,0.5 +L 0,0.5,0.5,1 +L 0.5,1,1,0.5 +L 1,0.5,1,-0.5 +L 1,-0.5,0,-1.5 + +[-] 1 +L 0,3,6,3 + +[.] 4 +L 0.5,1,0,0.5 +L 0,0.5,0.5,0 +L 0.5,0,1,0.5 +L 1,0.5,0.5,1 + +[/] 1 +L 5.5,8,0,-2 + +[0] 22 +L 1.5,6.5,0.5,6 +L 0.5,6,0,4.5 +L 0,4.5,0,2 +L 0,2,0.5,0.5 +L 0.5,0.5,1.5,0 +L 1.5,0,3,0 +L 3,0,4,0.5 +L 4,0.5,4.5,2 +L 4.5,2,4.5,4.5 +L 4.5,4.5,4,6 +L 4,6,3,6.5 +L 3,6.5,1.5,6.5 +L 1.5,6.5,1,6 +L 1,6,0.5,4.5 +L 0.5,4.5,0.5,2 +L 0.5,2,1,0.5 +L 1,0.5,1.5,0 +L 3,0,3.5,0.5 +L 3.5,0.5,4,2 +L 4,2,4,4.5 +L 4,4.5,3.5,6 +L 3.5,6,3,6.5 + +[1] 4 +L 0.5,5,2,6.5 +L 2,6.5,2,0 +L 1.5,6,1.5,0 +L 0,0,3.5,0 + +[2] 27 +L 0.5,5.5,0.5,5 +L 0.5,5,0,5 +L 0,5,0,5.5 +L 0,5.5,0.5,6 +L 0.5,6,1.5,6.5 +L 1.5,6.5,3,6.5 +L 3,6.5,4,6 +L 4,6,4.5,5 +L 4.5,5,4,4 +L 4,4,3,3.5 +L 3,3.5,1.5,3 +L 1.5,3,0.5,2.5 +L 0.5,2.5,0,1.5 +L 0,1.5,0,0 +L 3,6.5,3.5,6 +L 3.5,6,4,5 +L 4,5,3.5,4 +L 3.5,4,3,3.5 +L 0,0.5,0.5,1 +L 0.5,1,1,1 +L 1,1,2.5,0.5 +L 2.5,0.5,4,0.5 +L 4,0.5,4.5,1 +L 1,1,2.5,0 +L 2.5,0,4,0 +L 4,0,4.5,1 +L 4.5,1,4.5,1.5 + +[3] 31 +L 0.5,5.5,0.5,5 +L 0.5,5,0,5 +L 0,5,0,5.5 +L 0,5.5,0.5,6 +L 0.5,6,1.5,6.5 +L 1.5,6.5,3,6.5 +L 3,6.5,4,6 +L 4,6,4.5,5 +L 4.5,5,4,4 +L 4,4,3,3.5 +L 3,6.5,3.5,6 +L 3.5,6,4,5 +L 4,5,3.5,4 +L 3.5,4,3,3.5 +L 2,3.5,3,3.5 +L 3,3.5,4,3 +L 4,3,4.5,2 +L 4.5,2,4.5,1.5 +L 4.5,1.5,4,0.5 +L 4,0.5,3,0 +L 3,0,1.5,0 +L 1.5,0,0.5,0.5 +L 0.5,0.5,0,1 +L 0,1,0,1.5 +L 0,1.5,0.5,1.5 +L 0.5,1.5,0.5,1 +L 3,3.5,3.5,3 +L 3.5,3,4,2 +L 4,2,4,1.5 +L 4,1.5,3.5,0.5 +L 3.5,0.5,3,0 + +[4] 5 +L 3,5.5,3,0 +L 3.5,6.5,3.5,0 +L 3.5,6.5,0,2 +L 0,2,5.5,2 +L 2,0,4.5,0 + +[5] 23 +L 0.5,6.5,0,3.5 +L 0.5,6.5,4,6.5 +L 0.5,6,2.5,6 +L 2.5,6,4,6.5 +L 0,3.5,0.5,4 +L 0.5,4,1.5,4.5 +L 1.5,4.5,3,4.5 +L 3,4.5,4,4 +L 4,4,4.5,3 +L 4.5,3,4.5,1.5 +L 4.5,1.5,4,0.5 +L 4,0.5,3,0 +L 3,0,1.5,0 +L 1.5,0,0.5,0.5 +L 0.5,0.5,0,1 +L 0,1,0,1.5 +L 0,1.5,0.5,1.5 +L 0.5,1.5,0.5,1 +L 3,4.5,3.5,4 +L 3.5,4,4,3 +L 4,3,4,1.5 +L 4,1.5,3.5,0.5 +L 3.5,0.5,3,0 + +[6] 30 +L 4,5.5,4,5 +L 4,5,4.5,5 +L 4.5,5,4.5,5.5 +L 4.5,5.5,4,6 +L 4,6,3,6.5 +L 3,6.5,2,6.5 +L 2,6.5,1,6 +L 1,6,0.5,5.5 +L 0.5,5.5,0,4 +L 0,4,0,1.5 +L 0,1.5,0.5,0.5 +L 0.5,0.5,1.5,0 +L 1.5,0,3,0 +L 3,0,4,0.5 +L 4,0.5,4.5,1.5 +L 4.5,1.5,4.5,2.5 +L 4.5,2.5,4,3.5 +L 4,3.5,3,4 +L 3,4,1.5,4 +L 1.5,4,0,3 +L 2,6.5,1,5.5 +L 1,5.5,0.5,4 +L 0.5,4,0.5,1.5 +L 0.5,1.5,1,0.5 +L 1,0.5,1.5,0 +L 3,0,3.5,0.5 +L 3.5,0.5,4,1.5 +L 4,1.5,4,2.5 +L 4,2.5,3.5,3.5 +L 3.5,3.5,3,4 + +[7] 12 +L 0,6.5,0,4.5 +L 4,5.5,2,2 +L 2,2,1,0 +L 4.5,6.5,3,3.5 +L 3,3.5,1.5,0 +L 0,5.5,1,6.5 +L 1,6.5,2,6.5 +L 2,6.5,3.5,5.5 +L 0,5.5,1,6 +L 1,6,2,6 +L 2,6,3.5,5.5 +L 3.5,5.5,4,5.5 + +[8] 39 +L 1.5,6.5,0.5,6 +L 0.5,6,0,5 +L 0,5,0.5,4 +L 0.5,4,1.5,3.5 +L 1.5,3.5,3,3.5 +L 3,3.5,4,4 +L 4,4,4.5,5 +L 4.5,5,4,6 +L 4,6,3,6.5 +L 3,6.5,1.5,6.5 +L 1.5,6.5,1,6 +L 1,6,0.5,5 +L 0.5,5,1,4 +L 1,4,1.5,3.5 +L 3,3.5,3.5,4 +L 3.5,4,4,5 +L 4,5,3.5,6 +L 3.5,6,3,6.5 +L 1.5,3.5,0.5,3 +L 0.5,3,0,2 +L 0,2,0,1.5 +L 0,1.5,0.5,0.5 +L 0.5,0.5,1.5,0 +L 1.5,0,3,0 +L 3,0,4,0.5 +L 4,0.5,4.5,1.5 +L 4.5,1.5,4.5,2 +L 4.5,2,4,3 +L 4,3,3,3.5 +L 1.5,3.5,1,3 +L 1,3,0.5,2 +L 0.5,2,0.5,1.5 +L 0.5,1.5,1,0.5 +L 1,0.5,1.5,0 +L 3,0,3.5,0.5 +L 3.5,0.5,4,1.5 +L 4,1.5,4,2 +L 4,2,3.5,3 +L 3.5,3,3,3.5 + +[9] 30 +L 0.5,1,0.5,1.5 +L 0.5,1.5,0,1.5 +L 0,1.5,0,1 +L 0,1,0.5,0.5 +L 0.5,0.5,1.5,0 +L 1.5,0,2.5,0 +L 2.5,0,3.5,0.5 +L 3.5,0.5,4,1 +L 4,1,4.5,2.5 +L 4.5,2.5,4.5,5 +L 4.5,5,4,6 +L 4,6,3,6.5 +L 3,6.5,1.5,6.5 +L 1.5,6.5,0.5,6 +L 0.5,6,0,5 +L 0,5,0,4 +L 0,4,0.5,3 +L 0.5,3,1.5,2.5 +L 1.5,2.5,3,2.5 +L 3,2.5,4.5,3.5 +L 2.5,0,3.5,1 +L 3.5,1,4,2.5 +L 4,2.5,4,5 +L 4,5,3.5,6 +L 3.5,6,3,6.5 +L 1.5,6.5,1,6 +L 1,6,0.5,5 +L 0.5,5,0.5,4 +L 0.5,4,1,3 +L 1,3,1.5,2.5 + +[:] 8 +L 0.5,4.5,0,4 +L 0,4,0.5,3.5 +L 0.5,3.5,1,4 +L 1,4,0.5,4.5 +L 0.5,1,0,0.5 +L 0,0.5,0.5,0 +L 0.5,0,1,0.5 +L 1,0.5,0.5,1 + +[;] 10 +L 0.5,4.5,0,4 +L 0,4,0.5,3.5 +L 0.5,3.5,1,4 +L 1,4,0.5,4.5 +L 1,0.5,0.5,0 +L 0.5,0,0,0.5 +L 0,0.5,0.5,1 +L 0.5,1,1,0.5 +L 1,0.5,1,-0.5 +L 1,-0.5,0,-1.5 + +[<] 2 +L 5,6,0,3 +L 0,3,5,0 + +[=] 2 +L 0,4,6,4 +L 0,2,6,2 + +[>] 2 +L 0,6,5,3 +L 5,3,0,0 + +[?] 23 +L 0,5,0.5,5 +L 0.5,5,0.5,4.5 +L 0.5,4.5,0,4.5 +L 0,4.5,0,5 +L 0,5,0.5,6 +L 0.5,6,1.5,6.5 +L 1.5,6.5,3,6.5 +L 3,6.5,4,6 +L 4,6,4.5,5 +L 4.5,5,4.5,4.5 +L 4.5,4.5,4,3.5 +L 4,3.5,2.5,3 +L 2.5,3,2,2.5 +L 2,2.5,2,2 +L 2,2,2.5,2 +L 3,6.5,4,5.5 +L 4,5.5,4,4 +L 4,4,3.5,3.5 +L 3.5,3.5,2.5,3 +L 2,0.5,2,0 +L 2,0,2.5,0 +L 2.5,0,2.5,0.5 +L 2.5,0.5,2,0.5 + +[@] 25 +L 4.5,4,3.5,4.5 +L 3.5,4.5,2.5,4.5 +L 2.5,4.5,2,3.5 +L 2,3.5,2,3 +L 2,3,2.5,2 +L 2.5,2,3.5,2 +L 3.5,2,4.5,2.5 +L 4.5,4.5,4.5,2.5 +L 4.5,2.5,5,2 +L 5,2,6,2 +L 6,2,6.5,3 +L 6.5,3,6.5,3.5 +L 6.5,3.5,6,5 +L 6,5,5,6 +L 5,6,3.5,6.5 +L 3.5,6.5,3,6.5 +L 3,6.5,1.5,6 +L 1.5,6,0.5,5 +L 0.5,5,0,3.5 +L 0,3.5,0,3 +L 0,3,0.5,1.5 +L 0.5,1.5,1.5,0.5 +L 1.5,0.5,3,0 +L 3,0,3.5,0 +L 3.5,0,5,0.5 + +[A] 6 +L 3.5,6.5,1,0 +L 3.5,5,5.5,0 +L 3.5,6.5,6,0 +L 2,2,4.5,2 +L 0,0,2.5,0 +L 4.5,0,7,0 + +[B] 23 +L 1,6.5,1,0 +L 1.5,6.5,1.5,0 +L 0,6.5,3.5,6.5 +L 3.5,6.5,5,6 +L 5,6,5.5,5 +L 5.5,5,5,4 +L 5,4,3.5,3.5 +L 3.5,6.5,4.5,6 +L 4.5,6,5,5 +L 5,5,4.5,4 +L 4.5,4,3.5,3.5 +L 1.5,3.5,3.5,3.5 +L 3.5,3.5,5,3 +L 5,3,5.5,2 +L 5.5,2,5.5,1.5 +L 5.5,1.5,5,0.5 +L 5,0.5,3.5,0 +L 3.5,0,0,0 +L 3.5,3.5,4.5,3 +L 4.5,3,5,2 +L 5,2,5,1.5 +L 5,1.5,4.5,0.5 +L 4.5,0.5,3.5,0 + +[C] 6 +L 1,6.5,1,0 +L 1.5,6.5,1.5,0 +L 0,6.5,5,6.5 +L 5,6.5,5,4.5 +L 5,4.5,4.5,6.5 +L 0,0,2.5,0 + +[D] 5 +L 3,6.5,0,0 +L 3,5.5,5.5,0 +L 3,6.5,6,0 +L 0.5,0.5,5,0.5 +L 0,0,6,0 + +[E] 10 +L 1,6.5,1,0 +L 1.5,6.5,1.5,0 +L 3.5,4.5,3.5,2.5 +L 0,6.5,5,6.5 +L 5,6.5,5,4.5 +L 5,4.5,4.5,6.5 +L 1.5,3.5,3.5,3.5 +L 0,0,5,0 +L 5,0,5,2 +L 5,2,4.5,0 + +[F] 8 +L 4,6.5,0,0 +L 4.5,6.5,0.5,0 +L 0.5,6.5,0,4.5 +L 0,4.5,0,6.5 +L 0,6.5,4.5,6.5 +L 0,0,4.5,0 +L 4.5,0,4.5,2 +L 4.5,2,4,0 + +[G] 9 +L 1,6.5,1,0 +L 1.5,6.5,1.5,0 +L 5,6.5,5,0 +L 5.5,6.5,5.5,0 +L 0,6.5,2.5,6.5 +L 4,6.5,6.5,6.5 +L 1.5,3.5,5,3.5 +L 0,0,2.5,0 +L 4,0,6.5,0 + +[H] 30 +L 2,6.5,1,6 +L 1,6,0.5,5.5 +L 0.5,5.5,0,4 +L 0,4,0,2.5 +L 0,2.5,0.5,1 +L 0.5,1,1,0.5 +L 1,0.5,2,0 +L 2,0,3.5,0 +L 3.5,0,4.5,0.5 +L 4.5,0.5,5,1 +L 5,1,5.5,2.5 +L 5.5,2.5,5.5,4 +L 5.5,4,5,5.5 +L 5,5.5,4.5,6 +L 4.5,6,3.5,6.5 +L 3.5,6.5,2,6.5 +L 2,6.5,1,5.5 +L 1,5.5,0.5,4 +L 0.5,4,0.5,2.5 +L 0.5,2.5,1,1 +L 1,1,2,0 +L 3.5,0,4.5,1 +L 4.5,1,5,2.5 +L 5,2.5,5,4 +L 5,4,4.5,5.5 +L 4.5,5.5,3.5,6.5 +L 2,4.5,2,2 +L 3.5,4.5,3.5,2 +L 2,3.5,3.5,3.5 +L 2,3,3.5,3 + +[I] 4 +L 1,6.5,1,0 +L 1.5,6.5,1.5,0 +L 0,6.5,2.5,6.5 +L 0,0,2.5,0 + +[J] 9 +L 1,6.5,1,0 +L 1.5,6.5,1.5,0 +L 5.5,6.5,1.5,2.5 +L 2.5,3.5,5,0 +L 3,3.5,5.5,0 +L 0,6.5,2.5,6.5 +L 4,6.5,6.5,6.5 +L 0,0,2.5,0 +L 4,0,6.5,0 + +[K] 5 +L 3.5,6.5,1,0 +L 3.5,5,5.5,0 +L 3.5,6.5,6,0 +L 0,0,2.5,0 +L 4.5,0,7,0 + +[L] 10 +L 1,6.5,1,0 +L 1.5,5,3.5,0 +L 1.5,6.5,3.5,1.5 +L 6,6.5,3.5,0 +L 6,6.5,6,0 +L 6.5,6.5,6.5,0 +L 0,6.5,1.5,6.5 +L 6,6.5,7.5,6.5 +L 0,0,2,0 +L 5,0,7.5,0 + +[M] 7 +L 1,6.5,1,0 +L 1.5,5.5,5,0 +L 1.5,6.5,5,1 +L 5,6.5,5,0 +L 0,6.5,1.5,6.5 +L 4,6.5,6,6.5 +L 0,0,2,0 + +[N] 12 +L 0.5,7,0,5.5 +L 6,7,5.5,5.5 +L 2,4,1.5,2.5 +L 4.5,4,4,2.5 +L 0.5,1,0,-0.5 +L 6,1,5.5,-0.5 +L 0.5,6.5,5.5,6.5 +L 0.5,6,5.5,6 +L 2,3.5,4,3.5 +L 2,3,4,3 +L 0.5,0.5,5.5,0.5 +L 0.5,0,5.5,0 + +[O] 26 +L 2,6.5,1,6 +L 1,6,0.5,5.5 +L 0.5,5.5,0,4 +L 0,4,0,2.5 +L 0,2.5,0.5,1 +L 0.5,1,1,0.5 +L 1,0.5,2,0 +L 2,0,3.5,0 +L 3.5,0,4.5,0.5 +L 4.5,0.5,5,1 +L 5,1,5.5,2.5 +L 5.5,2.5,5.5,4 +L 5.5,4,5,5.5 +L 5,5.5,4.5,6 +L 4.5,6,3.5,6.5 +L 3.5,6.5,2,6.5 +L 2,6.5,1,5.5 +L 1,5.5,0.5,4 +L 0.5,4,0.5,2.5 +L 0.5,2.5,1,1 +L 1,1,2,0 +L 3.5,0,4.5,1 +L 4.5,1,5,2.5 +L 5,2.5,5,4 +L 5,4,4.5,5.5 +L 4.5,5.5,3.5,6.5 + +[P] 7 +L 1,6.5,1,0 +L 1.5,6.5,1.5,0 +L 5,6.5,5,0 +L 5.5,6.5,5.5,0 +L 0,6.5,6.5,6.5 +L 0,0,2.5,0 +L 4,0,6.5,0 + +[Q] 15 +L 1,6.5,1,0 +L 1.5,6.5,1.5,0 +L 0,6.5,3.5,6.5 +L 3.5,6.5,5,6 +L 5,6,5.5,5 +L 5.5,5,5.5,4.5 +L 5.5,4.5,5,3.5 +L 5,3.5,3.5,3 +L 3.5,3,1.5,3 +L 3.5,6.5,4.5,6 +L 4.5,6,5,5 +L 5,5,5,4.5 +L 5,4.5,4.5,3.5 +L 4.5,3.5,3.5,3 +L 0,0,2.5,0 + +[R] 10 +L 0,6.5,2.5,3.5 +L 0.5,6.5,3,3.5 +L 3,3.5,0,0 +L 0,6.5,5,6.5 +L 5,6.5,5.5,4.5 +L 5.5,4.5,4.5,6.5 +L 0.5,0.5,5,0.5 +L 0,0,5,0 +L 5,0,5.5,2 +L 5.5,2,4.5,0 + +[S] 8 +L 2.5,6.5,2.5,0 +L 3,6.5,3,0 +L 0.5,6.5,0,4.5 +L 0,4.5,0,6.5 +L 0,6.5,5.5,6.5 +L 5.5,6.5,5.5,4.5 +L 5.5,4.5,5,6.5 +L 1.5,0,4,0 + +[T] 23 +L 0,4.5,0.5,6 +L 0.5,6,1,6.5 +L 1,6.5,1.5,6.5 +L 1.5,6.5,2,6 +L 2,6,2.5,4.5 +L 2.5,4.5,2.5,0 +L 5.5,4.5,5,6 +L 5,6,4.5,6.5 +L 4.5,6.5,4,6.5 +L 4,6.5,3.5,6 +L 3.5,6,3,4.5 +L 3,4.5,3,0 +L 0,4.5,0.5,5.5 +L 0.5,5.5,1,6 +L 1,6,1.5,6 +L 1.5,6,2,5.5 +L 2,5.5,2.5,4.5 +L 5.5,4.5,5,5.5 +L 5,5.5,4.5,6 +L 4.5,6,4,6 +L 4,6,3.5,5.5 +L 3.5,5.5,3,4.5 +L 1.5,0,4,0 + +[U] 26 +L 2.5,6.5,2.5,0 +L 3,6.5,3,0 +L 2,5,0.5,4.5 +L 0.5,4.5,0,3.5 +L 0,3.5,0,3 +L 0,3,0.5,2 +L 0.5,2,2,1.5 +L 2,1.5,3.5,1.5 +L 3.5,1.5,5,2 +L 5,2,5.5,3 +L 5.5,3,5.5,3.5 +L 5.5,3.5,5,4.5 +L 5,4.5,3.5,5 +L 3.5,5,2,5 +L 2,5,1,4.5 +L 1,4.5,0.5,3.5 +L 0.5,3.5,0.5,3 +L 0.5,3,1,2 +L 1,2,2,1.5 +L 3.5,1.5,4.5,2 +L 4.5,2,5,3 +L 5,3,5,3.5 +L 5,3.5,4.5,4.5 +L 4.5,4.5,3.5,5 +L 1.5,6.5,4,6.5 +L 1.5,0,4,0 + +[V] 7 +L 1,6.5,5,0 +L 1.5,6.5,5.5,0 +L 5.5,6.5,1,0 +L 0,6.5,2.5,6.5 +L 4,6.5,6.5,6.5 +L 0,0,2.5,0 +L 4,0,6.5,0 + +[W] 19 +L 3,6.5,3,0 +L 3.5,6.5,3.5,0 +L 0,4,0.5,4.5 +L 0.5,4.5,1,4.5 +L 1,4.5,1.5,2.5 +L 1.5,2.5,2.5,1.5 +L 4,1.5,5,2.5 +L 5,2.5,5.5,4.5 +L 5.5,4.5,6,4.5 +L 6,4.5,6.5,4 +L 0.5,4.5,1,3 +L 1,3,1.5,2 +L 1.5,2,2.5,1.5 +L 2.5,1.5,4,1.5 +L 4,1.5,5,2 +L 5,2,5.5,3 +L 5.5,3,6,4.5 +L 2,6.5,4.5,6.5 +L 2,0,4.5,0 + +[X] 25 +L 0,1,0.5,0 +L 0.5,0,2,0 +L 2,0,0,3 +L 0,3,0,4.5 +L 0,4.5,0.5,5.5 +L 0.5,5.5,1,6 +L 1,6,2,6.5 +L 2,6.5,3.5,6.5 +L 3.5,6.5,4.5,6 +L 4.5,6,5,5.5 +L 5,5.5,5.5,4.5 +L 5.5,4.5,5.5,3 +L 5.5,3,3.5,0 +L 3.5,0,5,0 +L 5,0,5.5,1 +L 1,1.5,0.5,3 +L 0.5,3,0.5,4.5 +L 0.5,4.5,1,5.5 +L 1,5.5,2,6.5 +L 3.5,6.5,4.5,5.5 +L 4.5,5.5,5,4.5 +L 5,4.5,5,3 +L 5,3,4.5,1.5 +L 0.5,0.5,1.5,0.5 +L 4,0.5,5,0.5 + +[Y] 0 + +[Z] 0 + +[[] 4 +L 0,8,0,-2 +L 0.5,8,0.5,-2 +L 0,8,2.5,8 +L 0,-2,2.5,-2 + +[\] 1 +L 0,9,7,-3 + +[]] 4 +L 2,8,2,-2 +L 2.5,8,2.5,-2 +L 0,8,2.5,8 +L 0,-2,2.5,-2 + +[^] 7 +L 1.5,5.5,1.5,0 +L 0,4,0.5,4.5 +L 0.5,4.5,1.5,6 +L 1.5,6,2.5,4.5 +L 2.5,4.5,3,4 +L 0.5,4.5,1.5,5.5 +L 1.5,5.5,2.5,4.5 + +[_] 1 +L 0,-1,8,-1 + +[`] 6 +L 1,6.5,0,5.5 +L 0,5.5,0,4.5 +L 0,4.5,0.5,4 +L 0.5,4,1,4.5 +L 1,4.5,0.5,5 +L 0.5,5,0,4.5 + +[a] 24 +L 2,4.5,1,4 +L 1,4,0.5,3.5 +L 0.5,3.5,0,2.5 +L 0,2.5,0,1.5 +L 0,1.5,0.5,0.5 +L 0.5,0.5,1.5,0 +L 1.5,0,2,0 +L 2,0,3,0.5 +L 3,0.5,4,1.5 +L 4,1.5,5,3 +L 5,3,5.5,4.5 +L 2,4.5,1,3.5 +L 1,3.5,0.5,2.5 +L 0.5,2.5,0.5,1.5 +L 0.5,1.5,1,0.5 +L 1,0.5,1.5,0 +L 2,4.5,3,4.5 +L 3,4.5,4,4 +L 4,4,5,0.5 +L 5,0.5,5.5,0 +L 3,4.5,3.5,4 +L 3.5,4,4.5,0.5 +L 4.5,0.5,5.5,0 +L 5.5,0,6,0 + +[b] 28 +L 3.5,6.5,2.5,5.5 +L 2.5,5.5,2,4.5 +L 2,4.5,1,1.5 +L 1,1.5,0,-2 +L 3,6,2.5,5 +L 2.5,5,1.5,2 +L 1.5,2,0.5,-2 +L 3.5,6.5,4.5,6.5 +L 4.5,6.5,5.5,6 +L 5.5,6,5.5,5 +L 5.5,5,5,4 +L 5,4,3.5,3.5 +L 4.5,6.5,5,6 +L 5,6,5,5 +L 5,5,4.5,4 +L 4.5,4,3.5,3.5 +L 3.5,3.5,4.5,3 +L 4.5,3,5,2 +L 5,2,5,1 +L 5,1,4.5,0.5 +L 4.5,0.5,3.5,0 +L 3.5,0,3,0 +L 3,0,2,0.5 +L 2,0.5,1.5,2 +L 3.5,3.5,4,3 +L 4,3,4.5,2 +L 4.5,2,4.5,1 +L 4.5,1,3.5,0 + +[c] 13 +L 0,3.5,1,4.5 +L 1,4.5,2,4.5 +L 2,4.5,3,4 +L 3,4,3.5,2.5 +L 3.5,2.5,3.5,0 +L 3.5,0,3,-2 +L 0,3.5,1,4 +L 1,4,2,4 +L 2,4,3,3.5 +L 3,3.5,3.5,2.5 +L 5.5,4.5,5,3 +L 5,3,3.5,0 +L 3.5,0,2.5,-2 + +[d] 31 +L 3,4.5,2,4.5 +L 2,4.5,1,4 +L 1,4,0.5,3.5 +L 0.5,3.5,0,2.5 +L 0,2.5,0,1.5 +L 0,1.5,0.5,0.5 +L 0.5,0.5,1.5,0 +L 1.5,0,2.5,0 +L 2.5,0,3.5,0.5 +L 3.5,0.5,4,1 +L 4,1,4.5,2 +L 4.5,2,4.5,3 +L 4.5,3,4,4 +L 4,4,2.5,5 +L 2.5,5,2,6 +L 2,6,2,6.5 +L 2,6.5,2.5,7 +L 2.5,7,3.5,7 +L 3.5,7,4,6.5 +L 4,6.5,4.5,5.5 +L 2,4.5,1,3.5 +L 1,3.5,0.5,2.5 +L 0.5,2.5,0.5,1 +L 0.5,1,1.5,0 +L 2.5,0,3.5,1 +L 3.5,1,4,2 +L 4,2,4,3.5 +L 4,3.5,3,4.5 +L 2,6,2.5,6.5 +L 2.5,6.5,3.5,6.5 +L 3.5,6.5,4.5,5.5 + +[e] 19 +L 4,4,3,4.5 +L 3,4.5,1.5,4.5 +L 1.5,4.5,0.5,4 +L 0.5,4,0.5,3.5 +L 0.5,3.5,1,3 +L 1,3,2,2.5 +L 1.5,4.5,1,4 +L 1,4,1,3.5 +L 1,3.5,2,2.5 +L 2,2.5,0.5,2 +L 0.5,2,0,1.5 +L 0,1.5,0,0.5 +L 0,0.5,1,0 +L 1,0,2.5,0 +L 2.5,0,3.5,0.5 +L 2,2.5,1,2 +L 1,2,0.5,1.5 +L 0.5,1.5,0.5,0.5 +L 0.5,0.5,1,0 + +[f] 24 +L 2,6.5,1.5,6 +L 1.5,6,1.5,5.5 +L 1.5,5.5,2.5,5 +L 2.5,5,4,5 +L 4,5,4,5.5 +L 4,5.5,2.5,5 +L 2.5,5,1,4.5 +L 1,4.5,0.5,4 +L 0.5,4,0,3 +L 0,3,0,2 +L 0,2,0.5,1 +L 0.5,1,1,0.5 +L 1,0.5,2,0 +L 2,0,2.5,-0.5 +L 2.5,-0.5,2.5,-1.5 +L 2.5,-1.5,2,-2 +L 2,-2,1,-2 +L 1,-2,0.5,-1.5 +L 2.5,5,1.5,4.5 +L 1.5,4.5,1,4 +L 1,4,0.5,3 +L 0.5,3,0.5,2 +L 0.5,2,1,1 +L 1,1,2,0 + +[g] 18 +L 0,3,0.5,4 +L 0.5,4,1,4.5 +L 1,4.5,2,4.5 +L 2,4.5,2.5,4 +L 2.5,4,2.5,3.5 +L 2.5,3.5,1.5,0 +L 1.5,4.5,2,4 +L 2,4,2,3.5 +L 2,3.5,1,0 +L 2.5,3.5,3,4 +L 3,4,4,4.5 +L 4,4.5,5,4.5 +L 5,4.5,6,4 +L 6,4,6,3 +L 6,3,4.5,-2 +L 5,4.5,5.5,4 +L 5.5,4,5.5,3 +L 5.5,3,4,-2 + +[h] 29 +L 0,2.5,0.5,3.5 +L 0.5,3.5,1,4 +L 1,4,2,4 +L 2,4,2.5,3.5 +L 2.5,3.5,2.5,1 +L 2.5,1,3,0 +L 1.5,4,2,3.5 +L 2,3.5,2,1.5 +L 2,1.5,2.5,0.5 +L 2.5,0.5,3,0 +L 3,0,3.5,0 +L 3.5,0,4.5,0.5 +L 4.5,0.5,5,1 +L 5,1,5.5,2 +L 5.5,2,6,3.5 +L 6,3.5,6,5 +L 6,5,5.5,6 +L 5.5,6,5,6.5 +L 5,6.5,4,6.5 +L 4,6.5,3.5,6 +L 3.5,6,3.5,5 +L 3.5,5,4,4 +L 4,4,5.5,3 +L 5.5,3,6.5,2.5 +L 3.5,0,4.5,1 +L 4.5,1,5,2 +L 5,2,5.5,3.5 +L 5.5,3.5,5.5,5 +L 5.5,5,5,6.5 + +[i] 9 +L 1,4.5,0,1 +L 0,1,0,0.5 +L 0,0.5,0.5,0 +L 0.5,0,1.5,0 +L 1.5,0,2.5,0.5 +L 2.5,0.5,3,1.5 +L 1.5,4.5,0.5,1 +L 0.5,1,0.5,0.5 +L 0.5,0.5,1,0 + +[j] 16 +L 1.5,4.5,0,0 +L 2,4.5,0.5,0 +L 4.5,4.5,5,4 +L 5,4,5.5,4 +L 5.5,4,5,4.5 +L 5,4.5,4,4.5 +L 4,4.5,3,3.5 +L 3,3.5,1.5,3 +L 1.5,3,2,2.5 +L 2,2.5,3,0.5 +L 3,0.5,4,0 +L 4,0,5,0.5 +L 5,0.5,5.5,1.5 +L 1.5,3,2.5,2.5 +L 2.5,2.5,3.5,0.5 +L 3.5,0.5,4,0 + +[k] 7 +L 0,6.5,1,6.5 +L 1,6.5,2,6 +L 2,6,5.5,0 +L 1,6.5,1.5,6 +L 1.5,6,5,0 +L 3,4,0.5,0 +L 3,4,1,0 + +[l] 16 +L 2,4.5,0,-2 +L 2.5,4.5,0.5,-2 +L 1.5,1.5,1.5,0.5 +L 1.5,0.5,2,0 +L 2,0,3,0 +L 3,0,4,0.5 +L 4,0.5,4.5,1 +L 5.5,4.5,4.5,1 +L 4.5,1,4.5,0.5 +L 4.5,0.5,5,0 +L 5,0,6,0 +L 6,0,6.5,0.5 +L 6.5,0.5,7,1.5 +L 6,4.5,5,1 +L 5,1,5,0.5 +L 5,0.5,5.5,0 + +[m] 11 +L 1,4.5,0.5,0 +L 1.5,4.5,1,1.5 +L 1,1.5,0.5,0 +L 5,3,5,4.5 +L 5,4.5,5.5,4.5 +L 5.5,4.5,5,3 +L 5,3,4,1.5 +L 4,1.5,2.5,0.5 +L 2.5,0.5,1,0 +L 1,0,0.5,0 +L 0,4.5,1.5,4.5 + +[n] 26 +L 1.5,6.5,1,6 +L 1,6,1,5.5 +L 1,5.5,2,5 +L 2,5,3.5,5 +L 2.5,5,1,4.5 +L 1,4.5,0.5,4 +L 0.5,4,0.5,3 +L 0.5,3,1.5,2.5 +L 1.5,2.5,3,2.5 +L 2.5,5,1.5,4.5 +L 1.5,4.5,1,4 +L 1,4,1,3 +L 1,3,1.5,2.5 +L 2,2.5,0.5,2 +L 0.5,2,0,1.5 +L 0,1.5,0,0.5 +L 0,0.5,1,0 +L 1,0,2,-0.5 +L 2,-0.5,2.5,-1 +L 2.5,-1,2.5,-1.5 +L 2.5,-1.5,2,-2 +L 2,-2,1,-2 +L 2,2.5,1,2 +L 1,2,0.5,1.5 +L 0.5,1.5,0.5,0.5 +L 0.5,0.5,1,0 + +[o] 22 +L 2,4.5,1,4 +L 1,4,0.5,3.5 +L 0.5,3.5,0,2.5 +L 0,2.5,0,1.5 +L 0,1.5,0.5,0.5 +L 0.5,0.5,1.5,0 +L 1.5,0,2.5,0 +L 2.5,0,3.5,0.5 +L 3.5,0.5,4,1 +L 4,1,4.5,2 +L 4.5,2,4.5,3 +L 4.5,3,4,4 +L 4,4,3,4.5 +L 3,4.5,2,4.5 +L 2,4.5,1,3.5 +L 1,3.5,0.5,2.5 +L 0.5,2.5,0.5,1 +L 0.5,1,1.5,0 +L 2.5,0,3.5,1 +L 3.5,1,4,2 +L 4,2,4,3.5 +L 4,3.5,3,4.5 + +[p] 8 +L 2.5,4,1,0 +L 2.5,4,1.5,0 +L 4.5,4,4,0 +L 4.5,4,4.5,0 +L 0,3.5,1,4.5 +L 1,4.5,6.5,4.5 +L 0,3.5,1,4 +L 1,4,6.5,4 + +[q] 21 +L 4.5,4.5,3.5,4.5 +L 3.5,4.5,2.5,4 +L 2.5,4,2,3.5 +L 2,3.5,1.5,2.5 +L 1.5,2.5,0,-2 +L 3.5,4.5,2.5,3.5 +L 2.5,3.5,2,2.5 +L 2,2.5,0.5,-2 +L 4.5,4.5,5.5,4 +L 5.5,4,6,3 +L 6,3,6,2 +L 6,2,5.5,1 +L 5.5,1,5,0.5 +L 5,0.5,4,0 +L 4,0,3,0 +L 3,0,2,0.5 +L 2,0.5,1.5,1.5 +L 4.5,4.5,5.5,3.5 +L 5.5,3.5,5.5,2 +L 5.5,2,5,1 +L 5,1,4,0 + +[r] 22 +L 6,4.5,2,4.5 +L 2,4.5,1,4 +L 1,4,0.5,3.5 +L 0.5,3.5,0,2.5 +L 0,2.5,0,1.5 +L 0,1.5,0.5,0.5 +L 0.5,0.5,1.5,0 +L 1.5,0,2.5,0 +L 2.5,0,3.5,0.5 +L 3.5,0.5,4,1 +L 4,1,4.5,2 +L 4.5,2,4.5,3 +L 4.5,3,4,4 +L 4,4,6,4 +L 2,4.5,1,3.5 +L 1,3.5,0.5,2.5 +L 0.5,2.5,0.5,1 +L 0.5,1,1.5,0 +L 2.5,0,3.5,1 +L 3.5,1,4,2 +L 4,2,4,3.5 +L 4,3.5,3,4.5 + +[s] 6 +L 3,4,2,0 +L 3,4,2.5,0 +L 0,3.5,1,4.5 +L 1,4.5,5.5,4.5 +L 0,3.5,1,4 +L 1,4,5.5,4 + +[t] 20 +L 0,3,0.5,4 +L 0.5,4,1,4.5 +L 1,4.5,2,4.5 +L 2,4.5,2.5,4 +L 2.5,4,2.5,3 +L 2.5,3,2,1.5 +L 2,1.5,2,0.5 +L 2,0.5,2.5,0 +L 1.5,4.5,2,4 +L 2,4,2,3 +L 2,3,1.5,1.5 +L 1.5,1.5,1.5,0.5 +L 1.5,0.5,2.5,0 +L 2.5,0,3,0 +L 3,0,4,0.5 +L 4,0.5,5,1.5 +L 5,1.5,5.5,3 +L 5.5,3,5.5,4.5 +L 5.5,4.5,5,4.5 +L 5,4.5,5.5,4 + +[u] 27 +L 1,4,0.5,3.5 +L 0.5,3.5,0,2.5 +L 0,2.5,0,1.5 +L 0,1.5,0.5,0.5 +L 0.5,0.5,1.5,0 +L 1.5,0,2.5,0 +L 2.5,0,4,0.5 +L 4,0.5,5,1.5 +L 5,1.5,5.5,3 +L 5.5,3,5.5,4 +L 5.5,4,5,4.5 +L 5,4.5,4,4.5 +L 4,4.5,3.5,4 +L 3.5,4,3,3 +L 3,3,2.5,1.5 +L 2.5,1.5,1,-2 +L 0,1.5,0.5,1 +L 0.5,1,1.5,0.5 +L 1.5,0.5,2.5,0.5 +L 2.5,0.5,4,1 +L 4,1,5,2 +L 5,2,5.5,3 +L 5.5,3.5,5,4 +L 5,4,4,4 +L 4,4,3,3 +L 2.5,1.5,2,0 +L 2,0,1.5,-2 + +[v] 11 +L 0.5,4.5,1,4.5 +L 1,4.5,2,4 +L 2,4,3.5,-1.5 +L 3.5,-1.5,4,-2 +L 1,4.5,1.5,4 +L 1.5,4,3,-1.5 +L 3,-1.5,4,-2 +L 4,-2,4.5,-2 +L 5,4.5,4,3 +L 4,3,1,-0.5 +L 1,-0.5,0,-2 + +[w] 20 +L 5,6.5,3.5,-2 +L 5.5,6.5,3,-2 +L 0,3,0.5,4 +L 0.5,4,1,4.5 +L 1,4.5,2,4.5 +L 2,4.5,2.5,4 +L 2.5,4,2.5,1 +L 2.5,1,3,0.5 +L 3,0.5,4.5,0.5 +L 4.5,0.5,5.5,1 +L 5.5,1,6.5,2 +L 1.5,4.5,2,4 +L 2,4,2,2 +L 2,2,2.5,0.5 +L 2.5,0.5,3,0 +L 3,0,4.5,0 +L 4.5,0,5.5,0.5 +L 5.5,0.5,6.5,2 +L 6.5,2,7,3 +L 7,3,7.5,4.5 + +[x] 28 +L 1,4,2,4 +L 2,4,2,4.5 +L 2,4.5,1,4 +L 1,4,0.5,3.5 +L 0.5,3.5,0,2.5 +L 0,2.5,0,1.5 +L 0,1.5,0.5,0.5 +L 0.5,0.5,1,0 +L 1,0,2,0 +L 2,0,2.5,0.5 +L 2.5,0.5,3,1.5 +L 3,1.5,3.5,3 +L 0,1.5,1,0.5 +L 1,0.5,2,0.5 +L 2,0.5,3,1.5 +L 3,3,3,0.5 +L 3,0.5,3.5,0 +L 3.5,0,4.5,0 +L 4.5,0,5.5,1 +L 5.5,1,6,2 +L 6,2,6,3 +L 6,3,5.5,4 +L 5.5,4,5,4.5 +L 5,4.5,5,4 +L 5,4,5.5,4 +L 3,1.5,3.5,0.5 +L 3.5,0.5,4.5,0.5 +L 4.5,0.5,5.5,1 + +[y] 0 + +[z] 0 + +[{] 24 +L 1.5,8,0.5,7.5 +L 0.5,7.5,0,7 +L 0,7,0,6 +L 0,6,1,5 +L 1,5,1.5,4 +L 0.5,7.5,0,6 +L 1.5,5,1,3.5 +L 0,7,0.5,6 +L 0.5,6,1.5,5 +L 1.5,5,1.5,4 +L 1.5,4,1,3.5 +L 1,3.5,0,3 +L 0,3,1,2.5 +L 1,2.5,1.5,2 +L 1.5,2,1.5,1 +L 1.5,1,0.5,0 +L 0.5,0,0,-1 +L 1,2.5,1.5,1 +L 0,0,0.5,-1.5 +L 1.5,2,1,1 +L 1,1,0,0 +L 0,0,0,-1 +L 0,-1,0.5,-1.5 +L 0.5,-1.5,1.5,-2 + +[|] 1 +L 0,8,0,-2 + +[}] 24 +L 0,8,1,7.5 +L 1,7.5,1.5,7 +L 1.5,7,1.5,6 +L 1.5,6,0.5,5 +L 0.5,5,0,4 +L 1,7.5,1.5,6 +L 0,5,0.5,3.5 +L 1.5,7,1,6 +L 1,6,0,5 +L 0,5,0,4 +L 0,4,0.5,3.5 +L 0.5,3.5,1.5,3 +L 1.5,3,0.5,2.5 +L 0.5,2.5,0,2 +L 0,2,0,1 +L 0,1,1,0 +L 1,0,1.5,-1 +L 0.5,2.5,0,1 +L 1.5,0,1,-1.5 +L 0,2,0.5,1 +L 0.5,1,1.5,0 +L 1.5,0,1.5,-1 +L 1.5,-1,1,-1.5 +L 1,-1.5,0,-2 + +#EOF diff --git a/pycam/share/fonts/greekp.cxf b/pycam/share/fonts/greekp.cxf new file mode 100644 index 00000000..06ac0544 --- /dev/null +++ b/pycam/share/fonts/greekp.cxf @@ -0,0 +1,760 @@ +# Format: QCad II Font +# Creator: Adam Radlowski's "dodajf" program - GRASS font translator +# Version: 1.0.0 +# Name: Greek Plain +# LetterSpacing: 3.0 +# WordSpacing: 6.75 +# LineSpacingFactor: 1.0 +# Author: Hershey fonts + +[!] 6 +L 0,5.538462,0,2.461538 +L 0.615385,5.538462,0.615385,2.461538 +L 0,0.615385,0,0 +L 0,0,0.615385,0 +L 0.615385,0,0.615385,0.615385 +L 0.615385,0.615385,0,0.615385 + +["] 2 +L 0,5.538462,0,3.076923 +L 2.461538,5.538462,2.461538,3.076923 + +[#] 4 +L 1.846154,6.153846,0.615385,-0.615385 +L 3.692308,6.153846,2.461538,-0.615385 +L 0,3.692308,4.307692,3.692308 +L 0,1.846154,4.307692,1.846154 + +[$] 12 +L 3.692308,4.923077,2.461538,5.538462 +L 2.461538,5.538462,1.230769,5.538462 +L 1.230769,5.538462,0,4.923077 +L 0,4.923077,0,3.692308 +L 0,3.692308,1.230769,3.076923 +L 1.230769,3.076923,3.076923,2.461538 +L 3.076923,2.461538,3.692308,1.846154 +L 3.692308,1.846154,3.692308,0.615385 +L 3.692308,0.615385,2.461538,0 +L 2.461538,0,1.230769,0 +L 1.230769,0,0,0.615385 +L 1.846154,6.153846,1.846154,-0.615385 + +[%] 20 +L 7.384615,6.769231,0,-1.230769 +L 1.846154,6.769231,2.461538,6.153846 +L 2.461538,6.153846,2.461538,4.923077 +L 2.461538,4.923077,1.846154,4.307692 +L 1.846154,4.307692,0.615385,4.307692 +L 0.615385,4.307692,0,4.923077 +L 0,4.923077,0,6.153846 +L 0,6.153846,0.615385,6.769231 +L 0.615385,6.769231,1.846154,6.769231 +L 1.846154,6.769231,4.307692,6.153846 +L 4.307692,6.153846,6.153846,6.153846 +L 6.153846,6.153846,7.384615,6.769231 +L 5.538462,1.230769,4.923077,0.615385 +L 4.923077,0.615385,4.923077,-0.615385 +L 4.923077,-0.615385,5.538462,-1.230769 +L 5.538462,-1.230769,6.769231,-1.230769 +L 6.769231,-1.230769,7.384615,-0.615385 +L 7.384615,-0.615385,7.384615,0.615385 +L 7.384615,0.615385,6.769231,1.230769 +L 6.769231,1.230769,5.538462,1.230769 + +[&] 19 +L 4.923077,2.461538,4.307692,2.461538 +L 4.307692,2.461538,3.692308,1.846154 +L 3.692308,1.846154,3.076923,0.615385 +L 3.076923,0.615385,2.461538,0 +L 2.461538,0,0.615385,0 +L 0.615385,0,0,0.615385 +L 0,0.615385,0,1.846154 +L 0,1.846154,0.615385,2.461538 +L 0.615385,2.461538,2.461538,3.076923 +L 2.461538,3.076923,3.076923,3.692308 +L 3.076923,3.692308,3.076923,4.923077 +L 3.076923,4.923077,2.461538,5.538462 +L 2.461538,5.538462,1.230769,5.538462 +L 1.230769,5.538462,0.615385,4.923077 +L 0.615385,4.923077,0.615385,3.692308 +L 0.615385,3.692308,1.846154,1.846154 +L 1.846154,1.846154,3.076923,0.615385 +L 3.076923,0.615385,4.307692,0 +L 4.307692,0,4.923077,0 + +['] 5 +L 0.615385,4.923077,0,4.923077 +L 0,4.923077,0,5.538462 +L 0,5.538462,0.615385,5.538462 +L 0.615385,5.538462,0.615385,4.307692 +L 0.615385,4.307692,0,3.076923 + +[(] 5 +L 1.846154,6.153846,0.615385,4.923077 +L 0.615385,4.923077,0,3.692308 +L 0,3.692308,0,1.846154 +L 0,1.846154,0.615385,0.615385 +L 0.615385,0.615385,1.846154,-0.615385 + +[)] 5 +L 0,6.153846,1.230769,4.923077 +L 1.230769,4.923077,1.846154,3.692308 +L 1.846154,3.692308,1.846154,1.846154 +L 1.846154,1.846154,1.230769,0.615385 +L 1.230769,0.615385,0,-0.615385 + +[*] 3 +L 1.846154,7.384615,1.846154,3.692308 +L 0,6.769231,3.692308,4.307692 +L 3.692308,6.769231,0,4.307692 + +[+] 2 +L 2.461538,4.923077,2.461538,0 +L 0,2.461538,4.923077,2.461538 + +[,] 5 +L 0.615385,0,0,0 +L 0,0,0,0.615385 +L 0,0.615385,0.615385,0.615385 +L 0.615385,0.615385,0.615385,-0.615385 +L 0.615385,-0.615385,0,-1.846154 + +[-] 1 +L 0,2.461538,4.923077,2.461538 + +[.] 4 +L 0,0.615385,0,0 +L 0,0,0.615385,0 +L 0.615385,0,0.615385,0.615385 +L 0.615385,0.615385,0,0.615385 + +[/] 1 +L 4.923077,6.153846,0,-0.615385 + +[0] 10 +L 1.846154,5.538462,0.615385,4.923077 +L 0.615385,4.923077,0,3.692308 +L 0,3.692308,0,1.846154 +L 0,1.846154,0.615385,0.615385 +L 0.615385,0.615385,1.846154,0 +L 1.846154,0,3.076923,0.615385 +L 3.076923,0.615385,3.692308,1.846154 +L 3.692308,1.846154,3.692308,3.692308 +L 3.692308,3.692308,3.076923,4.923077 +L 3.076923,4.923077,1.846154,5.538462 + +[1] 2 +L 0,4.307692,1.230769,5.538462 +L 1.230769,5.538462,1.230769,0 + +[2] 7 +L 0,4.923077,1.230769,5.538462 +L 1.230769,5.538462,2.461538,5.538462 +L 2.461538,5.538462,3.692308,4.923077 +L 3.692308,4.923077,3.692308,3.692308 +L 3.692308,3.692308,3.076923,2.461538 +L 3.076923,2.461538,0,0 +L 0,0,3.692308,0 + +[3] 11 +L 0,4.923077,1.230769,5.538462 +L 1.230769,5.538462,2.461538,5.538462 +L 2.461538,5.538462,3.692308,4.923077 +L 3.692308,4.923077,3.692308,3.692308 +L 3.692308,3.692308,2.461538,3.076923 +L 1.846154,3.076923,2.461538,3.076923 +L 2.461538,3.076923,3.692308,2.461538 +L 3.692308,2.461538,3.692308,0.615385 +L 3.692308,0.615385,2.461538,0 +L 2.461538,0,1.230769,0 +L 1.230769,0,0,0.615385 + +[4] 3 +L 3.076923,5.538462,3.076923,0 +L 3.076923,5.538462,0,1.846154 +L 0,1.846154,4.923077,1.846154 + +[5] 10 +L 0.615385,5.538462,0,3.076923 +L 0,3.076923,1.230769,3.692308 +L 1.230769,3.692308,1.846154,3.692308 +L 1.846154,3.692308,3.076923,3.076923 +L 3.076923,3.076923,3.692308,1.846154 +L 3.692308,1.846154,3.076923,0.615385 +L 3.076923,0.615385,1.846154,0 +L 1.846154,0,1.230769,0 +L 1.230769,0,0,0.615385 +L 0.615385,5.538462,3.076923,5.538462 + +[6] 12 +L 3.076923,5.538462,1.846154,5.538462 +L 1.846154,5.538462,0.615385,4.923077 +L 0.615385,4.923077,0,3.692308 +L 0,3.692308,0,1.846154 +L 0,1.846154,0.615385,0.615385 +L 0.615385,0.615385,1.846154,0 +L 1.846154,0,3.076923,0.615385 +L 3.076923,0.615385,3.692308,1.846154 +L 3.692308,1.846154,3.076923,3.076923 +L 3.076923,3.076923,1.846154,3.692308 +L 1.846154,3.692308,0.615385,3.076923 +L 0.615385,3.076923,0,1.846154 + +[7] 2 +L 3.692308,5.538462,1.230769,0 +L 0,5.538462,3.692308,5.538462 + +[8] 15 +L 1.230769,5.538462,0,4.923077 +L 0,4.923077,0,3.692308 +L 0,3.692308,1.230769,3.076923 +L 1.230769,3.076923,2.461538,3.076923 +L 2.461538,3.076923,3.692308,3.692308 +L 3.692308,3.692308,3.692308,4.923077 +L 3.692308,4.923077,2.461538,5.538462 +L 2.461538,5.538462,1.230769,5.538462 +L 1.230769,3.076923,0,2.461538 +L 0,2.461538,0,0.615385 +L 0,0.615385,1.230769,0 +L 1.230769,0,2.461538,0 +L 2.461538,0,3.692308,0.615385 +L 3.692308,0.615385,3.692308,2.461538 +L 3.692308,2.461538,2.461538,3.076923 + +[9] 12 +L 3.692308,3.692308,3.076923,2.461538 +L 3.076923,2.461538,1.846154,1.846154 +L 1.846154,1.846154,0.615385,2.461538 +L 0.615385,2.461538,0,3.692308 +L 0,3.692308,0.615385,4.923077 +L 0.615385,4.923077,1.846154,5.538462 +L 1.846154,5.538462,3.076923,4.923077 +L 3.076923,4.923077,3.692308,3.692308 +L 3.692308,3.692308,3.692308,1.846154 +L 3.692308,1.846154,3.076923,0.615385 +L 3.076923,0.615385,1.846154,0 +L 1.846154,0,0.615385,0 + +[:] 8 +L 0,3.692308,0,3.076923 +L 0,3.076923,0.615385,3.076923 +L 0.615385,3.076923,0.615385,3.692308 +L 0.615385,3.692308,0,3.692308 +L 0,0.615385,0,0 +L 0,0,0.615385,0 +L 0.615385,0,0.615385,0.615385 +L 0.615385,0.615385,0,0.615385 + +[;] 9 +L 0,3.692308,0,3.076923 +L 0,3.076923,0.615385,3.076923 +L 0.615385,3.076923,0.615385,3.692308 +L 0.615385,3.692308,0,3.692308 +L 0.615385,0,0,0 +L 0,0,0,0.615385 +L 0,0.615385,0.615385,0.615385 +L 0.615385,0.615385,0.615385,-0.615385 +L 0.615385,-0.615385,0,-1.846154 + +[<] 2 +L 6.153846,6.153846,0,2.461538 +L 0,2.461538,6.153846,-1.230769 + +[=] 2 +L 0,3.692308,4.923077,3.692308 +L 0,1.230769,4.923077,1.230769 + +[>] 2 +L 0,6.153846,6.153846,2.461538 +L 6.153846,2.461538,0,-1.230769 + +[?] 13 +L 0,4.923077,1.230769,5.538462 +L 1.230769,5.538462,1.846154,5.538462 +L 1.846154,5.538462,3.076923,4.923077 +L 3.076923,4.923077,3.076923,3.692308 +L 3.076923,3.692308,1.230769,3.076923 +L 1.230769,3.076923,1.230769,2.461538 +L 1.230769,2.461538,1.846154,2.461538 +L 1.846154,2.461538,1.846154,3.076923 +L 1.846154,3.076923,3.076923,3.692308 +L 1.230769,0.615385,1.230769,0 +L 1.230769,0,1.846154,0 +L 1.846154,0,1.846154,0.615385 +L 1.846154,0.615385,1.230769,0.615385 + +[@] 25 +L 5.538462,3.692308,4.307692,4.307692 +L 4.307692,4.307692,3.076923,4.307692 +L 3.076923,4.307692,2.461538,3.076923 +L 2.461538,3.076923,2.461538,2.461538 +L 2.461538,2.461538,3.076923,1.230769 +L 3.076923,1.230769,4.307692,1.230769 +L 4.307692,1.230769,5.538462,1.846154 +L 5.538462,4.307692,5.538462,1.846154 +L 5.538462,1.846154,6.153846,1.230769 +L 6.153846,1.230769,7.384615,1.230769 +L 7.384615,1.230769,8,2.461538 +L 8,2.461538,8,3.076923 +L 8,3.076923,7.384615,4.923077 +L 7.384615,4.923077,6.153846,6.153846 +L 6.153846,6.153846,4.307692,6.769231 +L 4.307692,6.769231,3.692308,6.769231 +L 3.692308,6.769231,1.846154,6.153846 +L 1.846154,6.153846,0.615385,4.923077 +L 0.615385,4.923077,0,3.076923 +L 0,3.076923,0,2.461538 +L 0,2.461538,0.615385,0.615385 +L 0.615385,0.615385,1.846154,-0.615385 +L 1.846154,-0.615385,3.692308,-1.230769 +L 3.692308,-1.230769,4.307692,-1.230769 +L 4.307692,-1.230769,6.153846,-0.615385 + +[A] 3 +L 2.461538,5.538462,0,0 +L 2.461538,5.538462,4.923077,0 +L 1.230769,1.846154,3.692308,1.846154 + +[B] 10 +L 0,5.538462,0,0 +L 0,5.538462,2.461538,5.538462 +L 2.461538,5.538462,3.692308,4.923077 +L 3.692308,4.923077,3.692308,3.692308 +L 3.692308,3.692308,2.461538,3.076923 +L 0,3.076923,2.461538,3.076923 +L 2.461538,3.076923,3.692308,2.461538 +L 3.692308,2.461538,3.692308,0.615385 +L 3.692308,0.615385,2.461538,0 +L 2.461538,0,0,0 + +[C] 2 +L 0,5.538462,0,0 +L 0,5.538462,3.692308,5.538462 + +[D] 3 +L 2.461538,5.538462,0,0 +L 2.461538,5.538462,4.923077,0 +L 0,0,4.923077,0 + +[E] 4 +L 0,5.538462,0,0 +L 0,5.538462,3.692308,5.538462 +L 0,3.076923,2.461538,3.076923 +L 0,0,3.692308,0 + +[F] 3 +L 3.692308,5.538462,0,0 +L 0,5.538462,3.692308,5.538462 +L 0,0,3.692308,0 + +[G] 3 +L 0,5.538462,0,0 +L 3.692308,5.538462,3.692308,0 +L 0,3.076923,3.692308,3.076923 + +[H] 14 +L 1.846154,5.538462,0.615385,4.923077 +L 0.615385,4.923077,0,3.692308 +L 0,3.692308,0,1.846154 +L 0,1.846154,0.615385,0.615385 +L 0.615385,0.615385,1.846154,0 +L 1.846154,0,2.461538,0 +L 2.461538,0,3.692308,0.615385 +L 3.692308,0.615385,4.307692,1.846154 +L 4.307692,1.846154,4.307692,3.692308 +L 4.307692,3.692308,3.692308,4.923077 +L 3.692308,4.923077,2.461538,5.538462 +L 2.461538,5.538462,1.846154,5.538462 +L 1.230769,3.076923,3.076923,2.461538 +L 3.076923,3.076923,1.230769,2.461538 + +[I] 1 +L 0,5.538462,0,0 + +[J] 3 +L 0,5.538462,0,0 +L 3.692308,5.538462,0,1.846154 +L 1.230769,3.076923,3.692308,0 + +[K] 2 +L 2.461538,5.538462,0,0 +L 2.461538,5.538462,4.923077,0 + +[L] 4 +L 0,5.538462,0,0 +L 0,5.538462,2.461538,0 +L 4.923077,5.538462,2.461538,0 +L 4.923077,5.538462,4.923077,0 + +[M] 3 +L 0,5.538462,0,0 +L 0,5.538462,3.692308,0 +L 3.692308,5.538462,3.692308,0 + +[N] 4 +L 0,5.538462,3.692308,5.538462 +L 0.615385,3.076923,3.076923,2.461538 +L 3.076923,3.076923,0.615385,2.461538 +L 0,0,3.692308,0 + +[O] 12 +L 1.846154,5.538462,0.615385,4.923077 +L 0.615385,4.923077,0,3.692308 +L 0,3.692308,0,1.846154 +L 0,1.846154,0.615385,0.615385 +L 0.615385,0.615385,1.846154,0 +L 1.846154,0,2.461538,0 +L 2.461538,0,3.692308,0.615385 +L 3.692308,0.615385,4.307692,1.846154 +L 4.307692,1.846154,4.307692,3.692308 +L 4.307692,3.692308,3.692308,4.923077 +L 3.692308,4.923077,2.461538,5.538462 +L 2.461538,5.538462,1.846154,5.538462 + +[P] 3 +L 0,5.538462,0,0 +L 3.692308,5.538462,3.692308,0 +L 0,5.538462,3.692308,5.538462 + +[Q] 6 +L 0,5.538462,0,0 +L 0,5.538462,2.461538,5.538462 +L 2.461538,5.538462,3.692308,4.923077 +L 3.692308,4.923077,3.692308,3.076923 +L 3.692308,3.076923,2.461538,2.461538 +L 2.461538,2.461538,0,2.461538 + +[R] 4 +L 0,5.538462,1.846154,3.076923 +L 1.846154,3.076923,0,0 +L 0,5.538462,3.692308,5.538462 +L 0,0,3.692308,0 + +[S] 2 +L 2.461538,5.538462,2.461538,0 +L 0,5.538462,4.923077,5.538462 + +[T] 11 +L 0,4.307692,0,4.923077 +L 0,4.923077,0.615385,5.538462 +L 0.615385,5.538462,1.230769,5.538462 +L 1.230769,5.538462,1.846154,4.923077 +L 1.846154,4.923077,2.461538,3.692308 +L 2.461538,3.692308,2.461538,0 +L 4.923077,4.307692,4.923077,4.923077 +L 4.923077,4.923077,4.307692,5.538462 +L 4.307692,5.538462,3.692308,5.538462 +L 3.692308,5.538462,3.076923,4.923077 +L 3.076923,4.923077,2.461538,3.692308 + +[U] 9 +L 2.461538,5.538462,2.461538,0 +L 1.230769,4.307692,0,3.692308 +L 0,3.692308,0,1.846154 +L 0,1.846154,1.230769,1.230769 +L 1.230769,1.230769,3.692308,1.230769 +L 3.692308,1.230769,4.923077,1.846154 +L 4.923077,1.846154,4.923077,3.692308 +L 4.923077,3.692308,3.692308,4.307692 +L 3.692308,4.307692,1.230769,4.307692 + +[V] 2 +L 0,5.538462,3.692308,0 +L 3.692308,5.538462,0,0 + +[W] 8 +L 2.461538,5.538462,2.461538,0 +L 0,4.307692,0.615385,3.692308 +L 0.615385,3.692308,0.615385,1.846154 +L 0.615385,1.846154,1.846154,1.230769 +L 1.846154,1.230769,3.076923,1.230769 +L 3.076923,1.230769,4.307692,1.846154 +L 4.307692,1.846154,4.307692,3.692308 +L 4.307692,3.692308,4.923077,4.307692 + +[X] 11 +L 0,0,1.230769,0 +L 1.230769,0,0,2.461538 +L 0,2.461538,0,3.692308 +L 0,3.692308,0.615385,4.923077 +L 0.615385,4.923077,1.846154,5.538462 +L 1.846154,5.538462,2.461538,5.538462 +L 2.461538,5.538462,3.692308,4.923077 +L 3.692308,4.923077,4.307692,3.692308 +L 4.307692,3.692308,4.307692,2.461538 +L 4.307692,2.461538,3.076923,0 +L 3.076923,0,4.307692,0 + +[Y] 0 + +[Z] 0 + +[[] 4 +L 0,8.615385,0,-3.692308 +L 0.615385,8.615385,0.615385,-3.692308 +L 0,8.615385,3.076923,8.615385 +L 0,-3.692308,3.076923,-3.692308 + +[\] 1 +L 0,5.538462,6.153846,-0.615385 + +[]] 4 +L 2.461538,8.615385,2.461538,-3.692308 +L 3.076923,8.615385,3.076923,-3.692308 +L 0,8.615385,3.076923,8.615385 +L 0,-3.692308,3.076923,-3.692308 + +[^] 7 +L 1.846154,5.538462,1.846154,-1.230769 +L 0,3.692308,0.615385,4.307692 +L 0.615385,4.307692,1.846154,6.153846 +L 1.846154,6.153846,3.076923,4.307692 +L 3.076923,4.307692,3.692308,3.692308 +L 0.615385,4.307692,1.846154,5.538462 +L 1.846154,5.538462,3.076923,4.307692 + +[_] 1 +L 0,-1.230769,6.153846,-1.230769 + +[`] 5 +L 0.615385,5.538462,0,4.307692 +L 0,4.307692,0,3.076923 +L 0,3.076923,0.615385,3.076923 +L 0.615385,3.076923,0.615385,3.692308 +L 0.615385,3.692308,0,3.692308 + +[a] 3 +L 2.461538,5.538462,0,0 +L 2.461538,5.538462,4.923077,0 +L 1.230769,1.846154,3.692308,1.846154 + +[b] 10 +L 0,5.538462,0,0 +L 0,5.538462,2.461538,5.538462 +L 2.461538,5.538462,3.692308,4.923077 +L 3.692308,4.923077,3.692308,3.692308 +L 3.692308,3.692308,2.461538,3.076923 +L 0,3.076923,2.461538,3.076923 +L 2.461538,3.076923,3.692308,2.461538 +L 3.692308,2.461538,3.692308,0.615385 +L 3.692308,0.615385,2.461538,0 +L 2.461538,0,0,0 + +[c] 2 +L 0,5.538462,0,0 +L 0,5.538462,3.692308,5.538462 + +[d] 3 +L 2.461538,5.538462,0,0 +L 2.461538,5.538462,4.923077,0 +L 0,0,4.923077,0 + +[e] 4 +L 0,5.538462,0,0 +L 0,5.538462,3.692308,5.538462 +L 0,3.076923,2.461538,3.076923 +L 0,0,3.692308,0 + +[f] 3 +L 3.692308,5.538462,0,0 +L 0,5.538462,3.692308,5.538462 +L 0,0,3.692308,0 + +[g] 3 +L 0,5.538462,0,0 +L 3.692308,5.538462,3.692308,0 +L 0,3.076923,3.692308,3.076923 + +[h] 14 +L 1.846154,5.538462,0.615385,4.923077 +L 0.615385,4.923077,0,3.692308 +L 0,3.692308,0,1.846154 +L 0,1.846154,0.615385,0.615385 +L 0.615385,0.615385,1.846154,0 +L 1.846154,0,2.461538,0 +L 2.461538,0,3.692308,0.615385 +L 3.692308,0.615385,4.307692,1.846154 +L 4.307692,1.846154,4.307692,3.692308 +L 4.307692,3.692308,3.692308,4.923077 +L 3.692308,4.923077,2.461538,5.538462 +L 2.461538,5.538462,1.846154,5.538462 +L 1.230769,3.076923,3.076923,2.461538 +L 3.076923,3.076923,1.230769,2.461538 + +[i] 1 +L 0,5.538462,0,0 + +[j] 3 +L 0,5.538462,0,0 +L 3.692308,5.538462,0,1.846154 +L 1.230769,3.076923,3.692308,0 + +[k] 2 +L 2.461538,5.538462,0,0 +L 2.461538,5.538462,4.923077,0 + +[l] 4 +L 0,5.538462,0,0 +L 0,5.538462,2.461538,0 +L 4.923077,5.538462,2.461538,0 +L 4.923077,5.538462,4.923077,0 + +[m] 3 +L 0,5.538462,0,0 +L 0,5.538462,3.692308,0 +L 3.692308,5.538462,3.692308,0 + +[n] 4 +L 0,5.538462,3.692308,5.538462 +L 0.615385,3.076923,3.076923,2.461538 +L 3.076923,3.076923,0.615385,2.461538 +L 0,0,3.692308,0 + +[o] 12 +L 1.846154,5.538462,0.615385,4.923077 +L 0.615385,4.923077,0,3.692308 +L 0,3.692308,0,1.846154 +L 0,1.846154,0.615385,0.615385 +L 0.615385,0.615385,1.846154,0 +L 1.846154,0,2.461538,0 +L 2.461538,0,3.692308,0.615385 +L 3.692308,0.615385,4.307692,1.846154 +L 4.307692,1.846154,4.307692,3.692308 +L 4.307692,3.692308,3.692308,4.923077 +L 3.692308,4.923077,2.461538,5.538462 +L 2.461538,5.538462,1.846154,5.538462 + +[p] 3 +L 0,5.538462,0,0 +L 3.692308,5.538462,3.692308,0 +L 0,5.538462,3.692308,5.538462 + +[q] 6 +L 0,5.538462,0,0 +L 0,5.538462,2.461538,5.538462 +L 2.461538,5.538462,3.692308,4.923077 +L 3.692308,4.923077,3.692308,3.076923 +L 3.692308,3.076923,2.461538,2.461538 +L 2.461538,2.461538,0,2.461538 + +[r] 4 +L 0,5.538462,1.846154,3.076923 +L 1.846154,3.076923,0,0 +L 0,5.538462,3.692308,5.538462 +L 0,0,3.692308,0 + +[s] 2 +L 2.461538,5.538462,2.461538,0 +L 0,5.538462,4.923077,5.538462 + +[t] 11 +L 0,4.307692,0,4.923077 +L 0,4.923077,0.615385,5.538462 +L 0.615385,5.538462,1.230769,5.538462 +L 1.230769,5.538462,1.846154,4.923077 +L 1.846154,4.923077,2.461538,3.692308 +L 2.461538,3.692308,2.461538,0 +L 4.923077,4.307692,4.923077,4.923077 +L 4.923077,4.923077,4.307692,5.538462 +L 4.307692,5.538462,3.692308,5.538462 +L 3.692308,5.538462,3.076923,4.923077 +L 3.076923,4.923077,2.461538,3.692308 + +[u] 9 +L 2.461538,5.538462,2.461538,0 +L 1.230769,4.307692,0,3.692308 +L 0,3.692308,0,1.846154 +L 0,1.846154,1.230769,1.230769 +L 1.230769,1.230769,3.692308,1.230769 +L 3.692308,1.230769,4.923077,1.846154 +L 4.923077,1.846154,4.923077,3.692308 +L 4.923077,3.692308,3.692308,4.307692 +L 3.692308,4.307692,1.230769,4.307692 + +[v] 2 +L 0,5.538462,3.692308,0 +L 3.692308,5.538462,0,0 + +[w] 8 +L 2.461538,5.538462,2.461538,0 +L 0,4.307692,0.615385,3.692308 +L 0.615385,3.692308,0.615385,1.846154 +L 0.615385,1.846154,1.846154,1.230769 +L 1.846154,1.230769,3.076923,1.230769 +L 3.076923,1.230769,4.307692,1.846154 +L 4.307692,1.846154,4.307692,3.692308 +L 4.307692,3.692308,4.923077,4.307692 + +[x] 11 +L 0,0,1.230769,0 +L 1.230769,0,0,2.461538 +L 0,2.461538,0,3.692308 +L 0,3.692308,0.615385,4.923077 +L 0.615385,4.923077,1.846154,5.538462 +L 1.846154,5.538462,2.461538,5.538462 +L 2.461538,5.538462,3.692308,4.923077 +L 3.692308,4.923077,4.307692,3.692308 +L 4.307692,3.692308,4.307692,2.461538 +L 4.307692,2.461538,3.076923,0 +L 3.076923,0,4.307692,0 + +[y] 0 + +[z] 0 + +[{] 24 +L 1.846154,8.615385,0.615385,8 +L 0.615385,8,0,7.384615 +L 0,7.384615,0,6.153846 +L 0,6.153846,1.230769,4.923077 +L 1.230769,4.923077,1.846154,3.692308 +L 0.615385,8,0,6.153846 +L 1.846154,4.923077,1.230769,3.076923 +L 0,7.384615,0.615385,6.153846 +L 0.615385,6.153846,1.846154,4.923077 +L 1.846154,4.923077,1.846154,3.692308 +L 1.846154,3.692308,1.230769,3.076923 +L 1.230769,3.076923,0,2.461538 +L 0,2.461538,1.230769,1.846154 +L 1.230769,1.846154,1.846154,1.230769 +L 1.846154,1.230769,1.846154,0 +L 1.846154,0,0.615385,-1.230769 +L 0.615385,-1.230769,0,-2.461538 +L 1.230769,1.846154,1.846154,0 +L 0,-1.230769,0.615385,-3.076923 +L 1.846154,1.230769,1.230769,0 +L 1.230769,0,0,-1.230769 +L 0,-1.230769,0,-2.461538 +L 0,-2.461538,0.615385,-3.076923 +L 0.615385,-3.076923,1.846154,-3.692308 + +[|] 1 +L 0,6.153846,0,-0.615385 + +[}] 24 +L 0,8.615385,1.230769,8 +L 1.230769,8,1.846154,7.384615 +L 1.846154,7.384615,1.846154,6.153846 +L 1.846154,6.153846,0.615385,4.923077 +L 0.615385,4.923077,0,3.692308 +L 1.230769,8,1.846154,6.153846 +L 0,4.923077,0.615385,3.076923 +L 1.846154,7.384615,1.230769,6.153846 +L 1.230769,6.153846,0,4.923077 +L 0,4.923077,0,3.692308 +L 0,3.692308,0.615385,3.076923 +L 0.615385,3.076923,1.846154,2.461538 +L 1.846154,2.461538,0.615385,1.846154 +L 0.615385,1.846154,0,1.230769 +L 0,1.230769,0,0 +L 0,0,1.230769,-1.230769 +L 1.230769,-1.230769,1.846154,-2.461538 +L 0.615385,1.846154,0,0 +L 1.846154,-1.230769,1.230769,-3.076923 +L 0,1.230769,0.615385,0 +L 0.615385,0,1.846154,-1.230769 +L 1.846154,-1.230769,1.846154,-2.461538 +L 1.846154,-2.461538,1.230769,-3.076923 +L 1.230769,-3.076923,0,-3.692308 + +#EOF diff --git a/pycam/share/fonts/greeks.cxf b/pycam/share/fonts/greeks.cxf new file mode 100644 index 00000000..e81329a3 --- /dev/null +++ b/pycam/share/fonts/greeks.cxf @@ -0,0 +1,1188 @@ +# Format: QCad II Font +# Creator: Adam Radlowski's "dodajf" program - GRASS font translator +# Version: 1.0.0 +# Name: Greek Simplex +# LetterSpacing: 3.0 +# WordSpacing: 6.75 +# LineSpacingFactor: 1.0 +# Author: Hershey fonts + +[!] 5 +L 0.363636,7.636364,0.363636,2.545455 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +["] 2 +L 0,7.636364,0,5.090909 +L 2.909091,7.636364,2.909091,5.090909 + +[#] 4 +L 2.909091,9.090909,0.363636,-2.545455 +L 5.090909,9.090909,2.545455,-2.545455 +L 0.363636,4.363636,5.454545,4.363636 +L 0,2.181818,5.090909,2.181818 + +[$] 21 +L 1.818182,9.090909,1.818182,-1.454545 +L 3.272727,9.090909,3.272727,-1.454545 +L 5.090909,6.545455,4.363636,7.272727 +L 4.363636,7.272727,3.272727,7.636364 +L 3.272727,7.636364,1.818182,7.636364 +L 1.818182,7.636364,0.727273,7.272727 +L 0.727273,7.272727,0,6.545455 +L 0,6.545455,0,5.818182 +L 0,5.818182,0.363636,5.090909 +L 0.363636,5.090909,0.727273,4.727273 +L 0.727273,4.727273,1.454545,4.363636 +L 1.454545,4.363636,3.636364,3.636364 +L 3.636364,3.636364,4.363636,3.272727 +L 4.363636,3.272727,4.727273,2.909091 +L 4.727273,2.909091,5.090909,2.181818 +L 5.090909,2.181818,5.090909,1.090909 +L 5.090909,1.090909,4.363636,0.363636 +L 4.363636,0.363636,3.272727,0 +L 3.272727,0,1.818182,0 +L 1.818182,0,0.727273,0.363636 +L 0.727273,0.363636,0,1.090909 + +[%] 26 +L 6.545455,7.636364,0,0 +L 1.818182,7.636364,2.545455,6.909091 +L 2.545455,6.909091,2.545455,6.181818 +L 2.545455,6.181818,2.181818,5.454545 +L 2.181818,5.454545,1.454545,5.090909 +L 1.454545,5.090909,0.727273,5.090909 +L 0.727273,5.090909,0,5.818182 +L 0,5.818182,0,6.545455 +L 0,6.545455,0.363636,7.272727 +L 0.363636,7.272727,1.090909,7.636364 +L 1.090909,7.636364,1.818182,7.636364 +L 1.818182,7.636364,2.545455,7.272727 +L 2.545455,7.272727,3.636364,6.909091 +L 3.636364,6.909091,4.727273,6.909091 +L 4.727273,6.909091,5.818182,7.272727 +L 5.818182,7.272727,6.545455,7.636364 +L 5.090909,2.545455,4.363636,2.181818 +L 4.363636,2.181818,4,1.454545 +L 4,1.454545,4,0.727273 +L 4,0.727273,4.727273,0 +L 4.727273,0,5.454545,0 +L 5.454545,0,6.181818,0.363636 +L 6.181818,0.363636,6.545455,1.090909 +L 6.545455,1.090909,6.545455,1.818182 +L 6.545455,1.818182,5.818182,2.545455 +L 5.818182,2.545455,5.090909,2.545455 + +[&] 33 +L 7.272727,4.363636,7.272727,4.727273 +L 7.272727,4.727273,6.909091,5.090909 +L 6.909091,5.090909,6.545455,5.090909 +L 6.545455,5.090909,6.181818,4.727273 +L 6.181818,4.727273,5.818182,4 +L 5.818182,4,5.090909,2.181818 +L 5.090909,2.181818,4.363636,1.090909 +L 4.363636,1.090909,3.636364,0.363636 +L 3.636364,0.363636,2.909091,0 +L 2.909091,0,1.454545,0 +L 1.454545,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 +L 0.363636,0.727273,0,1.454545 +L 0,1.454545,0,2.181818 +L 0,2.181818,0.363636,2.909091 +L 0.363636,2.909091,0.727273,3.272727 +L 0.727273,3.272727,3.272727,4.727273 +L 3.272727,4.727273,3.636364,5.090909 +L 3.636364,5.090909,4,5.818182 +L 4,5.818182,4,6.545455 +L 4,6.545455,3.636364,7.272727 +L 3.636364,7.272727,2.909091,7.636364 +L 2.909091,7.636364,2.181818,7.272727 +L 2.181818,7.272727,1.818182,6.545455 +L 1.818182,6.545455,1.818182,5.818182 +L 1.818182,5.818182,2.181818,4.727273 +L 2.181818,4.727273,2.909091,3.636364 +L 2.909091,3.636364,4.727273,1.090909 +L 4.727273,1.090909,5.454545,0.363636 +L 5.454545,0.363636,6.181818,0 +L 6.181818,0,6.909091,0 +L 6.909091,0,7.272727,0.363636 +L 7.272727,0.363636,7.272727,0.727273 + +['] 6 +L 0.363636,6.909091,0,7.272727 +L 0,7.272727,0.363636,7.636364 +L 0.363636,7.636364,0.727273,7.272727 +L 0.727273,7.272727,0.727273,6.545455 +L 0.727273,6.545455,0.363636,5.818182 +L 0.363636,5.818182,0,5.454545 + +[(] 9 +L 2.545455,9.090909,1.818182,8.363636 +L 1.818182,8.363636,1.090909,7.272727 +L 1.090909,7.272727,0.363636,5.818182 +L 0.363636,5.818182,0,4 +L 0,4,0,2.545455 +L 0,2.545455,0.363636,0.727273 +L 0.363636,0.727273,1.090909,-0.727273 +L 1.090909,-0.727273,1.818182,-1.818182 +L 1.818182,-1.818182,2.545455,-2.545455 + +[)] 9 +L 0,9.090909,0.727273,8.363636 +L 0.727273,8.363636,1.454545,7.272727 +L 1.454545,7.272727,2.181818,5.818182 +L 2.181818,5.818182,2.545455,4 +L 2.545455,4,2.545455,2.545455 +L 2.545455,2.545455,2.181818,0.727273 +L 2.181818,0.727273,1.454545,-0.727273 +L 1.454545,-0.727273,0.727273,-1.818182 +L 0.727273,-1.818182,0,-2.545455 + +[*] 3 +L 1.818182,7.636364,1.818182,3.272727 +L 0,6.545455,3.636364,4.363636 +L 3.636364,6.545455,0,4.363636 + +[+] 2 +L 3.272727,6.545455,3.272727,0 +L 0,3.272727,6.545455,3.272727 + +[,] 7 +L 0.727273,0.363636,0.363636,0 +L 0.363636,0,0,0.363636 +L 0,0.363636,0.363636,0.727273 +L 0.363636,0.727273,0.727273,0.363636 +L 0.727273,0.363636,0.727273,-0.363636 +L 0.727273,-0.363636,0.363636,-1.090909 +L 0.363636,-1.090909,0,-1.454545 + +[-] 1 +L 0,3.272727,6.545455,3.272727 + +[.] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[/] 1 +L 6.545455,9.090909,0,-2.545455 + +[0] 16 +L 2.181818,7.636364,1.090909,7.272727 +L 1.090909,7.272727,0.363636,6.181818 +L 0.363636,6.181818,0,4.363636 +L 0,4.363636,0,3.272727 +L 0,3.272727,0.363636,1.454545 +L 0.363636,1.454545,1.090909,0.363636 +L 1.090909,0.363636,2.181818,0 +L 2.181818,0,2.909091,0 +L 2.909091,0,4,0.363636 +L 4,0.363636,4.727273,1.454545 +L 4.727273,1.454545,5.090909,3.272727 +L 5.090909,3.272727,5.090909,4.363636 +L 5.090909,4.363636,4.727273,6.181818 +L 4.727273,6.181818,4,7.272727 +L 4,7.272727,2.909091,7.636364 +L 2.909091,7.636364,2.181818,7.636364 + +[1] 3 +L 0,6.181818,0.727273,6.545455 +L 0.727273,6.545455,1.818182,7.636364 +L 1.818182,7.636364,1.818182,0 + +[2] 13 +L 0.363636,5.818182,0.363636,6.181818 +L 0.363636,6.181818,0.727273,6.909091 +L 0.727273,6.909091,1.090909,7.272727 +L 1.090909,7.272727,1.818182,7.636364 +L 1.818182,7.636364,3.272727,7.636364 +L 3.272727,7.636364,4,7.272727 +L 4,7.272727,4.363636,6.909091 +L 4.363636,6.909091,4.727273,6.181818 +L 4.727273,6.181818,4.727273,5.454545 +L 4.727273,5.454545,4.363636,4.727273 +L 4.363636,4.727273,3.636364,3.636364 +L 3.636364,3.636364,0,0 +L 0,0,5.090909,0 + +[3] 14 +L 0.727273,7.636364,4.727273,7.636364 +L 4.727273,7.636364,2.545455,4.727273 +L 2.545455,4.727273,3.636364,4.727273 +L 3.636364,4.727273,4.363636,4.363636 +L 4.363636,4.363636,4.727273,4 +L 4.727273,4,5.090909,2.909091 +L 5.090909,2.909091,5.090909,2.181818 +L 5.090909,2.181818,4.727273,1.090909 +L 4.727273,1.090909,4,0.363636 +L 4,0.363636,2.909091,0 +L 2.909091,0,1.818182,0 +L 1.818182,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 +L 0.363636,0.727273,0,1.454545 + +[4] 3 +L 3.636364,7.636364,0,2.545455 +L 0,2.545455,5.454545,2.545455 +L 3.636364,7.636364,3.636364,0 + +[5] 16 +L 4.363636,7.636364,0.727273,7.636364 +L 0.727273,7.636364,0.363636,4.363636 +L 0.363636,4.363636,0.727273,4.727273 +L 0.727273,4.727273,1.818182,5.090909 +L 1.818182,5.090909,2.909091,5.090909 +L 2.909091,5.090909,4,4.727273 +L 4,4.727273,4.727273,4 +L 4.727273,4,5.090909,2.909091 +L 5.090909,2.909091,5.090909,2.181818 +L 5.090909,2.181818,4.727273,1.090909 +L 4.727273,1.090909,4,0.363636 +L 4,0.363636,2.909091,0 +L 2.909091,0,1.818182,0 +L 1.818182,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 +L 0.363636,0.727273,0,1.454545 + +[6] 22 +L 4.363636,6.545455,4,7.272727 +L 4,7.272727,2.909091,7.636364 +L 2.909091,7.636364,2.181818,7.636364 +L 2.181818,7.636364,1.090909,7.272727 +L 1.090909,7.272727,0.363636,6.181818 +L 0.363636,6.181818,0,4.363636 +L 0,4.363636,0,2.545455 +L 0,2.545455,0.363636,1.090909 +L 0.363636,1.090909,1.090909,0.363636 +L 1.090909,0.363636,2.181818,0 +L 2.181818,0,2.545455,0 +L 2.545455,0,3.636364,0.363636 +L 3.636364,0.363636,4.363636,1.090909 +L 4.363636,1.090909,4.727273,2.181818 +L 4.727273,2.181818,4.727273,2.545455 +L 4.727273,2.545455,4.363636,3.636364 +L 4.363636,3.636364,3.636364,4.363636 +L 3.636364,4.363636,2.545455,4.727273 +L 2.545455,4.727273,2.181818,4.727273 +L 2.181818,4.727273,1.090909,4.363636 +L 1.090909,4.363636,0.363636,3.636364 +L 0.363636,3.636364,0,2.545455 + +[7] 2 +L 5.090909,7.636364,1.454545,0 +L 0,7.636364,5.090909,7.636364 + +[8] 28 +L 1.818182,7.636364,0.727273,7.272727 +L 0.727273,7.272727,0.363636,6.545455 +L 0.363636,6.545455,0.363636,5.818182 +L 0.363636,5.818182,0.727273,5.090909 +L 0.727273,5.090909,1.454545,4.727273 +L 1.454545,4.727273,2.909091,4.363636 +L 2.909091,4.363636,4,4 +L 4,4,4.727273,3.272727 +L 4.727273,3.272727,5.090909,2.545455 +L 5.090909,2.545455,5.090909,1.454545 +L 5.090909,1.454545,4.727273,0.727273 +L 4.727273,0.727273,4.363636,0.363636 +L 4.363636,0.363636,3.272727,0 +L 3.272727,0,1.818182,0 +L 1.818182,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 +L 0.363636,0.727273,0,1.454545 +L 0,1.454545,0,2.545455 +L 0,2.545455,0.363636,3.272727 +L 0.363636,3.272727,1.090909,4 +L 1.090909,4,2.181818,4.363636 +L 2.181818,4.363636,3.636364,4.727273 +L 3.636364,4.727273,4.363636,5.090909 +L 4.363636,5.090909,4.727273,5.818182 +L 4.727273,5.818182,4.727273,6.545455 +L 4.727273,6.545455,4.363636,7.272727 +L 4.363636,7.272727,3.272727,7.636364 +L 3.272727,7.636364,1.818182,7.636364 + +[9] 22 +L 4.727273,5.090909,4.363636,4 +L 4.363636,4,3.636364,3.272727 +L 3.636364,3.272727,2.545455,2.909091 +L 2.545455,2.909091,2.181818,2.909091 +L 2.181818,2.909091,1.090909,3.272727 +L 1.090909,3.272727,0.363636,4 +L 0.363636,4,0,5.090909 +L 0,5.090909,0,5.454545 +L 0,5.454545,0.363636,6.545455 +L 0.363636,6.545455,1.090909,7.272727 +L 1.090909,7.272727,2.181818,7.636364 +L 2.181818,7.636364,2.545455,7.636364 +L 2.545455,7.636364,3.636364,7.272727 +L 3.636364,7.272727,4.363636,6.545455 +L 4.363636,6.545455,4.727273,5.090909 +L 4.727273,5.090909,4.727273,3.272727 +L 4.727273,3.272727,4.363636,1.454545 +L 4.363636,1.454545,3.636364,0.363636 +L 3.636364,0.363636,2.545455,0 +L 2.545455,0,1.818182,0 +L 1.818182,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,1.090909 + +[:] 8 +L 0.363636,5.090909,0,4.727273 +L 0,4.727273,0.363636,4.363636 +L 0.363636,4.363636,0.727273,4.727273 +L 0.727273,4.727273,0.363636,5.090909 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[;] 11 +L 0.363636,5.090909,0,4.727273 +L 0,4.727273,0.363636,4.363636 +L 0.363636,4.363636,0.727273,4.727273 +L 0.727273,4.727273,0.363636,5.090909 +L 0.727273,0.363636,0.363636,0 +L 0.363636,0,0,0.363636 +L 0,0.363636,0.363636,0.727273 +L 0.363636,0.727273,0.727273,0.363636 +L 0.727273,0.363636,0.727273,-0.363636 +L 0.727273,-0.363636,0.363636,-1.090909 +L 0.363636,-1.090909,0,-1.454545 + +[<] 2 +L 5.818182,6.545455,0,3.272727 +L 0,3.272727,5.818182,0 + +[=] 2 +L 0,4.363636,6.545455,4.363636 +L 0,2.181818,6.545455,2.181818 + +[>] 2 +L 0,6.545455,5.818182,3.272727 +L 5.818182,3.272727,0,0 + +[?] 17 +L 0,5.818182,0,6.181818 +L 0,6.181818,0.363636,6.909091 +L 0.363636,6.909091,0.727273,7.272727 +L 0.727273,7.272727,1.454545,7.636364 +L 1.454545,7.636364,2.909091,7.636364 +L 2.909091,7.636364,3.636364,7.272727 +L 3.636364,7.272727,4,6.909091 +L 4,6.909091,4.363636,6.181818 +L 4.363636,6.181818,4.363636,5.454545 +L 4.363636,5.454545,4,4.727273 +L 4,4.727273,3.636364,4.363636 +L 3.636364,4.363636,2.181818,3.636364 +L 2.181818,3.636364,2.181818,2.545455 +L 2.181818,0.727273,1.818182,0.363636 +L 1.818182,0.363636,2.181818,0 +L 2.181818,0,2.545455,0.363636 +L 2.545455,0.363636,2.181818,0.727273 + +[@] 48 +L 5.454545,4.727273,5.090909,5.454545 +L 5.090909,5.454545,4.363636,5.818182 +L 4.363636,5.818182,3.272727,5.818182 +L 3.272727,5.818182,2.545455,5.454545 +L 2.545455,5.454545,2.181818,5.090909 +L 2.181818,5.090909,1.818182,4 +L 1.818182,4,1.818182,2.909091 +L 1.818182,2.909091,2.181818,2.181818 +L 2.181818,2.181818,2.909091,1.818182 +L 2.909091,1.818182,4,1.818182 +L 4,1.818182,4.727273,2.181818 +L 4.727273,2.181818,5.090909,2.909091 +L 3.272727,5.818182,2.545455,5.090909 +L 2.545455,5.090909,2.181818,4 +L 2.181818,4,2.181818,2.909091 +L 2.181818,2.909091,2.545455,2.181818 +L 2.545455,2.181818,2.909091,1.818182 +L 5.454545,5.818182,5.090909,2.909091 +L 5.090909,2.909091,5.090909,2.181818 +L 5.090909,2.181818,5.818182,1.818182 +L 5.818182,1.818182,6.545455,1.818182 +L 6.545455,1.818182,7.272727,2.545455 +L 7.272727,2.545455,7.636364,3.636364 +L 7.636364,3.636364,7.636364,4.363636 +L 7.636364,4.363636,7.272727,5.454545 +L 7.272727,5.454545,6.909091,6.181818 +L 6.909091,6.181818,6.181818,6.909091 +L 6.181818,6.909091,5.454545,7.272727 +L 5.454545,7.272727,4.363636,7.636364 +L 4.363636,7.636364,3.272727,7.636364 +L 3.272727,7.636364,2.181818,7.272727 +L 2.181818,7.272727,1.454545,6.909091 +L 1.454545,6.909091,0.727273,6.181818 +L 0.727273,6.181818,0.363636,5.454545 +L 0.363636,5.454545,0,4.363636 +L 0,4.363636,0,3.272727 +L 0,3.272727,0.363636,2.181818 +L 0.363636,2.181818,0.727273,1.454545 +L 0.727273,1.454545,1.454545,0.727273 +L 1.454545,0.727273,2.181818,0.363636 +L 2.181818,0.363636,3.272727,0 +L 3.272727,0,4.363636,0 +L 4.363636,0,5.454545,0.363636 +L 5.454545,0.363636,6.181818,0.727273 +L 6.181818,0.727273,6.545455,1.090909 +L 5.818182,5.818182,5.454545,2.909091 +L 5.454545,2.909091,5.454545,2.181818 +L 5.454545,2.181818,5.818182,1.818182 + +[A] 3 +L 2.909091,7.636364,0,0 +L 2.909091,7.636364,5.818182,0 +L 1.090909,2.545455,4.727273,2.545455 + +[B] 18 +L 0,7.636364,0,0 +L 0,7.636364,3.272727,7.636364 +L 3.272727,7.636364,4.363636,7.272727 +L 4.363636,7.272727,4.727273,6.909091 +L 4.727273,6.909091,5.090909,6.181818 +L 5.090909,6.181818,5.090909,5.454545 +L 5.090909,5.454545,4.727273,4.727273 +L 4.727273,4.727273,4.363636,4.363636 +L 4.363636,4.363636,3.272727,4 +L 0,4,3.272727,4 +L 3.272727,4,4.363636,3.636364 +L 4.363636,3.636364,4.727273,3.272727 +L 4.727273,3.272727,5.090909,2.545455 +L 5.090909,2.545455,5.090909,1.454545 +L 5.090909,1.454545,4.727273,0.727273 +L 4.727273,0.727273,4.363636,0.363636 +L 4.363636,0.363636,3.272727,0 +L 3.272727,0,0,0 + +[C] 2 +L 0,7.636364,0,0 +L 0,7.636364,4.363636,7.636364 + +[D] 3 +L 2.909091,7.636364,0,0 +L 2.909091,7.636364,5.818182,0 +L 0,0,5.818182,0 + +[E] 4 +L 0,7.636364,0,0 +L 0,7.636364,4.727273,7.636364 +L 0,4,2.909091,4 +L 0,0,4.727273,0 + +[F] 3 +L 5.090909,7.636364,0,0 +L 0,7.636364,5.090909,7.636364 +L 0,0,5.090909,0 + +[G] 3 +L 0,7.636364,0,0 +L 5.090909,7.636364,5.090909,0 +L 0,4,5.090909,4 + +[H] 21 +L 2.181818,7.636364,1.454545,7.272727 +L 1.454545,7.272727,0.727273,6.545455 +L 0.727273,6.545455,0.363636,5.818182 +L 0.363636,5.818182,0,4.727273 +L 0,4.727273,0,2.909091 +L 0,2.909091,0.363636,1.818182 +L 0.363636,1.818182,0.727273,1.090909 +L 0.727273,1.090909,1.454545,0.363636 +L 1.454545,0.363636,2.181818,0 +L 2.181818,0,3.636364,0 +L 3.636364,0,4.363636,0.363636 +L 4.363636,0.363636,5.090909,1.090909 +L 5.090909,1.090909,5.454545,1.818182 +L 5.454545,1.818182,5.818182,2.909091 +L 5.818182,2.909091,5.818182,4.727273 +L 5.818182,4.727273,5.454545,5.818182 +L 5.454545,5.818182,5.090909,6.545455 +L 5.090909,6.545455,4.363636,7.272727 +L 4.363636,7.272727,3.636364,7.636364 +L 3.636364,7.636364,2.181818,7.636364 +L 1.818182,4,4,4 + +[I] 1 +L 0,7.636364,0,0 + +[J] 3 +L 0,7.636364,0,0 +L 5.090909,7.636364,0,2.545455 +L 1.818182,4.363636,5.090909,0 + +[K] 2 +L 2.909091,7.636364,0,0 +L 2.909091,7.636364,5.818182,0 + +[L] 4 +L 0,7.636364,0,0 +L 0,7.636364,2.909091,0 +L 5.818182,7.636364,2.909091,0 +L 5.818182,7.636364,5.818182,0 + +[M] 3 +L 0,7.636364,0,0 +L 0,7.636364,5.090909,0 +L 5.090909,7.636364,5.090909,0 + +[N] 3 +L 0,7.636364,5.090909,7.636364 +L 1.454545,4,3.636364,4 +L 0,0,5.090909,0 + +[O] 20 +L 2.181818,7.636364,1.454545,7.272727 +L 1.454545,7.272727,0.727273,6.545455 +L 0.727273,6.545455,0.363636,5.818182 +L 0.363636,5.818182,0,4.727273 +L 0,4.727273,0,2.909091 +L 0,2.909091,0.363636,1.818182 +L 0.363636,1.818182,0.727273,1.090909 +L 0.727273,1.090909,1.454545,0.363636 +L 1.454545,0.363636,2.181818,0 +L 2.181818,0,3.636364,0 +L 3.636364,0,4.363636,0.363636 +L 4.363636,0.363636,5.090909,1.090909 +L 5.090909,1.090909,5.454545,1.818182 +L 5.454545,1.818182,5.818182,2.909091 +L 5.818182,2.909091,5.818182,4.727273 +L 5.818182,4.727273,5.454545,5.818182 +L 5.454545,5.818182,5.090909,6.545455 +L 5.090909,6.545455,4.363636,7.272727 +L 4.363636,7.272727,3.636364,7.636364 +L 3.636364,7.636364,2.181818,7.636364 + +[P] 3 +L 0,7.636364,0,0 +L 5.090909,7.636364,5.090909,0 +L 0,7.636364,5.090909,7.636364 + +[Q] 10 +L 0,7.636364,0,0 +L 0,7.636364,3.272727,7.636364 +L 3.272727,7.636364,4.363636,7.272727 +L 4.363636,7.272727,4.727273,6.909091 +L 4.727273,6.909091,5.090909,6.181818 +L 5.090909,6.181818,5.090909,5.090909 +L 5.090909,5.090909,4.727273,4.363636 +L 4.727273,4.363636,4.363636,4 +L 4.363636,4,3.272727,3.636364 +L 3.272727,3.636364,0,3.636364 + +[R] 4 +L 0,7.636364,2.545455,4 +L 2.545455,4,0,0 +L 0,7.636364,5.090909,7.636364 +L 0,0,5.090909,0 + +[S] 2 +L 2.545455,7.636364,2.545455,0 +L 0,7.636364,5.090909,7.636364 + +[T] 15 +L 0,5.818182,0,6.545455 +L 0,6.545455,0.363636,7.272727 +L 0.363636,7.272727,0.727273,7.636364 +L 0.727273,7.636364,1.454545,7.636364 +L 1.454545,7.636364,1.818182,7.272727 +L 1.818182,7.272727,2.181818,6.545455 +L 2.181818,6.545455,2.545455,5.090909 +L 2.545455,5.090909,2.545455,0 +L 5.090909,5.818182,5.090909,6.545455 +L 5.090909,6.545455,4.727273,7.272727 +L 4.727273,7.272727,4.363636,7.636364 +L 4.363636,7.636364,3.636364,7.636364 +L 3.636364,7.636364,3.272727,7.272727 +L 3.272727,7.272727,2.909091,6.545455 +L 2.909091,6.545455,2.545455,5.090909 + +[U] 17 +L 2.545455,7.636364,2.545455,0 +L 1.818182,5.818182,0.727273,5.454545 +L 0.727273,5.454545,0.363636,5.090909 +L 0.363636,5.090909,0,4.363636 +L 0,4.363636,0,3.272727 +L 0,3.272727,0.363636,2.545455 +L 0.363636,2.545455,0.727273,2.181818 +L 0.727273,2.181818,1.818182,1.818182 +L 1.818182,1.818182,3.272727,1.818182 +L 3.272727,1.818182,4.363636,2.181818 +L 4.363636,2.181818,4.727273,2.545455 +L 4.727273,2.545455,5.090909,3.272727 +L 5.090909,3.272727,5.090909,4.363636 +L 5.090909,4.363636,4.727273,5.090909 +L 4.727273,5.090909,4.363636,5.454545 +L 4.363636,5.454545,3.272727,5.818182 +L 3.272727,5.818182,1.818182,5.818182 + +[V] 2 +L 0,7.636364,5.090909,0 +L 0,0,5.090909,7.636364 + +[W] 14 +L 3.272727,7.636364,3.272727,0 +L 0,5.454545,0.363636,5.454545 +L 0.363636,5.454545,0.727273,5.090909 +L 0.727273,5.090909,1.090909,3.636364 +L 1.090909,3.636364,1.454545,2.909091 +L 1.454545,2.909091,1.818182,2.545455 +L 1.818182,2.545455,2.909091,2.181818 +L 2.909091,2.181818,3.636364,2.181818 +L 3.636364,2.181818,4.727273,2.545455 +L 4.727273,2.545455,5.090909,2.909091 +L 5.090909,2.909091,5.454545,3.636364 +L 5.454545,3.636364,5.818182,5.090909 +L 5.818182,5.090909,6.181818,5.454545 +L 6.181818,5.454545,6.545455,5.454545 + +[X] 15 +L 0,0,1.454545,0 +L 1.454545,0,0.363636,2.545455 +L 0.363636,2.545455,0,4 +L 0,4,0,5.454545 +L 0,5.454545,0.363636,6.545455 +L 0.363636,6.545455,1.090909,7.272727 +L 1.090909,7.272727,2.181818,7.636364 +L 2.181818,7.636364,2.909091,7.636364 +L 2.909091,7.636364,4,7.272727 +L 4,7.272727,4.727273,6.545455 +L 4.727273,6.545455,5.090909,5.454545 +L 5.090909,5.454545,5.090909,4 +L 5.090909,4,4.727273,2.545455 +L 4.727273,2.545455,3.636364,0 +L 3.636364,0,5.090909,0 + +[Y] 0 + +[Z] 0 + +[[] 4 +L 0,9.090909,0,-2.545455 +L 0.363636,9.090909,0.363636,-2.545455 +L 0,9.090909,2.545455,9.090909 +L 0,-2.545455,2.545455,-2.545455 + +[\] 1 +L 0,7.636364,5.090909,-1.090909 + +[]] 4 +L 2.181818,9.090909,2.181818,-2.545455 +L 2.545455,9.090909,2.545455,-2.545455 +L 0,9.090909,2.545455,9.090909 +L 0,-2.545455,2.545455,-2.545455 + +[^] 5 +L 1.090909,5.454545,1.818182,6.545455 +L 1.818182,6.545455,2.545455,5.454545 +L 0,4.363636,1.818182,6.181818 +L 1.818182,6.181818,3.636364,4.363636 +L 1.818182,6.181818,1.818182,0 + +[_] 1 +L 0,-0.727273,5.818182,-0.727273 + +[`] 6 +L 0.727273,7.636364,0.363636,7.272727 +L 0.363636,7.272727,0,6.545455 +L 0,6.545455,0,5.818182 +L 0,5.818182,0.363636,5.454545 +L 0.363636,5.454545,0.727273,5.818182 +L 0.727273,5.818182,0.363636,6.181818 + +[a] 20 +L 2.181818,5.090909,1.454545,4.727273 +L 1.454545,4.727273,0.727273,4 +L 0.727273,4,0.363636,3.272727 +L 0.363636,3.272727,0,2.181818 +L 0,2.181818,0,1.090909 +L 0,1.090909,0.363636,0.363636 +L 0.363636,0.363636,1.090909,0 +L 1.090909,0,1.818182,0 +L 1.818182,0,2.545455,0.363636 +L 2.545455,0.363636,3.636364,1.454545 +L 3.636364,1.454545,4.363636,2.545455 +L 4.363636,2.545455,5.090909,4 +L 5.090909,4,5.454545,5.090909 +L 2.181818,5.090909,2.909091,5.090909 +L 2.909091,5.090909,3.272727,4.727273 +L 3.272727,4.727273,3.636364,4 +L 3.636364,4,4.363636,1.090909 +L 4.363636,1.090909,4.727273,0.363636 +L 4.727273,0.363636,5.090909,0 +L 5.090909,0,5.454545,0 + +[b] 25 +L 3.636364,7.636364,2.909091,7.272727 +L 2.909091,7.272727,2.181818,6.545455 +L 2.181818,6.545455,1.454545,5.090909 +L 1.454545,5.090909,1.090909,4 +L 1.090909,4,0.727273,2.545455 +L 0.727273,2.545455,0.363636,0.363636 +L 0.363636,0.363636,0,-2.545455 +L 3.636364,7.636364,4.363636,7.636364 +L 4.363636,7.636364,5.090909,6.909091 +L 5.090909,6.909091,5.090909,5.818182 +L 5.090909,5.818182,4.727273,5.090909 +L 4.727273,5.090909,4.363636,4.727273 +L 4.363636,4.727273,3.636364,4.363636 +L 3.636364,4.363636,2.545455,4.363636 +L 2.545455,4.363636,3.272727,4 +L 3.272727,4,4,3.272727 +L 4,3.272727,4.363636,2.545455 +L 4.363636,2.545455,4.363636,1.454545 +L 4.363636,1.454545,4,0.727273 +L 4,0.727273,3.636364,0.363636 +L 3.636364,0.363636,2.909091,0 +L 2.909091,0,2.181818,0 +L 2.181818,0,1.454545,0.363636 +L 1.454545,0.363636,1.090909,0.727273 +L 1.090909,0.727273,0.727273,1.818182 + +[c] 13 +L 0,4,0.727273,4.727273 +L 0.727273,4.727273,1.454545,5.090909 +L 1.454545,5.090909,1.818182,5.090909 +L 1.818182,5.090909,2.545455,4.727273 +L 2.545455,4.727273,2.909091,4.363636 +L 2.909091,4.363636,3.272727,3.272727 +L 3.272727,3.272727,3.272727,1.818182 +L 3.272727,1.818182,2.909091,0 +L 5.818182,5.090909,5.454545,4 +L 5.454545,4,5.090909,3.272727 +L 5.090909,3.272727,2.909091,0 +L 2.909091,0,2.181818,-1.454545 +L 2.181818,-1.454545,1.818182,-2.545455 + +[d] 22 +L 2.909091,5.090909,1.818182,5.090909 +L 1.818182,5.090909,1.090909,4.727273 +L 1.090909,4.727273,0.363636,4 +L 0.363636,4,0,2.909091 +L 0,2.909091,0,1.818182 +L 0,1.818182,0.363636,0.727273 +L 0.363636,0.727273,0.727273,0.363636 +L 0.727273,0.363636,1.454545,0 +L 1.454545,0,2.181818,0 +L 2.181818,0,2.909091,0.363636 +L 2.909091,0.363636,3.636364,1.090909 +L 3.636364,1.090909,4,2.181818 +L 4,2.181818,4,3.272727 +L 4,3.272727,3.636364,4.363636 +L 3.636364,4.363636,2.909091,5.090909 +L 2.909091,5.090909,2.181818,5.818182 +L 2.181818,5.818182,1.818182,6.545455 +L 1.818182,6.545455,1.818182,7.272727 +L 1.818182,7.272727,2.181818,7.636364 +L 2.181818,7.636364,2.909091,7.636364 +L 2.909091,7.636364,3.636364,7.272727 +L 3.636364,7.272727,4.363636,6.545455 + +[e] 15 +L 3.636364,4.363636,3.272727,4.727273 +L 3.272727,4.727273,2.545455,5.090909 +L 2.545455,5.090909,1.454545,5.090909 +L 1.454545,5.090909,0.727273,4.727273 +L 0.727273,4.727273,0.727273,4 +L 0.727273,4,1.090909,3.272727 +L 1.090909,3.272727,2.181818,2.909091 +L 2.181818,2.909091,0.727273,2.545455 +L 0.727273,2.545455,0,1.818182 +L 0,1.818182,0,1.090909 +L 0,1.090909,0.363636,0.363636 +L 0.363636,0.363636,1.090909,0 +L 1.090909,0,2.181818,0 +L 2.181818,0,2.909091,0.363636 +L 2.909091,0.363636,3.636364,1.090909 + +[f] 19 +L 2.545455,7.636364,1.818182,7.272727 +L 1.818182,7.272727,1.454545,6.909091 +L 1.454545,6.909091,1.454545,6.545455 +L 1.454545,6.545455,1.818182,6.181818 +L 1.818182,6.181818,2.909091,5.818182 +L 2.909091,5.818182,4,5.818182 +L 4,5.818182,2.545455,5.090909 +L 2.545455,5.090909,1.454545,4.363636 +L 1.454545,4.363636,0.363636,3.272727 +L 0.363636,3.272727,0,2.181818 +L 0,2.181818,0,1.454545 +L 0,1.454545,0.363636,0.727273 +L 0.363636,0.727273,1.090909,0 +L 1.090909,0,2.181818,-0.727273 +L 2.181818,-0.727273,2.545455,-1.454545 +L 2.545455,-1.454545,2.545455,-2.181818 +L 2.545455,-2.181818,2.181818,-2.545455 +L 2.181818,-2.545455,1.454545,-2.545455 +L 1.454545,-2.545455,1.090909,-1.818182 + +[g] 15 +L 0,3.636364,0.363636,4.363636 +L 0.363636,4.363636,1.090909,5.090909 +L 1.090909,5.090909,1.818182,5.090909 +L 1.818182,5.090909,2.181818,4.727273 +L 2.181818,4.727273,2.181818,4 +L 2.181818,4,1.818182,2.545455 +L 1.818182,2.545455,1.090909,0 +L 1.818182,2.545455,2.545455,4 +L 2.545455,4,3.272727,4.727273 +L 3.272727,4.727273,4,5.090909 +L 4,5.090909,4.727273,5.090909 +L 4.727273,5.090909,5.454545,4.363636 +L 5.454545,4.363636,5.454545,3.272727 +L 5.454545,3.272727,5.090909,1.454545 +L 5.090909,1.454545,4,-2.545455 + +[h] 25 +L 0,3.636364,0.363636,4.363636 +L 0.363636,4.363636,1.090909,5.090909 +L 1.090909,5.090909,1.818182,5.090909 +L 1.818182,5.090909,2.181818,4.727273 +L 2.181818,4.727273,2.181818,4 +L 2.181818,4,1.818182,2.181818 +L 1.818182,2.181818,1.818182,1.090909 +L 1.818182,1.090909,2.181818,0.363636 +L 2.181818,0.363636,2.545455,0 +L 2.545455,0,3.272727,0 +L 3.272727,0,4,0.363636 +L 4,0.363636,4.727273,1.454545 +L 4.727273,1.454545,5.090909,2.181818 +L 5.090909,2.181818,5.454545,3.272727 +L 5.454545,3.272727,5.818182,5.090909 +L 5.818182,5.090909,5.818182,6.181818 +L 5.818182,6.181818,5.454545,7.272727 +L 5.454545,7.272727,4.727273,7.636364 +L 4.727273,7.636364,4,7.636364 +L 4,7.636364,3.636364,6.909091 +L 3.636364,6.909091,3.636364,6.181818 +L 3.636364,6.181818,4,5.090909 +L 4,5.090909,4.727273,4 +L 4.727273,4,5.454545,3.272727 +L 5.454545,3.272727,6.545455,2.545455 + +[i] 7 +L 1.090909,5.090909,0.363636,2.545455 +L 0.363636,2.545455,0,1.090909 +L 0,1.090909,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,1.090909,0 +L 1.090909,0,1.818182,0.727273 +L 1.818182,0.727273,2.181818,1.454545 + +[j] 13 +L 1.454545,5.090909,0,0 +L 5.090909,4.727273,4.727273,5.090909 +L 4.727273,5.090909,4.363636,5.090909 +L 4.363636,5.090909,3.636364,4.727273 +L 3.636364,4.727273,2.181818,3.272727 +L 2.181818,3.272727,1.454545,2.909091 +L 1.454545,2.909091,1.090909,2.909091 +L 1.090909,2.909091,1.818182,2.545455 +L 1.818182,2.545455,2.181818,2.181818 +L 2.181818,2.181818,2.909091,0.363636 +L 2.909091,0.363636,3.272727,0 +L 3.272727,0,3.636364,0 +L 3.636364,0,4,0.363636 + +[k] 5 +L 0,7.636364,0.727273,7.636364 +L 0.727273,7.636364,1.454545,7.272727 +L 1.454545,7.272727,1.818182,6.909091 +L 1.818182,6.909091,4.727273,0 +L 2.545455,5.090909,0.363636,0 + +[l] 15 +L 2.181818,5.090909,0,-2.545455 +L 1.818182,3.636364,1.454545,1.818182 +L 1.454545,1.818182,1.454545,0.727273 +L 1.454545,0.727273,2.181818,0 +L 2.181818,0,2.909091,0 +L 2.909091,0,3.636364,0.363636 +L 3.636364,0.363636,4.363636,1.090909 +L 4.363636,1.090909,5.090909,2.545455 +L 5.818182,5.090909,5.090909,2.545455 +L 5.090909,2.545455,4.727273,1.090909 +L 4.727273,1.090909,4.727273,0.363636 +L 4.727273,0.363636,5.090909,0 +L 5.090909,0,5.818182,0 +L 5.818182,0,6.545455,0.727273 +L 6.545455,0.727273,6.909091,1.454545 + +[m] 10 +L 0,5.090909,1.090909,5.090909 +L 1.090909,5.090909,0.727273,2.909091 +L 0.727273,2.909091,0.363636,1.090909 +L 0.363636,1.090909,0,0 +L 4.727273,5.090909,4.363636,4 +L 4.363636,4,4,3.272727 +L 4,3.272727,3.272727,2.181818 +L 3.272727,2.181818,2.181818,1.090909 +L 2.181818,1.090909,1.090909,0.363636 +L 1.090909,0.363636,0,0 + +[n] 23 +L 2.545455,7.636364,1.818182,7.272727 +L 1.818182,7.272727,1.454545,6.909091 +L 1.454545,6.909091,1.454545,6.545455 +L 1.454545,6.545455,1.818182,6.181818 +L 1.818182,6.181818,2.909091,5.818182 +L 2.909091,5.818182,4,5.818182 +L 2.909091,5.818182,1.818182,5.454545 +L 1.818182,5.454545,1.090909,5.090909 +L 1.090909,5.090909,0.727273,4.363636 +L 0.727273,4.363636,0.727273,3.636364 +L 0.727273,3.636364,1.454545,2.909091 +L 1.454545,2.909091,2.545455,2.545455 +L 2.545455,2.545455,3.272727,2.545455 +L 2.545455,2.545455,1.090909,2.181818 +L 1.090909,2.181818,0.363636,1.818182 +L 0.363636,1.818182,0,1.090909 +L 0,1.090909,0,0.363636 +L 0,0.363636,0.727273,-0.363636 +L 0.727273,-0.363636,2.181818,-1.090909 +L 2.181818,-1.090909,2.545455,-1.454545 +L 2.545455,-1.454545,2.545455,-2.181818 +L 2.545455,-2.181818,1.818182,-2.545455 +L 1.818182,-2.545455,1.090909,-2.545455 + +[o] 16 +L 1.818182,5.090909,1.090909,4.727273 +L 1.090909,4.727273,0.363636,4 +L 0.363636,4,0,2.909091 +L 0,2.909091,0,1.818182 +L 0,1.818182,0.363636,0.727273 +L 0.363636,0.727273,0.727273,0.363636 +L 0.727273,0.363636,1.454545,0 +L 1.454545,0,2.181818,0 +L 2.181818,0,2.909091,0.363636 +L 2.909091,0.363636,3.636364,1.090909 +L 3.636364,1.090909,4,2.181818 +L 4,2.181818,4,3.272727 +L 4,3.272727,3.636364,4.363636 +L 3.636364,4.363636,3.272727,4.727273 +L 3.272727,4.727273,2.545455,5.090909 +L 2.545455,5.090909,1.818182,5.090909 + +[p] 7 +L 2.545455,5.090909,1.090909,0 +L 4.363636,5.090909,4.727273,2.909091 +L 4.727273,2.909091,5.090909,1.090909 +L 5.090909,1.090909,5.454545,0 +L 0,4,0.727273,4.727273 +L 0.727273,4.727273,1.818182,5.090909 +L 1.818182,5.090909,6.545455,5.090909 + +[q] 17 +L 1.454545,2.909091,1.454545,1.818182 +L 1.454545,1.818182,1.818182,0.727273 +L 1.818182,0.727273,2.181818,0.363636 +L 2.181818,0.363636,2.909091,0 +L 2.909091,0,3.636364,0 +L 3.636364,0,4.363636,0.363636 +L 4.363636,0.363636,5.090909,1.090909 +L 5.090909,1.090909,5.454545,2.181818 +L 5.454545,2.181818,5.454545,3.272727 +L 5.454545,3.272727,5.090909,4.363636 +L 5.090909,4.363636,4.727273,4.727273 +L 4.727273,4.727273,4,5.090909 +L 4,5.090909,3.272727,5.090909 +L 3.272727,5.090909,2.545455,4.727273 +L 2.545455,4.727273,1.818182,4 +L 1.818182,4,1.454545,2.909091 +L 1.454545,2.909091,0,-2.545455 + +[r] 16 +L 5.454545,5.090909,1.818182,5.090909 +L 1.818182,5.090909,1.090909,4.727273 +L 1.090909,4.727273,0.363636,4 +L 0.363636,4,0,2.909091 +L 0,2.909091,0,1.818182 +L 0,1.818182,0.363636,0.727273 +L 0.363636,0.727273,0.727273,0.363636 +L 0.727273,0.363636,1.454545,0 +L 1.454545,0,2.181818,0 +L 2.181818,0,2.909091,0.363636 +L 2.909091,0.363636,3.636364,1.090909 +L 3.636364,1.090909,4,2.181818 +L 4,2.181818,4,3.272727 +L 4,3.272727,3.636364,4.363636 +L 3.636364,4.363636,3.272727,4.727273 +L 3.272727,4.727273,2.545455,5.090909 + +[s] 4 +L 3.272727,5.090909,2.181818,0 +L 0,4,0.727273,4.727273 +L 0.727273,4.727273,1.818182,5.090909 +L 1.818182,5.090909,5.818182,5.090909 + +[t] 14 +L 0,3.636364,0.363636,4.363636 +L 0.363636,4.363636,1.090909,5.090909 +L 1.090909,5.090909,1.818182,5.090909 +L 1.818182,5.090909,2.181818,4.727273 +L 2.181818,4.727273,2.181818,4 +L 2.181818,4,1.454545,1.818182 +L 1.454545,1.818182,1.454545,0.727273 +L 1.454545,0.727273,2.181818,0 +L 2.181818,0,2.909091,0 +L 2.909091,0,4,0.363636 +L 4,0.363636,4.727273,1.090909 +L 4.727273,1.090909,5.454545,2.545455 +L 5.454545,2.545455,5.818182,4 +L 5.818182,4,5.818182,5.090909 + +[u] 19 +L 1.818182,4.727273,1.090909,4.363636 +L 1.090909,4.363636,0.363636,3.636364 +L 0.363636,3.636364,0,2.545455 +L 0,2.545455,0,1.454545 +L 0,1.454545,0.363636,0.727273 +L 0.363636,0.727273,0.727273,0.363636 +L 0.727273,0.363636,1.454545,0 +L 1.454545,0,2.545455,0 +L 2.545455,0,3.636364,0.363636 +L 3.636364,0.363636,4.727273,1.090909 +L 4.727273,1.090909,5.454545,2.181818 +L 5.454545,2.181818,5.818182,3.272727 +L 5.818182,3.272727,5.818182,4.363636 +L 5.818182,4.363636,5.090909,5.090909 +L 5.090909,5.090909,4.363636,5.090909 +L 4.363636,5.090909,3.636364,4.363636 +L 3.636364,4.363636,2.909091,2.909091 +L 2.909091,2.909091,2.181818,1.090909 +L 2.181818,1.090909,1.090909,-2.545455 + +[v] 10 +L 0.363636,5.090909,1.090909,5.090909 +L 1.090909,5.090909,1.818182,4.363636 +L 1.818182,4.363636,4,-1.818182 +L 4,-1.818182,4.727273,-2.545455 +L 4.727273,-2.545455,5.454545,-2.545455 +L 5.818182,5.090909,5.454545,4.363636 +L 5.454545,4.363636,4.727273,3.272727 +L 4.727273,3.272727,1.090909,-0.727273 +L 1.090909,-0.727273,0.363636,-1.818182 +L 0.363636,-1.818182,0,-2.545455 + +[w] 16 +L 5.454545,7.636364,2.545455,-2.545455 +L 0,3.636364,0.363636,4.363636 +L 0.363636,4.363636,1.090909,5.090909 +L 1.090909,5.090909,1.818182,5.090909 +L 1.818182,5.090909,2.181818,4.727273 +L 2.181818,4.727273,2.181818,4 +L 2.181818,4,1.818182,2.181818 +L 1.818182,2.181818,1.818182,1.090909 +L 1.818182,1.090909,2.181818,0.363636 +L 2.181818,0.363636,2.909091,0 +L 2.909091,0,3.636364,0 +L 3.636364,0,4.727273,0.363636 +L 4.727273,0.363636,5.454545,1.090909 +L 5.454545,1.090909,6.181818,2.181818 +L 6.181818,2.181818,6.909091,4 +L 6.909091,4,7.272727,5.090909 + +[x] 19 +L 1.818182,5.090909,1.090909,4.727273 +L 1.090909,4.727273,0.363636,3.636364 +L 0.363636,3.636364,0,2.545455 +L 0,2.545455,0,1.454545 +L 0,1.454545,0.363636,0.363636 +L 0.363636,0.363636,0.727273,0 +L 0.727273,0,1.454545,0 +L 1.454545,0,2.181818,0.363636 +L 2.181818,0.363636,2.909091,1.454545 +L 3.272727,2.909091,2.909091,1.454545 +L 2.909091,1.454545,3.272727,0.363636 +L 3.272727,0.363636,3.636364,0 +L 3.636364,0,4.363636,0 +L 4.363636,0,5.090909,0.363636 +L 5.090909,0.363636,5.818182,1.454545 +L 5.818182,1.454545,6.181818,2.545455 +L 6.181818,2.545455,6.181818,3.636364 +L 6.181818,3.636364,5.818182,4.727273 +L 5.818182,4.727273,5.454545,5.090909 + +[y] 0 + +[z] 0 + +[{] 34 +L 1.818182,9.090909,1.090909,8.727273 +L 1.090909,8.727273,0.727273,8.363636 +L 0.727273,8.363636,0.363636,7.636364 +L 0.363636,7.636364,0.363636,6.909091 +L 0.363636,6.909091,0.727273,6.181818 +L 0.727273,6.181818,1.090909,5.818182 +L 1.090909,5.818182,1.454545,5.090909 +L 1.454545,5.090909,1.454545,4.363636 +L 1.454545,4.363636,0.727273,3.636364 +L 1.090909,8.727273,0.727273,8 +L 0.727273,8,0.727273,7.272727 +L 0.727273,7.272727,1.090909,6.545455 +L 1.090909,6.545455,1.454545,6.181818 +L 1.454545,6.181818,1.818182,5.454545 +L 1.818182,5.454545,1.818182,4.727273 +L 1.818182,4.727273,1.454545,4 +L 1.454545,4,0,3.272727 +L 0,3.272727,1.454545,2.545455 +L 1.454545,2.545455,1.818182,1.818182 +L 1.818182,1.818182,1.818182,1.090909 +L 1.818182,1.090909,1.454545,0.363636 +L 1.454545,0.363636,1.090909,0 +L 1.090909,0,0.727273,-0.727273 +L 0.727273,-0.727273,0.727273,-1.454545 +L 0.727273,-1.454545,1.090909,-2.181818 +L 0.727273,2.909091,1.454545,2.181818 +L 1.454545,2.181818,1.454545,1.454545 +L 1.454545,1.454545,1.090909,0.727273 +L 1.090909,0.727273,0.727273,0.363636 +L 0.727273,0.363636,0.363636,-0.363636 +L 0.363636,-0.363636,0.363636,-1.090909 +L 0.363636,-1.090909,0.727273,-1.818182 +L 0.727273,-1.818182,1.090909,-2.181818 +L 1.090909,-2.181818,1.818182,-2.545455 + +[|] 1 +L 0,9.090909,0,-2.545455 + +[}] 34 +L 0,9.090909,0.727273,8.727273 +L 0.727273,8.727273,1.090909,8.363636 +L 1.090909,8.363636,1.454545,7.636364 +L 1.454545,7.636364,1.454545,6.909091 +L 1.454545,6.909091,1.090909,6.181818 +L 1.090909,6.181818,0.727273,5.818182 +L 0.727273,5.818182,0.363636,5.090909 +L 0.363636,5.090909,0.363636,4.363636 +L 0.363636,4.363636,1.090909,3.636364 +L 0.727273,8.727273,1.090909,8 +L 1.090909,8,1.090909,7.272727 +L 1.090909,7.272727,0.727273,6.545455 +L 0.727273,6.545455,0.363636,6.181818 +L 0.363636,6.181818,0,5.454545 +L 0,5.454545,0,4.727273 +L 0,4.727273,0.363636,4 +L 0.363636,4,1.818182,3.272727 +L 1.818182,3.272727,0.363636,2.545455 +L 0.363636,2.545455,0,1.818182 +L 0,1.818182,0,1.090909 +L 0,1.090909,0.363636,0.363636 +L 0.363636,0.363636,0.727273,0 +L 0.727273,0,1.090909,-0.727273 +L 1.090909,-0.727273,1.090909,-1.454545 +L 1.090909,-1.454545,0.727273,-2.181818 +L 1.090909,2.909091,0.363636,2.181818 +L 0.363636,2.181818,0.363636,1.454545 +L 0.363636,1.454545,0.727273,0.727273 +L 0.727273,0.727273,1.090909,0.363636 +L 1.090909,0.363636,1.454545,-0.363636 +L 1.454545,-0.363636,1.454545,-1.090909 +L 1.454545,-1.090909,1.090909,-1.818182 +L 1.090909,-1.818182,0.727273,-2.181818 +L 0.727273,-2.181818,0,-2.545455 + +#EOF diff --git a/pycam/share/fonts/hershey.readme b/pycam/share/fonts/hershey.readme new file mode 100644 index 00000000..6c7efd9a --- /dev/null +++ b/pycam/share/fonts/hershey.readme @@ -0,0 +1,260 @@ +Hershey fonts for Ghostscript + +This file, unlike the rest of Ghostscript, consists entirely of information +copied from public sources. It therefore is not covered by the Ghostscript +copyright or license: it is in the public domain. + +For other information, see the Ghostscript overview. You can also read about +Ghostscript fonts in general. + +Mod.sources: Volume 4, Issue 42 +Submitted by: pyramid!octopus!pete (Pete Holzmann) + +This is part 1 of five parts of the first Usenet distribution of +the Hershey Fonts. See the README file for more details. + +Peter Holzmann, Octopus Enterprises +USPS: 19611 La Mar Court, Cupertino, CA 95014 +UUCP: {hplabs!hpdsd,pyramid}!octopus!pete +Phone: 408/996-7746 + +This distribution is made possible through the collective encouragement +of the Usenet Font Consortium, a mailing list that sprang to life to get +this accomplished and that will now most likely disappear into the mists +of time... Thanks are especially due to Jim Hurt, who provided the packed +font data for the distribution, along with a lot of other help. + +This file describes the Hershey Fonts in general, along with a description of +the other files in this distribution and a simple re-distribution restriction. + +USE RESTRICTION: + This distribution of the Hershey Fonts may be used by anyone for + any purpose, commercial or otherwise, providing that: + 1. The following acknowledgements must be distributed with + the font data: + - The Hershey Fonts were originally created by Dr. + A. V. Hershey while working at the U. S. + National Bureau of Standards. + - The format of the Font data in this distribution + was originally created by + James Hurt + Cognition, Inc. + 900 Technology Park Drive + Billerica, MA 01821 + (mit-eddie!ci-dandelion!hurt) + 2. The font data in this distribution may be converted into + any other format *EXCEPT* the format distributed by + the U.S. NTIS (which organization holds the rights + to the distribution and use of the font data in that + particular format). Not that anybody would really + *want* to use their format... each point is described + in eight bytes as "xxx yyy:", where xxx and yyy are + the coordinate values as ASCII numbers. + +*PLEASE* be reassured: The legal implications of NTIS' attempt to control +a particular form of the Hershey Fonts *are* troubling. HOWEVER: We have +been endlessly and repeatedly assured by NTIS that they do not care what +we do with our version of the font data, they do not want to know about it, +they understand that we are distributing this information all over the world, +etc etc etc... but because it isn't in their *exact* distribution format, they +just don't care!!! So go ahead and use the data with a clear conscience! (If +you feel bad about it, take a smaller deduction for something on your taxes +next week...) + +The Hershey Fonts: + - are a set of more than 2000 glyph (symbol) descriptions in vector + ( point-to-point ) format + - can be grouped as almost 20 'occidental' (english, greek, + cyrillic) fonts, 3 or more 'oriental' (Kanji, Hiragana, + and Katakana) fonts, and a few hundred miscellaneous + symbols (mathematical, musical, cartographic, etc etc) + - are suitable for typographic quality output on a vector device + (such as a plotter) when used at an appropriate scale. + - were digitized by Dr. A. V. Hershey while working for the U.S. + Government National Bureau of Standards (NBS). + - are in the public domain, with a few caveats: + - They are available from NTIS (National Technical Info. + Service) in a computer-readable from which is *not* + in the public domain. This format is described in + a hardcopy publication "Tables of Coordinates for + Hershey's Repertory of Occidental Type Fonts and + Graphic Symbols" available from NTIS for less than + $20 US (phone number +1 703 487 4763). + - NTIS does not care about and doesn't want to know about + what happens to Hershey Font data that is not + distributed in their exact format. + - This distribution is not in the NTIS format, and thus is + only subject to the simple restriction described + at the top of this file. + +Hard Copy samples of the Hershey Fonts are best obtained by purchasing the +book described above from NTIS. It contains a sample of all of the Occidental +symbols (but none of the Oriental symbols). + +This distribution: + - contains + * a complete copy of the Font data using the original + glyph-numbering sequence + * a set of translation tables that could be used to generate + ASCII-sequence fonts in various typestyles + * a couple of sample programs in C and Fortran that are + capable of parsing the font data and displaying it + on a graphic device (we recommend that if you + wish to write programs using the fonts, you should + hack up one of these until it works on your system) + + - consists of the following files... + hershey.doc - details of the font data format, typestyles and + symbols included, etc. + hersh.oc[1-4] - The Occidental font data (these files can + be catenated into one large database) + hersh.or[1-4] - The Oriental font data (likewise here) + *.hmp - Occidental font map files. Each file is a translation + table from Hershey glyph numbers to ASCII + sequence for a particular typestyle. + hershey.f77 - A fortran program that reads and displays all + of the glyphs in a Hershey font file. + hershey.c - The same, in C, using GKS, for MS-DOS and the + PC-Color Graphics Adaptor. + +Additional Work To Be Done (volunteers welcome!): + + - Integrate this complete set of data with the hershey font + typesetting + program recently distributed to mod.sources + - Come up with an integrated data structure and supporting routines + that make use of the ASCII translation tables + - Digitize additional characters for the few places where non-ideal + symbol substitutions were made in the ASCII translation +tables. + - Make a version of the demo program (hershey.c or hershey.f77) that + uses the standard Un*x plot routines. + - Write a banner-style program using Hershey Fonts for input and + non-graphic terminals or printers for output. + - Anything else you'd like! + +This file provides a brief description of the contents of the Occidental +Hershey Font Files. For a complete listing of the fonts in hard copy, order +NBS Special Publication 424, "A contribution to computer typesetting +techniques: Tables of Coordinates for Hershey's Repertory of Occidental +Type Fonts and Graphic Symbols". You can get it from NTIS (phone number is ++1 703 487 4763) for less than twenty dollars US. + +Basic Glyph (symbol) data: + + hersh.oc1 - numbers 1 to 1199 + hersh.oc2 - numbers 1200 to 2499 + hersh.oc3 - numbers 2500 to 3199 + hersh.oc4 - numbers 3200 to 3999 + + These four files contain approximately 19 different fonts in +the A-Z alphabet plus greek and cyrillic, along with hundreds of special +symbols, described generically below. + + There are also four files of Oriental fonts (hersh.or[1-4]). These +files contain symbols from three Japanese alphabets (Kanji, Hiragana, and +Katakana). It is unknown what other symbols may be contained therein, nor +is it known what order the symbols are in (I don't know Japanese!). + + Back to the Occidental files: + +Fonts: + Roman: Plain, Simplex, Duplex, Complex Small, Complex, Triplex + Italic: Complex Small, Complex, Triplex + Script: Simplex, Complex + Gothic: German, English, Italian + Greek: Plain, Simplex, Complex Small, Complex + Cyrillic: Complex + +Symbols: + Mathematical (227-229,232,727-779,732,737-740,1227-1270,2227-2270, + 1294-1412,2294-2295,2401-2412) + Daggers (for footnotes, etc) (1276-1279, 2276-2279) + Astronomical (1281-1293,2281-2293) + Astrological (2301-2312) + Musical (2317-2382) + Typesetting (ffl,fl,fi sorts of things) (miscellaneous places) + Miscellaneous (mostly in 741-909, but also elsewhere): + - Playing card suits + - Meteorology + - Graphics (lines, curves) + - Electrical + - Geometric (shapes) + - Cartographic + - Naval + - Agricultural + - Highways + - Etc... + +ASCII sequence translation files: + + The Hershey glyphs, while in a particular order, are not in an + ASCII sequence. I have provided translation files that give the + sequence of glyph numbers that will most closely approximate the + ASCII printing sequence (from space through ~, with the degree + circle tacked on at the end) for each of the above fonts: + + File names are made up of fffffftt.hmp, + + where ffffff is the font style, one of: + roman Roman + greek Greek + italic Italic + script Script + cyril Cyrillic (some characters not placed in + the ASCII sequence) + gothgr Gothic German + gothgb Gothic English + gothit Gothic Italian + + and tt is the font type, one of: + p Plain (very small, no lower case) + s Simplex (plain, normal size, no serifs) + d Duplex (normal size, no serifs, doubled lines) + c Complex (normal size, serifs, doubled lines) + t Triplex (normal size, serifs, tripled lines) + cs Complex Small (Complex, smaller than normal size) + +The three sizes are coded with particular base line (bottom of a capital + letter) and cap line (top of a capital letter) values for 'y': + + Size Base Line Cap Line + + Very Small -5 +4 + Small -6 +7 + Normal -9 +12 + + (Note: some glyphs in the 'Very Small' fonts are actually 'Small') + +The top line and bottom line, which are normally used to define vertical + spacing, are not given. Maybe somebody can determine appropriate + values for these! + +The left line and right line, which are used to define horizontal spacing, + are provided with each character in the database. + +Format of Hershey glyphs: + +5 bytes - glyphnumber +3 bytes - length of data length in 16-bit words including left&right numbers +1 byte - x value of left margin +1 byte - x value of right margin +(length*2)-2 bytes - stroke data + +left&right margins and stroke data are biased by the value of the letter 'R' +Subtract the letter 'R' to get the data. + +e.g. if the data byte is 'R', the data is 0 + if the data byte is 'T', the data is +2 + if the data byte is 'J', the data is -8 + +and so on... + +The coordinate system is x-y, with the origin (0,0) in the center of the +glyph. X increases to the right and y increases *down*. + +The stroke data is pairs of bytes, one byte for x followed by one byte for y. + +An 'R' in the stroke data indicates a 'lift pen and move' instruction. + +Public Domain. Distributed with Ghostscript 6.50, November 2000 diff --git a/pycam/share/fonts/iso8859-11.cxf b/pycam/share/fonts/iso8859-11.cxf new file mode 100644 index 00000000..42598a1c --- /dev/null +++ b/pycam/share/fonts/iso8859-11.cxf @@ -0,0 +1,2070 @@ +# Format: QCad II Font +# Creator: QCad +# Version: 2.0.1.3 +# Name: ISO8859-11 +# LetterSpacing: 3.000000 +# WordSpacing: 6.750000 +# LineSpacingFactor: 1.000000 +# Author: Unknown + +[0021] ! +L 2.397000,0.600000,2.397000,1.200000 +L 2.397000,3.000000,2.397000,8.400000 +L 2.997000,6.600000,2.997000,8.400000 +L 2.397000,7.200000,2.997000,7.200000 +L 2.397000,6.600000,2.997000,6.600000 +L 2.397000,8.400000,2.997000,8.400000 +L 2.397000,7.800000,2.997000,7.800000 + +[0022] " +L 3.796000,7.200000,4.396000,7.800000 +L 1.997000,7.200000,2.596000,7.800000 +L 4.396000,7.800000,4.396000,9.000000 +L 2.596000,7.800000,2.596000,9.000000 +L 1.997000,9.000000,2.596000,9.000000 +L 3.796000,9.000000,4.396000,9.000000 + +[0023] # +L 4.996000,6.600000,4.996000,8.400000 +L 4.397000,3.000000,4.397000,6.600000 +L 3.796000,0.600000,3.796000,3.000000 +L 3.197000,6.600000,3.197000,8.400000 +L 1.997000,0.600000,1.997000,3.000000 +L 2.596000,3.000000,2.596000,6.600000 +L 1.396000,3.000000,4.996000,3.000000 +L 1.997000,6.600000,5.596000,6.600000 + +[0024] $ +L 4.997000,2.400000,4.997000,3.600000 +L 4.997000,6.600000,4.997000,7.200000 +L 3.196000,0.000000,3.196000,9.000000 +L 1.396000,2.400000,1.396000,3.000000 +L 1.396000,6.000000,1.396000,7.200000 +L 2.596000,4.800000,1.396000,6.000000 +L 4.997000,3.600000,3.796000,4.800000 +L 4.997000,7.200000,3.796000,8.400000 +L 1.396000,7.200000,2.596000,8.400000 +L 2.596000,1.200000,1.396000,2.400000 +L 3.796000,1.200000,4.997000,2.400000 +L 2.596000,4.800000,3.796000,4.800000 +L 2.596000,1.200000,3.796000,1.200000 +L 2.596000,8.400000,3.796000,8.400000 + +[0025] % +L 1.396000,6.000000,1.396000,7.800000 +L 1.997000,1.200000,1.997000,1.800000 +L 1.396000,0.000000,1.396000,0.600000 +L 3.197000,6.000000,3.197000,7.800000 +L 3.796000,1.200000,3.796000,3.000000 +L 3.197000,3.600000,3.197000,4.200000 +L 2.597000,2.400000,2.597000,3.000000 +L 3.796000,4.800000,3.796000,5.400000 +L 5.597000,1.200000,5.597000,3.000000 +L 5.597000,8.400000,5.597000,9.000000 +L 4.997000,7.200000,4.997000,7.800000 +L 4.397000,6.000000,4.397000,6.600000 +L 1.997000,5.400000,1.396000,6.000000 +L 2.597000,5.400000,3.197000,6.000000 +L 3.796000,5.400000,3.197000,6.000000 +L 3.796000,5.400000,4.397000,6.000000 +L 3.796000,3.000000,3.197000,3.600000 +L 3.796000,3.000000,4.397000,3.600000 +L 5.597000,3.000000,4.997000,3.600000 +L 3.197000,4.200000,3.796000,4.800000 +L 1.396000,7.800000,1.997000,8.400000 +L 3.197000,7.800000,2.597000,8.400000 +L 4.997000,7.800000,5.597000,8.400000 +L 4.397000,6.600000,4.997000,7.200000 +L 2.597000,3.000000,3.197000,3.600000 +L 1.396000,0.600000,1.997000,1.200000 +L 4.397000,0.600000,3.796000,1.200000 +L 4.997000,0.600000,5.597000,1.200000 +L 1.997000,1.800000,2.597000,2.400000 +L 4.397000,3.600000,4.997000,3.600000 +L 1.997000,5.400000,2.597000,5.400000 +L 4.397000,0.600000,4.997000,0.600000 +L 1.997000,8.400000,2.597000,8.400000 + +[0026] & +L 4.997000,3.600000,4.997000,4.200000 +L 1.397000,2.400000,1.397000,3.600000 +L 1.997000,6.600000,1.997000,7.800000 +L 3.797000,3.600000,3.797000,4.200000 +L 4.396000,2.400000,4.396000,3.000000 +L 4.396000,6.600000,4.396000,7.800000 +L 3.196000,4.800000,3.196000,5.400000 +L 4.396000,3.000000,4.997000,3.600000 +L 4.396000,3.000000,3.797000,3.600000 +L 1.397000,3.600000,2.597000,4.800000 +L 3.797000,4.200000,3.196000,4.800000 +L 4.396000,7.800000,3.797000,8.400000 +L 1.997000,7.800000,2.597000,8.400000 +L 3.196000,5.400000,1.997000,6.600000 +L 3.196000,5.400000,4.396000,6.600000 +L 5.596000,1.200000,4.396000,2.400000 +L 2.597000,1.200000,1.397000,2.400000 +L 3.196000,1.200000,4.396000,2.400000 +L 2.597000,4.800000,3.196000,4.800000 +L 2.597000,1.200000,3.196000,1.200000 +L 2.597000,8.400000,3.797000,8.400000 + +[0027] ' +L 1.997000,7.200000,2.597000,7.800000 +L 2.597000,7.800000,2.597000,9.000000 +L 1.997000,9.000000,2.597000,9.000000 + +[0028] ( +L 3.797000,7.800000,4.997000,9.000000 +L 3.196000,6.600000,3.797000,7.200000 +L 4.997000,0.000000,3.797000,1.200000 +L 3.797000,1.800000,3.196000,2.400000 +L 3.196000,2.400000,3.196000,6.600000 +L 3.797000,1.200000,3.797000,1.800000 +L 3.797000,7.200000,3.797000,7.800000 + +[0029] ) +L 2.597000,7.800000,1.396000,9.000000 +L 3.197000,6.600000,2.597000,7.200000 +L 1.396000,0.000000,2.597000,1.200000 +L 2.597000,1.800000,3.197000,2.400000 +L 2.597000,1.200000,2.597000,1.800000 +L 2.597000,7.200000,2.597000,7.800000 +L 3.197000,2.400000,3.197000,6.600000 + +[002a] * +L 3.197000,3.000000,3.197000,6.600000 +L 2.597000,4.800000,1.397000,6.000000 +L 3.796000,4.800000,4.997000,6.000000 +L 4.997000,3.600000,3.796000,4.800000 +L 1.397000,3.600000,2.597000,4.800000 +L 2.597000,4.800000,3.796000,4.800000 + +[002b] + +L 3.197000,2.400000,3.197000,7.200000 +L 1.396000,4.800000,4.997000,4.800000 + +[002c] , +L 1.197000,0.000000,1.797000,0.600000 +L 1.197000,1.800000,1.797000,1.800000 +L 1.797000,0.600000,1.797000,1.800000 + +[002d] - +L 1.396000,4.800000,4.996000,4.800000 + +[002e] . +L 1.197000,1.200000,1.797000,1.200000 +L 1.197000,1.800000,1.797000,1.800000 +L 1.197000,1.200000,1.197000,1.800000 +L 1.797000,1.200000,1.797000,1.800000 + +[002f] / +L 3.197000,4.800000,3.796000,5.400000 +L 2.596000,3.600000,3.197000,4.200000 +L 3.796000,6.000000,4.396000,6.600000 +L 4.396000,7.200000,4.997000,7.800000 +L 1.997000,2.400000,2.596000,3.000000 +L 1.397000,1.200000,1.997000,1.800000 +L 1.397000,0.600000,1.397000,1.200000 +L 3.796000,5.400000,3.796000,6.000000 +L 4.396000,6.600000,4.396000,7.200000 +L 4.997000,7.800000,4.997000,8.400000 +L 3.197000,4.200000,3.197000,4.800000 +L 1.997000,1.800000,1.997000,2.400000 +L 2.596000,3.000000,2.596000,3.600000 + +[0030] 0 +L 2.596000,7.200000,2.596000,7.800000 +L 4.396000,1.800000,4.396000,2.400000 +L 4.396000,7.200000,4.396000,7.800000 +L 2.596000,1.800000,2.596000,2.400000 +L 1.997000,3.000000,1.997000,6.600000 +L 4.996000,3.000000,4.996000,6.600000 +L 2.596000,7.800000,3.196000,8.400000 +L 4.396000,7.800000,3.796000,8.400000 +L 4.996000,6.600000,4.396000,7.200000 +L 1.997000,6.600000,2.596000,7.200000 +L 2.596000,2.400000,1.997000,3.000000 +L 4.396000,2.400000,4.996000,3.000000 +L 3.796000,1.200000,4.396000,1.800000 +L 3.196000,1.200000,2.596000,1.800000 +L 3.196000,1.200000,3.796000,1.200000 +L 3.196000,8.400000,3.796000,8.400000 + +[0031] 1 +L 3.196000,1.200000,3.196000,8.400000 +L 1.997000,6.600000,2.597000,7.200000 +L 2.597000,7.200000,3.196000,7.200000 + +[0032] 2 +L 1.997000,1.200000,1.997000,2.400000 +L 1.997000,6.600000,1.997000,7.200000 +L 4.997000,6.000000,4.997000,7.200000 +L 2.597000,3.000000,2.597000,3.600000 +L 2.597000,3.600000,4.997000,6.000000 +L 1.997000,7.200000,3.197000,8.400000 +L 4.997000,7.200000,3.796000,8.400000 +L 1.997000,2.400000,2.597000,3.000000 +L 1.997000,1.200000,4.997000,1.200000 +L 3.197000,8.400000,3.796000,8.400000 + +[0033] 3 +L 1.396000,2.400000,1.396000,3.000000 +L 1.396000,6.600000,1.396000,7.200000 +L 4.997000,2.400000,4.997000,3.600000 +L 4.997000,6.000000,4.997000,7.200000 +L 3.797000,4.800000,4.997000,6.000000 +L 4.997000,3.600000,3.797000,4.800000 +L 4.997000,7.200000,3.797000,8.400000 +L 1.396000,7.200000,2.597000,8.400000 +L 2.597000,1.200000,1.396000,2.400000 +L 3.797000,1.200000,4.997000,2.400000 +L 2.597000,4.800000,3.797000,4.800000 +L 2.597000,1.200000,3.797000,1.200000 +L 2.597000,8.400000,3.797000,8.400000 + +[0034] 4 +L 3.796000,1.200000,3.796000,8.400000 +L 3.197000,7.200000,3.197000,7.800000 +L 2.596000,6.000000,2.596000,6.600000 +L 1.397000,3.600000,1.397000,4.200000 +L 1.997000,4.800000,1.997000,5.400000 +L 1.997000,5.400000,2.596000,6.000000 +L 1.397000,4.200000,1.997000,4.800000 +L 2.596000,6.600000,3.197000,7.200000 +L 1.397000,3.600000,4.997000,3.600000 +L 3.197000,7.200000,3.796000,7.200000 +L 3.197000,7.800000,3.796000,7.800000 + +[0035] 5 +L 1.397000,2.400000,1.397000,3.000000 +L 1.397000,4.800000,1.397000,6.000000 +L 1.997000,6.600000,1.997000,8.400000 +L 4.997000,2.400000,4.997000,4.800000 +L 1.997000,5.400000,2.597000,6.000000 +L 4.997000,4.800000,3.797000,6.000000 +L 1.397000,6.000000,1.997000,6.600000 +L 2.597000,6.000000,1.997000,6.600000 +L 2.597000,1.200000,1.397000,2.400000 +L 3.797000,1.200000,4.997000,2.400000 +L 2.597000,6.000000,3.797000,6.000000 +L 1.397000,5.400000,1.997000,5.400000 +L 2.597000,1.200000,3.797000,1.200000 +L 1.997000,8.400000,4.396000,8.400000 + +[0036] 6 +L 1.396000,2.400000,1.396000,6.600000 +L 1.997000,7.200000,1.997000,7.800000 +L 4.997000,2.400000,4.997000,4.200000 +L 1.997000,4.800000,2.597000,5.400000 +L 4.997000,4.200000,3.797000,5.400000 +L 1.997000,7.800000,2.597000,8.400000 +L 4.397000,7.800000,3.797000,8.400000 +L 1.396000,6.600000,1.997000,7.200000 +L 3.797000,1.200000,4.997000,2.400000 +L 2.597000,1.200000,1.396000,2.400000 +L 1.396000,4.800000,1.997000,4.800000 +L 2.597000,5.400000,3.797000,5.400000 +L 2.597000,1.200000,3.797000,1.200000 +L 2.597000,8.400000,3.797000,8.400000 + +[0037] 7 +L 4.996000,7.800000,4.996000,8.400000 +L 3.796000,4.200000,3.796000,6.000000 +L 4.397000,6.600000,4.397000,7.200000 +L 3.197000,0.600000,3.197000,3.600000 +L 3.197000,3.600000,3.796000,4.200000 +L 4.397000,7.200000,4.996000,7.800000 +L 3.796000,6.000000,4.397000,6.600000 +L 1.396000,8.400000,4.996000,8.400000 + +[0038] 8 +L 1.397000,2.400000,1.397000,3.600000 +L 1.397000,6.000000,1.397000,7.200000 +L 4.997000,2.400000,4.997000,3.600000 +L 4.997000,6.000000,4.997000,7.200000 +L 2.597000,4.800000,1.397000,6.000000 +L 3.797000,4.800000,4.997000,6.000000 +L 1.397000,3.600000,2.597000,4.800000 +L 4.997000,3.600000,3.797000,4.800000 +L 1.397000,7.200000,2.597000,8.400000 +L 4.997000,7.200000,3.797000,8.400000 +L 2.597000,1.200000,1.397000,2.400000 +L 3.797000,1.200000,4.997000,2.400000 +L 2.597000,4.800000,3.797000,4.800000 +L 2.597000,1.200000,3.797000,1.200000 +L 2.597000,8.400000,3.797000,8.400000 + +[0039] 9 +L 4.997000,2.400000,4.997000,7.200000 +L 1.396000,5.400000,1.396000,7.200000 +L 2.597000,4.200000,1.396000,5.400000 +L 3.796000,4.200000,4.397000,4.800000 +L 1.396000,7.200000,2.597000,8.400000 +L 4.997000,7.200000,3.796000,8.400000 +L 2.597000,1.200000,1.396000,2.400000 +L 3.796000,1.200000,4.997000,2.400000 +L 2.597000,4.200000,3.796000,4.200000 +L 4.397000,4.800000,4.997000,4.800000 +L 2.597000,1.200000,3.796000,1.200000 +L 2.597000,8.400000,3.796000,8.400000 + +[003a] : +L 2.997000,1.800000,2.997000,2.400000 +L 2.997000,6.000000,2.997000,6.600000 +L 2.397000,1.800000,2.397000,2.400000 +L 2.397000,6.000000,2.397000,6.600000 +L 2.397000,6.000000,2.997000,6.000000 +L 2.397000,2.400000,2.997000,2.400000 +L 2.397000,1.800000,2.997000,1.800000 +L 2.397000,6.600000,2.997000,6.600000 + +[003b] ; +L 2.397000,1.200000,2.997000,1.800000 +L 2.997000,6.000000,2.997000,6.600000 +L 2.997000,1.800000,2.997000,3.000000 +L 2.397000,6.000000,2.397000,6.600000 +L 2.397000,6.000000,2.997000,6.000000 +L 2.397000,3.000000,2.997000,3.000000 +L 2.397000,6.600000,2.997000,6.600000 + +[003c] < +L 4.997000,1.800000,2.597000,4.200000 +L 2.597000,4.800000,4.997000,7.200000 +L 2.597000,4.200000,2.597000,4.800000 + +[003d] = +L 1.396000,3.600000,4.997000,3.600000 +L 1.396000,6.000000,4.997000,6.000000 + +[003e] > +L 1.997000,1.800000,4.397000,4.200000 +L 4.397000,4.800000,1.997000,7.200000 +L 4.397000,4.200000,4.397000,4.800000 + +[003f] ? +L 2.997000,4.800000,4.197000,6.000000 +L 2.397000,3.600000,2.997000,4.200000 +L 4.197000,7.200000,2.997000,8.400000 +L 0.597000,7.200000,1.797000,8.400000 +L 2.997000,4.200000,2.997000,4.800000 +L 2.397000,3.000000,2.397000,3.600000 +L 2.397000,0.600000,2.397000,1.200000 +L 4.197000,6.000000,4.197000,7.200000 +L 0.597000,6.000000,0.597000,7.200000 +L 1.797000,8.400000,2.997000,8.400000 + +[0040] @ +L 1.396000,3.600000,1.396000,6.000000 +L 1.997000,2.400000,1.997000,3.000000 +L 4.997000,6.600000,4.997000,7.200000 +L 5.597000,4.200000,5.597000,6.000000 +L 4.396000,4.200000,4.396000,6.000000 +L 1.997000,6.600000,1.997000,7.200000 +L 2.597000,4.200000,2.597000,6.000000 +L 3.197000,6.000000,3.197000,6.600000 +L 3.197000,3.600000,2.597000,4.200000 +L 3.797000,3.600000,4.396000,4.200000 +L 4.997000,3.600000,4.396000,4.200000 +L 4.997000,3.600000,5.597000,4.200000 +L 1.997000,3.000000,1.396000,3.600000 +L 1.997000,7.200000,3.197000,8.400000 +L 4.997000,7.200000,3.797000,8.400000 +L 1.396000,6.000000,1.997000,6.600000 +L 5.597000,6.000000,4.997000,6.600000 +L 2.597000,6.000000,1.997000,6.600000 +L 4.396000,6.000000,3.797000,6.600000 +L 4.396000,6.000000,4.997000,6.600000 +L 3.197000,1.200000,1.997000,2.400000 +L 4.396000,1.200000,4.997000,1.800000 +L 3.197000,3.600000,3.797000,3.600000 +L 2.597000,6.000000,3.197000,6.000000 +L 3.197000,1.200000,4.396000,1.200000 +L 3.197000,6.600000,3.797000,6.600000 +L 3.197000,8.400000,3.797000,8.400000 + +[0041] A +L 4.396000,3.600000,4.396000,5.400000 +L 3.197000,7.800000,3.197000,8.400000 +L 3.797000,6.000000,3.797000,7.200000 +L 4.997000,1.200000,4.997000,3.000000 +L 2.597000,6.000000,2.597000,7.200000 +L 1.997000,3.600000,1.997000,5.400000 +L 1.397000,1.200000,1.397000,3.000000 +L 4.396000,5.400000,3.797000,6.000000 +L 1.997000,5.400000,2.597000,6.000000 +L 1.397000,3.000000,1.997000,3.600000 +L 4.997000,3.000000,4.396000,3.600000 +L 3.797000,7.200000,3.197000,7.800000 +L 2.597000,7.200000,3.197000,7.800000 +L 1.997000,3.600000,4.396000,3.600000 + +[0042] B +L 4.997000,2.400000,4.997000,3.600000 +L 4.396000,6.000000,4.396000,7.200000 +L 3.797000,4.800000,3.797000,5.400000 +L 1.397000,1.200000,1.397000,8.400000 +L 3.797000,5.400000,4.396000,6.000000 +L 4.997000,3.600000,3.797000,4.800000 +L 4.396000,7.200000,3.196000,8.400000 +L 3.797000,1.200000,4.997000,2.400000 +L 1.397000,4.800000,3.797000,4.800000 +L 1.397000,1.200000,3.797000,1.200000 +L 1.397000,8.400000,3.196000,8.400000 + +[0043] C +L 1.396000,3.000000,1.396000,6.600000 +L 1.997000,1.800000,1.997000,2.400000 +L 1.997000,7.200000,1.997000,7.800000 +L 1.997000,7.800000,2.597000,8.400000 +L 4.997000,7.200000,3.796000,8.400000 +L 1.396000,6.600000,1.997000,7.200000 +L 3.796000,1.200000,4.997000,2.400000 +L 1.997000,2.400000,1.396000,3.000000 +L 2.597000,1.200000,1.997000,1.800000 +L 2.597000,1.200000,3.796000,1.200000 +L 2.597000,8.400000,3.796000,8.400000 + +[0044] D +L 1.397000,1.200000,1.397000,8.400000 +L 4.396000,2.400000,4.396000,3.000000 +L 4.396000,6.600000,4.396000,7.200000 +L 4.997000,3.600000,4.997000,6.000000 +L 4.396000,3.000000,4.997000,3.600000 +L 4.396000,7.200000,3.197000,8.400000 +L 4.997000,6.000000,4.396000,6.600000 +L 3.197000,1.200000,4.396000,2.400000 +L 1.397000,1.200000,3.197000,1.200000 +L 1.397000,8.400000,3.197000,8.400000 + +[0045] E +L 1.396000,1.200000,1.396000,8.400000 +L 1.396000,4.800000,4.397000,4.800000 +L 1.396000,1.200000,4.997000,1.200000 +L 1.396000,8.400000,4.997000,8.400000 + +[0046] F +L 1.396000,1.200000,1.396000,8.400000 +L 1.396000,4.800000,4.397000,4.800000 +L 1.396000,8.400000,4.997000,8.400000 + +[0047] G +L 4.997000,1.200000,4.997000,4.800000 +L 1.997000,1.800000,1.997000,2.400000 +L 1.997000,6.600000,1.997000,7.200000 +L 1.397000,3.000000,1.397000,6.000000 +L 1.997000,7.200000,3.197000,8.400000 +L 4.997000,7.200000,3.797000,8.400000 +L 1.397000,6.000000,1.997000,6.600000 +L 1.997000,2.400000,1.397000,3.000000 +L 3.197000,1.200000,2.597000,1.800000 +L 3.797000,1.200000,4.396000,1.800000 +L 3.797000,4.800000,4.997000,4.800000 +L 3.197000,1.200000,3.797000,1.200000 +L 1.997000,1.800000,2.597000,1.800000 +L 4.396000,1.800000,4.997000,1.800000 +L 3.197000,8.400000,3.797000,8.400000 + +[0048] H +L 1.396000,1.200000,1.396000,8.400000 +L 4.997000,1.200000,4.997000,8.400000 +L 1.396000,4.800000,4.997000,4.800000 + +[0049] I +L 3.197000,1.200000,3.197000,8.400000 +L 2.596000,1.200000,3.796000,1.200000 +L 2.596000,8.400000,3.796000,8.400000 + +[004A] J +L 4.997000,2.400000,4.997000,8.400000 +L 3.797000,1.200000,4.997000,2.400000 +L 3.196000,1.200000,1.997000,2.400000 +L 3.196000,1.200000,3.797000,1.200000 + +[004b] K +L 1.997000,1.200000,1.997000,8.400000 +L 2.597000,4.200000,2.597000,4.800000 +L 4.997000,2.400000,4.997000,3.000000 +L 4.997000,7.800000,4.997000,8.400000 +L 4.397000,6.600000,4.397000,7.200000 +L 3.796000,4.800000,3.796000,6.000000 +L 4.397000,3.600000,4.397000,4.200000 +L 5.597000,1.200000,5.597000,1.800000 +L 2.597000,4.800000,3.197000,5.400000 +L 4.997000,3.000000,4.397000,3.600000 +L 4.397000,4.200000,3.796000,4.800000 +L 4.397000,7.200000,4.997000,7.800000 +L 3.796000,6.000000,4.397000,6.600000 +L 5.597000,1.800000,4.997000,2.400000 +L 1.997000,4.200000,2.597000,4.200000 +L 1.997000,4.800000,2.597000,4.800000 +L 3.197000,5.400000,3.796000,5.400000 + +[004c] L +L 2.597000,1.200000,2.597000,8.400000 +L 2.597000,1.200000,5.597000,1.200000 + +[004d] M +L 4.397000,6.000000,4.397000,7.200000 +L 3.197000,1.800000,3.197000,3.600000 +L 3.797000,4.200000,3.797000,5.400000 +L 4.997000,1.200000,4.997000,8.400000 +L 1.397000,1.200000,1.397000,8.400000 +L 1.998000,6.000000,1.998000,7.200000 +L 2.597000,4.200000,2.597000,5.400000 +L 2.597000,5.400000,1.998000,6.000000 +L 3.797000,5.400000,4.397000,6.000000 +L 3.197000,3.600000,3.797000,4.200000 +L 3.197000,3.600000,2.597000,4.200000 +L 1.397000,6.000000,1.998000,6.000000 +L 4.397000,6.600000,4.997000,6.600000 +L 1.397000,6.600000,1.998000,6.600000 +L 4.397000,6.000000,4.997000,6.000000 +L 4.397000,7.200000,4.997000,7.200000 +L 1.397000,7.200000,1.998000,7.200000 + +[004e] N +L 3.796000,3.000000,3.796000,3.600000 +L 3.197000,4.200000,3.197000,5.400000 +L 4.396000,1.800000,4.396000,2.400000 +L 4.997000,1.200000,4.997000,8.400000 +L 2.597000,6.000000,2.597000,6.600000 +L 1.997000,7.200000,1.997000,7.800000 +L 1.396000,1.200000,1.396000,8.400000 +L 3.197000,5.400000,2.597000,6.000000 +L 3.796000,3.600000,3.197000,4.200000 +L 2.597000,6.600000,1.997000,7.200000 +L 4.396000,2.400000,3.796000,3.000000 +L 4.396000,2.400000,4.997000,2.400000 +L 4.396000,1.800000,4.997000,1.800000 +L 1.396000,7.200000,1.997000,7.200000 +L 1.396000,7.800000,1.997000,7.800000 + +[004f] O +L 4.997000,3.000000,4.997000,6.600000 +L 4.396000,7.200000,4.396000,7.800000 +L 4.396000,1.800000,4.396000,2.400000 +L 1.997000,1.800000,1.997000,2.400000 +L 1.997000,7.200000,1.997000,7.800000 +L 1.397000,3.000000,1.397000,6.600000 +L 1.997000,7.800000,2.597000,8.400000 +L 4.396000,7.800000,3.797000,8.400000 +L 4.997000,6.600000,4.396000,7.200000 +L 1.397000,6.600000,1.997000,7.200000 +L 4.396000,2.400000,4.997000,3.000000 +L 1.997000,2.400000,1.397000,3.000000 +L 2.597000,1.200000,1.997000,1.800000 +L 3.797000,1.200000,4.396000,1.800000 +L 2.597000,1.200000,3.797000,1.200000 +L 2.597000,8.400000,3.797000,8.400000 + +[0050] P +L 1.397000,1.200000,1.397000,8.400000 +L 4.997000,6.000000,4.997000,7.200000 +L 3.797000,4.800000,4.997000,6.000000 +L 4.997000,7.200000,3.797000,8.400000 +L 1.397000,4.800000,3.797000,4.800000 +L 1.397000,8.400000,3.797000,8.400000 + +[0051] Q +L 1.997000,7.200000,1.997000,7.800000 +L 1.997000,1.800000,1.997000,2.400000 +L 1.396000,3.000000,1.396000,6.600000 +L 3.796000,0.600000,3.796000,1.200000 +L 4.997000,3.000000,4.997000,6.600000 +L 4.397000,1.800000,4.397000,2.400000 +L 4.397000,7.200000,4.397000,7.800000 +L 1.997000,7.800000,2.597000,8.400000 +L 4.397000,7.800000,3.796000,8.400000 +L 1.396000,6.600000,1.997000,7.200000 +L 4.997000,6.600000,4.397000,7.200000 +L 4.397000,2.400000,4.997000,3.000000 +L 4.397000,2.400000,3.796000,3.000000 +L 1.997000,2.400000,1.396000,3.000000 +L 1.997000,2.400000,2.597000,3.000000 +L 4.397000,0.000000,3.796000,0.600000 +L 2.597000,1.200000,1.997000,1.800000 +L 3.796000,1.200000,4.397000,1.800000 +L 4.397000,0.000000,4.997000,0.000000 +L 2.597000,1.200000,3.796000,1.200000 +L 2.597000,3.000000,3.796000,3.000000 +L 2.597000,8.400000,3.796000,8.400000 + +[0052] R +L 4.996000,6.000000,4.996000,7.200000 +L 4.996000,1.200000,4.996000,1.800000 +L 3.796000,4.200000,3.796000,4.800000 +L 4.396000,2.400000,4.396000,3.600000 +L 1.396000,1.200000,1.396000,8.400000 +L 3.796000,4.800000,4.996000,6.000000 +L 4.396000,3.600000,3.796000,4.200000 +L 4.996000,7.200000,3.796000,8.400000 +L 4.996000,1.800000,4.396000,2.400000 +L 1.396000,4.800000,3.796000,4.800000 +L 1.396000,8.400000,3.796000,8.400000 + +[0053] S +L 1.396000,2.400000,1.396000,3.000000 +L 1.396000,6.000000,1.396000,7.200000 +L 4.996000,2.400000,4.996000,3.600000 +L 4.996000,6.600000,4.996000,7.200000 +L 3.196000,4.800000,2.596000,5.400000 +L 1.996000,5.400000,1.396000,6.000000 +L 4.996000,3.600000,3.797000,4.800000 +L 4.996000,7.200000,3.797000,8.400000 +L 1.396000,7.200000,2.596000,8.400000 +L 3.797000,1.200000,4.996000,2.400000 +L 2.596000,1.200000,1.396000,2.400000 +L 1.996000,5.400000,2.596000,5.400000 +L 3.196000,4.800000,3.797000,4.800000 +L 2.596000,1.200000,3.797000,1.200000 +L 2.596000,8.400000,3.797000,8.400000 + +[0054] T +L 3.197000,1.200000,3.197000,8.400000 +L 1.396000,8.400000,4.997000,8.400000 + +[0055] U +L 4.997000,2.400000,4.997000,8.400000 +L 1.396000,2.400000,1.396000,8.400000 +L 2.596000,1.200000,1.396000,2.400000 +L 3.796000,1.200000,4.997000,2.400000 +L 2.596000,1.200000,3.796000,1.200000 + +[0056] V +L 1.396000,6.600000,1.396000,8.400000 +L 4.396000,4.800000,4.396000,6.000000 +L 4.997000,6.600000,4.997000,8.400000 +L 3.797000,3.000000,3.797000,4.200000 +L 1.996000,4.800000,1.996000,6.000000 +L 2.597000,3.000000,2.597000,4.200000 +L 3.196000,1.200000,3.196000,2.400000 +L 2.597000,4.200000,1.996000,4.800000 +L 3.797000,4.200000,4.396000,4.800000 +L 4.396000,6.000000,4.997000,6.600000 +L 1.996000,6.000000,1.396000,6.600000 +L 3.196000,2.400000,2.597000,3.000000 +L 3.196000,2.400000,3.797000,3.000000 + +[0057] W +L 4.397000,1.200000,4.397000,3.600000 +L 4.997000,4.200000,4.997000,8.400000 +L 3.796000,3.600000,3.796000,4.800000 +L 1.997000,1.200000,1.997000,3.600000 +L 2.596000,3.600000,2.596000,4.800000 +L 3.197000,5.400000,3.197000,8.400000 +L 1.396000,4.200000,1.396000,8.400000 +L 3.796000,4.800000,3.197000,5.400000 +L 2.596000,4.800000,3.197000,5.400000 +L 1.997000,3.600000,1.396000,4.200000 +L 4.397000,3.600000,4.997000,4.200000 +L 1.997000,3.600000,2.596000,3.600000 +L 3.796000,3.600000,4.397000,3.600000 + +[0058] X +L 1.397000,1.200000,1.397000,1.800000 +L 2.597000,6.000000,2.597000,6.600000 +L 2.597000,3.600000,2.597000,4.800000 +L 1.997000,2.400000,1.997000,3.000000 +L 1.997000,7.200000,1.997000,7.800000 +L 3.797000,3.600000,3.797000,4.800000 +L 4.998000,1.200000,4.998000,1.800000 +L 4.396000,7.200000,4.396000,7.800000 +L 3.797000,6.000000,3.797000,6.600000 +L 4.396000,2.400000,4.396000,3.000000 +L 2.597000,4.800000,3.797000,6.000000 +L 3.797000,4.800000,2.597000,6.000000 +L 4.396000,3.000000,3.797000,3.600000 +L 1.997000,3.000000,2.597000,3.600000 +L 1.997000,7.800000,1.397000,8.400000 +L 4.396000,7.800000,4.998000,8.400000 +L 2.597000,6.600000,1.997000,7.200000 +L 3.797000,6.600000,4.396000,7.200000 +L 4.998000,1.800000,4.396000,2.400000 +L 1.397000,1.800000,1.997000,2.400000 + +[0059] Y +L 4.396000,6.000000,4.396000,7.200000 +L 4.997000,7.800000,4.997000,8.400000 +L 1.396000,7.800000,1.396000,8.400000 +L 3.196000,1.200000,3.196000,4.200000 +L 3.796000,4.800000,3.796000,5.400000 +L 1.996000,6.000000,1.996000,7.200000 +L 2.597000,4.800000,2.597000,5.400000 +L 3.196000,4.200000,2.597000,4.800000 +L 3.196000,4.200000,3.796000,4.800000 +L 2.597000,5.400000,1.996000,6.000000 +L 3.796000,5.400000,4.396000,6.000000 +L 1.996000,7.200000,1.396000,7.800000 +L 4.396000,7.200000,4.997000,7.800000 + +[005a] Z +L 1.997000,2.400000,1.997000,3.000000 +L 1.396000,1.200000,1.396000,1.800000 +L 2.596000,3.600000,2.596000,4.200000 +L 4.397000,7.200000,4.397000,8.400000 +L 3.197000,4.800000,3.197000,5.400000 +L 3.796000,6.000000,3.796000,6.600000 +L 2.596000,4.200000,3.197000,4.800000 +L 3.197000,5.400000,3.796000,6.000000 +L 1.997000,3.000000,2.596000,3.600000 +L 3.796000,6.600000,4.397000,7.200000 +L 1.396000,1.800000,1.997000,2.400000 +L 1.396000,1.200000,4.996000,1.200000 +L 1.396000,8.400000,4.996000,8.400000 + +[005b] [ +L 3.197000,0.000000,4.996000,0.000000 +L 3.197000,0.000000,3.197000,9.000000 +L 3.197000,9.000000,4.996000,9.000000 + +[005c] \ +L 3.796000,3.000000,3.796000,3.600000 +L 4.397000,1.800000,4.397000,2.400000 +L 3.197000,4.200000,3.197000,4.800000 +L 4.997000,0.600000,4.997000,1.200000 +L 3.197000,4.800000,2.596000,5.400000 +L 3.796000,3.600000,3.197000,4.200000 +L 1.997000,7.200000,1.396000,7.800000 +L 2.596000,6.000000,1.997000,6.600000 +L 4.397000,2.400000,3.796000,3.000000 +L 4.997000,1.200000,4.397000,1.800000 +L 2.596000,5.400000,2.596000,6.000000 +L 1.997000,6.600000,1.997000,7.200000 +L 1.396000,7.800000,1.396000,8.400000 + +[005e] ^ +L 1.397000,7.200000,3.196000,9.000000 +L 4.997000,7.200000,3.196000,9.000000 + +[005f] _ +L 1.397000,0.600000,4.997000,0.600000 + +[0060] ` +L 2.397000,7.200000,1.797000,7.800000 +L 1.797000,7.800000,1.797000,9.000000 +L 1.797000,9.000000,2.397000,9.000000 + +[0061] a +L 4.997000,1.200000,4.997000,5.400000 +L 1.397000,1.800000,1.397000,3.000000 +L 1.997000,5.400000,2.597000,6.000000 +L 4.997000,5.400000,4.397000,6.000000 +L 1.397000,3.000000,2.597000,4.200000 +L 3.797000,1.200000,4.397000,1.800000 +L 1.997000,1.200000,1.397000,1.800000 +L 2.597000,4.200000,4.997000,4.200000 +L 1.997000,1.200000,3.797000,1.200000 +L 4.397000,1.800000,4.997000,1.800000 +L 2.597000,6.000000,4.397000,6.000000 + +[0062] b +L 1.396000,1.200000,1.396000,8.400000 +L 4.997000,2.400000,4.997000,4.800000 +L 4.997000,4.800000,3.796000,6.000000 +L 1.997000,5.400000,2.597000,6.000000 +L 3.796000,1.200000,4.997000,2.400000 +L 2.597000,1.200000,1.997000,1.800000 +L 1.396000,5.400000,1.997000,5.400000 +L 2.597000,1.200000,3.796000,1.200000 +L 1.396000,1.800000,1.997000,1.800000 +L 2.597000,6.000000,3.796000,6.000000 + +[0063] c +L 1.397000,2.400000,1.397000,4.800000 +L 1.397000,4.800000,2.597000,6.000000 +L 4.997000,4.800000,3.797000,6.000000 +L 2.597000,1.200000,1.397000,2.400000 +L 3.797000,1.200000,4.997000,2.400000 +L 2.597000,1.200000,3.797000,1.200000 +L 2.597000,6.000000,3.797000,6.000000 + +[0064] d +L 5.001000,1.200000,5.001000,8.400000 +L 1.401000,2.400000,1.401000,4.800000 +L 1.401000,4.800000,2.601000,6.000000 +L 4.400000,5.400000,3.801000,6.000000 +L 2.601000,1.200000,1.401000,2.400000 +L 3.801000,1.200000,4.400000,1.800000 +L 4.400000,5.400000,5.001000,5.400000 +L 4.400000,1.800000,5.001000,1.800000 +L 2.601000,1.200000,3.801000,1.200000 +L 2.601000,6.000000,3.801000,6.000000 + +[0065] e +L 1.400000,2.400000,1.400000,4.800000 +L 5.000000,3.600000,5.000000,4.800000 +L 1.400000,4.800000,2.601000,6.000000 +L 5.000000,4.800000,3.800000,6.000000 +L 3.800000,1.200000,5.000000,2.400000 +L 2.601000,1.200000,1.400000,2.400000 +L 1.400000,3.600000,5.000000,3.600000 +L 2.601000,1.200000,3.800000,1.200000 +L 2.601000,6.000000,3.800000,6.000000 + +[0066] f +L 3.201000,1.200000,3.201000,7.800000 +L 3.201000,7.800000,3.800000,8.400000 +L 3.800000,8.400000,4.400000,8.400000 +L 2.000000,6.000000,4.400000,6.000000 + +[0067] g +L 5.000000,0.600000,5.000000,1.200000 +L 1.401000,0.600000,1.401000,1.800000 +L 2.000000,2.400000,2.000000,3.000000 +L 4.400000,4.200000,4.400000,5.400000 +L 2.000000,4.200000,2.000000,5.400000 +L 4.400000,5.400000,5.000000,6.000000 +L 4.400000,5.400000,3.801000,6.000000 +L 2.000000,5.400000,2.601000,6.000000 +L 2.000000,3.000000,2.601000,3.600000 +L 3.801000,3.600000,4.400000,4.200000 +L 2.601000,3.600000,2.000000,4.200000 +L 1.401000,1.800000,2.000000,2.400000 +L 5.000000,1.200000,3.801000,2.400000 +L 4.400000,0.000000,5.000000,0.600000 +L 2.000000,0.000000,1.401000,0.600000 +L 2.601000,3.600000,3.801000,3.600000 +L 2.000000,0.000000,4.400000,0.000000 +L 2.000000,2.400000,3.801000,2.400000 +L 2.601000,6.000000,3.801000,6.000000 +L 5.000000,6.000000,5.600000,6.000000 + +[0068] h +L 5.000000,1.200000,5.000000,5.400000 +L 2.001000,1.200000,2.001000,8.400000 +L 2.600000,5.400000,3.201000,6.000000 +L 5.000000,5.400000,4.401000,6.000000 +L 2.001000,5.400000,2.600000,5.400000 +L 3.201000,6.000000,4.401000,6.000000 + +[0069] i +L 3.800000,1.200000,3.800000,6.000000 +L 3.800000,7.800000,3.800000,8.400000 +L 3.200000,6.000000,3.800000,6.000000 + +[006a] j +L 3.801000,1.200000,3.801000,6.000000 +L 3.801000,7.800000,3.801000,8.400000 +L 2.601000,0.000000,3.801000,1.200000 +L 2.000000,0.000000,2.601000,0.000000 +L 3.201000,6.000000,3.801000,6.000000 + +[006b] k +L 5.000000,1.200000,5.000000,1.800000 +L 2.000000,1.200000,2.000000,8.400000 +L 4.400000,2.400000,4.400000,3.000000 +L 4.400000,3.000000,3.200000,4.200000 +L 2.600000,3.600000,5.000000,6.000000 +L 5.000000,1.800000,4.400000,2.400000 +L 2.000000,3.600000,2.600000,3.600000 + +[006c] l +L 2.297794,1.072304,2.297794,8.272304 +L 1.697794,8.272304,2.297794,8.272304 + +[006d] m +L 1.401000,1.200000,1.401000,6.000000 +L 3.201000,1.200000,3.201000,5.400000 +L 5.001000,5.400000,4.401000,6.000000 +L 3.201000,5.400000,2.601000,6.000000 +L 3.201000,5.400000,3.801000,6.000000 +L 5.001000,1.200000,5.001000,5.400000 +L 1.401000,6.000000,2.601000,6.000000 +L 3.801000,6.000000,4.401000,6.000000 + +[006e] n +L 2.600000,5.400000,3.200000,6.000000 +L 5.000000,5.400000,4.400000,6.000000 +L 2.000000,1.200000,2.000000,6.000000 +L 5.000000,1.200000,5.000000,5.400000 +L 2.000000,5.400000,2.600000,5.400000 +L 3.200000,6.000000,4.400000,6.000000 + +[006f] o +L 1.400000,4.800000,2.601000,6.000000 +L 5.000000,4.800000,3.800000,6.000000 +L 5.000000,2.400000,5.000000,4.800000 +L 1.400000,2.400000,1.400000,4.800000 +L 2.601000,1.200000,1.400000,2.400000 +L 3.800000,1.200000,5.000000,2.400000 +L 2.601000,1.200000,3.800000,1.200000 +L 2.601000,6.000000,3.800000,6.000000 + +[0070] p +L 2.000000,5.400000,2.602000,6.000000 +L 5.001000,4.800000,3.801000,6.000000 +L 1.401000,0.000000,1.401000,6.000000 +L 5.001000,3.000000,5.001000,4.800000 +L 3.801000,1.800000,5.001000,3.000000 +L 2.602000,1.800000,2.000000,2.400000 +L 1.401000,5.400000,2.000000,5.400000 +L 2.602000,1.800000,3.801000,1.800000 +L 1.401000,2.400000,2.000000,2.400000 +L 2.602000,6.000000,3.801000,6.000000 + +[0071] q +L 4.400000,5.400000,3.801000,6.000000 +L 1.400000,4.800000,2.600000,6.000000 +L 1.400000,3.000000,1.400000,4.800000 +L 5.000000,0.000000,5.000000,6.000000 +L 2.600000,1.800000,1.400000,3.000000 +L 3.801000,1.800000,4.400000,2.400000 +L 4.400000,5.400000,5.000000,5.400000 +L 2.600000,1.800000,3.801000,1.800000 +L 4.400000,2.400000,5.000000,2.400000 +L 2.600000,6.000000,3.801000,6.000000 + +[0072] r +L 3.201000,5.400000,3.800000,6.000000 +L 2.601000,1.200000,2.601000,6.000000 +L 2.601000,5.400000,3.201000,5.400000 +L 3.800000,6.000000,4.401000,6.000000 + +[0073] s +L 4.400000,3.000000,3.801000,3.600000 +L 3.200000,3.600000,2.601000,4.200000 +L 2.001000,5.400000,2.601000,6.000000 +L 5.000000,5.400000,4.400000,6.000000 +L 5.000000,1.800000,5.000000,3.000000 +L 2.001000,4.200000,2.001000,5.400000 +L 4.400000,1.200000,5.000000,1.800000 +L 2.601000,1.200000,2.001000,1.800000 +L 2.001000,4.200000,2.601000,4.200000 +L 4.400000,3.000000,5.000000,3.000000 +L 3.200000,3.600000,3.801000,3.600000 +L 2.601000,1.200000,4.400000,1.200000 +L 2.601000,6.000000,4.400000,6.000000 + +[0074] t +L 3.201000,1.800000,3.201000,7.800000 +L 3.800000,1.200000,3.201000,1.800000 +L 3.800000,1.200000,4.400000,1.200000 +L 2.000000,6.000000,4.400000,6.000000 + +[0075] u +L 2.001000,1.800000,2.001000,6.000000 +L 5.000000,1.200000,5.000000,6.000000 +L 3.801000,1.200000,4.401000,1.800000 +L 2.601000,1.200000,2.001000,1.800000 +L 4.401000,1.800000,5.000000,1.800000 +L 2.601000,1.200000,3.801000,1.200000 + +[0076] v +L 3.001000,4.200000,3.601000,4.800000 +L 0.601000,4.200000,0.001000,4.800000 +L 2.401000,3.000000,3.001000,3.600000 +L 1.201000,3.000000,0.601000,3.600000 +L 3.001000,3.600000,3.001000,4.200000 +L 3.601000,4.800000,3.601000,6.000000 +L 2.401000,2.400000,2.401000,3.000000 +L 0.601000,3.600000,0.601000,4.200000 +L 1.201000,2.400000,1.201000,3.000000 +L 1.801000,1.200000,1.801000,1.800000 +L 0.001000,4.800000,0.001000,6.000000 +L 1.801000,1.800000,2.401000,2.400000 +L 1.801000,1.800000,1.201000,2.400000 + +[0077] w +L 1.201000,3.600000,1.801000,4.200000 +L 2.401000,3.600000,1.801000,4.200000 +L 0.000000,3.000000,0.000000,6.000000 +L 0.601000,1.200000,0.601000,2.400000 +L 3.601000,3.000000,3.601000,6.000000 +L 3.001000,1.200000,3.001000,2.400000 +L 1.201000,3.000000,1.201000,3.600000 +L 1.801000,4.200000,1.801000,6.000000 +L 2.401000,3.000000,2.401000,3.600000 +L 3.001000,2.400000,3.601000,3.000000 +L 3.001000,2.400000,2.401000,3.000000 +L 0.601000,2.400000,0.000000,3.000000 +L 0.601000,2.400000,1.201000,3.000000 + +[0078] x +L 2.401000,3.000000,1.201000,4.200000 +L 1.201000,3.000000,2.401000,4.200000 +L 2.401000,4.800000,3.601000,6.000000 +L 1.201000,4.800000,0.001000,6.000000 +L 1.201000,2.400000,1.201000,3.000000 +L 1.201000,4.200000,1.201000,4.800000 +L 2.401000,2.400000,2.401000,3.000000 +L 2.401000,4.200000,2.401000,4.800000 +L 0.001000,1.200000,1.201000,2.400000 +L 3.601000,1.200000,2.401000,2.400000 + +[0079] y +L 0.602000,4.800000,0.001000,5.400000 +L 3.001000,4.800000,3.601000,5.400000 +L 2.401000,3.600000,3.001000,4.200000 +L 1.201000,3.600000,0.602000,4.200000 +L 1.801000,1.200000,1.801000,2.400000 +L 2.401000,2.400000,2.401000,3.600000 +L 3.001000,4.200000,3.001000,4.800000 +L 1.201000,3.000000,1.201000,3.600000 +L 0.001000,5.400000,0.001000,6.000000 +L 0.602000,4.200000,0.602000,4.800000 +L 3.601000,5.400000,3.601000,6.000000 +L 1.801000,2.400000,1.201000,3.000000 +L 0.602000,0.000000,1.801000,1.200000 +L 0.001000,0.000000,0.602000,0.000000 +L 1.801000,2.400000,2.401000,2.400000 + +[007a] z +L 2.401000,4.800000,3.001000,5.400000 +L 1.801000,3.600000,2.401000,4.200000 +L 3.001000,5.400000,3.001000,6.000000 +L 0.601000,1.200000,0.601000,1.800000 +L 1.801000,3.000000,1.801000,3.600000 +L 2.401000,4.200000,2.401000,4.800000 +L 0.601000,1.800000,1.801000,3.000000 +L 0.001000,1.200000,3.601000,1.200000 +L 0.601000,6.000000,3.601000,6.000000 + +[007b] { +L 3.197000,4.800000,3.796000,5.400000 +L 3.796000,4.200000,3.197000,4.800000 +L 3.796000,8.400000,4.397000,9.000000 +L 4.397000,0.000000,3.796000,0.600000 +L 3.796000,0.600000,3.796000,4.200000 +L 3.796000,5.400000,3.796000,8.400000 + +[007c] | +L 3.197000,0.000000,3.197000,9.000000 + +[007d] } +L 3.197000,4.800000,2.597000,5.400000 +L 2.597000,4.200000,3.197000,4.800000 +L 2.597000,8.400000,1.997000,9.000000 +L 1.997000,0.000000,2.597000,0.600000 +L 2.597000,0.600000,2.597000,4.200000 +L 2.597000,5.400000,2.597000,8.400000 + +[007e] ~ +L 4.397000,6.000000,4.997000,6.600000 +L 1.397000,6.600000,1.997000,7.200000 +L 3.796000,6.000000,2.597000,7.200000 +L 3.796000,6.000000,4.397000,6.000000 +L 1.997000,7.200000,2.597000,7.200000 + +[00a1] +L -0.000262,4.999537,0.999736,4.999537 +L 0.999736,6.999577,3.999735,6.999577 +L -0.000262,4.999537,-0.000262,5.999597 +L 0.999736,-0.000423,0.999736,4.999537 +L 4.999737,-0.000423,4.999737,5.999597 +L -0.000262,5.999597,0.999736,6.999577 +L 4.999737,5.999597,3.999735,6.999577 + +[00a2] +L 0.999737,-0.000423,2.999733,-0.000423 +L -0.000257,5.999597,0.999737,5.999597 +L -0.000257,6.999577,0.999737,6.999577 +L -0.000257,0.999527,-0.000257,3.999627 +L -0.000257,5.999597,-0.000257,6.999577 +L 0.999737,4.999537,0.999737,6.999577 +L 3.999753,0.999527,3.999753,6.999577 +L 0.999737,-0.000423,-0.000257,0.999527 +L 2.999733,-0.000423,3.999753,0.999527 +L -0.000257,3.999627,0.999737,4.999537 + +[00a3] +L 1.999748,-0.000423,3.999728,-0.000423 +L -0.000252,5.999597,1.999748,5.999597 +L -0.000252,5.999597,-0.000252,6.999577 +L 0.999728,0.999527,0.999728,3.999627 +L 1.999748,4.999537,1.999748,6.999577 +L 4.999748,0.999527,4.999748,6.999577 +L 1.999748,-0.000423,0.999728,0.999527 +L 3.999728,-0.000423,4.999748,0.999527 +L 0.999728,3.999627,1.999748,4.999537 + +[00a4] +L -0.000252,1.999547,0.999738,1.999547 +L -0.000252,2.999567,2.999758,2.999567 +L 1.999718,3.999627,2.999758,3.999627 +L 0.999738,6.999577,3.999728,6.999577 +L -0.000252,-0.000423,-0.000252,5.999597 +L 0.999738,1.999547,0.999738,2.999567 +L 1.999718,2.999567,1.999718,3.999627 +L 2.999758,2.999567,2.999758,3.999627 +L 4.999748,-0.000423,4.999748,5.999597 +L -0.000252,5.999597,0.999738,6.999577 +L 4.999748,5.999597,3.999728,6.999577 + +[00a5] +L -0.000282,1.999547,0.999718,1.999547 +L -0.000282,2.999567,2.999728,2.999567 +L 1.999708,3.999627,2.999728,3.999627 +L 0.999718,6.999577,1.999708,6.999577 +L -0.000282,-0.000423,-0.000282,5.999597 +L 0.999718,1.999547,0.999718,2.999567 +L 1.999708,2.999567,1.999708,3.999627 +L 2.999728,2.999567,2.999728,3.999627 +L 4.999698,-0.000423,4.999698,5.999597 +L -0.000282,5.999597,0.999718,6.999577 +L 2.999728,5.999597,1.999708,6.999577 +L 2.999728,5.999597,3.999728,6.999577 +L 4.999698,5.999597,3.999728,6.999577 + +[00a6] +L -0.000312,-0.000423,0.999688,-0.000423 +L 2.999698,-0.000423,3.999678,-0.000423 +L -0.000312,0.999527,1.999698,0.999527 +L -0.000312,5.999597,1.999698,5.999597 +L -0.000312,-0.000423,-0.000312,0.999527 +L -0.000312,5.999597,-0.000312,6.999577 +L 0.999688,-0.000423,0.999688,3.999627 +L 1.999698,4.999537,1.999698,6.999577 +L 4.999688,0.999527,4.999688,6.999577 +L 2.999698,-0.000423,1.999698,0.999527 +L 3.999678,-0.000423,4.999688,0.999527 +L 0.999688,3.999627,1.999698,4.999537 + +[00a7] +L 2.999688,-0.000423,3.999668,-0.000423 +L 2.999688,5.999597,3.999668,5.999597 +L 2.999688,6.999577,3.999668,6.999577 +L 2.999688,5.999597,2.999688,6.999577 +L 3.999668,-0.000423,3.999668,6.999577 +L 2.999688,-0.000423,-0.000302,2.999567 + +[00a8] +L 2.999708,-0.000423,3.999708,-0.000423 +L 1.999688,2.999567,2.999708,2.999567 +L 1.999688,3.999627,2.999708,3.999627 +L 0.999688,6.999577,3.999708,6.999577 +L 1.999688,2.999567,1.999688,3.999627 +L 2.999708,-0.000423,2.999708,3.999627 +L 4.999698,0.999527,4.999698,5.999597 +L 3.999708,-0.000423,4.999698,0.999527 +L -0.000322,5.999597,0.999688,6.999577 +L 4.999698,5.999597,3.999708,6.999577 + +[00a9] +L 0.999728,-0.000423,1.999678,-0.000423 +L 3.999678,-0.000423,4.999668,-0.000423 +L 2.999658,0.999527,4.999668,0.999527 +L -0.000332,2.999567,0.999728,2.999567 +L -0.000332,3.999627,0.999728,3.999627 +L 0.999728,6.999577,2.999658,6.999577 +L -0.000332,2.999567,-0.000332,3.999627 +L 0.999728,-0.000423,0.999728,3.999627 +L 3.999678,-0.000423,3.999678,5.999597 +L 4.999668,-0.000423,4.999668,0.999527 +L 1.999678,-0.000423,2.999658,0.999527 +L -0.000332,5.999597,0.999728,6.999577 +L 3.999678,5.999597,2.999658,6.999577 + +[00aa] +L 1.999678,-0.000423,3.999688,-0.000423 +L 0.999698,5.999597,1.999678,5.999597 +L 0.999698,6.999577,1.999678,6.999577 +L 0.999698,0.999527,0.999698,3.999627 +L 0.999698,5.999597,0.999698,6.999577 +L 1.999678,4.999537,1.999678,6.999577 +L 4.999708,0.999527,4.999708,4.999537 +L 4.999708,6.999577,4.999708,7.999637 +L 1.999678,-0.000423,0.999698,0.999527 +L 3.999688,-0.000423,4.999708,0.999527 +L 0.999698,3.999627,1.999678,4.999537 +L 4.999708,4.999537,3.999688,5.999597 +L 3.999688,5.999597,4.999708,6.999577 + +[00ab] +L 1.999688,-0.000423,3.999658,-0.000423 +L -0.000322,5.999597,1.999688,5.999597 +L -0.000322,5.999597,-0.000322,6.999577 +L 0.999668,0.999527,0.999668,3.999627 +L 1.999688,4.999537,1.999688,6.999577 +L 4.999678,0.999527,4.999678,4.999537 +L 4.999678,6.999577,4.999678,7.999637 +L 1.999688,-0.000423,0.999668,0.999527 +L 3.999658,-0.000423,4.999678,0.999527 +L 0.999668,3.999627,1.999688,4.999537 +L 4.999678,4.999537,3.999658,5.999597 +L 3.999658,5.999597,4.999678,6.999577 + +[00ac] +L -0.000352,-0.000423,0.999668,-0.000423 +L 2.999638,-0.000423,3.999698,-0.000423 +L -0.000352,0.999527,0.999668,0.999527 +L 2.999638,0.999527,5.999698,0.999527 +L 0.999668,6.999577,2.999638,6.999577 +L -0.000352,-0.000423,-0.000352,3.999627 +L 0.999668,-0.000423,0.999668,0.999527 +L 2.999638,-0.000423,2.999638,0.999527 +L 3.999698,-0.000423,3.999698,5.999597 +L 5.999698,-0.000423,5.999698,6.999577 +L -0.000352,3.999627,0.999668,4.999537 +L 0.999668,4.999537,-0.000352,5.999597 +L -0.000352,5.999597,0.999668,6.999577 +L 3.999698,5.999597,2.999638,6.999577 + +[00ad] +L 2.999648,-1.000403,4.999648,-1.000403 +L -0.000342,-0.000423,0.999638,-0.000423 +L -0.000342,0.999527,0.999638,0.999527 +L 2.999648,0.999527,4.999648,0.999527 +L 0.999638,6.999577,1.999698,6.999577 +L -0.000342,-0.000423,-0.000342,3.999627 +L 0.999638,-0.000423,0.999638,0.999527 +L 2.999648,0.999527,2.999648,5.999597 +L 4.999648,-1.000403,4.999648,6.999577 +L -0.000342,3.999627,0.999638,4.999537 +L 0.999638,4.999537,-0.000342,5.999597 +L -0.000342,5.999597,0.999638,6.999577 +L 2.999648,5.999597,1.999698,6.999577 + +[00ae] +L 3.999668,-1.000403,4.999618,-1.000403 +L -0.000342,-0.000423,2.999618,-0.000423 +L -0.000342,0.999527,0.999648,0.999527 +L 3.999668,0.999527,4.999618,0.999527 +L -0.000342,4.999537,0.999648,4.999537 +L 0.999648,6.999577,3.999668,6.999577 +L -0.000342,-0.000423,-0.000342,0.999527 +L -0.000342,4.999537,-0.000342,5.999597 +L 0.999648,-0.000423,0.999648,4.999537 +L 1.999668,-1.000403,1.999668,-0.000423 +L 4.999618,-1.000403,4.999618,5.999597 +L 3.999668,-1.000403,2.999618,-0.000423 +L 2.999618,-0.000423,3.999668,0.999527 +L -0.000342,5.999597,0.999648,6.999577 +L 4.999618,5.999597,3.999668,6.999577 + +[00af] +L 1.999668,-1.000403,2.999618,-1.000403 +L -0.000332,-0.000423,0.999648,-0.000423 +L 2.999618,-0.000423,4.999628,-0.000423 +L -0.000332,0.999527,0.999648,0.999527 +L -0.000332,4.999537,0.999648,4.999537 +L 0.999648,6.999577,3.999678,6.999577 +L -0.000332,-0.000423,-0.000332,0.999527 +L -0.000332,4.999537,-0.000332,5.999597 +L 0.999648,-0.000423,0.999648,4.999537 +L 2.999618,-1.000403,2.999618,0.999527 +L 4.999628,-1.000403,4.999628,5.999597 +L 1.999668,-1.000403,0.999648,-0.000423 +L -0.000332,5.999597,0.999648,6.999577 +L 4.999628,5.999597,3.999678,6.999577 + +[00b0] +L 3.999748,-2.000393,4.999738,-2.000393 +L 3.999748,0.999527,4.999738,0.999527 +L 1.999748,1.999547,2.999728,1.999547 +L 1.999748,2.999567,2.999728,2.999567 +L 1.999748,4.999577,3.999748,4.999577 +L 1.999748,6.999577,4.999738,6.999577 +L 1.999748,1.999547,1.999748,2.999567 +L 2.999728,1.999547,2.999728,2.999567 +L 4.999738,-2.000393,4.999738,3.999517 +L 1.999748,-2.000393,0.999728,-1.000403 +L 1.999748,-2.000393,2.999728,-1.000403 +L 3.999748,-2.000393,2.999728,-1.000403 +L 3.999748,0.999527,2.999728,1.999547 +L 4.999738,3.999517,3.999748,4.999577 +L 1.999748,4.999577,0.999728,5.999527 +L 0.999728,5.999527,1.999748,6.999577 + +[00b1] +L -0.000292,5.999527,2.999738,5.999527 +L -0.000292,5.999527,-0.000292,6.999577 +L 0.999728,-0.000453,0.999728,3.999517 +L 1.999718,4.999577,1.999718,6.999577 +L 4.999708,-0.000453,4.999708,5.999527 +L 0.999728,3.999517,1.999718,4.999577 +L 2.999738,5.999527,3.999718,6.999577 +L 4.999708,5.999527,3.999718,6.999577 + +[00b2] +L 2.999738,-0.000453,3.999758,-0.000453 +L -0.000252,0.999527,0.999738,0.999527 +L 2.999738,0.999527,5.999768,0.999527 +L -0.000252,2.999567,1.999758,2.999567 +L -0.000252,3.999517,1.999758,3.999517 +L -0.000252,-0.000453,-0.000252,5.999527 +L 0.999738,2.999567,0.999738,3.999517 +L 1.999758,1.999547,1.999758,3.999517 +L 2.999738,-0.000453,2.999738,0.999527 +L 3.999758,-0.000453,3.999758,5.999527 +L 5.999768,-0.000453,5.999768,6.999577 +L 0.999738,0.999527,1.999758,1.999547 +L 2.999738,0.999527,1.999758,1.999547 +L -0.000252,5.999527,0.999738,6.999577 +L 1.999758,5.999527,0.999738,6.999577 +L 1.999758,5.999527,2.999738,6.999577 +L 3.999758,5.999527,2.999738,6.999577 + +[00b3] +L -0.000242,-0.000453,0.999708,-0.000453 +L 4.999718,-0.000453,5.999738,-0.000453 +L -0.000242,0.999527,0.999708,0.999527 +L 2.999748,0.999527,5.999738,0.999527 +L 0.999708,6.999577,1.999728,6.999577 +L -0.000242,-0.000453,-0.000242,3.999517 +L 0.999708,-0.000453,0.999708,0.999527 +L 2.999748,-0.000453,2.999748,5.999527 +L 4.999718,-0.000453,4.999718,6.999577 +L 5.999738,-0.000453,5.999738,0.999527 +L -0.000242,3.999517,0.999708,4.999577 +L 0.999708,4.999577,-0.000242,5.999527 +L -0.000242,5.999527,0.999708,6.999577 +L 2.999748,5.999527,1.999728,6.999577 + +[00b4] +L -0.000272,0.999527,1.999698,0.999527 +L 1.999698,2.999567,2.999718,2.999567 +L 1.999698,3.999517,2.999718,3.999517 +L 0.999748,6.999577,3.999738,6.999577 +L -0.000272,-0.000453,-0.000272,5.999527 +L 1.999698,2.999567,1.999698,3.999517 +L 2.999718,1.999547,2.999718,3.999517 +L 4.999758,-0.000453,4.999758,5.999527 +L 1.999698,0.999527,2.999718,1.999547 +L -0.000272,5.999527,0.999748,6.999577 +L 4.999758,5.999527,3.999738,6.999577 + +[00b5] +L -0.000302,0.999527,1.999738,0.999527 +L 1.999738,2.999567,2.999688,2.999567 +L 1.999738,3.999517,2.999688,3.999517 +L 0.999718,6.999577,1.999738,6.999577 +L -0.000302,-0.000453,-0.000302,5.999527 +L 1.999738,2.999567,1.999738,3.999517 +L 2.999688,1.999547,2.999688,3.999517 +L 4.999658,-0.000453,4.999658,5.999527 +L 1.999738,0.999527,2.999688,1.999547 +L -0.000302,5.999527,0.999718,6.999577 +L 2.999688,5.999527,1.999738,6.999577 +L 2.999688,5.999527,3.999708,6.999577 +L 4.999658,5.999527,3.999708,6.999577 + +[00b6] +L 0.999688,-0.000453,1.999638,-0.000453 +L 0.999688,0.999527,1.999638,0.999527 +L -0.000332,4.999577,0.999688,4.999577 +L 0.999688,6.999577,3.999748,6.999577 +L -0.000332,4.999577,-0.000332,5.999527 +L 0.999688,-0.000453,0.999688,4.999577 +L 1.999638,-0.000453,1.999638,0.999527 +L 4.999768,-0.000453,4.999768,5.999527 +L -0.000332,5.999527,0.999688,6.999577 +L 4.999768,5.999527,3.999748,6.999577 + +[00b7] +L 0.999658,4.999577,1.999678,4.999577 +L -0.000292,5.999527,0.999658,5.999527 +L -0.000292,6.999577,0.999658,6.999577 +L -0.000292,5.999527,-0.000292,6.999577 +L 0.999658,-0.000453,0.999658,6.999577 +L 4.999668,-0.000453,4.999668,5.999527 +L 1.999678,4.999577,3.999718,6.999577 +L 4.999668,5.999527,3.999718,6.999577 + +[00b8] +L 1.999648,-0.000453,2.999668,-0.000453 +L -0.000322,4.999577,2.999668,4.999577 +L 0.999698,6.999577,3.999688,6.999577 +L -0.000322,4.999577,-0.000322,5.999527 +L 0.999698,0.999527,0.999698,4.999577 +L 3.999688,0.999527,3.999688,3.999517 +L 1.999648,-0.000453,0.999698,0.999527 +L 2.999668,-0.000453,3.999688,0.999527 +L 3.999688,3.999517,2.999668,4.999577 +L -0.000322,5.999527,0.999698,6.999577 + +[00b9] +L 0.999668,-0.000453,1.999688,-0.000453 +L 3.999658,-0.000453,4.999678,-0.000453 +L 2.999638,0.999527,4.999678,0.999527 +L -0.000352,5.999527,0.999668,5.999527 +L -0.000352,6.999577,0.999668,6.999577 +L -0.000352,0.999527,-0.000352,3.999517 +L -0.000352,5.999527,-0.000352,6.999577 +L 0.999668,4.999577,0.999668,6.999577 +L 3.999658,-0.000453,3.999658,6.999577 +L 4.999678,-0.000453,4.999678,0.999527 +L 0.999668,-0.000453,-0.000352,0.999527 +L 1.999688,-0.000453,2.999638,0.999527 +L -0.000352,3.999517,0.999668,4.999577 + +[00ba] +L 1.999658,-0.000453,3.999628,-0.000453 +L 0.999638,5.999527,1.999658,5.999527 +L 0.999638,6.999577,1.999658,6.999577 +L 0.999638,0.999527,0.999638,3.999517 +L 0.999638,5.999527,0.999638,6.999577 +L 1.999658,4.999577,1.999658,6.999577 +L 4.999718,0.999527,4.999718,6.999577 +L 1.999658,-0.000453,0.999638,0.999527 +L 3.999628,-0.000453,4.999718,0.999527 +L 0.999638,3.999517,1.999658,4.999577 + +[00bb] +L 1.999628,-0.000453,3.999668,-0.000453 +L 0.999608,4.999577,1.999628,4.999577 +L 0.999608,5.999527,1.999628,5.999527 +L 0.999608,0.999527,0.999608,2.999567 +L 0.999608,4.999577,0.999608,5.999527 +L 1.999628,3.999517,1.999628,5.999527 +L 4.999618,0.999527,4.999618,7.999637 +L 1.999628,-0.000453,0.999608,0.999527 +L 3.999668,-0.000453,4.999618,0.999527 +L 0.999608,2.999567,1.999628,3.999517 + +[00bc] +L 0.999648,-0.000453,1.999598,-0.000453 +L 3.999638,-0.000453,4.999728,-0.000453 +L -0.000372,5.999527,0.999648,5.999527 +L -0.000372,6.999577,0.999648,6.999577 +L -0.000372,0.999527,-0.000372,6.999577 +L 0.999648,5.999527,0.999648,6.999577 +L 2.999618,0.999527,2.999618,6.999577 +L 5.999678,0.999527,5.999678,6.999577 +L 0.999648,-0.000453,-0.000372,0.999527 +L 1.999598,-0.000453,2.999618,0.999527 +L 3.999638,-0.000453,2.999618,0.999527 +L 4.999728,-0.000453,5.999678,0.999527 + +[00bd] +L 0.999688,-0.000453,1.999708,-0.000453 +L 3.999678,-0.000453,4.999698,-0.000453 +L -0.000332,4.999577,0.999688,4.999577 +L -0.000332,5.999527,0.999688,5.999527 +L -0.000332,0.999527,-0.000332,5.999527 +L 0.999688,4.999577,0.999688,5.999527 +L 2.999728,0.999527,2.999728,5.999527 +L 5.999718,0.999527,5.999718,7.999637 +L 0.999688,-0.000453,-0.000332,0.999527 +L 1.999708,-0.000453,2.999728,0.999527 +L 3.999678,-0.000453,2.999728,0.999527 +L 4.999698,-0.000453,5.999718,0.999527 + +[00be] +L 0.999658,-0.000453,1.999678,-0.000453 +L 3.999718,-0.000453,4.999668,-0.000453 +L -0.000292,5.999527,0.999658,5.999527 +L -0.000292,6.999577,0.999658,6.999577 +L -0.000292,0.999527,-0.000292,3.999517 +L -0.000292,5.999527,-0.000292,6.999577 +L 0.999658,4.999577,0.999658,6.999577 +L 2.999698,0.999527,2.999698,6.999577 +L 5.999688,0.999527,5.999688,6.999577 +L 0.999658,-0.000453,-0.000292,0.999527 +L 1.999678,-0.000453,2.999698,0.999527 +L 3.999718,-0.000453,2.999698,0.999527 +L 4.999668,-0.000453,5.999688,0.999527 +L -0.000292,3.999517,0.999658,4.999577 + +[00bf] +L 0.999698,-0.000453,1.999648,-0.000453 +L 3.999688,-0.000453,4.999568,-0.000453 +L -0.000392,4.999577,0.999698,4.999577 +L -0.000392,5.999527,0.999698,5.999527 +L -0.000392,0.999527,-0.000392,2.999567 +L -0.000392,4.999577,-0.000392,5.999527 +L 0.999698,3.999517,0.999698,5.999527 +L 2.999598,0.999527,2.999598,5.999527 +L 5.999658,0.999527,5.999658,7.999637 +L 0.999698,-0.000453,-0.000392,0.999527 +L 1.999648,-0.000453,2.999598,0.999527 +L 3.999688,-0.000453,2.999598,0.999527 +L 4.999568,-0.000453,5.999658,0.999527 +L -0.000392,2.999567,0.999698,3.999517 + +[00c0] +L -0.000282,-0.000383,0.999738,-0.000383 +L -0.000282,0.999567,0.999738,0.999567 +L -0.000282,4.999537,0.999738,4.999537 +L 0.999738,6.999577,3.999728,6.999577 +L -0.000282,-0.000383,-0.000282,0.999567 +L -0.000282,4.999537,-0.000282,5.999597 +L 0.999738,-0.000383,0.999738,4.999537 +L 4.999748,-0.000383,4.999748,5.999597 +L -0.000282,5.999597,0.999738,6.999577 +L 4.999748,5.999597,3.999728,6.999577 + +[00c1] +L -0.000322,-0.000383,0.999678,-0.000383 +L 2.999678,-0.000383,3.999678,-0.000383 +L -0.000322,0.999567,1.999678,0.999567 +L -0.000322,5.999597,0.999678,5.999597 +L -0.000322,6.999577,0.999678,6.999577 +L -0.000322,-0.000383,-0.000322,0.999567 +L -0.000322,5.999597,-0.000322,6.999577 +L 0.999678,-0.000383,0.999678,6.999577 +L 4.999678,0.999567,4.999678,6.999577 +L 2.999678,-0.000383,1.999678,0.999567 +L 3.999678,-0.000383,4.999678,0.999567 + +[00c2] +L 0.999678,-0.000383,3.999678,-0.000383 +L 0.999678,3.999517,1.999678,3.999517 +L -0.000322,5.999597,0.999678,5.999597 +L -0.000322,6.999577,0.999678,6.999577 +L -0.000322,0.999567,-0.000322,2.999537 +L -0.000322,4.999537,-0.000322,6.999577 +L 0.999678,5.999597,0.999678,6.999577 +L 4.999678,0.999567,4.999678,6.999577 +L 0.999678,-0.000383,-0.000322,0.999567 +L 3.999678,-0.000383,4.999678,0.999567 +L -0.000322,2.999537,0.999678,3.999517 +L 0.999678,3.999517,-0.000322,4.999537 + +[00c3] +L 2.999678,-0.000383,3.999678,-0.000383 +L 2.999678,0.999567,3.999678,0.999567 +L -0.000322,4.999537,2.999678,4.999537 +L 0.999678,6.999577,3.999678,6.999577 +L -0.000322,4.999537,-0.000322,5.999597 +L 2.999678,-0.000383,2.999678,0.999567 +L 3.999678,-0.000383,3.999678,3.999517 +L 3.999678,3.999517,2.999678,4.999537 +L -0.000322,5.999597,0.999678,6.999577 + +[00c4] +L 0.999678,-0.000383,1.999678,-0.000383 +L 0.999678,0.999567,1.999678,0.999567 +L -0.000422,4.999537,0.999678,4.999537 +L 0.999678,6.999577,3.999678,6.999577 +L -0.000422,4.999537,-0.000422,5.999597 +L 0.999678,-0.000383,0.999678,4.999537 +L 1.999678,-0.000383,1.999678,0.999567 +L 4.999678,-1.000403,4.999678,5.999597 +L -0.000422,5.999597,0.999678,6.999577 +L 4.999678,5.999597,3.999678,6.999577 + +[00c5] +L 0.999578,-0.000383,1.999678,-0.000383 +L 0.999578,0.999567,1.999678,0.999567 +L 3.999578,2.999537,4.999578,2.999537 +L 1.999678,3.999517,2.999678,3.999517 +L 0.999578,6.999577,3.999578,6.999577 +L 0.999578,-0.000383,0.999578,2.999537 +L 1.999678,-0.000383,1.999678,0.999567 +L 4.999578,-0.000383,4.999578,5.999597 +L 0.999578,2.999537,1.999678,3.999517 +L 3.999578,2.999537,2.999678,3.999517 +L -0.000322,5.999597,0.999578,6.999577 +L 4.999578,5.999597,3.999578,6.999577 + +[00c6] +L -0.000322,-0.000383,0.999678,-0.000383 +L -0.000322,0.999567,0.999678,0.999567 +L -0.000322,4.999537,0.999678,4.999537 +L 0.999678,6.999577,3.999678,6.999577 +L -0.000322,-0.000383,-0.000322,0.999567 +L -0.000322,4.999537,-0.000322,5.999597 +L 0.999678,-0.000383,0.999678,4.999537 +L 4.999678,-1.000403,4.999678,5.999597 +L -0.000322,5.999597,0.999678,6.999577 +L 4.999678,5.999597,3.999678,6.999577 + +[00c7] +L 2.999678,-0.000383,3.999678,-0.000383 +L 2.999678,0.999567,3.999678,0.999567 +L 0.999778,6.999577,2.999678,6.999577 +L 2.999678,-0.000383,2.999678,0.999567 +L 3.999678,-0.000383,3.999678,5.999597 +L -0.000222,5.999597,0.999778,6.999577 +L 3.999678,5.999597,2.999678,6.999577 + +[00c8] +L -0.000322,1.999547,0.999678,1.999547 +L -0.000322,2.999537,2.999678,2.999537 +L 1.999678,3.999517,2.999678,3.999517 +L 0.999678,5.999597,3.999678,5.999597 +L -0.000322,-0.000383,-0.000322,4.999537 +L 0.999678,1.999547,0.999678,2.999537 +L 1.999678,2.999537,1.999678,3.999517 +L 2.999678,2.999537,2.999678,3.999517 +L 4.999778,-0.000383,4.999778,4.999537 +L 4.999778,6.999577,4.999778,7.999567 +L -0.000322,4.999537,0.999678,5.999597 +L 4.999778,4.999537,3.999678,5.999597 +L 3.999678,5.999597,4.999778,6.999577 + +[00c9] +L 1.999678,-0.000383,3.999578,-0.000383 +L 2.999578,2.999537,5.999678,2.999537 +L -0.000322,5.999597,0.999678,5.999597 +L -0.000322,6.999577,0.999678,6.999577 +L -0.000322,5.999597,-0.000322,6.999577 +L 0.999678,0.999567,0.999678,6.999577 +L 2.999578,2.999537,2.999578,3.999517 +L 4.999678,0.999567,4.999678,6.999577 +L 1.999678,-0.000383,0.999678,0.999567 +L 3.999578,-0.000383,4.999678,0.999567 + +[00ca] +L 0.999578,-0.000383,1.999578,-0.000383 +L 0.999578,0.999567,1.999578,0.999567 +L 3.999678,2.999537,4.999678,2.999537 +L 1.999578,3.999517,2.999478,3.999517 +L 0.999578,6.999577,3.999678,6.999577 +L 4.999678,7.999567,5.999578,7.999567 +L 0.999578,-0.000383,0.999578,2.999537 +L 1.999578,-0.000383,1.999578,0.999567 +L 4.999678,-0.000383,4.999678,5.999597 +L 0.999578,2.999537,1.999578,3.999517 +L 3.999678,2.999537,2.999478,3.999517 +L -0.000322,5.999597,0.999578,6.999577 +L 4.999678,5.999597,3.999678,6.999577 +L 3.999678,6.999577,4.999678,7.999567 + +[00cb] +L 0.999478,2.999537,1.999678,2.999537 +L -0.000422,5.999597,0.999478,5.999597 +L 3.999578,5.999597,4.999578,5.999597 +L -0.000422,6.999577,0.999478,6.999577 +L 3.999578,6.999577,4.999578,6.999577 +L -0.000422,5.999597,-0.000422,6.999577 +L 0.999478,-0.000383,0.999478,6.999577 +L 3.999578,4.999537,3.999578,6.999577 +L 4.999578,-0.000383,4.999578,3.999517 +L 4.999578,5.999597,4.999578,6.999577 +L 1.999678,2.999537,3.999578,4.999537 +L 4.999578,3.999517,3.999578,4.999537 + +[00cc] +L 0.999678,-0.000383,1.999678,-0.000383 +L 3.999578,-0.000383,4.999478,-0.000383 +L -0.000522,4.999537,0.999678,4.999537 +L -0.000522,5.999597,0.999678,5.999597 +L -0.000522,0.999567,-0.000522,2.999537 +L -0.000522,4.999537,-0.000522,5.999597 +L 0.999678,3.999517,0.999678,5.999597 +L 2.999578,0.999567,2.999578,5.999597 +L 5.999478,0.999567,5.999478,4.999537 +L 5.999478,6.999577,5.999478,7.999567 +L 0.999678,-0.000383,-0.000522,0.999567 +L 1.999678,-0.000383,2.999578,0.999567 +L 3.999578,-0.000383,2.999578,0.999567 +L 4.999478,-0.000383,5.999478,0.999567 +L -0.000522,2.999537,0.999678,3.999517 +L 5.999478,4.999537,4.999478,5.999597 +L 4.999478,5.999597,5.999478,6.999577 + +[00cd] +L -0.000422,-0.000383,4.999478,-0.000383 +L -0.000422,2.999537,0.999578,2.999537 +L -0.000422,3.999517,0.999578,3.999517 +L 0.999578,6.999577,3.999478,6.999577 +L -0.000422,-0.000383,-0.000422,3.999517 +L 0.999578,2.999537,0.999578,3.999517 +L 4.999478,-0.000383,4.999478,5.999597 +L -0.000422,5.999597,0.999578,6.999577 +L 4.999478,5.999597,3.999478,6.999577 + +[00ce] +L -0.000522,-0.000383,4.999578,-0.000383 +L -0.000522,2.999537,0.999478,2.999537 +L -0.000522,3.999517,0.999478,3.999517 +L -0.000522,5.999597,2.999478,5.999597 +L 0.999478,6.999577,3.999678,6.999577 +L 4.999578,7.999567,5.999578,7.999567 +L -0.000522,-0.000383,-0.000522,3.999517 +L 0.999478,2.999537,0.999478,3.999517 +L 0.999478,5.999597,0.999478,6.999577 +L 1.999478,5.999597,1.999478,6.999577 +L 2.999478,5.999597,2.999478,6.999577 +L 4.999578,-0.000383,4.999578,5.999597 +L 4.999578,5.999597,3.999678,6.999577 +L 3.999678,6.999577,4.999578,7.999567 + +[00cf] +L -0.000522,5.999597,1.999678,5.999597 +L -0.000522,6.999577,0.999478,6.999577 +L 2.999578,6.999577,3.999478,6.999577 +L -0.000522,5.999597,-0.000522,6.999577 +L 0.999478,5.999597,0.999478,6.999577 +L 3.999478,-0.000383,3.999478,6.999577 +L 1.999678,5.999597,2.999578,6.999577 + +[00d0] +L 0.999678,1.999617,2.999578,1.999617 +L 0.999678,2.999607,1.999678,2.999607 +L 0.999678,4.999537,2.999578,4.999537 +L 0.999678,5.999597,1.999678,5.999597 +L 0.999678,1.999617,0.999678,2.999607 +L 0.999678,4.999537,0.999678,5.999597 +L 1.999678,1.999617,1.999678,2.999607 +L 1.999678,4.999537,1.999678,5.999597 +L 2.999578,1.999617,3.999578,2.999607 +L 2.999578,4.999537,3.999578,5.999597 + +[00d1] +L 0.999578,8.999587,4.999678,8.999587 +L 0.999578,9.999567,1.999578,9.999567 +L 0.999578,8.999587,0.999578,9.999567 +L 1.999578,8.999587,1.999578,9.999567 +L 4.999678,8.999587,5.999678,9.999567 + +[00d2] +L 0.999678,6.999547,2.999678,6.999547 +L 3.999678,-0.000423,3.999678,5.999597 +L -0.000422,5.999597,0.999678,6.999547 +L 3.999678,5.999597,2.999678,6.999547 + +[00d3] +L 1.999578,6.999547,3.999578,6.999547 +L -0.000322,8.999587,0.999678,8.999587 +L -0.000322,9.999567,0.999678,9.999567 +L -0.000322,8.999587,-0.000322,9.999567 +L 0.999678,8.999587,0.999678,9.999567 +L 4.999578,-0.000423,4.999578,5.999597 +L 0.999678,5.999597,1.999578,6.999547 +L 4.999578,5.999597,3.999578,6.999547 + +[00d4] +L 0.999578,9.999567,3.999678,9.999567 +L -0.000422,8.999587,0.999578,9.999567 +L 4.999678,8.999587,3.999678,9.999567 + +[00d5] +L 3.999578,8.999587,4.999578,8.999587 +L 0.999578,9.999567,4.999578,9.999567 +L 3.999578,8.999587,3.999578,9.999567 +L 4.999578,8.999587,4.999578,9.999567 +L -0.000422,8.999587,0.999578,9.999567 + +[00d6] +L 2.999578,8.999587,4.999578,8.999587 +L 0.999478,9.999567,2.999578,9.999567 +L 2.999578,8.999587,2.999578,9.999567 +L 4.999578,8.999587,4.999578,9.999567 +L -0.000322,8.999587,0.999478,9.999567 + +[00d7] +L 3.999778,8.999587,4.999778,8.999587 +L 0.999578,9.999567,2.999578,9.999567 +L 4.999778,8.999587,4.999778,9.999567 +L -0.000422,8.999587,0.999578,9.999567 +L 3.999778,8.999587,2.999578,9.999567 + +[00d8] +L 3.999778,-1.000403,4.999678,-1.000403 +L 4.999678,-2.000423,4.999678,-1.000403 + +[00d9] +L 2.999678,-2.000423,4.999678,-2.000423 +L 1.999678,-1.000403,2.999678,-1.000403 +L 2.999678,-2.000423,2.999678,-1.000403 +L 4.999678,-2.000423,4.999678,-1.000403 + +[00da] +L 2.999578,-2.000423,3.999778,-2.000423 +L 2.999578,-1.000403,3.999778,-1.000403 +L 2.999578,-2.000423,2.999578,-1.000403 +L 3.999778,-2.000423,3.999778,-1.000403 + +[00df] +L -0.000522,-0.000423,3.999478,-0.000423 +L 0.999478,3.999587,3.999478,3.999587 +L -0.000522,7.999567,3.999478,7.999567 +L 0.999478,-0.000423,0.999478,7.999567 +L 2.999478,-1.000403,2.999478,8.999587 +L 4.999578,0.999567,4.999578,2.999607 +L 4.999578,4.999537,4.999578,6.999547 +L 3.999478,-0.000423,4.999578,0.999567 +L 4.999578,2.999607,3.999478,3.999587 +L 3.999478,3.999587,4.999578,4.999537 +L 4.999578,6.999547,3.999478,7.999567 + +[00e0] +L 2.999678,-0.000423,3.999578,-0.000423 +L 2.999678,0.999567,3.999578,0.999567 +L 2.999678,-0.000423,2.999678,6.999547 +L 3.999578,-0.000423,3.999578,0.999567 + +[00e1] +L 1.999578,-0.000423,2.999578,-0.000423 +L 4.999578,-0.000423,5.999678,-0.000423 +L 1.999578,0.999567,2.999578,0.999567 +L 4.999578,0.999567,5.999678,0.999567 +L 1.999578,-0.000423,1.999578,6.999547 +L 2.999578,-0.000423,2.999578,0.999567 +L 4.999578,-0.000423,4.999578,6.999547 +L 5.999678,-0.000423,5.999678,0.999567 + +[00e2] +L 3.999678,-0.000423,4.999678,-0.000423 +L 3.999678,0.999567,4.999678,0.999567 +L -0.000422,7.999567,3.999678,7.999567 +L 0.999578,9.999567,4.999678,9.999567 +L -0.000422,7.999567,-0.000422,8.999587 +L 3.999678,-0.000423,3.999678,7.999567 +L 4.999678,-0.000423,4.999678,0.999567 +L -0.000422,8.999587,0.999578,9.999567 +L 5.999578,8.999587,4.999678,9.999567 + +[00e3] +L 3.999578,-0.000423,4.999578,-0.000423 +L 3.999578,0.999567,4.999578,0.999567 +L 0.999578,6.999547,1.999678,6.999547 +L 0.999578,9.999567,2.999678,9.999567 +L -0.000422,7.999567,-0.000422,8.999587 +L 1.999678,6.999547,1.999678,7.999567 +L 3.999578,-0.000423,3.999578,8.999587 +L 4.999578,-0.000423,4.999578,0.999567 +L 0.999578,6.999547,-0.000422,7.999567 +L -0.000422,8.999587,0.999578,9.999567 +L 3.999578,8.999587,2.999678,9.999567 + +[00e4] +L 3.999578,-0.000423,4.999578,-0.000423 +L 3.999578,0.999567,4.999578,0.999567 +L -0.000322,9.999567,0.999478,9.999567 +L 2.999578,9.999567,3.999578,9.999567 +L 3.999578,-0.000423,3.999578,9.999567 +L 4.999578,-0.000423,4.999578,0.999567 +L 1.999578,8.999587,0.999478,9.999567 +L 1.999578,8.999587,2.999578,9.999567 + +[00e5] +L 0.999578,6.999547,2.999578,6.999547 +L 3.999578,-2.000423,3.999578,5.999527 +L -0.000422,5.999527,0.999578,6.999547 +L 3.999578,5.999527,2.999578,6.999547 + +[00e6] +L -0.000422,5.999527,1.999578,5.999527 +L -0.000422,6.999547,0.999578,6.999547 +L 2.999478,6.999547,3.999478,6.999547 +L -0.000422,5.999527,-0.000422,6.999547 +L 0.999578,5.999527,0.999578,6.999547 +L 4.999578,-0.000423,4.999578,5.999527 +L 2.999478,-2.000423,4.999578,-0.000423 +L 1.999578,5.999527,2.999478,6.999547 +L 4.999578,5.999527,3.999478,6.999547 + +[00e7] +L 0.999478,9.999567,4.999578,9.999567 +L 1.999478,8.999587,1.999478,9.999567 +L 3.999578,8.999587,3.999578,9.999567 +L -0.000522,8.999587,0.999478,9.999567 + +[00e8] +L 3.999478,10.999587,3.999478,12.999627 + +[00e9] +L 1.999478,10.999587,4.999478,10.999587 +L 1.999478,12.999627,2.999478,12.999627 +L 2.999478,10.999587,2.999478,12.999627 +L 4.999478,10.999587,5.999578,11.999577 + +[00ea] +L -0.000522,10.999587,0.999478,10.999587 +L 3.999578,10.999587,4.999578,10.999587 +L -0.000522,10.999587,-0.000522,11.999577 +L 3.999578,10.999587,3.999578,11.999577 +L 4.999578,10.999587,5.999478,11.999577 +L -0.000522,11.999577,0.999478,12.999627 +L 1.999478,11.999577,0.999478,12.999627 +L 0.999478,10.999587,2.999478,12.999627 +L 3.999578,11.999577,2.999478,12.999627 + +[00eb] +L 2.999378,11.999577,4.999478,11.999577 +L 3.999478,10.999587,3.999478,12.999627 + +[00ec] +L 2.999478,10.999587,3.999478,10.999587 +L 2.999478,11.999577,4.999478,11.999577 +L 2.999478,10.999587,2.999478,11.999577 +L 3.999478,10.999587,3.999478,11.999577 +L 4.999478,11.999577,5.999478,12.999627 + +[00ed] +L 3.999478,10.999587,4.999378,10.999587 +L 3.999478,11.999577,4.999378,11.999577 +L 3.999478,10.999587,3.999478,11.999577 +L 4.999378,10.999587,4.999378,11.999577 + +[00ee] +L 2.999378,8.999587,3.999378,8.999587 +L 3.999378,11.999577,5.999478,11.999577 +L 2.999378,8.999587,2.999378,9.999567 +L 3.999378,10.999587,3.999378,11.999577 +L 3.999378,8.999587,4.999478,9.999567 +L 2.999378,9.999567,3.999378,10.999587 +L 4.999478,9.999567,3.999378,10.999587 + +[00ef] +L 0.999378,-0.000423,3.999478,-0.000423 +L 1.999378,1.999587,2.999478,1.999587 +L 1.999378,2.999607,2.999478,2.999607 +L 0.999378,4.999537,3.999478,4.999537 +L -0.000622,0.999567,-0.000622,3.999587 +L 1.999378,1.999587,1.999378,2.999607 +L 2.999478,1.999587,2.999478,2.999607 +L 4.999478,0.999567,4.999478,3.999587 +L 0.999378,-0.000423,-0.000622,0.999567 +L 3.999478,-0.000423,4.999478,0.999567 +L -0.000622,3.999587,0.999378,4.999537 +L 4.999478,3.999587,3.999478,4.999537 + +[00f0] +L 0.999678,-0.000423,3.999478,-0.000423 +L 0.999678,5.999597,3.999478,5.999597 +L -0.000322,0.999527,-0.000322,4.999607 +L 4.999478,0.999527,4.999478,4.999607 +L 0.999678,-0.000423,-0.000322,0.999527 +L 3.999478,-0.000423,4.999478,0.999527 +L -0.000322,4.999607,0.999678,5.999597 +L 4.999478,4.999607,3.999478,5.999597 + +[00f1] +L 0.999478,-0.000423,3.999578,-0.000423 +L 0.999478,1.999587,2.999478,1.999587 +L 1.999478,2.999607,2.999478,2.999607 +L 0.999478,5.999597,3.999578,5.999597 +L -0.000522,2.999607,-0.000522,4.999607 +L 1.999478,1.999587,1.999478,2.999607 +L 2.999478,1.999587,2.999478,2.999607 +L 4.999578,0.999527,4.999578,4.999607 +L 3.999578,-0.000423,4.999578,0.999527 +L 0.999478,1.999587,-0.000522,2.999607 +L -0.000522,4.999607,0.999478,5.999597 +L 4.999578,4.999607,3.999578,5.999597 + +[00f2] +L 0.999478,-0.000423,3.999578,-0.000423 +L 1.999578,1.999587,2.999578,1.999587 +L 1.999578,2.999607,2.999578,2.999607 +L 3.999578,4.999607,4.999578,4.999607 +L -0.000522,0.999527,-0.000522,7.999567 +L 1.999578,1.999587,1.999578,4.999607 +L 2.999578,1.999587,2.999578,2.999607 +L 4.999578,0.999527,4.999578,5.999597 +L 0.999478,-0.000423,-0.000522,0.999527 +L 3.999578,-0.000423,4.999578,0.999527 +L 1.999578,4.999607,2.999578,5.999597 +L 3.999578,4.999607,2.999578,5.999597 + +[00f3] +L -0.000422,-0.000423,1.999578,-0.000423 +L -0.000422,0.999527,1.999578,0.999527 +L 0.999578,5.999597,1.999578,5.999597 +L -0.000422,-0.000423,-0.000422,4.999607 +L 0.999578,-0.000423,0.999578,0.999527 +L 1.999578,-0.000423,1.999578,0.999527 +L 2.999578,2.999607,2.999578,4.999607 +L 4.999678,-0.000423,4.999678,4.999607 +L -0.000422,4.999607,0.999578,5.999597 +L 2.999578,4.999607,1.999578,5.999597 +L 2.999578,4.999607,3.999578,5.999597 +L 4.999678,4.999607,3.999578,5.999597 + +[00f4] +L 0.999578,-0.000423,4.999678,-0.000423 +L 2.999678,1.999587,3.999678,1.999587 +L 2.999678,2.999607,3.999678,2.999607 +L 0.999578,5.999597,3.999678,5.999597 +L -0.000422,0.999527,-0.000422,4.999607 +L 2.999678,-0.000423,2.999678,2.999607 +L 3.999678,1.999587,3.999678,2.999607 +L 4.999678,6.999547,4.999678,7.999567 +L 0.999578,-0.000423,-0.000422,0.999527 +L -0.000422,4.999607,0.999578,5.999597 +L 3.999678,5.999597,4.999678,6.999547 + +[00f5] +L 0.999678,-0.000423,4.999478,-0.000423 +L 2.999378,1.999587,3.999378,1.999587 +L 2.999378,2.999607,3.999378,2.999607 +L 0.999678,5.999597,3.999378,5.999597 +L 3.999378,6.999547,4.999478,6.999547 +L 1.999678,7.999567,2.999378,7.999567 +L -0.000422,0.999527,-0.000422,4.999607 +L 1.999678,5.999597,1.999678,7.999567 +L 2.999378,-0.000423,2.999378,2.999607 +L 3.999378,1.999587,3.999378,2.999607 +L 3.999378,5.999597,3.999378,6.999547 +L 4.999478,6.999547,4.999478,7.999567 +L 0.999678,-0.000423,-0.000422,0.999527 +L -0.000422,4.999607,0.999678,5.999597 +L 3.999378,6.999547,2.999378,7.999567 + +[00f6] +L 0.999378,-0.000423,3.999478,-0.000423 +L 0.999378,0.999527,1.999378,0.999527 +L 0.999378,1.999587,1.999378,1.999587 +L 2.999478,5.999597,3.999478,5.999597 +L 0.999378,-0.000423,0.999378,1.999587 +L 1.999378,-0.000423,1.999378,1.999587 +L 4.999478,0.999527,4.999478,4.999607 +L 3.999478,-0.000423,4.999478,0.999527 +L 1.999378,4.999607,2.999478,5.999597 +L 4.999478,4.999607,3.999478,5.999597 +L 1.999378,4.999607,-0.000322,6.999547 + +[00f7] +L -0.000622,-0.000423,0.999478,-0.000423 +L 2.999478,-0.000423,3.999478,-0.000423 +L -0.000622,0.999527,0.999478,0.999527 +L 1.999478,4.999607,2.999478,4.999607 +L -0.000622,-0.000423,-0.000622,4.999607 +L 0.999478,-0.000423,0.999478,0.999527 +L 2.999478,-0.000423,2.999478,5.999597 +L 4.999478,0.999527,4.999478,7.999567 +L 3.999478,-0.000423,4.999478,0.999527 +L -0.000622,4.999607,0.999478,5.999597 +L 1.999478,4.999607,0.999478,5.999597 + +[00f8] +L -0.000522,-0.000423,0.999478,-0.000423 +L 2.999478,-0.000423,4.999578,-0.000423 +L 3.999578,1.999587,4.999578,1.999587 +L 3.999578,2.999607,4.999578,2.999607 +L 0.999478,5.999597,3.999578,5.999597 +L 4.999578,6.999547,5.999578,6.999547 +L -0.000522,-0.000423,-0.000522,4.999607 +L 1.999478,0.999527,1.999478,1.999587 +L 3.999578,1.999587,3.999578,2.999607 +L 4.999578,-0.000423,4.999578,2.999607 +L 0.999478,-0.000423,1.999478,0.999527 +L 2.999478,-0.000423,1.999478,0.999527 +L -0.000522,4.999607,0.999478,5.999597 +L 3.999578,5.999597,4.999578,6.999547 + +[00f9] +L -0.000522,-0.000423,0.999478,-0.000423 +L -0.000522,0.999527,0.999478,0.999527 +L 0.999478,4.999607,1.999578,4.999607 +L 1.999578,5.999597,2.999578,5.999597 +L -0.000522,-0.000423,-0.000522,3.999587 +L 0.999478,-0.000423,0.999478,0.999527 +L 1.999578,3.999587,1.999578,5.999597 +L 2.999578,1.999587,2.999578,2.999607 +L 3.999578,-0.000423,3.999578,0.999527 +L 4.999578,5.999597,4.999578,7.999567 +L 3.999578,0.999527,2.999578,1.999587 +L 2.999578,2.999607,1.999578,3.999587 +L -0.000522,3.999587,0.999478,4.999607 +L 3.999578,4.999607,2.999578,5.999597 +L 3.999578,4.999607,4.999578,5.999597 + +[00fa] +L 3.999378,0.999527,4.999378,0.999527 +L 0.999578,4.999607,2.999578,4.999607 +L 0.999578,5.999597,1.999578,5.999597 +L 3.999378,5.999597,4.999378,5.999597 +L 0.999578,4.999607,0.999578,5.999597 +L 1.999578,4.999607,1.999578,5.999597 +L 3.999378,-0.000423,3.999378,0.999527 +L 4.999378,0.999527,4.999378,6.999547 +L 2.999578,4.999607,3.999378,5.999597 + +[00fb] +L -0.000422,-0.000423,0.999278,-0.000423 +L -0.000422,0.999527,0.999278,0.999527 +L 3.999378,3.999587,5.999378,3.999587 +L 1.999378,4.999607,2.999378,4.999607 +L -0.000422,-0.000423,-0.000422,5.999597 +L 0.999278,-0.000423,0.999278,0.999527 +L 1.999378,1.999587,1.999378,5.999597 +L 3.999378,2.999607,3.999378,3.999587 +L 0.999278,0.999527,1.999378,1.999587 +L 3.999378,3.999587,2.999378,4.999607 +L -0.000422,5.999597,0.999278,6.999547 +L 1.999378,5.999597,0.999278,6.999547 diff --git a/pycam/share/fonts/italicc.cxf b/pycam/share/fonts/italicc.cxf new file mode 100644 index 00000000..02b316d6 --- /dev/null +++ b/pycam/share/fonts/italicc.cxf @@ -0,0 +1,3022 @@ +# Format: QCad II Font +# Creator: Adam Radlowski's "dodajf" program - GRASS font translator +# Version: 1.0.0 +# Name: Italian Complex +# LetterSpacing: 3.0 +# WordSpacing: 6.75 +# LineSpacingFactor: 1.0 +# Author: Hershey fonts +# Author: Adam Radlowski (Polish) + +[!] 9 +L 1.548387,5.419355,1.290323,5.16129 +L 1.290323,5.16129,0.774194,2.064516 +L 1.548387,5.16129,0.774194,2.064516 +L 1.548387,5.419355,1.806452,5.16129 +L 1.806452,5.16129,0.774194,2.064516 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +["] 4 +L 0.516129,5.419355,0,3.612903 +L 0.774194,5.419355,0,3.612903 +L 2.83871,5.419355,2.322581,3.612903 +L 3.096774,5.419355,2.322581,3.612903 + +[#] 4 +L 2.064516,5.419355,0.258065,-1.806452 +L 3.612903,5.419355,1.806452,-1.806452 +L 0.258065,2.580645,3.870968,2.580645 +L 0,1.032258,3.612903,1.032258 + +[$] 33 +L 2.580645,6.451613,0.516129,-1.032258 +L 3.870968,6.451613,1.806452,-1.032258 +L 4.129032,4.387097,3.870968,4.129032 +L 3.870968,4.129032,4.129032,3.870968 +L 4.129032,3.870968,4.387097,4.129032 +L 4.387097,4.129032,4.387097,4.387097 +L 4.387097,4.387097,4.129032,4.903226 +L 4.129032,4.903226,3.870968,5.16129 +L 3.870968,5.16129,3.096774,5.419355 +L 3.096774,5.419355,2.064516,5.419355 +L 2.064516,5.419355,1.290323,5.16129 +L 1.290323,5.16129,0.774194,4.645161 +L 0.774194,4.645161,0.774194,4.129032 +L 0.774194,4.129032,1.032258,3.612903 +L 1.032258,3.612903,1.290323,3.354839 +L 1.290323,3.354839,3.096774,2.322581 +L 3.096774,2.322581,3.612903,1.806452 +L 0.774194,4.129032,1.290323,3.612903 +L 1.290323,3.612903,3.096774,2.580645 +L 3.096774,2.580645,3.354839,2.322581 +L 3.354839,2.322581,3.612903,1.806452 +L 3.612903,1.806452,3.612903,1.032258 +L 3.612903,1.032258,3.354839,0.516129 +L 3.354839,0.516129,3.096774,0.258065 +L 3.096774,0.258065,2.322581,0 +L 2.322581,0,1.290323,0 +L 1.290323,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 +L 0.258065,0.516129,0,1.032258 +L 0,1.032258,0,1.290323 +L 0,1.290323,0.258065,1.548387 +L 0.258065,1.548387,0.516129,1.290323 +L 0.516129,1.290323,0.258065,1.032258 + +[%] 26 +L 4.645161,5.419355,0,0 +L 1.290323,5.419355,1.806452,4.903226 +L 1.806452,4.903226,1.806452,4.387097 +L 1.806452,4.387097,1.548387,3.870968 +L 1.548387,3.870968,1.032258,3.612903 +L 1.032258,3.612903,0.516129,3.612903 +L 0.516129,3.612903,0,4.129032 +L 0,4.129032,0,4.645161 +L 0,4.645161,0.258065,5.16129 +L 0.258065,5.16129,0.774194,5.419355 +L 0.774194,5.419355,1.290323,5.419355 +L 1.290323,5.419355,1.806452,5.16129 +L 1.806452,5.16129,2.580645,4.903226 +L 2.580645,4.903226,3.354839,4.903226 +L 3.354839,4.903226,4.129032,5.16129 +L 4.129032,5.16129,4.645161,5.419355 +L 3.612903,1.806452,3.096774,1.548387 +L 3.096774,1.548387,2.83871,1.032258 +L 2.83871,1.032258,2.83871,0.516129 +L 2.83871,0.516129,3.354839,0 +L 3.354839,0,3.870968,0 +L 3.870968,0,4.387097,0.258065 +L 4.387097,0.258065,4.645161,0.774194 +L 4.645161,0.774194,4.645161,1.290323 +L 4.645161,1.290323,4.129032,1.806452 +L 4.129032,1.806452,3.612903,1.806452 + +[&] 49 +L 5.419355,3.354839,5.16129,3.096774 +L 5.16129,3.096774,5.419355,2.83871 +L 5.419355,2.83871,5.677419,3.096774 +L 5.677419,3.096774,5.677419,3.354839 +L 5.677419,3.354839,5.419355,3.612903 +L 5.419355,3.612903,5.16129,3.612903 +L 5.16129,3.612903,4.645161,3.354839 +L 4.645161,3.354839,4.129032,2.83871 +L 4.129032,2.83871,2.83871,0.774194 +L 2.83871,0.774194,2.322581,0.258065 +L 2.322581,0.258065,1.806452,0 +L 1.806452,0,1.032258,0 +L 1.032258,0,0.258065,0.258065 +L 0.258065,0.258065,0,0.774194 +L 0,0.774194,0,1.290323 +L 0,1.290323,0.258065,1.806452 +L 0.258065,1.806452,0.516129,2.064516 +L 0.516129,2.064516,1.032258,2.322581 +L 1.032258,2.322581,2.322581,2.83871 +L 2.322581,2.83871,2.83871,3.096774 +L 2.83871,3.096774,3.354839,3.612903 +L 3.354839,3.612903,3.612903,4.129032 +L 3.612903,4.129032,3.612903,4.645161 +L 3.612903,4.645161,3.354839,5.16129 +L 3.354839,5.16129,2.83871,5.419355 +L 2.83871,5.419355,2.322581,5.16129 +L 2.322581,5.16129,2.064516,4.645161 +L 2.064516,4.645161,2.064516,3.870968 +L 2.064516,3.870968,2.322581,2.322581 +L 2.322581,2.322581,2.580645,1.548387 +L 2.580645,1.548387,3.096774,0.774194 +L 3.096774,0.774194,3.612903,0.258065 +L 3.612903,0.258065,4.129032,0 +L 4.129032,0,4.645161,0 +L 4.645161,0,4.903226,0.516129 +L 4.903226,0.516129,4.903226,0.774194 +L 1.032258,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.774194 +L 0.258065,0.774194,0.258065,1.290323 +L 0.258065,1.290323,0.516129,1.806452 +L 0.516129,1.806452,0.774194,2.064516 +L 0.774194,2.064516,2.322581,2.83871 +L 2.064516,3.870968,2.322581,2.580645 +L 2.322581,2.580645,2.580645,1.806452 +L 2.580645,1.806452,3.096774,1.032258 +L 3.096774,1.032258,3.612903,0.516129 +L 3.612903,0.516129,4.129032,0.258065 +L 4.129032,0.258065,4.645161,0.258065 +L 4.645161,0.258065,4.903226,0.516129 + +['] 6 +L 0.516129,4.903226,0.258065,5.16129 +L 0.258065,5.16129,0.516129,5.419355 +L 0.516129,5.419355,0.774194,5.16129 +L 0.774194,5.16129,0.774194,4.903226 +L 0.774194,4.903226,0.516129,4.387097 +L 0.516129,4.387097,0,3.870968 + +[(] 16 +L 3.096774,6.451613,2.064516,5.677419 +L 2.064516,5.677419,1.290323,4.903226 +L 1.290323,4.903226,0.774194,4.129032 +L 0.774194,4.129032,0.258065,3.096774 +L 0.258065,3.096774,0,1.806452 +L 0,1.806452,0,0.774194 +L 0,0.774194,0.258065,-0.516129 +L 0.258065,-0.516129,0.516129,-1.290323 +L 0.516129,-1.290323,0.774194,-1.806452 +L 2.064516,5.677419,1.290323,4.645161 +L 1.290323,4.645161,0.774194,3.612903 +L 0.774194,3.612903,0.516129,2.83871 +L 0.516129,2.83871,0.258065,1.548387 +L 0.258065,1.548387,0.258065,0.258065 +L 0.258065,0.258065,0.516129,-1.032258 +L 0.516129,-1.032258,0.774194,-1.806452 + +[)] 16 +L 2.322581,6.451613,2.580645,5.935484 +L 2.580645,5.935484,2.83871,5.16129 +L 2.83871,5.16129,3.096774,3.870968 +L 3.096774,3.870968,3.096774,2.83871 +L 3.096774,2.83871,2.83871,1.548387 +L 2.83871,1.548387,2.322581,0.516129 +L 2.322581,0.516129,1.806452,-0.258065 +L 1.806452,-0.258065,1.032258,-1.032258 +L 1.032258,-1.032258,0,-1.806452 +L 2.322581,6.451613,2.580645,5.677419 +L 2.580645,5.677419,2.83871,4.387097 +L 2.83871,4.387097,2.83871,3.096774 +L 2.83871,3.096774,2.580645,1.806452 +L 2.580645,1.806452,2.322581,1.032258 +L 2.322581,1.032258,1.806452,0 +L 1.806452,0,1.032258,-1.032258 + +[*] 3 +L 1.290323,5.419355,1.290323,2.322581 +L 0,4.645161,2.580645,3.096774 +L 2.580645,4.645161,0,3.096774 + +[+] 2 +L 2.322581,4.645161,2.322581,0 +L 0,2.322581,4.645161,2.322581 + +[,] 6 +L 0.516129,0,0.258065,0.258065 +L 0.258065,0.258065,0.516129,0.516129 +L 0.516129,0.516129,0.774194,0.258065 +L 0.774194,0.258065,0.774194,0 +L 0.774194,0,0.516129,-0.516129 +L 0.516129,-0.516129,0,-1.032258 + +[-] 1 +L 0,2.322581,4.645161,2.322581 + +[.] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[/] 1 +L 2.580645,6.451613,0,-1.806452 + +[0] 36 +L 2.322581,5.419355,1.548387,5.16129 +L 1.548387,5.16129,1.032258,4.645161 +L 1.032258,4.645161,0.516129,3.870968 +L 0.516129,3.870968,0.258065,3.096774 +L 0.258065,3.096774,0,2.064516 +L 0,2.064516,0,1.290323 +L 0,1.290323,0.258065,0.516129 +L 0.258065,0.516129,0.516129,0.258065 +L 0.516129,0.258065,1.032258,0 +L 1.032258,0,1.548387,0 +L 1.548387,0,2.322581,0.258065 +L 2.322581,0.258065,2.83871,0.774194 +L 2.83871,0.774194,3.354839,1.548387 +L 3.354839,1.548387,3.612903,2.322581 +L 3.612903,2.322581,3.870968,3.354839 +L 3.870968,3.354839,3.870968,4.129032 +L 3.870968,4.129032,3.612903,4.903226 +L 3.612903,4.903226,3.354839,5.16129 +L 3.354839,5.16129,2.83871,5.419355 +L 2.83871,5.419355,2.322581,5.419355 +L 2.322581,5.419355,1.806452,5.16129 +L 1.806452,5.16129,1.290323,4.645161 +L 1.290323,4.645161,0.774194,3.870968 +L 0.774194,3.870968,0.516129,3.096774 +L 0.516129,3.096774,0.258065,2.064516 +L 0.258065,2.064516,0.258065,1.290323 +L 0.258065,1.290323,0.516129,0.516129 +L 0.516129,0.516129,1.032258,0 +L 1.548387,0,2.064516,0.258065 +L 2.064516,0.258065,2.580645,0.774194 +L 2.580645,0.774194,3.096774,1.548387 +L 3.096774,1.548387,3.354839,2.322581 +L 3.354839,2.322581,3.612903,3.354839 +L 3.612903,3.354839,3.612903,4.129032 +L 3.612903,4.129032,3.354839,4.903226 +L 3.354839,4.903226,2.83871,5.419355 + +[1] 7 +L 1.548387,4.387097,0.258065,0 +L 2.064516,5.419355,0.516129,0 +L 2.064516,5.419355,1.290323,4.645161 +L 1.290323,4.645161,0.516129,4.129032 +L 0.516129,4.129032,0,3.870968 +L 1.806452,4.645161,0.774194,4.129032 +L 0.774194,4.129032,0,3.870968 + +[2] 34 +L 1.548387,4.387097,1.806452,4.129032 +L 1.806452,4.129032,1.548387,3.870968 +L 1.548387,3.870968,1.290323,4.129032 +L 1.290323,4.129032,1.290323,4.387097 +L 1.290323,4.387097,1.548387,4.903226 +L 1.548387,4.903226,1.806452,5.16129 +L 1.806452,5.16129,2.580645,5.419355 +L 2.580645,5.419355,3.354839,5.419355 +L 3.354839,5.419355,4.129032,5.16129 +L 4.129032,5.16129,4.387097,4.645161 +L 4.387097,4.645161,4.387097,4.129032 +L 4.387097,4.129032,4.129032,3.612903 +L 4.129032,3.612903,3.612903,3.096774 +L 3.612903,3.096774,2.83871,2.580645 +L 2.83871,2.580645,1.806452,2.064516 +L 1.806452,2.064516,1.032258,1.548387 +L 1.032258,1.548387,0.516129,1.032258 +L 0.516129,1.032258,0,0 +L 3.354839,5.419355,3.870968,5.16129 +L 3.870968,5.16129,4.129032,4.645161 +L 4.129032,4.645161,4.129032,4.129032 +L 4.129032,4.129032,3.870968,3.612903 +L 3.870968,3.612903,3.354839,3.096774 +L 3.354839,3.096774,1.806452,2.064516 +L 0.258065,0.516129,0.516129,0.774194 +L 0.516129,0.774194,1.032258,0.774194 +L 1.032258,0.774194,2.322581,0.258065 +L 2.322581,0.258065,3.096774,0.258065 +L 3.096774,0.258065,3.612903,0.516129 +L 3.612903,0.516129,3.870968,1.032258 +L 1.032258,0.774194,2.322581,0 +L 2.322581,0,3.096774,0 +L 3.096774,0,3.612903,0.258065 +L 3.612903,0.258065,3.870968,1.032258 + +[3] 42 +L 1.290323,4.387097,1.548387,4.129032 +L 1.548387,4.129032,1.290323,3.870968 +L 1.290323,3.870968,1.032258,4.129032 +L 1.032258,4.129032,1.032258,4.387097 +L 1.032258,4.387097,1.290323,4.903226 +L 1.290323,4.903226,1.548387,5.16129 +L 1.548387,5.16129,2.322581,5.419355 +L 2.322581,5.419355,3.096774,5.419355 +L 3.096774,5.419355,3.870968,5.16129 +L 3.870968,5.16129,4.129032,4.645161 +L 4.129032,4.645161,4.129032,4.129032 +L 4.129032,4.129032,3.870968,3.612903 +L 3.870968,3.612903,3.096774,3.096774 +L 3.096774,3.096774,2.322581,2.83871 +L 3.096774,5.419355,3.612903,5.16129 +L 3.612903,5.16129,3.870968,4.645161 +L 3.870968,4.645161,3.870968,4.129032 +L 3.870968,4.129032,3.612903,3.612903 +L 3.612903,3.612903,3.096774,3.096774 +L 1.806452,2.83871,2.322581,2.83871 +L 2.322581,2.83871,3.096774,2.580645 +L 3.096774,2.580645,3.354839,2.322581 +L 3.354839,2.322581,3.612903,1.806452 +L 3.612903,1.806452,3.612903,1.032258 +L 3.612903,1.032258,3.354839,0.516129 +L 3.354839,0.516129,3.096774,0.258065 +L 3.096774,0.258065,2.322581,0 +L 2.322581,0,1.290323,0 +L 1.290323,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 +L 0.258065,0.516129,0,1.032258 +L 0,1.032258,0,1.290323 +L 0,1.290323,0.258065,1.548387 +L 0.258065,1.548387,0.516129,1.290323 +L 0.516129,1.290323,0.258065,1.032258 +L 2.322581,2.83871,2.83871,2.580645 +L 2.83871,2.580645,3.096774,2.322581 +L 3.096774,2.322581,3.354839,1.806452 +L 3.354839,1.806452,3.354839,1.032258 +L 3.354839,1.032258,3.096774,0.516129 +L 3.096774,0.516129,2.83871,0.258065 +L 2.83871,0.258065,2.322581,0 + +[4] 4 +L 3.612903,5.16129,2.064516,0 +L 3.870968,5.419355,2.322581,0 +L 3.870968,5.419355,0,1.548387 +L 0,1.548387,4.129032,1.548387 + +[5] 29 +L 1.806452,5.419355,0.516129,2.83871 +L 1.806452,5.419355,4.387097,5.419355 +L 1.806452,5.16129,3.096774,5.16129 +L 3.096774,5.16129,4.387097,5.419355 +L 0.516129,2.83871,0.774194,3.096774 +L 0.774194,3.096774,1.548387,3.354839 +L 1.548387,3.354839,2.322581,3.354839 +L 2.322581,3.354839,3.096774,3.096774 +L 3.096774,3.096774,3.354839,2.83871 +L 3.354839,2.83871,3.612903,2.322581 +L 3.612903,2.322581,3.612903,1.548387 +L 3.612903,1.548387,3.354839,0.774194 +L 3.354839,0.774194,2.83871,0.258065 +L 2.83871,0.258065,2.064516,0 +L 2.064516,0,1.290323,0 +L 1.290323,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 +L 0.258065,0.516129,0,1.032258 +L 0,1.032258,0,1.290323 +L 0,1.290323,0.258065,1.548387 +L 0.258065,1.548387,0.516129,1.290323 +L 0.516129,1.290323,0.258065,1.032258 +L 2.322581,3.354839,2.83871,3.096774 +L 2.83871,3.096774,3.096774,2.83871 +L 3.096774,2.83871,3.354839,2.322581 +L 3.354839,2.322581,3.354839,1.548387 +L 3.354839,1.548387,3.096774,0.774194 +L 3.096774,0.774194,2.580645,0.258065 +L 2.580645,0.258065,2.064516,0 + +[6] 40 +L 3.612903,4.645161,3.354839,4.387097 +L 3.354839,4.387097,3.612903,4.129032 +L 3.612903,4.129032,3.870968,4.387097 +L 3.870968,4.387097,3.870968,4.645161 +L 3.870968,4.645161,3.612903,5.16129 +L 3.612903,5.16129,3.096774,5.419355 +L 3.096774,5.419355,2.322581,5.419355 +L 2.322581,5.419355,1.548387,5.16129 +L 1.548387,5.16129,1.032258,4.645161 +L 1.032258,4.645161,0.516129,3.870968 +L 0.516129,3.870968,0.258065,3.096774 +L 0.258065,3.096774,0,2.064516 +L 0,2.064516,0,1.032258 +L 0,1.032258,0.258065,0.516129 +L 0.258065,0.516129,0.516129,0.258065 +L 0.516129,0.258065,1.032258,0 +L 1.032258,0,1.806452,0 +L 1.806452,0,2.580645,0.258065 +L 2.580645,0.258065,3.096774,0.774194 +L 3.096774,0.774194,3.354839,1.290323 +L 3.354839,1.290323,3.354839,2.064516 +L 3.354839,2.064516,3.096774,2.580645 +L 3.096774,2.580645,2.83871,2.83871 +L 2.83871,2.83871,2.322581,3.096774 +L 2.322581,3.096774,1.548387,3.096774 +L 1.548387,3.096774,1.032258,2.83871 +L 1.032258,2.83871,0.516129,2.322581 +L 0.516129,2.322581,0.258065,1.806452 +L 2.322581,5.419355,1.806452,5.16129 +L 1.806452,5.16129,1.290323,4.645161 +L 1.290323,4.645161,0.774194,3.870968 +L 0.774194,3.870968,0.516129,3.096774 +L 0.516129,3.096774,0.258065,2.064516 +L 0.258065,2.064516,0.258065,0.774194 +L 0.258065,0.774194,0.516129,0.258065 +L 1.806452,0,2.322581,0.258065 +L 2.322581,0.258065,2.83871,0.774194 +L 2.83871,0.774194,3.096774,1.290323 +L 3.096774,1.290323,3.096774,2.322581 +L 3.096774,2.322581,2.83871,2.83871 + +[7] 20 +L 0.516129,5.419355,0,3.870968 +L 3.870968,5.419355,3.612903,4.645161 +L 3.612903,4.645161,3.096774,3.870968 +L 3.096774,3.870968,1.806452,2.322581 +L 1.806452,2.322581,1.290323,1.548387 +L 1.290323,1.548387,1.032258,1.032258 +L 1.032258,1.032258,0.774194,0 +L 3.096774,3.870968,1.548387,2.322581 +L 1.548387,2.322581,1.032258,1.548387 +L 1.032258,1.548387,0.774194,1.032258 +L 0.774194,1.032258,0.516129,0 +L 0.258065,4.645161,1.032258,5.419355 +L 1.032258,5.419355,1.548387,5.419355 +L 1.548387,5.419355,2.83871,4.645161 +L 0.516129,4.903226,1.032258,5.16129 +L 1.032258,5.16129,1.548387,5.16129 +L 1.548387,5.16129,2.83871,4.645161 +L 2.83871,4.645161,3.354839,4.645161 +L 3.354839,4.645161,3.612903,4.903226 +L 3.612903,4.903226,3.870968,5.419355 + +[8] 51 +L 2.322581,5.419355,1.548387,5.16129 +L 1.548387,5.16129,1.290323,4.903226 +L 1.290323,4.903226,1.032258,4.387097 +L 1.032258,4.387097,1.032258,3.612903 +L 1.032258,3.612903,1.290323,3.096774 +L 1.290323,3.096774,1.806452,2.83871 +L 1.806452,2.83871,2.580645,2.83871 +L 2.580645,2.83871,3.612903,3.096774 +L 3.612903,3.096774,3.870968,3.354839 +L 3.870968,3.354839,4.129032,3.870968 +L 4.129032,3.870968,4.129032,4.645161 +L 4.129032,4.645161,3.870968,5.16129 +L 3.870968,5.16129,3.096774,5.419355 +L 3.096774,5.419355,2.322581,5.419355 +L 2.322581,5.419355,1.806452,5.16129 +L 1.806452,5.16129,1.548387,4.903226 +L 1.548387,4.903226,1.290323,4.387097 +L 1.290323,4.387097,1.290323,3.612903 +L 1.290323,3.612903,1.548387,3.096774 +L 1.548387,3.096774,1.806452,2.83871 +L 2.580645,2.83871,3.354839,3.096774 +L 3.354839,3.096774,3.612903,3.354839 +L 3.612903,3.354839,3.870968,3.870968 +L 3.870968,3.870968,3.870968,4.645161 +L 3.870968,4.645161,3.612903,5.16129 +L 3.612903,5.16129,3.096774,5.419355 +L 1.806452,2.83871,0.774194,2.580645 +L 0.774194,2.580645,0.258065,2.064516 +L 0.258065,2.064516,0,1.548387 +L 0,1.548387,0,0.774194 +L 0,0.774194,0.258065,0.258065 +L 0.258065,0.258065,1.032258,0 +L 1.032258,0,2.064516,0 +L 2.064516,0,3.096774,0.258065 +L 3.096774,0.258065,3.354839,0.516129 +L 3.354839,0.516129,3.612903,1.032258 +L 3.612903,1.032258,3.612903,1.806452 +L 3.612903,1.806452,3.354839,2.322581 +L 3.354839,2.322581,3.096774,2.580645 +L 3.096774,2.580645,2.580645,2.83871 +L 1.806452,2.83871,1.032258,2.580645 +L 1.032258,2.580645,0.516129,2.064516 +L 0.516129,2.064516,0.258065,1.548387 +L 0.258065,1.548387,0.258065,0.774194 +L 0.258065,0.774194,0.516129,0.258065 +L 0.516129,0.258065,1.032258,0 +L 2.064516,0,2.83871,0.258065 +L 2.83871,0.258065,3.096774,0.516129 +L 3.096774,0.516129,3.354839,1.032258 +L 3.354839,1.032258,3.354839,2.064516 +L 3.354839,2.064516,3.096774,2.580645 + +[9] 40 +L 3.612903,3.612903,3.354839,3.096774 +L 3.354839,3.096774,2.83871,2.580645 +L 2.83871,2.580645,2.322581,2.322581 +L 2.322581,2.322581,1.548387,2.322581 +L 1.548387,2.322581,1.032258,2.580645 +L 1.032258,2.580645,0.774194,2.83871 +L 0.774194,2.83871,0.516129,3.354839 +L 0.516129,3.354839,0.516129,4.129032 +L 0.516129,4.129032,0.774194,4.645161 +L 0.774194,4.645161,1.290323,5.16129 +L 1.290323,5.16129,2.064516,5.419355 +L 2.064516,5.419355,2.83871,5.419355 +L 2.83871,5.419355,3.354839,5.16129 +L 3.354839,5.16129,3.612903,4.903226 +L 3.612903,4.903226,3.870968,4.387097 +L 3.870968,4.387097,3.870968,3.354839 +L 3.870968,3.354839,3.612903,2.322581 +L 3.612903,2.322581,3.354839,1.548387 +L 3.354839,1.548387,2.83871,0.774194 +L 2.83871,0.774194,2.322581,0.258065 +L 2.322581,0.258065,1.548387,0 +L 1.548387,0,0.774194,0 +L 0.774194,0,0.258065,0.258065 +L 0.258065,0.258065,0,0.774194 +L 0,0.774194,0,1.032258 +L 0,1.032258,0.258065,1.290323 +L 0.258065,1.290323,0.516129,1.032258 +L 0.516129,1.032258,0.258065,0.774194 +L 1.032258,2.580645,0.774194,3.096774 +L 0.774194,3.096774,0.774194,4.129032 +L 0.774194,4.129032,1.032258,4.645161 +L 1.032258,4.645161,1.548387,5.16129 +L 1.548387,5.16129,2.064516,5.419355 +L 3.354839,5.16129,3.612903,4.645161 +L 3.612903,4.645161,3.612903,3.354839 +L 3.612903,3.354839,3.354839,2.322581 +L 3.354839,2.322581,3.096774,1.548387 +L 3.096774,1.548387,2.580645,0.774194 +L 2.580645,0.774194,2.064516,0.258065 +L 2.064516,0.258065,1.548387,0 + +[:] 7 +L 1.032258,3.612903,0.774194,3.354839 +L 0.774194,3.354839,1.032258,3.096774 +L 1.032258,3.096774,1.290323,3.354839 +L 1.290323,3.354839,1.032258,3.612903 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 + +[;] 10 +L 1.290323,3.612903,1.032258,3.354839 +L 1.032258,3.354839,1.290323,3.096774 +L 1.290323,3.096774,1.548387,3.354839 +L 1.548387,3.354839,1.290323,3.612903 +L 0.516129,0,0.258065,0.258065 +L 0.258065,0.258065,0.516129,0.516129 +L 0.516129,0.516129,0.774194,0.258065 +L 0.774194,0.258065,0.774194,0 +L 0.774194,0,0.516129,-0.516129 +L 0.516129,-0.516129,0,-1.032258 + +[<] 2 +L 4.129032,4.645161,0,2.322581 +L 0,2.322581,4.129032,0 + +[=] 2 +L 0,3.096774,4.645161,3.096774 +L 0,1.548387,4.645161,1.548387 + +[>] 2 +L 0,4.645161,4.129032,2.322581 +L 4.129032,2.322581,0,0 + +[?] 28 +L 0.258065,4.387097,0.516129,4.129032 +L 0.516129,4.129032,0.258065,3.870968 +L 0.258065,3.870968,0,4.129032 +L 0,4.129032,0,4.387097 +L 0,4.387097,0.258065,4.903226 +L 0.258065,4.903226,0.516129,5.16129 +L 0.516129,5.16129,1.290323,5.419355 +L 1.290323,5.419355,2.322581,5.419355 +L 2.322581,5.419355,3.096774,5.16129 +L 3.096774,5.16129,3.354839,4.645161 +L 3.354839,4.645161,3.354839,4.129032 +L 3.354839,4.129032,3.096774,3.612903 +L 3.096774,3.612903,2.83871,3.354839 +L 2.83871,3.354839,1.290323,2.83871 +L 1.290323,2.83871,0.774194,2.580645 +L 0.774194,2.580645,0.774194,2.064516 +L 0.774194,2.064516,1.032258,1.806452 +L 1.032258,1.806452,1.548387,1.806452 +L 2.322581,5.419355,2.83871,5.16129 +L 2.83871,5.16129,3.096774,4.645161 +L 3.096774,4.645161,3.096774,4.129032 +L 3.096774,4.129032,2.83871,3.612903 +L 2.83871,3.612903,2.580645,3.354839 +L 2.580645,3.354839,2.064516,3.096774 +L 0.516129,0.516129,0.258065,0.258065 +L 0.258065,0.258065,0.516129,0 +L 0.516129,0,0.774194,0.258065 +L 0.774194,0.258065,0.516129,0.516129 + +[@] 48 +L 3.870968,3.354839,3.612903,3.870968 +L 3.612903,3.870968,3.096774,4.129032 +L 3.096774,4.129032,2.322581,4.129032 +L 2.322581,4.129032,1.806452,3.870968 +L 1.806452,3.870968,1.548387,3.612903 +L 1.548387,3.612903,1.290323,2.83871 +L 1.290323,2.83871,1.290323,2.064516 +L 1.290323,2.064516,1.548387,1.548387 +L 1.548387,1.548387,2.064516,1.290323 +L 2.064516,1.290323,2.83871,1.290323 +L 2.83871,1.290323,3.354839,1.548387 +L 3.354839,1.548387,3.612903,2.064516 +L 2.322581,4.129032,1.806452,3.612903 +L 1.806452,3.612903,1.548387,2.83871 +L 1.548387,2.83871,1.548387,2.064516 +L 1.548387,2.064516,1.806452,1.548387 +L 1.806452,1.548387,2.064516,1.290323 +L 3.870968,4.129032,3.612903,2.064516 +L 3.612903,2.064516,3.612903,1.548387 +L 3.612903,1.548387,4.129032,1.290323 +L 4.129032,1.290323,4.645161,1.290323 +L 4.645161,1.290323,5.16129,1.806452 +L 5.16129,1.806452,5.419355,2.580645 +L 5.419355,2.580645,5.419355,3.096774 +L 5.419355,3.096774,5.16129,3.870968 +L 5.16129,3.870968,4.903226,4.387097 +L 4.903226,4.387097,4.387097,4.903226 +L 4.387097,4.903226,3.870968,5.16129 +L 3.870968,5.16129,3.096774,5.419355 +L 3.096774,5.419355,2.322581,5.419355 +L 2.322581,5.419355,1.548387,5.16129 +L 1.548387,5.16129,1.032258,4.903226 +L 1.032258,4.903226,0.516129,4.387097 +L 0.516129,4.387097,0.258065,3.870968 +L 0.258065,3.870968,0,3.096774 +L 0,3.096774,0,2.322581 +L 0,2.322581,0.258065,1.548387 +L 0.258065,1.548387,0.516129,1.032258 +L 0.516129,1.032258,1.032258,0.516129 +L 1.032258,0.516129,1.548387,0.258065 +L 1.548387,0.258065,2.322581,0 +L 2.322581,0,3.096774,0 +L 3.096774,0,3.870968,0.258065 +L 3.870968,0.258065,4.387097,0.516129 +L 4.387097,0.516129,4.645161,0.774194 +L 4.129032,4.129032,3.870968,2.064516 +L 3.870968,2.064516,3.870968,1.548387 +L 3.870968,1.548387,4.129032,1.290323 + +[A] 6 +L 3.870968,5.419355,0.516129,0 +L 3.870968,5.419355,4.129032,0 +L 3.612903,4.903226,3.870968,0 +L 1.548387,1.548387,3.870968,1.548387 +L 0,0,1.548387,0 +L 3.096774,0,4.645161,0 + +[B] 29 +L 2.322581,5.419355,0.774194,0 +L 2.580645,5.419355,1.032258,0 +L 1.548387,5.419355,4.387097,5.419355 +L 4.387097,5.419355,5.16129,5.16129 +L 5.16129,5.16129,5.419355,4.645161 +L 5.419355,4.645161,5.419355,4.129032 +L 5.419355,4.129032,5.16129,3.354839 +L 5.16129,3.354839,4.903226,3.096774 +L 4.903226,3.096774,4.129032,2.83871 +L 4.387097,5.419355,4.903226,5.16129 +L 4.903226,5.16129,5.16129,4.645161 +L 5.16129,4.645161,5.16129,4.129032 +L 5.16129,4.129032,4.903226,3.354839 +L 4.903226,3.354839,4.645161,3.096774 +L 4.645161,3.096774,4.129032,2.83871 +L 1.806452,2.83871,4.129032,2.83871 +L 4.129032,2.83871,4.645161,2.580645 +L 4.645161,2.580645,4.903226,2.064516 +L 4.903226,2.064516,4.903226,1.548387 +L 4.903226,1.548387,4.645161,0.774194 +L 4.645161,0.774194,4.129032,0.258065 +L 4.129032,0.258065,3.096774,0 +L 3.096774,0,0,0 +L 4.129032,2.83871,4.387097,2.580645 +L 4.387097,2.580645,4.645161,2.064516 +L 4.645161,2.064516,4.645161,1.548387 +L 4.645161,1.548387,4.387097,0.774194 +L 4.387097,0.774194,3.870968,0.258065 +L 3.870968,0.258065,3.096774,0 + +[C] 30 +L 3.870968,4.903226,4.129032,4.903226 +L 4.129032,4.903226,4.387097,5.419355 +L 4.387097,5.419355,4.129032,3.870968 +L 4.129032,3.870968,4.129032,4.387097 +L 4.129032,4.387097,3.870968,4.903226 +L 3.870968,4.903226,3.612903,5.16129 +L 3.612903,5.16129,3.096774,5.419355 +L 3.096774,5.419355,2.322581,5.419355 +L 2.322581,5.419355,1.548387,5.16129 +L 1.548387,5.16129,1.032258,4.645161 +L 1.032258,4.645161,0.516129,3.870968 +L 0.516129,3.870968,0.258065,3.096774 +L 0.258065,3.096774,0,2.064516 +L 0,2.064516,0,1.290323 +L 0,1.290323,0.258065,0.516129 +L 0.258065,0.516129,0.516129,0.258065 +L 0.516129,0.258065,1.290323,0 +L 1.290323,0,2.064516,0 +L 2.064516,0,2.580645,0.258065 +L 2.580645,0.258065,3.096774,0.774194 +L 3.096774,0.774194,3.354839,1.290323 +L 2.322581,5.419355,1.806452,5.16129 +L 1.806452,5.16129,1.290323,4.645161 +L 1.290323,4.645161,0.774194,3.870968 +L 0.774194,3.870968,0.516129,3.096774 +L 0.516129,3.096774,0.258065,2.064516 +L 0.258065,2.064516,0.258065,1.290323 +L 0.258065,1.290323,0.516129,0.516129 +L 0.516129,0.516129,0.774194,0.258065 +L 0.774194,0.258065,1.290323,0 + +[D] 22 +L 2.322581,5.419355,0.774194,0 +L 2.580645,5.419355,1.032258,0 +L 1.548387,5.419355,3.870968,5.419355 +L 3.870968,5.419355,4.645161,5.16129 +L 4.645161,5.16129,4.903226,4.903226 +L 4.903226,4.903226,5.16129,4.129032 +L 5.16129,4.129032,5.16129,3.096774 +L 5.16129,3.096774,4.903226,2.064516 +L 4.903226,2.064516,4.387097,1.032258 +L 4.387097,1.032258,3.870968,0.516129 +L 3.870968,0.516129,3.354839,0.258065 +L 3.354839,0.258065,2.322581,0 +L 2.322581,0,0,0 +L 3.870968,5.419355,4.387097,5.16129 +L 4.387097,5.16129,4.645161,4.903226 +L 4.645161,4.903226,4.903226,4.129032 +L 4.903226,4.129032,4.903226,3.096774 +L 4.903226,3.096774,4.645161,2.064516 +L 4.645161,2.064516,4.129032,1.032258 +L 4.129032,1.032258,3.612903,0.516129 +L 3.612903,0.516129,3.096774,0.258065 +L 3.096774,0.258065,2.322581,0 + +[E] 10 +L 2.322581,5.419355,0.774194,0 +L 2.580645,5.419355,1.032258,0 +L 3.612903,3.870968,3.096774,1.806452 +L 1.548387,5.419355,5.419355,5.419355 +L 5.419355,5.419355,5.16129,3.870968 +L 5.16129,3.870968,5.16129,5.419355 +L 1.806452,2.83871,3.354839,2.83871 +L 0,0,3.870968,0 +L 3.870968,0,4.387097,1.290323 +L 4.387097,1.290323,3.612903,0 + +[F] 8 +L 2.322581,5.419355,0.774194,0 +L 2.580645,5.419355,1.032258,0 +L 3.612903,3.870968,3.096774,1.806452 +L 1.548387,5.419355,5.419355,5.419355 +L 5.419355,5.419355,5.16129,3.870968 +L 5.16129,3.870968,5.16129,5.419355 +L 1.806452,2.83871,3.354839,2.83871 +L 0,0,1.806452,0 + +[G] 34 +L 3.870968,4.903226,4.129032,4.903226 +L 4.129032,4.903226,4.387097,5.419355 +L 4.387097,5.419355,4.129032,3.870968 +L 4.129032,3.870968,4.129032,4.387097 +L 4.129032,4.387097,3.870968,4.903226 +L 3.870968,4.903226,3.612903,5.16129 +L 3.612903,5.16129,3.096774,5.419355 +L 3.096774,5.419355,2.322581,5.419355 +L 2.322581,5.419355,1.548387,5.16129 +L 1.548387,5.16129,1.032258,4.645161 +L 1.032258,4.645161,0.516129,3.870968 +L 0.516129,3.870968,0.258065,3.096774 +L 0.258065,3.096774,0,2.064516 +L 0,2.064516,0,1.290323 +L 0,1.290323,0.258065,0.516129 +L 0.258065,0.516129,0.516129,0.258065 +L 0.516129,0.258065,1.290323,0 +L 1.290323,0,1.806452,0 +L 1.806452,0,2.580645,0.258065 +L 2.580645,0.258065,3.096774,0.774194 +L 3.096774,0.774194,3.612903,1.806452 +L 2.322581,5.419355,1.806452,5.16129 +L 1.806452,5.16129,1.290323,4.645161 +L 1.290323,4.645161,0.774194,3.870968 +L 0.774194,3.870968,0.516129,3.096774 +L 0.516129,3.096774,0.258065,2.064516 +L 0.258065,2.064516,0.258065,1.290323 +L 0.258065,1.290323,0.516129,0.516129 +L 0.516129,0.516129,0.774194,0.258065 +L 0.774194,0.258065,1.290323,0 +L 1.806452,0,2.322581,0.258065 +L 2.322581,0.258065,2.83871,0.774194 +L 2.83871,0.774194,3.354839,1.806452 +L 2.580645,1.806452,4.387097,1.806452 + +[H] 9 +L 2.322581,5.419355,0.774194,0 +L 2.580645,5.419355,1.032258,0 +L 5.677419,5.419355,4.129032,0 +L 5.935484,5.419355,4.387097,0 +L 1.548387,5.419355,3.354839,5.419355 +L 4.903226,5.419355,6.709677,5.419355 +L 1.806452,2.83871,4.903226,2.83871 +L 0,0,1.806452,0 +L 3.354839,0,5.16129,0 + +[I] 4 +L 2.322581,5.419355,0.774194,0 +L 2.580645,5.419355,1.032258,0 +L 1.548387,5.419355,3.354839,5.419355 +L 0,0,1.806452,0 + +[J] 15 +L 3.612903,5.419355,2.322581,1.032258 +L 2.322581,1.032258,2.064516,0.516129 +L 2.064516,0.516129,1.806452,0.258065 +L 1.806452,0.258065,1.290323,0 +L 1.290323,0,0.774194,0 +L 0.774194,0,0.258065,0.258065 +L 0.258065,0.258065,0,0.774194 +L 0,0.774194,0,1.290323 +L 0,1.290323,0.258065,1.548387 +L 0.258065,1.548387,0.516129,1.290323 +L 0.516129,1.290323,0.258065,1.032258 +L 3.354839,5.419355,2.064516,1.032258 +L 2.064516,1.032258,1.806452,0.516129 +L 1.806452,0.516129,1.290323,0 +L 2.580645,5.419355,4.387097,5.419355 + +[K] 9 +L 2.322581,5.419355,0.774194,0 +L 2.580645,5.419355,1.032258,0 +L 5.935484,5.419355,1.548387,2.064516 +L 3.354839,3.096774,4.387097,0 +L 3.096774,3.096774,4.129032,0 +L 1.548387,5.419355,3.354839,5.419355 +L 4.903226,5.419355,6.451613,5.419355 +L 0,0,1.806452,0 +L 3.354839,0,4.903226,0 + +[L] 6 +L 2.322581,5.419355,0.774194,0 +L 2.580645,5.419355,1.032258,0 +L 1.548387,5.419355,3.354839,5.419355 +L 0,0,3.870968,0 +L 3.870968,0,4.387097,1.548387 +L 4.387097,1.548387,3.612903,0 + +[M] 10 +L 2.322581,5.419355,0.774194,0 +L 2.322581,5.419355,2.580645,0 +L 2.580645,5.419355,2.83871,0.516129 +L 5.935484,5.419355,2.580645,0 +L 5.935484,5.419355,4.387097,0 +L 6.193548,5.419355,4.645161,0 +L 1.548387,5.419355,2.580645,5.419355 +L 5.935484,5.419355,6.967742,5.419355 +L 0,0,1.548387,0 +L 3.612903,0,5.419355,0 + +[N] 7 +L 2.322581,5.419355,0.774194,0 +L 2.322581,5.419355,4.129032,0.774194 +L 2.322581,4.645161,4.129032,0 +L 5.677419,5.419355,4.129032,0 +L 1.548387,5.419355,2.322581,5.419355 +L 4.903226,5.419355,6.451613,5.419355 +L 0,0,1.548387,0 + +[O] 36 +L 2.322581,5.419355,1.548387,5.16129 +L 1.548387,5.16129,1.032258,4.645161 +L 1.032258,4.645161,0.516129,3.870968 +L 0.516129,3.870968,0.258065,3.096774 +L 0.258065,3.096774,0,2.064516 +L 0,2.064516,0,1.290323 +L 0,1.290323,0.258065,0.516129 +L 0.258065,0.516129,0.516129,0.258065 +L 0.516129,0.258065,1.032258,0 +L 1.032258,0,1.806452,0 +L 1.806452,0,2.580645,0.258065 +L 2.580645,0.258065,3.096774,0.774194 +L 3.096774,0.774194,3.612903,1.548387 +L 3.612903,1.548387,3.870968,2.322581 +L 3.870968,2.322581,4.129032,3.354839 +L 4.129032,3.354839,4.129032,4.129032 +L 4.129032,4.129032,3.870968,4.903226 +L 3.870968,4.903226,3.612903,5.16129 +L 3.612903,5.16129,3.096774,5.419355 +L 3.096774,5.419355,2.322581,5.419355 +L 2.322581,5.419355,1.806452,5.16129 +L 1.806452,5.16129,1.290323,4.645161 +L 1.290323,4.645161,0.774194,3.870968 +L 0.774194,3.870968,0.516129,3.096774 +L 0.516129,3.096774,0.258065,2.064516 +L 0.258065,2.064516,0.258065,1.290323 +L 0.258065,1.290323,0.516129,0.516129 +L 0.516129,0.516129,1.032258,0 +L 1.806452,0,2.322581,0.258065 +L 2.322581,0.258065,2.83871,0.774194 +L 2.83871,0.774194,3.354839,1.548387 +L 3.354839,1.548387,3.612903,2.322581 +L 3.612903,2.322581,3.870968,3.354839 +L 3.870968,3.354839,3.870968,4.129032 +L 3.870968,4.129032,3.612903,4.903226 +L 3.612903,4.903226,3.096774,5.419355 + +[P] 17 +L 2.322581,5.419355,0.774194,0 +L 2.580645,5.419355,1.032258,0 +L 1.548387,5.419355,4.645161,5.419355 +L 4.645161,5.419355,5.419355,5.16129 +L 5.419355,5.16129,5.677419,4.645161 +L 5.677419,4.645161,5.677419,4.129032 +L 5.677419,4.129032,5.419355,3.354839 +L 5.419355,3.354839,4.903226,2.83871 +L 4.903226,2.83871,3.870968,2.580645 +L 3.870968,2.580645,1.806452,2.580645 +L 4.645161,5.419355,5.16129,5.16129 +L 5.16129,5.16129,5.419355,4.645161 +L 5.419355,4.645161,5.419355,4.129032 +L 5.419355,4.129032,5.16129,3.354839 +L 5.16129,3.354839,4.645161,2.83871 +L 4.645161,2.83871,3.870968,2.580645 +L 0,0,1.806452,0 + +[Q] 51 +L 2.322581,5.419355,1.548387,5.16129 +L 1.548387,5.16129,1.032258,4.645161 +L 1.032258,4.645161,0.516129,3.870968 +L 0.516129,3.870968,0.258065,3.096774 +L 0.258065,3.096774,0,2.064516 +L 0,2.064516,0,1.290323 +L 0,1.290323,0.258065,0.516129 +L 0.258065,0.516129,0.516129,0.258065 +L 0.516129,0.258065,1.032258,0 +L 1.032258,0,1.806452,0 +L 1.806452,0,2.580645,0.258065 +L 2.580645,0.258065,3.096774,0.774194 +L 3.096774,0.774194,3.612903,1.548387 +L 3.612903,1.548387,3.870968,2.322581 +L 3.870968,2.322581,4.129032,3.354839 +L 4.129032,3.354839,4.129032,4.129032 +L 4.129032,4.129032,3.870968,4.903226 +L 3.870968,4.903226,3.612903,5.16129 +L 3.612903,5.16129,3.096774,5.419355 +L 3.096774,5.419355,2.322581,5.419355 +L 2.322581,5.419355,1.806452,5.16129 +L 1.806452,5.16129,1.290323,4.645161 +L 1.290323,4.645161,0.774194,3.870968 +L 0.774194,3.870968,0.516129,3.096774 +L 0.516129,3.096774,0.258065,2.064516 +L 0.258065,2.064516,0.258065,1.290323 +L 0.258065,1.290323,0.516129,0.516129 +L 0.516129,0.516129,1.032258,0 +L 1.806452,0,2.322581,0.258065 +L 2.322581,0.258065,2.83871,0.774194 +L 2.83871,0.774194,3.354839,1.548387 +L 3.354839,1.548387,3.612903,2.322581 +L 3.612903,2.322581,3.870968,3.354839 +L 3.870968,3.354839,3.870968,4.129032 +L 3.870968,4.129032,3.612903,4.903226 +L 3.612903,4.903226,3.096774,5.419355 +L 0.516129,0.516129,0.516129,0.774194 +L 0.516129,0.774194,0.774194,1.290323 +L 0.774194,1.290323,1.290323,1.548387 +L 1.290323,1.548387,1.548387,1.548387 +L 1.548387,1.548387,2.064516,1.290323 +L 2.064516,1.290323,2.322581,0.774194 +L 2.322581,0.774194,2.322581,-1.032258 +L 2.322581,-1.032258,2.580645,-1.290323 +L 2.580645,-1.290323,3.096774,-1.290323 +L 3.096774,-1.290323,3.354839,-0.774194 +L 3.354839,-0.774194,3.354839,-0.516129 +L 2.322581,0.774194,2.580645,-0.774194 +L 2.580645,-0.774194,2.83871,-1.032258 +L 2.83871,-1.032258,3.096774,-1.032258 +L 3.096774,-1.032258,3.354839,-0.774194 + +[R] 28 +L 2.322581,5.419355,0.774194,0 +L 2.580645,5.419355,1.032258,0 +L 1.548387,5.419355,4.387097,5.419355 +L 4.387097,5.419355,5.16129,5.16129 +L 5.16129,5.16129,5.419355,4.645161 +L 5.419355,4.645161,5.419355,4.129032 +L 5.419355,4.129032,5.16129,3.354839 +L 5.16129,3.354839,4.903226,3.096774 +L 4.903226,3.096774,4.129032,2.83871 +L 4.129032,2.83871,1.806452,2.83871 +L 4.387097,5.419355,4.903226,5.16129 +L 4.903226,5.16129,5.16129,4.645161 +L 5.16129,4.645161,5.16129,4.129032 +L 5.16129,4.129032,4.903226,3.354839 +L 4.903226,3.354839,4.645161,3.096774 +L 4.645161,3.096774,4.129032,2.83871 +L 3.096774,2.83871,3.612903,2.580645 +L 3.612903,2.580645,3.870968,2.322581 +L 3.870968,2.322581,4.129032,0.258065 +L 4.129032,0.258065,4.387097,0 +L 4.387097,0,4.903226,0 +L 4.903226,0,5.16129,0.516129 +L 5.16129,0.516129,5.16129,0.774194 +L 3.870968,2.322581,4.387097,0.516129 +L 4.387097,0.516129,4.645161,0.258065 +L 4.645161,0.258065,4.903226,0.258065 +L 4.903226,0.258065,5.16129,0.516129 +L 0,0,1.806452,0 + +[S] 31 +L 4.387097,4.903226,4.645161,4.903226 +L 4.645161,4.903226,4.903226,5.419355 +L 4.903226,5.419355,4.645161,3.870968 +L 4.645161,3.870968,4.645161,4.387097 +L 4.645161,4.387097,4.387097,4.903226 +L 4.387097,4.903226,4.129032,5.16129 +L 4.129032,5.16129,3.354839,5.419355 +L 3.354839,5.419355,2.322581,5.419355 +L 2.322581,5.419355,1.548387,5.16129 +L 1.548387,5.16129,1.032258,4.645161 +L 1.032258,4.645161,1.032258,4.129032 +L 1.032258,4.129032,1.290323,3.612903 +L 1.290323,3.612903,1.548387,3.354839 +L 1.548387,3.354839,3.354839,2.322581 +L 3.354839,2.322581,3.870968,1.806452 +L 1.032258,4.129032,1.548387,3.612903 +L 1.548387,3.612903,3.354839,2.580645 +L 3.354839,2.580645,3.612903,2.322581 +L 3.612903,2.322581,3.870968,1.806452 +L 3.870968,1.806452,3.870968,1.032258 +L 3.870968,1.032258,3.612903,0.516129 +L 3.612903,0.516129,3.354839,0.258065 +L 3.354839,0.258065,2.580645,0 +L 2.580645,0,1.548387,0 +L 1.548387,0,0.774194,0.258065 +L 0.774194,0.258065,0.516129,0.516129 +L 0.516129,0.516129,0.258065,1.032258 +L 0.258065,1.032258,0.258065,1.548387 +L 0.258065,1.548387,0,0 +L 0,0,0.258065,0.516129 +L 0.258065,0.516129,0.516129,0.516129 + +[T] 8 +L 2.322581,5.419355,0.774194,0 +L 2.580645,5.419355,1.032258,0 +L 0.774194,5.419355,0,3.870968 +L 0,3.870968,0.516129,5.419355 +L 0.516129,5.419355,4.387097,5.419355 +L 4.387097,5.419355,4.129032,3.870968 +L 4.129032,3.870968,4.129032,5.419355 +L 0,0,1.806452,0 + +[U] 17 +L 1.032258,5.419355,0.258065,2.580645 +L 0.258065,2.580645,0,1.548387 +L 0,1.548387,0,0.774194 +L 0,0.774194,0.258065,0.258065 +L 0.258065,0.258065,1.032258,0 +L 1.032258,0,2.064516,0 +L 2.064516,0,2.83871,0.258065 +L 2.83871,0.258065,3.354839,0.774194 +L 3.354839,0.774194,3.612903,1.548387 +L 3.612903,1.548387,4.645161,5.419355 +L 1.290323,5.419355,0.516129,2.580645 +L 0.516129,2.580645,0.258065,1.548387 +L 0.258065,1.548387,0.258065,0.774194 +L 0.258065,0.774194,0.516129,0.258065 +L 0.516129,0.258065,1.032258,0 +L 0.258065,5.419355,2.064516,5.419355 +L 3.870968,5.419355,5.419355,5.419355 + +[V] 5 +L 0.516129,5.419355,0.774194,0 +L 0.774194,5.419355,1.032258,0.516129 +L 4.129032,5.419355,0.774194,0 +L 0,5.419355,1.548387,5.419355 +L 3.096774,5.419355,4.645161,5.419355 + +[W] 8 +L 0.774194,5.419355,0.258065,0 +L 1.032258,5.419355,0.516129,0.516129 +L 2.83871,5.419355,0.258065,0 +L 2.83871,5.419355,2.322581,0 +L 3.096774,5.419355,2.580645,0.516129 +L 4.903226,5.419355,2.322581,0 +L 0,5.419355,1.806452,5.419355 +L 4.129032,5.419355,5.677419,5.419355 + +[X] 7 +L 2.064516,5.419355,3.870968,0 +L 2.322581,5.419355,4.129032,0 +L 5.677419,5.419355,0.516129,0 +L 1.548387,5.419355,3.096774,5.419355 +L 4.645161,5.419355,6.193548,5.419355 +L 0,0,1.548387,0 +L 3.096774,0,4.645161,0 + +[Y] 8 +L 0.516129,5.419355,1.548387,2.83871 +L 1.548387,2.83871,0.774194,0 +L 0.774194,5.419355,1.806452,2.83871 +L 1.806452,2.83871,1.032258,0 +L 4.387097,5.419355,1.806452,2.83871 +L 0,5.419355,1.548387,5.419355 +L 3.354839,5.419355,4.903226,5.419355 +L 0,0,1.806452,0 + +[Z] 8 +L 4.903226,5.419355,0,0 +L 5.16129,5.419355,0.258065,0 +L 1.806452,5.419355,1.032258,3.870968 +L 1.032258,3.870968,1.548387,5.419355 +L 1.548387,5.419355,5.16129,5.419355 +L 0,0,3.612903,0 +L 3.612903,0,4.129032,1.548387 +L 4.129032,1.548387,3.354839,0 + +[[] 4 +L 0,6.451613,0,-1.806452 +L 0.258065,6.451613,0.258065,-1.806452 +L 0,6.451613,1.806452,6.451613 +L 0,-1.806452,1.806452,-1.806452 + +[\] 1 +L 0,5.419355,3.612903,-0.774194 + +[]] 4 +L 1.548387,6.451613,1.548387,-1.806452 +L 1.806452,6.451613,1.806452,-1.806452 +L 0,6.451613,1.806452,6.451613 +L 0,-1.806452,1.806452,-1.806452 + +[^] 5 +L 0.774194,3.870968,1.290323,4.645161 +L 1.290323,4.645161,1.806452,3.870968 +L 0,3.096774,1.290323,4.387097 +L 1.290323,4.387097,2.580645,3.096774 +L 1.290323,4.387097,1.290323,0 + +[_] 1 +L 0,-0.516129,4.129032,-0.516129 + +[`] 6 +L 0.774194,5.419355,0.258065,4.903226 +L 0.258065,4.903226,0,4.387097 +L 0,4.387097,0,4.129032 +L 0,4.129032,0.258065,3.870968 +L 0.258065,3.870968,0.516129,4.129032 +L 0.516129,4.129032,0.258065,4.387097 + +[a] 31 +L 3.354839,3.612903,2.83871,1.806452 +L 2.83871,1.806452,2.580645,0.774194 +L 2.580645,0.774194,2.580645,0.258065 +L 2.580645,0.258065,2.83871,0 +L 2.83871,0,3.612903,0 +L 3.612903,0,4.129032,0.516129 +L 4.129032,0.516129,4.387097,1.032258 +L 3.612903,3.612903,3.096774,1.806452 +L 3.096774,1.806452,2.83871,0.774194 +L 2.83871,0.774194,2.83871,0.258065 +L 2.83871,0.258065,3.096774,0 +L 2.83871,1.806452,2.83871,2.580645 +L 2.83871,2.580645,2.580645,3.354839 +L 2.580645,3.354839,2.064516,3.612903 +L 2.064516,3.612903,1.548387,3.612903 +L 1.548387,3.612903,0.774194,3.354839 +L 0.774194,3.354839,0.258065,2.580645 +L 0.258065,2.580645,0,1.806452 +L 0,1.806452,0,1.032258 +L 0,1.032258,0.258065,0.516129 +L 0.258065,0.516129,0.516129,0.258065 +L 0.516129,0.258065,1.032258,0 +L 1.032258,0,1.548387,0 +L 1.548387,0,2.064516,0.258065 +L 2.064516,0.258065,2.580645,1.032258 +L 2.580645,1.032258,2.83871,1.806452 +L 1.548387,3.612903,1.032258,3.354839 +L 1.032258,3.354839,0.516129,2.580645 +L 0.516129,2.580645,0.258065,1.806452 +L 0.258065,1.806452,0.258065,0.774194 +L 0.258065,0.774194,0.516129,0.258065 + +[b] 26 +L 1.032258,5.419355,0,2.064516 +L 0,2.064516,0,1.290323 +L 0,1.290323,0.258065,0.516129 +L 0.258065,0.516129,0.516129,0.258065 +L 1.290323,5.419355,0.258065,2.064516 +L 0.258065,2.064516,0.516129,2.83871 +L 0.516129,2.83871,1.032258,3.354839 +L 1.032258,3.354839,1.548387,3.612903 +L 1.548387,3.612903,2.064516,3.612903 +L 2.064516,3.612903,2.580645,3.354839 +L 2.580645,3.354839,2.83871,3.096774 +L 2.83871,3.096774,3.096774,2.580645 +L 3.096774,2.580645,3.096774,1.806452 +L 3.096774,1.806452,2.83871,1.032258 +L 2.83871,1.032258,2.322581,0.258065 +L 2.322581,0.258065,1.548387,0 +L 1.548387,0,1.032258,0 +L 1.032258,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,1.032258 +L 0.258065,1.032258,0.258065,2.064516 +L 2.580645,3.354839,2.83871,2.83871 +L 2.83871,2.83871,2.83871,1.806452 +L 2.83871,1.806452,2.580645,1.032258 +L 2.580645,1.032258,2.064516,0.258065 +L 2.064516,0.258065,1.548387,0 +L 0.258065,5.419355,1.290323,5.419355 + +[c] 21 +L 2.83871,2.83871,2.83871,2.580645 +L 2.83871,2.580645,3.096774,2.580645 +L 3.096774,2.580645,3.096774,2.83871 +L 3.096774,2.83871,2.83871,3.354839 +L 2.83871,3.354839,2.322581,3.612903 +L 2.322581,3.612903,1.548387,3.612903 +L 1.548387,3.612903,0.774194,3.354839 +L 0.774194,3.354839,0.258065,2.580645 +L 0.258065,2.580645,0,1.806452 +L 0,1.806452,0,1.032258 +L 0,1.032258,0.258065,0.516129 +L 0.258065,0.516129,0.516129,0.258065 +L 0.516129,0.258065,1.032258,0 +L 1.032258,0,1.548387,0 +L 1.548387,0,2.322581,0.258065 +L 2.322581,0.258065,2.83871,1.032258 +L 1.548387,3.612903,1.032258,3.354839 +L 1.032258,3.354839,0.516129,2.580645 +L 0.516129,2.580645,0.258065,1.806452 +L 0.258065,1.806452,0.258065,0.774194 +L 0.258065,0.774194,0.516129,0.258065 + +[d] 32 +L 3.870968,5.419355,2.83871,1.806452 +L 2.83871,1.806452,2.580645,0.774194 +L 2.580645,0.774194,2.580645,0.258065 +L 2.580645,0.258065,2.83871,0 +L 2.83871,0,3.612903,0 +L 3.612903,0,4.129032,0.516129 +L 4.129032,0.516129,4.387097,1.032258 +L 4.129032,5.419355,3.096774,1.806452 +L 3.096774,1.806452,2.83871,0.774194 +L 2.83871,0.774194,2.83871,0.258065 +L 2.83871,0.258065,3.096774,0 +L 2.83871,1.806452,2.83871,2.580645 +L 2.83871,2.580645,2.580645,3.354839 +L 2.580645,3.354839,2.064516,3.612903 +L 2.064516,3.612903,1.548387,3.612903 +L 1.548387,3.612903,0.774194,3.354839 +L 0.774194,3.354839,0.258065,2.580645 +L 0.258065,2.580645,0,1.806452 +L 0,1.806452,0,1.032258 +L 0,1.032258,0.258065,0.516129 +L 0.258065,0.516129,0.516129,0.258065 +L 0.516129,0.258065,1.032258,0 +L 1.032258,0,1.548387,0 +L 1.548387,0,2.064516,0.258065 +L 2.064516,0.258065,2.580645,1.032258 +L 2.580645,1.032258,2.83871,1.806452 +L 1.548387,3.612903,1.032258,3.354839 +L 1.032258,3.354839,0.516129,2.580645 +L 0.516129,2.580645,0.258065,1.806452 +L 0.258065,1.806452,0.258065,0.774194 +L 0.258065,0.774194,0.516129,0.258065 +L 3.096774,5.419355,4.129032,5.419355 + +[e] 22 +L 0.258065,1.290323,1.290323,1.548387 +L 1.290323,1.548387,2.064516,1.806452 +L 2.064516,1.806452,2.83871,2.322581 +L 2.83871,2.322581,3.096774,2.83871 +L 3.096774,2.83871,2.83871,3.354839 +L 2.83871,3.354839,2.322581,3.612903 +L 2.322581,3.612903,1.548387,3.612903 +L 1.548387,3.612903,0.774194,3.354839 +L 0.774194,3.354839,0.258065,2.580645 +L 0.258065,2.580645,0,1.806452 +L 0,1.806452,0,1.032258 +L 0,1.032258,0.258065,0.516129 +L 0.258065,0.516129,0.516129,0.258065 +L 0.516129,0.258065,1.032258,0 +L 1.032258,0,1.548387,0 +L 1.548387,0,2.322581,0.258065 +L 2.322581,0.258065,2.83871,0.774194 +L 1.548387,3.612903,1.032258,3.354839 +L 1.032258,3.354839,0.516129,2.580645 +L 0.516129,2.580645,0.258065,1.806452 +L 0.258065,1.806452,0.258065,0.774194 +L 0.258065,0.774194,0.516129,0.258065 + +[f] 29 +L 4.387097,5.16129,4.129032,4.903226 +L 4.129032,4.903226,4.387097,4.645161 +L 4.387097,4.645161,4.645161,4.903226 +L 4.645161,4.903226,4.645161,5.16129 +L 4.645161,5.16129,4.387097,5.419355 +L 4.387097,5.419355,3.870968,5.419355 +L 3.870968,5.419355,3.354839,5.16129 +L 3.354839,5.16129,3.096774,4.903226 +L 3.096774,4.903226,2.83871,4.387097 +L 2.83871,4.387097,2.580645,3.612903 +L 2.580645,3.612903,1.806452,0 +L 1.806452,0,1.548387,-1.032258 +L 1.548387,-1.032258,1.290323,-1.548387 +L 3.870968,5.419355,3.354839,4.903226 +L 3.354839,4.903226,3.096774,4.387097 +L 3.096774,4.387097,2.83871,3.354839 +L 2.83871,3.354839,2.322581,1.032258 +L 2.322581,1.032258,2.064516,0 +L 2.064516,0,1.806452,-0.774194 +L 1.806452,-0.774194,1.548387,-1.290323 +L 1.548387,-1.290323,1.290323,-1.548387 +L 1.290323,-1.548387,0.774194,-1.806452 +L 0.774194,-1.806452,0.258065,-1.806452 +L 0.258065,-1.806452,0,-1.548387 +L 0,-1.548387,0,-1.290323 +L 0,-1.290323,0.258065,-1.032258 +L 0.258065,-1.032258,0.516129,-1.290323 +L 0.516129,-1.290323,0.258065,-1.548387 +L 1.548387,3.612903,4.129032,3.612903 + +[g] 35 +L 4.129032,3.612903,3.096774,0 +L 3.096774,0,2.83871,-0.774194 +L 2.83871,-0.774194,2.322581,-1.548387 +L 2.322581,-1.548387,1.548387,-1.806452 +L 1.548387,-1.806452,0.774194,-1.806452 +L 0.774194,-1.806452,0.258065,-1.548387 +L 0.258065,-1.548387,0,-1.290323 +L 0,-1.290323,0,-1.032258 +L 0,-1.032258,0.258065,-0.774194 +L 0.258065,-0.774194,0.516129,-1.032258 +L 0.516129,-1.032258,0.258065,-1.290323 +L 3.870968,3.612903,2.83871,0 +L 2.83871,0,2.580645,-0.774194 +L 2.580645,-0.774194,2.064516,-1.548387 +L 2.064516,-1.548387,1.548387,-1.806452 +L 3.354839,1.806452,3.354839,2.580645 +L 3.354839,2.580645,3.096774,3.354839 +L 3.096774,3.354839,2.580645,3.612903 +L 2.580645,3.612903,2.064516,3.612903 +L 2.064516,3.612903,1.290323,3.354839 +L 1.290323,3.354839,0.774194,2.580645 +L 0.774194,2.580645,0.516129,1.806452 +L 0.516129,1.806452,0.516129,1.032258 +L 0.516129,1.032258,0.774194,0.516129 +L 0.774194,0.516129,1.032258,0.258065 +L 1.032258,0.258065,1.548387,0 +L 1.548387,0,2.064516,0 +L 2.064516,0,2.580645,0.258065 +L 2.580645,0.258065,3.096774,1.032258 +L 3.096774,1.032258,3.354839,1.806452 +L 2.064516,3.612903,1.548387,3.354839 +L 1.548387,3.354839,1.032258,2.580645 +L 1.032258,2.580645,0.774194,1.806452 +L 0.774194,1.806452,0.774194,0.774194 +L 0.774194,0.774194,1.032258,0.258065 + +[h] 21 +L 1.548387,5.419355,0,0 +L 1.806452,5.419355,0.258065,0 +L 0.774194,1.806452,1.290323,2.83871 +L 1.290323,2.83871,1.806452,3.354839 +L 1.806452,3.354839,2.322581,3.612903 +L 2.322581,3.612903,2.83871,3.612903 +L 2.83871,3.612903,3.354839,3.354839 +L 3.354839,3.354839,3.612903,3.096774 +L 3.612903,3.096774,3.612903,2.580645 +L 3.612903,2.580645,3.096774,1.032258 +L 3.096774,1.032258,3.096774,0.258065 +L 3.096774,0.258065,3.354839,0 +L 2.83871,3.612903,3.354839,3.096774 +L 3.354839,3.096774,3.354839,2.580645 +L 3.354839,2.580645,2.83871,1.032258 +L 2.83871,1.032258,2.83871,0.258065 +L 2.83871,0.258065,3.096774,0 +L 3.096774,0,3.870968,0 +L 3.870968,0,4.387097,0.516129 +L 4.387097,0.516129,4.645161,1.032258 +L 0.774194,5.419355,1.806452,5.419355 + +[i] 20 +L 2.064516,5.419355,1.806452,5.16129 +L 1.806452,5.16129,2.064516,4.903226 +L 2.064516,4.903226,2.322581,5.16129 +L 2.322581,5.16129,2.064516,5.419355 +L 0,2.580645,0.258065,3.096774 +L 0.258065,3.096774,0.774194,3.612903 +L 0.774194,3.612903,1.548387,3.612903 +L 1.548387,3.612903,1.806452,3.354839 +L 1.806452,3.354839,1.806452,2.580645 +L 1.806452,2.580645,1.290323,1.032258 +L 1.290323,1.032258,1.290323,0.258065 +L 1.290323,0.258065,1.548387,0 +L 1.290323,3.612903,1.548387,3.354839 +L 1.548387,3.354839,1.548387,2.580645 +L 1.548387,2.580645,1.032258,1.032258 +L 1.032258,1.032258,1.032258,0.258065 +L 1.032258,0.258065,1.290323,0 +L 1.290323,0,2.064516,0 +L 2.064516,0,2.580645,0.516129 +L 2.580645,0.516129,2.83871,1.032258 + +[j] 26 +L 3.096774,5.419355,2.83871,5.16129 +L 2.83871,5.16129,3.096774,4.903226 +L 3.096774,4.903226,3.354839,5.16129 +L 3.354839,5.16129,3.096774,5.419355 +L 1.032258,2.580645,1.290323,3.096774 +L 1.290323,3.096774,1.806452,3.612903 +L 1.806452,3.612903,2.580645,3.612903 +L 2.580645,3.612903,2.83871,3.354839 +L 2.83871,3.354839,2.83871,2.580645 +L 2.83871,2.580645,2.064516,0 +L 2.064516,0,1.806452,-0.774194 +L 1.806452,-0.774194,1.548387,-1.290323 +L 1.548387,-1.290323,1.290323,-1.548387 +L 1.290323,-1.548387,0.774194,-1.806452 +L 0.774194,-1.806452,0.258065,-1.806452 +L 0.258065,-1.806452,0,-1.548387 +L 0,-1.548387,0,-1.290323 +L 0,-1.290323,0.258065,-1.032258 +L 0.258065,-1.032258,0.516129,-1.290323 +L 0.516129,-1.290323,0.258065,-1.548387 +L 2.322581,3.612903,2.580645,3.354839 +L 2.580645,3.354839,2.580645,2.580645 +L 2.580645,2.580645,1.806452,0 +L 1.806452,0,1.548387,-0.774194 +L 1.548387,-0.774194,1.290323,-1.290323 +L 1.290323,-1.290323,0.774194,-1.806452 + +[k] 22 +L 1.548387,5.419355,0,0 +L 1.806452,5.419355,0.258065,0 +L 3.612903,3.354839,3.354839,3.096774 +L 3.354839,3.096774,3.612903,2.83871 +L 3.612903,2.83871,3.870968,3.096774 +L 3.870968,3.096774,3.870968,3.354839 +L 3.870968,3.354839,3.612903,3.612903 +L 3.612903,3.612903,3.354839,3.612903 +L 3.354839,3.612903,2.83871,3.354839 +L 2.83871,3.354839,1.806452,2.322581 +L 1.806452,2.322581,1.290323,2.064516 +L 1.290323,2.064516,0.774194,2.064516 +L 1.290323,2.064516,1.806452,1.806452 +L 1.806452,1.806452,2.322581,0.258065 +L 2.322581,0.258065,2.580645,0 +L 1.290323,2.064516,1.548387,1.806452 +L 1.548387,1.806452,2.064516,0.258065 +L 2.064516,0.258065,2.322581,0 +L 2.322581,0,2.83871,0 +L 2.83871,0,3.354839,0.258065 +L 3.354839,0.258065,3.870968,1.032258 +L 0.774194,5.419355,1.806452,5.419355 + +[l] 12 +L 1.290323,5.419355,0.258065,1.806452 +L 0.258065,1.806452,0,0.774194 +L 0,0.774194,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,1.032258,0 +L 1.032258,0,1.548387,0.516129 +L 1.548387,0.516129,1.806452,1.032258 +L 1.548387,5.419355,0.516129,1.806452 +L 0.516129,1.806452,0.258065,0.774194 +L 0.258065,0.774194,0.258065,0.258065 +L 0.258065,0.258065,0.516129,0 +L 0.516129,5.419355,1.548387,5.419355 + +[m] 40 +L 0,2.580645,0.258065,3.096774 +L 0.258065,3.096774,0.774194,3.612903 +L 0.774194,3.612903,1.548387,3.612903 +L 1.548387,3.612903,1.806452,3.354839 +L 1.806452,3.354839,1.806452,2.83871 +L 1.806452,2.83871,1.548387,1.806452 +L 1.548387,1.806452,1.032258,0 +L 1.290323,3.612903,1.548387,3.354839 +L 1.548387,3.354839,1.548387,2.83871 +L 1.548387,2.83871,1.290323,1.806452 +L 1.290323,1.806452,0.774194,0 +L 1.548387,1.806452,2.064516,2.83871 +L 2.064516,2.83871,2.580645,3.354839 +L 2.580645,3.354839,3.096774,3.612903 +L 3.096774,3.612903,3.612903,3.612903 +L 3.612903,3.612903,4.129032,3.354839 +L 4.129032,3.354839,4.387097,3.096774 +L 4.387097,3.096774,4.387097,2.580645 +L 4.387097,2.580645,3.612903,0 +L 3.612903,3.612903,4.129032,3.096774 +L 4.129032,3.096774,4.129032,2.580645 +L 4.129032,2.580645,3.354839,0 +L 4.129032,1.806452,4.645161,2.83871 +L 4.645161,2.83871,5.16129,3.354839 +L 5.16129,3.354839,5.677419,3.612903 +L 5.677419,3.612903,6.193548,3.612903 +L 6.193548,3.612903,6.709677,3.354839 +L 6.709677,3.354839,6.967742,3.096774 +L 6.967742,3.096774,6.967742,2.580645 +L 6.967742,2.580645,6.451613,1.032258 +L 6.451613,1.032258,6.451613,0.258065 +L 6.451613,0.258065,6.709677,0 +L 6.193548,3.612903,6.709677,3.096774 +L 6.709677,3.096774,6.709677,2.580645 +L 6.709677,2.580645,6.193548,1.032258 +L 6.193548,1.032258,6.193548,0.258065 +L 6.193548,0.258065,6.451613,0 +L 6.451613,0,7.225806,0 +L 7.225806,0,7.741935,0.516129 +L 7.741935,0.516129,8,1.032258 + +[n] 29 +L 0,2.580645,0.258065,3.096774 +L 0.258065,3.096774,0.774194,3.612903 +L 0.774194,3.612903,1.548387,3.612903 +L 1.548387,3.612903,1.806452,3.354839 +L 1.806452,3.354839,1.806452,2.83871 +L 1.806452,2.83871,1.548387,1.806452 +L 1.548387,1.806452,1.032258,0 +L 1.290323,3.612903,1.548387,3.354839 +L 1.548387,3.354839,1.548387,2.83871 +L 1.548387,2.83871,1.290323,1.806452 +L 1.290323,1.806452,0.774194,0 +L 1.548387,1.806452,2.064516,2.83871 +L 2.064516,2.83871,2.580645,3.354839 +L 2.580645,3.354839,3.096774,3.612903 +L 3.096774,3.612903,3.612903,3.612903 +L 3.612903,3.612903,4.129032,3.354839 +L 4.129032,3.354839,4.387097,3.096774 +L 4.387097,3.096774,4.387097,2.580645 +L 4.387097,2.580645,3.870968,1.032258 +L 3.870968,1.032258,3.870968,0.258065 +L 3.870968,0.258065,4.129032,0 +L 3.612903,3.612903,4.129032,3.096774 +L 4.129032,3.096774,4.129032,2.580645 +L 4.129032,2.580645,3.612903,1.032258 +L 3.612903,1.032258,3.612903,0.258065 +L 3.612903,0.258065,3.870968,0 +L 3.870968,0,4.645161,0 +L 4.645161,0,5.16129,0.516129 +L 5.16129,0.516129,5.419355,1.032258 + +[o] 26 +L 1.548387,3.612903,0.774194,3.354839 +L 0.774194,3.354839,0.258065,2.580645 +L 0.258065,2.580645,0,1.806452 +L 0,1.806452,0,1.032258 +L 0,1.032258,0.258065,0.516129 +L 0.258065,0.516129,0.516129,0.258065 +L 0.516129,0.258065,1.032258,0 +L 1.032258,0,1.548387,0 +L 1.548387,0,2.322581,0.258065 +L 2.322581,0.258065,2.83871,1.032258 +L 2.83871,1.032258,3.096774,1.806452 +L 3.096774,1.806452,3.096774,2.580645 +L 3.096774,2.580645,2.83871,3.096774 +L 2.83871,3.096774,2.580645,3.354839 +L 2.580645,3.354839,2.064516,3.612903 +L 2.064516,3.612903,1.548387,3.612903 +L 1.548387,3.612903,1.032258,3.354839 +L 1.032258,3.354839,0.516129,2.580645 +L 0.516129,2.580645,0.258065,1.806452 +L 0.258065,1.806452,0.258065,0.774194 +L 0.258065,0.774194,0.516129,0.258065 +L 1.548387,0,2.064516,0.258065 +L 2.064516,0.258065,2.580645,1.032258 +L 2.580645,1.032258,2.83871,1.806452 +L 2.83871,1.806452,2.83871,2.83871 +L 2.83871,2.83871,2.580645,3.354839 + +[p] 32 +L 0.516129,2.580645,0.774194,3.096774 +L 0.774194,3.096774,1.290323,3.612903 +L 1.290323,3.612903,2.064516,3.612903 +L 2.064516,3.612903,2.322581,3.354839 +L 2.322581,3.354839,2.322581,2.83871 +L 2.322581,2.83871,2.064516,1.806452 +L 2.064516,1.806452,1.032258,-1.806452 +L 1.806452,3.612903,2.064516,3.354839 +L 2.064516,3.354839,2.064516,2.83871 +L 2.064516,2.83871,1.806452,1.806452 +L 1.806452,1.806452,0.774194,-1.806452 +L 2.064516,1.806452,2.322581,2.580645 +L 2.322581,2.580645,2.83871,3.354839 +L 2.83871,3.354839,3.354839,3.612903 +L 3.354839,3.612903,3.870968,3.612903 +L 3.870968,3.612903,4.387097,3.354839 +L 4.387097,3.354839,4.645161,3.096774 +L 4.645161,3.096774,4.903226,2.580645 +L 4.903226,2.580645,4.903226,1.806452 +L 4.903226,1.806452,4.645161,1.032258 +L 4.645161,1.032258,4.129032,0.258065 +L 4.129032,0.258065,3.354839,0 +L 3.354839,0,2.83871,0 +L 2.83871,0,2.322581,0.258065 +L 2.322581,0.258065,2.064516,1.032258 +L 2.064516,1.032258,2.064516,1.806452 +L 4.387097,3.354839,4.645161,2.83871 +L 4.645161,2.83871,4.645161,1.806452 +L 4.645161,1.806452,4.387097,1.032258 +L 4.387097,1.032258,3.870968,0.258065 +L 3.870968,0.258065,3.354839,0 +L 0,-1.806452,1.806452,-1.806452 + +[q] 23 +L 3.354839,3.612903,1.806452,-1.806452 +L 3.612903,3.612903,2.064516,-1.806452 +L 2.83871,1.806452,2.83871,2.580645 +L 2.83871,2.580645,2.580645,3.354839 +L 2.580645,3.354839,2.064516,3.612903 +L 2.064516,3.612903,1.548387,3.612903 +L 1.548387,3.612903,0.774194,3.354839 +L 0.774194,3.354839,0.258065,2.580645 +L 0.258065,2.580645,0,1.806452 +L 0,1.806452,0,1.032258 +L 0,1.032258,0.258065,0.516129 +L 0.258065,0.516129,0.516129,0.258065 +L 0.516129,0.258065,1.032258,0 +L 1.032258,0,1.548387,0 +L 1.548387,0,2.064516,0.258065 +L 2.064516,0.258065,2.580645,1.032258 +L 2.580645,1.032258,2.83871,1.806452 +L 1.548387,3.612903,1.032258,3.354839 +L 1.032258,3.354839,0.516129,2.580645 +L 0.516129,2.580645,0.258065,1.806452 +L 0.258065,1.806452,0.258065,0.774194 +L 0.258065,0.774194,0.516129,0.258065 +L 1.032258,-1.806452,2.83871,-1.806452 + +[r] 20 +L 0,2.580645,0.258065,3.096774 +L 0.258065,3.096774,0.774194,3.612903 +L 0.774194,3.612903,1.548387,3.612903 +L 1.548387,3.612903,1.806452,3.354839 +L 1.806452,3.354839,1.806452,2.83871 +L 1.806452,2.83871,1.548387,1.806452 +L 1.548387,1.806452,1.032258,0 +L 1.290323,3.612903,1.548387,3.354839 +L 1.548387,3.354839,1.548387,2.83871 +L 1.548387,2.83871,1.290323,1.806452 +L 1.290323,1.806452,0.774194,0 +L 1.548387,1.806452,2.064516,2.83871 +L 2.064516,2.83871,2.580645,3.354839 +L 2.580645,3.354839,3.096774,3.612903 +L 3.096774,3.612903,3.612903,3.612903 +L 3.612903,3.612903,3.870968,3.354839 +L 3.870968,3.354839,3.870968,3.096774 +L 3.870968,3.096774,3.612903,2.83871 +L 3.612903,2.83871,3.354839,3.096774 +L 3.354839,3.096774,3.612903,3.354839 + +[s] 24 +L 3.096774,3.096774,3.096774,2.83871 +L 3.096774,2.83871,3.354839,2.83871 +L 3.354839,2.83871,3.354839,3.096774 +L 3.354839,3.096774,3.096774,3.354839 +L 3.096774,3.354839,2.322581,3.612903 +L 2.322581,3.612903,1.548387,3.612903 +L 1.548387,3.612903,0.774194,3.354839 +L 0.774194,3.354839,0.516129,3.096774 +L 0.516129,3.096774,0.516129,2.580645 +L 0.516129,2.580645,0.774194,2.322581 +L 0.774194,2.322581,2.580645,1.290323 +L 2.580645,1.290323,2.83871,1.032258 +L 0.516129,2.83871,0.774194,2.580645 +L 0.774194,2.580645,2.580645,1.548387 +L 2.580645,1.548387,2.83871,1.290323 +L 2.83871,1.290323,2.83871,0.516129 +L 2.83871,0.516129,2.580645,0.258065 +L 2.580645,0.258065,1.806452,0 +L 1.806452,0,1.032258,0 +L 1.032258,0,0.258065,0.258065 +L 0.258065,0.258065,0,0.516129 +L 0,0.516129,0,0.774194 +L 0,0.774194,0.258065,0.774194 +L 0.258065,0.774194,0.258065,0.516129 + +[t] 12 +L 1.548387,5.419355,0.516129,1.806452 +L 0.516129,1.806452,0.258065,0.774194 +L 0.258065,0.774194,0.258065,0.258065 +L 0.258065,0.258065,0.516129,0 +L 0.516129,0,1.290323,0 +L 1.290323,0,1.806452,0.516129 +L 1.806452,0.516129,2.064516,1.032258 +L 1.806452,5.419355,0.774194,1.806452 +L 0.774194,1.806452,0.516129,0.774194 +L 0.516129,0.774194,0.516129,0.258065 +L 0.516129,0.258065,0.774194,0 +L 0,3.612903,2.322581,3.612903 + +[u] 29 +L 0,2.580645,0.258065,3.096774 +L 0.258065,3.096774,0.774194,3.612903 +L 0.774194,3.612903,1.548387,3.612903 +L 1.548387,3.612903,1.806452,3.354839 +L 1.806452,3.354839,1.806452,2.580645 +L 1.806452,2.580645,1.290323,1.032258 +L 1.290323,1.032258,1.290323,0.516129 +L 1.290323,0.516129,1.806452,0 +L 1.290323,3.612903,1.548387,3.354839 +L 1.548387,3.354839,1.548387,2.580645 +L 1.548387,2.580645,1.032258,1.032258 +L 1.032258,1.032258,1.032258,0.516129 +L 1.032258,0.516129,1.290323,0.258065 +L 1.290323,0.258065,1.806452,0 +L 1.806452,0,2.322581,0 +L 2.322581,0,2.83871,0.258065 +L 2.83871,0.258065,3.354839,0.774194 +L 3.354839,0.774194,3.870968,1.806452 +L 4.387097,3.612903,3.870968,1.806452 +L 3.870968,1.806452,3.612903,0.774194 +L 3.612903,0.774194,3.612903,0.258065 +L 3.612903,0.258065,3.870968,0 +L 3.870968,0,4.645161,0 +L 4.645161,0,5.16129,0.516129 +L 5.16129,0.516129,5.419355,1.032258 +L 4.645161,3.612903,4.129032,1.806452 +L 4.129032,1.806452,3.870968,0.774194 +L 3.870968,0.774194,3.870968,0.258065 +L 3.870968,0.258065,4.129032,0 + +[v] 22 +L 0,2.580645,0.258065,3.096774 +L 0.258065,3.096774,0.774194,3.612903 +L 0.774194,3.612903,1.548387,3.612903 +L 1.548387,3.612903,1.806452,3.354839 +L 1.806452,3.354839,1.806452,2.580645 +L 1.806452,2.580645,1.290323,1.032258 +L 1.290323,1.032258,1.290323,0.516129 +L 1.290323,0.516129,1.806452,0 +L 1.290323,3.612903,1.548387,3.354839 +L 1.548387,3.354839,1.548387,2.580645 +L 1.548387,2.580645,1.032258,1.032258 +L 1.032258,1.032258,1.032258,0.516129 +L 1.032258,0.516129,1.290323,0.258065 +L 1.290323,0.258065,1.806452,0 +L 1.806452,0,2.064516,0 +L 2.064516,0,2.83871,0.258065 +L 2.83871,0.258065,3.354839,0.774194 +L 3.354839,0.774194,3.870968,1.548387 +L 3.870968,1.548387,4.129032,2.580645 +L 4.129032,2.580645,4.129032,3.612903 +L 4.129032,3.612903,3.870968,3.612903 +L 3.870968,3.612903,4.129032,3.096774 + +[w] 33 +L 0,2.580645,0.258065,3.096774 +L 0.258065,3.096774,0.774194,3.612903 +L 0.774194,3.612903,1.548387,3.612903 +L 1.548387,3.612903,1.806452,3.354839 +L 1.806452,3.354839,1.806452,2.580645 +L 1.806452,2.580645,1.290323,1.032258 +L 1.290323,1.032258,1.290323,0.516129 +L 1.290323,0.516129,1.806452,0 +L 1.290323,3.612903,1.548387,3.354839 +L 1.548387,3.354839,1.548387,2.580645 +L 1.548387,2.580645,1.032258,1.032258 +L 1.032258,1.032258,1.032258,0.516129 +L 1.032258,0.516129,1.290323,0.258065 +L 1.290323,0.258065,1.806452,0 +L 1.806452,0,2.322581,0 +L 2.322581,0,2.83871,0.258065 +L 2.83871,0.258065,3.354839,0.774194 +L 3.354839,0.774194,3.612903,1.290323 +L 4.129032,3.612903,3.612903,1.290323 +L 3.612903,1.290323,3.612903,0.516129 +L 3.612903,0.516129,3.870968,0.258065 +L 3.870968,0.258065,4.387097,0 +L 4.387097,0,4.903226,0 +L 4.903226,0,5.419355,0.258065 +L 5.419355,0.258065,5.935484,0.774194 +L 5.935484,0.774194,6.193548,1.290323 +L 6.193548,1.290323,6.451613,2.322581 +L 6.451613,2.322581,6.451613,3.612903 +L 6.451613,3.612903,6.193548,3.612903 +L 6.193548,3.612903,6.451613,3.096774 +L 4.387097,3.612903,3.870968,1.290323 +L 3.870968,1.290323,3.870968,0.516129 +L 3.870968,0.516129,4.387097,0 + +[x] 34 +L 0.258065,2.580645,0.774194,3.354839 +L 0.774194,3.354839,1.290323,3.612903 +L 1.290323,3.612903,2.064516,3.612903 +L 2.064516,3.612903,2.322581,3.096774 +L 2.322581,3.096774,2.322581,2.322581 +L 1.806452,3.612903,2.064516,3.096774 +L 2.064516,3.096774,2.064516,2.322581 +L 2.064516,2.322581,1.806452,1.290323 +L 1.806452,1.290323,1.548387,0.774194 +L 1.548387,0.774194,1.032258,0.258065 +L 1.032258,0.258065,0.516129,0 +L 0.516129,0,0.258065,0 +L 0.258065,0,0,0.258065 +L 0,0.258065,0,0.516129 +L 0,0.516129,0.258065,0.774194 +L 0.258065,0.774194,0.516129,0.516129 +L 0.516129,0.516129,0.258065,0.258065 +L 1.806452,1.290323,1.806452,0.516129 +L 1.806452,0.516129,2.064516,0 +L 2.064516,0,2.83871,0 +L 2.83871,0,3.354839,0.258065 +L 3.354839,0.258065,3.870968,1.032258 +L 3.870968,3.354839,3.612903,3.096774 +L 3.612903,3.096774,3.870968,2.83871 +L 3.870968,2.83871,4.129032,3.096774 +L 4.129032,3.096774,4.129032,3.354839 +L 4.129032,3.354839,3.870968,3.612903 +L 3.870968,3.612903,3.612903,3.612903 +L 3.612903,3.612903,3.096774,3.354839 +L 3.096774,3.354839,2.580645,2.83871 +L 2.580645,2.83871,2.322581,2.322581 +L 2.322581,2.322581,2.064516,1.290323 +L 2.064516,1.290323,2.064516,0.516129 +L 2.064516,0.516129,2.322581,0 + +[y] 33 +L 0,2.580645,0.258065,3.096774 +L 0.258065,3.096774,0.774194,3.612903 +L 0.774194,3.612903,1.548387,3.612903 +L 1.548387,3.612903,1.806452,3.354839 +L 1.806452,3.354839,1.806452,2.580645 +L 1.806452,2.580645,1.290323,1.032258 +L 1.290323,1.032258,1.290323,0.516129 +L 1.290323,0.516129,1.806452,0 +L 1.290323,3.612903,1.548387,3.354839 +L 1.548387,3.354839,1.548387,2.580645 +L 1.548387,2.580645,1.032258,1.032258 +L 1.032258,1.032258,1.032258,0.516129 +L 1.032258,0.516129,1.290323,0.258065 +L 1.290323,0.258065,1.806452,0 +L 1.806452,0,2.322581,0 +L 2.322581,0,2.83871,0.258065 +L 2.83871,0.258065,3.354839,0.774194 +L 3.354839,0.774194,3.870968,1.806452 +L 4.645161,3.612903,3.612903,0 +L 3.612903,0,3.354839,-0.774194 +L 3.354839,-0.774194,2.83871,-1.548387 +L 2.83871,-1.548387,2.064516,-1.806452 +L 2.064516,-1.806452,1.290323,-1.806452 +L 1.290323,-1.806452,0.774194,-1.548387 +L 0.774194,-1.548387,0.516129,-1.290323 +L 0.516129,-1.290323,0.516129,-1.032258 +L 0.516129,-1.032258,0.774194,-0.774194 +L 0.774194,-0.774194,1.032258,-1.032258 +L 1.032258,-1.032258,0.774194,-1.290323 +L 4.387097,3.612903,3.354839,0 +L 3.354839,0,3.096774,-0.774194 +L 3.096774,-0.774194,2.580645,-1.548387 +L 2.580645,-1.548387,2.064516,-1.806452 + +[z] 21 +L 3.612903,3.612903,3.354839,3.096774 +L 3.354839,3.096774,2.83871,2.580645 +L 2.83871,2.580645,0.774194,1.032258 +L 0.774194,1.032258,0.258065,0.516129 +L 0.258065,0.516129,0,0 +L 0.258065,2.580645,0.516129,3.096774 +L 0.516129,3.096774,1.032258,3.612903 +L 1.032258,3.612903,1.806452,3.612903 +L 1.806452,3.612903,2.83871,3.096774 +L 0.516129,3.096774,1.032258,3.354839 +L 1.032258,3.354839,1.806452,3.354839 +L 1.806452,3.354839,2.83871,3.096774 +L 2.83871,3.096774,3.354839,3.096774 +L 0.258065,0.516129,0.774194,0.516129 +L 0.774194,0.516129,1.806452,0.258065 +L 1.806452,0.258065,2.580645,0.258065 +L 2.580645,0.258065,3.096774,0.516129 +L 0.774194,0.516129,1.806452,0 +L 1.806452,0,2.580645,0 +L 2.580645,0,3.096774,0.516129 +L 3.096774,0.516129,3.354839,1.032258 + +[{] 34 +L 1.290323,6.451613,0.774194,6.193548 +L 0.774194,6.193548,0.516129,5.935484 +L 0.516129,5.935484,0.258065,5.419355 +L 0.258065,5.419355,0.258065,4.903226 +L 0.258065,4.903226,0.516129,4.387097 +L 0.516129,4.387097,0.774194,4.129032 +L 0.774194,4.129032,1.032258,3.612903 +L 1.032258,3.612903,1.032258,3.096774 +L 1.032258,3.096774,0.516129,2.580645 +L 0.774194,6.193548,0.516129,5.677419 +L 0.516129,5.677419,0.516129,5.16129 +L 0.516129,5.16129,0.774194,4.645161 +L 0.774194,4.645161,1.032258,4.387097 +L 1.032258,4.387097,1.290323,3.870968 +L 1.290323,3.870968,1.290323,3.354839 +L 1.290323,3.354839,1.032258,2.83871 +L 1.032258,2.83871,0,2.322581 +L 0,2.322581,1.032258,1.806452 +L 1.032258,1.806452,1.290323,1.290323 +L 1.290323,1.290323,1.290323,0.774194 +L 1.290323,0.774194,1.032258,0.258065 +L 1.032258,0.258065,0.774194,0 +L 0.774194,0,0.516129,-0.516129 +L 0.516129,-0.516129,0.516129,-1.032258 +L 0.516129,-1.032258,0.774194,-1.548387 +L 0.516129,2.064516,1.032258,1.548387 +L 1.032258,1.548387,1.032258,1.032258 +L 1.032258,1.032258,0.774194,0.516129 +L 0.774194,0.516129,0.516129,0.258065 +L 0.516129,0.258065,0.258065,-0.258065 +L 0.258065,-0.258065,0.258065,-0.774194 +L 0.258065,-0.774194,0.516129,-1.290323 +L 0.516129,-1.290323,0.774194,-1.548387 +L 0.774194,-1.548387,1.290323,-1.806452 + +[|] 1 +L 0,6.451613,0,-1.806452 + +[}] 34 +L 0,6.451613,0.516129,6.193548 +L 0.516129,6.193548,0.774194,5.935484 +L 0.774194,5.935484,1.032258,5.419355 +L 1.032258,5.419355,1.032258,4.903226 +L 1.032258,4.903226,0.774194,4.387097 +L 0.774194,4.387097,0.516129,4.129032 +L 0.516129,4.129032,0.258065,3.612903 +L 0.258065,3.612903,0.258065,3.096774 +L 0.258065,3.096774,0.774194,2.580645 +L 0.516129,6.193548,0.774194,5.677419 +L 0.774194,5.677419,0.774194,5.16129 +L 0.774194,5.16129,0.516129,4.645161 +L 0.516129,4.645161,0.258065,4.387097 +L 0.258065,4.387097,0,3.870968 +L 0,3.870968,0,3.354839 +L 0,3.354839,0.258065,2.83871 +L 0.258065,2.83871,1.290323,2.322581 +L 1.290323,2.322581,0.258065,1.806452 +L 0.258065,1.806452,0,1.290323 +L 0,1.290323,0,0.774194 +L 0,0.774194,0.258065,0.258065 +L 0.258065,0.258065,0.516129,0 +L 0.516129,0,0.774194,-0.516129 +L 0.774194,-0.516129,0.774194,-1.032258 +L 0.774194,-1.032258,0.516129,-1.548387 +L 0.774194,2.064516,0.258065,1.548387 +L 0.258065,1.548387,0.258065,1.032258 +L 0.258065,1.032258,0.516129,0.516129 +L 0.516129,0.516129,0.774194,0.258065 +L 0.774194,0.258065,1.032258,-0.258065 +L 1.032258,-0.258065,1.032258,-0.774194 +L 1.032258,-0.774194,0.774194,-1.290323 +L 0.774194,-1.290323,0.516129,-1.548387 +L 0.516129,-1.548387,0,-1.806452 + +[~] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[#0104] 12 +L 3.870968,5.419355,0.516129,0 +L 3.870968,5.419355,4.129032,0 +L 3.612903,4.903226,3.870968,0 +L 1.548387,1.548387,3.870968,1.548387 +L 0,0,1.548387,0 +L 3.096774,0,4.645161,0 +L 3.870968,0,3.354839,-0.516129 +L 3.354839,-0.516129,3.096774,-1.032258 +L 3.096774,-1.032258,3.096774,-1.290323 +L 3.096774,-1.290323,3.354839,-1.548387 +L 3.354839,-1.548387,3.612903,-1.290323 +L 3.612903,-1.290323,3.354839,-1.032258 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[#0141] 7 +L 2.322581,5.419355,0.774194,0 +L 2.580645,5.419355,1.032258,0 +L 1.548387,5.419355,3.354839,5.419355 +L 0,0,3.870968,0 +L 3.870968,0,4.387097,1.548387 +L 4.387097,1.548387,3.612903,0 +L 3.354839,3.612903,0.516129,2.064516 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[#015A] 37 +L 4.387097,4.903226,4.645161,4.903226 +L 4.645161,4.903226,4.903226,5.419355 +L 4.903226,5.419355,4.645161,3.870968 +L 4.645161,3.870968,4.645161,4.387097 +L 4.645161,4.387097,4.387097,4.903226 +L 4.387097,4.903226,4.129032,5.16129 +L 4.129032,5.16129,3.354839,5.419355 +L 3.354839,5.419355,2.322581,5.419355 +L 2.322581,5.419355,1.548387,5.16129 +L 1.548387,5.16129,1.032258,4.645161 +L 1.032258,4.645161,1.032258,4.129032 +L 1.032258,4.129032,1.290323,3.612903 +L 1.290323,3.612903,1.548387,3.354839 +L 1.548387,3.354839,3.354839,2.322581 +L 3.354839,2.322581,3.870968,1.806452 +L 1.032258,4.129032,1.548387,3.612903 +L 1.548387,3.612903,3.354839,2.580645 +L 3.354839,2.580645,3.612903,2.322581 +L 3.612903,2.322581,3.870968,1.806452 +L 3.870968,1.806452,3.870968,1.032258 +L 3.870968,1.032258,3.612903,0.516129 +L 3.612903,0.516129,3.354839,0.258065 +L 3.354839,0.258065,2.580645,0 +L 2.580645,0,1.548387,0 +L 1.548387,0,0.774194,0.258065 +L 0.774194,0.258065,0.516129,0.516129 +L 0.516129,0.516129,0.258065,1.032258 +L 0.258065,1.032258,0.258065,1.548387 +L 0.258065,1.548387,0,0 +L 0,0,0.258065,0.516129 +L 0.258065,0.516129,0.516129,0.516129 +L 3.354839,6.967742,3.096774,7.225806 +L 3.096774,7.225806,3.354839,7.483871 +L 3.354839,7.483871,3.612903,7.225806 +L 3.612903,7.225806,3.612903,6.967742 +L 3.612903,6.967742,3.354839,6.451613 +L 3.354839,6.451613,2.83871,5.935484 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[#0179] 14 +L 4.903226,5.419355,0,0 +L 5.16129,5.419355,0.258065,0 +L 1.806452,5.419355,1.032258,3.870968 +L 1.032258,3.870968,1.548387,5.419355 +L 1.548387,5.419355,5.16129,5.419355 +L 0,0,3.612903,0 +L 3.612903,0,4.129032,1.548387 +L 4.129032,1.548387,3.354839,0 +L 3.870968,6.967742,3.612903,7.225806 +L 3.612903,7.225806,3.870968,7.483871 +L 3.870968,7.483871,4.129032,7.225806 +L 4.129032,7.225806,4.129032,6.967742 +L 4.129032,6.967742,3.870968,6.451613 +L 3.870968,6.451613,3.354839,5.935484 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[#017B] 12 +L 4.903226,5.419355,0,0 +L 5.16129,5.419355,0.258065,0 +L 1.806452,5.419355,1.032258,3.870968 +L 1.032258,3.870968,1.548387,5.419355 +L 1.548387,5.419355,5.16129,5.419355 +L 0,0,3.612903,0 +L 3.612903,0,4.129032,1.548387 +L 4.129032,1.548387,3.354839,0 +L 3.354839,6.451613,3.096774,6.193548 +L 3.096774,6.193548,3.354839,5.935484 +L 3.354839,5.935484,3.612903,6.193548 +L 3.612903,6.193548,3.354839,6.451613 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[#0105] 37 +L 3.354839,3.612903,2.83871,1.806452 +L 2.83871,1.806452,2.580645,0.774194 +L 2.580645,0.774194,2.580645,0.258065 +L 2.580645,0.258065,2.83871,0 +L 2.83871,0,3.612903,0 +L 3.612903,0,4.129032,0.516129 +L 4.129032,0.516129,4.387097,1.032258 +L 3.612903,3.612903,3.096774,1.806452 +L 3.096774,1.806452,2.83871,0.774194 +L 2.83871,0.774194,2.83871,0.258065 +L 2.83871,0.258065,3.096774,0 +L 2.83871,1.806452,2.83871,2.580645 +L 2.83871,2.580645,2.580645,3.354839 +L 2.580645,3.354839,2.064516,3.612903 +L 2.064516,3.612903,1.548387,3.612903 +L 1.548387,3.612903,0.774194,3.354839 +L 0.774194,3.354839,0.258065,2.580645 +L 0.258065,2.580645,0,1.806452 +L 0,1.806452,0,1.032258 +L 0,1.032258,0.258065,0.516129 +L 0.258065,0.516129,0.516129,0.258065 +L 0.516129,0.258065,1.032258,0 +L 1.032258,0,1.548387,0 +L 1.548387,0,2.064516,0.258065 +L 2.064516,0.258065,2.580645,1.032258 +L 2.580645,1.032258,2.83871,1.806452 +L 1.548387,3.612903,1.032258,3.354839 +L 1.032258,3.354839,0.516129,2.580645 +L 0.516129,2.580645,0.258065,1.806452 +L 0.258065,1.806452,0.258065,0.774194 +L 0.258065,0.774194,0.516129,0.258065 +L 3.096774,0,2.580645,-0.516129 +L 2.580645,-0.516129,2.322581,-1.032258 +L 2.322581,-1.032258,2.322581,-1.290323 +L 2.322581,-1.290323,2.580645,-1.548387 +L 2.580645,-1.548387,2.83871,-1.290323 +L 2.83871,-1.290323,2.580645,-1.032258 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[#0142] 13 +L 1.548387,5.419355,0.516129,1.806452 +L 0.516129,1.806452,0.258065,0.774194 +L 0.258065,0.774194,0.258065,0.258065 +L 0.258065,0.258065,0.516129,0 +L 0.516129,0,1.290323,0 +L 1.290323,0,1.806452,0.516129 +L 1.806452,0.516129,2.064516,1.032258 +L 1.806452,5.419355,0.774194,1.806452 +L 0.774194,1.806452,0.516129,0.774194 +L 0.516129,0.774194,0.516129,0.258065 +L 0.516129,0.258065,0.774194,0 +L 0.774194,5.419355,1.806452,5.419355 +L 2.064516,3.870968,0,2.322581 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[#015B] 30 +L 3.096774,3.096774,3.096774,2.83871 +L 3.096774,2.83871,3.354839,2.83871 +L 3.354839,2.83871,3.354839,3.096774 +L 3.354839,3.096774,3.096774,3.354839 +L 3.096774,3.354839,2.322581,3.612903 +L 2.322581,3.612903,1.548387,3.612903 +L 1.548387,3.612903,0.774194,3.354839 +L 0.774194,3.354839,0.516129,3.096774 +L 0.516129,3.096774,0.516129,2.580645 +L 0.516129,2.580645,0.774194,2.322581 +L 0.774194,2.322581,2.580645,1.290323 +L 2.580645,1.290323,2.83871,1.032258 +L 0.516129,2.83871,0.774194,2.580645 +L 0.774194,2.580645,2.580645,1.548387 +L 2.580645,1.548387,2.83871,1.290323 +L 2.83871,1.290323,2.83871,0.516129 +L 2.83871,0.516129,2.580645,0.258065 +L 2.580645,0.258065,1.806452,0 +L 1.806452,0,1.032258,0 +L 1.032258,0,0.258065,0.258065 +L 0.258065,0.258065,0,0.516129 +L 0,0.516129,0,0.774194 +L 0,0.774194,0.258065,0.774194 +L 0.258065,0.774194,0.258065,0.516129 +L 2.322581,5.16129,2.064516,5.419355 +L 2.064516,5.419355,2.322581,5.677419 +L 2.322581,5.677419,2.580645,5.419355 +L 2.580645,5.419355,2.580645,5.16129 +L 2.580645,5.16129,2.322581,4.645161 +L 2.322581,4.645161,1.806452,4.129032 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[#017A] 27 +L 3.612903,3.612903,3.354839,3.096774 +L 3.354839,3.096774,2.83871,2.580645 +L 2.83871,2.580645,0.774194,1.032258 +L 0.774194,1.032258,0.258065,0.516129 +L 0.258065,0.516129,0,0 +L 0.258065,2.580645,0.516129,3.096774 +L 0.516129,3.096774,1.032258,3.612903 +L 1.032258,3.612903,1.806452,3.612903 +L 1.806452,3.612903,2.83871,3.096774 +L 0.516129,3.096774,1.032258,3.354839 +L 1.032258,3.354839,1.806452,3.354839 +L 1.806452,3.354839,2.83871,3.096774 +L 2.83871,3.096774,3.354839,3.096774 +L 0.258065,0.516129,0.774194,0.516129 +L 0.774194,0.516129,1.806452,0.258065 +L 1.806452,0.258065,2.580645,0.258065 +L 2.580645,0.258065,3.096774,0.516129 +L 0.774194,0.516129,1.806452,0 +L 1.806452,0,2.580645,0 +L 2.580645,0,3.096774,0.516129 +L 3.096774,0.516129,3.354839,1.032258 +L 2.580645,5.16129,2.322581,5.419355 +L 2.322581,5.419355,2.580645,5.677419 +L 2.580645,5.677419,2.83871,5.419355 +L 2.83871,5.419355,2.83871,5.16129 +L 2.83871,5.16129,2.580645,4.645161 +L 2.580645,4.645161,2.064516,4.129032 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[#017C] 25 +L 3.612903,3.612903,3.354839,3.096774 +L 3.354839,3.096774,2.83871,2.580645 +L 2.83871,2.580645,0.774194,1.032258 +L 0.774194,1.032258,0.258065,0.516129 +L 0.258065,0.516129,0,0 +L 0.258065,2.580645,0.516129,3.096774 +L 0.516129,3.096774,1.032258,3.612903 +L 1.032258,3.612903,1.806452,3.612903 +L 1.806452,3.612903,2.83871,3.096774 +L 0.516129,3.096774,1.032258,3.354839 +L 1.032258,3.354839,1.806452,3.354839 +L 1.806452,3.354839,2.83871,3.096774 +L 2.83871,3.096774,3.354839,3.096774 +L 0.258065,0.516129,0.774194,0.516129 +L 0.774194,0.516129,1.806452,0.258065 +L 1.806452,0.258065,2.580645,0.258065 +L 2.580645,0.258065,3.096774,0.516129 +L 0.774194,0.516129,1.806452,0 +L 1.806452,0,2.580645,0 +L 2.580645,0,3.096774,0.516129 +L 3.096774,0.516129,3.354839,1.032258 +L 2.064516,4.645161,1.806452,4.387097 +L 1.806452,4.387097,2.064516,4.129032 +L 2.064516,4.129032,2.322581,4.387097 +L 2.322581,4.387097,2.064516,4.645161 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[#0106] 36 +L 3.870968,4.903226,4.129032,4.903226 +L 4.129032,4.903226,4.387097,5.419355 +L 4.387097,5.419355,4.129032,3.870968 +L 4.129032,3.870968,4.129032,4.387097 +L 4.129032,4.387097,3.870968,4.903226 +L 3.870968,4.903226,3.612903,5.16129 +L 3.612903,5.16129,3.096774,5.419355 +L 3.096774,5.419355,2.322581,5.419355 +L 2.322581,5.419355,1.548387,5.16129 +L 1.548387,5.16129,1.032258,4.645161 +L 1.032258,4.645161,0.516129,3.870968 +L 0.516129,3.870968,0.258065,3.096774 +L 0.258065,3.096774,0,2.064516 +L 0,2.064516,0,1.290323 +L 0,1.290323,0.258065,0.516129 +L 0.258065,0.516129,0.516129,0.258065 +L 0.516129,0.258065,1.290323,0 +L 1.290323,0,2.064516,0 +L 2.064516,0,2.580645,0.258065 +L 2.580645,0.258065,3.096774,0.774194 +L 3.096774,0.774194,3.354839,1.290323 +L 2.322581,5.419355,1.806452,5.16129 +L 1.806452,5.16129,1.290323,4.645161 +L 1.290323,4.645161,0.774194,3.870968 +L 0.774194,3.870968,0.516129,3.096774 +L 0.516129,3.096774,0.258065,2.064516 +L 0.258065,2.064516,0.258065,1.290323 +L 0.258065,1.290323,0.516129,0.516129 +L 0.516129,0.516129,0.774194,0.258065 +L 0.774194,0.258065,1.290323,0 +L 3.354839,6.967742,3.096774,7.225806 +L 3.096774,7.225806,3.354839,7.483871 +L 3.354839,7.483871,3.612903,7.225806 +L 3.612903,7.225806,3.612903,6.967742 +L 3.612903,6.967742,3.354839,6.451613 +L 3.354839,6.451613,2.83871,5.935484 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[#0118] 16 +L 2.322581,5.419355,0.774194,0 +L 2.580645,5.419355,1.032258,0 +L 3.612903,3.870968,3.096774,1.806452 +L 1.548387,5.419355,5.419355,5.419355 +L 5.419355,5.419355,5.16129,3.870968 +L 5.16129,3.870968,5.16129,5.419355 +L 1.806452,2.83871,3.354839,2.83871 +L 0,0,3.870968,0 +L 3.870968,0,4.387097,1.290323 +L 4.387097,1.290323,3.612903,0 +L 3.096774,0,2.580645,-0.516129 +L 2.580645,-0.516129,2.322581,-1.032258 +L 2.322581,-1.032258,2.322581,-1.290323 +L 2.322581,-1.290323,2.580645,-1.548387 +L 2.580645,-1.548387,2.83871,-1.290323 +L 2.83871,-1.290323,2.580645,-1.032258 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[#0143] 13 +L 2.322581,5.419355,0.774194,0 +L 2.322581,5.419355,4.129032,0.774194 +L 2.322581,4.645161,4.129032,0 +L 5.677419,5.419355,4.129032,0 +L 1.548387,5.419355,2.322581,5.419355 +L 4.903226,5.419355,6.451613,5.419355 +L 0,0,1.548387,0 +L 4.387097,6.967742,4.129032,7.225806 +L 4.129032,7.225806,4.387097,7.483871 +L 4.387097,7.483871,4.645161,7.225806 +L 4.645161,7.225806,4.645161,6.967742 +L 4.645161,6.967742,4.387097,6.451613 +L 4.387097,6.451613,3.870968,5.935484 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[#00D3] 42 +L 2.322581,5.419355,1.548387,5.16129 +L 1.548387,5.16129,1.032258,4.645161 +L 1.032258,4.645161,0.516129,3.870968 +L 0.516129,3.870968,0.258065,3.096774 +L 0.258065,3.096774,0,2.064516 +L 0,2.064516,0,1.290323 +L 0,1.290323,0.258065,0.516129 +L 0.258065,0.516129,0.516129,0.258065 +L 0.516129,0.258065,1.032258,0 +L 1.032258,0,1.806452,0 +L 1.806452,0,2.580645,0.258065 +L 2.580645,0.258065,3.096774,0.774194 +L 3.096774,0.774194,3.612903,1.548387 +L 3.612903,1.548387,3.870968,2.322581 +L 3.870968,2.322581,4.129032,3.354839 +L 4.129032,3.354839,4.129032,4.129032 +L 4.129032,4.129032,3.870968,4.903226 +L 3.870968,4.903226,3.612903,5.16129 +L 3.612903,5.16129,3.096774,5.419355 +L 3.096774,5.419355,2.322581,5.419355 +L 2.322581,5.419355,1.806452,5.16129 +L 1.806452,5.16129,1.290323,4.645161 +L 1.290323,4.645161,0.774194,3.870968 +L 0.774194,3.870968,0.516129,3.096774 +L 0.516129,3.096774,0.258065,2.064516 +L 0.258065,2.064516,0.258065,1.290323 +L 0.258065,1.290323,0.516129,0.516129 +L 0.516129,0.516129,1.032258,0 +L 1.806452,0,2.322581,0.258065 +L 2.322581,0.258065,2.83871,0.774194 +L 2.83871,0.774194,3.354839,1.548387 +L 3.354839,1.548387,3.612903,2.322581 +L 3.612903,2.322581,3.870968,3.354839 +L 3.870968,3.354839,3.870968,4.129032 +L 3.870968,4.129032,3.612903,4.903226 +L 3.612903,4.903226,3.096774,5.419355 +L 3.354839,6.967742,3.096774,7.225806 +L 3.096774,7.225806,3.354839,7.483871 +L 3.354839,7.483871,3.612903,7.225806 +L 3.612903,7.225806,3.612903,6.967742 +L 3.612903,6.967742,3.354839,6.451613 +L 3.354839,6.451613,2.83871,5.935484 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[#0107] 27 +L 2.83871,2.83871,2.83871,2.580645 +L 2.83871,2.580645,3.096774,2.580645 +L 3.096774,2.580645,3.096774,2.83871 +L 3.096774,2.83871,2.83871,3.354839 +L 2.83871,3.354839,2.322581,3.612903 +L 2.322581,3.612903,1.548387,3.612903 +L 1.548387,3.612903,0.774194,3.354839 +L 0.774194,3.354839,0.258065,2.580645 +L 0.258065,2.580645,0,1.806452 +L 0,1.806452,0,1.032258 +L 0,1.032258,0.258065,0.516129 +L 0.258065,0.516129,0.516129,0.258065 +L 0.516129,0.258065,1.032258,0 +L 1.032258,0,1.548387,0 +L 1.548387,0,2.322581,0.258065 +L 2.322581,0.258065,2.83871,1.032258 +L 1.548387,3.612903,1.032258,3.354839 +L 1.032258,3.354839,0.516129,2.580645 +L 0.516129,2.580645,0.258065,1.806452 +L 0.258065,1.806452,0.258065,0.774194 +L 0.258065,0.774194,0.516129,0.258065 +L 2.322581,5.16129,2.064516,5.419355 +L 2.064516,5.419355,2.322581,5.677419 +L 2.322581,5.677419,2.580645,5.419355 +L 2.580645,5.419355,2.580645,5.16129 +L 2.580645,5.16129,2.322581,4.645161 +L 2.322581,4.645161,1.806452,4.129032 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[#0119] 28 +L 0.258065,1.290323,1.290323,1.548387 +L 1.290323,1.548387,2.064516,1.806452 +L 2.064516,1.806452,2.83871,2.322581 +L 2.83871,2.322581,3.096774,2.83871 +L 3.096774,2.83871,2.83871,3.354839 +L 2.83871,3.354839,2.322581,3.612903 +L 2.322581,3.612903,1.548387,3.612903 +L 1.548387,3.612903,0.774194,3.354839 +L 0.774194,3.354839,0.258065,2.580645 +L 0.258065,2.580645,0,1.806452 +L 0,1.806452,0,1.032258 +L 0,1.032258,0.258065,0.516129 +L 0.258065,0.516129,0.516129,0.258065 +L 0.516129,0.258065,1.032258,0 +L 1.032258,0,1.548387,0 +L 1.548387,0,2.322581,0.258065 +L 2.322581,0.258065,2.83871,0.774194 +L 1.548387,3.612903,1.032258,3.354839 +L 1.032258,3.354839,0.516129,2.580645 +L 0.516129,2.580645,0.258065,1.806452 +L 0.258065,1.806452,0.258065,0.774194 +L 0.258065,0.774194,0.516129,0.258065 +L 1.548387,0,1.032258,-0.516129 +L 1.032258,-0.516129,0.774194,-1.032258 +L 0.774194,-1.032258,0.774194,-1.290323 +L 0.774194,-1.290323,1.032258,-1.548387 +L 1.032258,-1.548387,1.290323,-1.290323 +L 1.290323,-1.290323,1.032258,-1.032258 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[#0144] 35 +L 0,2.580645,0.258065,3.096774 +L 0.258065,3.096774,0.774194,3.612903 +L 0.774194,3.612903,1.548387,3.612903 +L 1.548387,3.612903,1.806452,3.354839 +L 1.806452,3.354839,1.806452,2.83871 +L 1.806452,2.83871,1.548387,1.806452 +L 1.548387,1.806452,1.032258,0 +L 1.290323,3.612903,1.548387,3.354839 +L 1.548387,3.354839,1.548387,2.83871 +L 1.548387,2.83871,1.290323,1.806452 +L 1.290323,1.806452,0.774194,0 +L 1.548387,1.806452,2.064516,2.83871 +L 2.064516,2.83871,2.580645,3.354839 +L 2.580645,3.354839,3.096774,3.612903 +L 3.096774,3.612903,3.612903,3.612903 +L 3.612903,3.612903,4.129032,3.354839 +L 4.129032,3.354839,4.387097,3.096774 +L 4.387097,3.096774,4.387097,2.580645 +L 4.387097,2.580645,3.870968,1.032258 +L 3.870968,1.032258,3.870968,0.258065 +L 3.870968,0.258065,4.129032,0 +L 3.612903,3.612903,4.129032,3.096774 +L 4.129032,3.096774,4.129032,2.580645 +L 4.129032,2.580645,3.612903,1.032258 +L 3.612903,1.032258,3.612903,0.258065 +L 3.612903,0.258065,3.870968,0 +L 3.870968,0,4.645161,0 +L 4.645161,0,5.16129,0.516129 +L 5.16129,0.516129,5.419355,1.032258 +L 3.870968,5.16129,3.612903,5.419355 +L 3.612903,5.419355,3.870968,5.677419 +L 3.870968,5.677419,4.129032,5.419355 +L 4.129032,5.419355,4.129032,5.16129 +L 4.129032,5.16129,3.870968,4.645161 +L 3.870968,4.645161,3.354839,4.129032 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[#00F3] 32 +L 1.548387,3.612903,0.774194,3.354839 +L 0.774194,3.354839,0.258065,2.580645 +L 0.258065,2.580645,0,1.806452 +L 0,1.806452,0,1.032258 +L 0,1.032258,0.258065,0.516129 +L 0.258065,0.516129,0.516129,0.258065 +L 0.516129,0.258065,1.032258,0 +L 1.032258,0,1.548387,0 +L 1.548387,0,2.322581,0.258065 +L 2.322581,0.258065,2.83871,1.032258 +L 2.83871,1.032258,3.096774,1.806452 +L 3.096774,1.806452,3.096774,2.580645 +L 3.096774,2.580645,2.83871,3.096774 +L 2.83871,3.096774,2.580645,3.354839 +L 2.580645,3.354839,2.064516,3.612903 +L 2.064516,3.612903,1.548387,3.612903 +L 1.548387,3.612903,1.032258,3.354839 +L 1.032258,3.354839,0.516129,2.580645 +L 0.516129,2.580645,0.258065,1.806452 +L 0.258065,1.806452,0.258065,0.774194 +L 0.258065,0.774194,0.516129,0.258065 +L 1.548387,0,2.064516,0.258065 +L 2.064516,0.258065,2.580645,1.032258 +L 2.580645,1.032258,2.83871,1.806452 +L 2.83871,1.806452,2.83871,2.83871 +L 2.83871,2.83871,2.580645,3.354839 +L 2.322581,5.16129,2.064516,5.419355 +L 2.064516,5.419355,2.322581,5.677419 +L 2.322581,5.677419,2.580645,5.419355 +L 2.580645,5.419355,2.580645,5.16129 +L 2.580645,5.16129,2.322581,4.645161 +L 2.322581,4.645161,1.806452,4.129032 + +#EOF diff --git a/pycam/share/fonts/italiccs.cxf b/pycam/share/fonts/italiccs.cxf new file mode 100644 index 00000000..f5436764 --- /dev/null +++ b/pycam/share/fonts/italiccs.cxf @@ -0,0 +1,2612 @@ +# Format: QCad II Font +# Creator: Adam Radlowski's "dodajf" program - GRASS font translator +# Version: 1.0.0 +# Name: Italian Complex Small +# LetterSpacing: 3.0 +# WordSpacing: 6.75 +# LineSpacingFactor: 1.0 +# Author: Hershey fonts +# Author: Adam Radlowski (Polish) + +[!] 9 +L 0.363636,4.727273,0,4.363636 +L 0,4.363636,0.363636,1.818182 +L 0.363636,1.818182,0.727273,4.363636 +L 0.727273,4.363636,0.363636,4.727273 +L 0.363636,4.363636,0.363636,3.272727 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +["] 10 +L 0.363636,3.272727,0,2.909091 +L 0,2.909091,0.363636,2.545455 +L 0.363636,2.545455,0.727273,2.909091 +L 0.727273,2.909091,0.363636,3.272727 +L 0.727273,0.363636,0.363636,0 +L 0.363636,0,0,0.363636 +L 0,0.363636,0.363636,0.727273 +L 0.363636,0.727273,0.727273,0.363636 +L 0.727273,0.363636,0.727273,-0.363636 +L 0.727273,-0.363636,0,-1.090909 + +[#] 4 +L 1.818182,4.727273,0.363636,-1.454545 +L 3.272727,4.727273,1.818182,-1.454545 +L 0.363636,2.545455,3.636364,2.545455 +L 0,0.727273,3.272727,0.727273 + +[$] 26 +L 1.090909,5.818182,1.090909,-1.454545 +L 2.181818,5.818182,2.181818,-1.454545 +L 3.272727,4.363636,2.909091,4.363636 +L 2.909091,4.363636,2.909091,4 +L 2.909091,4,3.272727,4 +L 3.272727,4,3.272727,4.363636 +L 3.272727,4.363636,2.545455,4.727273 +L 2.545455,4.727273,0.727273,4.727273 +L 0.727273,4.727273,0,4.363636 +L 0,4.363636,0,3.636364 +L 0,3.636364,0.363636,2.909091 +L 0.363636,2.909091,2.909091,1.818182 +L 2.909091,1.818182,3.272727,1.454545 +L 0,3.636364,0.363636,3.272727 +L 0.363636,3.272727,2.909091,2.181818 +L 2.909091,2.181818,3.272727,1.454545 +L 3.272727,1.454545,3.272727,0.727273 +L 3.272727,0.727273,2.909091,0.363636 +L 2.909091,0.363636,2.181818,0 +L 2.181818,0,1.090909,0 +L 1.090909,0,0.363636,0.363636 +L 0.363636,0.363636,0,0.727273 +L 0,0.727273,0,1.090909 +L 0,1.090909,0.363636,1.090909 +L 0.363636,1.090909,0.363636,0.727273 +L 0.363636,0.727273,0,0.727273 + +[%] 20 +L 4.363636,4.727273,0,0 +L 1.090909,4.727273,1.454545,4.363636 +L 1.454545,4.363636,1.454545,3.636364 +L 1.454545,3.636364,1.090909,3.272727 +L 1.090909,3.272727,0.363636,3.272727 +L 0.363636,3.272727,0,3.636364 +L 0,3.636364,0,4.363636 +L 0,4.363636,0.363636,4.727273 +L 0.363636,4.727273,1.090909,4.727273 +L 1.090909,4.727273,2.545455,4.363636 +L 2.545455,4.363636,3.636364,4.363636 +L 3.636364,4.363636,4.363636,4.727273 +L 3.272727,1.454545,2.909091,1.090909 +L 2.909091,1.090909,2.909091,0.363636 +L 2.909091,0.363636,3.272727,0 +L 3.272727,0,4,0 +L 4,0,4.363636,0.363636 +L 4.363636,0.363636,4.363636,1.090909 +L 4.363636,1.090909,4,1.454545 +L 4,1.454545,3.272727,1.454545 + +[&] 35 +L 4.727273,2.909091,4.363636,2.909091 +L 4.363636,2.909091,4.363636,2.545455 +L 4.363636,2.545455,4.727273,2.545455 +L 4.727273,2.545455,4.727273,2.909091 +L 4.727273,2.909091,4.363636,3.272727 +L 4.363636,3.272727,4,3.272727 +L 4,3.272727,3.636364,2.909091 +L 3.636364,2.909091,3.272727,1.454545 +L 3.272727,1.454545,2.909091,0.727273 +L 2.909091,0.727273,2.545455,0.363636 +L 2.545455,0.363636,1.818182,0 +L 1.818182,0,1.090909,0 +L 1.090909,0,0.363636,0.363636 +L 0.363636,0.363636,0,0.727273 +L 0,0.727273,0,1.454545 +L 0,1.454545,0.363636,1.818182 +L 0.363636,1.818182,1.090909,2.181818 +L 1.090909,2.181818,2.181818,2.909091 +L 2.181818,2.909091,2.545455,3.636364 +L 2.545455,3.636364,2.545455,4.363636 +L 2.545455,4.363636,2.181818,4.727273 +L 2.181818,4.727273,1.454545,4.727273 +L 1.454545,4.727273,1.090909,4.363636 +L 1.090909,4.363636,1.090909,3.636364 +L 1.090909,3.636364,1.454545,2.545455 +L 1.454545,2.545455,3.272727,0.363636 +L 3.272727,0.363636,4,0 +L 4,0,4.363636,0 +L 4.363636,0,4.727273,0.363636 +L 1.090909,0,0.363636,0.727273 +L 0.363636,0.727273,0.363636,1.454545 +L 0.363636,1.454545,1.090909,2.181818 +L 1.090909,3.636364,1.454545,2.909091 +L 1.454545,2.909091,3.636364,0.363636 +L 3.636364,0.363636,4,0 + +['] 6 +L 0.727273,4.363636,0.363636,4 +L 0.363636,4,0,4.363636 +L 0,4.363636,0.363636,4.727273 +L 0.363636,4.727273,0.727273,4.363636 +L 0.727273,4.363636,0.727273,3.636364 +L 0.727273,3.636364,0,2.909091 + +[(] 12 +L 1.818182,5.818182,1.090909,5.090909 +L 1.090909,5.090909,0.363636,4 +L 0.363636,4,0,2.909091 +L 0,2.909091,0,1.454545 +L 0,1.454545,0.363636,0.363636 +L 0.363636,0.363636,1.090909,-0.727273 +L 1.090909,-0.727273,1.818182,-1.454545 +L 1.090909,5.090909,0.727273,4.363636 +L 0.727273,4.363636,0.363636,2.909091 +L 0.363636,2.909091,0.363636,1.454545 +L 0.363636,1.454545,0.727273,0 +L 0.727273,0,1.090909,-0.727273 + +[)] 12 +L 0,5.818182,0.727273,5.090909 +L 0.727273,5.090909,1.454545,4 +L 1.454545,4,1.818182,2.909091 +L 1.818182,2.909091,1.818182,1.454545 +L 1.818182,1.454545,1.454545,0.363636 +L 1.454545,0.363636,0.727273,-0.727273 +L 0.727273,-0.727273,0,-1.454545 +L 0.727273,5.090909,1.090909,4.363636 +L 1.090909,4.363636,1.454545,2.909091 +L 1.454545,2.909091,1.454545,1.454545 +L 1.454545,1.454545,1.090909,0 +L 1.090909,0,0.727273,-0.727273 + +[*] 3 +L 1.090909,5.090909,1.090909,2.909091 +L 0,4.727273,2.181818,3.272727 +L 2.181818,4.727273,0,3.272727 + +[+] 2 +L 2.181818,4.363636,2.181818,0 +L 0,2.181818,4.363636,2.181818 + +[,] 6 +L 0.727273,0.363636,0.363636,0 +L 0.363636,0,0,0.363636 +L 0,0.363636,0.363636,0.727273 +L 0.363636,0.727273,0.727273,0.363636 +L 0.727273,0.363636,0.727273,-0.363636 +L 0.727273,-0.363636,0,-1.090909 + +[-] 1 +L 0,2.181818,4.363636,2.181818 + +[.] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[/] 1 +L 0,-2.181818,2.181818,6.545455 + +[0] 22 +L 1.090909,4.727273,0.363636,4.363636 +L 0.363636,4.363636,0,3.272727 +L 0,3.272727,0,1.454545 +L 0,1.454545,0.363636,0.363636 +L 0.363636,0.363636,1.090909,0 +L 1.090909,0,2.181818,0 +L 2.181818,0,2.909091,0.363636 +L 2.909091,0.363636,3.272727,1.454545 +L 3.272727,1.454545,3.272727,3.272727 +L 3.272727,3.272727,2.909091,4.363636 +L 2.909091,4.363636,2.181818,4.727273 +L 2.181818,4.727273,1.090909,4.727273 +L 1.090909,4.727273,0.727273,4.363636 +L 0.727273,4.363636,0.363636,3.272727 +L 0.363636,3.272727,0.363636,1.454545 +L 0.363636,1.454545,0.727273,0.363636 +L 0.727273,0.363636,1.090909,0 +L 2.181818,0,2.545455,0.363636 +L 2.545455,0.363636,2.909091,1.454545 +L 2.909091,1.454545,2.909091,3.272727 +L 2.909091,3.272727,2.545455,4.363636 +L 2.545455,4.363636,2.181818,4.727273 + +[1] 4 +L 0.363636,3.636364,1.454545,4.727273 +L 1.454545,4.727273,1.454545,0 +L 1.090909,4.363636,1.090909,0 +L 0,0,2.545455,0 + +[2] 27 +L 0.363636,4,0.363636,3.636364 +L 0.363636,3.636364,0,3.636364 +L 0,3.636364,0,4 +L 0,4,0.363636,4.363636 +L 0.363636,4.363636,1.090909,4.727273 +L 1.090909,4.727273,2.181818,4.727273 +L 2.181818,4.727273,2.909091,4.363636 +L 2.909091,4.363636,3.272727,3.636364 +L 3.272727,3.636364,2.909091,2.909091 +L 2.909091,2.909091,2.181818,2.545455 +L 2.181818,2.545455,1.090909,2.181818 +L 1.090909,2.181818,0.363636,1.818182 +L 0.363636,1.818182,0,1.090909 +L 0,1.090909,0,0 +L 2.181818,4.727273,2.545455,4.363636 +L 2.545455,4.363636,2.909091,3.636364 +L 2.909091,3.636364,2.545455,2.909091 +L 2.545455,2.909091,2.181818,2.545455 +L 0,0.363636,0.363636,0.727273 +L 0.363636,0.727273,0.727273,0.727273 +L 0.727273,0.727273,1.818182,0.363636 +L 1.818182,0.363636,2.909091,0.363636 +L 2.909091,0.363636,3.272727,0.727273 +L 0.727273,0.727273,1.818182,0 +L 1.818182,0,2.909091,0 +L 2.909091,0,3.272727,0.727273 +L 3.272727,0.727273,3.272727,1.090909 + +[3] 31 +L 0.363636,4,0.363636,3.636364 +L 0.363636,3.636364,0,3.636364 +L 0,3.636364,0,4 +L 0,4,0.363636,4.363636 +L 0.363636,4.363636,1.090909,4.727273 +L 1.090909,4.727273,2.181818,4.727273 +L 2.181818,4.727273,2.909091,4.363636 +L 2.909091,4.363636,3.272727,3.636364 +L 3.272727,3.636364,2.909091,2.909091 +L 2.909091,2.909091,2.181818,2.545455 +L 2.181818,4.727273,2.545455,4.363636 +L 2.545455,4.363636,2.909091,3.636364 +L 2.909091,3.636364,2.545455,2.909091 +L 2.545455,2.909091,2.181818,2.545455 +L 1.454545,2.545455,2.181818,2.545455 +L 2.181818,2.545455,2.909091,2.181818 +L 2.909091,2.181818,3.272727,1.454545 +L 3.272727,1.454545,3.272727,1.090909 +L 3.272727,1.090909,2.909091,0.363636 +L 2.909091,0.363636,2.181818,0 +L 2.181818,0,1.090909,0 +L 1.090909,0,0.363636,0.363636 +L 0.363636,0.363636,0,0.727273 +L 0,0.727273,0,1.090909 +L 0,1.090909,0.363636,1.090909 +L 0.363636,1.090909,0.363636,0.727273 +L 2.181818,2.545455,2.545455,2.181818 +L 2.545455,2.181818,2.909091,1.454545 +L 2.909091,1.454545,2.909091,1.090909 +L 2.909091,1.090909,2.545455,0.363636 +L 2.545455,0.363636,2.181818,0 + +[4] 5 +L 2.181818,4,2.181818,0 +L 2.545455,4.727273,2.545455,0 +L 2.545455,4.727273,0,1.454545 +L 0,1.454545,4,1.454545 +L 1.454545,0,3.272727,0 + +[5] 23 +L 0.363636,4.727273,0,2.545455 +L 0.363636,4.727273,2.909091,4.727273 +L 0.363636,4.363636,1.818182,4.363636 +L 1.818182,4.363636,2.909091,4.727273 +L 0,2.545455,0.363636,2.909091 +L 0.363636,2.909091,1.090909,3.272727 +L 1.090909,3.272727,2.181818,3.272727 +L 2.181818,3.272727,2.909091,2.909091 +L 2.909091,2.909091,3.272727,2.181818 +L 3.272727,2.181818,3.272727,1.090909 +L 3.272727,1.090909,2.909091,0.363636 +L 2.909091,0.363636,2.181818,0 +L 2.181818,0,1.090909,0 +L 1.090909,0,0.363636,0.363636 +L 0.363636,0.363636,0,0.727273 +L 0,0.727273,0,1.090909 +L 0,1.090909,0.363636,1.090909 +L 0.363636,1.090909,0.363636,0.727273 +L 2.181818,3.272727,2.545455,2.909091 +L 2.545455,2.909091,2.909091,2.181818 +L 2.909091,2.181818,2.909091,1.090909 +L 2.909091,1.090909,2.545455,0.363636 +L 2.545455,0.363636,2.181818,0 + +[6] 30 +L 2.909091,4,2.909091,3.636364 +L 2.909091,3.636364,3.272727,3.636364 +L 3.272727,3.636364,3.272727,4 +L 3.272727,4,2.909091,4.363636 +L 2.909091,4.363636,2.181818,4.727273 +L 2.181818,4.727273,1.454545,4.727273 +L 1.454545,4.727273,0.727273,4.363636 +L 0.727273,4.363636,0.363636,4 +L 0.363636,4,0,2.909091 +L 0,2.909091,0,1.090909 +L 0,1.090909,0.363636,0.363636 +L 0.363636,0.363636,1.090909,0 +L 1.090909,0,2.181818,0 +L 2.181818,0,2.909091,0.363636 +L 2.909091,0.363636,3.272727,1.090909 +L 3.272727,1.090909,3.272727,1.818182 +L 3.272727,1.818182,2.909091,2.545455 +L 2.909091,2.545455,2.181818,2.909091 +L 2.181818,2.909091,1.090909,2.909091 +L 1.090909,2.909091,0,2.181818 +L 1.454545,4.727273,0.727273,4 +L 0.727273,4,0.363636,2.909091 +L 0.363636,2.909091,0.363636,1.090909 +L 0.363636,1.090909,0.727273,0.363636 +L 0.727273,0.363636,1.090909,0 +L 2.181818,0,2.545455,0.363636 +L 2.545455,0.363636,2.909091,1.090909 +L 2.909091,1.090909,2.909091,1.818182 +L 2.909091,1.818182,2.545455,2.545455 +L 2.545455,2.545455,2.181818,2.909091 + +[7] 12 +L 0,4.727273,0,3.272727 +L 2.909091,4,1.454545,1.454545 +L 1.454545,1.454545,0.727273,0 +L 3.272727,4.727273,2.181818,2.545455 +L 2.181818,2.545455,1.090909,0 +L 0,4,0.727273,4.727273 +L 0.727273,4.727273,1.454545,4.727273 +L 1.454545,4.727273,2.545455,4 +L 0,4,0.727273,4.363636 +L 0.727273,4.363636,1.454545,4.363636 +L 1.454545,4.363636,2.545455,4 +L 2.545455,4,2.909091,4 + +[8] 39 +L 1.090909,4.727273,0.363636,4.363636 +L 0.363636,4.363636,0,3.636364 +L 0,3.636364,0.363636,2.909091 +L 0.363636,2.909091,1.090909,2.545455 +L 1.090909,2.545455,2.181818,2.545455 +L 2.181818,2.545455,2.909091,2.909091 +L 2.909091,2.909091,3.272727,3.636364 +L 3.272727,3.636364,2.909091,4.363636 +L 2.909091,4.363636,2.181818,4.727273 +L 2.181818,4.727273,1.090909,4.727273 +L 1.090909,4.727273,0.727273,4.363636 +L 0.727273,4.363636,0.363636,3.636364 +L 0.363636,3.636364,0.727273,2.909091 +L 0.727273,2.909091,1.090909,2.545455 +L 2.181818,2.545455,2.545455,2.909091 +L 2.545455,2.909091,2.909091,3.636364 +L 2.909091,3.636364,2.545455,4.363636 +L 2.545455,4.363636,2.181818,4.727273 +L 1.090909,2.545455,0.363636,2.181818 +L 0.363636,2.181818,0,1.454545 +L 0,1.454545,0,1.090909 +L 0,1.090909,0.363636,0.363636 +L 0.363636,0.363636,1.090909,0 +L 1.090909,0,2.181818,0 +L 2.181818,0,2.909091,0.363636 +L 2.909091,0.363636,3.272727,1.090909 +L 3.272727,1.090909,3.272727,1.454545 +L 3.272727,1.454545,2.909091,2.181818 +L 2.909091,2.181818,2.181818,2.545455 +L 1.090909,2.545455,0.727273,2.181818 +L 0.727273,2.181818,0.363636,1.454545 +L 0.363636,1.454545,0.363636,1.090909 +L 0.363636,1.090909,0.727273,0.363636 +L 0.727273,0.363636,1.090909,0 +L 2.181818,0,2.545455,0.363636 +L 2.545455,0.363636,2.909091,1.090909 +L 2.909091,1.090909,2.909091,1.454545 +L 2.909091,1.454545,2.545455,2.181818 +L 2.545455,2.181818,2.181818,2.545455 + +[9] 30 +L 0.363636,0.727273,0.363636,1.090909 +L 0.363636,1.090909,0,1.090909 +L 0,1.090909,0,0.727273 +L 0,0.727273,0.363636,0.363636 +L 0.363636,0.363636,1.090909,0 +L 1.090909,0,1.818182,0 +L 1.818182,0,2.545455,0.363636 +L 2.545455,0.363636,2.909091,0.727273 +L 2.909091,0.727273,3.272727,1.818182 +L 3.272727,1.818182,3.272727,3.636364 +L 3.272727,3.636364,2.909091,4.363636 +L 2.909091,4.363636,2.181818,4.727273 +L 2.181818,4.727273,1.090909,4.727273 +L 1.090909,4.727273,0.363636,4.363636 +L 0.363636,4.363636,0,3.636364 +L 0,3.636364,0,2.909091 +L 0,2.909091,0.363636,2.181818 +L 0.363636,2.181818,1.090909,1.818182 +L 1.090909,1.818182,2.181818,1.818182 +L 2.181818,1.818182,3.272727,2.545455 +L 1.818182,0,2.545455,0.727273 +L 2.545455,0.727273,2.909091,1.818182 +L 2.909091,1.818182,2.909091,3.636364 +L 2.909091,3.636364,2.545455,4.363636 +L 2.545455,4.363636,2.181818,4.727273 +L 1.090909,4.727273,0.727273,4.363636 +L 0.727273,4.363636,0.363636,3.636364 +L 0.363636,3.636364,0.363636,2.909091 +L 0.363636,2.909091,0.727273,2.181818 +L 0.727273,2.181818,1.090909,1.818182 + +[:] 8 +L 0.363636,3.272727,0,2.909091 +L 0,2.909091,0.363636,2.545455 +L 0.363636,2.545455,0.727273,2.909091 +L 0.727273,2.909091,0.363636,3.272727 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[;] 10 +L 0.363636,3.272727,0,2.909091 +L 0,2.909091,0.363636,2.545455 +L 0.363636,2.545455,0.727273,2.909091 +L 0.727273,2.909091,0.363636,3.272727 +L 0.727273,0.363636,0.363636,0 +L 0.363636,0,0,0.363636 +L 0,0.363636,0.363636,0.727273 +L 0.363636,0.727273,0.727273,0.363636 +L 0.727273,0.363636,0.727273,-0.363636 +L 0.727273,-0.363636,0,-1.090909 + +[<] 2 +L 3.636364,4.363636,0,2.181818 +L 0,2.181818,3.636364,0 + +[=] 2 +L 0,2.909091,4.363636,2.909091 +L 0,1.454545,4.363636,1.454545 + +[>] 2 +L 0,4.363636,3.636364,2.181818 +L 3.636364,2.181818,0,0 + +[?] 23 +L 0,3.636364,0.363636,3.636364 +L 0.363636,3.636364,0.363636,3.272727 +L 0.363636,3.272727,0,3.272727 +L 0,3.272727,0,3.636364 +L 0,3.636364,0.363636,4.363636 +L 0.363636,4.363636,1.090909,4.727273 +L 1.090909,4.727273,2.181818,4.727273 +L 2.181818,4.727273,2.909091,4.363636 +L 2.909091,4.363636,3.272727,3.636364 +L 3.272727,3.636364,3.272727,3.272727 +L 3.272727,3.272727,2.909091,2.545455 +L 2.909091,2.545455,1.818182,2.181818 +L 1.818182,2.181818,1.454545,1.818182 +L 1.454545,1.818182,1.454545,1.454545 +L 1.454545,1.454545,1.818182,1.454545 +L 2.181818,4.727273,2.909091,4 +L 2.909091,4,2.909091,2.909091 +L 2.909091,2.909091,2.545455,2.545455 +L 2.545455,2.545455,1.818182,2.181818 +L 1.454545,0.363636,1.454545,0 +L 1.454545,0,1.818182,0 +L 1.818182,0,1.818182,0.363636 +L 1.818182,0.363636,1.454545,0.363636 + +[@] 25 +L 3.272727,2.909091,2.545455,3.272727 +L 2.545455,3.272727,1.818182,3.272727 +L 1.818182,3.272727,1.454545,2.545455 +L 1.454545,2.545455,1.454545,2.181818 +L 1.454545,2.181818,1.818182,1.454545 +L 1.818182,1.454545,2.545455,1.454545 +L 2.545455,1.454545,3.272727,1.818182 +L 3.272727,3.272727,3.272727,1.818182 +L 3.272727,1.818182,3.636364,1.454545 +L 3.636364,1.454545,4.363636,1.454545 +L 4.363636,1.454545,4.727273,2.181818 +L 4.727273,2.181818,4.727273,2.545455 +L 4.727273,2.545455,4.363636,3.636364 +L 4.363636,3.636364,3.636364,4.363636 +L 3.636364,4.363636,2.545455,4.727273 +L 2.545455,4.727273,2.181818,4.727273 +L 2.181818,4.727273,1.090909,4.363636 +L 1.090909,4.363636,0.363636,3.636364 +L 0.363636,3.636364,0,2.545455 +L 0,2.545455,0,2.181818 +L 0,2.181818,0.363636,1.090909 +L 0.363636,1.090909,1.090909,0.363636 +L 1.090909,0.363636,2.181818,0 +L 2.181818,0,2.545455,0 +L 2.545455,0,3.636364,0.363636 + +[A] 6 +L 4,4.727273,0.727273,0 +L 3.636364,4,4,0 +L 4,4.727273,4.363636,0 +L 1.818182,1.454545,4,1.454545 +L 0,0,1.818182,0 +L 3.272727,0,5.090909,0 + +[B] 22 +L 2.181818,4.727273,0.727273,0 +L 2.545455,4.727273,1.090909,0 +L 1.454545,4.727273,4,4.727273 +L 4,4.727273,4.727273,4.363636 +L 4.727273,4.363636,4.727273,3.636364 +L 4.727273,3.636364,4.363636,2.909091 +L 4.363636,2.909091,3.272727,2.545455 +L 4,4.727273,4.363636,4.363636 +L 4.363636,4.363636,4.363636,3.636364 +L 4.363636,3.636364,4,2.909091 +L 4,2.909091,3.272727,2.545455 +L 1.818182,2.545455,2.909091,2.545455 +L 2.909091,2.545455,3.636364,2.181818 +L 3.636364,2.181818,4,1.818182 +L 4,1.818182,4,1.090909 +L 4,1.090909,3.636364,0.363636 +L 3.636364,0.363636,2.545455,0 +L 2.545455,0,0,0 +L 2.909091,2.545455,3.636364,1.818182 +L 3.636364,1.818182,3.636364,1.090909 +L 3.636364,1.090909,3.272727,0.363636 +L 3.272727,0.363636,2.545455,0 + +[C] 21 +L 3.272727,4.363636,3.636364,4.363636 +L 3.636364,4.363636,4,4.727273 +L 4,4.727273,3.636364,3.636364 +L 3.636364,3.636364,3.272727,4.363636 +L 3.272727,4.363636,2.545455,4.727273 +L 2.545455,4.727273,1.818182,4.727273 +L 1.818182,4.727273,1.090909,4.363636 +L 1.090909,4.363636,0.727273,4 +L 0.727273,4,0.363636,3.272727 +L 0.363636,3.272727,0,2.181818 +L 0,2.181818,0,1.090909 +L 0,1.090909,0.363636,0.363636 +L 0.363636,0.363636,1.090909,0 +L 1.090909,0,1.818182,0 +L 1.818182,0,2.545455,0.363636 +L 2.545455,0.363636,2.909091,1.090909 +L 1.818182,4.727273,1.090909,4 +L 1.090909,4,0.727273,3.272727 +L 0.727273,3.272727,0.363636,2.181818 +L 0.363636,2.181818,0.363636,0.727273 +L 0.363636,0.727273,1.090909,0 + +[D] 18 +L 2.181818,4.727273,0.727273,0 +L 2.545455,4.727273,1.090909,0 +L 1.454545,4.727273,3.636364,4.727273 +L 3.636364,4.727273,4.363636,4.363636 +L 4.363636,4.363636,4.727273,3.636364 +L 4.727273,3.636364,4.727273,2.545455 +L 4.727273,2.545455,4.363636,1.454545 +L 4.363636,1.454545,4,0.727273 +L 4,0.727273,3.636364,0.363636 +L 3.636364,0.363636,2.545455,0 +L 2.545455,0,0,0 +L 3.636364,4.727273,4,4.363636 +L 4,4.363636,4.363636,3.636364 +L 4.363636,3.636364,4.363636,2.545455 +L 4.363636,2.545455,4,1.454545 +L 4,1.454545,3.636364,0.727273 +L 3.636364,0.727273,3.272727,0.363636 +L 3.272727,0.363636,2.545455,0 + +[E] 10 +L 2.181818,4.727273,0.727273,0 +L 2.545455,4.727273,1.090909,0 +L 3.272727,3.272727,2.909091,1.818182 +L 1.454545,4.727273,5.090909,4.727273 +L 5.090909,4.727273,4.727273,3.636364 +L 4.727273,3.636364,4.727273,4.727273 +L 1.818182,2.545455,2.909091,2.545455 +L 0,0,3.636364,0 +L 3.636364,0,4,1.090909 +L 4,1.090909,3.272727,0 + +[F] 8 +L 2.181818,4.727273,0.727273,0 +L 2.545455,4.727273,1.090909,0 +L 3.272727,3.272727,2.909091,1.818182 +L 1.454545,4.727273,5.090909,4.727273 +L 5.090909,4.727273,4.727273,3.636364 +L 4.727273,3.636364,4.727273,4.727273 +L 1.818182,2.545455,2.909091,2.545455 +L 0,0,1.818182,0 + +[G] 25 +L 3.272727,4.363636,3.636364,4.363636 +L 3.636364,4.363636,4,4.727273 +L 4,4.727273,3.636364,3.636364 +L 3.636364,3.636364,3.272727,4.363636 +L 3.272727,4.363636,2.545455,4.727273 +L 2.545455,4.727273,1.818182,4.727273 +L 1.818182,4.727273,1.090909,4.363636 +L 1.090909,4.363636,0.727273,4 +L 0.727273,4,0.363636,3.272727 +L 0.363636,3.272727,0,2.181818 +L 0,2.181818,0,1.090909 +L 0,1.090909,0.363636,0.363636 +L 0.363636,0.363636,1.090909,0 +L 1.090909,0,1.818182,0 +L 1.818182,0,2.545455,0.363636 +L 2.545455,0.363636,2.909091,0.727273 +L 2.909091,0.727273,3.272727,1.818182 +L 1.818182,4.727273,1.090909,4 +L 1.090909,4,0.727273,3.272727 +L 0.727273,3.272727,0.363636,2.181818 +L 0.363636,2.181818,0.363636,0.727273 +L 0.363636,0.727273,1.090909,0 +L 1.818182,0,2.545455,0.727273 +L 2.545455,0.727273,2.909091,1.818182 +L 2.181818,1.818182,4,1.818182 + +[H] 9 +L 2.181818,4.727273,0.727273,0 +L 2.545455,4.727273,1.090909,0 +L 5.090909,4.727273,3.636364,0 +L 5.454545,4.727273,4,0 +L 1.454545,4.727273,3.272727,4.727273 +L 4.363636,4.727273,6.181818,4.727273 +L 1.818182,2.545455,4.363636,2.545455 +L 0,0,1.818182,0 +L 2.909091,0,4.727273,0 + +[I] 4 +L 2.181818,4.727273,0.727273,0 +L 2.545455,4.727273,1.090909,0 +L 1.454545,4.727273,3.272727,4.727273 +L 0,0,1.818182,0 + +[J] 13 +L 3.272727,4.727273,2.181818,1.090909 +L 2.181818,1.090909,1.818182,0.363636 +L 1.818182,0.363636,1.454545,0 +L 3.636364,4.727273,2.545455,1.090909 +L 2.545455,1.090909,2.181818,0.363636 +L 2.181818,0.363636,1.454545,0 +L 1.454545,0,1.090909,0 +L 1.090909,0,0.363636,0.363636 +L 0.363636,0.363636,0,1.090909 +L 0,1.090909,0.363636,1.454545 +L 0.363636,1.454545,0.727273,1.090909 +L 0.727273,1.090909,0.363636,0.727273 +L 2.545455,4.727273,4.363636,4.727273 + +[K] 9 +L 2.181818,4.727273,0.727273,0 +L 2.545455,4.727273,1.090909,0 +L 5.454545,4.727273,1.818182,2.181818 +L 2.909091,2.909091,3.636364,0 +L 3.272727,2.909091,4,0 +L 1.454545,4.727273,3.272727,4.727273 +L 4.363636,4.727273,6.181818,4.727273 +L 0,0,1.818182,0 +L 2.909091,0,4.727273,0 + +[L] 6 +L 2.181818,4.727273,0.727273,0 +L 2.545455,4.727273,1.090909,0 +L 1.454545,4.727273,3.272727,4.727273 +L 0,0,3.636364,0 +L 3.636364,0,4,1.090909 +L 4,1.090909,3.272727,0 + +[M] 10 +L 2.181818,4.727273,0.727273,0 +L 2.181818,4,2.545455,0 +L 2.545455,4.727273,2.909091,0.727273 +L 5.818182,4.727273,2.545455,0 +L 5.818182,4.727273,4.363636,0 +L 6.181818,4.727273,4.727273,0 +L 1.454545,4.727273,2.545455,4.727273 +L 5.818182,4.727273,6.909091,4.727273 +L 0,0,1.454545,0 +L 3.636364,0,5.454545,0 + +[N] 7 +L 2.181818,4.727273,0.727273,0 +L 2.181818,4.727273,3.636364,0 +L 2.545455,4.727273,3.636364,1.090909 +L 5.090909,4.727273,3.636364,0 +L 1.454545,4.727273,2.545455,4.727273 +L 4.363636,4.727273,5.818182,4.727273 +L 0,0,1.454545,0 + +[O] 26 +L 1.818182,4.727273,1.090909,4.363636 +L 1.090909,4.363636,0.727273,4 +L 0.727273,4,0.363636,3.272727 +L 0.363636,3.272727,0,2.181818 +L 0,2.181818,0,1.090909 +L 0,1.090909,0.363636,0.363636 +L 0.363636,0.363636,1.090909,0 +L 1.090909,0,1.818182,0 +L 1.818182,0,2.545455,0.363636 +L 2.545455,0.363636,2.909091,0.727273 +L 2.909091,0.727273,3.272727,1.454545 +L 3.272727,1.454545,3.636364,2.545455 +L 3.636364,2.545455,3.636364,3.636364 +L 3.636364,3.636364,3.272727,4.363636 +L 3.272727,4.363636,2.545455,4.727273 +L 2.545455,4.727273,1.818182,4.727273 +L 1.818182,4.727273,1.090909,4 +L 1.090909,4,0.727273,3.272727 +L 0.727273,3.272727,0.363636,2.181818 +L 0.363636,2.181818,0.363636,0.727273 +L 0.363636,0.727273,1.090909,0 +L 1.818182,0,2.545455,0.727273 +L 2.545455,0.727273,2.909091,1.454545 +L 2.909091,1.454545,3.272727,2.545455 +L 3.272727,2.545455,3.272727,4 +L 3.272727,4,2.545455,4.727273 + +[P] 14 +L 2.181818,4.727273,0.727273,0 +L 2.545455,4.727273,1.090909,0 +L 1.454545,4.727273,4,4.727273 +L 4,4.727273,4.727273,4.363636 +L 4.727273,4.363636,5.090909,4 +L 5.090909,4,5.090909,3.272727 +L 5.090909,3.272727,4.727273,2.545455 +L 4.727273,2.545455,3.636364,2.181818 +L 3.636364,2.181818,1.818182,2.181818 +L 4,4.727273,4.727273,4 +L 4.727273,4,4.727273,3.272727 +L 4.727273,3.272727,4.363636,2.545455 +L 4.363636,2.545455,3.636364,2.181818 +L 0,0,1.818182,0 + +[Q] 36 +L 1.818182,4.727273,1.090909,4.363636 +L 1.090909,4.363636,0.727273,4 +L 0.727273,4,0.363636,3.272727 +L 0.363636,3.272727,0,2.181818 +L 0,2.181818,0,1.090909 +L 0,1.090909,0.363636,0.363636 +L 0.363636,0.363636,1.090909,0 +L 1.090909,0,1.818182,0 +L 1.818182,0,2.545455,0.363636 +L 2.545455,0.363636,2.909091,0.727273 +L 2.909091,0.727273,3.272727,1.454545 +L 3.272727,1.454545,3.636364,2.545455 +L 3.636364,2.545455,3.636364,3.636364 +L 3.636364,3.636364,3.272727,4.363636 +L 3.272727,4.363636,2.545455,4.727273 +L 2.545455,4.727273,1.818182,4.727273 +L 1.818182,4.727273,1.090909,4 +L 1.090909,4,0.727273,3.272727 +L 0.727273,3.272727,0.363636,2.181818 +L 0.363636,2.181818,0.363636,0.727273 +L 0.363636,0.727273,1.090909,0 +L 1.818182,0,2.545455,0.727273 +L 2.545455,0.727273,2.909091,1.454545 +L 2.909091,1.454545,3.272727,2.545455 +L 3.272727,2.545455,3.272727,4 +L 3.272727,4,2.545455,4.727273 +L 0.727273,0.363636,0.727273,0.727273 +L 0.727273,0.727273,1.090909,1.090909 +L 1.090909,1.090909,1.454545,1.090909 +L 1.454545,1.090909,1.818182,0.727273 +L 1.818182,0.727273,1.818182,-0.727273 +L 1.818182,-0.727273,2.181818,-1.090909 +L 2.181818,-1.090909,2.545455,-1.090909 +L 2.545455,-1.090909,2.909091,-0.727273 +L 1.818182,0.727273,2.181818,-0.727273 +L 2.181818,-0.727273,2.545455,-1.090909 + +[R] 21 +L 2.181818,4.727273,0.727273,0 +L 2.545455,4.727273,1.090909,0 +L 1.454545,4.727273,4,4.727273 +L 4,4.727273,4.727273,4.363636 +L 4.727273,4.363636,5.090909,4 +L 5.090909,4,5.090909,3.272727 +L 5.090909,3.272727,4.727273,2.545455 +L 4.727273,2.545455,3.636364,2.181818 +L 3.636364,2.181818,1.818182,2.181818 +L 4,4.727273,4.727273,4 +L 4.727273,4,4.727273,3.272727 +L 4.727273,3.272727,4.363636,2.545455 +L 4.363636,2.545455,3.636364,2.181818 +L 3.272727,2.181818,3.636364,0.363636 +L 3.636364,0.363636,4,0 +L 4,0,4.363636,0 +L 4.363636,0,4.727273,0.363636 +L 3.272727,2.181818,3.636364,1.818182 +L 3.636364,1.818182,4,0.363636 +L 4,0.363636,4.363636,0 +L 0,0,1.818182,0 + +[S] 24 +L 4,4.363636,4.363636,4.363636 +L 4.363636,4.363636,4.727273,4.727273 +L 4.727273,4.727273,4.363636,3.636364 +L 4.363636,3.636364,4,4.363636 +L 4,4.363636,3.272727,4.727273 +L 3.272727,4.727273,2.181818,4.727273 +L 2.181818,4.727273,1.454545,4.363636 +L 1.454545,4.363636,1.090909,4 +L 1.090909,4,1.090909,3.272727 +L 1.090909,3.272727,1.454545,2.909091 +L 1.454545,2.909091,3.272727,1.818182 +L 3.272727,1.818182,3.636364,1.454545 +L 1.090909,3.636364,1.454545,3.272727 +L 1.454545,3.272727,3.272727,2.181818 +L 3.272727,2.181818,3.636364,1.818182 +L 3.636364,1.818182,3.636364,0.727273 +L 3.636364,0.727273,3.272727,0.363636 +L 3.272727,0.363636,2.545455,0 +L 2.545455,0,1.454545,0 +L 1.454545,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,1.090909 +L 0.363636,1.090909,0,0 +L 0,0,0.363636,0.363636 +L 0.363636,0.363636,0.727273,0.363636 + +[T] 8 +L 2.181818,4.727273,0.727273,0 +L 2.545455,4.727273,1.090909,0 +L 0.727273,4.727273,0,3.636364 +L 0,3.636364,0.363636,4.727273 +L 0.363636,4.727273,4.363636,4.727273 +L 4.363636,4.727273,4,3.636364 +L 4,3.636364,4,4.727273 +L 0,0,1.818182,0 + +[U] 12 +L 1.090909,4.727273,0,1.090909 +L 0,1.090909,0,0.363636 +L 0,0.363636,0.727273,0 +L 0.727273,0,2.181818,0 +L 2.181818,0,2.909091,0.363636 +L 2.909091,0.363636,3.272727,1.090909 +L 3.272727,1.090909,4.363636,4.727273 +L 1.454545,4.727273,0.363636,1.090909 +L 0.363636,1.090909,0.363636,0.363636 +L 0.363636,0.363636,0.727273,0 +L 0.363636,4.727273,2.181818,4.727273 +L 3.636364,4.727273,5.090909,4.727273 + +[V] 5 +L 0.727273,4.727273,1.090909,0 +L 1.090909,4.727273,1.454545,0.727273 +L 4.363636,4.727273,1.090909,0 +L 0,4.727273,1.818182,4.727273 +L 3.272727,4.727273,5.090909,4.727273 + +[W] 8 +L 0.727273,4.727273,0.363636,0 +L 1.090909,4.727273,0.727273,0.727273 +L 2.909091,4.727273,0.363636,0 +L 2.909091,4.727273,2.545455,0 +L 3.272727,4.727273,2.909091,0.727273 +L 5.090909,4.727273,2.545455,0 +L 0,4.727273,1.818182,4.727273 +L 4.363636,4.727273,5.818182,4.727273 + +[X] 7 +L 2.181818,4.727273,3.636364,0 +L 2.545455,4.727273,4,0 +L 5.454545,4.727273,0.727273,0 +L 1.454545,4.727273,3.272727,4.727273 +L 4.363636,4.727273,6.181818,4.727273 +L 0,0,1.818182,0 +L 2.909091,0,4.727273,0 + +[Y] 8 +L 0.727273,4.727273,1.454545,2.545455 +L 1.454545,2.545455,0.727273,0 +L 1.090909,4.727273,1.818182,2.545455 +L 4,4.727273,1.818182,2.545455 +L 1.818182,2.545455,1.090909,0 +L 0,4.727273,1.818182,4.727273 +L 2.909091,4.727273,4.727273,4.727273 +L 0,0,1.818182,0 + +[Z] 8 +L 4.363636,4.727273,0,0 +L 4.727273,4.727273,0.363636,0 +L 1.818182,4.727273,1.090909,3.636364 +L 1.090909,3.636364,1.454545,4.727273 +L 1.454545,4.727273,4.727273,4.727273 +L 0,0,3.272727,0 +L 3.272727,0,3.636364,1.090909 +L 3.636364,1.090909,2.909091,0 + +[[] 4 +L 0,5.818182,0,-1.454545 +L 0.363636,5.818182,0.363636,-1.454545 +L 0,5.818182,1.818182,5.818182 +L 0,-1.454545,1.818182,-1.454545 + +[\] 1 +L 0,6.545455,5.090909,-2.181818 + +[]] 4 +L 1.454545,5.818182,1.454545,-1.454545 +L 1.818182,5.818182,1.818182,-1.454545 +L 0,5.818182,1.818182,5.818182 +L 0,-1.454545,1.818182,-1.454545 + +[^] 7 +L 1.090909,4,1.090909,0 +L 0,2.909091,0.363636,3.272727 +L 0.363636,3.272727,1.090909,4.363636 +L 1.090909,4.363636,1.818182,3.272727 +L 1.818182,3.272727,2.181818,2.909091 +L 0.363636,3.272727,1.090909,4 +L 1.090909,4,1.818182,3.272727 + +[_] 1 +L 0,-0.727273,5.818182,-0.727273 + +[`] 6 +L 0.727273,4.727273,0,4 +L 0,4,0,3.272727 +L 0,3.272727,0.363636,2.909091 +L 0.363636,2.909091,0.727273,3.272727 +L 0.727273,3.272727,0.363636,3.636364 +L 0.363636,3.636364,0,3.272727 + +[a] 24 +L 3.272727,3.272727,2.545455,0.727273 +L 2.545455,0.727273,2.545455,0.363636 +L 2.545455,0.363636,2.909091,0 +L 2.909091,0,3.636364,0 +L 3.636364,0,4,0.363636 +L 4,0.363636,4.363636,1.090909 +L 3.636364,3.272727,2.909091,0.727273 +L 2.909091,0.727273,2.909091,0.363636 +L 2.909091,0.363636,3.272727,0 +L 2.909091,1.818182,2.909091,2.545455 +L 2.909091,2.545455,2.181818,3.272727 +L 2.181818,3.272727,1.454545,3.272727 +L 1.454545,3.272727,0.727273,2.909091 +L 0.727273,2.909091,0.363636,2.545455 +L 0.363636,2.545455,0,1.818182 +L 0,1.818182,0,1.090909 +L 0,1.090909,0.363636,0.363636 +L 0.363636,0.363636,1.090909,0 +L 1.090909,0,1.818182,0 +L 1.818182,0,2.545455,0.727273 +L 1.454545,3.272727,0.727273,2.545455 +L 0.727273,2.545455,0.363636,1.818182 +L 0.363636,1.818182,0.363636,0.727273 +L 0.363636,0.727273,1.090909,0 + +[b] 22 +L 0.727273,4.727273,0,2.181818 +L 1.090909,4.727273,0.363636,2.181818 +L 0.363636,2.181818,0.363636,0.727273 +L 0.363636,0.727273,1.090909,0 +L 0.363636,2.181818,0.727273,2.909091 +L 0.727273,2.909091,1.454545,3.272727 +L 1.454545,3.272727,2.181818,3.272727 +L 2.181818,3.272727,2.909091,2.909091 +L 2.909091,2.909091,3.272727,2.181818 +L 3.272727,2.181818,3.272727,1.454545 +L 3.272727,1.454545,2.909091,0.727273 +L 2.909091,0.727273,2.545455,0.363636 +L 2.545455,0.363636,1.818182,0 +L 1.818182,0,1.090909,0 +L 1.090909,0,0.363636,0.363636 +L 0.363636,0.363636,0,1.090909 +L 0,1.090909,0,2.181818 +L 2.181818,3.272727,2.909091,2.545455 +L 2.909091,2.545455,2.909091,1.454545 +L 2.909091,1.454545,2.545455,0.727273 +L 2.545455,0.727273,1.818182,0 +L 0,4.727273,1.090909,4.727273 + +[c] 18 +L 2.909091,2.909091,2.909091,2.545455 +L 2.909091,2.545455,3.272727,2.545455 +L 3.272727,2.545455,2.909091,2.909091 +L 2.909091,2.909091,2.181818,3.272727 +L 2.181818,3.272727,1.454545,3.272727 +L 1.454545,3.272727,0.727273,2.909091 +L 0.727273,2.909091,0.363636,2.545455 +L 0.363636,2.545455,0,1.818182 +L 0,1.818182,0,1.090909 +L 0,1.090909,0.363636,0.363636 +L 0.363636,0.363636,1.090909,0 +L 1.090909,0,1.818182,0 +L 1.818182,0,2.545455,0.363636 +L 2.545455,0.363636,2.909091,0.727273 +L 1.454545,3.272727,0.727273,2.545455 +L 0.727273,2.545455,0.363636,1.818182 +L 0.363636,1.818182,0.363636,0.727273 +L 0.363636,0.727273,1.090909,0 + +[d] 25 +L 3.636364,4.727273,2.545455,0.727273 +L 2.545455,0.727273,2.545455,0.363636 +L 2.545455,0.363636,2.909091,0 +L 2.909091,0,3.636364,0 +L 3.636364,0,4,0.363636 +L 4,0.363636,4.363636,1.090909 +L 4,4.727273,2.909091,0.727273 +L 2.909091,0.727273,2.909091,0.363636 +L 2.909091,0.363636,3.272727,0 +L 2.909091,1.818182,2.909091,2.545455 +L 2.909091,2.545455,2.181818,3.272727 +L 2.181818,3.272727,1.454545,3.272727 +L 1.454545,3.272727,0.727273,2.909091 +L 0.727273,2.909091,0.363636,2.545455 +L 0.363636,2.545455,0,1.818182 +L 0,1.818182,0,1.090909 +L 0,1.090909,0.363636,0.363636 +L 0.363636,0.363636,1.090909,0 +L 1.090909,0,1.818182,0 +L 1.818182,0,2.545455,0.727273 +L 1.454545,3.272727,0.727273,2.545455 +L 0.727273,2.545455,0.363636,1.818182 +L 0.363636,1.818182,0.363636,0.727273 +L 0.363636,0.727273,1.090909,0 +L 2.909091,4.727273,4,4.727273 + +[e] 19 +L 0.363636,1.090909,1.818182,1.454545 +L 1.818182,1.454545,2.545455,1.818182 +L 2.545455,1.818182,2.909091,2.181818 +L 2.909091,2.181818,2.909091,2.909091 +L 2.909091,2.909091,2.181818,3.272727 +L 2.181818,3.272727,1.454545,3.272727 +L 1.454545,3.272727,0.727273,2.909091 +L 0.727273,2.909091,0.363636,2.545455 +L 0.363636,2.545455,0,1.818182 +L 0,1.818182,0,1.090909 +L 0,1.090909,0.363636,0.363636 +L 0.363636,0.363636,1.090909,0 +L 1.090909,0,1.818182,0 +L 1.818182,0,2.545455,0.363636 +L 2.545455,0.363636,2.909091,0.727273 +L 1.454545,3.272727,0.727273,2.545455 +L 0.727273,2.545455,0.363636,1.818182 +L 0.363636,1.818182,0.363636,0.727273 +L 0.363636,0.727273,1.090909,0 + +[f] 17 +L 4,4.727273,4.363636,4.363636 +L 4.363636,4.363636,4.363636,4.727273 +L 4.363636,4.727273,3.636364,4.727273 +L 3.636364,4.727273,2.909091,4.363636 +L 2.909091,4.363636,2.545455,3.636364 +L 2.545455,3.636364,1.454545,-0.363636 +L 1.454545,-0.363636,1.090909,-1.090909 +L 1.090909,-1.090909,0.727273,-1.454545 +L 3.636364,4.727273,3.272727,4.363636 +L 3.272727,4.363636,2.909091,3.636364 +L 2.909091,3.636364,1.818182,-0.363636 +L 1.818182,-0.363636,1.454545,-1.090909 +L 1.454545,-1.090909,0.727273,-1.454545 +L 0.727273,-1.454545,0,-1.454545 +L 0,-1.454545,0,-1.090909 +L 0,-1.090909,0.363636,-1.454545 +L 1.454545,3.272727,3.636364,3.272727 + +[g] 26 +L 3.636364,3.272727,2.909091,0.727273 +L 2.909091,0.727273,2.545455,-0.363636 +L 2.545455,-0.363636,2.181818,-1.090909 +L 4,3.272727,3.272727,0.727273 +L 3.272727,0.727273,2.909091,-0.363636 +L 2.909091,-0.363636,2.181818,-1.090909 +L 2.181818,-1.090909,1.454545,-1.454545 +L 1.454545,-1.454545,0.363636,-1.454545 +L 0.363636,-1.454545,0,-1.090909 +L 0,-1.090909,0.363636,-1.090909 +L 0.363636,-1.090909,0.727273,-1.454545 +L 3.272727,1.818182,3.272727,2.545455 +L 3.272727,2.545455,2.545455,3.272727 +L 2.545455,3.272727,1.818182,3.272727 +L 1.818182,3.272727,1.090909,2.909091 +L 1.090909,2.909091,0.727273,2.545455 +L 0.727273,2.545455,0.363636,1.818182 +L 0.363636,1.818182,0.363636,1.090909 +L 0.363636,1.090909,0.727273,0.363636 +L 0.727273,0.363636,1.454545,0 +L 1.454545,0,2.181818,0 +L 2.181818,0,2.909091,0.727273 +L 1.818182,3.272727,1.090909,2.545455 +L 1.090909,2.545455,0.727273,1.818182 +L 0.727273,1.818182,0.727273,0.727273 +L 0.727273,0.727273,1.454545,0 + +[h] 19 +L 1.454545,4.727273,0,0 +L 1.818182,4.727273,0.363636,0 +L 1.090909,2.545455,1.454545,2.909091 +L 1.454545,2.909091,2.181818,3.272727 +L 2.181818,3.272727,2.909091,3.272727 +L 2.909091,3.272727,3.636364,2.909091 +L 3.636364,2.909091,3.636364,2.181818 +L 3.636364,2.181818,3.272727,1.090909 +L 3.272727,1.090909,3.272727,0.363636 +L 3.272727,0.363636,3.636364,0 +L 2.909091,3.272727,3.272727,2.909091 +L 3.272727,2.909091,3.272727,2.181818 +L 3.272727,2.181818,2.909091,1.090909 +L 2.909091,1.090909,2.909091,0.363636 +L 2.909091,0.363636,3.272727,0 +L 3.272727,0,4,0 +L 4,0,4.363636,0.363636 +L 4.363636,0.363636,4.727273,1.090909 +L 0.727273,4.727273,1.818182,4.727273 + +[i] 20 +L 1.818182,4.727273,1.818182,4.363636 +L 1.818182,4.363636,2.181818,4.363636 +L 2.181818,4.363636,2.181818,4.727273 +L 2.181818,4.727273,1.818182,4.727273 +L 0,2.181818,0.363636,2.909091 +L 0.363636,2.909091,0.727273,3.272727 +L 0.727273,3.272727,1.454545,3.272727 +L 1.454545,3.272727,1.818182,2.909091 +L 1.818182,2.909091,1.818182,2.181818 +L 1.818182,2.181818,1.454545,1.090909 +L 1.454545,1.090909,1.454545,0.363636 +L 1.454545,0.363636,1.818182,0 +L 1.090909,3.272727,1.454545,2.909091 +L 1.454545,2.909091,1.454545,2.181818 +L 1.454545,2.181818,1.090909,1.090909 +L 1.090909,1.090909,1.090909,0.363636 +L 1.090909,0.363636,1.454545,0 +L 1.454545,0,2.181818,0 +L 2.181818,0,2.545455,0.363636 +L 2.545455,0.363636,2.909091,1.090909 + +[j] 20 +L 2.545455,4.727273,2.545455,4.363636 +L 2.545455,4.363636,2.909091,4.363636 +L 2.909091,4.363636,2.909091,4.727273 +L 2.909091,4.727273,2.545455,4.727273 +L 0.727273,2.181818,1.090909,2.909091 +L 1.090909,2.909091,1.454545,3.272727 +L 1.454545,3.272727,2.181818,3.272727 +L 2.181818,3.272727,2.545455,2.909091 +L 2.545455,2.909091,2.545455,2.181818 +L 2.545455,2.181818,1.818182,-0.363636 +L 1.818182,-0.363636,1.454545,-1.090909 +L 1.454545,-1.090909,0.727273,-1.454545 +L 0.727273,-1.454545,0,-1.454545 +L 0,-1.454545,0,-1.090909 +L 0,-1.090909,0.363636,-1.454545 +L 1.818182,3.272727,2.181818,2.909091 +L 2.181818,2.909091,2.181818,2.181818 +L 2.181818,2.181818,1.454545,-0.363636 +L 1.454545,-0.363636,1.090909,-1.090909 +L 1.090909,-1.090909,0.727273,-1.454545 + +[k] 20 +L 1.454545,4.727273,0,0 +L 1.818182,4.727273,0.363636,0 +L 3.636364,2.909091,3.272727,2.545455 +L 3.272727,2.545455,3.636364,2.545455 +L 3.636364,2.545455,3.636364,2.909091 +L 3.636364,2.909091,3.272727,3.272727 +L 3.272727,3.272727,2.909091,3.272727 +L 2.909091,3.272727,2.181818,2.545455 +L 2.181818,2.545455,1.454545,2.181818 +L 1.454545,2.181818,1.090909,2.181818 +L 1.090909,2.181818,1.454545,1.818182 +L 1.454545,1.818182,1.818182,0.363636 +L 1.818182,0.363636,2.181818,0 +L 2.181818,0,2.909091,0 +L 2.909091,0,3.272727,0.363636 +L 3.272727,0.363636,3.636364,1.090909 +L 1.090909,2.181818,1.818182,1.818182 +L 1.818182,1.818182,2.181818,0.363636 +L 2.181818,0.363636,2.545455,0 +L 0.727273,4.727273,1.818182,4.727273 + +[l] 10 +L 1.090909,4.727273,0,0.727273 +L 0,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,1.090909,0 +L 1.090909,0,1.454545,0.363636 +L 1.454545,0.363636,1.818182,1.090909 +L 1.454545,4.727273,0.363636,0.727273 +L 0.363636,0.727273,0.363636,0.363636 +L 0.363636,0.363636,0.727273,0 +L 0.363636,4.727273,1.454545,4.727273 + +[m] 34 +L 0,2.181818,0.363636,2.909091 +L 0.363636,2.909091,0.727273,3.272727 +L 0.727273,3.272727,1.454545,3.272727 +L 1.454545,3.272727,1.818182,2.909091 +L 1.818182,2.909091,1.818182,2.545455 +L 1.818182,2.545455,1.090909,0 +L 1.090909,3.272727,1.454545,2.909091 +L 1.454545,2.909091,1.454545,2.545455 +L 1.454545,2.545455,0.727273,0 +L 1.818182,2.545455,2.181818,2.909091 +L 2.181818,2.909091,2.909091,3.272727 +L 2.909091,3.272727,3.636364,3.272727 +L 3.636364,3.272727,4.363636,2.909091 +L 4.363636,2.909091,4.363636,2.545455 +L 4.363636,2.545455,3.636364,0 +L 3.636364,3.272727,4,2.909091 +L 4,2.909091,4,2.545455 +L 4,2.545455,3.272727,0 +L 4.363636,2.545455,4.727273,2.909091 +L 4.727273,2.909091,5.454545,3.272727 +L 5.454545,3.272727,6.181818,3.272727 +L 6.181818,3.272727,6.909091,2.909091 +L 6.909091,2.909091,6.909091,2.181818 +L 6.909091,2.181818,6.545455,1.090909 +L 6.545455,1.090909,6.545455,0.363636 +L 6.545455,0.363636,6.909091,0 +L 6.181818,3.272727,6.545455,2.909091 +L 6.545455,2.909091,6.545455,2.181818 +L 6.545455,2.181818,6.181818,1.090909 +L 6.181818,1.090909,6.181818,0.363636 +L 6.181818,0.363636,6.545455,0 +L 6.545455,0,7.272727,0 +L 7.272727,0,7.636364,0.363636 +L 7.636364,0.363636,8,1.090909 + +[n] 25 +L 0,2.181818,0.363636,2.909091 +L 0.363636,2.909091,0.727273,3.272727 +L 0.727273,3.272727,1.454545,3.272727 +L 1.454545,3.272727,1.818182,2.909091 +L 1.818182,2.909091,1.818182,2.545455 +L 1.818182,2.545455,1.090909,0 +L 1.090909,3.272727,1.454545,2.909091 +L 1.454545,2.909091,1.454545,2.545455 +L 1.454545,2.545455,0.727273,0 +L 1.818182,2.545455,2.181818,2.909091 +L 2.181818,2.909091,2.909091,3.272727 +L 2.909091,3.272727,3.636364,3.272727 +L 3.636364,3.272727,4.363636,2.909091 +L 4.363636,2.909091,4.363636,2.181818 +L 4.363636,2.181818,4,1.090909 +L 4,1.090909,4,0.363636 +L 4,0.363636,4.363636,0 +L 3.636364,3.272727,4,2.909091 +L 4,2.909091,4,2.181818 +L 4,2.181818,3.636364,1.090909 +L 3.636364,1.090909,3.636364,0.363636 +L 3.636364,0.363636,4,0 +L 4,0,4.727273,0 +L 4.727273,0,5.090909,0.363636 +L 5.090909,0.363636,5.454545,1.090909 + +[o] 22 +L 1.454545,3.272727,0.727273,2.909091 +L 0.727273,2.909091,0.363636,2.545455 +L 0.363636,2.545455,0,1.818182 +L 0,1.818182,0,1.090909 +L 0,1.090909,0.363636,0.363636 +L 0.363636,0.363636,1.090909,0 +L 1.090909,0,1.818182,0 +L 1.818182,0,2.545455,0.363636 +L 2.545455,0.363636,2.909091,0.727273 +L 2.909091,0.727273,3.272727,1.454545 +L 3.272727,1.454545,3.272727,2.181818 +L 3.272727,2.181818,2.909091,2.909091 +L 2.909091,2.909091,2.181818,3.272727 +L 2.181818,3.272727,1.454545,3.272727 +L 1.454545,3.272727,0.727273,2.545455 +L 0.727273,2.545455,0.363636,1.818182 +L 0.363636,1.818182,0.363636,0.727273 +L 0.363636,0.727273,1.090909,0 +L 1.818182,0,2.545455,0.727273 +L 2.545455,0.727273,2.909091,1.454545 +L 2.909091,1.454545,2.909091,2.545455 +L 2.909091,2.545455,2.181818,3.272727 + +[p] 25 +L 0.363636,2.181818,0.727273,2.909091 +L 0.727273,2.909091,1.090909,3.272727 +L 1.090909,3.272727,1.818182,3.272727 +L 1.818182,3.272727,2.181818,2.909091 +L 2.181818,2.909091,2.181818,2.545455 +L 2.181818,2.545455,1.090909,-1.454545 +L 1.454545,3.272727,1.818182,2.909091 +L 1.818182,2.909091,1.818182,2.545455 +L 1.818182,2.545455,0.727273,-1.454545 +L 2.181818,2.545455,2.909091,3.272727 +L 2.909091,3.272727,3.636364,3.272727 +L 3.636364,3.272727,4.363636,2.909091 +L 4.363636,2.909091,4.727273,2.181818 +L 4.727273,2.181818,4.727273,1.454545 +L 4.727273,1.454545,4.363636,0.727273 +L 4.363636,0.727273,4,0.363636 +L 4,0.363636,3.272727,0 +L 3.272727,0,2.545455,0 +L 2.545455,0,1.818182,0.727273 +L 1.818182,0.727273,1.818182,1.454545 +L 3.636364,3.272727,4.363636,2.545455 +L 4.363636,2.545455,4.363636,1.454545 +L 4.363636,1.454545,4,0.727273 +L 4,0.727273,3.272727,0 +L 0,-1.454545,1.818182,-1.454545 + +[q] 18 +L 3.272727,3.272727,1.818182,-1.454545 +L 3.636364,3.272727,2.181818,-1.454545 +L 2.909091,1.818182,2.909091,2.545455 +L 2.909091,2.545455,2.181818,3.272727 +L 2.181818,3.272727,1.454545,3.272727 +L 1.454545,3.272727,0.727273,2.909091 +L 0.727273,2.909091,0.363636,2.545455 +L 0.363636,2.545455,0,1.818182 +L 0,1.818182,0,1.090909 +L 0,1.090909,0.363636,0.363636 +L 0.363636,0.363636,1.090909,0 +L 1.090909,0,1.818182,0 +L 1.818182,0,2.545455,0.727273 +L 1.454545,3.272727,0.727273,2.545455 +L 0.727273,2.545455,0.363636,1.818182 +L 0.363636,1.818182,0.363636,0.727273 +L 0.363636,0.727273,1.090909,0 +L 1.090909,-1.454545,2.909091,-1.454545 + +[r] 16 +L 0,2.181818,0.363636,2.909091 +L 0.363636,2.909091,0.727273,3.272727 +L 0.727273,3.272727,1.454545,3.272727 +L 1.454545,3.272727,1.818182,2.909091 +L 1.818182,2.909091,1.818182,2.545455 +L 1.818182,2.545455,1.090909,0 +L 1.090909,3.272727,1.454545,2.909091 +L 1.454545,2.909091,1.454545,2.545455 +L 1.454545,2.545455,0.727273,0 +L 1.818182,2.545455,2.181818,2.909091 +L 2.181818,2.909091,2.909091,3.272727 +L 2.909091,3.272727,3.272727,3.272727 +L 3.272727,3.272727,3.636364,2.909091 +L 3.636364,2.909091,3.636364,2.545455 +L 3.636364,2.545455,3.272727,2.545455 +L 3.272727,2.545455,3.636364,2.909091 + +[s] 20 +L 2.909091,2.909091,2.909091,2.545455 +L 2.909091,2.545455,3.272727,2.545455 +L 3.272727,2.545455,2.909091,2.909091 +L 2.909091,2.909091,2.181818,3.272727 +L 2.181818,3.272727,1.090909,3.272727 +L 1.090909,3.272727,0.363636,2.909091 +L 0.363636,2.909091,0.363636,2.181818 +L 0.363636,2.181818,1.090909,1.818182 +L 1.090909,1.818182,2.181818,1.454545 +L 2.181818,1.454545,2.909091,1.090909 +L 0.363636,2.545455,1.090909,2.181818 +L 1.090909,2.181818,2.181818,1.818182 +L 2.181818,1.818182,2.909091,1.454545 +L 2.909091,1.454545,2.909091,0.363636 +L 2.909091,0.363636,2.181818,0 +L 2.181818,0,1.090909,0 +L 1.090909,0,0.363636,0.363636 +L 0.363636,0.363636,0,0.727273 +L 0,0.727273,0.363636,0.727273 +L 0.363636,0.727273,0.363636,0.363636 + +[t] 10 +L 1.090909,4.727273,0,0.727273 +L 0,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,1.090909,0 +L 1.090909,0,1.454545,0.363636 +L 1.454545,0.363636,1.818182,1.090909 +L 1.454545,4.727273,0.363636,0.727273 +L 0.363636,0.727273,0.363636,0.363636 +L 0.363636,0.363636,0.727273,0 +L 0,3.272727,1.818182,3.272727 + +[u] 25 +L 0,2.181818,0.363636,2.909091 +L 0.363636,2.909091,0.727273,3.272727 +L 0.727273,3.272727,1.454545,3.272727 +L 1.454545,3.272727,1.818182,2.909091 +L 1.818182,2.909091,1.818182,2.181818 +L 1.818182,2.181818,1.454545,1.090909 +L 1.454545,1.090909,1.454545,0.363636 +L 1.454545,0.363636,1.818182,0 +L 1.090909,3.272727,1.454545,2.909091 +L 1.454545,2.909091,1.454545,2.181818 +L 1.454545,2.181818,1.090909,1.090909 +L 1.090909,1.090909,1.090909,0.363636 +L 1.090909,0.363636,1.818182,0 +L 1.818182,0,2.545455,0 +L 2.545455,0,3.272727,0.363636 +L 3.272727,0.363636,3.636364,0.727273 +L 4.363636,3.272727,3.636364,0.727273 +L 3.636364,0.727273,3.636364,0.363636 +L 3.636364,0.363636,4,0 +L 4,0,4.727273,0 +L 4.727273,0,5.090909,0.363636 +L 5.090909,0.363636,5.454545,1.090909 +L 4.727273,3.272727,4,0.727273 +L 4,0.727273,4,0.363636 +L 4,0.363636,4.363636,0 + +[v] 20 +L 0,2.181818,0.363636,2.909091 +L 0.363636,2.909091,0.727273,3.272727 +L 0.727273,3.272727,1.454545,3.272727 +L 1.454545,3.272727,1.818182,2.909091 +L 1.818182,2.909091,1.818182,2.181818 +L 1.818182,2.181818,1.454545,1.090909 +L 1.454545,1.090909,1.454545,0.363636 +L 1.454545,0.363636,1.818182,0 +L 1.090909,3.272727,1.454545,2.909091 +L 1.454545,2.909091,1.454545,2.181818 +L 1.454545,2.181818,1.090909,1.090909 +L 1.090909,1.090909,1.090909,0.363636 +L 1.090909,0.363636,1.818182,0 +L 1.818182,0,2.181818,0 +L 2.181818,0,2.909091,0.363636 +L 2.909091,0.363636,3.636364,1.090909 +L 3.636364,1.090909,4,2.181818 +L 4,2.181818,4,3.272727 +L 4,3.272727,3.636364,3.272727 +L 3.636364,3.272727,4,2.909091 + +[w] 29 +L 0,2.181818,0.363636,2.909091 +L 0.363636,2.909091,0.727273,3.272727 +L 0.727273,3.272727,1.454545,3.272727 +L 1.454545,3.272727,1.818182,2.909091 +L 1.818182,2.909091,1.818182,2.181818 +L 1.818182,2.181818,1.454545,1.090909 +L 1.454545,1.090909,1.454545,0.363636 +L 1.454545,0.363636,1.818182,0 +L 1.090909,3.272727,1.454545,2.909091 +L 1.454545,2.909091,1.454545,2.181818 +L 1.454545,2.181818,1.090909,1.090909 +L 1.090909,1.090909,1.090909,0.363636 +L 1.090909,0.363636,1.818182,0 +L 1.818182,0,2.181818,0 +L 2.181818,0,2.909091,0.363636 +L 2.909091,0.363636,3.272727,0.727273 +L 4,3.272727,3.272727,0.727273 +L 3.272727,0.727273,3.272727,0.363636 +L 3.272727,0.363636,4,0 +L 4.363636,3.272727,3.636364,0.727273 +L 3.636364,0.727273,3.636364,0.363636 +L 3.636364,0.363636,4,0 +L 4,0,4.363636,0 +L 4.363636,0,5.090909,0.363636 +L 5.090909,0.363636,5.818182,1.090909 +L 5.818182,1.090909,6.181818,2.181818 +L 6.181818,2.181818,6.181818,3.272727 +L 6.181818,3.272727,5.818182,3.272727 +L 5.818182,3.272727,6.181818,2.909091 + +[x] 30 +L 0.363636,2.181818,0.727273,2.909091 +L 0.727273,2.909091,1.454545,3.272727 +L 1.454545,3.272727,2.181818,3.272727 +L 2.181818,3.272727,2.545455,2.909091 +L 2.545455,2.909091,2.545455,2.181818 +L 1.818182,3.272727,2.181818,2.909091 +L 2.181818,2.909091,2.181818,2.181818 +L 2.181818,2.181818,1.818182,1.090909 +L 1.818182,1.090909,1.454545,0.363636 +L 1.454545,0.363636,0.727273,0 +L 0.727273,0,0.363636,0 +L 0.363636,0,0,0.363636 +L 0,0.363636,0,0.727273 +L 0,0.727273,0.363636,0.727273 +L 0.363636,0.727273,0,0.363636 +L 4.363636,2.909091,4,2.545455 +L 4,2.545455,4.363636,2.545455 +L 4.363636,2.545455,4.363636,2.909091 +L 4.363636,2.909091,4,3.272727 +L 4,3.272727,3.636364,3.272727 +L 3.636364,3.272727,2.909091,2.909091 +L 2.909091,2.909091,2.545455,2.181818 +L 2.545455,2.181818,2.181818,1.090909 +L 2.181818,1.090909,2.181818,0.363636 +L 2.181818,0.363636,2.545455,0 +L 1.818182,1.090909,1.818182,0.363636 +L 1.818182,0.363636,2.181818,0 +L 2.181818,0,2.909091,0 +L 2.909091,0,3.636364,0.363636 +L 3.636364,0.363636,4,1.090909 + +[y] 27 +L 0,2.181818,0.363636,2.909091 +L 0.363636,2.909091,0.727273,3.272727 +L 0.727273,3.272727,1.454545,3.272727 +L 1.454545,3.272727,1.818182,2.909091 +L 1.818182,2.909091,1.818182,2.181818 +L 1.818182,2.181818,1.454545,1.090909 +L 1.454545,1.090909,1.454545,0.363636 +L 1.454545,0.363636,1.818182,0 +L 1.090909,3.272727,1.454545,2.909091 +L 1.454545,2.909091,1.454545,2.181818 +L 1.454545,2.181818,1.090909,1.090909 +L 1.090909,1.090909,1.090909,0.363636 +L 1.090909,0.363636,1.818182,0 +L 1.818182,0,2.545455,0 +L 2.545455,0,3.272727,0.363636 +L 3.272727,0.363636,3.636364,0.727273 +L 4.363636,3.272727,3.636364,0.727273 +L 3.636364,0.727273,3.272727,-0.363636 +L 3.272727,-0.363636,2.909091,-1.090909 +L 4.727273,3.272727,4,0.727273 +L 4,0.727273,3.636364,-0.363636 +L 3.636364,-0.363636,2.909091,-1.090909 +L 2.909091,-1.090909,2.181818,-1.454545 +L 2.181818,-1.454545,1.090909,-1.454545 +L 1.090909,-1.454545,0.727273,-1.090909 +L 0.727273,-1.090909,1.090909,-1.090909 +L 1.090909,-1.090909,1.454545,-1.454545 + +[z] 17 +L 3.636364,3.272727,3.636364,2.909091 +L 3.636364,2.909091,3.272727,2.545455 +L 3.272727,2.545455,0.363636,0.727273 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0,0 +L 0.363636,2.545455,0.727273,3.272727 +L 0.727273,3.272727,1.818182,3.272727 +L 1.818182,3.272727,2.909091,2.545455 +L 0.727273,2.909091,1.818182,2.909091 +L 1.818182,2.909091,2.909091,2.545455 +L 2.909091,2.545455,3.272727,2.545455 +L 0.363636,0.727273,0.727273,0.727273 +L 0.727273,0.727273,1.818182,0.363636 +L 1.818182,0.363636,2.909091,0.363636 +L 0.727273,0.727273,1.818182,0 +L 1.818182,0,2.909091,0 +L 2.909091,0,3.272727,0.727273 + +[{] 24 +L 1.090909,5.818182,0.363636,5.454545 +L 0.363636,5.454545,0,5.090909 +L 0,5.090909,0,4.363636 +L 0,4.363636,0.727273,3.636364 +L 0.727273,3.636364,1.090909,2.909091 +L 0.363636,5.454545,0,4.363636 +L 1.090909,3.636364,0.727273,2.545455 +L 0,5.090909,0.363636,4.363636 +L 0.363636,4.363636,1.090909,3.636364 +L 1.090909,3.636364,1.090909,2.909091 +L 1.090909,2.909091,0.727273,2.545455 +L 0.727273,2.545455,0,2.181818 +L 0,2.181818,0.727273,1.818182 +L 0.727273,1.818182,1.090909,1.454545 +L 1.090909,1.454545,1.090909,0.727273 +L 1.090909,0.727273,0.363636,0 +L 0.363636,0,0,-0.727273 +L 0.727273,1.818182,1.090909,0.727273 +L 0,0,0.363636,-1.090909 +L 1.090909,1.454545,0.727273,0.727273 +L 0.727273,0.727273,0,0 +L 0,0,0,-0.727273 +L 0,-0.727273,0.363636,-1.090909 +L 0.363636,-1.090909,1.090909,-1.454545 + +[|] 1 +L 0,5.818182,0,-1.454545 + +[}] 24 +L 0,5.818182,0.727273,5.454545 +L 0.727273,5.454545,1.090909,5.090909 +L 1.090909,5.090909,1.090909,4.363636 +L 1.090909,4.363636,0.363636,3.636364 +L 0.363636,3.636364,0,2.909091 +L 0.727273,5.454545,1.090909,4.363636 +L 0,3.636364,0.363636,2.545455 +L 1.090909,5.090909,0.727273,4.363636 +L 0.727273,4.363636,0,3.636364 +L 0,3.636364,0,2.909091 +L 0,2.909091,0.363636,2.545455 +L 0.363636,2.545455,1.090909,2.181818 +L 1.090909,2.181818,0.363636,1.818182 +L 0.363636,1.818182,0,1.454545 +L 0,1.454545,0,0.727273 +L 0,0.727273,0.727273,0 +L 0.727273,0,1.090909,-0.727273 +L 0.363636,1.818182,0,0.727273 +L 1.090909,0,0.727273,-1.090909 +L 0,1.454545,0.363636,0.727273 +L 0.363636,0.727273,1.090909,0 +L 1.090909,0,1.090909,-0.727273 +L 1.090909,-0.727273,0.727273,-1.090909 +L 0.727273,-1.090909,0,-1.454545 + +[~] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[#0104] 12 +L 4,4.727273,0.727273,0 +L 3.636364,4,4,0 +L 4,4.727273,4.363636,0 +L 1.818182,1.454545,4,1.454545 +L 0,0,1.818182,0 +L 3.272727,0,5.090909,0 +L 4,0,3.272727,-0.727273 +L 3.272727,-0.727273,3.272727,-1.454545 +L 3.272727,-1.454545,3.636364,-1.818182 +L 3.636364,-1.818182,4,-1.454545 +L 4,-1.454545,3.636364,-1.090909 +L 3.636364,-1.090909,3.272727,-1.454545 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[#0141] 7 +L 2.181818,4.727273,0.727273,0 +L 2.545455,4.727273,1.090909,0 +L 1.454545,4.727273,3.272727,4.727273 +L 0,0,3.636364,0 +L 3.636364,0,4,1.090909 +L 4,1.090909,3.272727,0 +L 0.727273,1.818182,3.272727,3.272727 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[#015A] 30 +L 4,4.363636,4.363636,4.363636 +L 4.363636,4.363636,4.727273,4.727273 +L 4.727273,4.727273,4.363636,3.636364 +L 4.363636,3.636364,4,4.363636 +L 4,4.363636,3.272727,4.727273 +L 3.272727,4.727273,2.181818,4.727273 +L 2.181818,4.727273,1.454545,4.363636 +L 1.454545,4.363636,1.090909,4 +L 1.090909,4,1.090909,3.272727 +L 1.090909,3.272727,1.454545,2.909091 +L 1.454545,2.909091,3.272727,1.818182 +L 3.272727,1.818182,3.636364,1.454545 +L 1.090909,3.636364,1.454545,3.272727 +L 1.454545,3.272727,3.272727,2.181818 +L 3.272727,2.181818,3.636364,1.818182 +L 3.636364,1.818182,3.636364,0.727273 +L 3.636364,0.727273,3.272727,0.363636 +L 3.272727,0.363636,2.545455,0 +L 2.545455,0,1.454545,0 +L 1.454545,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,1.090909 +L 0.363636,1.090909,0,0 +L 0,0,0.363636,0.363636 +L 0.363636,0.363636,0.727273,0.363636 +L 3.636364,6.909091,3.272727,6.545455 +L 3.272727,6.545455,2.909091,6.909091 +L 2.909091,6.909091,3.272727,7.272727 +L 3.272727,7.272727,3.636364,6.909091 +L 3.636364,6.909091,3.636364,6.181818 +L 3.636364,6.181818,2.909091,5.454545 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[#0179] 14 +L 4.363636,4.727273,0,0 +L 4.727273,4.727273,0.363636,0 +L 1.818182,4.727273,1.090909,3.636364 +L 1.090909,3.636364,1.454545,4.727273 +L 1.454545,4.727273,4.727273,4.727273 +L 0,0,3.272727,0 +L 3.272727,0,3.636364,1.090909 +L 3.636364,1.090909,2.909091,0 +L 3.636364,6.909091,3.272727,6.545455 +L 3.272727,6.545455,2.909091,6.909091 +L 2.909091,6.909091,3.272727,7.272727 +L 3.272727,7.272727,3.636364,6.909091 +L 3.636364,6.909091,3.636364,6.181818 +L 3.636364,6.181818,2.909091,5.454545 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[#017B] 12 +L 4.363636,4.727273,0,0 +L 4.727273,4.727273,0.363636,0 +L 1.818182,4.727273,1.090909,3.636364 +L 1.090909,3.636364,1.454545,4.727273 +L 1.454545,4.727273,4.727273,4.727273 +L 0,0,3.272727,0 +L 3.272727,0,3.636364,1.090909 +L 3.636364,1.090909,2.909091,0 +L 3.272727,6.181818,2.909091,5.818182 +L 2.909091,5.818182,3.272727,5.454545 +L 3.272727,5.454545,3.636364,5.818182 +L 3.636364,5.818182,3.272727,6.181818 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[#0105] 30 +L 3.272727,3.272727,2.545455,0.727273 +L 2.545455,0.727273,2.545455,0.363636 +L 2.545455,0.363636,2.909091,0 +L 2.909091,0,3.636364,0 +L 3.636364,0,4,0.363636 +L 4,0.363636,4.363636,1.090909 +L 3.636364,3.272727,2.909091,0.727273 +L 2.909091,0.727273,2.909091,0.363636 +L 2.909091,0.363636,3.272727,0 +L 2.909091,1.818182,2.909091,2.545455 +L 2.909091,2.545455,2.181818,3.272727 +L 2.181818,3.272727,1.454545,3.272727 +L 1.454545,3.272727,0.727273,2.909091 +L 0.727273,2.909091,0.363636,2.545455 +L 0.363636,2.545455,0,1.818182 +L 0,1.818182,0,1.090909 +L 0,1.090909,0.363636,0.363636 +L 0.363636,0.363636,1.090909,0 +L 1.090909,0,1.818182,0 +L 1.818182,0,2.545455,0.727273 +L 1.454545,3.272727,0.727273,2.545455 +L 0.727273,2.545455,0.363636,1.818182 +L 0.363636,1.818182,0.363636,0.727273 +L 0.363636,0.727273,1.090909,0 +L 3.272727,0,2.545455,-0.727273 +L 2.545455,-0.727273,2.545455,-1.454545 +L 2.545455,-1.454545,2.909091,-1.818182 +L 2.909091,-1.818182,3.272727,-1.454545 +L 3.272727,-1.454545,2.909091,-1.090909 +L 2.909091,-1.090909,2.545455,-1.454545 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[#0142] 11 +L 1.454545,4.727273,0.363636,0.727273 +L 0.363636,0.727273,0.363636,0.363636 +L 0.363636,0.363636,0.727273,0 +L 0.727273,0,1.454545,0 +L 1.454545,0,1.818182,0.363636 +L 1.818182,0.363636,2.181818,1.090909 +L 1.818182,4.727273,0.727273,0.727273 +L 0.727273,0.727273,0.727273,0.363636 +L 0.727273,0.363636,1.090909,0 +L 0.727273,4.727273,1.818182,4.727273 +L 0,1.818182,2.181818,3.272727 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[#015B] 26 +L 2.909091,2.909091,2.909091,2.545455 +L 2.909091,2.545455,3.272727,2.545455 +L 3.272727,2.545455,2.909091,2.909091 +L 2.909091,2.909091,2.181818,3.272727 +L 2.181818,3.272727,1.090909,3.272727 +L 1.090909,3.272727,0.363636,2.909091 +L 0.363636,2.909091,0.363636,2.181818 +L 0.363636,2.181818,1.090909,1.818182 +L 1.090909,1.818182,2.181818,1.454545 +L 2.181818,1.454545,2.909091,1.090909 +L 0.363636,2.545455,1.090909,2.181818 +L 1.090909,2.181818,2.181818,1.818182 +L 2.181818,1.818182,2.909091,1.454545 +L 2.909091,1.454545,2.909091,0.363636 +L 2.909091,0.363636,2.181818,0 +L 2.181818,0,1.090909,0 +L 1.090909,0,0.363636,0.363636 +L 0.363636,0.363636,0,0.727273 +L 0,0.727273,0.363636,0.727273 +L 0.363636,0.727273,0.363636,0.363636 +L 2.545455,5.454545,2.181818,5.090909 +L 2.181818,5.090909,1.818182,5.454545 +L 1.818182,5.454545,2.181818,5.818182 +L 2.181818,5.818182,2.545455,5.454545 +L 2.545455,5.454545,2.545455,4.727273 +L 2.545455,4.727273,1.818182,4 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[#017A] 23 +L 3.636364,3.272727,3.636364,2.909091 +L 3.636364,2.909091,3.272727,2.545455 +L 3.272727,2.545455,0.363636,0.727273 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0,0 +L 0.363636,2.545455,0.727273,3.272727 +L 0.727273,3.272727,1.818182,3.272727 +L 1.818182,3.272727,2.909091,2.545455 +L 0.727273,2.909091,1.818182,2.909091 +L 1.818182,2.909091,2.909091,2.545455 +L 2.909091,2.545455,3.272727,2.545455 +L 0.363636,0.727273,0.727273,0.727273 +L 0.727273,0.727273,1.818182,0.363636 +L 1.818182,0.363636,2.909091,0.363636 +L 0.727273,0.727273,1.818182,0 +L 1.818182,0,2.909091,0 +L 2.909091,0,3.272727,0.727273 +L 2.909091,5.454545,2.545455,5.090909 +L 2.545455,5.090909,2.181818,5.454545 +L 2.181818,5.454545,2.545455,5.818182 +L 2.545455,5.818182,2.909091,5.454545 +L 2.909091,5.454545,2.909091,4.727273 +L 2.909091,4.727273,2.181818,4 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[#017C] 21 +L 3.636364,3.272727,3.636364,2.909091 +L 3.636364,2.909091,3.272727,2.545455 +L 3.272727,2.545455,0.363636,0.727273 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0,0 +L 0.363636,2.545455,0.727273,3.272727 +L 0.727273,3.272727,1.818182,3.272727 +L 1.818182,3.272727,2.909091,2.545455 +L 0.727273,2.909091,1.818182,2.909091 +L 1.818182,2.909091,2.909091,2.545455 +L 2.909091,2.545455,3.272727,2.545455 +L 0.363636,0.727273,0.727273,0.727273 +L 0.727273,0.727273,1.818182,0.363636 +L 1.818182,0.363636,2.909091,0.363636 +L 0.727273,0.727273,1.818182,0 +L 1.818182,0,2.909091,0 +L 2.909091,0,3.272727,0.727273 +L 2.181818,4.727273,1.818182,4.363636 +L 1.818182,4.363636,2.181818,4 +L 2.181818,4,2.545455,4.363636 +L 2.545455,4.363636,2.181818,4.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[#0106] 27 +L 3.272727,4.363636,3.636364,4.363636 +L 3.636364,4.363636,4,4.727273 +L 4,4.727273,3.636364,3.636364 +L 3.636364,3.636364,3.272727,4.363636 +L 3.272727,4.363636,2.545455,4.727273 +L 2.545455,4.727273,1.818182,4.727273 +L 1.818182,4.727273,1.090909,4.363636 +L 1.090909,4.363636,0.727273,4 +L 0.727273,4,0.363636,3.272727 +L 0.363636,3.272727,0,2.181818 +L 0,2.181818,0,1.090909 +L 0,1.090909,0.363636,0.363636 +L 0.363636,0.363636,1.090909,0 +L 1.090909,0,1.818182,0 +L 1.818182,0,2.545455,0.363636 +L 2.545455,0.363636,2.909091,1.090909 +L 1.818182,4.727273,1.090909,4 +L 1.090909,4,0.727273,3.272727 +L 0.727273,3.272727,0.363636,2.181818 +L 0.363636,2.181818,0.363636,0.727273 +L 0.363636,0.727273,1.090909,0 +L 2.909091,6.909091,2.545455,6.545455 +L 2.545455,6.545455,2.181818,6.909091 +L 2.181818,6.909091,2.545455,7.272727 +L 2.545455,7.272727,2.909091,6.909091 +L 2.909091,6.909091,2.909091,6.181818 +L 2.909091,6.181818,2.181818,5.454545 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[#0118] 16 +L 2.181818,4.727273,0.727273,0 +L 2.545455,4.727273,1.090909,0 +L 3.272727,3.272727,2.909091,1.818182 +L 1.454545,4.727273,5.090909,4.727273 +L 5.090909,4.727273,4.727273,3.636364 +L 4.727273,3.636364,4.727273,4.727273 +L 1.818182,2.545455,2.909091,2.545455 +L 0,0,3.636364,0 +L 3.636364,0,4,1.090909 +L 4,1.090909,3.272727,0 +L 2.909091,0,2.181818,-0.727273 +L 2.181818,-0.727273,2.181818,-1.454545 +L 2.181818,-1.454545,2.545455,-1.818182 +L 2.545455,-1.818182,2.909091,-1.454545 +L 2.909091,-1.454545,2.545455,-1.090909 +L 2.545455,-1.090909,2.181818,-1.454545 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[#0143] 13 +L 2.181818,4.727273,0.727273,0 +L 2.181818,4.727273,3.636364,0 +L 2.545455,4.727273,3.636364,1.090909 +L 5.090909,4.727273,3.636364,0 +L 1.454545,4.727273,2.545455,4.727273 +L 4.363636,4.727273,5.818182,4.727273 +L 0,0,1.454545,0 +L 4.363636,6.909091,4,6.545455 +L 4,6.545455,3.636364,6.909091 +L 3.636364,6.909091,4,7.272727 +L 4,7.272727,4.363636,6.909091 +L 4.363636,6.909091,4.363636,6.181818 +L 4.363636,6.181818,3.636364,5.454545 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[#00D3] 32 +L 1.818182,4.727273,1.090909,4.363636 +L 1.090909,4.363636,0.727273,4 +L 0.727273,4,0.363636,3.272727 +L 0.363636,3.272727,0,2.181818 +L 0,2.181818,0,1.090909 +L 0,1.090909,0.363636,0.363636 +L 0.363636,0.363636,1.090909,0 +L 1.090909,0,1.818182,0 +L 1.818182,0,2.545455,0.363636 +L 2.545455,0.363636,2.909091,0.727273 +L 2.909091,0.727273,3.272727,1.454545 +L 3.272727,1.454545,3.636364,2.545455 +L 3.636364,2.545455,3.636364,3.636364 +L 3.636364,3.636364,3.272727,4.363636 +L 3.272727,4.363636,2.545455,4.727273 +L 2.545455,4.727273,1.818182,4.727273 +L 1.818182,4.727273,1.090909,4 +L 1.090909,4,0.727273,3.272727 +L 0.727273,3.272727,0.363636,2.181818 +L 0.363636,2.181818,0.363636,0.727273 +L 0.363636,0.727273,1.090909,0 +L 1.818182,0,2.545455,0.727273 +L 2.545455,0.727273,2.909091,1.454545 +L 2.909091,1.454545,3.272727,2.545455 +L 3.272727,2.545455,3.272727,4 +L 3.272727,4,2.545455,4.727273 +L 2.909091,6.909091,2.545455,6.545455 +L 2.545455,6.545455,2.181818,6.909091 +L 2.181818,6.909091,2.545455,7.272727 +L 2.545455,7.272727,2.909091,6.909091 +L 2.909091,6.909091,2.909091,6.181818 +L 2.909091,6.181818,2.181818,5.454545 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[#0107] 24 +L 2.909091,2.909091,2.909091,2.545455 +L 2.909091,2.545455,3.272727,2.545455 +L 3.272727,2.545455,2.909091,2.909091 +L 2.909091,2.909091,2.181818,3.272727 +L 2.181818,3.272727,1.454545,3.272727 +L 1.454545,3.272727,0.727273,2.909091 +L 0.727273,2.909091,0.363636,2.545455 +L 0.363636,2.545455,0,1.818182 +L 0,1.818182,0,1.090909 +L 0,1.090909,0.363636,0.363636 +L 0.363636,0.363636,1.090909,0 +L 1.090909,0,1.818182,0 +L 1.818182,0,2.545455,0.363636 +L 2.545455,0.363636,2.909091,0.727273 +L 1.454545,3.272727,0.727273,2.545455 +L 0.727273,2.545455,0.363636,1.818182 +L 0.363636,1.818182,0.363636,0.727273 +L 0.363636,0.727273,1.090909,0 +L 2.545455,5.454545,2.181818,5.090909 +L 2.181818,5.090909,1.818182,5.454545 +L 1.818182,5.454545,2.181818,5.818182 +L 2.181818,5.818182,2.545455,5.454545 +L 2.545455,5.454545,2.545455,4.727273 +L 2.545455,4.727273,1.818182,4 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[#0119] 25 +L 0.363636,1.090909,1.818182,1.454545 +L 1.818182,1.454545,2.545455,1.818182 +L 2.545455,1.818182,2.909091,2.181818 +L 2.909091,2.181818,2.909091,2.909091 +L 2.909091,2.909091,2.181818,3.272727 +L 2.181818,3.272727,1.454545,3.272727 +L 1.454545,3.272727,0.727273,2.909091 +L 0.727273,2.909091,0.363636,2.545455 +L 0.363636,2.545455,0,1.818182 +L 0,1.818182,0,1.090909 +L 0,1.090909,0.363636,0.363636 +L 0.363636,0.363636,1.090909,0 +L 1.090909,0,1.818182,0 +L 1.818182,0,2.545455,0.363636 +L 2.545455,0.363636,2.909091,0.727273 +L 1.454545,3.272727,0.727273,2.545455 +L 0.727273,2.545455,0.363636,1.818182 +L 0.363636,1.818182,0.363636,0.727273 +L 0.363636,0.727273,1.090909,0 +L 1.818182,0,1.090909,-0.727273 +L 1.090909,-0.727273,1.090909,-1.454545 +L 1.090909,-1.454545,1.454545,-1.818182 +L 1.454545,-1.818182,1.818182,-1.454545 +L 1.818182,-1.454545,1.454545,-1.090909 +L 1.454545,-1.090909,1.090909,-1.454545 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[#0144] 31 +L 0,2.181818,0.363636,2.909091 +L 0.363636,2.909091,0.727273,3.272727 +L 0.727273,3.272727,1.454545,3.272727 +L 1.454545,3.272727,1.818182,2.909091 +L 1.818182,2.909091,1.818182,2.545455 +L 1.818182,2.545455,1.090909,0 +L 1.090909,3.272727,1.454545,2.909091 +L 1.454545,2.909091,1.454545,2.545455 +L 1.454545,2.545455,0.727273,0 +L 1.818182,2.545455,2.181818,2.909091 +L 2.181818,2.909091,2.909091,3.272727 +L 2.909091,3.272727,3.636364,3.272727 +L 3.636364,3.272727,4.363636,2.909091 +L 4.363636,2.909091,4.363636,2.181818 +L 4.363636,2.181818,4,1.090909 +L 4,1.090909,4,0.363636 +L 4,0.363636,4.363636,0 +L 3.636364,3.272727,4,2.909091 +L 4,2.909091,4,2.181818 +L 4,2.181818,3.636364,1.090909 +L 3.636364,1.090909,3.636364,0.363636 +L 3.636364,0.363636,4,0 +L 4,0,4.727273,0 +L 4.727273,0,5.090909,0.363636 +L 5.090909,0.363636,5.454545,1.090909 +L 4,5.454545,3.636364,5.090909 +L 3.636364,5.090909,3.272727,5.454545 +L 3.272727,5.454545,3.636364,5.818182 +L 3.636364,5.818182,4,5.454545 +L 4,5.454545,4,4.727273 +L 4,4.727273,3.272727,4 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[#00F3] 28 +L 1.454545,3.272727,0.727273,2.909091 +L 0.727273,2.909091,0.363636,2.545455 +L 0.363636,2.545455,0,1.818182 +L 0,1.818182,0,1.090909 +L 0,1.090909,0.363636,0.363636 +L 0.363636,0.363636,1.090909,0 +L 1.090909,0,1.818182,0 +L 1.818182,0,2.545455,0.363636 +L 2.545455,0.363636,2.909091,0.727273 +L 2.909091,0.727273,3.272727,1.454545 +L 3.272727,1.454545,3.272727,2.181818 +L 3.272727,2.181818,2.909091,2.909091 +L 2.909091,2.909091,2.181818,3.272727 +L 2.181818,3.272727,1.454545,3.272727 +L 1.454545,3.272727,0.727273,2.545455 +L 0.727273,2.545455,0.363636,1.818182 +L 0.363636,1.818182,0.363636,0.727273 +L 0.363636,0.727273,1.090909,0 +L 1.818182,0,2.545455,0.727273 +L 2.545455,0.727273,2.909091,1.454545 +L 2.909091,1.454545,2.909091,2.545455 +L 2.909091,2.545455,2.181818,3.272727 +L 2.545455,5.454545,2.181818,5.090909 +L 2.181818,5.090909,1.818182,5.454545 +L 1.818182,5.454545,2.181818,5.818182 +L 2.181818,5.818182,2.545455,5.454545 +L 2.545455,5.454545,2.545455,4.727273 +L 2.545455,4.727273,1.818182,4 + +#EOF diff --git a/pycam/share/fonts/italict.cxf b/pycam/share/fonts/italict.cxf new file mode 100644 index 00000000..37909f17 --- /dev/null +++ b/pycam/share/fonts/italict.cxf @@ -0,0 +1,4820 @@ +# Format: QCad II Font +# Creator: Adam Radlowski's "dodajf" program - GRASS font translator +# Version: 1.0.0 +# Name: Italian Triplex +# LetterSpacing: 3.0 +# WordSpacing: 6.75 +# LineSpacingFactor: 1.0 +# Author: Hershey fonts +# Author: Adam Radlowski (Polish) + +[!] 22 +L 1.69697,5.090909,1.454545,5.090909 +L 1.454545,5.090909,1.212121,4.848485 +L 1.212121,4.848485,0.727273,1.69697 +L 1.69697,4.848485,1.454545,4.848485 +L 1.454545,4.848485,0.727273,1.69697 +L 1.69697,4.848485,1.69697,4.606061 +L 1.69697,4.606061,0.727273,1.69697 +L 1.69697,5.090909,1.939394,4.848485 +L 1.939394,4.848485,1.939394,4.606061 +L 1.939394,4.606061,0.727273,1.69697 +L 0.242424,0.727273,0,0.484848 +L 0,0.484848,0,0.242424 +L 0,0.242424,0.242424,0 +L 0.242424,0,0.484848,0 +L 0.484848,0,0.727273,0.242424 +L 0.727273,0.242424,0.727273,0.484848 +L 0.727273,0.484848,0.484848,0.727273 +L 0.484848,0.727273,0.242424,0.727273 +L 0.242424,0.484848,0.242424,0.242424 +L 0.242424,0.242424,0.484848,0.242424 +L 0.484848,0.242424,0.484848,0.484848 +L 0.484848,0.484848,0.242424,0.484848 + +["] 10 +L 0.727273,5.090909,0.484848,4.848485 +L 0.484848,4.848485,0,3.393939 +L 0.727273,4.848485,0,3.393939 +L 0.727273,5.090909,0.969697,4.848485 +L 0.969697,4.848485,0,3.393939 +L 3.151515,5.090909,2.909091,4.848485 +L 2.909091,4.848485,2.424242,3.393939 +L 3.151515,4.848485,2.424242,3.393939 +L 3.151515,5.090909,3.393939,4.848485 +L 3.393939,4.848485,2.424242,3.393939 + +[#] 4 +L 1.939394,5.090909,0.242424,-1.69697 +L 3.393939,5.090909,1.69697,-1.69697 +L 0.242424,2.424242,3.636364,2.424242 +L 0,0.969697,3.393939,0.969697 + +[$] 42 +L 2.424242,6.060606,0.484848,-0.969697 +L 3.636364,6.060606,1.69697,-0.969697 +L 3.878788,3.878788,3.878788,4.121212 +L 3.878788,4.121212,3.636364,4.121212 +L 3.636364,4.121212,3.636364,3.636364 +L 3.636364,3.636364,4.121212,3.636364 +L 4.121212,3.636364,4.121212,4.121212 +L 4.121212,4.121212,3.878788,4.606061 +L 3.878788,4.606061,3.636364,4.848485 +L 3.636364,4.848485,2.909091,5.090909 +L 2.909091,5.090909,1.939394,5.090909 +L 1.939394,5.090909,1.212121,4.848485 +L 1.212121,4.848485,0.727273,4.363636 +L 0.727273,4.363636,0.727273,3.636364 +L 0.727273,3.636364,0.969697,3.151515 +L 0.969697,3.151515,1.454545,2.666667 +L 1.454545,2.666667,2.909091,1.939394 +L 2.909091,1.939394,3.151515,1.454545 +L 3.151515,1.454545,3.151515,0.727273 +L 3.151515,0.727273,2.909091,0.242424 +L 0.969697,3.636364,1.212121,3.151515 +L 1.212121,3.151515,2.909091,2.181818 +L 2.909091,2.181818,3.151515,1.69697 +L 1.212121,4.848485,0.969697,4.363636 +L 0.969697,4.363636,0.969697,3.878788 +L 0.969697,3.878788,1.212121,3.393939 +L 1.212121,3.393939,2.666667,2.666667 +L 2.666667,2.666667,3.151515,2.181818 +L 3.151515,2.181818,3.393939,1.69697 +L 3.393939,1.69697,3.393939,0.969697 +L 3.393939,0.969697,3.151515,0.484848 +L 3.151515,0.484848,2.909091,0.242424 +L 2.909091,0.242424,2.181818,0 +L 2.181818,0,1.212121,0 +L 1.212121,0,0.484848,0.242424 +L 0.484848,0.242424,0.242424,0.484848 +L 0.242424,0.484848,0,0.969697 +L 0,0.969697,0,1.454545 +L 0,1.454545,0.484848,1.454545 +L 0.484848,1.454545,0.484848,0.969697 +L 0.484848,0.969697,0.242424,0.969697 +L 0.242424,0.969697,0.242424,1.212121 + +[%] 26 +L 4.363636,5.090909,0,0 +L 1.212121,5.090909,1.69697,4.606061 +L 1.69697,4.606061,1.69697,4.121212 +L 1.69697,4.121212,1.454545,3.636364 +L 1.454545,3.636364,0.969697,3.393939 +L 0.969697,3.393939,0.484848,3.393939 +L 0.484848,3.393939,0,3.878788 +L 0,3.878788,0,4.363636 +L 0,4.363636,0.242424,4.848485 +L 0.242424,4.848485,0.727273,5.090909 +L 0.727273,5.090909,1.212121,5.090909 +L 1.212121,5.090909,1.69697,4.848485 +L 1.69697,4.848485,2.424242,4.606061 +L 2.424242,4.606061,3.151515,4.606061 +L 3.151515,4.606061,3.878788,4.848485 +L 3.878788,4.848485,4.363636,5.090909 +L 3.393939,1.69697,2.909091,1.454545 +L 2.909091,1.454545,2.666667,0.969697 +L 2.666667,0.969697,2.666667,0.484848 +L 2.666667,0.484848,3.151515,0 +L 3.151515,0,3.636364,0 +L 3.636364,0,4.121212,0.242424 +L 4.121212,0.242424,4.363636,0.727273 +L 4.363636,0.727273,4.363636,1.212121 +L 4.363636,1.212121,3.878788,1.69697 +L 3.878788,1.69697,3.393939,1.69697 + +[&] 60 +L 5.090909,2.909091,5.090909,3.151515 +L 5.090909,3.151515,4.848485,3.151515 +L 4.848485,3.151515,4.848485,2.666667 +L 4.848485,2.666667,5.333333,2.666667 +L 5.333333,2.666667,5.333333,3.151515 +L 5.333333,3.151515,5.090909,3.393939 +L 5.090909,3.393939,4.848485,3.393939 +L 4.848485,3.393939,4.363636,3.151515 +L 4.363636,3.151515,3.878788,2.666667 +L 3.878788,2.666667,2.666667,0.727273 +L 2.666667,0.727273,2.181818,0.242424 +L 2.181818,0.242424,1.69697,0 +L 1.69697,0,0.969697,0 +L 0.969697,0,0.242424,0.242424 +L 0.242424,0.242424,0,0.727273 +L 0,0.727273,0,1.212121 +L 0,1.212121,0.242424,1.69697 +L 0.242424,1.69697,0.484848,1.939394 +L 0.484848,1.939394,0.969697,2.181818 +L 0.969697,2.181818,2.181818,2.666667 +L 2.181818,2.666667,2.666667,2.909091 +L 2.666667,2.909091,3.151515,3.393939 +L 3.151515,3.393939,3.393939,3.878788 +L 3.393939,3.878788,3.393939,4.363636 +L 3.393939,4.363636,3.151515,4.848485 +L 3.151515,4.848485,2.666667,5.090909 +L 2.666667,5.090909,2.181818,4.848485 +L 2.181818,4.848485,1.939394,4.363636 +L 1.939394,4.363636,1.939394,3.636364 +L 1.939394,3.636364,2.181818,2.181818 +L 2.181818,2.181818,2.424242,1.454545 +L 2.424242,1.454545,2.666667,0.969697 +L 2.666667,0.969697,3.151515,0.242424 +L 3.151515,0.242424,3.636364,0 +L 3.636364,0,4.121212,0 +L 4.121212,0,4.363636,0.484848 +L 4.363636,0.484848,4.363636,0.727273 +L 1.212121,0,0.242424,0.242424 +L 0.484848,0.242424,0.242424,0.727273 +L 0.242424,0.727273,0.242424,1.212121 +L 0.242424,1.212121,0.484848,1.69697 +L 0.484848,1.69697,0.727273,1.939394 +L 0.727273,1.939394,1.212121,2.181818 +L 2.181818,2.666667,2.424242,1.939394 +L 2.424242,1.939394,3.151515,0.484848 +L 3.151515,0.484848,3.636364,0.242424 +L 0.969697,0,0.727273,0.242424 +L 0.727273,0.242424,0.484848,0.727273 +L 0.484848,0.727273,0.484848,1.212121 +L 0.484848,1.212121,0.727273,1.69697 +L 0.727273,1.69697,0.969697,1.939394 +L 0.969697,1.939394,1.454545,2.181818 +L 1.454545,2.181818,2.666667,2.909091 +L 1.939394,3.636364,2.181818,2.909091 +L 2.181818,2.909091,2.424242,2.181818 +L 2.424242,2.181818,2.909091,1.212121 +L 2.909091,1.212121,3.393939,0.484848 +L 3.393939,0.484848,3.878788,0.242424 +L 3.878788,0.242424,4.121212,0.242424 +L 4.121212,0.242424,4.363636,0.484848 + +['] 16 +L 0.727273,4.363636,0.484848,4.363636 +L 0.484848,4.363636,0.242424,4.606061 +L 0.242424,4.606061,0.242424,4.848485 +L 0.242424,4.848485,0.484848,5.090909 +L 0.484848,5.090909,0.727273,5.090909 +L 0.727273,5.090909,0.969697,4.848485 +L 0.969697,4.848485,0.969697,4.363636 +L 0.969697,4.363636,0.727273,3.878788 +L 0.727273,3.878788,0.484848,3.636364 +L 0.484848,3.636364,0,3.393939 +L 0.484848,4.848485,0.484848,4.606061 +L 0.484848,4.606061,0.727273,4.606061 +L 0.727273,4.606061,0.727273,4.848485 +L 0.727273,4.848485,0.484848,4.848485 +L 0.727273,4.363636,0.727273,4.121212 +L 0.727273,4.121212,0.484848,3.636364 + +[(] 24 +L 3.151515,6.060606,2.666667,5.818182 +L 2.666667,5.818182,1.939394,5.333333 +L 1.939394,5.333333,1.212121,4.606061 +L 1.212121,4.606061,0.727273,3.878788 +L 0.727273,3.878788,0.242424,2.909091 +L 0.242424,2.909091,0,1.939394 +L 0,1.939394,0,0.727273 +L 0,0.727273,0.242424,-0.242424 +L 0.242424,-0.242424,0.484848,-0.969697 +L 0.484848,-0.969697,0.969697,-1.69697 +L 1.454545,4.606061,0.969697,3.878788 +L 0.969697,3.878788,0.484848,2.909091 +L 0.484848,2.909091,0.242424,1.69697 +L 0.242424,1.69697,0.242424,-0.242424 +L 3.151515,6.060606,2.424242,5.575758 +L 2.424242,5.575758,1.69697,4.848485 +L 1.69697,4.848485,1.212121,4.121212 +L 1.212121,4.121212,0.969697,3.636364 +L 0.969697,3.636364,0.727273,2.909091 +L 0.727273,2.909091,0.484848,1.939394 +L 0.484848,1.939394,0.242424,-0.242424 +L 0.242424,1.69697,0.484848,-0.484848 +L 0.484848,-0.484848,0.727273,-1.212121 +L 0.727273,-1.212121,0.969697,-1.69697 + +[)] 24 +L 2.181818,6.060606,2.666667,5.333333 +L 2.666667,5.333333,2.909091,4.606061 +L 2.909091,4.606061,3.151515,3.636364 +L 3.151515,3.636364,3.151515,2.424242 +L 3.151515,2.424242,2.909091,1.454545 +L 2.909091,1.454545,2.424242,0.484848 +L 2.424242,0.484848,1.939394,-0.242424 +L 1.939394,-0.242424,1.212121,-0.969697 +L 1.212121,-0.969697,0.484848,-1.454545 +L 0.484848,-1.454545,0,-1.69697 +L 2.909091,4.606061,2.909091,2.666667 +L 2.909091,2.666667,2.666667,1.454545 +L 2.666667,1.454545,2.181818,0.484848 +L 2.181818,0.484848,1.69697,-0.242424 +L 2.181818,6.060606,2.424242,5.575758 +L 2.424242,5.575758,2.666667,4.848485 +L 2.666667,4.848485,2.909091,2.666667 +L 2.909091,4.606061,2.666667,2.424242 +L 2.666667,2.424242,2.424242,1.454545 +L 2.424242,1.454545,2.181818,0.727273 +L 2.181818,0.727273,1.939394,0.242424 +L 1.939394,0.242424,1.454545,-0.484848 +L 1.454545,-0.484848,0.727273,-1.212121 +L 0.727273,-1.212121,0,-1.69697 + +[*] 21 +L 1.212121,5.090909,0.969697,4.848485 +L 0.969697,4.848485,1.454545,2.424242 +L 1.454545,2.424242,1.212121,2.181818 +L 1.212121,5.090909,1.212121,2.181818 +L 1.212121,5.090909,1.454545,4.848485 +L 1.454545,4.848485,0.969697,2.424242 +L 0.969697,2.424242,1.212121,2.181818 +L 0,4.363636,0.242424,4.363636 +L 0.242424,4.363636,2.181818,2.909091 +L 2.181818,2.909091,2.424242,2.909091 +L 0,4.363636,2.424242,2.909091 +L 0,4.363636,0,4.121212 +L 0,4.121212,2.424242,3.151515 +L 2.424242,3.151515,2.424242,2.909091 +L 2.424242,4.363636,2.181818,4.363636 +L 2.181818,4.363636,0.242424,2.909091 +L 0.242424,2.909091,0,2.909091 +L 2.424242,4.363636,0,2.909091 +L 2.424242,4.363636,2.424242,4.121212 +L 2.424242,4.121212,0,3.151515 +L 0,3.151515,0,2.909091 + +[+] 8 +L 1.939394,4.363636,1.939394,0.242424 +L 1.939394,0.242424,2.181818,0.242424 +L 1.939394,4.363636,2.181818,4.363636 +L 2.181818,4.363636,2.181818,0.242424 +L 0,2.424242,4.121212,2.424242 +L 4.121212,2.424242,4.121212,2.181818 +L 0,2.424242,0,2.181818 +L 0,2.181818,4.121212,2.181818 + +[,] 16 +L 0.727273,0,0.484848,0 +L 0.484848,0,0.242424,0.242424 +L 0.242424,0.242424,0.242424,0.484848 +L 0.242424,0.484848,0.484848,0.727273 +L 0.484848,0.727273,0.727273,0.727273 +L 0.727273,0.727273,0.969697,0.484848 +L 0.969697,0.484848,0.969697,0 +L 0.969697,0,0.727273,-0.484848 +L 0.727273,-0.484848,0.484848,-0.727273 +L 0.484848,-0.727273,0,-0.969697 +L 0.484848,0.484848,0.484848,0.242424 +L 0.484848,0.242424,0.727273,0.242424 +L 0.727273,0.242424,0.727273,0.484848 +L 0.727273,0.484848,0.484848,0.484848 +L 0.727273,0,0.727273,-0.242424 +L 0.727273,-0.242424,0.484848,-0.727273 + +[-] 4 +L 0,2.424242,4.121212,2.424242 +L 4.121212,2.424242,4.121212,2.181818 +L 0,2.424242,0,2.181818 +L 0,2.181818,4.121212,2.181818 + +[.] 12 +L 0.242424,0.727273,0,0.484848 +L 0,0.484848,0,0.242424 +L 0,0.242424,0.242424,0 +L 0.242424,0,0.484848,0 +L 0.484848,0,0.727273,0.242424 +L 0.727273,0.242424,0.727273,0.484848 +L 0.727273,0.484848,0.484848,0.727273 +L 0.484848,0.727273,0.242424,0.727273 +L 0.242424,0.484848,0.242424,0.242424 +L 0.242424,0.242424,0.484848,0.242424 +L 0.484848,0.242424,0.484848,0.484848 +L 0.484848,0.484848,0.242424,0.484848 + +[/] 4 +L 2.424242,6.060606,0,-1.69697 +L 0,-1.69697,0,-1.69697 +L 2.424242,6.060606,2.424242,6.060606 +L 2.424242,6.060606,0,-1.69697 + +[0] 48 +L 2.181818,5.090909,1.454545,4.848485 +L 1.454545,4.848485,0.969697,4.363636 +L 0.969697,4.363636,0.484848,3.636364 +L 0.484848,3.636364,0.242424,2.909091 +L 0.242424,2.909091,0,1.939394 +L 0,1.939394,0,1.212121 +L 0,1.212121,0.242424,0.484848 +L 0.242424,0.484848,0.484848,0.242424 +L 0.484848,0.242424,0.969697,0 +L 0.969697,0,1.454545,0 +L 1.454545,0,2.181818,0.242424 +L 2.181818,0.242424,2.666667,0.727273 +L 2.666667,0.727273,3.151515,1.454545 +L 3.151515,1.454545,3.393939,2.181818 +L 3.393939,2.181818,3.636364,3.151515 +L 3.636364,3.151515,3.636364,3.878788 +L 3.636364,3.878788,3.393939,4.606061 +L 3.393939,4.606061,3.151515,4.848485 +L 3.151515,4.848485,2.666667,5.090909 +L 2.666667,5.090909,2.181818,5.090909 +L 1.454545,4.606061,0.969697,4.121212 +L 0.969697,4.121212,0.727273,3.636364 +L 0.727273,3.636364,0.484848,2.909091 +L 0.484848,2.909091,0.242424,1.939394 +L 0.242424,1.939394,0.242424,0.969697 +L 0.242424,0.969697,0.484848,0.484848 +L 2.181818,0.484848,2.666667,0.969697 +L 2.666667,0.969697,2.909091,1.454545 +L 2.909091,1.454545,3.151515,2.181818 +L 3.151515,2.181818,3.393939,3.151515 +L 3.393939,3.151515,3.393939,4.121212 +L 3.393939,4.121212,3.151515,4.606061 +L 2.181818,5.090909,1.69697,4.848485 +L 1.69697,4.848485,1.212121,4.121212 +L 1.212121,4.121212,0.969697,3.636364 +L 0.969697,3.636364,0.727273,2.909091 +L 0.727273,2.909091,0.484848,1.939394 +L 0.484848,1.939394,0.484848,0.727273 +L 0.484848,0.727273,0.727273,0.242424 +L 0.727273,0.242424,0.969697,0 +L 1.454545,0,1.939394,0.242424 +L 1.939394,0.242424,2.424242,0.969697 +L 2.424242,0.969697,2.666667,1.454545 +L 2.666667,1.454545,2.909091,2.181818 +L 2.909091,2.181818,3.151515,3.151515 +L 3.151515,3.151515,3.151515,4.363636 +L 3.151515,4.363636,2.909091,4.848485 +L 2.909091,4.848485,2.666667,5.090909 + +[1] 10 +L 1.212121,4.121212,0,0 +L 0,0,0.484848,0 +L 1.939394,5.090909,1.454545,4.121212 +L 1.454545,4.121212,0.242424,0 +L 1.939394,5.090909,0.484848,0 +L 1.939394,5.090909,1.212121,4.363636 +L 1.212121,4.363636,0.484848,3.878788 +L 0.484848,3.878788,0,3.636364 +L 1.212121,4.121212,0.727273,3.878788 +L 0.727273,3.878788,0,3.636364 + +[2] 40 +L 1.454545,3.878788,1.454545,4.121212 +L 1.454545,4.121212,1.69697,4.121212 +L 1.69697,4.121212,1.69697,3.636364 +L 1.69697,3.636364,1.212121,3.636364 +L 1.212121,3.636364,1.212121,4.121212 +L 1.212121,4.121212,1.454545,4.606061 +L 1.454545,4.606061,1.69697,4.848485 +L 1.69697,4.848485,2.424242,5.090909 +L 2.424242,5.090909,3.151515,5.090909 +L 3.151515,5.090909,3.878788,4.848485 +L 3.878788,4.848485,4.121212,4.363636 +L 4.121212,4.363636,4.121212,3.878788 +L 4.121212,3.878788,3.878788,3.393939 +L 3.878788,3.393939,3.393939,2.909091 +L 3.393939,2.909091,0.969697,1.454545 +L 0.969697,1.454545,0.484848,0.969697 +L 0.484848,0.969697,0,0 +L 3.636364,4.848485,3.878788,4.363636 +L 3.878788,4.363636,3.878788,3.878788 +L 3.878788,3.878788,3.636364,3.393939 +L 3.636364,3.393939,3.151515,2.909091 +L 3.151515,2.909091,2.424242,2.424242 +L 3.151515,5.090909,3.393939,4.848485 +L 3.393939,4.848485,3.636364,4.363636 +L 3.636364,4.363636,3.636364,3.878788 +L 3.636364,3.878788,3.393939,3.393939 +L 3.393939,3.393939,2.909091,2.909091 +L 2.909091,2.909091,0.969697,1.454545 +L 0.242424,0.484848,0.484848,0.727273 +L 0.484848,0.727273,0.969697,0.727273 +L 0.969697,0.727273,2.181818,0.484848 +L 2.181818,0.484848,3.393939,0.484848 +L 3.393939,0.484848,3.636364,0.727273 +L 0.969697,0.727273,2.181818,0.242424 +L 2.181818,0.242424,3.393939,0.242424 +L 0.969697,0.727273,2.181818,0 +L 2.181818,0,2.909091,0 +L 2.909091,0,3.393939,0.242424 +L 3.393939,0.242424,3.636364,0.727273 +L 3.636364,0.727273,3.636364,0.969697 + +[3] 52 +L 1.212121,3.878788,1.212121,4.121212 +L 1.212121,4.121212,1.454545,4.121212 +L 1.454545,4.121212,1.454545,3.636364 +L 1.454545,3.636364,0.969697,3.636364 +L 0.969697,3.636364,0.969697,4.121212 +L 0.969697,4.121212,1.212121,4.606061 +L 1.212121,4.606061,1.454545,4.848485 +L 1.454545,4.848485,2.181818,5.090909 +L 2.181818,5.090909,2.909091,5.090909 +L 2.909091,5.090909,3.636364,4.848485 +L 3.636364,4.848485,3.878788,4.363636 +L 3.878788,4.363636,3.878788,3.878788 +L 3.878788,3.878788,3.636364,3.393939 +L 3.636364,3.393939,3.393939,3.151515 +L 3.393939,3.151515,2.909091,2.909091 +L 2.909091,2.909091,2.181818,2.666667 +L 3.393939,4.848485,3.636364,4.363636 +L 3.636364,4.363636,3.636364,3.878788 +L 3.636364,3.878788,3.393939,3.393939 +L 3.393939,3.393939,3.151515,3.151515 +L 2.909091,5.090909,3.151515,4.848485 +L 3.151515,4.848485,3.393939,4.363636 +L 3.393939,4.363636,3.393939,3.878788 +L 3.393939,3.878788,3.151515,3.393939 +L 3.151515,3.393939,2.666667,2.909091 +L 2.666667,2.909091,2.181818,2.666667 +L 1.69697,2.666667,2.181818,2.666667 +L 2.181818,2.666667,2.909091,2.424242 +L 2.909091,2.424242,3.151515,2.181818 +L 3.151515,2.181818,3.393939,1.69697 +L 3.393939,1.69697,3.393939,0.969697 +L 3.393939,0.969697,3.151515,0.484848 +L 3.151515,0.484848,2.666667,0.242424 +L 2.666667,0.242424,1.939394,0 +L 1.939394,0,1.212121,0 +L 1.212121,0,0.484848,0.242424 +L 0.484848,0.242424,0.242424,0.484848 +L 0.242424,0.484848,0,0.969697 +L 0,0.969697,0,1.454545 +L 0,1.454545,0.484848,1.454545 +L 0.484848,1.454545,0.484848,0.969697 +L 0.484848,0.969697,0.242424,0.969697 +L 0.242424,0.969697,0.242424,1.212121 +L 2.909091,2.181818,3.151515,1.69697 +L 3.151515,1.69697,3.151515,0.969697 +L 3.151515,0.969697,2.909091,0.484848 +L 2.181818,2.666667,2.666667,2.424242 +L 2.666667,2.424242,2.909091,1.939394 +L 2.909091,1.939394,2.909091,0.969697 +L 2.909091,0.969697,2.666667,0.484848 +L 2.666667,0.484848,2.424242,0.242424 +L 2.424242,0.242424,1.939394,0 + +[4] 7 +L 3.151515,4.121212,1.939394,0 +L 1.939394,0,2.424242,0 +L 3.878788,5.090909,3.393939,4.121212 +L 3.393939,4.121212,2.181818,0 +L 3.878788,5.090909,2.424242,0 +L 3.878788,5.090909,0,1.454545 +L 0,1.454545,3.878788,1.454545 + +[5] 35 +L 1.69697,5.090909,0.484848,2.666667 +L 1.69697,5.090909,4.121212,5.090909 +L 1.69697,4.848485,3.636364,4.848485 +L 1.454545,4.606061,2.666667,4.606061 +L 2.666667,4.606061,3.636364,4.848485 +L 3.636364,4.848485,4.121212,5.090909 +L 0.484848,2.666667,0.727273,2.909091 +L 0.727273,2.909091,1.454545,3.151515 +L 1.454545,3.151515,2.181818,3.151515 +L 2.181818,3.151515,2.909091,2.909091 +L 2.909091,2.909091,3.151515,2.666667 +L 3.151515,2.666667,3.393939,2.181818 +L 3.393939,2.181818,3.393939,1.454545 +L 3.393939,1.454545,3.151515,0.727273 +L 3.151515,0.727273,2.666667,0.242424 +L 2.666667,0.242424,1.69697,0 +L 1.69697,0,0.969697,0 +L 0.969697,0,0.484848,0.242424 +L 0.484848,0.242424,0.242424,0.484848 +L 0.242424,0.484848,0,0.969697 +L 0,0.969697,0,1.454545 +L 0,1.454545,0.484848,1.454545 +L 0.484848,1.454545,0.484848,0.969697 +L 0.484848,0.969697,0.242424,0.969697 +L 0.242424,0.969697,0.242424,1.212121 +L 2.909091,2.666667,3.151515,2.181818 +L 3.151515,2.181818,3.151515,1.454545 +L 3.151515,1.454545,2.909091,0.727273 +L 2.909091,0.727273,2.424242,0.242424 +L 2.181818,3.151515,2.666667,2.909091 +L 2.666667,2.909091,2.909091,2.424242 +L 2.909091,2.424242,2.909091,1.454545 +L 2.909091,1.454545,2.666667,0.727273 +L 2.666667,0.727273,2.181818,0.242424 +L 2.181818,0.242424,1.69697,0 + +[6] 51 +L 3.393939,4.121212,3.393939,4.363636 +L 3.393939,4.363636,3.151515,4.363636 +L 3.151515,4.363636,3.151515,3.878788 +L 3.151515,3.878788,3.636364,3.878788 +L 3.636364,3.878788,3.636364,4.363636 +L 3.636364,4.363636,3.393939,4.848485 +L 3.393939,4.848485,2.909091,5.090909 +L 2.909091,5.090909,2.181818,5.090909 +L 2.181818,5.090909,1.454545,4.848485 +L 1.454545,4.848485,0.969697,4.363636 +L 0.969697,4.363636,0.484848,3.636364 +L 0.484848,3.636364,0.242424,2.909091 +L 0.242424,2.909091,0,1.939394 +L 0,1.939394,0,1.212121 +L 0,1.212121,0.242424,0.484848 +L 0.242424,0.484848,0.484848,0.242424 +L 0.484848,0.242424,0.969697,0 +L 0.969697,0,1.69697,0 +L 1.69697,0,2.424242,0.242424 +L 2.424242,0.242424,2.909091,0.727273 +L 2.909091,0.727273,3.151515,1.212121 +L 3.151515,1.212121,3.151515,1.939394 +L 3.151515,1.939394,2.909091,2.424242 +L 2.909091,2.424242,2.666667,2.666667 +L 2.666667,2.666667,2.181818,2.909091 +L 2.181818,2.909091,1.454545,2.909091 +L 1.454545,2.909091,0.969697,2.666667 +L 0.969697,2.666667,0.727273,2.424242 +L 0.727273,2.424242,0.484848,1.939394 +L 1.212121,4.363636,0.727273,3.636364 +L 0.727273,3.636364,0.484848,2.909091 +L 0.484848,2.909091,0.242424,1.939394 +L 0.242424,1.939394,0.242424,0.969697 +L 0.242424,0.969697,0.484848,0.484848 +L 2.666667,0.727273,2.909091,1.212121 +L 2.909091,1.212121,2.909091,1.939394 +L 2.909091,1.939394,2.666667,2.424242 +L 2.181818,5.090909,1.69697,4.848485 +L 1.69697,4.848485,1.212121,4.121212 +L 1.212121,4.121212,0.969697,3.636364 +L 0.969697,3.636364,0.727273,2.909091 +L 0.727273,2.909091,0.484848,1.939394 +L 0.484848,1.939394,0.484848,0.727273 +L 0.484848,0.727273,0.727273,0.242424 +L 0.727273,0.242424,0.969697,0 +L 1.69697,0,2.181818,0.242424 +L 2.181818,0.242424,2.424242,0.484848 +L 2.424242,0.484848,2.666667,1.212121 +L 2.666667,1.212121,2.666667,2.181818 +L 2.666667,2.181818,2.424242,2.666667 +L 2.424242,2.666667,2.181818,2.909091 + +[7] 25 +L 0.484848,5.090909,0,3.636364 +L 3.636364,5.090909,3.393939,4.363636 +L 3.393939,4.363636,2.909091,3.636364 +L 2.909091,3.636364,1.939394,2.424242 +L 1.939394,2.424242,1.454545,1.69697 +L 1.454545,1.69697,1.212121,0.969697 +L 1.212121,0.969697,0.969697,0 +L 1.454545,1.939394,0.969697,0.969697 +L 0.969697,0.969697,0.727273,0 +L 2.909091,3.636364,1.454545,2.181818 +L 1.454545,2.181818,0.969697,1.454545 +L 0.969697,1.454545,0.727273,0.969697 +L 0.727273,0.969697,0.484848,0 +L 0.484848,0,0.969697,0 +L 0.242424,4.363636,0.969697,5.090909 +L 0.969697,5.090909,1.454545,5.090909 +L 1.454545,5.090909,2.666667,4.363636 +L 0.727273,4.848485,1.454545,4.848485 +L 1.454545,4.848485,2.666667,4.363636 +L 0.242424,4.363636,0.727273,4.606061 +L 0.727273,4.606061,1.454545,4.606061 +L 1.454545,4.606061,2.666667,4.363636 +L 2.666667,4.363636,3.151515,4.363636 +L 3.151515,4.363636,3.393939,4.606061 +L 3.393939,4.606061,3.636364,5.090909 + +[8] 70 +L 2.181818,5.090909,1.454545,4.848485 +L 1.454545,4.848485,1.212121,4.606061 +L 1.212121,4.606061,0.969697,4.121212 +L 0.969697,4.121212,0.969697,3.393939 +L 0.969697,3.393939,1.212121,2.909091 +L 1.212121,2.909091,1.69697,2.666667 +L 1.69697,2.666667,2.424242,2.666667 +L 2.424242,2.666667,3.151515,2.909091 +L 3.151515,2.909091,3.636364,3.151515 +L 3.636364,3.151515,3.878788,3.636364 +L 3.878788,3.636364,3.878788,4.363636 +L 3.878788,4.363636,3.636364,4.848485 +L 3.636364,4.848485,3.151515,5.090909 +L 3.151515,5.090909,2.181818,5.090909 +L 2.666667,5.090909,1.454545,4.848485 +L 1.454545,4.606061,1.212121,4.121212 +L 1.212121,4.121212,1.212121,3.151515 +L 1.212121,3.151515,1.454545,2.909091 +L 1.212121,2.909091,1.939394,2.666667 +L 2.181818,2.666667,3.151515,2.909091 +L 3.393939,3.151515,3.636364,3.636364 +L 3.636364,3.636364,3.636364,4.363636 +L 3.636364,4.363636,3.393939,4.848485 +L 3.636364,4.848485,2.666667,5.090909 +L 2.181818,5.090909,1.69697,4.606061 +L 1.69697,4.606061,1.454545,4.121212 +L 1.454545,4.121212,1.454545,3.151515 +L 1.454545,3.151515,1.69697,2.666667 +L 2.424242,2.666667,2.909091,2.909091 +L 2.909091,2.909091,3.151515,3.151515 +L 3.151515,3.151515,3.393939,3.636364 +L 3.393939,3.636364,3.393939,4.606061 +L 3.393939,4.606061,3.151515,5.090909 +L 1.69697,2.666667,0.727273,2.424242 +L 0.727273,2.424242,0.242424,1.939394 +L 0.242424,1.939394,0,1.454545 +L 0,1.454545,0,0.727273 +L 0,0.727273,0.242424,0.242424 +L 0.242424,0.242424,0.969697,0 +L 0.969697,0,1.939394,0 +L 1.939394,0,2.909091,0.242424 +L 2.909091,0.242424,3.151515,0.484848 +L 3.151515,0.484848,3.393939,0.969697 +L 3.393939,0.969697,3.393939,1.69697 +L 3.393939,1.69697,3.151515,2.181818 +L 3.151515,2.181818,2.909091,2.424242 +L 2.909091,2.424242,2.424242,2.666667 +L 1.939394,2.666667,0.727273,2.424242 +L 0.969697,2.424242,0.484848,1.939394 +L 0.484848,1.939394,0.242424,1.454545 +L 0.242424,1.454545,0.242424,0.727273 +L 0.242424,0.727273,0.484848,0.242424 +L 0.242424,0.242424,1.454545,0 +L 1.454545,0,2.909091,0.242424 +L 2.909091,0.484848,3.151515,0.969697 +L 3.151515,0.969697,3.151515,1.69697 +L 3.151515,1.69697,2.909091,2.181818 +L 2.909091,2.424242,2.181818,2.666667 +L 1.69697,2.666667,1.212121,2.424242 +L 1.212121,2.424242,0.727273,1.939394 +L 0.727273,1.939394,0.484848,1.454545 +L 0.484848,1.454545,0.484848,0.727273 +L 0.484848,0.727273,0.727273,0.242424 +L 0.727273,0.242424,0.969697,0 +L 1.939394,0,2.424242,0.242424 +L 2.424242,0.242424,2.666667,0.484848 +L 2.666667,0.484848,2.909091,0.969697 +L 2.909091,0.969697,2.909091,1.939394 +L 2.909091,1.939394,2.666667,2.424242 +L 2.666667,2.424242,2.424242,2.666667 + +[9] 51 +L 3.151515,3.151515,2.909091,2.666667 +L 2.909091,2.666667,2.666667,2.424242 +L 2.666667,2.424242,2.181818,2.181818 +L 2.181818,2.181818,1.454545,2.181818 +L 1.454545,2.181818,0.969697,2.424242 +L 0.969697,2.424242,0.727273,2.666667 +L 0.727273,2.666667,0.484848,3.151515 +L 0.484848,3.151515,0.484848,3.878788 +L 0.484848,3.878788,0.727273,4.363636 +L 0.727273,4.363636,1.212121,4.848485 +L 1.212121,4.848485,1.939394,5.090909 +L 1.939394,5.090909,2.666667,5.090909 +L 2.666667,5.090909,3.151515,4.848485 +L 3.151515,4.848485,3.393939,4.606061 +L 3.393939,4.606061,3.636364,3.878788 +L 3.636364,3.878788,3.636364,3.151515 +L 3.636364,3.151515,3.393939,2.181818 +L 3.393939,2.181818,3.151515,1.454545 +L 3.151515,1.454545,2.666667,0.727273 +L 2.666667,0.727273,2.181818,0.242424 +L 2.181818,0.242424,1.454545,0 +L 1.454545,0,0.727273,0 +L 0.727273,0,0.242424,0.242424 +L 0.242424,0.242424,0,0.727273 +L 0,0.727273,0,1.212121 +L 0,1.212121,0.484848,1.212121 +L 0.484848,1.212121,0.484848,0.727273 +L 0.484848,0.727273,0.242424,0.727273 +L 0.242424,0.727273,0.242424,0.969697 +L 0.969697,2.666667,0.727273,3.151515 +L 0.727273,3.151515,0.727273,3.878788 +L 0.727273,3.878788,0.969697,4.363636 +L 3.151515,4.606061,3.393939,4.121212 +L 3.393939,4.121212,3.393939,3.151515 +L 3.393939,3.151515,3.151515,2.181818 +L 3.151515,2.181818,2.909091,1.454545 +L 2.909091,1.454545,2.424242,0.727273 +L 1.454545,2.181818,1.212121,2.424242 +L 1.212121,2.424242,0.969697,2.909091 +L 0.969697,2.909091,0.969697,3.878788 +L 0.969697,3.878788,1.212121,4.606061 +L 1.212121,4.606061,1.454545,4.848485 +L 1.454545,4.848485,1.939394,5.090909 +L 2.666667,5.090909,2.909091,4.848485 +L 2.909091,4.848485,3.151515,4.363636 +L 3.151515,4.363636,3.151515,3.151515 +L 3.151515,3.151515,2.909091,2.181818 +L 2.909091,2.181818,2.666667,1.454545 +L 2.666667,1.454545,2.424242,0.969697 +L 2.424242,0.969697,1.939394,0.242424 +L 1.939394,0.242424,1.454545,0 + +[:] 24 +L 0.969697,3.393939,0.727273,3.151515 +L 0.727273,3.151515,0.727273,2.909091 +L 0.727273,2.909091,0.969697,2.666667 +L 0.969697,2.666667,1.212121,2.666667 +L 1.212121,2.666667,1.454545,2.909091 +L 1.454545,2.909091,1.454545,3.151515 +L 1.454545,3.151515,1.212121,3.393939 +L 1.212121,3.393939,0.969697,3.393939 +L 0.969697,3.151515,0.969697,2.909091 +L 0.969697,2.909091,1.212121,2.909091 +L 1.212121,2.909091,1.212121,3.151515 +L 1.212121,3.151515,0.969697,3.151515 +L 0.242424,0.727273,0,0.484848 +L 0,0.484848,0,0.242424 +L 0,0.242424,0.242424,0 +L 0.242424,0,0.484848,0 +L 0.484848,0,0.727273,0.242424 +L 0.727273,0.242424,0.727273,0.484848 +L 0.727273,0.484848,0.484848,0.727273 +L 0.484848,0.727273,0.242424,0.727273 +L 0.242424,0.484848,0.242424,0.242424 +L 0.242424,0.242424,0.484848,0.242424 +L 0.484848,0.242424,0.484848,0.484848 +L 0.484848,0.484848,0.242424,0.484848 + +[;] 28 +L 1.212121,3.393939,0.969697,3.151515 +L 0.969697,3.151515,0.969697,2.909091 +L 0.969697,2.909091,1.212121,2.666667 +L 1.212121,2.666667,1.454545,2.666667 +L 1.454545,2.666667,1.69697,2.909091 +L 1.69697,2.909091,1.69697,3.151515 +L 1.69697,3.151515,1.454545,3.393939 +L 1.454545,3.393939,1.212121,3.393939 +L 1.212121,3.151515,1.212121,2.909091 +L 1.212121,2.909091,1.454545,2.909091 +L 1.454545,2.909091,1.454545,3.151515 +L 1.454545,3.151515,1.212121,3.151515 +L 0.727273,0,0.484848,0 +L 0.484848,0,0.242424,0.242424 +L 0.242424,0.242424,0.242424,0.484848 +L 0.242424,0.484848,0.484848,0.727273 +L 0.484848,0.727273,0.727273,0.727273 +L 0.727273,0.727273,0.969697,0.484848 +L 0.969697,0.484848,0.969697,0 +L 0.969697,0,0.727273,-0.484848 +L 0.727273,-0.484848,0.484848,-0.727273 +L 0.484848,-0.727273,0,-0.969697 +L 0.484848,0.484848,0.484848,0.242424 +L 0.484848,0.242424,0.727273,0.242424 +L 0.727273,0.242424,0.727273,0.484848 +L 0.727273,0.484848,0.484848,0.484848 +L 0.727273,0,0.727273,-0.242424 +L 0.727273,-0.242424,0.484848,-0.727273 + +[<] 2 +L 3.878788,4.363636,0,2.181818 +L 0,2.181818,3.878788,0 + +[=] 8 +L 0,3.393939,4.121212,3.393939 +L 4.121212,3.393939,4.121212,3.151515 +L 0,3.393939,0,3.151515 +L 0,3.151515,4.121212,3.151515 +L 0,1.454545,4.121212,1.454545 +L 4.121212,1.454545,4.121212,1.212121 +L 0,1.454545,0,1.212121 +L 0,1.212121,4.121212,1.212121 + +[>] 2 +L 0,4.363636,3.878788,2.181818 +L 3.878788,2.181818,0,0 + +[?] 47 +L 0.242424,3.878788,0.242424,4.121212 +L 0.242424,4.121212,0.484848,4.121212 +L 0.484848,4.121212,0.484848,3.636364 +L 0.484848,3.636364,0,3.636364 +L 0,3.636364,0,4.121212 +L 0,4.121212,0.242424,4.606061 +L 0.242424,4.606061,0.484848,4.848485 +L 0.484848,4.848485,1.212121,5.090909 +L 1.212121,5.090909,2.181818,5.090909 +L 2.181818,5.090909,2.909091,4.848485 +L 2.909091,4.848485,3.151515,4.363636 +L 3.151515,4.363636,3.151515,3.878788 +L 3.151515,3.878788,2.909091,3.393939 +L 2.909091,3.393939,2.666667,3.151515 +L 2.666667,3.151515,2.181818,2.909091 +L 2.181818,2.909091,1.212121,2.666667 +L 1.212121,2.666667,0.727273,2.424242 +L 0.727273,2.424242,0.727273,1.939394 +L 0.727273,1.939394,1.212121,1.69697 +L 1.212121,1.69697,1.454545,1.69697 +L 1.69697,5.090909,2.909091,4.848485 +L 2.666667,4.848485,2.909091,4.363636 +L 2.909091,4.363636,2.909091,3.878788 +L 2.909091,3.878788,2.666667,3.393939 +L 2.666667,3.393939,2.424242,3.151515 +L 2.424242,3.151515,1.939394,2.909091 +L 2.181818,5.090909,2.424242,4.848485 +L 2.424242,4.848485,2.666667,4.363636 +L 2.666667,4.363636,2.666667,3.878788 +L 2.666667,3.878788,2.424242,3.393939 +L 2.424242,3.393939,2.181818,3.151515 +L 2.181818,3.151515,1.212121,2.666667 +L 1.212121,2.666667,0.969697,2.424242 +L 0.969697,2.424242,0.969697,1.939394 +L 0.969697,1.939394,1.212121,1.69697 +L 0.484848,0.727273,0.242424,0.484848 +L 0.242424,0.484848,0.242424,0.242424 +L 0.242424,0.242424,0.484848,0 +L 0.484848,0,0.727273,0 +L 0.727273,0,0.969697,0.242424 +L 0.969697,0.242424,0.969697,0.484848 +L 0.969697,0.484848,0.727273,0.727273 +L 0.727273,0.727273,0.484848,0.727273 +L 0.484848,0.484848,0.484848,0.242424 +L 0.484848,0.242424,0.727273,0.242424 +L 0.727273,0.242424,0.727273,0.484848 +L 0.727273,0.484848,0.484848,0.484848 + +[@] 48 +L 3.636364,3.151515,3.393939,3.636364 +L 3.393939,3.636364,2.909091,3.878788 +L 2.909091,3.878788,2.181818,3.878788 +L 2.181818,3.878788,1.69697,3.636364 +L 1.69697,3.636364,1.454545,3.393939 +L 1.454545,3.393939,1.212121,2.666667 +L 1.212121,2.666667,1.212121,1.939394 +L 1.212121,1.939394,1.454545,1.454545 +L 1.454545,1.454545,1.939394,1.212121 +L 1.939394,1.212121,2.666667,1.212121 +L 2.666667,1.212121,3.151515,1.454545 +L 3.151515,1.454545,3.393939,1.939394 +L 2.181818,3.878788,1.69697,3.393939 +L 1.69697,3.393939,1.454545,2.666667 +L 1.454545,2.666667,1.454545,1.939394 +L 1.454545,1.939394,1.69697,1.454545 +L 1.69697,1.454545,1.939394,1.212121 +L 3.636364,3.878788,3.393939,1.939394 +L 3.393939,1.939394,3.393939,1.454545 +L 3.393939,1.454545,3.878788,1.212121 +L 3.878788,1.212121,4.363636,1.212121 +L 4.363636,1.212121,4.848485,1.69697 +L 4.848485,1.69697,5.090909,2.424242 +L 5.090909,2.424242,5.090909,2.909091 +L 5.090909,2.909091,4.848485,3.636364 +L 4.848485,3.636364,4.606061,4.121212 +L 4.606061,4.121212,4.121212,4.606061 +L 4.121212,4.606061,3.636364,4.848485 +L 3.636364,4.848485,2.909091,5.090909 +L 2.909091,5.090909,2.181818,5.090909 +L 2.181818,5.090909,1.454545,4.848485 +L 1.454545,4.848485,0.969697,4.606061 +L 0.969697,4.606061,0.484848,4.121212 +L 0.484848,4.121212,0.242424,3.636364 +L 0.242424,3.636364,0,2.909091 +L 0,2.909091,0,2.181818 +L 0,2.181818,0.242424,1.454545 +L 0.242424,1.454545,0.484848,0.969697 +L 0.484848,0.969697,0.969697,0.484848 +L 0.969697,0.484848,1.454545,0.242424 +L 1.454545,0.242424,2.181818,0 +L 2.181818,0,2.909091,0 +L 2.909091,0,3.636364,0.242424 +L 3.636364,0.242424,4.121212,0.484848 +L 4.121212,0.484848,4.363636,0.727273 +L 3.878788,3.878788,3.636364,1.939394 +L 3.636364,1.939394,3.636364,1.454545 +L 3.636364,1.454545,3.878788,1.212121 + +[A] 14 +L 3.636364,5.090909,0.727273,0.242424 +L 3.151515,4.121212,3.393939,0 +L 3.393939,4.606061,3.636364,0.242424 +L 3.636364,5.090909,3.636364,4.606061 +L 3.636364,4.606061,3.878788,0.484848 +L 3.878788,0.484848,3.878788,0 +L 1.454545,1.454545,3.393939,1.454545 +L 0,0,1.454545,0 +L 2.666667,0,4.363636,0 +L 0.727273,0.242424,0.242424,0 +L 0.727273,0.242424,1.212121,0 +L 3.393939,0.242424,2.909091,0 +L 3.393939,0.484848,3.151515,0 +L 3.878788,0.484848,4.121212,0 + +[B] 44 +L 2.181818,5.090909,0.727273,0 +L 2.424242,5.090909,0.969697,0 +L 2.666667,5.090909,1.212121,0 +L 1.454545,5.090909,4.121212,5.090909 +L 4.121212,5.090909,4.848485,4.848485 +L 4.848485,4.848485,5.090909,4.363636 +L 5.090909,4.363636,5.090909,3.878788 +L 5.090909,3.878788,4.848485,3.151515 +L 4.848485,3.151515,4.606061,2.909091 +L 4.606061,2.909091,3.878788,2.666667 +L 4.606061,4.848485,4.848485,4.363636 +L 4.848485,4.363636,4.848485,3.878788 +L 4.848485,3.878788,4.606061,3.151515 +L 4.606061,3.151515,4.363636,2.909091 +L 4.121212,5.090909,4.363636,4.848485 +L 4.363636,4.848485,4.606061,4.363636 +L 4.606061,4.363636,4.606061,3.878788 +L 4.606061,3.878788,4.363636,3.151515 +L 4.363636,3.151515,3.878788,2.666667 +L 1.939394,2.666667,3.878788,2.666667 +L 3.878788,2.666667,4.363636,2.424242 +L 4.363636,2.424242,4.606061,1.939394 +L 4.606061,1.939394,4.606061,1.454545 +L 4.606061,1.454545,4.363636,0.727273 +L 4.363636,0.727273,3.878788,0.242424 +L 3.878788,0.242424,2.909091,0 +L 2.909091,0,0,0 +L 4.121212,2.424242,4.363636,1.939394 +L 4.363636,1.939394,4.363636,1.454545 +L 4.363636,1.454545,4.121212,0.727273 +L 4.121212,0.727273,3.636364,0.242424 +L 3.878788,2.666667,4.121212,2.181818 +L 4.121212,2.181818,4.121212,1.454545 +L 4.121212,1.454545,3.878788,0.727273 +L 3.878788,0.727273,3.393939,0.242424 +L 3.393939,0.242424,2.909091,0 +L 1.69697,5.090909,2.424242,4.848485 +L 1.939394,5.090909,2.181818,4.606061 +L 2.909091,5.090909,2.424242,4.606061 +L 3.151515,5.090909,2.424242,4.848485 +L 0.969697,0.242424,0.242424,0 +L 0.969697,0.484848,0.484848,0 +L 1.212121,0.484848,1.454545,0 +L 0.969697,0.242424,1.69697,0 + +[C] 35 +L 3.636364,4.606061,3.878788,4.606061 +L 3.878788,4.606061,4.121212,5.090909 +L 4.121212,5.090909,3.878788,3.636364 +L 3.878788,3.636364,3.878788,4.121212 +L 3.878788,4.121212,3.636364,4.606061 +L 3.636364,4.606061,3.393939,4.848485 +L 3.393939,4.848485,2.909091,5.090909 +L 2.909091,5.090909,2.181818,5.090909 +L 2.181818,5.090909,1.454545,4.848485 +L 1.454545,4.848485,0.969697,4.363636 +L 0.969697,4.363636,0.484848,3.636364 +L 0.484848,3.636364,0.242424,2.909091 +L 0.242424,2.909091,0,1.939394 +L 0,1.939394,0,1.212121 +L 0,1.212121,0.242424,0.484848 +L 0.242424,0.484848,0.484848,0.242424 +L 0.484848,0.242424,1.212121,0 +L 1.212121,0,1.939394,0 +L 1.939394,0,2.424242,0.242424 +L 2.424242,0.242424,2.909091,0.727273 +L 2.909091,0.727273,3.151515,1.212121 +L 1.454545,4.606061,0.969697,4.121212 +L 0.969697,4.121212,0.727273,3.636364 +L 0.727273,3.636364,0.484848,2.909091 +L 0.484848,2.909091,0.242424,1.939394 +L 0.242424,1.939394,0.242424,0.969697 +L 0.242424,0.969697,0.484848,0.484848 +L 2.181818,5.090909,1.69697,4.848485 +L 1.69697,4.848485,1.212121,4.121212 +L 1.212121,4.121212,0.969697,3.636364 +L 0.969697,3.636364,0.727273,2.909091 +L 0.727273,2.909091,0.484848,1.939394 +L 0.484848,1.939394,0.484848,0.727273 +L 0.484848,0.727273,0.727273,0.242424 +L 0.727273,0.242424,1.212121,0 + +[D] 35 +L 2.181818,5.090909,0.727273,0 +L 2.424242,5.090909,0.969697,0 +L 2.666667,5.090909,1.212121,0 +L 1.454545,5.090909,3.636364,5.090909 +L 3.636364,5.090909,4.363636,4.848485 +L 4.363636,4.848485,4.606061,4.606061 +L 4.606061,4.606061,4.848485,3.878788 +L 4.848485,3.878788,4.848485,2.909091 +L 4.848485,2.909091,4.606061,1.939394 +L 4.606061,1.939394,4.121212,0.969697 +L 4.121212,0.969697,3.636364,0.484848 +L 3.636364,0.484848,3.151515,0.242424 +L 3.151515,0.242424,2.181818,0 +L 2.181818,0,0,0 +L 4.121212,4.848485,4.363636,4.606061 +L 4.363636,4.606061,4.606061,3.878788 +L 4.606061,3.878788,4.606061,2.909091 +L 4.606061,2.909091,4.363636,1.939394 +L 4.363636,1.939394,3.878788,0.969697 +L 3.878788,0.969697,3.393939,0.484848 +L 3.636364,5.090909,4.121212,4.606061 +L 4.121212,4.606061,4.363636,3.878788 +L 4.363636,3.878788,4.363636,2.909091 +L 4.363636,2.909091,4.121212,1.939394 +L 4.121212,1.939394,3.636364,0.969697 +L 3.636364,0.969697,2.909091,0.242424 +L 2.909091,0.242424,2.181818,0 +L 1.69697,5.090909,2.424242,4.848485 +L 1.939394,5.090909,2.181818,4.606061 +L 2.909091,5.090909,2.424242,4.606061 +L 3.151515,5.090909,2.424242,4.848485 +L 0.969697,0.242424,0.242424,0 +L 0.969697,0.484848,0.484848,0 +L 1.212121,0.484848,1.454545,0 +L 0.969697,0.242424,1.69697,0 + +[E] 30 +L 2.181818,5.090909,0.727273,0 +L 2.424242,5.090909,0.969697,0 +L 2.666667,5.090909,1.212121,0 +L 3.636364,3.636364,3.151515,1.69697 +L 1.454545,5.090909,5.090909,5.090909 +L 5.090909,5.090909,4.848485,3.636364 +L 1.939394,2.666667,3.393939,2.666667 +L 0,0,3.636364,0 +L 3.636364,0,4.121212,1.212121 +L 1.69697,5.090909,2.424242,4.848485 +L 1.939394,5.090909,2.181818,4.606061 +L 2.909091,5.090909,2.424242,4.606061 +L 3.151515,5.090909,2.424242,4.848485 +L 4.121212,5.090909,4.848485,4.848485 +L 4.363636,5.090909,4.848485,4.606061 +L 4.606061,5.090909,4.848485,4.363636 +L 4.848485,5.090909,4.848485,3.636364 +L 3.636364,3.636364,3.151515,2.666667 +L 3.151515,2.666667,3.151515,1.69697 +L 3.393939,3.151515,2.909091,2.666667 +L 2.909091,2.666667,3.151515,2.181818 +L 3.393939,2.909091,2.666667,2.666667 +L 2.666667,2.666667,3.151515,2.424242 +L 0.969697,0.242424,0.242424,0 +L 0.969697,0.484848,0.484848,0 +L 1.212121,0.484848,1.454545,0 +L 0.969697,0.242424,1.69697,0 +L 2.424242,0,3.636364,0.242424 +L 2.909091,0,3.636364,0.484848 +L 3.636364,0.484848,4.121212,1.212121 + +[F] 26 +L 2.181818,5.090909,0.727273,0 +L 2.424242,5.090909,0.969697,0 +L 2.666667,5.090909,1.212121,0 +L 3.636364,3.636364,3.151515,1.69697 +L 1.454545,5.090909,5.090909,5.090909 +L 5.090909,5.090909,4.848485,3.636364 +L 1.939394,2.666667,3.393939,2.666667 +L 0,0,1.939394,0 +L 1.69697,5.090909,2.424242,4.848485 +L 1.939394,5.090909,2.181818,4.606061 +L 2.909091,5.090909,2.424242,4.606061 +L 3.151515,5.090909,2.424242,4.848485 +L 4.121212,5.090909,4.848485,4.848485 +L 4.363636,5.090909,4.848485,4.606061 +L 4.606061,5.090909,4.848485,4.363636 +L 4.848485,5.090909,4.848485,3.636364 +L 3.636364,3.636364,3.151515,2.666667 +L 3.151515,2.666667,3.151515,1.69697 +L 3.393939,3.151515,2.909091,2.666667 +L 2.909091,2.666667,3.151515,2.181818 +L 3.393939,2.909091,2.666667,2.666667 +L 2.666667,2.666667,3.151515,2.424242 +L 0.969697,0.242424,0.242424,0 +L 0.969697,0.484848,0.484848,0 +L 1.212121,0.484848,1.454545,0 +L 0.969697,0.242424,1.69697,0 + +[G] 45 +L 3.636364,4.606061,3.878788,4.606061 +L 3.878788,4.606061,4.121212,5.090909 +L 4.121212,5.090909,3.878788,3.636364 +L 3.878788,3.636364,3.878788,4.121212 +L 3.878788,4.121212,3.636364,4.606061 +L 3.636364,4.606061,3.393939,4.848485 +L 3.393939,4.848485,2.909091,5.090909 +L 2.909091,5.090909,2.181818,5.090909 +L 2.181818,5.090909,1.454545,4.848485 +L 1.454545,4.848485,0.969697,4.363636 +L 0.969697,4.363636,0.484848,3.636364 +L 0.484848,3.636364,0.242424,2.909091 +L 0.242424,2.909091,0,1.939394 +L 0,1.939394,0,1.212121 +L 0,1.212121,0.242424,0.484848 +L 0.242424,0.484848,0.484848,0.242424 +L 0.484848,0.242424,1.212121,0 +L 1.212121,0,1.69697,0 +L 1.69697,0,2.424242,0.242424 +L 2.424242,0.242424,2.909091,0.727273 +L 2.909091,0.727273,3.393939,1.69697 +L 1.454545,4.606061,0.969697,4.121212 +L 0.969697,4.121212,0.727273,3.636364 +L 0.727273,3.636364,0.484848,2.909091 +L 0.484848,2.909091,0.242424,1.939394 +L 0.242424,1.939394,0.242424,0.969697 +L 0.242424,0.969697,0.484848,0.484848 +L 2.666667,0.727273,2.909091,0.969697 +L 2.909091,0.969697,3.151515,1.69697 +L 2.181818,5.090909,1.69697,4.848485 +L 1.69697,4.848485,1.212121,4.121212 +L 1.212121,4.121212,0.969697,3.636364 +L 0.969697,3.636364,0.727273,2.909091 +L 0.727273,2.909091,0.484848,1.939394 +L 0.484848,1.939394,0.484848,0.727273 +L 0.484848,0.727273,0.727273,0.242424 +L 0.727273,0.242424,1.212121,0 +L 1.69697,0,2.181818,0.242424 +L 2.181818,0.242424,2.666667,0.969697 +L 2.666667,0.969697,2.909091,1.69697 +L 2.181818,1.69697,4.121212,1.69697 +L 2.424242,1.69697,2.909091,1.454545 +L 2.666667,1.69697,2.909091,0.969697 +L 3.636364,1.69697,3.151515,1.212121 +L 3.878788,1.69697,3.151515,1.454545 + +[H] 27 +L 2.181818,5.090909,0.727273,0 +L 2.424242,5.090909,0.969697,0 +L 2.666667,5.090909,1.212121,0 +L 5.090909,5.090909,3.636364,0 +L 5.333333,5.090909,3.878788,0 +L 5.575758,5.090909,4.121212,0 +L 1.454545,5.090909,3.393939,5.090909 +L 4.363636,5.090909,6.30303,5.090909 +L 1.69697,2.666667,4.606061,2.666667 +L 0,0,1.939394,0 +L 2.909091,0,4.848485,0 +L 1.69697,5.090909,2.424242,4.848485 +L 1.939394,5.090909,2.181818,4.606061 +L 2.909091,5.090909,2.424242,4.606061 +L 3.151515,5.090909,2.424242,4.848485 +L 4.606061,5.090909,5.333333,4.848485 +L 4.848485,5.090909,5.090909,4.606061 +L 5.818182,5.090909,5.333333,4.606061 +L 6.060606,5.090909,5.333333,4.848485 +L 0.969697,0.242424,0.242424,0 +L 0.969697,0.484848,0.484848,0 +L 1.212121,0.484848,1.454545,0 +L 0.969697,0.242424,1.69697,0 +L 3.878788,0.242424,3.151515,0 +L 3.878788,0.484848,3.393939,0 +L 4.121212,0.484848,4.363636,0 +L 3.878788,0.242424,4.606061,0 + +[I] 13 +L 2.181818,5.090909,0.727273,0 +L 2.424242,5.090909,0.969697,0 +L 2.666667,5.090909,1.212121,0 +L 1.454545,5.090909,3.393939,5.090909 +L 0,0,1.939394,0 +L 1.69697,5.090909,2.424242,4.848485 +L 1.939394,5.090909,2.181818,4.606061 +L 2.909091,5.090909,2.424242,4.606061 +L 3.151515,5.090909,2.424242,4.848485 +L 0.969697,0.242424,0.242424,0 +L 0.969697,0.484848,0.484848,0 +L 1.212121,0.484848,1.454545,0 +L 0.969697,0.242424,1.69697,0 + +[J] 29 +L 3.151515,5.090909,1.939394,0.969697 +L 1.939394,0.969697,1.69697,0.484848 +L 1.69697,0.484848,1.212121,0 +L 3.393939,5.090909,2.424242,1.939394 +L 2.424242,1.939394,2.181818,1.212121 +L 2.181818,1.212121,1.939394,0.727273 +L 3.636364,5.090909,2.666667,1.939394 +L 2.666667,1.939394,2.181818,0.727273 +L 2.181818,0.727273,1.69697,0.242424 +L 1.69697,0.242424,1.212121,0 +L 1.212121,0,0.727273,0 +L 0.727273,0,0.242424,0.242424 +L 0.242424,0.242424,0,0.727273 +L 0,0.727273,0,1.212121 +L 0,1.212121,0.242424,1.454545 +L 0.242424,1.454545,0.484848,1.454545 +L 0.484848,1.454545,0.727273,1.212121 +L 0.727273,1.212121,0.727273,0.969697 +L 0.727273,0.969697,0.484848,0.727273 +L 0.484848,0.727273,0.242424,0.727273 +L 0.242424,1.212121,0.242424,0.969697 +L 0.242424,0.969697,0.484848,0.969697 +L 0.484848,0.969697,0.484848,1.212121 +L 0.484848,1.212121,0.242424,1.212121 +L 2.424242,5.090909,4.363636,5.090909 +L 2.666667,5.090909,3.393939,4.848485 +L 2.909091,5.090909,3.151515,4.606061 +L 3.878788,5.090909,3.393939,4.606061 +L 4.121212,5.090909,3.393939,4.848485 + +[K] 24 +L 2.181818,5.090909,0.727273,0 +L 2.424242,5.090909,0.969697,0 +L 2.666667,5.090909,1.212121,0 +L 5.333333,4.848485,1.69697,2.181818 +L 2.666667,2.909091,3.636364,0 +L 2.909091,2.909091,3.878788,0 +L 3.151515,3.151515,4.121212,0.242424 +L 1.454545,5.090909,3.393939,5.090909 +L 4.606061,5.090909,6.060606,5.090909 +L 0,0,1.939394,0 +L 2.909091,0,4.606061,0 +L 1.69697,5.090909,2.424242,4.848485 +L 1.939394,5.090909,2.181818,4.606061 +L 2.909091,5.090909,2.424242,4.606061 +L 3.151515,5.090909,2.424242,4.848485 +L 4.848485,5.090909,5.333333,4.848485 +L 5.818182,5.090909,5.333333,4.848485 +L 0.969697,0.242424,0.242424,0 +L 0.969697,0.484848,0.484848,0 +L 1.212121,0.484848,1.454545,0 +L 0.969697,0.242424,1.69697,0 +L 3.636364,0.242424,3.151515,0 +L 3.636364,0.484848,3.393939,0 +L 3.878788,0.484848,4.363636,0 + +[L] 17 +L 2.181818,5.090909,0.727273,0 +L 2.424242,5.090909,0.969697,0 +L 2.666667,5.090909,1.212121,0 +L 1.454545,5.090909,3.393939,5.090909 +L 0,0,3.636364,0 +L 3.636364,0,4.121212,1.454545 +L 1.69697,5.090909,2.424242,4.848485 +L 1.939394,5.090909,2.181818,4.606061 +L 2.909091,5.090909,2.424242,4.606061 +L 3.151515,5.090909,2.424242,4.848485 +L 0.969697,0.242424,0.242424,0 +L 0.969697,0.484848,0.484848,0 +L 1.212121,0.484848,1.454545,0 +L 0.969697,0.242424,1.69697,0 +L 2.424242,0,3.636364,0.242424 +L 2.909091,0,3.878788,0.727273 +L 3.393939,0,4.121212,1.454545 + +[M] 24 +L 2.181818,5.090909,0.727273,0.242424 +L 2.181818,4.848485,2.424242,0.484848 +L 2.424242,0.484848,2.424242,0 +L 2.424242,5.090909,2.666667,0.484848 +L 2.666667,5.090909,2.909091,0.727273 +L 5.575758,5.090909,2.909091,0.727273 +L 2.909091,0.727273,2.424242,0 +L 5.575758,5.090909,4.121212,0 +L 5.818182,5.090909,4.363636,0 +L 6.060606,5.090909,4.606061,0 +L 1.454545,5.090909,2.666667,5.090909 +L 5.575758,5.090909,6.787879,5.090909 +L 0,0,1.454545,0 +L 3.393939,0,5.333333,0 +L 1.69697,5.090909,2.181818,4.848485 +L 1.939394,5.090909,2.181818,4.606061 +L 6.30303,5.090909,5.818182,4.606061 +L 6.545455,5.090909,5.818182,4.848485 +L 0.727273,0.242424,0.242424,0 +L 0.727273,0.242424,1.212121,0 +L 4.363636,0.242424,3.636364,0 +L 4.363636,0.484848,3.878788,0 +L 4.606061,0.484848,4.848485,0 +L 4.363636,0.242424,5.090909,0 + +[N] 15 +L 2.181818,5.090909,0.727273,0.242424 +L 2.181818,5.090909,3.878788,0 +L 2.424242,5.090909,3.878788,0.727273 +L 2.666667,5.090909,4.121212,0.727273 +L 5.333333,4.848485,4.121212,0.727273 +L 4.121212,0.727273,3.878788,0 +L 1.454545,5.090909,2.666667,5.090909 +L 4.606061,5.090909,6.060606,5.090909 +L 0,0,1.454545,0 +L 1.69697,5.090909,2.424242,4.848485 +L 1.939394,5.090909,2.424242,4.606061 +L 4.848485,5.090909,5.333333,4.848485 +L 5.818182,5.090909,5.333333,4.848485 +L 0.727273,0.242424,0.242424,0 +L 0.727273,0.242424,1.212121,0 + +[O] 46 +L 2.181818,5.090909,1.454545,4.848485 +L 1.454545,4.848485,0.969697,4.363636 +L 0.969697,4.363636,0.484848,3.636364 +L 0.484848,3.636364,0.242424,2.909091 +L 0.242424,2.909091,0,1.939394 +L 0,1.939394,0,1.212121 +L 0,1.212121,0.242424,0.484848 +L 0.242424,0.484848,0.484848,0.242424 +L 0.484848,0.242424,0.969697,0 +L 0.969697,0,1.69697,0 +L 1.69697,0,2.424242,0.242424 +L 2.424242,0.242424,2.909091,0.727273 +L 2.909091,0.727273,3.393939,1.454545 +L 3.393939,1.454545,3.636364,2.181818 +L 3.636364,2.181818,3.878788,3.151515 +L 3.878788,3.151515,3.878788,3.878788 +L 3.878788,3.878788,3.636364,4.606061 +L 3.636364,4.606061,3.393939,4.848485 +L 3.393939,4.848485,2.909091,5.090909 +L 2.909091,5.090909,2.181818,5.090909 +L 1.212121,4.363636,0.727273,3.636364 +L 0.727273,3.636364,0.484848,2.909091 +L 0.484848,2.909091,0.242424,1.939394 +L 0.242424,1.939394,0.242424,0.969697 +L 0.242424,0.969697,0.484848,0.484848 +L 2.666667,0.727273,3.151515,1.454545 +L 3.151515,1.454545,3.393939,2.181818 +L 3.393939,2.181818,3.636364,3.151515 +L 3.636364,3.151515,3.636364,4.121212 +L 3.636364,4.121212,3.393939,4.606061 +L 2.181818,5.090909,1.69697,4.848485 +L 1.69697,4.848485,1.212121,4.121212 +L 1.212121,4.121212,0.969697,3.636364 +L 0.969697,3.636364,0.727273,2.909091 +L 0.727273,2.909091,0.484848,1.939394 +L 0.484848,1.939394,0.484848,0.727273 +L 0.484848,0.727273,0.727273,0.242424 +L 0.727273,0.242424,0.969697,0 +L 1.69697,0,2.181818,0.242424 +L 2.181818,0.242424,2.666667,0.969697 +L 2.666667,0.969697,2.909091,1.454545 +L 2.909091,1.454545,3.151515,2.181818 +L 3.151515,2.181818,3.393939,3.151515 +L 3.393939,3.151515,3.393939,4.363636 +L 3.393939,4.363636,3.151515,4.848485 +L 3.151515,4.848485,2.909091,5.090909 + +[P] 30 +L 2.181818,5.090909,0.727273,0 +L 2.424242,5.090909,0.969697,0 +L 2.666667,5.090909,1.212121,0 +L 1.454545,5.090909,4.363636,5.090909 +L 4.363636,5.090909,5.090909,4.848485 +L 5.090909,4.848485,5.333333,4.363636 +L 5.333333,4.363636,5.333333,3.878788 +L 5.333333,3.878788,5.090909,3.151515 +L 5.090909,3.151515,4.606061,2.666667 +L 4.606061,2.666667,3.636364,2.424242 +L 3.636364,2.424242,1.69697,2.424242 +L 4.848485,4.848485,5.090909,4.363636 +L 5.090909,4.363636,5.090909,3.878788 +L 5.090909,3.878788,4.848485,3.151515 +L 4.848485,3.151515,4.363636,2.666667 +L 4.363636,5.090909,4.606061,4.848485 +L 4.606061,4.848485,4.848485,4.363636 +L 4.848485,4.363636,4.848485,3.878788 +L 4.848485,3.878788,4.606061,3.151515 +L 4.606061,3.151515,4.121212,2.666667 +L 4.121212,2.666667,3.636364,2.424242 +L 0,0,1.939394,0 +L 1.69697,5.090909,2.424242,4.848485 +L 1.939394,5.090909,2.181818,4.606061 +L 2.909091,5.090909,2.424242,4.606061 +L 3.151515,5.090909,2.424242,4.848485 +L 0.969697,0.242424,0.242424,0 +L 0.969697,0.484848,0.484848,0 +L 1.212121,0.484848,1.454545,0 +L 0.969697,0.242424,1.69697,0 + +[Q] 62 +L 2.181818,5.090909,1.454545,4.848485 +L 1.454545,4.848485,0.969697,4.363636 +L 0.969697,4.363636,0.484848,3.636364 +L 0.484848,3.636364,0.242424,2.909091 +L 0.242424,2.909091,0,1.939394 +L 0,1.939394,0,1.212121 +L 0,1.212121,0.242424,0.484848 +L 0.242424,0.484848,0.484848,0.242424 +L 0.484848,0.242424,0.969697,0 +L 0.969697,0,1.69697,0 +L 1.69697,0,2.424242,0.242424 +L 2.424242,0.242424,2.909091,0.727273 +L 2.909091,0.727273,3.393939,1.454545 +L 3.393939,1.454545,3.636364,2.181818 +L 3.636364,2.181818,3.878788,3.151515 +L 3.878788,3.151515,3.878788,3.878788 +L 3.878788,3.878788,3.636364,4.606061 +L 3.636364,4.606061,3.393939,4.848485 +L 3.393939,4.848485,2.909091,5.090909 +L 2.909091,5.090909,2.181818,5.090909 +L 1.212121,4.363636,0.727273,3.636364 +L 0.727273,3.636364,0.484848,2.909091 +L 0.484848,2.909091,0.242424,1.939394 +L 0.242424,1.939394,0.242424,0.969697 +L 0.242424,0.969697,0.484848,0.484848 +L 2.666667,0.727273,3.151515,1.454545 +L 3.151515,1.454545,3.393939,2.181818 +L 3.393939,2.181818,3.636364,3.151515 +L 3.636364,3.151515,3.636364,4.121212 +L 3.636364,4.121212,3.393939,4.606061 +L 2.181818,5.090909,1.69697,4.848485 +L 1.69697,4.848485,1.212121,4.121212 +L 1.212121,4.121212,0.969697,3.636364 +L 0.969697,3.636364,0.727273,2.909091 +L 0.727273,2.909091,0.484848,1.939394 +L 0.484848,1.939394,0.484848,0.727273 +L 0.484848,0.727273,0.727273,0.242424 +L 0.727273,0.242424,0.969697,0 +L 1.69697,0,2.181818,0.242424 +L 2.181818,0.242424,2.666667,0.969697 +L 2.666667,0.969697,2.909091,1.454545 +L 2.909091,1.454545,3.151515,2.181818 +L 3.151515,2.181818,3.393939,3.151515 +L 3.393939,3.151515,3.393939,4.363636 +L 3.393939,4.363636,3.151515,4.848485 +L 3.151515,4.848485,2.909091,5.090909 +L 0.484848,0.727273,0.727273,1.212121 +L 0.727273,1.212121,1.212121,1.454545 +L 1.212121,1.454545,1.454545,1.454545 +L 1.454545,1.454545,1.939394,1.212121 +L 1.939394,1.212121,2.181818,0.727273 +L 2.181818,0.727273,2.424242,-0.484848 +L 2.424242,-0.484848,2.666667,-0.727273 +L 2.666667,-0.727273,2.909091,-0.727273 +L 2.909091,-0.727273,3.151515,-0.484848 +L 2.424242,-0.727273,2.666667,-0.969697 +L 2.666667,-0.969697,2.909091,-0.969697 +L 2.181818,0.727273,2.181818,-0.969697 +L 2.181818,-0.969697,2.424242,-1.212121 +L 2.424242,-1.212121,2.909091,-1.212121 +L 2.909091,-1.212121,3.151515,-0.484848 +L 3.151515,-0.484848,3.151515,-0.242424 + +[R] 42 +L 2.181818,5.090909,0.727273,0 +L 2.424242,5.090909,0.969697,0 +L 2.666667,5.090909,1.212121,0 +L 1.454545,5.090909,4.121212,5.090909 +L 4.121212,5.090909,4.848485,4.848485 +L 4.848485,4.848485,5.090909,4.363636 +L 5.090909,4.363636,5.090909,3.878788 +L 5.090909,3.878788,4.848485,3.151515 +L 4.848485,3.151515,4.606061,2.909091 +L 4.606061,2.909091,3.878788,2.666667 +L 3.878788,2.666667,1.939394,2.666667 +L 4.606061,4.848485,4.848485,4.363636 +L 4.848485,4.363636,4.848485,3.878788 +L 4.848485,3.878788,4.606061,3.151515 +L 4.606061,3.151515,4.363636,2.909091 +L 4.121212,5.090909,4.363636,4.848485 +L 4.363636,4.848485,4.606061,4.363636 +L 4.606061,4.363636,4.606061,3.878788 +L 4.606061,3.878788,4.363636,3.151515 +L 4.363636,3.151515,3.878788,2.666667 +L 2.909091,2.666667,3.393939,2.424242 +L 3.393939,2.424242,3.636364,2.181818 +L 3.636364,2.181818,4.121212,0.727273 +L 4.121212,0.727273,4.363636,0.484848 +L 4.363636,0.484848,4.606061,0.484848 +L 4.606061,0.484848,4.848485,0.727273 +L 4.121212,0.484848,4.363636,0.242424 +L 4.363636,0.242424,4.606061,0.242424 +L 3.636364,2.181818,3.878788,0.242424 +L 3.878788,0.242424,4.121212,0 +L 4.121212,0,4.606061,0 +L 4.606061,0,4.848485,0.727273 +L 4.848485,0.727273,4.848485,0.969697 +L 0,0,1.939394,0 +L 1.69697,5.090909,2.424242,4.848485 +L 1.939394,5.090909,2.181818,4.606061 +L 2.909091,5.090909,2.424242,4.606061 +L 3.151515,5.090909,2.424242,4.848485 +L 0.969697,0.242424,0.242424,0 +L 0.969697,0.484848,0.484848,0 +L 1.212121,0.484848,1.454545,0 +L 0.969697,0.242424,1.69697,0 + +[S] 38 +L 4.121212,4.606061,4.363636,4.606061 +L 4.363636,4.606061,4.606061,5.090909 +L 4.606061,5.090909,4.363636,3.636364 +L 4.363636,3.636364,4.363636,4.121212 +L 4.363636,4.121212,4.121212,4.606061 +L 4.121212,4.606061,3.878788,4.848485 +L 3.878788,4.848485,3.151515,5.090909 +L 3.151515,5.090909,2.181818,5.090909 +L 2.181818,5.090909,1.454545,4.848485 +L 1.454545,4.848485,0.969697,4.363636 +L 0.969697,4.363636,0.969697,3.636364 +L 0.969697,3.636364,1.212121,3.151515 +L 1.212121,3.151515,1.69697,2.666667 +L 1.69697,2.666667,3.151515,1.939394 +L 3.151515,1.939394,3.393939,1.454545 +L 3.393939,1.454545,3.393939,0.727273 +L 3.393939,0.727273,3.151515,0.242424 +L 1.212121,3.636364,1.454545,3.151515 +L 1.454545,3.151515,3.151515,2.181818 +L 3.151515,2.181818,3.393939,1.69697 +L 1.454545,4.848485,1.212121,4.363636 +L 1.212121,4.363636,1.212121,3.878788 +L 1.212121,3.878788,1.454545,3.393939 +L 1.454545,3.393939,2.909091,2.666667 +L 2.909091,2.666667,3.393939,2.181818 +L 3.393939,2.181818,3.636364,1.69697 +L 3.636364,1.69697,3.636364,0.969697 +L 3.636364,0.969697,3.393939,0.484848 +L 3.393939,0.484848,3.151515,0.242424 +L 3.151515,0.242424,2.424242,0 +L 2.424242,0,1.454545,0 +L 1.454545,0,0.727273,0.242424 +L 0.727273,0.242424,0.484848,0.484848 +L 0.484848,0.484848,0.242424,0.969697 +L 0.242424,0.969697,0.242424,1.454545 +L 0.242424,1.454545,0,0 +L 0,0,0.242424,0.484848 +L 0.242424,0.484848,0.484848,0.484848 + +[T] 18 +L 2.181818,5.090909,0.727273,0 +L 2.424242,5.090909,0.969697,0 +L 2.666667,5.090909,1.212121,0 +L 0.484848,5.090909,0,3.636364 +L 4.363636,5.090909,4.121212,3.636364 +L 0.484848,5.090909,4.363636,5.090909 +L 0,0,1.939394,0 +L 0.727273,5.090909,0,3.636364 +L 1.212121,5.090909,0.242424,4.363636 +L 1.69697,5.090909,0.484848,4.848485 +L 3.393939,5.090909,4.121212,4.848485 +L 3.636364,5.090909,4.121212,4.606061 +L 3.878788,5.090909,4.121212,4.363636 +L 4.121212,5.090909,4.121212,3.636364 +L 0.969697,0.242424,0.242424,0 +L 0.969697,0.484848,0.484848,0 +L 1.212121,0.484848,1.454545,0 +L 0.969697,0.242424,1.69697,0 + +[U] 26 +L 0.969697,5.090909,0.242424,2.424242 +L 0.242424,2.424242,0,1.454545 +L 0,1.454545,0,0.727273 +L 0,0.727273,0.242424,0.242424 +L 0.242424,0.242424,0.969697,0 +L 0.969697,0,1.939394,0 +L 1.939394,0,2.666667,0.242424 +L 2.666667,0.242424,3.151515,0.727273 +L 3.151515,0.727273,3.393939,1.454545 +L 3.393939,1.454545,4.363636,4.848485 +L 1.212121,5.090909,0.484848,2.424242 +L 0.484848,2.424242,0.242424,1.454545 +L 0.242424,1.454545,0.242424,0.484848 +L 0.242424,0.484848,0.484848,0.242424 +L 1.454545,5.090909,0.727273,2.424242 +L 0.727273,2.424242,0.484848,1.454545 +L 0.484848,1.454545,0.484848,0.484848 +L 0.484848,0.484848,0.969697,0 +L 0.242424,5.090909,2.181818,5.090909 +L 3.636364,5.090909,5.090909,5.090909 +L 0.484848,5.090909,1.212121,4.848485 +L 0.727273,5.090909,0.969697,4.606061 +L 1.69697,5.090909,1.212121,4.606061 +L 1.939394,5.090909,1.212121,4.848485 +L 3.878788,5.090909,4.363636,4.848485 +L 4.848485,5.090909,4.363636,4.848485 + +[V] 13 +L 0.484848,5.090909,0.484848,4.606061 +L 0.484848,4.606061,0.727273,0.484848 +L 0.727273,0.484848,0.727273,0 +L 0.727273,4.848485,0.969697,0.727273 +L 0.969697,5.090909,1.212121,0.969697 +L 3.636364,4.848485,0.727273,0 +L 0,5.090909,1.69697,5.090909 +L 2.909091,5.090909,4.363636,5.090909 +L 0.242424,5.090909,0.484848,4.606061 +L 1.212121,5.090909,0.969697,4.606061 +L 1.454545,5.090909,0.727273,4.848485 +L 3.151515,5.090909,3.636364,4.848485 +L 4.121212,5.090909,3.636364,4.848485 + +[W] 23 +L 0.727273,5.090909,0.727273,4.606061 +L 0.727273,4.606061,0.242424,0.484848 +L 0.242424,0.484848,0.242424,0 +L 0.969697,4.848485,0.484848,0.727273 +L 1.212121,5.090909,0.727273,0.969697 +L 2.666667,5.090909,0.727273,0.969697 +L 0.727273,0.969697,0.242424,0 +L 2.666667,5.090909,2.666667,4.606061 +L 2.666667,4.606061,2.181818,0.484848 +L 2.181818,0.484848,2.181818,0 +L 2.909091,4.848485,2.424242,0.727273 +L 3.151515,5.090909,2.666667,0.969697 +L 4.606061,4.848485,2.666667,0.969697 +L 2.666667,0.969697,2.181818,0 +L 0,5.090909,1.939394,5.090909 +L 2.666667,5.090909,3.151515,5.090909 +L 3.878788,5.090909,5.333333,5.090909 +L 0.242424,5.090909,0.969697,4.848485 +L 0.484848,5.090909,0.727273,4.606061 +L 1.454545,5.090909,0.969697,4.363636 +L 1.69697,5.090909,0.969697,4.848485 +L 4.121212,5.090909,4.606061,4.848485 +L 5.090909,5.090909,4.606061,4.848485 + +[X] 18 +L 1.939394,5.090909,3.393939,0 +L 2.181818,5.090909,3.636364,0 +L 2.424242,5.090909,3.878788,0 +L 5.090909,4.848485,0.727273,0.242424 +L 1.454545,5.090909,3.151515,5.090909 +L 4.363636,5.090909,5.818182,5.090909 +L 0,0,1.454545,0 +L 2.666667,0,4.363636,0 +L 1.69697,5.090909,2.181818,4.606061 +L 2.666667,5.090909,2.424242,4.606061 +L 2.909091,5.090909,2.424242,4.848485 +L 4.606061,5.090909,5.090909,4.848485 +L 5.575758,5.090909,5.090909,4.848485 +L 0.727273,0.242424,0.242424,0 +L 0.727273,0.242424,1.212121,0 +L 3.393939,0.242424,2.909091,0 +L 3.393939,0.484848,3.151515,0 +L 3.636364,0.484848,4.121212,0 + +[Y] 19 +L 0.484848,5.090909,1.454545,2.666667 +L 1.454545,2.666667,0.727273,0 +L 0.727273,5.090909,1.69697,2.666667 +L 1.69697,2.666667,0.969697,0 +L 0.969697,5.090909,1.939394,2.666667 +L 1.939394,2.666667,1.212121,0 +L 4.121212,4.848485,1.939394,2.666667 +L 0,5.090909,1.69697,5.090909 +L 3.393939,5.090909,4.848485,5.090909 +L 0,0,1.939394,0 +L 0.242424,5.090909,0.727273,4.848485 +L 1.212121,5.090909,0.969697,4.606061 +L 1.454545,5.090909,0.727273,4.848485 +L 3.636364,5.090909,4.121212,4.848485 +L 4.606061,5.090909,4.121212,4.848485 +L 0.969697,0.242424,0.242424,0 +L 0.969697,0.484848,0.484848,0 +L 1.212121,0.484848,1.454545,0 +L 0.969697,0.242424,1.69697,0 + +[Z] 13 +L 4.363636,5.090909,0,0 +L 4.606061,5.090909,0.242424,0 +L 4.848485,5.090909,0.484848,0 +L 4.848485,5.090909,1.454545,5.090909 +L 1.454545,5.090909,0.969697,3.636364 +L 0,0,3.393939,0 +L 3.393939,0,3.878788,1.454545 +L 1.69697,5.090909,0.969697,3.636364 +L 1.939394,5.090909,1.212121,4.363636 +L 2.424242,5.090909,1.454545,4.848485 +L 2.424242,0,3.393939,0.242424 +L 2.909091,0,3.636364,0.727273 +L 3.151515,0,3.878788,1.454545 + +[[] 4 +L 0,6.060606,0,-1.69697 +L 0.242424,6.060606,0.242424,-1.69697 +L 0,6.060606,1.69697,6.060606 +L 0,-1.69697,1.69697,-1.69697 + +[\] 1 +L 0,5.090909,3.393939,-0.727273 + +[]] 4 +L 1.454545,6.060606,1.454545,-1.69697 +L 1.69697,6.060606,1.69697,-1.69697 +L 0,6.060606,1.69697,6.060606 +L 0,-1.69697,1.69697,-1.69697 + +[^] 5 +L 0.727273,3.636364,1.212121,4.363636 +L 1.212121,4.363636,1.69697,3.636364 +L 0,2.909091,1.212121,4.121212 +L 1.212121,4.121212,2.424242,2.909091 +L 1.212121,4.121212,1.212121,0 + +[_] 1 +L 0,-0.484848,3.878788,-0.484848 + +[`] 16 +L 0.969697,5.090909,0.484848,4.848485 +L 0.484848,4.848485,0.242424,4.606061 +L 0.242424,4.606061,0,4.121212 +L 0,4.121212,0,3.636364 +L 0,3.636364,0.242424,3.393939 +L 0.242424,3.393939,0.484848,3.393939 +L 0.484848,3.393939,0.727273,3.636364 +L 0.727273,3.636364,0.727273,3.878788 +L 0.727273,3.878788,0.484848,4.121212 +L 0.484848,4.121212,0.242424,4.121212 +L 0.484848,4.848485,0.242424,4.363636 +L 0.242424,4.363636,0.242424,4.121212 +L 0.242424,3.878788,0.242424,3.636364 +L 0.242424,3.636364,0.484848,3.636364 +L 0.484848,3.636364,0.484848,3.878788 +L 0.484848,3.878788,0.242424,3.878788 + +[a] 38 +L 3.151515,3.393939,2.666667,1.69697 +L 2.666667,1.69697,2.666667,0.727273 +L 2.666667,0.727273,2.909091,0.242424 +L 2.909091,0.242424,3.151515,0 +L 3.151515,0,3.636364,0 +L 3.636364,0,4.121212,0.484848 +L 4.121212,0.484848,4.363636,0.969697 +L 3.393939,3.393939,2.909091,1.69697 +L 2.909091,1.69697,2.909091,0.242424 +L 3.151515,3.393939,3.636364,3.393939 +L 3.636364,3.393939,3.151515,1.69697 +L 3.151515,1.69697,2.909091,0.727273 +L 2.666667,1.69697,2.666667,2.424242 +L 2.666667,2.424242,2.424242,3.151515 +L 2.424242,3.151515,1.939394,3.393939 +L 1.939394,3.393939,1.454545,3.393939 +L 1.454545,3.393939,0.727273,3.151515 +L 0.727273,3.151515,0.242424,2.424242 +L 0.242424,2.424242,0,1.69697 +L 0,1.69697,0,1.212121 +L 0,1.212121,0.242424,0.484848 +L 0.242424,0.484848,0.484848,0.242424 +L 0.484848,0.242424,0.969697,0 +L 0.969697,0,1.454545,0 +L 1.454545,0,1.939394,0.242424 +L 1.939394,0.242424,2.181818,0.484848 +L 2.181818,0.484848,2.424242,0.969697 +L 2.424242,0.969697,2.666667,1.69697 +L 0.969697,3.151515,0.484848,2.424242 +L 0.484848,2.424242,0.242424,1.69697 +L 0.242424,1.69697,0.242424,0.969697 +L 0.242424,0.969697,0.484848,0.484848 +L 1.454545,3.393939,0.969697,2.909091 +L 0.969697,2.909091,0.727273,2.424242 +L 0.727273,2.424242,0.484848,1.69697 +L 0.484848,1.69697,0.484848,0.969697 +L 0.484848,0.969697,0.727273,0.242424 +L 0.727273,0.242424,0.969697,0 + +[b] 38 +L 0.727273,5.090909,0.242424,3.393939 +L 0.242424,3.393939,0,1.939394 +L 0,1.939394,0,0.969697 +L 0,0.969697,0.242424,0.484848 +L 0.242424,0.484848,0.484848,0.242424 +L 0.484848,0.242424,0.969697,0 +L 0.969697,0,1.454545,0 +L 1.454545,0,2.181818,0.242424 +L 2.181818,0.242424,2.666667,0.969697 +L 2.666667,0.969697,2.909091,1.69697 +L 2.909091,1.69697,2.909091,2.181818 +L 2.909091,2.181818,2.666667,2.909091 +L 2.666667,2.909091,2.424242,3.151515 +L 2.424242,3.151515,1.939394,3.393939 +L 1.939394,3.393939,1.454545,3.393939 +L 1.454545,3.393939,0.969697,3.151515 +L 0.969697,3.151515,0.727273,2.909091 +L 0.727273,2.909091,0.484848,2.424242 +L 0.484848,2.424242,0.242424,1.69697 +L 0.969697,5.090909,0.484848,3.393939 +L 0.484848,3.393939,0.242424,2.424242 +L 0.242424,2.424242,0.242424,0.969697 +L 0.242424,0.969697,0.484848,0.242424 +L 2.181818,0.484848,2.424242,0.969697 +L 2.424242,0.969697,2.666667,1.69697 +L 2.666667,1.69697,2.666667,2.424242 +L 2.666667,2.424242,2.424242,2.909091 +L 0,5.090909,1.212121,5.090909 +L 1.212121,5.090909,0.727273,3.393939 +L 0.727273,3.393939,0.242424,1.69697 +L 1.454545,0,1.939394,0.484848 +L 1.939394,0.484848,2.181818,0.969697 +L 2.181818,0.969697,2.424242,1.69697 +L 2.424242,1.69697,2.424242,2.424242 +L 2.424242,2.424242,2.181818,3.151515 +L 2.181818,3.151515,1.939394,3.393939 +L 0.242424,5.090909,0.969697,4.848485 +L 0.484848,5.090909,0.727273,4.606061 + +[c] 28 +L 2.666667,2.424242,2.666667,2.666667 +L 2.666667,2.666667,2.424242,2.666667 +L 2.424242,2.666667,2.424242,2.181818 +L 2.424242,2.181818,2.909091,2.181818 +L 2.909091,2.181818,2.909091,2.666667 +L 2.909091,2.666667,2.666667,3.151515 +L 2.666667,3.151515,2.181818,3.393939 +L 2.181818,3.393939,1.454545,3.393939 +L 1.454545,3.393939,0.727273,3.151515 +L 0.727273,3.151515,0.242424,2.424242 +L 0.242424,2.424242,0,1.69697 +L 0,1.69697,0,1.212121 +L 0,1.212121,0.242424,0.484848 +L 0.242424,0.484848,0.484848,0.242424 +L 0.484848,0.242424,0.969697,0 +L 0.969697,0,1.454545,0 +L 1.454545,0,2.181818,0.242424 +L 2.181818,0.242424,2.666667,0.969697 +L 0.727273,2.909091,0.484848,2.424242 +L 0.484848,2.424242,0.242424,1.69697 +L 0.242424,1.69697,0.242424,0.969697 +L 0.242424,0.969697,0.484848,0.484848 +L 1.454545,3.393939,0.969697,2.909091 +L 0.969697,2.909091,0.727273,2.424242 +L 0.727273,2.424242,0.484848,1.69697 +L 0.484848,1.69697,0.484848,0.969697 +L 0.484848,0.969697,0.727273,0.242424 +L 0.727273,0.242424,0.969697,0 + +[d] 42 +L 3.636364,5.090909,2.909091,2.424242 +L 2.909091,2.424242,2.666667,1.454545 +L 2.666667,1.454545,2.666667,0.727273 +L 2.666667,0.727273,2.909091,0.242424 +L 2.909091,0.242424,3.151515,0 +L 3.151515,0,3.636364,0 +L 3.636364,0,4.121212,0.484848 +L 4.121212,0.484848,4.363636,0.969697 +L 3.878788,5.090909,3.151515,2.424242 +L 3.151515,2.424242,2.909091,1.454545 +L 2.909091,1.454545,2.909091,0.242424 +L 2.909091,5.090909,4.121212,5.090909 +L 4.121212,5.090909,3.151515,1.69697 +L 3.151515,1.69697,2.909091,0.727273 +L 2.666667,1.69697,2.666667,2.424242 +L 2.666667,2.424242,2.424242,3.151515 +L 2.424242,3.151515,1.939394,3.393939 +L 1.939394,3.393939,1.454545,3.393939 +L 1.454545,3.393939,0.727273,3.151515 +L 0.727273,3.151515,0.242424,2.424242 +L 0.242424,2.424242,0,1.69697 +L 0,1.69697,0,1.212121 +L 0,1.212121,0.242424,0.484848 +L 0.242424,0.484848,0.484848,0.242424 +L 0.484848,0.242424,0.969697,0 +L 0.969697,0,1.454545,0 +L 1.454545,0,1.939394,0.242424 +L 1.939394,0.242424,2.181818,0.484848 +L 2.181818,0.484848,2.424242,0.969697 +L 2.424242,0.969697,2.666667,1.69697 +L 0.727273,2.909091,0.484848,2.424242 +L 0.484848,2.424242,0.242424,1.69697 +L 0.242424,1.69697,0.242424,0.969697 +L 0.242424,0.969697,0.484848,0.484848 +L 1.454545,3.393939,0.969697,2.909091 +L 0.969697,2.909091,0.727273,2.424242 +L 0.727273,2.424242,0.484848,1.69697 +L 0.484848,1.69697,0.484848,0.969697 +L 0.484848,0.969697,0.727273,0.242424 +L 0.727273,0.242424,0.969697,0 +L 3.151515,5.090909,3.878788,4.848485 +L 3.393939,5.090909,3.636364,4.606061 + +[e] 27 +L 0.242424,1.212121,1.212121,1.454545 +L 1.212121,1.454545,1.939394,1.69697 +L 1.939394,1.69697,2.666667,2.181818 +L 2.666667,2.181818,2.909091,2.666667 +L 2.909091,2.666667,2.666667,3.151515 +L 2.666667,3.151515,2.181818,3.393939 +L 2.181818,3.393939,1.454545,3.393939 +L 1.454545,3.393939,0.727273,3.151515 +L 0.727273,3.151515,0.242424,2.424242 +L 0.242424,2.424242,0,1.69697 +L 0,1.69697,0,1.212121 +L 0,1.212121,0.242424,0.484848 +L 0.242424,0.484848,0.484848,0.242424 +L 0.484848,0.242424,0.969697,0 +L 0.969697,0,1.454545,0 +L 1.454545,0,2.181818,0.242424 +L 2.181818,0.242424,2.666667,0.727273 +L 0.727273,2.909091,0.484848,2.424242 +L 0.484848,2.424242,0.242424,1.69697 +L 0.242424,1.69697,0.242424,0.969697 +L 0.242424,0.969697,0.484848,0.484848 +L 1.454545,3.393939,0.969697,2.909091 +L 0.969697,2.909091,0.727273,2.424242 +L 0.727273,2.424242,0.484848,1.69697 +L 0.484848,1.69697,0.484848,0.969697 +L 0.484848,0.969697,0.727273,0.242424 +L 0.727273,0.242424,0.969697,0 + +[f] 37 +L 4.363636,4.606061,4.363636,4.848485 +L 4.363636,4.848485,4.121212,4.848485 +L 4.121212,4.848485,4.121212,4.363636 +L 4.121212,4.363636,4.606061,4.363636 +L 4.606061,4.363636,4.606061,4.848485 +L 4.606061,4.848485,4.363636,5.090909 +L 4.363636,5.090909,3.878788,5.090909 +L 3.878788,5.090909,3.393939,4.848485 +L 3.393939,4.848485,2.909091,4.363636 +L 2.909091,4.363636,2.666667,3.878788 +L 2.666667,3.878788,2.424242,3.151515 +L 2.424242,3.151515,2.181818,2.181818 +L 2.181818,2.181818,1.69697,0 +L 1.69697,0,1.454545,-0.727273 +L 1.454545,-0.727273,1.212121,-1.212121 +L 1.212121,-1.212121,0.727273,-1.69697 +L 2.909091,4.121212,2.666667,3.393939 +L 2.666667,3.393939,2.424242,2.181818 +L 2.424242,2.181818,1.939394,0 +L 1.939394,0,1.69697,-0.727273 +L 3.878788,5.090909,3.393939,4.606061 +L 3.393939,4.606061,3.151515,4.121212 +L 3.151515,4.121212,2.909091,3.393939 +L 2.909091,3.393939,2.666667,2.181818 +L 2.666667,2.181818,2.181818,0.242424 +L 2.181818,0.242424,1.939394,-0.484848 +L 1.939394,-0.484848,1.69697,-0.969697 +L 1.69697,-0.969697,1.212121,-1.454545 +L 1.212121,-1.454545,0.727273,-1.69697 +L 0.727273,-1.69697,0.242424,-1.69697 +L 0.242424,-1.69697,0,-1.454545 +L 0,-1.454545,0,-0.969697 +L 0,-0.969697,0.484848,-0.969697 +L 0.484848,-0.969697,0.484848,-1.454545 +L 0.484848,-1.454545,0.242424,-1.454545 +L 0.242424,-1.454545,0.242424,-1.212121 +L 1.454545,3.393939,4.121212,3.393939 + +[g] 45 +L 3.636364,3.393939,2.666667,0 +L 2.666667,0,2.424242,-0.727273 +L 2.424242,-0.727273,1.939394,-1.454545 +L 1.939394,-1.454545,1.454545,-1.69697 +L 3.878788,3.393939,2.909091,0 +L 2.909091,0,2.424242,-0.969697 +L 3.636364,3.393939,4.121212,3.393939 +L 4.121212,3.393939,3.151515,0 +L 3.151515,0,2.666667,-0.969697 +L 2.666667,-0.969697,2.181818,-1.454545 +L 2.181818,-1.454545,1.454545,-1.69697 +L 1.454545,-1.69697,0.727273,-1.69697 +L 0.727273,-1.69697,0.242424,-1.454545 +L 0.242424,-1.454545,0,-1.212121 +L 0,-1.212121,0,-0.727273 +L 0,-0.727273,0.484848,-0.727273 +L 0.484848,-0.727273,0.484848,-1.212121 +L 0.484848,-1.212121,0.242424,-1.212121 +L 0.242424,-1.212121,0.242424,-0.969697 +L 3.151515,1.69697,3.151515,2.424242 +L 3.151515,2.424242,2.909091,3.151515 +L 2.909091,3.151515,2.424242,3.393939 +L 2.424242,3.393939,1.939394,3.393939 +L 1.939394,3.393939,1.212121,3.151515 +L 1.212121,3.151515,0.727273,2.424242 +L 0.727273,2.424242,0.484848,1.69697 +L 0.484848,1.69697,0.484848,1.212121 +L 0.484848,1.212121,0.727273,0.484848 +L 0.727273,0.484848,0.969697,0.242424 +L 0.969697,0.242424,1.454545,0 +L 1.454545,0,1.939394,0 +L 1.939394,0,2.424242,0.242424 +L 2.424242,0.242424,2.666667,0.484848 +L 2.666667,0.484848,2.909091,0.969697 +L 2.909091,0.969697,3.151515,1.69697 +L 1.212121,2.909091,0.969697,2.424242 +L 0.969697,2.424242,0.727273,1.69697 +L 0.727273,1.69697,0.727273,0.969697 +L 0.727273,0.969697,0.969697,0.484848 +L 1.939394,3.393939,1.454545,2.909091 +L 1.454545,2.909091,1.212121,2.424242 +L 1.212121,2.424242,0.969697,1.69697 +L 0.969697,1.69697,0.969697,0.969697 +L 0.969697,0.969697,1.212121,0.242424 +L 1.212121,0.242424,1.454545,0 + +[h] 25 +L 1.454545,5.090909,0,0 +L 0,0,0.484848,0 +L 1.69697,5.090909,0.242424,0 +L 0.727273,5.090909,1.939394,5.090909 +L 1.939394,5.090909,0.484848,0 +L 0.969697,1.69697,1.454545,2.666667 +L 1.454545,2.666667,1.939394,3.151515 +L 1.939394,3.151515,2.424242,3.393939 +L 2.424242,3.393939,2.909091,3.393939 +L 2.909091,3.393939,3.393939,3.151515 +L 3.393939,3.151515,3.636364,2.666667 +L 3.636364,2.666667,3.636364,1.939394 +L 3.636364,1.939394,3.151515,0.727273 +L 3.393939,3.151515,3.393939,2.181818 +L 3.393939,2.181818,3.151515,1.212121 +L 3.151515,1.212121,3.151515,0.242424 +L 3.393939,2.666667,2.909091,1.454545 +L 2.909091,1.454545,2.909091,0.727273 +L 2.909091,0.727273,3.151515,0.242424 +L 3.151515,0.242424,3.393939,0 +L 3.393939,0,3.878788,0 +L 3.878788,0,4.363636,0.484848 +L 4.363636,0.484848,4.606061,0.969697 +L 0.969697,5.090909,1.69697,4.848485 +L 1.212121,5.090909,1.454545,4.606061 + +[i] 23 +L 1.69697,5.090909,1.69697,4.606061 +L 1.69697,4.606061,2.181818,4.606061 +L 2.181818,4.606061,2.181818,5.090909 +L 2.181818,5.090909,1.69697,5.090909 +L 1.939394,5.090909,1.939394,4.606061 +L 1.69697,4.848485,2.181818,4.848485 +L 0,2.424242,0.242424,2.909091 +L 0.242424,2.909091,0.727273,3.393939 +L 0.727273,3.393939,1.212121,3.393939 +L 1.212121,3.393939,1.454545,3.151515 +L 1.454545,3.151515,1.69697,2.666667 +L 1.69697,2.666667,1.69697,1.939394 +L 1.69697,1.939394,1.212121,0.727273 +L 1.454545,3.151515,1.454545,2.181818 +L 1.454545,2.181818,1.212121,1.212121 +L 1.212121,1.212121,1.212121,0.242424 +L 1.454545,2.666667,0.969697,1.454545 +L 0.969697,1.454545,0.969697,0.727273 +L 0.969697,0.727273,1.212121,0.242424 +L 1.212121,0.242424,1.454545,0 +L 1.454545,0,1.939394,0 +L 1.939394,0,2.424242,0.484848 +L 2.424242,0.484848,2.666667,0.969697 + +[j] 33 +L 2.909091,5.090909,2.909091,4.606061 +L 2.909091,4.606061,3.393939,4.606061 +L 3.393939,4.606061,3.393939,5.090909 +L 3.393939,5.090909,2.909091,5.090909 +L 3.151515,5.090909,3.151515,4.606061 +L 2.909091,4.848485,3.393939,4.848485 +L 0.969697,2.424242,1.212121,2.909091 +L 1.212121,2.909091,1.69697,3.393939 +L 1.69697,3.393939,2.181818,3.393939 +L 2.181818,3.393939,2.424242,3.151515 +L 2.424242,3.151515,2.666667,2.666667 +L 2.666667,2.666667,2.666667,1.939394 +L 2.666667,1.939394,2.181818,0.242424 +L 2.181818,0.242424,1.939394,-0.484848 +L 1.939394,-0.484848,1.69697,-0.969697 +L 1.69697,-0.969697,1.212121,-1.454545 +L 1.212121,-1.454545,0.727273,-1.69697 +L 0.727273,-1.69697,0.242424,-1.69697 +L 0.242424,-1.69697,0,-1.454545 +L 0,-1.454545,0,-0.969697 +L 0,-0.969697,0.484848,-0.969697 +L 0.484848,-0.969697,0.484848,-1.454545 +L 0.484848,-1.454545,0.242424,-1.454545 +L 0.242424,-1.454545,0.242424,-1.212121 +L 2.424242,3.151515,2.424242,1.939394 +L 2.424242,1.939394,1.939394,0.242424 +L 1.939394,0.242424,1.69697,-0.484848 +L 1.69697,-0.484848,1.454545,-0.969697 +L 2.424242,2.666667,2.181818,1.69697 +L 2.181818,1.69697,1.69697,0 +L 1.69697,0,1.454545,-0.727273 +L 1.454545,-0.727273,1.212121,-1.212121 +L 1.212121,-1.212121,0.727273,-1.69697 + +[k] 31 +L 1.454545,5.090909,0,0 +L 0,0,0.484848,0 +L 1.69697,5.090909,0.242424,0 +L 0.727273,5.090909,1.939394,5.090909 +L 1.939394,5.090909,0.484848,0 +L 3.878788,2.909091,3.878788,3.151515 +L 3.878788,3.151515,3.636364,3.151515 +L 3.636364,3.151515,3.636364,2.666667 +L 3.636364,2.666667,4.121212,2.666667 +L 4.121212,2.666667,4.121212,3.151515 +L 4.121212,3.151515,3.878788,3.393939 +L 3.878788,3.393939,3.393939,3.393939 +L 3.393939,3.393939,2.909091,3.151515 +L 2.909091,3.151515,1.939394,2.181818 +L 1.939394,2.181818,1.454545,1.939394 +L 0.969697,1.939394,1.454545,1.939394 +L 1.454545,1.939394,1.939394,1.69697 +L 1.939394,1.69697,2.181818,1.454545 +L 2.181818,1.454545,2.666667,0.484848 +L 2.666667,0.484848,2.909091,0.242424 +L 2.909091,0.242424,3.393939,0.242424 +L 1.939394,1.454545,2.424242,0.484848 +L 2.424242,0.484848,2.666667,0.242424 +L 1.454545,1.939394,1.69697,1.69697 +L 1.69697,1.69697,2.181818,0.242424 +L 2.181818,0.242424,2.424242,0 +L 2.424242,0,2.909091,0 +L 2.909091,0,3.393939,0.242424 +L 3.393939,0.242424,3.878788,0.969697 +L 0.969697,5.090909,1.69697,4.848485 +L 1.212121,5.090909,1.454545,4.606061 + +[l] 16 +L 0.969697,5.090909,0.242424,2.424242 +L 0.242424,2.424242,0,1.454545 +L 0,1.454545,0,0.727273 +L 0,0.727273,0.242424,0.242424 +L 0.242424,0.242424,0.484848,0 +L 0.484848,0,0.969697,0 +L 0.969697,0,1.454545,0.484848 +L 1.454545,0.484848,1.69697,0.969697 +L 1.212121,5.090909,0.484848,2.424242 +L 0.484848,2.424242,0.242424,1.454545 +L 0.242424,1.454545,0.242424,0.242424 +L 0.242424,5.090909,1.454545,5.090909 +L 1.454545,5.090909,0.484848,1.69697 +L 0.484848,1.69697,0.242424,0.727273 +L 0.484848,5.090909,1.212121,4.848485 +L 0.727273,5.090909,0.969697,4.606061 + +[m] 43 +L 0,2.424242,0.242424,2.909091 +L 0.242424,2.909091,0.727273,3.393939 +L 0.727273,3.393939,1.212121,3.393939 +L 1.212121,3.393939,1.454545,3.151515 +L 1.454545,3.151515,1.69697,2.666667 +L 1.69697,2.666667,1.69697,1.939394 +L 1.69697,1.939394,1.212121,0 +L 1.454545,3.151515,1.454545,1.939394 +L 1.454545,1.939394,0.969697,0 +L 1.454545,2.666667,1.212121,1.69697 +L 1.212121,1.69697,0.727273,0 +L 0.727273,0,1.212121,0 +L 1.69697,1.939394,2.181818,2.666667 +L 2.181818,2.666667,2.666667,3.151515 +L 2.666667,3.151515,3.151515,3.393939 +L 3.151515,3.393939,3.636364,3.393939 +L 3.636364,3.393939,4.121212,3.151515 +L 4.121212,3.151515,4.363636,2.666667 +L 4.363636,2.666667,4.363636,1.939394 +L 4.363636,1.939394,3.878788,0 +L 4.121212,3.151515,4.121212,1.939394 +L 4.121212,1.939394,3.636364,0 +L 4.121212,2.666667,3.878788,1.69697 +L 3.878788,1.69697,3.393939,0 +L 3.393939,0,3.878788,0 +L 4.363636,1.939394,4.848485,2.666667 +L 4.848485,2.666667,5.333333,3.151515 +L 5.333333,3.151515,5.818182,3.393939 +L 5.818182,3.393939,6.30303,3.393939 +L 6.30303,3.393939,6.787879,3.151515 +L 6.787879,3.151515,7.030303,2.666667 +L 7.030303,2.666667,7.030303,1.939394 +L 7.030303,1.939394,6.545455,0.727273 +L 6.787879,3.151515,6.787879,2.181818 +L 6.787879,2.181818,6.545455,1.212121 +L 6.545455,1.212121,6.545455,0.242424 +L 6.787879,2.666667,6.30303,1.454545 +L 6.30303,1.454545,6.30303,0.727273 +L 6.30303,0.727273,6.545455,0.242424 +L 6.545455,0.242424,6.787879,0 +L 6.787879,0,7.272727,0 +L 7.272727,0,7.757576,0.484848 +L 7.757576,0.484848,8,0.969697 + +[n] 30 +L 0,2.424242,0.242424,2.909091 +L 0.242424,2.909091,0.727273,3.393939 +L 0.727273,3.393939,1.212121,3.393939 +L 1.212121,3.393939,1.454545,3.151515 +L 1.454545,3.151515,1.69697,2.666667 +L 1.69697,2.666667,1.69697,1.939394 +L 1.69697,1.939394,1.212121,0 +L 1.454545,3.151515,1.454545,1.939394 +L 1.454545,1.939394,0.969697,0 +L 1.454545,2.666667,1.212121,1.69697 +L 1.212121,1.69697,0.727273,0 +L 0.727273,0,1.212121,0 +L 1.69697,1.939394,2.181818,2.666667 +L 2.181818,2.666667,2.666667,3.151515 +L 2.666667,3.151515,3.151515,3.393939 +L 3.151515,3.393939,3.636364,3.393939 +L 3.636364,3.393939,4.121212,3.151515 +L 4.121212,3.151515,4.363636,2.666667 +L 4.363636,2.666667,4.363636,1.939394 +L 4.363636,1.939394,3.878788,0.727273 +L 4.121212,3.151515,4.121212,2.181818 +L 4.121212,2.181818,3.878788,1.212121 +L 3.878788,1.212121,3.878788,0.242424 +L 4.121212,2.666667,3.636364,1.454545 +L 3.636364,1.454545,3.636364,0.727273 +L 3.636364,0.727273,3.878788,0.242424 +L 3.878788,0.242424,4.121212,0 +L 4.121212,0,4.606061,0 +L 4.606061,0,5.090909,0.484848 +L 5.090909,0.484848,5.333333,0.969697 + +[o] 36 +L 1.454545,3.393939,0.727273,3.151515 +L 0.727273,3.151515,0.242424,2.424242 +L 0.242424,2.424242,0,1.69697 +L 0,1.69697,0,1.212121 +L 0,1.212121,0.242424,0.484848 +L 0.242424,0.484848,0.484848,0.242424 +L 0.484848,0.242424,1.212121,0 +L 1.212121,0,1.939394,0 +L 1.939394,0,2.666667,0.242424 +L 2.666667,0.242424,3.151515,0.969697 +L 3.151515,0.969697,3.393939,1.69697 +L 3.393939,1.69697,3.393939,2.181818 +L 3.393939,2.181818,3.151515,2.909091 +L 3.151515,2.909091,2.909091,3.151515 +L 2.909091,3.151515,2.181818,3.393939 +L 2.181818,3.393939,1.454545,3.393939 +L 0.727273,2.909091,0.484848,2.424242 +L 0.484848,2.424242,0.242424,1.69697 +L 0.242424,1.69697,0.242424,0.969697 +L 0.242424,0.969697,0.484848,0.484848 +L 2.666667,0.484848,2.909091,0.969697 +L 2.909091,0.969697,3.151515,1.69697 +L 3.151515,1.69697,3.151515,2.424242 +L 3.151515,2.424242,2.909091,2.909091 +L 1.454545,3.393939,0.969697,2.909091 +L 0.969697,2.909091,0.727273,2.424242 +L 0.727273,2.424242,0.484848,1.69697 +L 0.484848,1.69697,0.484848,0.969697 +L 0.484848,0.969697,0.727273,0.242424 +L 0.727273,0.242424,1.212121,0 +L 1.939394,0,2.424242,0.484848 +L 2.424242,0.484848,2.666667,0.969697 +L 2.666667,0.969697,2.909091,1.69697 +L 2.909091,1.69697,2.909091,2.424242 +L 2.909091,2.424242,2.666667,3.151515 +L 2.666667,3.151515,2.181818,3.393939 + +[p] 44 +L 0.484848,2.424242,0.727273,2.909091 +L 0.727273,2.909091,1.212121,3.393939 +L 1.212121,3.393939,1.69697,3.393939 +L 1.69697,3.393939,1.939394,3.151515 +L 1.939394,3.151515,2.181818,2.666667 +L 2.181818,2.666667,2.181818,1.939394 +L 2.181818,1.939394,1.939394,0.969697 +L 1.939394,0.969697,1.212121,-1.69697 +L 1.939394,3.151515,1.939394,1.939394 +L 1.939394,1.939394,1.69697,0.969697 +L 1.69697,0.969697,0.969697,-1.69697 +L 1.939394,2.666667,1.69697,1.69697 +L 1.69697,1.69697,0.727273,-1.69697 +L 2.181818,1.69697,2.424242,2.424242 +L 2.424242,2.424242,2.666667,2.909091 +L 2.666667,2.909091,2.909091,3.151515 +L 2.909091,3.151515,3.393939,3.393939 +L 3.393939,3.393939,3.878788,3.393939 +L 3.878788,3.393939,4.363636,3.151515 +L 4.363636,3.151515,4.606061,2.909091 +L 4.606061,2.909091,4.848485,2.181818 +L 4.848485,2.181818,4.848485,1.69697 +L 4.848485,1.69697,4.606061,0.969697 +L 4.606061,0.969697,4.121212,0.242424 +L 4.121212,0.242424,3.393939,0 +L 3.393939,0,2.909091,0 +L 2.909091,0,2.424242,0.242424 +L 2.424242,0.242424,2.181818,0.969697 +L 2.181818,0.969697,2.181818,1.69697 +L 4.363636,2.909091,4.606061,2.424242 +L 4.606061,2.424242,4.606061,1.69697 +L 4.606061,1.69697,4.363636,0.969697 +L 4.363636,0.969697,4.121212,0.484848 +L 3.878788,3.393939,4.121212,3.151515 +L 4.121212,3.151515,4.363636,2.424242 +L 4.363636,2.424242,4.363636,1.69697 +L 4.363636,1.69697,4.121212,0.969697 +L 4.121212,0.969697,3.878788,0.484848 +L 3.878788,0.484848,3.393939,0 +L 0,-1.69697,1.939394,-1.69697 +L 0.969697,-1.454545,0.242424,-1.69697 +L 0.969697,-1.212121,0.484848,-1.69697 +L 1.212121,-1.212121,1.454545,-1.69697 +L 0.969697,-1.454545,1.69697,-1.69697 + +[q] 35 +L 3.151515,3.393939,1.69697,-1.69697 +L 3.393939,3.393939,1.939394,-1.69697 +L 3.151515,3.393939,3.636364,3.393939 +L 3.636364,3.393939,2.181818,-1.69697 +L 2.666667,1.69697,2.666667,2.424242 +L 2.666667,2.424242,2.424242,3.151515 +L 2.424242,3.151515,1.939394,3.393939 +L 1.939394,3.393939,1.454545,3.393939 +L 1.454545,3.393939,0.727273,3.151515 +L 0.727273,3.151515,0.242424,2.424242 +L 0.242424,2.424242,0,1.69697 +L 0,1.69697,0,1.212121 +L 0,1.212121,0.242424,0.484848 +L 0.242424,0.484848,0.484848,0.242424 +L 0.484848,0.242424,0.969697,0 +L 0.969697,0,1.454545,0 +L 1.454545,0,1.939394,0.242424 +L 1.939394,0.242424,2.181818,0.484848 +L 2.181818,0.484848,2.424242,0.969697 +L 2.424242,0.969697,2.666667,1.69697 +L 0.727273,2.909091,0.484848,2.424242 +L 0.484848,2.424242,0.242424,1.69697 +L 0.242424,1.69697,0.242424,0.969697 +L 0.242424,0.969697,0.484848,0.484848 +L 1.454545,3.393939,0.969697,2.909091 +L 0.969697,2.909091,0.727273,2.424242 +L 0.727273,2.424242,0.484848,1.69697 +L 0.484848,1.69697,0.484848,0.969697 +L 0.484848,0.969697,0.727273,0.242424 +L 0.727273,0.242424,0.969697,0 +L 0.969697,-1.69697,2.909091,-1.69697 +L 1.939394,-1.454545,1.212121,-1.69697 +L 1.939394,-1.212121,1.454545,-1.69697 +L 2.181818,-1.212121,2.424242,-1.69697 +L 1.939394,-1.454545,2.666667,-1.69697 + +[r] 22 +L 0,2.424242,0.242424,2.909091 +L 0.242424,2.909091,0.727273,3.393939 +L 0.727273,3.393939,1.212121,3.393939 +L 1.212121,3.393939,1.454545,3.151515 +L 1.454545,3.151515,1.69697,2.666667 +L 1.69697,2.666667,1.69697,1.69697 +L 1.69697,1.69697,1.212121,0 +L 1.454545,3.151515,1.454545,1.69697 +L 1.454545,1.69697,0.969697,0 +L 1.454545,2.666667,1.212121,1.69697 +L 1.212121,1.69697,0.727273,0 +L 0.727273,0,1.212121,0 +L 3.636364,2.909091,3.636364,3.151515 +L 3.636364,3.151515,3.393939,3.151515 +L 3.393939,3.151515,3.393939,2.666667 +L 3.393939,2.666667,3.878788,2.666667 +L 3.878788,2.666667,3.878788,3.151515 +L 3.878788,3.151515,3.636364,3.393939 +L 3.636364,3.393939,3.151515,3.393939 +L 3.151515,3.393939,2.666667,3.151515 +L 2.666667,3.151515,2.181818,2.666667 +L 2.181818,2.666667,1.69697,1.69697 + +[s] 37 +L 2.909091,2.666667,2.909091,2.909091 +L 2.909091,2.909091,2.666667,2.909091 +L 2.666667,2.909091,2.666667,2.424242 +L 2.666667,2.424242,3.151515,2.424242 +L 3.151515,2.424242,3.151515,2.909091 +L 3.151515,2.909091,2.909091,3.151515 +L 2.909091,3.151515,2.181818,3.393939 +L 2.181818,3.393939,1.454545,3.393939 +L 1.454545,3.393939,0.727273,3.151515 +L 0.727273,3.151515,0.484848,2.909091 +L 0.484848,2.909091,0.484848,2.424242 +L 0.484848,2.424242,0.727273,1.939394 +L 0.727273,1.939394,1.212121,1.69697 +L 1.212121,1.69697,1.939394,1.454545 +L 1.939394,1.454545,2.424242,1.212121 +L 2.424242,1.212121,2.666667,0.727273 +L 0.727273,3.151515,0.484848,2.424242 +L 0.727273,2.181818,1.212121,1.939394 +L 1.212121,1.939394,1.939394,1.69697 +L 1.939394,1.69697,2.424242,1.454545 +L 2.666667,1.212121,2.424242,0.242424 +L 0.484848,2.909091,0.727273,2.424242 +L 0.727273,2.424242,1.212121,2.181818 +L 1.212121,2.181818,1.939394,1.939394 +L 1.939394,1.939394,2.424242,1.69697 +L 2.424242,1.69697,2.666667,1.212121 +L 2.666667,1.212121,2.666667,0.727273 +L 2.666667,0.727273,2.424242,0.242424 +L 2.424242,0.242424,1.69697,0 +L 1.69697,0,0.969697,0 +L 0.969697,0,0.242424,0.242424 +L 0.242424,0.242424,0,0.484848 +L 0,0.484848,0,0.969697 +L 0,0.969697,0.484848,0.969697 +L 0.484848,0.969697,0.484848,0.484848 +L 0.484848,0.484848,0.242424,0.484848 +L 0.242424,0.484848,0.242424,0.727273 + +[t] 15 +L 1.454545,5.090909,0.727273,2.424242 +L 0.727273,2.424242,0.484848,1.454545 +L 0.484848,1.454545,0.484848,0.727273 +L 0.484848,0.727273,0.727273,0.242424 +L 0.727273,0.242424,0.969697,0 +L 0.969697,0,1.454545,0 +L 1.454545,0,1.939394,0.484848 +L 1.939394,0.484848,2.181818,0.969697 +L 1.69697,5.090909,0.969697,2.424242 +L 0.969697,2.424242,0.727273,1.454545 +L 0.727273,1.454545,0.727273,0.242424 +L 1.454545,5.090909,1.939394,5.090909 +L 1.939394,5.090909,0.969697,1.69697 +L 0.969697,1.69697,0.727273,0.727273 +L 0,3.393939,2.424242,3.393939 + +[u] 30 +L 0,2.424242,0.242424,2.909091 +L 0.242424,2.909091,0.727273,3.393939 +L 0.727273,3.393939,1.212121,3.393939 +L 1.212121,3.393939,1.454545,3.151515 +L 1.454545,3.151515,1.69697,2.666667 +L 1.69697,2.666667,1.69697,1.939394 +L 1.69697,1.939394,1.212121,0.727273 +L 1.454545,3.151515,1.454545,2.181818 +L 1.454545,2.181818,1.212121,1.212121 +L 1.212121,1.212121,1.212121,0.242424 +L 1.454545,2.666667,0.969697,1.454545 +L 0.969697,1.454545,0.969697,0.727273 +L 0.969697,0.727273,1.212121,0.242424 +L 1.212121,0.242424,1.69697,0 +L 1.69697,0,2.181818,0 +L 2.181818,0,2.666667,0.242424 +L 2.666667,0.242424,3.151515,0.727273 +L 3.151515,0.727273,3.636364,1.454545 +L 4.121212,3.393939,3.636364,1.454545 +L 3.636364,1.454545,3.636364,0.727273 +L 3.636364,0.727273,3.878788,0.242424 +L 3.878788,0.242424,4.121212,0 +L 4.121212,0,4.606061,0 +L 4.606061,0,5.090909,0.484848 +L 5.090909,0.484848,5.333333,0.969697 +L 4.363636,3.393939,3.878788,1.454545 +L 3.878788,1.454545,3.878788,0.242424 +L 4.121212,3.393939,4.606061,3.393939 +L 4.606061,3.393939,4.121212,1.69697 +L 4.121212,1.69697,3.878788,0.727273 + +[v] 23 +L 0,2.424242,0.242424,2.909091 +L 0.242424,2.909091,0.727273,3.393939 +L 0.727273,3.393939,1.212121,3.393939 +L 1.212121,3.393939,1.454545,3.151515 +L 1.454545,3.151515,1.69697,2.666667 +L 1.69697,2.666667,1.69697,1.939394 +L 1.69697,1.939394,1.212121,0.727273 +L 1.454545,3.151515,1.454545,2.181818 +L 1.454545,2.181818,1.212121,1.212121 +L 1.212121,1.212121,1.212121,0.242424 +L 1.454545,2.666667,0.969697,1.454545 +L 0.969697,1.454545,0.969697,0.727273 +L 0.969697,0.727273,1.212121,0.242424 +L 1.212121,0.242424,1.69697,0 +L 1.69697,0,2.181818,0 +L 2.181818,0,2.666667,0.242424 +L 2.666667,0.242424,3.151515,0.727273 +L 3.151515,0.727273,3.636364,1.454545 +L 3.636364,1.454545,3.878788,2.424242 +L 3.878788,2.424242,3.878788,3.393939 +L 3.878788,3.393939,3.636364,3.393939 +L 3.636364,3.393939,3.636364,3.151515 +L 3.636364,3.151515,3.878788,2.666667 + +[w] 36 +L 0,2.424242,0.242424,2.909091 +L 0.242424,2.909091,0.727273,3.393939 +L 0.727273,3.393939,1.212121,3.393939 +L 1.212121,3.393939,1.454545,3.151515 +L 1.454545,3.151515,1.69697,2.666667 +L 1.69697,2.666667,1.69697,1.939394 +L 1.69697,1.939394,1.212121,0.727273 +L 1.454545,3.151515,1.454545,2.181818 +L 1.454545,2.181818,1.212121,1.212121 +L 1.212121,1.212121,1.212121,0.242424 +L 1.454545,2.666667,0.969697,1.454545 +L 0.969697,1.454545,0.969697,0.727273 +L 0.969697,0.727273,1.212121,0.242424 +L 1.212121,0.242424,1.69697,0 +L 1.69697,0,2.181818,0 +L 2.181818,0,2.666667,0.242424 +L 2.666667,0.242424,3.151515,0.727273 +L 3.151515,0.727273,3.393939,1.454545 +L 3.878788,3.393939,3.393939,1.454545 +L 3.393939,1.454545,3.393939,0.727273 +L 3.393939,0.727273,3.636364,0.242424 +L 3.636364,0.242424,4.121212,0 +L 4.121212,0,4.606061,0 +L 4.606061,0,5.090909,0.242424 +L 5.090909,0.242424,5.575758,0.727273 +L 5.575758,0.727273,6.060606,1.454545 +L 6.060606,1.454545,6.30303,2.424242 +L 6.30303,2.424242,6.30303,3.393939 +L 6.30303,3.393939,6.060606,3.393939 +L 6.060606,3.393939,6.060606,3.151515 +L 6.060606,3.151515,6.30303,2.666667 +L 4.121212,3.393939,3.636364,1.454545 +L 3.636364,1.454545,3.636364,0.242424 +L 3.878788,3.393939,4.363636,3.393939 +L 4.363636,3.393939,3.878788,1.69697 +L 3.878788,1.69697,3.636364,0.727273 + +[x] 41 +L 0.484848,2.424242,0.969697,3.151515 +L 0.969697,3.151515,1.454545,3.393939 +L 1.454545,3.393939,1.939394,3.393939 +L 1.939394,3.393939,2.424242,3.151515 +L 2.424242,3.151515,2.666667,2.666667 +L 2.666667,2.666667,2.666667,2.181818 +L 1.939394,3.393939,2.181818,3.151515 +L 2.181818,3.151515,2.181818,2.181818 +L 2.181818,2.181818,1.939394,1.212121 +L 1.939394,1.212121,1.69697,0.727273 +L 1.69697,0.727273,1.212121,0.242424 +L 1.212121,0.242424,0.727273,0 +L 0.727273,0,0.242424,0 +L 0.242424,0,0,0.242424 +L 0,0.242424,0,0.727273 +L 0,0.727273,0.484848,0.727273 +L 0.484848,0.727273,0.484848,0.242424 +L 0.484848,0.242424,0.242424,0.242424 +L 0.242424,0.242424,0.242424,0.484848 +L 2.424242,2.909091,2.424242,2.181818 +L 2.424242,2.181818,2.181818,1.212121 +L 2.181818,1.212121,2.181818,0.484848 +L 4.363636,2.909091,4.363636,3.151515 +L 4.363636,3.151515,4.121212,3.151515 +L 4.121212,3.151515,4.121212,2.666667 +L 4.121212,2.666667,4.606061,2.666667 +L 4.606061,2.666667,4.606061,3.151515 +L 4.606061,3.151515,4.363636,3.393939 +L 4.363636,3.393939,3.878788,3.393939 +L 3.878788,3.393939,3.393939,3.151515 +L 3.393939,3.151515,2.909091,2.666667 +L 2.909091,2.666667,2.666667,2.181818 +L 2.666667,2.181818,2.424242,1.212121 +L 2.424242,1.212121,2.424242,0.242424 +L 2.424242,0.242424,2.666667,0 +L 1.939394,1.212121,1.939394,0.727273 +L 1.939394,0.727273,2.181818,0.242424 +L 2.181818,0.242424,2.666667,0 +L 2.666667,0,3.151515,0 +L 3.151515,0,3.636364,0.242424 +L 3.636364,0.242424,4.121212,0.969697 + +[y] 37 +L 0,2.424242,0.242424,2.909091 +L 0.242424,2.909091,0.727273,3.393939 +L 0.727273,3.393939,1.212121,3.393939 +L 1.212121,3.393939,1.454545,3.151515 +L 1.454545,3.151515,1.69697,2.666667 +L 1.69697,2.666667,1.69697,1.939394 +L 1.69697,1.939394,1.212121,0.727273 +L 1.454545,3.151515,1.454545,2.181818 +L 1.454545,2.181818,1.212121,1.212121 +L 1.212121,1.212121,1.212121,0.242424 +L 1.454545,2.666667,0.969697,1.454545 +L 0.969697,1.454545,0.969697,0.727273 +L 0.969697,0.727273,1.212121,0.242424 +L 1.212121,0.242424,1.69697,0 +L 1.69697,0,2.181818,0 +L 2.181818,0,2.666667,0.242424 +L 2.666667,0.242424,3.151515,0.727273 +L 3.151515,0.727273,3.636364,1.69697 +L 4.121212,3.393939,3.151515,0 +L 3.151515,0,2.909091,-0.727273 +L 2.909091,-0.727273,2.424242,-1.454545 +L 2.424242,-1.454545,1.939394,-1.69697 +L 4.363636,3.393939,3.393939,0 +L 3.393939,0,2.909091,-0.969697 +L 4.121212,3.393939,4.606061,3.393939 +L 4.606061,3.393939,3.636364,0 +L 3.636364,0,3.151515,-0.969697 +L 3.151515,-0.969697,2.666667,-1.454545 +L 2.666667,-1.454545,1.939394,-1.69697 +L 1.939394,-1.69697,1.212121,-1.69697 +L 1.212121,-1.69697,0.727273,-1.454545 +L 0.727273,-1.454545,0.484848,-1.212121 +L 0.484848,-1.212121,0.484848,-0.727273 +L 0.484848,-0.727273,0.969697,-0.727273 +L 0.969697,-0.727273,0.969697,-1.212121 +L 0.969697,-1.212121,0.727273,-1.212121 +L 0.727273,-1.212121,0.727273,-0.969697 + +[z] 25 +L 3.393939,3.393939,3.151515,2.909091 +L 3.151515,2.909091,2.666667,2.424242 +L 2.666667,2.424242,0.727273,0.969697 +L 0.727273,0.969697,0.242424,0.484848 +L 0.242424,0.484848,0,0 +L 3.151515,2.909091,0.969697,2.909091 +L 0.969697,2.909091,0.484848,2.666667 +L 0.484848,2.666667,0.242424,2.181818 +L 2.666667,2.909091,1.69697,3.151515 +L 1.69697,3.151515,0.969697,3.151515 +L 0.969697,3.151515,0.727273,2.909091 +L 2.666667,2.909091,1.69697,3.393939 +L 1.69697,3.393939,0.969697,3.393939 +L 0.969697,3.393939,0.484848,2.909091 +L 0.484848,2.909091,0.242424,2.181818 +L 0.242424,0.484848,2.424242,0.484848 +L 2.424242,0.484848,2.909091,0.727273 +L 2.909091,0.727273,3.151515,1.212121 +L 0.727273,0.484848,1.69697,0.242424 +L 1.69697,0.242424,2.424242,0.242424 +L 2.424242,0.242424,2.666667,0.484848 +L 0.727273,0.484848,1.69697,0 +L 1.69697,0,2.424242,0 +L 2.424242,0,2.909091,0.484848 +L 2.909091,0.484848,3.151515,1.212121 + +[{] 34 +L 1.212121,6.060606,0.727273,5.818182 +L 0.727273,5.818182,0.484848,5.575758 +L 0.484848,5.575758,0.242424,5.090909 +L 0.242424,5.090909,0.242424,4.606061 +L 0.242424,4.606061,0.484848,4.121212 +L 0.484848,4.121212,0.727273,3.878788 +L 0.727273,3.878788,0.969697,3.393939 +L 0.969697,3.393939,0.969697,2.909091 +L 0.969697,2.909091,0.484848,2.424242 +L 0.727273,5.818182,0.484848,5.333333 +L 0.484848,5.333333,0.484848,4.848485 +L 0.484848,4.848485,0.727273,4.363636 +L 0.727273,4.363636,0.969697,4.121212 +L 0.969697,4.121212,1.212121,3.636364 +L 1.212121,3.636364,1.212121,3.151515 +L 1.212121,3.151515,0.969697,2.666667 +L 0.969697,2.666667,0,2.181818 +L 0,2.181818,0.969697,1.69697 +L 0.969697,1.69697,1.212121,1.212121 +L 1.212121,1.212121,1.212121,0.727273 +L 1.212121,0.727273,0.969697,0.242424 +L 0.969697,0.242424,0.727273,0 +L 0.727273,0,0.484848,-0.484848 +L 0.484848,-0.484848,0.484848,-0.969697 +L 0.484848,-0.969697,0.727273,-1.454545 +L 0.484848,1.939394,0.969697,1.454545 +L 0.969697,1.454545,0.969697,0.969697 +L 0.969697,0.969697,0.727273,0.484848 +L 0.727273,0.484848,0.484848,0.242424 +L 0.484848,0.242424,0.242424,-0.242424 +L 0.242424,-0.242424,0.242424,-0.727273 +L 0.242424,-0.727273,0.484848,-1.212121 +L 0.484848,-1.212121,0.727273,-1.454545 +L 0.727273,-1.454545,1.212121,-1.69697 + +[|] 1 +L 0,6.060606,0,-1.69697 + +[}] 34 +L 0,6.060606,0.484848,5.818182 +L 0.484848,5.818182,0.727273,5.575758 +L 0.727273,5.575758,0.969697,5.090909 +L 0.969697,5.090909,0.969697,4.606061 +L 0.969697,4.606061,0.727273,4.121212 +L 0.727273,4.121212,0.484848,3.878788 +L 0.484848,3.878788,0.242424,3.393939 +L 0.242424,3.393939,0.242424,2.909091 +L 0.242424,2.909091,0.727273,2.424242 +L 0.484848,5.818182,0.727273,5.333333 +L 0.727273,5.333333,0.727273,4.848485 +L 0.727273,4.848485,0.484848,4.363636 +L 0.484848,4.363636,0.242424,4.121212 +L 0.242424,4.121212,0,3.636364 +L 0,3.636364,0,3.151515 +L 0,3.151515,0.242424,2.666667 +L 0.242424,2.666667,1.212121,2.181818 +L 1.212121,2.181818,0.242424,1.69697 +L 0.242424,1.69697,0,1.212121 +L 0,1.212121,0,0.727273 +L 0,0.727273,0.242424,0.242424 +L 0.242424,0.242424,0.484848,0 +L 0.484848,0,0.727273,-0.484848 +L 0.727273,-0.484848,0.727273,-0.969697 +L 0.727273,-0.969697,0.484848,-1.454545 +L 0.727273,1.939394,0.242424,1.454545 +L 0.242424,1.454545,0.242424,0.969697 +L 0.242424,0.969697,0.484848,0.484848 +L 0.484848,0.484848,0.727273,0.242424 +L 0.727273,0.242424,0.969697,-0.242424 +L 0.969697,-0.242424,0.969697,-0.727273 +L 0.969697,-0.727273,0.727273,-1.212121 +L 0.727273,-1.212121,0.484848,-1.454545 +L 0.484848,-1.454545,0,-1.69697 + +[~] 12 +L 0.242424,0.727273,0,0.484848 +L 0,0.484848,0,0.242424 +L 0,0.242424,0.242424,0 +L 0.242424,0,0.484848,0 +L 0.484848,0,0.727273,0.242424 +L 0.727273,0.242424,0.727273,0.484848 +L 0.727273,0.484848,0.484848,0.727273 +L 0.484848,0.727273,0.242424,0.727273 +L 0.242424,0.484848,0.242424,0.242424 +L 0.242424,0.242424,0.484848,0.242424 +L 0.484848,0.242424,0.484848,0.484848 +L 0.484848,0.484848,0.242424,0.484848 + +[] 12 +L 0.242424,0.727273,0,0.484848 +L 0,0.484848,0,0.242424 +L 0,0.242424,0.242424,0 +L 0.242424,0,0.484848,0 +L 0.484848,0,0.727273,0.242424 +L 0.727273,0.242424,0.727273,0.484848 +L 0.727273,0.484848,0.484848,0.727273 +L 0.484848,0.727273,0.242424,0.727273 +L 0.242424,0.484848,0.242424,0.242424 +L 0.242424,0.242424,0.484848,0.242424 +L 0.484848,0.242424,0.484848,0.484848 +L 0.484848,0.484848,0.242424,0.484848 + +[] 12 +L 0.242424,0.727273,0,0.484848 +L 0,0.484848,0,0.242424 +L 0,0.242424,0.242424,0 +L 0.242424,0,0.484848,0 +L 0.484848,0,0.727273,0.242424 +L 0.727273,0.242424,0.727273,0.484848 +L 0.727273,0.484848,0.484848,0.727273 +L 0.484848,0.727273,0.242424,0.727273 +L 0.242424,0.484848,0.242424,0.242424 +L 0.242424,0.242424,0.484848,0.242424 +L 0.484848,0.242424,0.484848,0.484848 +L 0.484848,0.484848,0.242424,0.484848 + +[] 12 +L 0.242424,0.727273,0,0.484848 +L 0,0.484848,0,0.242424 +L 0,0.242424,0.242424,0 +L 0.242424,0,0.484848,0 +L 0.484848,0,0.727273,0.242424 +L 0.727273,0.242424,0.727273,0.484848 +L 0.727273,0.484848,0.484848,0.727273 +L 0.484848,0.727273,0.242424,0.727273 +L 0.242424,0.484848,0.242424,0.242424 +L 0.242424,0.242424,0.484848,0.242424 +L 0.484848,0.242424,0.484848,0.484848 +L 0.484848,0.484848,0.242424,0.484848 + +[] 12 +L 0.242424,0.727273,0,0.484848 +L 0,0.484848,0,0.242424 +L 0,0.242424,0.242424,0 +L 0.242424,0,0.484848,0 +L 0.484848,0,0.727273,0.242424 +L 0.727273,0.242424,0.727273,0.484848 +L 0.727273,0.484848,0.484848,0.727273 +L 0.484848,0.727273,0.242424,0.727273 +L 0.242424,0.484848,0.242424,0.242424 +L 0.242424,0.242424,0.484848,0.242424 +L 0.484848,0.242424,0.484848,0.484848 +L 0.484848,0.484848,0.242424,0.484848 + +[] 12 +L 0.242424,0.727273,0,0.484848 +L 0,0.484848,0,0.242424 +L 0,0.242424,0.242424,0 +L 0.242424,0,0.484848,0 +L 0.484848,0,0.727273,0.242424 +L 0.727273,0.242424,0.727273,0.484848 +L 0.727273,0.484848,0.484848,0.727273 +L 0.484848,0.727273,0.242424,0.727273 +L 0.242424,0.484848,0.242424,0.242424 +L 0.242424,0.242424,0.484848,0.242424 +L 0.484848,0.242424,0.484848,0.484848 +L 0.484848,0.484848,0.242424,0.484848 + +[] 12 +L 0.242424,0.727273,0,0.484848 +L 0,0.484848,0,0.242424 +L 0,0.242424,0.242424,0 +L 0.242424,0,0.484848,0 +L 0.484848,0,0.727273,0.242424 +L 0.727273,0.242424,0.727273,0.484848 +L 0.727273,0.484848,0.484848,0.727273 +L 0.484848,0.727273,0.242424,0.727273 +L 0.242424,0.484848,0.242424,0.242424 +L 0.242424,0.242424,0.484848,0.242424 +L 0.484848,0.242424,0.484848,0.484848 +L 0.484848,0.484848,0.242424,0.484848 + +[] 12 +L 0.242424,0.727273,0,0.484848 +L 0,0.484848,0,0.242424 +L 0,0.242424,0.242424,0 +L 0.242424,0,0.484848,0 +L 0.484848,0,0.727273,0.242424 +L 0.727273,0.242424,0.727273,0.484848 +L 0.727273,0.484848,0.484848,0.727273 +L 0.484848,0.727273,0.242424,0.727273 +L 0.242424,0.484848,0.242424,0.242424 +L 0.242424,0.242424,0.484848,0.242424 +L 0.484848,0.242424,0.484848,0.484848 +L 0.484848,0.484848,0.242424,0.484848 + +[] 12 +L 0.242424,0.727273,0,0.484848 +L 0,0.484848,0,0.242424 +L 0,0.242424,0.242424,0 +L 0.242424,0,0.484848,0 +L 0.484848,0,0.727273,0.242424 +L 0.727273,0.242424,0.727273,0.484848 +L 0.727273,0.484848,0.484848,0.727273 +L 0.484848,0.727273,0.242424,0.727273 +L 0.242424,0.484848,0.242424,0.242424 +L 0.242424,0.242424,0.484848,0.242424 +L 0.484848,0.242424,0.484848,0.484848 +L 0.484848,0.484848,0.242424,0.484848 + +[] 12 +L 0.242424,0.727273,0,0.484848 +L 0,0.484848,0,0.242424 +L 0,0.242424,0.242424,0 +L 0.242424,0,0.484848,0 +L 0.484848,0,0.727273,0.242424 +L 0.727273,0.242424,0.727273,0.484848 +L 0.727273,0.484848,0.484848,0.727273 +L 0.484848,0.727273,0.242424,0.727273 +L 0.242424,0.484848,0.242424,0.242424 +L 0.242424,0.242424,0.484848,0.242424 +L 0.484848,0.242424,0.484848,0.484848 +L 0.484848,0.484848,0.242424,0.484848 + +[] 12 +L 0.242424,0.727273,0,0.484848 +L 0,0.484848,0,0.242424 +L 0,0.242424,0.242424,0 +L 0.242424,0,0.484848,0 +L 0.484848,0,0.727273,0.242424 +L 0.727273,0.242424,0.727273,0.484848 +L 0.727273,0.484848,0.484848,0.727273 +L 0.484848,0.727273,0.242424,0.727273 +L 0.242424,0.484848,0.242424,0.242424 +L 0.242424,0.242424,0.484848,0.242424 +L 0.484848,0.242424,0.484848,0.484848 +L 0.484848,0.484848,0.242424,0.484848 + +[] 12 +L 0.242424,0.727273,0,0.484848 +L 0,0.484848,0,0.242424 +L 0,0.242424,0.242424,0 +L 0.242424,0,0.484848,0 +L 0.484848,0,0.727273,0.242424 +L 0.727273,0.242424,0.727273,0.484848 +L 0.727273,0.484848,0.484848,0.727273 +L 0.484848,0.727273,0.242424,0.727273 +L 0.242424,0.484848,0.242424,0.242424 +L 0.242424,0.242424,0.484848,0.242424 +L 0.484848,0.242424,0.484848,0.484848 +L 0.484848,0.484848,0.242424,0.484848 + +[] 12 +L 0.242424,0.727273,0,0.484848 +L 0,0.484848,0,0.242424 +L 0,0.242424,0.242424,0 +L 0.242424,0,0.484848,0 +L 0.484848,0,0.727273,0.242424 +L 0.727273,0.242424,0.727273,0.484848 +L 0.727273,0.484848,0.484848,0.727273 +L 0.484848,0.727273,0.242424,0.727273 +L 0.242424,0.484848,0.242424,0.242424 +L 0.242424,0.242424,0.484848,0.242424 +L 0.484848,0.242424,0.484848,0.484848 +L 0.484848,0.484848,0.242424,0.484848 + +[] 12 +L 0.242424,0.727273,0,0.484848 +L 0,0.484848,0,0.242424 +L 0,0.242424,0.242424,0 +L 0.242424,0,0.484848,0 +L 0.484848,0,0.727273,0.242424 +L 0.727273,0.242424,0.727273,0.484848 +L 0.727273,0.484848,0.484848,0.727273 +L 0.484848,0.727273,0.242424,0.727273 +L 0.242424,0.484848,0.242424,0.242424 +L 0.242424,0.242424,0.484848,0.242424 +L 0.484848,0.242424,0.484848,0.484848 +L 0.484848,0.484848,0.242424,0.484848 + +[] 12 +L 0.242424,0.727273,0,0.484848 +L 0,0.484848,0,0.242424 +L 0,0.242424,0.242424,0 +L 0.242424,0,0.484848,0 +L 0.484848,0,0.727273,0.242424 +L 0.727273,0.242424,0.727273,0.484848 +L 0.727273,0.484848,0.484848,0.727273 +L 0.484848,0.727273,0.242424,0.727273 +L 0.242424,0.484848,0.242424,0.242424 +L 0.242424,0.242424,0.484848,0.242424 +L 0.484848,0.242424,0.484848,0.484848 +L 0.484848,0.484848,0.242424,0.484848 + +[] 12 +L 0.242424,0.727273,0,0.484848 +L 0,0.484848,0,0.242424 +L 0,0.242424,0.242424,0 +L 0.242424,0,0.484848,0 +L 0.484848,0,0.727273,0.242424 +L 0.727273,0.242424,0.727273,0.484848 +L 0.727273,0.484848,0.484848,0.727273 +L 0.484848,0.727273,0.242424,0.727273 +L 0.242424,0.484848,0.242424,0.242424 +L 0.242424,0.242424,0.484848,0.242424 +L 0.484848,0.242424,0.484848,0.484848 +L 0.484848,0.484848,0.242424,0.484848 + +[] 12 +L 0.242424,0.727273,0,0.484848 +L 0,0.484848,0,0.242424 +L 0,0.242424,0.242424,0 +L 0.242424,0,0.484848,0 +L 0.484848,0,0.727273,0.242424 +L 0.727273,0.242424,0.727273,0.484848 +L 0.727273,0.484848,0.484848,0.727273 +L 0.484848,0.727273,0.242424,0.727273 +L 0.242424,0.484848,0.242424,0.242424 +L 0.242424,0.242424,0.484848,0.242424 +L 0.484848,0.242424,0.484848,0.484848 +L 0.484848,0.484848,0.242424,0.484848 + +[] 12 +L 0.242424,0.727273,0,0.484848 +L 0,0.484848,0,0.242424 +L 0,0.242424,0.242424,0 +L 0.242424,0,0.484848,0 +L 0.484848,0,0.727273,0.242424 +L 0.727273,0.242424,0.727273,0.484848 +L 0.727273,0.484848,0.484848,0.727273 +L 0.484848,0.727273,0.242424,0.727273 +L 0.242424,0.484848,0.242424,0.242424 +L 0.242424,0.242424,0.484848,0.242424 +L 0.484848,0.242424,0.484848,0.484848 +L 0.484848,0.484848,0.242424,0.484848 + +[] 12 +L 0.242424,0.727273,0,0.484848 +L 0,0.484848,0,0.242424 +L 0,0.242424,0.242424,0 +L 0.242424,0,0.484848,0 +L 0.484848,0,0.727273,0.242424 +L 0.727273,0.242424,0.727273,0.484848 +L 0.727273,0.484848,0.484848,0.727273 +L 0.484848,0.727273,0.242424,0.727273 +L 0.242424,0.484848,0.242424,0.242424 +L 0.242424,0.242424,0.484848,0.242424 +L 0.484848,0.242424,0.484848,0.484848 +L 0.484848,0.484848,0.242424,0.484848 + +[] 12 +L 0.242424,0.727273,0,0.484848 +L 0,0.484848,0,0.242424 +L 0,0.242424,0.242424,0 +L 0.242424,0,0.484848,0 +L 0.484848,0,0.727273,0.242424 +L 0.727273,0.242424,0.727273,0.484848 +L 0.727273,0.484848,0.484848,0.727273 +L 0.484848,0.727273,0.242424,0.727273 +L 0.242424,0.484848,0.242424,0.242424 +L 0.242424,0.242424,0.484848,0.242424 +L 0.484848,0.242424,0.484848,0.484848 +L 0.484848,0.484848,0.242424,0.484848 + +[] 12 +L 0.242424,0.727273,0,0.484848 +L 0,0.484848,0,0.242424 +L 0,0.242424,0.242424,0 +L 0.242424,0,0.484848,0 +L 0.484848,0,0.727273,0.242424 +L 0.727273,0.242424,0.727273,0.484848 +L 0.727273,0.484848,0.484848,0.727273 +L 0.484848,0.727273,0.242424,0.727273 +L 0.242424,0.484848,0.242424,0.242424 +L 0.242424,0.242424,0.484848,0.242424 +L 0.484848,0.242424,0.484848,0.484848 +L 0.484848,0.484848,0.242424,0.484848 + +[] 12 +L 0.242424,0.727273,0,0.484848 +L 0,0.484848,0,0.242424 +L 0,0.242424,0.242424,0 +L 0.242424,0,0.484848,0 +L 0.484848,0,0.727273,0.242424 +L 0.727273,0.242424,0.727273,0.484848 +L 0.727273,0.484848,0.484848,0.727273 +L 0.484848,0.727273,0.242424,0.727273 +L 0.242424,0.484848,0.242424,0.242424 +L 0.242424,0.242424,0.484848,0.242424 +L 0.484848,0.242424,0.484848,0.484848 +L 0.484848,0.484848,0.242424,0.484848 + +[] 12 +L 0.242424,0.727273,0,0.484848 +L 0,0.484848,0,0.242424 +L 0,0.242424,0.242424,0 +L 0.242424,0,0.484848,0 +L 0.484848,0,0.727273,0.242424 +L 0.727273,0.242424,0.727273,0.484848 +L 0.727273,0.484848,0.484848,0.727273 +L 0.484848,0.727273,0.242424,0.727273 +L 0.242424,0.484848,0.242424,0.242424 +L 0.242424,0.242424,0.484848,0.242424 +L 0.484848,0.242424,0.484848,0.484848 +L 0.484848,0.484848,0.242424,0.484848 + +[] 12 +L 0.242424,0.727273,0,0.484848 +L 0,0.484848,0,0.242424 +L 0,0.242424,0.242424,0 +L 0.242424,0,0.484848,0 +L 0.484848,0,0.727273,0.242424 +L 0.727273,0.242424,0.727273,0.484848 +L 0.727273,0.484848,0.484848,0.727273 +L 0.484848,0.727273,0.242424,0.727273 +L 0.242424,0.484848,0.242424,0.242424 +L 0.242424,0.242424,0.484848,0.242424 +L 0.484848,0.242424,0.484848,0.484848 +L 0.484848,0.484848,0.242424,0.484848 + +[] 12 +L 0.242424,0.727273,0,0.484848 +L 0,0.484848,0,0.242424 +L 0,0.242424,0.242424,0 +L 0.242424,0,0.484848,0 +L 0.484848,0,0.727273,0.242424 +L 0.727273,0.242424,0.727273,0.484848 +L 0.727273,0.484848,0.484848,0.727273 +L 0.484848,0.727273,0.242424,0.727273 +L 0.242424,0.484848,0.242424,0.242424 +L 0.242424,0.242424,0.484848,0.242424 +L 0.484848,0.242424,0.484848,0.484848 +L 0.484848,0.484848,0.242424,0.484848 + +[] 12 +L 0.242424,0.727273,0,0.484848 +L 0,0.484848,0,0.242424 +L 0,0.242424,0.242424,0 +L 0.242424,0,0.484848,0 +L 0.484848,0,0.727273,0.242424 +L 0.727273,0.242424,0.727273,0.484848 +L 0.727273,0.484848,0.484848,0.727273 +L 0.484848,0.727273,0.242424,0.727273 +L 0.242424,0.484848,0.242424,0.242424 +L 0.242424,0.242424,0.484848,0.242424 +L 0.484848,0.242424,0.484848,0.484848 +L 0.484848,0.484848,0.242424,0.484848 + +[] 12 +L 0.242424,0.727273,0,0.484848 +L 0,0.484848,0,0.242424 +L 0,0.242424,0.242424,0 +L 0.242424,0,0.484848,0 +L 0.484848,0,0.727273,0.242424 +L 0.727273,0.242424,0.727273,0.484848 +L 0.727273,0.484848,0.484848,0.727273 +L 0.484848,0.727273,0.242424,0.727273 +L 0.242424,0.484848,0.242424,0.242424 +L 0.242424,0.242424,0.484848,0.242424 +L 0.484848,0.242424,0.484848,0.484848 +L 0.484848,0.484848,0.242424,0.484848 + +[] 12 +L 0.242424,0.727273,0,0.484848 +L 0,0.484848,0,0.242424 +L 0,0.242424,0.242424,0 +L 0.242424,0,0.484848,0 +L 0.484848,0,0.727273,0.242424 +L 0.727273,0.242424,0.727273,0.484848 +L 0.727273,0.484848,0.484848,0.727273 +L 0.484848,0.727273,0.242424,0.727273 +L 0.242424,0.484848,0.242424,0.242424 +L 0.242424,0.242424,0.484848,0.242424 +L 0.484848,0.242424,0.484848,0.484848 +L 0.484848,0.484848,0.242424,0.484848 + +[] 12 +L 0.242424,0.727273,0,0.484848 +L 0,0.484848,0,0.242424 +L 0,0.242424,0.242424,0 +L 0.242424,0,0.484848,0 +L 0.484848,0,0.727273,0.242424 +L 0.727273,0.242424,0.727273,0.484848 +L 0.727273,0.484848,0.484848,0.727273 +L 0.484848,0.727273,0.242424,0.727273 +L 0.242424,0.484848,0.242424,0.242424 +L 0.242424,0.242424,0.484848,0.242424 +L 0.484848,0.242424,0.484848,0.484848 +L 0.484848,0.484848,0.242424,0.484848 + +[] 12 +L 0.242424,0.727273,0,0.484848 +L 0,0.484848,0,0.242424 +L 0,0.242424,0.242424,0 +L 0.242424,0,0.484848,0 +L 0.484848,0,0.727273,0.242424 +L 0.727273,0.242424,0.727273,0.484848 +L 0.727273,0.484848,0.484848,0.727273 +L 0.484848,0.727273,0.242424,0.727273 +L 0.242424,0.484848,0.242424,0.242424 +L 0.242424,0.242424,0.484848,0.242424 +L 0.484848,0.242424,0.484848,0.484848 +L 0.484848,0.484848,0.242424,0.484848 + +[] 12 +L 0.242424,0.727273,0,0.484848 +L 0,0.484848,0,0.242424 +L 0,0.242424,0.242424,0 +L 0.242424,0,0.484848,0 +L 0.484848,0,0.727273,0.242424 +L 0.727273,0.242424,0.727273,0.484848 +L 0.727273,0.484848,0.484848,0.727273 +L 0.484848,0.727273,0.242424,0.727273 +L 0.242424,0.484848,0.242424,0.242424 +L 0.242424,0.242424,0.484848,0.242424 +L 0.484848,0.242424,0.484848,0.484848 +L 0.484848,0.484848,0.242424,0.484848 + +[#0104] 30 +L 3.636364,5.090909,0.727273,0.242424 +L 3.151515,4.121212,3.393939,0 +L 3.393939,4.606061,3.636364,0.242424 +L 3.636364,5.090909,3.636364,4.606061 +L 3.636364,4.606061,3.878788,0.484848 +L 3.878788,0.484848,3.878788,0 +L 1.454545,1.454545,3.393939,1.454545 +L 0,0,1.454545,0 +L 2.666667,0,4.363636,0 +L 0.727273,0.242424,0.242424,0 +L 0.727273,0.242424,1.212121,0 +L 3.393939,0.242424,2.909091,0 +L 3.393939,0.484848,3.151515,0 +L 3.878788,0.484848,4.121212,0 +L 3.393939,0,2.909091,-0.242424 +L 2.909091,-0.242424,2.666667,-0.484848 +L 2.666667,-0.484848,2.424242,-0.969697 +L 2.424242,-0.969697,2.424242,-1.454545 +L 2.424242,-1.454545,2.666667,-1.69697 +L 2.666667,-1.69697,2.909091,-1.69697 +L 2.909091,-1.69697,3.151515,-1.454545 +L 3.151515,-1.454545,3.151515,-1.212121 +L 3.151515,-1.212121,2.909091,-0.969697 +L 2.909091,-0.969697,2.666667,-0.969697 +L 2.909091,-0.242424,2.666667,-0.727273 +L 2.666667,-0.727273,2.666667,-0.969697 +L 2.666667,-1.212121,2.666667,-1.454545 +L 2.666667,-1.454545,2.909091,-1.454545 +L 2.909091,-1.454545,2.909091,-1.212121 +L 2.909091,-1.212121,2.666667,-1.212121 + +[] 12 +L 0.242424,0.727273,0,0.484848 +L 0,0.484848,0,0.242424 +L 0,0.242424,0.242424,0 +L 0.242424,0,0.484848,0 +L 0.484848,0,0.727273,0.242424 +L 0.727273,0.242424,0.727273,0.484848 +L 0.727273,0.484848,0.484848,0.727273 +L 0.484848,0.727273,0.242424,0.727273 +L 0.242424,0.484848,0.242424,0.242424 +L 0.242424,0.242424,0.484848,0.242424 +L 0.484848,0.242424,0.484848,0.484848 +L 0.484848,0.484848,0.242424,0.484848 + +[#0141] 21 +L 2.181818,5.090909,0.727273,0 +L 2.424242,5.090909,0.969697,0 +L 2.666667,5.090909,1.212121,0 +L 1.454545,5.090909,3.393939,5.090909 +L 0,0,3.636364,0 +L 3.636364,0,4.121212,1.454545 +L 1.69697,5.090909,2.424242,4.848485 +L 1.939394,5.090909,2.181818,4.606061 +L 2.909091,5.090909,2.424242,4.606061 +L 3.151515,5.090909,2.424242,4.848485 +L 0.969697,0.242424,0.242424,0 +L 0.969697,0.484848,0.484848,0 +L 1.212121,0.484848,1.454545,0 +L 0.969697,0.242424,1.69697,0 +L 2.424242,0,3.636364,0.242424 +L 2.909091,0,3.878788,0.727273 +L 3.393939,0,4.121212,1.454545 +L 3.393939,3.151515,0.484848,1.939394 +L 0.484848,1.939394,0.484848,2.181818 +L 3.393939,3.151515,3.393939,3.393939 +L 3.393939,3.393939,0.484848,2.181818 + +[] 12 +L 0.242424,0.727273,0,0.484848 +L 0,0.484848,0,0.242424 +L 0,0.242424,0.242424,0 +L 0.242424,0,0.484848,0 +L 0.484848,0,0.727273,0.242424 +L 0.727273,0.242424,0.727273,0.484848 +L 0.727273,0.484848,0.484848,0.727273 +L 0.484848,0.727273,0.242424,0.727273 +L 0.242424,0.484848,0.242424,0.242424 +L 0.242424,0.242424,0.484848,0.242424 +L 0.484848,0.242424,0.484848,0.484848 +L 0.484848,0.484848,0.242424,0.484848 + +[] 12 +L 0.242424,0.727273,0,0.484848 +L 0,0.484848,0,0.242424 +L 0,0.242424,0.242424,0 +L 0.242424,0,0.484848,0 +L 0.484848,0,0.727273,0.242424 +L 0.727273,0.242424,0.727273,0.484848 +L 0.727273,0.484848,0.484848,0.727273 +L 0.484848,0.727273,0.242424,0.727273 +L 0.242424,0.484848,0.242424,0.242424 +L 0.242424,0.242424,0.484848,0.242424 +L 0.484848,0.242424,0.484848,0.484848 +L 0.484848,0.484848,0.242424,0.484848 + +[#015A] 54 +L 4.121212,4.606061,4.363636,4.606061 +L 4.363636,4.606061,4.606061,5.090909 +L 4.606061,5.090909,4.363636,3.636364 +L 4.363636,3.636364,4.363636,4.121212 +L 4.363636,4.121212,4.121212,4.606061 +L 4.121212,4.606061,3.878788,4.848485 +L 3.878788,4.848485,3.151515,5.090909 +L 3.151515,5.090909,2.181818,5.090909 +L 2.181818,5.090909,1.454545,4.848485 +L 1.454545,4.848485,0.969697,4.363636 +L 0.969697,4.363636,0.969697,3.636364 +L 0.969697,3.636364,1.212121,3.151515 +L 1.212121,3.151515,1.69697,2.666667 +L 1.69697,2.666667,3.151515,1.939394 +L 3.151515,1.939394,3.393939,1.454545 +L 3.393939,1.454545,3.393939,0.727273 +L 3.393939,0.727273,3.151515,0.242424 +L 1.212121,3.636364,1.454545,3.151515 +L 1.454545,3.151515,3.151515,2.181818 +L 3.151515,2.181818,3.393939,1.69697 +L 1.454545,4.848485,1.212121,4.363636 +L 1.212121,4.363636,1.212121,3.878788 +L 1.212121,3.878788,1.454545,3.393939 +L 1.454545,3.393939,2.909091,2.666667 +L 2.909091,2.666667,3.393939,2.181818 +L 3.393939,2.181818,3.636364,1.69697 +L 3.636364,1.69697,3.636364,0.969697 +L 3.636364,0.969697,3.393939,0.484848 +L 3.393939,0.484848,3.151515,0.242424 +L 3.151515,0.242424,2.424242,0 +L 2.424242,0,1.454545,0 +L 1.454545,0,0.727273,0.242424 +L 0.727273,0.242424,0.484848,0.484848 +L 0.484848,0.484848,0.242424,0.969697 +L 0.242424,0.969697,0.242424,1.454545 +L 0.242424,1.454545,0,0 +L 0,0,0.242424,0.484848 +L 0.242424,0.484848,0.484848,0.484848 +L 3.636364,6.545455,3.393939,6.545455 +L 3.393939,6.545455,3.151515,6.787879 +L 3.151515,6.787879,3.151515,7.030303 +L 3.151515,7.030303,3.393939,7.272727 +L 3.393939,7.272727,3.636364,7.272727 +L 3.636364,7.272727,3.878788,7.030303 +L 3.878788,7.030303,3.878788,6.545455 +L 3.878788,6.545455,3.636364,6.060606 +L 3.636364,6.060606,3.393939,5.818182 +L 3.393939,5.818182,2.909091,5.575758 +L 3.393939,7.030303,3.393939,6.787879 +L 3.393939,6.787879,3.636364,6.787879 +L 3.636364,6.787879,3.636364,7.030303 +L 3.636364,7.030303,3.393939,7.030303 +L 3.636364,6.545455,3.636364,6.30303 +L 3.636364,6.30303,3.393939,5.818182 + +[] 12 +L 0.242424,0.727273,0,0.484848 +L 0,0.484848,0,0.242424 +L 0,0.242424,0.242424,0 +L 0.242424,0,0.484848,0 +L 0.484848,0,0.727273,0.242424 +L 0.727273,0.242424,0.727273,0.484848 +L 0.727273,0.484848,0.484848,0.727273 +L 0.484848,0.727273,0.242424,0.727273 +L 0.242424,0.484848,0.242424,0.242424 +L 0.242424,0.242424,0.484848,0.242424 +L 0.484848,0.242424,0.484848,0.484848 +L 0.484848,0.484848,0.242424,0.484848 + +[] 12 +L 0.242424,0.727273,0,0.484848 +L 0,0.484848,0,0.242424 +L 0,0.242424,0.242424,0 +L 0.242424,0,0.484848,0 +L 0.484848,0,0.727273,0.242424 +L 0.727273,0.242424,0.727273,0.484848 +L 0.727273,0.484848,0.484848,0.727273 +L 0.484848,0.727273,0.242424,0.727273 +L 0.242424,0.484848,0.242424,0.242424 +L 0.242424,0.242424,0.484848,0.242424 +L 0.484848,0.242424,0.484848,0.484848 +L 0.484848,0.484848,0.242424,0.484848 + +[] 12 +L 0.242424,0.727273,0,0.484848 +L 0,0.484848,0,0.242424 +L 0,0.242424,0.242424,0 +L 0.242424,0,0.484848,0 +L 0.484848,0,0.727273,0.242424 +L 0.727273,0.242424,0.727273,0.484848 +L 0.727273,0.484848,0.484848,0.727273 +L 0.484848,0.727273,0.242424,0.727273 +L 0.242424,0.484848,0.242424,0.242424 +L 0.242424,0.242424,0.484848,0.242424 +L 0.484848,0.242424,0.484848,0.484848 +L 0.484848,0.484848,0.242424,0.484848 + +[] 12 +L 0.242424,0.727273,0,0.484848 +L 0,0.484848,0,0.242424 +L 0,0.242424,0.242424,0 +L 0.242424,0,0.484848,0 +L 0.484848,0,0.727273,0.242424 +L 0.727273,0.242424,0.727273,0.484848 +L 0.727273,0.484848,0.484848,0.727273 +L 0.484848,0.727273,0.242424,0.727273 +L 0.242424,0.484848,0.242424,0.242424 +L 0.242424,0.242424,0.484848,0.242424 +L 0.484848,0.242424,0.484848,0.484848 +L 0.484848,0.484848,0.242424,0.484848 + +[] 12 +L 0.242424,0.727273,0,0.484848 +L 0,0.484848,0,0.242424 +L 0,0.242424,0.242424,0 +L 0.242424,0,0.484848,0 +L 0.484848,0,0.727273,0.242424 +L 0.727273,0.242424,0.727273,0.484848 +L 0.727273,0.484848,0.484848,0.727273 +L 0.484848,0.727273,0.242424,0.727273 +L 0.242424,0.484848,0.242424,0.242424 +L 0.242424,0.242424,0.484848,0.242424 +L 0.484848,0.242424,0.484848,0.484848 +L 0.484848,0.484848,0.242424,0.484848 + +[#0179] 29 +L 4.363636,5.090909,0,0 +L 4.606061,5.090909,0.242424,0 +L 4.848485,5.090909,0.484848,0 +L 4.848485,5.090909,1.454545,5.090909 +L 1.454545,5.090909,0.969697,3.636364 +L 0,0,3.393939,0 +L 3.393939,0,3.878788,1.454545 +L 1.69697,5.090909,0.969697,3.636364 +L 1.939394,5.090909,1.212121,4.363636 +L 2.424242,5.090909,1.454545,4.848485 +L 2.424242,0,3.393939,0.242424 +L 2.909091,0,3.636364,0.727273 +L 3.151515,0,3.878788,1.454545 +L 4.121212,6.545455,3.878788,6.545455 +L 3.878788,6.545455,3.636364,6.787879 +L 3.636364,6.787879,3.636364,7.030303 +L 3.636364,7.030303,3.878788,7.272727 +L 3.878788,7.272727,4.121212,7.272727 +L 4.121212,7.272727,4.363636,7.030303 +L 4.363636,7.030303,4.363636,6.545455 +L 4.363636,6.545455,4.121212,6.060606 +L 4.121212,6.060606,3.878788,5.818182 +L 3.878788,5.818182,3.393939,5.575758 +L 3.878788,7.030303,3.878788,6.787879 +L 3.878788,6.787879,4.121212,6.787879 +L 4.121212,6.787879,4.121212,7.030303 +L 4.121212,7.030303,3.878788,7.030303 +L 4.121212,6.545455,4.121212,6.30303 +L 4.121212,6.30303,3.878788,5.818182 + +[] 12 +L 0.242424,0.727273,0,0.484848 +L 0,0.484848,0,0.242424 +L 0,0.242424,0.242424,0 +L 0.242424,0,0.484848,0 +L 0.484848,0,0.727273,0.242424 +L 0.727273,0.242424,0.727273,0.484848 +L 0.727273,0.484848,0.484848,0.727273 +L 0.484848,0.727273,0.242424,0.727273 +L 0.242424,0.484848,0.242424,0.242424 +L 0.242424,0.242424,0.484848,0.242424 +L 0.484848,0.242424,0.484848,0.484848 +L 0.484848,0.484848,0.242424,0.484848 + +[] 12 +L 0.242424,0.727273,0,0.484848 +L 0,0.484848,0,0.242424 +L 0,0.242424,0.242424,0 +L 0.242424,0,0.484848,0 +L 0.484848,0,0.727273,0.242424 +L 0.727273,0.242424,0.727273,0.484848 +L 0.727273,0.484848,0.484848,0.727273 +L 0.484848,0.727273,0.242424,0.727273 +L 0.242424,0.484848,0.242424,0.242424 +L 0.242424,0.242424,0.484848,0.242424 +L 0.484848,0.242424,0.484848,0.484848 +L 0.484848,0.484848,0.242424,0.484848 + +[#017B] 25 +L 4.363636,5.090909,0,0 +L 4.606061,5.090909,0.242424,0 +L 4.848485,5.090909,0.484848,0 +L 4.848485,5.090909,1.454545,5.090909 +L 1.454545,5.090909,0.969697,3.636364 +L 0,0,3.393939,0 +L 3.393939,0,3.878788,1.454545 +L 1.69697,5.090909,0.969697,3.636364 +L 1.939394,5.090909,1.212121,4.363636 +L 2.424242,5.090909,1.454545,4.848485 +L 2.424242,0,3.393939,0.242424 +L 2.909091,0,3.636364,0.727273 +L 3.151515,0,3.878788,1.454545 +L 3.151515,6.30303,2.909091,6.060606 +L 2.909091,6.060606,2.909091,5.818182 +L 2.909091,5.818182,3.151515,5.575758 +L 3.151515,5.575758,3.393939,5.575758 +L 3.393939,5.575758,3.636364,5.818182 +L 3.636364,5.818182,3.636364,6.060606 +L 3.636364,6.060606,3.393939,6.30303 +L 3.393939,6.30303,3.151515,6.30303 +L 3.151515,6.060606,3.151515,5.818182 +L 3.151515,5.818182,3.393939,5.818182 +L 3.393939,5.818182,3.393939,6.060606 +L 3.393939,6.060606,3.151515,6.060606 + +[] 12 +L 0.242424,0.727273,0,0.484848 +L 0,0.484848,0,0.242424 +L 0,0.242424,0.242424,0 +L 0.242424,0,0.484848,0 +L 0.484848,0,0.727273,0.242424 +L 0.727273,0.242424,0.727273,0.484848 +L 0.727273,0.484848,0.484848,0.727273 +L 0.484848,0.727273,0.242424,0.727273 +L 0.242424,0.484848,0.242424,0.242424 +L 0.242424,0.242424,0.484848,0.242424 +L 0.484848,0.242424,0.484848,0.484848 +L 0.484848,0.484848,0.242424,0.484848 + +[#0105] 54 +L 3.151515,3.393939,2.666667,1.69697 +L 2.666667,1.69697,2.666667,0.727273 +L 2.666667,0.727273,2.909091,0.242424 +L 2.909091,0.242424,3.151515,0 +L 3.151515,0,3.636364,0 +L 3.636364,0,4.121212,0.484848 +L 4.121212,0.484848,4.363636,0.969697 +L 3.393939,3.393939,2.909091,1.69697 +L 2.909091,1.69697,2.909091,0.242424 +L 3.151515,3.393939,3.636364,3.393939 +L 3.636364,3.393939,3.151515,1.69697 +L 3.151515,1.69697,2.909091,0.727273 +L 2.666667,1.69697,2.666667,2.424242 +L 2.666667,2.424242,2.424242,3.151515 +L 2.424242,3.151515,1.939394,3.393939 +L 1.939394,3.393939,1.454545,3.393939 +L 1.454545,3.393939,0.727273,3.151515 +L 0.727273,3.151515,0.242424,2.424242 +L 0.242424,2.424242,0,1.69697 +L 0,1.69697,0,1.212121 +L 0,1.212121,0.242424,0.484848 +L 0.242424,0.484848,0.484848,0.242424 +L 0.484848,0.242424,0.969697,0 +L 0.969697,0,1.454545,0 +L 1.454545,0,1.939394,0.242424 +L 1.939394,0.242424,2.181818,0.484848 +L 2.181818,0.484848,2.424242,0.969697 +L 2.424242,0.969697,2.666667,1.69697 +L 0.969697,3.151515,0.484848,2.424242 +L 0.484848,2.424242,0.242424,1.69697 +L 0.242424,1.69697,0.242424,0.969697 +L 0.242424,0.969697,0.484848,0.484848 +L 1.454545,3.393939,0.969697,2.909091 +L 0.969697,2.909091,0.727273,2.424242 +L 0.727273,2.424242,0.484848,1.69697 +L 0.484848,1.69697,0.484848,0.969697 +L 0.484848,0.969697,0.727273,0.242424 +L 0.727273,0.242424,0.969697,0 +L 3.151515,0,2.666667,-0.242424 +L 2.666667,-0.242424,2.424242,-0.484848 +L 2.424242,-0.484848,2.181818,-0.969697 +L 2.181818,-0.969697,2.181818,-1.454545 +L 2.181818,-1.454545,2.424242,-1.69697 +L 2.424242,-1.69697,2.666667,-1.69697 +L 2.666667,-1.69697,2.909091,-1.454545 +L 2.909091,-1.454545,2.909091,-1.212121 +L 2.909091,-1.212121,2.666667,-0.969697 +L 2.666667,-0.969697,2.424242,-0.969697 +L 2.666667,-0.242424,2.424242,-0.727273 +L 2.424242,-0.727273,2.424242,-0.969697 +L 2.424242,-1.212121,2.424242,-1.454545 +L 2.424242,-1.454545,2.666667,-1.454545 +L 2.666667,-1.454545,2.666667,-1.212121 +L 2.666667,-1.212121,2.424242,-1.212121 + +[] 12 +L 0.242424,0.727273,0,0.484848 +L 0,0.484848,0,0.242424 +L 0,0.242424,0.242424,0 +L 0.242424,0,0.484848,0 +L 0.484848,0,0.727273,0.242424 +L 0.727273,0.242424,0.727273,0.484848 +L 0.727273,0.484848,0.484848,0.727273 +L 0.484848,0.727273,0.242424,0.727273 +L 0.242424,0.484848,0.242424,0.242424 +L 0.242424,0.242424,0.484848,0.242424 +L 0.484848,0.242424,0.484848,0.484848 +L 0.484848,0.484848,0.242424,0.484848 + +[#0142] 20 +L 1.454545,5.090909,0.727273,2.424242 +L 0.727273,2.424242,0.484848,1.454545 +L 0.484848,1.454545,0.484848,0.727273 +L 0.484848,0.727273,0.727273,0.242424 +L 0.727273,0.242424,0.969697,0 +L 0.969697,0,1.454545,0 +L 1.454545,0,1.939394,0.484848 +L 1.939394,0.484848,2.181818,0.969697 +L 1.69697,5.090909,0.969697,2.424242 +L 0.969697,2.424242,0.727273,1.454545 +L 0.727273,1.454545,0.727273,0.242424 +L 0.727273,5.090909,1.939394,5.090909 +L 1.939394,5.090909,0.969697,1.69697 +L 0.969697,1.69697,0.727273,0.727273 +L 0.969697,5.090909,1.69697,4.848485 +L 1.212121,5.090909,1.454545,4.606061 +L 1.939394,3.151515,0,2.181818 +L 0,2.181818,0,2.424242 +L 1.939394,3.151515,1.939394,3.393939 +L 1.939394,3.393939,0,2.424242 + +[] 12 +L 0.242424,0.727273,0,0.484848 +L 0,0.484848,0,0.242424 +L 0,0.242424,0.242424,0 +L 0.242424,0,0.484848,0 +L 0.484848,0,0.727273,0.242424 +L 0.727273,0.242424,0.727273,0.484848 +L 0.727273,0.484848,0.484848,0.727273 +L 0.484848,0.727273,0.242424,0.727273 +L 0.242424,0.484848,0.242424,0.242424 +L 0.242424,0.242424,0.484848,0.242424 +L 0.484848,0.242424,0.484848,0.484848 +L 0.484848,0.484848,0.242424,0.484848 + +[] 12 +L 0.242424,0.727273,0,0.484848 +L 0,0.484848,0,0.242424 +L 0,0.242424,0.242424,0 +L 0.242424,0,0.484848,0 +L 0.484848,0,0.727273,0.242424 +L 0.727273,0.242424,0.727273,0.484848 +L 0.727273,0.484848,0.484848,0.727273 +L 0.484848,0.727273,0.242424,0.727273 +L 0.242424,0.484848,0.242424,0.242424 +L 0.242424,0.242424,0.484848,0.242424 +L 0.484848,0.242424,0.484848,0.484848 +L 0.484848,0.484848,0.242424,0.484848 + +[#015B] 53 +L 2.909091,2.666667,2.909091,2.909091 +L 2.909091,2.909091,2.666667,2.909091 +L 2.666667,2.909091,2.666667,2.424242 +L 2.666667,2.424242,3.151515,2.424242 +L 3.151515,2.424242,3.151515,2.909091 +L 3.151515,2.909091,2.909091,3.151515 +L 2.909091,3.151515,2.181818,3.393939 +L 2.181818,3.393939,1.454545,3.393939 +L 1.454545,3.393939,0.727273,3.151515 +L 0.727273,3.151515,0.484848,2.909091 +L 0.484848,2.909091,0.484848,2.424242 +L 0.484848,2.424242,0.727273,1.939394 +L 0.727273,1.939394,1.212121,1.69697 +L 1.212121,1.69697,1.939394,1.454545 +L 1.939394,1.454545,2.424242,1.212121 +L 2.424242,1.212121,2.666667,0.727273 +L 0.727273,3.151515,0.484848,2.424242 +L 0.727273,2.181818,1.212121,1.939394 +L 1.212121,1.939394,1.939394,1.69697 +L 1.939394,1.69697,2.424242,1.454545 +L 2.666667,1.212121,2.424242,0.242424 +L 0.484848,2.909091,0.727273,2.424242 +L 0.727273,2.424242,1.212121,2.181818 +L 1.212121,2.181818,1.939394,1.939394 +L 1.939394,1.939394,2.424242,1.69697 +L 2.424242,1.69697,2.666667,1.212121 +L 2.666667,1.212121,2.666667,0.727273 +L 2.666667,0.727273,2.424242,0.242424 +L 2.424242,0.242424,1.69697,0 +L 1.69697,0,0.969697,0 +L 0.969697,0,0.242424,0.242424 +L 0.242424,0.242424,0,0.484848 +L 0,0.484848,0,0.969697 +L 0,0.969697,0.484848,0.969697 +L 0.484848,0.969697,0.484848,0.484848 +L 0.484848,0.484848,0.242424,0.484848 +L 0.242424,0.484848,0.242424,0.727273 +L 2.666667,4.848485,2.424242,4.848485 +L 2.424242,4.848485,2.181818,5.090909 +L 2.181818,5.090909,2.181818,5.333333 +L 2.181818,5.333333,2.424242,5.575758 +L 2.424242,5.575758,2.666667,5.575758 +L 2.666667,5.575758,2.909091,5.333333 +L 2.909091,5.333333,2.909091,4.848485 +L 2.909091,4.848485,2.666667,4.363636 +L 2.666667,4.363636,2.424242,4.121212 +L 2.424242,4.121212,1.939394,3.878788 +L 2.424242,5.333333,2.424242,5.090909 +L 2.424242,5.090909,2.666667,5.090909 +L 2.666667,5.090909,2.666667,5.333333 +L 2.666667,5.333333,2.424242,5.333333 +L 2.666667,4.848485,2.666667,4.606061 +L 2.666667,4.606061,2.424242,4.121212 + +[] 12 +L 0.242424,0.727273,0,0.484848 +L 0,0.484848,0,0.242424 +L 0,0.242424,0.242424,0 +L 0.242424,0,0.484848,0 +L 0.484848,0,0.727273,0.242424 +L 0.727273,0.242424,0.727273,0.484848 +L 0.727273,0.484848,0.484848,0.727273 +L 0.484848,0.727273,0.242424,0.727273 +L 0.242424,0.484848,0.242424,0.242424 +L 0.242424,0.242424,0.484848,0.242424 +L 0.484848,0.242424,0.484848,0.484848 +L 0.484848,0.484848,0.242424,0.484848 + +[] 12 +L 0.242424,0.727273,0,0.484848 +L 0,0.484848,0,0.242424 +L 0,0.242424,0.242424,0 +L 0.242424,0,0.484848,0 +L 0.484848,0,0.727273,0.242424 +L 0.727273,0.242424,0.727273,0.484848 +L 0.727273,0.484848,0.484848,0.727273 +L 0.484848,0.727273,0.242424,0.727273 +L 0.242424,0.484848,0.242424,0.242424 +L 0.242424,0.242424,0.484848,0.242424 +L 0.484848,0.242424,0.484848,0.484848 +L 0.484848,0.484848,0.242424,0.484848 + +[] 12 +L 0.242424,0.727273,0,0.484848 +L 0,0.484848,0,0.242424 +L 0,0.242424,0.242424,0 +L 0.242424,0,0.484848,0 +L 0.484848,0,0.727273,0.242424 +L 0.727273,0.242424,0.727273,0.484848 +L 0.727273,0.484848,0.484848,0.727273 +L 0.484848,0.727273,0.242424,0.727273 +L 0.242424,0.484848,0.242424,0.242424 +L 0.242424,0.242424,0.484848,0.242424 +L 0.484848,0.242424,0.484848,0.484848 +L 0.484848,0.484848,0.242424,0.484848 + +[] 12 +L 0.242424,0.727273,0,0.484848 +L 0,0.484848,0,0.242424 +L 0,0.242424,0.242424,0 +L 0.242424,0,0.484848,0 +L 0.484848,0,0.727273,0.242424 +L 0.727273,0.242424,0.727273,0.484848 +L 0.727273,0.484848,0.484848,0.727273 +L 0.484848,0.727273,0.242424,0.727273 +L 0.242424,0.484848,0.242424,0.242424 +L 0.242424,0.242424,0.484848,0.242424 +L 0.484848,0.242424,0.484848,0.484848 +L 0.484848,0.484848,0.242424,0.484848 + +[] 12 +L 0.242424,0.727273,0,0.484848 +L 0,0.484848,0,0.242424 +L 0,0.242424,0.242424,0 +L 0.242424,0,0.484848,0 +L 0.484848,0,0.727273,0.242424 +L 0.727273,0.242424,0.727273,0.484848 +L 0.727273,0.484848,0.484848,0.727273 +L 0.484848,0.727273,0.242424,0.727273 +L 0.242424,0.484848,0.242424,0.242424 +L 0.242424,0.242424,0.484848,0.242424 +L 0.484848,0.242424,0.484848,0.484848 +L 0.484848,0.484848,0.242424,0.484848 + +[#017A] 41 +L 3.393939,3.393939,3.151515,2.909091 +L 3.151515,2.909091,2.666667,2.424242 +L 2.666667,2.424242,0.727273,0.969697 +L 0.727273,0.969697,0.242424,0.484848 +L 0.242424,0.484848,0,0 +L 3.151515,2.909091,0.969697,2.909091 +L 0.969697,2.909091,0.484848,2.666667 +L 0.484848,2.666667,0.242424,2.181818 +L 2.666667,2.909091,1.69697,3.151515 +L 1.69697,3.151515,0.969697,3.151515 +L 0.969697,3.151515,0.727273,2.909091 +L 2.666667,2.909091,1.69697,3.393939 +L 1.69697,3.393939,0.969697,3.393939 +L 0.969697,3.393939,0.484848,2.909091 +L 0.484848,2.909091,0.242424,2.181818 +L 0.242424,0.484848,2.424242,0.484848 +L 2.424242,0.484848,2.909091,0.727273 +L 2.909091,0.727273,3.151515,1.212121 +L 0.727273,0.484848,1.69697,0.242424 +L 1.69697,0.242424,2.424242,0.242424 +L 2.424242,0.242424,2.666667,0.484848 +L 0.727273,0.484848,1.69697,0 +L 1.69697,0,2.424242,0 +L 2.424242,0,2.909091,0.484848 +L 2.909091,0.484848,3.151515,1.212121 +L 2.666667,4.848485,2.424242,4.848485 +L 2.424242,4.848485,2.181818,5.090909 +L 2.181818,5.090909,2.181818,5.333333 +L 2.181818,5.333333,2.424242,5.575758 +L 2.424242,5.575758,2.666667,5.575758 +L 2.666667,5.575758,2.909091,5.333333 +L 2.909091,5.333333,2.909091,4.848485 +L 2.909091,4.848485,2.666667,4.363636 +L 2.666667,4.363636,2.424242,4.121212 +L 2.424242,4.121212,1.939394,3.878788 +L 2.424242,5.333333,2.424242,5.090909 +L 2.424242,5.090909,2.666667,5.090909 +L 2.666667,5.090909,2.666667,5.333333 +L 2.666667,5.333333,2.424242,5.333333 +L 2.666667,4.848485,2.666667,4.606061 +L 2.666667,4.606061,2.424242,4.121212 + +[] 12 +L 0.242424,0.727273,0,0.484848 +L 0,0.484848,0,0.242424 +L 0,0.242424,0.242424,0 +L 0.242424,0,0.484848,0 +L 0.484848,0,0.727273,0.242424 +L 0.727273,0.242424,0.727273,0.484848 +L 0.727273,0.484848,0.484848,0.727273 +L 0.484848,0.727273,0.242424,0.727273 +L 0.242424,0.484848,0.242424,0.242424 +L 0.242424,0.242424,0.484848,0.242424 +L 0.484848,0.242424,0.484848,0.484848 +L 0.484848,0.484848,0.242424,0.484848 + +[] 12 +L 0.242424,0.727273,0,0.484848 +L 0,0.484848,0,0.242424 +L 0,0.242424,0.242424,0 +L 0.242424,0,0.484848,0 +L 0.484848,0,0.727273,0.242424 +L 0.727273,0.242424,0.727273,0.484848 +L 0.727273,0.484848,0.484848,0.727273 +L 0.484848,0.727273,0.242424,0.727273 +L 0.242424,0.484848,0.242424,0.242424 +L 0.242424,0.242424,0.484848,0.242424 +L 0.484848,0.242424,0.484848,0.484848 +L 0.484848,0.484848,0.242424,0.484848 + +[#017C] 37 +L 3.393939,3.393939,3.151515,2.909091 +L 3.151515,2.909091,2.666667,2.424242 +L 2.666667,2.424242,0.727273,0.969697 +L 0.727273,0.969697,0.242424,0.484848 +L 0.242424,0.484848,0,0 +L 3.151515,2.909091,0.969697,2.909091 +L 0.969697,2.909091,0.484848,2.666667 +L 0.484848,2.666667,0.242424,2.181818 +L 2.666667,2.909091,1.69697,3.151515 +L 1.69697,3.151515,0.969697,3.151515 +L 0.969697,3.151515,0.727273,2.909091 +L 2.666667,2.909091,1.69697,3.393939 +L 1.69697,3.393939,0.969697,3.393939 +L 0.969697,3.393939,0.484848,2.909091 +L 0.484848,2.909091,0.242424,2.181818 +L 0.242424,0.484848,2.424242,0.484848 +L 2.424242,0.484848,2.909091,0.727273 +L 2.909091,0.727273,3.151515,1.212121 +L 0.727273,0.484848,1.69697,0.242424 +L 1.69697,0.242424,2.424242,0.242424 +L 2.424242,0.242424,2.666667,0.484848 +L 0.727273,0.484848,1.69697,0 +L 1.69697,0,2.424242,0 +L 2.424242,0,2.909091,0.484848 +L 2.909091,0.484848,3.151515,1.212121 +L 1.939394,4.606061,1.69697,4.363636 +L 1.69697,4.363636,1.69697,4.121212 +L 1.69697,4.121212,1.939394,3.878788 +L 1.939394,3.878788,2.181818,3.878788 +L 2.181818,3.878788,2.424242,4.121212 +L 2.424242,4.121212,2.424242,4.363636 +L 2.424242,4.363636,2.181818,4.606061 +L 2.181818,4.606061,1.939394,4.606061 +L 1.939394,4.363636,1.939394,4.121212 +L 1.939394,4.121212,2.181818,4.121212 +L 2.181818,4.121212,2.181818,4.363636 +L 2.181818,4.363636,1.939394,4.363636 + +[] 12 +L 0.242424,0.727273,0,0.484848 +L 0,0.484848,0,0.242424 +L 0,0.242424,0.242424,0 +L 0.242424,0,0.484848,0 +L 0.484848,0,0.727273,0.242424 +L 0.727273,0.242424,0.727273,0.484848 +L 0.727273,0.484848,0.484848,0.727273 +L 0.484848,0.727273,0.242424,0.727273 +L 0.242424,0.484848,0.242424,0.242424 +L 0.242424,0.242424,0.484848,0.242424 +L 0.484848,0.242424,0.484848,0.484848 +L 0.484848,0.484848,0.242424,0.484848 + +[] 12 +L 0.242424,0.727273,0,0.484848 +L 0,0.484848,0,0.242424 +L 0,0.242424,0.242424,0 +L 0.242424,0,0.484848,0 +L 0.484848,0,0.727273,0.242424 +L 0.727273,0.242424,0.727273,0.484848 +L 0.727273,0.484848,0.484848,0.727273 +L 0.484848,0.727273,0.242424,0.727273 +L 0.242424,0.484848,0.242424,0.242424 +L 0.242424,0.242424,0.484848,0.242424 +L 0.484848,0.242424,0.484848,0.484848 +L 0.484848,0.484848,0.242424,0.484848 + +[] 12 +L 0.242424,0.727273,0,0.484848 +L 0,0.484848,0,0.242424 +L 0,0.242424,0.242424,0 +L 0.242424,0,0.484848,0 +L 0.484848,0,0.727273,0.242424 +L 0.727273,0.242424,0.727273,0.484848 +L 0.727273,0.484848,0.484848,0.727273 +L 0.484848,0.727273,0.242424,0.727273 +L 0.242424,0.484848,0.242424,0.242424 +L 0.242424,0.242424,0.484848,0.242424 +L 0.484848,0.242424,0.484848,0.484848 +L 0.484848,0.484848,0.242424,0.484848 + +[] 12 +L 0.242424,0.727273,0,0.484848 +L 0,0.484848,0,0.242424 +L 0,0.242424,0.242424,0 +L 0.242424,0,0.484848,0 +L 0.484848,0,0.727273,0.242424 +L 0.727273,0.242424,0.727273,0.484848 +L 0.727273,0.484848,0.484848,0.727273 +L 0.484848,0.727273,0.242424,0.727273 +L 0.242424,0.484848,0.242424,0.242424 +L 0.242424,0.242424,0.484848,0.242424 +L 0.484848,0.242424,0.484848,0.484848 +L 0.484848,0.484848,0.242424,0.484848 + +[] 12 +L 0.242424,0.727273,0,0.484848 +L 0,0.484848,0,0.242424 +L 0,0.242424,0.242424,0 +L 0.242424,0,0.484848,0 +L 0.484848,0,0.727273,0.242424 +L 0.727273,0.242424,0.727273,0.484848 +L 0.727273,0.484848,0.484848,0.727273 +L 0.484848,0.727273,0.242424,0.727273 +L 0.242424,0.484848,0.242424,0.242424 +L 0.242424,0.242424,0.484848,0.242424 +L 0.484848,0.242424,0.484848,0.484848 +L 0.484848,0.484848,0.242424,0.484848 + +[] 12 +L 0.242424,0.727273,0,0.484848 +L 0,0.484848,0,0.242424 +L 0,0.242424,0.242424,0 +L 0.242424,0,0.484848,0 +L 0.484848,0,0.727273,0.242424 +L 0.727273,0.242424,0.727273,0.484848 +L 0.727273,0.484848,0.484848,0.727273 +L 0.484848,0.727273,0.242424,0.727273 +L 0.242424,0.484848,0.242424,0.242424 +L 0.242424,0.242424,0.484848,0.242424 +L 0.484848,0.242424,0.484848,0.484848 +L 0.484848,0.484848,0.242424,0.484848 + +[#0106] 51 +L 3.636364,4.606061,3.878788,4.606061 +L 3.878788,4.606061,4.121212,5.090909 +L 4.121212,5.090909,3.878788,3.636364 +L 3.878788,3.636364,3.878788,4.121212 +L 3.878788,4.121212,3.636364,4.606061 +L 3.636364,4.606061,3.393939,4.848485 +L 3.393939,4.848485,2.909091,5.090909 +L 2.909091,5.090909,2.181818,5.090909 +L 2.181818,5.090909,1.454545,4.848485 +L 1.454545,4.848485,0.969697,4.363636 +L 0.969697,4.363636,0.484848,3.636364 +L 0.484848,3.636364,0.242424,2.909091 +L 0.242424,2.909091,0,1.939394 +L 0,1.939394,0,1.212121 +L 0,1.212121,0.242424,0.484848 +L 0.242424,0.484848,0.484848,0.242424 +L 0.484848,0.242424,1.212121,0 +L 1.212121,0,1.939394,0 +L 1.939394,0,2.424242,0.242424 +L 2.424242,0.242424,2.909091,0.727273 +L 2.909091,0.727273,3.151515,1.212121 +L 1.454545,4.606061,0.969697,4.121212 +L 0.969697,4.121212,0.727273,3.636364 +L 0.727273,3.636364,0.484848,2.909091 +L 0.484848,2.909091,0.242424,1.939394 +L 0.242424,1.939394,0.242424,0.969697 +L 0.242424,0.969697,0.484848,0.484848 +L 2.181818,5.090909,1.69697,4.848485 +L 1.69697,4.848485,1.212121,4.121212 +L 1.212121,4.121212,0.969697,3.636364 +L 0.969697,3.636364,0.727273,2.909091 +L 0.727273,2.909091,0.484848,1.939394 +L 0.484848,1.939394,0.484848,0.727273 +L 0.484848,0.727273,0.727273,0.242424 +L 0.727273,0.242424,1.212121,0 +L 3.393939,6.30303,3.151515,6.30303 +L 3.151515,6.30303,2.909091,6.545455 +L 2.909091,6.545455,2.909091,6.787879 +L 2.909091,6.787879,3.151515,7.030303 +L 3.151515,7.030303,3.393939,7.030303 +L 3.393939,7.030303,3.636364,6.787879 +L 3.636364,6.787879,3.636364,6.30303 +L 3.636364,6.30303,3.393939,5.818182 +L 3.393939,5.818182,3.151515,5.575758 +L 3.151515,5.575758,2.666667,5.333333 +L 3.151515,6.787879,3.151515,6.545455 +L 3.151515,6.545455,3.393939,6.545455 +L 3.393939,6.545455,3.393939,6.787879 +L 3.393939,6.787879,3.151515,6.787879 +L 3.393939,6.30303,3.393939,6.060606 +L 3.393939,6.060606,3.151515,5.575758 + +[] 12 +L 0.242424,0.727273,0,0.484848 +L 0,0.484848,0,0.242424 +L 0,0.242424,0.242424,0 +L 0.242424,0,0.484848,0 +L 0.484848,0,0.727273,0.242424 +L 0.727273,0.242424,0.727273,0.484848 +L 0.727273,0.484848,0.484848,0.727273 +L 0.484848,0.727273,0.242424,0.727273 +L 0.242424,0.484848,0.242424,0.242424 +L 0.242424,0.242424,0.484848,0.242424 +L 0.484848,0.242424,0.484848,0.484848 +L 0.484848,0.484848,0.242424,0.484848 + +[] 12 +L 0.242424,0.727273,0,0.484848 +L 0,0.484848,0,0.242424 +L 0,0.242424,0.242424,0 +L 0.242424,0,0.484848,0 +L 0.484848,0,0.727273,0.242424 +L 0.727273,0.242424,0.727273,0.484848 +L 0.727273,0.484848,0.484848,0.727273 +L 0.484848,0.727273,0.242424,0.727273 +L 0.242424,0.484848,0.242424,0.242424 +L 0.242424,0.242424,0.484848,0.242424 +L 0.484848,0.242424,0.484848,0.484848 +L 0.484848,0.484848,0.242424,0.484848 + +[] 12 +L 0.242424,0.727273,0,0.484848 +L 0,0.484848,0,0.242424 +L 0,0.242424,0.242424,0 +L 0.242424,0,0.484848,0 +L 0.484848,0,0.727273,0.242424 +L 0.727273,0.242424,0.727273,0.484848 +L 0.727273,0.484848,0.484848,0.727273 +L 0.484848,0.727273,0.242424,0.727273 +L 0.242424,0.484848,0.242424,0.242424 +L 0.242424,0.242424,0.484848,0.242424 +L 0.484848,0.242424,0.484848,0.484848 +L 0.484848,0.484848,0.242424,0.484848 + +[#0118] 46 +L 2.181818,5.090909,0.727273,0 +L 2.424242,5.090909,0.969697,0 +L 2.666667,5.090909,1.212121,0 +L 3.636364,3.636364,3.151515,1.69697 +L 1.454545,5.090909,5.090909,5.090909 +L 5.090909,5.090909,4.848485,3.636364 +L 1.939394,2.666667,3.393939,2.666667 +L 0,0,3.636364,0 +L 3.636364,0,4.121212,1.212121 +L 1.69697,5.090909,2.424242,4.848485 +L 1.939394,5.090909,2.181818,4.606061 +L 2.909091,5.090909,2.424242,4.606061 +L 3.151515,5.090909,2.424242,4.848485 +L 4.121212,5.090909,4.848485,4.848485 +L 4.363636,5.090909,4.848485,4.606061 +L 4.606061,5.090909,4.848485,4.363636 +L 4.848485,5.090909,4.848485,3.636364 +L 3.636364,3.636364,3.151515,2.666667 +L 3.151515,2.666667,3.151515,1.69697 +L 3.393939,3.151515,2.909091,2.666667 +L 2.909091,2.666667,3.151515,2.181818 +L 3.393939,2.909091,2.666667,2.666667 +L 2.666667,2.666667,3.151515,2.424242 +L 0.969697,0.242424,0.242424,0 +L 0.969697,0.484848,0.484848,0 +L 1.212121,0.484848,1.454545,0 +L 0.969697,0.242424,1.69697,0 +L 2.424242,0,3.636364,0.242424 +L 2.909091,0,3.636364,0.484848 +L 3.636364,0.484848,4.121212,1.212121 +L 2.666667,0,2.181818,-0.242424 +L 2.181818,-0.242424,1.939394,-0.484848 +L 1.939394,-0.484848,1.69697,-0.969697 +L 1.69697,-0.969697,1.69697,-1.454545 +L 1.69697,-1.454545,1.939394,-1.69697 +L 1.939394,-1.69697,2.181818,-1.69697 +L 2.181818,-1.69697,2.424242,-1.454545 +L 2.424242,-1.454545,2.424242,-1.212121 +L 2.424242,-1.212121,2.181818,-0.969697 +L 2.181818,-0.969697,1.939394,-0.969697 +L 2.181818,-0.242424,1.939394,-0.727273 +L 1.939394,-0.727273,1.939394,-0.969697 +L 1.939394,-1.212121,1.939394,-1.454545 +L 1.939394,-1.454545,2.181818,-1.454545 +L 2.181818,-1.454545,2.181818,-1.212121 +L 2.181818,-1.212121,1.939394,-1.212121 + +[] 12 +L 0.242424,0.727273,0,0.484848 +L 0,0.484848,0,0.242424 +L 0,0.242424,0.242424,0 +L 0.242424,0,0.484848,0 +L 0.484848,0,0.727273,0.242424 +L 0.727273,0.242424,0.727273,0.484848 +L 0.727273,0.484848,0.484848,0.727273 +L 0.484848,0.727273,0.242424,0.727273 +L 0.242424,0.484848,0.242424,0.242424 +L 0.242424,0.242424,0.484848,0.242424 +L 0.484848,0.242424,0.484848,0.484848 +L 0.484848,0.484848,0.242424,0.484848 + +[] 12 +L 0.242424,0.727273,0,0.484848 +L 0,0.484848,0,0.242424 +L 0,0.242424,0.242424,0 +L 0.242424,0,0.484848,0 +L 0.484848,0,0.727273,0.242424 +L 0.727273,0.242424,0.727273,0.484848 +L 0.727273,0.484848,0.484848,0.727273 +L 0.484848,0.727273,0.242424,0.727273 +L 0.242424,0.484848,0.242424,0.242424 +L 0.242424,0.242424,0.484848,0.242424 +L 0.484848,0.242424,0.484848,0.484848 +L 0.484848,0.484848,0.242424,0.484848 + +[] 12 +L 0.242424,0.727273,0,0.484848 +L 0,0.484848,0,0.242424 +L 0,0.242424,0.242424,0 +L 0.242424,0,0.484848,0 +L 0.484848,0,0.727273,0.242424 +L 0.727273,0.242424,0.727273,0.484848 +L 0.727273,0.484848,0.484848,0.727273 +L 0.484848,0.727273,0.242424,0.727273 +L 0.242424,0.484848,0.242424,0.242424 +L 0.242424,0.242424,0.484848,0.242424 +L 0.484848,0.242424,0.484848,0.484848 +L 0.484848,0.484848,0.242424,0.484848 + +[] 12 +L 0.242424,0.727273,0,0.484848 +L 0,0.484848,0,0.242424 +L 0,0.242424,0.242424,0 +L 0.242424,0,0.484848,0 +L 0.484848,0,0.727273,0.242424 +L 0.727273,0.242424,0.727273,0.484848 +L 0.727273,0.484848,0.484848,0.727273 +L 0.484848,0.727273,0.242424,0.727273 +L 0.242424,0.484848,0.242424,0.242424 +L 0.242424,0.242424,0.484848,0.242424 +L 0.484848,0.242424,0.484848,0.484848 +L 0.484848,0.484848,0.242424,0.484848 + +[] 12 +L 0.242424,0.727273,0,0.484848 +L 0,0.484848,0,0.242424 +L 0,0.242424,0.242424,0 +L 0.242424,0,0.484848,0 +L 0.484848,0,0.727273,0.242424 +L 0.727273,0.242424,0.727273,0.484848 +L 0.727273,0.484848,0.484848,0.727273 +L 0.484848,0.727273,0.242424,0.727273 +L 0.242424,0.484848,0.242424,0.242424 +L 0.242424,0.242424,0.484848,0.242424 +L 0.484848,0.242424,0.484848,0.484848 +L 0.484848,0.484848,0.242424,0.484848 + +[] 12 +L 0.242424,0.727273,0,0.484848 +L 0,0.484848,0,0.242424 +L 0,0.242424,0.242424,0 +L 0.242424,0,0.484848,0 +L 0.484848,0,0.727273,0.242424 +L 0.727273,0.242424,0.727273,0.484848 +L 0.727273,0.484848,0.484848,0.727273 +L 0.484848,0.727273,0.242424,0.727273 +L 0.242424,0.484848,0.242424,0.242424 +L 0.242424,0.242424,0.484848,0.242424 +L 0.484848,0.242424,0.484848,0.484848 +L 0.484848,0.484848,0.242424,0.484848 + +[#0143] 31 +L 2.181818,5.090909,0.727273,0.242424 +L 2.181818,5.090909,3.878788,0 +L 2.424242,5.090909,3.878788,0.727273 +L 2.666667,5.090909,4.121212,0.727273 +L 5.333333,4.848485,4.121212,0.727273 +L 4.121212,0.727273,3.878788,0 +L 1.454545,5.090909,2.666667,5.090909 +L 4.606061,5.090909,6.060606,5.090909 +L 0,0,1.454545,0 +L 1.69697,5.090909,2.424242,4.848485 +L 1.939394,5.090909,2.424242,4.606061 +L 4.848485,5.090909,5.333333,4.848485 +L 5.818182,5.090909,5.333333,4.848485 +L 0.727273,0.242424,0.242424,0 +L 0.727273,0.242424,1.212121,0 +L 4.606061,6.545455,4.363636,6.545455 +L 4.363636,6.545455,4.121212,6.787879 +L 4.121212,6.787879,4.121212,7.030303 +L 4.121212,7.030303,4.363636,7.272727 +L 4.363636,7.272727,4.606061,7.272727 +L 4.606061,7.272727,4.848485,7.030303 +L 4.848485,7.030303,4.848485,6.545455 +L 4.848485,6.545455,4.606061,6.060606 +L 4.606061,6.060606,4.363636,5.818182 +L 4.363636,5.818182,3.878788,5.575758 +L 4.363636,7.030303,4.363636,6.787879 +L 4.363636,6.787879,4.606061,6.787879 +L 4.606061,6.787879,4.606061,7.030303 +L 4.606061,7.030303,4.363636,7.030303 +L 4.606061,6.545455,4.606061,6.30303 +L 4.606061,6.30303,4.363636,5.818182 + +[] 12 +L 0.242424,0.727273,0,0.484848 +L 0,0.484848,0,0.242424 +L 0,0.242424,0.242424,0 +L 0.242424,0,0.484848,0 +L 0.484848,0,0.727273,0.242424 +L 0.727273,0.242424,0.727273,0.484848 +L 0.727273,0.484848,0.484848,0.727273 +L 0.484848,0.727273,0.242424,0.727273 +L 0.242424,0.484848,0.242424,0.242424 +L 0.242424,0.242424,0.484848,0.242424 +L 0.484848,0.242424,0.484848,0.484848 +L 0.484848,0.484848,0.242424,0.484848 + +[#00D3] 62 +L 2.181818,5.090909,1.454545,4.848485 +L 1.454545,4.848485,0.969697,4.363636 +L 0.969697,4.363636,0.484848,3.636364 +L 0.484848,3.636364,0.242424,2.909091 +L 0.242424,2.909091,0,1.939394 +L 0,1.939394,0,1.212121 +L 0,1.212121,0.242424,0.484848 +L 0.242424,0.484848,0.484848,0.242424 +L 0.484848,0.242424,0.969697,0 +L 0.969697,0,1.69697,0 +L 1.69697,0,2.424242,0.242424 +L 2.424242,0.242424,2.909091,0.727273 +L 2.909091,0.727273,3.393939,1.454545 +L 3.393939,1.454545,3.636364,2.181818 +L 3.636364,2.181818,3.878788,3.151515 +L 3.878788,3.151515,3.878788,3.878788 +L 3.878788,3.878788,3.636364,4.606061 +L 3.636364,4.606061,3.393939,4.848485 +L 3.393939,4.848485,2.909091,5.090909 +L 2.909091,5.090909,2.181818,5.090909 +L 1.212121,4.363636,0.727273,3.636364 +L 0.727273,3.636364,0.484848,2.909091 +L 0.484848,2.909091,0.242424,1.939394 +L 0.242424,1.939394,0.242424,0.969697 +L 0.242424,0.969697,0.484848,0.484848 +L 2.666667,0.727273,3.151515,1.454545 +L 3.151515,1.454545,3.393939,2.181818 +L 3.393939,2.181818,3.636364,3.151515 +L 3.636364,3.151515,3.636364,4.121212 +L 3.636364,4.121212,3.393939,4.606061 +L 2.181818,5.090909,1.69697,4.848485 +L 1.69697,4.848485,1.212121,4.121212 +L 1.212121,4.121212,0.969697,3.636364 +L 0.969697,3.636364,0.727273,2.909091 +L 0.727273,2.909091,0.484848,1.939394 +L 0.484848,1.939394,0.484848,0.727273 +L 0.484848,0.727273,0.727273,0.242424 +L 0.727273,0.242424,0.969697,0 +L 1.69697,0,2.181818,0.242424 +L 2.181818,0.242424,2.666667,0.969697 +L 2.666667,0.969697,2.909091,1.454545 +L 2.909091,1.454545,3.151515,2.181818 +L 3.151515,2.181818,3.393939,3.151515 +L 3.393939,3.151515,3.393939,4.363636 +L 3.393939,4.363636,3.151515,4.848485 +L 3.151515,4.848485,2.909091,5.090909 +L 3.393939,6.545455,3.151515,6.545455 +L 3.151515,6.545455,2.909091,6.787879 +L 2.909091,6.787879,2.909091,7.030303 +L 2.909091,7.030303,3.151515,7.272727 +L 3.151515,7.272727,3.393939,7.272727 +L 3.393939,7.272727,3.636364,7.030303 +L 3.636364,7.030303,3.636364,6.545455 +L 3.636364,6.545455,3.393939,6.060606 +L 3.393939,6.060606,3.151515,5.818182 +L 3.151515,5.818182,2.666667,5.575758 +L 3.151515,7.030303,3.151515,6.787879 +L 3.151515,6.787879,3.393939,6.787879 +L 3.393939,6.787879,3.393939,7.030303 +L 3.393939,7.030303,3.151515,7.030303 +L 3.393939,6.545455,3.393939,6.30303 +L 3.393939,6.30303,3.151515,5.818182 + +[] 12 +L 0.242424,0.727273,0,0.484848 +L 0,0.484848,0,0.242424 +L 0,0.242424,0.242424,0 +L 0.242424,0,0.484848,0 +L 0.484848,0,0.727273,0.242424 +L 0.727273,0.242424,0.727273,0.484848 +L 0.727273,0.484848,0.484848,0.727273 +L 0.484848,0.727273,0.242424,0.727273 +L 0.242424,0.484848,0.242424,0.242424 +L 0.242424,0.242424,0.484848,0.242424 +L 0.484848,0.242424,0.484848,0.484848 +L 0.484848,0.484848,0.242424,0.484848 + +[] 12 +L 0.242424,0.727273,0,0.484848 +L 0,0.484848,0,0.242424 +L 0,0.242424,0.242424,0 +L 0.242424,0,0.484848,0 +L 0.484848,0,0.727273,0.242424 +L 0.727273,0.242424,0.727273,0.484848 +L 0.727273,0.484848,0.484848,0.727273 +L 0.484848,0.727273,0.242424,0.727273 +L 0.242424,0.484848,0.242424,0.242424 +L 0.242424,0.242424,0.484848,0.242424 +L 0.484848,0.242424,0.484848,0.484848 +L 0.484848,0.484848,0.242424,0.484848 + +[] 12 +L 0.242424,0.727273,0,0.484848 +L 0,0.484848,0,0.242424 +L 0,0.242424,0.242424,0 +L 0.242424,0,0.484848,0 +L 0.484848,0,0.727273,0.242424 +L 0.727273,0.242424,0.727273,0.484848 +L 0.727273,0.484848,0.484848,0.727273 +L 0.484848,0.727273,0.242424,0.727273 +L 0.242424,0.484848,0.242424,0.242424 +L 0.242424,0.242424,0.484848,0.242424 +L 0.484848,0.242424,0.484848,0.484848 +L 0.484848,0.484848,0.242424,0.484848 + +[] 12 +L 0.242424,0.727273,0,0.484848 +L 0,0.484848,0,0.242424 +L 0,0.242424,0.242424,0 +L 0.242424,0,0.484848,0 +L 0.484848,0,0.727273,0.242424 +L 0.727273,0.242424,0.727273,0.484848 +L 0.727273,0.484848,0.484848,0.727273 +L 0.484848,0.727273,0.242424,0.727273 +L 0.242424,0.484848,0.242424,0.242424 +L 0.242424,0.242424,0.484848,0.242424 +L 0.484848,0.242424,0.484848,0.484848 +L 0.484848,0.484848,0.242424,0.484848 + +[] 12 +L 0.242424,0.727273,0,0.484848 +L 0,0.484848,0,0.242424 +L 0,0.242424,0.242424,0 +L 0.242424,0,0.484848,0 +L 0.484848,0,0.727273,0.242424 +L 0.727273,0.242424,0.727273,0.484848 +L 0.727273,0.484848,0.484848,0.727273 +L 0.484848,0.727273,0.242424,0.727273 +L 0.242424,0.484848,0.242424,0.242424 +L 0.242424,0.242424,0.484848,0.242424 +L 0.484848,0.242424,0.484848,0.484848 +L 0.484848,0.484848,0.242424,0.484848 + +[] 12 +L 0.242424,0.727273,0,0.484848 +L 0,0.484848,0,0.242424 +L 0,0.242424,0.242424,0 +L 0.242424,0,0.484848,0 +L 0.484848,0,0.727273,0.242424 +L 0.727273,0.242424,0.727273,0.484848 +L 0.727273,0.484848,0.484848,0.727273 +L 0.484848,0.727273,0.242424,0.727273 +L 0.242424,0.484848,0.242424,0.242424 +L 0.242424,0.242424,0.484848,0.242424 +L 0.484848,0.242424,0.484848,0.484848 +L 0.484848,0.484848,0.242424,0.484848 + +[] 12 +L 0.242424,0.727273,0,0.484848 +L 0,0.484848,0,0.242424 +L 0,0.242424,0.242424,0 +L 0.242424,0,0.484848,0 +L 0.484848,0,0.727273,0.242424 +L 0.727273,0.242424,0.727273,0.484848 +L 0.727273,0.484848,0.484848,0.727273 +L 0.484848,0.727273,0.242424,0.727273 +L 0.242424,0.484848,0.242424,0.242424 +L 0.242424,0.242424,0.484848,0.242424 +L 0.484848,0.242424,0.484848,0.484848 +L 0.484848,0.484848,0.242424,0.484848 + +[] 12 +L 0.242424,0.727273,0,0.484848 +L 0,0.484848,0,0.242424 +L 0,0.242424,0.242424,0 +L 0.242424,0,0.484848,0 +L 0.484848,0,0.727273,0.242424 +L 0.727273,0.242424,0.727273,0.484848 +L 0.727273,0.484848,0.484848,0.727273 +L 0.484848,0.727273,0.242424,0.727273 +L 0.242424,0.484848,0.242424,0.242424 +L 0.242424,0.242424,0.484848,0.242424 +L 0.484848,0.242424,0.484848,0.484848 +L 0.484848,0.484848,0.242424,0.484848 + +[] 12 +L 0.242424,0.727273,0,0.484848 +L 0,0.484848,0,0.242424 +L 0,0.242424,0.242424,0 +L 0.242424,0,0.484848,0 +L 0.484848,0,0.727273,0.242424 +L 0.727273,0.242424,0.727273,0.484848 +L 0.727273,0.484848,0.484848,0.727273 +L 0.484848,0.727273,0.242424,0.727273 +L 0.242424,0.484848,0.242424,0.242424 +L 0.242424,0.242424,0.484848,0.242424 +L 0.484848,0.242424,0.484848,0.484848 +L 0.484848,0.484848,0.242424,0.484848 + +[] 12 +L 0.242424,0.727273,0,0.484848 +L 0,0.484848,0,0.242424 +L 0,0.242424,0.242424,0 +L 0.242424,0,0.484848,0 +L 0.484848,0,0.727273,0.242424 +L 0.727273,0.242424,0.727273,0.484848 +L 0.727273,0.484848,0.484848,0.727273 +L 0.484848,0.727273,0.242424,0.727273 +L 0.242424,0.484848,0.242424,0.242424 +L 0.242424,0.242424,0.484848,0.242424 +L 0.484848,0.242424,0.484848,0.484848 +L 0.484848,0.484848,0.242424,0.484848 + +[] 12 +L 0.242424,0.727273,0,0.484848 +L 0,0.484848,0,0.242424 +L 0,0.242424,0.242424,0 +L 0.242424,0,0.484848,0 +L 0.484848,0,0.727273,0.242424 +L 0.727273,0.242424,0.727273,0.484848 +L 0.727273,0.484848,0.484848,0.727273 +L 0.484848,0.727273,0.242424,0.727273 +L 0.242424,0.484848,0.242424,0.242424 +L 0.242424,0.242424,0.484848,0.242424 +L 0.484848,0.242424,0.484848,0.484848 +L 0.484848,0.484848,0.242424,0.484848 + +[] 12 +L 0.242424,0.727273,0,0.484848 +L 0,0.484848,0,0.242424 +L 0,0.242424,0.242424,0 +L 0.242424,0,0.484848,0 +L 0.484848,0,0.727273,0.242424 +L 0.727273,0.242424,0.727273,0.484848 +L 0.727273,0.484848,0.484848,0.727273 +L 0.484848,0.727273,0.242424,0.727273 +L 0.242424,0.484848,0.242424,0.242424 +L 0.242424,0.242424,0.484848,0.242424 +L 0.484848,0.242424,0.484848,0.484848 +L 0.484848,0.484848,0.242424,0.484848 + +[] 12 +L 0.242424,0.727273,0,0.484848 +L 0,0.484848,0,0.242424 +L 0,0.242424,0.242424,0 +L 0.242424,0,0.484848,0 +L 0.484848,0,0.727273,0.242424 +L 0.727273,0.242424,0.727273,0.484848 +L 0.727273,0.484848,0.484848,0.727273 +L 0.484848,0.727273,0.242424,0.727273 +L 0.242424,0.484848,0.242424,0.242424 +L 0.242424,0.242424,0.484848,0.242424 +L 0.484848,0.242424,0.484848,0.484848 +L 0.484848,0.484848,0.242424,0.484848 + +[] 12 +L 0.242424,0.727273,0,0.484848 +L 0,0.484848,0,0.242424 +L 0,0.242424,0.242424,0 +L 0.242424,0,0.484848,0 +L 0.484848,0,0.727273,0.242424 +L 0.727273,0.242424,0.727273,0.484848 +L 0.727273,0.484848,0.484848,0.727273 +L 0.484848,0.727273,0.242424,0.727273 +L 0.242424,0.484848,0.242424,0.242424 +L 0.242424,0.242424,0.484848,0.242424 +L 0.484848,0.242424,0.484848,0.484848 +L 0.484848,0.484848,0.242424,0.484848 + +[] 12 +L 0.242424,0.727273,0,0.484848 +L 0,0.484848,0,0.242424 +L 0,0.242424,0.242424,0 +L 0.242424,0,0.484848,0 +L 0.484848,0,0.727273,0.242424 +L 0.727273,0.242424,0.727273,0.484848 +L 0.727273,0.484848,0.484848,0.727273 +L 0.484848,0.727273,0.242424,0.727273 +L 0.242424,0.484848,0.242424,0.242424 +L 0.242424,0.242424,0.484848,0.242424 +L 0.484848,0.242424,0.484848,0.484848 +L 0.484848,0.484848,0.242424,0.484848 + +[] 12 +L 0.242424,0.727273,0,0.484848 +L 0,0.484848,0,0.242424 +L 0,0.242424,0.242424,0 +L 0.242424,0,0.484848,0 +L 0.484848,0,0.727273,0.242424 +L 0.727273,0.242424,0.727273,0.484848 +L 0.727273,0.484848,0.484848,0.727273 +L 0.484848,0.727273,0.242424,0.727273 +L 0.242424,0.484848,0.242424,0.242424 +L 0.242424,0.242424,0.484848,0.242424 +L 0.484848,0.242424,0.484848,0.484848 +L 0.484848,0.484848,0.242424,0.484848 + +[] 12 +L 0.242424,0.727273,0,0.484848 +L 0,0.484848,0,0.242424 +L 0,0.242424,0.242424,0 +L 0.242424,0,0.484848,0 +L 0.484848,0,0.727273,0.242424 +L 0.727273,0.242424,0.727273,0.484848 +L 0.727273,0.484848,0.484848,0.727273 +L 0.484848,0.727273,0.242424,0.727273 +L 0.242424,0.484848,0.242424,0.242424 +L 0.242424,0.242424,0.484848,0.242424 +L 0.484848,0.242424,0.484848,0.484848 +L 0.484848,0.484848,0.242424,0.484848 + +[] 12 +L 0.242424,0.727273,0,0.484848 +L 0,0.484848,0,0.242424 +L 0,0.242424,0.242424,0 +L 0.242424,0,0.484848,0 +L 0.484848,0,0.727273,0.242424 +L 0.727273,0.242424,0.727273,0.484848 +L 0.727273,0.484848,0.484848,0.727273 +L 0.484848,0.727273,0.242424,0.727273 +L 0.242424,0.484848,0.242424,0.242424 +L 0.242424,0.242424,0.484848,0.242424 +L 0.484848,0.242424,0.484848,0.484848 +L 0.484848,0.484848,0.242424,0.484848 + +[#0107] 44 +L 2.666667,2.424242,2.666667,2.666667 +L 2.666667,2.666667,2.424242,2.666667 +L 2.424242,2.666667,2.424242,2.181818 +L 2.424242,2.181818,2.909091,2.181818 +L 2.909091,2.181818,2.909091,2.666667 +L 2.909091,2.666667,2.666667,3.151515 +L 2.666667,3.151515,2.181818,3.393939 +L 2.181818,3.393939,1.454545,3.393939 +L 1.454545,3.393939,0.727273,3.151515 +L 0.727273,3.151515,0.242424,2.424242 +L 0.242424,2.424242,0,1.69697 +L 0,1.69697,0,1.212121 +L 0,1.212121,0.242424,0.484848 +L 0.242424,0.484848,0.484848,0.242424 +L 0.484848,0.242424,0.969697,0 +L 0.969697,0,1.454545,0 +L 1.454545,0,2.181818,0.242424 +L 2.181818,0.242424,2.666667,0.969697 +L 0.727273,2.909091,0.484848,2.424242 +L 0.484848,2.424242,0.242424,1.69697 +L 0.242424,1.69697,0.242424,0.969697 +L 0.242424,0.969697,0.484848,0.484848 +L 1.454545,3.393939,0.969697,2.909091 +L 0.969697,2.909091,0.727273,2.424242 +L 0.727273,2.424242,0.484848,1.69697 +L 0.484848,1.69697,0.484848,0.969697 +L 0.484848,0.969697,0.727273,0.242424 +L 0.727273,0.242424,0.969697,0 +L 2.666667,4.848485,2.424242,4.848485 +L 2.424242,4.848485,2.181818,5.090909 +L 2.181818,5.090909,2.181818,5.333333 +L 2.181818,5.333333,2.424242,5.575758 +L 2.424242,5.575758,2.666667,5.575758 +L 2.666667,5.575758,2.909091,5.333333 +L 2.909091,5.333333,2.909091,4.848485 +L 2.909091,4.848485,2.666667,4.363636 +L 2.666667,4.363636,2.424242,4.121212 +L 2.424242,4.121212,1.939394,3.878788 +L 2.424242,5.333333,2.424242,5.090909 +L 2.424242,5.090909,2.666667,5.090909 +L 2.666667,5.090909,2.666667,5.333333 +L 2.666667,5.333333,2.424242,5.333333 +L 2.666667,4.848485,2.666667,4.606061 +L 2.666667,4.606061,2.424242,4.121212 + +[] 12 +L 0.242424,0.727273,0,0.484848 +L 0,0.484848,0,0.242424 +L 0,0.242424,0.242424,0 +L 0.242424,0,0.484848,0 +L 0.484848,0,0.727273,0.242424 +L 0.727273,0.242424,0.727273,0.484848 +L 0.727273,0.484848,0.484848,0.727273 +L 0.484848,0.727273,0.242424,0.727273 +L 0.242424,0.484848,0.242424,0.242424 +L 0.242424,0.242424,0.484848,0.242424 +L 0.484848,0.242424,0.484848,0.484848 +L 0.484848,0.484848,0.242424,0.484848 + +[] 12 +L 0.242424,0.727273,0,0.484848 +L 0,0.484848,0,0.242424 +L 0,0.242424,0.242424,0 +L 0.242424,0,0.484848,0 +L 0.484848,0,0.727273,0.242424 +L 0.727273,0.242424,0.727273,0.484848 +L 0.727273,0.484848,0.484848,0.727273 +L 0.484848,0.727273,0.242424,0.727273 +L 0.242424,0.484848,0.242424,0.242424 +L 0.242424,0.242424,0.484848,0.242424 +L 0.484848,0.242424,0.484848,0.484848 +L 0.484848,0.484848,0.242424,0.484848 + +[] 12 +L 0.242424,0.727273,0,0.484848 +L 0,0.484848,0,0.242424 +L 0,0.242424,0.242424,0 +L 0.242424,0,0.484848,0 +L 0.484848,0,0.727273,0.242424 +L 0.727273,0.242424,0.727273,0.484848 +L 0.727273,0.484848,0.484848,0.727273 +L 0.484848,0.727273,0.242424,0.727273 +L 0.242424,0.484848,0.242424,0.242424 +L 0.242424,0.242424,0.484848,0.242424 +L 0.484848,0.242424,0.484848,0.484848 +L 0.484848,0.484848,0.242424,0.484848 + +[#0119] 43 +L 0.242424,1.212121,1.212121,1.454545 +L 1.212121,1.454545,1.939394,1.69697 +L 1.939394,1.69697,2.666667,2.181818 +L 2.666667,2.181818,2.909091,2.666667 +L 2.909091,2.666667,2.666667,3.151515 +L 2.666667,3.151515,2.181818,3.393939 +L 2.181818,3.393939,1.454545,3.393939 +L 1.454545,3.393939,0.727273,3.151515 +L 0.727273,3.151515,0.242424,2.424242 +L 0.242424,2.424242,0,1.69697 +L 0,1.69697,0,1.212121 +L 0,1.212121,0.242424,0.484848 +L 0.242424,0.484848,0.484848,0.242424 +L 0.484848,0.242424,0.969697,0 +L 0.969697,0,1.454545,0 +L 1.454545,0,2.181818,0.242424 +L 2.181818,0.242424,2.666667,0.727273 +L 0.727273,2.909091,0.484848,2.424242 +L 0.484848,2.424242,0.242424,1.69697 +L 0.242424,1.69697,0.242424,0.969697 +L 0.242424,0.969697,0.484848,0.484848 +L 1.454545,3.393939,0.969697,2.909091 +L 0.969697,2.909091,0.727273,2.424242 +L 0.727273,2.424242,0.484848,1.69697 +L 0.484848,1.69697,0.484848,0.969697 +L 0.484848,0.969697,0.727273,0.242424 +L 0.727273,0.242424,0.969697,0 +L 1.454545,0,0.969697,-0.242424 +L 0.969697,-0.242424,0.727273,-0.484848 +L 0.727273,-0.484848,0.484848,-0.969697 +L 0.484848,-0.969697,0.484848,-1.454545 +L 0.484848,-1.454545,0.727273,-1.69697 +L 0.727273,-1.69697,0.969697,-1.69697 +L 0.969697,-1.69697,1.212121,-1.454545 +L 1.212121,-1.454545,1.212121,-1.212121 +L 1.212121,-1.212121,0.969697,-0.969697 +L 0.969697,-0.969697,0.727273,-0.969697 +L 0.969697,-0.242424,0.727273,-0.727273 +L 0.727273,-0.727273,0.727273,-0.969697 +L 0.727273,-1.212121,0.727273,-1.454545 +L 0.727273,-1.454545,0.969697,-1.454545 +L 0.969697,-1.454545,0.969697,-1.212121 +L 0.969697,-1.212121,0.727273,-1.212121 + +[] 12 +L 0.242424,0.727273,0,0.484848 +L 0,0.484848,0,0.242424 +L 0,0.242424,0.242424,0 +L 0.242424,0,0.484848,0 +L 0.484848,0,0.727273,0.242424 +L 0.727273,0.242424,0.727273,0.484848 +L 0.727273,0.484848,0.484848,0.727273 +L 0.484848,0.727273,0.242424,0.727273 +L 0.242424,0.484848,0.242424,0.242424 +L 0.242424,0.242424,0.484848,0.242424 +L 0.484848,0.242424,0.484848,0.484848 +L 0.484848,0.484848,0.242424,0.484848 + +[] 12 +L 0.242424,0.727273,0,0.484848 +L 0,0.484848,0,0.242424 +L 0,0.242424,0.242424,0 +L 0.242424,0,0.484848,0 +L 0.484848,0,0.727273,0.242424 +L 0.727273,0.242424,0.727273,0.484848 +L 0.727273,0.484848,0.484848,0.727273 +L 0.484848,0.727273,0.242424,0.727273 +L 0.242424,0.484848,0.242424,0.242424 +L 0.242424,0.242424,0.484848,0.242424 +L 0.484848,0.242424,0.484848,0.484848 +L 0.484848,0.484848,0.242424,0.484848 + +[] 12 +L 0.242424,0.727273,0,0.484848 +L 0,0.484848,0,0.242424 +L 0,0.242424,0.242424,0 +L 0.242424,0,0.484848,0 +L 0.484848,0,0.727273,0.242424 +L 0.727273,0.242424,0.727273,0.484848 +L 0.727273,0.484848,0.484848,0.727273 +L 0.484848,0.727273,0.242424,0.727273 +L 0.242424,0.484848,0.242424,0.242424 +L 0.242424,0.242424,0.484848,0.242424 +L 0.484848,0.242424,0.484848,0.484848 +L 0.484848,0.484848,0.242424,0.484848 + +[] 12 +L 0.242424,0.727273,0,0.484848 +L 0,0.484848,0,0.242424 +L 0,0.242424,0.242424,0 +L 0.242424,0,0.484848,0 +L 0.484848,0,0.727273,0.242424 +L 0.727273,0.242424,0.727273,0.484848 +L 0.727273,0.484848,0.484848,0.727273 +L 0.484848,0.727273,0.242424,0.727273 +L 0.242424,0.484848,0.242424,0.242424 +L 0.242424,0.242424,0.484848,0.242424 +L 0.484848,0.242424,0.484848,0.484848 +L 0.484848,0.484848,0.242424,0.484848 + +[] 12 +L 0.242424,0.727273,0,0.484848 +L 0,0.484848,0,0.242424 +L 0,0.242424,0.242424,0 +L 0.242424,0,0.484848,0 +L 0.484848,0,0.727273,0.242424 +L 0.727273,0.242424,0.727273,0.484848 +L 0.727273,0.484848,0.484848,0.727273 +L 0.484848,0.727273,0.242424,0.727273 +L 0.242424,0.484848,0.242424,0.242424 +L 0.242424,0.242424,0.484848,0.242424 +L 0.484848,0.242424,0.484848,0.484848 +L 0.484848,0.484848,0.242424,0.484848 + +[] 12 +L 0.242424,0.727273,0,0.484848 +L 0,0.484848,0,0.242424 +L 0,0.242424,0.242424,0 +L 0.242424,0,0.484848,0 +L 0.484848,0,0.727273,0.242424 +L 0.727273,0.242424,0.727273,0.484848 +L 0.727273,0.484848,0.484848,0.727273 +L 0.484848,0.727273,0.242424,0.727273 +L 0.242424,0.484848,0.242424,0.242424 +L 0.242424,0.242424,0.484848,0.242424 +L 0.484848,0.242424,0.484848,0.484848 +L 0.484848,0.484848,0.242424,0.484848 + +[#0144] 46 +L 0,2.424242,0.242424,2.909091 +L 0.242424,2.909091,0.727273,3.393939 +L 0.727273,3.393939,1.212121,3.393939 +L 1.212121,3.393939,1.454545,3.151515 +L 1.454545,3.151515,1.69697,2.666667 +L 1.69697,2.666667,1.69697,1.939394 +L 1.69697,1.939394,1.212121,0 +L 1.454545,3.151515,1.454545,1.939394 +L 1.454545,1.939394,0.969697,0 +L 1.454545,2.666667,1.212121,1.69697 +L 1.212121,1.69697,0.727273,0 +L 0.727273,0,1.212121,0 +L 1.69697,1.939394,2.181818,2.666667 +L 2.181818,2.666667,2.666667,3.151515 +L 2.666667,3.151515,3.151515,3.393939 +L 3.151515,3.393939,3.636364,3.393939 +L 3.636364,3.393939,4.121212,3.151515 +L 4.121212,3.151515,4.363636,2.666667 +L 4.363636,2.666667,4.363636,1.939394 +L 4.363636,1.939394,3.878788,0.727273 +L 4.121212,3.151515,4.121212,2.181818 +L 4.121212,2.181818,3.878788,1.212121 +L 3.878788,1.212121,3.878788,0.242424 +L 4.121212,2.666667,3.636364,1.454545 +L 3.636364,1.454545,3.636364,0.727273 +L 3.636364,0.727273,3.878788,0.242424 +L 3.878788,0.242424,4.121212,0 +L 4.121212,0,4.606061,0 +L 4.606061,0,5.090909,0.484848 +L 5.090909,0.484848,5.333333,0.969697 +L 4.121212,4.848485,3.878788,4.848485 +L 3.878788,4.848485,3.636364,5.090909 +L 3.636364,5.090909,3.636364,5.333333 +L 3.636364,5.333333,3.878788,5.575758 +L 3.878788,5.575758,4.121212,5.575758 +L 4.121212,5.575758,4.363636,5.333333 +L 4.363636,5.333333,4.363636,4.848485 +L 4.363636,4.848485,4.121212,4.363636 +L 4.121212,4.363636,3.878788,4.121212 +L 3.878788,4.121212,3.393939,3.878788 +L 3.878788,5.333333,3.878788,5.090909 +L 3.878788,5.090909,4.121212,5.090909 +L 4.121212,5.090909,4.121212,5.333333 +L 4.121212,5.333333,3.878788,5.333333 +L 4.121212,4.848485,4.121212,4.606061 +L 4.121212,4.606061,3.878788,4.121212 + +[] 12 +L 0.242424,0.727273,0,0.484848 +L 0,0.484848,0,0.242424 +L 0,0.242424,0.242424,0 +L 0.242424,0,0.484848,0 +L 0.484848,0,0.727273,0.242424 +L 0.727273,0.242424,0.727273,0.484848 +L 0.727273,0.484848,0.484848,0.727273 +L 0.484848,0.727273,0.242424,0.727273 +L 0.242424,0.484848,0.242424,0.242424 +L 0.242424,0.242424,0.484848,0.242424 +L 0.484848,0.242424,0.484848,0.484848 +L 0.484848,0.484848,0.242424,0.484848 + +[#00F3] 52 +L 1.454545,3.393939,0.727273,3.151515 +L 0.727273,3.151515,0.242424,2.424242 +L 0.242424,2.424242,0,1.69697 +L 0,1.69697,0,1.212121 +L 0,1.212121,0.242424,0.484848 +L 0.242424,0.484848,0.484848,0.242424 +L 0.484848,0.242424,1.212121,0 +L 1.212121,0,1.939394,0 +L 1.939394,0,2.666667,0.242424 +L 2.666667,0.242424,3.151515,0.969697 +L 3.151515,0.969697,3.393939,1.69697 +L 3.393939,1.69697,3.393939,2.181818 +L 3.393939,2.181818,3.151515,2.909091 +L 3.151515,2.909091,2.909091,3.151515 +L 2.909091,3.151515,2.181818,3.393939 +L 2.181818,3.393939,1.454545,3.393939 +L 0.727273,2.909091,0.484848,2.424242 +L 0.484848,2.424242,0.242424,1.69697 +L 0.242424,1.69697,0.242424,0.969697 +L 0.242424,0.969697,0.484848,0.484848 +L 2.666667,0.484848,2.909091,0.969697 +L 2.909091,0.969697,3.151515,1.69697 +L 3.151515,1.69697,3.151515,2.424242 +L 3.151515,2.424242,2.909091,2.909091 +L 1.454545,3.393939,0.969697,2.909091 +L 0.969697,2.909091,0.727273,2.424242 +L 0.727273,2.424242,0.484848,1.69697 +L 0.484848,1.69697,0.484848,0.969697 +L 0.484848,0.969697,0.727273,0.242424 +L 0.727273,0.242424,1.212121,0 +L 1.939394,0,2.424242,0.484848 +L 2.424242,0.484848,2.666667,0.969697 +L 2.666667,0.969697,2.909091,1.69697 +L 2.909091,1.69697,2.909091,2.424242 +L 2.909091,2.424242,2.666667,3.151515 +L 2.666667,3.151515,2.181818,3.393939 +L 2.666667,4.848485,2.424242,4.848485 +L 2.424242,4.848485,2.181818,5.090909 +L 2.181818,5.090909,2.181818,5.333333 +L 2.181818,5.333333,2.424242,5.575758 +L 2.424242,5.575758,2.666667,5.575758 +L 2.666667,5.575758,2.909091,5.333333 +L 2.909091,5.333333,2.909091,4.848485 +L 2.909091,4.848485,2.666667,4.363636 +L 2.666667,4.363636,2.424242,4.121212 +L 2.424242,4.121212,1.939394,3.878788 +L 2.424242,5.333333,2.424242,5.090909 +L 2.424242,5.090909,2.666667,5.090909 +L 2.666667,5.090909,2.666667,5.333333 +L 2.666667,5.333333,2.424242,5.333333 +L 2.666667,4.848485,2.666667,4.606061 +L 2.666667,4.606061,2.424242,4.121212 + +#EOF diff --git a/pycam/share/fonts/kochigothic.cxf b/pycam/share/fonts/kochigothic.cxf new file mode 100644 index 00000000..29e7176a --- /dev/null +++ b/pycam/share/fonts/kochigothic.cxf @@ -0,0 +1,7611 @@ +# Format: QCad II Font +# Creator: QCad +# Version: 1 +# Name: Kochi Gothic +# LetterSpacing: 3.0 +# WordSpacing: 6.75 +# LineSpacingFactor: 1.0 +# Author: 東風フォント(ゴシック) +# Author: Yoshimune Kobayashi + +[!] 36 +L 1.2388,9.049118,1.2359,8.833584 +L 1.2359,8.833584,1.2287,8.564915 +L 1.2287,8.564915,1.2163,8.243101 +L 1.2163,8.243101,1.1988,7.868142 +L 1.1988,7.868142,1.179,7.44003 +L 1.179,7.44003,1.1567,6.958785 +L 1.1567,6.958785,1.127,6.424394 +L 1.127,6.424394,1.0577,5.245337 +L 1.0577,5.245272,1.0253,4.698745 +L 1.0253,4.698745,1.0007,4.197272 +L 1.0007,4.197272,0.9782,3.740859 +L 0.9782,3.740859,0.9614,3.329496 +L 0.9614,3.329496,0.9513,2.963184 +L 0.9513,2.963184,0.9462,2.641926 +L 0.9462,2.641926,0.9413,2.365722 +L 0.9413,2.365722,0.292,2.365722 +L 0.292,2.365722,0.2901,2.641926 +L 0.2901,2.641926,0.2848,2.963184 +L 0.2848,2.963184,0.2749,3.329496 +L 0.2749,3.329496,0.2553,3.740859 +L 0.2553,3.740859,0.2376,4.197272 +L 0.2376,4.197272,0.2104,4.698745 +L 0.2104,4.698745,0.1807,5.245272 +L 0.1807,5.245272,0.1113,6.424442 +L 0.1113,6.424394,0.0843,6.958785 +L 0.0843,6.958785,0.0546,7.44003 +L 0.0546,7.44003,0.0371,7.868142 +L 0.0371,7.868142,0.0172,8.243101 +L 0.0172,8.243101,0.0074,8.564915 +L 0.0074,8.564915,-0.00016,8.833584 +L -0.00016,8.833584,-0.00016,9.049118 +L -0.00016,9.049118,1.2388,9.049118 +L 0.0591,-0.483741,0.0591,0.846512 +L 0.0591,0.846512,1.1197,0.846512 +L 1.1197,0.846512,1.1197,-0.483741 +L 1.1197,-0.483741,0.0591,-0.483741 + +["] 14 +L 1.1789,8.890389,0.2408,7.216237 +L 0.2408,7.216237,-0.0573,7.216237 +L -0.0573,7.216237,0.4089,8.586171 +L 0.4089,8.586171,-0.0003,8.586171 +L -0.0003,8.586171,-0.0003,10.037354 +L -0.0003,10.037354,1.1789,10.037354 +L 1.1789,10.037354,1.1789,8.890389 +L 3.1268,8.890389,2.1876,7.216237 +L 2.1876,7.216237,1.8906,7.216237 +L 1.8906,7.216237,2.3613,8.586171 +L 2.3613,8.586171,1.9466,8.586171 +L 1.9466,8.586171,1.9466,10.037354 +L 1.9466,10.037354,3.1268,10.037354 +L 3.1268,10.037354,3.1268,8.890389 + +[#] 32 +L 1.6762,-0.510193,1.1887,-0.510193 +L 1.1887,-0.510193,1.4488,1.934903 +L 1.4488,1.934903,-0.0004,1.934903 +L -0.0004,1.934903,0.0757,3.144225 +L 0.0757,3.144225,1.5743,3.144225 +L 1.5743,3.144225,1.9195,6.409397 +L 1.9195,6.409397,0.4322,6.409397 +L 0.4322,6.409397,0.5073,7.618719 +L 0.5073,7.618719,2.0483,7.618719 +L 2.0483,7.618719,2.2657,9.663225 +L 2.2657,9.663225,2.759,9.663225 +L 2.759,9.663225,2.5359,7.618719 +L 2.5359,7.618719,4.4064,7.618719 +L 4.4064,7.618719,4.6296,9.663225 +L 4.6296,9.663225,5.117,9.663225 +L 5.117,9.663225,4.894,7.618719 +L 4.894,7.618719,6.3633,7.618719 +L 6.3633,7.618719,6.2861,6.409397 +L 6.2861,6.409397,4.7629,6.409397 +L 4.7629,6.409397,4.4267,3.144225 +L 4.4267,3.144225,5.9297,3.144225 +L 5.9297,3.144225,5.8535,1.934903 +L 5.8535,1.934903,4.2978,1.934903 +L 4.2978,1.934903,4.04,-0.510193 +L 4.04,-0.510193,3.5514,-0.510193 +L 3.5514,-0.510193,3.8068,1.934903 +L 3.8068,1.934903,1.9362,1.934903 +L 1.9362,1.934903,1.6762,-0.510193 +L 2.4047,6.409397,2.063,3.144225 +L 2.063,3.144225,3.938,3.144225 +L 3.938,3.144225,4.2799,6.409397 +L 4.2799,6.409397,2.4047,6.409397 + +[&] 268 +L 7.2657,0.757703,7.2713,0.629211 +L 7.2713,0.629211,7.1996,0.567476 +L 7.1996,0.567476,7.1201,0.494699 +L 7.1201,0.494699,7.0338,0.410877 +L 7.0338,0.410877,6.9498,0.316015 +L 6.9498,0.316015,6.86,0.210112 +L 6.86,0.210112,6.7614,0.093165 +L 6.7614,0.093165,6.6639,-0.034823 +L 6.6639,-0.034823,6.5653,-0.173853 +L 6.5653,-0.173853,6.2996,0.050057 +L 6.2996,0.050057,6.0498,0.26736 +L 6.0498,0.26736,5.8122,0.478045 +L 5.8122,0.478045,5.5847,0.68212 +L 5.5847,0.68212,5.3682,0.879579 +L 5.3682,0.879579,5.1655,1.070428 +L 5.1655,1.070428,4.9726,1.254657 +L 4.9726,1.254657,4.7911,1.432279 +L 4.7911,1.432279,4.6824,1.31201 +L 4.6824,1.31201,4.5737,1.194016 +L 4.5737,1.194016,4.4527,1.078295 +L 4.4527,1.078295,4.3282,0.964847 +L 4.3282,0.964847,4.2016,0.85367 +L 4.2016,0.85367,4.0705,0.74477 +L 4.0705,0.74477,3.9315,0.638142 +L 3.9315,0.638142,3.7935,0.533791 +L 3.7935,0.533791,3.6423,0.437023 +L 3.6423,0.437023,3.4764,0.353161 +L 3.4764,0.353161,3.2949,0.282197 +L 3.2949,0.282197,3.102,0.224135 +L 3.102,0.224135,2.8958,0.17898 +L 2.8958,0.17898,2.6728,0.146722 +L 2.6728,0.146722,2.4374,0.127371 +L 2.4374,0.127371,2.1876,0.120918 +L 2.1876,0.120918,1.9275,0.132362 +L 1.9275,0.132362,1.6877,0.166679 +L 1.6877,0.166679,1.4589,0.223885 +L 1.4589,0.223885,1.2439,0.303969 +L 1.2439,0.303969,1.0511,0.406934 +L 1.0511,0.406934,0.8673,0.532784 +L 0.8673,0.532784,0.7092,0.681516 +L 0.7092,0.681516,0.5601,0.853127 +L 0.5601,0.853127,0.4289,1.038376 +L 0.4289,1.038376,0.3125,1.228027 +L 0.3125,1.228027,0.2182,1.422078 +L 0.2182,1.422078,0.1388,1.620525 +L 0.1388,1.620525,0.0749,1.823372 +L 0.0749,1.823372,0.0345,2.030619 +L 0.0345,2.030619,0.0099,2.242267 +L 0.0099,2.242267,-0.0003,2.458307 +L -0.0003,2.458307,0.0099,2.690802 +L 0.0099,2.690802,0.0345,2.910213 +L 0.0345,2.910213,0.0793,3.116547 +L 0.0793,3.116547,0.1444,3.309797 +L 0.1444,3.309797,0.2227,3.489974 +L 0.2227,3.489974,0.3226,3.657063 +L 0.3226,3.657063,0.4334,3.811083 +L 0.4334,3.811083,0.568,3.952011 +L 0.568,3.952011,0.7092,4.084651 +L 0.7092,4.084651,0.8571,4.213776 +L 0.8571,4.213776,1.0062,4.339389 +L 1.0062,4.339389,1.1541,4.461489 +L 1.1541,4.461489,1.3033,4.580073 +L 1.3033,4.580073,1.4589,4.695146 +L 1.4589,4.695146,1.6125,4.806703 +L 1.6125,4.806703,1.7717,4.914748 +L 1.7717,4.914748,1.6596,5.08278 +L 1.6596,5.084277,1.5184,5.297174 +L 1.5184,5.298093,1.3581,5.555304 +L 1.3581,5.556193,1.1676,5.857588 +L 1.1676,5.858586,1.0757,6.019953 +L 1.0757,6.019953,0.9938,6.179516 +L 0.9938,6.179516,0.9244,6.337279 +L 0.9244,6.337279,0.8673,6.493243 +L 0.8673,6.493243,0.8257,6.647408 +L 0.8257,6.647408,0.7933,6.799769 +L 0.7933,6.799769,0.7731,6.950331 +L 0.7731,6.950331,0.7685,7.099084 +L 0.7685,7.099084,0.7787,7.290861 +L 0.7787,7.290861,0.8033,7.476938 +L 0.8033,7.476938,0.847,7.657323 +L 0.847,7.657323,0.9064,7.831999 +L 0.9064,7.831999,0.986,8.000981 +L 0.986,8.000981,1.0858,8.164265 +L 1.0858,8.164265,1.199,8.321854 +L 1.199,8.321854,1.3278,8.473744 +L 1.3278,8.473744,1.4714,8.61347 +L 1.4714,8.61347,1.6282,8.734567 +L 1.6282,8.734567,1.7886,8.837025 +L 1.7886,8.837025,1.9577,8.92086 +L 1.9577,8.92086,2.1359,8.986065 +L 2.1359,8.986065,2.322,9.032648 +L 2.322,9.032648,2.5125,9.060582 +L 2.5125,9.060582,2.7176,9.069905 +L 2.7176,9.069905,2.8891,9.055817 +L 2.8891,9.055817,3.0572,9.024907 +L 3.0572,9.024907,3.2231,8.977162 +L 3.2231,8.977162,3.3846,8.91259 +L 3.3846,8.91259,3.5359,8.831196 +L 3.5359,8.831196,3.6894,8.732967 +L 3.6894,8.732967,3.8329,8.617914 +L 3.8329,8.617914,3.9741,8.486025 +L 3.9741,8.486025,4.103,8.342336 +L 4.103,8.342336,4.2138,8.191845 +L 4.2138,8.191845,4.3137,8.034565 +L 4.3137,8.034565,4.3921,7.870499 +L 4.3921,7.870499,4.4549,7.699639 +L 4.4549,7.699639,4.4986,7.521997 +L 4.4986,7.521997,4.5289,7.337551 +L 4.5289,7.337551,4.5434,7.146322 +L 4.5434,7.146322,4.5389,6.930043 +L 4.5389,6.930043,4.5142,6.7243 +L 4.5142,6.7243,4.4772,6.5291 +L 4.4772,6.5291,4.4268,6.344437 +L 4.4268,6.344437,4.3608,6.170317 +L 4.3608,6.170317,4.2812,6.00674 +L 4.2812,6.00674,4.187,5.8537 +L 4.187,5.8537,4.076,5.711203 +L 4.076,5.711203,3.9594,5.576078 +L 3.9594,5.576078,3.8372,5.445183 +L 3.8372,5.445183,3.7141,5.318508 +L 3.7141,5.318508,3.5873,5.196054 +L 3.5873,5.196054,3.4563,5.077828 +L 3.4563,5.077828,3.3252,4.963815 +L 3.3252,4.963815,3.1861,4.85403 +L 3.1861,4.85403,3.0472,4.748469 +L 3.0472,4.748469,3.2063,4.556882 +L 3.203,4.555862,3.5201,4.168872 +L 3.5201,4.167204,3.6142,4.046492 +L 3.6142,4.046492,3.7208,3.918398 +L 3.7208,3.918398,3.8372,3.784968 +L 3.8372,3.784968,3.9639,3.646181 +L 3.9639,3.646181,4.0974,3.502062 +L 4.0974,3.502062,4.2441,3.35259 +L 4.2441,3.35259,4.3977,3.197782 +L 4.3977,3.197782,4.5635,3.037624 +L 4.5635,3.037624,4.7373,2.872129 +L 4.7373,2.872129,4.8213,3.021197 +L 4.8213,3.021197,4.8954,3.173633 +L 4.8954,3.173633,4.9693,3.329431 +L 4.9693,3.329431,5.0366,3.488595 +L 5.0366,3.488595,5.0959,3.651129 +L 5.0959,3.651129,5.1486,3.817033 +L 5.1486,3.817033,5.2002,3.986294 +L 5.2002,3.986294,5.2427,4.158918 +L 5.2427,4.158918,6.1685,4.158918 +L 6.1685,4.158918,6.0991,3.899577 +L 6.0991,3.899577,6.0306,3.646849 +L 6.0306,3.646849,5.9455,3.400732 +L 5.9455,3.400732,5.857,3.16123 +L 5.857,3.16123,5.7605,2.928343 +L 5.7605,2.928343,5.6507,2.702071 +L 5.6507,2.702071,5.5376,2.482406 +L 5.5376,2.482406,5.4109,2.269357 +L 5.4109,2.269357,5.7919,1.947262 +L 5.7919,1.948838,6.228,1.58873 +L 6.228,1.590056,6.7188,1.191784 +L 6.7188,1.193009,7.2613,0.756646 +L 0.8852,2.469646,0.8918,2.314586 +L 0.8918,2.314586,0.9043,2.16779 +L 0.9043,2.16779,0.9267,2.029264 +L 0.9267,2.029264,0.9613,1.898996 +L 0.9613,1.898996,1.0062,1.777004 +L 1.0062,1.777004,1.0577,1.663279 +L 1.0577,1.663279,1.1206,1.557816 +L 1.1206,1.557816,1.1944,1.460623 +L 1.1944,1.460623,1.2785,1.373377 +L 1.2785,1.373377,1.3704,1.297763 +L 1.3704,1.297763,1.4747,1.233787 +L 1.4747,1.233787,1.5912,1.181438 +L 1.5912,1.181438,1.7191,1.140722 +L 1.7191,1.140722,1.8558,1.111643 +L 1.8558,1.111643,2.0049,1.094192 +L 2.0049,1.094192,2.165,1.088378 +L 2.165,1.088378,2.3466,1.09261 +L 2.3466,1.09261,2.5227,1.105326 +L 2.5227,1.105326,2.6828,1.126507 +L 2.6828,1.126507,2.832,1.156164 +L 2.832,1.156164,2.9754,1.194297 +L 2.9754,1.194297,3.1043,1.240901 +L 3.1043,1.240901,3.2253,1.295977 +L 3.2253,1.295977,3.3397,1.359529 +L 3.3397,1.359529,3.4416,1.430283 +L 3.4416,1.430283,3.5448,1.506971 +L 3.5448,1.506971,3.6523,1.589601 +L 3.6523,1.589601,3.7487,1.678156 +L 3.7487,1.678156,3.8497,1.772652 +L 3.8497,1.772652,3.9493,1.873076 +L 3.9493,1.873076,4.0435,1.979441 +L 4.0435,1.979441,4.1421,2.091734 +L 4.1421,2.091734,3.5829,2.714711 +L 3.5829,2.716265,3.1368,3.225058 +L 3.1368,3.226537,2.8958,3.502382 +L 2.8958,3.50324,2.6044,3.841467 +L 2.6044,3.842739,2.378,4.106119 +L 2.378,4.107312,2.2671,4.241486 +L 2.2671,4.24206,2.1359,4.150519 +L 2.1359,4.150519,2.007,4.059188 +L 2.007,4.059188,1.8805,3.968059 +L 1.8805,3.968059,1.7593,3.877144 +L 1.7593,3.877144,1.6429,3.786428 +L 1.6429,3.786428,1.5284,3.695918 +L 1.5284,3.695918,1.4153,3.605621 +L 1.4153,3.605621,1.3111,3.515525 +L 1.3111,3.515525,1.2114,3.420442 +L 1.2114,3.420442,1.1227,3.315176 +L 1.1227,3.315176,1.0533,3.199717 +L 1.0533,3.199717,0.9938,3.07408 +L 0.9938,3.07408,0.9467,2.93825 +L 0.9467,2.93825,0.9099,2.792233 +L 0.9099,2.792233,0.8918,2.63603 +L 0.8918,2.63603,0.8852,2.469646 +L 3.6568,7.159554,3.6523,7.288591 +L 3.6523,7.288591,3.6345,7.409268 +L 3.6345,7.409268,3.6053,7.521592 +L 3.6053,7.521592,3.5727,7.625566 +L 3.5727,7.625566,3.5257,7.721181 +L 3.5257,7.721181,3.4764,7.808438 +L 3.4764,7.808438,3.4136,7.887346 +L 3.4136,7.887346,3.3442,7.957899 +L 3.3442,7.957899,3.2724,8.020115 +L 3.2724,8.020115,3.1939,8.074044 +L 3.1939,8.074044,3.1143,8.119672 +L 3.1143,8.119672,3.0326,8.157006 +L 3.0326,8.157006,2.9463,8.186044 +L 2.9463,8.186044,2.8588,8.206787 +L 2.8588,8.206787,2.7704,8.219228 +L 2.7704,8.219228,2.6761,8.223378 +L 2.6761,8.223378,2.572,8.219967 +L 2.572,8.219967,2.4721,8.209736 +L 2.4721,8.209736,2.3736,8.19269 +L 2.3736,8.19269,2.2771,8.168812 +L 2.2771,8.168812,2.1852,8.13812 +L 2.1852,8.13812,2.0957,8.10061 +L 2.0957,8.10061,2.0094,8.056282 +L 2.0094,8.056282,1.9252,8.00514 +L 1.9252,8.00514,1.8456,7.943444 +L 1.8456,7.943444,1.7784,7.867489 +L 1.7784,7.867489,1.7224,7.777279 +L 1.7224,7.777279,1.6754,7.672803 +L 1.6754,7.672803,1.6405,7.55407 +L 1.6405,7.55407,1.6125,7.421082 +L 1.6125,7.421082,1.598,7.273828 +L 1.598,7.273828,1.5958,7.112313 +L 1.5958,7.112313,1.598,6.977917 +L 1.598,6.977917,1.6181,6.845883 +L 1.6181,6.845883,1.6429,6.716214 +L 1.6429,6.716214,1.6854,6.588904 +L 1.6854,6.588904,1.7347,6.463954 +L 1.7347,6.463954,1.7985,6.341368 +L 1.7985,6.341368,1.8703,6.221147 +L 1.8703,6.221147,1.9577,6.103285 +L 1.9577,6.103285,2.5002,5.410824 +L 2.5024,5.411702,2.6067,5.492273 +L 2.6067,5.492273,2.7154,5.574327 +L 2.7154,5.574327,2.8197,5.657847 +L 2.8197,5.657847,2.9205,5.742845 +L 2.9205,5.742845,3.018,5.829327 +L 3.018,5.829327,3.1143,5.91728 +L 3.1143,5.91728,3.2063,6.006709 +L 3.2063,6.006709,3.2971,6.097615 +L 3.2971,6.097615,3.3846,6.194397 +L 3.3846,6.194397,3.4563,6.301458 +L 3.4563,6.301458,3.5201,6.418783 +L 3.5201,6.418783,3.5672,6.546386 +L 3.5672,6.546386,3.6097,6.684272 +L 3.6097,6.684272,3.6345,6.832425 +L 3.6345,6.832425,3.6523,6.99085 +L 3.6523,6.99085,3.6568,7.159554 + +['] 7 +L 1.1788,8.890389,0.2396,7.216237 +L 0.2396,7.216237,-0.0596,7.216237 +L -0.0596,7.216237,0.4087,8.586171 +L 0.4087,8.586171,-0.0002,8.586171 +L -0.0002,8.586171,-0.0002,10.037354 +L -0.0002,10.037354,1.1788,10.037354 +L 1.1788,10.037354,1.1788,8.890389 + +[(] 66 +L 3.0909,-0.670807,2.5192,-1.237679 +L 2.5192,-1.237679,2.2188,-0.907551 +L 2.2188,-0.907551,1.9421,-0.578513 +L 1.9421,-0.578513,1.6787,-0.250574 +L 1.6787,-0.250574,1.431,0.076279 +L 1.431,0.076279,1.2058,0.402038 +L 1.2058,0.402038,1.0007,0.7267 +L 1.0007,0.7267,0.8124,1.050276 +L 0.8124,1.050276,0.6409,1.372753 +L 0.6409,1.372753,0.4929,1.703708 +L 0.4929,1.703708,0.3639,2.052704 +L 0.3639,2.052704,0.252,2.419737 +L 0.252,2.419737,0.1634,2.804812 +L 0.1634,2.804812,0.0938,3.207922 +L 0.0938,3.207922,0.0389,3.629074 +L 0.0389,3.629074,0.0088,4.068264 +L 0.0088,4.068264,-0.0003,4.525496 +L -0.0003,4.525496,0.0088,4.983157 +L 0.0088,4.983157,0.0389,5.422688 +L 0.0389,5.422688,0.0938,5.84409 +L 0.0938,5.84409,0.1634,6.247367 +L 0.1634,6.247367,0.252,6.632507 +L 0.252,6.632507,0.3639,6.999525 +L 0.3639,6.999525,0.4929,7.348424 +L 0.4929,7.348424,0.6409,7.679184 +L 0.6409,7.679184,0.8124,8.001439 +L 0.8124,8.001439,1.0007,8.324822 +L 1.0007,8.324822,1.2058,8.649326 +L 1.2058,8.649326,1.431,8.974949 +L 1.431,8.974949,1.6787,9.301702 +L 1.6787,9.301702,1.9421,9.629571 +L 1.9421,9.629571,2.2188,9.958565 +L 2.2188,9.958565,2.5192,10.28867 +L 2.5192,10.28867,3.0909,9.721799 +L 3.0909,9.721799,2.7917,9.421617 +L 2.7917,9.421617,2.5192,9.122873 +L 2.5192,9.122873,2.2614,8.825574 +L 2.2614,8.825574,2.0307,8.529722 +L 2.0307,8.529722,1.8132,8.235319 +L 1.8132,8.235319,1.6272,7.942365 +L 1.6272,7.942365,1.4591,7.650854 +L 1.4591,7.650854,1.31,7.360788 +L 1.31,7.360788,1.1833,7.063313 +L 1.1833,7.063313,1.0724,6.749572 +L 1.0724,6.749572,0.9805,6.419565 +L 0.9805,6.419565,0.903,6.073284 +L 0.903,6.073284,0.8437,5.710748 +L 0.8437,5.710748,0.8021,5.331931 +L 0.8021,5.331931,0.7743,4.936846 +L 0.7743,4.936846,0.7674,4.525496 +L 0.7674,4.525496,0.7743,4.114593 +L 0.7743,4.114593,0.8021,3.71989 +L 0.8021,3.71989,0.8437,3.341402 +L 0.8437,3.341402,0.903,2.979122 +L 0.903,2.979122,0.9805,2.633056 +L 0.9805,2.633056,1.0724,2.303188 +L 1.0724,2.303188,1.1833,1.989537 +L 1.1833,1.989537,1.31,1.692089 +L 1.31,1.692089,1.4591,1.401998 +L 1.4591,1.401998,1.6272,1.110404 +L 1.6272,1.110404,1.8132,0.817295 +L 1.8132,0.817295,2.0307,0.522688 +L 2.0307,0.522688,2.2614,0.226574 +L 2.2614,0.226574,2.5192,-0.071047 +L 2.5192,-0.071047,2.7917,-0.370174 +L 2.7917,-0.370174,3.0909,-0.670807 + +[)] 66 +L -0.0003,-0.670807,0.2991,-0.370174 +L 0.2991,-0.370174,0.5737,-0.071047 +L 0.5737,-0.071047,0.8315,0.226574 +L 0.8315,0.226574,1.0622,0.522688 +L 1.0622,0.522688,1.2753,0.817295 +L 1.2753,0.817295,1.4658,1.110404 +L 1.4658,1.110404,1.6338,1.401998 +L 1.6338,1.401998,1.7829,1.692089 +L 1.7829,1.692089,1.9073,1.989537 +L 1.9073,1.989537,2.0206,2.303188 +L 2.0206,2.303188,2.1125,2.633056 +L 2.1125,2.633056,2.1897,2.979122 +L 2.1897,2.979122,2.2457,3.341402 +L 2.2457,3.341402,2.293,3.71989 +L 2.293,3.71989,2.3154,4.114593 +L 2.3154,4.114593,2.3253,4.525496 +L 2.3253,4.525496,2.3154,4.936846 +L 2.3154,4.936846,2.293,5.331931 +L 2.293,5.331931,2.2457,5.710748 +L 2.2457,5.710748,2.1897,6.073284 +L 2.1897,6.073284,2.1125,6.419565 +L 2.1125,6.419565,2.0206,6.749572 +L 2.0206,6.749572,1.9073,7.063313 +L 1.9073,7.063313,1.7829,7.360788 +L 1.7829,7.360788,1.6338,7.650854 +L 1.6338,7.650854,1.4658,7.942365 +L 1.4658,7.942365,1.2753,8.235319 +L 1.2753,8.235319,1.0622,8.529722 +L 1.0622,8.529722,0.8315,8.825574 +L 0.8315,8.825574,0.5737,9.122873 +L 0.5737,9.122873,0.2991,9.421617 +L 0.2991,9.421617,-0.0003,9.721799 +L -0.0003,9.721799,0.5713,10.28867 +L 0.5713,10.28867,0.8718,9.958565 +L 0.8718,9.958565,1.1565,9.629571 +L 1.1565,9.629571,1.4165,9.301702 +L 1.4165,9.301702,1.6596,8.974949 +L 1.6596,8.974949,1.885,8.649326 +L 1.885,8.649326,2.0901,8.324822 +L 2.0901,8.324822,2.2806,8.001439 +L 2.2806,8.001439,2.4521,7.679184 +L 2.4521,7.679184,2.6001,7.348424 +L 2.6001,7.348424,2.7323,6.999525 +L 2.7323,6.999525,2.8433,6.632507 +L 2.8433,6.632507,2.9328,6.247367 +L 2.9328,6.247367,3.0024,5.84409 +L 3.0024,5.84409,3.0517,5.422688 +L 3.0517,5.422688,3.0809,4.983157 +L 3.0809,4.983157,3.091,4.525496 +L 3.091,4.525496,3.0809,4.068264 +L 3.0809,4.068264,3.0517,3.629074 +L 3.0517,3.629074,3.0024,3.207922 +L 3.0024,3.207922,2.9328,2.804812 +L 2.9328,2.804812,2.8433,2.419737 +L 2.8433,2.419737,2.7323,2.052704 +L 2.7323,2.052704,2.6001,1.703708 +L 2.6001,1.703708,2.4521,1.372753 +L 2.4521,1.372753,2.2806,1.050276 +L 2.2806,1.050276,2.0901,0.7267 +L 2.0901,0.7267,1.885,0.402038 +L 1.885,0.402038,1.6596,0.076279 +L 1.6596,0.076279,1.4165,-0.250574 +L 1.4165,-0.250574,1.1565,-0.578513 +L 1.1565,-0.578513,0.8718,-0.907551 +L 0.8718,-0.907551,0.5713,-1.237679 +L 0.5713,-1.237679,-0.0003,-0.670807 + +[*] 12 +L -0.0001,0.959886,2.6762,4.383778 +L 2.6762,4.383778,-0.0001,7.809563 +L -0.0001,7.809563,0.4783,8.423666 +L 0.4783,8.423666,3.1514,4.997889 +L 3.1514,4.997889,5.8246,8.423666 +L 5.8246,8.423666,6.3054,7.809563 +L 6.3054,7.809563,3.6323,4.383778 +L 3.6323,4.383778,6.3054,0.959886 +L 6.3054,0.959886,5.8246,0.345777 +L 5.8246,0.345777,3.1514,3.769671 +L 3.1514,3.769671,0.4783,0.345777 +L 0.4783,0.345777,-0.0001,0.959886 + +[+] 12 +L 2.9521,8.96787,3.6582,8.96787 +L 3.6582,8.96787,3.6582,5.200072 +L 3.6582,5.200072,6.6114,5.200072 +L 6.6114,5.200072,6.6114,4.353548 +L 6.6114,4.353548,3.6582,4.353548 +L 3.6582,4.353548,3.6582,0.574415 +L 3.6582,0.574415,2.9521,0.574415 +L 2.9521,0.574415,2.9521,4.353548 +L 2.9521,4.353548,-0.0002,4.353548 +L -0.0002,4.353548,-0.0002,5.200072 +L -0.0002,5.200072,2.9521,5.200072 +L 2.9521,5.200072,2.9521,8.96787 + +[,] 7 +L 1.2187,0.551741,0.3171,-1.271692 +L 0.3171,-1.271692,0.0197,-1.271692 +L 0.0197,-1.271692,0.4062,0.241853 +L 0.4062,0.241853,0,0.241853 +L 0,0.241853,0,1.693037 +L 0,1.693037,1.2187,1.693037 +L 1.2187,1.693037,1.2187,0.551741 + +[-] 4 +L -0.0003,5.200072,6.5821,5.200072 +L 6.5821,5.200072,6.5821,4.353548 +L 6.5821,4.353548,-0.0003,4.353548 +L -0.0003,4.353548,-0.0003,5.200072 + +[.] 4 +L 1.2141,0.241853,-0.0001,0.241853 +L -0.0001,0.241853,-0.0001,1.693037 +L -0.0001,1.693037,1.2141,1.693037 +L 1.2141,1.693037,1.2141,0.241853 + +[/] 4 +L 0.0001,-0.457289,3.9972,9.923985 +L 0.0001,-0.457289,0.6297,-1.048722 +L 3.9972,9.923985,4.6223,9.321171 +L 0.6297,-1.048722,4.6223,9.321171 + +[0] 128 +L -0.0003,4.606775,0.0122,5.04276 +L 0.0122,5.04276,0.0468,5.465506 +L 0.0468,5.465506,0.1018,5.875012 +L 0.1018,5.875012,0.1814,6.27121 +L 0.1814,6.27121,0.28,6.654168 +L 0.28,6.654168,0.4089,7.023957 +L 0.4089,7.023957,0.5556,7.380364 +L 0.5556,7.380364,0.726,7.723606 +L 0.726,7.723606,0.9144,8.039105 +L 0.9144,8.039105,1.1149,8.312577 +L 1.1149,8.312577,1.3302,8.544019 +L 1.3302,8.544019,1.5588,8.733293 +L 1.5588,8.733293,1.7965,8.880604 +L 1.7965,8.880604,2.052,8.98575 +L 2.052,8.98575,2.312,9.048864 +L 2.312,9.048864,2.5945,9.069879 +L 2.5945,9.069879,2.8689,9.048864 +L 2.8689,9.048864,3.1335,8.98575 +L 3.1335,8.98575,3.3868,8.880604 +L 3.3868,8.880604,3.625,8.733293 +L 3.625,8.733293,3.852,8.544019 +L 3.852,8.544019,4.0683,8.312577 +L 4.0683,8.312577,4.271,8.039105 +L 4.271,8.039105,4.4617,7.723606 +L 4.4617,7.723606,4.6336,7.380226 +L 4.6336,7.380226,4.7794,7.023186 +L 4.7794,7.023186,4.9055,6.652627 +L 4.9055,6.652627,5.0096,6.268408 +L 5.0096,6.268408,5.0882,5.870527 +L 5.0882,5.870527,5.1454,5.459129 +L 5.1454,5.459129,5.18,5.034074 +L 5.18,5.034074,5.1902,4.595425 +L 5.1902,4.595425,5.18,4.15678 +L 5.18,4.15678,5.1454,3.731722 +L 5.1454,3.731722,5.0882,3.320254 +L 5.0882,3.320254,5.0096,2.922444 +L 5.0096,2.922444,4.9055,2.538227 +L 4.9055,2.538227,4.7794,2.167597 +L 4.7794,2.167597,4.6336,1.810625 +L 4.6336,1.810625,4.4617,1.467245 +L 4.4617,1.467245,4.271,1.151676 +L 4.271,1.151676,4.0683,0.878202 +L 4.0683,0.878202,3.852,0.646833 +L 3.852,0.646833,3.625,0.45749 +L 3.625,0.45749,3.3868,0.310247 +L 3.3868,0.310247,3.1335,0.205034 +L 3.1335,0.205034,2.8689,0.141919 +L 2.8689,0.141919,2.5945,0.120905 +L 2.5945,0.120905,2.312,0.141919 +L 2.312,0.141919,2.052,0.205034 +L 2.052,0.205034,1.7965,0.310247 +L 1.7965,0.310247,1.5588,0.45749 +L 1.5588,0.45749,1.3302,0.646833 +L 1.3302,0.646833,1.1149,0.878202 +L 1.1149,0.878202,0.9144,1.151676 +L 0.9144,1.151676,0.726,1.467245 +L 0.726,1.467245,0.5556,1.810768 +L 0.5556,1.810768,0.4089,2.168298 +L 0.4089,2.168298,0.28,2.539838 +L 0.28,2.539838,0.1814,2.925245 +L 0.1814,2.925245,0.1018,3.324665 +L 0.1018,3.324665,0.0468,3.738094 +L 0.0468,3.738094,0.0122,4.165394 +L 0.0122,4.165394,-0.0003,4.606775 +L 0.9413,4.595425,0.9518,4.197268 +L 0.9518,4.197268,0.9744,3.821035 +L 0.9744,3.821035,1.0085,3.466724 +L 1.0085,3.466724,1.0639,3.134274 +L 1.0639,3.134274,1.1257,2.823814 +L 1.1257,2.823814,1.2097,2.535215 +L 1.2097,2.535215,1.3033,2.268468 +L 1.3033,2.268468,1.4143,2.023714 +L 1.4143,2.023714,1.5346,1.804463 +L 1.5346,1.804463,1.6652,1.61449 +L 1.6652,1.61449,1.8008,1.453728 +L 1.8008,1.453728,1.9444,1.322246 +L 1.9444,1.322246,2.0935,1.219904 +L 2.0935,1.219904,2.2549,1.146843 +L 2.2549,1.146843,2.415,1.102992 +L 2.415,1.102992,2.5945,1.088352 +L 2.5945,1.088352,2.7647,1.102992 +L 2.7647,1.102992,2.9339,1.146843 +L 2.9339,1.146843,3.0926,1.219904 +L 3.0926,1.219904,3.241,1.322246 +L 3.241,1.322246,3.3868,1.453728 +L 3.3868,1.453728,3.5225,1.61449 +L 3.5225,1.61449,3.6514,1.804463 +L 3.6514,1.804463,3.7735,2.023714 +L 3.7735,2.023714,3.8845,2.268678 +L 3.8845,2.268678,3.9842,2.535915 +L 3.9842,2.535915,4.0649,2.825356 +L 4.0649,2.825356,4.1322,3.137146 +L 4.1322,3.137146,4.1815,3.47114 +L 4.1815,3.47114,4.2161,3.827409 +L 4.2161,3.827409,4.2386,4.205954 +L 4.2386,4.205954,4.2441,4.606775 +L 4.2441,4.606775,4.2386,5.015511 +L 4.2386,5.015511,4.2161,5.39994 +L 4.2161,5.39994,4.1815,5.760132 +L 4.1815,5.760132,4.1322,6.095947 +L 4.1322,6.095947,4.0649,6.407525 +L 4.0649,6.407525,3.9842,6.694796 +L 3.9842,6.694796,3.8845,6.95776 +L 3.8845,6.95776,3.7735,7.196415 +L 3.7735,7.196415,3.6514,7.408734 +L 3.6514,7.408734,3.5225,7.592823 +L 3.5225,7.592823,3.3868,7.748544 +L 3.3868,7.748544,3.241,7.875963 +L 3.241,7.875963,3.0926,7.97501 +L 3.0926,7.97501,2.9339,8.04583 +L 2.9339,8.04583,2.7647,8.08828 +L 2.7647,8.08828,2.5945,8.102429 +L 2.5945,8.102429,2.415,8.08828 +L 2.415,8.08828,2.2549,8.04583 +L 2.2549,8.04583,2.0935,7.97501 +L 2.0935,7.97501,1.9444,7.875963 +L 1.9444,7.875963,1.8008,7.748544 +L 1.8008,7.748544,1.6652,7.592823 +L 1.6652,7.592823,1.5346,7.408734 +L 1.5346,7.408734,1.4143,7.196415 +L 1.4143,7.196415,1.3033,6.957548 +L 1.3033,6.957548,1.2097,6.694096 +L 1.2097,6.694096,1.1257,6.405914 +L 1.1257,6.405914,1.0639,6.093145 +L 1.0639,6.093145,1.0085,5.755649 +L 1.0085,5.755649,0.9744,5.393566 +L 0.9744,5.393566,0.9518,5.006823 +L 0.9518,5.006823,0.9413,4.595425 + +[1] 22 +L 2.0588,-0.020804,1.1722,-0.020804 +L 1.1722,-0.020804,1.1722,7.206785 +L 1.1722,7.206785,1.1666,7.292733 +L 1.1666,7.292733,1.1543,7.367197 +L 1.1543,7.367197,1.1319,7.430169 +L 1.1319,7.430169,1.0981,7.481729 +L 1.0981,7.481729,1.0557,7.521795 +L 1.0557,7.521795,1.0084,7.550445 +L 1.0084,7.550445,0.9492,7.56761 +L 0.9492,7.56761,0.8797,7.573349 +L 0.8797,7.573349,-0.0001,7.573349 +L -0.0001,7.573349,-0.0001,8.246034 +L -0.0001,8.246034,0.307,8.277697 +L 0.307,8.277697,0.5793,8.331072 +L 0.5793,8.331072,0.8179,8.406162 +L 0.8179,8.406162,1.0208,8.503042 +L 1.0208,8.503042,1.1889,8.621637 +L 1.1889,8.621637,1.3262,8.761871 +L 1.3262,8.761871,1.4244,8.923967 +L 1.4244,8.923967,1.4872,9.107705 +L 1.4872,9.107705,2.0588,9.107705 +L 2.0588,9.107705,2.0588,-0.020804 + +[2] 87 +L 2.4829,9.069879,2.7215,9.06007 +L 2.7215,9.06007,2.9473,9.030579 +L 2.9473,9.030579,3.1621,8.981407 +L 3.1621,8.981407,3.3704,8.912617 +L 3.3704,8.912617,3.5656,8.824079 +L 3.5656,8.824079,3.7516,8.715989 +L 3.7516,8.715989,3.9298,8.588152 +L 3.9298,8.588152,4.0933,8.440698 +L 4.0933,8.440698,4.2425,8.275032 +L 4.2425,8.275032,4.3736,8.092625 +L 4.3736,8.092625,4.4801,7.893543 +L 4.4801,7.893543,4.5743,7.677792 +L 4.5743,7.677792,4.6436,7.44523 +L 4.6436,7.44523,4.6959,7.196069 +L 4.6959,7.196069,4.7239,6.930091 +L 4.7239,6.930091,4.7323,6.647513 +L 4.7323,6.647513,4.7183,6.346442 +L 4.7183,6.346442,4.6684,6.0432 +L 4.6684,6.0432,4.5892,5.737716 +L 4.5892,5.737716,4.4755,5.430131 +L 4.4755,5.430131,4.3315,5.120302 +L 4.3315,5.120302,4.1551,4.808304 +L 4.1551,4.808304,3.9504,4.494206 +L 3.9504,4.494206,3.7044,4.177794 +L 3.7044,4.177794,1.0616,1.209326 +L 1.0616,1.209326,4.7602,1.209326 +L 4.7602,1.209326,4.6436,0.120905 +L 4.6436,0.120905,-0.0002,0.120905 +L -0.0002,0.120905,-0.0002,1.334012 +L -0.0002,1.334012,2.7138,4.380026 +L 2.7138,4.380026,2.9659,4.677942 +L 2.9659,4.677942,3.1827,4.97194 +L 3.1827,4.97194,3.3704,5.261871 +L 3.3704,5.261871,3.5218,5.547743 +L 3.5218,5.547743,3.6373,5.829618 +L 3.6373,5.829618,3.7247,6.107505 +L 3.7247,6.107505,3.7718,6.381397 +L 3.7718,6.381397,3.7918,6.651296 +L 3.7918,6.651296,3.784,6.870199 +L 3.784,6.870199,3.7673,7.068928 +L 3.7673,7.068928,3.7375,7.247341 +L 3.7375,7.247341,3.6928,7.405442 +L 3.6928,7.405442,3.6406,7.543302 +L 3.6406,7.543302,3.5755,7.660845 +L 3.5755,7.660845,3.4993,7.758068 +L 3.4993,7.758068,3.4074,7.835052 +L 3.4074,7.835052,3.3089,7.897748 +L 3.3089,7.897748,3.2052,7.952034 +L 3.2052,7.952034,3.0948,7.997986 +L 3.0948,7.997986,2.9839,8.035603 +L 2.9839,8.035603,2.8651,8.064885 +L 2.8651,8.064885,2.7407,8.08576 +L 2.7407,8.08576,2.6151,8.098299 +L 2.6151,8.098299,2.4805,8.102429 +L 2.4805,8.102429,2.3798,8.098789 +L 2.3798,8.098789,2.2778,8.087719 +L 2.2778,8.087719,2.174,8.069226 +L 2.174,8.069226,2.0732,8.043382 +L 2.0732,8.043382,1.9627,8.010179 +L 1.9627,8.010179,1.8564,7.969616 +L 1.8564,7.969616,1.7453,7.921635 +L 1.7453,7.921635,1.6367,7.866226 +L 1.6367,7.866226,1.5323,7.794076 +L 1.5323,7.794076,1.4454,7.695725 +L 1.4454,7.695725,1.3687,7.57111 +L 1.3687,7.57111,1.3038,7.420292 +L 1.3038,7.420292,1.2566,7.24328 +L 1.2566,7.24328,1.222,7.040066 +L 1.222,7.040066,1.2007,6.810587 +L 1.2007,6.810587,1.1933,6.554908 +L 1.1933,6.554908,0.3062,6.554908 +L 0.3062,6.554908,0.3192,6.879796 +L 0.3192,6.879796,0.3499,7.180794 +L 0.3499,7.180794,0.3977,7.457978 +L 0.3977,7.457978,0.4687,7.711278 +L 0.4687,7.711278,0.5585,7.940758 +L 0.5585,7.940758,0.6706,8.146352 +L 0.6706,8.146352,0.8039,8.32813 +L 0.8039,8.32813,0.9523,8.48602 +L 0.9523,8.48602,1.121,8.622896 +L 1.121,8.622896,1.2891,8.741491 +L 1.2891,8.741491,1.468,8.841797 +L 1.468,8.841797,1.6584,8.923967 +L 1.6584,8.923967,1.8564,8.987781 +L 1.8564,8.987781,2.0546,9.033383 +L 2.0546,9.033383,2.2653,9.060772 +L 2.2653,9.060772,2.4829,9.069879 + +[3] 195 +L 2.14,9.069879,2.3757,9.058321 +L 2.3757,9.058321,2.6034,9.023434 +L 2.6034,9.023434,2.8141,8.965364 +L 2.8141,8.965364,3.0146,8.884039 +L 3.0146,8.884039,3.2053,8.779453 +L 3.2053,8.779453,3.384,8.651684 +L 3.384,8.651684,3.5521,8.500588 +L 3.5521,8.500588,3.705,8.326378 +L 3.705,8.326378,3.8497,8.139137 +L 3.8497,8.139137,3.973,7.949304 +L 3.973,7.949304,4.0748,7.75688 +L 4.0748,7.75688,4.1611,7.561791 +L 4.1611,7.561791,4.2228,7.364113 +L 4.2228,7.364113,4.27,7.163772 +L 4.27,7.163772,4.3003,6.960772 +L 4.3003,6.960772,4.3104,6.755176 +L 4.3104,6.755176,4.3031,6.605554 +L 4.3031,6.605554,4.2902,6.45726 +L 4.2902,6.45726,4.2678,6.310087 +L 4.2678,6.310087,4.2414,6.164245 +L 4.2414,6.164245,4.1981,6.019594 +L 4.1981,6.019594,4.1518,5.876203 +L 4.1518,5.876203,4.0918,5.734002 +L 4.0918,5.734002,4.0302,5.593135 +L 4.0302,5.593135,3.9538,5.459339 +L 3.9538,5.459339,3.8744,5.338717 +L 3.8744,5.338717,3.7902,5.23119 +L 3.7902,5.23119,3.6962,5.136766 +L 3.6962,5.136766,3.5987,5.055439 +L 3.5987,5.055439,3.4961,4.987281 +L 3.4961,4.987281,3.384,4.932152 +L 3.384,4.932152,3.269,4.890193 +L 3.269,4.890193,3.3857,4.853558 +L 3.3857,4.853558,3.4999,4.802349 +L 3.4999,4.802349,3.6166,4.736576 +L 3.6166,4.736576,3.7259,4.656089 +L 3.7259,4.656089,3.8378,4.561033 +L 3.8378,4.561033,3.9416,4.451406 +L 3.9416,4.451406,4.0453,4.327139 +L 4.0453,4.327139,4.1445,4.188232 +L 4.1445,4.188232,4.2414,4.035875 +L 4.2414,4.035875,4.3204,3.871188 +L 4.3204,3.871188,4.3926,3.694176 +L 4.3926,3.694176,4.446,3.504903 +L 4.446,3.504903,4.4886,3.303302 +L 4.4886,3.303302,4.5177,3.089372 +L 4.5177,3.089372,4.5384,2.863114 +L 4.5384,2.863114,4.5439,2.624597 +L 4.5439,2.624597,4.5356,2.396095 +L 4.5356,2.396095,4.5054,2.171728 +L 4.5054,2.171728,4.4561,1.951496 +L 4.4561,1.951496,4.3842,1.735325 +L 4.3842,1.735325,4.2979,1.523286 +L 4.2979,1.523286,4.1893,1.315311 +L 4.1893,1.315311,4.0604,1.111468 +L 4.0604,1.111468,3.909,0.911688 +L 3.909,0.911688,3.7431,0.726338 +L 3.7431,0.726338,3.5594,0.565716 +L 3.5594,0.565716,3.3633,0.429821 +L 3.3633,0.429821,3.1558,0.318583 +L 3.1558,0.318583,2.9307,0.232142 +L 2.9307,0.232142,2.6875,0.170359 +L 2.6875,0.170359,2.4318,0.133303 +L 2.4318,0.133303,2.1624,0.120905 +L 2.1624,0.120905,1.922,0.131342 +L 1.922,0.131342,1.6971,0.162584 +L 1.6971,0.162584,1.4814,0.2147 +L 1.4814,0.2147,1.2753,0.287689 +L 1.2753,0.287689,1.0847,0.381487 +L 1.0847,0.381487,0.9071,0.496087 +L 0.9071,0.496087,0.7429,0.631632 +L 0.7429,0.631632,0.5877,0.787912 +L 0.5877,0.787912,0.4504,0.962754 +L 0.4504,0.962754,0.3337,1.153568 +L 0.3337,1.153568,0.2296,1.360492 +L 0.2296,1.360492,0.1478,1.583458 +L 0.1478,1.583458,0.086,1.822466 +L 0.086,1.822466,0.0389,2.077584 +L 0.0389,2.077584,0.0105,2.348744 +L 0.0105,2.348744,-0.0003,2.635945 +L -0.0003,2.635945,0.8885,2.635945 +L 0.8885,2.635945,0.8907,2.41753 +L 0.8907,2.41753,0.9071,2.217542 +L 0.9071,2.217542,0.9357,2.036185 +L 0.9357,2.036185,0.9727,1.873249 +L 0.9727,1.873249,1.0196,1.72888 +L 1.0196,1.72888,1.079,1.603002 +L 1.079,1.603002,1.1541,1.495617 +L 1.1541,1.495617,1.2327,1.406795 +L 1.2327,1.406795,1.3222,1.332122 +L 1.3222,1.332122,1.4186,1.267467 +L 1.4186,1.267467,1.5251,1.212759 +L 1.5251,1.212759,1.6395,1.167995 +L 1.6395,1.167995,1.7561,1.133183 +L 1.7561,1.133183,1.8878,1.108246 +L 1.8878,1.108246,2.0206,1.093325 +L 2.0206,1.093325,2.1594,1.088352 +L 2.1594,1.088352,2.3085,1.094306 +L 2.3085,1.094306,2.4543,1.112168 +L 2.4543,1.112168,2.5911,1.141937 +L 2.5911,1.141937,2.7243,1.183546 +L 2.7243,1.183546,2.8459,1.237136 +L 2.8459,1.237136,2.9643,1.302562 +L 2.9643,1.302562,3.0786,1.379896 +L 3.0786,1.379896,3.1883,1.469138 +L 3.1883,1.469138,3.2815,1.570289 +L 3.2815,1.570289,3.3689,1.683278 +L 3.3689,1.683278,3.4405,1.808246 +L 3.4405,1.808246,3.4978,1.945049 +L 3.4978,1.945049,3.5426,2.093763 +L 3.5426,2.093763,3.5774,2.254388 +L 3.5774,2.254388,3.597,2.426917 +L 3.597,2.426917,3.5987,2.611358 +L 3.5987,2.611358,3.5919,2.843851 +L 3.5919,2.843851,3.5673,3.060302 +L 3.5673,3.060302,3.5268,3.260853 +L 3.5268,3.260853,3.4653,3.445362 +L 3.4653,3.445362,3.3879,3.61397 +L 3.3879,3.61397,3.2944,3.766536 +L 3.2944,3.766536,3.1883,3.903132 +L 3.1883,3.903132,3.0617,4.023824 +L 3.0617,4.023824,2.9206,4.129461 +L 2.9206,4.129461,2.7714,4.221012 +L 2.7714,4.221012,2.6135,4.298419 +L 2.6135,4.298419,2.4482,4.361813 +L 2.4482,4.361813,2.2743,4.411126 +L 2.2743,4.411126,2.0901,4.446292 +L 2.0901,4.446292,1.8995,4.467447 +L 1.8995,4.467447,1.6971,4.474452 +L 1.6971,4.474452,1.6971,5.20009 +L 1.6971,5.20009,1.8995,5.207443 +L 1.8995,5.207443,2.0855,5.229511 +L 2.0855,5.229511,2.2592,5.266356 +L 2.2592,5.266356,2.423,5.317912 +L 2.423,5.317912,2.5771,5.384249 +L 2.5771,5.384249,2.7121,5.465223 +L 2.7121,5.465223,2.8332,5.56105 +L 2.8332,5.56105,2.9451,5.67152 +L 2.9451,5.67152,3.0439,5.791374 +L 3.0439,5.791374,3.1318,5.91508 +L 3.1318,5.91508,3.203,6.04278 +L 3.203,6.04278,3.2607,6.174402 +L 3.2607,6.174402,3.3039,6.309877 +L 3.3039,6.309877,3.3392,6.449344 +L 3.3392,6.449344,3.3615,6.592735 +L 3.3615,6.592735,3.3633,6.740048 +L 3.3633,6.740048,3.3615,6.883436 +L 3.3615,6.883436,3.3409,7.020592 +L 3.3409,7.020592,3.314,7.151654 +L 3.314,7.151654,3.269,7.276484 +L 3.269,7.276484,3.2159,7.395147 +L 3.2159,7.395147,3.1502,7.507645 +L 3.1502,7.507645,3.0719,7.61398 +L 3.0719,7.61398,2.9821,7.71415 +L 2.9821,7.71415,2.8857,7.805141 +L 2.8857,7.805141,2.7861,7.884019 +L 2.7861,7.884019,2.6851,7.950776 +L 2.6851,7.950776,2.581,8.005342 +L 2.581,8.005342,2.4766,8.047864 +L 2.4766,8.047864,2.3658,8.078195 +L 2.3658,8.078195,2.2536,8.096405 +L 2.2536,8.096405,2.1372,8.102429 +L 2.1372,8.102429,2.0206,8.097108 +L 2.0206,8.097108,1.9119,8.080994 +L 1.9119,8.080994,1.8037,8.054238 +L 1.8037,8.054238,1.6988,8.01669 +L 1.6988,8.01669,1.6048,7.9685 +L 1.6048,7.9685,1.5084,7.909517 +L 1.5084,7.909517,1.4186,7.839886 +L 1.4186,7.839886,1.3347,7.759474 +L 1.3347,7.759474,1.2551,7.665676 +L 1.2551,7.665676,1.189,7.555631 +L 1.189,7.555631,1.1318,7.42933 +L 1.1318,7.42933,1.087,7.286851 +L 1.087,7.286851,1.05,7.12819 +L 1.05,7.12819,1.0276,6.953277 +L 1.0276,6.953277,1.008,6.762184 +L 1.008,6.762184,1.0052,6.554908 +L 1.0052,6.554908,0.1186,6.554908 +L 0.1186,6.554908,0.1286,6.852827 +L 0.1286,6.852827,0.1562,7.132463 +L 0.1562,7.132463,0.1982,7.393816 +L 0.1982,7.393816,0.2597,7.636884 +L 0.2597,7.636884,0.3417,7.861741 +L 0.3417,7.861741,0.4364,8.068246 +L 0.4364,8.068246,0.5545,8.25654 +L 0.5545,8.25654,0.6884,8.426476 +L 0.6884,8.426476,0.837,8.577294 +L 0.837,8.577294,0.9951,8.708006 +L 0.9951,8.708006,1.1593,8.818613 +L 1.1593,8.818613,1.3369,8.909046 +L 1.3369,8.909046,1.5251,8.979443 +L 1.5251,8.979443,1.7197,9.029671 +L 1.7197,9.029671,1.9242,9.059862 +L 1.9242,9.059862,2.14,9.069879 + +[4] 14 +L 4.2897,-0.022696,3.402,-0.022696 +L 3.402,-0.022696,3.402,2.055799 +L 3.402,2.055799,-0.0001,2.055799 +L -0.0001,2.055799,-0.0001,2.611358 +L -0.0001,2.611358,3.5023,9.130329 +L 3.5023,9.130329,4.2897,9.130329 +L 4.2897,9.130329,4.2897,3.144221 +L 4.2897,3.144221,5.3571,3.144221 +L 5.3571,3.144221,5.3571,2.055799 +L 5.3571,2.055799,4.2897,2.055799 +L 4.2897,2.055799,4.2897,-0.022696 +L 3.402,7.004623,1.2445,3.144221 +L 1.2445,3.144221,3.402,3.144221 +L 3.402,3.144221,3.402,7.004623 + +[5] 127 +L 2.6029,5.804753,2.8192,5.792915 +L 2.8192,5.792915,3.0266,5.7574 +L 3.0266,5.7574,3.2306,5.698209 +L 3.2306,5.698209,3.4278,5.615268 +L 3.4278,5.615268,3.6217,5.508726 +L 3.6217,5.508726,3.805,5.378505 +L 3.805,5.378505,3.986,5.224607 +L 3.986,5.224607,4.1562,5.047033 +L 4.1562,5.047033,4.3155,4.850545 +L 4.3155,4.850545,4.4532,4.640048 +L 4.4532,4.640048,4.5733,4.415469 +L 4.5733,4.415469,4.6639,4.176882 +L 4.6639,4.176882,4.7391,3.924217 +L 4.7391,3.924217,4.7969,3.65747 +L 4.7969,3.65747,4.8254,3.376714 +L 4.8254,3.376714,4.8359,3.081877 +L 4.8359,3.081877,4.8232,2.768896 +L 4.8232,2.768896,4.7912,2.469646 +L 4.7912,2.469646,4.7335,2.184059 +L 4.7335,2.184059,4.6551,1.912198 +L 4.6551,1.912198,4.5531,1.654068 +L 4.5531,1.654068,4.4287,1.409597 +L 4.4287,1.409597,4.283,1.178855 +L 4.283,1.178855,4.1149,0.961773 +L 4.1149,0.961773,3.9288,0.764725 +L 3.9288,0.764725,3.7264,0.593876 +L 3.7264,0.593876,3.5136,0.449364 +L 3.5136,0.449364,3.2844,0.33112 +L 3.2844,0.33112,3.0467,0.239145 +L 3.0467,0.239145,2.7888,0.173441 +L 2.7888,0.173441,2.5245,0.134072 +L 2.5245,0.134072,2.2419,0.120905 +L 2.2419,0.120905,2.0117,0.132252 +L 2.0117,0.132252,1.8003,0.166294 +L 1.8003,0.166294,1.5875,0.222966 +L 1.5875,0.222966,1.3867,0.302332 +L 1.3867,0.302332,1.1906,0.404323 +L 1.1906,0.404323,1.0085,0.52908 +L 1.0085,0.52908,0.8321,0.676464 +L 0.8321,0.676464,0.6584,0.84654 +L 0.6584,0.84654,0.5047,1.02874 +L 0.5047,1.02874,0.3714,1.212759 +L 0.3714,1.212759,0.2577,1.398389 +L 0.2577,1.398389,0.1662,1.58577 +L 0.1662,1.58577,0.0896,1.7749 +L 0.0896,1.7749,0.0397,1.965716 +L 0.0397,1.965716,0.0093,2.158281 +L 0.0093,2.158281,-0.0001,2.352527 +L -0.0001,2.352527,0.8813,2.352527 +L 0.8813,2.352527,0.8915,2.227489 +L 0.8915,2.227489,0.9117,2.106512 +L 0.9117,2.106512,0.9414,1.989603 +L 0.9414,1.989603,0.9901,1.876822 +L 0.9901,1.876822,1.0506,1.768038 +L 1.0506,1.768038,1.119,1.663384 +L 1.119,1.663384,1.2087,1.562794 +L 1.2087,1.562794,1.3072,1.466266 +L 1.3072,1.466266,1.4149,1.377724 +L 1.4149,1.377724,1.5201,1.300951 +L 1.5201,1.300951,1.6346,1.236015 +L 1.6346,1.236015,1.751,1.182848 +L 1.751,1.182848,1.8677,1.141519 +L 1.8677,1.141519,1.991,1.112026 +L 1.991,1.112026,2.1154,1.094306 +L 2.1154,1.094306,2.2387,1.088352 +L 2.2387,1.088352,2.4023,1.096758 +L 2.4023,1.096758,2.5613,1.121905 +L 2.5613,1.121905,2.7177,1.163862 +L 2.7177,1.163862,2.8635,1.222566 +L 2.8635,1.222566,3.0042,1.298006 +L 3.0042,1.298006,3.1408,1.390263 +L 3.1408,1.390263,3.2726,1.499259 +L 3.2726,1.499259,3.3987,1.624998 +L 3.3987,1.624998,3.5173,1.765163 +L 3.5173,1.765163,3.6143,1.917172 +L 3.6143,1.917172,3.7013,2.081157 +L 3.7013,2.081157,3.7697,2.25705 +L 3.7697,2.25705,3.8246,2.444921 +L 3.8246,2.444921,3.8616,2.644699 +L 3.8616,2.644699,3.884,2.856389 +L 3.884,2.856389,3.8946,3.079986 +L 3.8946,3.079986,3.884,3.302179 +L 3.884,3.302179,3.8672,3.508756 +L 3.8672,3.508756,3.8347,3.69957 +L 3.8347,3.69957,3.7921,3.874762 +L 3.7921,3.874762,3.7359,4.034264 +L 3.7359,4.034264,3.6688,4.178142 +L 3.6688,4.178142,3.5892,4.306264 +L 3.5892,4.306264,3.4973,4.418763 +L 3.4973,4.418763,3.3963,4.516832 +L 3.3963,4.516832,3.29,4.601871 +L 3.29,4.601871,3.1835,4.673809 +L 3.1835,4.673809,3.0714,4.732653 +L 3.0714,4.732653,2.9625,4.778395 +L 2.9625,4.778395,2.8439,4.811106 +L 2.8439,4.811106,2.7251,4.830722 +L 2.7251,4.830722,2.6029,4.837306 +L 2.6029,4.837306,2.488,4.834574 +L 2.488,4.834574,2.3855,4.826589 +L 2.3855,4.826589,2.279,4.813209 +L 2.279,4.813209,2.1854,4.794504 +L 2.1854,4.794504,2.0906,4.770477 +L 2.0906,4.770477,2.0011,4.741056 +L 2.0011,4.741056,1.9124,4.706384 +L 1.9124,4.706384,1.8328,4.666246 +L 1.8328,4.666246,1.7539,4.621205 +L 1.7539,4.621205,1.6794,4.57147 +L 1.6794,4.57147,1.6098,4.517182 +L 1.6098,4.517182,1.5466,4.458198 +L 1.5466,4.458198,1.4865,4.394594 +L 1.4865,4.394594,1.4295,4.326298 +L 1.4295,4.326298,1.3768,4.253447 +L 1.3768,4.253447,1.3279,4.175903 +L 1.3279,4.175903,0.497,4.175903 +L 0.497,4.175903,0.721,8.948976 +L 0.721,8.948976,4.1373,8.948976 +L 4.1373,8.948976,3.9634,7.86055 +L 3.9634,7.86055,1.4932,7.86055 +L 1.4932,7.86055,1.3824,5.379556 +L 1.3824,5.379556,1.5466,5.479235 +L 1.5466,5.479235,1.7039,5.565606 +L 1.7039,5.565606,1.8575,5.638667 +L 1.8575,5.638667,2.0117,5.698419 +L 2.0117,5.698419,2.1629,5.744931 +L 2.1629,5.744931,2.3104,5.778135 +L 2.3104,5.778135,2.4571,5.798099 +L 2.4571,5.798099,2.6029,5.804753 + +[6] 185 +L 2.5057,5.804753,2.7445,5.793055 +L 2.7445,5.793055,2.9742,5.758098 +L 2.9742,5.758098,3.1994,5.699748 +L 3.1994,5.699748,3.4108,5.618143 +L 3.4108,5.618143,3.6208,5.513209 +L 3.6208,5.513209,3.8169,5.384879 +L 3.8169,5.384879,4.0076,5.233293 +L 4.0076,5.233293,4.1879,5.058381 +L 4.1879,5.058381,4.3577,4.862734 +L 4.3577,4.862734,4.5035,4.649014 +L 4.5035,4.649014,4.6274,4.417292 +L 4.6274,4.417292,4.7259,4.167425 +L 4.7259,4.167425,4.8061,3.89949 +L 4.8061,3.89949,4.8626,3.61355 +L 4.8626,3.61355,4.894,3.309534 +L 4.894,3.309534,4.9041,2.987379 +L 4.9041,2.987379,4.894,2.701721 +L 4.894,2.701721,4.865,2.425728 +L 4.865,2.425728,4.8101,2.159402 +L 4.8101,2.159402,4.7361,1.902812 +L 4.7361,1.902812,4.6418,1.655819 +L 4.6418,1.655819,4.5275,1.418563 +L 4.5275,1.418563,4.3919,1.190972 +L 4.3919,1.190972,4.2351,0.973121 +L 4.2351,0.973121,4.0625,0.773411 +L 4.0625,0.773411,3.8741,0.60025 +L 3.8741,0.60025,3.674,0.453775 +L 3.674,0.453775,3.4573,0.333994 +L 3.4573,0.333994,3.2258,0.240758 +L 3.2258,0.240758,2.9821,0.174212 +L 2.9821,0.174212,2.7241,0.134214 +L 2.7241,0.134214,2.4542,0.120905 +L 2.4542,0.120905,2.1722,0.135685 +L 2.1722,0.135685,1.9095,0.179956 +L 1.9095,0.179956,1.6623,0.253788 +L 1.6623,0.253788,1.4287,0.35711 +L 1.4287,0.35711,1.2157,0.489993 +L 1.2157,0.489993,1.0106,0.652367 +L 1.0106,0.652367,0.8246,0.844301 +L 0.8246,0.844301,0.6535,1.065726 +L 0.6535,1.065726,0.5023,1.327359 +L 0.5023,1.327359,0.3662,1.639918 +L 0.3662,1.639918,0.2574,2.00333 +L 0.2574,2.00333,0.1661,2.417672 +L 0.1661,2.417672,0.0904,2.882938 +L 0.0904,2.882938,0.0411,3.399057 +L 0.0411,3.399057,0.0096,3.966106 +L 0.0096,3.966106,-0.0003,4.584079 +L -0.0003,4.584079,0.0096,5.073789 +L 0.0096,5.073789,0.0434,5.539478 +L 0.0434,5.539478,0.1004,5.981207 +L 0.1004,5.981207,0.18,6.398977 +L 0.18,6.398977,0.2821,6.792795 +L 0.2821,6.792795,0.4054,7.162656 +L 0.4054,7.162656,0.5528,7.508484 +L 0.5528,7.508484,0.7226,7.830361 +L 0.7226,7.830361,0.9113,8.120855 +L 0.9113,8.120855,1.1076,8.372681 +L 1.1076,8.372681,1.3121,8.585698 +L 1.3121,8.585698,1.5334,8.75998 +L 1.5334,8.75998,1.7603,8.895597 +L 1.7603,8.895597,2.0012,8.992402 +L 2.0012,8.992402,2.2491,9.050545 +L 2.2491,9.050545,2.5057,9.069879 +L 2.5057,9.069879,2.6795,9.062452 +L 2.6795,9.062452,2.853,9.040036 +L 2.853,9.040036,3.024,9.002702 +L 3.024,9.002702,3.1926,8.950375 +L 3.1926,8.950375,3.3607,8.883126 +L 3.3607,8.883126,3.529,8.800961 +L 3.529,8.800961,3.691,8.703873 +L 3.691,8.703873,3.8539,8.591862 +L 3.8539,8.591862,4.0052,8.466126 +L 4.0052,8.466126,4.141,8.32813 +L 4.141,8.32813,4.2551,8.177734 +L 4.2551,8.177734,4.3577,8.01508 +L 4.3577,8.01508,4.4367,7.840028 +L 4.4367,7.840028,4.4985,7.652577 +L 4.4985,7.652577,4.5484,7.452867 +L 4.5484,7.452867,4.5725,7.240826 +L 4.5725,7.240826,3.6164,7.240826 +L 3.6164,7.240826,3.5963,7.346462 +L 3.5963,7.346462,3.5694,7.445019 +L 3.5694,7.445019,3.5324,7.536714 +L 3.5324,7.536714,3.4896,7.621335 +L 3.4896,7.621335,3.4388,7.698949 +L 3.4388,7.698949,3.3787,7.769559 +L 3.3787,7.769559,3.3099,7.833233 +L 3.3099,7.833233,3.2298,7.889901 +L 3.2298,7.889901,3.15,7.939706 +L 3.15,7.939706,3.0616,7.982858 +L 3.0616,7.982858,2.9742,8.019421 +L 2.9742,8.019421,2.8857,8.049332 +L 2.8857,8.049332,2.7943,8.072591 +L 2.7943,8.072591,2.7019,8.089125 +L 2.7019,8.089125,2.6055,8.099137 +L 2.6055,8.099137,2.5057,8.102429 +L 2.5057,8.102429,2.3724,8.090874 +L 2.3724,8.090874,2.2394,8.056129 +L 2.2394,8.056129,2.1049,7.998269 +L 2.1049,7.998269,1.979,7.91729 +L 1.979,7.91729,1.8529,7.813129 +L 1.8529,7.813129,1.7279,7.68578 +L 1.7279,7.68578,1.6125,7.535312 +L 1.6125,7.535312,1.4941,7.361733 +L 1.4941,7.361733,1.3861,7.164685 +L 1.3861,7.164685,1.2873,6.943821 +L 1.2873,6.943821,1.201,6.699139 +L 1.201,6.699139,1.13,6.430639 +L 1.13,6.430639,1.0721,6.138397 +L 1.0721,6.138397,1.025,5.822336 +L 1.025,5.822336,0.9927,5.482458 +L 0.9927,5.482458,0.968,5.118833 +L 0.968,5.118833,1.1384,5.279596 +L 1.1384,5.279596,1.3177,5.418923 +L 1.3177,5.418923,1.5025,5.536814 +L 1.5025,5.536814,1.6943,5.633273 +L 1.6943,5.633273,1.8871,5.708296 +L 1.8871,5.708296,2.0898,5.761883 +L 2.0898,5.761883,2.2961,5.794034 +L 2.2961,5.794034,2.5057,5.804753 +L 2.4665,1.088352,2.6357,1.096758 +L 2.6357,1.096758,2.796,1.121905 +L 2.796,1.121905,2.9518,1.163862 +L 2.9518,1.163862,3.0912,1.222566 +L 3.0912,1.222566,3.2202,1.298006 +L 3.2202,1.298006,3.3491,1.390263 +L 3.3491,1.390263,3.4629,1.499259 +L 3.4629,1.499259,3.5636,1.624998 +L 3.5636,1.624998,3.6557,1.763694 +L 3.6557,1.763694,3.7375,1.911288 +L 3.7375,1.911288,3.8046,2.067848 +L 3.8046,2.067848,3.8647,2.233443 +L 3.8647,2.233443,3.9039,2.408006 +L 3.9039,2.408006,3.9381,2.591534 +L 3.9381,2.591534,3.9527,2.784029 +L 3.9527,2.784029,3.9604,2.98549 +L 3.9604,2.98549,3.9527,3.187021 +L 3.9527,3.187021,3.9381,3.378815 +L 3.9381,3.378815,3.9112,3.5608 +L 3.9112,3.5608,3.8686,3.733053 +L 3.8686,3.733053,3.8148,3.895497 +L 3.8148,3.895497,3.7553,4.048204 +L 3.7553,4.048204,3.6781,4.191102 +L 3.6781,4.191102,3.594,4.324267 +L 3.594,4.324267,3.4952,4.444471 +L 3.4952,4.444471,3.3882,4.548704 +L 3.3882,4.548704,3.269,4.636896 +L 3.269,4.636896,3.1401,4.709046 +L 3.1401,4.709046,3,4.765156 +L 3,4.765156,2.8509,4.805221 +L 2.8509,4.805221,2.6918,4.829248 +L 2.6918,4.829248,2.5213,4.837306 +L 2.5213,4.837306,2.3868,4.831422 +L 2.3868,4.831422,2.258,4.8137 +L 2.258,4.8137,2.1303,4.784279 +L 2.1303,4.784279,2.008,4.74302 +L 2.008,4.74302,1.8871,4.689993 +L 1.8871,4.689993,1.7726,4.625198 +L 1.7726,4.625198,1.6623,4.548634 +L 1.6623,4.548634,1.5559,4.460302 +L 1.5559,4.460302,1.4532,4.360552 +L 1.4532,4.360552,1.3597,4.249662 +L 1.3597,4.249662,1.2773,4.127777 +L 1.2773,4.127777,1.2083,3.994756 +L 1.2083,3.994756,1.1412,3.850736 +L 1.1412,3.850736,1.0891,3.695577 +L 1.0891,3.695577,1.0476,3.529348 +L 1.0476,3.529348,1.0106,3.352056 +L 1.0106,3.352056,1.0374,3.05652 +L 1.0374,3.05652,1.0721,2.783118 +L 1.0721,2.783118,1.1171,2.531852 +L 1.1171,2.531852,1.1692,2.302652 +L 1.1692,2.302652,1.2308,2.095587 +L 1.2308,2.095587,1.2998,1.910657 +L 1.2998,1.910657,1.3792,1.747791 +L 1.3792,1.747791,1.4679,1.607065 +L 1.4679,1.607065,1.5598,1.48546 +L 1.5598,1.48546,1.6639,1.380104 +L 1.6639,1.380104,1.7783,1.291004 +L 1.7783,1.291004,1.8994,1.218013 +L 1.8994,1.218013,2.0266,1.161343 +L 2.0266,1.161343,2.1673,1.120784 +L 2.1673,1.120784,2.3106,1.096478 +L 2.3106,1.096478,2.4665,1.088352 + +[7] 7 +L -0.0003,8.948976,4.7934,8.948976 +L 4.7934,8.948976,4.7934,7.95694 +L 4.7934,7.95694,2.3983,-0.075583 +L 2.3983,-0.075583,1.4591,-0.075583 +L 1.4591,-0.075583,3.7532,7.86055 +L 3.7532,7.86055,-0.0003,7.86055 +L -0.0003,7.86055,-0.0003,8.948976 + +[8] 256 +L -0.0001,2.624597,0.0038,2.856319 +L 0.0038,2.856319,0.0306,3.073469 +L 0.0306,3.073469,0.0688,3.276053 +L 0.0688,3.276053,0.1204,3.464065 +L 0.1204,3.464065,0.1904,3.637436 +L 0.1904,3.637436,0.2745,3.796237 +L 0.2745,3.796237,0.3758,3.940468 +L 0.3758,3.940468,0.493,4.070129 +L 0.493,4.070129,0.6163,4.189072 +L 0.6163,4.189072,0.7452,4.301221 +L 0.7452,4.301221,0.8713,4.406572 +L 0.8713,4.406572,0.9974,4.505201 +L 0.9974,4.505201,1.1263,4.596968 +L 1.1263,4.596968,1.258,4.682007 +L 1.258,4.682007,1.3868,4.760182 +L 1.3868,4.760182,1.5201,4.831632 +L 1.5201,4.831632,1.4121,4.905604 +L 1.4121,4.905604,1.3073,4.98581 +L 1.3073,4.98581,1.2109,5.072321 +L 1.2109,5.072321,1.111,5.165136 +L 1.111,5.165136,1.0226,5.264115 +L 1.0226,5.264115,0.9356,5.369396 +L 0.9356,5.369396,0.8517,5.480987 +L 0.8517,5.480987,0.7749,5.598739 +L 0.7749,5.598739,0.706,5.723777 +L 0.706,5.723777,0.6403,5.85694 +L 0.6403,5.85694,0.5909,5.998226 +L 0.5909,5.998226,0.5463,6.147713 +L 0.5463,6.147713,0.5114,6.305254 +L 0.5114,6.305254,0.4891,6.47106 +L 0.4891,6.47106,0.4768,6.644921 +L 0.4768,6.644921,0.4705,6.826979 +L 0.4705,6.826979,0.479,7.047841 +L 0.479,7.047841,0.5069,7.261705 +L 0.5069,7.261705,0.5562,7.468488 +L 0.5562,7.468488,0.6258,7.66834 +L 0.6258,7.66834,0.7121,7.861111 +L 0.7121,7.861111,0.814,8.046811 +L 0.814,8.046811,0.9412,8.225506 +L 0.9412,8.225506,1.082,8.397198 +L 1.082,8.397198,1.2399,8.554878 +L 1.2399,8.554878,1.4065,8.691544 +L 1.4065,8.691544,1.5841,8.807125 +L 1.5841,8.807125,1.7707,8.901761 +L 1.7707,8.901761,1.9611,8.975313 +L 1.9611,8.975313,2.1612,9.027847 +L 2.1612,9.027847,2.3775,9.059369 +L 2.3775,9.059369,2.5951,9.069879 +L 2.5951,9.069879,2.8203,9.059369 +L 2.8203,9.059369,3.0333,9.027847 +L 3.0333,9.027847,3.2395,8.975313 +L 3.2395,8.975313,3.43,8.901761 +L 3.43,8.901761,3.6161,8.807125 +L 3.6161,8.807125,3.7943,8.691544 +L 3.7943,8.691544,3.9578,8.554878 +L 3.9578,8.554878,4.1136,8.397198 +L 4.1136,8.397198,4.2548,8.225506 +L 4.2548,8.225506,4.3764,8.046811 +L 4.3764,8.046811,4.4858,7.861111 +L 4.4858,7.861111,4.5676,7.66834 +L 4.5676,7.66834,4.6342,7.468488 +L 4.6342,7.468488,4.6807,7.261705 +L 4.6807,7.261705,4.7089,7.047841 +L 4.7089,7.047841,4.7184,6.826979 +L 4.7184,6.826979,4.7132,6.661383 +L 4.7132,6.661383,4.6988,6.500898 +L 4.6988,6.500898,4.6792,6.345602 +L 4.6792,6.345602,4.6472,6.195417 +L 4.6472,6.195417,4.6091,6.050345 +L 4.6091,6.050345,4.5574,5.910457 +L 4.5574,5.910457,4.498,5.775683 +L 4.498,5.775683,4.4309,5.646022 +L 4.4309,5.646022,4.3597,5.521195 +L 4.3597,5.521195,4.2795,5.400848 +L 4.2795,5.400848,4.1933,5.28499 +L 4.1933,5.28499,4.1019,5.173612 +L 4.1019,5.173612,4.0028,5.066717 +L 4.0028,5.066717,3.8985,4.964375 +L 3.8985,4.964375,3.7887,4.866446 +L 3.7887,4.866446,3.6777,4.773001 +L 3.6777,4.773001,3.7863,4.711146 +L 3.7863,4.711146,3.8985,4.643478 +L 3.8985,4.643478,4.0127,4.570139 +L 4.0127,4.570139,4.1259,4.490984 +L 4.1259,4.490984,4.2425,4.406224 +L 4.2425,4.406224,4.3614,4.315651 +L 4.3614,4.315651,4.4756,4.219334 +L 4.4756,4.219334,4.5968,4.11734 +L 4.5968,4.11734,4.7089,4.002252 +L 4.7089,4.002252,4.8051,3.866777 +L 4.8051,3.866777,4.8871,3.710775 +L 4.8871,3.710775,4.9543,3.534394 +L 4.9543,3.534394,5.008,3.337626 +L 5.008,3.337626,5.0434,3.120404 +L 5.0434,3.120404,5.0657,2.882728 +L 5.0657,2.882728,5.0752,2.624597 +L 5.0752,2.624597,5.0629,2.353297 +L 5.0629,2.353297,5.0305,2.094956 +L 5.0305,2.094956,4.9777,1.849645 +L 4.9777,1.849645,4.9061,1.617222 +L 4.9061,1.617222,4.8096,1.397758 +L 4.8096,1.397758,4.6932,1.191324 +L 4.6932,1.191324,4.5574,0.997778 +L 4.5574,0.997778,4.4018,0.817192 +L 4.4018,0.817192,4.2224,0.654046 +L 4.2224,0.654046,4.0346,0.512619 +L 4.0346,0.512619,3.8313,0.392905 +L 3.8313,0.392905,3.6087,0.294976 +L 3.6087,0.294976,3.3705,0.218833 +L 3.3705,0.218833,3.1229,0.164475 +L 3.1229,0.164475,2.8551,0.13183 +L 2.8551,0.13183,2.5726,0.120905 +L 2.5726,0.120905,2.2901,0.132182 +L 2.2901,0.132182,2.0212,0.165946 +L 2.0212,0.165946,1.7657,0.222196 +L 1.7657,0.222196,1.5281,0.300928 +L 1.5281,0.300928,1.3,0.402149 +L 1.3,0.402149,1.0887,0.525858 +L 1.0887,0.525858,0.888,0.67212 +L 0.888,0.67212,0.706,0.840866 +L 0.706,0.840866,0.5395,1.026218 +L 0.5395,1.026218,0.3983,1.222286 +L 0.3983,1.222286,0.2745,1.429138 +L 0.2745,1.429138,0.1753,1.646713 +L 0.1753,1.646713,0.0957,1.87507 +L 0.0957,1.87507,0.0408,2.11415 +L 0.0408,2.11415,0.0115,2.364015 +L 0.0115,2.364015,-0.0001,2.624597 +L 0.9429,2.635945,0.9509,2.447023 +L 0.9509,2.447023,0.9722,2.270569 +L 0.9722,2.270569,1.0047,2.106444 +L 1.0047,2.106444,1.0517,1.954718 +L 1.0517,1.954718,1.1166,1.815459 +L 1.1166,1.815459,1.1934,1.688532 +L 1.1934,1.688532,1.2849,1.574072 +L 1.2849,1.574072,1.3936,1.47194 +L 1.3936,1.47194,1.5079,1.382067 +L 1.5079,1.382067,1.6345,1.304173 +L 1.6345,1.304173,1.7707,1.238187 +L 1.7707,1.238187,1.9135,1.184249 +L 1.9135,1.184249,2.0627,1.14229 +L 2.0627,1.14229,2.2245,1.112379 +L 2.2245,1.112379,2.3928,1.094376 +L 2.3928,1.094376,2.5726,1.088352 +L 2.5726,1.088352,2.7486,1.094376 +L 2.7486,1.094376,2.9178,1.112379 +L 2.9178,1.112379,3.0764,1.14229 +L 3.0764,1.14229,3.2248,1.184249 +L 3.2248,1.184249,3.3604,1.238187 +L 3.3604,1.238187,3.4893,1.304173 +L 3.4893,1.304173,3.6087,1.382067 +L 3.6087,1.382067,3.717,1.47194 +L 3.717,1.47194,3.8122,1.574072 +L 3.8122,1.574072,3.8985,1.688532 +L 3.8985,1.688532,3.968,1.815459 +L 3.968,1.815459,4.025,1.954718 +L 4.025,1.954718,4.0687,2.106444 +L 4.0687,2.106444,4.1019,2.270569 +L 4.1019,2.270569,4.1244,2.447023 +L 4.1244,2.447023,4.1283,2.635945 +L 4.1283,2.635945,4.1244,2.831242 +L 4.1244,2.831242,4.1019,3.009937 +L 4.1019,3.009937,4.0743,3.172098 +L 4.0743,3.172098,4.0273,3.317592 +L 4.0273,3.317592,3.9703,3.44655 +L 3.9703,3.44655,3.9008,3.558841 +L 3.9008,3.558841,3.8188,3.654598 +L 3.8188,3.654598,3.727,3.733751 +L 3.727,3.733751,3.6161,3.805694 +L 3.6161,3.805694,3.4949,3.879876 +L 3.4949,3.879876,3.3604,3.956159 +L 3.3604,3.956159,3.207,4.034684 +L 3.207,4.034684,3.0434,4.115381 +L 3.0434,4.115381,2.8652,4.198249 +L 2.8652,4.198249,2.6689,4.283288 +L 2.6689,4.283288,2.4617,4.370567 +L 2.4617,4.370567,2.3149,4.311658 +L 2.3149,4.311658,2.1714,4.246442 +L 2.1714,4.246442,2.0358,4.174922 +L 2.0358,4.174922,1.9011,4.097028 +L 1.9011,4.097028,1.7707,4.012899 +L 1.7707,4.012899,1.6446,3.922396 +L 1.6446,3.922396,1.5225,3.825588 +L 1.5225,3.825588,1.4065,3.722406 +L 1.4065,3.722406,1.3,3.612426 +L 1.3,3.612426,1.2029,3.495094 +L 1.2029,3.495094,1.1235,3.370339 +L 1.1235,3.370339,1.0572,3.238227 +L 1.0572,3.238227,1.0103,3.098759 +L 1.0103,3.098759,0.9722,2.951864 +L 0.9722,2.951864,0.9509,2.797618 +L 0.9509,2.797618,0.9429,2.635945 +L 3.774,6.815631,3.7717,6.954118 +L 3.7717,6.954118,3.7573,7.08616 +L 3.7573,7.08616,3.7291,7.211686 +L 3.7291,7.211686,3.6957,7.330769 +L 3.6957,7.330769,3.6535,7.44341 +L 3.6535,7.44341,3.6038,7.549602 +L 3.6038,7.549602,3.5365,7.649284 +L 3.5365,7.649284,3.467,7.742448 +L 3.467,7.742448,3.383,7.826859 +L 3.383,7.826859,3.2967,7.89999 +L 3.2967,7.89999,3.1969,7.961843 +L 3.1969,7.961843,3.0931,8.012486 +L 3.0931,8.012486,2.9816,8.051854 +L 2.9816,8.051854,2.8579,8.079946 +L 2.8579,8.079946,2.7318,8.096826 +L 2.7318,8.096826,2.5951,8.102429 +L 2.5951,8.102429,2.4617,8.096826 +L 2.4617,8.096826,2.3349,8.079946 +L 2.3349,8.079946,2.2189,8.051854 +L 2.2189,8.051854,2.1075,8.012486 +L 2.1075,8.012486,2.0033,7.961843 +L 2.0033,7.961843,1.9051,7.89999 +L 1.9051,7.89999,1.8155,7.826859 +L 1.8155,7.826859,1.7332,7.742448 +L 1.7332,7.742448,1.6557,7.649284 +L 1.6557,7.649284,1.5918,7.549602 +L 1.5918,7.549602,1.5369,7.44341 +L 1.5369,7.44341,1.496,7.330769 +L 1.496,7.330769,1.4586,7.211686 +L 1.4586,7.211686,1.4343,7.08616 +L 1.4343,7.08616,1.4182,6.954118 +L 1.4182,6.954118,1.416,6.815631 +L 1.416,6.815631,1.4182,6.663554 +L 1.4182,6.663554,1.4289,6.520935 +L 1.4289,6.520935,1.4485,6.387771 +L 1.4485,6.387771,1.4752,6.264135 +L 1.4752,6.264135,1.5079,6.149955 +L 1.5079,6.149955,1.5449,6.045232 +L 1.5449,6.045232,1.597,5.950035 +L 1.597,5.950035,1.649,5.864225 +L 1.649,5.864225,1.7186,5.782546 +L 1.7186,5.782546,1.8071,5.699538 +L 1.8071,5.699538,1.9191,5.615268 +L 1.9191,5.615268,2.0526,5.529531 +L 2.0526,5.529531,2.2038,5.4426 +L 2.2038,5.4426,2.3799,5.354268 +L 2.3799,5.354268,2.5726,5.264605 +L 2.5726,5.264605,2.7878,5.173612 +L 2.7878,5.173612,2.8897,5.221805 +L 2.8897,5.221805,2.9868,5.277494 +L 2.9868,5.277494,3.0837,5.340678 +L 3.0837,5.340678,3.1723,5.411498 +L 3.1723,5.411498,3.2541,5.489741 +L 3.2541,5.489741,3.3359,5.575553 +L 3.3359,5.575553,3.4155,5.668926 +L 3.4155,5.668926,3.4893,5.769799 +L 3.4893,5.769799,3.5565,5.877672 +L 3.5565,5.877672,3.6161,5.992132 +L 3.6161,5.992132,3.6632,6.113037 +L 3.6632,6.113037,3.7056,6.240526 +L 3.7056,6.240526,3.7325,6.374532 +L 3.7325,6.374532,3.7573,6.51505 +L 3.7573,6.51505,3.7717,6.662083 +L 3.7717,6.662083,3.774,6.815631 + +[9] 185 +L 2.3942,3.3861,2.1573,3.397726 +L 2.1573,3.397726,1.9257,3.432753 +L 1.9257,3.432753,1.7062,3.491032 +L 1.7062,3.491032,1.4903,3.572711 +L 1.4903,3.572711,1.2831,3.677644 +L 1.2831,3.677644,1.0868,3.805904 +L 1.0868,3.805904,0.8963,3.95756 +L 0.8963,3.95756,0.7154,4.132473 +L 0.7154,4.132473,0.5439,4.328118 +L 0.5439,4.328118,0.3981,4.541767 +L 0.3981,4.541767,0.28,4.773562 +L 0.28,4.773562,0.1752,5.023424 +L 0.1752,5.023424,0.1012,5.291294 +L 0.1012,5.291294,0.0405,5.577304 +L 0.0405,5.577304,0.0114,5.881317 +L 0.0114,5.881317,-0.0002,6.203402 +L -0.0002,6.203402,0.0092,6.489132 +L 0.0092,6.489132,0.0405,6.765123 +L 0.0405,6.765123,0.091,7.03138 +L 0.091,7.03138,0.1678,7.288042 +L 0.1678,7.288042,0.2615,7.534962 +L 0.2615,7.534962,0.3758,7.77222 +L 0.3758,7.77222,0.5069,7.99981 +L 0.5069,7.99981,0.665,8.217732 +L 0.665,8.217732,0.8387,8.417442 +L 0.8387,8.417442,1.0291,8.590531 +L 1.0291,8.590531,1.2298,8.737004 +L 1.2298,8.737004,1.4482,8.856858 +L 1.4482,8.856858,1.6759,8.950025 +L 1.6759,8.950025,1.919,9.016639 +L 1.919,9.016639,2.1769,9.05657 +L 2.1769,9.05657,2.4493,9.069879 +L 2.4493,9.069879,2.7271,9.055169 +L 2.7271,9.055169,2.9923,9.010828 +L 2.9923,9.010828,3.2393,8.937066 +L 3.2393,8.937066,3.4703,8.833741 +L 3.4703,8.833741,3.6877,8.700861 +L 3.6877,8.700861,3.8945,8.538487 +L 3.8945,8.538487,4.0793,8.34655 +L 4.0793,8.34655,4.248,8.125128 +L 4.248,8.125128,4.4017,7.863497 +L 4.4017,7.863497,4.535,7.550936 +L 4.535,7.550936,4.6471,7.187451 +L 4.6471,7.187451,4.7379,6.773111 +L 4.7379,6.773111,4.8134,6.307916 +L 4.8134,6.307916,4.8623,5.791724 +L 4.8623,5.791724,4.8947,5.224677 +L 4.8947,5.224677,4.9049,4.606775 +L 4.9049,4.606775,4.8947,4.117062 +L 4.8947,4.117062,4.8601,3.651306 +L 4.8601,3.651306,4.8028,3.209577 +L 4.8028,3.209577,4.7239,2.791804 +L 4.7239,2.791804,4.6213,2.398059 +L 4.6213,2.398059,4.498,2.0282 +L 4.498,2.0282,4.349,1.682365 +L 4.349,1.682365,4.1809,1.360492 +L 4.1809,1.360492,3.9954,1.069929 +L 3.9954,1.069929,3.7942,0.81817 +L 3.7942,0.81817,3.5919,0.605081 +L 3.5919,0.605081,3.3704,0.430799 +L 3.3704,0.430799,3.1434,0.295257 +L 3.1434,0.295257,2.9032,0.198379 +L 2.9032,0.198379,2.6577,0.140308 +L 2.6577,0.140308,2.3942,0.120905 +L 2.3942,0.120905,2.2216,0.1284 +L 2.2216,0.1284,2.0507,0.150816 +L 2.0507,0.150816,1.8799,0.188152 +L 1.8799,0.188152,1.7107,0.240408 +L 1.7107,0.240408,1.5424,0.307655 +L 1.5424,0.307655,1.3743,0.389823 +L 1.3743,0.389823,1.213,0.486911 +L 1.213,0.486911,1.0477,0.598989 +L 1.0477,0.598989,0.8963,0.724655 +L 0.8963,0.724655,0.7625,0.862724 +L 0.7625,0.862724,0.6458,1.013049 +L 0.6458,1.013049,0.5462,1.175773 +L 0.5462,1.175773,0.4655,1.350826 +L 0.4655,1.350826,0.4005,1.538204 +L 0.4005,1.538204,0.3583,1.737916 +L 0.3583,1.737916,0.3287,1.950025 +L 0.3287,1.950025,1.2891,1.950025 +L 1.2891,1.950025,1.3094,1.844391 +L 1.3094,1.844391,1.3317,1.745762 +L 1.3317,1.745762,1.3687,1.654138 +L 1.3687,1.654138,1.412,1.569519 +L 1.412,1.569519,1.463,1.491904 +L 1.463,1.491904,1.5224,1.421225 +L 1.5224,1.421225,1.5941,1.357618 +L 1.5941,1.357618,1.6737,1.300951 +L 1.6737,1.300951,1.7555,1.251146 +L 1.7555,1.251146,1.8394,1.207926 +L 1.8394,1.207926,1.9257,1.17143 +L 1.9257,1.17143,2.0176,1.141519 +L 2.0176,1.141519,2.1074,1.118263 +L 2.1074,1.118263,2.2021,1.101661 +L 2.2021,1.101661,2.2978,1.091714 +L 2.2978,1.091714,2.3942,1.088352 +L 2.3942,1.088352,2.5311,1.09998 +L 2.5311,1.09998,2.6644,1.134654 +L 2.6644,1.134654,2.7989,1.192512 +L 2.7989,1.192512,2.925,1.273562 +L 2.925,1.273562,3.0489,1.377724 +L 3.0489,1.377724,3.1722,1.505001 +L 3.1722,1.505001,3.291,1.655467 +L 3.291,1.655467,3.4109,1.82912 +L 3.4109,1.82912,3.5196,2.026168 +L 3.5196,2.026168,3.6142,2.247033 +L 3.6142,2.247033,3.6984,2.491714 +L 3.6984,2.491714,3.7718,2.760142 +L 3.7718,2.760142,3.8288,3.052457 +L 3.8288,3.052457,3.8759,3.368518 +L 3.8759,3.368518,3.9112,3.708326 +L 3.9112,3.708326,3.9337,4.07202 +L 3.9337,4.07202,3.7617,3.911258 +L 3.7617,3.911258,3.5811,3.77193 +L 3.5811,3.77193,3.3986,3.654036 +L 3.3986,3.654036,3.2069,3.55758 +L 3.2069,3.55758,3.0145,3.482556 +L 3.0145,3.482556,2.8113,3.42897 +L 2.8113,3.42897,2.6056,3.396818 +L 2.6056,3.396818,2.3942,3.3861 +L 2.4375,8.102429,2.2653,8.094026 +L 2.2653,8.094026,2.1028,8.068878 +L 2.1028,8.068878,1.9516,8.026989 +L 1.9516,8.026989,1.8125,7.968286 +L 1.8125,7.968286,1.6782,7.892845 +L 1.6782,7.892845,1.5549,7.80059 +L 1.5549,7.80059,1.4405,7.691594 +L 1.4405,7.691594,1.3373,7.565786 +L 1.3373,7.565786,1.2478,7.427159 +L 1.2478,7.427159,1.166,7.279566 +L 1.166,7.279566,1.0987,7.122936 +L 1.0987,7.122936,1.0421,6.95734 +L 1.0421,6.95734,0.9977,6.782848 +L 0.9977,6.782848,0.9653,6.599317 +L 0.9653,6.599317,0.9508,6.406823 +L 0.9508,6.406823,0.9411,6.205292 +L 0.9411,6.205292,0.9508,6.003763 +L 0.9508,6.003763,0.9653,5.811968 +L 0.9653,5.811968,0.9921,5.629981 +L 0.9921,5.629981,1.0347,5.45773 +L 1.0347,5.45773,1.0868,5.295284 +L 1.0868,5.295284,1.1514,5.14258 +L 1.1514,5.14258,1.2254,4.999678 +L 1.2254,4.999678,1.3094,4.866587 +L 1.3094,4.866587,1.4064,4.746312 +L 1.4064,4.746312,1.5184,4.642147 +L 1.5184,4.642147,1.6343,4.553956 +L 1.6343,4.553956,1.7656,4.481807 +L 1.7656,4.481807,1.9051,4.425698 +L 1.9051,4.425698,2.0507,4.38563 +L 2.0507,4.38563,2.2093,4.361533 +L 2.2093,4.361533,2.3798,4.353548 +L 2.3798,4.353548,2.5165,4.359432 +L 2.5165,4.359432,2.6475,4.377084 +L 2.6475,4.377084,2.7743,4.406572 +L 2.7743,4.406572,2.8952,4.447763 +L 2.8952,4.447763,3.0145,4.50079 +L 3.0145,4.50079,3.1283,4.565586 +L 3.1283,4.565586,3.2393,4.642147 +L 3.2393,4.642147,3.3513,4.730551 +L 3.3513,4.730551,3.45,4.830301 +L 3.45,4.830301,3.5443,4.941117 +L 3.5443,4.941117,3.6261,5.063072 +L 3.6261,5.063072,3.6956,5.196027 +L 3.6956,5.196027,3.7617,5.340118 +L 3.7617,5.340118,3.8144,5.495277 +L 3.8144,5.495277,3.8558,5.661503 +L 3.8558,5.661503,3.8945,5.838727 +L 3.8945,5.838727,3.8635,6.134264 +L 3.8635,6.134264,3.8288,6.407663 +L 3.8288,6.407663,3.784,6.659001 +L 3.784,6.659001,3.7346,6.888132 +L 3.7346,6.888132,3.6709,7.095264 +L 3.6709,7.095264,3.6037,7.280194 +L 3.6037,7.280194,3.5196,7.443058 +L 3.5196,7.443058,3.4355,7.583786 +L 3.4355,7.583786,3.3414,7.705324 +L 3.3414,7.705324,3.2393,7.810678 +L 3.2393,7.810678,3.1227,7.89985 +L 3.1227,7.89985,3.004,7.972771 +L 3.004,7.972771,2.875,8.029511 +L 2.875,8.029511,2.7362,8.070001 +L 2.7362,8.070001,2.5926,8.094304 +L 2.5926,8.094304,2.4375,8.102429 + +[:] 8 +L 1.2362,5.058355,0,5.058355 +L 0,5.058355,0,6.617248 +L 0,6.617248,1.2362,6.617248 +L 1.2362,6.617248,1.2362,5.058355 +L 1.2362,0.971225,0,0.971225 +L 0,0.971225,0,2.530114 +L 0,2.530114,1.2362,2.530114 +L 1.2362,2.530114,1.2362,0.971225 + +[;] 11 +L 1.239,5.058355,0.0001,5.058355 +L 0.0001,5.058355,0.0001,6.617248 +L 0.0001,6.617248,1.239,6.617248 +L 1.239,6.617248,1.239,5.058355 +L 1.239,1.279222,0.3147,-0.587668 +L 0.3147,-0.587668,0.02,-0.587668 +L 0.02,-0.587668,0.4831,0.971225 +L 0.4831,0.971225,0.0001,0.971225 +L 0.0001,0.971225,0.0001,2.530114 +L 0.0001,2.530114,1.239,2.530114 +L 1.239,2.530114,1.239,1.279222 + +[<] 21 +L 4.0333,-1.001482,0.1268,4.008385 +L 0.1268,4.006796,0.0931,4.056824 +L 0.0931,4.056824,0.0646,4.108713 +L 0.0646,4.108713,0.0411,4.162467 +L 0.0411,4.162467,0.0237,4.218073 +L 0.0237,4.218073,0.009,4.275548 +L 0.009,4.275548,0.0019,4.334875 +L 0.0019,4.334875,0.0002,4.396063 +L 0.0002,4.396063,0.0019,4.457248 +L 0.0019,4.457248,0.009,4.516578 +L 0.009,4.516578,0.0237,4.574049 +L 0.0237,4.574049,0.0411,4.629659 +L 0.0411,4.629659,0.0646,4.68341 +L 0.0646,4.68341,0.0931,4.735297 +L 0.0931,4.735297,0.1268,4.78533 +L 0.1268,4.78533,0.1665,4.833497 +L 0.1665,4.833497,4.0333,9.804943 +L 4.0333,9.804943,4.5691,9.190797 +L 0.8394,4.395608,4.5691,9.190797 +L 4.0333,-1.001482,4.5689,-0.387376 +L 4.5689,-0.387376,0.8394,4.395608 + +[=] 8 +L -0.0002,6.167533,6.5844,6.167533 +L 6.5844,6.167533,6.5844,5.321001 +L 6.5844,5.321001,-0.0002,5.321001 +L -0.0002,5.321001,-0.0002,6.167533 +L -0.0002,3.507025,6.5844,3.507025 +L 6.5844,3.507025,6.5844,2.660497 +L 6.5844,2.660497,-0.0002,2.660497 +L -0.0002,2.660497,-0.0002,3.507025 + +[>] 21 +L 0.5361,-1.001482,4.4426,4.008385 +L 4.4426,4.006796,4.4764,4.056824 +L 4.4764,4.056824,4.5048,4.108713 +L 4.5048,4.108713,4.5284,4.162467 +L 4.5284,4.162467,4.5457,4.218073 +L 4.5457,4.218073,4.5604,4.275548 +L 4.5604,4.275548,4.5676,4.334875 +L 4.5676,4.334875,4.5693,4.396063 +L 4.5693,4.396063,4.5676,4.457248 +L 4.5676,4.457248,4.5604,4.516578 +L 4.5604,4.516578,4.5457,4.574049 +L 4.5457,4.574049,4.5284,4.629659 +L 4.5284,4.629659,4.5048,4.68341 +L 4.5048,4.68341,4.4764,4.735297 +L 4.4764,4.735297,4.4426,4.78533 +L 4.4426,4.78533,4.403,4.833497 +L 4.403,4.833497,0.5361,9.804943 +L 0.5361,9.804943,0.0004,9.190797 +L 3.7301,4.395608,0.0004,9.190797 +L 0.5361,-1.001482,0.0005,-0.387376 +L 0.0005,-0.387376,3.7301,4.395608 + +[?] 170 +L 1.8307,-0.483741,1.8307,0.846512 +L 1.8307,0.846512,2.8908,0.846512 +L 2.8908,0.846512,2.8908,-0.483741 +L 2.8908,-0.483741,1.8307,-0.483741 +L 2.4648,9.311771,2.6556,9.312452 +L 2.6556,9.312452,2.8412,9.302205 +L 2.8412,9.302205,3.0195,9.281033 +L 3.0195,9.281033,3.193,9.24894 +L 3.193,9.24894,3.3617,9.205923 +L 3.3617,9.205923,3.5224,9.151979 +L 3.5224,9.151979,3.6789,9.087113 +L 3.6789,9.087113,3.8274,9.011327 +L 3.8274,9.011327,3.9661,8.927609 +L 3.9661,8.927609,4.0997,8.838964 +L 4.0997,8.838964,4.2186,8.745386 +L 4.2186,8.745386,4.3303,8.646875 +L 4.3303,8.646875,4.4368,8.543443 +L 4.4368,8.543443,4.5262,8.435066 +L 4.5262,8.435066,4.6052,8.321764 +L 4.6052,8.321764,4.6848,8.203534 +L 4.6848,8.203534,4.7464,8.08191 +L 4.7464,8.08191,4.801,7.958424 +L 4.801,7.958424,4.8477,7.83308 +L 4.8477,7.83308,4.8903,7.705875 +L 4.8903,7.705875,4.9173,7.57681 +L 4.9173,7.57681,4.9372,7.445886 +L 4.9372,7.445886,4.9494,7.313095 +L 4.9494,7.313095,4.9549,7.178448 +L 4.9549,7.178448,4.9494,6.934973 +L 4.9494,6.934973,4.9224,6.706232 +L 4.9224,6.706232,4.8801,6.492223 +L 4.8801,6.492223,4.8235,6.292951 +L 4.8235,6.292951,4.7491,6.108407 +L 4.7491,6.108407,4.6573,5.9386 +L 4.6573,5.9386,4.5531,5.78352 +L 4.5531,5.78352,4.427,5.643176 +L 4.427,5.643176,4.2981,5.513428 +L 4.2981,5.513428,4.1692,5.390148 +L 4.1692,5.390148,4.05,5.273335 +L 4.05,5.273335,3.9288,5.16299 +L 3.9288,5.16299,3.8125,5.059108 +L 3.8125,5.059108,3.706,4.961691 +L 3.706,4.961691,3.6018,4.870746 +L 3.6018,4.870746,3.4952,4.786258 +L 3.4952,4.786258,3.4015,4.70318 +L 3.4015,4.70318,3.3145,4.61643 +L 3.3145,4.61643,3.2353,4.526026 +L 3.2353,4.526026,3.1633,4.431961 +L 3.1633,4.431961,3.0987,4.334238 +L 3.0987,4.334238,3.047,4.232849 +L 3.047,4.232849,2.9998,4.127801 +L 2.9998,4.127801,2.9655,4.019094 +L 2.9655,4.019094,2.933,3.906219 +L 2.933,3.906219,2.9083,3.78869 +L 2.9083,3.78869,2.8858,3.66648 +L 2.8858,3.66648,2.8611,3.539619 +L 2.8611,3.539619,2.8512,3.408082 +L 2.8512,3.408082,2.8412,3.27189 +L 2.8412,3.27189,2.8341,3.131023 +L 2.8341,3.131023,2.8313,2.985496 +L 2.8313,2.985496,2.8313,2.288257 +L 2.8313,2.288257,1.9471,2.288257 +L 1.9471,2.288257,1.9471,2.985496 +L 1.9471,2.985496,1.9471,3.132974 +L 1.9471,3.132974,1.952,3.27968 +L 1.952,3.27968,1.9618,3.425621 +L 1.9618,3.425621,1.9741,3.570791 +L 1.9741,3.570791,1.9893,3.715204 +L 1.9893,3.715204,2.0089,3.858835 +L 2.0089,3.858835,2.0312,4.001704 +L 2.0312,4.001704,2.0585,4.143803 +L 2.0585,4.143803,2.0931,4.283766 +L 2.0931,4.283766,2.1406,4.420212 +L 2.1406,4.420212,2.197,4.553148 +L 2.197,4.553148,2.2738,4.682566 +L 2.2738,4.682566,2.3583,4.808472 +L 2.3583,4.808472,2.4571,4.930865 +L 2.4571,4.930865,2.5711,5.049747 +L 2.5711,5.049747,2.6954,5.165112 +L 2.6954,5.165112,2.8289,5.277713 +L 2.8289,5.277713,2.9502,5.388259 +L 2.9502,5.388259,3.0694,5.496778 +L 3.0694,5.496778,3.1832,5.603257 +L 3.1832,5.603257,3.295,5.707703 +L 3.295,5.707703,3.3961,5.810108 +L 3.3961,5.810108,3.4952,5.910473 +L 3.4952,5.910473,3.5895,6.008806 +L 3.5895,6.008806,3.6738,6.112058 +L 3.6738,6.112058,3.7481,6.227166 +L 3.7481,6.227166,3.8125,6.354152 +L 3.8125,6.354152,3.8624,6.493007 +L 3.8624,6.493007,3.9016,6.643735 +L 3.9016,6.643735,3.9288,6.806317 +L 3.9288,6.806317,3.949,6.98078 +L 3.949,6.98078,3.9511,7.167111 +L 3.9511,7.167111,3.9511,7.282341 +L 3.9511,7.282341,3.9414,7.391854 +L 3.9414,7.391854,3.9288,7.495625 +L 3.9288,7.495625,3.9068,7.593683 +L 3.9068,7.593683,3.8819,7.686001 +L 3.8819,7.686001,3.8498,7.772595 +L 3.8498,7.772595,3.8125,7.853462 +L 3.8125,7.853462,3.7701,7.928609 +L 3.7701,7.928609,3.7231,7.998295 +L 3.7231,7.998295,3.6716,8.062821 +L 3.6716,8.062821,3.6217,8.122186 +L 3.6217,8.122186,3.5671,8.176373 +L 3.5671,8.176373,3.5102,8.225396 +L 3.5102,8.225396,3.4456,8.269262 +L 3.4456,8.269262,3.3863,8.307947 +L 3.3863,8.307947,3.3194,8.341474 +L 3.3194,8.341474,3.2502,8.370487 +L 3.2502,8.370487,3.1683,8.395624 +L 3.1683,8.395624,3.0766,8.416893 +L 3.0766,8.416893,2.9775,8.434296 +L 2.9775,8.434296,2.8611,8.447835 +L 2.8611,8.447835,2.7447,8.457506 +L 2.7447,8.457506,2.6158,8.463307 +L 2.6158,8.463307,2.4746,8.465242 +L 2.4746,8.465242,2.368,8.463024 +L 2.368,8.463024,2.2641,8.456383 +L 2.2641,8.456383,2.165,8.445313 +L 2.165,8.445313,2.0683,8.42981 +L 2.0683,8.42981,1.9795,8.409886 +L 1.9795,8.409886,1.8876,8.385526 +L 1.8876,8.385526,1.8006,8.35674 +L 1.8006,8.35674,1.7192,8.323526 +L 1.7192,8.323526,1.6401,8.284032 +L 1.6401,8.284032,1.5634,8.236431 +L 1.5634,8.236431,1.4936,8.180698 +L 1.4936,8.180698,1.4343,8.116853 +L 1.4343,8.116853,1.3723,8.044889 +L 1.3723,8.044889,1.3178,7.964803 +L 1.3178,7.964803,1.2683,7.8766 +L 1.2683,7.8766,1.2259,7.780274 +L 1.2259,7.780274,1.1893,7.678429 +L 1.1893,7.678429,1.1543,7.573662 +L 1.1543,7.573662,1.1274,7.465973 +L 1.1274,7.465973,1.1023,7.355359 +L 1.1023,7.355359,1.0872,7.241822 +L 1.0872,7.241822,1.0701,7.125368 +L 1.0701,7.125368,1.0652,7.005978 +L 1.0652,7.005978,1.0628,6.883673 +L 1.0628,6.883673,1.0628,6.339479 +L 1.0628,6.339479,-0.0001,6.339479 +L -0.0001,6.339479,-0.0001,6.883673 +L -0.0001,6.883673,0.0027,7.009286 +L 0.0027,7.009286,0.0171,7.138585 +L 0.0171,7.138585,0.0394,7.27158 +L 0.0394,7.27158,0.0768,7.408261 +L 0.0768,7.408261,0.1162,7.548642 +L 0.1162,7.548642,0.1658,7.692704 +L 0.1658,7.692704,0.228,7.840464 +L 0.228,7.840464,0.3018,7.991903 +L 0.3018,7.991903,0.3812,8.14114 +L 0.3812,8.14114,0.4656,8.282245 +L 0.4656,8.282245,0.5622,8.415238 +L 0.5622,8.415238,0.6662,8.540116 +L 0.6662,8.540116,0.7777,8.65687 +L 0.7777,8.65687,0.894,8.765507 +L 0.894,8.765507,1.0204,8.866016 +L 1.0204,8.866016,1.1571,8.958418 +L 1.1571,8.958418,1.3003,9.041233 +L 1.3003,9.041233,1.4491,9.113007 +L 1.4491,9.113007,1.6025,9.173738 +L 1.6025,9.173738,1.7612,9.223431 +L 1.7612,9.223431,1.9271,9.262078 +L 1.9271,9.262078,2.1004,9.289686 +L 2.1004,9.289686,2.2793,9.306248 +L 2.2793,9.306248,2.4648,9.311771 + +[@] 343 +L -0.0002,4.389448,0.0201,4.939576 +L 0.0201,4.939576,0.0672,5.462837 +L 0.0672,5.462837,0.1568,5.959233 +L 0.1568,5.959233,0.2779,6.428768 +L 0.2779,6.428768,0.4292,6.871421 +L 0.4292,6.871421,0.6175,7.287216 +L 0.6175,7.287216,0.845,7.676142 +L 0.845,7.676142,1.1028,8.038197 +L 1.1028,8.038197,1.3807,8.365037 +L 1.3807,8.365037,1.6721,8.648298 +L 1.6721,8.648298,1.9703,8.887975 +L 1.9703,8.887975,2.2774,9.084073 +L 2.2774,9.084073,2.599,9.2366 +L 2.599,9.2366,2.9263,9.345548 +L 2.9263,9.345548,3.2659,9.410913 +L 3.2659,9.410913,3.6143,9.432698 +L 3.6143,9.432698,4.019,9.412163 +L 4.019,9.412163,4.4024,9.350561 +L 4.4024,9.350561,4.7689,9.247895 +L 4.7689,9.247895,5.1185,9.10415 +L 5.1185,9.10415,5.4479,8.919344 +L 5.4479,8.919344,5.7607,8.693466 +L 5.7607,8.693466,6.0499,8.426522 +L 6.0499,8.426522,6.3255,8.118508 +L 6.3255,8.118508,6.5677,7.780788 +L 6.5677,7.780788,6.7829,7.424738 +L 6.7829,7.424738,6.9645,7.050354 +L 6.9645,7.050354,7.1124,6.657635 +L 7.1124,6.657635,7.2266,6.246579 +L 7.2266,6.246579,7.3129,5.817196 +L 7.3129,5.817196,7.3555,5.369469 +L 7.3555,5.369469,7.3758,4.903408 +L 7.3758,4.903408,7.3657,4.571378 +L 7.3657,4.571378,7.3387,4.252694 +L 7.3387,4.252694,7.2938,3.947351 +L 7.2938,3.947351,7.2266,3.655353 +L 7.2266,3.655353,7.1448,3.3767 +L 7.1448,3.3767,7.0439,3.111394 +L 7.0439,3.111394,6.9219,2.859432 +L 6.9219,2.859432,6.7829,2.620819 +L 6.7829,2.620819,6.635,2.403365 +L 6.635,2.403365,6.4758,2.214911 +L 6.4758,2.214911,6.3176,2.055447 +L 6.3176,2.055447,6.1462,1.92498 +L 6.1462,1.92498,5.9759,1.823506 +L 5.9759,1.823506,5.7955,1.751022 +L 5.7955,1.751022,5.6117,1.707533 +L 5.6117,1.707533,5.4212,1.693037 +L 5.4212,1.693037,5.2519,1.697555 +L 5.2519,1.697555,5.0939,1.711105 +L 5.0939,1.711105,4.9571,1.733692 +L 4.9571,1.733692,4.8283,1.765312 +L 4.8283,1.765312,4.7194,1.805969 +L 4.7194,1.805969,4.6187,1.85566 +L 4.6187,1.85566,4.5333,1.914383 +L 4.5333,1.914383,4.4618,1.982142 +L 4.4618,1.982142,4.4024,2.053146 +L 4.4024,2.053146,4.3486,2.121612 +L 4.3486,2.121612,4.3015,2.187544 +L 4.3015,2.187544,4.2567,2.250938 +L 4.2567,2.250938,4.2219,2.31178 +L 4.2219,2.31178,4.1894,2.370092 +L 4.1894,2.370092,4.1648,2.425862 +L 4.1648,2.425862,4.1446,2.479101 +L 4.1446,2.479101,4.0684,2.374299 +L 4.0684,2.374299,3.9864,2.274378 +L 3.9864,2.274378,3.9046,2.17932 +L 3.9046,2.17932,3.8151,2.089138 +L 3.8151,2.089138,3.7241,2.003827 +L 3.7241,2.003827,3.6301,1.923389 +L 3.6301,1.923389,3.5304,1.847819 +L 3.5304,1.847819,3.4318,1.777122 +L 3.4318,1.777122,3.3275,1.716525 +L 3.3275,1.716525,3.2187,1.671247 +L 3.2187,1.671247,3.1066,1.641297 +L 3.1066,1.641297,2.9902,1.626663 +L 2.9902,1.626663,2.8736,1.627359 +L 2.8736,1.627359,2.7502,1.643377 +L 2.7502,1.643377,2.6258,1.674719 +L 2.6258,1.674719,2.498,1.721378 +L 2.498,1.721378,2.3714,1.780857 +L 2.3714,1.780857,2.2527,1.850638 +L 2.2527,1.850638,2.1406,1.930726 +L 2.1406,1.930726,2.0441,2.021112 +L 2.0441,2.021112,1.9501,2.121805 +L 1.9501,2.121805,1.8659,2.232804 +L 1.8659,2.232804,1.7964,2.354107 +L 1.7964,2.354107,1.7325,2.485712 +L 1.7325,2.485712,1.6755,2.626289 +L 1.6755,2.626289,1.6284,2.774517 +L 1.6284,2.774517,1.5881,2.930392 +L 1.5881,2.930392,1.5612,3.09391 +L 1.5612,3.09391,1.5388,3.26508 +L 1.5388,3.26508,1.5263,3.443897 +L 1.5263,3.443897,1.5218,3.630361 +L 1.5218,3.630361,1.5263,3.824467 +L 1.5263,3.824467,1.5388,4.021191 +L 1.5388,4.021191,1.5612,4.21549 +L 1.5612,4.21549,1.5836,4.407374 +L 1.5836,4.407374,1.6182,4.596828 +L 1.6182,4.596828,1.6576,4.783867 +L 1.6576,4.783867,1.7,4.96848 +L 1.7,4.96848,1.7538,5.150679 +L 1.7538,5.150679,1.8111,5.330451 +L 1.8111,5.330451,1.8784,5.507172 +L 1.8784,5.507172,1.9477,5.680197 +L 1.9477,5.680197,2.0241,5.849536 +L 2.0241,5.849536,2.1036,6.015178 +L 2.1036,6.015178,2.1853,6.177143 +L 2.1853,6.177143,2.2774,6.335408 +L 2.2774,6.335408,2.3714,6.489982 +L 2.3714,6.489982,2.4724,6.640865 +L 2.4724,6.640865,2.5788,6.783176 +L 2.5788,6.783176,2.6831,6.912023 +L 2.6831,6.912023,2.7952,7.027398 +L 2.7952,7.027398,2.9084,7.129319 +L 2.9084,7.129319,3.0249,7.217774 +L 3.0249,7.217774,3.1471,7.292763 +L 3.1471,7.292763,3.2704,7.354295 +L 3.2704,7.354295,3.4015,7.402368 +L 3.4015,7.402368,3.528,7.438717 +L 3.528,7.438717,3.6468,7.46513 +L 3.6468,7.46513,3.7679,7.481587 +L 3.7679,7.481587,3.8823,7.4881 +L 3.8823,7.4881,3.9888,7.484658 +L 3.9888,7.484658,4.0953,7.471272 +L 4.0953,7.471272,4.1949,7.447926 +L 4.1949,7.447926,4.2914,7.414646 +L 4.2914,7.414646,4.5333,7.312754 +L 4.5333,7.31128,4.6601,7.255727 +L 4.6601,7.255066,4.7644,7.209841 +L 4.7644,7.209009,4.799,7.189789 +L 4.799,7.189789,4.8752,7.639504 +L 4.8752,7.639504,5.6756,7.639504 +L 5.6756,7.639504,4.9279,3.246265 +L 4.9279,3.246265,4.9032,3.098091 +L 4.9032,3.098091,4.8832,2.966314 +L 4.8832,2.966314,4.8786,2.85091 +L 4.8786,2.85091,4.8786,2.751902 +L 4.8786,2.751902,4.8888,2.669284 +L 4.8888,2.669284,4.9078,2.603044 +L 4.9078,2.603044,4.9346,2.553184 +L 4.9346,2.553184,4.9772,2.519729 +L 4.9772,2.519729,5.0244,2.496031 +L 5.0244,2.496031,5.0715,2.475493 +L 5.0715,2.475493,5.1285,2.458126 +L 5.1285,2.458126,5.1879,2.443906 +L 5.1879,2.443906,5.2519,2.432844 +L 5.2519,2.432844,5.3214,2.424949 +L 5.3214,2.424949,5.393,2.420216 +L 5.393,2.420216,5.4726,2.418636 +L 5.4726,2.418636,5.5915,2.429366 +L 5.5915,2.429366,5.7058,2.461558 +L 5.7058,2.461558,5.8202,2.51522 +L 5.8202,2.51522,5.9289,2.590345 +L 5.9289,2.590345,6.0352,2.686936 +L 6.0352,2.686936,6.1396,2.804987 +L 6.1396,2.804987,6.2403,2.944511 +L 6.2403,2.944511,6.3402,3.105493 +L 6.3402,3.105493,6.4321,3.284037 +L 6.4321,3.284037,6.5106,3.476256 +L 6.5106,3.476256,6.5777,3.682149 +L 6.5777,3.682149,6.6326,3.901709 +L 6.6326,3.901709,6.6718,4.134933 +L 6.6718,4.134933,6.7009,4.38183 +L 6.7009,4.38183,6.7213,4.642399 +L 6.7213,4.642399,6.7269,4.916637 +L 6.7269,4.916637,6.7144,5.303288 +L 6.7144,5.303288,6.6798,5.6753 +L 6.6798,5.6753,6.6125,6.032667 +L 6.6125,6.032667,6.5262,6.375379 +L 6.5262,6.375379,6.4142,6.703456 +L 6.4142,6.703456,6.2729,7.016888 +L 6.2729,7.016888,6.1116,7.315678 +L 6.1116,7.315678,5.921,7.599819 +L 5.921,7.599819,5.7081,7.859346 +L 5.7081,7.859346,5.4726,8.084256 +L 5.4726,8.084256,5.2204,8.274571 +L 5.2204,8.274571,4.9402,8.430287 +L 4.9402,8.430287,4.6433,8.551394 +L 4.6433,8.551394,4.3238,8.637897 +L 4.3238,8.637897,3.9842,8.689802 +L 3.9842,8.689802,3.6201,8.707104 +L 3.6201,8.707104,3.313,8.688355 +L 3.313,8.688355,3.0227,8.632116 +L 3.0227,8.632116,2.738,8.538373 +L 2.738,8.538373,2.47,8.407136 +L 2.47,8.407136,2.2122,8.238403 +L 2.2122,8.238403,1.9647,8.032177 +L 1.9647,8.032177,1.7325,7.78845 +L 1.7325,7.78845,1.5141,7.507229 +L 1.5141,7.507229,1.3111,7.195603 +L 1.3111,7.195603,1.1353,6.860646 +L 1.1353,6.860646,0.9862,6.502365 +L 0.9862,6.502365,0.8652,6.120762 +L 0.8652,6.120762,0.771,5.715835 +L 0.771,5.715835,0.7015,5.287586 +L 0.7015,5.287586,0.6645,4.836008 +L 0.6645,4.836008,0.65,4.361104 +L 0.65,4.361104,0.6666,3.875898 +L 0.6666,3.875898,0.7115,3.417977 +L 0.7115,3.417977,0.7856,2.987333 +L 0.7856,2.987333,0.8921,2.583969 +L 0.8921,2.583969,1.0288,2.207884 +L 1.0288,2.207884,1.1891,1.859084 +L 1.1891,1.859084,1.3895,1.537563 +L 1.3895,1.537563,1.6161,1.243322 +L 1.6161,1.243322,1.8559,0.980255 +L 1.8559,0.980255,2.1036,0.75227 +L 2.1036,0.75227,2.3536,0.559359 +L 2.3536,0.559359,2.6136,0.401521 +L 2.6136,0.401521,2.8736,0.278754 +L 2.8736,0.278754,3.1369,0.191068 +L 3.1369,0.191068,3.4071,0.138456 +L 3.4071,0.138456,3.6816,0.120918 +L 3.6816,0.120918,3.8823,0.125996 +L 3.8823,0.125996,4.0828,0.141232 +L 4.0828,0.141232,4.2791,0.166622 +L 4.2791,0.166622,4.4819,0.20217 +L 4.4819,0.20217,4.6781,0.247873 +L 4.6781,0.247873,4.8786,0.303737 +L 4.8786,0.303737,5.0837,0.369747 +L 5.0837,0.369747,5.2844,0.445923 +L 5.2844,0.445923,5.4828,0.540371 +L 5.4828,0.540371,5.6833,0.661219 +L 5.6833,0.661219,5.8818,0.808453 +L 5.8818,0.808453,6.0802,0.982087 +L 6.0802,0.982087,6.2729,1.182117 +L 6.2729,1.182117,6.4691,1.408542 +L 6.4691,1.408542,6.6619,1.661357 +L 6.6619,1.661357,6.8524,1.940573 +L 6.8524,1.940573,7.2961,1.349136 +L 7.2961,1.349136,7.0687,1.069303 +L 7.0687,1.069303,6.8401,0.813679 +L 6.8401,0.813679,6.6203,0.582269 +L 6.6203,0.582269,6.3974,0.375064 +L 6.3974,0.375064,6.1766,0.192074 +L 6.1766,0.192074,5.9614,0.033291 +L 5.9614,0.033291,5.7484,-0.101282 +L 5.7484,-0.101282,5.5377,-0.211644 +L 5.5377,-0.211644,5.3214,-0.303759 +L 5.3214,-0.303759,5.1062,-0.383593 +L 5.1062,-0.383593,4.8808,-0.451146 +L 4.8808,-0.451146,4.6534,-0.506415 +L 4.6534,-0.506415,4.4179,-0.549403 +L 4.4179,-0.549403,4.1771,-0.580111 +L 4.1771,-0.580111,3.9316,-0.598534 +L 3.9316,-0.598534,3.6816,-0.604672 +L 3.6816,-0.604672,3.3173,-0.583535 +L 3.3173,-0.583535,2.9654,-0.520114 +L 2.9654,-0.520114,2.6258,-0.414419 +L 2.6258,-0.414419,2.2964,-0.26644 +L 2.2964,-0.26644,1.9803,-0.076187 +L 1.9803,-0.076187,1.6755,0.156347 +L 1.6755,0.156347,1.3807,0.431158 +L 1.3807,0.431158,1.0983,0.748255 +L 1.0983,0.748255,0.8404,1.101101 +L 0.8404,1.101101,0.6175,1.483179 +L 0.6175,1.483179,0.4292,1.894485 +L 0.4292,1.894485,0.2779,2.335019 +L 0.2779,2.335019,0.1568,2.804785 +L 0.1568,2.804785,0.0672,3.303775 +L 0.0672,3.303775,0.0201,3.831997 +L 0.0201,3.831997,-0.0002,4.389448 +L 4.6746,6.345151,4.6376,6.371986 +L 4.6376,6.371986,4.5905,6.399592 +L 4.5905,6.399592,4.5412,6.427962 +L 4.5412,6.427962,4.4864,6.457102 +L 4.4864,6.457102,4.3607,6.519254 +L 4.3607,6.51769,4.2141,6.582849 +L 4.2141,6.581348,4.1379,6.610427 +L 4.1379,6.610427,4.0583,6.632483 +L 4.0583,6.632483,3.9787,6.647509 +L 3.9787,6.647509,3.9046,6.655512 +L 3.9046,6.655512,3.8252,6.656484 +L 3.8252,6.656484,3.7467,6.650433 +L 3.7467,6.650433,3.6671,6.637352 +L 3.6671,6.637352,3.5874,6.617248 +L 3.5874,6.617248,3.5113,6.588637 +L 3.5113,6.588637,3.4339,6.550049 +L 3.4339,6.550049,3.3623,6.501476 +L 3.3623,6.501476,3.2848,6.442935 +L 3.2848,6.442935,3.2132,6.374405 +L 3.2132,6.374405,3.1436,6.295902 +L 3.1436,6.295902,3.0742,6.207417 +L 3.0742,6.207417,3.0059,6.108954 +L 3.0059,6.108954,2.9364,6.003386 +L 2.9364,6.003386,2.8736,5.893602 +L 2.8736,5.893602,2.8096,5.77959 +L 2.8096,5.77959,2.7502,5.661363 +L 2.7502,5.661363,2.6954,5.538906 +L 2.6954,5.538906,2.6416,5.412231 +L 2.6416,5.412231,2.5923,5.281338 +L 2.5923,5.281338,2.544,5.146218 +L 2.544,5.146218,2.5002,5.006672 +L 2.5002,5.006672,2.4577,4.862489 +L 2.4577,4.862489,2.4207,4.71367 +L 2.4207,4.71367,2.3904,4.560218 +L 2.3904,4.560218,2.3658,4.402124 +L 2.3658,4.402124,2.3467,4.239403 +L 2.3467,4.239403,2.331,4.072044 +L 2.331,4.072044,2.3188,3.90005 +L 2.3188,3.90005,2.3143,3.732204 +L 2.3143,3.732204,2.3143,3.577295 +L 2.3143,3.577295,2.322,3.43531 +L 2.322,3.43531,2.331,3.306253 +L 2.331,3.306253,2.3513,3.190138 +L 2.3513,3.190138,2.3714,3.086952 +L 2.3714,3.086952,2.3984,2.996689 +L 2.3984,2.996689,2.433,2.919361 +L 2.433,2.919361,2.4679,2.85165 +L 2.4679,2.85165,2.5105,2.790228 +L 2.5105,2.790228,2.5518,2.735089 +L 2.5518,2.735089,2.599,2.68624 +L 2.599,2.68624,2.6483,2.643681 +L 2.6483,2.643681,2.7032,2.607409 +L 2.7032,2.607409,2.7582,2.577432 +L 2.7582,2.577432,2.8176,2.553734 +L 2.8176,2.553734,2.8736,2.537881 +L 2.8736,2.537881,2.9409,2.531419 +L 2.9409,2.531419,3.0059,2.534339 +L 3.0059,2.534339,3.0742,2.546654 +L 3.0742,2.546654,3.1471,2.568348 +L 3.1471,2.568348,3.2254,2.599441 +L 3.2254,2.599441,3.3029,2.639916 +L 3.3029,2.639916,3.3824,2.689782 +L 3.3824,2.689782,3.4643,2.74536 +L 3.4643,2.74536,3.536,2.802986 +L 3.536,2.802986,3.61,2.862641 +L 3.61,2.862641,3.6772,2.924328 +L 3.6772,2.924328,3.7365,2.988055 +L 3.7365,2.988055,3.7938,3.053818 +L 3.7938,3.053818,3.8476,3.121626 +L 3.8476,3.121626,3.8967,3.191465 +L 3.8967,3.191465,3.9472,3.26749 +L 3.9472,3.26749,3.9965,3.353847 +L 3.9965,3.353847,4.0415,3.450545 +L 4.0415,3.450545,4.0953,3.557569 +L 4.0953,3.557569,4.1423,3.674926 +L 4.1423,3.674926,4.1949,3.802621 +L 4.1949,3.802621,4.2466,3.940652 +L 4.2466,3.940652,4.3015,4.089007 +L 4.3015,4.089007,4.6746,6.345151 + +[A] 12 +L 6.2118,-0.08315,5.2563,-0.08315 +L 5.2563,-0.08315,4.5082,2.539558 +L 4.5082,2.539558,1.7033,2.539558 +L 1.7033,2.539558,0.9553,-0.08315 +L 0.9553,-0.08315,-0.0003,-0.08315 +L -0.0003,-0.08315,2.5726,8.916822 +L 2.5726,8.916822,3.6384,8.916822 +L 3.6384,8.916822,6.2118,-0.08315 +L 2.0077,3.627977,4.2,3.627977 +L 4.2,3.627977,3.1396,7.337148 +L 3.1396,7.337148,3.0708,7.337148 +L 3.0708,7.337148,2.0077,3.627977 + +[B] 121 +L -0.0003,0,-0.0003,8.948976 +L -0.0003,8.948976,2.1302,8.948976 +L 2.1302,8.948976,2.4666,8.939445 +L 2.4666,8.939445,2.7836,8.910798 +L 2.7836,8.910798,3.0739,8.863164 +L 3.0739,8.863164,3.3425,8.796408 +L 3.3425,8.796408,3.5896,8.710527 +L 3.5896,8.710527,3.8132,8.605664 +L 3.8132,8.605664,4.0075,8.481675 +L 4.0075,8.481675,4.1836,8.338635 +L 4.1836,8.338635,4.3372,8.177244 +L 4.3372,8.177244,4.4687,7.998196 +L 4.4687,7.998196,4.5848,7.801431 +L 4.5848,7.801431,4.6768,7.587079 +L 4.6768,7.587079,4.7461,7.355008 +L 4.7461,7.355008,4.8012,7.105352 +L 4.8012,7.105352,4.8331,6.837974 +L 4.8331,6.837974,4.8426,6.553017 +L 4.8426,6.553017,4.8258,6.308966 +L 4.8258,6.308966,4.7855,6.070099 +L 4.7855,6.070099,4.7214,5.836345 +L 4.7214,5.836345,4.6274,5.607775 +L 4.6274,5.607775,4.5109,5.384249 +L 4.5109,5.384249,4.3697,5.165976 +L 4.3697,5.165976,4.1982,4.952747 +L 4.1982,4.952747,4.0036,4.744701 +L 4.0036,4.744701,4.2558,4.532591 +L 4.2558,4.532591,4.4687,4.307245 +L 4.4687,4.307245,4.6542,4.068728 +L 4.6542,4.068728,4.8055,3.816902 +L 4.8055,3.816902,4.9244,3.551906 +L 4.9244,3.551906,5.0085,3.273672 +L 5.0085,3.273672,5.061,2.982198 +L 5.061,2.982198,5.0756,2.677484 +L 5.0756,2.677484,5.0657,2.390701 +L 5.0657,2.390701,5.0332,2.117162 +L 5.0332,2.117162,4.9843,1.85672 +L 4.9843,1.85672,4.9144,1.609447 +L 4.9144,1.609447,4.8236,1.375343 +L 4.8236,1.375343,4.707,1.154408 +L 4.707,1.154408,4.5753,0.946643 +L 4.5753,0.946643,4.4188,0.752046 +L 4.4188,0.752046,4.2408,0.575803 +L 4.2408,0.575803,4.0261,0.423026 +L 4.0261,0.423026,3.7824,0.293783 +L 3.7824,0.293783,3.4998,0.188009 +L 3.4998,0.188009,3.1912,0.105774 +L 3.1912,0.105774,2.8437,0.047003 +L 2.8437,0.047003,2.4666,0.011768 +L 2.4666,0.011768,2.0592,0 +L 2.0592,0,-0.0003,0 +L 4.1325,2.668028,4.1241,2.847984 +L 4.1241,2.847984,4.0994,3.015611 +L 4.0994,3.015611,4.0654,3.17091 +L 4.0654,3.17091,4.0075,3.31381 +L 4.0075,3.31381,3.9421,3.444381 +L 3.9421,3.444381,3.8541,3.562624 +L 3.8541,3.562624,3.7555,3.668538 +L 3.7555,3.668538,3.6367,3.762121 +L 3.6367,3.762121,3.5022,3.844011 +L 3.5022,3.844011,3.344,3.91504 +L 3.344,3.91504,3.1686,3.975143 +L 3.1686,3.975143,2.9676,4.024317 +L 2.9676,4.024317,2.7427,4.062494 +L 2.7427,4.062494,2.4968,4.089813 +L 2.4968,4.089813,2.229,4.106204 +L 2.229,4.106204,1.942,4.111668 +L 1.942,4.111668,0.8863,4.111668 +L 0.8863,4.111668,0.8863,1.088352 +L 0.8863,1.088352,2.0508,1.088352 +L 2.0508,1.088352,2.3577,1.095777 +L 2.3577,1.095777,2.6379,1.118053 +L 2.6379,1.118053,2.894,1.155176 +L 2.894,1.155176,3.1133,1.207155 +L 3.1133,1.207155,3.3116,1.27398 +L 3.3116,1.27398,3.4798,1.355659 +L 3.4798,1.355659,3.6242,1.452256 +L 3.6242,1.452256,3.7353,1.563634 +L 3.7353,1.563634,3.8271,1.684819 +L 3.8271,1.684819,3.909,1.810838 +L 3.909,1.810838,3.9757,1.941689 +L 3.9757,1.941689,4.0323,2.077304 +L 4.0323,2.077304,4.0771,2.217822 +L 4.0771,2.217822,4.1102,2.363034 +L 4.1102,2.363034,4.1241,2.513149 +L 4.1241,2.513149,4.1325,2.668028 +L 3.8971,6.530319,3.8915,6.68625 +L 3.8915,6.68625,3.8719,6.832863 +L 3.8719,6.832863,3.844,6.970159 +L 3.844,6.970159,3.8048,7.098139 +L 3.8048,7.098139,3.7555,7.21673 +L 3.7555,7.21673,3.6938,7.326078 +L 3.6938,7.326078,3.621,7.426038 +L 3.621,7.426038,3.5347,7.516682 +L 3.5347,7.516682,3.4327,7.597306 +L 3.4327,7.597306,3.3116,7.667145 +L 3.3116,7.667145,3.1704,7.726271 +L 3.1704,7.726271,3.0023,7.774602 +L 3.0023,7.774602,2.8185,7.812218 +L 2.8185,7.812218,2.6082,7.839115 +L 2.6082,7.839115,2.3784,7.855229 +L 2.3784,7.855229,2.1279,7.86055 +L 2.1279,7.86055,0.8863,7.86055 +L 0.8863,7.86055,0.8863,5.20009 +L 0.8863,5.20009,1.942,5.20009 +L 1.942,5.20009,2.229,5.205484 +L 2.229,5.205484,2.4922,5.221595 +L 2.4922,5.221595,2.7242,5.248424 +L 2.7242,5.248424,2.9407,5.28604 +L 2.9407,5.28604,3.1256,5.334374 +L 3.1256,5.334374,3.2846,5.393495 +L 3.2846,5.393495,3.4159,5.463404 +L 3.4159,5.463404,3.5179,5.543959 +L 3.5179,5.543959,3.612,5.634604 +L 3.612,5.634604,3.686,5.734564 +L 3.686,5.734564,3.7475,5.843908 +L 3.7475,5.843908,3.8048,5.962502 +L 3.8048,5.962502,3.844,6.090483 +L 3.844,6.090483,3.8719,6.227777 +L 3.8719,6.227777,3.8915,6.374392 +L 3.8915,6.374392,3.8971,6.530319 + +[C] 130 +L -0.0002,4.593535,0.0142,5.030922 +L 0.0142,5.030922,0.067,5.454996 +L 0.067,5.454996,0.1455,5.865766 +L 0.1455,5.865766,0.2574,6.263224 +L 0.2574,6.263224,0.3988,6.647303 +L 0.3988,6.647303,0.577,7.018143 +L 0.577,7.018143,0.7797,7.375603 +L 0.7797,7.375603,1.0207,7.719822 +L 1.0207,7.719822,1.2831,8.036238 +L 1.2831,8.036238,1.5633,8.310475 +L 1.5633,8.310475,1.8524,8.54255 +L 1.8524,8.54255,2.1623,8.73238 +L 2.1623,8.73238,2.4823,8.880048 +L 2.4823,8.880048,2.8184,8.98554 +L 2.8184,8.98554,3.171,9.048794 +L 3.171,9.048794,3.5353,9.069879 +L 3.5353,9.069879,3.8497,9.056359 +L 3.8497,9.056359,4.1517,9.015733 +L 4.1517,9.015733,4.4392,8.947924 +L 4.4392,8.947924,4.7121,8.853077 +L 4.7121,8.853077,4.9716,8.731122 +L 4.9716,8.731122,5.2192,8.582055 +L 5.2192,8.582055,5.4479,8.405884 +L 5.4479,8.405884,5.6676,8.2026 +L 5.6676,8.2026,5.8664,7.978235 +L 5.8664,7.978235,6.044,7.738945 +L 6.044,7.738945,6.2054,7.484597 +L 6.2054,7.484597,6.3412,7.215328 +L 6.3412,7.215328,6.4611,6.931 +L 6.4611,6.931,6.5575,6.631682 +L 6.5575,6.631682,6.6341,6.317302 +L 6.6341,6.317302,6.6886,5.988002 +L 6.6886,5.988002,5.6954,5.988002 +L 5.6954,5.988002,5.6508,6.221195 +L 5.6508,6.221195,5.5936,6.44255 +L 5.5936,6.44255,5.5262,6.652136 +L 5.5262,6.652136,5.4479,6.849885 +L 5.4479,6.849885,5.3509,7.035935 +L 5.3509,7.035935,5.246,7.210149 +L 5.246,7.210149,5.1307,7.372591 +L 5.1307,7.372591,4.9962,7.523266 +L 4.9962,7.523266,4.855,7.659021 +L 4.855,7.659021,4.6992,7.776704 +L 4.6992,7.776704,4.5333,7.876243 +L 4.5333,7.876243,4.3596,7.957638 +L 4.3596,7.957638,4.1691,8.021035 +L 4.1691,8.021035,3.9707,8.066284 +L 3.9707,8.066284,3.76,8.093395 +L 3.76,8.093395,3.5353,8.102429 +L 3.5353,8.102429,3.2949,8.088212 +L 3.2949,8.088212,3.0517,8.045552 +L 3.0517,8.045552,2.8219,7.974522 +L 2.8219,7.974522,2.5937,7.874982 +L 2.5937,7.874982,2.3758,7.747071 +L 2.3758,7.747071,2.1595,7.590653 +L 2.1595,7.590653,1.9499,7.405866 +L 1.9499,7.405866,1.7458,7.192635 +L 1.7458,7.192635,1.5599,6.952787 +L 1.5599,6.952787,1.3946,6.688282 +L 1.3946,6.688282,1.2584,6.399049 +L 1.2584,6.399049,1.1439,6.08509 +L 1.1439,6.08509,1.06,5.746402 +L 1.06,5.746402,0.995,5.383058 +L 0.995,5.383058,0.958,4.994986 +L 0.958,4.994986,0.9435,4.582188 +L 0.9435,4.582188,0.958,4.160492 +L 0.958,4.160492,0.995,3.763735 +L 0.995,3.763735,1.06,3.391914 +L 1.06,3.391914,1.1439,3.045032 +L 1.1439,3.045032,1.2584,2.723016 +L 1.2584,2.723016,1.3946,2.425938 +L 1.3946,2.425938,1.5599,2.153795 +L 1.5599,2.153795,1.7458,1.906595 +L 1.7458,1.906595,1.9499,1.686428 +L 1.9499,1.686428,2.1595,1.495687 +L 2.1595,1.495687,2.3758,1.334294 +L 2.3758,1.334294,2.5937,1.202249 +L 2.5937,1.202249,2.8219,1.099487 +L 2.8219,1.099487,3.0517,1.026148 +L 3.0517,1.026148,3.2949,0.982087 +L 3.2949,0.982087,3.5353,0.967447 +L 3.5353,0.967447,3.76,0.977464 +L 3.76,0.977464,3.9728,1.007655 +L 3.9728,1.007655,4.1796,1.05795 +L 4.1796,1.05795,4.374,1.12828 +L 4.374,1.12828,4.5625,1.218783 +L 4.5625,1.218783,4.744,1.32939 +L 4.744,1.32939,4.9122,1.460032 +L 4.9122,1.460032,5.0734,1.610845 +L 5.0734,1.610845,5.2192,1.778825 +L 5.2192,1.778825,5.3509,1.960953 +L 5.3509,1.960953,5.4692,2.1573 +L 5.4692,2.1573,5.5733,2.367868 +L 5.5733,2.367868,5.6631,2.592583 +L 5.6631,2.592583,5.7375,2.831592 +L 5.7375,2.831592,5.7965,3.084747 +L 5.7965,3.084747,5.8413,3.352056 +L 5.8413,3.352056,6.8365,3.352056 +L 6.8365,3.352056,6.7872,3.023664 +L 6.7872,3.023664,6.7256,2.705364 +L 6.7256,2.705364,6.6369,2.397218 +L 6.6369,2.397218,6.5293,2.0993 +L 6.5293,2.0993,6.4045,1.811468 +L 6.4045,1.811468,6.2605,1.533862 +L 6.2605,1.533862,6.0911,1.266344 +L 6.0911,1.266344,5.9056,1.008986 +L 5.9056,1.008986,5.6954,0.772501 +L 5.6954,0.772501,5.463,0.567537 +L 5.463,0.567537,5.2069,0.394166 +L 5.2069,0.394166,4.9222,0.252246 +L 4.9222,0.252246,4.6129,0.141849 +L 4.6129,0.141849,4.2806,0.063044 +L 4.2806,0.063044,3.919,0.015761 +L 3.919,0.015761,3.5353,0 +L 3.5353,0,3.171,0.021085 +L 3.171,0.021085,2.8184,0.084339 +L 2.8184,0.084339,2.4823,0.189833 +L 2.4823,0.189833,2.1623,0.337496 +L 2.1623,0.337496,1.8524,0.527397 +L 1.8524,0.527397,1.5633,0.759399 +L 1.5633,0.759399,1.2831,1.033643 +L 1.2831,1.033643,1.0207,1.350055 +L 1.0207,1.350055,0.7797,1.696097 +L 0.7797,1.696097,0.577,2.059091 +L 0.577,2.059091,0.3988,2.439037 +L 0.3988,2.439037,0.2574,2.836005 +L 0.2574,2.836005,0.1455,3.249925 +L 0.1455,3.249925,0.067,3.680796 +L 0.067,3.680796,0.0142,4.12869 +L 0.0142,4.12869,-0.0002,4.593535 + +[D] 70 +L 4.9572,4.474452,4.9475,4.833173 +L 4.9475,4.833173,4.9202,5.175991 +L 4.9202,5.175991,4.8674,5.502982 +L 4.8674,5.502982,4.8036,5.81421 +L 4.8036,5.81421,4.7141,6.109537 +L 4.7141,6.109537,4.6073,6.389102 +L 4.6073,6.389102,4.4824,6.652767 +L 4.4824,6.652767,4.3374,6.90067 +L 4.3374,6.90067,4.1747,7.125668 +L 4.1747,7.125668,3.9933,7.320614 +L 3.9933,7.320614,3.7932,7.48565 +L 3.7932,7.48565,3.5751,7.620632 +L 3.5751,7.620632,3.3397,7.725568 +L 3.3397,7.725568,3.0871,7.80059 +L 3.0871,7.80059,2.8163,7.845562 +L 2.8163,7.845562,2.5273,7.86055 +L 2.5273,7.86055,0.8876,7.86055 +L 0.8876,7.86055,0.8876,1.088352 +L 0.8876,1.088352,2.5273,1.088352 +L 2.5273,1.088352,2.8163,1.103412 +L 2.8163,1.103412,3.0871,1.148384 +L 3.0871,1.148384,3.3397,1.223336 +L 3.3397,1.223336,3.5751,1.32834 +L 3.5751,1.32834,3.7932,1.463324 +L 3.7932,1.463324,3.9933,1.62829 +L 3.9933,1.62829,4.1747,1.823306 +L 4.1747,1.823306,4.3374,2.048302 +L 4.3374,2.048302,4.4824,2.296137 +L 4.4824,2.296137,4.6073,2.559872 +L 4.6073,2.559872,4.7141,2.839435 +L 4.7141,2.839435,4.8036,3.134764 +L 4.8036,3.134764,4.8674,3.445992 +L 4.8674,3.445992,4.9202,3.772981 +L 4.9202,3.772981,4.9475,4.115801 +L 4.9475,4.115801,4.9572,4.474452 +L -0.0001,0,-0.0001,8.948976 +L -0.0001,8.948976,2.5322,8.948976 +L 2.5322,8.948976,2.9228,8.92894 +L 2.9228,8.92894,3.2927,8.868978 +L 3.2927,8.868978,3.6418,8.768948 +L 3.6418,8.768948,3.964,8.628918 +L 3.964,8.628918,4.2656,8.448896 +L 4.2656,8.448896,4.5386,8.22887 +L 4.5386,8.22887,4.7934,7.968846 +L 4.7934,7.968846,5.0244,7.668828 +L 5.0244,7.668828,5.2294,7.338825 +L 5.2294,7.338825,5.4077,6.989072 +L 5.4077,6.989072,5.5568,6.619491 +L 5.5568,6.619491,5.6819,6.230091 +L 5.6819,6.230091,5.7776,5.820932 +L 5.7776,5.820932,5.8499,5.391954 +L 5.8499,5.391954,5.8862,4.94308 +L 5.8862,4.94308,5.903,4.474452 +L 5.903,4.474452,5.8862,4.005824 +L 5.8862,4.005824,5.8499,3.55702 +L 5.8499,3.55702,5.7776,3.12804 +L 5.7776,3.12804,5.6819,2.718813 +L 5.6819,2.718813,5.5568,2.329481 +L 5.5568,2.329481,5.4077,1.959902 +L 5.4077,1.959902,5.2294,1.610147 +L 5.2294,1.610147,5.0244,1.280146 +L 5.0244,1.280146,4.7934,0.980126 +L 4.7934,0.980126,4.5386,0.720104 +L 4.5386,0.720104,4.2656,0.50008 +L 4.2656,0.50008,3.964,0.320054 +L 3.964,0.320054,3.6418,0.180026 +L 3.6418,0.180026,3.2927,0.079996 +L 3.2927,0.079996,2.9228,0.019964 +L 2.9228,0.019964,2.5322,0 +L 2.5322,0,-0.0001,0 + +[E] 12 +L -0.0003,0,-0.0003,8.95654 +L -0.0003,8.95654,4.9799,8.95654 +L 4.9799,8.95654,4.9799,7.892705 +L 4.9799,7.892705,0.8896,7.892705 +L 0.8896,7.892705,0.8896,5.20009 +L 0.8896,5.20009,4.4292,5.20009 +L 4.4292,5.20009,4.4292,4.111668 +L 4.4292,4.111668,0.8896,4.111668 +L 0.8896,4.111668,0.8896,1.088352 +L 0.8896,1.088352,4.9799,1.088352 +L 4.9799,1.088352,4.9799,0 +L 4.9799,0,-0.0003,0 + +[F] 10 +L 0.887,-0.069909,0,-0.069909 +L 0,-0.069909,0,8.95654 +L 0,8.95654,5.1303,8.95654 +L 5.1303,8.95654,5.1303,7.892705 +L 5.1303,7.892705,0.887,7.892705 +L 0.887,7.892705,0.887,5.20009 +L 0.887,5.20009,4.4296,5.20009 +L 4.4296,5.20009,4.4296,4.111668 +L 4.4296,4.111668,0.887,4.111668 +L 0.887,4.111668,0.887,-0.069909 + +[G] 128 +L -0.0005,4.593535,0.0153,5.030922 +L 0.0153,5.030922,0.0669,5.454996 +L 0.0669,5.454996,0.1465,5.865766 +L 0.1465,5.865766,0.2573,6.263224 +L 0.2573,6.263224,0.3986,6.647303 +L 0.3986,6.647303,0.5746,7.018143 +L 0.5746,7.018143,0.7832,7.375603 +L 0.7832,7.375603,1.0207,7.719822 +L 1.0207,7.719822,1.2829,8.036238 +L 1.2829,8.036238,1.563,8.310475 +L 1.563,8.310475,1.8534,8.54255 +L 1.8534,8.54255,2.1604,8.73238 +L 2.1604,8.73238,2.4777,8.880048 +L 2.4777,8.880048,2.8195,8.98554 +L 2.8195,8.98554,3.1713,9.048794 +L 3.1713,9.048794,3.5356,9.069879 +L 3.5356,9.069879,3.8528,9.056359 +L 3.8528,9.056359,4.152,9.015733 +L 4.152,9.015733,4.4392,8.947924 +L 4.4392,8.947924,4.7124,8.853077 +L 4.7124,8.853077,4.9731,8.731122 +L 4.9731,8.731122,5.2201,8.582055 +L 5.2201,8.582055,5.4478,8.405884 +L 5.4478,8.405884,5.6631,8.2026 +L 5.6631,8.2026,5.8669,7.978235 +L 5.8669,7.978235,6.0451,7.738945 +L 6.0451,7.738945,6.203,7.484597 +L 6.203,7.484597,6.3423,7.215328 +L 6.3423,7.215328,6.4587,6.931 +L 6.4587,6.931,6.5573,6.631682 +L 6.5573,6.631682,6.6317,6.317302 +L 6.6317,6.317302,6.6885,5.988002 +L 6.6885,5.988002,5.696,5.988002 +L 5.696,5.988002,5.6484,6.221195 +L 5.6484,6.221195,5.5967,6.44255 +L 5.5967,6.44255,5.5278,6.652136 +L 5.5278,6.652136,5.4478,6.849885 +L 5.4478,6.849885,5.3512,7.035935 +L 5.3512,7.035935,5.2448,7.210149 +L 5.2448,7.210149,5.1306,7.372591 +L 5.1306,7.372591,4.9972,7.523266 +L 4.9972,7.523266,4.8559,7.659021 +L 4.8559,7.659021,4.6967,7.776704 +L 4.6967,7.776704,4.5332,7.876243 +L 4.5332,7.876243,4.3606,7.957638 +L 4.3606,7.957638,4.1701,8.021035 +L 4.1701,8.021035,3.9682,8.066284 +L 3.9682,8.066284,3.761,8.093395 +L 3.761,8.093395,3.5356,8.102429 +L 3.5356,8.102429,3.2903,8.088212 +L 3.2903,8.088212,3.0527,8.045552 +L 3.0527,8.045552,2.8218,7.974522 +L 2.8218,7.974522,2.5943,7.874982 +L 2.5943,7.874982,2.3757,7.747071 +L 2.3757,7.747071,2.1604,7.590653 +L 2.1604,7.590653,1.9497,7.405866 +L 1.9497,7.405866,1.7468,7.192635 +L 1.7468,7.192635,1.5585,6.952787 +L 1.5585,6.952787,1.395,6.688282 +L 1.395,6.688282,1.2583,6.399049 +L 1.2583,6.399049,1.1455,6.08509 +L 1.1455,6.08509,1.0558,5.746402 +L 1.0558,5.746402,0.996,5.383058 +L 0.996,5.383058,0.9568,4.994986 +L 0.9568,4.994986,0.9438,4.582188 +L 0.9438,4.582188,0.9568,4.160492 +L 0.9568,4.160492,0.996,3.763735 +L 0.996,3.763735,1.0598,3.391914 +L 1.0598,3.391914,1.1455,3.045032 +L 1.1455,3.045032,1.2583,2.723016 +L 1.2583,2.723016,1.395,2.425938 +L 1.395,2.425938,1.5585,2.153795 +L 1.5585,2.153795,1.7468,1.906595 +L 1.7468,1.906595,1.9526,1.686428 +L 1.9526,1.686428,2.1604,1.495687 +L 2.1604,1.495687,2.3784,1.334294 +L 2.3784,1.334294,2.5986,1.202249 +L 2.5986,1.202249,2.8239,1.099487 +L 2.8239,1.099487,3.0592,1.026148 +L 3.0592,1.026148,3.2975,0.982087 +L 3.2975,0.982087,3.5402,0.967447 +L 3.5402,0.967447,3.7459,0.976832 +L 3.7459,0.976832,3.9514,1.004923 +L 3.9514,1.004923,4.1477,1.051786 +L 4.1477,1.051786,4.3381,1.11742 +L 4.3381,1.11742,4.5209,1.201761 +L 4.5209,1.201761,4.6967,1.304873 +L 4.6967,1.304873,4.8728,1.426759 +L 4.8728,1.426759,5.0419,1.567415 +L 5.0419,1.567415,5.2001,1.722366 +L 5.2001,1.722366,5.3413,1.887471 +L 5.3413,1.887471,5.4679,2.062664 +L 5.4679,2.062664,5.5744,2.247871 +L 5.5744,2.247871,5.6631,2.44317 +L 5.6631,2.44317,5.7424,2.648484 +L 5.7424,2.648484,5.7997,2.863952 +L 5.7997,2.863952,5.8444,3.089443 +L 5.8444,3.089443,5.8444,3.869789 +L 5.8444,3.869789,4.1477,3.869789 +L 4.1477,3.869789,4.1477,4.837306 +L 4.1477,4.837306,6.7287,4.837306 +L 6.7287,4.837306,6.7287,-0.211618 +L 6.7287,-0.211618,6.0271,-0.211618 +L 6.0271,-0.211618,5.7077,0.908884 +L 5.7077,0.908884,5.4848,0.695867 +L 5.4848,0.695867,5.2477,0.511218 +L 5.2477,0.511218,4.9972,0.355008 +L 4.9972,0.355008,4.7338,0.227239 +L 4.7338,0.227239,4.4548,0.127769 +L 4.4548,0.127769,4.1621,0.05681 +L 4.1621,0.05681,3.8578,0.01422 +L 3.8578,0.01422,3.5385,0 +L 3.5385,0,3.1743,0.021085 +L 3.1743,0.021085,2.8218,0.084339 +L 2.8218,0.084339,2.4878,0.189833 +L 2.4878,0.189833,2.1654,0.337496 +L 2.1654,0.337496,1.8579,0.527397 +L 1.8579,0.527397,1.5659,0.759399 +L 1.5659,0.759399,1.2885,1.033643 +L 1.2885,1.033643,1.0229,1.350055 +L 1.0229,1.350055,0.7853,1.696097 +L 0.7853,1.696097,0.5746,2.059091 +L 0.5746,2.059091,0.3986,2.439037 +L 0.3986,2.439037,0.2573,2.836005 +L 0.2573,2.836005,0.1465,3.249925 +L 0.1465,3.249925,0.0669,3.680796 +L 0.0669,3.680796,0.0153,4.12869 +L 0.0153,4.12869,-0.0005,4.593535 + +[H] 12 +L 0.8872,-0.069909,-0.0006,-0.069909 +L -0.0006,-0.069909,-0.0006,8.95654 +L -0.0006,8.95654,0.8872,8.95654 +L 0.8872,8.95654,0.8872,5.20009 +L 0.8872,5.20009,4.486,5.20009 +L 4.486,5.20009,4.486,8.95654 +L 4.486,8.95654,5.3703,8.95654 +L 5.3703,8.95654,5.3703,-0.069909 +L 5.3703,-0.069909,4.486,-0.069909 +L 4.486,-0.069909,4.486,4.111668 +L 4.486,4.111668,0.8872,4.111668 +L 0.8872,4.111668,0.8872,-0.069909 + +[I] 4 +L 0.8815,-0.020804,-0.0006,-0.020804 +L -0.0006,-0.020804,-0.0006,8.979233 +L -0.0006,8.979233,0.8815,8.979233 +L 0.8815,8.979233,0.8815,-0.020804 + +[J] 68 +L 1.9789,0.483686,2.1012,0.488452 +L 2.1012,0.488452,2.2077,0.502529 +L 2.2077,0.502529,2.3112,0.526068 +L 2.3112,0.526068,2.4106,0.559059 +L 2.4106,0.559059,2.5023,0.601441 +L 2.5023,0.601441,2.5888,0.653277 +L 2.5888,0.653277,2.6626,0.7145 +L 2.6626,0.7145,2.7377,0.78511 +L 2.7377,0.78511,2.7995,0.872528 +L 2.7995,0.872528,2.855,0.984189 +L 2.855,0.984189,2.9016,1.119944 +L 2.9016,1.119944,2.9428,1.279936 +L 2.9428,1.279936,2.9731,1.464095 +L 2.9731,1.464095,2.9956,1.672418 +L 2.9956,1.672418,3.0046,1.904913 +L 3.0046,1.904913,3.0102,2.161643 +L 3.0102,2.161643,3.0102,9.01132 +L 3.0102,9.01132,3.8945,9.01132 +L 3.8945,9.01132,3.8945,2.161643 +L 3.8945,2.161643,3.8845,1.794586 +L 3.8845,1.794586,3.8596,1.455689 +L 3.8596,1.455689,3.8149,1.145162 +L 3.8149,1.145162,3.7577,0.862794 +L 3.7577,0.862794,3.6792,0.608726 +L 3.6792,0.608726,3.5818,0.382888 +L 3.5818,0.382888,3.4714,0.18535 +L 3.4714,0.18535,3.3396,0.016041 +L 3.3396,0.016041,3.1968,-0.129451 +L 3.1968,-0.129451,3.0453,-0.255541 +L 3.0453,-0.255541,2.8856,-0.362224 +L 2.8856,-0.362224,2.7177,-0.449507 +L 2.7177,-0.449507,2.5395,-0.517382 +L 2.5395,-0.517382,2.3562,-0.565856 +L 2.3562,-0.565856,2.1627,-0.594996 +L 2.1627,-0.594996,1.9599,-0.604665 +L 1.9599,-0.604665,1.7639,-0.595697 +L 1.7639,-0.595697,1.5676,-0.568798 +L 1.5676,-0.568798,1.3871,-0.524037 +L 1.3871,-0.524037,1.2089,-0.461273 +L 1.2089,-0.461273,1.041,-0.380646 +L 1.041,-0.380646,0.8749,-0.282087 +L 0.8749,-0.282087,0.7238,-0.165598 +L 0.7238,-0.165598,0.5747,-0.031172 +L 0.5747,-0.031172,0.4397,0.122584 +L 0.4397,0.122584,0.3246,0.297288 +L 0.3246,0.297288,0.225,0.492865 +L 0.225,0.492865,0.1411,0.709314 +L 0.1411,0.709314,0.0793,0.946573 +L 0.0793,0.946573,0.0344,1.204773 +L 0.0344,1.204773,0.0097,1.483776 +L 0.0097,1.483776,-0.0002,1.783729 +L -0.0002,1.783729,0.944,1.783729 +L 0.944,1.783729,0.9496,1.620724 +L 0.9496,1.620724,0.9614,1.469068 +L 0.9614,1.469068,0.9838,1.32869 +L 0.9838,1.32869,1.0129,1.199658 +L 1.0129,1.199658,1.0532,1.081837 +L 1.0532,1.081837,1.1025,0.975433 +L 1.1025,0.975433,1.1626,0.880306 +L 1.1626,0.880306,1.2297,0.796455 +L 1.2297,0.796455,1.301,0.723116 +L 1.301,0.723116,1.3793,0.659652 +L 1.3793,0.659652,1.4667,0.605852 +L 1.4667,0.605852,1.5588,0.561933 +L 1.5588,0.561933,1.6528,0.527679 +L 1.6528,0.527679,1.7566,0.503232 +L 1.7566,0.503232,1.8659,0.488592 +L 1.8659,0.488592,1.9789,0.483686 + +[K] 12 +L 0.8879,-0.020804,-0.0003,-0.020804 +L -0.0003,-0.020804,-0.0003,8.979233 +L -0.0003,8.979233,0.8879,8.979233 +L 0.8879,8.979233,0.8879,4.691744 +L 0.8879,4.691744,4.0727,8.979233 +L 4.0727,8.979233,5.272,8.979233 +L 5.272,8.979233,3.0125,5.989893 +L 3.0125,5.989893,5.9555,-0.020804 +L 5.9555,-0.020804,4.7968,-0.020804 +L 4.7968,-0.020804,2.3491,5.116942 +L 2.3491,5.116942,0.8879,3.180156 +L 0.8879,3.180156,0.8879,-0.020804 + +[L] 6 +L -0.0003,9.024555,0.8834,9.024555 +L 0.8834,9.024555,0.8834,1.088352 +L 0.8834,1.088352,5.2356,1.088352 +L 5.2356,1.088352,5.2356,0 +L 5.2356,0,-0.0003,0 +L -0.0003,0,-0.0003,9.024555 + +[M] 16 +L 0.8842,-0.020804,0,-0.020804 +L 0,-0.020804,0,8.979233 +L 0,8.979233,1.1296,8.979233 +L 1.1296,8.979233,3.6817,2.176772 +L 3.6817,2.176772,3.7758,2.176772 +L 3.7758,2.176772,6.0744,8.979233 +L 6.0744,8.979233,7.2019,8.979233 +L 7.2019,8.979233,7.2019,-0.020804 +L 7.2019,-0.020804,6.3183,-0.020804 +L 6.3183,-0.020804,6.3183,6.639948 +L 6.3183,6.639948,6.2604,6.639948 +L 6.2604,6.639948,4.0234,0.01513 +L 4.0234,0.01513,3.4341,0.01513 +L 3.4341,0.01513,0.9413,6.639948 +L 0.9413,6.639948,0.8842,6.639948 +L 0.8842,6.639948,0.8842,-0.020804 + +[N] 12 +L 0.8851,-0.020804,-0.0005,-0.020804 +L -0.0005,-0.020804,-0.0005,8.979233 +L -0.0005,8.979233,1.135,8.979233 +L 1.135,8.979233,4.7719,1.857418 +L 4.7719,1.857418,4.7787,1.774272 +L 4.7787,1.774272,4.7787,8.979233 +L 4.7787,8.979233,5.6669,8.979233 +L 5.6669,8.979233,5.6669,-0.020804 +L 5.6669,-0.020804,4.531,-0.020804 +L 4.531,-0.020804,0.894,7.15957 +L 0.894,7.15957,0.8851,7.206785 +L 0.8851,7.206785,0.8851,-0.020804 + +[O] 128 +L -0.0003,4.593535,0.0142,5.030922 +L 0.0142,5.030922,0.0641,5.454996 +L 0.0641,5.454996,0.1431,5.865766 +L 0.1431,5.865766,0.2547,6.263224 +L 0.2547,6.263224,0.3976,6.647303 +L 0.3976,6.647303,0.5769,7.018143 +L 0.5769,7.018143,0.782,7.375603 +L 0.782,7.375603,1.0196,7.719822 +L 1.0196,7.719822,1.2858,8.036238 +L 1.2858,8.036238,1.5621,8.310475 +L 1.5621,8.310475,1.8574,8.54255 +L 1.8574,8.54255,2.1636,8.73238 +L 2.1636,8.73238,2.4912,8.880048 +L 2.4912,8.880048,2.8285,8.98554 +L 2.8285,8.98554,3.1827,9.048794 +L 3.1827,9.048794,3.5514,9.069879 +L 3.5514,9.069879,3.9179,9.048794 +L 3.9179,9.048794,4.2654,8.98554 +L 4.2654,8.98554,4.5994,8.880048 +L 4.5994,8.880048,4.9143,8.73238 +L 4.9143,8.73238,5.2166,8.54255 +L 5.2166,8.54255,5.496,8.310475 +L 5.496,8.310475,5.7616,8.036238 +L 5.7616,8.036238,6.0099,7.719822 +L 6.0099,7.719822,6.229,7.375463 +L 6.229,7.375463,6.4251,7.017442 +L 6.4251,7.017442,6.591,6.645692 +L 6.591,6.645692,6.7221,6.260352 +L 6.7221,6.260352,6.8295,5.861283 +L 6.8295,5.861283,6.9015,5.448624 +L 6.9015,5.448624,6.9457,5.022236 +L 6.9457,5.022236,6.9609,4.582188 +L 6.9609,4.582188,6.9457,4.120004 +L 6.9457,4.120004,6.9015,3.674422 +L 6.9015,3.674422,6.8295,3.245512 +L 6.8295,3.245512,6.7221,2.833133 +L 6.7221,2.833133,6.591,2.437426 +L 6.591,2.437426,6.4251,2.058391 +L 6.4251,2.058391,6.229,1.695887 +L 6.229,1.695887,6.0099,1.350055 +L 6.0099,1.350055,5.7616,1.033643 +L 5.7616,1.033643,5.496,0.759399 +L 5.496,0.759399,5.2166,0.527397 +L 5.2166,0.527397,4.9143,0.337496 +L 4.9143,0.337496,4.5994,0.189833 +L 4.5994,0.189833,4.2654,0.084339 +L 4.2654,0.084339,3.9179,0.021085 +L 3.9179,0.021085,3.5514,0 +L 3.5514,0,3.1827,0.021085 +L 3.1827,0.021085,2.8285,0.084339 +L 2.8285,0.084339,2.4912,0.189833 +L 2.4912,0.189833,2.1636,0.337496 +L 2.1636,0.337496,1.8574,0.527397 +L 1.8574,0.527397,1.5621,0.759399 +L 1.5621,0.759399,1.2858,1.033643 +L 1.2858,1.033643,1.0196,1.350055 +L 1.0196,1.350055,0.782,1.696097 +L 0.782,1.696097,0.5769,2.059091 +L 0.5769,2.059091,0.3976,2.439037 +L 0.3976,2.439037,0.2547,2.836005 +L 0.2547,2.836005,0.1431,3.249925 +L 0.1431,3.249925,0.0641,3.680796 +L 0.0641,3.680796,0.0142,4.12869 +L 0.0142,4.12869,-0.0003,4.593535 +L 0.9456,4.582188,0.9557,4.160492 +L 0.9557,4.160492,0.9949,3.763735 +L 0.9949,3.763735,1.0541,3.391914 +L 1.0541,3.391914,1.144,3.045032 +L 1.144,3.045032,1.2578,2.723016 +L 1.2578,2.723016,1.3937,2.425938 +L 1.3937,2.425938,1.5553,2.153795 +L 1.5553,2.153795,1.7436,1.906595 +L 1.7436,1.906595,1.947,1.686428 +L 1.947,1.686428,2.1572,1.495687 +L 2.1572,1.495687,2.3727,1.334294 +L 2.3727,1.334294,2.5954,1.202249 +L 2.5954,1.202249,2.8229,1.099487 +L 2.8229,1.099487,3.0583,1.026148 +L 3.0583,1.026148,3.3038,0.982087 +L 3.3038,0.982087,3.5514,0.967447 +L 3.5514,0.967447,3.7947,0.982087 +L 3.7947,0.982087,4.0373,1.026148 +L 4.0373,1.026148,4.2654,1.099487 +L 4.2654,1.099487,4.4856,1.202249 +L 4.4856,1.202249,4.6991,1.334294 +L 4.6991,1.334294,4.9042,1.495687 +L 4.9042,1.495687,5.097,1.686428 +L 5.097,1.686428,5.2887,1.906595 +L 5.2887,1.906595,5.4551,2.154006 +L 5.4551,2.154006,5.6047,2.426639 +L 5.6047,2.426639,5.7314,2.724627 +L 5.7314,2.724627,5.8334,3.047833 +L 5.8334,3.047833,5.9152,3.396397 +L 5.9152,3.396397,5.9723,3.770179 +L 5.9723,3.770179,6.0043,4.169176 +L 6.0043,4.169176,6.0191,4.593535 +L 6.0191,4.593535,6.0043,5.003672 +L 6.0043,5.003672,5.9723,5.389433 +L 5.9723,5.389433,5.9152,5.750883 +L 5.9152,5.750883,5.8334,6.087959 +L 5.8334,6.087959,5.7314,6.40066 +L 5.7314,6.40066,5.6047,6.68898 +L 5.6047,6.68898,5.4551,6.952997 +L 5.4551,6.952997,5.2887,7.192635 +L 5.2887,7.192635,5.097,7.405866 +L 5.097,7.405866,4.9042,7.590653 +L 4.9042,7.590653,4.6991,7.747071 +L 4.6991,7.747071,4.4856,7.874982 +L 4.4856,7.874982,4.2654,7.974522 +L 4.2654,7.974522,4.0373,8.045552 +L 4.0373,8.045552,3.7947,8.088212 +L 3.7947,8.088212,3.5514,8.102429 +L 3.5514,8.102429,3.3038,8.088212 +L 3.3038,8.088212,3.0583,8.045552 +L 3.0583,8.045552,2.8229,7.974522 +L 2.8229,7.974522,2.5954,7.874982 +L 2.5954,7.874982,2.3727,7.747071 +L 2.3727,7.747071,2.1572,7.590653 +L 2.1572,7.590653,1.947,7.405866 +L 1.947,7.405866,1.7436,7.192635 +L 1.7436,7.192635,1.5553,6.952787 +L 1.5553,6.952787,1.3937,6.688282 +L 1.3937,6.688282,1.2578,6.399049 +L 1.2578,6.399049,1.144,6.08509 +L 1.144,6.08509,1.0541,5.746402 +L 1.0541,5.746402,0.9949,5.383058 +L 0.9949,5.383058,0.9557,4.994986 +L 0.9557,4.994986,0.9456,4.582188 + +[P] 72 +L 0.8888,-0.069909,-0.0006,-0.069909 +L -0.0006,-0.069909,-0.0006,8.948976 +L -0.0006,8.948976,2.4215,8.948976 +L 2.4215,8.948976,2.7835,8.938957 +L 2.7835,8.938957,3.1105,8.908906 +L 3.1105,8.908906,3.4103,8.858891 +L 3.4103,8.858891,3.6857,8.788842 +L 3.6857,8.788842,3.9278,8.698757 +L 3.9278,8.698757,4.143,8.588642 +L 4.143,8.588642,4.3352,8.458561 +L 4.3352,8.458561,4.4927,8.308378 +L 4.4927,8.308378,4.6294,8.140538 +L 4.6294,8.140538,4.7482,7.957082 +L 4.7482,7.957082,4.8466,7.758068 +L 4.8466,7.758068,4.9317,7.54358 +L 4.9317,7.54358,4.9937,7.313607 +L 4.9937,7.313607,5.0374,7.068018 +L 5.0374,7.068018,5.0654,6.806945 +L 5.0654,6.806945,5.0749,6.530319 +L 5.0749,6.530319,5.0654,6.253698 +L 5.0654,6.253698,5.0374,5.992625 +L 5.0374,5.992625,4.9937,5.747103 +L 4.9937,5.747103,4.9317,5.517062 +L 4.9317,5.517062,4.8466,5.302572 +L 4.8466,5.302572,4.746,5.103562 +L 4.746,5.103562,4.6294,4.920174 +L 4.6294,4.920174,4.4927,4.752267 +L 4.4927,4.752267,4.3296,4.602079 +L 4.3296,4.602079,4.1405,4.471998 +L 4.1405,4.471998,3.9233,4.361881 +L 3.9233,4.361881,3.6779,4.2718 +L 3.6779,4.2718,3.4055,4.201751 +L 3.4055,4.201751,3.1026,4.151736 +L 3.1026,4.151736,2.7734,4.121683 +L 2.7734,4.121683,2.417,4.111668 +L 2.417,4.111668,0.8888,4.111668 +L 0.8888,4.111668,0.8888,-0.069909 +L 4.1306,6.530319,4.1284,6.675603 +L 4.1284,6.675603,4.1116,6.813667 +L 4.1116,6.813667,4.0813,6.944731 +L 4.0813,6.944731,4.0522,7.068646 +L 4.0522,7.068646,4.0074,7.185418 +L 4.0074,7.185418,3.9502,7.295044 +L 3.9502,7.295044,3.883,7.397598 +L 3.883,7.397598,3.8065,7.493073 +L 3.8065,7.493073,3.7148,7.579163 +L 3.7148,7.579163,3.5983,7.653836 +L 3.5983,7.653836,3.4627,7.717022 +L 3.4627,7.717022,3.299,7.76872 +L 3.299,7.76872,3.1135,7.808926 +L 3.1135,7.808926,2.9079,7.837646 +L 2.9079,7.837646,2.6748,7.85481 +L 2.6748,7.85481,2.4215,7.86055 +L 2.4215,7.86055,0.8888,7.86055 +L 0.8888,7.86055,0.8888,5.20009 +L 0.8888,5.20009,2.4215,5.20009 +L 2.4215,5.20009,2.6748,5.205834 +L 2.6748,5.205834,2.9079,5.223066 +L 2.9079,5.223066,3.1135,5.251786 +L 3.1135,5.251786,3.299,5.291924 +L 3.299,5.291924,3.4627,5.343618 +L 3.4627,5.343618,3.5983,5.406805 +L 3.5983,5.406805,3.7148,5.481477 +L 3.7148,5.481477,3.8065,5.567567 +L 3.8065,5.567567,3.883,5.663042 +L 3.883,5.663042,3.9502,5.765596 +L 3.9502,5.765596,4.0074,5.875223 +L 4.0074,5.875223,4.0522,5.992064 +L 4.0522,5.992064,4.0813,6.115911 +L 4.0813,6.115911,4.1116,6.246973 +L 4.1116,6.246973,4.1284,6.38511 +L 4.1284,6.38511,4.1306,6.530319 + +[Q] 134 +L -0.0002,4.593535,0.0166,5.030922 +L 0.0166,5.030922,0.065,5.454996 +L 0.065,5.454996,0.1455,5.865766 +L 0.1455,5.865766,0.2575,6.263224 +L 0.2575,6.263224,0.3976,6.647303 +L 0.3976,6.647303,0.573,7.018143 +L 0.573,7.018143,0.7815,7.375603 +L 0.7815,7.375603,1.0214,7.719822 +L 1.0214,7.719822,1.287,8.036238 +L 1.287,8.036238,1.5649,8.310475 +L 1.5649,8.310475,1.8561,8.54255 +L 1.8561,8.54255,2.1646,8.73238 +L 2.1646,8.73238,2.4885,8.880048 +L 2.4885,8.880048,2.8281,8.98554 +L 2.8281,8.98554,3.18,9.048794 +L 3.18,9.048794,3.551,9.069879 +L 3.551,9.069879,3.9175,9.048794 +L 3.9175,9.048794,4.2671,8.98554 +L 4.2671,8.98554,4.5989,8.880048 +L 4.5989,8.880048,4.9161,8.73238 +L 4.9161,8.73238,5.217,8.54255 +L 5.217,8.54255,5.4986,8.310475 +L 5.4986,8.310475,5.7612,8.036238 +L 5.7612,8.036238,6.0088,7.719822 +L 6.0088,7.719822,6.2319,7.375463 +L 6.2319,7.375463,6.428,7.017442 +L 6.428,7.017442,6.5883,6.645692 +L 6.5883,6.645692,6.725,6.260352 +L 6.725,6.260352,6.8259,5.861283 +L 6.8259,5.861283,6.9055,5.448624 +L 6.9055,5.448624,6.95,5.022236 +L 6.95,5.022236,6.9626,4.582188 +L 6.9626,4.582188,6.95,4.119652 +L 6.95,4.119652,6.9038,3.672951 +L 6.9038,3.672951,6.8259,3.242147 +L 6.8259,3.242147,6.7228,2.827249 +L 6.7228,2.827249,6.5816,2.428248 +L 6.5816,2.428248,6.4179,2.045082 +L 6.4179,2.045082,6.2173,1.677814 +L 6.2173,1.677814,5.9887,1.326446 +L 5.9887,1.326446,6.7598,0.188922 +L 6.7598,0.188922,5.9455,-0.495106 +L 5.9455,-0.495106,5.256,0.55738 +L 5.256,0.55738,5.0657,0.426739 +L 5.0657,0.426739,4.8696,0.313539 +L 4.8696,0.313539,4.6659,0.217712 +L 4.6659,0.217712,4.4577,0.139328 +L 4.4577,0.139328,4.2402,0.078385 +L 4.2402,0.078385,4.0178,0.034814 +L 4.0178,0.034814,3.7897,0.008686 +L 3.7897,0.008686,3.551,0 +L 3.551,0,3.18,0.021085 +L 3.18,0.021085,2.8281,0.084339 +L 2.8281,0.084339,2.4885,0.189833 +L 2.4885,0.189833,2.1646,0.337496 +L 2.1646,0.337496,1.8561,0.527397 +L 1.8561,0.527397,1.5649,0.759399 +L 1.5649,0.759399,1.287,1.033643 +L 1.287,1.033643,1.0214,1.350055 +L 1.0214,1.350055,0.7815,1.696097 +L 0.7815,1.696097,0.573,2.059091 +L 0.573,2.059091,0.3976,2.439037 +L 0.3976,2.439037,0.2575,2.836005 +L 0.2575,2.836005,0.1455,3.249925 +L 0.1455,3.249925,0.065,3.680796 +L 0.065,3.680796,0.0166,4.12869 +L 0.0166,4.12869,-0.0002,4.593535 +L 0.9429,4.582188,0.958,4.160492 +L 0.958,4.160492,0.9945,3.763735 +L 0.9945,3.763735,1.0595,3.391914 +L 1.0595,3.391914,1.1435,3.045032 +L 1.1435,3.045032,1.2548,2.723016 +L 1.2548,2.723016,1.3957,2.425938 +L 1.3957,2.425938,1.5593,2.153795 +L 1.5593,2.153795,1.7431,1.906595 +L 1.7431,1.906595,1.9505,1.686428 +L 1.9505,1.686428,2.1589,1.495687 +L 2.1589,1.495687,2.3739,1.334294 +L 2.3739,1.334294,2.5949,1.202249 +L 2.5949,1.202249,2.8281,1.099487 +L 2.8281,1.099487,3.0612,1.026148 +L 3.0612,1.026148,3.3033,0.982087 +L 3.3033,0.982087,3.551,0.967447 +L 3.551,0.967447,3.7124,0.973749 +L 3.7124,0.973749,3.8704,0.992595 +L 3.8704,0.992595,4.0217,1.024047 +L 4.0217,1.024047,4.1752,1.068035 +L 4.1752,1.068035,4.3204,1.124637 +L 4.3204,1.124637,4.4633,1.193846 +L 4.4633,1.193846,4.6045,1.275593 +L 4.6045,1.275593,4.7407,1.369949 +L 4.7407,1.369949,3.8704,2.692615 +L 3.8704,2.692615,4.6538,3.282148 +L 4.6538,3.282148,5.4468,2.137056 +L 5.4468,2.137056,5.5813,2.374312 +L 5.5813,2.374312,5.6959,2.631462 +L 5.6959,2.631462,5.7959,2.908576 +L 5.7959,2.908576,5.8755,3.205654 +L 5.8755,3.205654,5.9368,3.522696 +L 5.9368,3.522696,5.9845,3.859632 +L 5.9845,3.859632,6.0108,4.216602 +L 6.0108,4.216602,6.0212,4.593535 +L 6.0212,4.593535,6.0088,5.003672 +L 6.0088,5.003672,5.9741,5.389433 +L 5.9741,5.389433,5.9147,5.750883 +L 5.9147,5.750883,5.8351,6.087959 +L 5.8351,6.087959,5.7309,6.40066 +L 5.7309,6.40066,5.6054,6.68898 +L 5.6054,6.68898,5.4563,6.952997 +L 5.4563,6.952997,5.2859,7.192635 +L 5.2859,7.192635,5.0976,7.405866 +L 5.0976,7.405866,4.9015,7.590653 +L 4.9015,7.590653,4.6984,7.747071 +L 4.6984,7.747071,4.4885,7.874982 +L 4.4885,7.874982,4.2671,7.974522 +L 4.2671,7.974522,4.0346,8.045552 +L 4.0346,8.045552,3.7964,8.088212 +L 3.7964,8.088212,3.551,8.102429 +L 3.551,8.102429,3.3033,8.088212 +L 3.3033,8.088212,3.0612,8.045552 +L 3.0612,8.045552,2.8281,7.974522 +L 2.8281,7.974522,2.5949,7.874982 +L 2.5949,7.874982,2.3739,7.747071 +L 2.3739,7.747071,2.1589,7.590653 +L 2.1589,7.590653,1.9505,7.405866 +L 1.9505,7.405866,1.7431,7.192635 +L 1.7431,7.192635,1.5593,6.952787 +L 1.5593,6.952787,1.3957,6.688282 +L 1.3957,6.688282,1.2548,6.399049 +L 1.2548,6.399049,1.1435,6.08509 +L 1.1435,6.08509,1.0595,5.746402 +L 1.0595,5.746402,0.9945,5.383058 +L 0.9945,5.383058,0.958,4.994986 +L 0.958,4.994986,0.9429,4.582188 + +[R] 75 +L 0.8821,-0.069909,-0.0002,-0.069909 +L -0.0002,-0.069909,-0.0002,8.948976 +L -0.0002,8.948976,2.4207,8.948976 +L 2.4207,8.948976,2.7771,8.938957 +L 2.7771,8.938957,3.1072,8.908906 +L 3.1072,8.908906,3.4115,8.858891 +L 3.4115,8.858891,3.6844,8.788842 +L 3.6844,8.788842,3.9237,8.698757 +L 3.9237,8.698757,4.1419,8.588642 +L 4.1419,8.588642,4.3305,8.458561 +L 4.3305,8.458561,4.4885,8.308378 +L 4.4885,8.308378,4.6256,8.140538 +L 4.6256,8.140538,4.7463,7.957082 +L 4.7463,7.957082,4.8461,7.758068 +L 4.8461,7.758068,4.9245,7.54358 +L 4.9245,7.54358,4.9898,7.313607 +L 4.9898,7.313607,5.0366,7.068018 +L 5.0366,7.068018,5.0635,6.806945 +L 5.0635,6.806945,5.0741,6.530319 +L 5.0741,6.530319,5.0635,6.255306 +L 5.0635,6.255306,5.0411,5.998929 +L 5.0411,5.998929,5.0041,5.761323 +L 5.0041,5.761323,4.9523,5.54235 +L 4.9523,5.54235,4.8836,5.342077 +L 4.8836,5.342077,4.794,5.160442 +L 4.794,5.160442,4.697,4.997578 +L 4.697,4.997578,4.5782,4.853347 +L 4.5782,4.853347,4.449,4.724667 +L 4.449,4.724667,4.3103,4.608316 +L 4.3103,4.608316,4.1624,4.504433 +L 4.1624,4.504433,4.0038,4.412809 +L 4.0038,4.412809,3.8329,4.333654 +L 3.8329,4.333654,3.6513,4.266825 +L 3.6513,4.266825,3.4608,4.212326 +L 3.4608,4.212326,3.2602,4.170227 +L 3.2602,4.170227,5.3784,-0.069909 +L 5.3784,-0.069909,4.196,-0.069909 +L 4.196,-0.069909,2.229,4.111668 +L 2.229,4.111668,0.8821,4.111668 +L 0.8821,4.111668,0.8821,-0.069909 +L 4.1276,6.530319,4.1243,6.675603 +L 4.1243,6.675603,4.1103,6.813667 +L 4.1103,6.813667,4.0828,6.944731 +L 4.0828,6.944731,4.0486,7.068646 +L 4.0486,7.068646,4.001,7.185418 +L 4.001,7.185418,3.9461,7.295044 +L 3.9461,7.295044,3.8788,7.397598 +L 3.8788,7.397598,3.8077,7.493073 +L 3.8077,7.493073,3.713,7.579163 +L 3.713,7.579163,3.5972,7.653836 +L 3.5972,7.653836,3.4585,7.717022 +L 3.4585,7.717022,3.2974,7.76872 +L 3.2974,7.76872,3.1111,7.808926 +L 3.1111,7.808926,2.9038,7.837646 +L 2.9038,7.837646,2.6729,7.85481 +L 2.6729,7.85481,2.4179,7.86055 +L 2.4179,7.86055,0.8821,7.86055 +L 0.8821,7.86055,0.8821,5.20009 +L 0.8821,5.20009,2.4179,5.20009 +L 2.4179,5.20009,2.6729,5.205834 +L 2.6729,5.205834,2.9038,5.223066 +L 2.9038,5.223066,3.1111,5.251786 +L 3.1111,5.251786,3.2974,5.291924 +L 3.2974,5.291924,3.4585,5.343618 +L 3.4585,5.343618,3.5972,5.406805 +L 3.5972,5.406805,3.713,5.481477 +L 3.713,5.481477,3.8077,5.567567 +L 3.8077,5.567567,3.8788,5.663042 +L 3.8788,5.663042,3.9461,5.765596 +L 3.9461,5.765596,4.001,5.875223 +L 4.001,5.875223,4.0486,5.992064 +L 4.0486,5.992064,4.0828,6.115911 +L 4.0828,6.115911,4.1103,6.246973 +L 4.1103,6.246973,4.1243,6.38511 +L 4.1243,6.38511,4.1276,6.530319 + +[S] 193 +L -0.0002,2.51497,0.9452,2.51497 +L 0.9452,2.51497,0.9553,2.326118 +L 0.9553,2.326118,0.9805,2.149595 +L 0.9805,2.149595,1.0254,1.98554 +L 1.0254,1.98554,1.0842,1.833814 +L 1.0842,1.833814,1.1638,1.694486 +L 1.1638,1.694486,1.2624,1.567627 +L 1.2624,1.567627,1.3767,1.453097 +L 1.3767,1.453097,1.5056,1.351036 +L 1.5056,1.351036,1.6491,1.261093 +L 1.6491,1.261093,1.7984,1.183198 +L 1.7984,1.183198,1.9539,1.117282 +L 1.9539,1.117282,2.1125,1.063344 +L 2.1125,1.063344,2.2731,1.021385 +L 2.2731,1.021385,2.4471,0.991404 +L 2.4471,0.991404,2.623,0.973401 +L 2.623,0.973401,2.8035,0.967447 +L 2.8035,0.967447,3.0063,0.97403 +L 3.0063,0.97403,3.2002,0.993646 +L 3.2002,0.993646,3.3826,1.026426 +L 3.3826,1.026426,3.5566,1.072311 +L 3.5566,1.072311,3.7158,1.131292 +L 3.7158,1.131292,3.8637,1.203372 +L 3.8637,1.203372,4.001,1.288622 +L 4.001,1.288622,4.126,1.386901 +L 4.126,1.386901,4.2381,1.496317 +L 4.2381,1.496317,4.3322,1.61484 +L 4.3322,1.61484,4.414,1.74247 +L 4.414,1.74247,4.4833,1.879133 +L 4.4833,1.879133,4.5351,2.024977 +L 4.5351,2.024977,4.5724,2.179856 +L 4.5724,2.179856,4.5951,2.343841 +L 4.5951,2.343841,4.6046,2.51686 +L 4.6046,2.51686,4.5923,2.68617 +L 4.5923,2.68617,4.5628,2.84525 +L 4.5628,2.84525,4.5127,2.994246 +L 4.5127,2.994246,4.4466,3.133153 +L 4.4466,3.133153,4.3544,3.261831 +L 4.3544,3.261831,4.2459,3.380496 +L 4.2459,3.380496,4.1168,3.489 +L 4.1168,3.489,3.9702,3.587351 +L 3.9702,3.587351,3.8049,3.681707 +L 3.8049,3.681707,3.6368,3.778305 +L 3.6368,3.778305,3.4524,3.877074 +L 3.4524,3.877074,3.2619,3.978012 +L 3.2619,3.978012,3.0635,4.081127 +L 3.0635,4.081127,2.8584,4.18641 +L 2.8584,4.18641,2.6376,4.293936 +L 2.6376,4.293936,2.4151,4.403632 +L 2.4151,4.403632,2.1893,4.516552 +L 2.1893,4.516552,1.9763,4.633741 +L 1.9763,4.633741,1.7735,4.755209 +L 1.7735,4.755209,1.5801,4.880947 +L 1.5801,4.880947,1.3991,5.011028 +L 1.3991,5.011028,1.2277,5.14531 +L 1.2277,5.14531,1.0702,5.283939 +L 1.0702,5.283939,0.9228,5.426839 +L 0.9228,5.426839,0.7872,5.575553 +L 0.7872,5.575553,0.6729,5.731622 +L 0.6729,5.731622,0.5742,5.895117 +L 0.5742,5.895117,0.4947,6.065966 +L 0.4947,6.065966,0.4353,6.244171 +L 0.4353,6.244171,0.3904,6.429801 +L 0.3904,6.429801,0.3613,6.622856 +L 0.3613,6.622856,0.3557,6.823196 +L 0.3557,6.823196,0.3658,7.065496 +L 0.3658,7.065496,0.4002,7.296448 +L 0.4002,7.296448,0.4552,7.515911 +L 0.4552,7.515911,0.5395,7.724027 +L 0.5395,7.724027,0.6415,7.920792 +L 0.6415,7.920792,0.7676,8.106072 +L 0.7676,8.106072,0.9206,8.280008 +L 0.9206,8.280008,1.0898,8.44259 +L 1.0898,8.44259,1.2781,8.589623 +L 1.2781,8.589623,1.4754,8.717042 +L 1.4754,8.717042,1.6734,8.824845 +L 1.6734,8.824845,1.8828,8.913037 +L 1.8828,8.913037,2.0929,8.981687 +L 2.0929,8.981687,2.3159,9.030722 +L 2.3159,9.030722,2.5412,9.06007 +L 2.5412,9.06007,2.7721,9.069879 +L 2.7721,9.069879,3.0119,9.060422 +L 3.0119,9.060422,3.2451,9.03191 +L 3.2451,9.03191,3.4687,8.984491 +L 3.4687,8.984491,3.6777,8.918013 +L 3.6777,8.918013,3.8817,8.832623 +L 3.8817,8.832623,4.0801,8.728178 +L 4.0801,8.728178,4.2605,8.604821 +L 4.2605,8.604821,4.4435,8.462414 +L 4.4435,8.462414,4.6046,8.303755 +L 4.6046,8.303755,4.7464,8.131642 +L 4.7464,8.131642,4.8643,7.94608 +L 4.8643,7.94608,4.9593,7.747003 +L 4.9593,7.747003,5.0361,7.534406 +L 5.0361,7.534406,5.0899,7.308286 +L 5.0899,7.308286,5.1243,7.068718 +L 5.1243,7.068718,5.133,6.815631 +L 5.133,6.815631,4.1916,6.815631 +L 4.1916,6.815631,4.1865,6.980666 +L 4.1865,6.980666,4.1636,7.133721 +L 4.1636,7.133721,4.1339,7.274872 +L 4.1339,7.274872,4.0943,7.404043 +L 4.0943,7.404043,4.0375,7.521233 +L 4.0375,7.521233,3.9702,7.626446 +L 3.9702,7.626446,3.8918,7.719754 +L 3.8918,7.719754,3.8018,7.801078 +L 3.8018,7.801078,3.7001,7.87169 +L 3.7001,7.87169,3.5934,7.932911 +L 3.5934,7.932911,3.4771,7.984749 +L 3.4771,7.984749,3.3515,8.027127 +L 3.3515,8.027127,3.2193,8.060052 +L 3.2193,8.060052,3.0764,8.083588 +L 3.0764,8.083588,2.9279,8.097736 +L 2.9279,8.097736,2.7721,8.102429 +L 2.7721,8.102429,2.6127,8.097386 +L 2.6127,8.097386,2.4639,8.082115 +L 2.4639,8.082115,2.3201,8.05676 +L 2.3201,8.05676,2.1854,8.021173 +L 2.1854,8.021173,2.0565,7.975503 +L 2.0565,7.975503,1.9338,7.919602 +L 1.9338,7.919602,1.8211,7.853615 +L 1.8211,7.853615,1.7146,7.777406 +L 1.7146,7.777406,1.6143,7.691316 +L 1.6143,7.691316,1.5325,7.595344 +L 1.5325,7.595344,1.4585,7.48957 +L 1.4585,7.48957,1.4014,7.37399 +L 1.4014,7.37399,1.3543,7.248674 +L 1.3543,7.248674,1.3224,7.113479 +L 1.3224,7.113479,1.3056,6.968548 +L 1.3056,6.968548,1.2971,6.81374 +L 1.2971,6.81374,1.307,6.661523 +L 1.307,6.661523,1.328,6.518553 +L 1.328,6.518553,1.3563,6.384829 +L 1.3563,6.384829,1.4014,6.260352 +L 1.4014,6.260352,1.4627,6.145122 +L 1.4627,6.145122,1.5353,6.039067 +L 1.5353,6.039067,1.6222,5.942327 +L 1.6222,5.942327,1.7186,5.854838 +L 1.7186,5.854838,1.8306,5.77099 +L 1.8306,5.77099,1.9562,5.68532 +L 1.9562,5.68532,2.0996,5.597828 +L 2.0996,5.597828,2.2509,5.508516 +L 2.2509,5.508516,2.4224,5.417382 +L 2.4224,5.417382,2.6057,5.324427 +L 2.6057,5.324427,2.8035,5.229648 +L 2.8035,5.229648,3.235,5.033373 +L 3.235,5.033794,3.4479,4.931242 +L 3.4479,4.931242,3.6631,4.825328 +L 3.6631,4.825328,3.8783,4.716121 +L 3.8783,4.716121,4.0921,4.603552 +L 4.0921,4.603552,4.2997,4.487621 +L 4.2997,4.487621,4.5127,4.368398 +L 4.5127,4.368398,4.7189,4.245812 +L 4.7189,4.245812,4.9117,4.109987 +L 4.9117,4.109987,5.0806,3.950836 +L 5.0806,3.950836,5.221,3.768428 +L 5.221,3.768428,5.3407,3.562764 +L 5.3407,3.562764,5.4298,3.333842 +L 5.4298,3.333842,5.4973,3.081597 +L 5.4973,3.081597,5.5337,2.806164 +L 5.5337,2.806164,5.5458,2.507475 +L 5.5458,2.507475,5.5337,2.225458 +L 5.5337,2.225458,5.499,1.958501 +L 5.499,1.958501,5.4396,1.706745 +L 5.4396,1.706745,5.3533,1.470049 +L 5.3533,1.470049,5.2412,1.248554 +L 5.2412,1.248554,5.1123,1.042049 +L 5.1123,1.042049,4.9543,0.850746 +L 4.9543,0.850746,4.7727,0.67457 +L 4.7727,0.67457,4.5698,0.516472 +L 4.5698,0.516472,4.3569,0.379453 +L 4.3569,0.379453,4.1299,0.263524 +L 4.1299,0.263524,3.8918,0.168608 +L 3.8918,0.168608,3.6407,0.094846 +L 3.6407,0.094846,3.3787,0.04217 +L 3.3787,0.04217,3.0988,0.010507 +L 3.0988,0.010507,2.8113,0 +L 2.8113,0,2.5308,0.010577 +L 2.5308,0.010577,2.2588,0.042377 +L 2.2588,0.042377,1.9932,0.095407 +L 1.9932,0.095407,1.741,0.169586 +L 1.741,0.169586,1.5,0.264996 +L 1.5,0.264996,1.268,0.381557 +L 1.268,0.381557,1.0478,0.519343 +L 1.0478,0.519343,0.832,0.678353 +L 0.832,0.678353,0.6387,0.855437 +L 0.6387,0.855437,0.4706,1.047513 +L 0.4706,1.047513,0.3249,1.254578 +L 0.3249,1.254578,0.21,1.476702 +L 0.21,1.476702,0.1181,1.71375 +L 0.1181,1.71375,0.0508,1.965856 +L 0.0508,1.965856,0.0116,2.232953 +L 0.0116,2.232953,-0.0002,2.51497 + +[T] 8 +L 3.7063,-0.075583,2.8187,-0.075583 +L 2.8187,-0.075583,2.8187,7.86055 +L 2.8187,7.86055,-0.0001,7.86055 +L -0.0001,7.86055,-0.0001,8.948976 +L -0.0001,8.948976,6.5453,8.948976 +L 6.5453,8.948976,6.5453,7.86055 +L 6.5453,7.86055,3.7063,7.86055 +L 3.7063,7.86055,3.7063,-0.075583 + +[U] 70 +L 2.9224,0.967447,3.1062,0.976413 +L 3.1062,0.976413,3.2891,1.003242 +L 3.2891,1.003242,3.4671,1.047934 +L 3.4671,1.047934,3.6464,1.110557 +L 3.6464,1.110557,3.8145,1.191114 +L 3.8145,1.191114,3.9849,1.289463 +L 3.9849,1.289463,4.1505,1.405814 +L 4.1505,1.405814,4.3149,1.539958 +L 4.3149,1.539958,4.4634,1.695187 +L 4.4634,1.695187,4.5965,1.874652 +L 4.5965,1.874652,4.7072,2.078355 +L 4.7072,2.078355,4.7952,2.306224 +L 4.7952,2.306224,4.8647,2.558259 +L 4.8647,2.558259,4.9162,2.834604 +L 4.9162,2.834604,4.9487,3.135042 +L 4.9487,3.135042,4.9594,3.459792 +L 4.9594,3.459792,4.9594,8.986728 +L 4.9594,8.986728,5.8428,8.986728 +L 5.8428,8.986728,5.8428,3.459792 +L 5.8428,3.459792,5.8308,2.999079 +L 5.8308,2.999079,5.7888,2.574022 +L 5.7888,2.574022,5.7271,2.184689 +L 5.7271,2.184689,5.6302,1.830942 +L 5.6302,1.830942,5.5142,1.512919 +L 5.5142,1.512919,5.3685,1.230551 +L 5.3685,1.230551,5.1962,0.983839 +L 5.1962,0.983839,4.9958,0.772851 +L 4.9958,0.772851,4.7784,0.591704 +L 4.7784,0.591704,4.5475,0.434724 +L 4.5475,0.434724,4.3099,0.301911 +L 4.3099,0.301911,4.0544,0.193195 +L 4.0544,0.193195,3.7918,0.108646 +L 3.7918,0.108646,3.5119,0.048262 +L 3.5119,0.048262,3.225,0.012048 +L 3.225,0.012048,2.9224,0 +L 2.9224,0,2.6231,0.012048 +L 2.6231,0.012048,2.3283,0.048262 +L 2.3283,0.048262,2.0524,0.108646 +L 2.0524,0.108646,1.7881,0.193195 +L 1.7881,0.193195,1.5354,0.301911 +L 1.5354,0.301911,1.2927,0.434724 +L 1.2927,0.434724,1.0647,0.591704 +L 1.0647,0.591704,0.8489,0.772851 +L 0.8489,0.772851,0.648,0.983839 +L 0.648,0.983839,0.4746,1.230551 +L 0.4746,1.230551,0.3311,1.512919 +L 0.3311,1.512919,0.2145,1.830942 +L 0.2145,1.830942,0.1182,2.184689 +L 0.1182,2.184689,0.0562,2.574022 +L 0.0562,2.574022,0.0139,2.999079 +L 0.0139,2.999079,-0.0001,3.459792 +L -0.0001,3.459792,-0.0001,8.986728 +L -0.0001,8.986728,0.8859,8.986728 +L 0.8859,8.986728,0.8859,3.459792 +L 0.8859,3.459792,0.8965,3.135042 +L 0.8965,3.135042,0.9285,2.834604 +L 0.9285,2.834604,0.9756,2.558259 +L 0.9756,2.558259,1.0495,2.306224 +L 1.0495,2.306224,1.1392,2.078355 +L 1.1392,2.078355,1.2476,1.874652 +L 1.2476,1.874652,1.3765,1.695187 +L 1.3765,1.695187,1.5303,1.539958 +L 1.5303,1.539958,1.694,1.405814 +L 1.694,1.405814,1.8621,1.289463 +L 1.8621,1.289463,2.0285,1.191114 +L 2.0285,1.191114,2.1995,1.110557 +L 2.1995,1.110557,2.3777,1.047934 +L 2.3777,1.047934,2.5559,1.003242 +L 2.5559,1.003242,2.7402,0.976413 +L 2.7402,0.976413,2.9224,0.967447 + +[V] 8 +L 6.2155,8.979233,3.6411,-0.020804 +L 3.6411,-0.020804,2.5708,-0.020804 +L 2.5708,-0.020804,-0.0003,8.979233 +L -0.0003,8.979233,0.9602,8.979233 +L 0.9602,8.979233,3.0687,1.58535 +L 3.0687,1.58535,3.1457,1.58535 +L 3.1457,1.58535,5.2545,8.979233 +L 5.2545,8.979233,6.2155,8.979233 + +[W] 13 +L 0,8.979233,0.9207,8.979233 +L 0.9207,8.979233,2.2696,2.282616 +L 2.2696,2.282616,3.5994,8.979233 +L 3.5994,8.979233,4.5182,8.979233 +L 4.5182,8.979233,5.8466,2.282616 +L 5.8466,2.282616,7.1912,8.979233 +L 7.1912,8.979233,8.1128,8.979233 +L 8.1128,8.979233,6.2971,-0.020804 +L 6.2971,-0.020804,5.3756,-0.020804 +L 5.3756,-0.020804,4.0578,6.651296 +L 4.0578,6.651296,2.7403,-0.020804 +L 2.7403,-0.020804,1.8185,-0.020804 +L 1.8185,-0.020804,0,8.979233 + +[X] 12 +L 6.7707,-0.020804,5.6443,-0.020804 +L 5.6443,-0.020804,3.2834,3.947263 +L 3.2834,3.947263,1.1259,-0.020804 +L 1.1259,-0.020804,0,-0.020804 +L 0,-0.020804,2.7062,4.92795 +L 2.7062,4.92795,0.2948,8.979233 +L 0.2948,8.979233,1.4201,8.979233 +L 1.4201,8.979233,3.489,5.506204 +L 3.489,5.506204,5.4033,8.979233 +L 5.4033,8.979233,6.5309,8.979233 +L 6.5309,8.979233,4.0651,4.51417 +L 4.0651,4.51417,6.7707,-0.020804 + +[Y] 10 +L 3.5631,-0.020804,2.6765,-0.020804 +L 2.6765,-0.020804,2.6765,3.569348 +L 2.6765,3.569348,0.0001,8.979233 +L 0.0001,8.979233,1.0536,8.979233 +L 1.0536,8.979233,3.0822,4.869388 +L 3.0822,4.869388,3.1192,4.869388 +L 3.1192,4.869388,5.1476,8.979233 +L 5.1476,8.979233,6.2014,8.979233 +L 6.2014,8.979233,3.5631,3.499437 +L 3.5631,3.499437,3.5631,-0.020804 + +[Z] 10 +L 0.4972,8.948976,5.423,8.948976 +L 5.423,8.948976,5.423,7.896485 +L 5.423,7.896485,1.1472,1.088352 +L 1.1472,1.088352,5.9207,1.088352 +L 5.9207,1.088352,5.9207,0 +L 5.9207,0,-0.0004,0 +L -0.0004,0,-0.0004,1.052484 +L -0.0004,1.052484,4.281,7.86055 +L 4.281,7.86055,0.4972,7.86055 +L 0.4972,7.86055,0.4972,8.948976 + +[[] 8 +L -0.0004,10.037354,3.2723,10.037354 +L 3.2723,10.037354,3.2723,9.069905 +L 3.2723,9.069905,0.8817,9.069905 +L 0.8817,9.069905,0.8817,-0.241879 +L 0.8817,-0.241879,3.2723,-0.241879 +L 3.2723,-0.241879,3.2723,-1.209335 +L 3.2723,-1.209335,-0.0004,-1.209335 +L -0.0004,-1.209335,-0.0004,10.037354 + +[\] 4 +L 4.6215,-0.457289,0.6245,9.923985 +L 4.6215,-0.457289,3.9922,-1.048722 +L 0.6245,9.923985,-0.0006,9.321171 +L 3.9922,-1.048722,-0.0006,9.321171 + +[]] 8 +L 3.2718,10.037354,3.2718,-1.209335 +L 3.2718,-1.209335,-0.0012,-1.209335 +L -0.0012,-1.209335,-0.0012,-0.241879 +L -0.0012,-0.241879,2.3864,-0.241879 +L 2.3864,-0.241879,2.3864,9.069905 +L 2.3864,9.069905,-0.0012,9.069905 +L -0.0012,9.069905,-0.0012,10.037354 +L -0.0012,10.037354,3.2718,10.037354 + +[a] 193 +L 2.1775,6.409414,2.3737,6.4008 +L 2.3737,6.4008,2.5642,6.375022 +L 2.5642,6.375022,2.7446,6.332082 +L 2.7446,6.332082,2.9167,6.27191 +L 2.9167,6.27191,3.0742,6.194576 +L 3.0742,6.194576,3.2255,6.10008 +L 3.2255,6.10008,3.3689,5.988422 +L 3.3689,5.988422,3.4978,5.85953 +L 3.4978,5.85953,3.62,5.71418 +L 3.62,5.71418,3.7262,5.553207 +L 3.7262,5.553207,3.8105,5.376474 +L 3.8105,5.376474,3.8845,5.183979 +L 3.8845,5.183979,3.9394,4.975863 +L 3.9394,4.975863,3.9814,4.751986 +L 3.9814,4.751986,4.0038,4.512419 +L 4.0038,4.512419,4.0134,4.25716 +L 4.0134,4.25716,4.0134,1.347253 +L 4.0134,1.347253,4.0134,1.165826 +L 4.0134,1.165826,4.0263,0.988109 +L 4.0263,0.988109,4.0436,0.81411 +L 4.0436,0.81411,4.0627,0.643888 +L 4.0627,0.643888,4.0935,0.477312 +L 4.0935,0.477312,4.1299,0.31445 +L 4.1299,0.31445,4.1725,0.155369 +L 4.1725,0.155369,4.2241,0 +L 4.2241,0,3.2311,0 +L 3.2311,0,3.2005,0.180026 +L 3.2028,0.180306,3.1784,0.354518 +L 3.1784,0.354728,3.156,0.522986 +L 3.156,0.523266,3.1392,0.68564 +L 3.1392,0.68592,3.0772,0.611318 +L 3.0772,0.611318,3.0125,0.540498 +L 3.0125,0.540498,2.943,0.473602 +L 2.943,0.473602,2.8718,0.410487 +L 2.8718,0.410487,2.7917,0.351226 +L 2.7917,0.351226,2.7133,0.295817 +L 2.7133,0.295817,2.6236,0.244261 +L 2.6236,0.244261,2.5373,0.196485 +L 2.5373,0.196485,2.4409,0.153337 +L 2.4409,0.153337,2.349,0.115511 +L 2.349,0.115511,2.2571,0.082938 +L 2.2571,0.082938,2.163,0.055759 +L 2.163,0.055759,2.0688,0.033834 +L 2.0688,0.033834,1.9766,0.017232 +L 1.9766,0.017232,1.8856,0.005954 +L 1.8856,0.005954,1.7942,0 +L 1.7942,0,1.5857,0.006655 +L 1.5857,0.006655,1.3952,0.026546 +L 1.3952,0.026546,1.2092,0.05975 +L 1.2092,0.05975,1.0394,0.106262 +L 1.0394,0.106262,0.8797,0.166084 +L 0.8797,0.166084,0.734,0.239145 +L 0.734,0.239145,0.5972,0.325518 +L 0.5972,0.325518,0.4762,0.425125 +L 0.4762,0.425125,0.3641,0.538257 +L 0.3641,0.538257,0.266,0.665113 +L 0.266,0.665113,0.1856,0.805634 +L 0.1856,0.805634,0.1186,0.959882 +L 0.1186,0.959882,0.0646,1.127789 +L 0.0646,1.127789,0.0279,1.309427 +L 0.0279,1.309427,0.0054,1.504791 +L 0.0054,1.504791,-0.0002,1.713817 +L -0.0002,1.713817,0.0054,1.85763 +L 0.0054,1.85763,0.0178,2.00004 +L 0.0178,2.00004,0.0475,2.140979 +L 0.0475,2.140979,0.0794,2.280446 +L 0.0794,2.280446,0.1287,2.418513 +L 0.1287,2.418513,0.1856,2.555108 +L 0.1856,2.555108,0.2531,2.690233 +L 0.2531,2.690233,0.3277,2.823957 +L 0.3277,2.823957,0.4145,2.954528 +L 0.4145,2.954528,0.5132,3.080266 +L 0.5132,3.080266,0.6174,3.201241 +L 0.6174,3.201241,0.734,3.317382 +L 0.734,3.317382,0.8617,3.428688 +L 0.8617,3.428688,0.9943,3.535165 +L 0.9943,3.535165,1.14,3.636874 +L 1.14,3.636874,1.2971,3.733751 +L 1.2971,3.733751,1.4653,3.827129 +L 1.4653,3.827129,1.6474,3.918333 +L 1.6474,3.918333,1.8517,4.007365 +L 1.8517,4.007365,2.071,4.094226 +L 2.071,4.094226,2.3087,4.178845 +L 2.3087,4.178845,2.5642,4.261293 +L 2.5642,4.261293,2.8363,4.341569 +L 2.8363,4.341569,3.1296,4.419674 +L 3.1296,4.419674,3.1296,4.584079 +L 3.1296,4.584079,3.1209,4.694546 +L 3.1209,4.694546,3.1128,4.801161 +L 3.1128,4.801161,3.0966,4.90385 +L 3.0966,4.90385,3.0719,5.002622 +L 3.0719,5.002622,3.0405,5.097468 +L 3.0405,5.097468,2.9977,5.188532 +L 2.9977,5.188532,2.9531,5.275603 +L 2.9531,5.275603,2.9016,5.358821 +L 2.9016,5.358821,2.8388,5.434964 +L 2.8388,5.434964,2.771,5.500951 +L 2.771,5.500951,2.6953,5.55685 +L 2.6953,5.55685,2.6065,5.602522 +L 2.6065,5.602522,2.5132,5.638107 +L 2.5132,5.638107,2.4084,5.663464 +L 2.4084,5.663464,2.3002,5.678735 +L 2.3002,5.678735,2.1775,5.683779 +L 2.1775,5.683779,2.061,5.679644 +L 2.061,5.679644,1.9567,5.667177 +L 1.9567,5.667177,1.8603,5.64644 +L 1.8603,5.64644,1.7662,5.617442 +L 1.7662,5.617442,1.6844,5.580106 +L 1.6844,5.580106,1.6082,5.534434 +L 1.6082,5.534434,1.5437,5.480564 +L 1.5437,5.480564,1.4793,5.418293 +L 1.4793,5.418293,1.4277,5.348524 +L 1.4277,5.348524,1.3773,5.271818 +L 1.3773,5.271818,1.3325,5.18825 +L 1.3325,5.18825,1.2915,5.097816 +L 1.2915,5.097816,1.2585,5.000448 +L 1.2585,5.000448,1.2299,4.896287 +L 1.2299,4.896287,1.2044,4.78519 +L 1.2044,4.78519,1.1795,4.667227 +L 1.1795,4.667227,0.2576,4.667227 +L 0.2576,4.667227,0.2882,4.860212 +L 0.2882,4.860212,0.3277,5.04332 +L 0.3277,5.04332,0.3865,5.216482 +L 0.3865,5.216482,0.4582,5.379836 +L 0.4582,5.379836,0.5462,5.533241 +L 0.5462,5.533241,0.6524,5.676772 +L 0.6524,5.676772,0.7687,5.810427 +L 0.7687,5.810427,0.9049,5.934134 +L 0.9049,5.934134,1.0478,6.045512 +L 1.0478,6.045512,1.1968,6.14211 +L 1.1968,6.14211,1.3532,6.223787 +L 1.3532,6.223787,1.5062,6.290611 +L 1.5062,6.290611,1.6698,6.34259 +L 1.6698,6.34259,1.8334,6.379714 +L 1.8334,6.379714,2.0016,6.401991 +L 2.0016,6.401991,2.1775,6.409414 +L 0.9413,1.732733,0.9469,1.605524 +L 0.9469,1.605524,0.9592,1.489312 +L 0.9592,1.489312,0.9794,1.384169 +L 0.9794,1.384169,1.0111,1.290093 +L 1.0111,1.290093,1.0478,1.207015 +L 1.0478,1.207015,1.0926,1.135002 +L 1.0926,1.135002,1.1498,1.074062 +L 1.1498,1.074062,1.2092,1.024117 +L 1.2092,1.024117,1.2764,0.982506 +L 1.2764,0.982506,1.3481,0.94643 +L 1.3481,0.94643,1.4174,0.915891 +L 1.4174,0.915891,1.4894,0.890884 +L 1.4894,0.890884,1.5661,0.87148 +L 1.5661,0.87148,1.6407,0.85761 +L 1.6407,0.85761,1.7188,0.849274 +L 1.7188,0.849274,1.8032,0.84654 +L 1.8032,0.84654,1.8856,0.852567 +L 1.8856,0.852567,1.9646,0.864125 +L 1.9646,0.864125,2.052,0.881147 +L 2.052,0.881147,2.1361,0.903702 +L 2.1361,0.903702,2.2201,0.931722 +L 2.2201,0.931722,2.3042,0.965206 +L 2.3042,0.965206,2.3924,1.004223 +L 2.3924,1.004223,2.4776,1.048704 +L 2.4776,1.048704,2.5642,1.10383 +L 2.5642,1.10383,2.6483,1.174792 +L 2.6483,1.174792,2.7357,1.261653 +L 2.7357,1.261653,2.8141,1.364275 +L 2.8141,1.364275,2.8943,1.482728 +L 2.8943,1.482728,2.9733,1.617012 +L 2.9733,1.617012,3.0529,1.767057 +L 3.0529,1.767057,3.1296,1.933003 +L 3.1296,1.933003,3.1296,3.599608 +L 3.1296,3.599608,2.924,3.540628 +L 2.924,3.540628,2.7278,3.481857 +L 2.7278,3.481857,2.5468,3.423294 +L 2.5468,3.423294,2.3787,3.364803 +L 2.3787,3.364803,2.2246,3.306595 +L 2.2246,3.306595,2.0817,3.248524 +L 2.0817,3.248524,1.9528,3.190593 +L 1.9528,3.190593,1.8334,3.132873 +L 1.8334,3.132873,1.727,3.073469 +L 1.727,3.073469,1.625,3.010567 +L 1.625,3.010567,1.5342,2.944161 +L 1.5342,2.944161,1.4445,2.874252 +L 1.4445,2.874252,1.365,2.800838 +L 1.365,2.800838,1.2915,2.723854 +L 1.2915,2.723854,1.2299,2.64337 +L 1.2299,2.64337,1.1699,2.559379 +L 1.1699,2.559379,1.115,2.47147 +L 1.115,2.47147,1.0702,2.379145 +L 1.0702,2.379145,1.031,2.282408 +L 1.031,2.282408,1.0007,2.181257 +L 1.0007,2.181257,0.9738,2.075693 +L 0.9738,2.075693,0.957,1.965784 +L 0.957,1.965784,0.9469,1.851466 +L 0.9469,1.851466,0.9413,1.732733 + +[b] 118 +L 2.1434,6.409414,2.3401,6.397018 +L 2.3401,6.397018,2.5317,6.359892 +L 2.5317,6.359892,2.7206,6.297898 +L 2.7206,6.297898,2.9111,6.211248 +L 2.9111,6.211248,3.091,6.099728 +L 3.091,6.099728,3.2726,5.963484 +L 3.2726,5.963484,3.4452,5.80251 +L 3.4452,5.80251,3.6211,5.61674 +L 3.6211,5.61674,3.7825,5.407645 +L 3.7825,5.407645,3.9181,5.176834 +L 3.9181,5.176834,4.0381,4.924307 +L 4.0381,4.924307,4.1345,4.649995 +L 4.1345,4.649995,4.2112,4.353896 +L 4.2112,4.353896,4.2656,4.036015 +L 4.2656,4.036015,4.2953,3.696418 +L 4.2953,3.696418,4.3045,3.335034 +L 4.3045,3.335034,4.2953,3.009304 +L 4.2953,3.009304,4.2701,2.694226 +L 4.2701,2.694226,4.2227,2.389863 +L 4.2227,2.389863,4.1569,2.096217 +L 4.1569,2.096217,4.0692,1.813289 +L 4.0692,1.813289,3.9663,1.541076 +L 3.9663,1.541076,3.847,1.279654 +L 3.847,1.279654,3.703,1.02888 +L 3.703,1.02888,3.5472,0.798069 +L 3.5472,0.798069,3.3788,0.596468 +L 3.3788,0.596468,3.2031,0.424007 +L 3.2031,0.424007,3.0067,0.280826 +L 3.0067,0.280826,2.8063,0.166784 +L 2.8063,0.166784,2.5917,0.082027 +L 2.5917,0.082027,2.3625,0.026408 +L 2.3625,0.026408,2.1249,0 +L 2.1249,0,1.9512,0.007355 +L 1.9512,0.007355,1.7864,0.029491 +L 1.7864,0.029491,1.6194,0.066404 +L 1.6194,0.066404,1.4636,0.118103 +L 1.4636,0.118103,1.3123,0.184509 +L 1.3123,0.184509,1.1663,0.265696 +L 1.1663,0.265696,1.0198,0.361663 +L 1.0198,0.361663,0.8842,0.472408 +L 0.8842,0.472408,0.8842,-0.022696 +L 0.8842,-0.022696,-0.0001,-0.022696 +L -0.0001,-0.022696,-0.0001,8.984837 +L -0.0001,8.984837,0.8842,8.984837 +L 0.8842,8.984837,0.8842,5.734842 +L 0.8842,5.734842,1.0198,5.892945 +L 1.0198,5.892945,1.1663,6.029961 +L 1.1663,6.029961,1.3123,6.145892 +L 1.3123,6.145892,1.4709,6.240738 +L 1.4709,6.240738,1.6292,6.3145 +L 1.6292,6.3145,1.7931,6.367247 +L 1.7931,6.367247,1.9669,6.398839 +L 1.9669,6.398839,2.1434,6.409414 +L 2.135,0.967447,2.2683,0.988532 +L 2.2683,0.988532,2.3956,1.028178 +L 2.3956,1.028178,2.516,1.086458 +L 2.516,1.086458,2.6309,1.163234 +L 2.6309,1.163234,2.7391,1.258641 +L 2.7391,1.258641,2.8388,1.372609 +L 2.8388,1.372609,2.9335,1.505074 +L 2.9335,1.505074,3.0249,1.656169 +L 3.0249,1.656169,3.1033,1.822746 +L 3.1033,1.822746,3.1706,2.001721 +L 3.1706,2.001721,3.2277,2.193025 +L 3.2277,2.193025,3.2771,2.396658 +L 3.2771,2.396658,3.3146,2.612689 +L 3.3146,2.612689,3.3426,2.841119 +L 3.3426,2.841119,3.3566,3.081945 +L 3.3566,3.081945,3.3634,3.335034 +L 3.3634,3.335034,3.3538,3.623356 +L 3.3538,3.623356,3.3387,3.888352 +L 3.3387,3.888352,3.3062,4.130021 +L 3.3062,4.130021,3.2647,4.348364 +L 3.2647,4.348364,3.2118,4.54338 +L 3.2118,4.54338,3.1465,4.71507 +L 3.1465,4.71507,3.0686,4.863434 +L 3.0686,4.863434,2.9784,4.988472 +L 2.9784,4.988472,2.8758,5.094734 +L 2.8758,5.094734,2.7735,5.186851 +L 2.7735,5.186851,2.6651,5.264815 +L 2.6651,5.264815,2.553,5.32856 +L 2.553,5.32856,2.4376,5.378155 +L 2.4376,5.378155,2.3154,5.413597 +L 2.3154,5.413597,2.1899,5.434822 +L 2.1899,5.434822,2.061,5.441969 +L 2.061,5.441969,1.9472,5.433283 +L 1.9472,5.433283,1.8408,5.407365 +L 1.8408,5.407365,1.7382,5.364075 +L 1.7382,5.364075,1.6396,5.303552 +L 1.6396,5.303552,1.5438,5.225658 +L 1.5438,5.225658,1.4541,5.130529 +L 1.4541,5.130529,1.37,5.01803 +L 1.37,5.01803,1.2896,4.888302 +L 1.2896,4.888302,1.2137,4.748202 +L 1.2137,4.748202,1.1464,4.604881 +L 1.1464,4.604881,1.0868,4.458198 +L 1.0868,4.458198,1.0296,4.308224 +L 1.0296,4.308224,0.985,4.154886 +L 0.985,4.154886,0.9458,3.998329 +L 0.9458,3.998329,0.9086,3.838407 +L 0.9086,3.838407,0.8842,3.675193 +L 0.8842,3.675193,0.8842,1.768598 +L 0.8842,1.768598,0.9279,1.67158 +L 0.9279,1.67158,0.9761,1.580867 +L 0.9761,1.580867,1.0296,1.496317 +L 1.0296,1.496317,1.0848,1.418073 +L 1.0848,1.418073,1.1442,1.346132 +L 1.1442,1.346132,1.2058,1.280424 +L 1.2058,1.280424,1.2731,1.220955 +L 1.2731,1.220955,1.3476,1.167715 +L 1.3476,1.167715,1.4208,1.120784 +L 1.4208,1.120784,1.5051,1.080086 +L 1.5051,1.080086,1.5948,1.045692 +L 1.5948,1.045692,1.6895,1.017532 +L 1.6895,1.017532,1.7909,0.995607 +L 1.7909,0.995607,1.9024,0.979986 +L 1.9024,0.979986,2.0162,0.970599 +L 2.0162,0.970599,2.135,0.967447 + +[c] 130 +L -0.0001,3.193323,0.0106,3.507913 +L 0.0106,3.507913,0.0442,3.812769 +L 0.0442,3.812769,0.0983,4.108026 +L 0.0983,4.108026,0.1703,4.393686 +L 0.1703,4.393686,0.27,4.669747 +L 0.27,4.669747,0.386,4.936145 +L 0.386,4.936145,0.5301,5.192875 +L 0.5301,5.192875,0.6886,5.440078 +L 0.6886,5.440078,0.8663,5.667247 +L 0.8663,5.667247,1.0568,5.864155 +L 1.0568,5.864155,1.2628,6.030729 +L 1.2628,6.030729,1.4805,6.167047 +L 1.4805,6.167047,1.7114,6.273101 +L 1.7114,6.273101,1.9568,6.348824 +L 1.9568,6.348824,2.2146,6.394216 +L 2.2146,6.394216,2.4836,6.409414 +L 2.4836,6.409414,2.7691,6.398769 +L 2.7691,6.398769,3.0395,6.366967 +L 3.0395,6.366967,3.2917,6.31401 +L 3.2917,6.31401,3.5225,6.239828 +L 3.5225,6.239828,3.7377,6.144421 +L 3.7377,6.144421,3.9389,6.02786 +L 3.9389,6.02786,4.1166,5.890003 +L 4.1166,5.890003,4.2808,5.731062 +L 4.2808,5.731062,4.427,5.55692 +L 4.427,5.55692,4.5553,5.373672 +L 4.5553,5.373672,4.6674,5.181387 +L 4.6674,5.181387,4.7652,4.979926 +L 4.7652,4.979926,4.8411,4.769426 +L 4.8411,4.769426,4.9028,4.549825 +L 4.9028,4.549825,4.9473,4.321115 +L 4.9473,4.321115,4.9717,4.083366 +L 4.9717,4.083366,4.0157,4.083366 +L 4.0157,4.083366,3.9854,4.262624 +L 3.9854,4.262624,3.9428,4.42822 +L 3.9428,4.42822,3.8969,4.580226 +L 3.8969,4.580226,3.842,4.718503 +L 3.842,4.718503,3.7803,4.843048 +L 3.7803,4.843048,3.7131,4.954008 +L 3.7131,4.954008,3.6335,5.051306 +L 3.6335,5.051306,3.5472,5.134872 +L 3.5472,5.134872,3.4531,5.206883 +L 3.4531,5.206883,3.3511,5.269226 +L 3.3511,5.269226,3.2345,5.321975 +L 3.2345,5.321975,3.1039,5.365196 +L 3.1039,5.365196,2.9655,5.398749 +L 2.9655,5.398749,2.8187,5.422776 +L 2.8187,5.422776,2.6573,5.437136 +L 2.6573,5.437136,2.4836,5.441969 +L 2.4836,5.441969,2.3312,5.433634 +L 2.3312,5.433634,2.1849,5.408836 +L 2.1849,5.408836,2.0409,5.367437 +L 2.0409,5.367437,1.9075,5.309437 +L 1.9075,5.309437,1.7764,5.234904 +L 1.7764,5.234904,1.6441,5.143768 +L 1.6441,5.143768,1.5253,5.036105 +L 1.5253,5.036105,1.4043,4.911908 +L 1.4043,4.911908,1.2953,4.768936 +L 1.2953,4.768936,1.2039,4.605024 +L 1.2039,4.605024,1.1241,4.420234 +L 1.1241,4.420234,1.0624,4.21443 +L 1.0624,4.21443,1.0081,3.987749 +L 1.0081,3.987749,0.9728,3.740058 +L 0.9728,3.740058,0.9501,3.47149 +L 0.9501,3.47149,0.9461,3.182047 +L 0.9461,3.182047,0.9501,2.916422 +L 0.9501,2.916422,0.9728,2.667607 +L 0.9728,2.667607,1.0097,2.435535 +L 1.0097,2.435535,1.0624,2.220204 +L 1.0624,2.220204,1.1319,2.021685 +L 1.1319,2.021685,1.2134,1.839978 +L 1.2134,1.839978,1.3124,1.67494 +L 1.3124,1.67494,1.4267,1.526786 +L 1.4267,1.526786,1.5474,1.395657 +L 1.5474,1.395657,1.6747,1.282037 +L 1.6747,1.282037,1.801,1.18593 +L 1.801,1.18593,1.9364,1.107265 +L 1.9364,1.107265,2.0756,1.04611 +L 2.0756,1.04611,2.2191,1.0024 +L 2.2191,1.0024,2.3681,0.976203 +L 2.3681,0.976203,2.5217,0.967447 +L 2.5217,0.967447,2.6696,0.97123 +L 2.6696,0.97123,2.8069,0.982578 +L 2.8069,0.982578,2.9431,1.001421 +L 2.9431,1.001421,3.0664,1.0279 +L 3.0664,1.0279,3.1852,1.061941 +L 3.1852,1.061941,3.2973,1.103482 +L 3.2973,1.103482,3.4037,1.152585 +L 3.4037,1.152585,3.5024,1.209326 +L 3.5024,1.209326,3.5943,1.277064 +L 3.5943,1.277064,3.6811,1.359442 +L 3.6811,1.359442,3.7602,1.456319 +L 3.7602,1.456319,3.8378,1.567837 +L 3.8378,1.567837,3.907,1.693926 +L 3.907,1.693926,3.9627,1.834654 +L 3.9627,1.834654,4.0202,1.989883 +L 4.0202,1.989883,4.0695,2.159752 +L 4.0695,2.159752,5.0681,2.159752 +L 5.0681,2.159752,5.0266,1.923686 +L 5.0266,1.923686,4.97,1.699247 +L 4.97,1.699247,4.8941,1.486368 +L 4.8941,1.486368,4.8081,1.28512 +L 4.8081,1.28512,4.6994,1.095497 +L 4.6994,1.095497,4.575,0.917432 +L 4.575,0.917432,4.4391,0.750994 +L 4.4391,0.750994,4.2808,0.596115 +L 4.2808,0.596115,4.1098,0.45644 +L 4.1098,0.45644,3.9283,0.335325 +L 3.9283,0.335325,3.726,0.232843 +L 3.726,0.232843,3.513,0.148994 +L 3.513,0.148994,3.2872,0.083849 +L 3.2872,0.083849,3.044,0.037266 +L 3.044,0.037266,2.7901,0.009316 +L 2.7901,0.009316,2.5217,0 +L 2.5217,0,2.2465,0.01513 +L 2.2465,0.01513,1.9857,0.060592 +L 1.9857,0.060592,1.7383,0.136315 +L 1.7383,0.136315,1.5012,0.2423 +L 1.5012,0.2423,1.281,0.378615 +L 1.281,0.378615,1.075,0.54526 +L 1.075,0.54526,0.882,0.74217 +L 0.882,0.74217,0.7004,0.969338 +L 0.7004,0.969338,0.5343,1.216121 +L 0.5343,1.216121,0.3916,1.47187 +L 0.3916,1.47187,0.2723,1.736446 +L 0.2723,1.736446,0.1731,2.009987 +L 0.1731,2.009987,0.1008,2.292495 +L 0.1008,2.292495,0.0442,2.583826 +L 0.0442,2.583826,0.0106,2.884129 +L 0.0106,2.884129,-0.0001,3.193323 + +[d] 118 +L 2.1269,6.409414,2.2984,6.398839 +L 2.2984,6.398839,2.4665,6.367247 +L 2.4665,6.367247,2.6304,6.3145 +L 2.6304,6.3145,2.7859,6.240738 +L 2.7859,6.240738,2.9429,6.145892 +L 2.9429,6.145892,3.0886,6.029961 +L 3.0886,6.029961,3.2275,5.892945 +L 3.2275,5.892945,3.3609,5.734842 +L 3.3609,5.734842,3.3609,8.984837 +L 3.3609,8.984837,4.2475,8.984837 +L 4.2475,8.984837,4.2475,-0.022696 +L 4.2475,-0.022696,3.3609,-0.022696 +L 3.3609,-0.022696,3.3609,0.472408 +L 3.3609,0.472408,3.2275,0.361663 +L 3.2275,0.361663,3.0886,0.265696 +L 3.0886,0.265696,2.9429,0.184509 +L 2.9429,0.184509,2.7935,0.118103 +L 2.7935,0.118103,2.638,0.066404 +L 2.638,0.066404,2.4766,0.029491 +L 2.4766,0.029491,2.313,0.007355 +L 2.313,0.007355,2.1432,0 +L 2.1432,0,1.9246,0.026546 +L 1.9246,0.026546,1.719,0.082728 +L 1.719,0.082728,1.5161,0.168398 +L 1.5161,0.168398,1.3222,0.283626 +L 1.3222,0.283626,1.1345,0.42849 +L 1.1345,0.42849,0.9608,0.602842 +L 0.9608,0.602842,0.7898,0.806755 +L 0.7898,0.806755,0.6262,1.040228 +L 0.6262,1.040228,0.4827,1.293245 +L 0.4827,1.293245,0.3505,1.555999 +L 0.3505,1.555999,0.2474,1.82835 +L 0.2474,1.82835,0.1555,2.110367 +L 0.1555,2.110367,0.0893,2.402121 +L 0.0893,2.402121,0.0417,2.703402 +L 0.0417,2.703402,0.0098,3.01442 +L 0.0098,3.01442,-0.0003,3.335034 +L -0.0003,3.335034,0.0098,3.659221 +L 0.0098,3.659221,0.0417,3.969258 +L 0.0417,3.969258,0.0983,4.265284 +L 0.0983,4.265284,0.1706,4.547233 +L 0.1706,4.547233,0.2675,4.8151 +L 0.2675,4.8151,0.3835,5.068958 +L 0.3835,5.068958,0.522,5.308806 +L 0.522,5.308806,0.6811,5.534504 +L 0.6811,5.534504,0.8543,5.739608 +L 0.8543,5.739608,1.028,5.917252 +L 1.028,5.917252,1.2034,6.067647 +L 1.2034,6.067647,1.3872,6.190653 +L 1.3872,6.190653,1.5677,6.28634 +L 1.5677,6.28634,1.7515,6.354708 +L 1.7515,6.354708,1.9361,6.395757 +L 1.9361,6.395757,2.1269,6.409414 +L 2.2121,5.441969,2.0927,5.433561 +L 2.0927,5.433561,1.9734,5.408486 +L 1.9734,5.408486,1.8546,5.366594 +L 1.8546,5.366594,1.7436,5.308036 +L 1.7436,5.308036,1.6371,5.232663 +L 1.6371,5.232663,1.5307,5.140618 +L 1.5307,5.140618,1.4287,5.031762 +L 1.4287,5.031762,1.3306,4.906234 +L 1.3306,4.906234,1.2409,4.764525 +L 1.2409,4.764525,1.1642,4.607125 +L 1.1642,4.607125,1.0922,4.434174 +L 1.0922,4.434174,1.0398,4.245602 +L 1.0398,4.245602,0.9983,4.041409 +L 0.9983,4.041409,0.9703,3.821595 +L 0.9703,3.821595,0.9479,3.58616 +L 0.9479,3.58616,0.9437,3.335034 +L 0.9437,3.335034,0.9479,3.087481 +L 0.9479,3.087481,0.9664,2.851134 +L 0.9664,2.851134,0.9927,2.625928 +L 0.9927,2.625928,1.0319,2.411998 +L 1.0319,2.411998,1.0846,2.209274 +L 1.0846,2.209274,1.144,2.017832 +L 1.144,2.017832,1.2202,1.837526 +L 1.2202,1.837526,1.3023,1.668498 +L 1.3023,1.668498,1.3937,1.51453 +L 1.3937,1.51453,1.4881,1.379476 +L 1.4881,1.379476,1.5884,1.263404 +L 1.5884,1.263404,1.6949,1.166316 +L 1.6949,1.166316,1.7974,1.088142 +L 1.7974,1.088142,1.9095,1.02895 +L 1.9095,1.02895,2.0235,0.988742 +L 2.0235,0.988742,2.1404,0.967447 +L 2.1404,0.967447,2.2592,0.970599 +L 2.2592,0.970599,2.3701,0.979986 +L 2.3701,0.979986,2.4766,0.995607 +L 2.4766,0.995607,2.5786,1.017532 +L 2.5786,1.017532,2.6699,1.045692 +L 2.6699,1.045692,2.7568,1.080086 +L 2.7568,1.080086,2.8364,1.120784 +L 2.8364,1.120784,2.9109,1.167715 +L 2.9109,1.167715,2.9796,1.220955 +L 2.9796,1.220955,3.0471,1.280424 +L 3.0471,1.280424,3.111,1.346132 +L 3.111,1.346132,3.1687,1.418073 +L 3.1687,1.418073,3.2219,1.496317 +L 3.2219,1.496317,3.2724,1.580867 +L 3.2724,1.580867,3.3217,1.67158 +L 3.3217,1.67158,3.3609,1.768598 +L 3.3609,1.768598,3.3609,3.675193 +L 3.3609,3.675193,3.3382,3.838407 +L 3.3382,3.838407,3.3038,3.998329 +L 3.3038,3.998329,3.2642,4.154886 +L 3.2642,4.154886,3.2175,4.308224 +L 3.2175,4.308224,3.1687,4.458198 +L 3.1687,4.458198,3.1054,4.604881 +L 3.1054,4.604881,3.0415,4.748202 +L 3.0415,4.748202,2.9675,4.888302 +L 2.9675,4.888302,2.8885,5.01803 +L 2.8885,5.01803,2.8061,5.130529 +L 2.8061,5.130529,2.7204,5.225658 +L 2.7204,5.225658,2.6257,5.303552 +L 2.6257,5.303552,2.5299,5.364075 +L 2.5299,5.364075,2.4318,5.407365 +L 2.4318,5.407365,2.3231,5.433283 +L 2.3231,5.433283,2.2121,5.441969 + +[e] 132 +L -0.0006,3.193323,0.0095,3.507913 +L 0.0095,3.507913,0.0415,3.812769 +L 0.0415,3.812769,0.0955,4.108026 +L 0.0955,4.108026,0.1732,4.393686 +L 0.1732,4.393686,0.2673,4.669747 +L 0.2673,4.669747,0.3858,4.936145 +L 0.3858,4.936145,0.524,5.192875 +L 0.524,5.192875,0.6856,5.440078 +L 0.6856,5.440078,0.8669,5.667247 +L 0.8669,5.667247,1.0575,5.864155 +L 1.0575,5.864155,1.2631,6.030729 +L 1.2631,6.030729,1.4817,6.167047 +L 1.4817,6.167047,1.714,6.273101 +L 1.714,6.273101,1.9541,6.348824 +L 1.9541,6.348824,2.2102,6.394216 +L 2.2102,6.394216,2.4848,6.409414 +L 2.4848,6.409414,2.7566,6.396808 +L 2.7566,6.396808,3.0172,6.359119 +L 3.0172,6.359119,3.2676,6.296357 +L 3.2676,6.296357,3.4971,6.208376 +L 3.4971,6.208376,3.7204,6.095317 +L 3.7204,6.095317,3.9255,5.95711 +L 3.9255,5.95711,4.1214,5.793824 +L 4.1214,5.793824,4.2976,5.605394 +L 4.2976,5.605394,4.461,5.392935 +L 4.461,5.392935,4.6031,5.15764 +L 4.6031,5.15764,4.7191,4.89944 +L 4.7191,4.89944,4.8177,4.618333 +L 4.8177,4.618333,4.895,4.31432 +L 4.895,4.31432,4.9466,3.987471 +L 4.9466,3.987471,4.9791,3.637786 +L 4.9791,3.637786,4.9897,3.265123 +L 4.9897,3.265123,0.9409,3.265123 +L 0.9409,3.265123,0.9409,3.182047 +L 0.9409,3.182047,0.951,2.916422 +L 0.951,2.916422,0.9734,2.667607 +L 0.9734,2.667607,1.0126,2.435535 +L 1.0126,2.435535,1.0619,2.220204 +L 1.0619,2.220204,1.1292,2.021685 +L 1.1292,2.021685,1.211,1.839978 +L 1.211,1.839978,1.3096,1.67494 +L 1.3096,1.67494,1.4217,1.526786 +L 1.4217,1.526786,1.545,1.395657 +L 1.545,1.395657,1.6694,1.282037 +L 1.6694,1.282037,1.8028,1.18593 +L 1.8028,1.18593,1.9395,1.107265 +L 1.9395,1.107265,2.0785,1.04611 +L 2.0785,1.04611,2.2186,1.0024 +L 2.2186,1.0024,2.3677,0.976203 +L 2.3677,0.976203,2.519,0.967447 +L 2.519,0.967447,2.6647,0.97123 +L 2.6647,0.97123,2.8042,0.982578 +L 2.8042,0.982578,2.9387,1.001421 +L 2.9387,1.001421,3.0637,1.0279 +L 3.0637,1.0279,3.1853,1.061941 +L 3.1853,1.061941,3.299,1.103482 +L 3.299,1.103482,3.4038,1.152585 +L 3.4038,1.152585,3.5019,1.209326 +L 3.5019,1.209326,3.5944,1.277064 +L 3.5944,1.277064,3.684,1.359442 +L 3.684,1.359442,3.7628,1.456319 +L 3.7628,1.456319,3.835,1.567837 +L 3.835,1.567837,3.9009,1.693926 +L 3.9009,1.693926,3.9639,1.834654 +L 3.9639,1.834654,4.0175,1.989883 +L 4.0175,1.989883,4.0707,2.159752 +L 4.0707,2.159752,5.0629,2.159752 +L 5.0629,2.159752,5.0239,1.923686 +L 5.0239,1.923686,4.9673,1.699247 +L 4.9673,1.699247,4.895,1.486368 +L 4.895,1.486368,4.8054,1.28512 +L 4.8054,1.28512,4.6964,1.095497 +L 4.6964,1.095497,4.5778,0.917432 +L 4.5778,0.917432,4.4389,0.750994 +L 4.4389,0.750994,4.2808,0.596115 +L 4.2808,0.596115,4.1116,0.45644 +L 4.1116,0.45644,3.9233,0.335325 +L 3.9233,0.335325,3.7249,0.232843 +L 3.7249,0.232843,3.5142,0.148994 +L 3.5142,0.148994,3.2867,0.083849 +L 3.2867,0.083849,3.0435,0.037266 +L 3.0435,0.037266,2.7913,0.009316 +L 2.7913,0.009316,2.519,0 +L 2.519,0,2.2466,0.01513 +L 2.2466,0.01513,1.9866,0.060592 +L 1.9866,0.060592,1.7339,0.136315 +L 1.7339,0.136315,1.5002,0.2423 +L 1.5002,0.2423,1.2827,0.378615 +L 1.2827,0.378615,1.0726,0.54526 +L 1.0726,0.54526,0.8765,0.74217 +L 0.8765,0.74217,0.6952,0.969338 +L 0.6952,0.969338,0.5346,1.216121 +L 0.5346,1.216121,0.3906,1.47187 +L 0.3906,1.47187,0.2695,1.736446 +L 0.2695,1.736446,0.176,2.009987 +L 0.176,2.009987,0.0955,2.292495 +L 0.0955,2.292495,0.0415,2.583826 +L 0.0415,2.583826,0.0095,2.884129 +L 0.0095,2.884129,-0.0006,3.193323 +L 2.5212,5.441969,2.3677,5.435385 +L 2.3677,5.435385,2.2287,5.415701 +L 2.2287,5.415701,2.0981,5.382918 +L 2.0981,5.382918,1.9709,5.337036 +L 1.9709,5.337036,1.8499,5.278055 +L 1.8499,5.278055,1.7434,5.205974 +L 1.7434,5.205974,1.6448,5.120792 +L 1.6448,5.120792,1.547,5.022444 +L 1.547,5.022444,1.4651,4.916462 +L 1.4651,4.916462,1.387,4.808234 +L 1.387,4.808234,1.3172,4.697768 +L 1.3172,4.697768,1.2502,4.58499 +L 1.2502,4.58499,1.1962,4.470039 +L 1.1962,4.470039,1.1482,4.352847 +L 1.1482,4.352847,1.1087,4.233413 +L 1.1087,4.233413,1.0726,4.111668 +L 1.0726,4.111668,3.9679,4.111668 +L 3.9679,4.111668,3.9362,4.260382 +L 3.9362,4.260382,3.8986,4.401179 +L 3.8986,4.401179,3.8521,4.534204 +L 3.8521,4.534204,3.7944,4.659452 +L 3.7944,4.659452,3.7328,4.776782 +L 3.7328,4.776782,3.6633,4.88634 +L 3.6633,4.88634,3.5845,4.988052 +L 3.5845,4.988052,3.4971,5.081987 +L 3.4971,5.081987,3.4038,5.166326 +L 3.4038,5.166326,3.3013,5.239458 +L 3.3013,5.239458,3.1926,5.301311 +L 3.1926,5.301311,3.0738,5.351956 +L 3.0738,5.351956,2.9505,5.391324 +L 2.9505,5.391324,2.8137,5.419414 +L 2.8137,5.419414,2.6703,5.436295 +L 2.6703,5.436295,2.5212,5.441969 + +[f] 60 +L 2.8858,8.102429,2.7589,8.095217 +L 2.7589,8.095217,2.6403,8.073572 +L 2.6403,8.073572,2.5305,8.037496 +L 2.5305,8.037496,2.4319,7.986921 +L 2.4319,7.986921,2.3433,7.921985 +L 2.3433,7.921985,2.2559,7.84255 +L 2.2559,7.84255,2.1819,7.748754 +L 2.1819,7.748754,2.1147,7.640458 +L 2.1147,7.640458,2.0558,7.519341 +L 2.0558,7.519341,2.0037,7.387089 +L 2.0037,7.387089,1.9589,7.24363 +L 1.9589,7.24363,1.9241,7.088964 +L 1.9241,7.088964,1.8972,6.923086 +L 1.8972,6.923086,1.8771,6.746002 +L 1.8771,6.746002,1.8653,6.55778 +L 1.8653,6.55778,1.8597,6.358351 +L 1.8597,6.358351,1.8597,6.288442 +L 1.8597,6.288442,3.6109,6.288442 +L 3.6109,6.288442,3.6109,5.441969 +L 3.6109,5.441969,1.8597,5.441969 +L 1.8597,5.441969,1.8597,0.056667 +L 1.8597,0.056667,0.9726,0.056667 +L 0.9726,0.056667,0.9726,5.441969 +L 0.9726,5.441969,-0.0002,5.441969 +L -0.0002,5.441969,-0.0002,6.288442 +L -0.0002,6.288442,0.9726,6.288442 +L 0.9726,6.288442,0.9726,6.358351 +L 0.9726,6.358351,0.9827,6.694656 +L 0.9827,6.694656,1.0096,7.008126 +L 1.0096,7.008126,1.0527,7.298687 +L 1.0527,7.298687,1.1144,7.566486 +L 1.1144,7.566486,1.1934,7.811516 +L 1.1934,7.811516,1.2898,8.033644 +L 1.2898,8.033644,1.4041,8.233003 +L 1.4041,8.233003,1.5375,8.409527 +L 1.5375,8.409527,1.6843,8.564263 +L 1.6843,8.564263,1.8322,8.698407 +L 1.8322,8.698407,1.9914,8.811958 +L 1.9914,8.811958,2.155,8.904776 +L 2.155,8.904776,2.3254,8.977064 +L 2.3254,8.977064,2.5042,9.028618 +L 2.5042,9.028618,2.6896,9.059582 +L 2.6896,9.059582,2.8858,9.069879 +L 2.8858,9.069879,3.0337,9.066727 +L 3.0337,9.066727,3.1803,9.05727 +L 3.1803,9.05727,3.3167,9.041439 +L 3.3167,9.041439,3.4512,9.019371 +L 3.4512,9.019371,3.5717,8.990934 +L 3.5717,8.990934,3.6827,8.956189 +L 3.6827,8.956189,3.7914,8.915138 +L 3.7914,8.915138,3.8889,8.86772 +L 3.8889,8.86772,3.8889,7.760452 +L 3.8889,7.760452,3.7578,7.840588 +L 3.7578,7.840588,3.6311,7.910077 +L 3.6311,7.910077,3.5,7.968846 +L 3.5,7.968846,3.3733,8.016972 +L 3.3733,8.016972,3.25,8.05438 +L 3.25,8.05438,3.1262,8.081067 +L 3.1262,8.081067,3.0068,8.097108 +L 3.0068,8.097108,2.8858,8.102429 + +[g] 331 +L 0.5919,4.480126,0.5966,4.662602 +L 0.5966,4.662602,0.6235,4.840598 +L 0.6235,4.840598,0.6639,5.01404 +L 0.6639,5.01404,0.7233,5.183068 +L 0.7233,5.183068,0.7995,5.347543 +L 0.7995,5.347543,0.8914,5.507605 +L 0.8914,5.507605,0.9998,5.663114 +L 0.9998,5.663114,1.1267,5.81421 +L 1.1267,5.81421,1.268,5.953678 +L 1.268,5.953678,1.4173,6.074582 +L 1.4173,6.074582,1.5801,6.176924 +L 1.5801,6.176924,1.7488,6.260562 +L 1.7488,6.260562,1.9292,6.325708 +L 1.9292,6.325708,2.1198,6.37222 +L 2.1198,6.37222,2.3204,6.4001 +L 2.3204,6.4001,2.5311,6.409414 +L 2.5311,6.409414,2.6746,6.405282 +L 2.6746,6.405282,2.8113,6.393093 +L 2.8113,6.393093,2.9402,6.372711 +L 2.9402,6.372711,3.0668,6.344201 +L 3.0668,6.344201,3.1901,6.307565 +L 3.1901,6.307565,3.3123,6.262734 +L 3.3123,6.262734,3.4255,6.209777 +L 3.4255,6.209777,3.5376,6.148624 +L 3.5376,6.148624,3.7158,6.239475 +L 3.7158,6.239475,3.8984,6.322136 +L 3.8984,6.322136,4.0823,6.396528 +L 4.0823,6.396528,4.2661,6.462794 +L 4.2661,6.462794,4.4566,6.520794 +L 4.4566,6.520794,4.6471,6.570599 +L 4.6471,6.570599,4.836,6.612208 +L 4.836,6.612208,5.0265,6.645622 +L 5.0265,6.645622,5.0265,5.816099 +L 5.0265,5.816099,4.8903,5.819744 +L 4.8903,5.819744,4.7558,5.819391 +L 4.7558,5.819391,4.6247,5.81498 +L 4.6247,5.81498,4.4981,5.806642 +L 4.4981,5.806642,4.3748,5.794246 +L 4.3748,5.794246,4.2504,5.777782 +L 4.2504,5.777782,4.1299,5.7574 +L 4.1299,5.7574,4.0128,5.732953 +L 4.0128,5.732953,4.1271,5.591314 +L 4.1271,5.591314,4.2196,5.44526 +L 4.2196,5.44526,4.3008,5.294656 +L 4.3008,5.294656,4.3653,5.139636 +L 4.3653,5.139636,4.4196,4.980066 +L 4.4196,4.980066,4.4566,4.816011 +L 4.4566,4.816011,4.479,4.647473 +L 4.479,4.647473,4.4855,4.474452 +L 4.4855,4.474452,4.4773,4.289803 +L 4.4773,4.289803,4.449,4.110057 +L 4.449,4.110057,4.4101,3.935074 +L 4.4101,3.935074,4.3501,3.764923 +L 4.3501,3.764923,4.2756,3.59968 +L 4.2756,3.59968,4.1831,3.439268 +L 4.1831,3.439268,4.0696,3.283618 +L 4.0696,3.283618,3.9455,3.132873 +L 3.9455,3.132873,3.8049,2.993826 +L 3.8049,2.993826,3.6564,2.873271 +L 3.6564,2.873271,3.495,2.77135 +L 3.495,2.77135,3.3291,2.687922 +L 3.3291,2.687922,3.1453,2.622986 +L 3.1453,2.622986,2.9604,2.576614 +L 2.9604,2.576614,2.7566,2.548804 +L 2.7566,2.548804,2.5513,2.539558 +L 2.5513,2.539558,2.4672,2.540818 +L 2.4672,2.540818,2.3876,2.544671 +L 2.3876,2.544671,2.3142,2.550976 +L 2.3142,2.550976,2.2363,2.559872 +L 2.2363,2.559872,2.1601,2.57129 +L 2.1601,2.57129,2.0884,2.5853 +L 2.0884,2.5853,2.0186,2.601761 +L 2.0186,2.601761,1.95,2.620814 +L 1.95,2.620814,1.892,2.566456 +L 1.892,2.566456,1.8435,2.515741 +L 1.8435,2.515741,1.8059,2.468666 +L 1.8059,2.468666,1.7712,2.425238 +L 1.7712,2.425238,1.7432,2.38552 +L 1.7432,2.38552,1.7264,2.349445 +L 1.7264,2.349445,1.7146,2.317012 +L 1.7146,2.317012,1.7118,2.28822 +L 1.7118,2.28822,1.7163,2.261533 +L 1.7163,2.261533,1.7342,2.235195 +L 1.7342,2.235195,1.7608,2.209206 +L 1.7608,2.209206,1.8023,2.183638 +L 1.8023,2.183638,1.853,2.158421 +L 1.853,2.158421,1.9191,2.133621 +L 1.9191,2.133621,1.9909,2.109176 +L 1.9909,2.109176,2.0789,2.08515 +L 2.0789,2.08515,2.2711,2.035555 +L 2.2711,2.036676,2.4941,1.98568 +L 2.4941,1.986658,2.7351,1.934264 +L 2.7351,1.935102,3.1386,1.853147 +L 3.1386,1.853846,3.2725,1.823306 +L 3.2725,1.823306,3.4087,1.790313 +L 3.4087,1.790313,3.542,1.754936 +L 3.542,1.754936,3.6788,1.717112 +L 3.6788,1.717112,3.8119,1.676834 +L 3.8119,1.676834,3.9455,1.634174 +L 3.9455,1.634174,4.0744,1.58913 +L 4.0744,1.58913,4.2055,1.539678 +L 4.2055,1.539678,4.3277,1.483846 +L 4.3277,1.483846,4.4387,1.421645 +L 4.4387,1.421645,4.5451,1.353137 +L 4.5451,1.353137,4.6455,1.278323 +L 4.6455,1.278323,4.7368,1.197068 +L 4.7368,1.197068,4.8209,1.109504 +L 4.8209,1.109504,4.8976,1.015641 +L 4.8976,1.015641,4.9666,0.915681 +L 4.9666,0.915681,5.0265,0.809977 +L 5.0265,0.809977,5.0786,0.698459 +L 5.0786,0.698459,5.1201,0.581267 +L 5.1201,0.581267,5.1526,0.458261 +L 5.1526,0.458261,5.1719,0.329511 +L 5.1719,0.329511,5.1896,0.195016 +L 5.1896,0.195016,5.1918,0.054778 +L 5.1918,0.054778,5.1795,-0.10038 +L 5.1795,-0.10038,5.147,-0.249447 +L 5.147,-0.249447,5.0938,-0.392345 +L 5.0938,-0.392345,5.0215,-0.52908 +L 5.0215,-0.52908,4.9214,-0.659722 +L 4.9214,-0.659722,4.8029,-0.784199 +L 4.8029,-0.784199,4.6623,-0.902512 +L 4.6623,-0.902512,4.5003,-1.014732 +L 4.5003,-1.014732,4.3201,-1.117002 +L 4.3201,-1.117002,4.117,-1.205684 +L 4.117,-1.205684,3.9018,-1.280706 +L 3.9018,-1.280706,3.6631,-1.342072 +L 3.6631,-1.342072,3.4087,-1.389845 +L 3.4087,-1.389845,3.1408,-1.423887 +L 3.1408,-1.423887,2.8483,-1.444411 +L 2.8483,-1.444411,2.5412,-1.451206 +L 2.5412,-1.451206,2.2487,-1.444411 +L 2.2487,-1.444411,1.9763,-1.424027 +L 1.9763,-1.424027,1.7185,-1.390053 +L 1.7185,-1.390053,1.4762,-1.34256 +L 1.4762,-1.34256,1.25,-1.281407 +L 1.25,-1.281407,1.0449,-1.206735 +L 1.0449,-1.206735,0.8522,-1.118473 +L 0.8522,-1.118473,0.6728,-1.016622 +L 0.6728,-1.016622,0.5154,-0.904896 +L 0.5154,-0.904896,0.3781,-0.787001 +L 0.3781,-0.787001,0.2649,-0.663014 +L 0.2649,-0.663014,0.1685,-0.532863 +L 0.1685,-0.532863,0.0967,-0.39662 +L 0.0967,-0.39662,0.0418,-0.254138 +L 0.0418,-0.254138,0.0093,-0.105564 +L 0.0093,-0.105564,-0.0002,0.049104 +L -0.0002,0.049104,0.0054,0.163845 +L 0.0054,0.163845,0.0278,0.275573 +L 0.0278,0.275573,0.0542,0.384289 +L 0.0542,0.384289,0.099,0.490063 +L 0.099,0.490063,0.1584,0.592895 +L 0.1584,0.592895,0.2276,0.692715 +L 0.2276,0.692715,0.3063,0.78952 +L 0.3063,0.78952,0.4005,0.883388 +L 0.4005,0.883388,0.5047,0.973822 +L 0.5047,0.973822,0.6162,1.060542 +L 0.6162,1.060542,0.73,1.14355 +L 0.73,1.14355,0.8544,1.222776 +L 0.8544,1.222776,0.9833,1.298219 +L 0.9833,1.298219,1.1167,1.369949 +L 1.1167,1.369949,1.2579,1.437966 +L 1.2579,1.437966,1.4069,1.502199 +L 1.4069,1.502199,1.3473,1.536035 +L 1.3473,1.536035,1.2949,1.572248 +L 1.2949,1.572248,1.2478,1.610988 +L 1.2478,1.610988,1.2046,1.652176 +L 1.2046,1.652176,1.1615,1.695817 +L 1.1615,1.695817,1.1245,1.741839 +L 1.1245,1.741839,1.0926,1.790383 +L 1.0926,1.790383,1.0573,1.841379 +L 1.0573,1.841379,1.0309,1.893703 +L 1.0309,1.893703,1.0102,1.946172 +L 1.0102,1.946172,0.99,1.998919 +L 0.99,1.998919,0.971,2.051806 +L 0.971,2.051806,0.9584,2.104973 +L 0.9584,2.104973,0.9505,2.158281 +L 0.9505,2.158281,0.9469,2.211798 +L 0.9469,2.211798,0.9469,2.265596 +L 0.9469,2.265596,0.9505,2.333053 +L 0.9505,2.333053,0.9693,2.405064 +L 0.9693,2.405064,0.9998,2.481627 +L 0.9998,2.481627,1.0475,2.562674 +L 1.0475,2.562674,1.1043,2.648344 +L 1.1043,2.648344,1.1716,2.738567 +L 1.1716,2.738567,1.2534,2.833273 +L 1.2534,2.833273,1.3473,2.932603 +L 1.3473,2.932603,1.2859,2.989202 +L 1.2859,2.990951,1.1884,3.081597 +L 1.1884,3.082788,1.0701,3.207475 +L 1.0701,3.208246,0.9216,3.366627 +L 0.9216,3.367187,0.8421,3.461473 +L 0.8421,3.461473,0.7748,3.568578 +L 0.7748,3.568578,0.7177,3.688432 +L 0.7177,3.688432,0.6728,3.821173 +L 0.6728,3.821173,0.6336,3.966667 +L 0.6336,3.966667,0.6089,4.125048 +L 0.6089,4.125048,0.5944,4.296177 +L 0.5944,4.296177,0.5919,4.480126 +L 1.5336,4.474452,1.5358,4.370079 +L 1.5358,4.370079,1.5482,4.268508 +L 1.5482,4.268508,1.5706,4.169809 +L 1.5706,4.169809,1.5994,4.07391 +L 1.5994,4.07391,1.6345,3.980816 +L 1.6345,3.980816,1.6813,3.890593 +L 1.6813,3.890593,1.7342,3.803242 +L 1.7342,3.803242,1.7936,3.718623 +L 1.7936,3.718623,1.8631,3.640726 +L 1.8631,3.640726,1.939,3.573131 +L 1.939,3.573131,2.0209,3.515971 +L 2.0209,3.515971,2.1108,3.469248 +L 2.1108,3.469248,2.2038,3.432823 +L 2.2038,3.432823,2.3058,3.406903 +L 2.3058,3.406903,2.4179,3.391284 +L 2.4179,3.391284,2.5311,3.3861 +L 2.5311,3.3861,2.6477,3.391284 +L 2.6477,3.391284,2.7566,3.406903 +L 2.7566,3.406903,2.8584,3.432823 +L 2.8584,3.432823,2.9545,3.469248 +L 2.9545,3.469248,3.0444,3.515971 +L 3.0444,3.515971,3.1285,3.573131 +L 3.1285,3.573131,3.2024,3.640726 +L 3.2024,3.640726,3.2725,3.718623 +L 3.2725,3.718623,3.3339,3.803382 +L 3.3339,3.803382,3.3905,3.891294 +L 3.3905,3.891294,3.4356,3.982426 +L 3.4356,3.982426,3.4726,4.076712 +L 3.4726,4.076712,3.5051,4.174222 +L 3.5051,4.174222,3.5252,4.274882 +L 3.5252,4.274882,3.5376,4.378765 +L 3.5376,4.378765,3.5398,4.4858 +L 3.5398,4.4858,3.5376,4.601241 +L 3.5376,4.601241,3.5252,4.711358 +L 3.5252,4.711358,3.5051,4.816219 +L 3.5051,4.816219,3.4726,4.915691 +L 3.4726,4.915691,3.4356,5.009907 +L 3.4356,5.009907,3.3905,5.098729 +L 3.3905,5.098729,3.3339,5.182298 +L 3.3339,5.182298,3.2725,5.260542 +L 3.2725,5.260542,3.2024,5.331432 +L 3.2024,5.331432,3.1285,5.392795 +L 3.1285,5.392795,3.0444,5.444771 +L 3.0444,5.444771,2.9545,5.487291 +L 2.9545,5.487291,2.8584,5.520354 +L 2.8584,5.520354,2.7566,5.543959 +L 2.7566,5.543959,2.6477,5.558181 +L 2.6477,5.558181,2.5311,5.562874 +L 2.5311,5.562874,2.4179,5.558181 +L 2.4179,5.558181,2.3058,5.543959 +L 2.3058,5.543959,2.2038,5.520354 +L 2.2038,5.520354,2.1108,5.487291 +L 2.1108,5.487291,2.0209,5.444771 +L 2.0209,5.444771,1.939,5.392795 +L 1.939,5.392795,1.8631,5.331432 +L 1.8631,5.331432,1.7936,5.260542 +L 1.7936,5.260542,1.7342,5.182087 +L 1.7342,5.182087,1.6813,5.098026 +L 1.6813,5.098026,1.6345,5.008294 +L 1.6345,5.008294,1.5994,4.912889 +L 1.5994,4.912889,1.5706,4.811738 +L 1.5706,4.811738,1.5482,4.704984 +L 1.5482,4.704984,1.5358,4.592553 +L 1.5358,4.592553,1.5336,4.474452 +L 0.9469,0.090714,0.9505,0.002662 +L 0.9505,0.002662,0.9693,-0.079228 +L 0.9693,-0.079228,0.9998,-0.154808 +L 0.9998,-0.154808,1.0402,-0.224157 +L 1.0402,-0.224157,1.0998,-0.287271 +L 1.0998,-0.287271,1.1637,-0.344221 +L 1.1637,-0.344221,1.2439,-0.394869 +L 1.2439,-0.394869,1.3375,-0.439348 +L 1.3375,-0.439348,1.4417,-0.478085 +L 1.4417,-0.478085,1.5577,-0.51164 +L 1.5577,-0.51164,1.6922,-0.540078 +L 1.6922,-0.540078,1.8328,-0.563334 +L 1.8328,-0.563334,1.9892,-0.581407 +L 1.9892,-0.581407,2.1601,-0.594366 +L 2.1601,-0.594366,2.3462,-0.602074 +L 2.3462,-0.602074,2.5412,-0.604665 +L 2.5412,-0.604665,2.7566,-0.602074 +L 2.7566,-0.602074,2.9531,-0.594366 +L 2.9531,-0.594366,3.1408,-0.581407 +L 3.1408,-0.581407,3.3089,-0.563334 +L 3.3089,-0.563334,3.4602,-0.540078 +L 3.4602,-0.540078,3.6048,-0.51164 +L 3.6048,-0.51164,3.7264,-0.478085 +L 3.7264,-0.478085,3.8368,-0.439348 +L 3.8368,-0.439348,3.9338,-0.394869 +L 3.9338,-0.394869,4.0147,-0.344221 +L 4.0147,-0.344221,4.0907,-0.287271 +L 4.0907,-0.287271,4.1436,-0.224157 +L 4.1436,-0.224157,4.1913,-0.154808 +L 4.1913,-0.154808,4.2212,-0.079228 +L 4.2212,-0.079228,4.2403,0.002662 +L 4.2403,0.002662,4.2504,0.090714 +L 4.2504,0.090714,4.2403,0.218693 +L 4.2403,0.218693,4.2196,0.336305 +L 4.2196,0.336305,4.1831,0.443548 +L 4.1831,0.443548,4.1316,0.540426 +L 4.1316,0.540426,4.064,0.626869 +L 4.064,0.626869,3.9859,0.702872 +L 3.9859,0.702872,3.8914,0.768578 +L 3.8914,0.768578,3.785,0.823847 +L 3.785,0.823847,3.6664,0.87197 +L 3.6664,0.87197,3.5566,0.916309 +L 3.5566,0.916309,3.4462,0.9568 +L 3.4462,0.9568,3.3339,0.993435 +L 3.3339,0.993435,3.2333,1.026218 +L 3.2333,1.026218,3.1285,1.055219 +L 3.1285,1.055219,3.0298,1.080296 +L 3.0298,1.080296,2.8359,1.122186 +L 2.8359,1.120855,2.5759,1.17535 +L 2.5759,1.177174,2.4207,1.212759 +L 2.4207,1.213529,2.2834,1.248202 +L 2.2834,1.248974,2.1579,1.195527 +L 2.1579,1.195527,2.029,1.140886 +L 2.029,1.140886,1.9068,1.08506 +L 1.9068,1.08506,1.7858,1.028178 +L 1.7858,1.028178,1.6714,0.970039 +L 1.6714,0.970039,1.5605,0.910848 +L 1.5605,0.910848,1.454,0.850393 +L 1.454,0.850393,1.352,0.788892 +L 1.352,0.788892,1.2534,0.723604 +L 1.2534,0.723604,1.1716,0.652084 +L 1.1716,0.652084,1.1043,0.574192 +L 1.1043,0.574192,1.0475,0.490063 +L 1.0475,0.490063,0.9998,0.3997 +L 0.9998,0.3997,0.9693,0.302962 +L 0.9693,0.302962,0.9505,0.19999 +L 0.9505,0.19999,0.9469,0.090714 + +[h] 64 +L 2.2229,5.441969,2.0867,5.433914 +L 2.0867,5.433914,1.9601,5.409817 +L 1.9601,5.409817,1.8362,5.369677 +L 1.8362,5.369677,1.7188,5.313429 +L 1.7188,5.313429,1.6082,5.241209 +L 1.6082,5.241209,1.5017,5.152807 +L 1.5017,5.152807,1.4053,5.048434 +L 1.4053,5.048434,1.3112,4.92795 +L 1.3112,4.92795,1.2235,4.795137 +L 1.2235,4.795137,1.1475,4.653638 +L 1.1475,4.653638,1.0803,4.50345 +L 1.0803,4.50345,1.0265,4.344581 +L 1.0265,4.344581,0.976,4.177024 +L 0.976,4.177024,0.9368,4.000778 +L 0.9368,4.000778,0.9066,3.815851 +L 0.9066,3.815851,0.8875,3.622306 +L 0.8875,3.622306,0.8875,-0.026478 +L 0.8875,-0.026478,-0.0002,-0.026478 +L -0.0002,-0.026478,-0.0002,8.984837 +L -0.0002,8.984837,0.8875,8.984837 +L 0.8875,8.984837,0.8875,5.477834 +L 0.8875,5.477834,1.0657,5.696177 +L 1.0657,5.696177,1.2462,5.88538 +L 1.2462,5.88538,1.43,6.045512 +L 1.43,6.045512,1.6205,6.176504 +L 1.6205,6.176504,1.8135,6.278425 +L 1.8135,6.278425,2.0156,6.351206 +L 2.0156,6.351206,2.2145,6.394844 +L 2.2145,6.394844,2.423,6.409414 +L 2.423,6.409414,2.5872,6.401779 +L 2.5872,6.401779,2.7502,6.378805 +L 2.7502,6.378805,2.9083,6.340558 +L 2.9083,6.340558,3.0618,6.287041 +L 3.0618,6.287041,3.2154,6.218251 +L 3.2154,6.218251,3.3622,6.134124 +L 3.3622,6.134124,3.5034,6.034724 +L 3.5034,6.034724,3.6424,5.919984 +L 3.6424,5.919984,3.7713,5.784789 +L 3.7713,5.784789,3.8845,5.623955 +L 3.8845,5.623955,3.9767,5.437346 +L 3.9767,5.437346,4.056,5.225098 +L 4.056,5.225098,4.1131,4.987141 +L 4.1131,4.987141,4.1565,4.723546 +L 4.1565,4.723546,4.1812,4.434244 +L 4.1812,4.434244,4.1871,4.119233 +L 4.1871,4.119233,4.1871,-0.026478 +L 4.1871,-0.026478,3.3073,-0.026478 +L 3.3073,-0.026478,3.3073,4.119233 +L 3.3073,4.119233,3.3006,4.308926 +L 3.3006,4.308926,3.2879,4.482225 +L 3.2879,4.482225,3.268,4.639067 +L 3.268,4.639067,3.2355,4.779373 +L 3.2355,4.779373,3.1986,4.90336 +L 3.1986,4.90336,3.1515,5.010818 +L 3.1515,5.010818,3.0971,5.101879 +L 3.0971,5.101879,3.0355,5.176481 +L 3.0355,5.176481,2.961,5.238687 +L 2.961,5.238687,2.8791,5.292625 +L 2.8791,5.292625,2.7895,5.338224 +L 2.7895,5.338224,2.6953,5.375563 +L 2.6953,5.375563,2.5911,5.404633 +L 2.5911,5.404633,2.4751,5.425366 +L 2.4751,5.425366,2.3557,5.437766 +L 2.3557,5.437766,2.2229,5.441969 + +[i] 8 +L 0.8864,-0.020804,-0.0001,-0.020804 +L -0.0001,-0.020804,-0.0001,6.42826 +L -0.0001,6.42826,0.8864,6.42826 +L 0.8864,6.42826,0.8864,-0.020804 +L 0.8864,7.739648,-0.0592,7.739648 +L -0.0592,7.739648,-0.0592,8.82807 +L -0.0592,8.82807,0.8864,8.82807 +L 0.8864,8.82807,0.8864,7.739648 + +[j] 72 +L 1.7808,-0.241879,1.8907,-0.237186 +L 1.8907,-0.237186,1.9916,-0.223036 +L 1.9916,-0.223036,2.079,-0.1995 +L 2.079,-0.1995,2.163,-0.166506 +L 2.163,-0.166506,2.2322,-0.124127 +L 2.2322,-0.124127,2.2964,-0.072363 +L 2.2964,-0.072363,2.346,-0.011138 +L 2.346,-0.011138,2.388,0.059542 +L 2.388,0.059542,2.4231,0.141006 +L 2.4231,0.141006,2.4542,0.234944 +L 2.4542,0.234944,2.4808,0.341209 +L 2.4808,0.341209,2.5032,0.459872 +L 2.5032,0.459872,2.5169,0.590864 +L 2.5169,0.590864,2.5318,0.734254 +L 2.5318,0.734254,2.534,0.890043 +L 2.534,0.890043,2.5368,1.058161 +L 2.5368,1.058161,2.5368,6.396175 +L 2.5368,6.396175,3.4262,6.396175 +L 3.4262,6.396175,3.4262,1.058161 +L 3.4262,1.058161,3.418,0.74238 +L 3.418,0.74238,3.3959,0.450766 +L 3.3959,0.450766,3.3567,0.183318 +L 3.3567,0.183318,3.3074,-0.060032 +L 3.3074,-0.060032,3.2398,-0.279145 +L 3.2398,-0.279145,3.1603,-0.474162 +L 3.1603,-0.474162,3.0672,-0.645014 +L 3.0672,-0.645014,2.9599,-0.791764 +L 2.9599,-0.791764,2.8394,-0.917925 +L 2.8394,-0.917925,2.7077,-1.027339 +L 2.7077,-1.027339,2.5718,-1.119874 +L 2.5718,-1.119874,2.4275,-1.195667 +L 2.4275,-1.195667,2.274,-1.25451 +L 2.274,-1.25451,2.1165,-1.29661 +L 2.1165,-1.29661,1.9484,-1.321825 +L 1.9484,-1.321825,1.7719,-1.330231 +L 1.7719,-1.330231,1.5757,-1.322246 +L 1.5757,-1.322246,1.3919,-1.298079 +L 1.3919,-1.298079,1.216,-1.25787 +L 1.216,-1.25787,1.0479,-1.201551 +L 1.0479,-1.201551,0.8949,-1.12912 +L 0.8949,-1.12912,0.745,-1.040648 +L 0.745,-1.040648,0.6096,-0.936067 +L 0.6096,-0.936067,0.4858,-0.815371 +L 0.4858,-0.815371,0.372,-0.681577 +L 0.372,-0.681577,0.2726,-0.537626 +L 0.2726,-0.537626,0.1905,-0.383591 +L 0.1905,-0.383591,0.1243,-0.219464 +L 0.1243,-0.219464,0.0694,-0.045112 +L 0.0694,-0.045112,0.0324,0.139255 +L 0.0324,0.139255,0.01,0.333854 +L 0.01,0.333854,-0.0001,0.538537 +L -0.0001,0.538537,0.9459,0.538537 +L 0.9459,0.538537,0.9492,0.42793 +L 0.9492,0.42793,0.9621,0.326849 +L 0.9621,0.326849,0.9789,0.235084 +L 0.9789,0.235084,1.0067,0.152777 +L 1.0067,0.152777,1.0378,0.079926 +L 1.0378,0.079926,1.0748,0.016462 +L 1.0748,0.016462,1.1218,-0.037546 +L 1.1218,-0.037546,1.1767,-0.082238 +L 1.1767,-0.082238,1.2367,-0.119644 +L 1.2367,-0.119644,1.3012,-0.152079 +L 1.3012,-0.152079,1.3692,-0.179536 +L 1.3692,-0.179536,1.4446,-0.201954 +L 1.4446,-0.201954,1.5231,-0.219394 +L 1.5231,-0.219394,1.6024,-0.231864 +L 1.6024,-0.231864,1.6923,-0.239358 +L 1.6923,-0.239358,1.7808,-0.241879 +L 3.4839,7.739648,2.5368,7.739648 +L 2.5368,7.739648,2.5368,8.82807 +L 2.5368,8.82807,3.4839,8.82807 +L 3.4839,8.82807,3.4839,7.739648 + +[k] 12 +L 0.8879,-0.020804,-0.0003,-0.020804 +L -0.0003,-0.020804,-0.0003,8.979233 +L -0.0003,8.979233,0.8879,8.979233 +L 0.8879,8.979233,0.8879,3.08566 +L 0.8879,3.08566,2.9709,6.239338 +L 2.9709,6.239338,4.0379,6.239338 +L 4.0379,6.239338,2.5747,4.053107 +L 2.5747,4.053107,4.8314,-0.020804 +L 4.8314,-0.020804,3.7084,-0.020804 +L 3.7084,-0.020804,1.9723,3.168806 +L 1.9723,3.168806,0.8879,1.549415 +L 0.8879,1.549415,0.8879,-0.020804 + +[l] 6 +L 1.2351,-0.107735,0.3508,-0.107735 +L 0.3508,-0.107735,0.3508,7.981527 +L 0.3508,7.981527,-0.0006,7.981527 +L -0.0006,7.981527,-0.0006,8.948976 +L -0.0006,8.948976,1.2351,8.948976 +L 1.2351,8.948976,1.2351,-0.107735 + +[m] 123 +L 4.5776,5.441969,4.4616,5.434124 +L 4.4616,5.434124,4.3495,5.410585 +L 4.3495,5.410585,4.2487,5.37136 +L 4.2487,5.37136,4.1545,5.316509 +L 4.1545,5.316509,4.0646,5.245972 +L 4.0646,5.245972,3.9853,5.159742 +L 3.9853,5.159742,3.9113,5.05782 +L 3.9113,5.05782,3.8474,4.940278 +L 3.8474,4.940278,3.7846,4.811388 +L 3.7846,4.811388,3.7353,4.675633 +L 3.7353,4.675633,3.6883,4.533013 +L 3.6883,4.533013,3.6457,4.383528 +L 3.6457,4.383528,3.612,4.227179 +L 3.612,4.227179,3.584,4.063892 +L 3.584,4.063892,3.5577,3.893743 +L 3.5577,3.893743,3.5426,3.716732 +L 3.5426,3.716732,3.5426,-0.026478 +L 3.5426,-0.026478,2.6569,-0.026478 +L 2.6569,-0.026478,2.6569,4.119233 +L 2.6569,4.119233,2.6527,4.31411 +L 2.6527,4.31411,2.6426,4.491404 +L 2.6426,4.491404,2.6258,4.651256 +L 2.6258,4.651256,2.6033,4.793596 +L 2.6033,4.793596,2.5787,4.918423 +L 2.5787,4.918423,2.5439,5.025668 +L 2.5439,5.025668,2.5025,5.115471 +L 2.5025,5.115471,2.4543,5.187759 +L 2.4543,5.187759,2.4002,5.247373 +L 2.4002,5.247373,2.3433,5.298999 +L 2.3433,5.298999,2.2783,5.34264 +L 2.2783,5.34264,2.2088,5.378365 +L 2.2088,5.378365,2.1371,5.406174 +L 2.1371,5.406174,2.0612,5.426068 +L 2.0612,5.426068,1.9791,5.437977 +L 1.9791,5.437977,1.8894,5.441969 +L 1.8894,5.441969,1.7762,5.434124 +L 1.7762,5.434124,1.672,5.410585 +L 1.672,5.410585,1.5722,5.37136 +L 1.5722,5.37136,1.4758,5.316509 +L 1.4758,5.316509,1.3918,5.245972 +L 1.3918,5.245972,1.3161,5.159742 +L 1.3161,5.159742,1.2438,5.05782 +L 1.2438,5.05782,1.1785,4.940278 +L 1.1785,4.940278,1.1217,4.811388 +L 1.1217,4.811388,1.0752,4.675633 +L 1.0752,4.675633,1.0275,4.533013 +L 1.0275,4.533013,0.9861,4.383528 +L 0.9861,4.383528,0.9519,4.227179 +L 0.9519,4.227179,0.9264,4.063892 +L 0.9264,4.063892,0.9042,3.893743 +L 0.9042,3.893743,0.8843,3.716732 +L 0.8843,3.716732,0.8843,-0.026478 +L 0.8843,-0.026478,-0.0002,-0.026478 +L -0.0002,6.433932,0.8843,6.433932 +L 0.8843,6.433932,0.8843,5.668648 +L 0.8843,5.668648,1.0107,5.8423 +L 1.0107,5.8423,1.1424,5.992765 +L 1.1424,5.992765,1.2752,6.120044 +L 1.2752,6.120044,1.4119,6.224207 +L 1.4119,6.224207,1.5532,6.305254 +L 1.5532,6.305254,1.6989,6.363114 +L 1.6989,6.363114,1.8502,6.397788 +L 1.8502,6.397788,2.0082,6.409414 +L 2.0082,6.409414,2.1371,6.404233 +L 2.1371,6.404233,2.2637,6.38875 +L 2.2637,6.38875,2.3848,6.362904 +L 2.3848,6.362904,2.5025,6.326689 +L 2.5025,6.326689,2.6109,6.280246 +L 2.6109,6.280246,2.7177,6.223366 +L 2.7177,6.223366,2.8163,6.156187 +L 2.8163,6.156187,2.9082,6.078715 +L 2.9082,6.078715,2.9973,5.995707 +L 2.9973,5.995707,3.0786,5.911998 +L 3.0786,5.911998,3.1486,5.827519 +L 3.1486,5.827519,3.2159,5.74241 +L 3.2159,5.74241,3.2725,5.65653 +L 3.2725,5.65653,3.3262,5.569949 +L 3.3262,5.569949,3.3672,5.482668 +L 3.3672,5.482668,3.4064,5.394686 +L 3.4064,5.394686,3.5633,5.632503 +L 3.5633,5.632503,3.7152,5.838657 +L 3.7152,5.838657,3.8743,6.013009 +L 3.8743,6.013009,4.0377,6.155699 +L 4.0377,6.155699,4.1982,6.266727 +L 4.1982,6.266727,4.3596,6.345952 +L 4.3596,6.345952,4.5252,6.393515 +L 4.5252,6.393515,4.6897,6.409414 +L 4.6897,6.409414,4.8225,6.402132 +L 4.8225,6.402132,4.9592,6.380276 +L 4.9592,6.380276,5.0904,6.343921 +L 5.0904,6.343921,5.2221,6.292925 +L 5.2221,6.292925,5.3566,6.227429 +L 5.3566,6.227429,5.4815,6.147363 +L 5.4815,6.147363,5.6143,6.052797 +L 5.6143,6.052797,5.7393,5.943588 +L 5.7393,5.943588,5.8637,5.813229 +L 5.8637,5.813229,5.9623,5.654918 +L 5.9623,5.654918,6.0568,5.468728 +L 6.0568,5.468728,6.126,5.254658 +L 6.126,5.254658,6.1831,5.012639 +L 6.1831,5.012639,6.2252,4.74274 +L 6.2252,4.74274,6.2504,4.444961 +L 6.2504,4.444961,6.2571,4.119233 +L 6.2571,4.119233,6.2571,-0.026478 +L 6.2571,-0.026478,5.3706,-0.026478 +L 5.3706,-0.026478,5.3706,4.119233 +L 5.3706,4.119233,5.3661,4.31411 +L 5.3661,4.31411,5.3566,4.491404 +L 5.3566,4.491404,5.3437,4.651256 +L 5.3437,4.651256,5.319,4.793596 +L 5.319,4.793596,5.2893,4.918423 +L 5.2893,4.918423,5.2537,5.025668 +L 5.2537,5.025668,5.2092,5.115471 +L 5.2092,5.115471,5.1621,5.187759 +L 5.1621,5.187759,5.1049,5.247373 +L 5.1049,5.247373,5.0489,5.298999 +L 5.0489,5.298999,4.9816,5.34264 +L 4.9816,5.34264,4.9122,5.378365 +L 4.9122,5.378365,4.8354,5.406174 +L 4.8354,5.406174,4.7541,5.426068 +L 4.7541,5.426068,4.6729,5.437977 +L 4.6729,5.437977,4.5776,5.441969 +L -0.0002,-0.026478,-0.0002,6.433932 + +[n] 64 +L 2.2571,5.441969,2.1164,5.433914 +L 2.1164,5.433914,1.9825,5.409817 +L 1.9825,5.409817,1.8555,5.369677 +L 1.8555,5.369677,1.7337,5.313429 +L 1.7337,5.313429,1.6249,5.241209 +L 1.6249,5.241209,1.514,5.152807 +L 1.514,5.152807,1.4165,5.048434 +L 1.4165,5.048434,1.3178,4.92795 +L 1.3178,4.92795,1.2313,4.795137 +L 1.2313,4.795137,1.1565,4.653638 +L 1.1565,4.653638,1.0853,4.50345 +L 1.0853,4.50345,1.0253,4.344581 +L 1.0253,4.344581,0.9788,4.177024 +L 0.9788,4.177024,0.9368,4.000778 +L 0.9368,4.000778,0.9088,3.815851 +L 0.9088,3.815851,0.8861,3.622306 +L 0.8861,3.622306,0.8861,-0.026478 +L 0.8861,-0.026478,-0.0002,-0.026478 +L -0.0002,-0.026478,-0.0002,6.433932 +L -0.0002,6.433932,0.8861,6.433932 +L 0.8861,6.433932,0.8861,5.477834 +L 0.8861,5.477834,1.0685,5.696177 +L 1.0685,5.696177,1.2503,5.88538 +L 1.2503,5.88538,1.4411,6.045512 +L 1.4411,6.045512,1.6328,6.176504 +L 1.6328,6.176504,1.8278,6.278425 +L 1.8278,6.278425,2.0321,6.351206 +L 2.0321,6.351206,2.2369,6.394844 +L 2.2369,6.394844,2.4476,6.409414 +L 2.4476,6.409414,2.6157,6.401779 +L 2.6157,6.401779,2.7793,6.378805 +L 2.7793,6.378805,2.9407,6.340558 +L 2.9407,6.340558,3.0988,6.287041 +L 3.0988,6.287041,3.2546,6.218251 +L 3.2546,6.218251,3.4036,6.134124 +L 3.4036,6.134124,3.5493,6.034724 +L 3.5493,6.034724,3.6883,5.919984 +L 3.6883,5.919984,3.8228,5.784789 +L 3.8228,5.784789,3.9338,5.623955 +L 3.9338,5.623955,4.0329,5.437346 +L 4.0329,5.437346,4.1075,5.225098 +L 4.1075,5.225098,4.1714,4.987141 +L 4.1714,4.987141,4.2162,4.723546 +L 4.2162,4.723546,4.2406,4.434244 +L 4.2406,4.434244,4.2515,4.119233 +L 4.2515,4.119233,4.2515,-0.026478 +L 4.2515,-0.026478,3.3666,-0.026478 +L 3.3666,-0.026478,3.3666,4.119233 +L 3.3666,4.119233,3.3588,4.308926 +L 3.3588,4.308926,3.3465,4.482225 +L 3.3465,4.482225,3.324,4.639067 +L 3.324,4.639067,3.2932,4.779373 +L 3.2932,4.779373,3.2546,4.90336 +L 3.2546,4.90336,3.2092,5.010818 +L 3.2092,5.010818,3.1514,5.101879 +L 3.1514,5.101879,3.0864,5.176481 +L 3.0864,5.176481,3.0127,5.238687 +L 3.0127,5.238687,2.929,5.292625 +L 2.929,5.292625,2.8365,5.338224 +L 2.8365,5.338224,2.7368,5.375563 +L 2.7368,5.375563,2.6303,5.404633 +L 2.6303,5.404633,2.5115,5.425366 +L 2.5115,5.425366,2.3882,5.437766 +L 2.3882,5.437766,2.2571,5.441969 + +[o] 128 +L -0.0002,3.263234,0.0139,3.582798 +L 0.0139,3.582798,0.0464,3.890453 +L 0.0464,3.890453,0.099,4.18627 +L 0.099,4.18627,0.1736,4.470249 +L 0.1736,4.470249,0.2691,4.742317 +L 0.2691,4.742317,0.3882,5.00248 +L 0.3882,5.00248,0.5272,5.250806 +L 0.5272,5.250806,0.6908,5.487291 +L 0.6908,5.487291,0.8668,5.70339 +L 0.8668,5.70339,1.0595,5.890701 +L 1.0595,5.890701,1.268,6.049224 +L 1.268,6.049224,1.4854,6.178885 +L 1.4854,6.178885,1.7205,6.279756 +L 1.7205,6.279756,1.9668,6.351766 +L 1.9668,6.351766,2.2285,6.394986 +L 2.2285,6.394986,2.5065,6.409414 +L 2.5065,6.409414,2.7794,6.394986 +L 2.7794,6.394986,3.0411,6.351766 +L 3.0411,6.351766,3.2893,6.279756 +L 3.2893,6.279756,3.5253,6.178885 +L 3.5253,6.178885,3.7449,6.049224 +L 3.7449,6.049224,3.9534,5.890701 +L 3.9534,5.890701,4.1467,5.70339 +L 4.1467,5.70339,4.3278,5.487291 +L 4.3278,5.487291,4.4886,5.250665 +L 4.4886,5.250665,4.627,5.001781 +L 4.627,5.001781,4.748,4.740708 +L 4.748,4.740708,4.8456,4.467377 +L 4.8456,4.467377,4.9201,4.181857 +L 4.9201,4.181857,4.9733,3.884079 +L 4.9733,3.884079,5.0097,3.574112 +L 5.0097,3.574112,5.0182,3.251956 +L 5.0182,3.251956,5.0097,2.907595 +L 5.0097,2.907595,4.9733,2.578435 +L 4.9733,2.578435,4.9201,2.264405 +L 4.9201,2.264405,4.8456,1.965576 +L 4.8456,1.965576,4.748,1.681947 +L 4.748,1.681947,4.627,1.413519 +L 4.627,1.413519,4.4886,1.160222 +L 4.4886,1.160222,4.3278,0.922125 +L 4.3278,0.922125,4.1467,0.705954 +L 4.1467,0.705954,3.9534,0.518643 +L 3.9534,0.518643,3.7449,0.360192 +L 3.7449,0.360192,3.5253,0.230531 +L 3.5253,0.230531,3.2893,0.129661 +L 3.2893,0.129661,3.0411,0.05765 +L 3.0411,0.05765,2.7794,0.01443 +L 2.7794,0.01443,2.5065,0 +L 2.5065,0,2.2285,0.01443 +L 2.2285,0.01443,1.9668,0.05765 +L 1.9668,0.05765,1.7205,0.129661 +L 1.7205,0.129661,1.4854,0.230531 +L 1.4854,0.230531,1.268,0.360192 +L 1.268,0.360192,1.0595,0.518643 +L 1.0595,0.518643,0.8668,0.705954 +L 0.8668,0.705954,0.6908,0.922125 +L 0.6908,0.922125,0.5272,1.160362 +L 0.5272,1.160362,0.3882,1.41422 +L 0.3882,1.41422,0.2691,1.683558 +L 0.2691,1.683558,0.1736,1.968448 +L 0.1736,1.968448,0.099,2.268888 +L 0.099,2.268888,0.0464,2.584809 +L 0.0464,2.584809,0.0139,2.916281 +L 0.0139,2.916281,-0.0002,3.263234 +L 0.9452,3.251956,0.9505,2.980656 +L 0.9505,2.980656,0.9755,2.726098 +L 0.9755,2.726098,1.0102,2.48828 +L 1.0102,2.48828,1.0618,2.267207 +L 1.0618,2.267207,1.1268,2.062874 +L 1.1268,2.062874,1.2064,1.875353 +L 1.2064,1.875353,1.3,1.704503 +L 1.3,1.704503,1.4092,1.550395 +L 1.4092,1.550395,1.5303,1.41373 +L 1.5303,1.41373,1.6547,1.295347 +L 1.6547,1.295347,1.7836,1.195177 +L 1.7836,1.195177,1.9169,1.113149 +L 1.9169,1.113149,2.0565,1.049402 +L 2.0565,1.049402,2.1994,1.003873 +L 2.1994,1.003873,2.3504,0.976551 +L 2.3504,0.976551,2.5065,0.967447 +L 2.5065,0.967447,2.6623,0.976551 +L 2.6623,0.976551,2.8113,1.003873 +L 2.8113,1.003873,2.9531,1.049402 +L 2.9531,1.049402,3.096,1.113149 +L 3.096,1.113149,3.2294,1.195177 +L 3.2294,1.195177,3.3583,1.295347 +L 3.3583,1.295347,3.4827,1.41373 +L 3.4827,1.41373,3.6037,1.550395 +L 3.6037,1.550395,3.7158,1.704643 +L 3.7158,1.704643,3.8105,1.876053 +L 3.8105,1.876053,3.889,2.064485 +L 3.889,2.064485,3.9562,2.270079 +L 3.9562,2.270079,4.005,2.492695 +L 4.005,2.492695,4.042,2.732473 +L 4.042,2.732473,4.0683,2.989342 +L 4.0683,2.989342,4.0722,3.263234 +L 4.0722,3.263234,4.0683,3.523046 +L 4.0683,3.523046,4.042,3.766607 +L 4.042,3.766607,4.005,3.993986 +L 4.005,3.993986,3.9562,4.205181 +L 3.9562,4.205181,3.889,4.40027 +L 3.889,4.40027,3.8105,4.579105 +L 3.8105,4.579105,3.7158,4.741759 +L 3.7158,4.741759,3.6037,4.888302 +L 3.6037,4.888302,3.4827,5.01803 +L 3.4827,5.01803,3.3583,5.130529 +L 3.3583,5.130529,3.2294,5.225658 +L 3.2294,5.225658,3.096,5.303552 +L 3.096,5.303552,2.9531,5.364075 +L 2.9531,5.364075,2.8113,5.407365 +L 2.8113,5.407365,2.6623,5.433283 +L 2.6623,5.433283,2.5065,5.441969 +L 2.5065,5.441969,2.3504,5.433283 +L 2.3504,5.433283,2.1994,5.407365 +L 2.1994,5.407365,2.0565,5.364075 +L 2.0565,5.364075,1.9169,5.303552 +L 1.9169,5.303552,1.7836,5.225658 +L 1.7836,5.225658,1.6547,5.130529 +L 1.6547,5.130529,1.5303,5.01803 +L 1.5303,5.01803,1.4092,4.888302 +L 1.4092,4.888302,1.3,4.741619 +L 1.3,4.741619,1.2064,4.578405 +L 1.2064,4.578405,1.1268,4.398659 +L 1.1268,4.398659,1.0618,4.202379 +L 1.0618,4.202379,1.0102,3.98957 +L 1.0102,3.98957,0.9755,3.760232 +L 0.9755,3.760232,0.9505,3.51436 +L 0.9505,3.51436,0.9452,3.251956 + +[p] 118 +L -0.0001,-1.309497,-0.0001,6.433932 +L -0.0001,6.433932,0.8873,6.433932 +L 0.8873,6.433932,0.8873,5.65737 +L 0.8873,5.65737,1.0411,5.833614 +L 1.0411,5.833614,1.1991,5.98639 +L 1.1991,5.98639,1.3583,6.115631 +L 1.3583,6.115631,1.5225,6.221405 +L 1.5225,6.221405,1.685,6.30364 +L 1.685,6.30364,1.8537,6.362412 +L 1.8537,6.362412,2.0237,6.397648 +L 2.0237,6.397648,2.1977,6.409414 +L 2.1977,6.409414,2.4107,6.396738 +L 2.4107,6.396738,2.6136,6.358631 +L 2.6136,6.358631,2.8097,6.295164 +L 2.8097,6.295164,2.998,6.206272 +L 2.998,6.206272,3.1784,6.092024 +L 3.1784,6.092024,3.3443,5.952347 +L 3.3443,5.952347,3.5035,5.787311 +L 3.5035,5.787311,3.6615,5.596846 +L 3.6615,5.596846,3.8005,5.38593 +L 3.8005,5.38593,3.917,5.159322 +L 3.917,5.159322,4.019,4.917092 +L 4.019,4.917092,4.1059,4.659171 +L 4.1059,4.659171,4.1675,4.38563 +L 4.1675,4.38563,4.218,4.096468 +L 4.218,4.096468,4.2443,3.791614 +L 4.2443,3.791614,4.2488,3.47114 +L 4.2488,3.47114,4.2421,3.15669 +L 4.2421,3.15669,4.2123,2.858701 +L 4.2123,2.858701,4.1647,2.577174 +L 4.1647,2.577174,4.0952,2.312108 +L 4.0952,2.312108,4.0086,2.063434 +L 4.0086,2.063434,3.9047,1.831292 +L 3.9047,1.831292,3.778,1.615541 +L 3.778,1.615541,3.6323,1.416251 +L 3.6323,1.416251,3.4732,1.236365 +L 3.4732,1.236365,3.3073,1.078895 +L 3.3073,1.078895,3.137,0.943838 +L 3.137,0.943838,2.9588,0.83113 +L 2.9588,0.83113,2.7749,0.740909 +L 2.7749,0.740909,2.5822,0.673101 +L 2.5822,0.673101,2.386,0.627639 +L 2.386,0.627639,2.1834,0.604663 +L 2.1834,0.604663,2.0069,0.611738 +L 2.0069,0.611738,1.838,0.632963 +L 1.838,0.632963,1.6721,0.668408 +L 1.6721,0.668408,1.5059,0.718 +L 1.5059,0.718,1.3485,0.781817 +L 1.3485,0.781817,1.189,0.859712 +L 1.189,0.859712,1.0388,0.951824 +L 1.0388,0.951824,0.8873,1.058161 +L 0.8873,1.058161,0.8873,-1.309497 +L 0.8873,-1.309497,-0.0001,-1.309497 +L 2.1834,1.57211,2.3084,1.590391 +L 2.3084,1.590391,2.4309,1.621495 +L 2.4309,1.621495,2.5424,1.665626 +L 2.5424,1.665626,2.6461,1.722576 +L 2.6461,1.722576,2.748,1.792415 +L 2.748,1.792415,2.8397,1.875213 +L 2.8397,1.875213,2.9262,1.970897 +L 2.9262,1.970897,3.0058,2.079473 +L 3.0058,2.079473,3.0776,2.201851 +L 3.0776,2.201851,3.1347,2.338937 +L 3.1347,2.338937,3.1868,2.490804 +L 3.1868,2.490804,3.2333,2.65745 +L 3.2333,2.65745,3.2658,2.838737 +L 3.2658,2.838737,3.2905,3.034804 +L 3.2905,3.034804,3.3026,3.245582 +L 3.3026,3.245582,3.3051,3.47114 +L 3.3051,3.47114,3.3026,3.692004 +L 3.3026,3.692004,3.2849,3.901169 +L 3.2849,3.901169,3.2658,4.098639 +L 3.2658,4.098639,3.2289,4.284339 +L 3.2289,4.284339,3.1868,4.458341 +L 3.1868,4.458341,3.1314,4.620644 +L 3.1314,4.620644,3.0675,4.771178 +L 3.0675,4.771178,2.9963,4.910017 +L 2.9963,4.910017,2.912,5.034702 +L 2.912,5.034702,2.8282,5.14272 +L 2.8282,5.14272,2.7354,5.234134 +L 2.7354,5.234134,2.636,5.308946 +L 2.636,5.308946,2.5329,5.367157 +L 2.5329,5.367157,2.4208,5.408696 +L 2.4208,5.408696,2.3067,5.433634 +L 2.3067,5.433634,2.1834,5.441969 +L 2.1834,5.441969,2.0386,5.434264 +L 2.0386,5.434264,1.9035,5.411358 +L 1.9035,5.411358,1.7746,5.373111 +L 1.7746,5.373111,1.6575,5.319592 +L 1.6575,5.319592,1.5488,5.250736 +L 1.5488,5.250736,1.4423,5.166677 +L 1.4423,5.166677,1.3549,5.067207 +L 1.3549,5.067207,1.2686,4.952537 +L 1.2686,4.952537,1.1946,4.832823 +L 1.1946,4.832823,1.1249,4.718223 +L 1.1249,4.718223,1.0657,4.608876 +L 1.0657,4.608876,1.0164,4.504711 +L 1.0164,4.504711,0.9716,4.405734 +L 0.9716,4.405734,0.9369,4.312008 +L 0.9369,4.312008,0.9063,4.223394 +L 0.9063,4.223394,0.8873,4.140038 +L 0.8873,4.140038,0.8873,2.395957 +L 0.8873,2.395957,0.9245,2.284229 +L 0.9245,2.284229,0.9677,2.181397 +L 0.9677,2.181397,1.0237,2.087461 +L 1.0237,2.087461,1.0781,2.002422 +L 1.0781,2.002422,1.1453,1.926348 +L 1.1453,1.926348,1.2143,1.859171 +L 1.2143,1.859171,1.2933,1.800958 +L 1.2933,1.800958,1.377,1.751644 +L 1.377,1.751644,1.4692,1.709547 +L 1.4692,1.709547,1.5617,1.673051 +L 1.5617,1.673051,1.6598,1.642227 +L 1.6598,1.642227,1.7595,1.617012 +L 1.7595,1.617012,1.8587,1.597328 +L 1.8587,1.597328,1.9669,1.583318 +L 1.9669,1.583318,2.0717,1.574912 +L 2.0717,1.574912,2.1834,1.57211 + +[q] 118 +L 4.2483,-1.309497,3.3606,-1.309497 +L 3.3606,-1.309497,3.3606,1.058161 +L 3.3606,1.058161,3.211,0.951824 +L 3.211,0.951824,3.0597,0.859712 +L 3.0597,0.859712,2.9033,0.781817 +L 2.9033,0.781817,2.7419,0.718 +L 2.7419,0.718,2.5783,0.668408 +L 2.5783,0.668408,2.4102,0.632963 +L 2.4102,0.632963,2.2415,0.611738 +L 2.2415,0.611738,2.0683,0.604663 +L 2.0683,0.604663,1.8643,0.627639 +L 1.8643,0.627639,1.666,0.673101 +L 1.666,0.673101,1.4752,0.740909 +L 1.4752,0.740909,1.2894,0.83113 +L 1.2894,0.83113,1.1109,0.943838 +L 1.1109,0.943838,0.9414,1.078895 +L 0.9414,1.078895,0.7749,1.236365 +L 0.7749,1.236365,0.6164,1.416251 +L 0.6164,1.416251,0.4746,1.615541 +L 0.4746,1.615541,0.3479,1.831292 +L 0.3479,1.831292,0.2392,2.063434 +L 0.2392,2.063434,0.1529,2.312108 +L 0.1529,2.312108,0.084,2.577174 +L 0.084,2.577174,0.0363,2.858701 +L 0.0363,2.858701,0.0061,3.15669 +L 0.0061,3.15669,-0.0001,3.47114 +L -0.0001,3.47114,0.0061,3.791614 +L 0.0061,3.791614,0.0363,4.096468 +L 0.0363,4.096468,0.0812,4.38563 +L 0.0812,4.38563,0.1484,4.659171 +L 0.1484,4.659171,0.2297,4.917092 +L 0.2297,4.917092,0.3311,5.159322 +L 0.3311,5.159322,0.4499,5.38593 +L 0.4499,5.38593,0.5911,5.596846 +L 0.5911,5.596846,0.7402,5.787311 +L 0.7402,5.787311,0.9038,5.952347 +L 0.9038,5.952347,1.072,6.092024 +L 1.072,6.092024,1.2502,6.206272 +L 1.2502,6.206272,1.4384,6.295164 +L 1.4384,6.295164,1.6346,6.358631 +L 1.6346,6.358631,1.8377,6.396738 +L 1.8377,6.396738,2.0524,6.409414 +L 2.0524,6.409414,2.2247,6.397648 +L 2.2247,6.397648,2.3945,6.362412 +L 2.3945,6.362412,2.5637,6.30364 +L 2.5637,6.30364,2.7274,6.221405 +L 2.7274,6.221405,2.8899,6.115631 +L 2.8899,6.115631,3.049,5.98639 +L 3.049,5.98639,3.207,5.833614 +L 3.207,5.833614,3.3606,5.65737 +L 3.3606,5.65737,3.3606,6.433932 +L 3.3606,6.433932,4.2483,6.433932 +L 4.2483,6.433932,4.2483,-1.309497 +L 2.0627,5.441969,1.9417,5.433634 +L 1.9417,5.433634,1.8274,5.408696 +L 1.8274,5.408696,1.7184,5.367157 +L 1.7184,5.367157,1.6122,5.308946 +L 1.6122,5.308946,1.5186,5.234134 +L 1.5186,5.234134,1.4216,5.14272 +L 1.4216,5.14272,1.3376,5.034702 +L 1.3376,5.034702,1.258,4.910017 +L 1.258,4.910017,1.1807,4.771178 +L 1.1807,4.771178,1.1168,4.620644 +L 1.1168,4.620644,1.0663,4.458341 +L 1.0663,4.458341,1.0226,4.284339 +L 1.0226,4.284339,0.9876,4.098639 +L 0.9876,4.098639,0.9638,3.901169 +L 0.9638,3.901169,0.9453,3.692004 +L 0.9453,3.692004,0.9431,3.47114 +L 0.9431,3.47114,0.9453,3.245582 +L 0.9453,3.245582,0.9638,3.034804 +L 0.9638,3.034804,0.9876,2.838737 +L 0.9876,2.838737,1.0204,2.65745 +L 1.0204,2.65745,1.0619,2.490804 +L 1.0619,2.490804,1.1109,2.338937 +L 1.1109,2.338937,1.1728,2.201851 +L 1.1728,2.201851,1.2476,2.079473 +L 1.2476,2.079473,1.3281,1.970897 +L 1.3281,1.970897,1.4121,1.875213 +L 1.4121,1.875213,1.5057,1.792415 +L 1.5057,1.792415,1.6024,1.722576 +L 1.6024,1.722576,1.7063,1.665626 +L 1.7063,1.665626,1.8229,1.621495 +L 1.8229,1.621495,1.9394,1.590391 +L 1.9394,1.590391,2.0627,1.57211 +L 2.0627,1.57211,2.177,1.574912 +L 2.177,1.574912,2.2835,1.583318 +L 2.2835,1.583318,2.3897,1.597328 +L 2.3897,1.597328,2.4942,1.617012 +L 2.4942,1.617012,2.5906,1.642227 +L 2.5906,1.642227,2.687,1.673051 +L 2.687,1.673051,2.7795,1.709547 +L 2.7795,1.709547,2.8674,1.751644 +L 2.8674,1.751644,2.9549,1.800958 +L 2.9549,1.800958,3.0344,1.859171 +L 3.0344,1.859171,3.1062,1.926348 +L 3.1062,1.926348,3.1701,2.002422 +L 3.1701,2.002422,3.2295,2.087461 +L 3.2295,2.087461,3.2819,2.181397 +L 3.2819,2.181397,3.3233,2.284229 +L 3.3233,2.284229,3.3606,2.395957 +L 3.3606,2.395957,3.3606,4.140038 +L 3.3606,4.140038,3.3438,4.223394 +L 3.3438,4.223394,3.3135,4.312008 +L 3.3135,4.312008,3.2765,4.405734 +L 3.2765,4.405734,3.2351,4.504711 +L 3.2351,4.504711,3.1846,4.608876 +L 3.1846,4.608876,3.123,4.718223 +L 3.123,4.718223,3.0541,4.832823 +L 3.0541,4.832823,2.9818,4.952537 +L 2.9818,4.952537,2.8955,5.067207 +L 2.8955,5.067207,2.8058,5.166677 +L 2.8058,5.166677,2.7016,5.250736 +L 2.7016,5.250736,2.5951,5.319592 +L 2.5951,5.319592,2.4741,5.373111 +L 2.4741,5.373111,2.348,5.411358 +L 2.348,5.411358,2.2118,5.434264 +L 2.2118,5.434264,2.0627,5.441969 + +[r] 38 +L 0.8862,-0.020804,-0.0003,-0.020804 +L -0.0003,-0.020804,-0.0003,6.42826 +L -0.0003,6.42826,0.8862,6.42826 +L 0.8862,6.42826,0.8862,5.389012 +L 0.8862,5.389012,0.9187,5.467257 +L 0.9187,5.467257,0.961,5.548794 +L 0.961,5.548794,1.0174,5.633764 +L 1.0174,5.633764,1.0768,5.722095 +L 1.0768,5.722095,1.1518,5.81372 +L 1.1518,5.81372,1.2359,5.908776 +L 1.2359,5.908776,1.3306,6.007195 +L 1.3306,6.007195,1.4371,6.108976 +L 1.4371,6.108976,1.5607,6.204103 +L 1.5607,6.204103,1.719,6.282558 +L 1.719,6.282558,1.9115,6.344411 +L 1.9115,6.344411,2.1376,6.38952 +L 2.1376,6.38952,2.3982,6.4181 +L 2.3982,6.4181,2.6929,6.429941 +L 2.6929,6.429941,3.0146,6.425178 +L 3.0146,6.425178,3.3732,6.403743 +L 3.3732,6.403743,3.3732,5.186851 +L 3.3732,5.186851,3.0437,5.233992 +L 3.0437,5.233992,2.7372,5.25732 +L 2.7372,5.25732,2.4539,5.2569 +L 2.4539,5.2569,2.2017,5.232663 +L 2.2017,5.232663,1.9695,5.184609 +L 1.9695,5.184609,1.766,5.112809 +L 1.766,5.112809,1.5923,5.017192 +L 1.5923,5.017192,1.4388,4.897758 +L 1.4388,4.897758,1.3099,4.755979 +L 1.3099,4.755979,1.1989,4.593393 +L 1.1989,4.593393,1.1025,4.409937 +L 1.1025,4.409937,1.023,4.205674 +L 1.023,4.205674,0.9636,3.980536 +L 0.9636,3.980536,0.9229,3.734594 +L 0.9229,3.734594,0.8941,3.467775 +L 0.8941,3.467775,0.8862,3.180156 +L 0.8862,3.180156,0.8862,-0.020804 + +[s] 194 +L 0,2.137056,0.9415,2.137056 +L 0.9415,2.137056,0.9513,1.972579 +L 0.9513,1.972579,0.9672,1.821903 +L 0.9672,1.821903,0.9986,1.6851 +L 0.9986,1.6851,1.0412,1.562164 +L 1.0412,1.562164,1.0984,1.453165 +L 1.0984,1.453165,1.1628,1.35797 +L 1.1628,1.35797,1.2416,1.276714 +L 1.2416,1.276714,1.3382,1.209326 +L 1.3382,1.209326,1.438,1.152585 +L 1.438,1.152585,1.5439,1.103482 +L 1.5439,1.103482,1.656,1.061941 +L 1.656,1.061941,1.7742,1.0279 +L 1.7742,1.0279,1.8986,1.001421 +L 1.8986,1.001421,2.0297,0.982578 +L 2.0297,0.982578,2.1659,0.97123 +L 2.1659,0.97123,2.3097,0.967447 +L 2.3097,0.967447,2.4601,0.97102 +L 2.4601,0.97102,2.6047,0.981877 +L 2.6047,0.981877,2.7381,0.99988 +L 2.7381,0.99988,2.8647,1.025098 +L 2.8647,1.025098,2.9841,1.05746 +L 2.9841,1.05746,3.0945,1.097108 +L 3.0945,1.097108,3.197,1.143968 +L 3.197,1.143968,3.2929,1.197978 +L 3.2929,1.197978,3.3769,1.258291 +L 3.3769,1.258291,3.4509,1.323854 +L 3.4509,1.323854,3.5137,1.394816 +L 3.5137,1.394816,3.5675,1.471028 +L 3.5675,1.471028,3.6061,1.552565 +L 3.6061,1.552565,3.6369,1.639425 +L 3.6369,1.639425,3.6515,1.731612 +L 3.6515,1.731612,3.6568,1.82912 +L 3.6568,1.82912,3.6493,1.968378 +L 3.6493,1.968378,3.6347,2.097198 +L 3.6347,2.097198,3.6022,2.215439 +L 3.6022,2.215439,3.5585,2.323176 +L 3.5585,2.323176,3.498,2.420474 +L 3.498,2.420474,3.4296,2.507195 +L 3.4296,2.507195,3.3397,2.583408 +L 3.3397,2.583408,3.2503,2.649184 +L 3.2503,2.649184,3.1393,2.707395 +L 3.1393,2.707395,3.0149,2.761263 +L 3.0149,2.761263,2.8793,2.810785 +L 2.8793,2.810785,2.7302,2.855829 +L 2.7302,2.855829,2.5644,2.896528 +L 2.5644,2.896528,2.3884,2.932743 +L 2.3884,2.932743,2.1979,2.964615 +L 2.1979,2.964615,1.9928,2.992144 +L 1.9928,2.992144,1.7865,3.023526 +L 1.7865,3.023526,1.596,3.067307 +L 1.596,3.067307,1.4156,3.123346 +L 1.4156,3.123346,1.2469,3.191714 +L 1.2469,3.191714,1.0883,3.272411 +L 1.0883,3.272411,0.9415,3.365366 +L 0.9415,3.365366,0.8137,3.470649 +L 0.8137,3.470649,0.6921,3.588262 +L 0.6921,3.588262,0.5828,3.71407 +L 0.5828,3.71407,0.4909,3.843941 +L 0.4909,3.843941,0.4119,3.977944 +L 0.4119,3.977944,0.3474,4.115941 +L 0.3474,4.115941,0.2981,4.258068 +L 0.2981,4.258068,0.2634,4.404193 +L 0.2634,4.404193,0.241,4.554448 +L 0.241,4.554448,0.2331,4.708766 +L 0.2331,4.708766,0.2438,4.861191 +L 0.2438,4.861191,0.2757,5.011448 +L 0.2757,5.011448,0.3228,5.159389 +L 0.3228,5.159389,0.3923,5.305164 +L 0.3923,5.305164,0.4805,5.448764 +L 0.4805,5.448764,0.5929,5.590053 +L 0.5929,5.590053,0.7184,5.729238 +L 0.7184,5.729238,0.8675,5.866116 +L 0.8675,5.866116,1.0252,5.993465 +L 1.0252,5.993465,1.1922,6.10379 +L 1.1922,6.10379,1.3685,6.197168 +L 1.3685,6.197168,1.5439,6.273592 +L 1.5439,6.273592,1.7249,6.332993 +L 1.7249,6.332993,1.9137,6.375441 +L 1.9137,6.375441,2.1015,6.400941 +L 2.1015,6.400941,2.3018,6.409414 +L 2.3018,6.409414,2.505,6.401921 +L 2.505,6.401921,2.7056,6.379503 +L 2.7056,6.379503,2.8958,6.34217 +L 2.8958,6.34217,3.0822,6.289843 +L 3.0822,6.289843,3.2604,6.222666 +L 3.2604,6.222666,3.4296,6.140498 +L 3.4296,6.140498,3.5932,6.04341 +L 3.5932,6.04341,3.7515,5.931332 +L 3.7515,5.931332,3.8947,5.807485 +L 3.8947,5.807485,4.0214,5.674952 +L 4.0214,5.674952,4.1253,5.533731 +L 4.1253,5.533731,4.2119,5.383829 +L 4.2119,5.383829,4.2814,5.225238 +L 4.2814,5.225238,4.329,5.058031 +L 4.329,5.058031,4.3554,4.882067 +L 4.3554,4.882067,4.3655,4.697418 +L 4.3655,4.697418,3.424,4.697418 +L 3.424,4.697418,3.4136,4.794436 +L 3.4136,4.794436,3.3993,4.884239 +L 3.3993,4.884239,3.3722,4.966757 +L 3.3722,4.966757,3.3341,5.042059 +L 3.3341,5.042059,3.2884,5.110147 +L 3.2884,5.110147,3.229,5.17095 +L 3.229,5.17095,3.1539,5.224537 +L 3.1539,5.224537,3.0754,5.27091 +L 3.0754,5.27091,2.9858,5.310978 +L 2.9858,5.310978,2.8958,5.345722 +L 2.8958,5.345722,2.802,5.375143 +L 2.802,5.375143,2.7056,5.399169 +L 2.7056,5.399169,2.6092,5.417872 +L 2.6092,5.417872,2.5078,5.431252 +L 2.5078,5.431252,2.4069,5.439237 +L 2.4069,5.439237,2.3018,5.441969 +L 2.3018,5.441969,2.1923,5.438887 +L 2.1923,5.438887,2.0914,5.429781 +L 2.0914,5.429781,1.9928,5.41458 +L 1.9928,5.41458,1.893,5.393285 +L 1.893,5.393285,1.7966,5.365896 +L 1.7966,5.365896,1.7025,5.332483 +L 1.7025,5.332483,1.6139,5.292905 +L 1.6139,5.292905,1.5271,5.247301 +L 1.5271,5.247301,1.4469,5.196165 +L 1.4469,5.196165,1.373,5.139988 +L 1.373,5.139988,1.3158,5.078765 +L 1.3158,5.078765,1.2642,5.012569 +L 1.2642,5.012569,1.2273,4.941259 +L 1.2273,4.941259,1.1992,4.865046 +L 1.1992,4.865046,1.1852,4.783716 +L 1.1852,4.783716,1.1796,4.697418 +L 1.1796,4.697418,1.1824,4.570209 +L 1.1824,4.570209,1.1992,4.454138 +L 1.1992,4.454138,1.2245,4.349064 +L 1.2245,4.349064,1.2584,4.255056 +L 1.2584,4.255056,1.299,4.17212 +L 1.299,4.17212,1.3533,4.10025 +L 1.3533,4.10025,1.4178,4.039518 +L 1.4178,4.039518,1.4895,3.989783 +L 1.4895,3.989783,1.5755,3.946911 +L 1.5755,3.946911,1.6756,3.906635 +L 1.6756,3.906635,1.7919,3.868878 +L 1.7919,3.868878,1.9233,3.833641 +L 1.9233,3.833641,2.0712,3.801071 +L 2.0712,3.801071,2.2304,3.771018 +L 2.2304,3.771018,2.4131,3.74356 +L 2.4131,3.74356,2.6069,3.718623 +L 2.6069,3.718623,2.802,3.690043 +L 2.802,3.690043,2.9959,3.651514 +L 2.9959,3.651514,3.1808,3.603042 +L 3.1808,3.603042,3.3666,3.544551 +L 3.3666,3.544551,3.5406,3.476183 +L 3.5406,3.476183,3.7087,3.397868 +L 3.7087,3.397868,3.8757,3.309534 +L 3.8757,3.309534,4.0337,3.211328 +L 4.0337,3.211328,4.1833,3.099249 +L 4.1833,3.099249,4.3083,2.969378 +L 4.3083,2.969378,4.4187,2.821783 +L 4.4187,2.821783,4.5067,2.656467 +L 4.5067,2.656467,4.5717,2.473431 +L 4.5717,2.473431,4.6232,2.272599 +L 4.6232,2.272599,4.6501,2.054048 +L 4.6501,2.054048,4.6602,1.817772 +L 4.6602,1.817772,4.6501,1.63228 +L 4.6501,1.63228,4.6188,1.453866 +L 4.6188,1.453866,4.5661,1.282528 +L 4.5661,1.282528,4.4899,1.11812 +L 4.4899,1.11812,4.3963,0.960792 +L 4.3963,0.960792,4.2736,0.810467 +L 4.2736,0.810467,4.1329,0.667217 +L 4.1329,0.667217,3.9743,0.530969 +L 3.9743,0.530969,3.8006,0.406492 +L 3.8006,0.406492,3.6157,0.298689 +L 3.6157,0.298689,3.424,0.207415 +L 3.424,0.207415,3.2211,0.132743 +L 3.2211,0.132743,3.0127,0.074672 +L 3.0127,0.074672,2.7952,0.033201 +L 2.7952,0.033201,2.5644,0.008266 +L 2.5644,0.008266,2.329,0 +L 2.329,0,2.0875,0.008756 +L 2.0875,0.008756,1.8521,0.035024 +L 1.8521,0.035024,1.6249,0.078805 +L 1.6249,0.078805,1.4156,0.140028 +L 1.4156,0.140028,1.209,0.218833 +L 1.209,0.218833,1.021,0.315151 +L 1.021,0.315151,0.835,0.42891 +L 0.835,0.42891,0.6646,0.560252 +L 0.6646,0.560252,0.5108,0.707425 +L 0.5108,0.707425,0.3743,0.868888 +L 0.3743,0.868888,0.2578,1.044571 +L 0.2578,1.044571,0.1636,1.234614 +L 0.1636,1.234614,0.0939,1.438807 +L 0.0939,1.438807,0.0403,1.65729 +L 0.0403,1.65729,0.0101,1.890063 +L 0.0101,1.890063,0,2.137056 + +[t] 31 +L 1.0883,8.588082,1.9104,9.060422 +L 1.9104,9.060422,1.9726,9.060422 +L 1.9726,9.060422,1.9726,6.651296 +L 1.9726,6.651296,3.3565,6.651296 +L 3.3565,6.651296,3.3565,5.804753 +L 3.3565,5.804753,1.9726,5.804753 +L 1.9726,5.804753,1.9726,1.252757 +L 1.9726,1.252757,1.9791,1.18593 +L 1.9791,1.18593,1.9894,1.12793 +L 1.9894,1.12793,2.0057,1.078895 +L 2.0057,1.078895,2.0298,1.038757 +L 2.0298,1.038757,2.0589,1.007585 +L 2.0589,1.007585,2.0981,0.985308 +L 2.0981,0.985308,2.1458,0.97193 +L 2.1458,0.97193,2.1962,0.967447 +L 2.1962,0.967447,3.1713,0.967447 +L 3.1713,0.967447,3.1713,0 +L 3.1713,0,2.0298,0 +L 2.0298,0,1.8095,0.019684 +L 1.8095,0.019684,1.6131,0.078735 +L 1.6131,0.078735,1.4548,0.177224 +L 1.4548,0.177224,1.3237,0.31508 +L 1.3237,0.31508,1.2217,0.492305 +L 1.2217,0.492305,1.148,0.708896 +L 1.148,0.708896,1.1049,0.964925 +L 1.1049,0.964925,1.0883,1.260322 +L 1.0883,1.260322,1.0883,5.804753 +L 1.0883,5.804753,0,5.804753 +L 0,5.804753,0,6.651296 +L 0,6.651296,1.0883,6.651296 +L 1.0883,6.651296,1.0883,8.588082 + +[u] 64 +L 1.9979,0.967447,2.1363,0.975503 +L 2.1363,0.975503,2.2671,0.999598 +L 2.2671,0.999598,2.3941,1.039736 +L 2.3941,1.039736,2.5151,1.095917 +L 2.5151,1.095917,2.6261,1.168206 +L 2.6261,1.168206,2.7382,1.25654 +L 2.7382,1.25654,2.8401,1.36091 +L 2.8401,1.36091,2.9309,1.481397 +L 2.9309,1.481397,3.0206,1.61421 +L 3.0206,1.61421,3.1002,1.755639 +L 3.1002,1.755639,3.1663,1.905684 +L 3.1663,1.905684,3.2235,2.064345 +L 3.2235,2.064345,3.2761,2.231622 +L 3.2761,2.231622,3.3154,2.407515 +L 3.3154,2.407515,3.3456,2.592092 +L 3.3456,2.592092,3.3652,2.785217 +L 3.3652,2.785217,3.3652,6.435825 +L 3.3652,6.435825,4.249,6.435825 +L 4.249,6.435825,4.249,-0.022696 +L 4.249,-0.022696,3.3652,-0.022696 +L 3.3652,-0.022696,3.3652,0.931512 +L 3.3652,0.931512,3.1865,0.713239 +L 3.1865,0.713239,3.001,0.523967 +L 3.001,0.523967,2.8144,0.363905 +L 2.8144,0.363905,2.6216,0.232843 +L 2.6216,0.232843,2.421,0.13099 +L 2.421,0.13099,2.2204,0.058208 +L 2.2204,0.058208,2.0153,0.01457 +L 2.0153,0.01457,1.8073,0 +L 1.8073,0,1.6336,0.007633 +L 1.6336,0.007633,1.4694,0.030541 +L 1.4694,0.030541,1.3111,0.068788 +L 1.3111,0.068788,1.152,0.122306 +L 1.152,0.122306,0.9965,0.191164 +L 0.9965,0.191164,0.8491,0.275293 +L 0.8491,0.275293,0.7017,0.374692 +L 0.7017,0.374692,0.5633,0.489362 +L 0.5633,0.489362,0.4291,0.624557 +L 0.4291,0.624557,0.315,0.785458 +L 0.315,0.785458,0.2231,0.971998 +L 0.2231,0.971998,0.1447,1.184249 +L 0.1447,1.184249,0.0797,1.422203 +L 0.0797,1.422203,0.0401,1.6858 +L 0.0401,1.6858,0.0102,1.97517 +L 0.0102,1.97517,0.0001,2.290113 +L 0.0001,2.290113,0.0001,6.435825 +L 0.0001,6.435825,0.888,6.435825 +L 0.888,6.435825,0.888,2.290113 +L 0.888,2.290113,0.8919,2.100418 +L 0.8919,2.100418,0.9051,1.927189 +L 0.9051,1.927189,0.9275,1.770349 +L 0.9275,1.770349,0.9595,1.629971 +L 0.9595,1.629971,0.9965,1.506054 +L 0.9965,1.506054,1.0458,1.398529 +L 1.0458,1.398529,1.1027,1.307533 +L 1.1027,1.307533,1.1646,1.232933 +L 1.1646,1.232933,1.2419,1.17073 +L 1.2419,1.17073,1.3237,1.116792 +L 1.3237,1.116792,1.4123,1.071118 +L 1.4123,1.071118,1.5143,1.033781 +L 1.5143,1.033781,1.6205,1.004783 +L 1.6205,1.004783,1.7398,0.984049 +L 1.7398,0.984049,1.8662,0.97158 +L 1.8662,0.97158,1.9979,0.967447 + +[v] 8 +L 1.9175,-0.020804,-0.0002,6.42826 +L -0.0002,6.42826,0.9985,6.42826 +L 0.9985,6.42826,2.405,1.58535 +L 2.405,1.58535,2.5003,1.58535 +L 2.5003,1.58535,3.9091,6.42826 +L 3.9091,6.42826,4.9061,6.42826 +L 4.9061,6.42826,2.9898,-0.020804 +L 2.9898,-0.020804,1.9175,-0.020804 + +[w] 13 +L -0.0001,6.42826,0.9937,6.42826 +L 0.9937,6.42826,1.9456,2.188122 +L 1.9456,2.188122,2.8397,6.42826 +L 2.8397,6.42826,3.8374,6.42826 +L 3.8374,6.42826,4.7845,2.188122 +L 4.7845,2.188122,5.6811,6.42826 +L 5.6811,6.42826,6.6764,6.42826 +L 6.6764,6.42826,5.2743,-0.020804 +L 5.2743,-0.020804,4.3138,-0.020804 +L 4.3138,-0.020804,3.3499,4.194816 +L 3.3499,4.194816,2.4331,-0.020804 +L 2.4331,-0.020804,1.4748,-0.020804 +L 1.4748,-0.020804,-0.0001,6.42826 + +[x] 12 +L 5.7532,-0.020804,4.5374,-0.020804 +L 4.5374,-0.020804,2.75,2.613249 +L 2.75,2.613249,1.1249,-0.020804 +L 1.1249,-0.020804,-0.0006,-0.020804 +L -0.0006,-0.020804,2.1611,3.47492 +L 2.1611,3.47492,0.1465,6.42826 +L 0.1465,6.42826,1.367,6.42826 +L 1.367,6.42826,2.9877,4.053107 +L 2.9877,4.053107,4.3696,6.42826 +L 4.3696,6.42826,5.4954,6.42826 +L 5.4954,6.42826,3.5873,3.155569 +L 3.5873,3.155569,5.7532,-0.020804 + +[y] 24 +L 1.1886,-0.115301,1.5856,0.901321 +L 1.5856,0.901321,-0.2402,6.42826 +L -0.2402,6.42826,0.7321,6.42826 +L 0.7321,6.42826,2.1135,2.246683 +L 2.1135,2.246683,3.7431,6.42826 +L 3.7431,6.42826,4.7765,6.42826 +L 4.7765,6.42826,2.1404,-0.304223 +L 2.1404,-0.304223,1.9874,-0.629741 +L 1.9874,-0.629741,1.803,-0.897678 +L 1.803,-0.897678,1.5839,-1.108038 +L 1.5839,-1.108038,1.3323,-1.260815 +L 1.3323,-1.260815,1.0476,-1.356009 +L 1.0476,-1.356009,0.7327,-1.393698 +L 0.7327,-1.393698,0.3864,-1.373732 +L 0.3864,-1.373732,-0.0003,-1.296257 +L -0.0003,-1.296257,-0.0003,-0.281527 +L -0.0003,-0.281527,0.2182,-0.361593 +L 0.2182,-0.361593,0.4163,-0.412869 +L 0.4163,-0.412869,0.5945,-0.435285 +L 0.5945,-0.435285,0.7526,-0.42898 +L 0.7526,-0.42898,0.8918,-0.393746 +L 0.8918,-0.393746,1.0103,-0.329721 +L 1.0103,-0.329721,1.1104,-0.236906 +L 1.1104,-0.236906,1.1886,-0.115301 + +[z] 10 +L 0.3323,6.409414,4.4268,6.409414 +L 4.4268,6.409414,4.4268,5.358821 +L 4.4268,5.358821,1.2359,1.088352 +L 1.2359,1.088352,4.6479,1.088352 +L 4.6479,1.088352,4.6479,0 +L 4.6479,0,0,0 +L 0,0,0,1.050595 +L 0,1.050595,3.1909,5.320995 +L 3.1909,5.320995,0.3323,5.320995 +L 0.3323,5.320995,0.3323,6.409414 + +[{] 135 +L 2.9679,-1.330268,2.7815,-1.325249 +L 2.7815,-1.325249,2.6014,-1.310188 +L 2.6014,-1.310188,2.4251,-1.285093 +L 2.4251,-1.285093,2.2539,-1.249962 +L 2.2539,-1.249962,2.0903,-1.204786 +L 2.0903,-1.204786,1.9267,-1.149579 +L 1.9267,-1.149579,1.7731,-1.084328 +L 1.7731,-1.084328,1.6252,-1.009041 +L 1.6252,-1.009041,1.484,-0.91347 +L 1.484,-0.91347,1.3618,-0.787373 +L 1.3618,-0.787373,1.2632,-0.630743 +L 1.2632,-0.630743,1.1813,-0.44359 +L 1.1813,-0.44359,1.1161,-0.225904 +L 1.1161,-0.225904,1.0704,0.022306 +L 1.0704,0.022306,1.0398,0.301049 +L 1.0398,0.301049,1.0356,0.610315 +L 1.0356,0.610315,1.0356,2.454536 +L 1.0356,2.454536,1.03,2.6716 +L 1.03,2.6716,1.0256,2.870237 +L 1.0256,2.870237,1.0152,3.05046 +L 1.0152,3.05046,0.9975,3.21225 +L 0.9975,3.21225,0.9807,3.35562 +L 0.9807,3.35562,0.9583,3.480566 +L 0.9583,3.480566,0.9292,3.587095 +L 0.9292,3.587095,0.9012,3.675193 +L 0.9012,3.675193,0.856,3.749153 +L 0.856,3.749153,0.7924,3.81325 +L 0.7924,3.81325,0.7084,3.867486 +L 0.7084,3.867486,0.6064,3.911866 +L 0.6064,3.911866,0.4853,3.946374 +L 0.4853,3.946374,0.3419,3.971027 +L 0.3419,3.971027,0.1824,3.985821 +L 0.1824,3.985821,0,3.990755 +L 0,3.990755,0,4.958204 +L 0,4.958204,0.1824,4.963136 +L 0.1824,4.963136,0.3419,4.97793 +L 0.3419,4.97793,0.4853,5.002582 +L 0.4853,5.002582,0.6064,5.037092 +L 0.6064,5.037092,0.7084,5.081469 +L 0.7084,5.081469,0.7924,5.135711 +L 0.7924,5.135711,0.856,5.199806 +L 0.856,5.199806,0.9012,5.273764 +L 0.9012,5.273764,0.9292,5.361864 +L 0.9292,5.361864,0.9583,5.468393 +L 0.9583,5.468393,0.9807,5.593334 +L 0.9807,5.593334,0.9975,5.736709 +L 0.9975,5.736709,1.0152,5.898499 +L 1.0152,5.898499,1.0256,6.078724 +L 1.0256,6.078724,1.03,6.277361 +L 1.03,6.277361,1.0356,6.494425 +L 1.0356,6.494425,1.0356,8.338639 +L 1.0356,8.338639,1.0398,8.647908 +L 1.0398,8.647908,1.0704,8.926644 +L 1.0704,8.926644,1.1161,9.174867 +L 1.1161,9.174867,1.1813,9.392544 +L 1.1813,9.392544,1.2632,9.579704 +L 1.2632,9.579704,1.3618,9.736332 +L 1.3618,9.736332,1.484,9.862427 +L 1.484,9.862427,1.6252,9.957993 +L 1.6252,9.957993,1.7731,10.033283 +L 1.7731,10.033283,1.9267,10.098531 +L 1.9267,10.098531,2.0903,10.153745 +L 2.0903,10.153745,2.2539,10.198918 +L 2.2539,10.198918,2.4251,10.234054 +L 2.4251,10.234054,2.6014,10.259145 +L 2.6014,10.259145,2.7815,10.274205 +L 2.7815,10.274205,2.9679,10.27922 +L 2.9679,10.27922,2.9679,9.674566 +L 2.9679,9.674566,2.8614,9.671408 +L 2.8614,9.671408,2.7569,9.661927 +L 2.7569,9.661927,2.6574,9.646126 +L 2.6574,9.646126,2.561,9.624017 +L 2.561,9.624017,2.4725,9.595582 +L 2.4725,9.595582,2.3851,9.560837 +L 2.3851,9.560837,2.2988,9.519769 +L 2.2988,9.519769,2.2248,9.472378 +L 2.2248,9.472378,2.1497,9.410111 +L 2.1497,9.410111,2.0903,9.324402 +L 2.0903,9.324402,2.0365,9.215248 +L 2.0365,9.215248,1.9962,9.082654 +L 1.9962,9.082654,1.9592,8.926622 +L 1.9592,8.926622,1.9368,8.747139 +L 1.9368,8.747139,1.9222,8.544218 +L 1.9222,8.544218,1.9166,8.317856 +L 1.9166,8.317856,1.9166,6.473641 +L 1.9166,6.473641,1.9121,6.20458 +L 1.9121,6.20458,1.8975,5.956729 +L 1.8975,5.956729,1.8673,5.730064 +L 1.8673,5.730064,1.8303,5.52461 +L 1.8303,5.52461,1.7832,5.340341 +L 1.7832,5.340341,1.7216,5.17728 +L 1.7216,5.17728,1.6521,5.035414 +L 1.6521,5.035414,1.5703,4.914748 +L 1.5703,4.914748,1.4882,4.811559 +L 1.4882,4.811559,1.4021,4.722128 +L 1.4021,4.722128,1.3203,4.646462 +L 1.3203,4.646462,1.2408,4.584543 +L 1.2408,4.584543,1.1612,4.536397 +L 1.1612,4.536397,1.0827,4.501994 +L 1.0827,4.501994,1.0054,4.481361 +L 1.0054,4.481361,0.9337,4.474478 +L 0.9337,4.474478,1.0054,4.4676 +L 1.0054,4.4676,1.0827,4.446962 +L 1.0827,4.446962,1.1612,4.412562 +L 1.1612,4.412562,1.2408,4.364409 +L 1.2408,4.364409,1.3203,4.302499 +L 1.3203,4.302499,1.4021,4.226829 +L 1.4021,4.226829,1.4882,4.137402 +L 1.4882,4.137402,1.5703,4.034211 +L 1.5703,4.034211,1.6521,3.913543 +L 1.6521,3.913543,1.7216,3.771681 +L 1.7216,3.771681,1.7832,3.608618 +L 1.7832,3.608618,1.8303,3.424351 +L 1.8303,3.424351,1.8673,3.218891 +L 1.8673,3.218891,1.8975,2.992232 +L 1.8975,2.992232,1.9121,2.744377 +L 1.9121,2.744377,1.9166,2.475318 +L 1.9166,2.475318,1.9166,0.631102 +L 1.9166,0.631102,1.9222,0.404739 +L 1.9222,0.404739,1.9368,0.201816 +L 1.9368,0.201816,1.9592,0.022337 +L 1.9592,0.022337,1.9962,-0.1337 +L 1.9962,-0.1337,2.0365,-0.266296 +L 2.0365,-0.266296,2.0903,-0.375445 +L 2.0903,-0.375445,2.1497,-0.461157 +L 2.1497,-0.461157,2.2248,-0.523424 +L 2.2248,-0.523424,2.2988,-0.570808 +L 2.2988,-0.570808,2.3851,-0.611878 +L 2.3851,-0.611878,2.4725,-0.646627 +L 2.4725,-0.646627,2.561,-0.67506 +L 2.561,-0.67506,2.6574,-0.697176 +L 2.6574,-0.697176,2.7569,-0.712968 +L 2.7569,-0.712968,2.8614,-0.722448 +L 2.8614,-0.722448,2.9679,-0.725607 +L 2.9679,-0.725607,2.9679,-1.330268 + +[}] 135 +L -0.0002,-1.330268,-0.0002,-0.725607 +L -0.0002,-0.725607,0.1111,-0.722448 +L 0.1111,-0.722448,0.2105,-0.712968 +L 0.2105,-0.712968,0.3151,-0.697176 +L 0.3151,-0.697176,0.4092,-0.67506 +L 0.4092,-0.67506,0.5,-0.646627 +L 0.5,-0.646627,0.5874,-0.611878 +L 0.5874,-0.611878,0.6692,-0.570808 +L 0.6692,-0.570808,0.7477,-0.523424 +L 0.7477,-0.523424,0.8172,-0.461157 +L 0.8172,-0.461157,0.8819,-0.375445 +L 0.8819,-0.375445,0.9335,-0.266296 +L 0.9335,-0.266296,0.9763,-0.1337 +L 0.9763,-0.1337,1.0077,0.022337 +L 1.0077,0.022337,1.0335,0.201816 +L 1.0335,0.201816,1.0503,0.404739 +L 1.0503,0.404739,1.0525,0.631102 +L 1.0525,0.631102,1.0525,2.475318 +L 1.0525,2.475318,1.0604,2.744377 +L 1.0604,2.744377,1.075,2.992232 +L 1.075,2.992232,1.0996,3.218891 +L 1.0996,3.218891,1.14,3.424351 +L 1.14,3.424351,1.1893,3.608618 +L 1.1893,3.608618,1.2462,3.771681 +L 1.2462,3.771681,1.3159,3.913543 +L 1.3159,3.913543,1.4,4.034211 +L 1.4,4.034211,1.4838,4.137402 +L 1.4838,4.137402,1.5681,4.226829 +L 1.5681,4.226829,1.6522,4.302499 +L 1.6522,4.302499,1.7317,4.364409 +L 1.7317,4.364409,1.8113,4.412562 +L 1.8113,4.412562,1.8898,4.446962 +L 1.8898,4.446962,1.9649,4.4676 +L 1.9649,4.4676,2.0388,4.474478 +L 2.0388,4.474478,1.9649,4.481361 +L 1.9649,4.481361,1.8898,4.501994 +L 1.8898,4.501994,1.8113,4.536397 +L 1.8113,4.536397,1.7317,4.584543 +L 1.7317,4.584543,1.6522,4.646462 +L 1.6522,4.646462,1.5681,4.722128 +L 1.5681,4.722128,1.4838,4.811559 +L 1.4838,4.811559,1.4,4.914748 +L 1.4,4.914748,1.3159,5.035414 +L 1.3159,5.035414,1.2462,5.17728 +L 1.2462,5.17728,1.1893,5.340341 +L 1.1893,5.340341,1.14,5.52461 +L 1.14,5.52461,1.0996,5.730064 +L 1.0996,5.730064,1.075,5.956729 +L 1.075,5.956729,1.0604,6.20458 +L 1.0604,6.20458,1.0525,6.473641 +L 1.0525,6.473641,1.0525,8.317856 +L 1.0525,8.317856,1.0503,8.544218 +L 1.0503,8.544218,1.0335,8.747139 +L 1.0335,8.747139,1.0077,8.926622 +L 1.0077,8.926622,0.9763,9.082654 +L 0.9763,9.082654,0.9335,9.215248 +L 0.9335,9.215248,0.8819,9.324402 +L 0.8819,9.324402,0.8172,9.410111 +L 0.8172,9.410111,0.7477,9.472378 +L 0.7477,9.472378,0.6692,9.519769 +L 0.6692,9.519769,0.5874,9.560837 +L 0.5874,9.560837,0.5,9.595582 +L 0.5,9.595582,0.4092,9.624017 +L 0.4092,9.624017,0.3151,9.646126 +L 0.3151,9.646126,0.2105,9.661927 +L 0.2105,9.661927,0.1111,9.671408 +L 0.1111,9.671408,-0.0002,9.674566 +L -0.0002,9.674566,-0.0002,10.27922 +L -0.0002,10.27922,0.1884,10.274205 +L 0.1884,10.274205,0.3689,10.259145 +L 0.3689,10.259145,0.5448,10.234054 +L 0.5448,10.234054,0.7163,10.198918 +L 0.7163,10.198918,0.8819,10.153745 +L 0.8819,10.153745,1.0402,10.098531 +L 1.0402,10.098531,1.1994,10.033283 +L 1.1994,10.033283,1.3473,9.957993 +L 1.3473,9.957993,1.4838,9.862427 +L 1.4838,9.862427,1.6073,9.736332 +L 1.6073,9.736332,1.7093,9.579704 +L 1.7093,9.579704,1.7889,9.392544 +L 1.7889,9.392544,1.855,9.174867 +L 1.855,9.174867,1.9021,8.926644 +L 1.9021,8.926644,1.9279,8.647908 +L 1.9279,8.647908,1.9368,8.338639 +L 1.9368,8.338639,1.9368,6.494425 +L 1.9368,6.494425,1.9402,6.277361 +L 1.9402,6.277361,1.9469,6.078724 +L 1.9469,6.078724,1.9548,5.898499 +L 1.9548,5.898499,1.9691,5.736709 +L 1.9691,5.736709,1.9918,5.593334 +L 1.9918,5.593334,2.0142,5.468393 +L 2.0142,5.468393,2.0388,5.361864 +L 2.0388,5.361864,2.0713,5.273764 +L 2.0713,5.273764,2.1128,5.199806 +L 2.1128,5.199806,2.1778,5.135711 +L 2.1778,5.135711,2.2619,5.081469 +L 2.2619,5.081469,2.3605,5.037092 +L 2.3605,5.037092,2.4871,5.002582 +L 2.4871,5.002582,2.6261,4.97793 +L 2.6261,4.97793,2.7875,4.963136 +L 2.7875,4.963136,2.9702,4.958204 +L 2.9702,4.958204,2.9702,3.990755 +L 2.9702,3.990755,2.7875,3.985821 +L 2.7875,3.985821,2.6261,3.971027 +L 2.6261,3.971027,2.4871,3.946374 +L 2.4871,3.946374,2.3605,3.911866 +L 2.3605,3.911866,2.2619,3.867486 +L 2.2619,3.867486,2.1778,3.81325 +L 2.1778,3.81325,2.1128,3.749153 +L 2.1128,3.749153,2.0713,3.675193 +L 2.0713,3.675193,2.0388,3.587095 +L 2.0388,3.587095,2.0142,3.480566 +L 2.0142,3.480566,1.9918,3.35562 +L 1.9918,3.35562,1.9691,3.21225 +L 1.9691,3.21225,1.9548,3.05046 +L 1.9548,3.05046,1.9469,2.870237 +L 1.9469,2.870237,1.9402,2.6716 +L 1.9402,2.6716,1.9368,2.454536 +L 1.9368,2.454536,1.9368,0.610315 +L 1.9368,0.610315,1.9279,0.301049 +L 1.9279,0.301049,1.9021,0.022306 +L 1.9021,0.022306,1.855,-0.225904 +L 1.855,-0.225904,1.7889,-0.44359 +L 1.7889,-0.44359,1.7093,-0.630743 +L 1.7093,-0.630743,1.6073,-0.787373 +L 1.6073,-0.787373,1.4838,-0.91347 +L 1.4838,-0.91347,1.3473,-1.009041 +L 1.3473,-1.009041,1.1994,-1.084328 +L 1.1994,-1.084328,1.0402,-1.149579 +L 1.0402,-1.149579,0.8819,-1.204786 +L 0.8819,-1.204786,0.7163,-1.249962 +L 0.7163,-1.249962,0.5448,-1.285093 +L 0.5448,-1.285093,0.3689,-1.310188 +L 0.3689,-1.310188,0.1884,-1.325249 +L 0.1884,-1.325249,-0.0002,-1.330268 + +[「] 170 +L 0.0005,4.931754,0.0123,5.22084 +L 0.0123,5.22084,0.0464,5.501397 +L 0.0464,5.501397,0.1036,5.773417 +L 0.1036,5.773417,0.1837,6.036909 +L 0.1837,6.036909,0.2863,6.291868 +L 0.2863,6.291868,0.4124,6.538294 +L 0.4124,6.538294,0.5603,6.776185 +L 0.5603,6.776185,0.7318,7.005545 +L 0.7318,7.005545,0.9223,7.216572 +L 0.9223,7.216572,1.1274,7.399459 +L 1.1274,7.399459,1.3471,7.55421 +L 1.3471,7.55421,1.5819,7.680826 +L 1.5819,7.680826,1.8313,7.779302 +L 1.8313,7.779302,2.0964,7.849644 +L 2.0964,7.849644,2.376,7.891853 +L 2.376,7.891853,2.6696,7.90592 +L 2.6696,7.90592,2.7335,7.905358 +L 2.7335,7.905358,2.7963,7.903678 +L 2.7963,7.903678,2.859,7.900872 +L 2.859,7.900872,2.9207,7.896947 +L 2.9207,7.896947,2.9818,7.891895 +L 2.9818,7.891895,3.0417,7.885726 +L 3.0417,7.885726,3.1017,7.878435 +L 3.1017,7.878435,3.1605,7.870018 +L 3.1605,7.870018,3.406,8.756223 +L 3.406,8.756223,3.94,8.639066 +L 3.94,8.639066,3.6946,7.766093 +L 3.6946,7.766093,3.8173,7.720062 +L 3.8173,7.720062,3.9406,7.664174 +L 3.9406,7.664174,4.0639,7.598422 +L 4.0639,7.598422,4.1872,7.522811 +L 4.1872,7.522811,4.3105,7.43734 +L 4.3105,7.43734,4.4343,7.342006 +L 4.4343,7.342006,4.5582,7.23681 +L 4.5582,7.23681,4.6826,7.121756 +L 4.6826,7.121756,4.7997,6.99518 +L 4.7997,6.99518,4.9045,6.855443 +L 4.9045,6.855443,4.9953,6.702537 +L 4.9953,6.702537,5.0732,6.536461 +L 5.0732,6.536461,5.1382,6.357219 +L 5.1382,6.357219,5.1897,6.164808 +L 5.1897,6.164808,5.2284,5.959229 +L 5.2284,5.959229,5.253,5.740486 +L 5.253,5.740486,4.2074,5.740486 +L 4.2074,5.740486,4.176,5.905672 +L 4.176,5.905672,4.1423,6.05545 +L 4.1423,6.05545,4.1048,6.189817 +L 4.1048,6.189817,4.0645,6.308769 +L 4.0645,6.308769,4.0207,6.41231 +L 4.0207,6.41231,3.9742,6.500441 +L 3.9742,6.500441,3.9238,6.573163 +L 3.9238,6.573163,3.8711,6.630465 +L 3.8711,6.630465,3.8162,6.678059 +L 3.8162,6.678059,3.763,6.721638 +L 3.763,6.721638,3.7103,6.761203 +L 3.7103,6.761203,3.6587,6.796748 +L 3.6587,6.796748,3.6077,6.828279 +L 3.6077,6.828279,3.5573,6.855798 +L 3.5573,6.855798,3.508,6.879301 +L 3.508,6.879301,3.4598,6.898784 +L 3.4598,6.898784,2.3497,2.862683 +L 2.3497,2.862683,2.3928,2.85427 +L 2.3928,2.85427,2.4365,2.846977 +L 2.4365,2.846977,2.4802,2.840808 +L 2.4802,2.840808,2.5256,2.835758 +L 2.5256,2.835758,2.571,2.831831 +L 2.571,2.831831,2.6181,2.829026 +L 2.6181,2.829026,2.6646,2.827343 +L 2.6646,2.827343,2.7122,2.826781 +L 2.7122,2.826781,2.8708,2.830281 +L 2.8708,2.830281,3.0193,2.840777 +L 3.0193,2.840777,3.1589,2.85827 +L 3.1589,2.85827,3.2894,2.882761 +L 3.2894,2.882761,3.4099,2.91425 +L 3.4099,2.91425,3.5214,2.952733 +L 3.5214,2.952733,3.6234,2.998217 +L 3.6234,2.998217,3.7159,3.050697 +L 3.7159,3.050697,3.8016,3.113684 +L 3.8016,3.113684,3.8829,3.190701 +L 3.8829,3.190701,3.9597,3.281738 +L 3.9597,3.281738,4.0308,3.386801 +L 4.0308,3.386801,4.0981,3.505888 +L 4.0981,3.505888,4.1603,3.638997 +L 4.1603,3.638997,4.2186,3.786133 +L 4.2186,3.786133,4.2712,3.947292 +L 4.2712,3.947292,5.3601,3.947292 +L 5.3601,3.947292,5.3147,3.726007 +L 5.3147,3.726007,5.2519,3.516591 +L 5.2519,3.516591,5.1723,3.319041 +L 5.1723,3.319041,5.076,3.133363 +L 5.076,3.133363,4.9628,2.959554 +L 4.9628,2.959554,4.8327,2.797612 +L 4.8327,2.797612,4.6859,2.64754 +L 4.6859,2.64754,4.5223,2.509336 +L 4.5223,2.509336,4.343,2.385334 +L 4.343,2.385334,4.1508,2.277863 +L 4.1508,2.277863,3.9451,2.186929 +L 3.9451,2.186929,3.7254,2.112528 +L 3.7254,2.112528,3.4923,2.054663 +L 3.4923,2.054663,3.2457,2.013325 +L 3.2457,2.013325,2.9857,1.988526 +L 2.9857,1.988526,2.7122,1.980258 +L 2.7122,1.980258,2.6332,1.981175 +L 2.6332,1.981175,2.5553,1.98392 +L 2.5553,1.98392,2.478,1.988497 +L 2.478,1.988497,2.4029,1.994902 +L 2.4029,1.994902,2.3289,2.003142 +L 2.3289,2.003142,2.2561,2.013209 +L 2.2561,2.013209,2.1843,2.025104 +L 2.1843,2.025104,2.1148,2.038836 +L 2.1148,2.038836,1.7304,0.644342 +L 1.7304,0.644342,1.1964,0.763381 +L 1.1964,0.763381,1.5914,2.212676 +L 1.5914,2.212676,1.4704,2.274928 +L 1.4704,2.274928,1.3465,2.351146 +L 1.3465,2.351146,1.2205,2.441327 +L 1.2205,2.441327,1.0927,2.545472 +L 1.0927,2.545472,0.9616,2.663584 +L 0.9616,2.663584,0.8287,2.795664 +L 0.8287,2.795664,0.6937,2.941707 +L 0.6937,2.941707,0.5558,3.101714 +L 0.5558,3.101714,0.4258,3.276423 +L 0.4258,3.276423,0.3126,3.466578 +L 0.3126,3.466578,0.2174,3.67217 +L 0.2174,3.67217,0.1395,3.893203 +L 0.1395,3.893203,0.0784,4.129677 +L 0.0784,4.129677,0.0358,4.381593 +L 0.0358,4.381593,0.0095,4.648955 +L 0.0095,4.648955,0.0005,4.931754 +L 2.6595,6.938466,2.4937,6.930715 +L 2.4937,6.930715,2.3345,6.907467 +L 2.3345,6.907467,2.1815,6.868717 +L 2.1815,6.868717,2.0347,6.814464 +L 2.0347,6.814464,1.8929,6.744711 +L 1.8929,6.744711,1.7584,6.659461 +L 1.7584,6.659461,1.629,6.558709 +L 1.629,6.558709,1.5063,6.442456 +L 1.5063,6.442456,1.3931,6.308489 +L 1.3931,6.308489,1.2956,6.154591 +L 1.2956,6.154591,1.2132,5.980769 +L 1.2132,5.980769,1.1454,5.787016 +L 1.1454,5.787016,1.0933,5.573331 +L 1.0933,5.573331,1.0557,5.33972 +L 1.0557,5.33972,1.0333,5.086182 +L 1.0333,5.086182,1.0254,4.81271 +L 1.0254,4.81271,1.031,4.563773 +L 1.031,4.563773,1.0456,4.3366 +L 1.0456,4.3366,1.0714,4.131183 +L 1.0714,4.131183,1.1073,3.947526 +L 1.1073,3.947526,1.1527,3.785629 +L 1.1527,3.785629,1.2087,3.645492 +L 1.2087,3.645492,1.2748,3.527113 +L 1.2748,3.527113,1.3516,3.430498 +L 1.3516,3.430498,1.43,3.348462 +L 1.43,3.348462,1.504,3.273842 +L 1.504,3.273842,1.5724,3.206628 +L 1.5724,3.206628,1.6352,3.146828 +L 1.6352,3.146828,1.6934,3.094436 +L 1.6934,3.094436,1.7467,3.049458 +L 1.7467,3.049458,1.7943,3.011885 +L 1.7943,3.011885,1.8369,2.981727 +L 1.8369,2.981727,2.9151,6.927127 +L 2.9151,6.927127,2.8859,6.929782 +L 2.8859,6.929782,2.8551,6.932085 +L 2.8551,6.932085,2.8243,6.934038 +L 2.8243,6.934038,2.7929,6.935632 +L 2.7929,6.935632,2.7604,6.936873 +L 2.7604,6.936873,2.7268,6.937757 +L 2.7268,6.937757,2.6932,6.938289 +L 2.6932,6.938289,2.6595,6.938466 + +[ー] 128 +L 0.001,8.344311,0.0078,8.490499 +L 0.0078,8.490499,0.0179,8.631464 +L 0.0179,8.631464,0.0481,8.767206 +L 0.0481,8.767206,0.0829,8.897718 +L 0.0829,8.897718,0.1299,9.023003 +L 0.1299,9.023003,0.1871,9.143063 +L 0.1871,9.143063,0.251,9.257897 +L 0.251,9.257897,0.3283,9.367508 +L 0.3283,9.367508,0.4146,9.467816 +L 0.4146,9.467816,0.4987,9.554754 +L 0.4987,9.554754,0.5928,9.628308 +L 0.5928,9.628308,0.6886,9.688504 +L 0.6886,9.688504,0.7912,9.73531 +L 0.7912,9.73531,0.8999,9.768749 +L 0.8999,9.768749,1.0064,9.788803 +L 1.0064,9.788803,1.123,9.795499 +L 1.123,9.795499,1.235,9.788803 +L 1.235,9.788803,1.346,9.768749 +L 1.346,9.768749,1.4457,9.73531 +L 1.4457,9.73531,1.5522,9.688504 +L 1.5522,9.688504,1.6464,9.628308 +L 1.6464,9.628308,1.7427,9.554754 +L 1.7427,9.554754,1.8268,9.467816 +L 1.8268,9.467816,1.9131,9.367508 +L 1.9131,9.367508,1.9927,9.257897 +L 1.9927,9.257897,2.0599,9.143063 +L 2.0599,9.143063,2.1171,9.023003 +L 2.1171,9.023003,2.1642,8.897718 +L 2.1642,8.897718,2.195,8.767206 +L 2.195,8.767206,2.2236,8.631464 +L 2.2236,8.631464,2.2381,8.490499 +L 2.2381,8.490499,2.2426,8.344311 +L 2.2426,8.344311,2.2381,8.195547 +L 2.2381,8.195547,2.2236,8.052552 +L 2.2236,8.052552,2.195,7.915302 +L 2.195,7.915302,2.1642,7.783814 +L 2.1642,7.783814,2.1171,7.658089 +L 2.1171,7.658089,2.0599,7.538114 +L 2.0599,7.538114,1.9927,7.423902 +L 1.9927,7.423902,1.9131,7.315437 +L 1.9131,7.315437,1.8268,7.216458 +L 1.8268,7.216458,1.7427,7.130676 +L 1.7427,7.130676,1.6464,7.058088 +L 1.6464,7.058088,1.5522,6.998708 +L 1.5522,6.998708,1.4457,6.952516 +L 1.4457,6.952516,1.346,6.919518 +L 1.346,6.919518,1.235,6.89972 +L 1.235,6.89972,1.123,6.893123 +L 1.123,6.893123,1.0064,6.89972 +L 1.0064,6.89972,0.8999,6.919518 +L 0.8999,6.919518,0.7912,6.952516 +L 0.7912,6.952516,0.6886,6.998708 +L 0.6886,6.998708,0.5928,7.058088 +L 0.5928,7.058088,0.4987,7.130676 +L 0.4987,7.130676,0.4146,7.216458 +L 0.4146,7.216458,0.3283,7.315437 +L 0.3283,7.315437,0.251,7.423902 +L 0.251,7.423902,0.1871,7.538114 +L 0.1871,7.538114,0.1299,7.658089 +L 0.1299,7.658089,0.0829,7.783814 +L 0.0829,7.783814,0.0481,7.915302 +L 0.0481,7.915302,0.0179,8.052552 +L 0.0179,8.052552,0.0078,8.195547 +L 0.0078,8.195547,0.001,8.344311 +L 0.3547,8.344311,0.3597,8.242136 +L 0.3597,8.242136,0.3675,8.144426 +L 0.3675,8.144426,0.3855,8.051171 +L 0.3855,8.051171,0.4101,7.962377 +L 0.4101,7.962377,0.4415,7.87804 +L 0.4415,7.87804,0.4763,7.798165 +L 0.4763,7.798165,0.5211,7.722748 +L 0.5211,7.722748,0.5738,7.651784 +L 0.5738,7.651784,0.6332,7.587341 +L 0.6332,7.587341,0.6886,7.531504 +L 0.6886,7.531504,0.752,7.484242 +L 0.752,7.484242,0.8215,7.44558 +L 0.8215,7.44558,0.8898,7.415513 +L 0.8898,7.415513,0.9649,7.394032 +L 0.9649,7.394032,1.0411,7.381146 +L 1.0411,7.381146,1.123,7.376851 +L 1.123,7.376851,1.2003,7.381146 +L 1.2003,7.381146,1.2787,7.394032 +L 1.2787,7.394032,1.3482,7.415513 +L 1.3482,7.415513,1.4233,7.44558 +L 1.4233,7.44558,1.485,7.484242 +L 1.485,7.484242,1.5522,7.531504 +L 1.5522,7.531504,1.6083,7.587341 +L 1.6083,7.587341,1.6654,7.651784 +L 1.6654,7.651784,1.7203,7.722748 +L 1.7203,7.722748,1.7618,7.798165 +L 1.7618,7.798165,1.8021,7.87804 +L 1.8021,7.87804,1.8347,7.962377 +L 1.8347,7.962377,1.8593,8.051171 +L 1.8593,8.051171,1.8784,8.144426 +L 1.8784,8.144426,1.8879,8.242136 +L 1.8879,8.242136,1.8907,8.344311 +L 1.8907,8.344311,1.8879,8.443905 +L 1.8879,8.443905,1.8784,8.539581 +L 1.8784,8.539581,1.8593,8.631332 +L 1.8593,8.631332,1.8347,8.719154 +L 1.8347,8.719154,1.8021,8.803045 +L 1.8021,8.803045,1.7618,8.883016 +L 1.7618,8.883016,1.7203,8.95905 +L 1.7203,8.95905,1.6654,9.031164 +L 1.6654,9.031164,1.6083,9.096935 +L 1.6083,9.096935,1.5522,9.153927 +L 1.5522,9.153927,1.485,9.202158 +L 1.485,9.202158,1.4233,9.241615 +L 1.4233,9.241615,1.3482,9.272305 +L 1.3482,9.272305,1.2787,9.294228 +L 1.2787,9.294228,1.2003,9.307382 +L 1.2003,9.307382,1.123,9.311771 +L 1.123,9.311771,1.0411,9.307382 +L 1.0411,9.307382,0.9649,9.294228 +L 0.9649,9.294228,0.8898,9.272305 +L 0.8898,9.272305,0.8215,9.241615 +L 0.8215,9.241615,0.752,9.202158 +L 0.752,9.202158,0.6886,9.153927 +L 0.6886,9.153927,0.6332,9.096935 +L 0.6332,9.096935,0.5738,9.031164 +L 0.5738,9.031164,0.5211,8.95905 +L 0.5211,8.95905,0.4763,8.883016 +L 0.4763,8.883016,0.4415,8.803045 +L 0.4415,8.803045,0.4101,8.719154 +L 0.4101,8.719154,0.3855,8.631332 +L 0.3855,8.631332,0.3675,8.539581 +L 0.3675,8.539581,0.3597,8.443905 +L 0.3597,8.443905,0.3547,8.344311 + +[ア] 16 +L 2.9728,9.434587,3.6812,9.434587 +L 3.6812,9.434587,3.6812,6.046598 +L 3.6812,6.046598,6.6345,6.046598 +L 6.6345,6.046598,6.6345,5.200072 +L 6.6345,5.200072,3.6812,5.200072 +L 3.6812,5.200072,3.6812,1.798855 +L 3.6812,1.798855,2.9728,1.798855 +L 2.9728,1.798855,2.9728,5.200072 +L 2.9728,5.200072,0.0252,5.200072 +L 0.0252,5.200072,0.0252,6.046598 +L 0.0252,6.046598,2.9728,6.046598 +L 2.9728,6.046598,2.9728,9.434587 +L 0.0005,1.088378,6.5829,1.088378 +L 6.5829,1.088378,6.5829,0.241853 +L 6.5829,0.241853,0.0005,0.241853 +L 0.0005,0.241853,0.0005,1.088378 + +[ト] 20 +L 6.2116,-0.08315,5.2561,-0.08315 +L 5.2561,-0.08315,4.508,2.539558 +L 4.508,2.539558,1.7032,2.539558 +L 1.7032,2.539558,0.9551,-0.08315 +L 0.9551,-0.08315,-0.0004,-0.08315 +L -0.0004,-0.08315,2.5724,8.916822 +L 2.5724,8.916822,3.6382,8.916822 +L 3.6382,8.916822,6.2116,-0.08315 +L 2.0075,3.627977,4.1997,3.627977 +L 4.1997,3.627977,3.1395,7.337148 +L 3.1395,7.337148,3.0706,7.337148 +L 3.0706,7.337148,2.0075,3.627977 +L 1.3933,10.069879,1.3933,11.521061 +L 1.3933,11.521061,2.5158,11.521061 +L 2.5158,11.521061,2.5158,10.069879 +L 2.5158,10.069879,1.3933,10.069879 +L 3.6948,10.069879,3.6948,11.521061 +L 3.6948,11.521061,4.8195,11.521061 +L 4.8195,11.521061,4.8195,10.069879 +L 4.8195,10.069879,3.6948,10.069879 + +[ヨ] 136 +L -0.0008,4.593535,0.0138,5.030922 +L 0.0138,5.030922,0.0637,5.454996 +L 0.0637,5.454996,0.1427,5.865766 +L 0.1427,5.865766,0.2542,6.263224 +L 0.2542,6.263224,0.3971,6.647303 +L 0.3971,6.647303,0.5759,7.018143 +L 0.5759,7.018143,0.7815,7.375603 +L 0.7815,7.375603,1.0191,7.719822 +L 1.0191,7.719822,1.2853,8.036238 +L 1.2853,8.036238,1.5616,8.310475 +L 1.5616,8.310475,1.8569,8.54255 +L 1.8569,8.54255,2.1634,8.73238 +L 2.1634,8.73238,2.4907,8.880048 +L 2.4907,8.880048,2.8281,8.98554 +L 2.8281,8.98554,3.1822,9.048794 +L 3.1822,9.048794,3.551,9.069879 +L 3.551,9.069879,3.9175,9.048794 +L 3.9175,9.048794,4.2649,8.98554 +L 4.2649,8.98554,4.5989,8.880048 +L 4.5989,8.880048,4.9139,8.73238 +L 4.9139,8.73238,5.2165,8.54255 +L 5.2165,8.54255,5.4955,8.310475 +L 5.4955,8.310475,5.7612,8.036238 +L 5.7612,8.036238,6.0094,7.719822 +L 6.0094,7.719822,6.2285,7.375463 +L 6.2285,7.375463,6.4247,7.017442 +L 6.4247,7.017442,6.5905,6.645692 +L 6.5905,6.645692,6.7217,6.260352 +L 6.7217,6.260352,6.8293,5.861283 +L 6.8293,5.861283,6.901,5.448624 +L 6.901,5.448624,6.9453,5.022236 +L 6.9453,5.022236,6.9604,4.582188 +L 6.9604,4.582188,6.9453,4.120004 +L 6.9453,4.120004,6.901,3.674422 +L 6.901,3.674422,6.8293,3.245512 +L 6.8293,3.245512,6.7217,2.833133 +L 6.7217,2.833133,6.5905,2.437426 +L 6.5905,2.437426,6.4247,2.058391 +L 6.4247,2.058391,6.2285,1.695887 +L 6.2285,1.695887,6.0094,1.350055 +L 6.0094,1.350055,5.7612,1.033643 +L 5.7612,1.033643,5.4955,0.759399 +L 5.4955,0.759399,5.2165,0.527397 +L 5.2165,0.527397,4.9139,0.337496 +L 4.9139,0.337496,4.5989,0.189833 +L 4.5989,0.189833,4.2649,0.084339 +L 4.2649,0.084339,3.9175,0.021085 +L 3.9175,0.021085,3.551,0 +L 3.551,0,3.1822,0.021085 +L 3.1822,0.021085,2.8281,0.084339 +L 2.8281,0.084339,2.4907,0.189833 +L 2.4907,0.189833,2.1634,0.337496 +L 2.1634,0.337496,1.8569,0.527397 +L 1.8569,0.527397,1.5616,0.759399 +L 1.5616,0.759399,1.2853,1.033643 +L 1.2853,1.033643,1.0191,1.350055 +L 1.0191,1.350055,0.7815,1.696097 +L 0.7815,1.696097,0.5759,2.059091 +L 0.5759,2.059091,0.3971,2.439037 +L 0.3971,2.439037,0.2542,2.836005 +L 0.2542,2.836005,0.1427,3.249925 +L 0.1427,3.249925,0.0637,3.680796 +L 0.0637,3.680796,0.0138,4.12869 +L 0.0138,4.12869,-0.0008,4.593535 +L 0.9452,4.582188,0.9552,4.160492 +L 0.9552,4.160492,0.9945,3.763735 +L 0.9945,3.763735,1.0539,3.391914 +L 1.0539,3.391914,1.1435,3.045032 +L 1.1435,3.045032,1.2573,2.723016 +L 1.2573,2.723016,1.3935,2.425938 +L 1.3935,2.425938,1.5549,2.153795 +L 1.5549,2.153795,1.7432,1.906595 +L 1.7432,1.906595,1.9466,1.686428 +L 1.9466,1.686428,2.1567,1.495687 +L 2.1567,1.495687,2.3725,1.334294 +L 2.3725,1.334294,2.5949,1.202249 +L 2.5949,1.202249,2.8225,1.099487 +L 2.8225,1.099487,3.0578,1.026148 +L 3.0578,1.026148,3.3033,0.982087 +L 3.3033,0.982087,3.551,0.967447 +L 3.551,0.967447,3.7942,0.982087 +L 3.7942,0.982087,4.0368,1.026148 +L 4.0368,1.026148,4.2649,1.099487 +L 4.2649,1.099487,4.4852,1.202249 +L 4.4852,1.202249,4.6987,1.334294 +L 4.6987,1.334294,4.9038,1.495687 +L 4.9038,1.495687,5.0965,1.686428 +L 5.0965,1.686428,5.2882,1.906595 +L 5.2882,1.906595,5.4546,2.154006 +L 5.4546,2.154006,5.6043,2.426639 +L 5.6043,2.426639,5.7309,2.724627 +L 5.7309,2.724627,5.8329,3.047833 +L 5.8329,3.047833,5.9147,3.396397 +L 5.9147,3.396397,5.9719,3.770179 +L 5.9719,3.770179,6.0038,4.169176 +L 6.0038,4.169176,6.0189,4.593535 +L 6.0189,4.593535,6.0038,5.003672 +L 6.0038,5.003672,5.9719,5.389433 +L 5.9719,5.389433,5.9147,5.750883 +L 5.9147,5.750883,5.8329,6.087959 +L 5.8329,6.087959,5.7309,6.40066 +L 5.7309,6.40066,5.6043,6.68898 +L 5.6043,6.68898,5.4546,6.952997 +L 5.4546,6.952997,5.2882,7.192635 +L 5.2882,7.192635,5.0965,7.405866 +L 5.0965,7.405866,4.9038,7.590653 +L 4.9038,7.590653,4.6987,7.747071 +L 4.6987,7.747071,4.4852,7.874982 +L 4.4852,7.874982,4.2649,7.974522 +L 4.2649,7.974522,4.0368,8.045552 +L 4.0368,8.045552,3.7942,8.088212 +L 3.7942,8.088212,3.551,8.102429 +L 3.551,8.102429,3.3033,8.088212 +L 3.3033,8.088212,3.0578,8.045552 +L 3.0578,8.045552,2.8225,7.974522 +L 2.8225,7.974522,2.5949,7.874982 +L 2.5949,7.874982,2.3725,7.747071 +L 2.3725,7.747071,2.1567,7.590653 +L 2.1567,7.590653,1.9466,7.405866 +L 1.9466,7.405866,1.7432,7.192635 +L 1.7432,7.192635,1.5549,6.952787 +L 1.5549,6.952787,1.3935,6.688282 +L 1.3935,6.688282,1.2573,6.399049 +L 1.2573,6.399049,1.1435,6.08509 +L 1.1435,6.08509,1.0539,5.746402 +L 1.0539,5.746402,0.9945,5.383058 +L 0.9945,5.383058,0.9552,4.994986 +L 0.9552,4.994986,0.9452,4.582188 +L 1.839,10.069879,1.839,11.521061 +L 1.839,11.521061,2.9614,11.521061 +L 2.9614,11.521061,2.9614,10.069879 +L 2.9614,10.069879,1.839,10.069879 +L 4.1405,10.069879,4.1405,11.521061 +L 4.1405,11.521061,5.2652,11.521061 +L 5.2652,11.521061,5.2652,10.069879 +L 5.2652,10.069879,4.1405,10.069879 + +[ワ] 78 +L 2.9219,0.967447,3.1051,0.976413 +L 3.1051,0.976413,3.289,1.003242 +L 3.289,1.003242,3.4666,1.047934 +L 3.4666,1.047934,3.6459,1.110557 +L 3.6459,1.110557,3.814,1.191114 +L 3.814,1.191114,3.9844,1.289463 +L 3.9844,1.289463,4.1503,1.405814 +L 4.1503,1.405814,4.3145,1.539958 +L 4.3145,1.539958,4.463,1.695187 +L 4.463,1.695187,4.5963,1.874652 +L 4.5963,1.874652,4.7067,2.078355 +L 4.7067,2.078355,4.7947,2.306224 +L 4.7947,2.306224,4.8642,2.558259 +L 4.8642,2.558259,4.9158,2.834604 +L 4.9158,2.834604,4.9483,3.135042 +L 4.9483,3.135042,4.9589,3.459792 +L 4.9589,3.459792,4.9589,8.986728 +L 4.9589,8.986728,5.8427,8.986728 +L 5.8427,8.986728,5.8427,3.459792 +L 5.8427,3.459792,5.8298,2.999079 +L 5.8298,2.999079,5.7883,2.574022 +L 5.7883,2.574022,5.7267,2.184689 +L 5.7267,2.184689,5.6297,1.830942 +L 5.6297,1.830942,5.5137,1.512919 +L 5.5137,1.512919,5.368,1.230551 +L 5.368,1.230551,5.196,0.983839 +L 5.196,0.983839,4.9948,0.772851 +L 4.9948,0.772851,4.7779,0.591704 +L 4.7779,0.591704,4.547,0.434724 +L 4.547,0.434724,4.3094,0.301911 +L 4.3094,0.301911,4.0539,0.193195 +L 4.0539,0.193195,3.7916,0.108646 +L 3.7916,0.108646,3.5114,0.048262 +L 3.5114,0.048262,3.2245,0.012048 +L 3.2245,0.012048,2.9219,0 +L 2.9219,0,2.6226,0.012048 +L 2.6226,0.012048,2.3279,0.048262 +L 2.3279,0.048262,2.0522,0.108646 +L 2.0522,0.108646,1.7877,0.193195 +L 1.7877,0.193195,1.5344,0.301911 +L 1.5344,0.301911,1.2923,0.434724 +L 1.2923,0.434724,1.0636,0.591704 +L 1.0636,0.591704,0.8484,0.772851 +L 0.8484,0.772851,0.6478,0.983839 +L 0.6478,0.983839,0.4741,1.230551 +L 0.4741,1.230551,0.3306,1.512919 +L 0.3306,1.512919,0.2141,1.830942 +L 0.2141,1.830942,0.1177,2.184689 +L 0.1177,2.184689,0.0561,2.574022 +L 0.0561,2.574022,0.0135,2.999079 +L 0.0135,2.999079,-0.0005,3.459792 +L -0.0005,3.459792,-0.0005,8.986728 +L -0.0005,8.986728,0.8854,8.986728 +L 0.8854,8.986728,0.8854,3.459792 +L 0.8854,3.459792,0.8961,3.135042 +L 0.8961,3.135042,0.928,2.834604 +L 0.928,2.834604,0.9751,2.558259 +L 0.9751,2.558259,1.0491,2.306224 +L 1.0491,2.306224,1.1387,2.078355 +L 1.1387,2.078355,1.2474,1.874652 +L 1.2474,1.874652,1.3763,1.695187 +L 1.3763,1.695187,1.5299,1.539958 +L 1.5299,1.539958,1.6935,1.405814 +L 1.6935,1.405814,1.8616,1.289463 +L 1.8616,1.289463,2.0281,1.191114 +L 2.0281,1.191114,2.199,1.110557 +L 2.199,1.110557,2.3772,1.047934 +L 2.3772,1.047934,2.5554,1.003242 +L 2.5554,1.003242,2.7398,0.976413 +L 2.7398,0.976413,2.9219,0.967447 +L 1.2099,10.069879,1.2099,11.521061 +L 1.2099,11.521061,2.3324,11.521061 +L 2.3324,11.521061,2.3324,10.069879 +L 2.3324,10.069879,1.2099,10.069879 +L 3.5114,10.069879,3.5114,11.521061 +L 3.5114,11.521061,4.6361,11.521061 +L 4.6361,11.521061,4.6361,10.069879 +L 4.6361,10.069879,3.5114,10.069879 + +[゚] 171 +L 2.7388,9.069879,2.9747,9.058321 +L 2.9747,9.058321,3.2022,9.023434 +L 3.2022,9.023434,3.4129,8.965364 +L 3.4129,8.965364,3.613,8.884039 +L 3.613,8.884039,3.8041,8.779453 +L 3.8041,8.779453,3.9828,8.651684 +L 3.9828,8.651684,4.151,8.500588 +L 4.151,8.500588,4.3034,8.326378 +L 4.3034,8.326378,4.4485,8.139137 +L 4.4485,8.139137,4.5718,7.949304 +L 4.5718,7.949304,4.6738,7.75688 +L 4.6738,7.75688,4.7601,7.561791 +L 4.7601,7.561791,4.8217,7.364113 +L 4.8217,7.364113,4.8688,7.163772 +L 4.8688,7.163772,4.8991,6.960772 +L 4.8991,6.960772,4.9092,6.755176 +L 4.9092,6.755176,4.9019,6.605554 +L 4.9019,6.605554,4.889,6.45726 +L 4.889,6.45726,4.8666,6.310087 +L 4.8666,6.310087,4.8402,6.164245 +L 4.8402,6.164245,4.7971,6.019594 +L 4.7971,6.019594,4.7506,5.876203 +L 4.7506,5.876203,4.6906,5.734002 +L 4.6906,5.734002,4.629,5.593135 +L 4.629,5.593135,4.5528,5.459339 +L 4.5528,5.459339,4.4732,5.338717 +L 4.4732,5.338717,4.3891,5.23119 +L 4.3891,5.23119,4.295,5.136766 +L 4.295,5.136766,4.1975,5.055439 +L 4.1975,5.055439,4.0949,4.987281 +L 4.0949,4.987281,3.9828,4.932152 +L 3.9828,4.932152,3.868,4.890193 +L 3.868,4.890193,3.9845,4.853558 +L 3.9845,4.853558,4.0988,4.802349 +L 4.0988,4.802349,4.2154,4.736576 +L 4.2154,4.736576,4.3247,4.656089 +L 4.3247,4.656089,4.4368,4.561033 +L 4.4368,4.561033,4.5404,4.451406 +L 4.5404,4.451406,4.6441,4.327139 +L 4.6441,4.327139,4.7433,4.188232 +L 4.7433,4.188232,4.8402,4.035875 +L 4.8402,4.035875,4.9193,3.871188 +L 4.9193,3.871188,4.9915,3.694176 +L 4.9915,3.694176,5.0448,3.504903 +L 5.0448,3.504903,5.0874,3.303302 +L 5.0874,3.303302,5.1165,3.089372 +L 5.1165,3.089372,5.1372,2.863114 +L 5.1372,2.863114,5.1429,2.624597 +L 5.1429,2.624597,5.1344,2.396095 +L 5.1344,2.396095,5.1042,2.171728 +L 5.1042,2.171728,5.0549,1.951496 +L 5.0549,1.951496,4.9831,1.735325 +L 4.9831,1.735325,4.8968,1.523286 +L 4.8968,1.523286,4.7881,1.315311 +L 4.7881,1.315311,4.6592,1.111468 +L 4.6592,1.111468,4.5079,0.911688 +L 4.5079,0.911688,4.3421,0.726338 +L 4.3421,0.726338,4.1582,0.565716 +L 4.1582,0.565716,3.9621,0.429821 +L 3.9621,0.429821,3.7548,0.318583 +L 3.7548,0.318583,3.5295,0.232142 +L 3.2863,0.170359,3.0307,0.133303 +L 3.0307,0.133303,2.7612,0.120905 +L 2.7584,1.088352,2.9074,1.094306 +L 2.9074,1.094306,3.0531,1.112168 +L 3.0531,1.112168,3.1899,1.141937 +L 3.1899,1.141937,3.3233,1.183546 +L 3.3233,1.183546,3.4449,1.237136 +L 3.4449,1.237136,3.5631,1.302562 +L 3.5631,1.302562,3.6774,1.379896 +L 3.6774,1.379896,3.7873,1.469138 +L 3.7873,1.469138,3.8803,1.570289 +L 3.8803,1.570289,3.9677,1.683278 +L 3.9677,1.683278,4.0394,1.808246 +L 4.0394,1.808246,4.0966,1.945049 +L 4.0966,1.945049,4.1414,2.093763 +L 4.1414,2.093763,4.1762,2.254388 +L 4.1762,2.254388,4.1958,2.426917 +L 4.1958,2.426917,4.1975,2.611358 +L 4.1975,2.611358,4.1907,2.843851 +L 4.1907,2.843851,4.1661,3.060302 +L 4.1661,3.060302,4.1252,3.260853 +L 4.1252,3.260853,4.0641,3.445362 +L 4.0641,3.445362,3.9868,3.61397 +L 3.9868,3.61397,3.8932,3.766536 +L 3.8932,3.766536,3.7873,3.903132 +L 3.7873,3.903132,3.6606,4.023824 +L 3.6606,4.023824,3.5194,4.129461 +L 3.5194,4.129461,3.3703,4.221012 +L 3.3703,4.221012,3.2123,4.298419 +L 3.2123,4.298419,3.047,4.361813 +L 3.047,4.361813,2.8733,4.411126 +L 2.8733,4.411126,2.6889,4.446292 +L 2.6889,4.446292,2.4984,4.467447 +L 2.4984,4.467447,2.2961,4.474452 +L 2.2961,5.20009,2.4984,5.207443 +L 2.4984,5.207443,2.6844,5.229511 +L 2.6844,5.229511,2.8581,5.266356 +L 2.8581,5.266356,3.0218,5.317912 +L 3.0218,5.317912,3.1759,5.384249 +L 3.1759,5.384249,3.3109,5.465223 +L 3.3109,5.465223,3.432,5.56105 +L 3.432,5.56105,3.5441,5.67152 +L 3.5441,5.67152,3.6427,5.791374 +L 3.6427,5.791374,3.7307,5.91508 +L 3.7307,5.91508,3.8018,6.04278 +L 3.8018,6.04278,3.8596,6.174402 +L 3.8596,6.174402,3.9027,6.309877 +L 3.9027,6.309877,3.938,6.449344 +L 3.938,6.449344,3.9604,6.592735 +L 3.9604,6.592735,3.9621,6.740048 +L 3.9621,6.740048,3.9604,6.883436 +L 3.9604,6.883436,3.9397,7.020592 +L 3.9397,7.020592,3.9128,7.151654 +L 3.9128,7.151654,3.868,7.276484 +L 3.868,7.276484,3.8147,7.395147 +L 3.8147,7.395147,3.7492,7.507645 +L 3.7492,7.507645,3.6707,7.61398 +L 3.6707,7.61398,3.581,7.71415 +L 3.581,7.71415,3.4847,7.805141 +L 3.4847,7.805141,3.3849,7.884019 +L 3.3849,7.884019,3.284,7.950776 +L 3.284,7.950776,3.1798,8.005342 +L 3.1798,8.005342,3.0756,8.047864 +L 3.0756,8.047864,2.9646,8.078195 +L 2.9646,8.078195,2.8525,8.096405 +L 2.8525,8.096405,2.736,8.102429 +L 2.0181,8.102429,1.9015,8.097108 +L 1.9015,8.097108,1.7928,8.080994 +L 1.7928,8.080994,1.6847,8.054238 +L 1.6847,8.054238,1.5799,8.01669 +L 1.5799,8.01669,1.4857,7.9685 +L 1.4857,7.9685,1.3893,7.909517 +L 1.3893,7.909517,1.2997,7.839886 +L 1.2997,7.839886,1.2156,7.759474 +L 1.2156,7.759474,1.136,7.665676 +L 1.136,7.665676,1.0699,7.555631 +L 1.0699,7.555631,1.0128,7.42933 +L 1.0128,7.42933,0.9679,7.286851 +L 0.9679,7.286851,0.9304,7.12819 +L 0.9304,7.12819,0.9085,6.953277 +L 0.9085,6.953277,0.8884,6.762184 +L 0.8884,6.762184,0.8861,6.554908 +L -0.0004,6.554908,0.0097,6.852827 +L 0.0097,6.852827,0.0371,7.132463 +L 0.0371,7.132463,0.0791,7.393816 +L 0.0791,7.393816,0.1408,7.636884 +L 0.1408,7.636884,0.2226,7.861741 +L 0.2226,7.861741,0.3173,8.068246 +L 0.3173,8.068246,0.4356,8.25654 +L 0.4356,8.25654,0.5695,8.426476 +L 0.5695,8.426476,0.718,8.577294 +L 0.718,8.577294,0.876,8.708006 +L 0.876,8.708006,1.0402,8.818613 +L 1.0402,8.818613,1.2179,8.909046 +L 1.2179,8.909046,1.4062,8.979443 +L 1.4062,8.979443,1.6006,9.029671 +L 1.6006,9.029671,1.8052,9.059862 +L 1.8052,9.059862,2.0209,9.069879 +L 2.0209,9.069879,2.7388,9.069879 +L 2.0181,8.102429,2.736,8.102429 +L 2.2961,5.20009,1.8859,5.20009 +L 1.8859,5.20009,1.8859,4.474452 +L 2.2961,4.474452,1.8859,4.474452 +L -0.0004,6.554908,-0.0004,0.120905 +L 0.8861,0.120905,-0.0004,0.120905 +L 0.8861,6.554908,0.8861,0.120905 +L 1.8859,1.088352,1.8859,0.120905 +L 3.5295,0.232142,3.2863,0.170359 +L 1.8859,0.120905,2.7584,0.120905 +L 2.7584,1.088352,1.8859,1.088352 + +[臂] 201 +L 2.1763,6.409414,2.3725,6.4008 +L 2.3725,6.4008,2.563,6.375022 +L 2.563,6.375022,2.7435,6.332082 +L 2.7435,6.332082,2.9161,6.27191 +L 2.9161,6.27191,3.073,6.194576 +L 3.073,6.194576,3.2243,6.10008 +L 3.2243,6.10008,3.3677,5.988422 +L 3.3677,5.988422,3.4966,5.85953 +L 3.4966,5.85953,3.6188,5.71418 +L 3.6188,5.71418,3.7253,5.553207 +L 3.7253,5.553207,3.8088,5.376474 +L 3.8088,5.376474,3.8833,5.183979 +L 3.8833,5.183979,3.9382,4.975863 +L 3.9382,4.975863,3.9808,4.751986 +L 3.9808,4.751986,4.0032,4.512419 +L 4.0032,4.512419,4.0122,4.25716 +L 4.0122,4.25716,4.0122,1.347253 +L 4.0122,1.347253,4.0122,1.165826 +L 4.0122,1.165826,4.0251,0.988109 +L 4.0251,0.988109,4.0424,0.81411 +L 4.0424,0.81411,4.0615,0.643888 +L 4.0615,0.643888,4.0929,0.477312 +L 4.0929,0.477312,4.1287,0.31445 +L 4.1287,0.31445,4.1713,0.155369 +L 4.1713,0.155369,4.2223,0 +L 4.2223,0,3.2299,0 +L 3.2299,0,3.1996,0.180026 +L 3.2019,0.180306,3.1772,0.354518 +L 3.1772,0.354728,3.1548,0.522986 +L 3.1548,0.523266,3.138,0.68564 +L 3.138,0.68592,3.0763,0.611318 +L 3.0763,0.611318,3.0113,0.540498 +L 3.0113,0.540498,2.9418,0.473602 +L 2.9418,0.473602,2.8712,0.410487 +L 2.8712,0.410487,2.7905,0.351226 +L 2.7905,0.351226,2.7121,0.295817 +L 2.7121,0.295817,2.6224,0.244261 +L 2.6224,0.244261,2.5361,0.196485 +L 2.5361,0.196485,2.4397,0.153337 +L 2.4397,0.153337,2.3478,0.115511 +L 2.3478,0.115511,2.2559,0.082938 +L 2.2559,0.082938,2.1618,0.055759 +L 2.1618,0.055759,2.0671,0.033834 +L 2.0671,0.033834,1.9757,0.017232 +L 1.9757,0.017232,1.8849,0.005954 +L 1.8849,0.005954,1.793,0 +L 1.793,0,1.5846,0.006655 +L 1.5846,0.006655,1.394,0.026546 +L 1.394,0.026546,1.208,0.05975 +L 1.208,0.05975,1.0387,0.106262 +L 1.0387,0.106262,0.8785,0.166084 +L 0.8785,0.166084,0.7328,0.239145 +L 0.7328,0.239145,0.596,0.325518 +L 0.596,0.325518,0.475,0.425125 +L 0.475,0.425125,0.3629,0.538257 +L 0.3629,0.538257,0.2654,0.665113 +L 0.2654,0.665113,0.1847,0.805634 +L 0.1847,0.805634,0.1175,0.959882 +L 0.1175,0.959882,0.0637,1.127789 +L 0.0637,1.127789,0.0267,1.309427 +L 0.0267,1.309427,0.0043,1.504791 +L 0.0043,1.504791,-0.0013,1.713817 +L -0.0013,1.713817,0.0043,1.85763 +L 0.0043,1.85763,0.0166,2.00004 +L 0.0166,2.00004,0.0468,2.140979 +L 0.0468,2.140979,0.0782,2.280446 +L 0.0782,2.280446,0.1275,2.418513 +L 0.1275,2.418513,0.1847,2.555108 +L 0.1847,2.555108,0.2519,2.690233 +L 0.2519,2.690233,0.327,2.823957 +L 0.327,2.823957,0.4128,2.954528 +L 0.4128,2.954528,0.512,3.080266 +L 0.512,3.080266,0.6162,3.201241 +L 0.6162,3.201241,0.7328,3.317382 +L 0.7328,3.317382,0.8605,3.428688 +L 0.8605,3.428688,0.9939,3.535165 +L 0.9939,3.535165,1.1396,3.636874 +L 1.1396,3.636874,1.2965,3.733751 +L 1.2965,3.733751,1.4646,3.827129 +L 1.4646,3.827129,1.6462,3.918333 +L 1.6462,3.918333,1.8507,4.007365 +L 1.8507,4.007365,2.0699,4.094226 +L 2.0699,4.094226,2.3075,4.178845 +L 2.3075,4.178845,2.563,4.261293 +L 2.563,4.261293,2.8354,4.341569 +L 2.8354,4.341569,3.129,4.419674 +L 3.129,4.419674,3.129,4.584079 +L 3.129,4.584079,3.12,4.694546 +L 3.12,4.694546,3.1122,4.801161 +L 3.1122,4.801161,3.0954,4.90385 +L 3.0954,4.90385,3.0707,5.002622 +L 3.0707,5.002622,3.0388,5.097468 +L 3.0388,5.097468,2.9967,5.188532 +L 2.9967,5.188532,2.9514,5.275603 +L 2.9514,5.275603,2.9004,5.358821 +L 2.9004,5.358821,2.8376,5.434964 +L 2.8376,5.434964,2.7704,5.500951 +L 2.7704,5.500951,2.6941,5.55685 +L 2.6941,5.55685,2.6056,5.602522 +L 2.6056,5.602522,2.5126,5.638107 +L 2.5126,5.638107,2.4072,5.663464 +L 2.4072,5.663464,2.2996,5.678735 +L 2.2996,5.678735,2.1763,5.683779 +L 2.1763,5.683779,2.0598,5.679644 +L 2.0598,5.679644,1.9555,5.667177 +L 1.9555,5.667177,1.8592,5.64644 +L 1.8592,5.64644,1.765,5.617442 +L 1.765,5.617442,1.6832,5.580106 +L 1.6832,5.580106,1.607,5.534434 +L 1.607,5.534434,1.5431,5.480564 +L 1.5431,5.480564,1.4781,5.418293 +L 1.4781,5.418293,1.426,5.348524 +L 1.426,5.348524,1.3761,5.271818 +L 1.3761,5.271818,1.3313,5.18825 +L 1.3313,5.18825,1.2909,5.097816 +L 1.2909,5.097816,1.2573,5.000448 +L 1.2573,5.000448,1.2293,4.896287 +L 1.2293,4.896287,1.2035,4.78519 +L 1.2035,4.78519,1.1788,4.667227 +L 1.1788,4.667227,0.2564,4.667227 +L 0.2564,4.667227,0.2878,4.860212 +L 0.2878,4.860212,0.327,5.04332 +L 0.327,5.04332,0.3853,5.216482 +L 0.3853,5.216482,0.4571,5.379836 +L 0.4571,5.379836,0.5456,5.533241 +L 0.5456,5.533241,0.6521,5.676772 +L 0.6521,5.676772,0.7675,5.810427 +L 0.7675,5.810427,0.9042,5.934134 +L 0.9042,5.934134,1.0466,6.045512 +L 1.0466,6.045512,1.1956,6.14211 +L 1.1956,6.14211,1.3526,6.223787 +L 1.3526,6.223787,1.505,6.290611 +L 1.505,6.290611,1.6686,6.34259 +L 1.6686,6.34259,1.8323,6.379714 +L 1.8323,6.379714,2.0004,6.401991 +L 2.0004,6.401991,2.1763,6.409414 +L 0.9401,1.732733,0.9457,1.605524 +L 0.9457,1.605524,0.958,1.489312 +L 0.958,1.489312,0.9782,1.384169 +L 0.9782,1.384169,1.0107,1.290093 +L 1.0107,1.290093,1.0466,1.207015 +L 1.0466,1.207015,1.0914,1.135002 +L 1.0914,1.135002,1.1486,1.074062 +L 1.1486,1.074062,1.208,1.024117 +L 1.208,1.024117,1.2752,0.982506 +L 1.2752,0.982506,1.347,0.94643 +L 1.347,0.94643,1.4164,0.915891 +L 1.4164,0.915891,1.4882,0.890884 +L 1.4882,0.890884,1.5655,0.87148 +L 1.5655,0.87148,1.6395,0.85761 +L 1.6395,0.85761,1.7179,0.849274 +L 1.7179,0.849274,1.8014,0.84654 +L 1.8014,0.84654,1.8849,0.852567 +L 1.8849,0.852567,1.9634,0.864125 +L 1.9634,0.864125,2.0508,0.881147 +L 2.0508,0.881147,2.1349,0.903702 +L 2.1349,0.903702,2.2189,0.931722 +L 2.2189,0.931722,2.303,0.965206 +L 2.303,0.965206,2.3915,1.004223 +L 2.3915,1.004223,2.4767,1.048704 +L 2.4767,1.048704,2.563,1.10383 +L 2.563,1.10383,2.6471,1.174792 +L 2.6471,1.174792,2.7345,1.261653 +L 2.7345,1.261653,2.8129,1.364275 +L 2.8129,1.364275,2.8936,1.482728 +L 2.8936,1.482728,2.9721,1.617012 +L 2.9721,1.617012,3.0517,1.767057 +L 3.0517,1.767057,3.129,1.933003 +L 3.129,1.933003,3.129,3.599608 +L 3.129,3.599608,2.9228,3.540628 +L 2.9228,3.540628,2.7266,3.481857 +L 2.7266,3.481857,2.5462,3.423294 +L 2.5462,3.423294,2.3781,3.364803 +L 2.3781,3.364803,2.2234,3.306595 +L 2.2234,3.306595,2.0811,3.248524 +L 2.0811,3.248524,1.9522,3.190593 +L 1.9522,3.190593,1.8323,3.132873 +L 1.8323,3.132873,1.7258,3.073469 +L 1.7258,3.073469,1.6238,3.010567 +L 1.6238,3.010567,1.533,2.944161 +L 1.533,2.944161,1.4433,2.874252 +L 1.4433,2.874252,1.3638,2.800838 +L 1.3638,2.800838,1.2909,2.723854 +L 1.2909,2.723854,1.2293,2.64337 +L 1.2293,2.64337,1.1688,2.559379 +L 1.1688,2.559379,1.1138,2.47147 +L 1.1138,2.47147,1.069,2.379145 +L 1.069,2.379145,1.0298,2.282408 +L 1.0298,2.282408,0.9995,2.181257 +L 0.9995,2.181257,0.9726,2.075693 +L 0.9726,2.075693,0.9552,1.965784 +L 0.9552,1.965784,0.9457,1.851466 +L 0.9457,1.851466,0.9401,1.732733 +L 0.294,7.435823,0.294,8.887005 +L 0.294,8.887005,1.417,8.887005 +L 1.417,8.887005,1.417,7.435823 +L 1.417,7.435823,0.294,7.435823 +L 2.5961,7.435823,2.5961,8.887005 +L 2.5961,8.887005,3.7202,8.887005 +L 3.7202,8.887005,3.7202,7.435823 +L 3.7202,7.435823,2.5961,7.435823 + +[] 128 +L -0.0006,3.263234,0.0134,3.582798 +L 0.0134,3.582798,0.0464,3.890453 +L 0.0464,3.890453,0.0991,4.18627 +L 0.0991,4.18627,0.1731,4.470249 +L 0.1731,4.470249,0.2695,4.742317 +L 0.2695,4.742317,0.3883,5.00248 +L 0.3883,5.00248,0.5273,5.250806 +L 0.5273,5.250806,0.6909,5.487291 +L 0.6909,5.487291,0.8669,5.70339 +L 0.8669,5.70339,1.0596,5.890701 +L 1.0596,5.890701,1.2681,6.049224 +L 1.2681,6.049224,1.4855,6.178885 +L 1.4855,6.178885,1.7209,6.279756 +L 1.7209,6.279756,1.9664,6.351766 +L 1.9664,6.351766,2.2286,6.394986 +L 2.2286,6.394986,2.5066,6.409414 +L 2.5066,6.409414,2.7789,6.394986 +L 2.7789,6.394986,3.0412,6.351766 +L 3.0412,6.351766,3.2889,6.279756 +L 3.2889,6.279756,3.5254,6.178885 +L 3.5254,6.178885,3.745,6.049224 +L 3.745,6.049224,3.9535,5.890701 +L 3.9535,5.890701,4.1463,5.70339 +L 4.1463,5.70339,4.3278,5.487291 +L 4.3278,5.487291,4.4881,5.250665 +L 4.4881,5.250665,4.6271,5.001781 +L 4.6271,5.001781,4.7481,4.740708 +L 4.7481,4.740708,4.8456,4.467377 +L 4.8456,4.467377,4.9196,4.181857 +L 4.9196,4.181857,4.9734,3.884079 +L 4.9734,3.884079,5.0093,3.574112 +L 5.0093,3.574112,5.0182,3.251956 +L 5.0182,3.251956,5.0093,2.907595 +L 5.0093,2.907595,4.9734,2.578435 +L 4.9734,2.578435,4.9196,2.264405 +L 4.9196,2.264405,4.8456,1.965576 +L 4.8456,1.965576,4.7481,1.681947 +L 4.7481,1.681947,4.6271,1.413519 +L 4.6271,1.413519,4.4881,1.160222 +L 4.4881,1.160222,4.3278,0.922125 +L 4.3278,0.922125,4.1463,0.705954 +L 4.1463,0.705954,3.9535,0.518643 +L 3.9535,0.518643,3.745,0.360192 +L 3.745,0.360192,3.5254,0.230531 +L 3.5254,0.230531,3.2889,0.129661 +L 3.2889,0.129661,3.0412,0.05765 +L 3.0412,0.05765,2.7789,0.01443 +L 2.7789,0.01443,2.5066,0 +L 2.5066,0,2.2286,0.01443 +L 2.2286,0.01443,1.9664,0.05765 +L 1.9664,0.05765,1.7209,0.129661 +L 1.7209,0.129661,1.4855,0.230531 +L 1.4855,0.230531,1.2681,0.360192 +L 1.2681,0.360192,1.0596,0.518643 +L 1.0596,0.518643,0.8669,0.705954 +L 0.8669,0.705954,0.6909,0.922125 +L 0.6909,0.922125,0.5273,1.160362 +L 0.5273,1.160362,0.3883,1.41422 +L 0.3883,1.41422,0.2695,1.683558 +L 0.2695,1.683558,0.1731,1.968448 +L 0.1731,1.968448,0.0991,2.268888 +L 0.0991,2.268888,0.0464,2.584809 +L 0.0464,2.584809,0.0134,2.916281 +L 0.0134,2.916281,-0.0006,3.263234 +L 0.9453,3.251956,0.9504,2.980656 +L 0.9504,2.980656,0.9756,2.726098 +L 0.9756,2.726098,1.0103,2.48828 +L 1.0103,2.48828,1.0619,2.267207 +L 1.0619,2.267207,1.1269,2.062874 +L 1.1269,2.062874,1.2065,1.875353 +L 1.2065,1.875353,1.2995,1.704503 +L 1.2995,1.704503,1.4093,1.550395 +L 1.4093,1.550395,1.5304,1.41373 +L 1.5304,1.41373,1.6548,1.295347 +L 1.6548,1.295347,1.7837,1.195177 +L 1.7837,1.195177,1.917,1.113149 +L 1.917,1.113149,2.056,1.049402 +L 2.056,1.049402,2.1995,1.003873 +L 2.1995,1.003873,2.3508,0.976551 +L 2.3508,0.976551,2.5066,0.967447 +L 2.5066,0.967447,2.6624,0.976551 +L 2.6624,0.976551,2.8114,1.003873 +L 2.8114,1.003873,2.9526,1.049402 +L 2.9526,1.049402,3.0961,1.113149 +L 3.0961,1.113149,3.2295,1.195177 +L 3.2295,1.195177,3.3584,1.295347 +L 3.3584,1.295347,3.4828,1.41373 +L 3.4828,1.41373,3.6038,1.550395 +L 3.6038,1.550395,3.7159,1.704643 +L 3.7159,1.704643,3.81,1.876053 +L 3.81,1.876053,3.8885,2.064485 +L 3.8885,2.064485,3.9557,2.270079 +L 3.9557,2.270079,4.0051,2.492695 +L 4.0051,2.492695,4.042,2.732473 +L 4.042,2.732473,4.0678,2.989342 +L 4.0678,2.989342,4.0723,3.263234 +L 4.0723,3.263234,4.0678,3.523046 +L 4.0678,3.523046,4.042,3.766607 +L 4.042,3.766607,4.0051,3.993986 +L 4.0051,3.993986,3.9557,4.205181 +L 3.9557,4.205181,3.8885,4.40027 +L 3.8885,4.40027,3.81,4.579105 +L 3.81,4.579105,3.7159,4.741759 +L 3.7159,4.741759,3.6038,4.888302 +L 3.6038,4.888302,3.4828,5.01803 +L 3.4828,5.01803,3.3584,5.130529 +L 3.3584,5.130529,3.2295,5.225658 +L 3.2295,5.225658,3.0961,5.303552 +L 3.0961,5.303552,2.9526,5.364075 +L 2.9526,5.364075,2.8114,5.407365 +L 2.8114,5.407365,2.6624,5.433283 +L 2.6624,5.433283,2.5066,5.441969 +L 2.5066,5.441969,2.3508,5.433283 +L 2.3508,5.433283,2.1995,5.407365 +L 2.1995,5.407365,2.056,5.364075 +L 2.056,5.364075,1.917,5.303552 +L 1.917,5.303552,1.7837,5.225658 +L 1.7837,5.225658,1.6548,5.130529 +L 1.6548,5.130529,1.5304,5.01803 +L 1.5304,5.01803,1.4093,4.888302 +L 1.4093,4.888302,1.2995,4.741619 +L 1.2995,4.741619,1.2065,4.578405 +L 1.2065,4.578405,1.1269,4.398659 +L 1.1269,4.398659,1.0619,4.202379 +L 1.0619,4.202379,1.0103,3.98957 +L 1.0103,3.98957,0.9756,3.760232 +L 0.9756,3.760232,0.9504,3.51436 +L 0.9504,3.51436,0.9453,3.251956 + +[] 125 +L 0.6417,4.39126,0.6562,4.710822 +L 0.6562,4.710822,0.6882,5.018479 +L 0.6882,5.018479,0.7414,5.314296 +L 0.7414,5.314296,0.8154,5.598275 +L 0.8154,5.598275,0.9118,5.870346 +L 0.9118,5.870346,1.0306,6.130508 +L 1.0306,6.130508,1.1696,6.378831 +L 1.1696,6.378831,1.3332,6.615317 +L 1.3332,6.615317,1.5092,6.831418 +L 1.5092,6.831418,1.7014,7.018727 +L 1.7014,7.018727,1.9098,7.17725 +L 1.9098,7.17725,2.1278,7.306913 +L 2.1278,7.306913,2.3632,7.40778 +L 2.3632,7.40778,2.6081,7.47979 +L 2.6081,7.47979,2.8709,7.52301 +L 2.8709,7.52301,3.1489,7.537442 +L 3.1489,7.537442,3.4212,7.52301 +L 3.4212,7.52301,3.6835,7.47979 +L 3.6835,7.47979,3.9312,7.40778 +L 3.9312,7.40778,4.1677,7.306913 +L 4.1677,7.306913,4.3873,7.17725 +L 4.3873,7.17725,4.5958,7.018727 +L 5.2694,6.129807,5.3904,5.868734 +L 5.3904,5.868734,5.4879,5.595403 +L 5.4879,5.595403,5.5619,5.309881 +L 5.5619,5.309881,5.6157,5.012102 +L 5.6157,5.012102,5.6516,4.702136 +L 5.6516,4.702136,5.6605,4.37998 +L 5.6605,4.37998,5.6516,4.035621 +L 5.6516,4.035621,5.6157,3.706461 +L 5.6157,3.706461,5.5619,3.392431 +L 5.5619,3.392431,5.4879,3.0936 +L 5.4879,3.0936,5.3904,2.809973 +L 5.3904,2.809973,5.2694,2.541545 +L 5.2694,2.541545,5.1304,2.288248 +L 5.1304,2.288248,4.9701,2.050151 +L 4.9701,2.050151,4.7886,1.83398 +L 4.7886,1.83398,4.5958,1.646669 +L 4.5958,1.646669,4.3873,1.488218 +L 4.3873,1.488218,4.1677,1.358557 +L 4.1677,1.358557,3.9312,1.257687 +L 3.9312,1.257687,3.6835,1.185676 +L 3.6835,1.185676,3.4212,1.142456 +L 3.4212,1.142456,3.1489,1.128026 +L 3.1489,1.128026,2.8709,1.142456 +L 2.8709,1.142456,2.6081,1.185676 +L 2.6081,1.185676,2.3632,1.257687 +L 2.3632,1.257687,2.1278,1.358557 +L 2.1278,1.358557,1.9098,1.488218 +L 1.9098,1.488218,1.7014,1.646669 +L 1.0306,2.542246,0.9118,2.811584 +L 0.9118,2.811584,0.8154,3.096472 +L 0.8154,3.096472,0.7414,3.396914 +L 0.7414,3.396914,0.6882,3.712835 +L 0.6882,3.712835,0.6562,4.044307 +L 0.6562,4.044307,0.6417,4.39126 +L 1.5876,4.37998,1.5932,4.108682 +L 1.5932,4.108682,1.6179,3.854122 +L 1.6179,3.854122,1.6526,3.616308 +L 1.6526,3.616308,1.7042,3.395233 +L 2.2971,2.42337,2.426,2.3232 +L 2.426,2.3232,2.5588,2.241175 +L 2.5588,2.241175,2.6983,2.17743 +L 2.6983,2.17743,2.8418,2.131898 +L 2.8418,2.131898,2.9931,2.104579 +L 2.9931,2.104579,3.1489,2.095473 +L 3.1489,2.095473,3.3046,2.104579 +L 3.3046,2.104579,3.4537,2.131898 +L 3.4537,2.131898,3.5949,2.17743 +L 3.5949,2.17743,3.7384,2.241175 +L 3.7384,2.241175,3.8718,2.3232 +L 3.8718,2.3232,4.0007,2.42337 +L 4.0007,2.42337,4.1251,2.541755 +L 4.1251,2.541755,4.2461,2.678419 +L 4.2461,2.678419,4.3582,2.832669 +L 4.3582,2.832669,4.4523,3.004079 +L 4.4523,3.004079,4.5308,3.192511 +L 4.5308,3.192511,4.598,3.398105 +L 4.598,3.398105,4.6473,3.620721 +L 4.6473,3.620721,4.6838,3.860496 +L 4.6838,3.860496,4.7101,4.117368 +L 4.7101,4.117368,4.7146,4.39126 +L 4.7146,4.39126,4.7101,4.651072 +L 4.7101,4.651072,4.6838,4.89463 +L 4.6838,4.89463,4.6473,5.122009 +L 4.6473,5.122009,4.598,5.33321 +L 4.0007,6.258557,3.8718,6.353682 +L 3.8718,6.353682,3.7384,6.431578 +L 3.7384,6.431578,3.5949,6.492101 +L 3.5949,6.492101,3.4537,6.535391 +L 3.4537,6.535391,3.3046,6.561309 +L 3.3046,6.561309,3.1489,6.569995 +L 3.1489,6.569995,2.9931,6.561309 +L 2.9931,6.561309,2.8418,6.535391 +L 2.8418,6.535391,2.6983,6.492101 +L 2.6983,6.492101,2.5588,6.431578 +L 2.5588,6.431578,2.426,6.353682 +L 2.426,6.353682,2.2971,6.258557 +L 2.2971,6.258557,2.1727,6.146058 +L 2.1727,6.146058,2.0516,6.016328 +L 2.0516,6.016328,1.9418,5.869645 +L 1.9418,5.869645,1.8487,5.706428 +L 1.8487,5.706428,1.7692,5.526685 +L 1.7692,5.526685,1.7042,5.330408 +L 1.7042,5.330408,1.6526,5.117598 +L 1.6526,5.117598,1.6179,4.888256 +L 1.6179,4.888256,1.5932,4.642386 +L 1.5932,4.642386,1.5876,4.37998 +L 5.8242,8.423666,6.305,7.809563 +L 0.478,0.345777,-0.0005,0.959886 +L 4.0791,6.187142,4.0007,6.258557 +L 4.598,5.33321,4.5308,5.528296 +L 4.5308,5.528296,4.5285,5.533594 +L 4.5958,7.018727,4.6709,6.945467 +L 4.6709,6.945467,5.8242,8.423666 +L 5.1551,6.335475,5.2694,6.129807 +L 6.305,7.809563,5.1551,6.335475 +L 1.1146,2.388576,1.0306,2.542246 +L -0.0005,0.959886,1.1146,2.388576 +L 1.5831,1.761527,0.478,0.345777 +L 1.7014,1.646669,1.5831,1.761527 +L 1.7042,3.395233,1.7602,3.216814 +L 1.7602,3.216814,4.0791,6.187142 +L 2.1839,2.530609,2.2971,2.42337 +L 4.5285,5.533594,2.1839,2.530609 + +[褜] 12 +L -0.0005,0.959886,2.676,4.383778 +L 2.676,4.383778,-0.0005,7.809563 +L -0.0005,7.809563,0.4781,8.423666 +L 0.4781,8.423666,3.1512,4.997889 +L 3.1512,4.997889,5.8243,8.423666 +L 5.8243,8.423666,6.3051,7.809563 +L 6.3051,7.809563,3.632,4.383778 +L 3.632,4.383778,6.3051,0.959886 +L 6.3051,0.959886,5.8243,0.345777 +L 5.8243,0.345777,3.1512,3.769671 +L 3.1512,3.769671,0.4781,0.345777 +L 0.4781,0.345777,-0.0005,0.959886 + +[・] 72 +L 1.998,0.967447,2.1358,0.975503 +L 2.1358,0.975503,2.267,0.999598 +L 2.267,0.999598,2.3936,1.039736 +L 2.3936,1.039736,2.5147,1.095917 +L 2.5147,1.095917,2.6256,1.168206 +L 2.6256,1.168206,2.7377,1.25654 +L 2.7377,1.25654,2.8397,1.36091 +L 2.8397,1.36091,2.9305,1.481397 +L 2.9305,1.481397,3.0201,1.61421 +L 3.0201,1.61421,3.0997,1.755639 +L 3.0997,1.755639,3.1658,1.905684 +L 3.1658,1.905684,3.223,2.064345 +L 3.223,2.064345,3.2757,2.231622 +L 3.2757,2.231622,3.3149,2.407515 +L 3.3149,2.407515,3.3452,2.592092 +L 3.3452,2.592092,3.3653,2.785217 +L 3.3653,2.785217,3.3653,6.435825 +L 3.3653,6.435825,4.2485,6.435825 +L 4.2485,6.435825,4.2485,-0.022696 +L 4.2485,-0.022696,3.3653,-0.022696 +L 3.3653,-0.022696,3.3653,0.931512 +L 3.3653,0.931512,3.186,0.713239 +L 3.186,0.713239,3.0011,0.523967 +L 3.0011,0.523967,2.8139,0.363905 +L 2.8139,0.363905,2.6211,0.232843 +L 2.6211,0.232843,2.4205,0.13099 +L 2.4205,0.13099,2.2199,0.058208 +L 2.2199,0.058208,2.0148,0.01457 +L 2.0148,0.01457,1.8074,0 +L 1.8074,0,1.6337,0.007633 +L 1.6337,0.007633,1.469,0.030541 +L 1.469,0.030541,1.3109,0.068788 +L 1.3109,0.068788,1.1518,0.122306 +L 1.1518,0.122306,0.996,0.191164 +L 0.996,0.191164,0.8492,0.275293 +L 0.8492,0.275293,0.7012,0.374692 +L 0.7012,0.374692,0.5634,0.489362 +L 0.5634,0.489362,0.4289,0.624557 +L 0.4289,0.624557,0.3146,0.785458 +L 0.3146,0.785458,0.2227,0.971998 +L 0.2227,0.971998,0.1442,1.184249 +L 0.1442,1.184249,0.0792,1.422203 +L 0.0792,1.422203,0.04,1.6858 +L 0.04,1.6858,0.0097,1.97517 +L 0.0097,1.97517,-0.0004,2.290113 +L -0.0004,2.290113,-0.0004,6.435825 +L -0.0004,6.435825,0.8884,6.435825 +L 0.8884,6.435825,0.8884,2.290113 +L 0.8884,2.290113,0.8918,2.100418 +L 0.8918,2.100418,0.9052,1.927189 +L 0.9052,1.927189,0.9276,1.770349 +L 0.9276,1.770349,0.959,1.629971 +L 0.959,1.629971,0.996,1.506054 +L 0.996,1.506054,1.0453,1.398529 +L 1.0453,1.398529,1.1025,1.307533 +L 1.1025,1.307533,1.1641,1.232933 +L 1.1641,1.232933,1.2409,1.17073 +L 1.2409,1.17073,1.3233,1.116792 +L 1.3233,1.116792,1.4118,1.071118 +L 1.4118,1.071118,1.5138,1.033781 +L 1.5138,1.033781,1.6203,1.004783 +L 1.6203,1.004783,1.7402,0.984049 +L 1.7402,0.984049,1.8657,0.97158 +L 1.8657,0.97158,1.998,0.967447 +L 0.4137,7.435823,0.4137,8.887005 +L 0.4137,8.887005,1.5362,8.887005 +L 1.5362,8.887005,1.5362,7.435823 +L 1.5362,7.435823,0.4137,7.435823 +L 2.7153,7.435823,2.7153,8.887005 +L 2.7153,8.887005,3.8405,8.887005 +L 3.8405,8.887005,3.8405,7.435823 +L 3.8405,7.435823,2.7153,7.435823 + +#EOF diff --git a/pycam/share/fonts/kochimincho.cxf b/pycam/share/fonts/kochimincho.cxf new file mode 100644 index 00000000..cdae802f --- /dev/null +++ b/pycam/share/fonts/kochimincho.cxf @@ -0,0 +1,7638 @@ +# Format: QCad II Font +# Creator: QCad +# Version: 1 +# Name: Kochi Mincho +# LetterSpacing: 3.0 +# WordSpacing: 6.75 +# LineSpacingFactor: 1.0 +# Author: 東風フォント(明朝) +# Author: Yoshimune Kobayashi + +[!] 31 +L 0.8572,2.32792,0.6137,2.32792 +L 0.6137,2.32792,0.0394,7.587662 +L 0.0394,7.587662,0.0099,7.889612 +L 0.0099,7.889612,0,8.103894 +L 0,8.103894,0.0587,8.474025 +L 0.0587,8.474025,0.2146,8.756489 +L 0.2146,8.756489,0.4578,8.941562 +L 0.4578,8.941562,0.7402,8.999996 +L 0.7402,8.999996,1.0232,8.941562 +L 1.0232,8.941562,1.2565,8.756489 +L 1.2565,8.756489,1.4124,8.454547 +L 1.4124,8.454547,1.4711,8.025974 +L 1.4711,8.025974,1.4612,7.840909 +L 1.4612,7.840909,1.4418,7.587662 +L 1.4418,7.587662,0.8572,2.32792 +L 0.7306,1.256492,1.0033,1.19805 +L 1.0033,1.19805,1.2372,1.04221 +L 1.2372,1.04221,1.393,0.808442 +L 1.393,0.808442,1.4517,0.535717 +L 1.4517,0.535717,1.393,0.262985 +L 1.393,0.262985,1.2372,0.029224 +L 1.2372,0.029224,1.0033,-0.12662 +L 1.0033,-0.12662,0.7306,-0.18506 +L 0.7306,-0.18506,0.4484,-0.12662 +L 0.4484,-0.12662,0.2146,0.029224 +L 0.2146,0.029224,0.0587,0.262985 +L 0.0587,0.262985,0.0099,0.535717 +L 0.0099,0.535717,0.0587,0.808442 +L 0.0587,0.808442,0.2146,1.04221 +L 0.2146,1.04221,0.4484,1.19805 +L 0.4484,1.19805,0.7306,1.256492 + +["] 31 +L 2.8734,5.211038,2.5226,7.110387 +L 2.5226,7.110387,2.3764,7.889612 +L 2.3764,7.889612,2.367,8.055199 +L 2.367,8.055199,2.367,8.220779 +L 2.367,8.220779,2.4153,8.571431 +L 2.4153,8.571431,2.5516,8.814939 +L 2.5516,8.814939,2.7565,8.96104 +L 2.7565,8.96104,3.0292,8.999996 +L 3.0292,8.999996,3.2826,8.96104 +L 3.2826,8.96104,3.4969,8.814939 +L 3.4969,8.814939,3.6329,8.590909 +L 3.6329,8.590909,3.682,8.308446 +L 3.682,8.308446,3.6424,7.733764 +L 3.6424,7.733764,3.5551,7.110387 +L 3.5551,7.110387,3.185,5.211038 +L 3.185,5.211038,2.8734,5.211038 +L 0.4969,5.211038,0.1362,7.129865 +L 0.1362,7.129865,0.0294,7.801953 +L 0.0294,7.801953,0.0002,8.211039 +L 0.0002,8.211039,0.0391,8.571431 +L 0.0391,8.571431,0.1654,8.814939 +L 0.1654,8.814939,0.37,8.96104 +L 0.37,8.96104,0.6329,8.999996 +L 0.6329,8.999996,0.896,8.96104 +L 0.896,8.96104,1.1105,8.814939 +L 1.1105,8.814939,1.2468,8.590909 +L 1.2468,8.590909,1.2956,8.298699 +L 1.2956,8.298699,1.2567,7.879865 +L 1.2567,7.879865,1.1298,7.129865 +L 1.1298,7.129865,0.779,5.211038 +L 0.779,5.211038,0.4969,5.211038 + +[#] 32 +L 0.5059,-0.18506,1.1101,2.775971 +L 1.1101,2.775971,-0.0002,2.775971 +L -0.0002,2.775971,-0.0002,3.30195 +L -0.0002,3.30195,1.2075,3.30195 +L 1.2075,3.30195,1.6559,5.532466 +L 1.6559,5.532466,-0.0002,5.532466 +L -0.0002,5.532466,-0.0002,6.048705 +L -0.0002,6.048705,1.7823,6.048705 +L 1.7823,6.048705,2.3766,8.999996 +L 2.3766,8.999996,2.9119,8.999996 +L 2.9119,8.999996,2.3179,6.048705 +L 2.3179,6.048705,4.5098,6.048705 +L 4.5098,6.048705,5.1428,8.999996 +L 5.1428,8.999996,5.6786,8.999996 +L 5.6786,8.999996,5.0647,6.048705 +L 5.0647,6.048705,6.1654,6.048705 +L 6.1654,6.048705,6.1654,5.532466 +L 6.1654,5.532466,4.9676,5.532466 +L 4.9676,5.532466,4.5098,3.30195 +L 4.5098,3.30195,6.1654,3.30195 +L 6.1654,3.30195,6.1654,2.775971 +L 6.1654,2.775971,4.4023,2.775971 +L 4.4023,2.775971,3.7986,-0.18506 +L 3.7986,-0.18506,3.2726,-0.18506 +L 3.2726,-0.18506,3.857,2.775971 +L 3.857,2.775971,1.6559,2.775971 +L 1.6559,2.775971,1.0418,-0.18506 +L 1.0418,-0.18506,0.5059,-0.18506 +L 1.7533,3.30195,3.9544,3.30195 +L 3.9544,3.30195,4.4219,5.532466 +L 4.4219,5.532466,2.2111,5.532466 +L 2.2111,5.532466,1.7533,3.30195 + +[$] 64 +L 0.0002,2.17208,0.2829,2.17208 +L 0.2829,2.17208,0.458,1.383116 +L 0.458,1.383116,0.8472,0.808442 +L 0.8472,0.808442,1.4514,0.428572 +L 1.4514,0.428572,2.2992,0.243507 +L 2.2992,0.243507,2.2992,4.032465 +L 2.2992,4.032465,1.0816,4.879871 +L 1.0816,4.879871,0.351,5.629872 +L 0.351,5.629872,0.0978,6.175329 +L 0.0978,6.175329,0.0101,6.827923 +L 0.0101,6.827923,0.156,7.577923 +L 0.156,7.577923,0.6039,8.220779 +L 0.6039,8.220779,1.3248,8.707793 +L 1.3248,8.707793,2.2992,8.941562 +L 2.2992,8.941562,2.2992,9.545461 +L 2.2992,9.545461,2.7173,9.545461 +L 2.7173,9.545461,2.7173,8.941562 +L 2.7173,8.941562,3.2046,8.902598 +L 3.2046,8.902598,3.6139,8.824678 +L 3.6139,8.824678,4.0132,8.688315 +L 4.0132,8.688315,4.8605,8.376619 +L 4.8605,8.376619,4.8605,6.438314 +L 4.8605,6.438314,4.6073,6.438314 +L 4.6073,6.438314,4.4225,7.324677 +L 4.4225,7.324677,4.0715,7.938315 +L 4.0715,7.938315,3.5066,8.327924 +L 3.5066,8.327924,2.7173,8.512981 +L 2.7173,8.512981,2.7173,5.211038 +L 2.7173,5.211038,4.0524,4.21753 +L 4.0524,4.21753,4.8119,3.525972 +L 4.8119,3.525972,5.1627,2.92208 +L 5.1627,2.92208,5.2797,2.181819 +L 5.2797,2.181819,5.104,1.334413 +L 5.104,1.334413,4.5974,0.60389 +L 4.5974,0.60389,3.7893,0.06818 +L 3.7893,0.06818,2.7173,-0.18506 +L 2.7173,-0.18506,2.7173,-1.01298 +L 2.7173,-1.01298,2.2992,-1.01298 +L 2.2992,-1.01298,2.2992,-0.18506 +L 2.2992,-0.18506,1.7046,-0.13636 +L 1.7046,-0.13636,1.1593,-0.03896 +L 1.1593,-0.03896,0.6039,0.107144 +L 0.6039,0.107144,0.0002,0.331166 +L 0.0002,0.331166,0.0002,2.17208 +L 2.2992,5.483762,2.2992,8.503242 +L 2.2992,8.503242,1.7341,8.36688 +L 1.7341,8.36688,1.3345,8.094155 +L 1.3345,8.094155,1.1006,7.714286 +L 1.1006,7.714286,1.0228,7.246749 +L 1.0228,7.246749,1.091,6.788959 +L 1.091,6.788959,1.3055,6.370125 +L 1.3055,6.370125,1.6952,5.94156 +L 1.6952,5.94156,2.2992,5.483762 +L 2.7173,0.243507,3.1462,0.340905 +L 3.1462,0.340905,3.4578,0.477267 +L 3.4578,0.477267,3.7893,0.74026 +L 3.7893,0.74026,4.0331,1.071427 +L 4.0331,1.071427,4.1884,1.451297 +L 4.1884,1.451297,4.2471,1.860391 +L 4.2471,1.860391,4.1787,2.269478 +L 4.1787,2.269478,3.9937,2.668834 +L 3.9937,2.668834,3.5458,3.126624 +L 3.5458,3.126624,2.7173,3.750001 +L 2.7173,3.750001,2.7173,0.243507 + +[%] 80 +L 8.5714,8.999996,2.1526,-0.36039 +L 2.1526,-0.36039,1.5779,-0.36039 +L 1.5779,-0.36039,7.9873,8.999996 +L 7.9873,8.999996,8.5714,8.999996 +L 1.8992,8.999996,2.6786,8.824678 +L 2.6786,8.824678,3.2533,8.279221 +L 3.2533,8.279221,3.6135,7.499995 +L 3.6135,7.499995,3.7404,6.603894 +L 3.7404,6.603894,3.6041,5.610386 +L 3.6041,5.610386,3.1951,4.860385 +L 3.1951,4.860385,2.5909,4.402595 +L 2.5909,4.402595,1.8799,4.246755 +L 1.8799,4.246755,1.3928,4.314936 +L 1.3928,4.314936,0.9452,4.529219 +L 0.9452,4.529219,0.5555,4.879871 +L 0.5555,4.879871,0.2535,5.366878 +L 0.2535,5.366878,0.0685,5.961038 +L 0.0685,5.961038,0.0003,6.603894 +L 0.0003,6.603894,0.0685,7.266235 +L 0.0685,7.266235,0.2632,7.860387 +L 0.2632,7.860387,0.5652,8.36688 +L 0.5652,8.36688,0.9742,8.717532 +L 0.9742,8.717532,1.432,8.931823 +L 1.432,8.931823,1.8992,8.999996 +L 1.8799,8.639612,1.5682,8.542206 +L 1.5682,8.542206,1.2861,8.249996 +L 1.2861,8.249996,1.101,7.646104 +L 1.101,7.646104,1.0329,6.613633 +L 1.0329,6.613633,1.0718,5.824676 +L 1.0718,5.824676,1.1788,5.240255 +L 1.1788,5.240255,1.3151,4.918835 +L 1.3151,4.918835,1.5197,4.685067 +L 1.5197,4.685067,1.6758,4.5974 +L 1.6758,4.5974,1.8606,4.568183 +L 1.8606,4.568183,2.143,4.655842 +L 2.143,4.655842,2.3865,4.909088 +L 2.3865,4.909088,2.6303,5.571429 +L 2.6303,5.571429,2.7177,6.574676 +L 2.7177,6.574676,2.6303,7.626619 +L 2.6303,7.626619,2.3964,8.308446 +L 2.3964,8.308446,2.1626,8.561692 +L 2.1626,8.561692,1.8799,8.639612 +L 8.2695,4.373378,8.7273,4.295458 +L 8.7273,4.295458,9.1851,4.081168 +L 9.1851,4.081168,9.5946,3.720776 +L 9.5946,3.720776,9.8961,3.224022 +L 9.8961,3.224022,10.0814,2.639609 +L 10.0814,2.639609,10.1498,1.996754 +L 10.1498,1.996754,10.013,0.983768 +L 10.013,0.983768,9.5946,0.243507 +L 9.5946,0.243507,8.9904,-0.21428 +L 8.9904,-0.21428,8.2893,-0.36039 +L 8.2893,-0.36039,7.8216,-0.29221 +L 7.8216,-0.29221,7.3736,-0.06818 +L 7.3736,-0.06818,6.9741,0.28247 +L 6.9741,0.28247,6.6721,0.759739 +L 6.6721,0.759739,6.4773,1.344152 +L 6.4773,1.344152,6.4092,1.996754 +L 6.4092,1.996754,6.4773,2.649348 +L 6.4773,2.649348,6.6721,3.243508 +L 6.6721,3.243508,6.9741,3.740262 +L 6.9741,3.740262,7.3736,4.090907 +L 7.3736,4.090907,7.8216,4.295458 +L 7.8216,4.295458,8.2695,4.373378 +L 8.2794,4.022726,7.9873,3.935066 +L 7.9873,3.935066,7.7339,3.672081 +L 7.7339,3.672081,7.5196,3.019479 +L 7.5196,3.019479,7.4418,1.95779 +L 7.4418,1.95779,7.5196,0.964282 +L 7.5196,0.964282,7.7438,0.331166 +L 7.7438,0.331166,7.9873,0.087658 +L 7.9873,0.087658,8.2794,0 +L 8.2794,0,8.562,0.087658 +L 8.562,0.087658,8.8053,0.360391 +L 8.8053,0.360391,9.0392,1.003246 +L 9.0392,1.003246,9.117,1.987015 +L 9.117,1.987015,9.0392,3.019479 +L 9.0392,3.019479,8.8053,3.691559 +L 8.8053,3.691559,8.5714,3.944805 +L 8.5714,3.944805,8.2794,4.022726 + +[&] 94 +L 6.3023,5.668836,9.0195,5.668836 +L 9.0195,5.668836,9.0195,5.425328 +L 9.0195,5.425328,8.5327,5.337661 +L 8.5327,5.337661,8.1918,5.181821 +L 8.1918,5.181821,7.841,4.762987 +L 7.841,4.762987,7.3441,3.944805 +L 7.3441,3.944805,6.7406,2.941559 +L 6.7406,2.941559,6.0586,2.016232 +L 6.0586,2.016232,6.6137,1.441558 +L 6.6137,1.441558,7.0906,1.071427 +L 7.0906,1.071427,7.5489,0.866884 +L 7.5489,0.866884,8.0068,0.798703 +L 8.0068,0.798703,8.4257,0.857145 +L 8.4257,0.857145,8.7666,1.04221 +L 8.7666,1.04221,9.0393,1.344152 +L 9.0393,1.344152,9.2145,1.762985 +L 9.2145,1.762985,9.4478,1.587659 +L 9.4478,1.587659,9.1364,0.788963 +L 9.1364,0.788963,8.6789,0.233767 +L 8.6789,0.233767,8.1041,-0.08766 +L 8.1041,-0.08766,7.4419,-0.20454 +L 7.4419,-0.20454,6.9061,-0.12662 +L 6.9061,-0.12662,6.3606,0.087658 +L 6.3606,0.087658,5.7858,0.477267 +L 5.7858,0.477267,5.1623,1.061688 +L 5.1623,1.061688,4.393,0.457789 +L 4.393,0.457789,3.7113,0.077919 +L 3.7113,0.077919,3.0389,-0.13636 +L 3.0389,-0.13636,2.3279,-0.20454 +L 2.3279,-0.20454,1.3737,-0.05844 +L 1.3737,-0.05844,0.6334,0.37013 +L 0.6334,0.37013,0.1558,0.993507 +L 0.1558,0.993507,0,1.733768 +L 0,1.733768,0.1367,2.522725 +L 0.1367,2.522725,0.5651,3.30195 +L 0.5651,3.30195,1.3737,4.100646 +L 1.3737,4.100646,2.6886,4.918835 +L 2.6886,4.918835,2.4352,5.532466 +L 2.4352,5.532466,2.2695,6.029219 +L 2.2695,6.029219,2.1919,6.448053 +L 2.1919,6.448053,2.1624,6.85714 +L 2.1624,6.85714,2.3671,7.83117 +L 2.3671,7.83117,2.9807,8.551953 +L 2.9807,8.551953,3.6625,8.892851 +L 3.6625,8.892851,4.4317,8.999996 +L 4.4317,8.999996,5.133,8.892851 +L 5.133,8.892851,5.6882,8.542206 +L 5.6882,8.542206,6.0489,8.035713 +L 6.0489,8.035713,6.1755,7.422083 +L 6.1755,7.422083,6.0586,6.77922 +L 6.0586,6.77922,5.7078,6.214285 +L 5.7078,6.214285,5.0552,5.668836 +L 5.0552,5.668836,4.0423,5.074676 +L 4.0423,5.074676,4.8801,3.672081 +L 4.8801,3.672081,5.7566,2.386363 +L 5.7566,2.386363,6.6137,3.642856 +L 6.6137,3.642856,6.8964,4.685067 +L 6.8964,4.685067,6.8474,4.96753 +L 6.8474,4.96753,6.7014,5.220777 +L 6.7014,5.220777,6.5357,5.357139 +L 6.5357,5.357139,6.3023,5.425328 +L 6.3023,5.425328,6.3023,5.668836 +L 3.8186,5.503248,4.5194,5.912335 +L 4.5194,5.912335,5.0263,6.370125 +L 5.0263,6.370125,5.3181,6.886365 +L 5.3181,6.886365,5.4256,7.4513 +L 5.4256,7.4513,5.3473,7.879865 +L 5.3473,7.879865,5.133,8.220779 +L 5.133,8.220779,4.812,8.454547 +L 4.812,8.454547,4.4124,8.532467 +L 4.4124,8.532467,3.9157,8.435069 +L 3.9157,8.435069,3.5649,8.133119 +L 3.5649,8.133119,3.3409,7.75325 +L 3.3409,7.75325,3.2733,7.363633 +L 3.2733,7.363633,3.302,7.032466 +L 3.302,7.032466,3.3798,6.662336 +L 3.3798,6.662336,3.5458,6.175329 +L 3.5458,6.175329,3.8186,5.503248 +L 4.8214,1.441558,4.1007,2.454544 +L 4.1007,2.454544,3.6335,3.146102 +L 3.6335,3.146102,3.2921,3.750001 +L 3.2921,3.750001,2.9126,4.490255 +L 2.9126,4.490255,2.2308,4.012987 +L 2.2308,4.012987,1.7341,3.496755 +L 1.7341,3.496755,1.4415,2.941559 +L 1.4415,2.941559,1.3444,2.32792 +L 1.3444,2.32792,1.451,1.675326 +L 1.451,1.675326,1.7928,1.110391 +L 1.7928,1.110391,2.3183,0.711035 +L 2.3183,0.711035,3,0.584412 +L 3,0.584412,3.3996,0.623376 +L 3.3996,0.623376,3.7893,0.749999 +L 3.7893,0.749999,4.2372,1.003246 +L 4.2372,1.003246,4.8214,1.441558 + +['] 15 +L 0.4971,5.211038,0.1463,7.129865 +L 0.1463,7.129865,0.0393,7.801953 +L 0.0393,7.801953,0.0004,8.211039 +L 0.0004,8.211039,0.0393,8.571431 +L 0.0393,8.571431,0.1656,8.814939 +L 0.1656,8.814939,0.3705,8.96104 +L 0.3705,8.96104,0.6331,8.999996 +L 0.6331,8.999996,0.8962,8.96104 +L 0.8962,8.96104,1.1107,8.814939 +L 1.1107,8.814939,1.2564,8.590909 +L 1.2564,8.590909,1.3052,8.308446 +L 1.3052,8.308446,1.2663,7.889612 +L 1.2663,7.889612,1.1394,7.129865 +L 1.1394,7.129865,0.7891,5.211038 +L 0.7891,5.211038,0.4971,5.211038 + +[(] 26 +L 3.5845,-2.60064,3.5845,-2.84415 +L 3.5845,-2.84415,2.6887,-2.30844 +L 2.6887,-2.30844,1.9482,-1.68506 +L 1.9482,-1.68506,1.1205,-0.66234 +L 1.1205,-0.66234,0.5066,0.535717 +L 0.5066,0.535717,0.1268,1.831167 +L 0.1268,1.831167,0,3.185066 +L 0,3.185066,0.2438,5.113632 +L 0.2438,5.113632,0.9934,6.85714 +L 0.9934,6.85714,2.1332,8.279221 +L 2.1332,8.279221,3.5845,9.233764 +L 3.5845,9.233764,3.5845,8.96104 +L 3.5845,8.96104,2.8539,8.435069 +L 2.8539,8.435069,2.2697,7.75325 +L 2.2697,7.75325,1.8214,6.886365 +L 1.8214,6.886365,1.5097,5.814937 +L 1.5097,5.814937,1.3152,4.607139 +L 1.3152,4.607139,1.2565,3.360385 +L 1.2565,3.360385,1.3056,2.025971 +L 1.3056,2.025971,1.4711,0.82792 +L 1.4711,0.82792,1.6561,0.019477 +L 1.6561,0.019477,1.8801,-0.60389 +L 1.8801,-0.60389,2.1622,-1.13961 +L 2.1622,-1.13961,2.5229,-1.6461 +L 2.5229,-1.6461,2.9902,-2.13311 +L 2.9902,-2.13311,3.5845,-2.60064 + +[)] 26 +L 0.0001,8.96104,0.0001,9.233764 +L 0.0001,9.233764,0.896,8.698054 +L 0.896,8.698054,1.6362,8.084416 +L 1.6362,8.084416,2.4644,7.051952 +L 2.4644,7.051952,3.078,5.863632 +L 3.078,5.863632,3.4575,4.558444 +L 3.4575,4.558444,3.5844,3.204544 +L 3.5844,3.204544,3.3312,1.275971 +L 3.3312,1.275971,2.5907,-0.46753 +L 2.5907,-0.46753,1.4511,-1.88961 +L 1.4511,-1.88961,0.0001,-2.84415 +L 0.0001,-2.84415,0.0001,-2.60064 +L 0.0001,-2.60064,0.7206,-2.07467 +L 0.7206,-2.07467,1.3149,-1.39285 +L 1.3149,-1.39285,1.763,-0.52598 +L 1.763,-0.52598,2.0747,0.545456 +L 2.0747,0.545456,2.2696,1.753246 +L 2.2696,1.753246,2.3279,3.00974 +L 2.3279,3.00974,2.2696,4.324675 +L 2.2696,4.324675,2.1136,5.532466 +L 2.1136,5.532466,1.9285,6.340908 +L 1.9285,6.340908,1.7046,6.964285 +L 1.7046,6.964285,1.4219,7.490256 +L 1.4219,7.490256,1.0614,8.006496 +L 1.0614,8.006496,0.5942,8.493503 +L 0.5942,8.493503,0.0001,8.96104 + +[*] 100 +L 2.2599,6.77922,2.2012,7.227271 +L 2.2012,7.227271,2.0842,7.665583 +L 2.0842,7.665583,1.919,8.2013 +L 1.919,8.2013,1.8603,8.542206 +L 1.8603,8.542206,1.8992,8.844156 +L 1.8992,8.844156,2.0161,9.058446 +L 2.0161,9.058446,2.2012,9.185069 +L 2.2012,9.185069,2.4157,9.233764 +L 2.4157,9.233764,2.6008,9.185069 +L 2.6008,9.185069,2.766,9.058446 +L 2.766,9.058446,2.8735,8.844156 +L 2.8735,8.844156,2.9122,8.551953 +L 2.9122,8.551953,2.8735,8.211039 +L 2.8735,8.211039,2.737,7.743503 +L 2.737,7.743503,2.6008,7.23701 +L 2.6008,7.23701,2.5326,6.77922 +L 2.5326,6.77922,2.8636,7.032466 +L 2.8636,7.032466,3.1755,7.324677 +L 3.1755,7.324677,3.5553,7.743503 +L 3.5553,7.743503,3.8278,7.967532 +L 3.8278,7.967532,4.0423,8.055199 +L 4.0423,8.055199,4.2663,8.084416 +L 4.2663,8.084416,4.461,8.055199 +L 4.461,8.055199,4.6265,7.938315 +L 4.6265,7.938315,4.7335,7.782467 +L 4.7335,7.782467,4.7729,7.597401 +L 4.7729,7.597401,4.7142,7.373372 +L 4.7142,7.373372,4.5584,7.168829 +L 4.5584,7.168829,4.1786,6.974024 +L 4.1786,6.974024,3.4869,6.788959 +L 3.4869,6.788959,3.0291,6.672082 +L 3.0291,6.672082,2.6491,6.535712 +L 2.6491,6.535712,3.0291,6.379864 +L 3.0291,6.379864,3.477,6.272727 +L 3.477,6.272727,4.13,6.10714 +L 4.13,6.10714,4.5095,5.912335 +L 4.5095,5.912335,4.6852,5.688314 +L 4.6852,5.688314,4.7533,5.444806 +L 4.7533,5.444806,4.7142,5.26948 +L 4.7142,5.26948,4.6072,5.113632 +L 4.6072,5.113632,4.4414,5.006494 +L 4.4414,5.006494,4.2663,4.96753 +L 4.2663,4.96753,4.0517,4.996755 +L 4.0517,4.996755,3.8278,5.103893 +L 3.8278,5.103893,3.5553,5.327922 +L 3.5553,5.327922,3.1946,5.717531 +L 3.1946,5.717531,2.8928,6.01948 +L 2.8928,6.01948,2.5326,6.311691 +L 2.5326,6.311691,2.5713,5.922082 +L 2.5713,5.922082,2.6783,5.503248 +L 2.6783,5.503248,2.8539,4.860385 +L 2.8539,4.860385,2.9122,4.461037 +L 2.9122,4.461037,2.8735,4.21753 +L 2.8735,4.21753,2.7566,4.022726 +L 2.7566,4.022726,2.5908,3.886363 +L 2.5908,3.886363,2.4251,3.847399 +L 2.4251,3.847399,2.1917,3.886363 +L 2.1917,3.886363,1.9866,4.032465 +L 1.9866,4.032465,1.8895,4.207791 +L 1.8895,4.207791,1.8504,4.470777 +L 1.8504,4.470777,1.8895,4.81169 +L 1.8895,4.81169,2.0064,5.220777 +L 2.0064,5.220777,2.1234,5.590908 +L 2.1234,5.590908,2.1917,5.824676 +L 2.1917,5.824676,2.2304,6.029219 +L 2.2304,6.029219,2.2599,6.311691 +L 2.2599,6.311691,1.8992,6.038958 +L 1.8992,6.038958,1.5972,5.746748 +L 1.5972,5.746748,1.178,5.308444 +L 1.178,5.308444,0.8765,5.074676 +L 0.8765,5.074676,0.7113,4.996755 +L 0.7113,4.996755,0.526,4.96753 +L 0.526,4.96753,0.3211,5.006494 +L 0.3211,5.006494,0.1559,5.113632 +L 0.1559,5.113632,0.0389,5.26948 +L 0.0389,5.26948,-0.0002,5.444806 +L -0.0002,5.444806,0.029,5.610386 +L 0.029,5.610386,0.1266,5.785712 +L 0.1266,5.785712,0.2921,5.951299 +L 0.2921,5.951299,0.526,6.087662 +L 0.526,6.087662,0.8183,6.175329 +L 0.8183,6.175329,1.3244,6.292205 +L 1.3244,6.292205,1.724,6.39935 +L 1.724,6.39935,2.1135,6.535712 +L 2.1135,6.535712,1.724,6.691561 +L 1.724,6.691561,1.2761,6.808445 +L 1.2761,6.808445,0.633,6.974024 +L 0.633,6.974024,0.2921,7.110387 +L 0.2921,7.110387,0.0679,7.353894 +L 0.0679,7.353894,-0.0002,7.636365 +L -0.0002,7.636365,0.029,7.801953 +L 0.029,7.801953,0.146,7.957793 +L 0.146,7.957793,0.3018,8.064938 +L 0.3018,8.064938,0.4868,8.103894 +L 0.4868,8.103894,0.7014,8.064938 +L 0.7014,8.064938,0.9347,7.967532 +L 0.9347,7.967532,1.2075,7.762989 +L 1.2075,7.762989,1.5387,7.412336 +L 1.5387,7.412336,1.8992,7.051952 +L 1.8992,7.051952,2.2599,6.77922 + +[+] 12 +L 3.2339,0.915587,3.2339,4.159088 +L 3.2339,4.159088,0.0002,4.159088 +L 0.0002,4.159088,0.0002,4.685067 +L 0.0002,4.685067,3.2339,4.685067 +L 3.2339,4.685067,3.2339,7.90909 +L 3.2339,7.90909,3.7501,7.90909 +L 3.7501,7.90909,3.7501,4.685067 +L 3.7501,4.685067,6.9937,4.685067 +L 6.9937,4.685067,6.9937,4.159088 +L 6.9937,4.159088,3.7501,4.159088 +L 3.7501,4.159088,3.7501,0.915587 +L 3.7501,0.915587,3.2339,0.915587 + +[,] 29 +L -0.0007,-2.21103,-0.0007,-1.92857 +L -0.0007,-1.92857,0.5939,-1.6461 +L 0.5939,-1.6461,1.0423,-1.24675 +L 1.0423,-1.24675,1.3145,-0.76947 +L 1.3145,-0.76947,1.4018,-0.26298 +L 1.4018,-0.26298,1.3926,-0.1461 +L 1.3926,-0.1461,1.3438,-0.0487 +L 1.3438,-0.0487,1.3046,-0.00974 +L 1.3046,-0.00974,1.2563,0.009738 +L 1.2563,0.009738,1.1394,-0.02922 +L 1.1394,-0.02922,0.9444,-0.12662 +L 0.9444,-0.12662,0.8278,-0.16558 +L 0.8278,-0.16558,0.7014,-0.18506 +L 0.7014,-0.18506,0.4088,-0.13636 +L 0.4088,-0.13636,0.1943,0.009738 +L 0.1943,0.009738,0.0486,0.233767 +L 0.0486,0.233767,-0.0007,0.525978 +L -0.0007,0.525978,0.0679,0.818181 +L 0.0679,0.818181,0.2431,1.071427 +L 0.2431,1.071427,0.5163,1.237014 +L 0.5163,1.237014,0.8374,1.295456 +L 0.8374,1.295456,1.2459,1.207789 +L 1.2459,1.207789,1.6066,0.925326 +L 1.6066,0.925326,1.8502,0.487014 +L 1.8502,0.487014,1.9381,-0.06818 +L 1.9381,-0.06818,1.8207,-0.71103 +L 1.8207,-0.71103,1.4704,-1.30519 +L 1.4704,-1.30519,0.8761,-1.82142 +L 0.8761,-1.82142,-0.0007,-2.21103 + +[-] 4 +L 0.0002,3.477269,3.36,3.477269 +L 3.36,3.477269,3.36,2.493508 +L 3.36,2.493508,0.0002,2.493508 +L 0.0002,2.493508,0.0002,3.477269 + +[.] 16 +L 0.7205,1.256492,0.993,1.207789 +L 0.993,1.207789,1.2269,1.051949 +L 1.2269,1.051949,1.383,0.818181 +L 1.383,0.818181,1.4414,0.535717 +L 1.4414,0.535717,1.383,0.262985 +L 1.383,0.262985,1.2269,0.029224 +L 1.2269,0.029224,0.993,-0.12662 +L 0.993,-0.12662,0.7205,-0.18506 +L 0.7205,-0.18506,0.4376,-0.12662 +L 0.4376,-0.12662,0.2037,0.029224 +L 0.2037,0.029224,0.0482,0.262985 +L 0.0482,0.262985,-0.0004,0.535717 +L -0.0004,0.535717,0.0482,0.818181 +L 0.0482,0.818181,0.2037,1.051949 +L 0.2037,1.051949,0.4376,1.207789 +L 0.4376,1.207789,0.7205,1.256492 + +[/] 4 +L 3.7118,9.233764,0.517,-0.18506 +L 0.517,-0.18506,0.0007,-0.18506 +L 0.0007,-0.18506,3.1851,9.233764 +L 3.1851,9.233764,3.7118,9.233764 + +[0] 42 +L -0.0001,4.353892,0.1168,5.746748 +L 0.1168,5.746748,0.4577,6.944807 +L 0.4577,6.944807,0.9834,7.889612 +L 0.9834,7.889612,1.6652,8.561692 +L 1.6652,8.561692,2.2592,8.883112 +L 2.2592,8.883112,2.8731,8.980518 +L 2.8731,8.980518,3.8378,8.727272 +L 3.8378,8.727272,4.6945,7.948054 +L 4.6945,7.948054,5.4446,6.448053 +L 5.4446,6.448053,5.6978,4.490255 +L 5.6978,4.490255,5.5908,3.068182 +L 5.5908,3.068182,5.2593,1.87987 +L 5.2593,1.87987,4.7529,0.954543 +L 4.7529,0.954543,4.1296,0.331166 +L 4.1296,0.331166,3.4578,-0.03896 +L 3.4578,-0.03896,2.8047,-0.15584 +L 2.8047,-0.15584,1.6562,0.214282 +L 1.6562,0.214282,0.7109,1.334413 +L 0.7109,1.334413,0.1758,2.70779 +L 0.1758,2.70779,-0.0001,4.353892 +L 1.2757,4.188313,1.3827,2.532472 +L 1.3827,2.532472,1.7236,1.217528 +L 1.7236,1.217528,2.1814,0.496753 +L 2.1814,0.496753,2.8241,0.253246 +L 2.8241,0.253246,3.1848,0.331166 +L 3.1848,0.331166,3.5549,0.564934 +L 3.5549,0.564934,3.8863,0.993507 +L 3.8863,0.993507,4.1296,1.626623 +L 4.1296,1.626623,4.3536,2.970776 +L 4.3536,2.970776,4.4214,4.772726 +L 4.4214,4.772726,4.3442,6.155843 +L 4.3442,6.155843,4.1103,7.285713 +L 4.1103,7.285713,3.8467,7.918829 +L 3.8467,7.918829,3.5058,8.337663 +L 3.5058,8.337663,3.214,8.503242 +L 3.214,8.503242,2.8632,8.551953 +L 2.8632,8.551953,2.4445,8.454547 +L 2.4445,8.454547,2.0843,8.162336 +L 2.0843,8.162336,1.6845,7.470778 +L 1.6845,7.470778,1.4417,6.467531 +L 1.4417,6.467531,1.3154,5.318183 +L 1.3154,5.318183,1.2757,4.188313 + +[1] 28 +L 0.0005,7.938315,2.1434,8.980518 +L 2.1434,8.980518,2.3575,8.980518 +L 2.3575,8.980518,2.3575,1.548703 +L 2.3575,1.548703,2.3669,0.954543 +L 2.3669,0.954543,2.4159,0.633115 +L 2.4159,0.633115,2.514,0.467528 +L 2.514,0.467528,2.679,0.350644 +L 2.679,0.350644,2.9714,0.272724 +L 2.9714,0.272724,3.4678,0.243507 +L 3.4678,0.243507,3.4678,0 +L 3.4678,0,0.1561,0 +L 0.1561,0,0.1561,0.243507 +L 0.1561,0.243507,0.6724,0.272724 +L 0.6724,0.272724,0.9647,0.350644 +L 0.9647,0.350644,1.1104,0.457789 +L 1.1104,0.457789,1.2179,0.60389 +L 1.2179,0.60389,1.2669,0.915587 +L 1.2669,0.915587,1.2858,1.548703 +L 1.2858,1.548703,1.2858,6.301952 +L 1.2858,6.301952,1.2669,7.090908 +L 1.2669,7.090908,1.2179,7.538959 +L 1.2179,7.538959,1.1599,7.714286 +L 1.1599,7.714286,1.0519,7.840909 +L 1.0519,7.840909,0.9261,7.918829 +L 0.9261,7.918829,0.77,7.938315 +L 0.77,7.938315,0.4777,7.889612 +L 0.4777,7.889612,0.0981,7.733764 +L 0.0981,7.733764,0.0005,7.938315 + +[2] 38 +L 5.815,1.694804,5.2011,0 +L 5.2011,0,-0.0003,0 +L -0.0003,0,-0.0003,0.243507 +L -0.0003,0.243507,1.9583,2.142855 +L 1.9583,2.142855,3.2346,3.652595 +L 3.2346,3.652595,3.9347,4.918835 +L 3.9347,4.918835,4.1685,6.077922 +L 4.1685,6.077922,4.0328,6.837662 +L 4.0328,6.837662,3.6523,7.4513 +L 3.6523,7.4513,3.0874,7.860387 +L 3.0874,7.860387,2.4255,7.98701 +L 2.4255,7.98701,1.8116,7.899351 +L 1.8116,7.899351,1.2567,7.60714 +L 1.2567,7.60714,0.8083,7.139611 +L 0.8083,7.139611,0.4966,6.496748 +L 0.4966,6.496748,0.2534,6.496748 +L 0.2534,6.496748,0.5457,7.558445 +L 0.5457,7.558445,1.0907,8.337663 +L 1.0907,8.337663,1.8507,8.824678 +L 1.8507,8.824678,2.7669,8.980518 +L 2.7669,8.980518,3.7504,8.814939 +L 3.7504,8.814939,4.559,8.298699 +L 4.559,8.298699,5.0941,7.548706 +L 5.0941,7.548706,5.2794,6.672082 +L 5.2794,6.672082,5.2011,6.009741 +L 5.2011,6.009741,4.9672,5.337661 +L 4.9672,5.337661,4.334,4.256494 +L 4.334,4.256494,3.4095,3.107138 +L 3.4095,3.107138,2.0945,1.694804 +L 2.0945,1.694804,1.3835,0.983768 +L 1.3835,0.983768,3.6825,0.983768 +L 3.6825,0.983768,4.2756,0.993507 +L 4.2756,0.993507,4.666,1.032471 +L 4.666,1.032471,4.9385,1.110391 +L 4.9385,1.110391,5.1818,1.246753 +L 5.1818,1.246753,5.3864,1.431819 +L 5.3864,1.431819,5.5717,1.694804 +L 5.5717,1.694804,5.815,1.694804 + +[3] 61 +L 0.1371,7.129865,0.5656,7.918829 +L 0.5656,7.918829,1.0908,8.503242 +L 1.0908,8.503242,1.734,8.863634 +L 1.734,8.863634,2.5232,8.980518 +L 2.5232,8.980518,3.4582,8.814939 +L 3.4582,8.814939,4.1494,8.298699 +L 4.1494,8.298699,4.4714,7.762989 +L 4.4714,7.762989,4.5784,7.198054 +L 4.5784,7.198054,4.2767,6.224024 +L 4.2767,6.224024,3.37,5.211038 +L 3.37,5.211038,4.081,4.831168 +L 4.081,4.831168,4.5973,4.305197 +L 4.5973,4.305197,4.9094,3.662342 +L 4.9094,3.662342,5.0065,2.912341 +L 5.0065,2.912341,4.8311,1.850645 +L 4.8311,1.850645,4.2861,0.935065 +L 4.2861,0.935065,3.1173,0.116883 +L 3.1173,0.116883,1.5392,-0.15584 +L 1.5392,-0.15584,0.7891,-0.09739 +L 0.7891,-0.09739,0.3219,0.06818 +L 0.3219,0.06818,0.088,0.29221 +L 0.088,0.29221,0.0003,0.535717 +L 0.0003,0.535717,0.0399,0.711035 +L 0.0399,0.711035,0.1559,0.866884 +L 0.1559,0.866884,0.3219,0.974021 +L 0.3219,0.974021,0.526,1.012985 +L 0.526,1.012985,0.6821,1.003246 +L 0.6821,1.003246,0.857,0.964282 +L 0.857,0.964282,1.0324,0.886362 +L 1.0324,0.886362,1.3544,0.720775 +L 1.3544,0.720775,1.6854,0.564934 +L 1.6854,0.564934,1.8895,0.477267 +L 1.8895,0.477267,2.1432,0.428572 +L 2.1432,0.428572,2.4058,0.409094 +L 2.4058,0.409094,3.0197,0.535717 +L 3.0197,0.535717,3.5553,0.925326 +L 3.5553,0.925326,3.9254,1.480514 +L 3.9254,1.480514,4.0522,2.133116 +L 4.0522,2.133116,3.9938,2.639609 +L 3.9938,2.639609,3.8184,3.136363 +L 3.8184,3.136363,3.643,3.457791 +L 3.643,3.457791,3.4483,3.691559 +L 3.4483,3.691559,3.1173,3.935066 +L 3.1173,3.935066,2.6887,4.159088 +L 2.6887,4.159088,2.1923,4.314936 +L 2.1923,4.314936,1.6953,4.373378 +L 1.6953,4.373378,1.4808,4.373378 +L 1.4808,4.373378,1.4808,4.568183 +L 1.4808,4.568183,1.9965,4.685067 +L 1.9965,4.685067,2.5128,4.938313 +L 2.5128,4.938313,2.9612,5.26948 +L 2.9612,5.26948,3.2635,5.668836 +L 3.2635,5.668836,3.4389,6.116879 +L 3.4389,6.116879,3.4973,6.603894 +L 3.4973,6.603894,3.3898,7.217532 +L 3.3898,7.217532,3.0782,7.685068 +L 3.0782,7.685068,2.6104,7.996749 +L 2.6104,7.996749,2.0362,8.103894 +L 2.0362,8.103894,1.1111,7.83117 +L 1.1111,7.83117,0.3506,7.022727 +L 0.3506,7.022727,0.1371,7.129865 + +[4] 14 +L 5.9812,3.243508,5.9812,2.32792 +L 5.9812,2.32792,4.803,2.32792 +L 4.803,2.32792,4.803,0 +L 4.803,0,3.7313,0 +L 3.7313,0,3.7313,2.32792 +L 3.7313,2.32792,0.0004,2.32792 +L 0.0004,2.32792,0.0004,3.155841 +L 0.0004,3.155841,4.0915,8.980518 +L 4.0915,8.980518,4.803,8.980518 +L 4.803,8.980518,4.803,3.243508 +L 4.803,3.243508,5.9812,3.243508 +L 3.7313,3.243508,3.7313,7.616879 +L 3.7313,7.616879,0.6431,3.243508 +L 0.6431,3.243508,3.7313,3.243508 + +[5] 41 +L 5.1426,8.805199,4.6362,7.694807 +L 4.6362,7.694807,1.9864,7.694807 +L 1.9864,7.694807,1.4028,6.516234 +L 1.4028,6.516234,2.9511,6.068183 +L 2.9511,6.068183,4.1298,5.240255 +L 4.1298,5.240255,4.7819,4.275972 +L 4.7819,4.275972,4.9964,3.165588 +L 4.9964,3.165588,4.9285,2.493508 +L 4.9285,2.493508,4.714,1.87987 +L 4.714,1.87987,4.3929,1.324674 +L 4.3929,1.324674,4.003,0.866884 +L 4.003,0.866884,3.5452,0.496753 +L 3.5452,0.496753,3.0492,0.204543 +L 3.0492,0.204543,2.2887,-0.06818 +L 2.2887,-0.06818,1.5192,-0.15584 +L 1.5192,-0.15584,0.828,-0.08766 +L 0.828,-0.08766,0.3603,0.116883 +L 0.3603,0.116883,0.0972,0.399347 +L 0.0972,0.399347,-0.0004,0.711035 +L -0.0004,0.711035,0.0387,0.876623 +L 0.0387,0.876623,0.1562,1.032471 +L 0.1562,1.032471,0.3212,1.129869 +L 0.3212,1.129869,0.5263,1.168833 +L 0.5263,1.168833,0.6913,1.159094 +L 0.6913,1.159094,0.828,1.12013 +L 0.828,1.12013,0.994,1.022724 +L 0.994,1.022724,1.2561,0.847398 +L 1.2561,0.847398,1.7436,0.594151 +L 1.7436,0.594151,2.2406,0.516231 +L 2.2406,0.516231,2.9511,0.652601 +L 2.9511,0.652601,3.5744,1.090905 +L 3.5744,1.090905,4.003,1.724021 +L 4.003,1.724021,4.1496,2.483761 +L 4.1496,2.483761,4.0228,3.253247 +L 4.0228,3.253247,3.6423,3.974023 +L 3.6423,3.974023,3.0289,4.587661 +L 3.0289,4.587661,2.2203,5.045458 +L 2.2203,5.045458,1.3829,5.279219 +L 1.3829,5.279219,0.2919,5.386364 +L 0.2919,5.386364,1.9864,8.805199 +L 1.9864,8.805199,5.1426,8.805199 + +[6] 52 +L 5.386,8.980518,5.386,8.74675 +L 5.386,8.74675,4.6066,8.620126 +L 4.6066,8.620126,3.9833,8.405844 +L 3.9833,8.405844,3.4477,8.084416 +L 3.4477,8.084416,2.9126,7.616879 +L 2.9126,7.616879,2.435,7.061691 +L 2.435,7.061691,2.0351,6.448053 +L 2.0351,6.448053,1.724,5.746748 +L 1.724,5.746748,1.4604,4.918835 +L 1.4604,4.918835,2.3958,5.396103 +L 2.3958,5.396103,3.3308,5.56169 +L 3.3308,5.56169,4.179,5.376625 +L 4.179,5.376625,4.8989,4.831168 +L 4.8989,4.831168,5.3959,4.003248 +L 5.3959,4.003248,5.5619,2.961037 +L 5.5619,2.961037,5.3959,1.909095 +L 5.3959,1.909095,4.889,0.944804 +L 4.889,0.944804,3.9541,0.116883 +L 3.9541,0.116883,2.7659,-0.15584 +L 2.7659,-0.15584,1.9281,-0.00974 +L 1.9281,-0.00974,1.2265,0.438311 +L 1.2265,0.438311,0.302,1.772724 +L 0.302,1.772724,0.0002,3.457791 +L 0.0002,3.457791,0.1167,4.607139 +L 0.1167,4.607139,0.4675,5.698053 +L 0.4675,5.698053,1.0422,6.7013 +L 1.0422,6.7013,1.8216,7.587662 +L 1.8216,7.587662,2.6881,8.279221 +L 2.6881,8.279221,3.5067,8.698054 +L 3.5067,8.698054,4.286,8.912337 +L 4.286,8.912337,5.006,8.980518 +L 5.006,8.980518,5.386,8.980518 +L 1.3434,4.441559,1.2562,3.652595 +L 1.2562,3.652595,1.2265,3.029218 +L 1.2265,3.029218,1.2855,2.376624 +L 1.2855,2.376624,1.4604,1.675326 +L 1.4604,1.675326,1.7428,1.012985 +L 1.7428,1.012985,2.1421,0.516231 +L 2.1421,0.516231,2.5128,0.28247 +L 2.5128,0.28247,2.9507,0.204543 +L 2.9507,0.204543,3.4868,0.340905 +L 3.4868,0.340905,3.964,0.74026 +L 3.964,0.74026,4.295,1.383116 +L 4.295,1.383116,4.4025,2.259739 +L 4.4025,2.259739,4.295,3.292211 +L 4.295,3.292211,3.964,4.178574 +L 3.964,4.178574,3.4284,4.792212 +L 3.4284,4.792212,2.7075,4.996755 +L 2.7075,4.996755,2.4543,4.96753 +L 2.4543,4.96753,2.1818,4.88961 +L 2.1818,4.88961,1.831,4.724023 +L 1.831,4.724023,1.3434,4.441559 + +[7] 12 +L 0.8387,8.805199,5.562,8.805199 +L 5.562,8.805199,5.562,8.551953 +L 5.562,8.551953,2.6298,-0.18506 +L 2.6298,-0.18506,1.8995,-0.18506 +L 1.8995,-0.18506,4.5294,7.743503 +L 4.5294,7.743503,2.1041,7.743503 +L 2.1041,7.743503,1.4813,7.704547 +L 1.4813,7.704547,1.0622,7.568184 +L 1.0622,7.568184,0.5657,7.188314 +L 0.5657,7.188314,0.1852,6.642858 +L 0.1852,6.642858,0.0009,6.720778 +L 0.0009,6.720778,0.8387,8.805199 + +[8] 65 +L 1.7431,4.43182,0.8859,5.211038 +L 0.8859,5.211038,0.3989,5.814937 +L 0.3989,5.814937,0.165,6.340908 +L 0.165,6.340908,0.0966,6.886365 +L 0.0966,6.886365,0.2626,7.685068 +L 0.2626,7.685068,0.7596,8.36688 +L 0.7596,8.36688,1.5285,8.834417 +L 1.5285,8.834417,2.512,8.980518 +L 2.512,8.980518,3.4762,8.844156 +L 3.4762,8.844156,4.2269,8.405844 +L 4.2269,8.405844,4.7139,7.792206 +L 4.7139,7.792206,4.8799,7.090908 +L 4.8799,7.090908,4.7912,6.594154 +L 4.7912,6.594154,4.5291,6.087662 +L 4.5291,6.087662,3.9831,5.522726 +L 3.9831,5.522726,3.0675,4.879871 +L 3.0675,4.879871,4.0123,4.090907 +L 4.0123,4.090907,4.5772,3.487008 +L 4.5772,3.487008,4.9473,2.805196 +L 4.9473,2.805196,5.0741,2.094152 +L 5.0741,2.094152,4.8992,1.227268 +L 4.8992,1.227268,4.3631,0.506492 +L 4.3631,0.506492,3.5446,0.009738 +L 3.5446,0.009738,2.512,-0.15584 +L 2.512,-0.15584,1.3923,0.038963 +L 1.3923,0.038963,0.5549,0.633115 +L 0.5549,0.633115,0.1358,1.285717 +L 0.1358,1.285717,-0.001,2.006493 +L -0.001,2.006493,0.0966,2.590906 +L 0.0966,2.590906,0.389,3.165588 +L 0.389,3.165588,0.9251,3.769479 +L 0.9251,3.769479,1.7431,4.43182 +L 2.7657,5.133118,3.3994,5.756495 +L 3.3994,5.756495,3.7497,6.233763 +L 3.7497,6.233763,3.9053,6.672082 +L 3.9053,6.672082,3.9544,7.14935 +L 3.9544,7.14935,3.8572,7.762989 +L 3.8572,7.762989,3.5738,8.220779 +L 3.5738,8.220779,3.116,8.512981 +L 3.116,8.512981,2.5319,8.610387 +L 2.5319,8.610387,1.9279,8.512981 +L 1.9279,8.512981,1.4507,8.220779 +L 1.4507,8.220779,1.1386,7.811692 +L 1.1386,7.811692,1.0316,7.324677 +L 1.0316,7.324677,1.0801,6.993502 +L 1.0801,6.993502,1.2075,6.652597 +L 1.2075,6.652597,1.4116,6.32143 +L 1.4116,6.32143,1.694,6.009741 +L 1.694,6.009741,2.7657,5.133118 +L 2.0453,4.188313,1.5771,3.711037 +L 1.5771,3.711037,1.2456,3.194805 +L 1.2456,3.194805,1.0514,2.639609 +L 1.0514,2.639609,0.9934,2.035718 +L 0.9934,2.035718,1.1004,1.285717 +L 1.1004,1.285717,1.4507,0.701296 +L 1.4507,0.701296,1.9675,0.321427 +L 1.9675,0.321427,2.6101,0.194803 +L 2.6101,0.194803,3.2429,0.29221 +L 3.2429,0.29221,3.7398,0.594151 +L 3.7398,0.594151,4.051,1.032471 +L 4.051,1.032471,4.1585,1.548703 +L 4.1585,1.548703,4.0995,1.996754 +L 4.0995,1.996754,3.9152,2.386363 +L 3.9152,2.386363,3.2141,3.185066 +L 3.2141,3.185066,2.0453,4.188313 + +[9] 48 +L 0.1755,-0.18506,0.1755,0.058441 +L 0.1755,0.058441,0.9931,0.165586 +L 0.9931,0.165586,1.7427,0.44805 +L 1.7427,0.44805,2.4636,0.974021 +L 2.4636,0.974021,3.1553,1.782471 +L 3.1553,1.782471,3.73,2.775971 +L 3.73,2.775971,4.1002,3.866878 +L 4.1002,3.866878,3.1261,3.370131 +L 3.1261,3.370131,2.2496,3.204544 +L 2.2496,3.204544,1.3929,3.389609 +L 1.3929,3.389609,0.6621,3.925327 +L 0.6621,3.925327,0.1651,4.762987 +L 0.1651,4.762987,-0.0003,5.834415 +L -0.0003,5.834415,0.1651,6.925329 +L 0.1651,6.925329,0.6621,7.889612 +L 0.6621,7.889612,1.5772,8.707793 +L 1.5772,8.707793,2.747,8.980518 +L 2.747,8.980518,3.7499,8.756489 +L 3.7499,8.756489,4.6065,8.084416 +L 4.6065,8.084416,5.318,6.847401 +L 5.318,6.847401,5.5514,5.3474 +L 5.5514,5.3474,5.3671,3.935066 +L 5.3671,3.935066,4.8305,2.610384 +L 4.8305,2.610384,3.9634,1.451297 +L 3.9634,1.451297,2.8238,0.506492 +L 2.8238,0.506492,1.7338,-0.00974 +L 1.7338,-0.00974,0.5452,-0.18506 +L 0.5452,-0.18506,0.1755,-0.18506 +L 4.1978,4.344153,4.2855,5.103893 +L 4.2855,5.103893,4.3147,5.698053 +L 4.3147,5.698053,4.2656,6.350647 +L 4.2656,6.350647,4.1002,7.051952 +L 4.1002,7.051952,3.847,7.694807 +L 3.847,7.694807,3.4962,8.172075 +L 3.4962,8.172075,3.078,8.464286 +L 3.078,8.464286,2.6004,8.561692 +L 2.6004,8.561692,2.0653,8.435069 +L 2.0653,8.435069,1.5876,8.04546 +L 1.5876,8.04546,1.2666,7.392858 +L 1.2666,7.392858,1.1591,6.496748 +L 1.1591,6.496748,1.2948,5.279219 +L 1.2948,5.279219,1.7338,4.353892 +L 1.7338,4.353892,2.2005,3.935066 +L 2.2005,3.935066,2.7753,3.798704 +L 2.7753,3.798704,3.0968,3.83766 +L 3.0968,3.83766,3.4774,3.944805 +L 3.4774,3.944805,3.8663,4.110385 +L 3.8663,4.110385,4.1978,4.344153 + +[:] 32 +L 0.7212,6.126626,0.9937,6.077922 +L 0.9937,6.077922,1.2276,5.922082 +L 1.2276,5.922082,1.3831,5.688314 +L 1.3831,5.688314,1.4421,5.405842 +L 1.4421,5.405842,1.3831,5.133118 +L 1.3831,5.133118,1.2276,4.899349 +L 1.2276,4.899349,0.9937,4.743509 +L 0.9937,4.743509,0.7212,4.685067 +L 0.7212,4.685067,0.4393,4.743509 +L 0.4393,4.743509,0.2054,4.899349 +L 0.2054,4.899349,0.0493,5.133118 +L 0.0493,5.133118,0.0008,5.405842 +L 0.0008,5.405842,0.0493,5.688314 +L 0.0493,5.688314,0.2054,5.922082 +L 0.2054,5.922082,0.4393,6.077922 +L 0.4393,6.077922,0.7212,6.126626 +L 0.7014,1.266232,0.9843,1.207789 +L 0.9843,1.207789,1.2182,1.051949 +L 1.2182,1.051949,1.3831,0.818181 +L 1.3831,0.818181,1.4322,0.535717 +L 1.4322,0.535717,1.3742,0.262985 +L 1.3742,0.262985,1.2182,0.029224 +L 1.2182,0.029224,0.9843,-0.12662 +L 0.9843,-0.12662,0.7014,-0.18506 +L 0.7014,-0.18506,0.4289,-0.12662 +L 0.4289,-0.12662,0.195,0.029224 +L 0.195,0.029224,0.0394,0.262985 +L 0.0394,0.262985,-0.019,0.535717 +L -0.019,0.535717,0.0394,0.818181 +L 0.0394,0.818181,0.195,1.051949 +L 0.195,1.051949,0.4289,1.207789 +L 0.4289,1.207789,0.7014,1.266232 + +[;] 45 +L 0.9057,6.136365,1.1787,6.087662 +L 1.1787,6.087662,1.4125,5.931821 +L 1.4125,5.931821,1.5785,5.698053 +L 1.5785,5.698053,1.6266,5.425328 +L 1.6266,5.425328,1.5785,5.142857 +L 1.5785,5.142857,1.4125,4.909088 +L 1.4125,4.909088,1.1787,4.753248 +L 1.1787,4.753248,0.9057,4.704545 +L 0.9057,4.704545,0.6336,4.753248 +L 0.6336,4.753248,0.3998,4.909088 +L 0.3998,4.909088,0.2338,5.142857 +L 0.2338,5.142857,0.1847,5.425328 +L 0.1847,5.425328,0.2338,5.698053 +L 0.2338,5.698053,0.3998,5.931821 +L 0.3998,5.931821,0.6336,6.087662 +L 0.6336,6.087662,0.9057,6.136365 +L -0.0001,-2.21103,-0.0001,-1.92857 +L -0.0001,-1.92857,0.595,-1.6461 +L 0.595,-1.6461,1.033,-1.24675 +L 1.033,-1.24675,1.3055,-0.76947 +L 1.3055,-0.76947,1.4026,-0.26298 +L 1.4026,-0.26298,1.3833,-0.1461 +L 1.3833,-0.1461,1.3446,-0.0487 +L 1.3446,-0.0487,1.2951,-0.00974 +L 1.2951,-0.00974,1.2465,0.009738 +L 1.2465,0.009738,1.1395,-0.02922 +L 1.1395,-0.02922,0.9354,-0.12662 +L 0.9354,-0.12662,0.8185,-0.16558 +L 0.8185,-0.16558,0.6921,-0.18506 +L 0.6921,-0.18506,0.4087,-0.13636 +L 0.4087,-0.13636,0.1847,0.009738 +L 0.1847,0.009738,0.0391,0.233767 +L 0.0391,0.233767,-0.0001,0.525978 +L -0.0001,0.525978,0.0589,0.818181 +L 0.0589,0.818181,0.2432,1.071427 +L 0.2432,1.071427,0.5068,1.237014 +L 0.5068,1.237014,0.8378,1.295456 +L 0.8378,1.295456,1.2371,1.207789 +L 1.2371,1.207789,1.5973,0.925326 +L 1.5973,0.925326,1.851,0.487014 +L 1.851,0.487014,1.9283,-0.06818 +L 1.9283,-0.06818,1.8114,-0.71103 +L 1.8114,-0.71103,1.471,-1.30519 +L 1.471,-1.30519,0.8675,-1.82142 +L 0.8675,-1.82142,-0.0001,-2.21103 + +[<] 7 +L -0.0004,4.587661,6.9837,7.60714 +L 6.9837,7.60714,6.9837,7.042205 +L 6.9837,7.042205,0.9737,4.43182 +L 0.9737,4.43182,6.9837,1.801949 +L 6.9837,1.801949,6.9837,1.217528 +L 6.9837,1.217528,-0.0004,4.266233 +L -0.0004,4.266233,-0.0004,4.587661 + +[=] 8 +L 0.0007,5.737009,7.0037,5.737009 +L 7.0037,5.737009,7.0037,5.201299 +L 7.0037,5.201299,0.0007,5.201299 +L 0.0007,5.201299,0.0007,5.737009 +L 0.0007,3.613631,7.0037,3.613631 +L 7.0037,3.613631,7.0037,3.08766 +L 7.0037,3.08766,0.0007,3.08766 +L 0.0007,3.08766,0.0007,3.613631 + +[>] 7 +L 6.984,4.237008,0.0004,1.217528 +L 0.0004,1.217528,0.0004,1.772724 +L 0.0004,1.772724,6.0193,4.383117 +L 6.0193,4.383117,0.0004,7.012988 +L 0.0004,7.012988,0.0004,7.60714 +L 0.0004,7.60714,6.984,4.558444 +L 6.984,4.558444,6.984,4.237008 + +[?] 61 +L 2.3574,2.074674,2.0849,2.074674 +L 2.0849,2.074674,2.1622,2.824674 +L 2.1622,2.824674,2.2891,3.428573 +L 2.2891,3.428573,2.5328,4.071429 +L 2.5328,4.071429,2.9515,4.918835 +L 2.9515,4.918835,3.2731,5.571429 +L 3.2731,5.571429,3.4584,6.048705 +L 3.4584,6.048705,3.5456,6.438314 +L 3.5456,6.438314,3.5748,6.837662 +L 3.5748,6.837662,3.4673,7.577923 +L 3.4673,7.577923,3.1363,8.152597 +L 3.1363,8.152597,2.6498,8.522728 +L 2.6498,8.522728,2.0651,8.639612 +L 2.0651,8.639612,1.5587,8.571431 +L 1.5587,8.571431,1.1693,8.376619 +L 1.1693,8.376619,0.9255,8.094155 +L 0.9255,8.094155,0.8473,7.792206 +L 0.8473,7.792206,0.8963,7.52922 +L 0.8963,7.52922,1.0425,7.207793 +L 1.0425,7.207793,1.1881,6.896104 +L 1.1881,6.896104,1.2372,6.672082 +L 1.2372,6.672082,1.1985,6.457792 +L 1.1985,6.457792,1.0915,6.282466 +L 1.0915,6.282466,0.9255,6.165582 +L 0.9255,6.165582,0.7214,6.126626 +L 0.7214,6.126626,0.4677,6.185068 +L 0.4677,6.185068,0.224,6.389611 +L 0.224,6.389611,0.059,6.711039 +L 0.059,6.711039,0,7.139611 +L 0,7.139611,0.1561,7.83117 +L 0.1561,7.83117,0.6337,8.435069 +L 0.6337,8.435069,1.3734,8.863634 +L 1.3734,8.863634,2.3381,8.999996 +L 2.3381,8.999996,3.497,8.805199 +L 3.497,8.805199,4.3056,8.220779 +L 4.3056,8.220779,4.6559,7.626619 +L 4.6559,7.626619,4.7729,6.964285 +L 4.7729,6.964285,4.7238,6.47727 +L 4.7238,6.47727,4.5682,5.990255 +L 4.5682,5.990255,4.2571,5.444806 +L 4.2571,5.444806,3.7596,4.81169 +L 3.7596,4.81169,3.0001,3.896102 +L 3.0001,3.896102,2.6101,3.30195 +L 2.6101,3.30195,2.4451,2.775971 +L 2.4451,2.775971,2.3574,2.074674 +L 2.2598,1.275971,2.5427,1.217528 +L 2.5427,1.217528,2.7766,1.061688 +L 2.7766,1.061688,2.9322,0.82792 +L 2.9322,0.82792,2.9907,0.545456 +L 2.9907,0.545456,2.9322,0.272724 +L 2.9322,0.272724,2.7766,0.038963 +L 2.7766,0.038963,2.5427,-0.12662 +L 2.5427,-0.12662,2.2598,-0.17532 +L 2.2598,-0.17532,1.9868,-0.12662 +L 1.9868,-0.12662,1.753,0.038963 +L 1.753,0.038963,1.5974,0.272724 +L 1.5974,0.272724,1.5394,0.545456 +L 1.5394,0.545456,1.5974,0.82792 +L 1.5974,0.82792,1.753,1.061688 +L 1.753,1.061688,1.9868,1.217528 +L 1.9868,1.217528,2.2598,1.275971 + +[@] 114 +L 8.5029,6.224024,7.7428,3.633117 +L 7.7428,3.633117,7.4119,2.444805 +L 7.4119,2.444805,7.2365,1.782471 +L 7.2365,1.782471,7.1686,1.431819 +L 7.1686,1.431819,7.1394,1.159094 +L 7.1394,1.159094,7.178,0.974021 +L 7.178,0.974021,7.285,0.808442 +L 7.285,0.808442,7.4416,0.701296 +L 7.4416,0.701296,7.6264,0.672079 +L 7.6264,0.672079,8.1526,0.788963 +L 8.1526,0.788963,8.766,1.139608 +L 8.766,1.139608,9.3893,1.762985 +L 9.3893,1.762985,9.906,2.678573 +L 9.906,2.678573,10.2658,3.769479 +L 10.2658,3.769479,10.3827,4.899349 +L 10.3827,4.899349,10.2464,5.970777 +L 10.2464,5.970777,9.8476,6.954546 +L 9.8476,6.954546,9.205,7.782467 +L 9.205,7.782467,8.3374,8.396105 +L 8.3374,8.396105,7.3048,8.775975 +L 7.3048,8.775975,6.1752,8.902598 +L 6.1752,8.902598,4.7334,8.698054 +L 4.7334,8.698054,3.3896,8.103894 +L 3.3896,8.103894,2.2402,7.139611 +L 2.2402,7.139611,1.3533,5.814937 +L 1.3533,5.814937,0.7983,4.295458 +L 0.7983,4.295458,0.6036,2.717529 +L 0.6036,2.717529,0.7691,1.285717 +L 0.7691,1.285717,1.2661,0 +L 1.2661,0,2.0548,-1.07142 +L 2.0548,-1.07142,3.1161,-1.85064 +L 3.1161,-1.85064,4.3637,-2.31818 +L 4.3637,-2.31818,5.6876,-2.47402 +L 5.6876,-2.47402,7.3147,-2.24026 +L 7.3147,-2.24026,8.7754,-1.55844 +L 8.7754,-1.55844,10.0037,-0.42857 +L 10.0037,-0.42857,10.9089,1.12013 +L 10.9089,1.12013,11.2884,1.12013 +L 11.2884,1.12013,10.461,-0.49675 +L 10.461,-0.49675,9.1658,-1.76298 +L 9.1658,-1.76298,7.5189,-2.5909 +L 7.5189,-2.5909,5.6594,-2.87337 +L 5.6594,-2.87337,4.1685,-2.68831 +L 4.1685,-2.68831,2.7852,-2.14285 +L 2.7852,-2.14285,1.6069,-1.25649 +L 1.6069,-1.25649,0.73,-0.06818 +L 0.73,-0.06818,0.1755,1.344152 +L 0.1755,1.344152,-0.0004,2.883116 +L -0.0004,2.883116,0.1944,4.538965 +L 0.1944,4.538965,0.7983,6.077922 +L 0.7983,6.077922,1.7724,7.402597 +L 1.7724,7.402597,3.0582,8.396105 +L 3.0582,8.396105,4.5485,9.019474 +L 4.5485,9.019474,6.1365,9.233764 +L 6.1365,9.233764,7.4119,9.097402 +L 7.4119,9.097402,8.5613,8.678576 +L 8.5613,8.678576,9.5156,7.996749 +L 9.5156,7.996749,10.2078,7.051952 +L 10.2078,7.051952,10.6364,5.951299 +L 10.6364,5.951299,10.7721,4.782465 +L 10.7721,4.782465,10.6364,3.603892 +L 10.6364,3.603892,10.2464,2.435066 +L 10.2464,2.435066,9.643,1.42208 +L 9.643,1.42208,8.8923,0.730521 +L 8.8923,0.730521,8.0649,0.331166 +L 8.0649,0.331166,7.1879,0.204543 +L 7.1879,0.204543,6.7593,0.262985 +L 6.7593,0.262985,6.4477,0.438311 +L 6.4477,0.438311,6.2624,0.720775 +L 6.2624,0.720775,6.1945,1.090905 +L 6.1945,1.090905,6.2237,1.509739 +L 6.2237,1.509739,6.3119,2.045457 +L 6.3119,2.045457,5.4444,1.090905 +L 5.4444,1.090905,4.772,0.535717 +L 4.772,0.535717,4.227,0.28247 +L 4.227,0.28247,3.7593,0.194803 +L 3.7593,0.194803,3.3213,0.301949 +L 3.3213,0.301949,2.9412,0.60389 +L 2.9412,0.60389,2.6687,1.090905 +L 2.6687,1.090905,2.581,1.704543 +L 2.581,1.704543,2.7366,2.70779 +L 2.7366,2.70779,3.1944,3.818182 +L 3.1944,3.818182,3.9054,4.879871 +L 3.9054,4.879871,4.8215,5.717531 +L 4.8215,5.717531,5.5325,6.126626 +L 5.5325,6.126626,6.1553,6.262988 +L 6.1553,6.262988,6.5547,6.204546 +L 6.5547,6.204546,6.8768,6.038958 +L 6.8768,6.038958,7.12,5.756495 +L 7.12,5.756495,7.2761,5.366878 +L 7.2761,5.366878,7.4906,6.077922 +L 7.4906,6.077922,8.5029,6.224024 +L 6.2341,5.951299,5.7372,5.824676 +L 5.7372,5.824676,5.2397,5.444806 +L 5.2397,5.444806,4.558,4.558444 +L 4.558,4.558444,3.9931,3.409088 +L 3.9931,3.409088,3.7008,2.561689 +L 3.7008,2.561689,3.6037,1.899348 +L 3.6037,1.899348,3.6622,1.529225 +L 3.6622,1.529225,3.8375,1.237014 +L 3.8375,1.237014,4.0813,1.04221 +L 4.0813,1.04221,4.3538,0.983768 +L 4.3538,0.983768,4.7433,1.051949 +L 4.7433,1.051949,5.1426,1.266232 +L 5.1426,1.266232,5.5712,1.626623 +L 5.5712,1.626623,6.0102,2.142855 +L 6.0102,2.142855,6.409,2.737015 +L 6.409,2.737015,6.6721,3.340906 +L 6.6721,3.340906,6.9441,4.275972 +L 6.9441,4.275972,7.0422,5.016233 +L 7.0422,5.016233,6.9838,5.405842 +L 6.9838,5.405842,6.8089,5.698053 +L 6.8089,5.698053,6.5453,5.892857 +L 6.5453,5.892857,6.2341,5.951299 + +[A] 35 +L 5.9806,2.951298,2.5718,2.951298 +L 2.5718,2.951298,1.9673,1.558442 +L 1.9673,1.558442,1.8018,1.110391 +L 1.8018,1.110391,1.7532,0.788963 +L 1.7532,0.788963,1.8018,0.60389 +L 1.8018,0.60389,1.9381,0.438311 +L 1.9381,0.438311,2.2398,0.311688 +L 2.2398,0.311688,2.766,0.243507 +L 2.766,0.243507,2.766,0 +L 2.766,0,0.0003,0 +L 0.0003,0,0.0003,0.243507 +L 0.0003,0.243507,0.4477,0.350644 +L 0.4477,0.350644,0.7108,0.496753 +L 0.7108,0.496753,1.0616,0.964282 +L 1.0616,0.964282,1.4411,1.762985 +L 1.4411,1.762985,4.5393,8.999996 +L 4.5393,8.999996,4.7726,8.999996 +L 4.7726,8.999996,7.8312,1.685065 +L 7.8312,1.685065,8.182,0.954543 +L 8.182,0.954543,8.503,0.535717 +L 8.503,0.535717,8.8642,0.331166 +L 8.8642,0.331166,9.3404,0.243507 +L 9.3404,0.243507,9.3404,0 +L 9.3404,0,5.8731,0 +L 5.8731,0,5.8731,0.243507 +L 5.8731,0.243507,6.3111,0.301949 +L 6.3111,0.301949,6.5841,0.418833 +L 6.5841,0.418833,6.7203,0.584412 +L 6.7203,0.584412,6.7694,0.779224 +L 6.7694,0.779224,6.7015,1.149347 +L 6.7015,1.149347,6.5063,1.685065 +L 6.5063,1.685065,5.9806,2.951298 +L 5.7958,3.428573,4.3054,6.983763 +L 4.3054,6.983763,2.766,3.428573 +L 2.766,3.428573,5.7958,3.428573 + +[B] 69 +L 5.9223,4.490255,6.721,4.237008 +L 6.721,4.237008,7.2853,3.866878 +L 7.2853,3.866878,7.7634,3.204544 +L 7.7634,3.204544,7.9185,2.405841 +L 7.9185,2.405841,7.8115,1.762985 +L 7.8115,1.762985,7.5003,1.149347 +L 7.5003,1.149347,7.0128,0.633115 +L 7.0128,0.633115,6.3603,0.272724 +L 6.3603,0.272724,5.4451,0.06818 +L 5.4451,0.06818,4.149,0 +L 4.149,0,-0.0001,0 +L -0.0001,0,-0.0001,0.243507 +L -0.0001,0.243507,0.3314,0.243507 +L 0.3314,0.243507,0.7991,0.331166 +L 0.7991,0.331166,1.1197,0.594151 +L 1.1197,0.594151,1.2267,0.944804 +L 1.2267,0.944804,1.2668,1.558442 +L 1.2668,1.558442,1.2668,7.246749 +L 1.2668,7.246749,1.2178,7.90909 +L 1.2178,7.90909,1.081,8.279221 +L 1.081,8.279221,0.7694,8.493503 +L 0.7694,8.493503,0.3314,8.561692 +L 0.3314,8.561692,-0.0001,8.561692 +L -0.0001,8.561692,-0.0001,8.805199 +L -0.0001,8.805199,3.7982,8.805199 +L 3.7982,8.805199,4.7624,8.766228 +L 4.7624,8.766228,5.5125,8.649351 +L 5.5125,8.649351,6.3697,8.327924 +L 6.3697,8.327924,6.993,7.821431 +L 6.993,7.821431,7.3829,7.178575 +L 7.3829,7.178575,7.5092,6.457792 +L 7.5092,6.457792,7.4027,5.824676 +L 7.4027,5.824676,7.1005,5.26948 +L 7.1005,5.26948,6.6035,4.81169 +L 6.6035,4.81169,5.9223,4.490255 +L 2.5134,4.840907,2.7755,4.801951 +L 2.7755,4.801951,3.0679,4.772726 +L 3.0679,4.772726,3.3899,4.753248 +L 3.3899,4.753248,3.7397,4.753248 +L 3.7397,4.753248,4.5686,4.801951 +L 4.5686,4.801951,5.1716,4.957791 +L 5.1716,4.957791,5.5908,5.211038 +L 5.5908,5.211038,5.9024,5.581169 +L 5.9024,5.581169,6.0873,6.029219 +L 6.0873,6.029219,6.1561,6.506495 +L 6.1561,6.506495,5.9901,7.217532 +L 5.9901,7.217532,5.5224,7.821431 +L 5.5224,7.821431,4.7435,8.230518 +L 4.7435,8.230518,3.6813,8.36688 +L 3.6813,8.36688,3.0679,8.327924 +L 3.0679,8.327924,2.5134,8.220779 +L 2.5134,8.220779,2.5134,4.840907 +L 2.5134,0.633115,3.2631,0.506492 +L 3.2631,0.506492,4.0038,0.457789 +L 4.0038,0.457789,5.0359,0.594151 +L 5.0359,0.594151,5.7949,0.993507 +L 5.7949,0.993507,6.2532,1.57792 +L 6.2532,1.57792,6.4088,2.298703 +L 6.4088,2.298703,6.3409,2.805196 +L 6.3409,2.805196,6.1358,3.282464 +L 6.1358,3.282464,5.7662,3.711037 +L 5.7662,3.711037,5.2202,4.032465 +L 5.2202,4.032465,4.5196,4.237008 +L 4.5196,4.237008,3.6629,4.305197 +L 3.6629,4.305197,3.2923,4.305197 +L 3.2923,4.305197,2.9802,4.295458 +L 2.9802,4.295458,2.7176,4.275972 +L 2.7176,4.275972,2.5134,4.246755 +L 2.5134,4.246755,2.5134,0.633115 + +[C] 46 +L 7.5297,8.999996,7.7239,6.009741 +L 7.7239,6.009741,7.5297,6.009741 +L 7.5297,6.009741,7.0422,7.168829 +L 7.0422,7.168829,6.3802,7.948054 +L 6.3802,7.948054,5.5617,8.386366 +L 5.5617,8.386366,4.5881,8.532467 +L 4.5881,8.532467,3.7503,8.42533 +L 3.7503,8.42533,3.0001,8.094155 +L 3.0001,8.094155,2.3669,7.519481 +L 2.3669,7.519481,1.8893,6.672082 +L 1.8893,6.672082,1.588,5.581169 +L 1.588,5.581169,1.4805,4.256494 +L 1.4805,4.256494,1.5781,3.136363 +L 1.5781,3.136363,1.871,2.181819 +L 1.871,2.181819,2.3471,1.402602 +L 2.3471,1.402602,3.0195,0.837659 +L 3.0195,0.837659,3.8375,0.487014 +L 3.8375,0.487014,4.7729,0.37013 +L 4.7729,0.37013,5.5815,0.457789 +L 5.5815,0.457789,6.2826,0.74026 +L 6.2826,0.74026,6.9738,1.285717 +L 6.9738,1.285717,7.7239,2.191558 +L 7.7239,2.191558,7.9286,2.064935 +L 7.9286,2.064935,7.2076,1.04221 +L 7.2076,1.04221,6.3802,0.340905 +L 6.3802,0.340905,5.4155,-0.06818 +L 5.4155,-0.06818,4.2854,-0.20454 +L 4.2854,-0.20454,2.3471,0.204543 +L 2.3471,0.204543,0.8964,1.42208 +L 0.8964,1.42208,0.2245,2.737015 +L 0.2245,2.737015,0.0001,4.266233 +L 0.0001,4.266233,0.1566,5.532466 +L 0.1566,5.532466,0.5946,6.681822 +L 0.5946,6.681822,1.2962,7.665583 +L 1.2962,7.665583,2.2208,8.396105 +L 2.2208,8.396105,3.3019,8.853895 +L 3.3019,8.853895,4.4806,8.999996 +L 4.4806,8.999996,5.4349,8.883112 +L 5.4349,8.883112,6.3703,8.532467 +L 6.3703,8.532467,6.6042,8.42533 +L 6.6042,8.42533,6.7503,8.396105 +L 6.7503,8.396105,6.9153,8.42533 +L 6.9153,8.42533,7.062,8.512981 +L 7.062,8.512981,7.2076,8.727272 +L 7.2076,8.727272,7.2958,8.999996 +L 7.2958,8.999996,7.5297,8.999996 + +[D] 38 +L 0.0007,0,0.0007,0.243507 +L 0.0007,0.243507,0.3312,0.243507 +L 0.3312,0.243507,0.8088,0.331166 +L 0.8088,0.331166,1.1299,0.594151 +L 1.1299,0.594151,1.2369,0.944804 +L 1.2369,0.944804,1.2666,1.558442 +L 1.2666,1.558442,1.2666,7.246749 +L 1.2666,7.246749,1.227,7.918829 +L 1.227,7.918829,1.0917,8.279221 +L 1.0917,8.279221,0.7692,8.493503 +L 0.7692,8.493503,0.3312,8.561692 +L 0.3312,8.561692,0.0007,8.561692 +L 0.0007,8.561692,0.0007,8.805199 +L 0.0007,8.805199,3.5844,8.805199 +L 3.5844,8.805199,5.328,8.688315 +L 5.328,8.688315,6.5939,8.357141 +L 6.5939,8.357141,7.5194,7.75325 +L 7.5194,7.75325,8.2403,6.866879 +L 8.2403,6.866879,8.718,5.737009 +L 8.718,5.737009,8.8736,4.451298 +L 8.8736,4.451298,8.5911,2.756493 +L 8.5911,2.756493,7.7533,1.373377 +L 7.7533,1.373377,6.1757,0.340905 +L 6.1757,0.340905,3.9352,0 +L 3.9352,0,0.0007,0 +L 2.5132,0.633115,3.2728,0.496753 +L 3.2728,0.496753,3.8961,0.457789 +L 3.8961,0.457789,5.2789,0.720775 +L 5.2789,0.720775,6.3997,1.509739 +L 6.3997,1.509739,7.1404,2.756493 +L 7.1404,2.756493,7.3926,4.383117 +L 7.3926,4.383117,7.1404,6.009741 +L 7.1404,6.009741,6.3997,7.256496 +L 6.3997,7.256496,5.2601,8.04546 +L 5.2601,8.04546,3.8475,8.308446 +L 3.8475,8.308446,3.2237,8.259743 +L 3.2237,8.259743,2.5132,8.123372 +L 2.5132,8.123372,2.5132,0.633115 + +[E] 58 +L 2.503,8.318185,2.503,4.840907 +L 2.503,4.840907,4.4412,4.840907 +L 4.4412,4.840907,5.0645,4.899349 +L 5.0645,4.899349,5.4441,5.074676 +L 5.4441,5.074676,5.7076,5.483762 +L 5.7076,5.483762,5.8246,6.126626 +L 5.8246,6.126626,6.0674,6.126626 +L 6.0674,6.126626,6.0674,3.058443 +L 6.0674,3.058443,5.8246,3.058443 +L 5.8246,3.058443,5.7364,3.584414 +L 5.7364,3.584414,5.6393,3.886363 +L 5.6393,3.886363,5.4837,4.081168 +L 5.4837,4.081168,5.2597,4.237008 +L 5.2597,4.237008,4.9189,4.334414 +L 4.9189,4.334414,4.4412,4.373378 +L 4.4412,4.373378,2.503,4.373378 +L 2.503,4.373378,2.503,1.470775 +L 2.503,1.470775,2.5228,0.993507 +L 2.5228,0.993507,2.5619,0.759739 +L 2.5619,0.759739,2.6298,0.642854 +L 2.6298,0.642854,2.7368,0.555195 +L 2.7368,0.555195,2.931,0.496753 +L 2.931,0.496753,3.2338,0.477267 +L 3.2338,0.477267,4.7236,0.477267 +L 4.7236,0.477267,5.3668,0.506492 +L 5.3668,0.506492,5.8147,0.584412 +L 5.8147,0.584412,6.1456,0.74026 +L 6.1456,0.74026,6.4578,0.993507 +L 6.4578,0.993507,6.8666,1.5 +L 6.8666,1.5,7.2852,2.211036 +L 7.2852,2.211036,7.5389,2.211036 +L 7.5389,2.211036,6.7789,0 +L 6.7789,0,-0.0002,0 +L -0.0002,0,-0.0002,0.243507 +L -0.0002,0.243507,0.311,0.243507 +L 0.311,0.243507,0.6132,0.272724 +L 0.6132,0.272724,0.9056,0.389608 +L 0.9056,0.389608,1.0815,0.516231 +L 1.0815,0.516231,1.188,0.701296 +L 1.188,0.701296,1.2365,1.012985 +L 1.2365,1.012985,1.2564,1.548703 +L 1.2564,1.548703,1.2564,7.266235 +L 1.2564,7.266235,1.2167,7.948054 +L 1.2167,7.948054,1.0904,8.298699 +L 1.0904,8.298699,0.7787,8.493503 +L 0.7787,8.493503,0.311,8.561692 +L 0.311,8.561692,-0.0002,8.561692 +L -0.0002,8.561692,-0.0002,8.805199 +L -0.0002,8.805199,6.7789,8.805199 +L 6.7789,8.805199,6.876,6.876626 +L 6.876,6.876626,6.6332,6.876626 +L 6.6332,6.876626,6.487,7.461039 +L 6.487,7.461039,6.3314,7.83117 +L 6.3314,7.83117,6.1169,8.055199 +L 6.1169,8.055199,5.8345,8.220779 +L 5.8345,8.220779,5.4738,8.298699 +L 5.4738,8.298699,4.9189,8.318185 +L 4.9189,8.318185,2.503,8.318185 + +[F] 51 +L 2.5031,8.318185,2.5031,4.860385 +L 2.5031,4.860385,4.1104,4.860385 +L 4.1104,4.860385,4.588,4.918835 +L 4.588,4.918835,4.919,5.103893 +L 4.919,5.103893,5.1335,5.464284 +L 5.1335,5.464284,5.2599,6.068183 +L 5.2599,6.068183,5.5042,6.068183 +L 5.5042,6.068183,5.5042,3.08766 +L 5.5042,3.08766,5.2599,3.08766 +L 5.2599,3.08766,5.2212,3.535711 +L 5.2212,3.535711,5.1231,3.847399 +L 5.1231,3.847399,4.978,4.051951 +L 4.978,4.051951,4.7733,4.207791 +L 4.7733,4.207791,4.5003,4.295458 +L 4.5003,4.295458,4.1104,4.324675 +L 4.1104,4.324675,2.5031,4.324675 +L 2.5031,4.324675,2.5031,1.558442 +L 2.5031,1.558442,2.5229,1.003246 +L 2.5229,1.003246,2.5918,0.672079 +L 2.5918,0.672079,2.6889,0.525978 +L 2.6889,0.525978,2.8638,0.399347 +L 2.8638,0.399347,3.1566,0.28247 +L 3.1566,0.28247,3.4579,0.243507 +L 3.4579,0.243507,3.7794,0.243507 +L 3.7794,0.243507,3.7794,0 +L 3.7794,0,0,0 +L 0,0,0,0.243507 +L 0,0.243507,0.3121,0.243507 +L 0.3121,0.243507,0.7794,0.321427 +L 0.7794,0.321427,1.1014,0.555195 +L 1.1014,0.555195,1.2179,0.915587 +L 1.2179,0.915587,1.2565,1.558442 +L 1.2565,1.558442,1.2565,7.246749 +L 1.2565,7.246749,1.2377,7.801953 +L 1.2377,7.801953,1.1787,8.123372 +L 1.1787,8.123372,1.0717,8.279221 +L 1.0717,8.279221,0.9057,8.405844 +L 0.9057,8.405844,0.6238,8.522728 +L 0.6238,8.522728,0.3121,8.561692 +L 0.3121,8.561692,0,8.561692 +L 0,8.561692,0,8.805199 +L 0,8.805199,6.5555,8.805199 +L 6.5555,8.805199,6.6333,6.866879 +L 6.6333,6.866879,6.4089,6.866879 +L 6.4089,6.866879,6.2246,7.402597 +L 6.2246,7.402597,6.0199,7.772728 +L 6.0199,7.772728,5.7667,8.025974 +L 5.7667,8.025974,5.4645,8.191561 +L 5.4645,8.191561,5.0458,8.28896 +L 5.0458,8.28896,4.4513,8.318185 +L 4.4513,8.318185,2.5031,8.318185 + +[G] 61 +L 7.6957,8.999996,7.9202,6.224024 +L 7.9202,6.224024,7.6957,6.224024 +L 7.6957,6.224024,7.2964,7.139611 +L 7.2964,7.139611,6.7994,7.792206 +L 6.7994,7.792206,5.9036,8.357141 +L 5.9036,8.357141,4.7834,8.551953 +L 4.7834,8.551953,3.3029,8.220779 +L 3.3029,8.220779,2.2317,7.217532 +L 2.2317,7.217532,1.6763,5.990255 +L 1.6763,5.990255,1.4915,4.548704 +L 1.4915,4.548704,1.6178,3.340906 +L 1.6178,3.340906,1.978,2.25 +L 1.978,2.25,2.5439,1.344152 +L 2.5439,1.344152,3.2539,0.720775 +L 3.2539,0.720775,4.0526,0.360391 +L 4.0526,0.360391,4.881,0.243507 +L 4.881,0.243507,5.3581,0.272724 +L 5.3581,0.272724,5.8159,0.360391 +L 5.8159,0.360391,6.2638,0.516231 +L 6.2638,0.516231,6.6924,0.730521 +L 6.6924,0.730521,6.6924,3.272725 +L 6.6924,3.272725,6.6731,3.818182 +L 6.6731,3.818182,6.5953,4.13961 +L 6.5953,4.13961,6.469,4.314936 +L 6.469,4.314936,6.2837,4.451298 +L 6.2837,4.451298,5.9908,4.529219 +L 5.9908,4.529219,5.5429,4.558444 +L 5.5429,4.558444,5.5429,4.801951 +L 5.5429,4.801951,8.9423,4.801951 +L 8.9423,4.801951,8.9423,4.558444 +L 8.9423,4.558444,8.7863,4.558444 +L 8.7863,4.558444,8.3587,4.470777 +L 8.3587,4.470777,8.0852,4.21753 +L 8.0852,4.21753,7.9881,3.866878 +L 7.9881,3.866878,7.9588,3.272725 +L 7.9588,3.272725,7.9588,0.574673 +L 7.9588,0.574673,7.2191,0.233767 +L 7.2191,0.233767,6.4878,-0.00974 +L 6.4878,-0.00974,5.7183,-0.15584 +L 5.7183,-0.15584,4.8711,-0.20454 +L 4.8711,-0.20454,2.6207,0.204543 +L 2.6207,0.204543,0.9945,1.431819 +L 0.9945,1.431819,0.2449,2.756493 +L 0.2449,2.756493,0.0006,4.266233 +L 0.0006,4.266233,0.1374,5.405842 +L 0.1374,5.405842,0.556,6.487009 +L 0.556,6.487009,1.3453,7.60714 +L 1.3453,7.60714,2.3774,8.435069 +L 2.3774,8.435069,3.4293,8.863634 +L 3.4293,8.863634,4.6665,8.999996 +L 4.6665,8.999996,5.1243,8.980518 +L 5.1243,8.980518,5.533,8.922084 +L 5.533,8.922084,6.0107,8.805199 +L 6.0107,8.805199,6.6444,8.58117 +L 6.6444,8.58117,6.9555,8.483764 +L 6.9555,8.483764,7.1304,8.444808 +L 7.1304,8.444808,7.2478,8.474025 +L 7.2478,8.474025,7.3455,8.561692 +L 7.3455,8.561692,7.4133,8.727272 +L 7.4133,8.727272,7.453,8.999996 +L 7.453,8.999996,7.6957,8.999996 + +[H] 72 +L 2.5133,4.724023,6.5955,4.724023 +L 6.5955,4.724023,6.6044,7.23701 +L 6.6044,7.23701,6.5751,7.801953 +L 6.5751,7.801953,6.5167,8.123372 +L 6.5167,8.123372,6.4196,8.279221 +L 6.4196,8.279221,6.2442,8.405844 +L 6.2442,8.405844,5.9518,8.522728 +L 5.9518,8.522728,5.6496,8.561692 +L 5.6496,8.561692,5.3384,8.561692 +L 5.3384,8.561692,5.3384,8.805199 +L 5.3384,8.805199,9.108,8.805199 +L 9.108,8.805199,9.108,8.561692 +L 9.108,8.561692,8.7963,8.561692 +L 8.7963,8.561692,8.4936,8.522728 +L 8.4936,8.522728,8.2013,8.415583 +L 8.2013,8.415583,8.0259,8.279221 +L 8.0259,8.279221,7.9189,8.094155 +L 7.9189,8.094155,7.8604,7.782467 +L 7.8604,7.782467,7.8421,7.23701 +L 7.8421,7.23701,7.8421,1.558442 +L 7.8421,1.558442,7.8703,1.003246 +L 7.8703,1.003246,7.9288,0.672079 +L 7.9288,0.672079,8.0259,0.525978 +L 8.0259,0.525978,8.1923,0.399347 +L 8.1923,0.399347,8.4842,0.28247 +L 8.4842,0.28247,8.7963,0.243507 +L 8.7963,0.243507,9.108,0.243507 +L 9.108,0.243507,9.108,0 +L 9.108,0,5.3384,0 +L 5.3384,0,5.3384,0.243507 +L 5.3384,0.243507,5.6496,0.243507 +L 5.6496,0.243507,6.1173,0.321427 +L 6.1173,0.321427,6.4384,0.555195 +L 6.4384,0.555195,6.5553,0.915587 +L 6.5553,0.915587,6.5955,1.558442 +L 6.5955,1.558442,6.5955,4.237008 +L 6.5955,4.237008,2.5133,4.237008 +L 2.5133,4.237008,2.5133,1.558442 +L 2.5133,1.558442,2.5336,1.003246 +L 2.5336,1.003246,2.5921,0.672079 +L 2.5921,0.672079,2.6986,0.525978 +L 2.6986,0.525978,2.8646,0.399347 +L 2.8646,0.399347,3.1564,0.28247 +L 3.1564,0.28247,3.4581,0.243507 +L 3.4581,0.243507,3.7802,0.243507 +L 3.7802,0.243507,3.7802,0 +L 3.7802,0,0.0008,0 +L 0.0008,0,0.0008,0.243507 +L 0.0008,0.243507,0.3124,0.243507 +L 0.3124,0.243507,0.7895,0.321427 +L 0.7895,0.321427,1.1116,0.555195 +L 1.1116,0.555195,1.228,0.915587 +L 1.228,0.915587,1.2667,1.558442 +L 1.2667,1.558442,1.2667,7.23701 +L 1.2667,7.23701,1.2375,7.801953 +L 1.2375,7.801953,1.1795,8.123372 +L 1.1795,8.123372,1.0814,8.279221 +L 1.0814,8.279221,0.9164,8.405844 +L 0.9164,8.405844,0.6236,8.522728 +L 0.6236,8.522728,0.3124,8.561692 +L 0.3124,8.561692,0.0008,8.561692 +L 0.0008,8.561692,0.0008,8.805199 +L 0.0008,8.805199,3.7802,8.805199 +L 3.7802,8.805199,3.7802,8.561692 +L 3.7802,8.561692,3.4581,8.561692 +L 3.4581,8.561692,3.1564,8.522728 +L 3.1564,8.522728,2.8646,8.415583 +L 2.8646,8.415583,2.6986,8.279221 +L 2.6986,8.279221,2.5921,8.094155 +L 2.5921,8.094155,2.5336,7.782467 +L 2.5336,7.782467,2.5133,7.23701 +L 2.5133,7.23701,2.5133,4.724023 + +[I] 32 +L 3.7704,0.243507,3.7704,0 +L 3.7704,0,0.0009,0 +L 0.0009,0,0.0009,0.243507 +L 0.0009,0.243507,0.313,0.243507 +L 0.313,0.243507,0.7813,0.321427 +L 0.7813,0.321427,1.1023,0.555195 +L 1.1023,0.555195,1.2193,0.915587 +L 1.2193,0.915587,1.2574,1.558442 +L 1.2574,1.558442,1.2574,7.246749 +L 1.2574,7.246749,1.2391,7.801953 +L 1.2391,7.801953,1.1801,8.123372 +L 1.1801,8.123372,1.0731,8.279221 +L 1.0731,8.279221,0.9066,8.405844 +L 0.9066,8.405844,0.6153,8.522728 +L 0.6153,8.522728,0.313,8.561692 +L 0.313,8.561692,0.0009,8.561692 +L 0.0009,8.561692,0.0009,8.805199 +L 0.0009,8.805199,3.7704,8.805199 +L 3.7704,8.805199,3.7704,8.561692 +L 3.7704,8.561692,3.4598,8.561692 +L 3.4598,8.561692,2.9916,8.483764 +L 2.9916,8.483764,2.6705,8.240257 +L 2.6705,8.240257,2.5436,7.889612 +L 2.5436,7.889612,2.505,7.246749 +L 2.505,7.246749,2.505,1.558442 +L 2.505,1.558442,2.5238,1.003246 +L 2.5238,1.003246,2.5927,0.672079 +L 2.5927,0.672079,2.6898,0.525978 +L 2.6898,0.525978,2.8647,0.399347 +L 2.8647,0.399347,3.1471,0.28247 +L 3.1471,0.28247,3.4598,0.243507 +L 3.4598,0.243507,3.7704,0.243507 + +[J] 41 +L 1.0529,8.561692,1.0529,8.805199 +L 1.0529,8.805199,4.8224,8.805199 +L 4.8224,8.805199,4.8224,8.561692 +L 4.8224,8.561692,4.5103,8.561692 +L 4.5103,8.561692,4.0436,8.483764 +L 4.0436,8.483764,3.722,8.240257 +L 3.722,8.240257,3.6046,7.889612 +L 3.6046,7.889612,3.5659,7.246749 +L 3.5659,7.246749,3.5659,2.941559 +L 3.5659,2.941559,3.5075,2.045457 +L 3.5075,2.045457,3.3519,1.334413 +L 3.3519,1.334413,3.0502,0.749999 +L 3.0502,0.749999,2.6023,0.253246 +L 2.6023,0.253246,2.0077,-0.08766 +L 2.0077,-0.08766,1.3155,-0.20454 +L 1.3155,-0.20454,0.771,-0.12662 +L 0.771,-0.12662,0.3518,0.097397 +L 0.3518,0.097397,0.0892,0.428572 +L 0.0892,0.428572,0.0005,0.788963 +L 0.0005,0.788963,0.0402,1.071427 +L 0.0402,1.071427,0.1665,1.275971 +L 0.1665,1.275971,0.391,1.42208 +L 0.391,1.42208,0.664,1.470775 +L 0.664,1.470775,0.8582,1.441558 +L 0.8582,1.441558,1.0331,1.334413 +L 1.0331,1.334413,1.2288,1.090905 +L 1.2288,1.090905,1.4523,0.613637 +L 1.4523,0.613637,1.6282,0.350644 +L 1.6282,0.350644,1.8417,0.262985 +L 1.8417,0.262985,2.0077,0.311688 +L 2.0077,0.311688,2.1628,0.477267 +L 2.1628,0.477267,2.2797,0.769478 +L 2.2797,0.769478,2.3193,1.237014 +L 2.3193,1.237014,2.3193,7.246749 +L 2.3193,7.246749,2.3,7.801953 +L 2.3,7.801953,2.2311,8.123372 +L 2.2311,8.123372,2.1345,8.279221 +L 2.1345,8.279221,1.9586,8.405844 +L 1.9586,8.405844,1.6767,8.522728 +L 1.6767,8.522728,1.374,8.561692 +L 1.374,8.561692,1.0529,8.561692 + +[K] 75 +L 3.7499,4.879871,6.9932,1.655848 +L 6.9932,1.655848,7.7345,0.983768 +L 7.7345,0.983768,8.3578,0.564934 +L 8.3578,0.564934,8.9231,0.340905 +L 8.9231,0.340905,9.4874,0.243507 +L 9.4874,0.243507,9.4874,0 +L 9.4874,0,5.2992,0 +L 5.2992,0,5.2992,0.243507 +L 5.2992,0.243507,5.6208,0.272724 +L 5.6208,0.272724,5.8447,0.37013 +L 5.8447,0.37013,5.9711,0.496753 +L 5.9711,0.496753,6.0107,0.652601 +L 6.0107,0.652601,5.9904,0.798703 +L 5.9904,0.798703,5.9518,0.925326 +L 5.9518,0.925326,5.815,1.100644 +L 5.815,1.100644,5.5425,1.392855 +L 5.5425,1.392855,2.5033,4.392856 +L 2.5033,4.392856,2.5033,1.558442 +L 2.5033,1.558442,2.5231,1.003246 +L 2.5231,1.003246,2.5915,0.672079 +L 2.5915,0.672079,2.6886,0.525978 +L 2.6886,0.525978,2.8645,0.399347 +L 2.8645,0.399347,3.1469,0.28247 +L 3.1469,0.28247,3.4487,0.243507 +L 3.4487,0.243507,3.7499,0.243507 +L 3.7499,0.243507,3.7499,0 +L 3.7499,0,0.0002,0 +L 0.0002,0,0.0002,0.243507 +L 0.0002,0.243507,0.3128,0.243507 +L 0.3128,0.243507,0.7796,0.321427 +L 0.7796,0.321427,1.1011,0.555195 +L 1.1011,0.555195,1.2185,0.915587 +L 1.2185,0.915587,1.2567,1.558442 +L 1.2567,1.558442,1.2567,7.246749 +L 1.2567,7.246749,1.2369,7.801953 +L 1.2369,7.801953,1.1695,8.133119 +L 1.1695,8.133119,1.0714,8.279221 +L 1.0714,8.279221,0.9059,8.405844 +L 0.9059,8.405844,0.6141,8.522728 +L 0.6141,8.522728,0.3128,8.561692 +L 0.3128,8.561692,0.0002,8.561692 +L 0.0002,8.561692,0.0002,8.805199 +L 0.0002,8.805199,3.7499,8.805199 +L 3.7499,8.805199,3.7499,8.561692 +L 3.7499,8.561692,3.4487,8.561692 +L 3.4487,8.561692,3.1469,8.522728 +L 3.1469,8.522728,2.8645,8.415583 +L 2.8645,8.415583,2.6886,8.279221 +L 2.6886,8.279221,2.5816,8.103894 +L 2.5816,8.103894,2.5231,7.782467 +L 2.5231,7.782467,2.5033,7.246749 +L 2.5033,7.246749,2.5033,4.548704 +L 2.5033,4.548704,2.7857,4.821429 +L 2.7857,4.821429,3.3902,5.376625 +L 3.3902,5.376625,4.938,6.847401 +L 4.938,6.847401,5.7283,7.733764 +L 5.7283,7.733764,5.8537,7.977271 +L 5.8537,7.977271,5.9037,8.181822 +L 5.9037,8.181822,5.8641,8.327924 +L 5.8641,8.327924,5.767,8.444808 +L 5.767,8.444808,5.5812,8.532467 +L 5.5812,8.532467,5.2992,8.561692 +L 5.2992,8.561692,5.105,8.561692 +L 5.105,8.561692,5.105,8.805199 +L 5.105,8.805199,8.328,8.805199 +L 8.328,8.805199,8.328,8.561692 +L 8.328,8.561692,8.056,8.542206 +L 8.056,8.542206,7.8122,8.483764 +L 7.8122,8.483764,7.5492,8.376619 +L 7.5492,8.376619,7.237,8.211039 +L 7.237,8.211039,6.8679,7.938315 +L 6.8679,7.938315,6.4096,7.548706 +L 6.4096,7.548706,6.0107,7.14935 +L 6.0107,7.14935,5.0951,6.224024 +L 5.0951,6.224024,3.7499,4.879871 + +[L] 38 +L 7.3556,2.435066,7.5701,2.386363 +L 7.5701,2.386363,6.8195,0 +L 6.8195,0,0.0013,0 +L 0.0013,0,0.0013,0.243507 +L 0.0013,0.243507,0.3333,0.243507 +L 0.3333,0.243507,0.8099,0.331166 +L 0.8099,0.331166,1.1315,0.60389 +L 1.1315,0.60389,1.239,0.944804 +L 1.239,0.944804,1.2672,1.568181 +L 1.2672,1.568181,1.2672,7.246749 +L 1.2672,7.246749,1.2286,7.918829 +L 1.2286,7.918829,1.0918,8.279221 +L 1.0918,8.279221,0.7713,8.493503 +L 0.7713,8.493503,0.3333,8.561692 +L 0.3333,8.561692,0.0013,8.561692 +L 0.0013,8.561692,0.0013,8.805199 +L 0.0013,8.805199,3.9943,8.805199 +L 3.9943,8.805199,3.9943,8.561692 +L 3.9943,8.561692,3.3913,8.532467 +L 3.3913,8.532467,3.0113,8.435069 +L 3.0113,8.435069,2.768,8.279221 +L 2.768,8.279221,2.6224,8.084416 +L 2.6224,8.084416,2.5436,7.733764 +L 2.5436,7.733764,2.5138,7.090908 +L 2.5138,7.090908,2.5138,1.568181 +L 2.5138,1.568181,2.5436,1.110391 +L 2.5436,1.110391,2.6224,0.82792 +L 2.6224,0.82792,2.7195,0.701296 +L 2.7195,0.701296,2.8651,0.623376 +L 2.8651,0.623376,3.1961,0.574673 +L 3.1961,0.574673,3.8779,0.555195 +L 3.8779,0.555195,4.5205,0.555195 +L 4.5205,0.555195,5.3782,0.594151 +L 5.3782,0.594151,5.9425,0.711035 +L 5.9425,0.711035,6.3334,0.915587 +L 6.3334,0.915587,6.6827,1.237014 +L 6.6827,1.237014,7.0236,1.724021 +L 7.0236,1.724021,7.3556,2.435066 + +[M] 50 +L 5.2217,0,1.8124,7.402597 +L 1.8124,7.402597,1.8124,1.529225 +L 1.8124,1.529225,1.8615,0.866884 +L 1.8615,0.866884,1.9873,0.516231 +L 1.9873,0.516231,2.2994,0.311688 +L 2.2994,0.311688,2.7478,0.243507 +L 2.7478,0.243507,3.0595,0.243507 +L 3.0595,0.243507,3.0595,0 +L 3.0595,0,0.001,0 +L 0.001,0,0.001,0.243507 +L 0.001,0.243507,0.3126,0.243507 +L 0.3126,0.243507,0.7898,0.321427 +L 0.7898,0.321427,1.1014,0.574673 +L 1.1014,0.574673,1.2084,0.915587 +L 1.2084,0.915587,1.2476,1.529225 +L 1.2476,1.529225,1.2476,7.275974 +L 1.2476,7.275974,1.2084,7.782467 +L 1.2084,7.782467,1.1113,8.123372 +L 1.1113,8.123372,0.9845,8.298699 +L 0.9845,8.298699,0.7803,8.435069 +L 0.7803,8.435069,0.4588,8.532467 +L 0.4588,8.532467,0.001,8.561692 +L 0.001,8.561692,0.001,8.805199 +L 0.001,8.805199,2.4942,8.805199 +L 2.4942,8.805199,5.6894,1.918834 +L 5.6894,1.918834,8.8258,8.805199 +L 8.8258,8.805199,11.319,8.805199 +L 11.319,8.805199,11.319,8.561692 +L 11.319,8.561692,11.0167,8.561692 +L 11.0167,8.561692,10.5307,8.474025 +L 10.5307,8.474025,10.2185,8.220779 +L 10.2185,8.220779,10.111,7.879865 +L 10.111,7.879865,10.0724,7.275974 +L 10.0724,7.275974,10.0724,1.529225 +L 10.0724,1.529225,10.1214,0.866884 +L 10.1214,0.866884,10.2572,0.516231 +L 10.2572,0.516231,10.5688,0.311688 +L 10.5688,0.311688,11.0167,0.243507 +L 11.0167,0.243507,11.319,0.243507 +L 11.319,0.243507,11.319,0 +L 11.319,0,7.5782,0 +L 7.5782,0,7.5782,0.243507 +L 7.5782,0.243507,7.8903,0.243507 +L 7.8903,0.243507,8.3684,0.321427 +L 8.3684,0.321427,8.6796,0.574673 +L 8.6796,0.574673,8.7866,0.915587 +L 8.7866,0.915587,8.8258,1.529225 +L 8.8258,1.529225,8.8258,7.402597 +L 8.8258,7.402597,5.4363,0 +L 5.4363,0,5.2217,0 + +[N] 41 +L 0.0001,8.805199,2.3863,8.805199 +L 2.3863,8.805199,7.773,2.201297 +L 7.773,2.201297,7.773,7.275974 +L 7.773,7.275974,7.724,7.938315 +L 7.724,7.938315,7.5877,8.28896 +L 7.5877,8.28896,7.2756,8.493503 +L 7.2756,8.493503,6.8277,8.561692 +L 6.8277,8.561692,6.5254,8.561692 +L 6.5254,8.561692,6.5254,8.805199 +L 6.5254,8.805199,9.585,8.805199 +L 9.585,8.805199,9.585,8.561692 +L 9.585,8.561692,9.2723,8.561692 +L 9.2723,8.561692,8.7962,8.474025 +L 8.7962,8.474025,8.4835,8.220779 +L 8.4835,8.220779,8.3765,7.879865 +L 8.3765,7.879865,8.3384,7.275974 +L 8.3384,7.275974,8.3384,-0.1461 +L 8.3384,-0.1461,8.1045,-0.1461 +L 8.1045,-0.1461,2.308,6.944807 +L 2.308,6.944807,2.308,1.529225 +L 2.308,1.529225,2.3476,0.866884 +L 2.3476,0.866884,2.4839,0.516231 +L 2.4839,0.516231,2.7956,0.311688 +L 2.7956,0.311688,3.244,0.243507 +L 3.244,0.243507,3.5546,0.243507 +L 3.5546,0.243507,3.5546,0 +L 3.5546,0,0.4867,0 +L 0.4867,0,0.4867,0.243507 +L 0.4867,0.243507,0.7894,0.243507 +L 0.7894,0.243507,1.2755,0.321427 +L 1.2755,0.321427,1.5881,0.574673 +L 1.5881,0.574673,1.6951,0.915587 +L 1.6951,0.915587,1.7333,1.529225 +L 1.7333,1.529225,1.7333,7.646104 +L 1.7333,7.646104,1.3929,8.016235 +L 1.3929,8.016235,1.1496,8.240257 +L 1.1496,8.240257,0.9058,8.376619 +L 0.9058,8.376619,0.5749,8.503242 +L 0.5749,8.503242,0.3311,8.551953 +L 0.3311,8.551953,0.0001,8.561692 +L 0.0001,8.561692,0.0001,8.805199 + +[O] 32 +L 4.3941,8.999996,5.9915,8.678576 +L 5.9915,8.678576,7.3644,7.704547 +L 7.3644,7.704547,8.3098,6.24351 +L 8.3098,6.24351,8.6214,4.451298 +L 8.6214,4.451298,8.3098,2.620131 +L 8.3098,2.620131,7.355,1.12013 +L 7.355,1.12013,5.9622,0.126622 +L 5.9622,0.126622,4.2965,-0.20454 +L 4.2965,-0.20454,2.6208,0.126622 +L 2.6208,0.126622,1.2374,1.090905 +L 1.2374,1.090905,0.3134,2.571428 +L 0.3134,2.571428,0.0012,4.43182 +L 0.0012,4.43182,0.3615,6.340908 +L 0.3615,6.340908,1.4327,7.850648 +L 1.4327,7.850648,2.7863,8.717532 +L 2.7863,8.717532,4.3941,8.999996 +L 4.2771,8.532467,3.2054,8.308446 +L 3.2054,8.308446,2.377,7.655843 +L 2.377,7.655843,1.7052,6.311691 +L 1.7052,6.311691,1.4911,4.461037 +L 1.4911,4.461037,1.7156,2.55195 +L 1.7156,2.55195,2.4067,1.139608 +L 2.4067,1.139608,3.2347,0.477267 +L 3.2347,0.477267,4.2771,0.262985 +L 4.2771,0.262985,5.4063,0.496753 +L 5.4063,0.496753,6.3219,1.227268 +L 6.3219,1.227268,6.9368,2.474022 +L 6.9368,2.474022,7.1305,4.275972 +L 7.1305,4.275972,6.917,6.253249 +L 6.917,6.253249,6.2451,7.646104 +L 6.2451,7.646104,5.3974,8.308446 +L 5.3974,8.308446,4.2771,8.532467 + +[P] 53 +L 2.5035,4.120132,2.5035,1.558442 +L 2.5035,1.558442,2.5531,0.886362 +L 2.5531,0.886362,2.6893,0.525978 +L 2.6893,0.525978,2.991,0.311688 +L 2.991,0.311688,3.429,0.243507 +L 3.429,0.243507,3.7699,0.243507 +L 3.7699,0.243507,3.7699,0 +L 3.7699,0,0.0004,0 +L 0.0004,0,0.0004,0.243507 +L 0.0004,0.243507,0.3319,0.243507 +L 0.3319,0.243507,0.809,0.331166 +L 0.809,0.331166,1.1301,0.60389 +L 1.1301,0.60389,1.2282,0.944804 +L 1.2282,0.944804,1.2569,1.558442 +L 1.2569,1.558442,1.2569,7.246749 +L 1.2569,7.246749,1.2088,7.918829 +L 1.2088,7.918829,1.082,8.279221 +L 1.082,8.279221,0.7708,8.493503 +L 0.7708,8.493503,0.3319,8.561692 +L 0.3319,8.561692,0.0004,8.561692 +L 0.0004,8.561692,0.0004,8.805199 +L 0.0004,8.805199,3.2254,8.805199 +L 3.2254,8.805199,4.2768,8.74675 +L 4.2768,8.74675,5.0854,8.561692 +L 5.0854,8.561692,5.7181,8.230518 +L 5.7181,8.230518,6.2349,7.733764 +L 6.2349,7.733764,6.5857,7.110387 +L 6.5857,7.110387,6.7026,6.370125 +L 6.7026,6.370125,6.5267,5.396103 +L 6.5267,5.396103,5.9911,4.616878 +L 5.9911,4.616878,5.1335,4.110385 +L 5.1335,4.110385,3.984,3.944805 +L 3.984,3.944805,3.653,3.954545 +L 3.653,3.954545,3.2938,3.983762 +L 3.2938,3.983762,2.9128,4.042212 +L 2.9128,4.042212,2.5035,4.120132 +L 2.5035,4.490255,2.8261,4.43182 +L 2.8261,4.43182,3.1184,4.392856 +L 3.1184,4.392856,3.3612,4.373378 +L 3.3612,4.373378,3.5658,4.363631 +L 3.5658,4.363631,4.1995,4.490255 +L 4.1995,4.490255,4.7346,4.88961 +L 4.7346,4.88961,5.1052,5.483762 +L 5.1052,5.483762,5.2221,6.24351 +L 5.2221,6.24351,5.1632,6.788959 +L 5.1632,6.788959,4.9883,7.295452 +L 4.9883,7.295452,4.7059,7.724025 +L 4.7059,7.724025,4.3248,8.035713 +L 4.3248,8.035713,3.8685,8.220779 +L 3.8685,8.220779,3.3517,8.279221 +L 3.3517,8.279221,2.9712,8.249996 +L 2.9712,8.249996,2.5035,8.152597 +L 2.5035,8.152597,2.5035,4.490255 + +[Q] 47 +L 5.3858,-0.09739,6.078,-1.0909 +L 6.078,-1.0909,6.8182,-1.78247 +L 6.8182,-1.78247,7.6461,-2.20129 +L 7.6461,-2.20129,8.5712,-2.3961 +L 8.5712,-2.3961,8.5712,-2.60064 +L 8.5712,-2.60064,7.6461,-2.49351 +L 7.6461,-2.49351,6.6527,-2.24026 +L 6.6527,-2.24026,5.6583,-1.85064 +L 5.6583,-1.85064,4.7243,-1.33441 +L 4.7243,-1.33441,3.8766,-0.73052 +L 3.8766,-0.73052,3.1458,-0.09739 +L 3.1458,-0.09739,2.3084,0.29221 +L 2.3084,0.29221,1.6653,0.701296 +L 1.6653,0.701296,0.9647,1.402602 +L 0.9647,1.402602,0.438,2.25 +L 0.438,2.25,0.1071,3.253247 +L 0.1071,3.253247,0,4.422081 +L 0,4.422081,0.3216,6.224024 +L 0.3216,6.224024,1.2759,7.694807 +L 1.2759,7.694807,2.6875,8.678576 +L 2.6875,8.678576,4.3735,8.999996 +L 4.3735,8.999996,5.9908,8.678576 +L 5.9908,8.678576,7.3627,7.694807 +L 7.3627,7.694807,8.3081,6.214285 +L 8.3081,6.214285,8.6296,4.392856 +L 8.6296,4.392856,8.4052,2.873377 +L 8.4052,2.873377,7.7239,1.558442 +L 7.7239,1.558442,6.6909,0.535717 +L 6.6909,0.535717,5.3858,-0.09739 +L 4.2948,8.503242,3.2335,8.28896 +L 3.2335,8.28896,2.3961,7.655843 +L 2.3961,7.655843,1.7144,6.32143 +L 1.7144,6.32143,1.4894,4.422081 +L 1.4894,4.422081,1.7144,2.532472 +L 1.7144,2.532472,2.4055,1.129869 +L 2.4055,1.129869,3.2335,0.457789 +L 3.2335,0.457789,4.2948,0.243507 +L 4.2948,0.243507,5.3957,0.457789 +L 5.3957,0.457789,6.2628,1.129869 +L 6.2628,1.129869,6.9247,2.435066 +L 6.9247,2.435066,7.1388,4.237008 +L 7.1388,4.237008,7.0218,5.688314 +L 7.0218,5.688314,6.6626,6.886365 +L 6.6626,6.886365,6.233,7.60714 +L 6.233,7.60714,5.6781,8.113633 +L 5.6781,8.113633,5.0251,8.405844 +L 5.0251,8.405844,4.2948,8.503242 + +[R] 61 +L 8.7571,0,6.4091,0 +L 6.4091,0,3.4283,4.120132 +L 3.4283,4.120132,3.1271,4.110385 +L 3.1271,4.110385,2.8932,4.100646 +L 2.8932,4.100646,2.8055,4.100646 +L 2.8055,4.100646,2.7084,4.110385 +L 2.7084,4.110385,2.6113,4.110385 +L 2.6113,4.110385,2.5127,4.120132 +L 2.5127,4.120132,2.5127,1.558442 +L 2.5127,1.558442,2.5523,0.886362 +L 2.5523,0.886362,2.6881,0.525978 +L 2.6881,0.525978,3.0007,0.311688 +L 3.0007,0.311688,3.4283,0.243507 +L 3.4283,0.243507,3.7796,0.243507 +L 3.7796,0.243507,3.7796,0 +L 3.7796,0,-0.0003,0 +L -0.0003,0,-0.0003,0.243507 +L -0.0003,0.243507,0.3316,0.243507 +L 0.3316,0.243507,0.8083,0.331166 +L 0.8083,0.331166,1.1308,0.60389 +L 1.1308,0.60389,1.2374,0.944804 +L 1.2374,0.944804,1.2661,1.558442 +L 1.2661,1.558442,1.2661,7.246749 +L 1.2661,7.246749,1.228,7.918829 +L 1.228,7.918829,1.0912,8.279221 +L 1.0912,8.279221,0.7696,8.493503 +L 0.7696,8.493503,0.3316,8.561692 +L 0.3316,8.561692,-0.0003,8.561692 +L -0.0003,8.561692,-0.0003,8.805199 +L -0.0003,8.805199,3.2143,8.805199 +L 3.2143,8.805199,4.4326,8.756489 +L 4.4326,8.756489,5.2794,8.600648 +L 5.2794,8.600648,5.8933,8.308446 +L 5.8933,8.308446,6.4091,7.840909 +L 6.4091,7.840909,6.7599,7.246749 +L 6.7599,7.246749,6.8669,6.535712 +L 6.8669,6.535712,6.7405,5.775973 +L 6.7405,5.775973,6.3412,5.133118 +L 6.3412,5.133118,5.6693,4.616878 +L 5.6693,4.616878,4.7047,4.285711 +L 4.7047,4.285711,6.5161,1.762985 +L 6.5161,1.762985,7.1007,1.032471 +L 7.1007,1.032471,7.5883,0.60389 +L 7.5883,0.60389,8.1036,0.37013 +L 8.1036,0.37013,8.7571,0.243507 +L 8.7571,0.243507,8.7571,0 +L 2.5127,4.529219,2.6207,4.51948 +L 2.6207,4.51948,2.7282,4.51948 +L 2.7282,4.51948,2.8055,4.51948 +L 2.8055,4.51948,2.8734,4.51948 +L 2.8734,4.51948,3.9748,4.655842 +L 3.9748,4.655842,4.773,5.064937 +L 4.773,5.064937,5.2497,5.688314 +L 5.2497,5.688314,5.4161,6.457792 +L 5.4161,6.457792,5.2794,7.198054 +L 5.2794,7.198054,4.9004,7.792206 +L 4.9004,7.792206,4.2959,8.181822 +L 4.2959,8.181822,3.5264,8.308446 +L 3.5264,8.308446,3.0874,8.279221 +L 3.0874,8.279221,2.5127,8.181822 +L 2.5127,8.181822,2.5127,4.529219 + +[S] 74 +L 5.2691,8.999996,5.2691,5.961038 +L 5.2691,5.961038,5.0269,5.961038 +L 5.0269,5.961038,4.8604,6.749995 +L 4.8604,6.749995,4.6077,7.353894 +L 4.6077,7.353894,4.2465,7.821431 +L 4.2465,7.821431,3.75,8.181822 +L 3.75,8.181822,3.1852,8.405844 +L 3.1852,8.405844,2.5911,8.483764 +L 2.5911,8.483764,1.9772,8.386366 +L 1.9772,8.386366,1.4813,8.074677 +L 1.4813,8.074677,1.1503,7.636365 +L 1.1503,7.636365,1.0329,7.129865 +L 1.0329,7.129865,1.1003,6.749995 +L 1.1003,6.749995,1.3153,6.39935 +L 1.3153,6.39935,1.9971,5.834415 +L 1.9971,5.834415,3.2337,5.103893 +L 3.2337,5.103893,4.2663,4.51948 +L 4.2663,4.51948,4.9198,4.090907 +L 4.9198,4.090907,5.3187,3.701298 +L 5.3187,3.701298,5.61,3.253247 +L 5.61,3.253247,5.7958,2.756493 +L 5.7958,2.756493,5.8543,2.25 +L 5.8543,2.25,5.6596,1.314935 +L 5.6596,1.314935,5.0754,0.525978 +L 5.0754,0.525978,4.188,-0.01947 +L 4.188,-0.01947,3.0782,-0.20454 +L 3.0782,-0.20454,2.7076,-0.18506 +L 2.7076,-0.18506,2.3578,-0.1461 +L 2.3578,-0.1461,2.056,-0.06818 +L 2.056,-0.06818,1.5293,0.097397 +L 1.5293,0.097397,1.0136,0.243507 +L 1.0136,0.243507,0.7207,0.301949 +L 0.7207,0.301949,0.5756,0.272724 +L 0.5756,0.272724,0.4685,0.204543 +L 0.4685,0.204543,0.3898,0.048702 +L 0.3898,0.048702,0.3318,-0.20454 +L 0.3318,-0.20454,0.0875,-0.20454 +L 0.0875,-0.20454,0.0875,2.814935 +L 0.0875,2.814935,0.3318,2.814935 +L 0.3318,2.814935,0.5265,1.987015 +L 0.5265,1.987015,0.7797,1.402602 +L 0.7797,1.402602,1.1404,0.964282 +L 1.1404,0.964282,1.6562,0.613637 +L 1.6562,0.613637,2.2696,0.379869 +L 2.2696,0.379869,2.9419,0.301949 +L 2.9419,0.301949,3.6717,0.409094 +L 3.6717,0.409094,4.2277,0.730521 +L 4.2277,0.730521,4.578,1.19805 +L 4.578,1.19805,4.6944,1.743507 +L 4.6944,1.743507,4.6562,2.074674 +L 4.6562,2.074674,4.5195,2.405841 +L 4.5195,2.405841,4.2861,2.717529 +L 4.2861,2.717529,3.9646,3.019479 +L 3.9646,3.019479,3.4874,3.321428 +L 3.4874,3.321428,2.5817,3.847399 +L 2.5817,3.847399,1.618,4.412342 +L 1.618,4.412342,0.9749,4.860385 +L 0.9749,4.860385,0.5552,5.250002 +L 0.5552,5.250002,0.253,5.688314 +L 0.253,5.688314,0.0687,6.165582 +L 0.0687,6.165582,0.0008,6.681822 +L 0.0008,6.681822,0.1856,7.568184 +L 0.1856,7.568184,0.7306,8.318185 +L 0.7306,8.318185,1.5591,8.834417 +L 1.5591,8.834417,2.5817,8.999996 +L 2.5817,8.999996,3.3026,8.922084 +L 3.3026,8.922084,4.0716,8.65909 +L 4.0716,8.65909,4.3738,8.542206 +L 4.3738,8.542206,4.578,8.493503 +L 4.578,8.493503,4.734,8.522728 +L 4.734,8.522728,4.8604,8.600648 +L 4.8604,8.600648,4.9481,8.74675 +L 4.9481,8.74675,5.0269,8.999996 +L 5.0269,8.999996,5.2691,8.999996 + +[T] 34 +L 7.2962,8.805199,7.3938,6.740256 +L 7.3938,6.740256,7.1397,6.740256 +L 7.1397,6.740256,7.0624,7.207793 +L 7.0624,7.207793,6.9454,7.519481 +L 6.9454,7.519481,6.7116,7.840909 +L 6.7116,7.840909,6.4198,8.074677 +L 6.4198,8.074677,6.0298,8.211039 +L 6.0298,8.211039,5.5324,8.249996 +L 5.5324,8.249996,4.2962,8.249996 +L 4.2962,8.249996,4.2962,1.529225 +L 4.2962,1.529225,4.3348,0.866884 +L 4.3348,0.866884,4.4716,0.516231 +L 4.4716,0.516231,4.7832,0.311688 +L 4.7832,0.311688,5.2311,0.243507 +L 5.2311,0.243507,5.5324,0.243507 +L 5.5324,0.243507,5.5324,0 +L 5.5324,0,1.803,0 +L 1.803,0,1.803,0.243507 +L 1.803,0.243507,2.1136,0.243507 +L 2.1136,0.243507,2.5913,0.321427 +L 2.5913,0.321427,2.9034,0.574673 +L 2.9034,0.574673,3.0104,0.915587 +L 3.0104,0.915587,3.0496,1.529225 +L 3.0496,1.529225,3.0496,8.249996 +L 3.0496,8.249996,1.9883,8.249996 +L 1.9883,8.249996,1.4616,8.230518 +L 1.4616,8.230518,1.1108,8.162336 +L 1.1108,8.162336,0.7992,7.977271 +L 0.7992,7.977271,0.5361,7.685068 +L 0.5361,7.685068,0.3408,7.275974 +L 0.3408,7.275974,0.2541,6.740256 +L 0.2541,6.740256,0.0005,6.740256 +L 0.0005,6.740256,0.108,8.805199 +L 0.108,8.805199,7.2962,8.805199 + +[U] 56 +L 6.2737,8.561692,6.2737,8.805199 +L 6.2737,8.805199,9.3907,8.805199 +L 9.3907,8.805199,9.3907,8.561692 +L 9.3907,8.561692,9.0588,8.561692 +L 9.0588,8.561692,8.6014,8.454547 +L 8.6014,8.454547,8.2606,8.123372 +L 8.2606,8.123372,8.1634,7.792206 +L 8.1634,7.792206,8.1248,7.188314 +L 8.1248,7.188314,8.1248,3.623378 +L 8.1248,3.623378,8.0564,2.444805 +L 8.0564,2.444805,7.8607,1.568181 +L 7.8607,1.568181,7.4713,0.886362 +L 7.4713,0.886362,6.8282,0.311688 +L 6.8282,0.311688,5.9224,-0.07792 +L 5.9224,-0.07792,4.7348,-0.20454 +L 4.7348,-0.20454,3.4679,-0.07792 +L 3.4679,-0.07792,2.5528,0.29221 +L 2.5528,0.29221,1.9106,0.876623 +L 1.9106,0.876623,1.4915,1.636362 +L 1.4915,1.636362,1.3359,2.464283 +L 1.3359,2.464283,1.2873,3.808443 +L 1.2873,3.808443,1.2873,7.246749 +L 1.2873,7.246749,1.2289,7.918829 +L 1.2289,7.918829,1.0624,8.308446 +L 1.0624,8.308446,0.7706,8.503242 +L 0.7706,8.503242,0.3316,8.561692 +L 0.3316,8.561692,0.0006,8.561692 +L 0.0006,8.561692,0.0006,8.805199 +L 0.0006,8.805199,3.8088,8.805199 +L 3.8088,8.805199,3.8088,8.561692 +L 3.8088,8.561692,3.4679,8.561692 +L 3.4679,8.561692,3.0002,8.474025 +L 3.0002,8.474025,2.689,8.220779 +L 2.689,8.220779,2.5726,7.860387 +L 2.5726,7.860387,2.5339,7.246749 +L 2.5339,7.246749,2.5339,3.409088 +L 2.5339,3.409088,2.5528,2.853892 +L 2.5528,2.853892,2.6206,2.230514 +L 2.6206,2.230514,2.7574,1.646101 +L 2.7574,1.646101,2.9615,1.19805 +L 2.9615,1.19805,3.2638,0.866884 +L 3.2638,0.866884,3.673,0.594151 +L 3.673,0.594151,4.1898,0.409094 +L 4.1898,0.409094,4.8126,0.350644 +L 4.8126,0.350644,5.6306,0.44805 +L 5.6306,0.44805,6.3614,0.730521 +L 6.3614,0.730521,6.9362,1.159094 +L 6.9362,1.159094,7.286,1.694804 +L 7.286,1.694804,7.4817,2.483761 +L 7.4817,2.483761,7.5397,3.68182 +L 7.5397,3.68182,7.5397,7.246749 +L 7.5397,7.246749,7.4916,7.918829 +L 7.4916,7.918829,7.3548,8.279221 +L 7.3548,8.279221,7.0437,8.493503 +L 7.0437,8.493503,6.6047,8.561692 +L 6.6047,8.561692,6.2737,8.561692 + +[V] 35 +L 9.3225,8.805199,9.3225,8.561692 +L 9.3225,8.561692,8.9127,8.444808 +L 8.9127,8.444808,8.6105,8.259743 +L 8.6105,8.259743,8.2899,7.860387 +L 8.2899,7.860387,8.007,7.285713 +L 8.007,7.285713,4.9381,-0.20454 +L 4.9381,-0.20454,4.6953,-0.20454 +L 4.6953,-0.20454,1.3935,7.383119 +L 1.3935,7.383119,1.179,7.860387 +L 1.179,7.860387,1.0432,8.103894 +L 1.0432,8.103894,0.8579,8.279221 +L 0.8579,8.279221,0.6439,8.415583 +L 0.6439,8.415583,0.3609,8.512981 +L 0.3609,8.512981,0.0007,8.561692 +L 0.0007,8.561692,0.0007,8.805199 +L 0.0007,8.805199,3.5944,8.805199 +L 3.5944,8.805199,3.5944,8.561692 +L 3.5944,8.561692,3.0984,8.483764 +L 3.0984,8.483764,2.8061,8.357141 +L 2.8061,8.357141,2.6693,8.181822 +L 2.6693,8.181822,2.6203,7.967532 +L 2.6203,7.967532,2.6991,7.558445 +L 2.6991,7.558445,2.9225,6.954546 +L 2.9225,6.954546,5.1625,1.801949 +L 5.1625,1.801949,7.2376,6.896104 +L 7.2376,6.896104,7.4714,7.52922 +L 7.4714,7.52922,7.5398,7.938315 +L 7.5398,7.938315,7.5006,8.123372 +L 7.5006,8.123372,7.3545,8.298699 +L 7.3545,8.298699,7.1008,8.444808 +L 7.1008,8.444808,6.7208,8.542206 +L 6.7208,8.542206,6.6727,8.551953 +L 6.6727,8.551953,6.6138,8.561692 +L 6.6138,8.561692,6.6138,8.805199 +L 6.6138,8.805199,9.3225,8.805199 + +[W] 63 +L 12.2736,8.805199,12.2736,8.561692 +L 12.2736,8.561692,11.961,8.532467 +L 11.961,8.532467,11.7083,8.435069 +L 11.7083,8.435069,11.5037,8.259743 +L 11.5037,8.259743,11.2995,7.977271 +L 11.2995,7.977271,11.1336,7.597401 +L 11.1336,7.597401,10.8898,6.896104 +L 10.8898,6.896104,8.4352,-0.20454 +L 8.4352,-0.20454,8.1826,-0.20454 +L 8.1826,-0.20454,6.1759,5.425328 +L 6.1759,5.425328,4.1792,-0.20454 +L 4.1792,-0.20454,3.9453,-0.20454 +L 3.9453,-0.20454,1.3357,7.110387 +L 1.3357,7.110387,1.0914,7.762989 +L 1.0914,7.762989,0.9651,8.074677 +L 0.9651,8.074677,0.8095,8.28896 +L 0.8095,8.28896,0.6039,8.444808 +L 0.6039,8.444808,0.3413,8.532467 +L 0.3413,8.532467,0.0009,8.561692 +L 0.0009,8.561692,0.0009,8.805199 +L 0.0009,8.805199,3.2635,8.805199 +L 3.2635,8.805199,3.2635,8.561692 +L 3.2635,8.561692,3.108,8.561692 +L 3.108,8.561692,2.7958,8.522728 +L 2.7958,8.522728,2.5818,8.405844 +L 2.5818,8.405844,2.4455,8.230518 +L 2.4455,8.230518,2.3965,8.025974 +L 2.3965,8.025974,2.4648,7.655843 +L 2.4648,7.655843,2.6789,6.983763 +L 2.6789,6.983763,4.413,2.045457 +L 4.413,2.045457,5.8737,6.24351 +L 5.8737,6.24351,5.6215,6.983763 +L 5.6215,6.983763,5.4059,7.577923 +L 5.4059,7.577923,5.2603,7.879865 +L 5.2603,7.879865,5.1052,8.142858 +L 5.1052,8.142858,5.0071,8.259743 +L 5.0071,8.259743,4.8996,8.357141 +L 4.8996,8.357141,4.7346,8.454547 +L 4.7346,8.454547,4.5691,8.522728 +L 4.5691,8.522728,4.413,8.551953 +L 4.413,8.551953,4.1792,8.561692 +L 4.1792,8.561692,4.1792,8.805199 +L 4.1792,8.805199,7.6078,8.805199 +L 7.6078,8.805199,7.6078,8.561692 +L 7.6078,8.561692,7.3739,8.561692 +L 7.3739,8.561692,7.0623,8.522728 +L 7.0623,8.522728,6.8379,8.405844 +L 6.8379,8.405844,6.7214,8.220779 +L 6.7214,8.220779,6.6724,7.98701 +L 6.6724,7.98701,6.7506,7.52922 +L 6.7506,7.52922,6.9652,6.827923 +L 6.9652,6.827923,8.6498,2.045457 +L 8.6498,2.045457,10.325,6.896104 +L 10.325,6.896104,10.539,7.577923 +L 10.539,7.577923,10.6173,8.006496 +L 10.6173,8.006496,10.5886,8.152597 +L 10.5886,8.152597,10.5202,8.28896 +L 10.5202,8.28896,10.4132,8.396105 +L 10.4132,8.396105,10.2863,8.474025 +L 10.2863,8.474025,10.0039,8.542206 +L 10.0039,8.542206,9.6432,8.561692 +L 9.6432,8.561692,9.6432,8.805199 +L 9.6432,8.805199,12.2736,8.805199 + +[X] 74 +L 5.3275,4.879871,7.217,2.055196 +L 7.217,2.055196,7.899,1.100652 +L 7.899,1.100652,8.3866,0.584412 +L 8.3866,0.584412,8.8144,0.340913 +L 8.8144,0.340913,9.3508,0.243507 +L 9.3508,0.243507,9.3508,0 +L 9.3508,0,5.5711,0 +L 5.5711,0,5.5711,0.243507 +L 5.5711,0.243507,5.902,0.262985 +L 5.902,0.262985,6.126,0.321427 +L 6.126,0.321427,6.2531,0.389608 +L 6.2531,0.389608,6.3502,0.496753 +L 6.3502,0.496753,6.4186,0.613637 +L 6.4186,0.613637,6.4384,0.74026 +L 6.4384,0.74026,6.4282,0.886362 +L 6.4282,0.886362,6.3797,1.042202 +L 6.3797,1.042202,6.2727,1.237014 +L 6.2727,1.237014,6.0291,1.607145 +L 6.0291,1.607145,4.5286,3.866885 +L 4.5286,3.866885,2.6874,1.509739 +L 2.6874,1.509739,2.4536,1.188311 +L 2.4536,1.188311,2.3376,1.003246 +L 2.3376,1.003246,2.2881,0.876623 +L 2.2881,0.876623,2.2794,0.74026 +L 2.2794,0.74026,2.3178,0.545456 +L 2.3178,0.545456,2.4536,0.399347 +L 2.4536,0.399347,2.7073,0.29221 +L 2.7073,0.29221,3.1264,0.243507 +L 3.1264,0.243507,3.1264,0 +L 3.1264,0,0,0 +L 0,0,0,0.243507 +L 0,0.243507,0.3114,0.29221 +L 0.3114,0.29221,0.5738,0.379869 +L 0.5738,0.379869,0.9644,0.574673 +L 0.9644,0.574673,1.3341,0.82792 +L 1.3341,0.82792,1.7235,1.188311 +L 1.7235,1.188311,2.1712,1.704543 +L 2.1712,1.704543,4.2464,4.334414 +L 4.2464,4.334414,2.5123,6.866887 +L 2.5123,6.866887,1.8603,7.724025 +L 1.8603,7.724025,1.314,8.220779 +L 1.314,8.220779,0.7791,8.464286 +L 0.7791,8.464286,0.1747,8.561692 +L 0.1747,8.561692,0.1747,8.805199 +L 0.1747,8.805199,4.2464,8.805199 +L 4.2464,8.805199,4.2464,8.561692 +L 4.2464,8.561692,3.8084,8.512989 +L 3.8084,8.512989,3.5357,8.396105 +L 3.5357,8.396105,3.3893,8.240264 +L 3.3893,8.240264,3.3407,8.06493 +L 3.3407,8.06493,3.4188,7.762989 +L 3.4188,7.762989,3.6516,7.363641 +L 3.6516,7.363641,5.0065,5.3474 +L 5.0065,5.3474,6.5741,7.324677 +L 6.5741,7.324677,6.7892,7.616887 +L 6.7892,7.616887,6.9051,7.801945 +L 6.9051,7.801945,6.9547,7.938315 +L 6.9547,7.938315,6.9633,8.06493 +L 6.9633,8.06493,6.9445,8.2013 +L 6.9445,8.2013,6.886,8.308446 +L 6.886,8.308446,6.779,8.425322 +L 6.779,8.425322,6.6423,8.50325 +L 6.6423,8.50325,6.4084,8.542206 +L 6.4084,8.542206,6.0291,8.561692 +L 6.0291,8.561692,6.0291,8.805199 +L 6.0291,8.805199,9.1456,8.805199 +L 9.1456,8.805199,9.1456,8.561692 +L 9.1456,8.561692,8.8144,8.522728 +L 8.8144,8.522728,8.5421,8.4448 +L 8.5421,8.4448,8.2109,8.269482 +L 8.2109,8.269482,7.899,8.045452 +L 7.899,8.045452,7.5482,7.685061 +L 7.5482,7.685061,7.0713,7.110394 +L 7.0713,7.110394,5.3275,4.879871 + +[Y] 53 +L 6.2141,8.805199,9.282,8.805199 +L 9.282,8.805199,9.282,8.561692 +L 9.282,8.561692,9.1066,8.561692 +L 9.1066,8.561692,8.9027,8.522728 +L 8.9027,8.522728,8.6201,8.415583 +L 8.6201,8.415583,8.3079,8.230518 +L 8.3079,8.230518,8.0258,7.987018 +L 8.0258,7.987018,7.7332,7.616887 +L 7.7332,7.616887,7.3735,7.07143 +L 7.3735,7.07143,5.2501,3.730523 +L 5.2501,3.730523,5.2501,1.529225 +L 5.2501,1.529225,5.2987,0.866884 +L 5.2987,0.866884,5.4355,0.516231 +L 5.4355,0.516231,5.7464,0.311688 +L 5.7464,0.311688,6.2141,0.243507 +L 6.2141,0.243507,6.4967,0.243507 +L 6.4967,0.243507,6.4967,0 +L 6.4967,0,2.7569,0 +L 2.7569,0,2.7569,0.243507 +L 2.7569,0.243507,3.0679,0.243507 +L 3.0679,0.243507,3.5457,0.321427 +L 3.5457,0.321427,3.8566,0.574673 +L 3.8566,0.574673,3.9637,0.915579 +L 3.9637,0.915579,4.0035,1.529225 +L 4.0035,1.529225,4.0035,3.613639 +L 4.0035,3.613639,1.5874,7.295452 +L 1.5874,7.295452,1.2269,7.821431 +L 1.2269,7.821431,1.0027,8.103894 +L 1.0027,8.103894,0.7691,8.28896 +L 0.7691,8.28896,0.3698,8.493511 +L 0.3698,8.493511,0.2142,8.542206 +L 0.2142,8.542206,0.0002,8.561692 +L 0.0002,8.561692,0.0002,8.805199 +L 0.0002,8.805199,3.7595,8.805199 +L 3.7595,8.805199,3.7595,8.561692 +L 3.7595,8.561692,3.5646,8.561692 +L 3.5646,8.561692,3.273,8.522728 +L 3.273,8.522728,3.0096,8.415583 +L 3.0096,8.415583,2.8152,8.240264 +L 2.8152,8.240264,2.7468,7.987018 +L 2.7468,7.987018,2.8441,7.665583 +L 2.8441,7.665583,3.1464,7.14935 +L 3.1464,7.14935,4.9863,4.314936 +L 4.9863,4.314936,6.7108,7.022727 +L 6.7108,7.022727,7.0029,7.558437 +L 7.0029,7.558437,7.1002,7.928568 +L 7.1002,7.928568,7.0712,8.103894 +L 7.0712,8.103894,7.0029,8.259743 +L 7.0029,8.259743,6.8859,8.386366 +L 6.8859,8.386366,6.7403,8.483772 +L 6.7403,8.483772,6.5163,8.542206 +L 6.5163,8.542206,6.2141,8.561692 +L 6.2141,8.561692,6.2141,8.805199 + +[Z] 21 +L 7.4809,8.805199,1.6946,0.535709 +L 1.6946,0.535709,5.3088,0.535709 +L 5.3088,0.535709,6.0388,0.623376 +L 6.0388,0.623376,6.5851,0.896101 +L 6.5851,0.896101,7.0033,1.441558 +L 7.0033,1.441558,7.3739,2.366884 +L 7.3739,2.366884,7.5877,2.32792 +L 7.5877,2.32792,7.1685,0 +L 7.1685,0,0.0001,0 +L 0.0001,0,0.0001,0.243507 +L 0.0001,0.243507,5.6494,8.279221 +L 5.6494,8.279221,2.8344,8.279221 +L 2.8344,8.279221,2.2307,8.240264 +L 2.2307,8.240264,1.8216,8.12338 +L 1.8216,8.12338,1.5392,7.938315 +L 1.5392,7.938315,1.3351,7.685061 +L 1.3351,7.685061,1.1783,7.266235 +L 1.1783,7.266235,1.0329,6.603894 +L 1.0329,6.603894,0.7888,6.603894 +L 0.7888,6.603894,0.9741,8.805199 +L 0.9741,8.805199,7.4809,8.805199 + +[[] 8 +L 2.8541,-2.63961,-0.0001,-2.63961 +L -0.0001,-2.63961,-0.0001,9.000004 +L -0.0001,9.000004,2.8541,9.000004 +L 2.8541,9.000004,2.8541,8.493511 +L 2.8541,8.493511,0.9743,8.493511 +L 0.9743,8.493511,0.9743,-2.13311 +L 0.9743,-2.13311,2.8541,-2.13311 +L 2.8541,-2.13311,2.8541,-2.63961 + +[\] 4 +L 0.5161,9.233764,3.701,-0.18506 +L 3.701,-0.18506,3.185,-0.18506 +L 3.185,-0.18506,0.0001,9.233764 +L 0.0001,9.233764,0.5161,9.233764 + +[]] 8 +L 0,9.000004,2.8541,9.000004 +L 2.8541,9.000004,2.8541,-2.63961 +L 2.8541,-2.63961,0,-2.63961 +L 0,-2.63961,0,-2.13311 +L 0,-2.13311,1.88,-2.13311 +L 1.88,-2.13311,1.88,8.493511 +L 1.88,8.493511,0,8.493511 +L 0,8.493511,0,9.000004 + +[^] 7 +L 2.9908,8.980526,5.7466,4.334414 +L 5.7466,4.334414,5.1532,4.334414 +L 5.1532,4.334414,2.8837,8.133119 +L 2.8837,8.133119,0.6038,4.334414 +L 0.6038,4.334414,0.0004,4.334414 +L 0.0004,4.334414,2.7958,8.980526 +L 2.7958,8.980526,2.9908,8.980526 + +[_] 4 +L 6.8662,-2.87337,0,-2.87337 +L 0,-2.87337,0,-2.32792 +L 0,-2.32792,6.8662,-2.32792 +L 6.8662,-2.32792,6.8662,-2.87337 + +[`] 4 +L 0.0001,9.019482,1.4417,9.019482 +L 1.4417,9.019482,2.1336,6.77922 +L 2.1336,6.77922,1.9094,6.77922 +L 1.9094,6.77922,0.0001,9.019482 + +[a] 73 +L 3.3118,0.857145,2.5619,0.301949 +L 2.5619,0.301949,2.1625,0.038955 +L 2.1625,0.038955,1.7929,-0.07792 +L 1.7929,-0.07792,1.4131,-0.12662 +L 1.4131,-0.12662,0.8475,-0.01947 +L 0.8475,-0.01947,0.3994,0.301949 +L 0.3994,0.301949,0.0981,0.788963 +L 0.0981,0.788963,0,1.412333 +L 0,1.412333,0.0486,1.811688 +L 0.0486,1.811688,0.1953,2.162333 +L 0.1953,2.162333,0.556,2.590906 +L 0.556,2.590906,1.1208,2.990262 +L 1.1208,2.990262,1.9968,3.428566 +L 1.9968,3.428566,3.3118,3.944805 +L 3.3118,3.944805,3.3118,4.178566 +L 3.3118,4.178566,3.2347,4.928566 +L 3.2347,4.928566,3.0293,5.396103 +L 3.0293,5.396103,2.6788,5.639611 +L 2.6788,5.639611,2.2019,5.72727 +L 2.2019,5.72727,1.8414,5.668836 +L 1.8414,5.668836,1.5588,5.503248 +L 1.5588,5.503248,1.3735,5.26948 +L 1.3735,5.26948,1.3054,4.996755 +L 1.3054,4.996755,1.3249,4.626625 +L 1.3249,4.626625,1.2865,4.3539 +L 1.2865,4.3539,1.1696,4.159088 +L 1.1696,4.159088,0.9939,4.042212 +L 0.9939,4.042212,0.77,4.003248 +L 0.77,4.003248,0.556,4.042212 +L 0.556,4.042212,0.3806,4.168827 +L 0.3806,4.168827,0.2636,4.363639 +L 0.2636,4.363639,0.2242,4.626625 +L 0.2242,4.626625,0.3706,5.162335 +L 0.3706,5.162335,0.799,5.659089 +L 0.799,5.659089,1.4805,6.009741 +L 1.4805,6.009741,2.3964,6.126626 +L 2.3964,6.126626,3.1178,6.058444 +L 3.1178,6.058444,3.7012,5.853901 +L 3.7012,5.853901,4.0332,5.600647 +L 4.0332,5.600647,4.2673,5.230516 +L 4.2673,5.230516,4.3542,4.801943 +L 4.3542,4.801943,4.3832,4.081168 +L 4.3832,4.081168,4.3832,2.064935 +L 4.3832,2.064935,4.3832,1.383116 +L 4.3832,1.383116,4.4129,1.022724 +L 4.4129,1.022724,4.4516,0.866884 +L 4.4516,0.866884,4.52,0.769478 +L 4.52,0.769478,4.5982,0.720782 +L 4.5982,0.720782,4.6951,0.701296 +L 4.6951,0.701296,4.7922,0.711035 +L 4.7922,0.711035,4.8707,0.749999 +L 4.8707,0.749999,5.0749,0.90584 +L 5.0749,0.90584,5.3967,1.217536 +L 5.3967,1.217536,5.3967,0.857145 +L 5.3967,0.857145,4.6854,0.126622 +L 4.6854,0.126622,4.0136,-0.11688 +L 4.0136,-0.11688,3.721,-0.05844 +L 3.721,-0.05844,3.5072,0.107144 +L 3.5072,0.107144,3.3603,0.399347 +L 3.3603,0.399347,3.3118,0.857145 +L 3.3118,1.275971,3.3118,3.545458 +L 3.3118,3.545458,2.5031,3.214283 +L 2.5031,3.214283,2.0456,2.990262 +L 2.0456,2.990262,1.5974,2.698051 +L 1.5974,2.698051,1.3054,2.396102 +L 1.3054,2.396102,1.1396,2.064935 +L 1.1396,2.064935,1.0911,1.714282 +L 1.0911,1.714282,1.1594,1.28571 +L 1.1594,1.28571,1.3636,0.935065 +L 1.3636,0.935065,1.6658,0.711035 +L 1.6658,0.711035,2.0069,0.633115 +L 2.0069,0.633115,2.5817,0.788963 +L 2.5817,0.788963,3.3118,1.275971 + +[b] 44 +L 2.075,4.918827,2.9708,5.824676 +L 2.9708,5.824676,3.9352,6.126626 +L 3.9352,6.126626,4.7924,5.922074 +L 4.7924,5.922074,5.5326,5.337661 +L 5.5326,5.337661,6.0489,4.412334 +L 6.0489,4.412334,6.2143,3.204544 +L 6.2143,3.204544,5.9517,1.772724 +L 5.9517,1.772724,5.163,0.652593 +L 5.163,0.652593,4.2077,0.029224 +L 4.2077,0.029224,3.1561,-0.18506 +L 3.1561,-0.18506,2.6299,-0.13636 +L 2.6299,-0.13636,2.0938,0.009738 +L 2.0938,0.009738,1.5589,0.243507 +L 1.5589,0.243507,1.003,0.574673 +L 1.003,0.574673,1.003,6.730525 +L 1.003,6.730525,0.9938,7.548706 +L 0.9938,7.548706,0.9545,7.977271 +L 0.9545,7.977271,0.8957,8.172075 +L 0.8957,8.172075,0.7986,8.298699 +L 0.7986,8.298699,0.6817,8.357141 +L 0.6817,8.357141,0.5449,8.376627 +L 0.5449,8.376627,0.3408,8.357141 +L 0.3408,8.357141,0.0871,8.279221 +L 0.0871,8.279221,0.0002,8.50325 +L 0.0002,8.50325,1.7829,9.233764 +L 1.7829,9.233764,2.075,9.233764 +L 2.075,9.233764,2.075,4.918827 +L 2.075,4.509741,2.075,0.944804 +L 2.075,0.944804,2.4158,0.662332 +L 2.4158,0.662332,2.757,0.457789 +L 2.757,0.457789,3.1164,0.331166 +L 3.1164,0.331166,3.487,0.29221 +L 3.487,0.29221,4.0521,0.457789 +L 4.0521,0.457789,4.5882,0.944804 +L 4.5882,0.944804,4.9675,1.733768 +L 4.9675,1.733768,5.0946,2.834413 +L 5.0946,2.834413,4.9675,3.83766 +L 4.9675,3.83766,4.5882,4.587661 +L 4.5882,4.587661,4.042,5.045451 +L 4.042,5.045451,3.4288,5.201299 +L 3.4288,5.201299,3.078,5.152596 +L 3.078,5.152596,2.7371,5.025973 +L 2.7371,5.025973,2.4446,4.831168 +L 2.4446,4.831168,2.075,4.509741 + +[c] 41 +L 5.0068,2.259739,4.6562,1.217536 +L 4.6562,1.217536,4.0713,0.44805 +L 4.0713,0.44805,3.3311,-0.01947 +L 3.3311,-0.01947,2.5128,-0.18506 +L 2.5128,-0.18506,1.5685,0.029224 +L 1.5685,0.029224,0.75,0.672079 +L 0.75,0.672079,0.1851,1.665579 +L 0.1851,1.665579,-0.0004,2.970783 +L -0.0004,2.970783,0.2047,4.237016 +L 0.2047,4.237016,0.8282,5.250002 +L 0.8282,5.250002,1.7535,5.902596 +L 1.7535,5.902596,2.8346,6.126626 +L 2.8346,6.126626,3.6333,6.009741 +L 3.6333,6.009741,4.2755,5.659089 +L 4.2755,5.659089,4.6949,5.181821 +L 4.6949,5.181821,4.8403,4.694806 +L 4.8403,4.694806,4.8019,4.470777 +L 4.8019,4.470777,4.6847,4.29545 +L 4.6847,4.29545,4.4908,4.178566 +L 4.4908,4.178566,4.2368,4.13961 +L 4.2368,4.13961,3.8959,4.207791 +L 3.8959,4.207791,3.6621,4.392856 +L 3.6621,4.392856,3.565,4.587661 +L 3.565,4.587661,3.5167,4.909088 +L 3.5167,4.909088,3.4282,5.250002 +L 3.4282,5.250002,3.2531,5.493509 +L 3.2531,5.493509,2.9806,5.639611 +L 2.9806,5.639611,2.6196,5.688314 +L 2.6196,5.688314,2.0362,5.571429 +L 2.0362,5.571429,1.5781,5.211038 +L 1.5781,5.211038,1.1788,4.470777 +L 1.1788,4.470777,1.0517,3.525972 +L 1.0517,3.525972,1.1788,2.522725 +L 1.1788,2.522725,1.5685,1.646101 +L 1.5685,1.646101,2.1816,1.032463 +L 2.1816,1.032463,2.9806,0.82792 +L 2.9806,0.82792,3.584,0.935065 +L 3.584,0.935065,4.1301,1.266232 +L 4.1301,1.266232,4.4806,1.685065 +L 4.4806,1.685065,4.8212,2.347406 +L 4.8212,2.347406,5.0068,2.259739 + +[d] 56 +L 4.1787,0.672079,3.7507,0.28247 +L 3.7507,0.28247,3.331,0.019477 +L 3.331,0.019477,2.893,-0.13636 +L 2.893,-0.13636,2.4357,-0.18506 +L 2.4357,-0.18506,1.5201,0.019477 +L 1.5201,0.019477,0.731,0.633115 +L 0.731,0.633115,0.185,1.568181 +L 0.185,1.568181,0,2.727276 +L 0,2.727276,0.2051,3.954545 +L 0.2051,3.954545,0.8086,5.064937 +L 0.8086,5.064937,1.7242,5.86364 +L 1.7242,5.86364,2.8833,6.126626 +L 2.8833,6.126626,3.5938,6.000002 +L 3.5938,6.000002,4.1787,5.629872 +L 4.1787,5.629872,4.1787,6.720778 +L 4.1787,6.720778,4.1686,7.548706 +L 4.1686,7.548706,4.1299,7.977271 +L 4.1299,7.977271,4.0616,8.172075 +L 4.0616,8.172075,3.9746,8.298699 +L 3.9746,8.298699,3.8574,8.357141 +L 3.8574,8.357141,3.7207,8.376627 +L 3.7207,8.376627,3.5166,8.357141 +L 3.5166,8.357141,3.273,8.279221 +L 3.273,8.279221,3.1856,8.50325 +L 3.1856,8.50325,4.9576,9.233764 +L 4.9576,9.233764,5.2495,9.233764 +L 5.2495,9.233764,5.2495,2.357145 +L 5.2495,2.357145,5.2599,1.519478 +L 5.2599,1.519478,5.2985,1.081166 +L 5.2985,1.081166,5.357,0.886362 +L 5.357,0.886362,5.4551,0.759739 +L 5.4551,0.759739,5.5718,0.691557 +L 5.5718,0.691557,5.7075,0.672079 +L 5.7075,0.672079,5.9126,0.701296 +L 5.9126,0.701296,6.1656,0.779217 +L 6.1656,0.779217,6.2436,0.555195 +L 6.2436,0.555195,4.481,-0.18506 +L 4.481,-0.18506,4.1787,-0.18506 +L 4.1787,-0.18506,4.1787,0.672079 +L 4.1787,1.12013,4.1787,4.188313 +L 4.1787,4.188313,4.1002,4.607147 +L 4.1002,4.607147,3.9449,4.996755 +L 3.9449,4.996755,3.7207,5.308444 +L 3.7207,5.308444,3.4284,5.542205 +L 3.4284,5.542205,3.1075,5.678567 +L 3.1075,5.678567,2.8053,5.72727 +L 2.8053,5.72727,2.2603,5.600647 +L 2.2603,5.600647,1.7822,5.211038 +L 1.7822,5.211038,1.3345,4.383117 +L 1.3345,4.383117,1.1881,3.243508 +L 1.1881,3.243508,1.3345,2.084413 +L 1.3345,2.084413,1.7628,1.227275 +L 1.7628,1.227275,2.3673,0.711035 +L 2.3673,0.711035,3.0392,0.535709 +L 3.0392,0.535709,3.6139,0.681818 +L 3.6139,0.681818,4.1787,1.12013 + +[e] 37 +L 0.9152,3.711037,1.0718,2.522725 +L 1.0718,2.522725,1.5588,1.626623 +L 1.5588,1.626623,2.2698,1.061688 +L 2.2698,1.061688,3.0874,0.876623 +L 3.0874,0.876623,3.6334,0.954543 +L 3.6334,0.954543,4.1011,1.19805 +L 4.1011,1.19805,4.5004,1.636362 +L 4.5004,1.636362,4.8314,2.298703 +L 4.8314,2.298703,5.0261,2.17208 +L 5.0261,2.17208,4.763,1.314935 +L 4.763,1.314935,4.2369,0.545456 +L 4.2369,0.545456,3.4966,0 +L 3.4966,0,2.5909,-0.18506 +L 2.5909,-0.18506,1.598,0.029224 +L 1.598,0.029224,0.7597,0.652593 +L 0.7597,0.652593,0.1849,1.626623 +L 0.1849,1.626623,-0.0004,2.892856 +L -0.0004,2.892856,0.1948,4.256494 +L 0.1948,4.256494,0.7795,5.279219 +L 0.7795,5.279219,1.6654,5.912335 +L 1.6654,5.912335,2.7465,6.126626 +L 2.7465,6.126626,3.6532,5.961038 +L 3.6532,5.961038,4.384,5.474023 +L 4.384,5.474023,4.8701,4.694806 +L 4.8701,4.694806,5.0261,3.711037 +L 5.0261,3.711037,0.9152,3.711037 +L 0.9152,4.081168,3.672,4.081168 +L 3.672,4.081168,3.6235,4.568183 +L 3.6235,4.568183,3.5363,4.88961 +L 3.5363,4.88961,3.3311,5.211038 +L 3.3311,5.211038,3.0487,5.464284 +L 3.0487,5.464284,2.7277,5.620133 +L 2.7277,5.620133,2.3769,5.668836 +L 2.3769,5.668836,1.8705,5.561683 +L 1.8705,5.561683,1.4127,5.250002 +L 1.4127,5.250002,1.0817,4.743509 +L 1.0817,4.743509,0.9152,4.081168 + +[f] 53 +L 2.2209,5.48377,2.2209,1.568181 +L 2.2209,1.568181,2.269,0.896101 +L 2.269,0.896101,2.4057,0.516231 +L 2.4057,0.516231,2.6882,0.301949 +L 2.6882,0.301949,3.0479,0.233767 +L 3.0479,0.233767,3.584,0.233767 +L 3.584,0.233767,3.584,0 +L 3.584,0,0.0384,0 +L 0.0384,0,0.0384,0.233767 +L 0.0384,0.233767,0.3015,0.233767 +L 0.3015,0.233767,0.5448,0.262985 +L 0.5448,0.262985,0.7786,0.360391 +L 0.7786,0.360391,0.954,0.516231 +L 0.954,0.516231,1.071,0.711035 +L 1.071,0.711035,1.1294,1.042202 +L 1.1294,1.042202,1.1492,1.568181 +L 1.1492,1.568181,1.1492,5.48377 +L 1.1492,5.48377,0.0002,5.48377 +L 0.0002,5.48377,0.0002,5.951299 +L 0.0002,5.951299,1.1492,5.951299 +L 1.1492,5.951299,1.1492,6.340908 +L 1.1492,6.340908,1.2265,7.15909 +L 1.2265,7.15909,1.4406,7.840909 +L 1.4406,7.840909,1.8013,8.396105 +L 1.8013,8.396105,2.3076,8.834417 +L 2.3076,8.834417,2.9314,9.126627 +L 2.9314,9.126627,3.633,9.214286 +L 3.633,9.214286,4.2856,9.107149 +L 4.2856,9.107149,4.889,8.775975 +L 4.889,8.775975,5.1714,8.464286 +L 5.1714,8.464286,5.2596,8.12338 +L 5.2596,8.12338,5.2205,7.928568 +L 5.2205,7.928568,5.0932,7.75325 +L 5.0932,7.75325,4.9188,7.626626 +L 4.9188,7.626626,4.7335,7.577923 +L 4.7335,7.577923,4.5784,7.60714 +L 4.5784,7.60714,4.4119,7.685061 +L 4.4119,7.685061,4.2271,7.860387 +L 4.2271,7.860387,4.0121,8.152597 +L 4.0121,8.152597,3.7782,8.4448 +L 3.7782,8.4448,3.5641,8.629873 +L 3.5641,8.629873,3.3501,8.717532 +L 3.3501,8.717532,3.1162,8.746757 +L 3.1162,8.746757,2.8437,8.707786 +L 2.8437,8.707786,2.6099,8.590909 +L 2.6099,8.590909,2.4345,8.386366 +L 2.4345,8.386366,2.3175,8.094155 +L 2.3175,8.094155,2.2492,7.500003 +L 2.2492,7.500003,2.2209,6.370133 +L 2.2209,6.370133,2.2209,5.951299 +L 2.2209,5.951299,3.7594,5.951299 +L 3.7594,5.951299,3.7594,5.48377 +L 3.7594,5.48377,2.2209,5.48377 + +[g] 104 +L 1.6077,2.17208,1.1206,2.483769 +L 1.1206,2.483769,0.7698,2.912334 +L 0.7698,2.912334,0.5459,3.418827 +L 0.5459,3.418827,0.4775,3.964284 +L 0.4775,3.964284,0.643,4.792212 +L 0.643,4.792212,1.1395,5.48377 +L 1.1395,5.48377,1.8995,5.961038 +L 1.8995,5.961038,2.8449,6.126626 +L 2.8449,6.126626,3.6436,6.01948 +L 3.6436,6.01948,4.3253,5.707792 +L 4.3253,5.707792,5.5823,5.707792 +L 5.5823,5.707792,5.8058,5.698053 +L 5.8058,5.698053,5.9029,5.688314 +L 5.9029,5.688314,5.9415,5.668836 +L 5.9415,5.668836,5.9713,5.639611 +L 5.9713,5.639611,6,5.551951 +L 6,5.551951,6.0099,5.425328 +L 6.0099,5.425328,6,5.288958 +L 6,5.288958,5.9817,5.19156 +L 5.9817,5.19156,5.952,5.162335 +L 5.952,5.162335,5.9133,5.142857 +L 5.9133,5.142857,5.8058,5.123379 +L 5.8058,5.123379,5.5823,5.123379 +L 5.5823,5.123379,4.8119,5.123379 +L 4.8119,5.123379,5.0844,4.587661 +L 5.0844,4.587661,5.1731,3.925327 +L 5.1731,3.925327,5.017,3.155841 +L 5.017,3.155841,4.5394,2.503247 +L 4.5394,2.503247,3.7892,2.064935 +L 3.7892,2.064935,2.825,1.918826 +L 2.825,1.918826,2.3771,1.948051 +L 2.3771,1.948051,1.9292,2.045449 +L 1.9292,2.045449,1.6855,1.811688 +L 1.6855,1.811688,1.5403,1.616884 +L 1.5403,1.616884,1.4615,1.441558 +L 1.4615,1.441558,1.4422,1.295456 +L 1.4422,1.295456,1.4615,1.188311 +L 1.4615,1.188311,1.5487,1.081166 +L 1.5487,1.081166,1.7058,0.993507 +L 1.7058,0.993507,1.9679,0.935065 +L 1.9679,0.935065,2.2795,0.90584 +L 2.2795,0.90584,2.8736,0.886362 +L 2.8736,0.886362,3.9745,0.847406 +L 3.9745,0.847406,4.6077,0.798703 +L 4.6077,0.798703,5.1528,0.642854 +L 5.1528,0.642854,5.5719,0.350652 +L 5.5719,0.350652,5.8449,-0.05844 +L 5.8449,-0.05844,5.9316,-0.54545 +L 5.9316,-0.54545,5.7572,-1.25649 +L 5.7572,-1.25649,5.2415,-1.91882 +L 5.2415,-1.91882,4.0716,-2.62987 +L 4.0716,-2.62987,2.6011,-2.87337 +L 2.6011,-2.87337,1.4422,-2.72727 +L 1.4422,-2.72727,0.4874,-2.30844 +L 0.4874,-2.30844,0.1168,-1.97727 +L 0.1168,-1.97727,-0.0001,-1.62662 +L -0.0001,-1.62662,0.0098,-1.47078 +L 0.0098,-1.47078,0.0683,-1.31493 +L 0.0683,-1.31493,0.2337,-1.03246 +L 0.2337,-1.03246,0.5266,-0.65259 +L 0.5266,-0.65259,0.7114,-0.44805 +L 0.7114,-0.44805,1.189,0.048702 +L 1.189,0.048702,0.8972,0.243507 +L 0.8972,0.243507,0.7114,0.409094 +L 0.7114,0.409094,0.6044,0.584412 +L 0.6044,0.584412,0.5662,0.769478 +L 0.5662,0.769478,0.6143,1.022724 +L 0.6143,1.022724,0.75,1.305195 +L 0.75,1.305195,1.0622,1.675326 +L 1.0622,1.675326,1.6077,2.17208 +L 2.7369,5.814937,2.2989,5.717531 +L 2.2989,5.717531,1.9292,5.425328 +L 1.9292,5.425328,1.6855,4.938313 +L 1.6855,4.938313,1.6077,4.256494 +L 1.6077,4.256494,1.7142,3.340906 +L 1.7142,3.340906,2.0467,2.659087 +L 2.0467,2.659087,2.4356,2.33766 +L 2.4356,2.33766,2.9033,2.230522 +L 2.9033,2.230522,3.3512,2.32792 +L 3.3512,2.32792,3.7209,2.600653 +L 3.7209,2.600653,3.9547,3.077921 +L 3.9547,3.077921,4.0335,3.769479 +L 4.0335,3.769479,3.9265,4.685067 +L 3.9265,4.685067,3.5851,5.386364 +L 3.5851,5.386364,3.2046,5.707792 +L 3.2046,5.707792,2.7369,5.814937 +L 1.5403,0,1.2762,-0.32142 +L 1.2762,-0.32142,1.081,-0.61363 +L 1.081,-0.61363,0.9656,-0.88636 +L 0.9656,-0.88636,0.9254,-1.13961 +L 0.9254,-1.13961,1.0225,-1.43182 +L 1.0225,-1.43182,1.3064,-1.68506 +L 1.3064,-1.68506,2.0947,-1.98701 +L 2.0947,-1.98701,3.1758,-2.09416 +L 3.1758,-2.09416,4.1886,-1.98701 +L 4.1886,-1.98701,4.9001,-1.67532 +L 4.9001,-1.67532,5.3182,-1.25649 +L 5.3182,-1.25649,5.455,-0.7987 +L 5.455,-0.7987,5.3772,-0.50649 +L 5.3772,-0.50649,5.124,-0.32142 +L 5.124,-0.32142,4.6266,-0.20454 +L 4.6266,-0.20454,3.7892,-0.1461 +L 3.7892,-0.1461,2.4941,-0.08766 +L 2.4941,-0.08766,1.5403,0 + +[h] 67 +L 2.0755,9.233764,2.0755,4.879871 +L 2.0755,4.879871,2.7187,5.532466 +L 2.7187,5.532466,3.2156,5.902596 +L 3.2156,5.902596,3.6442,6.068183 +L 3.6442,6.068183,4.0619,6.126626 +L 4.0619,6.126626,4.5296,6.048698 +L 4.5296,6.048698,4.9294,5.844154 +L 4.9294,5.844154,5.25,5.48377 +L 5.25,5.48377,5.475,4.96753 +L 5.475,4.96753,5.5622,4.383117 +L 5.5622,4.383117,5.5909,3.448052 +L 5.5909,3.448052,5.5909,1.344159 +L 5.5909,1.344159,5.6206,0.866884 +L 5.6206,0.866884,5.689,0.574673 +L 5.689,0.574673,5.7762,0.428572 +L 5.7762,0.428572,5.9035,0.321427 +L 5.9035,0.321427,6.127,0.253246 +L 6.127,0.253246,6.4783,0.233767 +L 6.4783,0.233767,6.4783,0 +L 6.4783,0,3.556,0 +L 3.556,0,3.556,0.233767 +L 3.556,0.233767,3.6928,0.233767 +L 3.6928,0.233767,4.0431,0.262985 +L 4.0431,0.262985,4.267,0.360391 +L 4.267,0.360391,4.4028,0.516231 +L 4.4028,0.516231,4.5009,0.730521 +L 4.5009,0.730521,4.5098,0.935065 +L 4.5098,0.935065,4.5197,1.344159 +L 4.5197,1.344159,4.5197,3.448052 +L 4.5197,3.448052,4.4915,4.256494 +L 4.4915,4.256494,4.4127,4.724031 +L 4.4127,4.724031,4.2858,4.996755 +L 4.2858,4.996755,4.0921,5.181821 +L 4.0921,5.181821,3.8478,5.298697 +L 3.8478,5.298697,3.5659,5.337661 +L 3.5659,5.337661,3.2349,5.298697 +L 3.2349,5.298697,2.904,5.172074 +L 2.904,5.172074,2.5234,4.909088 +L 2.5234,4.909088,2.0755,4.490262 +L 2.0755,4.490262,2.0755,1.344159 +L 2.0755,1.344159,2.0954,0.847406 +L 2.0954,0.847406,2.1439,0.584412 +L 2.1439,0.584412,2.241,0.44805 +L 2.241,0.44805,2.3966,0.331166 +L 2.3966,0.331166,2.6503,0.262985 +L 2.6503,0.262985,3.0397,0.233767 +L 3.0397,0.233767,3.0397,0 +L 3.0397,0,0.0887,0 +L 0.0887,0,0.0887,0.233767 +L 0.0887,0.233767,0.4395,0.262985 +L 0.4395,0.262985,0.712,0.360391 +L 0.712,0.360391,0.8289,0.44805 +L 0.8289,0.44805,0.9161,0.603898 +L 0.9161,0.603898,0.9746,0.876623 +L 0.9746,0.876623,0.9949,1.344159 +L 0.9949,1.344159,0.9949,6.720778 +L 0.9949,6.720778,0.9845,7.548706 +L 0.9845,7.548706,0.9459,7.977271 +L 0.9459,7.977271,0.8879,8.172075 +L 0.8879,8.172075,0.7992,8.298699 +L 0.7992,8.298699,0.6823,8.357141 +L 0.6823,8.357141,0.5267,8.376627 +L 0.5267,8.376627,0.3518,8.357141 +L 0.3518,8.357141,0.0887,8.279221 +L 0.0887,8.279221,0.0005,8.50325 +L 0.0005,8.50325,1.7733,9.233764 +L 1.7733,9.233764,2.0755,9.233764 + +[i] 44 +L 1.5386,9.233764,1.7918,9.185061 +L 1.7918,9.185061,2.0053,9.03896 +L 2.0053,9.03896,2.1421,8.82467 +L 2.1421,8.82467,2.1911,8.571423 +L 2.1911,8.571423,2.1421,8.318185 +L 2.1421,8.318185,2.0053,8.103894 +L 2.0053,8.103894,1.7918,7.957793 +L 1.7918,7.957793,1.5386,7.90909 +L 1.5386,7.90909,1.2854,7.957793 +L 1.2854,7.957793,1.0709,8.103894 +L 1.0709,8.103894,0.9242,8.318185 +L 0.9242,8.318185,0.8757,8.571423 +L 0.8757,8.571423,0.9242,8.82467 +L 0.9242,8.82467,1.0709,9.03896 +L 1.0709,9.03896,1.2854,9.185061 +L 1.2854,9.185061,1.5386,9.233764 +L 2.0737,6.126626,2.0737,1.344159 +L 2.0737,1.344159,2.094,0.876623 +L 2.094,0.876623,2.1624,0.603898 +L 2.1624,0.603898,2.2595,0.438311 +L 2.2595,0.438311,2.3963,0.321427 +L 2.3963,0.321427,2.6197,0.253246 +L 2.6197,0.253246,2.9794,0.233767 +L 2.9794,0.233767,2.9794,0 +L 2.9794,0,0.0869,0 +L 0.0869,0,0.0869,0.233767 +L 0.0869,0.233767,0.4575,0.253246 +L 0.4575,0.253246,0.6715,0.321427 +L 0.6715,0.321427,0.8073,0.428572 +L 0.8073,0.428572,0.9158,0.594159 +L 0.9158,0.594159,0.9738,0.876623 +L 0.9738,0.876623,1.0025,1.344159 +L 1.0025,1.344159,1.0025,3.633117 +L 1.0025,3.633117,0.9832,4.43182 +L 0.9832,4.43182,0.944,4.88961 +L 0.944,4.88961,0.8856,5.064937 +L 0.8856,5.064937,0.7984,5.181821 +L 0.7984,5.181821,0.6819,5.240263 +L 0.6819,5.240263,0.5348,5.259741 +L 0.5348,5.259741,0.3306,5.230516 +L 0.3306,5.230516,0.0869,5.162335 +L 0.0869,5.162335,-0.0003,5.396103 +L -0.0003,5.396103,1.7918,6.126626 +L 1.7918,6.126626,2.0737,6.126626 + +[j] 53 +L 1.5105,9.233764,1.7726,9.185061 +L 1.7726,9.185061,1.9876,9.03896 +L 1.9876,9.03896,2.1333,8.82467 +L 2.1333,8.82467,2.1824,8.571423 +L 2.1824,8.571423,2.1333,8.318185 +L 2.1333,8.318185,1.9876,8.103894 +L 1.9876,8.103894,1.7726,7.957793 +L 1.7726,7.957793,1.5105,7.90909 +L 1.5105,7.90909,1.2563,7.957793 +L 1.2563,7.957793,1.0428,8.103894 +L 1.0428,8.103894,0.8966,8.318185 +L 0.8966,8.318185,0.8471,8.571423 +L 0.8471,8.571423,0.8966,8.82467 +L 0.8966,8.82467,1.0428,9.03896 +L 1.0428,9.03896,1.2563,9.185061 +L 1.2563,9.185061,1.5105,9.233764 +L 2.0748,6.126626,2.0748,0.136361 +L 2.0748,0.136361,1.9093,-1.18831 +L 1.9093,-1.18831,1.4218,-2.13311 +L 1.4218,-2.13311,0.6732,-2.68831 +L 0.6732,-2.68831,-0.2628,-2.87337 +L -0.2628,-2.87337,-0.7786,-2.81493 +L -0.7786,-2.81493,-1.1398,-2.65908 +L -1.1398,-2.65908,-1.3538,-2.43506 +L -1.3538,-2.43506,-1.4321,-2.21103 +L -1.4321,-2.21103,-1.3925,-2.00649 +L -1.3925,-2.00649,-1.2656,-1.82142 +L -1.2656,-1.82142,-1.1001,-1.70454 +L -1.1001,-1.70454,-0.896,-1.66558 +L -0.896,-1.66558,-0.7206,-1.68506 +L -0.7206,-1.68506,-0.5551,-1.7435 +L -0.5551,-1.7435,-0.3896,-1.85065 +L -0.3896,-1.85065,-0.126,-2.07467 +L -0.126,-2.07467,0.1658,-2.28896 +L 0.1658,-2.28896,0.3997,-2.35714 +L 0.3997,-2.35714,0.5557,-2.32792 +L 0.5557,-2.32792,0.7113,-2.24026 +L 0.7113,-2.24026,0.8386,-2.07467 +L 0.8386,-2.07467,0.9253,-1.83116 +L 0.9253,-1.83116,0.9838,-1.38311 +L 0.9838,-1.38311,1.0041,-0.61363 +L 1.0041,-0.61363,1.0041,3.623378 +L 1.0041,3.623378,0.9838,4.43182 +L 0.9838,4.43182,0.9452,4.879871 +L 0.9452,4.879871,0.8867,5.064937 +L 0.8867,5.064937,0.7985,5.181821 +L 0.7985,5.181821,0.6816,5.240263 +L 0.6816,5.240263,0.5364,5.259741 +L 0.5364,5.259741,0.3323,5.230516 +L 0.3323,5.230516,0.088,5.162335 +L 0.088,5.162335,0.0003,5.396103 +L 0.0003,5.396103,1.7924,6.126626 +L 1.7924,6.126626,2.0748,6.126626 + +[k] 63 +L 2.0651,9.233764,2.0651,3.311689 +L 2.0651,3.311689,3.5842,4.694806 +L 3.5842,4.694806,3.9637,5.05519 +L 3.9637,5.05519,4.1391,5.250002 +L 4.1391,5.250002,4.1777,5.327922 +L 4.1777,5.327922,4.1877,5.405842 +L 4.1877,5.405842,4.1594,5.532466 +L 4.1594,5.532466,4.0806,5.629872 +L 4.0806,5.629872,3.9449,5.707792 +L 3.9449,5.707792,3.7298,5.737017 +L 3.7298,5.737017,3.7298,5.951299 +L 3.7298,5.951299,6.3117,5.951299 +L 6.3117,5.951299,6.3117,5.737017 +L 6.3117,5.737017,5.8247,5.688314 +L 5.8247,5.688314,5.4253,5.581169 +L 5.4253,5.581169,5.0547,5.366886 +L 5.0547,5.366886,4.6554,5.045451 +L 4.6554,5.045451,3.1264,3.633117 +L 3.1264,3.633117,4.6554,1.704543 +L 4.6554,1.704543,5.1816,1.051949 +L 5.1816,1.051949,5.5125,0.691557 +L 5.5125,0.691557,5.8049,0.44805 +L 5.8049,0.44805,6.0585,0.301949 +L 6.0585,0.301949,6.2726,0.253246 +L 6.2726,0.253246,6.6135,0.233767 +L 6.6135,0.233767,6.6135,0 +L 6.6135,0,3.7298,0 +L 3.7298,0,3.7298,0.233767 +L 3.7298,0.233767,3.935,0.253246 +L 3.935,0.253246,4.0623,0.311688 +L 4.0623,0.311688,4.1297,0.389608 +L 4.1297,0.389608,4.149,0.496753 +L 4.149,0.496753,4.091,0.691557 +L 4.091,0.691557,3.8953,0.983768 +L 3.8953,0.983768,2.0651,3.311689 +L 2.0651,3.311689,2.0651,1.334413 +L 2.0651,1.334413,2.0839,0.857145 +L 2.0839,0.857145,2.1523,0.574673 +L 2.1523,0.574673,2.2494,0.418833 +L 2.2494,0.418833,2.3767,0.321427 +L 2.3767,0.321427,2.62,0.253246 +L 2.62,0.253246,3.0292,0.233767 +L 3.0292,0.233767,3.0292,0 +L 3.0292,0,-0.0001,0 +L -0.0001,0,-0.0001,0.233767 +L -0.0001,0.233767,0.3993,0.262985 +L 0.3993,0.262985,0.6817,0.340913 +L 0.6817,0.340913,0.8086,0.438311 +L 0.8086,0.438311,0.8963,0.564934 +L 0.8963,0.564934,0.9646,0.857145 +L 0.9646,0.857145,0.9929,1.305195 +L 0.9929,1.305195,0.9929,6.720778 +L 0.9929,6.720778,0.974,7.548706 +L 0.974,7.548706,0.9443,7.977271 +L 0.9443,7.977271,0.8858,8.172075 +L 0.8858,8.172075,0.7986,8.298699 +L 0.7986,8.298699,0.6718,8.366888 +L 0.6718,8.366888,0.5256,8.386366 +L 0.5256,8.386366,0.3507,8.357141 +L 0.3507,8.357141,0.1169,8.279221 +L 0.1169,8.279221,-0.0001,8.50325 +L -0.0001,8.50325,1.7732,9.233764 +L 1.7732,9.233764,2.0651,9.233764 + +[l] 28 +L 2.0652,9.233764,2.0652,1.344159 +L 2.0652,1.344159,2.0835,0.876623 +L 2.0835,0.876623,2.142,0.603898 +L 2.142,0.603898,2.25,0.44805 +L 2.25,0.44805,2.3957,0.331166 +L 2.3957,0.331166,2.6295,0.253246 +L 2.6295,0.253246,3.019,0.233767 +L 3.019,0.233767,3.019,0 +L 3.019,0,0.1066,0 +L 0.1066,0,0.1066,0.233767 +L 0.1066,0.233767,0.448,0.253246 +L 0.448,0.253246,0.6615,0.321427 +L 0.6615,0.321427,0.7983,0.428572 +L 0.7983,0.428572,0.8954,0.594159 +L 0.8954,0.594159,0.9638,0.876623 +L 0.9638,0.876623,0.9841,1.344159 +L 0.9841,1.344159,0.9841,6.740264 +L 0.9841,6.740264,0.9737,7.558437 +L 0.9737,7.558437,0.935,7.977271 +L 0.935,7.977271,0.8766,8.172075 +L 0.8766,8.172075,0.7889,8.298699 +L 0.7889,8.298699,0.6819,8.357141 +L 0.6819,8.357141,0.5357,8.376627 +L 0.5357,8.376627,0.3405,8.357141 +L 0.3405,8.357141,0.1066,8.279221 +L 0.1066,8.279221,-0.0004,8.50325 +L -0.0004,8.50325,1.7724,9.233764 +L 1.7724,9.233764,2.0652,9.233764 + +[m] 102 +L 2.0748,4.860393,2.5915,5.366886 +L 2.5915,5.366886,2.8437,5.600647 +L 2.8437,5.600647,3.146,5.824676 +L 3.146,5.824676,3.4675,5.990263 +L 3.4675,5.990263,3.8084,6.087662 +L 3.8084,6.087662,4.1404,6.126626 +L 4.1404,6.126626,4.6561,6.038958 +L 4.6561,6.038958,5.1041,5.795451 +L 5.1041,5.795451,5.435,5.396103 +L 5.435,5.396103,5.6392,4.860393 +L 5.6392,4.860393,6.2535,5.503248 +L 6.2535,5.503248,6.7703,5.883118 +L 6.7703,5.883118,7.237,6.058444 +L 7.237,6.058444,7.7142,6.126626 +L 7.7142,6.126626,8.1621,6.058444 +L 8.1621,6.058444,8.552,5.883118 +L 8.552,5.883118,8.8835,5.561683 +L 8.8835,5.561683,9.1362,5.084415 +L 9.1362,5.084415,9.2432,4.5974 +L 9.2432,4.5974,9.2828,3.905841 +L 9.2828,3.905841,9.2828,1.344159 +L 9.2828,1.344159,9.3017,0.876623 +L 9.3017,0.876623,9.3606,0.574673 +L 9.3606,0.574673,9.4587,0.44805 +L 9.4587,0.44805,9.6039,0.331166 +L 9.6039,0.331166,9.8378,0.262985 +L 9.8378,0.262985,10.1786,0.233767 +L 10.1786,0.233767,10.1786,0 +L 10.1786,0,7.237,0 +L 7.237,0,7.237,0.233767 +L 7.237,0.233767,7.3634,0.233767 +L 7.3634,0.233767,7.7043,0.272724 +L 7.7043,0.272724,7.958,0.379869 +L 7.958,0.379869,8.0937,0.516231 +L 8.0937,0.516231,8.172,0.711035 +L 8.172,0.711035,8.1918,0.925326 +L 8.1918,0.925326,8.2017,1.344159 +L 8.2017,1.344159,8.2017,3.905841 +L 8.2017,3.905841,8.1621,4.51948 +L 8.1621,4.51948,8.0263,4.928566 +L 8.0263,4.928566,7.6944,5.240263 +L 7.6944,5.240263,7.2177,5.3474 +L 7.2177,5.3474,6.8674,5.298697 +L 6.8674,5.298697,6.526,5.172074 +L 6.526,5.172074,6.1366,4.928566 +L 6.1366,4.928566,5.6892,4.529219 +L 5.6892,4.529219,5.6689,4.461037 +L 5.6689,4.461037,5.6892,4.178566 +L 5.6892,4.178566,5.6892,1.344159 +L 5.6892,1.344159,5.6976,0.847406 +L 5.6976,0.847406,5.7566,0.584412 +L 5.7566,0.584412,5.8542,0.44805 +L 5.8542,0.44805,6.0098,0.331166 +L 6.0098,0.331166,6.2639,0.262985 +L 6.2639,0.262985,6.6529,0.233767 +L 6.6529,0.233767,6.6529,0 +L 6.6529,0,3.6424,0 +L 3.6424,0,3.6424,0.233767 +L 3.6424,0.233767,4.0616,0.262985 +L 4.0616,0.262985,4.3242,0.350652 +L 4.3242,0.350652,4.4812,0.496753 +L 4.4812,0.496753,4.5784,0.701296 +L 4.5784,0.701296,4.6066,0.915579 +L 4.6066,0.915579,4.617,1.344159 +L 4.617,1.344159,4.617,3.905841 +L 4.617,3.905841,4.558,4.529219 +L 4.558,4.529219,4.4025,4.948052 +L 4.4025,4.948052,4.0517,5.259741 +L 4.0517,5.259741,3.6043,5.366886 +L 3.6043,5.366886,3.253,5.318183 +L 3.253,5.318183,2.9022,5.172074 +L 2.9022,5.172074,2.426,4.870132 +L 2.426,4.870132,2.0748,4.529219 +L 2.0748,4.529219,2.0748,1.344159 +L 2.0748,1.344159,2.0946,0.857145 +L 2.0946,0.857145,2.1535,0.584412 +L 2.1535,0.584412,2.2606,0.428572 +L 2.2606,0.428572,2.3958,0.321427 +L 2.3958,0.321427,2.6396,0.253246 +L 2.6396,0.253246,3.0389,0.233767 +L 3.0389,0.233767,3.0389,0 +L 3.0389,0,0.0968,0 +L 0.0968,0,0.0968,0.233767 +L 0.0968,0.233767,0.4476,0.253246 +L 0.4476,0.253246,0.6721,0.321427 +L 0.6721,0.321427,0.8182,0.438311 +L 0.8182,0.438311,0.9154,0.603898 +L 0.9154,0.603898,0.9837,0.886362 +L 0.9837,0.886362,1.0036,1.344159 +L 1.0036,1.344159,1.0036,3.613639 +L 1.0036,3.613639,0.9837,4.422074 +L 0.9837,4.422074,0.9456,4.879871 +L 0.9456,4.879871,0.8866,5.064937 +L 0.8866,5.064937,0.7984,5.181821 +L 0.7984,5.181821,0.6815,5.240263 +L 0.6815,5.240263,0.5358,5.259741 +L 0.5358,5.259741,0.3411,5.230516 +L 0.3411,5.230516,0.0968,5.162335 +L 0.0968,5.162335,0.0002,5.396103 +L 0.0002,5.396103,1.7923,6.126626 +L 1.7923,6.126626,2.0748,6.126626 +L 2.0748,6.126626,2.0748,4.860393 + +[n] 60 +L 2.0759,4.860393,3.0886,5.80519 +L 3.0886,5.80519,4.0627,6.126626 +L 4.0627,6.126626,4.52,6.058444 +L 4.52,6.058444,4.9006,5.883118 +L 4.9006,5.883118,5.2216,5.551951 +L 5.2216,5.551951,5.4654,5.074676 +L 5.4654,5.074676,5.5724,4.587661 +L 5.5724,4.587661,5.6011,3.886363 +L 5.6011,3.886363,5.6011,1.344159 +L 5.6011,1.344159,5.6309,0.866884 +L 5.6309,0.866884,5.6993,0.574673 +L 5.6993,0.574673,5.7865,0.438311 +L 5.7865,0.438311,5.9232,0.321427 +L 5.9232,0.321427,6.1472,0.253246 +L 6.1472,0.253246,6.5079,0.233767 +L 6.5079,0.233767,6.5079,0 +L 6.5079,0,3.5757,0 +L 3.5757,0,3.5757,0.233767 +L 3.5757,0.233767,3.6931,0.233767 +L 3.6931,0.233767,4.0434,0.262985 +L 4.0434,0.262985,4.2773,0.360391 +L 4.2773,0.360391,4.413,0.516231 +L 4.413,0.516231,4.5111,0.730521 +L 4.5111,0.730521,4.5299,0.935065 +L 4.5299,0.935065,4.5299,1.344159 +L 4.5299,1.344159,4.5299,3.779218 +L 4.5299,3.779218,4.4814,4.480523 +L 4.4814,4.480523,4.3258,4.957791 +L 4.3258,4.957791,4.034,5.230516 +L 4.034,5.230516,3.6143,5.327922 +L 3.6143,5.327922,2.8354,5.11364 +L 2.8354,5.11364,2.0759,4.480523 +L 2.0759,4.480523,2.0759,1.344159 +L 2.0759,1.344159,2.0853,0.857145 +L 2.0853,0.857145,2.1443,0.594159 +L 2.1443,0.594159,2.2513,0.438311 +L 2.2513,0.438311,2.3974,0.321427 +L 2.3974,0.321427,2.6303,0.253246 +L 2.6303,0.253246,3.0396,0.233767 +L 3.0396,0.233767,3.0396,0 +L 3.0396,0,0.0985,0 +L 0.0985,0,0.0985,0.233767 +L 0.0985,0.233767,0.2258,0.233767 +L 0.2258,0.233767,0.6048,0.29221 +L 0.6048,0.29221,0.8387,0.467536 +L 0.8387,0.467536,0.966,0.798703 +L 0.966,0.798703,1.0047,1.344159 +L 1.0047,1.344159,1.0047,3.555197 +L 1.0047,3.555197,0.9844,4.412334 +L 0.9844,4.412334,0.9556,4.860393 +L 0.9556,4.860393,0.8873,5.05519 +L 0.8873,5.05519,0.8006,5.172074 +L 0.8006,5.172074,0.6831,5.240263 +L 0.6831,5.240263,0.5365,5.259741 +L 0.5365,5.259741,0.3328,5.230516 +L 0.3328,5.230516,0.0985,5.162335 +L 0.0985,5.162335,0.0004,5.396103 +L 0.0004,5.396103,1.793,6.126626 +L 1.793,6.126626,2.0759,6.126626 +L 2.0759,6.126626,2.0759,4.860393 + +[o] 38 +L 2.8742,6.126626,4.0911,5.86364 +L 4.0911,5.86364,5.0459,5.094154 +L 5.0459,5.094154,5.5621,4.159088 +L 5.5621,4.159088,5.738,3.08766 +L 5.738,3.08766,5.6399,2.279217 +L 5.6399,2.279217,5.357,1.470783 +L 5.357,1.470783,4.8997,0.749999 +L 4.8997,0.749999,4.3056,0.233767 +L 4.3056,0.233767,3.5941,-0.07792 +L 3.5941,-0.07792,2.8054,-0.18506 +L 2.8054,-0.18506,1.5979,0.087666 +L 1.5979,0.087666,0.6719,0.886362 +L 0.6719,0.886362,0.1655,1.850652 +L 0.1655,1.850652,0,2.912334 +L 0,2.912334,0.0971,3.730523 +L 0.0971,3.730523,0.4093,4.538958 +L 0.4093,4.538958,0.877,5.240263 +L 0.877,5.240263,1.4706,5.737017 +L 1.4706,5.737017,2.1523,6.029219 +L 2.1523,6.029219,2.8742,6.126626 +L 2.679,5.698053,2.3277,5.64935 +L 2.3277,5.64935,1.9868,5.493509 +L 1.9868,5.493509,1.6663,5.211038 +L 1.6663,5.211038,1.422,4.782465 +L 1.422,4.782465,1.2565,4.188313 +L 1.2565,4.188313,1.208,3.457791 +L 1.208,3.457791,1.3348,2.25 +L 1.3348,2.25,1.7242,1.217536 +L 1.7242,1.217536,2.3188,0.516231 +L 2.3188,0.516231,3.0878,0.28247 +L 3.0878,0.28247,3.6625,0.409094 +L 3.6625,0.409094,4.1208,0.798703 +L 4.1208,0.798703,4.4315,1.5 +L 4.4315,1.5,4.5301,2.581167 +L 4.5301,2.581167,4.3641,4.003248 +L 4.3641,4.003248,3.8478,5.074676 +L 3.8478,5.074676,3.3216,5.542205 +L 3.3216,5.542205,2.679,5.698053 + +[p] 65 +L -0.0003,5.357147,1.8309,6.097401 +L 1.8309,6.097401,2.0747,6.097401 +L 2.0747,6.097401,2.0747,4.704545 +L 2.0747,4.704545,2.533,5.376625 +L 2.533,5.376625,2.9997,5.80519 +L 2.9997,5.80519,3.4774,6.038958 +L 3.4774,6.038958,3.9733,6.126626 +L 3.9733,6.126626,4.8017,5.951299 +L 4.8017,5.951299,5.4736,5.425328 +L 5.4736,5.425328,6.0186,4.43182 +L 6.0186,4.43182,6.2044,3.185066 +L 6.2044,3.185066,5.98,1.782464 +L 5.98,1.782464,5.318,0.642854 +L 5.318,0.642854,4.4995,0.029224 +L 4.4995,0.029224,3.4868,-0.18506 +L 3.4868,-0.18506,3.0394,-0.1461 +L 3.0394,-0.1461,2.6583,-0.0487 +L 2.6583,-0.0487,2.3858,0.097405 +L 2.3858,0.097405,2.0747,0.340913 +L 2.0747,0.340913,2.0747,-1.47078 +L 2.0747,-1.47078,2.094,-1.96753 +L 2.094,-1.96753,2.152,-2.24026 +L 2.152,-2.24026,2.2501,-2.3961 +L 2.2501,-2.3961,2.4057,-2.50324 +L 2.4057,-2.50324,2.6687,-2.58116 +L 2.6687,-2.58116,3.0775,-2.60065 +L 3.0775,-2.60065,3.0775,-2.84416 +L 3.0775,-2.84416,-0.039,-2.84416 +L -0.039,-2.84416,-0.039,-2.60065 +L -0.039,-2.60065,0.1265,-2.60065 +L 0.1265,-2.60065,0.4575,-2.57143 +L 0.4575,-2.57143,0.7399,-2.46428 +L 0.7399,-2.46428,0.8474,-2.37662 +L 0.8474,-2.37662,0.9252,-2.24026 +L 0.9252,-2.24026,0.9842,-1.95779 +L 0.9842,-1.95779,0.9926,-1.43182 +L 0.9926,-1.43182,0.9926,4.198052 +L 0.9926,4.198052,0.9842,4.665581 +L 0.9842,4.665581,0.944,4.928566 +L 0.944,4.928566,0.8766,5.064937 +L 0.8766,5.064937,0.779,5.162335 +L 0.779,5.162335,0.6433,5.220777 +L 0.6433,5.220777,0.4674,5.240263 +L 0.4674,5.240263,0.292,5.220777 +L 0.292,5.220777,0.0784,5.152596 +L 0.0784,5.152596,-0.0003,5.357147 +L 2.0747,4.324675,2.0747,2.103899 +L 2.0747,2.103899,2.0836,1.509739 +L 2.0836,1.509739,2.1331,1.159086 +L 2.1331,1.159086,2.2887,0.798703 +L 2.2887,0.798703,2.5811,0.496753 +L 2.5811,0.496753,2.9804,0.28247 +L 2.9804,0.28247,3.4669,0.204543 +L 3.4669,0.204543,4.0615,0.331166 +L 4.0615,0.331166,4.5198,0.711035 +L 4.5198,0.711035,4.9192,1.509739 +L 4.9192,1.509739,5.0455,2.581167 +L 5.0455,2.581167,4.8989,3.779218 +L 4.8989,3.779218,4.4514,4.675328 +L 4.4514,4.675328,3.9931,5.05519 +L 3.9931,5.05519,3.4669,5.181821 +L 3.4669,5.181821,3.1558,5.142857 +L 3.1558,5.142857,2.8436,5.025973 +L 2.8436,5.025973,2.533,4.792212 +L 2.533,4.792212,2.0747,4.324675 + +[q] 56 +L 5.2399,6.126626,5.2399,-1.52922 +L 5.2399,-1.52922,5.2597,-1.99675 +L 5.2597,-1.99675,5.3187,-2.25974 +L 5.3187,-2.25974,5.4158,-2.40584 +L 5.4158,-2.40584,5.5609,-2.51298 +L 5.5609,-2.51298,5.8047,-2.58116 +L 5.8047,-2.58116,6.2041,-2.60065 +L 6.2041,-2.60065,6.2041,-2.84416 +L 6.2041,-2.84416,3.2134,-2.84416 +L 3.2134,-2.84416,3.2134,-2.60065 +L 3.2134,-2.60065,3.3308,-2.60065 +L 3.3308,-2.60065,3.6524,-2.58116 +L 3.6524,-2.58116,3.8863,-2.50324 +L 3.8863,-2.50324,4.0027,-2.3961 +L 4.0027,-2.3961,4.0904,-2.24026 +L 4.0904,-2.24026,4.1489,-1.96753 +L 4.1489,-1.96753,4.1692,-1.52922 +L 4.1692,-1.52922,4.1692,1.032463 +L 4.1692,1.032463,3.6128,0.438311 +L 3.6128,0.438311,3.1361,0.077919 +L 3.1361,0.077919,2.6887,-0.11688 +L 2.6887,-0.11688,2.221,-0.18506 +L 2.221,-0.18506,1.402,0.019477 +L 1.402,0.019477,0.6816,0.603898 +L 0.6816,0.603898,0.1752,1.519478 +L 0.1752,1.519478,0.0003,2.70779 +L 0.0003,2.70779,0.2237,4.081168 +L 0.2237,4.081168,0.8956,5.172074 +L 0.8956,5.172074,1.8895,5.883118 +L 1.8895,5.883118,3.0583,6.126626 +L 3.0583,6.126626,3.4185,6.097401 +L 3.4185,6.097401,3.7396,6.01948 +L 3.7396,6.01948,4.0418,5.892857 +L 4.0418,5.892857,4.3049,5.707792 +L 4.3049,5.707792,4.6651,5.902596 +L 4.6651,5.902596,5.0258,6.126626 +L 5.0258,6.126626,5.2399,6.126626 +L 4.1692,1.441558,4.1692,4.237016 +L 4.1692,4.237016,4.1394,4.665581 +L 4.1394,4.665581,4.0418,4.996755 +L 4.0418,4.996755,3.8669,5.259741 +L 3.8669,5.259741,3.5939,5.474023 +L 3.5939,5.474023,3.2431,5.620133 +L 3.2431,5.620133,2.8636,5.668836 +L 2.8636,5.668836,2.1809,5.512987 +L 2.1809,5.512987,1.6165,5.05519 +L 1.6165,5.05519,1.2266,4.275972 +L 1.2266,4.275972,1.0898,3.185066 +L 1.0898,3.185066,1.2266,2.123377 +L 1.2266,2.123377,1.6259,1.353899 +L 1.6259,1.353899,2.2106,0.886362 +L 2.2106,0.886362,2.9023,0.730521 +L 2.9023,0.730521,3.2635,0.779217 +L 3.2635,0.779217,3.584,0.896101 +L 3.584,0.896101,3.8763,1.12013 +L 3.8763,1.12013,4.1692,1.441558 + +[r] 47 +L 2.0651,6.126626,2.0651,4.782465 +L 2.0651,4.782465,2.8241,5.785712 +L 2.8241,5.785712,3.604,6.126626 +L 3.604,6.126626,3.9255,6.068183 +L 3.9255,6.068183,4.1876,5.902596 +L 4.1876,5.902596,4.3635,5.668836 +L 4.3635,5.668836,4.4215,5.405842 +L 4.4215,5.405842,4.3829,5.172074 +L 4.3829,5.172074,4.256,4.977277 +L 4.256,4.977277,4.0707,4.840907 +L 4.0707,4.840907,3.8572,4.801943 +L 3.8572,4.801943,3.6139,4.850654 +L 3.6139,4.850654,3.3404,5.025973 +L 3.3404,5.025973,3.0976,5.19156 +L 3.0976,5.19156,2.9222,5.250002 +L 2.9222,5.250002,2.8053,5.211038 +L 2.8053,5.211038,2.6685,5.11364 +L 2.6685,5.11364,2.3767,4.762987 +L 2.3767,4.762987,2.0651,4.237016 +L 2.0651,4.237016,2.0651,1.392855 +L 2.0651,1.392855,2.0938,0.954543 +L 2.0938,0.954543,2.1909,0.642854 +L 2.1909,0.642854,2.3083,0.477275 +L 2.3083,0.477275,2.4931,0.350652 +L 2.4931,0.350652,2.7473,0.262985 +L 2.7473,0.262985,3.1065,0.233767 +L 3.1065,0.233767,3.1065,0 +L 3.1065,0,0.0589,0 +L 0.0589,0,0.0589,0.233767 +L 0.0589,0.233767,0.4582,0.272724 +L 0.4582,0.272724,0.7402,0.379869 +L 0.7402,0.379869,0.8759,0.506492 +L 0.8759,0.506492,0.9646,0.711035 +L 0.9646,0.711035,0.9839,0.915579 +L 0.9839,0.915579,0.9929,1.334413 +L 0.9929,1.334413,0.9929,3.642856 +L 0.9929,3.642856,0.9839,4.470777 +L 0.9839,4.470777,0.9542,4.879871 +L 0.9542,4.879871,0.8962,5.045451 +L 0.8962,5.045451,0.7991,5.172074 +L 0.7991,5.172074,0.6718,5.240263 +L 0.6718,5.240263,0.5162,5.259741 +L 0.5162,5.259741,0.3012,5.230516 +L 0.3012,5.230516,0.0589,5.162335 +L 0.0589,5.162335,-0.0001,5.396103 +L -0.0001,5.396103,1.7916,6.126626 +L 1.7916,6.126626,2.0651,6.126626 + +[s] 59 +L 3.6036,6.126626,3.6036,4.100654 +L 3.6036,4.100654,3.3896,4.100654 +L 3.3896,4.100654,3.1067,4.899349 +L 3.1067,4.899349,2.7564,5.396103 +L 2.7564,5.396103,2.3174,5.64935 +L 2.3174,5.64935,1.7724,5.737017 +L 1.7724,5.737017,1.3631,5.678567 +L 1.3631,5.678567,1.042,5.503248 +L 1.042,5.503248,0.827,5.250002 +L 0.827,5.250002,0.7596,4.96753 +L 0.7596,4.96753,0.8186,4.626625 +L 0.8186,4.626625,0.9737,4.344153 +L 0.9737,4.344153,1.2759,4.071429 +L 1.2759,4.071429,1.7927,3.779218 +L 1.7927,3.779218,2.737,3.321428 +L 2.737,3.321428,3.7206,2.571428 +L 3.7206,2.571428,4.052,1.626623 +L 4.052,1.626623,3.8959,0.886362 +L 3.8959,0.886362,3.4381,0.311688 +L 3.4381,0.311688,2.795,-0.05844 +L 2.795,-0.05844,2.0652,-0.18506 +L 2.0652,-0.18506,1.48,-0.13636 +L 1.48,-0.13636,0.8186,0.009738 +L 0.8186,0.009738,0.6229,0.058441 +L 0.6229,0.058441,0.4673,0.077919 +L 0.4673,0.077919,0.3405,0.038955 +L 0.3405,0.038955,0.2334,-0.08766 +L 0.2334,-0.08766,0.0194,-0.08766 +L 0.0194,-0.08766,0.0194,2.03571 +L 0.0194,2.03571,0.2334,2.03571 +L 0.2334,2.03571,0.496,1.237014 +L 0.496,1.237014,0.935,0.662332 +L 0.935,0.662332,1.4701,0.311688 +L 1.4701,0.311688,2.0835,0.204543 +L 2.0835,0.204543,2.4829,0.262985 +L 2.4829,0.262985,2.8148,0.467536 +L 2.8148,0.467536,3.019,0.749999 +L 3.019,0.749999,3.0973,1.100652 +L 3.0973,1.100652,3.0096,1.509739 +L 3.0096,1.509739,2.7757,1.850652 +L 2.7757,1.850652,2.3085,2.191558 +L 2.3085,2.191558,1.5187,2.620131 +L 1.5187,2.620131,0.7398,3.068182 +L 0.7398,3.068182,0.2919,3.46753 +L 0.2919,3.46753,0.068,3.886363 +L 0.068,3.886363,-0.0004,4.402595 +L -0.0004,4.402595,0.1264,5.074676 +L 0.1264,5.074676,0.496,5.629872 +L 0.496,5.629872,1.0807,6.000002 +L 1.0807,6.000002,1.8011,6.126626 +L 1.8011,6.126626,2.1915,6.087662 +L 2.1915,6.087662,2.6493,5.970777 +L 2.6493,5.970777,2.9318,5.902596 +L 2.9318,5.902596,3.0973,5.873379 +L 3.0973,5.873379,3.1845,5.883118 +L 3.1845,5.883118,3.2528,5.922074 +L 3.2528,5.922074,3.3212,5.990263 +L 3.3212,5.990263,3.3896,6.126626 +L 3.3896,6.126626,3.6036,6.126626 + +[t] 34 +L 2.0158,7.899351,2.0158,5.951299 +L 2.0158,5.951299,3.409,5.951299 +L 3.409,5.951299,3.409,5.493509 +L 3.409,5.493509,2.0158,5.493509 +L 2.0158,5.493509,2.0158,1.636362 +L 2.0158,1.636362,2.0549,1.149347 +L 2.0549,1.149347,2.1813,0.857145 +L 2.1813,0.857145,2.3666,0.701296 +L 2.3666,0.701296,2.6103,0.652593 +L 2.6103,0.652593,2.8145,0.691557 +L 2.8145,0.691557,3.0196,0.788963 +L 3.0196,0.788963,3.2044,0.954543 +L 3.2044,0.954543,3.3308,1.178572 +L 3.3308,1.178572,3.5844,1.178572 +L 3.5844,1.178572,3.3119,0.623376 +L 3.3119,0.623376,2.9413,0.224028 +L 2.9413,0.224028,2.5222,-0.01947 +L 2.5222,-0.01947,2.0842,-0.0974 +L 2.0842,-0.0974,1.7918,-0.05844 +L 1.7918,-0.05844,1.4995,0.06818 +L 1.4995,0.06818,1.2567,0.272724 +L 1.2567,0.272724,1.0818,0.545456 +L 1.0818,0.545456,0.9733,0.935065 +L 0.9733,0.935065,0.9451,1.490261 +L 0.9451,1.490261,0.9451,5.493509 +L 0.9451,5.493509,0.0007,5.493509 +L 0.0007,5.493509,0.0007,5.707792 +L 0.0007,5.707792,0.3599,5.902596 +L 0.3599,5.902596,0.7305,6.194807 +L 0.7305,6.194807,1.0902,6.564937 +L 1.0902,6.564937,1.4024,6.99351 +L 1.4024,6.99351,1.5778,7.344155 +L 1.5778,7.344155,1.8117,7.899351 +L 1.8117,7.899351,2.0158,7.899351 + +[u] 48 +L 5.6205,5.951299,5.6205,2.347406 +L 5.6205,2.347406,5.6294,1.509739 +L 5.6294,1.509739,5.669,1.081166 +L 5.669,1.081166,5.7275,0.886362 +L 5.7275,0.886362,5.8246,0.759739 +L 5.8246,0.759739,5.9415,0.691557 +L 5.9415,0.691557,6.0783,0.672079 +L 6.0783,0.672079,6.2923,0.701296 +L 6.2923,0.701296,6.5267,0.779217 +L 6.5267,0.779217,6.6134,0.555195 +L 6.6134,0.555195,4.8411,-0.18506 +L 4.8411,-0.18506,4.5483,-0.18506 +L 4.5483,-0.18506,4.5483,1.081166 +L 4.5483,1.081166,3.8764,0.399347 +L 3.8764,0.399347,3.3799,0.029224 +L 3.3799,0.029224,2.9608,-0.12662 +L 2.9608,-0.12662,2.5327,-0.18506 +L 2.5327,-0.18506,2.065,-0.10714 +L 2.065,-0.10714,1.6656,0.107144 +L 1.6656,0.107144,1.3535,0.438311 +L 1.3535,0.438311,1.1493,0.847406 +L 1.1493,0.847406,1.0423,1.402594 +L 1.0423,1.402594,1.0126,2.133116 +L 1.0126,2.133116,1.0126,4.792212 +L 1.0126,4.792212,0.9839,5.152596 +L 0.9839,5.152596,0.9155,5.376625 +L 0.9155,5.376625,0.8085,5.522726 +L 0.8085,5.522726,0.6529,5.629872 +L 0.6529,5.629872,0.3997,5.688314 +L 0.3997,5.688314,-0.0001,5.707792 +L -0.0001,5.707792,-0.0001,5.951299 +L -0.0001,5.951299,2.0843,5.951299 +L 2.0843,5.951299,2.0843,1.967537 +L 2.0843,1.967537,2.1621,1.275971 +L 2.1621,1.275971,2.3761,0.876623 +L 2.3761,0.876623,2.6982,0.681818 +L 2.6982,0.681818,3.0777,0.613637 +L 3.0777,0.613637,3.37,0.662332 +L 3.37,0.662332,3.7109,0.788963 +L 3.7109,0.788963,4.0905,1.042202 +L 4.0905,1.042202,4.5483,1.461036 +L 4.5483,1.461036,4.5483,4.831168 +L 4.5483,4.831168,4.5002,5.250002 +L 4.5002,5.250002,4.364,5.512987 +L 4.364,5.512987,4.0805,5.64935 +L 4.0805,5.64935,3.5945,5.707792 +L 3.5945,5.707792,3.5945,5.951299 +L 3.5945,5.951299,5.6205,5.951299 + +[v] 36 +L 0.0005,5.951299,2.8058,5.951299 +L 2.8058,5.951299,2.8058,5.707792 +L 2.8058,5.707792,2.6205,5.707792 +L 2.6205,5.707792,2.3966,5.678567 +L 2.3966,5.678567,2.2311,5.581169 +L 2.2311,5.581169,2.133,5.435059 +L 2.133,5.435059,2.1048,5.250002 +L 2.1048,5.250002,2.133,5.006494 +L 2.133,5.006494,2.2405,4.714284 +L 2.2405,4.714284,3.6234,1.431819 +L 3.6234,1.431819,5.0067,4.840907 +L 5.0067,4.840907,5.1236,5.152596 +L 5.1236,5.152596,5.1623,5.386364 +L 5.1623,5.386364,5.1435,5.474023 +L 5.1435,5.474023,5.1043,5.542205 +L 5.1043,5.542205,5.0265,5.620133 +L 5.0265,5.620133,4.9289,5.668836 +L 4.9289,5.668836,4.753,5.698053 +L 4.753,5.698053,4.4805,5.707792 +L 4.4805,5.707792,4.4805,5.951299 +L 4.4805,5.951299,6.4188,5.951299 +L 6.4188,5.951299,6.4188,5.707792 +L 6.4188,5.707792,6.1364,5.659089 +L 6.1364,5.659089,5.9511,5.571429 +L 5.9511,5.571429,5.7375,5.308444 +L 5.7375,5.308444,5.5428,4.918827 +L 5.5428,4.918827,3.4291,-0.18506 +L 3.4291,-0.18506,3.1656,-0.18506 +L 3.1656,-0.18506,1.042,4.840907 +L 1.042,4.840907,0.9062,5.133118 +L 0.9062,5.133118,0.7695,5.337661 +L 0.7695,5.337661,0.6243,5.48377 +L 0.6243,5.48377,0.4385,5.600647 +L 0.4385,5.600647,0.273,5.64935 +L 0.273,5.64935,0.0005,5.707792 +L 0.0005,5.707792,0.0005,5.951299 + +[w] 48 +L 0.0001,5.951299,2.4943,5.951299 +L 2.4943,5.951299,2.4943,5.707792 +L 2.4943,5.707792,2.202,5.659089 +L 2.202,5.659089,2.0365,5.581169 +L 2.0365,5.581169,1.9587,5.464284 +L 1.9587,5.464284,1.929,5.308444 +L 1.929,5.308444,1.9587,5.084415 +L 1.9587,5.084415,2.0454,4.821429 +L 2.0454,4.821429,3.3119,1.392855 +L 3.3119,1.392855,4.5981,4.178566 +L 4.5981,4.178566,4.2572,5.05519 +L 4.2572,5.05519,4.0719,5.386364 +L 4.0719,5.386364,3.8484,5.600647 +L 3.8484,5.600647,3.6433,5.668836 +L 3.6433,5.668836,3.3119,5.707792 +L 3.3119,5.707792,3.3119,5.951299 +L 3.3119,5.951299,6.1469,5.951299 +L 6.1469,5.951299,6.1469,5.707792 +L 6.1469,5.707792,5.7476,5.659089 +L 5.7476,5.659089,5.484,5.542205 +L 5.484,5.542205,5.3869,5.405842 +L 5.3869,5.405842,5.3576,5.211038 +L 5.3576,5.211038,5.3671,5.074676 +L 5.3671,5.074676,5.4067,4.938313 +L 5.4067,4.938313,6.7504,1.529225 +L 6.7504,1.529225,8.0069,4.821429 +L 8.0069,4.821429,8.104,5.133118 +L 8.104,5.133118,8.1338,5.376625 +L 8.1338,5.376625,8.104,5.493509 +L 8.104,5.493509,8.0069,5.600647 +L 8.0069,5.600647,7.8216,5.668836 +L 7.8216,5.668836,7.511,5.707792 +L 7.511,5.707792,7.511,5.951299 +L 7.511,5.951299,9.3903,5.951299 +L 9.3903,5.951299,9.3903,5.707792 +L 9.3903,5.707792,8.9027,5.474023 +L 8.9027,5.474023,8.5618,4.938313 +L 8.5618,4.938313,6.5755,-0.18506 +L 6.5755,-0.18506,6.303,-0.18506 +L 6.303,-0.18506,4.8225,3.613639 +L 4.8225,3.613639,3.0879,-0.18506 +L 3.0879,-0.18506,2.8441,-0.18506 +L 2.8441,-0.18506,0.9356,4.821429 +L 0.9356,4.821429,0.7508,5.211038 +L 0.7508,5.211038,0.565,5.454545 +L 0.565,5.454545,0.3311,5.600647 +L 0.3311,5.600647,0.0001,5.707792 +L 0.0001,5.707792,0.0001,5.951299 + +[x] 62 +L 0.0003,5.951299,2.7957,5.951299 +L 2.7957,5.951299,2.7957,5.707792 +L 2.7957,5.707792,2.5713,5.688314 +L 2.5713,5.688314,2.4261,5.620133 +L 2.4261,5.620133,2.3473,5.512987 +L 2.3473,5.512987,2.3181,5.376625 +L 2.3181,5.376625,2.3761,5.181821 +L 2.3761,5.181821,2.5415,4.899349 +L 2.5415,4.899349,2.6297,4.762987 +L 2.6297,4.762987,2.7571,4.568183 +L 2.7571,4.568183,3.1847,3.896102 +L 3.1847,3.896102,3.6722,4.568183 +L 3.6722,4.568183,4.023,5.094154 +L 4.023,5.094154,4.1404,5.386364 +L 4.1404,5.386364,4.1102,5.503248 +L 4.1102,5.503248,4.023,5.610393 +L 4.023,5.610393,3.8763,5.678567 +L 3.8763,5.678567,3.6722,5.707792 +L 3.6722,5.707792,3.6722,5.951299 +L 3.6722,5.951299,5.6788,5.951299 +L 5.6788,5.951299,5.6788,5.707792 +L 5.6788,5.707792,5.387,5.64935 +L 5.387,5.64935,5.1328,5.532466 +L 5.1328,5.532466,4.7533,5.181821 +L 4.7533,5.181821,4.2569,4.568183 +L 4.2569,4.568183,3.4482,3.487016 +L 3.4482,3.487016,4.9287,1.353899 +L 4.9287,1.353899,5.3964,0.730521 +L 5.3964,0.730521,5.7076,0.409094 +L 5.7076,0.409094,5.9702,0.29221 +L 5.9702,0.29221,6.3111,0.233767 +L 6.3111,0.233767,6.3111,0 +L 6.3111,0,3.5067,0 +L 3.5067,0,3.5067,0.233767 +L 3.5067,0.233767,3.7698,0.262985 +L 3.7698,0.262985,3.9645,0.360391 +L 3.9645,0.360391,4.0517,0.467536 +L 4.0517,0.467536,4.0815,0.603898 +L 4.0815,0.603898,3.9834,0.866884 +L 3.9834,0.866884,3.6722,1.353899 +L 3.6722,1.353899,2.7957,2.62987 +L 2.7957,2.62987,1.8409,1.353899 +L 1.8409,1.353899,1.5105,0.886362 +L 1.5105,0.886362,1.402,0.652593 +L 1.402,0.652593,1.4416,0.506492 +L 1.4416,0.506492,1.5491,0.37013 +L 1.5491,0.37013,1.7339,0.272724 +L 1.7339,0.272724,1.9871,0.233767 +L 1.9871,0.233767,1.9871,0 +L 1.9871,0,0.0483,0 +L 0.0483,0,0.0483,0.233767 +L 0.0483,0.233767,0.2624,0.29221 +L 0.2624,0.29221,0.4576,0.399347 +L 0.4576,0.399347,0.7886,0.730521 +L 0.7886,0.730521,1.285,1.353899 +L 1.285,1.353899,2.5326,3.00974 +L 2.5326,3.00974,1.402,4.646103 +L 1.402,4.646103,0.9744,5.220777 +L 0.9744,5.220777,0.6617,5.532466 +L 0.6617,5.532466,0.3605,5.659089 +L 0.3605,5.659089,0.0003,5.707792 +L 0.0003,5.707792,0.0003,5.951299 + +[y] 58 +L -0.0001,5.951299,2.7755,5.951299 +L 2.7755,5.951299,2.7755,5.707792 +L 2.7755,5.707792,2.6388,5.707792 +L 2.6388,5.707792,2.3767,5.678567 +L 2.3767,5.678567,2.2008,5.581169 +L 2.2008,5.581169,2.0839,5.435059 +L 2.0839,5.435059,2.0551,5.26948 +L 2.0551,5.26948,2.1037,4.96753 +L 2.1037,4.96753,2.2692,4.568183 +L 2.2692,4.568183,3.711,1.568181 +L 3.711,1.568181,5.0448,4.850654 +L 5.0448,4.850654,5.1231,5.11364 +L 5.1231,5.11364,5.1518,5.376625 +L 5.1518,5.376625,5.1434,5.474023 +L 5.1434,5.474023,5.1132,5.551951 +L 5.1132,5.551951,5.0448,5.610393 +L 5.0448,5.610393,4.9477,5.668836 +L 4.9477,5.668836,4.7921,5.698053 +L 4.7921,5.698053,4.5582,5.707792 +L 4.5582,5.707792,4.5582,5.951299 +L 4.5582,5.951299,6.4965,5.951299 +L 6.4965,5.951299,6.4965,5.707792 +L 6.4965,5.707792,6.283,5.668836 +L 6.283,5.668836,6.1259,5.600647 +L 6.1259,5.600647,5.9901,5.493509 +L 5.9901,5.493509,5.8346,5.308444 +L 5.8346,5.308444,5.7563,5.142857 +L 5.7563,5.142857,5.6195,4.81169 +L 5.6195,4.81169,3.1947,-1.12013 +L 3.1947,-1.12013,2.7859,-1.87987 +L 2.7859,-1.87987,2.2796,-2.42532 +L 2.2796,-2.42532,1.7142,-2.75649 +L 1.7142,-2.75649,1.1781,-2.87337 +L 1.1781,-2.87337,0.8279,-2.81493 +L 0.8279,-2.81493,0.5549,-2.64935 +L 0.5549,-2.64935,0.3695,-2.41558 +L 0.3695,-2.41558,0.3012,-2.14285 +L 0.3012,-2.14285,0.3507,-1.89935 +L 0.3507,-1.89935,0.4865,-1.70454 +L 0.4865,-1.70454,0.6916,-1.57792 +L 0.6916,-1.57792,0.974,-1.53896 +L 0.974,-1.53896,1.2267,-1.57792 +L 1.2267,-1.57792,1.5577,-1.68506 +L 1.5577,-1.68506,1.7732,-1.75324 +L 1.7732,-1.75324,1.8797,-1.78246 +L 1.8797,-1.78246,2.0839,-1.72403 +L 2.0839,-1.72403,2.3083,-1.57792 +L 2.3083,-1.57792,2.5417,-1.28571 +L 2.5417,-1.28571,2.7755,-0.7987 +L 2.7755,-0.7987,3.1947,0.233767 +L 3.1947,0.233767,1.0612,4.724031 +L 1.0612,4.724031,0.9349,4.948052 +L 0.9349,4.948052,0.7501,5.220777 +L 0.7501,5.220777,0.594,5.405842 +L 0.594,5.405842,0.4766,5.522726 +L 0.4766,5.522726,0.2823,5.620133 +L 0.2823,5.620133,-0.0001,5.707792 +L -0.0001,5.707792,-0.0001,5.951299 + +[z] 24 +L 5.3184,1.821428,5.2501,0 +L 5.2501,0,0.0001,0 +L 0.0001,0,0.0001,0.233767 +L 0.0001,0.233767,3.9544,5.493509 +L 3.9544,5.493509,2.0067,5.493509 +L 2.0067,5.493509,1.4805,5.474023 +L 1.4805,5.474023,1.1783,5.415581 +L 1.1783,5.415581,1.0029,5.288958 +L 1.0029,5.288958,0.8577,5.103893 +L 0.8577,5.103893,0.721,4.743509 +L 0.721,4.743509,0.662,4.29545 +L 0.662,4.29545,0.3994,4.29545 +L 0.3994,4.29545,0.4381,5.951299 +L 0.4381,5.951299,5.4254,5.951299 +L 5.4254,5.951299,5.4254,5.707792 +L 5.4254,5.707792,1.4419,0.438311 +L 1.4419,0.438311,3.6041,0.438311 +L 3.6041,0.438311,4.1788,0.467536 +L 4.1788,0.467536,4.5286,0.545456 +L 4.5286,0.545456,4.7536,0.701296 +L 4.7536,0.701296,4.9285,0.944804 +L 4.9285,0.944804,5.0162,1.266232 +L 5.0162,1.266232,5.1034,1.821428 +L 5.1034,1.821428,5.3184,1.821428 + +[{] 51 +L 3.6226,-2.63961,3.6226,-2.87337 +L 3.6226,-2.87337,2.6386,-2.57143 +L 2.6386,-2.57143,1.8597,-1.98701 +L 1.8597,-1.98701,1.3434,-1.21753 +L 1.3434,-1.21753,1.1784,-0.37013 +L 1.1784,-0.37013,1.2171,0.136361 +L 1.2171,0.136361,1.3236,0.720782 +L 1.3236,0.720782,1.4405,1.266232 +L 1.4405,1.266232,1.4802,1.685065 +L 1.4802,1.685065,1.3722,2.133116 +L 1.3722,2.133116,1.0813,2.55195 +L 1.0813,2.55195,0.6136,2.883116 +L 0.6136,2.883116,0.0002,3.048704 +L 0.0002,3.048704,0.0002,3.321428 +L 0.0002,3.321428,0.6136,3.487016 +L 0.6136,3.487016,1.0813,3.808443 +L 1.0813,3.808443,1.3722,4.227277 +L 1.3722,4.227277,1.4802,4.685067 +L 1.4802,4.685067,1.4405,5.103893 +L 1.4405,5.103893,1.3236,5.64935 +L 1.3236,5.64935,1.2171,6.233771 +L 1.2171,6.233771,1.1784,6.740264 +L 1.1784,6.740264,1.3434,7.587662 +L 1.3434,7.587662,1.8597,8.357141 +L 1.8597,8.357141,2.6386,8.941554 +L 2.6386,8.941554,3.6226,9.233764 +L 3.6226,9.233764,3.6226,9.000004 +L 3.6226,9.000004,2.9606,8.766235 +L 2.9606,8.766235,2.5028,8.405844 +L 2.5028,8.405844,2.2392,7.977271 +L 2.2392,7.977271,2.152,7.500003 +L 2.152,7.500003,2.1912,7.061691 +L 2.1912,7.061691,2.2977,6.496756 +L 2.2977,6.496756,2.4047,5.912335 +L 2.4047,5.912335,2.4444,5.425328 +L 2.4444,5.425328,2.3279,4.782465 +L 2.3279,4.782465,1.9667,4.159088 +L 1.9667,4.159088,1.3632,3.6039 +L 1.3632,3.6039,0.5249,3.204544 +L 0.5249,3.204544,1.3538,2.78571 +L 1.3538,2.78571,1.9573,2.230522 +L 1.9573,2.230522,2.3175,1.587659 +L 2.3175,1.587659,2.4444,0.944804 +L 2.4444,0.944804,2.4047,0.457789 +L 2.4047,0.457789,2.2977,-0.12662 +L 2.2977,-0.12662,2.1912,-0.69155 +L 2.1912,-0.69155,2.152,-1.13961 +L 2.152,-1.13961,2.2392,-1.60714 +L 2.2392,-1.60714,2.5028,-2.04545 +L 2.5028,-2.04545,2.9606,-2.3961 +L 2.9606,-2.3961,3.6226,-2.63961 + +[|] 4 +L 0.5464,9.233764,0.5464,-2.87337 +L 0.5464,-2.87337,0.0003,-2.87337 +L 0.0003,-2.87337,0.0003,9.233764 +L 0.0003,9.233764,0.5464,9.233764 + +[}] 51 +L 0,9.000004,0,9.233764 +L 0,9.233764,0.984,8.941554 +L 0.984,8.941554,1.7629,8.357141 +L 1.7629,8.357141,2.2692,7.587662 +L 2.2692,7.587662,2.4451,6.730525 +L 2.4451,6.730525,2.4065,6.224024 +L 2.4065,6.224024,2.2891,5.64935 +L 2.2891,5.64935,2.182,5.103893 +L 2.182,5.103893,2.1429,4.685067 +L 2.1429,4.685067,2.241,4.237016 +L 2.241,4.237016,2.5328,3.818182 +L 2.5328,3.818182,2.9996,3.487016 +L 2.9996,3.487016,3.6234,3.321428 +L 3.6234,3.321428,3.6234,3.048704 +L 3.6234,3.048704,2.9996,2.883116 +L 2.9996,2.883116,2.5328,2.55195 +L 2.5328,2.55195,2.241,2.133116 +L 2.241,2.133116,2.1429,1.685065 +L 2.1429,1.685065,2.182,1.266232 +L 2.182,1.266232,2.2891,0.720782 +L 2.2891,0.720782,2.4065,0.136361 +L 2.4065,0.136361,2.4451,-0.37013 +L 2.4451,-0.37013,2.2692,-1.21753 +L 2.2692,-1.21753,1.7629,-1.98701 +L 1.7629,-1.98701,0.984,-2.57143 +L 0.984,-2.57143,0,-2.87337 +L 0,-2.87337,0,-2.63961 +L 0,-2.63961,0.6624,-2.3961 +L 0.6624,-2.3961,1.1098,-2.04545 +L 1.1098,-2.04545,1.3833,-1.61688 +L 1.3833,-1.61688,1.4705,-1.13961 +L 1.4705,-1.13961,1.4324,-0.69155 +L 1.4324,-0.69155,1.315,-0.12662 +L 1.315,-0.12662,1.2079,0.44805 +L 1.2079,0.44805,1.1683,0.935065 +L 1.1683,0.935065,1.2852,1.587659 +L 1.2852,1.587659,1.6558,2.211036 +L 1.6558,2.211036,2.2494,2.756493 +L 2.2494,2.756493,3.0878,3.165588 +L 3.0878,3.165588,2.2692,3.584414 +L 2.2692,3.584414,1.6663,4.13961 +L 1.6663,4.13961,1.2956,4.782465 +L 1.2956,4.782465,1.1683,5.425328 +L 1.1683,5.425328,1.2079,5.912335 +L 1.2079,5.912335,1.315,6.496756 +L 1.315,6.496756,1.4324,7.061691 +L 1.4324,7.061691,1.4705,7.500003 +L 1.4705,7.500003,1.3833,7.977271 +L 1.3833,7.977271,1.1098,8.405844 +L 1.1098,8.405844,0.6624,8.766235 +L 0.6624,8.766235,0,9.000004 + +[~] 30 +L 6.634,4.383117,6.9263,4.383117 +L 6.9263,4.383117,6.7994,3.633117 +L 6.7994,3.633117,6.4487,3.058443 +L 6.4487,3.058443,5.9423,2.70779 +L 5.9423,2.70779,5.3378,2.581167 +L 5.3378,2.581167,5.0272,2.610392 +L 5.0272,2.610392,4.6957,2.688312 +L 4.6957,2.688312,4.0818,2.902595 +L 4.0818,2.902595,2.9229,3.370131 +L 2.9229,3.370131,2.0662,3.68182 +L 2.0662,3.68182,1.5009,3.788965 +L 1.5009,3.788965,1.0817,3.711037 +L 1.0817,3.711037,0.7309,3.506494 +L 0.7309,3.506494,0.4683,3.136363 +L 0.4683,3.136363,0.293,2.600653 +L 0.293,2.600653,0.0006,2.600653 +L 0.0006,2.600653,0.1468,3.370131 +L 0.1468,3.370131,0.4872,3.935066 +L 0.4872,3.935066,0.9648,4.285711 +L 0.9648,4.285711,1.5202,4.402595 +L 1.5202,4.402595,1.8121,4.383117 +L 1.8121,4.383117,2.1044,4.314936 +L 2.1044,4.314936,2.8932,4.042212 +L 2.8932,4.042212,3.8871,3.642856 +L 3.8871,3.642856,4.822,3.292203 +L 4.822,3.292203,5.4359,3.175327 +L 5.4359,3.175327,5.8838,3.253247 +L 5.8838,3.253247,6.2534,3.487016 +L 6.2534,3.487016,6.517,3.866885 +L 6.517,3.866885,6.634,4.383117 + +[] 8 +L 0.0008,0,0.0008,8.308446 +L 0.0008,8.308446,6.6524,8.308446 +L 6.6524,8.308446,6.6524,0 +L 6.6524,0,0.0008,0 +L 0.2143,0.204543,6.4384,0.204543 +L 6.4384,0.204543,6.4384,8.103894 +L 6.4384,8.103894,0.2143,8.103894 +L 0.2143,8.103894,0.2143,0.204543 + +[€] 48 +L 5.6497,4.782465,1.9199,4.782465 +L 1.9199,4.782465,1.9,4.509741 +L 1.9,4.509741,1.9,4.246755 +L 1.9,4.246755,5.4843,4.246755 +L 5.4843,4.246755,5.3391,3.740262 +L 5.3391,3.740262,1.9104,3.740262 +L 1.9104,3.740262,2.0759,2.483769 +L 2.0759,2.483769,2.455,1.451297 +L 2.455,1.451297,3.1367,0.652593 +L 3.1367,0.652593,4.0137,0.389608 +L 4.0137,0.389608,4.8124,0.496753 +L 4.8124,0.496753,5.4748,0.837659 +L 5.4748,0.837659,5.8648,1.227275 +L 5.8648,1.227275,6.3612,1.850652 +L 6.3612,1.850652,6.556,1.724029 +L 6.556,1.724029,6.0293,0.96429 +L 6.0293,0.96429,5.5526,0.457789 +L 5.5526,0.457789,4.7242,0 +L 4.7242,0,3.7605,-0.15584 +L 3.7605,-0.15584,2.4351,0.155839 +L 2.4351,0.155839,1.4422,1.081166 +L 1.4422,1.081166,0.916,2.25 +L 0.916,2.25,0.6534,3.740262 +L 0.6534,3.740262,0.0004,3.740262 +L 0.0004,3.740262,0.1461,4.246755 +L 0.1461,4.246755,0.6237,4.246755 +L 0.6237,4.246755,0.6237,4.3539 +L 0.6237,4.3539,0.6341,4.558436 +L 0.6341,4.558436,0.6435,4.782465 +L 0.6435,4.782465,0.0004,4.782465 +L 0.0004,4.782465,0.1461,5.288958 +L 0.1461,5.288958,0.6921,5.288958 +L 0.6921,5.288958,1.0627,6.691561 +L 1.0627,6.691561,1.745,7.83117 +L 1.745,7.83117,2.8345,8.698047 +L 2.8345,8.698047,4.1891,8.980526 +L 4.1891,8.980526,5.289,8.844156 +L 5.289,8.844156,6.39,8.415583 +L 6.39,8.415583,6.39,6.47727 +L 6.39,6.47727,6.1373,6.47727 +L 6.1373,6.47727,5.5625,8.035713 +L 5.5625,8.035713,4.1891,8.551953 +L 4.1891,8.551953,3.2636,8.28896 +L 3.2636,8.28896,2.562,7.470778 +L 2.562,7.470778,2.1825,6.506495 +L 2.1825,6.506495,1.9585,5.288958 +L 1.9585,5.288958,5.7964,5.288958 +L 5.7964,5.288958,5.6497,4.782465 + +[‐] 31 +L 0.7408,6.32143,1.0237,6.272727 +L 1.0237,6.272727,1.2576,6.116886 +L 1.2576,6.116886,1.4126,5.883118 +L 1.4126,5.883118,1.4617,5.600647 +L 1.4617,5.600647,1.4126,5.327922 +L 1.4126,5.327922,1.2471,5.094154 +L 1.2471,5.094154,1.0133,4.938313 +L 1.0133,4.938313,0.7408,4.88961 +L 0.7408,4.88961,0.4673,4.938313 +L 0.4673,4.938313,0.2334,5.094154 +L 0.2334,5.094154,0.0783,5.327922 +L 0.0783,5.327922,0.0293,5.600647 +L 0.0293,5.600647,0.0783,5.883118 +L 0.0783,5.883118,0.2334,6.116886 +L 0.2334,6.116886,0.4673,6.272727 +L 0.4673,6.272727,0.7408,6.32143 +L 0.6139,3.808443,0.8582,3.808443 +L 0.8582,3.808443,1.4325,-1.45129 +L 1.4325,-1.45129,1.4617,-1.7435 +L 1.4617,-1.7435,1.4711,-1.95779 +L 1.4711,-1.95779,1.4126,-2.32792 +L 1.4126,-2.32792,1.2471,-2.62013 +L 1.2471,-2.62013,1.0133,-2.80519 +L 1.0133,-2.80519,0.7309,-2.87337 +L 0.7309,-2.87337,0.4489,-2.80519 +L 0.4489,-2.80519,0.2151,-2.62013 +L 0.2151,-2.62013,0.0496,-2.31818 +L 0.0496,-2.31818,0.0005,-1.87987 +L 0.0005,-1.87987,0.0095,-1.6948 +L 0.0095,-1.6948,0.0293,-1.45129 +L 0.0293,-1.45129,0.6139,3.808443 + +[・] 59 +L 5.0064,2.269478,4.5882,1.178572 +L 4.5882,1.178572,3.9456,0.37013 +L 3.9456,0.37013,3.2921,-0.02922 +L 3.2921,-0.02922,2.5132,-0.15584 +L 2.5132,-0.15584,1.9875,-0.0974 +L 1.9875,-0.0974,1.4608,0.06818 +L 1.4608,0.06818,0.5363,-2.46428 +L 0.5363,-2.46428,0.0874,-2.46428 +L 0.0874,-2.46428,1.0912,0.311688 +L 1.0912,0.311688,0.6334,0.808442 +L 0.6334,0.808442,0.3312,1.314935 +L 0.3312,1.314935,0.0785,2.074674 +L 0.0785,2.074674,0.0002,2.93182 +L 0.0002,2.93182,0.2539,4.392856 +L 0.2539,4.392856,1.0228,5.464284 +L 1.0228,5.464284,1.8513,5.980524 +L 1.8513,5.980524,2.7961,6.146104 +L 2.7961,6.146104,2.9512,6.146104 +L 2.9512,6.146104,3.1851,6.126626 +L 3.1851,6.126626,4.1007,8.610387 +L 4.1007,8.610387,4.5684,8.610387 +L 4.5684,8.610387,3.6231,6.000002 +L 3.6231,6.000002,4.1795,5.707792 +L 4.1795,5.707792,4.5199,5.435059 +L 4.5199,5.435059,4.7542,5.074676 +L 4.7542,5.074676,4.831,4.685067 +L 4.831,4.685067,4.7924,4.461037 +L 4.7924,4.461037,4.6754,4.285711 +L 4.6754,4.285711,4.4807,4.168827 +L 4.4807,4.168827,4.2176,4.13961 +L 4.2176,4.13961,3.907,4.198052 +L 3.907,4.198052,3.6627,4.383117 +L 3.6627,4.383117,3.5656,4.587661 +L 3.5656,4.587661,3.4972,4.918827 +L 3.4972,4.918827,3.4487,5.123379 +L 3.4487,5.123379,3.3803,5.337661 +L 3.3803,5.337661,1.8998,1.237014 +L 1.8998,1.237014,2.2407,1.032463 +L 2.2407,1.032463,2.5132,0.90584 +L 2.5132,0.90584,2.7173,0.857145 +L 2.7173,0.857145,2.9611,0.847406 +L 2.9611,0.847406,3.3506,0.886362 +L 3.3506,0.886362,3.7212,1.012985 +L 3.7212,1.012985,4.0427,1.188311 +L 4.0427,1.188311,4.2766,1.402594 +L 4.2766,1.402594,4.5,1.753246 +L 4.5,1.753246,4.8122,2.347406 +L 4.8122,2.347406,5.0064,2.269478 +L 1.5688,1.626623,3.0097,5.620133 +L 3.0097,5.620133,2.8244,5.678567 +L 2.8244,5.678567,2.6202,5.698053 +L 2.6202,5.698053,2.0262,5.571429 +L 2.0262,5.571429,1.5688,5.211038 +L 1.5688,5.211038,1.1695,4.451298 +L 1.1695,4.451298,1.0427,3.477276 +L 1.0427,3.477276,1.0714,3.00974 +L 1.0714,3.00974,1.1502,2.581167 +L 1.1502,2.581167,1.3157,2.133116 +L 1.3157,2.133116,1.5688,1.626623 + +[ゾ] 99 +L 4.2965,4.275972,2.6214,4.275972 +L 2.6214,4.275972,2.6214,4.022726 +L 2.6214,4.022726,2.6308,3.83766 +L 2.6308,3.83766,2.601,3.253247 +L 2.601,3.253247,2.5436,2.70779 +L 2.5436,2.70779,2.4172,2.152594 +L 2.4172,2.152594,2.2215,1.509739 +L 2.2215,1.509739,3.2258,1.19805 +L 3.2258,1.19805,3.6832,1.061688 +L 3.6832,1.061688,4.0141,1.003246 +L 4.0141,1.003246,4.3451,0.983768 +L 4.3451,0.983768,4.8326,1.051949 +L 4.8326,1.051949,5.2221,1.237014 +L 5.2221,1.237014,5.5149,1.558442 +L 5.5149,1.558442,5.7086,2.025971 +L 5.7086,2.025971,5.9425,1.967537 +L 5.9425,1.967537,5.7086,1.051949 +L 5.7086,1.051949,5.2706,0.379869 +L 5.2706,0.379869,4.7063,-0.01947 +L 4.7063,-0.01947,4.0825,-0.15584 +L 4.0825,-0.15584,3.6638,-0.11688 +L 3.6638,-0.11688,3.2838,0 +L 3.2838,0,2.7764,0.301949 +L 2.7764,0.301949,1.9688,0.886362 +L 1.9688,0.886362,1.6953,0.428572 +L 1.6953,0.428572,1.403,0.107144 +L 1.403,0.107144,1.0918,-0.08766 +L 1.0918,-0.08766,0.7609,-0.15584 +L 0.7609,-0.15584,0.4586,-0.0974 +L 0.4586,-0.0974,0.2149,0.06818 +L 0.2149,0.06818,0.0494,0.331166 +L 0.0494,0.331166,0.0008,0.681818 +L 0.0008,0.681818,0.0692,1.081166 +L 0.0692,1.081166,0.2932,1.402594 +L 0.2932,1.402594,0.6345,1.626623 +L 0.6345,1.626623,1.0621,1.694804 +L 1.0621,1.694804,1.1791,1.694804 +L 1.1791,1.694804,1.3064,1.685065 +L 1.3064,1.685065,1.4526,1.665579 +L 1.4526,1.665579,1.618,1.646101 +L 1.618,1.646101,1.6279,1.801949 +L 1.6279,1.801949,1.6279,1.938312 +L 1.6279,1.938312,1.6369,2.045449 +L 1.6369,2.045449,1.6369,2.142855 +L 1.6369,2.142855,1.5982,2.961037 +L 1.5982,2.961037,1.5011,4.275972 +L 1.5011,4.275972,0.2352,4.275972 +L 0.2352,4.275972,0.2352,4.899349 +L 0.2352,4.899349,1.5011,4.899349 +L 1.5011,4.899349,1.4327,5.698053 +L 1.4327,5.698053,1.4134,6.185068 +L 1.4134,6.185068,1.4912,6.944807 +L 1.4912,6.944807,1.735,7.636365 +L 1.735,7.636365,2.115,8.211039 +L 2.115,8.211039,2.611,8.639612 +L 2.611,8.639612,3.1961,8.902598 +L 3.1961,8.902598,3.8189,8.980526 +L 3.8189,8.980526,4.5304,8.873381 +L 4.5304,8.873381,5.0472,8.542206 +L 5.0472,8.542206,5.3578,8.103894 +L 5.3578,8.103894,5.4549,7.655843 +L 5.4549,7.655843,5.4168,7.461039 +L 5.4168,7.461039,5.2994,7.285713 +L 5.2994,7.285713,5.1339,7.168829 +L 5.1339,7.168829,4.9486,7.129872 +L 4.9486,7.129872,4.7246,7.188307 +L 4.7246,7.188307,4.5408,7.37338 +L 4.5408,7.37338,4.4818,7.558437 +L 4.4818,7.558437,4.4427,7.879873 +L 4.4427,7.879873,4.3753,8.211039 +L 4.3753,8.211039,4.2282,8.4448 +L 4.2282,8.4448,3.9844,8.58117 +L 3.9844,8.58117,3.6638,8.629873 +L 3.6638,8.629873,3.1961,8.522728 +L 3.1961,8.522728,2.8161,8.220779 +L 2.8161,8.220779,2.5624,7.665583 +L 2.5624,7.665583,2.4752,6.808437 +L 2.4752,6.808437,2.494,6.272727 +L 2.494,6.272727,2.553,5.600647 +L 2.553,5.600647,2.5921,5.181821 +L 2.5921,5.181821,2.6214,4.899349 +L 2.6214,4.899349,4.2965,4.899349 +L 4.2965,4.899349,4.2965,4.275972 +L 1.5402,1.12013,1.3941,1.19805 +L 1.3941,1.19805,1.2573,1.256492 +L 1.2573,1.256492,1.1206,1.28571 +L 1.1206,1.28571,0.9848,1.295456 +L 0.9848,1.295456,0.7212,1.256492 +L 0.7212,1.256492,0.527,1.139608 +L 0.527,1.139608,0.4101,0.954543 +L 0.4101,0.954543,0.3714,0.730521 +L 0.3714,0.730521,0.4007,0.516231 +L 0.4007,0.516231,0.4978,0.360391 +L 0.4978,0.360391,0.6345,0.253246 +L 0.6345,0.253246,0.7896,0.224028 +L 0.7896,0.224028,1.0042,0.272724 +L 1.0042,0.272724,1.2093,0.418833 +L 1.2093,0.418833,1.3941,0.691557 +L 1.3941,0.691557,1.5402,1.12013 + +[Ь] 52 +L 4.978,6.61364,5.9129,7.538959 +L 5.9129,7.538959,6.2835,7.168829 +L 6.2835,7.168829,5.3476,6.253249 +L 5.3476,6.253249,5.8539,5.366886 +L 5.8539,5.366886,6.0194,4.43182 +L 6.0194,4.43182,5.8539,3.46753 +L 5.8539,3.46753,5.3476,2.581167 +L 5.3476,2.581167,6.2835,1.646101 +L 6.2835,1.646101,5.9129,1.28571 +L 5.9129,1.28571,4.978,2.211036 +L 4.978,2.211036,4.1109,1.714282 +L 4.1109,1.714282,3.224,1.548703 +L 3.224,1.548703,2.6592,1.597406 +L 2.6592,1.597406,2.1141,1.743507 +L 2.1141,1.743507,1.6464,1.95779 +L 1.6464,1.95779,1.3154,2.211036 +L 1.3154,2.211036,0.3607,1.28571 +L 0.3607,1.28571,0.0005,1.646101 +L 0.0005,1.646101,0.9349,2.581167 +L 0.9349,2.581167,0.4385,3.418827 +L 0.4385,3.418827,0.273,4.412334 +L 0.273,4.412334,0.4385,5.386364 +L 0.4385,5.386364,0.9349,6.253249 +L 0.9349,6.253249,0.0005,7.168829 +L 0.0005,7.168829,0.3607,7.538959 +L 0.3607,7.538959,1.3154,6.61364 +L 1.3154,6.61364,1.695,6.876626 +L 1.695,6.876626,2.1731,7.090908 +L 2.1731,7.090908,2.6795,7.227271 +L 2.6795,7.227271,3.1655,7.275974 +L 3.1655,7.275974,3.6238,7.237018 +L 3.6238,7.237018,4.1109,7.110394 +L 4.1109,7.110394,4.5687,6.905843 +L 4.5687,6.905843,4.978,6.61364 +L 3.1472,6.750003,2.2405,6.574676 +L 2.2405,6.574676,1.4809,6.058444 +L 1.4809,6.058444,0.9746,5.298697 +L 0.9746,5.298697,0.7992,4.392856 +L 0.7992,4.392856,0.9746,3.506494 +L 0.9746,3.506494,1.4908,2.756493 +L 1.4908,2.756493,2.2405,2.240261 +L 2.2405,2.240261,3.1472,2.064935 +L 3.1472,2.064935,4.0425,2.240261 +L 4.0425,2.240261,4.8031,2.756493 +L 4.8031,2.756493,5.3278,3.516233 +L 5.3278,3.516233,5.5036,4.412334 +L 5.5036,4.412334,5.4159,4.996755 +L 5.4159,4.996755,5.1821,5.571429 +L 5.1821,5.571429,4.8031,6.077922 +L 4.8031,6.077922,4.3051,6.448053 +L 4.3051,6.448053,3.7403,6.672075 +L 3.7403,6.672075,3.1472,6.750003 + +[・] 67 +L 3.8668,2.756493,6.6335,2.756493 +L 6.6335,2.756493,6.6335,2.288964 +L 6.6335,2.288964,3.8668,2.288964 +L 3.8668,2.288964,3.8668,1.587659 +L 3.8668,1.587659,3.8866,0.983768 +L 3.8866,0.983768,3.9351,0.652593 +L 3.9351,0.652593,4.0233,0.52597 +L 4.0233,0.52597,4.1591,0.409094 +L 4.1591,0.409094,4.4128,0.301949 +L 4.4128,0.301949,4.715,0.262985 +L 4.715,0.262985,4.9776,0.262985 +L 4.9776,0.262985,4.9776,0 +L 4.9776,0,1.6371,0 +L 1.6371,0,1.6371,0.262985 +L 1.6371,0.262985,1.8413,0.262985 +L 1.8413,0.262985,2.2406,0.311688 +L 2.2406,0.311688,2.5131,0.438311 +L 2.5131,0.438311,2.6499,0.584412 +L 2.6499,0.584412,2.7272,0.808442 +L 2.7272,0.808442,2.747,1.061688 +L 2.747,1.061688,2.7569,1.587659 +L 2.7569,1.587659,2.7569,2.288964 +L 2.7569,2.288964,0.0001,2.288964 +L 0.0001,2.288964,0.0001,2.756493 +L 0.0001,2.756493,2.7569,2.756493 +L 2.7569,2.756493,2.7569,3.691559 +L 2.7569,3.691559,2.6598,3.925327 +L 2.6598,3.925327,0.0001,3.925327 +L 0.0001,3.925327,0.0001,4.402595 +L 0.0001,4.402595,2.4547,4.402595 +L 2.4547,4.402595,1.0723,7.616887 +L 1.0723,7.616887,0.8285,8.094155 +L 0.8285,8.094155,0.5947,8.366888 +L 0.5947,8.366888,0.3321,8.50325 +L 0.3321,8.50325,0.0001,8.551953 +L 0.0001,8.551953,0.0001,8.805199 +L 0.0001,8.805199,2.8743,8.805199 +L 2.8743,8.805199,2.8743,8.551953 +L 2.8743,8.551953,2.4844,8.50325 +L 2.4844,8.50325,2.2505,8.405844 +L 2.2505,8.405844,2.1237,8.28896 +L 2.1237,8.28896,2.085,8.152597 +L 2.085,8.152597,2.1138,8.006496 +L 2.1138,8.006496,2.2025,7.772728 +L 2.2025,7.772728,3.5942,4.402595 +L 3.5942,4.402595,4.9776,7.675322 +L 4.9776,7.675322,5.0747,7.957793 +L 5.0747,7.957793,5.1143,8.162336 +L 5.1143,8.162336,5.0747,8.298699 +L 5.0747,8.298699,4.9776,8.425322 +L 4.9776,8.425322,4.8319,8.493511 +L 4.8319,8.493511,4.5589,8.532467 +L 4.5589,8.532467,4.4905,8.542206 +L 4.4905,8.542206,4.3835,8.551953 +L 4.3835,8.551953,4.3835,8.805199 +L 4.3835,8.805199,6.6335,8.805199 +L 6.6335,8.805199,6.6335,8.551953 +L 6.6335,8.551953,6.2926,8.522728 +L 6.2926,8.522728,6.0691,8.405844 +L 6.0691,8.405844,5.7862,8.074677 +L 5.7862,8.074677,5.5137,7.548706 +L 5.5137,7.548706,4.1209,4.402595 +L 4.1209,4.402595,6.6335,4.402595 +L 6.6335,4.402595,6.6335,3.925327 +L 6.6335,3.925327,3.9168,3.925327 +L 3.9168,3.925327,3.8668,3.827921 +L 3.8668,3.827921,3.8668,2.756493 + +[・] 8 +L 0.5468,9.233764,0.5468,4.412334 +L 0.5468,4.412334,0.0012,4.412334 +L 0.0012,4.412334,0.0012,9.233764 +L 0.0012,9.233764,0.5468,9.233764 +L 0.5468,1.948051,0.5468,-2.87337 +L 0.5468,-2.87337,0.0012,-2.87337 +L 0.0012,-2.87337,0.0012,1.948051 +L 0.0012,1.948051,0.5468,1.948051 + +[Ⅹ] 104 +L 1.4323,5.474023,1.0627,5.931813 +L 1.0627,5.931813,0.8189,6.350655 +L 0.8189,6.350655,0.6723,6.750003 +L 0.6723,6.750003,0.6341,7.14935 +L 0.6341,7.14935,0.7604,7.860387 +L 0.7604,7.860387,1.1598,8.4448 +L 1.1598,8.4448,1.7534,8.853902 +L 1.7534,8.853902,2.4748,8.980526 +L 2.4748,8.980526,3.1268,8.873381 +L 3.1268,8.873381,3.653,8.551953 +L 3.653,8.551953,4.0038,8.084416 +L 4.0038,8.084416,4.1207,7.558437 +L 4.1207,7.558437,4.0722,7.31493 +L 4.0722,7.31493,3.9453,7.110394 +L 3.9453,7.110394,3.7992,7.003249 +L 3.7992,7.003249,3.6044,6.974024 +L 3.6044,6.974024,3.3993,7.012988 +L 3.3993,7.012988,3.2437,7.120133 +L 3.2437,7.120133,3.1367,7.285713 +L 3.1367,7.285713,3.0981,7.470778 +L 3.0981,7.470778,3.108,7.60714 +L 3.108,7.60714,3.1466,7.811692 +L 3.1466,7.811692,3.1754,7.957793 +L 3.1754,7.957793,3.1858,8.094155 +L 3.1858,8.094155,3.1367,8.337663 +L 3.1367,8.337663,2.9915,8.532467 +L 2.9915,8.532467,2.7661,8.668829 +L 2.7661,8.668829,2.4748,8.707786 +L 2.4748,8.707786,2.0358,8.629873 +L 2.0358,8.629873,1.6766,8.376627 +L 1.6766,8.376627,1.4224,8.016235 +L 1.4224,8.016235,1.3441,7.577923 +L 1.3441,7.577923,1.3837,7.198054 +L 1.3837,7.198054,1.5195,6.886365 +L 1.5195,6.886365,1.9104,6.418828 +L 1.9104,6.418828,2.5035,5.931813 +L 2.5035,5.931813,3.595,5.045451 +L 3.595,5.045451,4.2862,4.246755 +L 4.2862,4.246755,4.5394,3.701298 +L 4.5394,3.701298,4.6271,3.126624 +L 4.6271,3.126624,4.5394,2.542203 +L 4.5394,2.542203,4.2763,1.948051 +L 4.2763,1.948051,3.8383,1.392855 +L 3.8383,1.392855,3.1858,0.90584 +L 3.1858,0.90584,3.5747,0.438311 +L 3.5747,0.438311,3.8185,0.048702 +L 3.8185,0.048702,3.9453,-0.33116 +L 3.9453,-0.33116,3.984,-0.74026 +L 3.984,-0.74026,3.8571,-1.47078 +L 3.8571,-1.47078,3.4583,-2.06493 +L 3.4583,-2.06493,2.8642,-2.46428 +L 2.8642,-2.46428,2.1433,-2.60065 +L 2.1433,-2.60065,1.5007,-2.48377 +L 1.5007,-2.48377,0.9745,-2.15259 +L 0.9745,-2.15259,0.6341,-1.67532 +L 0.6341,-1.67532,0.5167,-1.13961 +L 0.5167,-1.13961,0.5553,-0.91558 +L 0.5553,-0.91558,0.6628,-0.73052 +L 0.6628,-0.73052,0.8278,-0.6039 +L 0.8278,-0.6039,1.023,-0.56493 +L 1.023,-0.56493,1.2083,-0.6039 +L 1.2083,-0.6039,1.3639,-0.72078 +L 1.3639,-0.72078,1.4714,-0.8961 +L 1.4714,-0.8961,1.5106,-1.12987 +L 1.5106,-1.12987,1.4908,-1.31493 +L 1.4908,-1.31493,1.4511,-1.51948 +L 1.4511,-1.51948,1.4125,-1.70454 +L 1.4125,-1.70454,1.4031,-1.8409 +L 1.4031,-1.8409,1.4427,-2.00649 +L 1.4427,-2.00649,1.5695,-2.15259 +L 1.5695,-2.15259,1.8421,-2.2987 +L 1.8421,-2.2987,2.1829,-2.3474 +L 2.1829,-2.3474,2.5917,-2.25974 +L 2.5917,-2.25974,2.9712,-2.00649 +L 2.9712,-2.00649,3.2338,-1.65584 +L 3.2338,-1.65584,3.3225,-1.27597 +L 3.3225,-1.27597,3.2735,-0.88636 +L 3.2735,-0.88636,3.1268,-0.55519 +L 3.1268,-0.55519,2.6888,-0.02922 +L 2.6888,-0.02922,1.9971,0.555195 +L 1.9971,0.555195,0.9651,1.402594 +L 0.9651,1.402594,0.3319,2.152594 +L 0.3319,2.152594,0.0787,2.698051 +L 0.0787,2.698051,0.0004,3.272725 +L 0.0004,3.272725,0.0881,3.866885 +L 0.0881,3.866885,0.3512,4.451298 +L 0.3512,4.451298,0.7996,4.996755 +L 0.7996,4.996755,1.4323,5.474023 +L 1.6463,5.26948,0.9061,4.616886 +L 0.9061,4.616886,0.6628,3.827921 +L 0.6628,3.827921,0.7208,3.389609 +L 0.7208,3.389609,0.9061,2.990262 +L 0.9061,2.990262,1.3937,2.41558 +L 1.3937,2.41558,2.1829,1.753246 +L 2.1829,1.753246,2.6105,1.412333 +L 2.6105,1.412333,2.9712,1.100652 +L 2.9712,1.100652,3.7214,1.753246 +L 3.7214,1.753246,3.9656,2.522725 +L 3.9656,2.522725,3.8973,2.961037 +L 3.8973,2.961037,3.6817,3.409088 +L 3.6817,3.409088,3.2437,3.925327 +L 3.2437,3.925327,2.5035,4.558436 +L 2.5035,4.558436,2.0269,4.938313 +L 2.0269,4.938313,1.6463,5.26948 + +[・] 32 +L 2.9897,8.678576,3.2622,8.629873 +L 3.2622,8.629873,3.4871,8.474025 +L 3.4871,8.474025,3.6427,8.240264 +L 3.6427,8.240264,3.6913,7.967532 +L 3.6913,7.967532,3.6427,7.704547 +L 3.6427,7.704547,3.4871,7.470778 +L 3.4871,7.470778,3.2622,7.324677 +L 3.2622,7.324677,2.9897,7.266235 +L 2.9897,7.266235,2.7172,7.324677 +L 2.7172,7.324677,2.4932,7.470778 +L 2.4932,7.470778,2.3382,7.704547 +L 2.3382,7.704547,2.2891,7.967532 +L 2.2891,7.967532,2.3382,8.240264 +L 2.3382,8.240264,2.4932,8.474025 +L 2.4932,8.474025,2.7172,8.629873 +L 2.7172,8.629873,2.9897,8.678576 +L 0.7006,8.678576,0.9741,8.629873 +L 0.9741,8.629873,1.207,8.474025 +L 1.207,8.474025,1.3537,8.240264 +L 1.3537,8.240264,1.4121,7.967532 +L 1.4121,7.967532,1.3537,7.704547 +L 1.3537,7.704547,1.1981,7.470778 +L 1.1981,7.470778,0.9741,7.324677 +L 0.9741,7.324677,0.7105,7.266235 +L 0.7105,7.266235,0.438,7.324677 +L 0.438,7.324677,0.2042,7.470778 +L 0.2042,7.470778,0.0491,7.704547 +L 0.0491,7.704547,0,7.967532 +L 0,7.967532,0.0491,8.240264 +L 0.0491,8.240264,0.2042,8.474025 +L 0.2042,8.474025,0.4281,8.629873 +L 0.4281,8.629873,0.7006,8.678576 + +[云] 90 +L 4.6075,9.000004,5.7471,8.853902 +L 5.7471,8.853902,6.8684,8.405844 +L 6.8684,8.405844,7.8514,7.685061 +L 7.8514,7.685061,8.5916,6.711039 +L 8.5916,6.711039,9.0593,5.581169 +L 9.0593,5.581169,9.2144,4.402595 +L 9.2144,4.402595,9.0593,3.233769 +L 9.0593,3.233769,8.601,2.113638 +L 8.601,2.113638,7.8707,1.139608 +L 7.8707,1.139608,6.8966,0.409094 +L 6.8966,0.409094,5.7769,-0.0487 +L 5.7769,-0.0487,4.6075,-0.20454 +L 4.6075,-0.20454,3.4293,-0.0487 +L 3.4293,-0.0487,2.3185,0.409094 +L 2.3185,0.409094,1.3444,1.139608 +L 1.3444,1.139608,0.6146,2.113638 +L 0.6146,2.113638,0.1563,3.233769 +L 0.1563,3.233769,0.0007,4.402595 +L 0.0007,4.402595,0.1563,5.581169 +L 0.1563,5.581169,0.624,6.711039 +L 0.624,6.711039,1.3642,7.685061 +L 1.3642,7.685061,2.3482,8.405844 +L 2.3482,8.405844,3.4581,8.853902 +L 3.4581,8.853902,4.6075,9.000004 +L 4.6075,8.610387,3.5562,8.474025 +L 3.5562,8.474025,2.5434,8.06493 +L 2.5434,8.06493,1.6466,7.402597 +L 1.6466,7.402597,0.9649,6.506495 +L 0.9649,6.506495,0.5462,5.474023 +L 0.5462,5.474023,0.4,4.402595 +L 0.4,4.402595,0.5462,3.331167 +L 0.5462,3.331167,0.9549,2.308442 +L 0.9549,2.308442,1.6268,1.42208 +L 1.6268,1.42208,2.5137,0.749999 +L 2.5137,0.749999,3.5368,0.331166 +L 3.5368,0.331166,4.6075,0.194803 +L 4.6075,0.194803,5.6698,0.331166 +L 5.6698,0.331166,6.6925,0.749999 +L 6.6925,0.749999,7.5883,1.42208 +L 7.5883,1.42208,8.2507,2.308442 +L 8.2507,2.308442,8.6694,3.331167 +L 8.6694,3.331167,8.8061,4.402595 +L 8.8061,4.402595,8.6694,5.474023 +L 8.6694,5.474023,8.2413,6.506495 +L 8.2413,6.506495,7.5685,7.402597 +L 7.5685,7.402597,6.6732,8.06493 +L 6.6732,8.06493,5.65,8.474025 +L 5.65,8.474025,4.6075,8.610387 +L 6.8778,7.363641,7.0135,5.542205 +L 7.0135,5.542205,6.7599,5.542205 +L 6.7599,5.542205,6.4586,6.214285 +L 6.4586,6.214285,6.0196,6.7013 +L 6.0196,6.7013,5.4563,6.983763 +L 5.4563,6.983763,4.7928,7.07143 +L 4.7928,7.07143,4.2865,7.022727 +L 4.2865,7.022727,3.8485,6.85714 +L 3.8485,6.85714,3.468,6.594154 +L 3.468,6.594154,3.1672,6.262988 +L 3.1672,6.262988,2.9814,5.94156 +L 2.9814,5.94156,2.8353,5.522726 +L 2.8353,5.522726,2.7376,5.05519 +L 2.7376,5.05519,2.7079,4.548704 +L 2.7079,4.548704,2.8546,3.350653 +L 2.8546,3.350653,3.303,2.522725 +L 3.303,2.522725,3.9842,2.03571 +L 3.9842,2.03571,4.8612,1.870131 +L 4.8612,1.870131,6.0013,2.133116 +L 6.0013,2.133116,6.8778,2.922073 +L 6.8778,2.922073,7.1206,2.795449 +L 7.1206,2.795449,6.0494,1.811688 +L 6.0494,1.811688,4.6373,1.480522 +L 4.6373,1.480522,3.4491,1.694804 +L 3.4491,1.694804,2.484,2.318181 +L 2.484,2.318181,1.8418,3.253247 +L 1.8418,3.253247,1.6268,4.363639 +L 1.6268,4.363639,1.8612,5.512987 +L 1.8612,5.512987,2.5434,6.487017 +L 2.5434,6.487017,3.5755,7.14935 +L 3.5755,7.14935,4.8612,7.363641 +L 4.8612,7.363641,5.1337,7.363641 +L 5.1337,7.363641,5.3582,7.324677 +L 5.3582,7.324677,5.6307,7.256496 +L 5.6307,7.256496,6.0692,7.120133 +L 6.0692,7.120133,6.2049,7.081169 +L 6.2049,7.081169,6.3035,7.07143 +L 6.3035,7.07143,6.4006,7.081169 +L 6.4006,7.081169,6.4774,7.129872 +L 6.4774,7.129872,6.5557,7.207793 +L 6.5557,7.207793,6.6241,7.363641 +L 6.6241,7.363641,6.8778,7.363641 + +[馨] 71 +L 2.2512,7.655843,2.2022,8.250003 +L 2.2022,8.250003,2.0753,8.58117 +L 2.0753,8.58117,1.8613,8.746757 +L 1.8613,8.746757,1.5591,8.805199 +L 1.5591,8.805199,1.2866,8.766235 +L 1.2866,8.766235,1.1013,8.65909 +L 1.1013,8.65909,0.9843,8.483772 +L 0.9843,8.483772,0.9457,8.220779 +L 0.9457,8.220779,0.9259,7.977271 +L 0.9259,7.977271,0.8391,7.801945 +L 0.8391,7.801945,0.7217,7.704547 +L 0.7217,7.704547,0.5751,7.665583 +L 0.5751,7.665583,0.4299,7.694807 +L 0.4299,7.694807,0.3125,7.772728 +L 0.3125,7.772728,0.2347,7.899351 +L 0.2347,7.899351,0.2054,8.055191 +L 0.2054,8.055191,0.3031,8.396105 +L 0.3031,8.396105,0.5751,8.698047 +L 0.5751,8.698047,1.0433,8.912337 +L 1.0433,8.912337,1.7246,8.980526 +L 1.7246,8.980526,2.2606,8.931815 +L 2.2606,8.931815,2.6501,8.785714 +L 2.6501,8.785714,2.9127,8.58117 +L 2.9127,8.58117,3.0598,8.366888 +L 3.0598,8.366888,3.1178,8.084416 +L 3.1178,8.084416,3.1465,7.655843 +L 3.1465,7.655843,3.1465,6.24351 +L 3.1465,6.24351,3.1465,5.970777 +L 3.1465,5.970777,3.157,5.853901 +L 3.157,5.853901,3.1852,5.775973 +L 3.1852,5.775973,3.2253,5.717531 +L 3.2253,5.717531,3.2734,5.688314 +L 3.2734,5.688314,3.312,5.678567 +L 3.312,5.678567,3.4488,5.72727 +L 3.4488,5.72727,3.6926,5.873379 +L 3.6926,5.873379,3.6926,5.561683 +L 3.6926,5.561683,3.2937,5.288958 +L 3.2937,5.288958,3.0494,5.152596 +L 3.0494,5.152596,2.8839,5.103893 +L 2.8839,5.103893,2.719,5.084415 +L 2.719,5.084415,2.5718,5.11364 +L 2.5718,5.11364,2.436,5.220777 +L 2.436,5.220777,2.3196,5.405842 +L 2.3196,5.405842,2.2512,5.698053 +L 2.2512,5.698053,1.8519,5.444806 +L 1.8519,5.444806,1.4907,5.259741 +L 1.4907,5.259741,1.1498,5.142857 +L 1.1498,5.142857,0.8476,5.11364 +L 0.8476,5.11364,0.5265,5.172074 +L 0.5265,5.172074,0.254,5.357147 +L 0.254,5.357147,0.0687,5.620133 +L 0.0687,5.620133,0.0008,5.912335 +L 0.0008,5.912335,0.04,6.185068 +L 0.04,6.185068,0.147,6.409089 +L 0.147,6.409089,0.4195,6.711039 +L 0.4195,6.711039,0.8391,7.012988 +L 0.8391,7.012988,1.3549,7.275974 +L 1.3549,7.275974,2.2512,7.655843 +L 2.2512,7.412336,1.5878,7.139611 +L 1.5878,7.139611,1.1885,6.837662 +L 1.1885,6.837662,0.9749,6.535712 +L 0.9749,6.535712,0.9065,6.224024 +L 0.9065,6.224024,0.9457,6.009741 +L 0.9457,6.009741,1.072,5.834415 +L 1.072,5.834415,1.2568,5.707792 +L 1.2568,5.707792,1.4813,5.659089 +L 1.4813,5.659089,1.6373,5.678567 +L 1.6373,5.678567,1.8122,5.737017 +L 1.8122,5.737017,2.0174,5.824676 +L 2.0174,5.824676,2.2512,5.951299 +L 2.2512,5.951299,2.2512,7.412336 + +[犠] 12 +L 2.8831,-0.0487,2.5135,-0.0487 +L 2.5135,-0.0487,0,3.00974 +L 0,3.00974,2.5135,6.068183 +L 2.5135,6.068183,2.8831,6.068183 +L 2.8831,6.068183,1.2956,3.00974 +L 1.2956,3.00974,2.8831,-0.0487 +L 5.8148,-0.0487,5.4358,-0.0487 +L 5.4358,-0.0487,2.8831,3.00974 +L 2.8831,3.00974,5.4358,6.068183 +L 5.4358,6.068183,5.8148,6.068183 +L 5.8148,6.068183,4.2372,3.00974 +L 4.2372,3.00974,5.8148,-0.0487 + +[珪] 6 +L 0.0006,5.698053,7.014,5.698053 +L 7.014,5.698053,7.014,3.068182 +L 7.014,3.068182,6.4972,3.068182 +L 6.4972,3.068182,6.4972,5.172074 +L 6.4972,5.172074,0.0006,5.172074 +L 0.0006,5.172074,0.0006,5.698053 + +[江] 4 +L 0.0007,3.477276,3.3605,3.477276 +L 3.3605,3.477276,3.3605,2.493508 +L 3.3605,2.493508,0.0007,2.493508 +L 0.0007,2.493508,0.0007,3.477276 + +[讃] 101 +L 4.6082,9.000004,5.7478,8.853902 +L 5.7478,8.853902,6.8671,8.405844 +L 6.8671,8.405844,7.8511,7.685061 +L 7.8511,7.685061,8.5913,6.711039 +L 8.5913,6.711039,9.059,5.581169 +L 9.059,5.581169,9.2151,4.402595 +L 9.2151,4.402595,9.059,3.233769 +L 9.059,3.233769,8.6012,2.113638 +L 8.6012,2.113638,7.8704,1.139608 +L 7.8704,1.139608,6.8973,0.409094 +L 6.8973,0.409094,5.7761,-0.0487 +L 5.7761,-0.0487,4.6082,-0.20454 +L 4.6082,-0.20454,3.429,-0.0487 +L 3.429,-0.0487,2.3192,0.409094 +L 2.3192,0.409094,1.3446,1.139608 +L 1.3446,1.139608,0.6143,2.113638 +L 0.6143,2.113638,0.157,3.233769 +L 0.157,3.233769,0.0009,4.402595 +L 0.0009,4.402595,0.157,5.581169 +L 0.157,5.581169,0.6242,6.711039 +L 0.6242,6.711039,1.3644,7.685061 +L 1.3644,7.685061,2.3479,8.405844 +L 2.3479,8.405844,3.4588,8.853902 +L 3.4588,8.853902,4.6082,9.000004 +L 4.6082,8.610387,3.5559,8.474025 +L 3.5559,8.474025,2.5426,8.06493 +L 2.5426,8.06493,1.6468,7.402597 +L 1.6468,7.402597,0.9656,6.506495 +L 0.9656,6.506495,0.5459,5.474023 +L 0.5459,5.474023,0.4007,4.402595 +L 0.4007,4.402595,0.5459,3.331167 +L 0.5459,3.331167,0.9552,2.308442 +L 0.9552,2.308442,1.627,1.42208 +L 1.627,1.42208,2.5134,0.749999 +L 2.5134,0.749999,3.5365,0.331166 +L 3.5365,0.331166,4.6082,0.194803 +L 4.6082,0.194803,5.669,0.331166 +L 5.669,0.331166,6.6922,0.749999 +L 6.6922,0.749999,7.5885,1.42208 +L 7.5885,1.42208,8.2504,2.308442 +L 8.2504,2.308442,8.6696,3.331167 +L 8.6696,3.331167,8.8054,4.402595 +L 8.8054,4.402595,8.6696,5.474023 +L 8.6696,5.474023,8.241,6.506495 +L 8.241,6.506495,7.5692,7.402597 +L 7.5692,7.402597,6.6729,8.06493 +L 6.6729,8.06493,5.6497,8.474025 +L 5.6497,8.474025,4.6082,8.610387 +L 2.0551,7.227271,4.5686,7.227271 +L 4.5686,7.227271,5.3965,7.129872 +L 5.3965,7.129872,6,6.808437 +L 6,6.808437,6.3706,6.340908 +L 6.3706,6.340908,6.4975,5.775973 +L 6.4975,5.775973,6.4093,5.318183 +L 6.4093,5.318183,6.1571,4.909088 +L 6.1571,4.909088,5.7181,4.577922 +L 5.7181,4.577922,5.0557,4.334414 +L 5.0557,4.334414,6.4093,2.405841 +L 6.4093,2.405841,6.6431,2.113638 +L 6.6431,2.113638,6.8483,1.928573 +L 6.8483,1.928573,6.9944,1.860391 +L 6.9944,1.860391,7.1881,1.831167 +L 7.1881,1.831167,7.1881,1.616884 +L 7.1881,1.616884,6,1.616884 +L 6,1.616884,4.0915,4.246755 +L 4.0915,4.246755,3.5945,4.246755 +L 3.5945,4.246755,3.5945,2.240261 +L 3.5945,2.240261,3.6629,2.055196 +L 3.6629,2.055196,3.7793,1.928573 +L 3.7793,1.928573,4.0033,1.850652 +L 4.0033,1.850652,4.3645,1.831167 +L 4.3645,1.831167,4.3645,1.616884 +L 4.3645,1.616884,1.9783,1.616884 +L 1.9783,1.616884,1.9783,1.831167 +L 1.9783,1.831167,2.2508,1.850652 +L 2.2508,1.850652,2.4257,1.909095 +L 2.4257,1.909095,2.5327,1.996754 +L 2.5327,1.996754,2.611,2.123377 +L 2.611,2.123377,2.6397,2.32792 +L 2.6397,2.32792,2.6596,2.727276 +L 2.6596,2.727276,2.6596,6.126626 +L 2.6596,6.126626,2.6502,6.506495 +L 2.6502,6.506495,2.6397,6.681814 +L 2.6397,6.681814,2.5714,6.818184 +L 2.5714,6.818184,2.4743,6.915582 +L 2.4743,6.915582,2.3088,6.974024 +L 2.3088,6.974024,2.0551,6.99351 +L 2.0551,6.99351,2.0551,7.227271 +L 3.5945,4.529219,4.257,4.558436 +L 4.257,4.558436,4.7148,4.675328 +L 4.7148,4.675328,5.0259,4.850654 +L 5.0259,4.850654,5.2598,5.094154 +L 5.2598,5.094154,5.3965,5.376625 +L 5.3965,5.376625,5.4456,5.707792 +L 5.4456,5.707792,5.3579,6.194807 +L 5.3579,6.194807,5.0844,6.594154 +L 5.0844,6.594154,4.6667,6.85714 +L 4.6667,6.85714,4.14,6.944807 +L 4.14,6.944807,3.8863,6.915582 +L 3.8863,6.915582,3.5945,6.837662 +L 3.5945,6.837662,3.5945,4.529219 + +[従] 4 +L 6.8766,9.487019,0.0005,9.487019 +L 0.0005,9.487019,0.0005,10.032468 +L 0.0005,10.032468,6.8766,10.032468 +L 6.8766,10.032468,6.8766,9.487019 + +[疹] 32 +L 1.9976,8.99988,2.7666,8.853779 +L 2.7666,8.853779,3.4196,8.415459 +L 3.4196,8.415459,3.8477,7.762865 +L 3.8477,7.762865,3.9944,6.993386 +L 3.9944,6.993386,3.8477,6.233647 +L 3.8477,6.233647,3.4097,5.590784 +L 3.4097,5.590784,2.7666,5.152472 +L 2.7666,5.152472,1.9976,5.006371 +L 1.9976,5.006371,1.2277,5.152472 +L 1.2277,5.152472,0.5846,5.590784 +L 0.5846,5.590784,0.1466,6.233647 +L 0.1466,6.233647,-0.0001,6.993386 +L -0.0001,6.993386,0.1466,7.762865 +L 0.1466,7.762865,0.5846,8.415459 +L 0.5846,8.415459,1.2277,8.853779 +L 1.2277,8.853779,1.9976,8.99988 +L 1.9976,8.454423,1.4417,8.347278 +L 1.4417,8.347278,0.975,8.02585 +L 0.975,8.02585,0.6529,7.558314 +L 0.6529,7.558314,0.5459,7.003125 +L 0.5459,7.003125,0.6529,6.447929 +L 0.6529,6.447929,0.975,5.9804 +L 0.975,5.9804,1.4417,5.658965 +L 1.4417,5.658965,1.9976,5.561559 +L 1.9976,5.561559,2.5526,5.658965 +L 2.5526,5.658965,3.0203,5.9804 +L 3.0203,5.9804,3.3414,6.447929 +L 3.3414,6.447929,3.4484,7.003125 +L 3.4484,7.003125,3.3414,7.558314 +L 3.3414,7.558314,3.0203,8.02585 +L 3.0203,8.02585,2.5526,8.347278 +L 2.5526,8.347278,1.9976,8.454423 + +[曽] 16 +L 0.0001,0.915455,0.0001,1.441434 +L 0.0001,1.441434,3.233,1.441434 +L 3.233,1.441434,3.233,4.158964 +L 3.233,4.158964,0.0001,4.158964 +L 0.0001,4.158964,0.0001,4.684943 +L 0.0001,4.684943,3.233,4.684943 +L 3.233,4.684943,3.233,7.908966 +L 3.233,7.908966,3.7592,7.908966 +L 3.7592,7.908966,3.7592,4.684943 +L 3.7592,4.684943,7.0025,4.684943 +L 7.0025,4.684943,7.0025,4.158964 +L 7.0025,4.158964,3.7592,4.158964 +L 3.7592,4.158964,3.7592,1.441434 +L 3.7592,1.441434,7.0025,1.441434 +L 7.0025,1.441434,7.0025,0.915455 +L 7.0025,0.915455,0.0001,0.915455 + +[綻] 34 +L 3.6042,5.298581,3.2143,4.314812 +L 3.2143,4.314812,-0.0003,4.314812 +L -0.0003,4.314812,-0.0003,4.499878 +L -0.0003,4.499878,1.335,5.629748 +L 1.335,5.629748,2.1332,6.525849 +L 2.1332,6.525849,2.3775,7.003125 +L 2.3775,7.003125,2.4542,7.460915 +L 2.4542,7.460915,2.3869,7.821307 +L 2.3869,7.821307,2.1921,8.123256 +L 2.1921,8.123256,1.8795,8.3278 +L 1.8795,8.3278,1.5099,8.395981 +L 1.5099,8.395981,1.1591,8.347278 +L 1.1591,8.347278,0.8569,8.201177 +L 0.8569,8.201177,0.6141,7.967408 +L 0.6141,7.967408,0.4387,7.626502 +L 0.4387,7.626502,0.1464,7.626502 +L 0.1464,7.626502,0.3222,8.191437 +L 0.3222,8.191437,0.6527,8.62001 +L 0.6527,8.62001,1.1204,8.892735 +L 1.1204,8.892735,1.714,8.980402 +L 1.714,8.980402,2.3373,8.892735 +L 2.3373,8.892735,2.8353,8.610263 +L 2.8353,8.610263,3.1662,8.210916 +L 3.1662,8.210916,3.2733,7.762865 +L 3.2733,7.762865,3.1945,7.324553 +L 3.1945,7.324553,2.9606,6.847277 +L 2.9606,6.847277,2.2303,5.990139 +L 2.2303,5.990139,1.0422,4.938189 +L 1.0422,4.938189,2.2501,4.938189 +L 2.2501,4.938189,2.7178,4.957668 +L 2.7178,4.957668,3.0008,5.01611 +L 3.0008,5.01611,3.1757,5.123255 +L 3.1757,5.123255,3.3114,5.298581 +L 3.3114,5.298581,3.6042,5.298581 + +[転] 53 +L 0.0781,7.977147,0.3209,8.395981 +L 0.3209,8.395981,0.6033,8.678445 +L 0.6033,8.678445,1.0512,8.912213 +L 1.0512,8.912213,1.5675,8.980402 +L 1.5675,8.980402,2.1036,8.912213 +L 2.1036,8.912213,2.5129,8.688184 +L 2.5129,8.688184,2.7655,8.376503 +L 2.7655,8.376503,2.8537,8.02585 +L 2.8537,8.02585,2.6783,7.558314 +L 2.6783,7.558314,2.172,7.022603 +L 2.172,7.022603,2.5802,6.81806 +L 2.5802,6.81806,2.8736,6.545328 +L 2.8736,6.545328,3.0579,6.204422 +L 3.0579,6.204422,3.1163,5.84403 +L 3.1163,5.84403,2.9707,5.220653 +L 2.9707,5.220653,2.5614,4.694682 +L 2.5614,4.694682,1.8796,4.33429 +L 1.8796,4.33429,0.9541,4.217406 +L 0.9541,4.217406,0.4864,4.25637 +L 0.4864,4.25637,0.1752,4.373254 +L 0.1752,4.373254,0.0484,4.490139 +L 0.0484,4.490139,-0.0002,4.626501 +L -0.0002,4.626501,0.0286,4.723907 +L 0.0286,4.723907,0.1069,4.821305 +L 0.1069,4.821305,0.2337,4.889486 +L 0.2337,4.889486,0.3893,4.918704 +L 0.3893,4.918704,0.6033,4.879747 +L 0.6033,4.879747,0.9155,4.762863 +L 0.9155,4.762863,1.2266,4.645979 +L 1.2266,4.645979,1.5001,4.607023 +L 1.5001,4.607023,1.84,4.665465 +L 1.84,4.665465,2.1234,4.860269 +L 2.1234,4.860269,2.3176,5.132994 +L 2.3176,5.132994,2.386,5.464161 +L 2.386,5.464161,2.3474,5.746632 +L 2.3474,5.746632,2.2106,6.019357 +L 2.2106,6.019357,2.0154,6.243386 +L 2.0154,6.243386,1.7726,6.389487 +L 1.7726,6.389487,1.402,6.496632 +L 1.402,6.496632,1.071,6.535589 +L 1.071,6.535589,0.8768,6.535589 +L 0.8768,6.535589,0.8768,6.720654 +L 0.8768,6.720654,1.3435,6.798574 +L 1.3435,6.798574,1.7241,7.022603 +L 1.7241,7.022603,1.9768,7.35377 +L 1.9768,7.35377,2.065,7.723901 +L 2.065,7.723901,2.0065,8.016111 +L 2.0065,8.016111,1.8499,8.240141 +L 1.8499,8.240141,1.5972,8.395981 +L 1.5972,8.395981,1.2752,8.444676 +L 1.2752,8.444676,0.7589,8.298575 +L 0.7589,8.298575,0.3209,7.87001 +L 0.3209,7.87001,0.0781,7.977147 + +[脳] 4 +L 2.1424,9.019358,0.2239,6.779096 +L 0.2239,6.779096,0,6.779096 +L 0,6.779096,0.6803,9.019358 +L 0.6803,9.019358,2.1424,9.019358 + +[評] 63 +L 0.4089,5.951175,1.4717,5.951175 +L 1.4717,5.951175,1.4717,2.483645 +L 1.4717,2.483645,1.4999,1.69468 +L 1.4999,1.69468,1.5881,1.197926 +L 1.5881,1.197926,1.705,0.964166 +L 1.705,0.964166,1.8992,0.779093 +L 1.8992,0.779093,2.1336,0.65247 +L 2.1336,0.65247,2.3957,0.613513 +L 2.3957,0.613513,3.1563,0.837535 +L 3.1563,0.837535,3.9257,1.490137 +L 3.9257,1.490137,3.9257,5.951175 +L 3.9257,5.951175,4.9969,5.951175 +L 4.9969,5.951175,4.9969,1.704419 +L 4.9969,1.704419,5.0073,1.158963 +L 5.0073,1.158963,5.0455,0.847282 +L 5.0455,0.847282,5.1138,0.710912 +L 5.1138,0.710912,5.2011,0.603774 +L 5.2011,0.603774,5.318,0.545332 +L 5.318,0.545332,5.4349,0.516107 +L 5.4349,0.516107,5.5905,0.555071 +L 5.5905,0.555071,5.7178,0.662209 +L 5.7178,0.662209,5.8645,0.925202 +L 5.8645,0.925202,5.9611,1.32455 +L 5.9611,1.32455,6.2341,1.32455 +L 6.2341,1.32455,6.1068,0.64273 +L 6.1068,0.64273,5.8244,0.175201 +L 5.8244,0.175201,5.4349,-0.08779 +L 5.4349,-0.08779,4.9484,-0.18519 +L 4.9484,-0.18519,4.4995,-0.08779 +L 4.4995,-0.08779,4.169,0.19468 +L 4.169,0.19468,4.0134,0.545332 +L 4.0134,0.545332,3.9257,1.051825 +L 3.9257,1.051825,3.3797,0.48689 +L 3.3797,0.48689,2.8738,0.10702 +L 2.8738,0.10702,2.3868,-0.10727 +L 2.3868,-0.10727,1.8893,-0.18519 +L 1.8893,-0.18519,1.5683,-0.14622 +L 1.5683,-0.14622,1.2864,-0.04882 +L 1.2864,-0.04882,1.0906,0.10702 +L 1.0906,0.10702,0.8766,0.370006 +L 0.8766,0.370006,0.8766,0.19468 +L 0.8766,0.19468,0.8766,0.068056 +L 0.8766,0.068056,0.9252,-0.57479 +L 0.9252,-0.57479,1.0906,-1.48064 +L 1.0906,-1.48064,1.159,-1.85077 +L 1.159,-1.85077,1.1788,-2.15272 +L 1.1788,-2.15272,1.1293,-2.43519 +L 1.1293,-2.43519,0.9935,-2.66895 +L 0.9935,-2.66895,0.7988,-2.81506 +L 0.7988,-2.81506,0.565,-2.8735 +L 0.565,-2.8735,0.3504,-2.8248 +L 0.3504,-2.8248,0.1651,-2.67869 +L 0.1651,-2.67869,0.0393,-2.45466 +L 0.0393,-2.45466,-0.0004,-2.16246 +L -0.0004,-2.16246,0.0492,-1.74363 +L 0.0492,-1.74363,0.1953,-1.09103 +L 0.1953,-1.09103,0.2919,-0.66245 +L 0.2919,-0.66245,0.3321,-0.41895 +L 0.3321,-0.41895,0.3891,0.204419 +L 0.3891,0.204419,0.4089,0.749876 +L 0.4089,0.749876,0.4089,0.886238 +L 0.4089,0.886238,0.4089,1.23689 +L 0.4089,1.23689,0.4089,5.951175 + +[望] 22 +L 5.2701,8.444676,5.2701,-2.8735 +L 5.2701,-2.8735,4.8018,-2.8735 +L 4.8018,-2.8735,4.8018,8.444676 +L 4.8018,8.444676,3.5845,8.444676 +L 3.5845,8.444676,3.5845,-2.8735 +L 3.5845,-2.8735,3.1168,-2.8735 +L 3.1168,-2.8735,3.1168,3.905718 +L 3.1168,3.905718,2.0262,4.012863 +L 2.0262,4.012863,1.2563,4.227153 +L 1.2563,4.227153,0.7217,4.577798 +L 0.7217,4.577798,0.3213,5.084291 +L 0.3213,5.084291,0.078,5.68819 +L 0.078,5.68819,0.0003,6.370009 +L 0.0003,6.370009,0.0686,7.012864 +L 0.0686,7.012864,0.2728,7.538835 +L 0.2728,7.538835,0.7113,8.084292 +L 0.7113,8.084292,1.2766,8.483648 +L 1.2766,8.483648,2.0069,8.727148 +L 2.0069,8.727148,2.922,8.805068 +L 2.922,8.805068,6.1366,8.805068 +L 6.1366,8.805068,6.1366,8.444676 +L 6.1366,8.444676,5.2701,8.444676 + +[余] 42 +L 0.7203,5.123255,0.9928,5.064813 +L 0.9928,5.064813,1.2267,4.908964 +L 1.2267,4.908964,1.3823,4.675196 +L 1.3823,4.675196,1.4407,4.402472 +L 1.4407,4.402472,1.3823,4.120008 +L 1.3823,4.120008,1.2267,3.895979 +L 1.2267,3.895979,0.9928,3.730399 +L 0.9928,3.730399,0.7203,3.681696 +L 0.7203,3.681696,0.4379,3.730399 +L 0.4379,3.730399,0.204,3.895979 +L 0.204,3.895979,0.0485,4.120008 +L 0.0485,4.120008,-0.0001,4.402472 +L -0.0001,4.402472,0.0485,4.675196 +L 0.0485,4.675196,0.204,4.908964 +L 0.204,4.908964,0.4379,5.064813 +L 0.4379,5.064813,0.7203,5.123255 +L 4.0271,0.10702,4.4165,0.10702 +L 4.4165,0.10702,4.0855,-0.40921 +L 4.0855,-0.40921,4.4462,-0.54558 +L 4.4462,-0.54558,4.6989,-0.75986 +L 4.6989,-0.75986,4.8456,-1.03258 +L 4.8456,-1.03258,4.9041,-1.35402 +L 4.9041,-1.35402,4.8059,-1.79232 +L 4.8059,-1.79232,4.5136,-2.18194 +L 4.5136,-2.18194,4.0657,-2.44493 +L 4.0657,-2.44493,3.5009,-2.53259 +L 3.5009,-2.53259,3.2284,-2.52285 +L 3.2284,-2.52285,2.8974,-2.48389 +L 2.8974,-2.48389,2.8974,-2.21116 +L 2.8974,-2.21116,3.0629,-2.23064 +L 3.0629,-2.23064,3.2086,-2.23064 +L 3.2086,-2.23064,3.5108,-2.18194 +L 3.5108,-2.18194,3.7635,-2.01635 +L 3.7635,-2.01635,3.93,-1.78258 +L 3.93,-1.78258,3.9874,-1.5196 +L 3.9874,-1.5196,3.9488,-1.33453 +L 3.9488,-1.33453,3.8418,-1.17869 +L 3.8418,-1.17869,3.6763,-1.07155 +L 3.6763,-1.07155,3.4721,-1.04232 +L 3.4721,-1.04232,3.3939,-1.04232 +L 3.3939,-1.04232,3.3067,-1.05207 +L 3.3067,-1.05207,4.0271,0.10702 + +[肋] 60 +L 0,8.415459,1.3249,8.980402 +L 1.3249,8.980402,1.5583,8.980402 +L 1.5583,8.980402,1.5583,5.142733 +L 1.5583,5.142733,1.5682,4.831044 +L 1.5682,4.831044,1.5974,4.665465 +L 1.5974,4.665465,1.6366,4.607023 +L 1.6366,4.607023,1.6955,4.568059 +L 1.6955,4.568059,1.8794,4.529095 +L 1.8794,4.529095,2.2113,4.519356 +L 2.2113,4.519356,2.2113,4.314812 +L 2.2113,4.314812,0.0981,4.314812 +L 0.0981,4.314812,0.0981,4.519356 +L 0.0981,4.519356,0.439,4.529095 +L 0.439,4.529095,0.6233,4.568059 +L 0.6233,4.568059,0.6823,4.607023 +L 0.6823,4.607023,0.7309,4.665465 +L 0.7309,4.665465,0.7497,4.821305 +L 0.7497,4.821305,0.7596,5.142733 +L 0.7596,5.142733,0.7596,7.56806 +L 0.7596,7.56806,0.7497,7.94793 +L 0.7497,7.94793,0.7309,8.181698 +L 0.7309,8.181698,0.7011,8.269358 +L 0.7011,8.269358,0.6625,8.3278 +L 0.6625,8.3278,0.6045,8.357017 +L 0.6045,8.357017,0.5361,8.366764 +L 0.5361,8.366764,0.3602,8.337539 +L 0.3602,8.337539,0.0981,8.240141 +L 0.0981,8.240141,0,8.415459 +L 4.6247,8.980402,5.365,8.844032 +L 5.365,8.844032,5.9595,8.434945 +L 5.9595,8.434945,6.3589,7.821307 +L 6.3589,7.821307,6.4852,7.081045 +L 6.4852,7.081045,6.3386,6.331045 +L 6.3386,6.331045,5.9105,5.697929 +L 5.9105,5.697929,5.2773,5.259617 +L 5.2773,5.259617,4.537,5.113516 +L 4.537,5.113516,3.836,5.240139 +L 3.836,5.240139,3.2419,5.639487 +L 3.2419,5.639487,2.843,6.233647 +L 2.843,6.233647,2.7063,6.9739 +L 2.7063,6.9739,2.843,7.792082 +L 2.843,7.792082,3.2419,8.425206 +L 3.2419,8.425206,3.8558,8.844032 +L 3.8558,8.844032,4.6247,8.980402 +L 4.4404,8.707662,4.1278,8.629749 +L 4.1278,8.629749,3.8642,8.415459 +L 3.8642,8.415459,3.6799,8.035589 +L 3.6799,8.035589,3.6214,7.480401 +L 3.6214,7.480401,3.7384,6.545328 +L 3.7384,6.545328,4.0698,5.814813 +L 4.0698,5.814813,4.3617,5.532342 +L 4.3617,5.532342,4.7313,5.444682 +L 4.7313,5.444682,5.0731,5.512864 +L 5.0731,5.512864,5.3457,5.727146 +L 5.3457,5.727146,5.53,6.097277 +L 5.53,6.097277,5.5889,6.642734 +L 5.5889,6.642734,5.4715,7.56806 +L 5.4715,7.56806,5.1321,8.298575 +L 5.1321,8.298575,4.8195,8.600524 +L 4.8195,8.600524,4.4404,8.707662 + +[兢] 12 +L 2.9319,6.06806,3.3025,6.06806 +L 3.3025,6.06806,5.8155,2.999877 +L 5.8155,2.999877,3.3025,-0.04882 +L 3.3025,-0.04882,2.9319,-0.04882 +L 2.9319,-0.04882,4.5194,2.999877 +L 4.5194,2.999877,2.9319,6.06806 +L -0.0003,6.06806,0.3703,6.06806 +L 0.3703,6.06806,2.9319,2.999877 +L 2.9319,2.999877,0.3703,-0.04882 +L 0.3703,-0.04882,-0.0003,-0.04882 +L -0.0003,-0.04882,1.5782,2.999877 +L 1.5782,2.999877,-0.0003,6.06806 + +[咯] 46 +L -0.0002,8.415459,1.3346,8.980402 +L 1.3346,8.980402,1.5586,8.980402 +L 1.5586,8.980402,1.5586,5.142733 +L 1.5586,5.142733,1.5685,4.831044 +L 1.5685,4.831044,1.5972,4.665465 +L 1.5972,4.665465,1.6458,4.607023 +L 1.6458,4.607023,1.7052,4.568059 +L 1.7052,4.568059,1.8806,4.529095 +L 1.8806,4.529095,2.2205,4.519356 +L 2.2205,4.519356,2.2205,4.314812 +L 2.2205,4.314812,0.1078,4.314812 +L 0.1078,4.314812,0.1078,4.519356 +L 0.1078,4.519356,0.4487,4.529095 +L 0.4487,4.529095,0.6231,4.568059 +L 0.6231,4.568059,0.6915,4.607023 +L 0.6915,4.607023,0.7401,4.665465 +L 0.7401,4.665465,0.7599,4.821305 +L 0.7599,4.821305,0.7698,5.142733 +L 0.7698,5.142733,0.7698,7.56806 +L 0.7698,7.56806,0.7599,7.94793 +L 0.7599,7.94793,0.7401,8.181698 +L 0.7401,8.181698,0.7113,8.269358 +L 0.7113,8.269358,0.6727,8.3278 +L 0.6727,8.3278,0.6142,8.357017 +L 0.6142,8.357017,0.5458,8.366764 +L 0.5458,8.366764,0.3704,8.337539 +L 0.3704,8.337539,0.1078,8.240141 +L 0.1078,8.240141,-0.0002,8.415459 +L 7.52,8.980402,1.4615,-0.35077 +L 1.4615,-0.35077,0.8768,-0.35077 +L 0.8768,-0.35077,6.9453,8.980402 +L 6.9453,8.980402,7.52,8.980402 +L 8.8737,1.451173,8.8737,0.925202 +L 8.8737,0.925202,8.1721,0.925202 +L 8.1721,0.925202,8.1721,-0.26311 +L 8.1721,-0.26311,7.413,-0.26311 +L 7.413,-0.26311,7.413,0.925202 +L 7.413,0.925202,5.1913,0.925202 +L 5.1913,0.925202,5.1913,1.402478 +L 5.1913,1.402478,7.6271,4.421957 +L 7.6271,4.421957,8.1721,4.421957 +L 8.1721,4.421957,8.1721,1.451173 +L 8.1721,1.451173,8.8737,1.451173 +L 7.413,1.451173,7.413,3.50637 +L 7.413,3.50637,5.7274,1.451173 +L 5.7274,1.451173,7.413,1.451173 + +[嫋] 66 +L -0.0005,8.415459,1.3333,8.980402 +L 1.3333,8.980402,1.5572,8.980402 +L 1.5572,8.980402,1.5572,5.142733 +L 1.5572,5.142733,1.5671,4.831044 +L 1.5671,4.831044,1.5969,4.665465 +L 1.5969,4.665465,1.6454,4.607023 +L 1.6454,4.607023,1.7039,4.568059 +L 1.7039,4.568059,1.8793,4.529095 +L 1.8793,4.529095,2.2202,4.519356 +L 2.2202,4.519356,2.2202,4.314812 +L 2.2202,4.314812,0.1065,4.314812 +L 0.1065,4.314812,0.1065,4.519356 +L 0.1065,4.519356,0.4474,4.529095 +L 0.4474,4.529095,0.6228,4.568059 +L 0.6228,4.568059,0.6911,4.607023 +L 0.6911,4.607023,0.7397,4.665465 +L 0.7397,4.665465,0.7585,4.821305 +L 0.7585,4.821305,0.7684,5.142733 +L 0.7684,5.142733,0.7684,7.56806 +L 0.7684,7.56806,0.7585,7.94793 +L 0.7585,7.94793,0.7397,8.181698 +L 0.7397,8.181698,0.71,8.269358 +L 0.71,8.269358,0.6713,8.3278 +L 0.6713,8.3278,0.6129,8.357017 +L 0.6129,8.357017,0.5445,8.366764 +L 0.5445,8.366764,0.3691,8.337539 +L 0.3691,8.337539,0.1065,8.240141 +L 0.1065,8.240141,-0.0005,8.415459 +L 7.3631,8.980402,1.2946,-0.35077 +L 1.2946,-0.35077,0.7199,-0.35077 +L 0.7199,-0.35077,6.7884,8.980402 +L 6.7884,8.980402,7.3631,8.980402 +L 8.8337,0.730397,8.4343,-0.26311 +L 8.4343,-0.26311,5.2296,-0.26311 +L 5.2296,-0.26311,5.2296,-0.0683 +L 5.2296,-0.0683,6.5644,1.061564 +L 6.5644,1.061564,7.3532,1.967413 +L 7.3532,1.967413,7.597,2.434942 +L 7.597,2.434942,7.6842,2.892732 +L 7.6842,2.892732,7.6158,3.262862 +L 7.6158,3.262862,7.4117,3.564812 +L 7.4117,3.564812,7.1094,3.759616 +L 7.1094,3.759616,6.7299,3.827797 +L 6.7299,3.827797,6.389,3.779094 +L 6.389,3.779094,6.0868,3.642732 +L 6.0868,3.642732,5.843,3.399225 +L 5.843,3.399225,5.6577,3.068058 +L 5.6577,3.068058,5.3763,3.068058 +L 5.3763,3.068058,5.5418,3.623254 +L 5.5418,3.623254,5.8728,4.061566 +L 5.8728,4.061566,6.3494,4.33429 +L 6.3494,4.33429,6.944,4.421957 +L 6.944,4.421957,7.5673,4.324551 +L 7.5673,4.324551,8.0637,4.04208 +L 8.0637,4.04208,8.3858,3.642732 +L 8.3858,3.642732,8.4928,3.20442 +L 8.4928,3.20442,8.4145,2.756369 +L 8.4145,2.756369,8.1806,2.279094 +L 8.1806,2.279094,7.4602,1.421956 +L 7.4602,1.421956,6.2622,0.370006 +L 6.2622,0.370006,7.4801,0.370006 +L 7.4801,0.370006,7.9468,0.389484 +L 7.9468,0.389484,8.2203,0.447926 +L 8.2203,0.447926,8.3957,0.555071 +L 8.3957,0.555071,8.5414,0.730397 +L 8.5414,0.730397,8.8337,0.730397 + +[彎] 68 +L 8.0168,8.980402,1.977,-0.35077 +L 1.977,-0.35077,1.3929,-0.35077 +L 1.3929,-0.35077,7.4619,8.980402 +L 7.4619,8.980402,8.0168,8.980402 +L 0.068,7.977147,0.3212,8.395981 +L 0.3212,8.395981,0.5947,8.678445 +L 0.5947,8.678445,1.0421,8.912213 +L 1.0421,8.912213,1.5688,8.980402 +L 1.5688,8.980402,2.0935,8.912213 +L 2.0935,8.912213,2.5027,8.688184 +L 2.5027,8.688184,2.7663,8.376503 +L 2.7663,8.376503,2.854,8.02585 +L 2.854,8.02585,2.6786,7.558314 +L 2.6786,7.558314,2.1722,7.022603 +L 2.1722,7.022603,2.5815,6.81806 +L 2.5815,6.81806,2.8733,6.545328 +L 2.8733,6.545328,3.0492,6.204422 +L 3.0492,6.204422,3.1072,5.84403 +L 3.1072,5.84403,2.9704,5.220653 +L 2.9704,5.220653,2.5528,4.694682 +L 2.5528,4.694682,1.8799,4.33429 +L 1.8799,4.33429,0.9549,4.217406 +L 0.9549,4.217406,0.4876,4.25637 +L 0.4876,4.25637,0.1656,4.373254 +L 0.1656,4.373254,0.0392,4.490139 +L 0.0392,4.490139,-0.0004,4.626501 +L -0.0004,4.626501,0.0298,4.723907 +L 0.0298,4.723907,0.1066,4.821305 +L 0.1066,4.821305,0.2335,4.889486 +L 0.2335,4.889486,0.3801,4.918704 +L 0.3801,4.918704,0.6041,4.879747 +L 0.6041,4.879747,0.9058,4.762863 +L 0.9058,4.762863,1.2279,4.645979 +L 1.2279,4.645979,1.5004,4.607023 +L 1.5004,4.607023,1.8413,4.665465 +L 1.8413,4.665465,2.1232,4.860269 +L 2.1232,4.860269,2.3189,5.132994 +L 2.3189,5.132994,2.3863,5.464161 +L 2.3863,5.464161,2.2887,5.892733 +L 2.2887,5.892733,2.0167,6.243386 +L 2.0167,6.243386,1.5484,6.467407 +L 1.5484,6.467407,0.8766,6.535589 +L 0.8766,6.535589,0.8766,6.720654 +L 0.8766,6.720654,1.3349,6.798574 +L 1.3349,6.798574,1.7144,7.022603 +L 1.7144,7.022603,1.977,7.35377 +L 1.977,7.35377,2.0548,7.723901 +L 2.0548,7.723901,2.0068,8.016111 +L 2.0068,8.016111,1.8413,8.240141 +L 1.8413,8.240141,1.597,8.395981 +L 1.597,8.395981,1.2764,8.444676 +L 1.2764,8.444676,0.7602,8.298575 +L 0.7602,8.298575,0.3212,7.87001 +L 0.3212,7.87001,0.068,7.977147 +L 9.4675,1.451173,9.4675,0.925202 +L 9.4675,0.925202,8.7669,0.925202 +L 8.7669,0.925202,8.7669,-0.26311 +L 8.7669,-0.26311,8.0168,-0.26311 +L 8.0168,-0.26311,8.0168,0.925202 +L 8.0168,0.925202,5.7862,0.925202 +L 5.7862,0.925202,5.7862,1.402478 +L 5.7862,1.402478,8.2209,4.421957 +L 8.2209,4.421957,8.7669,4.421957 +L 8.7669,4.421957,8.7669,1.451173 +L 8.7669,1.451173,9.4675,1.451173 +L 8.0168,1.451173,8.0168,3.50637 +L 8.0168,3.50637,6.3312,1.451173 +L 6.3312,1.451173,8.0168,1.451173 + +[拆] 59 +L 2.3572,6.331045,2.6396,6.272603 +L 2.6396,6.272603,2.8745,6.116763 +L 2.8745,6.116763,3.029,5.882994 +L 3.029,5.882994,3.0776,5.61027 +L 3.0776,5.61027,3.029,5.327798 +L 3.029,5.327798,2.8745,5.103769 +L 2.8745,5.103769,2.6396,4.938189 +L 2.6396,4.938189,2.3572,4.889486 +L 2.3572,4.889486,2.0847,4.938189 +L 2.0847,4.938189,1.8508,5.103769 +L 1.8508,5.103769,1.6962,5.327798 +L 1.6962,5.327798,1.6368,5.61027 +L 1.6368,5.61027,1.6962,5.882994 +L 1.6962,5.882994,1.8508,6.116763 +L 1.8508,6.116763,2.0847,6.272603 +L 2.0847,6.272603,2.3572,6.331045 +L 2.2888,4.061566,2.5425,4.061566 +L 2.5425,4.061566,2.484,3.340783 +L 2.484,3.340783,2.3859,2.785587 +L 2.3859,2.785587,2.1521,2.15247 +L 2.1521,2.15247,1.725,1.188187 +L 1.725,1.188187,1.3147,0.155723 +L 1.3147,0.155723,1.1889,-0.69168 +L 1.1889,-0.69168,1.2959,-1.45142 +L 1.2959,-1.45142,1.617,-2.01635 +L 1.617,-2.01635,2.1035,-2.36701 +L 2.1035,-2.36701,2.7179,-2.48389 +L 2.7179,-2.48389,3.2243,-2.4157 +L 3.2243,-2.4157,3.6038,-2.21116 +L 3.6038,-2.21116,3.8485,-1.93843 +L 3.8485,-1.93843,3.9348,-1.62674 +L 3.9348,-1.62674,3.8763,-1.39298 +L 3.8763,-1.39298,3.7306,-1.08129 +L 3.7306,-1.08129,3.576,-0.7696 +L 3.576,-0.7696,3.5255,-0.5261 +L 3.5255,-0.5261,3.5651,-0.32155 +L 3.5651,-0.32155,3.6831,-0.15597 +L 3.6831,-0.15597,3.8575,-0.03908 +L 3.8575,-0.03908,4.0527,-0.00012 +L 4.0527,-0.00012,4.3163,-0.0683 +L 4.3163,-0.0683,4.5482,-0.27284 +L 4.5482,-0.27284,4.7146,-0.58453 +L 4.7146,-0.58453,4.7731,-0.98389 +L 4.7731,-0.98389,4.6165,-1.68519 +L 4.6165,-1.68519,4.1399,-2.29882 +L 4.1399,-2.29882,3.3897,-2.7274 +L 3.3897,-2.7274,2.4157,-2.8735 +L 2.4157,-2.8735,1.4227,-2.71765 +L 1.4227,-2.71765,0.6538,-2.25986 +L 0.6538,-2.25986,0.1652,-1.59753 +L 0.1652,-1.59753,-0.0003,-0.80856 +L -0.0003,-0.80856,0.0483,-0.29233 +L 0.0483,-0.29233,0.195,0.175201 +L 0.195,0.175201,0.5745,0.857021 +L 0.5745,0.857021,1.1691,1.61676 +L 1.1691,1.61676,1.7339,2.327797 +L 1.7339,2.327797,2.055,2.853775 +L 2.055,2.853775,2.2105,3.379747 +L 2.2105,3.379747,2.2888,4.061566 + +[枉] 39 +L 5.9817,2.951174,2.5719,2.951174 +L 2.5719,2.951174,1.9684,1.558318 +L 1.9684,1.558318,1.8029,1.110267 +L 1.8029,1.110267,1.7543,0.78884 +L 1.7543,0.78884,1.8029,0.603774 +L 1.8029,0.603774,1.9387,0.438187 +L 1.9387,0.438187,2.2409,0.311564 +L 2.2409,0.311564,2.7671,0.243383 +L 2.7671,0.243383,2.7671,-0.00012 +L 2.7671,-0.00012,0.0004,-0.00012 +L 0.0004,-0.00012,0.0004,0.243383 +L 0.0004,0.243383,0.4483,0.350528 +L 0.4483,0.350528,0.7119,0.496629 +L 0.7119,0.496629,1.0627,0.964166 +L 1.0627,0.964166,1.4422,1.762862 +L 1.4422,1.762862,4.5399,8.99988 +L 4.5399,8.99988,4.7737,8.99988 +L 4.7737,8.99988,7.8318,1.684941 +L 7.8318,1.684941,8.1826,0.954419 +L 8.1826,0.954419,8.5046,0.535593 +L 8.5046,0.535593,8.8643,0.331042 +L 8.8643,0.331042,9.342,0.243383 +L 9.342,0.243383,9.342,-0.00012 +L 9.342,-0.00012,5.8737,-0.00012 +L 5.8737,-0.00012,5.8737,0.243383 +L 5.8737,0.243383,6.3127,0.301825 +L 6.3127,0.301825,6.5852,0.418709 +L 6.5852,0.418709,6.7219,0.584288 +L 6.7219,0.584288,6.7705,0.779093 +L 6.7705,0.779093,6.7021,1.149223 +L 6.7021,1.149223,6.5069,1.684941 +L 6.5069,1.684941,5.9817,2.951174 +L 5.7964,3.428442,4.306,6.983639 +L 4.306,6.983639,2.7671,3.428442 +L 2.7671,3.428442,5.7964,3.428442 +L 3.2249,11.658968,4.6667,11.658968 +L 4.6667,11.658968,5.3584,9.428445 +L 5.3584,9.428445,5.1344,9.428445 +L 5.1344,9.428445,3.2249,11.658968 + +[歉] 39 +L 5.9813,2.951174,2.5715,2.951174 +L 2.5715,2.951174,1.968,1.558318 +L 1.968,1.558318,1.8025,1.110267 +L 1.8025,1.110267,1.754,0.78884 +L 1.754,0.78884,1.8025,0.603774 +L 1.8025,0.603774,1.9383,0.438187 +L 1.9383,0.438187,2.2405,0.311564 +L 2.2405,0.311564,2.7667,0.243383 +L 2.7667,0.243383,2.7667,-0.00012 +L 2.7667,-0.00012,0,-0.00012 +L 0,-0.00012,0,0.243383 +L 0,0.243383,0.4479,0.350528 +L 0.4479,0.350528,0.7115,0.496629 +L 0.7115,0.496629,1.0623,0.964166 +L 1.0623,0.964166,1.4428,1.762862 +L 1.4428,1.762862,4.5395,8.99988 +L 4.5395,8.99988,4.7744,8.99988 +L 4.7744,8.99988,7.8324,1.684941 +L 7.8324,1.684941,8.1822,0.954419 +L 8.1822,0.954419,8.5033,0.535593 +L 8.5033,0.535593,8.864,0.331042 +L 8.864,0.331042,9.3416,0.243383 +L 9.3416,0.243383,9.3416,-0.00012 +L 9.3416,-0.00012,5.8733,-0.00012 +L 5.8733,-0.00012,5.8733,0.243383 +L 5.8733,0.243383,6.3123,0.301825 +L 6.3123,0.301825,6.5848,0.418709 +L 6.5848,0.418709,6.7225,0.584288 +L 6.7225,0.584288,6.7701,0.779093 +L 6.7701,0.779093,6.7017,1.149223 +L 6.7017,1.149223,6.5065,1.684941 +L 6.5065,1.684941,5.9813,2.951174 +L 5.796,3.428442,4.3057,6.983639 +L 4.3057,6.983639,2.7667,3.428442 +L 2.7667,3.428442,5.796,3.428442 +L 6.127,11.658968,4.2075,9.428445 +L 4.2075,9.428445,3.9846,9.428445 +L 3.9846,9.428445,4.6673,11.658968 +L 4.6673,11.658968,6.127,11.658968 + +[] 42 +L 5.982,2.951174,2.5731,2.951174 +L 2.5731,2.951174,1.9697,1.558318 +L 1.9697,1.558318,1.8042,1.110267 +L 1.8042,1.110267,1.7536,0.78884 +L 1.7536,0.78884,1.8042,0.603774 +L 1.8042,0.603774,1.9389,0.438187 +L 1.9389,0.438187,2.2412,0.311564 +L 2.2412,0.311564,2.7674,0.243383 +L 2.7674,0.243383,2.7674,-0.00012 +L 2.7674,-0.00012,0.0007,-0.00012 +L 0.0007,-0.00012,0.0007,0.243383 +L 0.0007,0.243383,0.4486,0.350528 +L 0.4486,0.350528,0.7122,0.496629 +L 0.7122,0.496629,1.0629,0.964166 +L 1.0629,0.964166,1.4425,1.762862 +L 1.4425,1.762862,4.5401,8.99988 +L 4.5401,8.99988,4.773,8.99988 +L 4.773,8.99988,7.832,1.684941 +L 7.832,1.684941,8.1828,0.954419 +L 8.1828,0.954419,8.5039,0.535593 +L 8.5039,0.535593,8.8656,0.331042 +L 8.8656,0.331042,9.3432,0.243383 +L 9.3432,0.243383,9.3432,-0.00012 +L 9.3432,-0.00012,5.8749,-0.00012 +L 5.8749,-0.00012,5.8749,0.243383 +L 5.8749,0.243383,6.3139,0.301825 +L 6.3139,0.301825,6.5854,0.418709 +L 6.5854,0.418709,6.7212,0.584288 +L 6.7212,0.584288,6.7707,0.779093 +L 6.7707,0.779093,6.7024,1.149223 +L 6.7024,1.149223,6.5072,1.684941 +L 6.5072,1.684941,5.982,2.951174 +L 5.7967,3.428442,4.3063,6.983639 +L 4.3063,6.983639,2.7674,3.428442 +L 2.7674,3.428442,5.7967,3.428442 +L 4.0724,11.63949,5.2705,11.63949 +L 5.2705,11.63949,6.4972,9.496634 +L 6.4972,9.496634,6.303,9.496634 +L 6.303,9.496634,4.5302,10.870011 +L 4.5302,10.870011,3.0399,9.486895 +L 3.0399,9.486895,2.8456,9.486895 +L 2.8456,9.486895,4.0724,11.63949 + +[。] 67 +L 5.9806,2.951174,2.5718,2.951174 +L 2.5718,2.951174,1.9683,1.558318 +L 1.9683,1.558318,1.8028,1.110267 +L 1.8028,1.110267,1.7543,0.78884 +L 1.7543,0.78884,1.8028,0.603774 +L 1.8028,0.603774,1.9386,0.438187 +L 1.9386,0.438187,2.2408,0.311564 +L 2.2408,0.311564,2.768,0.243383 +L 2.768,0.243383,2.768,-0.00012 +L 2.768,-0.00012,0.0003,-0.00012 +L 0.0003,-0.00012,0.0003,0.243383 +L 0.0003,0.243383,0.4482,0.350528 +L 0.4482,0.350528,0.7128,0.496629 +L 0.7128,0.496629,1.0616,0.964166 +L 1.0616,0.964166,1.4421,1.762862 +L 1.4421,1.762862,4.5398,8.99988 +L 4.5398,8.99988,4.7737,8.99988 +L 4.7737,8.99988,7.8317,1.684941 +L 7.8317,1.684941,8.1835,0.954419 +L 8.1835,0.954419,8.5035,0.535593 +L 8.5035,0.535593,8.8642,0.331042 +L 8.8642,0.331042,9.3419,0.243383 +L 9.3419,0.243383,9.3419,-0.00012 +L 9.3419,-0.00012,5.8736,-0.00012 +L 5.8736,-0.00012,5.8736,0.243383 +L 5.8736,0.243383,6.3116,0.301825 +L 6.3116,0.301825,6.5851,0.418709 +L 6.5851,0.418709,6.7208,0.584288 +L 6.7208,0.584288,6.7714,0.779093 +L 6.7714,0.779093,6.703,1.149223 +L 6.703,1.149223,6.5068,1.684941 +L 6.5068,1.684941,5.9806,2.951174 +L 5.7973,3.428442,4.3059,6.983639 +L 4.3059,6.983639,2.768,3.428442 +L 2.768,3.428442,5.7973,3.428442 +L 2.8057,9.506373,2.6015,9.506373 +L 2.6015,9.506373,2.7085,10.275851 +L 2.7085,10.275851,2.9721,10.792083 +L 2.9721,10.792083,3.3507,11.094033 +L 3.3507,11.094033,3.8184,11.191431 +L 3.8184,11.191431,4.0721,11.171953 +L 4.0721,11.171953,4.3059,11.103772 +L 4.3059,11.103772,4.6567,10.938185 +L 4.6567,10.938185,5.1334,10.636243 +L 5.1334,10.636243,5.6011,10.373258 +L 5.6011,10.373258,5.9331,10.285591 +L 5.9331,10.285591,6.1273,10.334286 +L 6.1273,10.334286,6.2928,10.460909 +L 6.2928,10.460909,6.4394,10.733641 +L 6.4394,10.733641,6.5464,11.191431 +L 6.5464,11.191431,6.7506,11.191431 +L 6.7506,11.191431,6.7109,10.645982 +L 6.7109,10.645982,6.5851,10.227148 +L 6.5851,10.227148,6.3899,9.91546 +L 6.3899,9.91546,6.1174,9.681691 +L 6.1174,9.681691,5.8151,9.53559 +L 5.8151,9.53559,5.5129,9.486895 +L 5.5129,9.486895,4.9391,9.613518 +L 4.9391,9.613518,4.2376,10.003127 +L 4.2376,10.003127,3.8967,10.227148 +L 3.8967,10.227148,3.6925,10.334286 +L 3.6925,10.334286,3.5459,10.382997 +L 3.5459,10.382997,3.4101,10.392736 +L 3.4101,10.392736,3.1673,10.334286 +L 3.1673,10.334286,2.991,10.158967 +L 2.991,10.158967,2.9038,9.944685 +L 2.9038,9.944685,2.8057,9.506373 + +[「] 67 +L 5.9803,2.951174,2.5714,2.951174 +L 2.5714,2.951174,1.967,1.558318 +L 1.967,1.558318,1.8025,1.110267 +L 1.8025,1.110267,1.7529,0.78884 +L 1.7529,0.78884,1.8025,0.603774 +L 1.8025,0.603774,1.9382,0.438187 +L 1.9382,0.438187,2.2405,0.311564 +L 2.2405,0.311564,2.7666,0.243383 +L 2.7666,0.243383,2.7666,-0.00012 +L 2.7666,-0.00012,0.0009,-0.00012 +L 0.0009,-0.00012,0.0009,0.243383 +L 0.0009,0.243383,0.4479,0.350528 +L 0.4479,0.350528,0.7114,0.496629 +L 0.7114,0.496629,1.0622,0.964166 +L 1.0622,0.964166,1.4428,1.762862 +L 1.4428,1.762862,4.5404,8.99988 +L 4.5404,8.99988,4.7723,8.99988 +L 4.7723,8.99988,7.8313,1.684941 +L 7.8313,1.684941,8.1821,0.954419 +L 8.1821,0.954419,8.5032,0.535593 +L 8.5032,0.535593,8.8639,0.331042 +L 8.8639,0.331042,9.3405,0.243383 +L 9.3405,0.243383,9.3405,-0.00012 +L 9.3405,-0.00012,5.8732,-0.00012 +L 5.8732,-0.00012,5.8732,0.243383 +L 5.8732,0.243383,6.3122,0.301825 +L 6.3122,0.301825,6.5847,0.418709 +L 6.5847,0.418709,6.7205,0.584288 +L 6.7205,0.584288,6.769,0.779093 +L 6.769,0.779093,6.7017,1.149223 +L 6.7017,1.149223,6.5064,1.684941 +L 6.5064,1.684941,5.9803,2.951174 +L 5.7959,3.428442,4.3066,6.983639 +L 4.3066,6.983639,2.7666,3.428442 +L 2.7666,3.428442,5.7959,3.428442 +L 5.8049,11.084294,6.0784,11.035591 +L 6.0784,11.035591,6.3023,10.879751 +L 6.3023,10.879751,6.4589,10.645982 +L 6.4589,10.645982,6.5064,10.373258 +L 6.5064,10.373258,6.4589,10.110272 +L 6.4589,10.110272,6.3023,9.876504 +L 6.3023,9.876504,6.0784,9.730395 +L 6.0784,9.730395,5.8049,9.681691 +L 5.8049,9.681691,5.5324,9.730395 +L 5.5324,9.730395,5.3084,9.876504 +L 5.3084,9.876504,5.1528,10.110272 +L 5.1528,10.110272,5.1043,10.373258 +L 5.1043,10.373258,5.1528,10.645982 +L 5.1528,10.645982,5.3084,10.879751 +L 5.3084,10.879751,5.5324,11.035591 +L 5.5324,11.035591,5.8049,11.084294 +L 3.5158,11.084294,3.7893,11.035591 +L 3.7893,11.035591,4.0232,10.879751 +L 4.0232,10.879751,4.1698,10.645982 +L 4.1698,10.645982,4.2273,10.373258 +L 4.2273,10.373258,4.1698,10.110272 +L 4.1698,10.110272,4.0132,9.876504 +L 4.0132,9.876504,3.7893,9.730395 +L 3.7893,9.730395,3.5257,9.671952 +L 3.5257,9.671952,3.2532,9.730395 +L 3.2532,9.730395,3.0193,9.876504 +L 3.0193,9.876504,2.8638,10.110272 +L 2.8638,10.110272,2.8152,10.373258 +L 2.8152,10.373258,2.8638,10.645982 +L 2.8638,10.645982,3.0193,10.879751 +L 3.0193,10.879751,3.2433,11.035591 +L 3.2433,11.035591,3.5158,11.084294 + +[」] 67 +L 5.9819,2.951174,2.5721,2.951174 +L 2.5721,2.951174,1.9686,1.558318 +L 1.9686,1.558318,1.8031,1.110267 +L 1.8031,1.110267,1.7536,0.78884 +L 1.7536,0.78884,1.8031,0.603774 +L 1.8031,0.603774,1.9399,0.438187 +L 1.9399,0.438187,2.2421,0.311564 +L 2.2421,0.311564,2.7663,0.243383 +L 2.7663,0.243383,2.7663,-0.00012 +L 2.7663,-0.00012,0.0006,-0.00012 +L 0.0006,-0.00012,0.0006,0.243383 +L 0.0006,0.243383,0.4485,0.350528 +L 0.4485,0.350528,0.7111,0.496629 +L 0.7111,0.496629,1.0629,0.964166 +L 1.0629,0.964166,1.4424,1.762862 +L 1.4424,1.762862,4.5401,8.99988 +L 4.5401,8.99988,4.7729,8.99988 +L 4.7729,8.99988,7.833,1.684941 +L 7.833,1.684941,8.1828,0.954419 +L 8.1828,0.954419,8.5048,0.535593 +L 8.5048,0.535593,8.8645,0.331042 +L 8.8645,0.331042,9.3422,0.243383 +L 9.3422,0.243383,9.3422,-0.00012 +L 9.3422,-0.00012,5.8749,-0.00012 +L 5.8749,-0.00012,5.8749,0.243383 +L 5.8749,0.243383,6.3129,0.301825 +L 6.3129,0.301825,6.5864,0.418709 +L 6.5864,0.418709,6.7221,0.584288 +L 6.7221,0.584288,6.7697,0.779093 +L 6.7697,0.779093,6.7023,1.149223 +L 6.7023,1.149223,6.5071,1.684941 +L 6.5071,1.684941,5.9819,2.951174 +L 5.7966,3.428442,4.3062,6.983639 +L 4.3062,6.983639,2.7663,3.428442 +L 2.7663,3.428442,5.7966,3.428442 +L 4.6372,11.04533,5.1237,10.957663 +L 5.1237,10.957663,5.5231,10.684938 +L 5.5231,10.684938,5.7966,10.285591 +L 5.7966,10.285591,5.8838,9.808315 +L 5.8838,9.808315,5.7966,9.3213 +L 5.7966,9.3213,5.5231,8.921952 +L 5.5231,8.921952,5.1237,8.649227 +L 5.1237,8.649227,4.6372,8.56156 +L 4.6372,8.56156,4.1605,8.649227 +L 4.1605,8.649227,3.7612,8.921952 +L 3.7612,8.921952,3.4887,9.3213 +L 3.4887,9.3213,3.3995,9.808315 +L 3.3995,9.808315,3.4887,10.285591 +L 3.4887,10.285591,3.7612,10.684938 +L 3.7612,10.684938,4.1605,10.957663 +L 4.1605,10.957663,4.6372,11.04533 +L 4.6372,10.597279,4.3349,10.538837 +L 4.3349,10.538837,4.0813,10.363518 +L 4.0813,10.363518,3.9059,10.110272 +L 3.9059,10.110272,3.8484,9.808315 +L 3.8484,9.808315,3.9059,9.506373 +L 3.9059,9.506373,4.0813,9.243387 +L 4.0813,9.243387,4.3349,9.068053 +L 4.3349,9.068053,4.6372,9.009619 +L 4.6372,9.009619,4.9483,9.068053 +L 4.9483,9.068053,5.203,9.243387 +L 5.203,9.243387,5.3774,9.506373 +L 5.3774,9.506373,5.4359,9.808315 +L 5.4359,9.808315,5.3774,10.110272 +L 5.3774,10.110272,5.203,10.363518 +L 5.203,10.363518,4.9483,10.538837 +L 4.9483,10.538837,4.6372,10.597279 + +[、] 78 +L 6.8288,8.318053,6.8189,4.840783 +L 6.8189,4.840783,8.4955,4.840783 +L 8.4955,4.840783,9.1278,4.908964 +L 9.1278,4.908964,9.5459,5.123255 +L 9.5459,5.123255,9.7897,5.512864 +L 9.7897,5.512864,9.8967,6.126502 +L 9.8967,6.126502,10.1306,6.126502 +L 10.1306,6.126502,10.1306,3.068058 +L 10.1306,3.068058,9.8967,3.068058 +L 9.8967,3.068058,9.8105,3.603776 +L 9.8105,3.603776,9.6926,3.934943 +L 9.6926,3.934943,9.5172,4.139486 +L 9.5172,4.139486,9.2437,4.295326 +L 9.2437,4.295326,8.9811,4.353776 +L 8.9811,4.353776,8.4955,4.373254 +L 8.4955,4.373254,6.8189,4.373254 +L 6.8189,4.373254,6.8189,1.451173 +L 6.8189,1.451173,6.8387,0.983644 +L 6.8387,0.983644,6.8674,0.749876 +L 6.8674,0.749876,6.9358,0.64273 +L 6.9358,0.64273,7.0527,0.555071 +L 7.0527,0.555071,7.2569,0.496629 +L 7.2569,0.496629,7.569,0.477151 +L 7.569,0.477151,8.7472,0.477151 +L 8.7472,0.477151,9.3804,0.506368 +L 9.3804,0.506368,9.8392,0.594035 +L 9.8392,0.594035,10.2188,0.769354 +L 10.2188,0.769354,10.5795,1.051825 +L 10.5795,1.051825,11.0175,1.558318 +L 11.0175,1.558318,11.3584,2.210912 +L 11.3584,2.210912,11.611,2.210912 +L 11.611,2.210912,10.9095,-0.00012 +L 10.9095,-0.00012,4.2959,-0.00012 +L 4.2959,-0.00012,4.2959,0.243383 +L 4.2959,0.243383,4.6279,0.243383 +L 4.6279,0.243383,5.0956,0.321303 +L 5.0956,0.321303,5.4276,0.555071 +L 5.4276,0.555071,5.5425,0.905724 +L 5.5425,0.905724,5.5822,1.548579 +L 5.5822,1.548579,5.5822,3.408964 +L 5.5822,3.408964,3.0117,3.408964 +L 3.0117,3.408964,2.2031,1.899224 +L 2.2031,1.899224,1.8622,1.188187 +L 1.8622,1.188187,1.7443,0.769354 +L 1.7443,0.769354,1.7938,0.594035 +L 1.7938,0.594035,1.9484,0.438187 +L 1.9484,0.438187,2.2506,0.311564 +L 2.2506,0.311564,2.7669,0.243383 +L 2.7669,0.243383,2.7669,-0.00012 +L 2.7669,-0.00012,0.0002,-0.00012 +L 0.0002,-0.00012,0.0002,0.243383 +L 0.0002,0.243383,0.2638,0.2726 +L 0.2638,0.2726,0.4878,0.360267 +L 0.4878,0.360267,0.7018,0.525846 +L 0.7018,0.525846,0.9357,0.78884 +L 0.9357,0.78884,1.2082,1.188187 +L 1.2082,1.188187,1.5491,1.78234 +L 1.5491,1.78234,4.2196,6.779096 +L 4.2196,6.779096,4.5982,7.558314 +L 4.5982,7.558314,4.726,8.035589 +L 4.726,8.035589,4.6765,8.220655 +L 4.6765,8.220655,4.5496,8.357017 +L 4.5496,8.357017,4.1988,8.493387 +L 4.1988,8.493387,3.5954,8.56156 +L 3.5954,8.56156,3.5954,8.805068 +L 3.5954,8.805068,10.8133,8.805068 +L 10.8133,8.805068,10.9095,6.866763 +L 10.9095,6.866763,10.6855,6.866763 +L 10.6855,6.866763,10.5597,7.460915 +L 10.5597,7.460915,10.3644,7.889488 +L 10.3644,7.889488,10.1504,8.10377 +L 10.1504,8.10377,9.8581,8.259619 +L 9.8581,8.259619,9.537,8.308322 +L 9.537,8.308322,8.9712,8.318053 +L 8.9712,8.318053,6.8288,8.318053 +L 5.5822,8.318053,3.2634,3.886239 +L 3.2634,3.886239,5.5822,3.886239 +L 5.5822,3.886239,5.5822,8.318053 + +[・] 72 +L 7.529,8.99988,7.7232,6.009617 +L 7.7232,6.009617,7.529,6.009617 +L 7.529,6.009617,7.0415,7.168705 +L 7.0415,7.168705,6.3795,7.94793 +L 6.3795,7.94793,5.561,8.386242 +L 5.561,8.386242,4.5869,8.532343 +L 4.5869,8.532343,3.7496,8.425206 +L 3.7496,8.425206,3.0004,8.094031 +L 3.0004,8.094031,2.3662,7.519357 +L 2.3662,7.519357,1.8906,6.671951 +L 1.8906,6.671951,1.5883,5.581045 +L 1.5883,5.581045,1.4813,4.25637 +L 1.4813,4.25637,1.5774,3.136239 +L 1.5774,3.136239,1.8698,2.181695 +L 1.8698,2.181695,2.3474,1.402478 +L 2.3474,1.402478,3.0193,0.837535 +L 3.0193,0.837535,3.8378,0.48689 +L 3.8378,0.48689,4.7722,0.370006 +L 4.7722,0.370006,5.5808,0.457665 +L 5.5808,0.457665,6.2824,0.740137 +L 6.2824,0.740137,6.9741,1.285586 +L 6.9741,1.285586,7.7232,2.191434 +L 7.7232,2.191434,7.9284,2.064811 +L 7.9284,2.064811,7.208,1.042078 +L 7.208,1.042078,6.3795,0.340789 +L 6.3795,0.340789,5.4153,-0.0683 +L 5.4153,-0.0683,4.2857,-0.20466 +L 4.2857,-0.20466,2.3474,0.204419 +L 2.3474,0.204419,0.8957,1.421956 +L 0.8957,1.421956,0.2238,2.736891 +L 0.2238,2.736891,0.0009,4.266109 +L 0.0009,4.266109,0.1555,5.532342 +L 0.1555,5.532342,0.5944,6.68169 +L 0.5944,6.68169,1.295,7.665459 +L 1.295,7.665459,2.2216,8.395981 +L 2.2216,8.395981,3.3027,8.853779 +L 3.3027,8.853779,4.4809,8.99988 +L 4.4809,8.99988,5.4342,8.882996 +L 5.4342,8.882996,6.3696,8.532343 +L 6.3696,8.532343,6.6035,8.425206 +L 6.6035,8.425206,6.7492,8.395981 +L 6.7492,8.395981,6.9156,8.425206 +L 6.9156,8.425206,7.0613,8.512865 +L 7.0613,8.512865,7.208,8.727148 +L 7.208,8.727148,7.2952,8.99988 +L 7.2952,8.99988,7.529,8.99988 +L 4.0617,0.10702,4.4512,0.10702 +L 4.4512,0.10702,4.1192,-0.40921 +L 4.1192,-0.40921,4.4809,-0.54558 +L 4.4809,-0.54558,4.7336,-0.75986 +L 4.7336,-0.75986,4.8802,-1.03258 +L 4.8802,-1.03258,4.9377,-1.35402 +L 4.9377,-1.35402,4.8406,-1.79232 +L 4.8406,-1.79232,4.5493,-2.18194 +L 4.5493,-2.18194,4.1004,-2.44493 +L 4.1004,-2.44493,3.5365,-2.53259 +L 3.5365,-2.53259,3.264,-2.52285 +L 3.264,-2.52285,2.9321,-2.48389 +L 2.9321,-2.48389,2.9321,-2.21116 +L 2.9321,-2.21116,3.0975,-2.23064 +L 3.0975,-2.23064,3.2432,-2.23064 +L 3.2432,-2.23064,3.5454,-2.18194 +L 3.5454,-2.18194,3.7981,-2.01635 +L 3.7981,-2.01635,3.9636,-1.78258 +L 3.9636,-1.78258,4.0221,-1.5196 +L 4.0221,-1.5196,3.9834,-1.33453 +L 3.9834,-1.33453,3.8774,-1.17869 +L 3.8774,-1.17869,3.7109,-1.07155 +L 3.7109,-1.07155,3.5068,-1.04232 +L 3.5068,-1.04232,3.4285,-1.04232 +L 3.4285,-1.04232,3.3403,-1.05207 +L 3.3403,-1.05207,4.0617,0.10702 + +[ヲ] 62 +L 2.5046,8.318053,2.5046,4.840783 +L 2.5046,4.840783,4.4419,4.840783 +L 4.4419,4.840783,5.0662,4.899225 +L 5.0662,4.899225,5.4467,5.074552 +L 5.4467,5.074552,5.7083,5.483646 +L 5.7083,5.483646,5.8252,6.126502 +L 5.8252,6.126502,6.069,6.126502 +L 6.069,6.126502,6.069,3.058319 +L 6.069,3.058319,5.8252,3.058319 +L 5.8252,3.058319,5.738,3.58429 +L 5.738,3.58429,5.6409,3.886239 +L 5.6409,3.886239,5.4844,4.081044 +L 5.4844,4.081044,5.2604,4.236892 +L 5.2604,4.236892,4.9195,4.33429 +L 4.9195,4.33429,4.4419,4.373254 +L 4.4419,4.373254,2.5046,4.373254 +L 2.5046,4.373254,2.5046,1.470659 +L 2.5046,1.470659,2.5234,0.993383 +L 2.5234,0.993383,2.5631,0.759615 +L 2.5631,0.759615,2.6305,0.64273 +L 2.6305,0.64273,2.7375,0.555071 +L 2.7375,0.555071,2.9327,0.496629 +L 2.9327,0.496629,3.2349,0.477151 +L 3.2349,0.477151,4.7253,0.477151 +L 4.7253,0.477151,5.3674,0.506368 +L 5.3674,0.506368,5.8163,0.584288 +L 5.8163,0.584288,6.1473,0.740137 +L 6.1473,0.740137,6.4594,0.993383 +L 6.4594,0.993383,6.8677,1.499876 +L 6.8677,1.499876,7.2869,2.210912 +L 7.2869,2.210912,7.5396,2.210912 +L 7.5396,2.210912,6.7805,-0.00012 +L 6.7805,-0.00012,0.0005,-0.00012 +L 0.0005,-0.00012,0.0005,0.243383 +L 0.0005,0.243383,0.3127,0.243383 +L 0.3127,0.243383,0.6149,0.2726 +L 0.6149,0.2726,0.9072,0.389484 +L 0.9072,0.389484,1.0816,0.516107 +L 1.0816,0.516107,1.1886,0.701173 +L 1.1886,0.701173,1.2392,1.012861 +L 1.2392,1.012861,1.257,1.548579 +L 1.257,1.548579,1.257,7.266111 +L 1.257,7.266111,1.2184,7.94793 +L 1.2184,7.94793,1.0915,8.298575 +L 1.0915,8.298575,0.7804,8.493387 +L 0.7804,8.493387,0.3127,8.56156 +L 0.3127,8.56156,0.0005,8.56156 +L 0.0005,8.56156,0.0005,8.805068 +L 0.0005,8.805068,6.7805,8.805068 +L 6.7805,8.805068,6.8776,6.876502 +L 6.8776,6.876502,6.6338,6.876502 +L 6.6338,6.876502,6.4892,7.460915 +L 6.4892,7.460915,6.3316,7.831046 +L 6.3316,7.831046,6.1186,8.055067 +L 6.1186,8.055067,5.8352,8.220655 +L 5.8352,8.220655,5.4744,8.298575 +L 5.4744,8.298575,4.9195,8.318053 +L 4.9195,8.318053,2.5046,8.318053 +L 2.3679,11.658968,3.8097,11.658968 +L 3.8097,11.658968,4.5023,9.428445 +L 4.5023,9.428445,4.2764,9.428445 +L 4.2764,9.428445,2.3679,11.658968 + +[ァ] 62 +L 2.5023,8.318053,2.5023,4.840783 +L 2.5023,4.840783,4.4405,4.840783 +L 4.4405,4.840783,5.0648,4.899225 +L 5.0648,4.899225,5.4424,5.074552 +L 5.4424,5.074552,5.707,5.483646 +L 5.707,5.483646,5.8229,6.126502 +L 5.8229,6.126502,6.0667,6.126502 +L 6.0667,6.126502,6.0667,3.058319 +L 6.0667,3.058319,5.8229,3.058319 +L 5.8229,3.058319,5.7357,3.58429 +L 5.7357,3.58429,5.6386,3.886239 +L 5.6386,3.886239,5.482,4.081044 +L 5.482,4.081044,5.2591,4.236892 +L 5.2591,4.236892,4.9182,4.33429 +L 4.9182,4.33429,4.4405,4.373254 +L 4.4405,4.373254,2.5023,4.373254 +L 2.5023,4.373254,2.5023,1.470659 +L 2.5023,1.470659,2.5221,0.993383 +L 2.5221,0.993383,2.5607,0.759615 +L 2.5607,0.759615,2.6291,0.64273 +L 2.6291,0.64273,2.7361,0.555071 +L 2.7361,0.555071,2.9304,0.496629 +L 2.9304,0.496629,3.2326,0.477151 +L 3.2326,0.477151,4.723,0.477151 +L 4.723,0.477151,5.3671,0.506368 +L 5.3671,0.506368,5.813,0.584288 +L 5.813,0.584288,6.145,0.740137 +L 6.145,0.740137,6.4561,0.993383 +L 6.4561,0.993383,6.8644,1.499876 +L 6.8644,1.499876,7.2845,2.210912 +L 7.2845,2.210912,7.5372,2.210912 +L 7.5372,2.210912,6.7772,-0.00012 +L 6.7772,-0.00012,-0.0008,-0.00012 +L -0.0008,-0.00012,-0.0008,0.243383 +L -0.0008,0.243383,0.3103,0.243383 +L 0.3103,0.243383,0.6126,0.2726 +L 0.6126,0.2726,0.9049,0.389484 +L 0.9049,0.389484,1.0803,0.516107 +L 1.0803,0.516107,1.1873,0.701173 +L 1.1873,0.701173,1.2359,1.012861 +L 1.2359,1.012861,1.2557,1.548579 +L 1.2557,1.548579,1.2557,7.266111 +L 1.2557,7.266111,1.216,7.94793 +L 1.216,7.94793,1.0912,8.298575 +L 1.0912,8.298575,0.778,8.493387 +L 0.778,8.493387,0.3103,8.56156 +L 0.3103,8.56156,-0.0008,8.56156 +L -0.0008,8.56156,-0.0008,8.805068 +L -0.0008,8.805068,6.7772,8.805068 +L 6.7772,8.805068,6.8743,6.876502 +L 6.8743,6.876502,6.6315,6.876502 +L 6.6315,6.876502,6.4849,7.460915 +L 6.4849,7.460915,6.3293,7.831046 +L 6.3293,7.831046,6.1152,8.055067 +L 6.1152,8.055067,5.8328,8.220655 +L 5.8328,8.220655,5.4731,8.298575 +L 5.4731,8.298575,4.9182,8.318053 +L 4.9182,8.318053,2.5023,8.318053 +L 5.269,11.658968,3.3505,9.428445 +L 3.3505,9.428445,3.1256,9.428445 +L 3.1256,9.428445,3.8073,11.658968 +L 3.8073,11.658968,5.269,11.658968 + +[ィ] 65 +L 2.5029,8.318053,2.5029,4.840783 +L 2.5029,4.840783,4.4412,4.840783 +L 4.4412,4.840783,5.0655,4.899225 +L 5.0655,4.899225,5.445,5.074552 +L 5.445,5.074552,5.7076,5.483646 +L 5.7076,5.483646,5.8245,6.126502 +L 5.8245,6.126502,6.0693,6.126502 +L 6.0693,6.126502,6.0693,3.058319 +L 6.0693,3.058319,5.8245,3.058319 +L 5.8245,3.058319,5.7373,3.58429 +L 5.7373,3.58429,5.6402,3.886239 +L 5.6402,3.886239,5.4836,4.081044 +L 5.4836,4.081044,5.2607,4.236892 +L 5.2607,4.236892,4.9198,4.33429 +L 4.9198,4.33429,4.4412,4.373254 +L 4.4412,4.373254,2.5029,4.373254 +L 2.5029,4.373254,2.5029,1.470659 +L 2.5029,1.470659,2.5227,0.993383 +L 2.5227,0.993383,2.5624,0.759615 +L 2.5624,0.759615,2.6307,0.64273 +L 2.6307,0.64273,2.7378,0.555071 +L 2.7378,0.555071,2.933,0.496629 +L 2.933,0.496629,3.2342,0.477151 +L 3.2342,0.477151,4.7246,0.477151 +L 4.7246,0.477151,5.3667,0.506368 +L 5.3667,0.506368,5.8156,0.584288 +L 5.8156,0.584288,6.1466,0.740137 +L 6.1466,0.740137,6.4577,0.993383 +L 6.4577,0.993383,6.867,1.499876 +L 6.867,1.499876,7.2862,2.210912 +L 7.2862,2.210912,7.5389,2.210912 +L 7.5389,2.210912,6.7788,-0.00012 +L 6.7788,-0.00012,-0.0002,-0.00012 +L -0.0002,-0.00012,-0.0002,0.243383 +L -0.0002,0.243383,0.3129,0.243383 +L 0.3129,0.243383,0.6152,0.2726 +L 0.6152,0.2726,0.9055,0.389484 +L 0.9055,0.389484,1.0819,0.516107 +L 1.0819,0.516107,1.1889,0.701173 +L 1.1889,0.701173,1.2375,1.012861 +L 1.2375,1.012861,1.2573,1.548579 +L 1.2573,1.548579,1.2573,7.266111 +L 1.2573,7.266111,1.2187,7.94793 +L 1.2187,7.94793,1.0908,8.298575 +L 1.0908,8.298575,0.7807,8.493387 +L 0.7807,8.493387,0.3129,8.56156 +L 0.3129,8.56156,-0.0002,8.56156 +L -0.0002,8.56156,-0.0002,8.805068 +L -0.0002,8.805068,6.7788,8.805068 +L 6.7788,8.805068,6.8779,6.876502 +L 6.8779,6.876502,6.6331,6.876502 +L 6.6331,6.876502,6.4875,7.460915 +L 6.4875,7.460915,6.3329,7.831046 +L 6.3329,7.831046,6.1169,8.055067 +L 6.1169,8.055067,5.8344,8.220655 +L 5.8344,8.220655,5.4737,8.298575 +L 5.4737,8.298575,4.9198,8.318053 +L 4.9198,8.318053,2.5029,8.318053 +L 3.2144,11.63949,4.4124,11.63949 +L 4.4124,11.63949,5.6402,9.496634 +L 5.6402,9.496634,5.445,9.496634 +L 5.445,9.496634,3.6732,10.870011 +L 3.6732,10.870011,2.1818,9.486895 +L 2.1818,9.486895,1.9876,9.486895 +L 1.9876,9.486895,3.2144,11.63949 + +[ゥ] 90 +L 2.5035,8.318053,2.5035,4.840783 +L 2.5035,4.840783,4.4428,4.840783 +L 4.4428,4.840783,5.0651,4.899225 +L 5.0651,4.899225,5.4456,5.074552 +L 5.4456,5.074552,5.7082,5.483646 +L 5.7082,5.483646,5.8252,6.126502 +L 5.8252,6.126502,6.0689,6.126502 +L 6.0689,6.126502,6.0689,3.058319 +L 6.0689,3.058319,5.8252,3.058319 +L 5.8252,3.058319,5.737,3.58429 +L 5.737,3.58429,5.6399,3.886239 +L 5.6399,3.886239,5.4853,4.081044 +L 5.4853,4.081044,5.2603,4.236892 +L 5.2603,4.236892,4.9194,4.33429 +L 4.9194,4.33429,4.4428,4.373254 +L 4.4428,4.373254,2.5035,4.373254 +L 2.5035,4.373254,2.5035,1.470659 +L 2.5035,1.470659,2.5244,0.993383 +L 2.5244,0.993383,2.562,0.759615 +L 2.562,0.759615,2.6304,0.64273 +L 2.6304,0.64273,2.7374,0.555071 +L 2.7374,0.555071,2.9316,0.496629 +L 2.9316,0.496629,3.2339,0.477151 +L 3.2339,0.477151,4.7242,0.477151 +L 4.7242,0.477151,5.3674,0.506368 +L 5.3674,0.506368,5.8153,0.584288 +L 5.8153,0.584288,6.1462,0.740137 +L 6.1462,0.740137,6.4594,0.993383 +L 6.4594,0.993383,6.8686,1.499876 +L 6.8686,1.499876,7.2858,2.210912 +L 7.2858,2.210912,7.5405,2.210912 +L 7.5405,2.210912,6.7794,-0.00012 +L 6.7794,-0.00012,0.0014,-0.00012 +L 0.0014,-0.00012,0.0014,0.243383 +L 0.0014,0.243383,0.3116,0.243383 +L 0.3116,0.243383,0.6138,0.2726 +L 0.6138,0.2726,0.9071,0.389484 +L 0.9071,0.389484,1.0815,0.516107 +L 1.0815,0.516107,1.1886,0.701173 +L 1.1886,0.701173,1.2371,1.012861 +L 1.2371,1.012861,1.2569,1.548579 +L 1.2569,1.548579,1.2569,7.266111 +L 1.2569,7.266111,1.2173,7.94793 +L 1.2173,7.94793,1.0915,8.298575 +L 1.0915,8.298575,0.7793,8.493387 +L 0.7793,8.493387,0.3116,8.56156 +L 0.3116,8.56156,0.0014,8.56156 +L 0.0014,8.56156,0.0014,8.805068 +L 0.0014,8.805068,6.7794,8.805068 +L 6.7794,8.805068,6.8765,6.876502 +L 6.8765,6.876502,6.6338,6.876502 +L 6.6338,6.876502,6.4871,7.460915 +L 6.4871,7.460915,6.3315,7.831046 +L 6.3315,7.831046,6.1175,8.055067 +L 6.1175,8.055067,5.8351,8.220655 +L 5.8351,8.220655,5.4744,8.298575 +L 5.4744,8.298575,4.9194,8.318053 +L 4.9194,8.318053,2.5035,8.318053 +L 4.9492,11.084294,5.2207,11.035591 +L 5.2207,11.035591,5.4456,10.879751 +L 5.4456,10.879751,5.6012,10.645982 +L 5.6012,10.645982,5.6508,10.373258 +L 5.6508,10.373258,5.6012,10.110272 +L 5.6012,10.110272,5.4456,9.876504 +L 5.4456,9.876504,5.2207,9.730395 +L 5.2207,9.730395,4.9492,9.681691 +L 4.9492,9.681691,4.6767,9.730395 +L 4.6767,9.730395,4.4517,9.876504 +L 4.4517,9.876504,4.2952,10.110272 +L 4.2952,10.110272,4.2466,10.373258 +L 4.2466,10.373258,4.2952,10.645982 +L 4.2952,10.645982,4.4517,10.879751 +L 4.4517,10.879751,4.6767,11.035591 +L 4.6767,11.035591,4.9492,11.084294 +L 2.6601,11.084294,2.9316,11.035591 +L 2.9316,11.035591,3.1665,10.879751 +L 3.1665,10.879751,3.3121,10.645982 +L 3.3121,10.645982,3.3706,10.373258 +L 3.3706,10.373258,3.3121,10.110272 +L 3.3121,10.110272,3.1566,9.876504 +L 3.1566,9.876504,2.9316,9.730395 +L 2.9316,9.730395,2.669,9.671952 +L 2.669,9.671952,2.3965,9.730395 +L 2.3965,9.730395,2.1627,9.876504 +L 2.1627,9.876504,2.0071,10.110272 +L 2.0071,10.110272,1.9575,10.373258 +L 1.9575,10.373258,2.0071,10.645982 +L 2.0071,10.645982,2.1627,10.879751 +L 2.1627,10.879751,2.3876,11.035591 +L 2.3876,11.035591,2.6601,11.084294 + +[ェ] 36 +L 3.7686,0.243383,3.7686,-0.00012 +L 3.7686,-0.00012,-0.0009,-0.00012 +L -0.0009,-0.00012,-0.0009,0.243383 +L -0.0009,0.243383,0.3112,0.243383 +L 0.3112,0.243383,0.778,0.321303 +L 0.778,0.321303,1.101,0.555071 +L 1.101,0.555071,1.2169,0.915455 +L 1.2169,0.915455,1.2556,1.558318 +L 1.2556,1.558318,1.2556,7.246633 +L 1.2556,7.246633,1.2378,7.801821 +L 1.2378,7.801821,1.1783,8.123256 +L 1.1783,8.123256,1.0703,8.279097 +L 1.0703,8.279097,0.9048,8.40572 +L 0.9048,8.40572,0.6135,8.522604 +L 0.6135,8.522604,0.3112,8.56156 +L 0.3112,8.56156,-0.0009,8.56156 +L -0.0009,8.56156,-0.0009,8.805068 +L -0.0009,8.805068,3.7686,8.805068 +L 3.7686,8.805068,3.7686,8.56156 +L 3.7686,8.56156,3.4585,8.56156 +L 3.4585,8.56156,2.9897,8.483648 +L 2.9897,8.483648,2.6687,8.240141 +L 2.6687,8.240141,2.5418,7.889488 +L 2.5418,7.889488,2.5022,7.246633 +L 2.5022,7.246633,2.5022,1.558318 +L 2.5022,1.558318,2.522,1.003122 +L 2.522,1.003122,2.5904,0.671955 +L 2.5904,0.671955,2.6875,0.525846 +L 2.6875,0.525846,2.8629,0.399223 +L 2.8629,0.399223,3.1453,0.282339 +L 3.1453,0.282339,3.4585,0.243383 +L 3.4585,0.243383,3.7686,0.243383 +L 0.447,11.658968,1.8888,11.658968 +L 1.8888,11.658968,2.5815,9.428445 +L 2.5815,9.428445,2.3565,9.428445 +L 2.3565,9.428445,0.447,11.658968 + +[ォ] 36 +L 3.7692,0.243383,3.7692,-0.00012 +L 3.7692,-0.00012,-0.0003,-0.00012 +L -0.0003,-0.00012,-0.0003,0.243383 +L -0.0003,0.243383,0.3129,0.243383 +L 0.3129,0.243383,0.7786,0.321303 +L 0.7786,0.321303,1.1007,0.555071 +L 1.1007,0.555071,1.2176,0.915455 +L 1.2176,0.915455,1.2572,1.558318 +L 1.2572,1.558318,1.2572,7.246633 +L 1.2572,7.246633,1.2364,7.801821 +L 1.2364,7.801821,1.1789,8.123256 +L 1.1789,8.123256,1.0719,8.279097 +L 1.0719,8.279097,0.9054,8.40572 +L 0.9054,8.40572,0.6131,8.522604 +L 0.6131,8.522604,0.3129,8.56156 +L 0.3129,8.56156,-0.0003,8.56156 +L -0.0003,8.56156,-0.0003,8.805068 +L -0.0003,8.805068,3.7692,8.805068 +L 3.7692,8.805068,3.7692,8.56156 +L 3.7692,8.56156,3.4571,8.56156 +L 3.4571,8.56156,2.9904,8.483648 +L 2.9904,8.483648,2.6703,8.240141 +L 2.6703,8.240141,2.5425,7.889488 +L 2.5425,7.889488,2.5038,7.246633 +L 2.5038,7.246633,2.5038,1.558318 +L 2.5038,1.558318,2.5226,1.003122 +L 2.5226,1.003122,2.591,0.671955 +L 2.591,0.671955,2.6881,0.525846 +L 2.6881,0.525846,2.8635,0.399223 +L 2.8635,0.399223,3.1469,0.282339 +L 3.1469,0.282339,3.4571,0.243383 +L 3.4571,0.243383,3.7692,0.243383 +L 3.3422,11.658968,1.4217,9.428445 +L 1.4217,9.428445,1.1978,9.428445 +L 1.1978,9.428445,1.8795,11.658968 +L 1.8795,11.658968,3.3422,11.658968 + +[ャ] 39 +L 3.7699,0.243383,3.7699,-0.00012 +L 3.7699,-0.00012,0.0004,-0.00012 +L 0.0004,-0.00012,0.0004,0.243383 +L 0.0004,0.243383,0.3125,0.243383 +L 0.3125,0.243383,0.7802,0.321303 +L 0.7802,0.321303,1.1013,0.555071 +L 1.1013,0.555071,1.2182,0.915455 +L 1.2182,0.915455,1.2569,1.558318 +L 1.2569,1.558318,1.2569,7.246633 +L 1.2569,7.246633,1.237,7.801821 +L 1.237,7.801821,1.1796,8.123256 +L 1.1796,8.123256,1.0716,8.279097 +L 1.0716,8.279097,0.9061,8.40572 +L 0.9061,8.40572,0.6137,8.522604 +L 0.6137,8.522604,0.3125,8.56156 +L 0.3125,8.56156,0.0004,8.56156 +L 0.0004,8.56156,0.0004,8.805068 +L 0.0004,8.805068,3.7699,8.805068 +L 3.7699,8.805068,3.7699,8.56156 +L 3.7699,8.56156,3.4587,8.56156 +L 3.4587,8.56156,2.991,8.483648 +L 2.991,8.483648,2.669,8.240141 +L 2.669,8.240141,2.5431,7.889488 +L 2.5431,7.889488,2.5035,7.246633 +L 2.5035,7.246633,2.5035,1.558318 +L 2.5035,1.558318,2.5233,1.003122 +L 2.5233,1.003122,2.5917,0.671955 +L 2.5917,0.671955,2.6888,0.525846 +L 2.6888,0.525846,2.8642,0.399223 +L 2.8642,0.399223,3.1466,0.282339 +L 3.1466,0.282339,3.4587,0.243383 +L 3.4587,0.243383,3.7699,0.243383 +L 1.2866,11.63949,2.4846,11.63949 +L 2.4846,11.63949,3.7114,9.486895 +L 3.7114,9.486895,3.5172,9.486895 +L 3.5172,9.486895,1.7434,10.870011 +L 1.7434,10.870011,0.254,9.486895 +L 0.254,9.486895,0.0588,9.486895 +L 0.0588,9.486895,1.2866,11.63949 + +[ュ] 64 +L 3.7695,0.243383,3.7695,-0.00012 +L 3.7695,-0.00012,0,-0.00012 +L 0,-0.00012,0,0.243383 +L 0,0.243383,0.3121,0.243383 +L 0.3121,0.243383,0.7789,0.321303 +L 0.7789,0.321303,1.1019,0.555071 +L 1.1019,0.555071,1.2179,0.915455 +L 1.2179,0.915455,1.2565,1.558318 +L 1.2565,1.558318,1.2565,7.246633 +L 1.2565,7.246633,1.2377,7.801821 +L 1.2377,7.801821,1.1792,8.123256 +L 1.1792,8.123256,1.0722,8.279097 +L 1.0722,8.279097,0.9067,8.40572 +L 0.9067,8.40572,0.6134,8.522604 +L 0.6134,8.522604,0.3121,8.56156 +L 0.3121,8.56156,0,8.56156 +L 0,8.56156,0,8.805068 +L 0,8.805068,3.7695,8.805068 +L 3.7695,8.805068,3.7695,8.56156 +L 3.7695,8.56156,3.4584,8.56156 +L 3.4584,8.56156,2.9907,8.483648 +L 2.9907,8.483648,2.6686,8.240141 +L 2.6686,8.240141,2.5427,7.889488 +L 2.5427,7.889488,2.5031,7.246633 +L 2.5031,7.246633,2.5031,1.558318 +L 2.5031,1.558318,2.5229,1.003122 +L 2.5229,1.003122,2.5913,0.671955 +L 2.5913,0.671955,2.6894,0.525846 +L 2.6894,0.525846,2.8638,0.399223 +L 2.8638,0.399223,3.1462,0.282339 +L 3.1462,0.282339,3.4584,0.243383 +L 3.4584,0.243383,3.7695,0.243383 +L 3.0204,11.084294,3.2929,11.035591 +L 3.2929,11.035591,3.5158,10.879751 +L 3.5158,10.879751,3.6724,10.645982 +L 3.6724,10.645982,3.721,10.373258 +L 3.721,10.373258,3.6724,10.110272 +L 3.6724,10.110272,3.5158,9.876504 +L 3.5158,9.876504,3.2929,9.730395 +L 3.2929,9.730395,3.0204,9.671952 +L 3.0204,9.671952,2.7469,9.730395 +L 2.7469,9.730395,2.5229,9.876504 +L 2.5229,9.876504,2.3664,10.110272 +L 2.3664,10.110272,2.3188,10.373258 +L 2.3188,10.373258,2.3664,10.645982 +L 2.3664,10.645982,2.5229,10.879751 +L 2.5229,10.879751,2.7469,11.035591 +L 2.7469,11.035591,3.0204,11.084294 +L 0.7313,11.084294,1.0038,11.035591 +L 1.0038,11.035591,1.2377,10.879751 +L 1.2377,10.879751,1.3834,10.645982 +L 1.3834,10.645982,1.4428,10.373258 +L 1.4428,10.373258,1.3834,10.110272 +L 1.3834,10.110272,1.2278,9.876504 +L 1.2278,9.876504,1.0038,9.730395 +L 1.0038,9.730395,0.7402,9.671952 +L 0.7402,9.671952,0.4687,9.730395 +L 0.4687,9.730395,0.2339,9.876504 +L 0.2339,9.876504,0.0783,10.110272 +L 0.0783,10.110272,0.0307,10.373258 +L 0.0307,10.373258,0.0783,10.645982 +L 0.0783,10.645982,0.2339,10.879751 +L 0.2339,10.879751,0.4578,11.035591 +L 0.4578,11.035591,0.7313,11.084294 + +[ョ] 46 +L 0.0006,-0.00012,0.0006,0.243383 +L 0.0006,0.243383,0.3316,0.243383 +L 0.3316,0.243383,0.8092,0.331042 +L 0.8092,0.331042,1.1313,0.603774 +L 1.1313,0.603774,1.2373,0.94468 +L 1.2373,0.94468,1.268,1.558318 +L 1.268,1.558318,1.268,4.402472 +L 1.268,4.402472,0.0006,4.402472 +L 0.0006,4.402472,0.0006,4.879747 +L 0.0006,4.879747,1.268,4.879747 +L 1.268,4.879747,1.268,7.246633 +L 1.268,7.246633,1.2284,7.918705 +L 1.2284,7.918705,1.0927,8.279097 +L 1.0927,8.279097,0.7696,8.493387 +L 0.7696,8.493387,0.3316,8.56156 +L 0.3316,8.56156,0.0006,8.56156 +L 0.0006,8.56156,0.0006,8.805068 +L 0.0006,8.805068,3.5858,8.805068 +L 3.5858,8.805068,5.3685,8.688184 +L 5.3685,8.688184,6.6151,8.337539 +L 6.6151,8.337539,7.51,7.73364 +L 7.51,7.73364,8.2324,6.857016 +L 8.2324,6.857016,8.708,5.746632 +L 8.708,5.746632,8.8646,4.460914 +L 8.8646,4.460914,8.5722,2.736891 +L 8.5722,2.736891,7.6754,1.295333 +L 7.6754,1.295333,6.1474,0.321303 +L 6.1474,0.321303,3.9357,-0.00012 +L 3.9357,-0.00012,0.0006,-0.00012 +L 2.5236,0.65247,3.2846,0.516107 +L 3.2846,0.516107,3.9069,0.467412 +L 3.9069,0.467412,5.2794,0.730397 +L 5.2794,0.730397,6.4001,1.529101 +L 6.4001,1.529101,7.1403,2.775847 +L 7.1403,2.775847,7.394,4.392732 +L 7.394,4.392732,7.1403,6.029096 +L 7.1403,6.029096,6.4001,7.266111 +L 6.4001,7.266111,5.2714,8.055067 +L 5.2714,8.055067,3.8584,8.318053 +L 3.8584,8.318053,3.2242,8.279097 +L 3.2242,8.279097,2.5236,8.132995 +L 2.5236,8.132995,2.5236,4.879747 +L 2.5236,4.879747,5.0752,4.879747 +L 5.0752,4.879747,5.0752,4.402472 +L 5.0752,4.402472,2.5236,4.402472 +L 2.5236,4.402472,2.5236,0.65247 + +[ッ] 73 +L 0.0003,8.805068,2.3865,8.805068 +L 2.3865,8.805068,7.7732,2.201173 +L 7.7732,2.201173,7.7732,7.27585 +L 7.7732,7.27585,7.7246,7.938183 +L 7.7246,7.938183,7.5879,8.288836 +L 7.5879,8.288836,7.2767,8.493387 +L 7.2767,8.493387,6.8278,8.56156 +L 6.8278,8.56156,6.5256,8.56156 +L 6.5256,8.56156,6.5256,8.805068 +L 6.5256,8.805068,9.5846,8.805068 +L 9.5846,8.805068,9.5846,8.56156 +L 9.5846,8.56156,9.2725,8.56156 +L 9.2725,8.56156,8.7968,8.473901 +L 8.7968,8.473901,8.4837,8.220655 +L 8.4837,8.220655,8.3767,7.879749 +L 8.3767,7.879749,8.338,7.27585 +L 8.338,7.27585,8.338,-0.14622 +L 8.338,-0.14622,8.1042,-0.14622 +L 8.1042,-0.14622,2.3082,6.944683 +L 2.3082,6.944683,2.3082,1.529101 +L 2.3082,1.529101,2.3478,0.86676 +L 2.3478,0.86676,2.4836,0.516107 +L 2.4836,0.516107,2.7957,0.311564 +L 2.7957,0.311564,3.2436,0.243383 +L 3.2436,0.243383,3.5548,0.243383 +L 3.5548,0.243383,3.5548,-0.00012 +L 3.5548,-0.00012,0.4868,-0.00012 +L 0.4868,-0.00012,0.4868,0.243383 +L 0.4868,0.243383,0.7891,0.243383 +L 0.7891,0.243383,1.2756,0.321303 +L 1.2756,0.321303,1.5888,0.574549 +L 1.5888,0.574549,1.6958,0.915455 +L 1.6958,0.915455,1.7344,1.529101 +L 1.7344,1.529101,1.7344,7.645981 +L 1.7344,7.645981,1.3925,8.016111 +L 1.3925,8.016111,1.1508,8.240141 +L 1.1508,8.240141,0.906,8.376503 +L 0.906,8.376503,0.575,8.503126 +L 0.575,8.503126,0.3313,8.551829 +L 0.3313,8.551829,0.0003,8.56156 +L 0.0003,8.56156,0.0003,8.805068 +L 3.088,9.506373,2.8829,9.506373 +L 2.8829,9.506373,2.9899,10.275851 +L 2.9899,10.275851,3.2535,10.792083 +L 3.2535,10.792083,3.6331,11.094033 +L 3.6331,11.094033,4.1008,11.191431 +L 4.1008,11.191431,4.3545,11.171953 +L 4.3545,11.171953,4.5883,11.103772 +L 4.5883,11.103772,4.9381,10.938185 +L 4.9381,10.938185,5.4158,10.636243 +L 5.4158,10.636243,5.8835,10.373258 +L 5.8835,10.373258,6.2145,10.285591 +L 6.2145,10.285591,6.4087,10.334286 +L 6.4087,10.334286,6.5761,10.460909 +L 6.5761,10.460909,6.7208,10.733641 +L 6.7208,10.733641,6.8278,11.191431 +L 6.8278,11.191431,7.032,11.191431 +L 7.032,11.191431,6.9933,10.645982 +L 6.9933,10.645982,6.8665,10.227148 +L 6.8665,10.227148,6.6733,9.91546 +L 6.6733,9.91546,6.4007,9.681691 +L 6.4007,9.681691,6.0985,9.53559 +L 6.0985,9.53559,5.7963,9.486895 +L 5.7963,9.486895,5.2205,9.613518 +L 5.2205,9.613518,4.5209,10.003127 +L 4.5209,10.003127,4.1791,10.227148 +L 4.1791,10.227148,3.9739,10.334286 +L 3.9739,10.334286,3.8283,10.382997 +L 3.8283,10.382997,3.6915,10.392736 +L 3.6915,10.392736,3.4478,10.334286 +L 3.4478,10.334286,3.2733,10.158967 +L 3.2733,10.158967,3.1852,9.944685 +L 3.1852,9.944685,3.088,9.506373 + +[ー] 36 +L 4.3928,8.99988,5.9911,8.678445 +L 5.9911,8.678445,7.3636,7.704423 +L 7.3636,7.704423,8.3079,6.243386 +L 8.3079,6.243386,8.6201,4.451175 +L 8.6201,4.451175,8.3079,2.620007 +L 8.3079,2.620007,7.3537,1.120006 +L 7.3537,1.120006,5.9614,0.126498 +L 5.9614,0.126498,4.2956,-0.20466 +L 4.2956,-0.20466,2.621,0.126498 +L 2.621,0.126498,1.2366,1.090789 +L 1.2366,1.090789,0.3121,2.571304 +L 0.3121,2.571304,0.0009,4.431696 +L 0.0009,4.431696,0.3606,6.340784 +L 0.3606,6.340784,1.4318,7.850524 +L 1.4318,7.850524,2.7855,8.717409 +L 2.7855,8.717409,4.3928,8.99988 +L 4.2768,8.532343,3.2046,8.308322 +L 3.2046,8.308322,2.3762,7.65572 +L 2.3762,7.65572,1.7043,6.311559 +L 1.7043,6.311559,1.4903,4.460914 +L 1.4903,4.460914,1.7152,2.551826 +L 1.7152,2.551826,2.4059,1.139484 +L 2.4059,1.139484,3.2343,0.477151 +L 3.2343,0.477151,4.2768,0.262861 +L 4.2768,0.262861,5.4065,0.496629 +L 5.4065,0.496629,6.3211,1.227151 +L 6.3211,1.227151,6.9365,2.473906 +L 6.9365,2.473906,7.1297,4.275848 +L 7.1297,4.275848,6.9157,6.253125 +L 6.9157,6.253125,6.2438,7.645981 +L 6.2438,7.645981,5.3966,8.308322 +L 5.3966,8.308322,4.2768,8.532343 +L 2.8538,11.658968,4.2956,11.658968 +L 4.2956,11.658968,4.9873,9.428445 +L 4.9873,9.428445,4.7634,9.428445 +L 4.7634,9.428445,2.8538,11.658968 + +[ア] 36 +L 4.3934,8.99988,5.9908,8.678445 +L 5.9908,8.678445,7.3642,7.704423 +L 7.3642,7.704423,8.3086,6.243386 +L 8.3086,6.243386,8.6207,4.451175 +L 8.6207,4.451175,8.3086,2.620007 +L 8.3086,2.620007,7.3543,1.120006 +L 7.3543,1.120006,5.9611,0.126498 +L 5.9611,0.126498,4.2963,-0.20466 +L 4.2963,-0.20466,2.6206,0.126498 +L 2.6206,0.126498,1.2373,1.090789 +L 1.2373,1.090789,0.3117,2.571304 +L 0.3117,2.571304,0.0006,4.431696 +L 0.0006,4.431696,0.3613,6.340784 +L 0.3613,6.340784,1.4325,7.850524 +L 1.4325,7.850524,2.7861,8.717409 +L 2.7861,8.717409,4.3934,8.99988 +L 4.2765,8.532343,3.2053,8.308322 +L 3.2053,8.308322,2.3768,7.65572 +L 2.3768,7.65572,1.705,6.311559 +L 1.705,6.311559,1.4909,4.460914 +L 1.4909,4.460914,1.7149,2.551826 +L 1.7149,2.551826,2.4066,1.139484 +L 2.4066,1.139484,3.234,0.477151 +L 3.234,0.477151,4.2765,0.262861 +L 4.2765,0.262861,5.4061,0.496629 +L 5.4061,0.496629,6.3218,1.227151 +L 6.3218,1.227151,6.9351,2.473906 +L 6.9351,2.473906,7.1304,4.275848 +L 7.1304,4.275848,6.9163,6.253125 +L 6.9163,6.253125,6.2445,7.645981 +L 6.2445,7.645981,5.3962,8.308322 +L 5.3962,8.308322,4.2765,8.532343 +L 5.747,11.658968,3.8286,9.428445 +L 3.8286,9.428445,3.6046,9.428445 +L 3.6046,9.428445,4.2864,11.658968 +L 4.2864,11.658968,5.747,11.658968 + +[イ] 39 +L 4.394,8.99988,5.9904,8.678445 +L 5.9904,8.678445,7.3639,7.704423 +L 7.3639,7.704423,8.3082,6.243386 +L 8.3082,6.243386,8.6204,4.451175 +L 8.6204,4.451175,8.3082,2.620007 +L 8.3082,2.620007,7.3549,1.120006 +L 7.3549,1.120006,5.9607,0.126498 +L 5.9607,0.126498,4.2959,-0.20466 +L 4.2959,-0.20466,2.6202,0.126498 +L 2.6202,0.126498,1.2369,1.090789 +L 1.2369,1.090789,0.3114,2.571304 +L 0.3114,2.571304,0.0002,4.431696 +L 0.0002,4.431696,0.3609,6.340784 +L 0.3609,6.340784,1.4321,7.850524 +L 1.4321,7.850524,2.7857,8.717409 +L 2.7857,8.717409,4.394,8.99988 +L 4.2761,8.532343,3.2049,8.308322 +L 3.2049,8.308322,2.3765,7.65572 +L 2.3765,7.65572,1.7046,6.311559 +L 1.7046,6.311559,1.4916,4.460914 +L 1.4916,4.460914,1.7145,2.551826 +L 1.7145,2.551826,2.4072,1.139484 +L 2.4072,1.139484,3.2336,0.477151 +L 3.2336,0.477151,4.2761,0.262861 +L 4.2761,0.262861,5.4058,0.496629 +L 5.4058,0.496629,6.3214,1.227151 +L 6.3214,1.227151,6.9348,2.473906 +L 6.9348,2.473906,7.13,4.275848 +L 7.13,4.275848,6.9169,6.253125 +L 6.9169,6.253125,6.2441,7.645981 +L 6.2441,7.645981,5.3969,8.308322 +L 5.3969,8.308322,4.2761,8.532343 +L 3.6914,11.63949,4.8895,11.63949 +L 4.8895,11.63949,6.1173,9.496634 +L 6.1173,9.496634,5.922,9.496634 +L 5.922,9.496634,4.1503,10.870011 +L 4.1503,10.870011,2.6589,9.486895 +L 2.6589,9.486895,2.4647,9.486895 +L 2.4647,9.486895,3.6914,11.63949 + +[ウ] 64 +L 4.3937,8.99988,5.9911,8.678445 +L 5.9911,8.678445,7.3645,7.704423 +L 7.3645,7.704423,8.3089,6.243386 +L 8.3089,6.243386,8.62,4.451175 +L 8.62,4.451175,8.3089,2.620007 +L 8.3089,2.620007,7.3546,1.120006 +L 7.3546,1.120006,5.9613,0.126498 +L 5.9613,0.126498,4.2956,-0.20466 +L 4.2956,-0.20466,2.6209,0.126498 +L 2.6209,0.126498,1.2375,1.090789 +L 1.2375,1.090789,0.312,2.571304 +L 0.312,2.571304,0.0008,4.431696 +L 0.0008,4.431696,0.3606,6.340784 +L 0.3606,6.340784,1.4318,7.850524 +L 1.4318,7.850524,2.7864,8.717409 +L 2.7864,8.717409,4.3937,8.99988 +L 4.2767,8.532343,3.2055,8.308322 +L 3.2055,8.308322,2.3771,7.65572 +L 2.3771,7.65572,1.7053,6.311559 +L 1.7053,6.311559,1.4912,4.460914 +L 1.4912,4.460914,1.7152,2.551826 +L 1.7152,2.551826,2.4068,1.139484 +L 2.4068,1.139484,3.2343,0.477151 +L 3.2343,0.477151,4.2767,0.262861 +L 4.2767,0.262861,5.4064,0.496629 +L 5.4064,0.496629,6.322,1.227151 +L 6.322,1.227151,6.9354,2.473906 +L 6.9354,2.473906,7.1306,4.275848 +L 7.1306,4.275848,6.9166,6.253125 +L 6.9166,6.253125,6.2437,7.645981 +L 6.2437,7.645981,5.3965,8.308322 +L 5.3965,8.308322,4.2767,8.532343 +L 2.4257,9.506373,2.2215,9.506373 +L 2.2215,9.506373,2.3286,10.275851 +L 2.3286,10.275851,2.5912,10.792083 +L 2.5912,10.792083,2.9717,11.094033 +L 2.9717,11.094033,3.4394,11.191431 +L 3.4394,11.191431,3.6921,11.171953 +L 3.6921,11.171953,3.9259,11.103772 +L 3.9259,11.103772,4.2767,10.938185 +L 4.2767,10.938185,4.7534,10.636243 +L 4.7534,10.636243,5.2211,10.373258 +L 5.2211,10.373258,5.5531,10.285591 +L 5.5531,10.285591,5.7473,10.334286 +L 5.7473,10.334286,5.9128,10.460909 +L 5.9128,10.460909,6.0584,10.733641 +L 6.0584,10.733641,6.1665,11.191431 +L 6.1665,11.191431,6.3706,11.191431 +L 6.3706,11.191431,6.3319,10.645982 +L 6.3319,10.645982,6.2051,10.227148 +L 6.2051,10.227148,6.0099,9.91546 +L 6.0099,9.91546,5.7374,9.681691 +L 5.7374,9.681691,5.4351,9.53559 +L 5.4351,9.53559,5.1339,9.486895 +L 5.1339,9.486895,4.5592,9.613518 +L 4.5592,9.613518,3.8576,10.003127 +L 3.8576,10.003127,3.5167,10.227148 +L 3.5167,10.227148,3.3126,10.334286 +L 3.3126,10.334286,3.1659,10.382997 +L 3.1659,10.382997,3.0301,10.392736 +L 3.0301,10.392736,2.7864,10.334286 +L 2.7864,10.334286,2.611,10.158967 +L 2.611,10.158967,2.5228,9.944685 +L 2.5228,9.944685,2.4257,9.506373 + +[エ] 64 +L 4.3933,8.99988,5.9907,8.678445 +L 5.9907,8.678445,7.3651,7.704423 +L 7.3651,7.704423,8.3095,6.243386 +L 8.3095,6.243386,8.6207,4.451175 +L 8.6207,4.451175,8.3095,2.620007 +L 8.3095,2.620007,7.3542,1.120006 +L 7.3542,1.120006,5.961,0.126498 +L 5.961,0.126498,4.2952,-0.20466 +L 4.2952,-0.20466,2.6215,0.126498 +L 2.6215,0.126498,1.2382,1.090789 +L 1.2382,1.090789,0.3116,2.571304 +L 0.3116,2.571304,0.0005,4.431696 +L 0.0005,4.431696,0.3602,6.340784 +L 0.3602,6.340784,1.4314,7.850524 +L 1.4314,7.850524,2.787,8.717409 +L 2.787,8.717409,4.3933,8.99988 +L 4.2764,8.532343,3.2052,8.308322 +L 3.2052,8.308322,2.3768,7.65572 +L 2.3768,7.65572,1.7049,6.311559 +L 1.7049,6.311559,1.4909,4.460914 +L 1.4909,4.460914,1.7158,2.551826 +L 1.7158,2.551826,2.4065,1.139484 +L 2.4065,1.139484,3.2339,0.477151 +L 3.2339,0.477151,4.2764,0.262861 +L 4.2764,0.262861,5.406,0.496629 +L 5.406,0.496629,6.3227,1.227151 +L 6.3227,1.227151,6.9351,2.473906 +L 6.9351,2.473906,7.1313,4.275848 +L 7.1313,4.275848,6.9162,6.253125 +L 6.9162,6.253125,6.2434,7.645981 +L 6.2434,7.645981,5.3961,8.308322 +L 5.3961,8.308322,4.2764,8.532343 +L 5.4348,11.084294,5.7083,11.035591 +L 5.7083,11.035591,5.9322,10.879751 +L 5.9322,10.879751,6.0888,10.645982 +L 6.0888,10.645982,6.1364,10.373258 +L 6.1364,10.373258,6.0888,10.110272 +L 6.0888,10.110272,5.9322,9.876504 +L 5.9322,9.876504,5.7083,9.730395 +L 5.7083,9.730395,5.4348,9.681691 +L 5.4348,9.681691,5.1623,9.730395 +L 5.1623,9.730395,4.9393,9.876504 +L 4.9393,9.876504,4.7827,10.110272 +L 4.7827,10.110272,4.7342,10.373258 +L 4.7342,10.373258,4.7827,10.645982 +L 4.7827,10.645982,4.9393,10.879751 +L 4.9393,10.879751,5.1623,11.035591 +L 5.1623,11.035591,5.4348,11.084294 +L 3.1457,11.084294,3.4192,11.035591 +L 3.4192,11.035591,3.6531,10.879751 +L 3.6531,10.879751,3.7997,10.645982 +L 3.7997,10.645982,3.8572,10.373258 +L 3.8572,10.373258,3.7997,10.110272 +L 3.7997,10.110272,3.6432,9.876504 +L 3.6432,9.876504,3.4192,9.730395 +L 3.4192,9.730395,3.1566,9.671952 +L 3.1566,9.671952,2.8831,9.730395 +L 2.8831,9.730395,2.6503,9.876504 +L 2.6503,9.876504,2.4937,10.110272 +L 2.4937,10.110272,2.4451,10.373258 +L 2.4451,10.373258,2.4937,10.645982 +L 2.4937,10.645982,2.6503,10.879751 +L 2.6503,10.879751,2.8732,11.035591 +L 2.8732,11.035591,3.1457,11.084294 + +[オ] 12 +L -0.0098,2.132992,2.2793,4.421957 +L 2.2793,4.421957,0.0001,6.701176 +L 0.0001,6.701176,0.3697,7.081045 +L 0.3697,7.081045,2.6588,4.801819 +L 2.6588,4.801819,4.9479,7.081045 +L 4.9479,7.081045,5.3086,6.710915 +L 5.3086,6.710915,3.0195,4.431696 +L 3.0195,4.431696,5.3185,2.132992 +L 5.3185,2.132992,4.9479,1.753122 +L 4.9479,1.753122,2.6489,4.051819 +L 2.6489,4.051819,0.3598,1.762862 +L 0.3598,1.762862,-0.0098,2.132992 + +[カ] 56 +L 6.9651,8.035589,7.8232,9.087539 +L 7.8232,9.087539,8.1928,8.805068 +L 8.1928,8.805068,7.3347,7.714162 +L 7.3347,7.714162,7.9203,6.983639 +L 7.9203,6.983639,8.3088,6.233647 +L 8.3088,6.233647,8.5426,5.415465 +L 8.5426,5.415465,8.6209,4.460914 +L 8.6209,4.460914,8.2226,2.444681 +L 8.2226,2.444681,7.0334,0.857021 +L 7.0334,0.857021,5.7571,0.068056 +L 5.7571,0.068056,4.3559,-0.20466 +L 4.3559,-0.20466,3.6633,-0.13648 +L 3.6633,-0.13648,2.9518,0.038831 +L 2.9518,0.038831,2.2611,0.331042 +L 2.2611,0.331042,1.6665,0.730397 +L 1.6665,0.730397,0.8292,-0.30207 +L 0.8292,-0.30207,0.4497,-0.00012 +L 0.4497,-0.00012,1.3058,1.061564 +L 1.3058,1.061564,0.3218,2.590782 +L 0.3218,2.590782,0.0008,4.490139 +L 0.0008,4.490139,0.3139,6.253125 +L 0.3139,6.253125,1.2672,7.704423 +L 1.2672,7.704423,2.6704,8.678445 +L 2.6704,8.678445,4.3351,8.99988 +L 4.3351,8.99988,5.7294,8.766112 +L 5.7294,8.766112,6.9651,8.035589 +L 6.429,7.363517,5.5134,8.24988 +L 5.5134,8.24988,4.3054,8.542082 +L 4.3054,8.542082,3.7604,8.503126 +L 3.7604,8.503126,3.3511,8.395981 +L 3.3511,8.395981,2.8834,8.142734 +L 2.8834,8.142734,2.4751,7.772604 +L 2.4751,7.772604,2.0362,7.139488 +L 2.0362,7.139488,1.726,6.379748 +L 1.726,6.379748,1.5397,5.503124 +L 1.5397,5.503124,1.4812,4.529095 +L 1.4812,4.529095,1.5982,3.116761 +L 1.5982,3.116761,1.9598,1.879746 +L 1.9598,1.879746,6.429,7.363517 +L 6.6737,6.905719,2.2215,1.412209 +L 2.2215,1.412209,2.5921,0.94468 +L 2.5921,0.94468,2.9815,0.632991 +L 2.9815,0.632991,3.585,0.360267 +L 3.585,0.360267,4.2668,0.262861 +L 4.2668,0.262861,4.8811,0.321303 +L 4.8811,0.321303,5.3776,0.467412 +L 5.3776,0.467412,5.7977,0.730397 +L 5.7977,0.730397,6.1951,1.100528 +L 6.1951,1.100528,6.5459,1.61676 +L 6.5459,1.61676,6.8481,2.308318 +L 6.8481,2.308318,7.0533,3.184942 +L 7.0533,3.184942,7.1207,4.25637 +L 7.1207,4.25637,7.0919,5.025849 +L 7.0919,5.025849,7.0037,5.736893 +L 7.0037,5.736893,6.8779,6.282342 +L 6.8779,6.282342,6.6737,6.905719 + +[キ] 60 +L 6.273,8.56156,6.273,8.805068 +L 6.273,8.805068,9.3905,8.805068 +L 9.3905,8.805068,9.3905,8.56156 +L 9.3905,8.56156,9.0586,8.56156 +L 9.0586,8.56156,8.6008,8.454423 +L 8.6008,8.454423,8.2599,8.123256 +L 8.2599,8.123256,8.1628,7.792082 +L 8.1628,7.792082,8.1241,7.188183 +L 8.1241,7.188183,8.1241,3.623254 +L 8.1241,3.623254,8.0557,2.444681 +L 8.0557,2.444681,7.8605,1.568057 +L 7.8605,1.568057,7.4721,0.886238 +L 7.4721,0.886238,6.828,0.311564 +L 6.828,0.311564,5.9232,-0.07804 +L 5.9232,-0.07804,4.7341,-0.20466 +L 4.7341,-0.20466,3.4687,-0.07804 +L 3.4687,-0.07804,2.5521,0.292086 +L 2.5521,0.292086,1.909,0.876499 +L 1.909,0.876499,1.4908,1.636238 +L 1.4908,1.636238,1.3352,2.464159 +L 1.3352,2.464159,1.2857,3.808319 +L 1.2857,3.808319,1.2857,7.246633 +L 1.2857,7.246633,1.2272,7.918705 +L 1.2272,7.918705,1.0617,8.308322 +L 1.0617,8.308322,0.7714,8.503126 +L 0.7714,8.503126,0.3314,8.56156 +L 0.3314,8.56156,0.0014,8.56156 +L 0.0014,8.56156,0.0014,8.805068 +L 0.0014,8.805068,3.8086,8.805068 +L 3.8086,8.805068,3.8086,8.56156 +L 3.8086,8.56156,3.4687,8.56156 +L 3.4687,8.56156,3,8.473901 +L 3,8.473901,2.6898,8.220655 +L 2.6898,8.220655,2.5719,7.860263 +L 2.5719,7.860263,2.5332,7.246633 +L 2.5332,7.246633,2.5332,3.408964 +L 2.5332,3.408964,2.5521,2.853775 +L 2.5521,2.853775,2.6204,2.230398 +L 2.6204,2.230398,2.7582,1.645977 +L 2.7582,1.645977,2.9623,1.197926 +L 2.9623,1.197926,3.2646,0.86676 +L 3.2646,0.86676,3.6738,0.594035 +L 3.6738,0.594035,4.1891,0.408962 +L 4.1891,0.408962,4.8134,0.350528 +L 4.8134,0.350528,5.6299,0.447926 +L 5.6299,0.447926,6.3622,0.730397 +L 6.3622,0.730397,6.936,1.158963 +L 6.936,1.158963,7.2858,1.69468 +L 7.2858,1.69468,7.481,2.483645 +L 7.481,2.483645,7.5405,3.681696 +L 7.5405,3.681696,7.5405,7.246633 +L 7.5405,7.246633,7.4909,7.918705 +L 7.4909,7.918705,7.3542,8.279097 +L 7.3542,8.279097,7.042,8.493387 +L 7.042,8.493387,6.604,8.56156 +L 6.604,8.56156,6.273,8.56156 +L 3.5846,11.658968,5.0264,11.658968 +L 5.0264,11.658968,5.7191,9.428445 +L 5.7191,9.428445,5.4942,9.428445 +L 5.4942,9.428445,3.5846,11.658968 + +[ク] 60 +L 6.2737,8.56156,6.2737,8.805068 +L 6.2737,8.805068,9.3902,8.805068 +L 9.3902,8.805068,9.3902,8.56156 +L 9.3902,8.56156,9.0592,8.56156 +L 9.0592,8.56156,8.6014,8.454423 +L 8.6014,8.454423,8.2605,8.123256 +L 8.2605,8.123256,8.1634,7.792082 +L 8.1634,7.792082,8.1238,7.188183 +L 8.1238,7.188183,8.1238,3.623254 +L 8.1238,3.623254,8.0564,2.444681 +L 8.0564,2.444681,7.8612,1.568057 +L 7.8612,1.568057,7.4717,0.886238 +L 7.4717,0.886238,6.8286,0.311564 +L 6.8286,0.311564,5.9229,-0.07804 +L 5.9229,-0.07804,4.7348,-0.20466 +L 4.7348,-0.20466,3.4683,-0.07804 +L 3.4683,-0.07804,2.5527,0.292086 +L 2.5527,0.292086,1.9096,0.876499 +L 1.9096,0.876499,1.4914,1.636238 +L 1.4914,1.636238,1.3348,2.464159 +L 1.3348,2.464159,1.2863,3.808319 +L 1.2863,3.808319,1.2863,7.246633 +L 1.2863,7.246633,1.2278,7.918705 +L 1.2278,7.918705,1.0623,8.308322 +L 1.0623,8.308322,0.77,8.503126 +L 0.77,8.503126,0.332,8.56156 +L 0.332,8.56156,0.001,8.56156 +L 0.001,8.56156,0.001,8.805068 +L 0.001,8.805068,3.8092,8.805068 +L 3.8092,8.805068,3.8092,8.56156 +L 3.8092,8.56156,3.4683,8.56156 +L 3.4683,8.56156,3.0006,8.473901 +L 3.0006,8.473901,2.6895,8.220655 +L 2.6895,8.220655,2.5725,7.860263 +L 2.5725,7.860263,2.5329,7.246633 +L 2.5329,7.246633,2.5329,3.408964 +L 2.5329,3.408964,2.5527,2.853775 +L 2.5527,2.853775,2.6211,2.230398 +L 2.6211,2.230398,2.7568,1.645977 +L 2.7568,1.645977,2.962,1.197926 +L 2.962,1.197926,3.2642,0.86676 +L 3.2642,0.86676,3.6725,0.594035 +L 3.6725,0.594035,4.1887,0.408962 +L 4.1887,0.408962,4.812,0.350528 +L 4.812,0.350528,5.6306,0.447926 +L 5.6306,0.447926,6.3609,0.730397 +L 6.3609,0.730397,6.9356,1.158963 +L 6.9356,1.158963,7.2864,1.69468 +L 7.2864,1.69468,7.4816,2.483645 +L 7.4816,2.483645,7.5401,3.681696 +L 7.5401,3.681696,7.5401,7.246633 +L 7.5401,7.246633,7.4915,7.918705 +L 7.4915,7.918705,7.3548,8.279097 +L 7.3548,8.279097,7.0426,8.493387 +L 7.0426,8.493387,6.6047,8.56156 +L 6.6047,8.56156,6.2737,8.56156 +L 6.1657,11.658968,4.2472,9.428445 +L 4.2472,9.428445,4.0233,9.428445 +L 4.0233,9.428445,4.705,11.658968 +L 4.705,11.658968,6.1657,11.658968 + +[ケ] 63 +L 6.2743,8.56156,6.2743,8.805068 +L 6.2743,8.805068,9.3908,8.805068 +L 9.3908,8.805068,9.3908,8.56156 +L 9.3908,8.56156,9.0588,8.56156 +L 9.0588,8.56156,8.602,8.454423 +L 8.602,8.454423,8.2621,8.123256 +L 8.2621,8.123256,8.164,7.792082 +L 8.164,7.792082,8.1254,7.188183 +L 8.1254,7.188183,8.1254,3.623254 +L 8.1254,3.623254,8.057,2.444681 +L 8.057,2.444681,7.8618,1.568057 +L 7.8618,1.568057,7.4724,0.886238 +L 7.4724,0.886238,6.8292,0.311564 +L 6.8292,0.311564,5.9235,-0.07804 +L 5.9235,-0.07804,4.7344,-0.20466 +L 4.7344,-0.20466,3.469,-0.07804 +L 3.469,-0.07804,2.5533,0.292086 +L 2.5533,0.292086,1.9102,0.876499 +L 1.9102,0.876499,1.492,1.636238 +L 1.492,1.636238,1.3355,2.464159 +L 1.3355,2.464159,1.2869,3.808319 +L 1.2869,3.808319,1.2869,7.246633 +L 1.2869,7.246633,1.2295,7.918705 +L 1.2295,7.918705,1.063,8.308322 +L 1.063,8.308322,0.7706,8.503126 +L 0.7706,8.503126,0.3327,8.56156 +L 0.3327,8.56156,0.0007,8.56156 +L 0.0007,8.56156,0.0007,8.805068 +L 0.0007,8.805068,3.8099,8.805068 +L 3.8099,8.805068,3.8099,8.56156 +L 3.8099,8.56156,3.469,8.56156 +L 3.469,8.56156,3.0012,8.473901 +L 3.0012,8.473901,2.6891,8.220655 +L 2.6891,8.220655,2.5732,7.860263 +L 2.5732,7.860263,2.5335,7.246633 +L 2.5335,7.246633,2.5335,3.408964 +L 2.5335,3.408964,2.5533,2.853775 +L 2.5533,2.853775,2.6207,2.230398 +L 2.6207,2.230398,2.7575,1.645977 +L 2.7575,1.645977,2.9626,1.197926 +L 2.9626,1.197926,3.2638,0.86676 +L 3.2638,0.86676,3.6731,0.594035 +L 3.6731,0.594035,4.1904,0.408962 +L 4.1904,0.408962,4.8127,0.350528 +L 4.8127,0.350528,5.6322,0.447926 +L 5.6322,0.447926,6.3615,0.730397 +L 6.3615,0.730397,6.9363,1.158963 +L 6.9363,1.158963,7.288,1.69468 +L 7.288,1.69468,7.4813,2.483645 +L 7.4813,2.483645,7.5397,3.681696 +L 7.5397,3.681696,7.5397,7.246633 +L 7.5397,7.246633,7.4922,7.918705 +L 7.4922,7.918705,7.3564,8.279097 +L 7.3564,8.279097,7.0433,8.493387 +L 7.0433,8.493387,6.6053,8.56156 +L 6.6053,8.56156,6.2743,8.56156 +L 4.4242,11.63949,5.6213,11.63949 +L 5.6213,11.63949,6.8491,9.496634 +L 6.8491,9.496634,6.6538,9.496634 +L 6.6538,9.496634,4.8811,10.870011 +L 4.8811,10.870011,3.3907,9.486895 +L 3.3907,9.486895,3.1955,9.486895 +L 3.1955,9.486895,4.4242,11.63949 + +[コ] 88 +L 6.273,8.56156,6.273,8.805068 +L 6.273,8.805068,9.3905,8.805068 +L 9.3905,8.805068,9.3905,8.56156 +L 9.3905,8.56156,9.0605,8.56156 +L 9.0605,8.56156,8.6017,8.454423 +L 8.6017,8.454423,8.2608,8.123256 +L 8.2608,8.123256,8.1627,7.792082 +L 8.1627,7.792082,8.124,7.188183 +L 8.124,7.188183,8.124,3.623254 +L 8.124,3.623254,8.0557,2.444681 +L 8.0557,2.444681,7.8604,1.568057 +L 7.8604,1.568057,7.471,0.886238 +L 7.471,0.886238,6.8279,0.311564 +L 6.8279,0.311564,5.9222,-0.07804 +L 5.9222,-0.07804,4.734,-0.20466 +L 4.734,-0.20466,3.4686,-0.07804 +L 3.4686,-0.07804,2.552,0.292086 +L 2.552,0.292086,1.9099,0.876499 +L 1.9099,0.876499,1.4907,1.636238 +L 1.4907,1.636238,1.3351,2.464159 +L 1.3351,2.464159,1.2876,3.808319 +L 1.2876,3.808319,1.2876,7.246633 +L 1.2876,7.246633,1.2281,7.918705 +L 1.2281,7.918705,1.0626,8.308322 +L 1.0626,8.308322,0.7703,8.503126 +L 0.7703,8.503126,0.3313,8.56156 +L 0.3313,8.56156,0.0003,8.56156 +L 0.0003,8.56156,0.0003,8.805068 +L 0.0003,8.805068,3.8105,8.805068 +L 3.8105,8.805068,3.8105,8.56156 +L 3.8105,8.56156,3.4686,8.56156 +L 3.4686,8.56156,3.0009,8.473901 +L 3.0009,8.473901,2.6887,8.220655 +L 2.6887,8.220655,2.5718,7.860263 +L 2.5718,7.860263,2.5342,7.246633 +L 2.5342,7.246633,2.5342,3.408964 +L 2.5342,3.408964,2.552,2.853775 +L 2.552,2.853775,2.6204,2.230398 +L 2.6204,2.230398,2.7571,1.645977 +L 2.7571,1.645977,2.9613,1.197926 +L 2.9613,1.197926,3.2635,0.86676 +L 3.2635,0.86676,3.6737,0.594035 +L 3.6737,0.594035,4.189,0.408962 +L 4.189,0.408962,4.8123,0.350528 +L 4.8123,0.350528,5.6308,0.447926 +L 5.6308,0.447926,6.3612,0.730397 +L 6.3612,0.730397,6.9369,1.158963 +L 6.9369,1.158963,7.2867,1.69468 +L 7.2867,1.69468,7.4819,2.483645 +L 7.4819,2.483645,7.5394,3.681696 +L 7.5394,3.681696,7.5394,7.246633 +L 7.5394,7.246633,7.4908,7.918705 +L 7.4908,7.918705,7.3541,8.279097 +L 7.3541,8.279097,7.0439,8.493387 +L 7.0439,8.493387,6.6059,8.56156 +L 6.6059,8.56156,6.273,8.56156 +L 6.1669,11.084294,6.4385,11.035591 +L 6.4385,11.035591,6.6624,10.879751 +L 6.6624,10.879751,6.819,10.645982 +L 6.819,10.645982,6.8685,10.373258 +L 6.8685,10.373258,6.819,10.110272 +L 6.819,10.110272,6.6624,9.876504 +L 6.6624,9.876504,6.4385,9.730395 +L 6.4385,9.730395,6.1669,9.681691 +L 6.1669,9.681691,5.8944,9.730395 +L 5.8944,9.730395,5.6695,9.876504 +L 5.6695,9.876504,5.5129,10.110272 +L 5.5129,10.110272,5.4644,10.373258 +L 5.4644,10.373258,5.5129,10.645982 +L 5.5129,10.645982,5.6695,10.879751 +L 5.6695,10.879751,5.8944,11.035591 +L 5.8944,11.035591,6.1669,11.084294 +L 3.8779,11.084294,4.1504,11.035591 +L 4.1504,11.035591,4.3842,10.879751 +L 4.3842,10.879751,4.5299,10.645982 +L 4.5299,10.645982,4.5884,10.373258 +L 4.5884,10.373258,4.5299,10.110272 +L 4.5299,10.110272,4.3743,9.876504 +L 4.3743,9.876504,4.1504,9.730395 +L 4.1504,9.730395,3.8868,9.671952 +L 3.8868,9.671952,3.6143,9.730395 +L 3.6143,9.730395,3.3804,9.876504 +L 3.3804,9.876504,3.2248,10.110272 +L 3.2248,10.110272,3.1763,10.373258 +L 3.1763,10.373258,3.2248,10.645982 +L 3.2248,10.645982,3.3804,10.879751 +L 3.3804,10.879751,3.6054,11.035591 +L 3.6054,11.035591,3.8779,11.084294 + +[サ] 57 +L 6.2151,8.805068,9.2841,8.805068 +L 9.2841,8.805068,9.2841,8.56156 +L 9.2841,8.56156,9.1077,8.56156 +L 9.1077,8.56156,8.9036,8.522604 +L 8.9036,8.522604,8.6211,8.415459 +L 8.6211,8.415459,8.31,8.230394 +L 8.31,8.230394,8.0266,7.986894 +L 8.0266,7.986894,7.7352,7.616763 +L 7.7352,7.616763,7.3745,7.071306 +L 7.3745,7.071306,5.251,3.730399 +L 5.251,3.730399,5.251,1.529101 +L 5.251,1.529101,5.2995,0.86676 +L 5.2995,0.86676,5.4353,0.516107 +L 5.4353,0.516107,5.7484,0.311564 +L 5.7484,0.311564,6.2151,0.243383 +L 6.2151,0.243383,6.4976,0.243383 +L 6.4976,0.243383,6.4976,-0.00012 +L 6.4976,-0.00012,2.7587,-0.00012 +L 2.7587,-0.00012,2.7587,0.243383 +L 2.7587,0.243383,3.0689,0.243383 +L 3.0689,0.243383,3.5465,0.321303 +L 3.5465,0.321303,3.8577,0.574549 +L 3.8577,0.574549,3.9657,0.915455 +L 3.9657,0.915455,4.0053,1.529101 +L 4.0053,1.529101,4.0053,3.613515 +L 4.0053,3.613515,1.5885,7.295328 +L 1.5885,7.295328,1.2277,7.821307 +L 1.2277,7.821307,1.0048,8.10377 +L 1.0048,8.10377,0.7709,8.288836 +L 0.7709,8.288836,0.3706,8.493387 +L 0.3706,8.493387,0.215,8.542082 +L 0.215,8.542082,0.001,8.56156 +L 0.001,8.56156,0.001,8.805068 +L 0.001,8.805068,3.7606,8.805068 +L 3.7606,8.805068,3.7606,8.56156 +L 3.7606,8.56156,3.5664,8.56156 +L 3.5664,8.56156,3.274,8.522604 +L 3.274,8.522604,3.0104,8.415459 +L 3.0104,8.415459,2.8162,8.240141 +L 2.8162,8.240141,2.7478,7.986894 +L 2.7478,7.986894,2.845,7.665459 +L 2.845,7.665459,3.1472,7.149227 +L 3.1472,7.149227,4.9874,4.314812 +L 4.9874,4.314812,6.7116,7.022603 +L 6.7116,7.022603,7.0039,7.558314 +L 7.0039,7.558314,7.102,7.928452 +L 7.102,7.928452,7.0723,8.10377 +L 7.0723,8.10377,7.0039,8.259619 +L 7.0039,8.259619,6.887,8.386242 +L 6.887,8.386242,6.7413,8.483648 +L 6.7413,8.483648,6.5174,8.542082 +L 6.5174,8.542082,6.2151,8.56156 +L 6.2151,8.56156,6.2151,8.805068 +L 6.342,11.658968,4.4225,9.428445 +L 4.4225,9.428445,4.1996,9.428445 +L 4.1996,9.428445,4.8813,11.658968 +L 4.8813,11.658968,6.342,11.658968 + +[シ] 70 +L 2.4938,6.798574,2.9714,6.798574 +L 2.9714,6.798574,3.8286,6.779096 +L 3.8286,6.779096,4.4331,6.720654 +L 4.4331,6.720654,5.0663,6.555067 +L 5.0663,6.555067,5.5915,6.311559 +L 5.5915,6.311559,6.0196,5.960914 +L 6.0196,5.960914,6.3515,5.522603 +L 6.3515,5.522603,6.5745,4.996632 +L 6.5745,4.996632,6.6429,4.412211 +L 6.6429,4.412211,6.6042,3.934943 +L 6.6042,3.934943,6.4586,3.486892 +L 6.4586,3.486892,6.2445,3.097283 +L 6.2445,3.097283,5.9512,2.756369 +L 5.9512,2.756369,5.6113,2.483645 +L 5.6113,2.483645,5.2308,2.269355 +L 5.2308,2.269355,4.773,2.113514 +L 4.773,2.113514,4.1883,2.006369 +L 4.1883,2.006369,3.7612,1.977152 +L 3.7612,1.977152,2.9526,1.977152 +L 2.9526,1.977152,2.4938,1.977152 +L 2.4938,1.977152,2.4938,1.577796 +L 2.4938,1.577796,2.5523,0.886238 +L 2.5523,0.886238,2.7178,0.48689 +L 2.7178,0.48689,3.02,0.301825 +L 3.02,0.301825,3.4877,0.243383 +L 3.4877,0.243383,3.7503,0.243383 +L 3.7503,0.243383,3.7503,-0.00012 +L 3.7503,-0.00012,0.0006,-0.00012 +L 0.0006,-0.00012,0.0006,0.243383 +L 0.0006,0.243383,0.2434,0.243383 +L 0.2434,0.243383,0.7607,0.331042 +L 0.7607,0.331042,1.1105,0.603774 +L 1.1105,0.603774,1.2076,0.934941 +L 1.2076,0.934941,1.2373,1.558318 +L 1.2373,1.558318,1.2373,7.188183 +L 1.2373,7.188183,1.2175,7.792082 +L 1.2175,7.792082,1.1689,8.10377 +L 1.1689,8.10377,1.052,8.269358 +L 1.052,8.269358,0.8588,8.415459 +L 0.8588,8.415459,0.5843,8.522604 +L 0.5843,8.522604,0.2632,8.56156 +L 0.2632,8.56156,0.0006,8.56156 +L 0.0006,8.56156,0.0006,8.805068 +L 0.0006,8.805068,3.7503,8.805068 +L 3.7503,8.805068,3.7503,8.56156 +L 3.7503,8.56156,3.4976,8.56156 +L 3.4976,8.56156,3.1954,8.522604 +L 3.1954,8.522604,2.8842,8.415459 +L 2.8842,8.415459,2.7079,8.288836 +L 2.7079,8.288836,2.5909,8.094031 +L 2.5909,8.094031,2.5146,7.762865 +L 2.5146,7.762865,2.4938,7.227147 +L 2.4938,7.227147,2.4938,6.798574 +L 2.4938,6.301828,2.4938,2.434942 +L 2.4938,2.434942,2.7772,2.434942 +L 2.7772,2.434942,3.4877,2.483645 +L 3.4877,2.483645,4.0129,2.620007 +L 4.0129,2.620007,4.5193,2.91221 +L 4.5193,2.91221,4.88,3.321304 +L 4.88,3.321304,5.0841,3.818058 +L 5.0841,3.818058,5.1525,4.392732 +L 5.1525,4.392732,5.1049,4.860269 +L 5.1049,4.860269,4.9583,5.288834 +L 4.9583,5.288834,4.7244,5.658965 +L 4.7244,5.658965,4.4222,5.931697 +L 4.4222,5.931697,4.0813,6.126502 +L 4.0813,6.126502,3.6928,6.243386 +L 3.6928,6.243386,3.3411,6.282342 +L 3.3411,6.282342,2.806,6.301828 +L 2.806,6.301828,2.4938,6.301828 + +[ス] 71 +L 0.0003,-0.00012,0.0003,0.233644 +L 0.0003,0.233644,0.3401,0.282339 +L 0.3401,0.282339,0.5552,0.370006 +L 0.5552,0.370006,0.7008,0.496629 +L 0.7008,0.496629,0.789,0.662209 +L 0.789,0.662209,0.8465,0.954419 +L 0.8465,0.954419,0.8564,1.460912 +L 0.8564,1.460912,0.8564,6.272603 +L 0.8564,6.272603,1.013,7.65572 +L 1.013,7.65572,1.4619,8.56156 +L 1.4619,8.56156,2.1912,9.068053 +L 2.1912,9.068053,3.1762,9.233641 +L 3.1762,9.233641,4.1206,9.087539 +L 4.1206,9.087539,4.8499,8.639488 +L 4.8499,8.639488,5.3077,7.957669 +L 5.3077,7.957669,5.4653,7.120009 +L 5.4653,7.120009,5.3761,6.486893 +L 5.3761,6.486893,5.1135,5.951175 +L 5.1135,5.951175,4.7627,5.620009 +L 4.7627,5.620009,4.2266,5.327798 +L 4.2266,5.327798,4.9966,4.977153 +L 4.9966,4.977153,5.5515,4.431696 +L 5.5515,4.431696,5.8825,3.681696 +L 5.8825,3.681696,6.0004,2.736891 +L 6.0004,2.736891,5.8438,1.684941 +L 5.8438,1.684941,5.4058,0.759615 +L 5.4058,0.759615,4.7141,0.126498 +L 4.7141,0.126498,3.8183,-0.08779 +L 3.8183,-0.08779,3.312,-0.00986 +L 3.312,-0.00986,2.9116,0.223905 +L 2.9116,0.223905,2.6589,0.56481 +L 2.6589,0.56481,2.5717,0.964166 +L 2.5717,0.964166,2.6104,1.207666 +L 2.6104,1.207666,2.7174,1.382992 +L 2.7174,1.382992,2.874,1.499876 +L 2.874,1.499876,3.087,1.529101 +L 3.087,1.529101,3.312,1.499876 +L 3.312,1.499876,3.4775,1.392731 +L 3.4775,1.392731,3.5835,1.227151 +L 3.5835,1.227151,3.6231,1.0226 +L 3.6231,1.0226,3.6142,0.915455 +L 3.6142,0.915455,3.5934,0.808318 +L 3.5934,0.808318,3.5647,0.671955 +L 3.5647,0.671955,3.5547,0.574549 +L 3.5547,0.574549,3.5756,0.467412 +L 3.5756,0.467412,3.6529,0.370006 +L 3.6529,0.370006,3.7688,0.301825 +L 3.7688,0.301825,3.9155,0.282339 +L 3.9155,0.282339,4.2762,0.360267 +L 4.2762,0.360267,4.5586,0.623252 +L 4.5586,0.623252,4.8113,1.197926 +L 4.8113,1.197926,4.8905,2.025847 +L 4.8905,2.025847,4.7726,3.233645 +L 4.7726,3.233645,4.4119,4.168703 +L 4.4119,4.168703,3.8183,4.782341 +L 3.8183,4.782341,2.98,5.025849 +L 2.98,5.025849,2.98,5.395979 +L 2.98,5.395979,3.5835,5.493385 +L 3.5835,5.493385,4.0225,5.805066 +L 4.0225,5.805066,4.2861,6.340784 +L 4.2861,6.340784,4.3733,7.149227 +L 4.3733,7.149227,4.2861,7.899227 +L 4.2861,7.899227,4.0324,8.415459 +L 4.0324,8.415459,3.633,8.707662 +L 3.633,8.707662,3.1267,8.805068 +L 3.1267,8.805068,2.649,8.697923 +L 2.649,8.697923,2.2695,8.386242 +L 2.2695,8.386242,2.0158,7.762865 +L 2.0158,7.762865,1.9375,6.730401 +L 1.9375,6.730401,1.9375,-0.00012 +L 1.9375,-0.00012,0.0003,-0.00012 + +#EOF diff --git a/pycam/share/fonts/normallatin1.cxf b/pycam/share/fonts/normallatin1.cxf new file mode 100644 index 00000000..8e5fefd0 --- /dev/null +++ b/pycam/share/fonts/normallatin1.cxf @@ -0,0 +1,1264 @@ +# Format: QCad II Font +# Creator: QCad +# Version: 1 +# Name: Normal Latin 1 +# LetterSpacing: 3.0 +# WordSpacing: 6.75 +# LineSpacingFactor: 1.0 +# Author: Hughes Jeangerard + +[!] 2 +L 0,9,0,3 +L 0,-0.000001,0,0.499999 + +["] 2 +L 0.4999,7,0.9999,9 +L 3.5,7,4,9 + +[#] 4 +L 1.9999,-0.000001,1.9999,9 +L 4.9999,9,4.9999,-0.000001 +L -0.0001,2.5,7,2.5 +L 7,6.499999,-0.0001,6.499999 + +[$] 6 +L 1.347673,5.087685,3.652245,3.912302 +A 2.090991,2.761358,5.420455,63.074584,90 +A 2.090991,6.54545,1.636364,90,242.98118 +A 2.909173,2.454541,1.636364,270,62.981185 +A 2.909173,6.238631,5.420455,243.07458,270 +L 2.5,8.999995,2.5,-0.000005 + +[%] 5 +L 7.551897,9,0,0 +A 1.5,7.5,1.5,90,270 +A 1.5,7.5,1.5,270,90 +A 6,1.5,1.5,90,270 +A 6,1.5,1.5,270,90 + +[&] 5 +L 6,3.214991,3.4259,0.597639 +L 0.574,3.402359,3.5695,6.448232 +L 1.1927,6.764281,5,-0.000001 +A 2,2,2,135.47807,315.47807 +A 2.5,7.5,1.5,315.47825,209.37229 + +['] 1 +L 0.4999,7,0.9999,9 + +[(] 1 +A 13,4,12.999999,157.38012,202.61985 + +[)] 1 +A -12.0001,4,12.999999,337.38012,22.619857 + +[*] 2 +L 0,5.999999,4,2 +L 4,5.999999,0,2 + +[+] 2 +L -0.0001,4,4,4 +L 2,5.999999,2,2 + +[,] 2 +L 0.9999,-0.000001,-0.0001,-3 +L 0.9999,-0.000001,0.9999,0.499999 + +[-] 1 +L -0.0001,4,3.9999,4 + +[.] 1 +L 0,-0.000001,0,0.499999 + +[/] 1 +L 4,9,0,-0.000001 + +[0] 10 +A 2,7.91049,1.08951,32.75695,147.243042 +A 4.93335,5.62352,4.80559,143.232468,169.491135 +A 4.93335,3.37648,4.80559,190.508865,216.767532 +A 2,1.08951,1.08951,212.756958,327.243042 +A -0.93335,3.37648,4.80559,323.232452,349.491119 +A -5.404663,4.46906,9.40473,347.913147,0.18851 +A -5.404663,4.53094,9.40473,359.811493,12.08686 +A -0.93335,5.62352,4.80559,10.50887,36.76754 +A 9.404663,4.46906,9.40473,179.811493,192.086868 +A 9.404663,4.53094,9.40473,167.913132,180.188507 + +[1] 2 +L -0.0001,7,1.9999,9 +L 1.9999,9,1.9999,-0.000001 + +[2] 4 +L 3.9999,-0.000001,0,-0.000001 +L 0,-0.000001,3.8645,6.646678 +A 2.9999,7.149312,1,329.82546,20.529098 +A 1.9999,7,2,14.477508,165.52247 + +[3] 7 +L 0,9,2,9 +L 2,4.999999,1,4.999999 +L 4,3,4,2 +L 2,-0.000001,0,-0.000001 +A 2,7,2,270,90 +A 2,3,2,0,90 +A 2,2,2,270,0 + +[4] 3 +L 3.5,-0.000001,3.5,4 +L 5,2,0,2 +L 0,2,2,9 + +[5] 7 +L 4,9,-0.0001,9 +L -0.0001,9,-0.0001,4.999999 +L -0.0001,4.999999,1.9999,4.999999 +L 4,3,4,2 +L 1.9999,-0.000001,-0.0001,-0.000001 +A 1.9999,3,2,0,90 +A 1.9999,2,2,270,0 + +[6] 6 +L -0.0001,3.803849,-0.0001,2 +L 3.9999,2,3.9999,3 +L 1.9999,4.999999,0.1204,4.999999 +A 5.9999,3.803849,6,120,180 +A 1.9999,2,2,180,0 +A 1.9999,3,2,0,90 + +[7] 3 +L 0,9,3.9999,9 +L 3.9999,9,1.5,-0.000001 +L 1.9999,4.999999,3.9999,4.999999 + +[8] 8 +L 0,3,0,2 +L 4,2,4,3 +L 0.25,7.249998,0.25,6.750001 +L 3.75,6.750001,3.75,7.249998 +A 2,2,2,180,0 +A 2,3,2,0,180 +A 2,6.750001,1.75,180,0 +A 2,7.249998,1.75,0,180 + +[9] 6 +L 4,5.19615,4,7 +L -0.0001,7,-0.0001,5.999999 +L 2,4,3.8796,4 +A -2.0001,5.19615,6,300,0 +A 2,7,2,0,180 +A 2,5.999999,2,180,270 + +[:] 2 +L -0.0001,-0.000001,-0.0001,0.499999 +L -0.0001,4,-0.0001,3.5 + +[;] 3 +L 0.9999,-0.000001,-0.0001,-3 +L 0.9999,-0.000001,0.9999,0.499999 +L 0.9999,4,0.9999,3.5 + +[<] 2 +L 3.9999,7,0,3.5 +L 0,3.5,3.9999,-0.000001 + +[=] 2 +L 0,5.499999,4,5.499999 +L 0,2.5,4,2.5 + +[>] 2 +L -0.0001,7,4,3.5 +L 4,3.5,-0.0001,-0.000001 + +[?] 9 +L 2,-0.000001,2,0.499999 +L 2,3,2,3.394449 +L 0,7,0,7.5 +L 1.5,9,2.5,9 +L 3.664,6.496151,2.336,4.503848 +A 4,3.394449,2,146.30993,180 +A 2,7.605547,2,326.30999,358.37925 +A 1.5,7.5,1.5,90,180 +A 2.5,7.5,1.5,1.87146,90 + +[@] 11 +L 8,0.999999,6.0676,0.28186 +L 2.4784,4.392247,2.5979,4.990294 +L 4.3604,2,4.4395,2 +L 6.3215,3.607756,7,7 +L 5.0495,7,5.1702,7 +A 4.5,4.499999,4.5,333.472,290.3863 +A 7.4124,2.943008,1.2,168.69018,337.88041 +A 4.4395,4,2,168.68978,270 +A 5.1702,5.499999,1.5,348.68998,90 +A 5.0495,4.499999,2.5,90,168.69009 +A 4.3604,4,2,270,348.68984 + +[A] 3 +L -0.0001,-0.000001,2.9998,9 +L 2.9998,9,6.0001,-0.000001 +L 0.8333,2.5,5.1666,2.5 + +[B] 8 +L -0.0001,-0.000001,-0.0001,9 +L -0.0001,9,2.4999,9 +L -0.0001,4.999999,2.6,4.999999 +L 4.9999,2.599999,4.9999,2.399998 +L 2.6,-0.000001,-0.0001,-0.000001 +A 2.4999,7,2,270,90 +A 2.6,2.599999,2.4,0,90 +A 2.6,2.399998,2.4,270,0 + +[C] 5 +L 3.9999,9,1.9999,9 +L -0.0001,7,-0.0001,2 +L 1.9999,-0.000001,3.9999,-0.000001 +A 1.9999,7,2,90,180 +A 1.9999,2,2,180,270 + +[D] 6 +L -0.0001,-0.000001,2.9999,-0.000001 +L 4.9999,2,4.9999,7 +L 2.9999,9,-0.0001,9 +L -0.0001,9,-0.0001,-0.000001 +A 2.9999,2,2,270,0 +A 2.9999,7,2,0,90 + +[E] 4 +L 3.9999,9,0,9 +L 0,9,0,-0.000001 +L 0,-0.000001,3.9999,-0.000001 +L 0,4.999999,2.9999,4.999999 + +[F] 3 +L 4,9,0,9 +L 0,9,0,-0.000001 +L 0,4.999999,4,4.999999 + +[G] 7 +L 5,9,2,9 +L 0,7,0,2 +L 2,-0.000001,5,-0.000001 +L 5,-0.000001,5,4.999999 +L 5,4.999999,3.5,4.999999 +A 2,7,2,90,180 +A 2,2,2,180,270 + +[H] 3 +L 0,9,0,-0.000001 +L 5,-0.000001,5,9 +L 0,4.999999,5,4.999999 + +[I] 1 +L 0.0001,9,0.0001,-0.000001 + +[J] 3 +L 3.0001,9,3.0001,2 +L 0.9998,-0.000001,-0.0001,-0.000001 +A 0.9998,2,2,270,0 + +[K] 3 +L -0.0001,9,-0.0001,-0.000001 +L -0.0001,3.5,4.9998,9 +L 1.6714,5.338441,4.9998,-0.000001 + +[L] 2 +L -0.0001,9,-0.0001,-0.000001 +L -0.0001,-0.000001,3.9999,-0.000001 + +[M] 4 +L -0.0001,-0.000001,-0.0001,9 +L -0.0001,9,2.9999,4 +L 2.9999,4,5.9999,9 +L 5.9999,9,5.9999,-0.000001 + +[N] 3 +L 0,-0.000001,0,9 +L 0,9,4.9999,-0.000001 +L 4.9999,-0.000001,4.9999,9 + +[O] 8 +L 0,2,0,7 +L 2,9,2.9999,9 +L 4.9999,7,4.9999,2 +L 2.9999,-0.000001,2,-0.000001 +A 2,7,2,90,180 +A 2.9999,7,2,0,90 +A 2.9999,2,2,270,0 +A 2,2,2,180,270 + +[P] 6 +L 0,-0.000001,0,9 +L 0,9,3,9 +L 5,7,5,5.999999 +L 3,4,0,4 +A 3,7,2,0,90 +A 3,5.999999,2,270,0 + +[Q] 9 +L 0,2,0,7 +L 2,9,3,9 +L 5,7,5,2 +L 3,-0.000001,2,-0.000001 +L 6,-0.000001,3,2 +A 2,7,2,90,180 +A 3,7,2,0,90 +A 3,2,2,270,0 +A 2,2,2,180,270 + +[R] 7 +L 0,-0.000001,0,9 +L 0,9,3,9 +L 5,7,5,5.999999 +L 3,4,0,4 +L 3,4,5,-0.000001 +A 3,7,2,0,90 +A 3,5.999999,2,270,0 + +[S] 5 +L 1.0916,5.218288,3.9083,3.781709 +A 2.0001,2.374999,6.625,63.074584,90 +A 2.0001,7,2,90,242.98118 +A 3.0001,2,2,270,62.981185 +A 3.0001,6.624999,6.625,243.07458,270 + +[T] 2 +L -0.0001,9,6.0001,9 +L 2.9999,9,2.9999,-0.000001 + +[U] 3 +L -0.0001,9,-0.0001,2.5 +L 4.9999,2.5,4.9999,9 +A 2.4999,2.5,2.5,180,0 + +[V] 2 +L -0.0001,9,2.9999,-0.000001 +L 2.9999,-0.000001,5.9999,9 + +[W] 4 +L -0.0001,9,1.9999,-0.000001 +L 1.9999,-0.000001,3.9999,5.999999 +L 3.9999,5.999999,5.9999,-0.000001 +L 5.9999,-0.000001,7.9999,9 + +[X] 2 +L 0,9,5.9999,-0.000001 +L 0,-0.000001,5.9999,9 + +[Y] 3 +L 0,9,3,4.999999 +L 3,4.999999,3,-0.000001 +L 3,4.999999,6,9 + +[Z] 3 +L 0,9,5,9 +L 5,9,0,-0.000001 +L 0,-0.000001,5,-0.000001 + +[[] 3 +L 1,-1.000001,0,-1.000001 +L 0,-1.000001,0,9 +L 0,9,1,9 + +[\] 1 +L 0.0001,9,4,-0.000001 + +[]] 3 +L -0.0001,9,0.9999,9 +L 0.9999,9,0.9999,-1.000001 +L 0.9999,-1.000001,-0.0001,-1.000001 + +[^] 2 +L 7,5.0001,3.5,9 +L 3.5,9,-0.000001,5.0001 + +[_] 1 +L 0,0,5,0 + +[`] 1 +L 0,9,2,7 + +[a] 6 +L 0.5,5.999999,2.4999,5.999999 +L 3.9999,4.499999,3.9999,-0.000001 +L 3.9999,-0.000001,1.4999,-0.000001 +L 1.4999,3,3.9999,3 +A 2.4999,4.499999,1.5,0,90 +A 1.4999,1.499999,1.5,90,270 + +[b] 6 +L 0,9,0,-0.000001 +L 0,-0.000001,2.5,-0.000001 +L 4,1.499999,4,4.499999 +L 2.5,5.999999,0,5.999999 +A 2.5,1.499999,1.5,270,0 +A 2.5,4.499999,1.5,0,90 + +[c] 5 +L 3,5.999999,1.5,5.999999 +L 0,4.499999,0,1.499999 +L 1.5,-0.000001,3,-0.000001 +A 1.5,4.499999,1.5,90,180 +A 1.5,1.499999,1.5,180,270 + +[d] 6 +L 4,9,4,-0.000001 +L 4,-0.000001,1.5,-0.000001 +L 0,1.499999,0,4.499999 +L 1.5,5.999999,4,5.999999 +A 1.5,1.499999,1.5,180,270 +A 1.5,4.499999,1.5,90,180 + +[e] 6 +L 0.0001,3,4,3 +L 4,3,4,4 +L 0.0001,4,0.0001,1.499999 +L 1.5,-0.000001,4,-0.000001 +A 2,4,2,0,180 +A 1.5,1.499999,1.5,180,270 + +[f] 4 +L 0.9998,-0.000001,0.9998,7.5 +L 2.5001,9,3.0001,9 +L -0.0001,5.999999,3.0001,5.999999 +A 2.5001,7.5,1.5,90,180 + +[g] 8 +L -0.0001,-3,2.4999,-3 +L 3.9998,-1.5,3.9998,5.999999 +L 3.9998,5.999999,1.4999,5.999999 +L -0.0001,4.499999,-0.0001,1.499999 +L 1.4999,-0.000001,3.9998,-0.000001 +A 2.4999,-1.5,1.5,270,0 +A 1.4999,4.499999,1.5,90,180 +A 1.4999,1.499999,1.5,180,270 + +[h] 4 +L -0.0001,9,-0.0001,-0.000001 +L -0.0001,5.999999,2.4999,5.999999 +L 3.9999,4.499999,3.9999,-0.000001 +A 2.4999,4.499999,1.5,0,90 + +[i] 2 +L -0.0001,-0.000001,-0.0001,5.999999 +L -0.0001,8.5,-0.0001,9 + +[j] 4 +L -0.0001,-3,0.4999,-3 +L 1.9999,-1.5,1.9999,5.999999 +L 1.9999,8.5,1.9999,9 +A 0.4999,-1.5,1.5,270,0 + +[k] 3 +L 0,9,0,-0.000001 +L 0,3.5,3.9999,5.999999 +L 1.321,4.32555,3.9999,-0.000001 + +[l] 2 +L 0,9,0,0.999999 +A 1,0.999999,1,180,270 + +[m] 5 +L 0,-0.000001,0,5.999999 +L 0,5.999999,4.5,5.999999 +L 6,4.499999,6,-0.000001 +L 3,5.999999,3,-0.000001 +A 4.5,4.499999,1.5,0,90 + +[n] 4 +L 0,-0.000001,0,5.999999 +L 0,5.999999,2.5,5.999999 +L 4,4.499999,4,-0.000001 +A 2.5,4.499999,1.5,0,90 + +[o] 4 +L -0.0002,4,-0.0002,2 +L 4,2,4,4 +A 2.0001,2,2,180,0 +A 2.0001,4,2,0,180 + +[p] 6 +L -0.0001,-0.000001,2.4998,-0.000001 +L 3.9998,1.499999,3.9998,4.499999 +L 2.4998,5.999999,-0.0001,5.999999 +L -0.0001,5.999999,-0.0001,-3 +A 2.4998,1.499999,1.5,270,0 +A 2.4998,4.499999,1.5,0,90 + +[q] 6 +L 3.9999,-0.000001,1.4999,-0.000001 +L -0.0001,1.499999,-0.0001,4.499999 +L 1.4999,5.999999,3.9999,5.999999 +L 3.9999,5.999999,3.9999,-3 +A 1.4999,1.499999,1.5,180,270 +A 1.4999,4.499999,1.5,90,180 + +[r] 3 +L -0.0001,-0.000001,-0.0001,5.999999 +L -0.0001,5.999999,1.9999,5.999999 +A 1.9999,4.999999,1,0,90 + +[s] 5 +L 0.8144,3.42309,3.1854,2.45509 +A 2.1642,1.82088,4.0573,63.097366,108.27551 +A 1.2681,4.534059,1.2,108.27456,247.79054 +A 2.732,1.344119,1.19999,288.27493,67.791183 +A 1.8357,4.057319,4.05732,243.09764,288.27551 + +[t] 2 +L 0,5.999999,2.9999,5.999999 +L 1,9,1,-0.000001 + +[u] 4 +L 0,5.999999,0,1.499999 +L 1.5,-0.000001,4,-0.000001 +L 4,-0.000001,4,5.999999 +A 1.5,1.499999,1.5,180,270 + +[v] 2 +L 0,5.999999,2,-0.000001 +L 2,-0.000001,4,5.999999 + +[w] 4 +L 0,5.999999,1.5,-0.000001 +L 1.5,-0.000001,3,4 +L 3,4,4.5,-0.000001 +L 4.5,-0.000001,6,5.999999 + +[x] 2 +L 0.0001,5.999999,4,-0.000001 +L 0.0001,-0.000001,4,5.999999 + +[y] 4 +L -0.0001,5.999999,1.9998,-0.000001 +L 4.0001,5.999999,1.2278,-2.316231 +L 0.2793,-3,-0.0001,-3 +A 0.2793,-2,1,270,341.56504 + +[z] 3 +L -0.0001,5.999999,3.9999,5.999999 +L 3.9999,5.999999,-0.0001,-0.000001 +L -0.0001,-0.000001,3.9999,-0.000001 + +[{] 6 +L 0.9999,8,0.9999,4.999999 +L 0.9999,3,0.9999,-0.000001 +A 1.9999,8,1,90,180 +A -0.0001,4.999999,1,270,0 +A -0.0001,3,1,0,90 +A 1.9999,-0.000001,1,180,270 + +[|] 1 +L 0,9,0,0 + +[}] 6 +L 0.9999,8,0.9999,4.999999 +L 0.9999,3,0.9999,-0.000001 +A 0,8,1,0,90 +A 1.9999,4.999999,1,180,270 +A 1.9999,3,1,90,180 +A 0,-0.000001,1,270,0 + +[~] 3 +L 2.511533,2.732524,1.488467,3.267476 +A 0.9998,2.333333,1.054092,62.400573,161.56504 +A 3.000067,3.666667,1.054092,242.40057,341.56504 + +[] 2 +L 0,0,0,6 +L 0,9.000001,0,8.500001 + +[] 3 +L 2.0002,-0.000001,4.0001,9 +A 3.0001,4.499999,3,77.471176,257.47117 +A 3.0001,4.499999,3,257.47117,77.471176 + +[] 6 +L 0,0,4,0 +A 4,1,1,270,0 +A 0,1,1,270,0 +A 2.75,7.25,1.75,0,180 +L 1,7.25,1,1 +L 0,4.5,3,4.5 + +[] 6 +A 1.5,4.5,1.05,90,270 +A 1.5,4.5,1.05,270,90 +L 0,6,0.757538,5.242462 +L 0.757538,3.757538,0,3 +L 3,6,2.242462,5.242462 +L 2.242462,3.757538,3,3 + +[] 5 +L 0,9,3,4.999999 +L 3,4.999999,3,-0.000001 +L 3,4.999999,6,9 +L 1.5,5,4.5,5 +L 1.5,4,4.5,4 + +[] 2 +L 0,9,0,5.5 +L 0,3.5,0,0 + +[] 4 +A 1.5,4.5,1.5,90,270 +A 1.5,4.5,1.5,270,90 +A 1.5,7.5,1.5,0,270 +A 1.5,1.5,1.5,180,90 + +[] 2 +L -0.0001,7.5,-0.0001,7 +L 2.9999,7.5,2.9999,7 + +[] 12 +L 5.611111,8,4.055556,8 +L 2.5,6.444444,2.5,2.555556 +L 4.055556,0.999999,5.611111,0.999999 +A 4.055556,6.444444,1.555556,90,180 +A 4.055556,2.555556,1.555556,180,270 +L 5.611111,8,4.055556,8 +L 2.5,6.444444,2.5,2.555556 +L 4.055556,0.999999,5.611111,0.999999 +A 4.055556,6.444444,1.555556,90,180 +A 4.055556,2.555556,1.555556,180,270 +A 4.5,4.5,4.5,90,270 +A 4.5,4.5,4.5,270,90 + +[] 6 +L 0.375,8.999999,1.874925,8.999999 +L 2.999925,7.874999,2.999925,4.499999 +L 2.999925,4.499999,1.124925,4.499999 +L 1.124925,6.75,2.999925,6.75 +A 1.874925,7.874999,1.125,0,90 +A 1.124925,5.624999,1.125,90,270 + +[] 4 +L 0,3,1.5,5.5 +L 0,3,1.5,0.5 +L 2.5,5.5,1,3 +L 1,3,2.5,0.5 + +[] 2 +L 0,6,4,6 +L 4,6,4,4 + +[] 1 +L 0,11,5,11 + +[] 9 +L 2.75,0.999999,2.75,8.000001 +L 2.75,8.000001,5.083334,8.000001 +L 6.63889,6.444445,6.63889,5.666667 +L 5.083334,4.111111,2.75,4.111111 +L 5.083334,4.111111,6.63889,0.999999 +A 5.083334,6.444445,1.555556,0,90 +A 5.083334,5.666667,1.555556,270,0 +A 4.5,4.5,4.5,90,270 +A 4.5,4.5,4.5,270,90 + +[] 2 +A 1.4998,7.5,1.5,90,270 +A 1.4998,7.5,1.5,270,90 + +[] 3 +L -0.0002,4.999999,3.9998,4.999999 +L 1.9998,7,1.9998,3 +L -0.0002,0.999999,3.9998,0.999999 + +[] 4 +L 1.99995,4.5,0,4.5 +L 0,4.5,1.93225,7.823339 +A 1.49995,8.074656,0.5,329.82546,20.529098 +A 0.99995,8,1,14.477508,165.52247 + +[] 7 +L 0,9,1,9 +L 1,7,0.5,7 +L 2,6,2,5.5 +L 1,4.5,0,4.5 +A 1,8,1,270,90 +A 1,6,1,0,90 +A 1,5.5,1,270,0 + +[] 1 +L 0,7,2,9 + +[] 4 +L 1.5,-0.000001,4,-0.000001 +L 4,-0.000001,4,5.999999 +A 1.5,1.499999,1.5,180,270 +L 0,5.999999,0,-3 + +[] 4 +L 3,9.5,3,-0.5 +L 2,9.5,2,-0.5 +L 3,9.5,2,9.5 +A 2,7.5,2,90,270 + +[] 1 +L 0,2.875,0,3.125 + +[] 1 +L 0.375,0,0,-1.5 + +[] 2 +L 0,8,1,9 +L 1,9,1,4.5 + +[] 4 +L 0,5.5,0,8 +L 1.99995,8,1.99995,5.5 +A 1,8,1,0,180 +A 1,5.5,1,180,0 + +[] 4 +L 2.5,3,1,0.5 +L 2.5,3,1,5.5 +L 0,0.5,1.5,3 +L 1.5,3,0,5.5 + +[] 6 +L 0,8,1,9 +L 1,9,1,4.5 +L 5.75,-0,5.75,2 +L 6.5,1,4,1 +L 4,1,5,4.5 +L 0,0,6,9 + +[] 7 +L 0,8,1,9 +L 1,9,1,4.5 +A 5.5,3.574656,0.5,329.82546,20.529098 +L 5.99995,0,4,0 +L 4,0,5.93225,3.323339 +A 4.99995,3.5,1,14.477508,165.52247 +L 0,0,6,9 + +[] 11 +L 6.75,-0,6.75,2 +L 7.5,1,5,1 +L 5,1,6,4.5 +L 0,9,1,9 +L 1,7,0.5,7 +L 2,6,2,5.5 +L 1,4.5,0,4.5 +A 1,8,1,270,90 +A 1,6,1,0,90 +A 1,5.5,1,270,0 +L 1,0,7,9 + +[] 9 +L 2,9.000001,2,8.500001 +L 2,6,2,5.605551 +L 4,2,4,1.5 +L 2.5,0,1.5,-0 +L 0.336,2.503849,1.664,4.496152 +A 0,5.605551,2,326.30993,0 +A 2,1.394453,2,146.30999,178.37925 +A 2.5,1.5,1.5,270,0 +A 1.5,1.5,1.5,181.87146,270 + +[] 4 +L 0,-0.000001,3,9 +L 3,9,5.9999,-0.000001 +L 0.8332,2.5,5.1662,2.5 +L 2,12.000001,4,10.000001 + +[] 4 +L -0.0002,-0.000001,2.9998,9 +L 2.9998,9,5.9997,-0.000001 +L 0.8335,2.5,5.1665,2.5 +L 1.9998,10.000001,3.9998,12.000001 + +[] 5 +L 0,-0.000001,3,9 +L 3,9,6,-0.000001 +L 0.8333,2.5,5.1663,2.5 +L 1.4998,10.000001,3,12.000001 +L 3,12.000001,4.4998,10.000001 + +[] 6 +L -0.0002,-0.000001,2.9998,9 +L 2.9998,9,5.9998,-0.000001 +L 0.8335,2.5,5.1665,2.5 +L 3.3839,10.049392,2.6162,10.450606 +A 2.2502,9.749999,0.790569,62.400573,161.56504 +A 3.7499,10.749999,0.790569,242.40057,341.56504 + +[] 5 +L 0.0001,-0.000001,3.0001,9 +L 3.0001,9,6,-0.000001 +L 0.8333,2.5,5.1663,2.5 +L 1.5,10.5,1.5,10 +L 4.5,10.5,4.5,10 + +[] 5 +L -0.0001,-0.000001,2.9999,9 +L 2.9999,9,5.9998,-0.000001 +L 0.8336,2.5,5.1666,2.5 +A 2.9999,10.500001,0.5,90,270 +A 2.9999,10.500001,0.5,270,90 + +[] 6 +L 0.0001,-0.000001,3.0001,9 +L 3,9.000001,3,0 +L 3,0,7,0 +L 3,5,6,5 +L 7,9.000001,3,9.000001 +L 0.8334,2.5,3,2.5 + +[] 6 +L 3.9999,9,1.9999,9 +L 1.9999,-0.000001,3.9999,-0.000001 +L -0.0001,7,-0.0001,2 +A 1.9999,7,2,90,180 +A 1.9999,2,2,180,270 +L 0,0,1,1.5 + +[] 5 +L 4.0001,9,-0.0003,9 +L -0.0003,9,-0.0003,-0.000001 +L -0.0003,-0.000001,4.0001,-0.000001 +L -0.0003,4.999999,3.0002,4.999999 +L 1.0002,12.000001,3.0002,10.000001 + +[] 5 +L 3.9999,9,0,9 +L 0,9,0,-0.000001 +L 0,-0.000001,3.9999,-0.000001 +L 0,4.999999,3,4.999999 +L 1,10.000001,3,12.000001 + +[] 6 +L 3.9997,9,-0.0002,9 +L -0.0002,9,-0.0002,-0.000001 +L -0.0002,-0.000001,3.9997,-0.000001 +L -0.0002,4.999999,2.9998,4.999999 +L 0.5,10.000001,1.9998,12.000001 +L 1.9998,12.000001,3.5,10.000001 + +[] 6 +L 4,9,0,9 +L 0,9,0,-0.000001 +L 0,-0.000001,4,-0.000001 +L 0,4.999999,3,4.999999 +L 0.4999,10.5,0.4999,10 +L 3.4999,10.5,3.4999,10 + +[] 2 +L 1,8.999999,1,-0.000002 +L 0,12,2,10 + +[] 2 +L 1.0003,8.999999,1.0003,-0.000002 +L 0.0003,10,2.0003,12 + +[] 3 +L 1.4998,8.999999,1.4998,-0.000002 +L 0,10,1.4998,12 +L 1.4998,12,3,10 + +[] 3 +L 1.5,8.999999,1.5,-0.000002 +L -0.0002,10.499999,-0.0002,9.999999 +L 2.9998,10.499999,2.9998,9.999999 + +[] 7 +L -0.0001,-0.000001,2.9999,-0.000001 +L 4.9999,2,4.9999,7 +L 2.9999,9,-0.0001,9 +L -0.0001,9,-0.0001,-0.000001 +L -1.0001,4.499999,1.9999,4.499999 +A 2.9999,2,2,270,0 +A 2.9999,7,2,0,90 + +[] 6 +L 0.0002,-0.000001,0.0002,9 +L 0.0002,9,5.0001,-0.000001 +L 5.0001,-0.000001,5.0001,9 +L 2.8836,10.549392,2.1163,10.950606 +A 1.7498,10.249999,0.790569,62.400573,161.56504 +A 3.25,11.249999,0.790569,242.40057,341.56504 + +[] 9 +L 0,2,0,7 +L 2,9,2.9999,9 +L 4.9999,7,4.9999,2 +L 2.9999,-0.000001,2,-0.000001 +L 1.4997,12.000001,3.5002,10.000001 +A 2,7,2,90,180 +A 2.9999,7,2,0,90 +A 2.9999,2,2,270,0 +A 2,2,2,180,270 + +[] 9 +L -0.0002,2,-0.0002,7 +L 1.9997,9,2.9997,9 +L 4.9997,7,4.9997,2 +L 2.9997,-0.000001,1.9997,-0.000001 +L 1.5,10.000001,3.5,12.000001 +A 1.9997,7,2,90,180 +A 2.9997,7,2,0,90 +A 2.9997,2,2,270,0 +A 1.9997,2,2,180,270 + +[] 10 +L 0,2,0,7 +L 2,9,3,9 +L 5,7,5,2 +L 3,-0.000001,2,-0.000001 +L 1,10.000001,2.4998,12.000001 +L 2.4998,12.000001,4,10.000001 +A 2,7,2,90,180 +A 3,7,2,0,90 +A 3,2,2,270,0 +A 2,2,2,180,270 + +[] 11 +L -0.0002,2,-0.0002,7 +L 1.9998,9,2.9998,9 +L 4.9998,7,4.9998,2 +L 2.9998,-0.000001,1.9998,-0.000001 +L 2.8837,10.549392,2.1164,10.950606 +A 1.9998,7,2,90,180 +A 2.9998,7,2,0,90 +A 2.9998,2,2,270,0 +A 1.9998,2,2,180,270 +A 1.7499,10.249999,0.790569,62.400573,161.56504 +A 3.2501,11.249999,0.790569,242.40057,341.56504 + +[] 10 +L 0.0001,2,0.0001,7 +L 2,9,3,9 +L 5,7,5,2 +L 3,-0.000001,2,-0.000001 +A 2,7,2,90,180 +A 3,7,2,0,90 +A 3,2,2,270,0 +A 2,2,2,180,270 +L 0.9999,10.5,0.9999,10 +L 3.9999,10.5,3.9999,10 + +[] 2 +L -0.0001,5.999999,3.9998,2 +L 3.9998,5.999999,-0.0001,2 + +[] 9 +L 0.0001,2,0.0001,7 +L 2.0001,9,3.0001,9 +L 5.0001,7,5.0001,2 +L 3.0001,-0.000001,2.0001,-0.000001 +L 5.0001,9,0.0001,-0.000001 +A 2.0001,7,2,90,180 +A 3.0001,7,2,0,90 +A 3.0001,2,2,270,0 +A 2.0001,2,2,180,270 + +[] 7 +L -0.0001,9,-0.0001,2.5 +L 4.9999,2.5,4.9999,9 +L -0.0001,9,-0.0001,2.5 +L 4.9999,2.5,4.9999,9 +L 1.5001,12.000001,3.5001,10.000001 +A 2.5001,2.5,2.5,180,0 +A 2.5001,2.5,2.5,180,0 + +[] 4 +L 0.0002,9,0.0002,2.5 +L 5.0001,2.5,5.0001,9 +A 2.4999,2.5,2.5,180,0 +L 1.5,10.000001,3.5,12.000001 + +[] 5 +L 0,9,0,2.5 +L 4.9999,2.5,4.9999,9 +L 0.9999,10.000001,2.5002,12.000001 +L 2.5002,12.000001,3.9999,10.000001 +A 2.5002,2.5,2.5,180,0 + +[] 5 +L -0.0002,9,-0.0002,2.5 +L 5.0002,2.5,5.0002,9 +A 2.5,2.5,2.5,180,0 +L 0.9999,10.5,0.9999,10 +L 3.9999,10.5,3.9999,10 + +[] 4 +L 0,9,3,4.999999 +L 3,4.999999,3,-0.000001 +L 3,4.999999,6,9 +L 2,10.000001,4,12.000001 + +[] 4 +L -0.0002,9,-0.0002,-0.000001 +L -0.0002,7,2.5,7 +L -0.0002,2,2.5,2 +A 2.5,4.499999,2.5,270,90 + +[] 9 +L 5,2.599999,5,2.399998 +L 1,4.999999,2.6001,4.999999 +L 2,9,2.4998,9 +L 0.0001,-0.000001,0.0001,7 +L 2.6001,-0.000001,1,-0.000001 +A 2.4998,7,2,270,90 +A 2.6001,2.599999,2.4,0,90 +A 2.6001,2.399998,2.4,270,0 +A 2,7,2,90,180 + +[] 7 +L 0.5001,5.999999,2.5001,5.999999 +L 3.9998,4.499999,3.9998,-0.000001 +L 3.9998,-0.000001,1.5001,-0.000001 +L 1.5001,3,3.9998,3 +L 0.9998,9,2.9998,7 +A 2.5001,4.499999,1.5,0,90 +A 1.5001,1.499999,1.5,90,270 + +[] 7 +L 0.4999,5.999999,2.4999,5.999999 +L 4.0001,4.499999,4.0001,-0.000001 +L 4.0001,-0.000001,1.4999,-0.000001 +L 1.4999,3,4.0001,3 +L 1.0001,7,3.0001,9 +A 2.4999,4.499999,1.5,0,90 +A 1.4999,1.499999,1.5,90,270 + +[] 8 +L 0.5001,5.999999,2.5001,5.999999 +L 3.9999,4.499999,3.9999,-0.000001 +L 3.9999,-0.000001,1.5001,-0.000001 +L 1.5001,3,3.9999,3 +L 0.5001,7,1.9999,9 +L 1.9999,9,3.5001,7 +A 2.5001,4.499999,1.5,0,90 +A 1.5001,1.499999,1.5,90,270 + +[] 9 +L 0.4999,5.999999,2.4999,5.999999 +L 4.0001,4.499999,4.0001,-0.000001 +L 4.0001,-0.000001,1.4999,-0.000001 +L 1.4999,3,4.0001,3 +A 2.4999,4.499999,1.5,0,90 +A 1.4999,1.499999,1.5,90,270 +L 2.3838,7.049392,1.616,7.450608 +A 1.25,6.749998,0.790569,62.400573,161.56504 +A 2.7498,7.749998,0.790569,242.40057,341.56504 + +[] 8 +L 0.5002,5.999999,2.5002,5.999999 +L 3.9999,4.499999,3.9999,-0.000001 +L 3.9999,-0.000001,1.5002,-0.000001 +L 1.5002,3,3.9999,3 +A 2.5002,4.499999,1.5,0,90 +A 1.5002,1.499999,1.5,90,270 +L 0.4999,7.5,0.4999,7 +L 3.4999,7.5,3.4999,7 + +[] 8 +L 0.5,5.999999,2.5,5.999999 +L 4.0002,4.499999,4.0002,-0.000001 +L 4.0002,-0.000001,1.5,-0.000001 +L 1.5,3,4.0002,3 +A 2.5,4.499999,1.5,0,90 +A 1.5,1.499999,1.5,90,270 +A 2,7.5,0.5,90,270 +A 2,7.5,0.5,270,90 + +[] 11 +L 0.4998,5.999999,2.4998,5.999999 +L 4,4.499999,4,-0.000001 +L 4,-0.000001,1.4998,-0.000001 +L 1.4998,3,4,3 +L 4,3,7.9999,3 +L 7.9999,3,7.9999,4 +L 5.4997,-0.000001,7.9999,-0.000001 +A 2.4998,4.499999,1.5,0,90 +A 1.4998,1.499999,1.5,90,270 +A 6,4,2,0,180 +A 5.4997,1.499999,1.5,180,270 + +[] 6 +L 2.9998,5.999999,1.5,5.999999 +L -0.0002,4.499999,-0.0002,1.499999 +L 1.5,-0.000001,2.9998,-0.000001 +A 1.5,4.499999,1.5,90,180 +A 1.5,1.499999,1.5,180,270 +L 2,0,1.625,-1.5 + +[] 7 +L 0,3,4,3 +L 4,3,4,4 +L 0,4,0,1.499999 +L 1.4998,-0.000001,4,-0.000001 +A 2,4,2,0,180 +A 1.4998,1.499999,1.5,180,270 +L 1,9,3,7 + +[] 7 +L -0.0002,3,3.9998,3 +L 3.9998,3,3.9998,4 +L -0.0002,4,-0.0002,1.499999 +L 1.5001,-0.000001,3.9998,-0.000001 +A 1.9998,4,2,0,180 +A 1.5001,1.499999,1.5,180,270 +L 0.9998,7,2.9998,9 + +[] 8 +L 0.0001,3,4.0001,3 +L 4.0001,3,4.0001,4 +L 0.0001,4,0.0001,1.499999 +L 1.4999,-0.000001,4.0001,-0.000001 +A 2.0001,4,2,0,180 +A 1.4999,1.499999,1.5,180,270 +L 0.4999,7,2.0001,9 +L 2.0001,9,3.4998,7 + +[] 8 +L -0.0001,3,3.9999,3 +L 3.9999,3,3.9999,4 +L -0.0001,4,-0.0001,1.499999 +L 1.5001,-0.000001,3.9999,-0.000001 +A 1.9999,4,2,0,180 +A 1.5001,1.499999,1.5,180,270 +L 0.4999,7.5,0.4999,7 +L 3.4999,7.5,3.4999,7 + +[] 2 +L 1.5002,-0.000001,1.5002,5.999999 +L 0,9,2,7 + +[] 2 +L 0.4997,-0.000001,0.4997,5.999999 +L 0,7,2,9 + +[] 3 +L 1.4997,-0.000001,1.4997,5.999999 +L 0,7,1.4997,9 +L 1.4997,9,3,7 + +[] 3 +L 1,-0.000001,1,5.999999 +L 0,9,0,8.5 +L 2,9,2,8.5 + +[] 6 +L -0.0002,4,-0.0002,2 +L 3.9998,2,3.9998,4 +L 3.5,9,0.5,7 +A 1.9998,2,2,180,0 +A 1.9998,4,2,0,180 +A -1.5,4,5.5,0,65.38002 + +[] 7 +L 0,-0.000001,0,5.999999 +L 0,5.999999,2.4998,5.999999 +L 4,4.499999,4,-0.000001 +A 2.4998,4.499999,1.5,0,90 +L 2.3837,7.049392,1.6164,7.450608 +A 1.2499,6.749998,0.790569,62.400573,161.56504 +A 2.7501,7.749998,0.790569,242.40057,341.56504 + +[] 5 +L -0.0002,4,-0.0002,2 +L 3.9998,2,3.9998,4 +L 0.9998,9,2.9998,7 +A 1.9998,2,2,180,0 +A 1.9998,4,2,0,180 + +[] 5 +L 0.0001,4,0.0001,2 +L 4.0001,2,4.0001,4 +L 1.0001,7,3.0001,9 +A 2.0001,2,2,180,0 +A 2.0001,4,2,0,180 + +[] 6 +L -0.0001,4,-0.0001,2 +L 3.9999,2,3.9999,4 +L 0.5001,7,1.9999,9 +L 1.9999,9,3.5001,7 +A 1.9999,2,2,180,0 +A 1.9999,4,2,0,180 + +[] 7 +L 0.0001,4,0.0001,2 +L 4.0001,2,4.0001,4 +A 2.0001,2,2,180,0 +A 2.0001,4,2,0,180 +L 2.3838,7.049392,1.616,7.450608 +A 1.25,6.749998,0.790569,62.400573,161.56504 +A 2.7498,7.749998,0.790569,242.40057,341.56504 + +[] 6 +L 0.4999,7.5,0.4999,7 +L 3.4999,7.5,3.4999,7 +L -0.0001,4,-0.0001,2 +L 3.9999,2,3.9999,4 +A 1.9999,2,2,180,0 +A 1.9999,4,2,0,180 + +[] 3 +L -0.0003,4,4.0002,4 +L 2.0002,4.999999,2.0002,5.499999 +L 2.0002,3,2.0002,2.5 + +[] 5 +L -0.0001,4,-0.0001,2 +L 3.9999,2,3.9999,4 +A 1.9999,2,2,180,0 +A 1.9999,4,2,0,180 +L 4,6,0,0 + +[] 5 +L 0.0001,5.999999,0.0001,1.499999 +L 1.4998,-0.000001,4,-0.000001 +L 4,-0.000001,4,5.999999 +A 1.4998,1.499999,1.5,180,270 +L 1,9,3,7 + +[] 5 +L 0.0001,5.999999,0.0001,1.499999 +L 1.4998,-0.000001,4,-0.000001 +L 4,-0.000001,4,5.999999 +A 1.4998,1.499999,1.5,180,270 +L 0.9998,7,2.9998,9 + +[] 6 +L 0.0001,5.999999,0.0001,1.499999 +L 1.4998,-0.000001,4,-0.000001 +L 4,-0.000001,4,5.999999 +A 1.4998,1.499999,1.5,180,270 +L 0.4999,7,2.0001,9 +L 2.0001,9,3.4998,7 + +[] 6 +L 0.0001,5.999999,0.0001,1.499999 +L 1.4998,-0.000001,4,-0.000001 +L 4,-0.000001,4,5.999999 +A 1.4998,1.499999,1.5,180,270 +L 0.4999,7.5,0.4999,7 +L 3.4999,7.5,3.4999,7 + +[] 4 +L 0.0003,5.999999,2.0003,-0.000001 +L 4.0003,5.999999,1.2276,-2.316231 +L 0.9999,7,2.9998,9 +A 0.2796,-2,1,270,341.56504 + +[] 6 +L 0.0001,-0.000001,2.4999,-0.000001 +L 4.0001,1.499999,4.0001,4.499999 +L 2.4999,5.999999,0.0001,5.999999 +L 0.0001,9,0.0001,-3 +A 2.4999,1.499999,1.5,270,0 +A 2.4999,4.499999,1.5,0,90 + +[] 5 +L -0.0001,5.999999,1.9999,-0.000001 +L 3.9999,5.999999,1.2281,-2.316231 +A 0.2792,-2,1,270,341.56504 +L 0.4999,7.5,0.4999,7 +L 3.4999,7.5,3.4999,7 + +#EOF diff --git a/pycam/share/fonts/normallatin1.readme b/pycam/share/fonts/normallatin1.readme new file mode 100644 index 00000000..80d135c6 --- /dev/null +++ b/pycam/share/fonts/normallatin1.readme @@ -0,0 +1,11 @@ +A few notes about this Normal Latin 1: + +- The symbol for diameter () will be found at position 162 (normally used for the ""). Indeed position 216 and 248 are used for maj and min slash o, which are not perfectly round. Otherwise the font follows the ISO-8859-1 specification. + +- Position between 128 and 159 included are empty in ISO-8859 charset. They exist only in a Windows specific charset (CP1252 aka WinLatin1). So you won't find Euro currency symbol, french o-e (majuscule and minuscule), trade mark symbol or majuscule , and a couple of others. + +- Do not rename this font "normal" in order to replace the former normal.cxf. This font file is used by QCad for cotation and some symbols are not at the same place. + +Thanks to the Qcad-Users Yahoo! Group (especially Yoshimune Kobayashi) for help and teach to complete the font. + +Hughes Jeangerard \ No newline at end of file diff --git a/pycam/share/fonts/normallatin2.cxf b/pycam/share/fonts/normallatin2.cxf new file mode 100644 index 00000000..a6bd2ac1 --- /dev/null +++ b/pycam/share/fonts/normallatin2.cxf @@ -0,0 +1,1024 @@ +# Format: QCad II Font +# Creator: QCad +# Version: 2.0.5.0 +# Name: Normal Latin 2 +# Encoding: ISO8859-2 +# LetterSpacing: 3 +# WordSpacing: 6.75 +# LineSpacingFactor: 1 +# Author: Hughes Jeangerard + +[0021] ! +L 0,9,0,3 +L 0,0,0,0.5 + +[0022] " +L 0.5,7,1,9 +L 3.5,7,4,9 + +[0023] # +L 2,0,2,9 +L 5,9,5,0 +L 0,2.5,7,2.5 +L 7,6.5,0,6.5 + +[0026] & +L 6,3.21499,3.425964,0.59764 +A 2,2,2,135.478088,315.478088 +L 0.574036,3.40236,3.569458,6.44823 +A 2.5,7.5,1.5,315.478271,209.372314 +L 1.192810,6.76428,5,0 + +[0027] ' +L 0.5,7,1,9 + +[0028] ( +A 13,4,13,157.380142,202.619858 + +[0029] ) +A -12,4,13,337.380127,22.61986 + +[002a] * +L 0,6,4,2 +L 4,6,0,2 + +[002b] + +L 0,4,4,4 +L 2,6,2,2 + +[002c] , +L 1,0,0,-3 +L 1,0,1,0.5 + +[002d] - +L 0,4,4,4 + +[002e] . +L 0,0,0,0.5 + +[002f] / +L 4,9,0,0 + +[0030] 0 +A 2,7.91049,1.08951,32.75695,147.243042 +A 4.93335,5.62352,4.80559,143.232468,169.491135 +A 4.93335,3.37648,4.80559,190.508865,216.767532 +A 2,1.08951,1.08951,212.756958,327.243042 +A -0.93335,3.37648,4.80559,323.232452,349.491119 +A -5.404663,4.46906,9.40473,347.913147,0.18851 +A -5.404663,4.53094,9.40473,359.811493,12.08686 +A -0.93335,5.62352,4.80559,10.50887,36.76754 +A 9.404663,4.46906,9.40473,179.811493,192.086868 +A 9.404663,4.53094,9.40473,167.913132,180.188507 + +[0031] 1 +L 0,7,2,9 +L 2,9,2,0 + +[0032] 2 +L 4,0,0,0 +L 0,0,3.864502,6.64668 +A 3,7.14931,1,329.82547,20.52911 +A 2,7,2,14.47751,165.522491 + +[0033] 3 +L 0,9,2,9 +A 2,7,2,270,90 +L 2,5,1,5 +A 2,3,2,0,90 +L 4,3,4,2 +A 2,2,2,270,0 +L 2,0,0,0 + +[0034] 4 +L 3.5,0,3.5,4 +L 5,2,0,2 +L 0,2,2,9 + +[0035] 5 +L 4,9,0,9 +L 0,9,0,5 +L 0,5,2,5 +A 2,3,2,0,90 +L 4,3,4,2 +A 2,2,2,270,0 +L 2,0,0,0 + +[0036] 6 +A 6,3.80385,6,120,180 +L 0,3.80385,0,2 +A 2,2,2,180,0 +L 4,2,4,3 +A 2,3,2,0,90 +L 2,5,0.120422,5 + +[0037] 7 +L 0,9,4,9 +L 4,9,1.5,0 +L 2,5,4,5 + +[0038] 8 +L 0,3,0,2 +A 2,2,2,180,0 +L 4,2,4,3 +A 2,3,2,0,180 +L 0.25,7.25,0.25,6.75 +A 2,6.75,1.75,180,0 +L 3.75,6.75,3.75,7.25 +A 2,7.25,1.75,0,180 + +[0039] 9 +A -2,5.19615,6,300,0 +L 4,5.19615,4,7 +A 2,7,2,0,180 +L 0,7,0,6 +A 2,6,2,180,270 +L 2,4,3.879578,4 + +[003a] : +L 0,0,0,0.5 +L 0,4,0,3.5 + +[003b] ; +L 1,0,0,-3 +L 1,0,1,0.5 +L 1,4,1,3.5 + +[003c] < +L 4,7,0,3.5 +L 0,3.5,4,0 + +[003d] = +L 0,5.5,4,5.5 +L 0,2.5,4,2.5 + +[003e] > +L 0,7,4,3.5 +L 4,3.5,0,0 + +[003f] ? +L 2,0,2,0.5 +L 2,3,2,3.39445 +L 0,7,0,7.5 +L 1.5,9,2.5,9 +L 3.664062,6.49615,2.335938,4.50385 +A 4,3.39445,2,146.309937,180 +A 2,7.60555,2,326.309998,358.379272 +A 1.5,7.5,1.5,90,180 +A 2.5,7.5,1.5,1.87147,90 + +[0040] @ +L 8,1,6.067566,0.28186 +A 4.5,4.5,4.5,333.472015,290.386322 +A 7.412354,2.943008,1.2,168.690186,337.880432 +A 4.439636,4,2,168.689804,270 +A 5.170288,5.5,1.5,348.690002,90 +A 5.049561,4.5,2.5,90,168.690094 +L 2.478455,4.392246,2.598083,4.990294 +A 4.360352,4,2,270,348.68985 +L 4.360352,2,4.439636,2 +L 6.321533,3.607756,7,7 +L 5.049561,7,5.170288,7 + +[0041] A +L 0,0,3,9 +L 3,9,6,0 +L 0.833313,2.5,5.166687,2.5 + +[0042] B +L 0,0,0,9 +L 0,9,2.5,9 +A 2.5,7,2,270,90 +L 0,5,2.599976,5 +A 2.599976,2.6,2.4,0,90 +L 5,2.6,5,2.4 +A 2.599976,2.4,2.4,270,0 +L 2.599976,0,0,0 + +[0043] C +L 4,9,2,9 +A 2,7,2,90,180 +L 0,7,0,2 +A 2,2,2,180,270 +L 2,0,4,0 + +[0044] D +L 0,0,3,0 +A 3,2,2,270,0 +L 5,2,5,7 +A 3,7,2,0,90 +L 3,9,0,9 +L 0,9,0,0 + +[0045] E +L 4,9,0,9 +L 0,9,0,0 +L 0,0,4,0 +L 0,5,3,5 + +[0046] F +L 4,9,0,9 +L 0,9,0,0 +L 0,5,4,5 + +[0047] G +L 5,9,2,9 +A 2,7,2,90,180 +L 0,7,0,2 +A 2,2,2,180,270 +L 2,0,5,0 +L 5,0,5,5 +L 5,5,3.5,5 + +[0048] H +L 0,9,0,0 +L 5,0,5,9 +L 0,5,5,5 + +[0049] I +L 0,9,0,0 + +[004a] J +L 3,9,3,2 +A 1,2,2,270,0 +L 1,0,0,0 + +[004b] K +L 0,9,0,0 +L 0,3.5,5,9 +L 1.671326,5.33844,5,0 + +[004c] L +L 0,9,0,0 +L 0,0,4,0 + +[004d] M +L 0,0,0,9 +L 0,9,3,4 +L 3,4,6,9 +L 6,9,6,0 + +[004e] N +L 0,0,0,9 +L 0,9,5,0 +L 5,0,5,9 + +[004f] O +L 0,2,0,7 +A 2,7,2,90,180 +L 2,9,3,9 +A 3,7,2,0,90 +L 5,7,5,2 +A 3,2,2,270,0 +L 3,0,2,0 +A 2,2,2,180,270 + +[0050] P +L 0,0,0,9 +L 0,9,3,9 +A 3,7,2,0,90 +L 5,7,5,6 +A 3,6,2,270,0 +L 3,4,0,4 + +[0051] Q +L 0,2,0,7 +A 2,7,2,90,180 +L 2,9,3,9 +A 3,7,2,0,90 +L 5,7,5,2 +A 3,2,2,270,0 +L 3,0,2,0 +A 2,2,2,180,270 +L 6,0,3,2 + +[0052] R +L 0,0,0,9 +L 0,9,3,9 +A 3,7,2,0,90 +L 5,7,5,6 +A 3,6,2,270,0 +L 3,4,0,4 +L 3,4,5,0 + +[0053] S +A 2,2.375,6.625,63.074589,90 +A 2,7,2,90,242.981201 +L 1.091431,5.21829,3.908569,3.78171 +A 3,2,2,270,62.98119 +A 3,6.625,6.625,243.074585,270 + +[0054] T +L 0,9,6,9 +L 3,9,3,0 + +[0055] U +L 0,9,0,2.5 +A 2.5,2.5,2.5,180,0 +L 5,2.5,5,9 + +[0056] V +L 0,9,3,0 +L 3,0,6,9 + +[0057] W +L 0,9,2,0 +L 2,0,4,6 +L 4,6,6,0 +L 6,0,8,9 + +[0058] X +L 0,9,6,0 +L 0,0,6,9 + +[0059] Y +L 0,9,3,5 +L 3,5,3,0 +L 3,5,6,9 + +[005a] Z +L 0,9,5,9 +L 5,9,0,0 +L 0,0,5,0 + +[005b] [ +L 1,-1,0,-1 +L 0,-1,0,9 +L 0,9,1,9 + +[005c] \ +L 0,9,4,0 + +[005d] ] +L 0,9,1,9 +L 1,9,1,-1 +L 1,-1,0,-1 + +[0061] a +L 0.5,6,2.5,6 +A 2.5,4.5,1.5,0,90 +L 4,4.5,4,0 +L 4,0,1.5,0 +A 1.5,1.5,1.5,90,270 +L 1.5,3,4,3 + +[0062] b +L 0,9,0,0 +L 0,0,2.5,0 +A 2.5,1.5,1.5,270,0 +L 4,1.5,4,4.5 +A 2.5,4.5,1.5,0,90 +L 2.5,6,0,6 + +[0063] c +L 3,6,1.5,6 +A 1.5,4.5,1.5,90,180 +L 0,4.5,0,1.5 +A 1.5,1.5,1.5,180,270 +L 1.5,0,3,0 + +[0064] d +L 4,9,4,0 +L 4,0,1.5,0 +A 1.5,1.5,1.5,180,270 +L 0,1.5,0,4.5 +A 1.5,4.5,1.5,90,180 +L 1.5,6,4,6 + +[0065] e +L 0,3,4,3 +L 4,3,4,4 +A 2,4,2,0,180 +L 0,4,0,1.5 +A 1.5,1.5,1.5,180,270 +L 1.5,0,4,0 + +[0066] f +L 1,0,1,7.5 +A 2.5,7.5,1.5,90,180 +L 2.5,9,3,9 +L 0,6,3,6 + +[0067] g +L 0,-3,2.5,-3 +A 2.5,-1.5,1.5,270,0 +L 4,-1.5,4,6 +L 4,6,1.5,6 +A 1.5,4.5,1.5,90,180 +L 0,4.5,0,1.5 +A 1.5,1.5,1.5,180,270 +L 1.5,0,4,0 + +[0068] h +L 0,9,0,0 +L 0,6,2.5,6 +A 2.5,4.5,1.5,0,90 +L 4,4.5,4,0 + +[0069] i +L 0,0,0,6 +L 0,8.5,0,9 + +[006a] j +L 0,-3,0.5,-3 +A 0.5,-1.5,1.5,270,0 +L 2,-1.5,2,6 +L 2,8.5,2,9 + +[006b] k +L 0,9,0,0 +L 0,3.5,4,6 +L 1.320923,4.32555,4,0 + +[006c] l +L 0,9,0,1 +A 1,1,1,180,270 + +[006d] m +L 0,0,0,6 +L 0,6,4.5,6 +A 4.5,4.5,1.5,0,90 +L 6,4.5,6,0 +L 3,6,3,0 + +[006e] n +L 0,0,0,6 +L 0,6,2.5,6 +A 2.5,4.5,1.5,0,90 +L 4,4.5,4,0 + +[006f] o +L 0,4,0,2 +A 2,2,2,180,0 +L 4,2,4,4 +A 2,4,2,0,180 + +[0070] p +L 0,0,2.5,0 +A 2.5,1.5,1.5,270,0 +L 4,1.5,4,4.5 +A 2.5,4.5,1.5,0,90 +L 2.5,6,0,6 +L 0,6,0,-3 + +[0071] q +L 4,0,1.5,0 +A 1.5,1.5,1.5,180,270 +L 0,1.5,0,4.5 +A 1.5,4.5,1.5,90,180 +L 1.5,6,4,6 +L 4,6,4,-3 + +[0072] r +L 0,0,0,6 +L 0,6,2,6 +A 2,5,1,0,90 + +[0073] s +A 2.164185,1.82088,4.0573,63.09737,108.27552 +A 1.268188,4.53406,1.2,108.274567,247.790543 +L 0.814575,3.42309,3.185425,2.45509 +A 2.731812,1.34412,1.19999,288.274933,67.791191 +A 1.835815,4.05732,4.05732,243.097656,288.275513 + +[0074] t +L 0,6,3,6 +L 1,9,1,0 + +[0075] u +L 0,6,0,1.5 +A 1.5,1.5,1.5,180,270 +L 1.5,0,4,0 +L 4,0,4,6 + +[0076] v +L 0,6,2,0 +L 2,0,4,6 + +[0077] w +L 0,6,1.5,0 +L 1.5,0,3,4 +L 3,4,4.5,0 +L 4.5,0,6,6 + +[0078] x +L 0,6,4,0 +L 0,0,4,6 + +[0079] y +L 0,6,2,0 +L 4,6,1.227905,-2.31623 +A 0.279297,-2,1,270,341.565063 +L 0.279297,-3,0,-3 + +[007a] z +L 0,6,4,6 +L 4,6,0,0 +L 0,0,4,0 + +[007b] { +A 2,8,1,90,180 +L 1,8,1,5 +A 0,5,1,270,0 +A 0,3,1,0,90 +L 1,3,1,0 +A 2,0,1,180,270 + +[007d] } +A 0,8,1,0,90 +L 1,8,1,5 +A 2,5,1,180,270 +A 2,3,1,90,180 +L 1,3,1,0 +A 0,0,1,270,0 + +[00a2] +A 3,12.083333,2.083333,196.260205,343.739795 + +[00a5] +L 0,9,0,0 +L 0,0,4,0 +L 0.5,12,2,10 +L 2,10,3.5,12 + +[00a7] +A 2,2.375,6.625,63.074589,90 +A 2,7,2,90,242.981201 +A 3,2,2,270,62.98119 +A 3,6.625,6.625,243.074585,270 +A 2.274781,4.058343,1.657038,350.389979,135.57225 +A 2.725219,4.941657,1.657038,170.389979,315.57225 + +[0161] +L 5,10.25,5,10.75 +L 1,10.25,1,10.75 + +[0160] +A 2,2.375,6.625,63.074589,90 +A 2,7,2,90,242.981201 +L 1.091431,5.21829,3.908569,3.78171 +A 3,2,2,270,62.98110 +A 3,6.625,6.625,243.074585,270 +L 1,12,2.5,10 +L 2.5,10,4,12 + +[00b0] +A 1,11,1,90,270 +A 1,11,1,270,90 + +[017d] +L 0,10,2.5,12 + +[00b7] +L 0.5,11,2,9 +L 2,9,3.5,11 + +[0153] +L 0,4,0,2 +A 2,2,2,180,0 +L 4,2,4,4 +A 2,4,2,0,180 +A 5.5,1.5,1.5,180,270 +A 6,4,2,0,180 +L 8,4,8,3 +L 8,3,4,3 +L 5.5,0,8,0 +L 4,1.5,4,2 + +[017e] +L 0,6,4,6 +L 4,6,0,0 +L 0,0,4,0 +L 0.5,9,2,7 +L 2,7,3.5,9 + +[00c0] +L 0,0,3,9 +L 3,9,6,0 +L 0.833313,2.5,5.166687,2.5 +L 2,12,4.5,10 + +[00c1] +L 0,0,3,9 +L 3,9,6,0 +L 0.833313,2.5,5.166687,2.5 +L 1.5,10,4,12 + +[00c2] +L 0,0,3,9 +L 3,9,6,0 +L 0.833313,2.5,5.166687,2.5 +L 1.5,10,3,12 +L 3,12,4.5,10 + +[00c3] +L 0,0,3,9 +L 3,9,6,0 +L 0.833313,2.5,5.166687,2.5 +A 2,9.95,1.45,46.397181,133.602819 +A 4,11.75,1.25,216.869898,323.130102 + +[00c4] +L 0,0,3,9 +L 3,9,6,0 +L 0.833252,2.5,5.166748,2.5 +L 5,10.25,5,10.75 +L 1,10.25,1,10.75 + +[00c5] +L 0,0,3,9 +L 3,9,6,0 +L 0.833252,2.5,5.166748,2.5 +A 3,11,1,0,360 + +[00c6] +L 0,0,3,9 +L 4,9,4,0 +L 0.833252,2.5,4,2.5 +L 3,9,8,9 +L 7,5,4,5 +L 8,0,4,0 + +[00c7] +L 4,9,2,9 +A 2,7,2,90,180 +L 0,7,0,2 +A 2,2,2,180,270 +L 2,0,4,0 +A 2.657778,-0.831208,0.84605,242.430103,100.747876 + +[00c9] +L 4,9,0,9 +L 0,9,0,0 +L 0,0,4,0 +L 0,5,3,5 +L 1,10,3.5,12 + +[00c8] +L 4,9,0,9 +L 0,9,0,0 +L 0,0,4,0 +L 0,5,3,5 +L 1,12,3.5,10 + +[00ca] +L 4,9,0,9 +L 0,9,0,0 +L 0,0,4,0 +L 0,5,3,5 +L 0.5,10,2,12 +L 2,12,3.5,10 + +[00cb] +L 4,9,0,9 +L 0,9,0,0 +L 0,0,4,0 +L 0,5,3,5 +L 0.5,10.25,0.5,10.75 +L 3.5,10.25,3.5,10.75 + +[00cc] +L 1.5,9,1.5,0 +L 1,12,2.5,10 + +[00cd] +L 1.5,9,1.5,0 +L 0.75,10,2.25,12 + +[00ce] +L 0,10,1.5,12 +L 1.5,12,3,10 +L 1.5,9,1.5,0 + +[00cf] +L 1.5,9,1.5,0 +L 0.5,10.25,0.5,10.75 +L 2.5,10.25,2.5,10.75 + +[00d1] +L 0,0,0,9 +L 0,9,5,0 +L 5,0,5,9 +A 1.5,9.95,1.45,46.397181,133.602819 +A 3.5,12.05,1.45,226.397181,313.602819 + +[00d2] +L 0,2,0,7 +A 2,7,2,90,180 +L 2,9,3,9 +A 3,7,2,0,90 +L 5,7,5,2 +A 3,2,2,270,0 +L 3,0,2,0 +A 2,2,2,180,270 +L 1.5,12,4,10 + +[00d3] +L 0,2,0,7 +A 2,7,2,90,180 +L 2,9,3,9 +A 3,7,2,0,90 +L 5,7,5,2 +A 3,2,2,270,0 +L 3,0,2,0 +A 2,2,2,180,270 +L 1,10,3.5,12 + +[00d4] +L 0,2,0,7 +A 2,7,2,90,180 +L 2,9,3,9 +A 3,7,2,0,90 +L 5,7,5,2 +A 3,2,2,270,0 +L 3,0,2,0 +A 2,2,2,180,270 +L 1,10,2.5,12 +L 2.5,12,4,10 + +[00d5] +L 0,2,0,7 +A 2,7,2,90,180 +L 2,9,3,9 +A 3,7,2,0,90 +L 5,7,5,2 +A 3,2,2,270,0 +L 3,0,2,0 +A 2,2,2,180,270 +A 1.5,9.95,1.45,46.397181,133.602819 +A 3.55,12.175,1.575793,228.215484,311.784516 + +[00d6] +L 0,2,0,7 +A 2,7,2,90,180 +L 2,9,3,9 +A 3,7,2,0,90 +L 5,7,5,2 +A 3,2,2,270,0 +L 3,0,2,0 +A 2,2,2,180,270 +L 1,10.25,1,10.75 +L 4,10.25,4,10.75 + +[00d7] +L 0.066298,4.160725,2.732965,1.494059 +L 2.732965,4.160725,0.066298,1.494059 + +[00d9] +L 0,9,0,2.5 +A 2.5,2.5,2.5,180,0 +L 5,2.5,5,9 +L 1.5,12,4,10 + +[00da] +L 0,9,0,2.5 +A 2.5,2.5,2.5,180,0 +L 5,2.5,5,9 +L 1,10,3.5,12 + +[00db] +L 0,9,0,2.5 +A 2.5,2.5,2.5,180,0 +L 5,2.5,5,9 +L 1,10,2.5,12 +L 2.5,12,4,10 + +[00dc] +L 0,9,0,2.5 +A 2.5,2.5,2.5,180,0 +L 5,2.5,5,9 +L 1,10.25,1,10.75 +L 4,10.25,4,10.75 + +[00dd] +L 0,9,3,5 +L 3,5,3,0 +L 3,5,6,9 +L 2,10,4.5,12 + +[00e0] +L 0.5,6,2.5,6 +A 2.5,4.5,1.5,0,90 +L 4,4.5,4,0 +L 4,0,1.5,0 +A 1.5,1.5,1.5,90,270 +L 1.5,3,4,3 +L 1,9,3.5,7 + +[00e1] +L 0.5,6,2.5,6 +A 2.5,4.5,1.5,0,90 +L 4,4.5,4,0 +L 4,0,1.5,0 +A 1.5,1.5,1.5,90,270 +L 1.5,3,4,3 +L 1,7,3.5,9 + +[00e2] +L 0.5,6,2.5,6 +A 2.5,4.5,1.5,0,90 +L 4,4.5,4,0 +L 4,0,1.5,0 +A 1.5,1.5,1.5,90,270 +L 1.5,3,4,3 +L 0.5,7,2,9 +L 2,9,3.5,7 + +[00e3] +L 0.5,6,2.5,6 +A 2.5,4.5,1.5,0,90 +L 4,4.5,4,0 +L 4,0,1.5,0 +A 1.5,1.5,1.5,90,270 +L 1.5,3,4,3 +AR 1.5,7.033333,0.966667,136.397181,43.602819 +A 2.9,8.366667,0.966667,223.602819,316.397181 + +[00e4] +L 0.5,6,2.5,6 +A 2.5,4.5,1.5,0,90 +L 4,4.5,4,0 +L 4,0,1.5,0 +A 1.5,1.5,1.5,90,270 +L 1.5,3,4,3 +L 1,9,1,8.5 +L 3,9,3,8.5 + +[00e5] +L 0.5,6,2.5,6 +A 2.5,4.5,1.5,0,90 +L 4,4.5,4,0 +L 4,0,1.5,0 +A 1.5,1.5,1.5,90,270 +L 1.5,3,4,3 +A 2,8,1,0,360 + +[00e6] +L 0.5,6,2.5,6 +A 2.5,4.5,1.5,0,90 +L 4,4.5,4,0 +L 4,0,1.5,0 +A 1.5,1.5,1.5,90,270 +L 1.5,3,4,3 +A 6,4,2,0,180 +A 5.5,1.5,1.5,180,270 +L 4,3,8,3 +L 5.5,0,8,0 +L 8,3,8,4 + +[00e7] +L 3,6,1.5,6 +A 1.5,4.5,1.5,90,180 +L 0,4.5,0,1.5 +A 1.5,1.5,1.5,180,270 +L 1.5,0,3,0 +A 2.157778,-0.831208,0.84605,242.430103,100.747876 + +[00e8] +L 0,3,4,3 +L 4,3,4,4 +A 2,4,2,0,180 +L 0,4,0,1.5 +A 1.5,1.5,1.5,180,270 +L 1.5,0,4,0 +L 1,9,3.5,7 + +[00e9] +L 0,3,4,3 +L 4,3,4,4 +A 2,4,2,0,180 +L 0,4,0,1.5 +A 1.5,1.5,1.5,180,270 +L 1.5,0,4,0 +L 1,7,3.5,9 + +[00ea] +L 0,3,4,3 +L 4,3,4,4 +A 2,4,2,0,180 +L 0,4,0,1.5 +A 1.5,1.5,1.5,180,270 +L 1.5,0,4,0 +L 0.5,7,2,9 +L 2,9,3.5,7 + +[00eb] +L 0,3,4,3 +L 4,3,4,4 +A 2,4,2,0,180 +L 0,4,0,1.5 +A 1.5,1.5,1.5,180,270 +L 1.5,0,4,0 +L 1,9,1,8.5 +L 3,9,3,8.5 + +[00ec] +L 0.5,0,0.5,6 +L -0.5,9,2,7 + +[00ed] +L 0.5,0,0.5,6 +L -0.5,7,2,9 + +[00ee] +L 0,7,1.5,9 +L 1.5,9,3,7 +L 1.5,0,1.5,6 + +[00ef] +L 1.5,0,1.5,6 +L 0.5,9,0.5,8.5 +L 2.5,9,2.5,8.5 + +[00f1] +L 0,0,0,6 +L 0,6,2.5,6 +A 2.5,4.5,1.5,0,90 +L 4,4.5,4,0 +A 2.7,8.366670,0.966667,223.603,316.397 +AR 1.3,7.033330,0.966667,136.397,43.602800 + +[00f2] +L 0,4,0,2 +A 2,2,2,180,0 +L 4,2,4,4 +A 2,4,2,0,180 +L 1,9,3.5,7 + +[00f3] +L 0,4,0,2 +A 2,2,2,180,0 +L 4,2,4,4 +A 2,4,2,0,180 +L 1,7,3.5,9 + +[00f4] +L 0,4,0,2 +A 2,2,2,180,0 +L 4,2,4,4 +A 2,4,2,0,180 +L 0.5,7,2,9 +L 2,9,3.5,7 + +[00f5] +L 0,4,0,2 +A 2,2,2,180,0 +L 4,2,4,4 +A 2,4,2,0,180 +A 1.3,7.333330,0.966667,43.602800,136.397 +A 2.7,8.666670,0.966667,223.603,316.397 + +[00f6] +L 0,4,0,2 +A 2,2,2,180,0 +L 4,2,4,4 +A 2,4,2,0,180 +L 1,9,1,8.5 +L 3,9,3,8.5 + +[00f9] +L 0,6,0,1.5 +A 1.5,1.5,1.5,180,270 +L 1.5,0,4,0 +L 4,0,4,6 +L 1,9,3.5,7 + +[00fa] +L 0,6,0,1.5 +A 1.5,1.5,1.5,180,270 +L 1.5,0,4,0 +L 4,0,4,6 +L 1,7,3.5,9 + +[00fb] +L 0,6,0,1.5 +A 1.5,1.5,1.5,180,270 +L 1.5,0,4,0 +L 4,0,4,6 +L 0.5,7,2,9 +L 2,9,3.5,7 + +[00fc] +L 0,6,0,1.5 +A 1.5,1.5,1.5,180,270 +L 1.5,0,4,0 +L 4,0,4,6 +L 1,9,1,8.5 +L 3,9,3,8.5 + +[00fd] +L 0,6,2,0 +L 4,6,1.227905,-2.316230 +A 0.279297,-2,1,270,341.565063 +L 0.279297,-3,0,-3 +L 1,7,3.5,9 + +[00ff] +L 0,6,2,0 +L 4,6,1.227905,-2.316230 +A 0.279297,-2,1,270,341.565063 +L 0.279297,-3,0,-3 +L 1,9,1,8.5 +L 3,9,3,8.5 + +#EOF diff --git a/pycam/share/fonts/romanc.cxf b/pycam/share/fonts/romanc.cxf new file mode 100644 index 00000000..196747d9 --- /dev/null +++ b/pycam/share/fonts/romanc.cxf @@ -0,0 +1,2778 @@ +# Format: QCad II Font +# Creator: Adam Radlowski's "dodajf" program - GRASS font translator +# Version: 1.0.0 +# Name: Roman Complex +# LetterSpacing: 3.0 +# WordSpacing: 6.75 +# LineSpacingFactor: 1.0 +# Author: Hershey fonts +# Author: Adam Radlowski (Polish) + +[!] 9 +L 0.275862,5.793103,0,5.241379 +L 0,5.241379,0.275862,1.931034 +L 0.275862,1.931034,0.551724,5.241379 +L 0.551724,5.241379,0.275862,5.793103 +L 0.275862,5.241379,0.275862,3.586207 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +["] 10 +L 0.275862,3.862069,0,3.586207 +L 0,3.586207,0.275862,3.310345 +L 0.275862,3.310345,0.551724,3.586207 +L 0.551724,3.586207,0.275862,3.862069 +L 0.275862,0,0,0.275862 +L 0,0.275862,0.275862,0.551724 +L 0.275862,0.551724,0.551724,0.275862 +L 0.551724,0.275862,0.551724,-0.275862 +L 0.551724,-0.275862,0.275862,-0.827586 +L 0.275862,-0.827586,0,-1.103448 + +[#] 4 +L 2.206897,5.793103,0.275862,-1.931034 +L 3.862069,5.793103,1.931034,-1.931034 +L 0.275862,2.758621,4.137931,2.758621 +L 0,1.103448,3.862069,1.103448 + +[$] 34 +L 1.37931,6.896552,1.37931,-1.103448 +L 2.482759,6.896552,2.482759,-1.103448 +L 3.586207,4.965517,3.310345,4.689655 +L 3.310345,4.689655,3.586207,4.413793 +L 3.586207,4.413793,3.862069,4.689655 +L 3.862069,4.689655,3.862069,4.965517 +L 3.862069,4.965517,3.310345,5.517241 +L 3.310345,5.517241,2.482759,5.793103 +L 2.482759,5.793103,1.37931,5.793103 +L 1.37931,5.793103,0.551724,5.517241 +L 0.551724,5.517241,0,4.965517 +L 0,4.965517,0,4.413793 +L 0,4.413793,0.275862,3.862069 +L 0.275862,3.862069,0.551724,3.586207 +L 0.551724,3.586207,1.103448,3.310345 +L 1.103448,3.310345,2.758621,2.758621 +L 2.758621,2.758621,3.310345,2.482759 +L 3.310345,2.482759,3.862069,1.931034 +L 0,4.413793,0.551724,3.862069 +L 0.551724,3.862069,1.103448,3.586207 +L 1.103448,3.586207,2.758621,3.034483 +L 2.758621,3.034483,3.310345,2.758621 +L 3.310345,2.758621,3.586207,2.482759 +L 3.586207,2.482759,3.862069,1.931034 +L 3.862069,1.931034,3.862069,0.827586 +L 3.862069,0.827586,3.310345,0.275862 +L 3.310345,0.275862,2.482759,0 +L 2.482759,0,1.37931,0 +L 1.37931,0,0.551724,0.275862 +L 0.551724,0.275862,0,0.827586 +L 0,0.827586,0,1.103448 +L 0,1.103448,0.275862,1.37931 +L 0.275862,1.37931,0.551724,1.103448 +L 0.551724,1.103448,0.275862,0.827586 + +[%] 26 +L 4.965517,5.793103,0,0 +L 1.37931,5.793103,1.931034,5.241379 +L 1.931034,5.241379,1.931034,4.689655 +L 1.931034,4.689655,1.655172,4.137931 +L 1.655172,4.137931,1.103448,3.862069 +L 1.103448,3.862069,0.551724,3.862069 +L 0.551724,3.862069,0,4.413793 +L 0,4.413793,0,4.965517 +L 0,4.965517,0.275862,5.517241 +L 0.275862,5.517241,0.827586,5.793103 +L 0.827586,5.793103,1.37931,5.793103 +L 1.37931,5.793103,1.931034,5.517241 +L 1.931034,5.517241,2.758621,5.241379 +L 2.758621,5.241379,3.586207,5.241379 +L 3.586207,5.241379,4.413793,5.517241 +L 4.413793,5.517241,4.965517,5.793103 +L 3.862069,1.931034,3.310345,1.655172 +L 3.310345,1.655172,3.034483,1.103448 +L 3.034483,1.103448,3.034483,0.551724 +L 3.034483,0.551724,3.586207,0 +L 3.586207,0,4.137931,0 +L 4.137931,0,4.689655,0.275862 +L 4.689655,0.275862,4.965517,0.827586 +L 4.965517,0.827586,4.965517,1.37931 +L 4.965517,1.37931,4.413793,1.931034 +L 4.413793,1.931034,3.862069,1.931034 + +[&] 43 +L 4.965517,3.586207,4.689655,3.310345 +L 4.689655,3.310345,4.965517,3.034483 +L 4.965517,3.034483,5.241379,3.310345 +L 5.241379,3.310345,5.241379,3.586207 +L 5.241379,3.586207,4.965517,3.862069 +L 4.965517,3.862069,4.689655,3.862069 +L 4.689655,3.862069,4.413793,3.586207 +L 4.413793,3.586207,4.137931,3.034483 +L 4.137931,3.034483,3.586207,1.655172 +L 3.586207,1.655172,3.034483,0.827586 +L 3.034483,0.827586,2.482759,0.275862 +L 2.482759,0.275862,1.931034,0 +L 1.931034,0,1.103448,0 +L 1.103448,0,0.275862,0.275862 +L 0.275862,0.275862,0,0.827586 +L 0,0.827586,0,1.655172 +L 0,1.655172,0.275862,2.206897 +L 0.275862,2.206897,1.931034,3.310345 +L 1.931034,3.310345,2.482759,3.862069 +L 2.482759,3.862069,2.758621,4.413793 +L 2.758621,4.413793,2.758621,4.965517 +L 2.758621,4.965517,2.482759,5.517241 +L 2.482759,5.517241,1.931034,5.793103 +L 1.931034,5.793103,1.37931,5.517241 +L 1.37931,5.517241,1.103448,4.965517 +L 1.103448,4.965517,1.103448,4.413793 +L 1.103448,4.413793,1.37931,3.586207 +L 1.37931,3.586207,1.931034,2.758621 +L 1.931034,2.758621,3.310345,0.827586 +L 3.310345,0.827586,3.862069,0.275862 +L 3.862069,0.275862,4.689655,0 +L 4.689655,0,4.965517,0 +L 4.965517,0,5.241379,0.275862 +L 5.241379,0.275862,5.241379,0.551724 +L 1.103448,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.827586 +L 0.275862,0.827586,0.275862,1.655172 +L 0.275862,1.655172,0.551724,2.206897 +L 0.551724,2.206897,1.103448,2.758621 +L 1.103448,4.413793,1.37931,3.862069 +L 1.37931,3.862069,3.586207,0.827586 +L 3.586207,0.827586,4.137931,0.275862 +L 4.137931,0.275862,4.689655,0 + +['] 6 +L 0.275862,5.241379,0,5.517241 +L 0,5.517241,0.275862,5.793103 +L 0.275862,5.793103,0.551724,5.517241 +L 0.551724,5.517241,0.551724,4.965517 +L 0.551724,4.965517,0.275862,4.413793 +L 0.275862,4.413793,0,4.137931 + +[(] 16 +L 1.931034,6.896552,1.37931,6.344828 +L 1.37931,6.344828,0.827586,5.517241 +L 0.827586,5.517241,0.275862,4.413793 +L 0.275862,4.413793,0,3.034483 +L 0,3.034483,0,1.931034 +L 0,1.931034,0.275862,0.551724 +L 0.275862,0.551724,0.827586,-0.551724 +L 0.827586,-0.551724,1.37931,-1.37931 +L 1.37931,-1.37931,1.931034,-1.931034 +L 1.37931,6.344828,0.827586,5.241379 +L 0.827586,5.241379,0.551724,4.413793 +L 0.551724,4.413793,0.275862,3.034483 +L 0.275862,3.034483,0.275862,1.931034 +L 0.275862,1.931034,0.551724,0.551724 +L 0.551724,0.551724,0.827586,-0.275862 +L 0.827586,-0.275862,1.37931,-1.37931 + +[)] 16 +L 0,6.896552,0.551724,6.344828 +L 0.551724,6.344828,1.103448,5.517241 +L 1.103448,5.517241,1.655172,4.413793 +L 1.655172,4.413793,1.931034,3.034483 +L 1.931034,3.034483,1.931034,1.931034 +L 1.931034,1.931034,1.655172,0.551724 +L 1.655172,0.551724,1.103448,-0.551724 +L 1.103448,-0.551724,0.551724,-1.37931 +L 0.551724,-1.37931,0,-1.931034 +L 0.551724,6.344828,1.103448,5.241379 +L 1.103448,5.241379,1.37931,4.413793 +L 1.37931,4.413793,1.655172,3.034483 +L 1.655172,3.034483,1.655172,1.931034 +L 1.655172,1.931034,1.37931,0.551724 +L 1.37931,0.551724,1.103448,-0.275862 +L 1.103448,-0.275862,0.551724,-1.37931 + +[*] 3 +L 1.37931,5.793103,1.37931,2.482759 +L 0,4.965517,2.758621,3.310345 +L 2.758621,4.965517,0,3.310345 + +[+] 2 +L 2.482759,4.965517,2.482759,0 +L 0,2.482759,4.965517,2.482759 + +[,] 6 +L 0.275862,0,0,0.275862 +L 0,0.275862,0.275862,0.551724 +L 0.275862,0.551724,0.551724,0.275862 +L 0.551724,0.275862,0.551724,-0.275862 +L 0.551724,-0.275862,0.275862,-0.827586 +L 0.275862,-0.827586,0,-1.103448 + +[-] 1 +L 0,2.482759,4.965517,2.482759 + +[.] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[/] 1 +L 2.482759,6.896552,0,-1.931034 + +[0] 34 +L 1.655172,5.793103,0.827586,5.517241 +L 0.827586,5.517241,0.275862,4.689655 +L 0.275862,4.689655,0,3.310345 +L 0,3.310345,0,2.482759 +L 0,2.482759,0.275862,1.103448 +L 0.275862,1.103448,0.827586,0.275862 +L 0.827586,0.275862,1.655172,0 +L 1.655172,0,2.206897,0 +L 2.206897,0,3.034483,0.275862 +L 3.034483,0.275862,3.586207,1.103448 +L 3.586207,1.103448,3.862069,2.482759 +L 3.862069,2.482759,3.862069,3.310345 +L 3.862069,3.310345,3.586207,4.689655 +L 3.586207,4.689655,3.034483,5.517241 +L 3.034483,5.517241,2.206897,5.793103 +L 2.206897,5.793103,1.655172,5.793103 +L 1.655172,5.793103,1.103448,5.517241 +L 1.103448,5.517241,0.827586,5.241379 +L 0.827586,5.241379,0.551724,4.689655 +L 0.551724,4.689655,0.275862,3.310345 +L 0.275862,3.310345,0.275862,2.482759 +L 0.275862,2.482759,0.551724,1.103448 +L 0.551724,1.103448,0.827586,0.551724 +L 0.827586,0.551724,1.103448,0.275862 +L 1.103448,0.275862,1.655172,0 +L 2.206897,0,2.758621,0.275862 +L 2.758621,0.275862,3.034483,0.551724 +L 3.034483,0.551724,3.310345,1.103448 +L 3.310345,1.103448,3.586207,2.482759 +L 3.586207,2.482759,3.586207,3.310345 +L 3.586207,3.310345,3.310345,4.689655 +L 3.310345,4.689655,3.034483,5.241379 +L 3.034483,5.241379,2.758621,5.517241 +L 2.758621,5.517241,2.206897,5.793103 + +[1] 5 +L 0,4.689655,0.551724,4.965517 +L 0.551724,4.965517,1.37931,5.793103 +L 1.37931,5.793103,1.37931,0 +L 1.103448,5.517241,1.103448,0 +L 0,0,2.482759,0 + +[2] 37 +L 0.275862,4.689655,0.551724,4.413793 +L 0.551724,4.413793,0.275862,4.137931 +L 0.275862,4.137931,0,4.413793 +L 0,4.413793,0,4.689655 +L 0,4.689655,0.275862,5.241379 +L 0.275862,5.241379,0.551724,5.517241 +L 0.551724,5.517241,1.37931,5.793103 +L 1.37931,5.793103,2.482759,5.793103 +L 2.482759,5.793103,3.310345,5.517241 +L 3.310345,5.517241,3.586207,5.241379 +L 3.586207,5.241379,3.862069,4.689655 +L 3.862069,4.689655,3.862069,4.137931 +L 3.862069,4.137931,3.586207,3.586207 +L 3.586207,3.586207,2.758621,3.034483 +L 2.758621,3.034483,1.37931,2.482759 +L 1.37931,2.482759,0.827586,2.206897 +L 0.827586,2.206897,0.275862,1.655172 +L 0.275862,1.655172,0,0.827586 +L 0,0.827586,0,0 +L 2.482759,5.793103,3.034483,5.517241 +L 3.034483,5.517241,3.310345,5.241379 +L 3.310345,5.241379,3.586207,4.689655 +L 3.586207,4.689655,3.586207,4.137931 +L 3.586207,4.137931,3.310345,3.586207 +L 3.310345,3.586207,2.482759,3.034483 +L 2.482759,3.034483,1.37931,2.482759 +L 0,0.551724,0.275862,0.827586 +L 0.275862,0.827586,0.827586,0.827586 +L 0.827586,0.827586,2.206897,0.275862 +L 2.206897,0.275862,3.034483,0.275862 +L 3.034483,0.275862,3.586207,0.551724 +L 3.586207,0.551724,3.862069,0.827586 +L 0.827586,0.827586,2.206897,0 +L 2.206897,0,3.310345,0 +L 3.310345,0,3.586207,0.275862 +L 3.586207,0.275862,3.862069,0.827586 +L 3.862069,0.827586,3.862069,1.37931 + +[3] 39 +L 0.275862,4.689655,0.551724,4.413793 +L 0.551724,4.413793,0.275862,4.137931 +L 0.275862,4.137931,0,4.413793 +L 0,4.413793,0,4.689655 +L 0,4.689655,0.275862,5.241379 +L 0.275862,5.241379,0.551724,5.517241 +L 0.551724,5.517241,1.37931,5.793103 +L 1.37931,5.793103,2.482759,5.793103 +L 2.482759,5.793103,3.310345,5.517241 +L 3.310345,5.517241,3.586207,4.965517 +L 3.586207,4.965517,3.586207,4.137931 +L 3.586207,4.137931,3.310345,3.586207 +L 3.310345,3.586207,2.482759,3.310345 +L 2.482759,3.310345,1.655172,3.310345 +L 2.482759,5.793103,3.034483,5.517241 +L 3.034483,5.517241,3.310345,4.965517 +L 3.310345,4.965517,3.310345,4.137931 +L 3.310345,4.137931,3.034483,3.586207 +L 3.034483,3.586207,2.482759,3.310345 +L 2.482759,3.310345,3.034483,3.034483 +L 3.034483,3.034483,3.586207,2.482759 +L 3.586207,2.482759,3.862069,1.931034 +L 3.862069,1.931034,3.862069,1.103448 +L 3.862069,1.103448,3.586207,0.551724 +L 3.586207,0.551724,3.310345,0.275862 +L 3.310345,0.275862,2.482759,0 +L 2.482759,0,1.37931,0 +L 1.37931,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 +L 0.275862,0.551724,0,1.103448 +L 0,1.103448,0,1.37931 +L 0,1.37931,0.275862,1.655172 +L 0.275862,1.655172,0.551724,1.37931 +L 0.551724,1.37931,0.275862,1.103448 +L 3.310345,2.758621,3.586207,1.931034 +L 3.586207,1.931034,3.586207,1.103448 +L 3.586207,1.103448,3.310345,0.551724 +L 3.310345,0.551724,3.034483,0.275862 +L 3.034483,0.275862,2.482759,0 + +[4] 5 +L 2.758621,5.241379,2.758621,0 +L 3.034483,5.793103,3.034483,0 +L 3.034483,5.793103,0,1.655172 +L 0,1.655172,4.413793,1.655172 +L 1.931034,0,3.862069,0 + +[5] 29 +L 0.551724,5.793103,0,3.034483 +L 0,3.034483,0.551724,3.586207 +L 0.551724,3.586207,1.37931,3.862069 +L 1.37931,3.862069,2.206897,3.862069 +L 2.206897,3.862069,3.034483,3.586207 +L 3.034483,3.586207,3.586207,3.034483 +L 3.586207,3.034483,3.862069,2.206897 +L 3.862069,2.206897,3.862069,1.655172 +L 3.862069,1.655172,3.586207,0.827586 +L 3.586207,0.827586,3.034483,0.275862 +L 3.034483,0.275862,2.206897,0 +L 2.206897,0,1.37931,0 +L 1.37931,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 +L 0.275862,0.551724,0,1.103448 +L 0,1.103448,0,1.37931 +L 0,1.37931,0.275862,1.655172 +L 0.275862,1.655172,0.551724,1.37931 +L 0.551724,1.37931,0.275862,1.103448 +L 2.206897,3.862069,2.758621,3.586207 +L 2.758621,3.586207,3.310345,3.034483 +L 3.310345,3.034483,3.586207,2.206897 +L 3.586207,2.206897,3.586207,1.655172 +L 3.586207,1.655172,3.310345,0.827586 +L 3.310345,0.827586,2.758621,0.275862 +L 2.758621,0.275862,2.206897,0 +L 0.551724,5.793103,3.310345,5.793103 +L 0.551724,5.517241,1.931034,5.517241 +L 1.931034,5.517241,3.310345,5.793103 + +[6] 42 +L 3.310345,4.965517,3.034483,4.689655 +L 3.034483,4.689655,3.310345,4.413793 +L 3.310345,4.413793,3.586207,4.689655 +L 3.586207,4.689655,3.586207,4.965517 +L 3.586207,4.965517,3.310345,5.517241 +L 3.310345,5.517241,2.758621,5.793103 +L 2.758621,5.793103,1.931034,5.793103 +L 1.931034,5.793103,1.103448,5.517241 +L 1.103448,5.517241,0.551724,4.965517 +L 0.551724,4.965517,0.275862,4.413793 +L 0.275862,4.413793,0,3.310345 +L 0,3.310345,0,1.655172 +L 0,1.655172,0.275862,0.827586 +L 0.275862,0.827586,0.827586,0.275862 +L 0.827586,0.275862,1.655172,0 +L 1.655172,0,2.206897,0 +L 2.206897,0,3.034483,0.275862 +L 3.034483,0.275862,3.586207,0.827586 +L 3.586207,0.827586,3.862069,1.655172 +L 3.862069,1.655172,3.862069,1.931034 +L 3.862069,1.931034,3.586207,2.758621 +L 3.586207,2.758621,3.034483,3.310345 +L 3.034483,3.310345,2.206897,3.586207 +L 2.206897,3.586207,1.931034,3.586207 +L 1.931034,3.586207,1.103448,3.310345 +L 1.103448,3.310345,0.551724,2.758621 +L 0.551724,2.758621,0.275862,1.931034 +L 1.931034,5.793103,1.37931,5.517241 +L 1.37931,5.517241,0.827586,4.965517 +L 0.827586,4.965517,0.551724,4.413793 +L 0.551724,4.413793,0.275862,3.310345 +L 0.275862,3.310345,0.275862,1.655172 +L 0.275862,1.655172,0.551724,0.827586 +L 0.551724,0.827586,1.103448,0.275862 +L 1.103448,0.275862,1.655172,0 +L 2.206897,0,2.758621,0.275862 +L 2.758621,0.275862,3.310345,0.827586 +L 3.310345,0.827586,3.586207,1.655172 +L 3.586207,1.655172,3.586207,1.931034 +L 3.586207,1.931034,3.310345,2.758621 +L 3.310345,2.758621,2.758621,3.310345 +L 2.758621,3.310345,2.206897,3.586207 + +[7] 21 +L 0,5.793103,0,4.137931 +L 0,4.689655,0.275862,5.241379 +L 0.275862,5.241379,0.827586,5.793103 +L 0.827586,5.793103,1.37931,5.793103 +L 1.37931,5.793103,2.758621,4.965517 +L 2.758621,4.965517,3.310345,4.965517 +L 3.310345,4.965517,3.586207,5.241379 +L 3.586207,5.241379,3.862069,5.793103 +L 0.275862,5.241379,0.827586,5.517241 +L 0.827586,5.517241,1.37931,5.517241 +L 1.37931,5.517241,2.758621,4.965517 +L 3.862069,5.793103,3.862069,4.965517 +L 3.862069,4.965517,3.586207,4.137931 +L 3.586207,4.137931,2.482759,2.758621 +L 2.482759,2.758621,2.206897,2.206897 +L 2.206897,2.206897,1.931034,1.37931 +L 1.931034,1.37931,1.931034,0 +L 3.586207,4.137931,2.206897,2.758621 +L 2.206897,2.758621,1.931034,2.206897 +L 1.931034,2.206897,1.655172,1.37931 +L 1.655172,1.37931,1.655172,0 + +[8] 51 +L 1.37931,5.793103,0.551724,5.517241 +L 0.551724,5.517241,0.275862,4.965517 +L 0.275862,4.965517,0.275862,4.137931 +L 0.275862,4.137931,0.551724,3.586207 +L 0.551724,3.586207,1.37931,3.310345 +L 1.37931,3.310345,2.482759,3.310345 +L 2.482759,3.310345,3.310345,3.586207 +L 3.310345,3.586207,3.586207,4.137931 +L 3.586207,4.137931,3.586207,4.965517 +L 3.586207,4.965517,3.310345,5.517241 +L 3.310345,5.517241,2.482759,5.793103 +L 2.482759,5.793103,1.37931,5.793103 +L 1.37931,5.793103,0.827586,5.517241 +L 0.827586,5.517241,0.551724,4.965517 +L 0.551724,4.965517,0.551724,4.137931 +L 0.551724,4.137931,0.827586,3.586207 +L 0.827586,3.586207,1.37931,3.310345 +L 2.482759,3.310345,3.034483,3.586207 +L 3.034483,3.586207,3.310345,4.137931 +L 3.310345,4.137931,3.310345,4.965517 +L 3.310345,4.965517,3.034483,5.517241 +L 3.034483,5.517241,2.482759,5.793103 +L 1.37931,3.310345,0.551724,3.034483 +L 0.551724,3.034483,0.275862,2.758621 +L 0.275862,2.758621,0,2.206897 +L 0,2.206897,0,1.103448 +L 0,1.103448,0.275862,0.551724 +L 0.275862,0.551724,0.551724,0.275862 +L 0.551724,0.275862,1.37931,0 +L 1.37931,0,2.482759,0 +L 2.482759,0,3.310345,0.275862 +L 3.310345,0.275862,3.586207,0.551724 +L 3.586207,0.551724,3.862069,1.103448 +L 3.862069,1.103448,3.862069,2.206897 +L 3.862069,2.206897,3.586207,2.758621 +L 3.586207,2.758621,3.310345,3.034483 +L 3.310345,3.034483,2.482759,3.310345 +L 1.37931,3.310345,0.827586,3.034483 +L 0.827586,3.034483,0.551724,2.758621 +L 0.551724,2.758621,0.275862,2.206897 +L 0.275862,2.206897,0.275862,1.103448 +L 0.275862,1.103448,0.551724,0.551724 +L 0.551724,0.551724,0.827586,0.275862 +L 0.827586,0.275862,1.37931,0 +L 2.482759,0,3.034483,0.275862 +L 3.034483,0.275862,3.310345,0.551724 +L 3.310345,0.551724,3.586207,1.103448 +L 3.586207,1.103448,3.586207,2.206897 +L 3.586207,2.206897,3.310345,2.758621 +L 3.310345,2.758621,3.034483,3.034483 +L 3.034483,3.034483,2.482759,3.310345 + +[9] 42 +L 3.586207,3.862069,3.310345,3.034483 +L 3.310345,3.034483,2.758621,2.482759 +L 2.758621,2.482759,1.931034,2.206897 +L 1.931034,2.206897,1.655172,2.206897 +L 1.655172,2.206897,0.827586,2.482759 +L 0.827586,2.482759,0.275862,3.034483 +L 0.275862,3.034483,0,3.862069 +L 0,3.862069,0,4.137931 +L 0,4.137931,0.275862,4.965517 +L 0.275862,4.965517,0.827586,5.517241 +L 0.827586,5.517241,1.655172,5.793103 +L 1.655172,5.793103,2.206897,5.793103 +L 2.206897,5.793103,3.034483,5.517241 +L 3.034483,5.517241,3.586207,4.965517 +L 3.586207,4.965517,3.862069,4.137931 +L 3.862069,4.137931,3.862069,2.482759 +L 3.862069,2.482759,3.586207,1.37931 +L 3.586207,1.37931,3.310345,0.827586 +L 3.310345,0.827586,2.758621,0.275862 +L 2.758621,0.275862,1.931034,0 +L 1.931034,0,1.103448,0 +L 1.103448,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.827586 +L 0.275862,0.827586,0.275862,1.103448 +L 0.275862,1.103448,0.551724,1.37931 +L 0.551724,1.37931,0.827586,1.103448 +L 0.827586,1.103448,0.551724,0.827586 +L 1.655172,2.206897,1.103448,2.482759 +L 1.103448,2.482759,0.551724,3.034483 +L 0.551724,3.034483,0.275862,3.862069 +L 0.275862,3.862069,0.275862,4.137931 +L 0.275862,4.137931,0.551724,4.965517 +L 0.551724,4.965517,1.103448,5.517241 +L 1.103448,5.517241,1.655172,5.793103 +L 2.206897,5.793103,2.758621,5.517241 +L 2.758621,5.517241,3.310345,4.965517 +L 3.310345,4.965517,3.586207,4.137931 +L 3.586207,4.137931,3.586207,2.482759 +L 3.586207,2.482759,3.310345,1.37931 +L 3.310345,1.37931,3.034483,0.827586 +L 3.034483,0.827586,2.482759,0.275862 +L 2.482759,0.275862,1.931034,0 + +[:] 8 +L 0.275862,3.862069,0,3.586207 +L 0,3.586207,0.275862,3.310345 +L 0.275862,3.310345,0.551724,3.586207 +L 0.551724,3.586207,0.275862,3.862069 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[;] 10 +L 0.275862,3.862069,0,3.586207 +L 0,3.586207,0.275862,3.310345 +L 0.275862,3.310345,0.551724,3.586207 +L 0.551724,3.586207,0.275862,3.862069 +L 0.275862,0,0,0.275862 +L 0,0.275862,0.275862,0.551724 +L 0.275862,0.551724,0.551724,0.275862 +L 0.551724,0.275862,0.551724,-0.275862 +L 0.551724,-0.275862,0.275862,-0.827586 +L 0.275862,-0.827586,0,-1.103448 + +[<] 2 +L 4.413793,4.965517,0,2.482759 +L 0,2.482759,4.413793,0 + +[=] 2 +L 0,3.310345,4.965517,3.310345 +L 0,1.655172,4.965517,1.655172 + +[>] 2 +L 0,4.965517,4.413793,2.482759 +L 4.413793,2.482759,0,0 + +[?] 26 +L 0.275862,4.689655,0.551724,4.413793 +L 0.551724,4.413793,0.275862,4.137931 +L 0.275862,4.137931,0,4.413793 +L 0,4.413793,0,4.689655 +L 0,4.689655,0.275862,5.241379 +L 0.275862,5.241379,0.551724,5.517241 +L 0.551724,5.517241,1.103448,5.793103 +L 1.103448,5.793103,1.931034,5.793103 +L 1.931034,5.793103,2.758621,5.517241 +L 2.758621,5.517241,3.034483,5.241379 +L 3.034483,5.241379,3.310345,4.689655 +L 3.310345,4.689655,3.310345,4.137931 +L 3.310345,4.137931,3.034483,3.586207 +L 3.034483,3.586207,2.758621,3.310345 +L 2.758621,3.310345,1.655172,2.758621 +L 1.655172,2.758621,1.655172,1.931034 +L 1.931034,5.793103,2.482759,5.517241 +L 2.482759,5.517241,2.758621,5.241379 +L 2.758621,5.241379,3.034483,4.689655 +L 3.034483,4.689655,3.034483,4.137931 +L 3.034483,4.137931,2.758621,3.586207 +L 2.758621,3.586207,2.206897,3.034483 +L 1.655172,0.551724,1.37931,0.275862 +L 1.37931,0.275862,1.655172,0 +L 1.655172,0,1.931034,0.275862 +L 1.931034,0.275862,1.655172,0.551724 + +[@] 48 +L 4.137931,3.586207,3.862069,4.137931 +L 3.862069,4.137931,3.310345,4.413793 +L 3.310345,4.413793,2.482759,4.413793 +L 2.482759,4.413793,1.931034,4.137931 +L 1.931034,4.137931,1.655172,3.862069 +L 1.655172,3.862069,1.37931,3.034483 +L 1.37931,3.034483,1.37931,2.206897 +L 1.37931,2.206897,1.655172,1.655172 +L 1.655172,1.655172,2.206897,1.37931 +L 2.206897,1.37931,3.034483,1.37931 +L 3.034483,1.37931,3.586207,1.655172 +L 3.586207,1.655172,3.862069,2.206897 +L 2.482759,4.413793,1.931034,3.862069 +L 1.931034,3.862069,1.655172,3.034483 +L 1.655172,3.034483,1.655172,2.206897 +L 1.655172,2.206897,1.931034,1.655172 +L 1.931034,1.655172,2.206897,1.37931 +L 4.137931,4.413793,3.862069,2.206897 +L 3.862069,2.206897,3.862069,1.655172 +L 3.862069,1.655172,4.413793,1.37931 +L 4.413793,1.37931,4.965517,1.37931 +L 4.965517,1.37931,5.517241,1.931034 +L 5.517241,1.931034,5.793103,2.758621 +L 5.793103,2.758621,5.793103,3.310345 +L 5.793103,3.310345,5.517241,4.137931 +L 5.517241,4.137931,5.241379,4.689655 +L 5.241379,4.689655,4.689655,5.241379 +L 4.689655,5.241379,4.137931,5.517241 +L 4.137931,5.517241,3.310345,5.793103 +L 3.310345,5.793103,2.482759,5.793103 +L 2.482759,5.793103,1.655172,5.517241 +L 1.655172,5.517241,1.103448,5.241379 +L 1.103448,5.241379,0.551724,4.689655 +L 0.551724,4.689655,0.275862,4.137931 +L 0.275862,4.137931,0,3.310345 +L 0,3.310345,0,2.482759 +L 0,2.482759,0.275862,1.655172 +L 0.275862,1.655172,0.551724,1.103448 +L 0.551724,1.103448,1.103448,0.551724 +L 1.103448,0.551724,1.655172,0.275862 +L 1.655172,0.275862,2.482759,0 +L 2.482759,0,3.310345,0 +L 3.310345,0,4.137931,0.275862 +L 4.137931,0.275862,4.689655,0.551724 +L 4.689655,0.551724,4.965517,0.827586 +L 4.413793,4.413793,4.137931,2.206897 +L 4.137931,2.206897,4.137931,1.655172 +L 4.137931,1.655172,4.413793,1.37931 + +[A] 6 +L 2.482759,5.793103,0.551724,0 +L 2.482759,5.793103,4.413793,0 +L 2.482759,4.965517,4.137931,0 +L 1.103448,1.655172,3.586207,1.655172 +L 0,0,1.655172,0 +L 3.310345,0,4.965517,0 + +[B] 33 +L 0.827586,5.793103,0.827586,0 +L 1.103448,5.793103,1.103448,0 +L 0,5.793103,3.310345,5.793103 +L 3.310345,5.793103,4.137931,5.517241 +L 4.137931,5.517241,4.413793,5.241379 +L 4.413793,5.241379,4.689655,4.689655 +L 4.689655,4.689655,4.689655,4.137931 +L 4.689655,4.137931,4.413793,3.586207 +L 4.413793,3.586207,4.137931,3.310345 +L 4.137931,3.310345,3.310345,3.034483 +L 3.310345,5.793103,3.862069,5.517241 +L 3.862069,5.517241,4.137931,5.241379 +L 4.137931,5.241379,4.413793,4.689655 +L 4.413793,4.689655,4.413793,4.137931 +L 4.413793,4.137931,4.137931,3.586207 +L 4.137931,3.586207,3.862069,3.310345 +L 3.862069,3.310345,3.310345,3.034483 +L 1.103448,3.034483,3.310345,3.034483 +L 3.310345,3.034483,4.137931,2.758621 +L 4.137931,2.758621,4.413793,2.482759 +L 4.413793,2.482759,4.689655,1.931034 +L 4.689655,1.931034,4.689655,1.103448 +L 4.689655,1.103448,4.413793,0.551724 +L 4.413793,0.551724,4.137931,0.275862 +L 4.137931,0.275862,3.310345,0 +L 3.310345,0,0,0 +L 3.310345,3.034483,3.862069,2.758621 +L 3.862069,2.758621,4.137931,2.482759 +L 4.137931,2.482759,4.413793,1.931034 +L 4.413793,1.931034,4.413793,1.103448 +L 4.413793,1.103448,4.137931,0.551724 +L 4.137931,0.551724,3.862069,0.275862 +L 3.862069,0.275862,3.310345,0 + +[C] 28 +L 3.862069,4.965517,4.137931,4.137931 +L 4.137931,4.137931,4.137931,5.793103 +L 4.137931,5.793103,3.862069,4.965517 +L 3.862069,4.965517,3.310345,5.517241 +L 3.310345,5.517241,2.482759,5.793103 +L 2.482759,5.793103,1.931034,5.793103 +L 1.931034,5.793103,1.103448,5.517241 +L 1.103448,5.517241,0.551724,4.965517 +L 0.551724,4.965517,0.275862,4.413793 +L 0.275862,4.413793,0,3.586207 +L 0,3.586207,0,2.206897 +L 0,2.206897,0.275862,1.37931 +L 0.275862,1.37931,0.551724,0.827586 +L 0.551724,0.827586,1.103448,0.275862 +L 1.103448,0.275862,1.931034,0 +L 1.931034,0,2.482759,0 +L 2.482759,0,3.310345,0.275862 +L 3.310345,0.275862,3.862069,0.827586 +L 3.862069,0.827586,4.137931,1.37931 +L 1.931034,5.793103,1.37931,5.517241 +L 1.37931,5.517241,0.827586,4.965517 +L 0.827586,4.965517,0.551724,4.413793 +L 0.551724,4.413793,0.275862,3.586207 +L 0.275862,3.586207,0.275862,2.206897 +L 0.275862,2.206897,0.551724,1.37931 +L 0.551724,1.37931,0.827586,0.827586 +L 0.827586,0.827586,1.37931,0.275862 +L 1.37931,0.275862,1.931034,0 + +[D] 22 +L 0.827586,5.793103,0.827586,0 +L 1.103448,5.793103,1.103448,0 +L 0,5.793103,2.758621,5.793103 +L 2.758621,5.793103,3.586207,5.517241 +L 3.586207,5.517241,4.137931,4.965517 +L 4.137931,4.965517,4.413793,4.413793 +L 4.413793,4.413793,4.689655,3.586207 +L 4.689655,3.586207,4.689655,2.206897 +L 4.689655,2.206897,4.413793,1.37931 +L 4.413793,1.37931,4.137931,0.827586 +L 4.137931,0.827586,3.586207,0.275862 +L 3.586207,0.275862,2.758621,0 +L 2.758621,0,0,0 +L 2.758621,5.793103,3.310345,5.517241 +L 3.310345,5.517241,3.862069,4.965517 +L 3.862069,4.965517,4.137931,4.413793 +L 4.137931,4.413793,4.413793,3.586207 +L 4.413793,3.586207,4.413793,2.206897 +L 4.413793,2.206897,4.137931,1.37931 +L 4.137931,1.37931,3.862069,0.827586 +L 3.862069,0.827586,3.310345,0.275862 +L 3.310345,0.275862,2.758621,0 + +[E] 10 +L 0.827586,5.793103,0.827586,0 +L 1.103448,5.793103,1.103448,0 +L 2.758621,4.137931,2.758621,1.931034 +L 0,5.793103,4.413793,5.793103 +L 4.413793,5.793103,4.413793,4.137931 +L 4.413793,4.137931,4.137931,5.793103 +L 1.103448,3.034483,2.758621,3.034483 +L 0,0,4.413793,0 +L 4.413793,0,4.413793,1.655172 +L 4.413793,1.655172,4.137931,0 + +[F] 8 +L 0.827586,5.793103,0.827586,0 +L 1.103448,5.793103,1.103448,0 +L 2.758621,4.137931,2.758621,1.931034 +L 0,5.793103,4.413793,5.793103 +L 4.413793,5.793103,4.413793,4.137931 +L 4.413793,4.137931,4.137931,5.793103 +L 1.103448,3.034483,2.758621,3.034483 +L 0,0,1.931034,0 + +[G] 30 +L 3.862069,4.965517,4.137931,4.137931 +L 4.137931,4.137931,4.137931,5.793103 +L 4.137931,5.793103,3.862069,4.965517 +L 3.862069,4.965517,3.310345,5.517241 +L 3.310345,5.517241,2.482759,5.793103 +L 2.482759,5.793103,1.931034,5.793103 +L 1.931034,5.793103,1.103448,5.517241 +L 1.103448,5.517241,0.551724,4.965517 +L 0.551724,4.965517,0.275862,4.413793 +L 0.275862,4.413793,0,3.586207 +L 0,3.586207,0,2.206897 +L 0,2.206897,0.275862,1.37931 +L 0.275862,1.37931,0.551724,0.827586 +L 0.551724,0.827586,1.103448,0.275862 +L 1.103448,0.275862,1.931034,0 +L 1.931034,0,2.482759,0 +L 2.482759,0,3.310345,0.275862 +L 3.310345,0.275862,3.862069,0.827586 +L 1.931034,5.793103,1.37931,5.517241 +L 1.37931,5.517241,0.827586,4.965517 +L 0.827586,4.965517,0.551724,4.413793 +L 0.551724,4.413793,0.275862,3.586207 +L 0.275862,3.586207,0.275862,2.206897 +L 0.275862,2.206897,0.551724,1.37931 +L 0.551724,1.37931,0.827586,0.827586 +L 0.827586,0.827586,1.37931,0.275862 +L 1.37931,0.275862,1.931034,0 +L 3.862069,2.206897,3.862069,0 +L 4.137931,2.206897,4.137931,0 +L 3.034483,2.206897,4.965517,2.206897 + +[H] 9 +L 0.827586,5.793103,0.827586,0 +L 1.103448,5.793103,1.103448,0 +L 4.413793,5.793103,4.413793,0 +L 4.689655,5.793103,4.689655,0 +L 0,5.793103,1.931034,5.793103 +L 3.586207,5.793103,5.517241,5.793103 +L 1.103448,3.034483,4.413793,3.034483 +L 0,0,1.931034,0 +L 3.586207,0,5.517241,0 + +[I] 4 +L 0.827586,5.793103,0.827586,0 +L 1.103448,5.793103,1.103448,0 +L 0,5.793103,1.931034,5.793103 +L 0,0,1.931034,0 + +[J] 14 +L 2.206897,5.793103,2.206897,1.103448 +L 2.206897,1.103448,1.931034,0.275862 +L 1.931034,0.275862,1.37931,0 +L 1.37931,0,0.827586,0 +L 0.827586,0,0.275862,0.275862 +L 0.275862,0.275862,0,0.827586 +L 0,0.827586,0,1.37931 +L 0,1.37931,0.275862,1.655172 +L 0.275862,1.655172,0.551724,1.37931 +L 0.551724,1.37931,0.275862,1.103448 +L 1.931034,5.793103,1.931034,1.103448 +L 1.931034,1.103448,1.655172,0.275862 +L 1.655172,0.275862,1.37931,0 +L 1.103448,5.793103,3.034483,5.793103 + +[K] 9 +L 0.827586,5.793103,0.827586,0 +L 1.103448,5.793103,1.103448,0 +L 4.689655,5.793103,1.103448,2.206897 +L 2.482759,3.310345,4.689655,0 +L 2.206897,3.310345,4.413793,0 +L 0,5.793103,1.931034,5.793103 +L 3.586207,5.793103,5.241379,5.793103 +L 0,0,1.931034,0 +L 3.586207,0,5.241379,0 + +[L] 6 +L 0.827586,5.793103,0.827586,0 +L 1.103448,5.793103,1.103448,0 +L 0,5.793103,1.931034,5.793103 +L 0,0,4.137931,0 +L 4.137931,0,4.137931,1.655172 +L 4.137931,1.655172,3.862069,0 + +[M] 10 +L 0.827586,5.793103,0.827586,0 +L 1.103448,5.793103,2.758621,0.827586 +L 0.827586,5.793103,2.758621,0 +L 4.689655,5.793103,2.758621,0 +L 4.689655,5.793103,4.689655,0 +L 4.965517,5.793103,4.965517,0 +L 0,5.793103,1.103448,5.793103 +L 4.689655,5.793103,5.793103,5.793103 +L 0,0,1.655172,0 +L 3.862069,0,5.793103,0 + +[N] 7 +L 0.827586,5.793103,0.827586,0 +L 1.103448,5.793103,4.413793,0.551724 +L 1.103448,5.241379,4.413793,0 +L 4.413793,5.793103,4.413793,0 +L 0,5.793103,1.103448,5.793103 +L 3.586207,5.793103,5.241379,5.793103 +L 0,0,1.655172,0 + +[O] 38 +L 1.931034,5.793103,1.103448,5.517241 +L 1.103448,5.517241,0.551724,4.965517 +L 0.551724,4.965517,0.275862,4.413793 +L 0.275862,4.413793,0,3.310345 +L 0,3.310345,0,2.482759 +L 0,2.482759,0.275862,1.37931 +L 0.275862,1.37931,0.551724,0.827586 +L 0.551724,0.827586,1.103448,0.275862 +L 1.103448,0.275862,1.931034,0 +L 1.931034,0,2.482759,0 +L 2.482759,0,3.310345,0.275862 +L 3.310345,0.275862,3.862069,0.827586 +L 3.862069,0.827586,4.137931,1.37931 +L 4.137931,1.37931,4.413793,2.482759 +L 4.413793,2.482759,4.413793,3.310345 +L 4.413793,3.310345,4.137931,4.413793 +L 4.137931,4.413793,3.862069,4.965517 +L 3.862069,4.965517,3.310345,5.517241 +L 3.310345,5.517241,2.482759,5.793103 +L 2.482759,5.793103,1.931034,5.793103 +L 1.931034,5.793103,1.37931,5.517241 +L 1.37931,5.517241,0.827586,4.965517 +L 0.827586,4.965517,0.551724,4.413793 +L 0.551724,4.413793,0.275862,3.310345 +L 0.275862,3.310345,0.275862,2.482759 +L 0.275862,2.482759,0.551724,1.37931 +L 0.551724,1.37931,0.827586,0.827586 +L 0.827586,0.827586,1.37931,0.275862 +L 1.37931,0.275862,1.931034,0 +L 2.482759,0,3.034483,0.275862 +L 3.034483,0.275862,3.586207,0.827586 +L 3.586207,0.827586,3.862069,1.37931 +L 3.862069,1.37931,4.137931,2.482759 +L 4.137931,2.482759,4.137931,3.310345 +L 4.137931,3.310345,3.862069,4.413793 +L 3.862069,4.413793,3.586207,4.965517 +L 3.586207,4.965517,3.034483,5.517241 +L 3.034483,5.517241,2.482759,5.793103 + +[P] 19 +L 0.827586,5.793103,0.827586,0 +L 1.103448,5.793103,1.103448,0 +L 0,5.793103,3.310345,5.793103 +L 3.310345,5.793103,4.137931,5.517241 +L 4.137931,5.517241,4.413793,5.241379 +L 4.413793,5.241379,4.689655,4.689655 +L 4.689655,4.689655,4.689655,3.862069 +L 4.689655,3.862069,4.413793,3.310345 +L 4.413793,3.310345,4.137931,3.034483 +L 4.137931,3.034483,3.310345,2.758621 +L 3.310345,2.758621,1.103448,2.758621 +L 3.310345,5.793103,3.862069,5.517241 +L 3.862069,5.517241,4.137931,5.241379 +L 4.137931,5.241379,4.413793,4.689655 +L 4.413793,4.689655,4.413793,3.862069 +L 4.413793,3.862069,4.137931,3.310345 +L 4.137931,3.310345,3.862069,3.034483 +L 3.862069,3.034483,3.310345,2.758621 +L 0,0,1.931034,0 + +[Q] 54 +L 1.931034,5.793103,1.103448,5.517241 +L 1.103448,5.517241,0.551724,4.965517 +L 0.551724,4.965517,0.275862,4.413793 +L 0.275862,4.413793,0,3.310345 +L 0,3.310345,0,2.482759 +L 0,2.482759,0.275862,1.37931 +L 0.275862,1.37931,0.551724,0.827586 +L 0.551724,0.827586,1.103448,0.275862 +L 1.103448,0.275862,1.931034,0 +L 1.931034,0,2.482759,0 +L 2.482759,0,3.310345,0.275862 +L 3.310345,0.275862,3.862069,0.827586 +L 3.862069,0.827586,4.137931,1.37931 +L 4.137931,1.37931,4.413793,2.482759 +L 4.413793,2.482759,4.413793,3.310345 +L 4.413793,3.310345,4.137931,4.413793 +L 4.137931,4.413793,3.862069,4.965517 +L 3.862069,4.965517,3.310345,5.517241 +L 3.310345,5.517241,2.482759,5.793103 +L 2.482759,5.793103,1.931034,5.793103 +L 1.931034,5.793103,1.37931,5.517241 +L 1.37931,5.517241,0.827586,4.965517 +L 0.827586,4.965517,0.551724,4.413793 +L 0.551724,4.413793,0.275862,3.310345 +L 0.275862,3.310345,0.275862,2.482759 +L 0.275862,2.482759,0.551724,1.37931 +L 0.551724,1.37931,0.827586,0.827586 +L 0.827586,0.827586,1.37931,0.275862 +L 1.37931,0.275862,1.931034,0 +L 2.482759,0,3.034483,0.275862 +L 3.034483,0.275862,3.586207,0.827586 +L 3.586207,0.827586,3.862069,1.37931 +L 3.862069,1.37931,4.137931,2.482759 +L 4.137931,2.482759,4.137931,3.310345 +L 4.137931,3.310345,3.862069,4.413793 +L 3.862069,4.413793,3.586207,4.965517 +L 3.586207,4.965517,3.034483,5.517241 +L 3.034483,5.517241,2.482759,5.793103 +L 1.103448,0.551724,1.103448,0.827586 +L 1.103448,0.827586,1.37931,1.37931 +L 1.37931,1.37931,1.931034,1.655172 +L 1.931034,1.655172,2.206897,1.655172 +L 2.206897,1.655172,2.758621,1.37931 +L 2.758621,1.37931,3.034483,0.827586 +L 3.034483,0.827586,3.310345,-1.103448 +L 3.310345,-1.103448,3.586207,-1.37931 +L 3.586207,-1.37931,4.137931,-1.37931 +L 4.137931,-1.37931,4.413793,-0.827586 +L 4.413793,-0.827586,4.413793,-0.551724 +L 3.034483,0.827586,3.310345,-0.275862 +L 3.310345,-0.275862,3.586207,-0.827586 +L 3.586207,-0.827586,3.862069,-1.103448 +L 3.862069,-1.103448,4.137931,-1.103448 +L 4.137931,-1.103448,4.413793,-0.827586 + +[R] 31 +L 0.827586,5.793103,0.827586,0 +L 1.103448,5.793103,1.103448,0 +L 0,5.793103,3.310345,5.793103 +L 3.310345,5.793103,4.137931,5.517241 +L 4.137931,5.517241,4.413793,5.241379 +L 4.413793,5.241379,4.689655,4.689655 +L 4.689655,4.689655,4.689655,4.137931 +L 4.689655,4.137931,4.413793,3.586207 +L 4.413793,3.586207,4.137931,3.310345 +L 4.137931,3.310345,3.310345,3.034483 +L 3.310345,3.034483,1.103448,3.034483 +L 3.310345,5.793103,3.862069,5.517241 +L 3.862069,5.517241,4.137931,5.241379 +L 4.137931,5.241379,4.413793,4.689655 +L 4.413793,4.689655,4.413793,4.137931 +L 4.413793,4.137931,4.137931,3.586207 +L 4.137931,3.586207,3.862069,3.310345 +L 3.862069,3.310345,3.310345,3.034483 +L 0,0,1.931034,0 +L 2.482759,3.034483,3.034483,2.758621 +L 3.034483,2.758621,3.310345,2.482759 +L 3.310345,2.482759,4.137931,0.551724 +L 4.137931,0.551724,4.413793,0.275862 +L 4.413793,0.275862,4.689655,0.275862 +L 4.689655,0.275862,4.965517,0.551724 +L 3.034483,2.758621,3.310345,2.206897 +L 3.310345,2.206897,3.862069,0.275862 +L 3.862069,0.275862,4.137931,0 +L 4.137931,0,4.689655,0 +L 4.689655,0,4.965517,0.551724 +L 4.965517,0.551724,4.965517,0.827586 + +[S] 30 +L 3.586207,4.965517,3.862069,5.793103 +L 3.862069,5.793103,3.862069,4.137931 +L 3.862069,4.137931,3.586207,4.965517 +L 3.586207,4.965517,3.034483,5.517241 +L 3.034483,5.517241,2.206897,5.793103 +L 2.206897,5.793103,1.37931,5.793103 +L 1.37931,5.793103,0.551724,5.517241 +L 0.551724,5.517241,0,4.965517 +L 0,4.965517,0,4.413793 +L 0,4.413793,0.275862,3.862069 +L 0.275862,3.862069,0.551724,3.586207 +L 0.551724,3.586207,1.103448,3.310345 +L 1.103448,3.310345,2.758621,2.758621 +L 2.758621,2.758621,3.310345,2.482759 +L 3.310345,2.482759,3.862069,1.931034 +L 0,4.413793,0.551724,3.862069 +L 0.551724,3.862069,1.103448,3.586207 +L 1.103448,3.586207,2.758621,3.034483 +L 2.758621,3.034483,3.310345,2.758621 +L 3.310345,2.758621,3.586207,2.482759 +L 3.586207,2.482759,3.862069,1.931034 +L 3.862069,1.931034,3.862069,0.827586 +L 3.862069,0.827586,3.310345,0.275862 +L 3.310345,0.275862,2.482759,0 +L 2.482759,0,1.655172,0 +L 1.655172,0,0.827586,0.275862 +L 0.827586,0.275862,0.275862,0.827586 +L 0.275862,0.827586,0,1.655172 +L 0,1.655172,0,0 +L 0,0,0.275862,0.827586 + +[T] 8 +L 1.931034,5.793103,1.931034,0 +L 2.206897,5.793103,2.206897,0 +L 0.275862,5.793103,0,4.137931 +L 0,4.137931,0,5.793103 +L 0,5.793103,4.137931,5.793103 +L 4.137931,5.793103,4.137931,4.137931 +L 4.137931,4.137931,3.862069,5.793103 +L 1.103448,0,3.034483,0 + +[U] 15 +L 0.827586,5.793103,0.827586,1.655172 +L 0.827586,1.655172,1.103448,0.827586 +L 1.103448,0.827586,1.655172,0.275862 +L 1.655172,0.275862,2.482759,0 +L 2.482759,0,3.034483,0 +L 3.034483,0,3.862069,0.275862 +L 3.862069,0.275862,4.413793,0.827586 +L 4.413793,0.827586,4.689655,1.655172 +L 4.689655,1.655172,4.689655,5.793103 +L 1.103448,5.793103,1.103448,1.655172 +L 1.103448,1.655172,1.37931,0.827586 +L 1.37931,0.827586,1.931034,0.275862 +L 1.931034,0.275862,2.482759,0 +L 0,5.793103,1.931034,5.793103 +L 3.862069,5.793103,5.517241,5.793103 + +[V] 5 +L 0.551724,5.793103,2.482759,0 +L 0.827586,5.793103,2.482759,0.827586 +L 4.413793,5.793103,2.482759,0 +L 0,5.793103,1.655172,5.793103 +L 3.310345,5.793103,4.965517,5.793103 + +[W] 8 +L 0.827586,5.793103,1.931034,0 +L 1.103448,5.793103,1.931034,1.37931 +L 3.034483,5.793103,1.931034,0 +L 3.034483,5.793103,4.137931,0 +L 3.310345,5.793103,4.137931,1.37931 +L 5.241379,5.793103,4.137931,0 +L 0,5.793103,1.931034,5.793103 +L 4.413793,5.793103,6.068966,5.793103 + +[X] 7 +L 0.551724,5.793103,4.137931,0 +L 0.827586,5.793103,4.413793,0 +L 4.413793,5.793103,0.551724,0 +L 0,5.793103,1.655172,5.793103 +L 3.310345,5.793103,4.965517,5.793103 +L 0,0,1.655172,0 +L 3.310345,0,4.965517,0 + +[Y] 8 +L 0.551724,5.793103,2.482759,2.758621 +L 2.482759,2.758621,2.482759,0 +L 0.827586,5.793103,2.758621,2.758621 +L 2.758621,2.758621,2.758621,0 +L 4.689655,5.793103,2.758621,2.758621 +L 0,5.793103,1.655172,5.793103 +L 3.586207,5.793103,5.241379,5.793103 +L 1.655172,0,3.586207,0 + +[Z] 8 +L 3.586207,5.793103,0,0 +L 3.862069,5.793103,0.275862,0 +L 0.275862,5.793103,0,4.137931 +L 0,4.137931,0,5.793103 +L 0,5.793103,3.862069,5.793103 +L 0,0,3.862069,0 +L 3.862069,0,3.862069,1.655172 +L 3.862069,1.655172,3.586207,0 + +[[] 4 +L 0,6.896552,0,-1.931034 +L 0.275862,6.896552,0.275862,-1.931034 +L 0,6.896552,1.931034,6.896552 +L 0,-1.931034,1.931034,-1.931034 + +[\] 1 +L 0,5.793103,3.862069,-0.827586 + +[]] 4 +L 1.655172,6.896552,1.655172,-1.931034 +L 1.931034,6.896552,1.931034,-1.931034 +L 0,6.896552,1.931034,6.896552 +L 0,-1.931034,1.931034,-1.931034 + +[^] 5 +L 0.827586,4.137931,1.37931,4.965517 +L 1.37931,4.965517,1.931034,4.137931 +L 0,3.310345,1.37931,4.689655 +L 1.37931,4.689655,2.758621,3.310345 +L 1.37931,4.689655,1.37931,0 + +[_] 1 +L 0,-0.551724,4.413793,-0.551724 + +[`] 6 +L 0.551724,5.793103,0.275862,5.517241 +L 0.275862,5.517241,0,4.965517 +L 0,4.965517,0,4.413793 +L 0,4.413793,0.275862,4.137931 +L 0.275862,4.137931,0.551724,4.413793 +L 0.551724,4.413793,0.275862,4.689655 + +[a] 31 +L 0.551724,3.310345,0.551724,3.034483 +L 0.551724,3.034483,0.275862,3.034483 +L 0.275862,3.034483,0.275862,3.310345 +L 0.275862,3.310345,0.551724,3.586207 +L 0.551724,3.586207,1.103448,3.862069 +L 1.103448,3.862069,2.206897,3.862069 +L 2.206897,3.862069,2.758621,3.586207 +L 2.758621,3.586207,3.034483,3.310345 +L 3.034483,3.310345,3.310345,2.758621 +L 3.310345,2.758621,3.310345,0.827586 +L 3.310345,0.827586,3.586207,0.275862 +L 3.586207,0.275862,3.862069,0 +L 3.034483,3.310345,3.034483,0.827586 +L 3.034483,0.827586,3.310345,0.275862 +L 3.310345,0.275862,3.862069,0 +L 3.862069,0,4.137931,0 +L 3.034483,2.758621,2.758621,2.482759 +L 2.758621,2.482759,1.103448,2.206897 +L 1.103448,2.206897,0.275862,1.931034 +L 0.275862,1.931034,0,1.37931 +L 0,1.37931,0,0.827586 +L 0,0.827586,0.275862,0.275862 +L 0.275862,0.275862,1.103448,0 +L 1.103448,0,1.931034,0 +L 1.931034,0,2.482759,0.275862 +L 2.482759,0.275862,3.034483,0.827586 +L 1.103448,2.206897,0.551724,1.931034 +L 0.551724,1.931034,0.275862,1.37931 +L 0.275862,1.37931,0.275862,0.827586 +L 0.275862,0.827586,0.551724,0.275862 +L 0.551724,0.275862,1.103448,0 + +[b] 23 +L 0.827586,5.793103,0.827586,0 +L 1.103448,5.793103,1.103448,0 +L 1.103448,3.034483,1.655172,3.586207 +L 1.655172,3.586207,2.206897,3.862069 +L 2.206897,3.862069,2.758621,3.862069 +L 2.758621,3.862069,3.586207,3.586207 +L 3.586207,3.586207,4.137931,3.034483 +L 4.137931,3.034483,4.413793,2.206897 +L 4.413793,2.206897,4.413793,1.655172 +L 4.413793,1.655172,4.137931,0.827586 +L 4.137931,0.827586,3.586207,0.275862 +L 3.586207,0.275862,2.758621,0 +L 2.758621,0,2.206897,0 +L 2.206897,0,1.655172,0.275862 +L 1.655172,0.275862,1.103448,0.827586 +L 2.758621,3.862069,3.310345,3.586207 +L 3.310345,3.586207,3.862069,3.034483 +L 3.862069,3.034483,4.137931,2.206897 +L 4.137931,2.206897,4.137931,1.655172 +L 4.137931,1.655172,3.862069,0.827586 +L 3.862069,0.827586,3.310345,0.275862 +L 3.310345,0.275862,2.758621,0 +L 0,5.793103,1.103448,5.793103 + +[c] 24 +L 3.310345,3.034483,3.034483,2.758621 +L 3.034483,2.758621,3.310345,2.482759 +L 3.310345,2.482759,3.586207,2.758621 +L 3.586207,2.758621,3.586207,3.034483 +L 3.586207,3.034483,3.034483,3.586207 +L 3.034483,3.586207,2.482759,3.862069 +L 2.482759,3.862069,1.655172,3.862069 +L 1.655172,3.862069,0.827586,3.586207 +L 0.827586,3.586207,0.275862,3.034483 +L 0.275862,3.034483,0,2.206897 +L 0,2.206897,0,1.655172 +L 0,1.655172,0.275862,0.827586 +L 0.275862,0.827586,0.827586,0.275862 +L 0.827586,0.275862,1.655172,0 +L 1.655172,0,2.206897,0 +L 2.206897,0,3.034483,0.275862 +L 3.034483,0.275862,3.586207,0.827586 +L 1.655172,3.862069,1.103448,3.586207 +L 1.103448,3.586207,0.551724,3.034483 +L 0.551724,3.034483,0.275862,2.206897 +L 0.275862,2.206897,0.275862,1.655172 +L 0.275862,1.655172,0.551724,0.827586 +L 0.551724,0.827586,1.103448,0.275862 +L 1.103448,0.275862,1.655172,0 + +[d] 24 +L 3.310345,5.793103,3.310345,0 +L 3.586207,5.793103,3.586207,0 +L 3.310345,3.034483,2.758621,3.586207 +L 2.758621,3.586207,2.206897,3.862069 +L 2.206897,3.862069,1.655172,3.862069 +L 1.655172,3.862069,0.827586,3.586207 +L 0.827586,3.586207,0.275862,3.034483 +L 0.275862,3.034483,0,2.206897 +L 0,2.206897,0,1.655172 +L 0,1.655172,0.275862,0.827586 +L 0.275862,0.827586,0.827586,0.275862 +L 0.827586,0.275862,1.655172,0 +L 1.655172,0,2.206897,0 +L 2.206897,0,2.758621,0.275862 +L 2.758621,0.275862,3.310345,0.827586 +L 1.655172,3.862069,1.103448,3.586207 +L 1.103448,3.586207,0.551724,3.034483 +L 0.551724,3.034483,0.275862,2.206897 +L 0.275862,2.206897,0.275862,1.655172 +L 0.275862,1.655172,0.551724,0.827586 +L 0.551724,0.827586,1.103448,0.275862 +L 1.103448,0.275862,1.655172,0 +L 2.482759,5.793103,3.586207,5.793103 +L 3.310345,0,4.413793,0 + +[e] 25 +L 0.275862,2.206897,3.586207,2.206897 +L 3.586207,2.206897,3.586207,2.758621 +L 3.586207,2.758621,3.310345,3.310345 +L 3.310345,3.310345,3.034483,3.586207 +L 3.034483,3.586207,2.482759,3.862069 +L 2.482759,3.862069,1.655172,3.862069 +L 1.655172,3.862069,0.827586,3.586207 +L 0.827586,3.586207,0.275862,3.034483 +L 0.275862,3.034483,0,2.206897 +L 0,2.206897,0,1.655172 +L 0,1.655172,0.275862,0.827586 +L 0.275862,0.827586,0.827586,0.275862 +L 0.827586,0.275862,1.655172,0 +L 1.655172,0,2.206897,0 +L 2.206897,0,3.034483,0.275862 +L 3.034483,0.275862,3.586207,0.827586 +L 3.310345,2.206897,3.310345,3.034483 +L 3.310345,3.034483,3.034483,3.586207 +L 1.655172,3.862069,1.103448,3.586207 +L 1.103448,3.586207,0.551724,3.034483 +L 0.551724,3.034483,0.275862,2.206897 +L 0.275862,2.206897,0.275862,1.655172 +L 0.275862,1.655172,0.551724,0.827586 +L 0.551724,0.827586,1.103448,0.275862 +L 1.103448,0.275862,1.655172,0 + +[f] 14 +L 2.206897,5.517241,1.931034,5.241379 +L 1.931034,5.241379,2.206897,4.965517 +L 2.206897,4.965517,2.482759,5.241379 +L 2.482759,5.241379,2.482759,5.517241 +L 2.482759,5.517241,2.206897,5.793103 +L 2.206897,5.793103,1.655172,5.793103 +L 1.655172,5.793103,1.103448,5.517241 +L 1.103448,5.517241,0.827586,4.965517 +L 0.827586,4.965517,0.827586,0 +L 1.655172,5.793103,1.37931,5.517241 +L 1.37931,5.517241,1.103448,4.965517 +L 1.103448,4.965517,1.103448,0 +L 0,3.862069,2.206897,3.862069 +L 0,0,1.931034,0 + +[g] 48 +L 1.655172,3.862069,1.103448,3.586207 +L 1.103448,3.586207,0.827586,3.310345 +L 0.827586,3.310345,0.551724,2.758621 +L 0.551724,2.758621,0.551724,2.206897 +L 0.551724,2.206897,0.827586,1.655172 +L 0.827586,1.655172,1.103448,1.37931 +L 1.103448,1.37931,1.655172,1.103448 +L 1.655172,1.103448,2.206897,1.103448 +L 2.206897,1.103448,2.758621,1.37931 +L 2.758621,1.37931,3.034483,1.655172 +L 3.034483,1.655172,3.310345,2.206897 +L 3.310345,2.206897,3.310345,2.758621 +L 3.310345,2.758621,3.034483,3.310345 +L 3.034483,3.310345,2.758621,3.586207 +L 2.758621,3.586207,2.206897,3.862069 +L 2.206897,3.862069,1.655172,3.862069 +L 1.103448,3.586207,0.827586,3.034483 +L 0.827586,3.034483,0.827586,1.931034 +L 0.827586,1.931034,1.103448,1.37931 +L 2.758621,1.37931,3.034483,1.931034 +L 3.034483,1.931034,3.034483,3.034483 +L 3.034483,3.034483,2.758621,3.586207 +L 3.034483,3.310345,3.310345,3.586207 +L 3.310345,3.586207,3.862069,3.862069 +L 3.862069,3.862069,3.862069,3.586207 +L 3.862069,3.586207,3.310345,3.586207 +L 0.827586,1.655172,0.551724,1.37931 +L 0.551724,1.37931,0.275862,0.827586 +L 0.275862,0.827586,0.275862,0.551724 +L 0.275862,0.551724,0.551724,0 +L 0.551724,0,1.37931,-0.275862 +L 1.37931,-0.275862,2.758621,-0.275862 +L 2.758621,-0.275862,3.586207,-0.551724 +L 3.586207,-0.551724,3.862069,-0.827586 +L 0.275862,0.551724,0.551724,0.275862 +L 0.551724,0.275862,1.37931,0 +L 1.37931,0,2.758621,0 +L 2.758621,0,3.586207,-0.275862 +L 3.586207,-0.275862,3.862069,-0.827586 +L 3.862069,-0.827586,3.862069,-1.103448 +L 3.862069,-1.103448,3.586207,-1.655172 +L 3.586207,-1.655172,2.758621,-1.931034 +L 2.758621,-1.931034,1.103448,-1.931034 +L 1.103448,-1.931034,0.275862,-1.655172 +L 0.275862,-1.655172,0,-1.103448 +L 0,-1.103448,0,-0.827586 +L 0,-0.827586,0.275862,-0.275862 +L 0.275862,-0.275862,1.103448,0 + +[h] 14 +L 0.827586,5.793103,0.827586,0 +L 1.103448,5.793103,1.103448,0 +L 1.103448,3.034483,1.655172,3.586207 +L 1.655172,3.586207,2.482759,3.862069 +L 2.482759,3.862069,3.034483,3.862069 +L 3.034483,3.862069,3.862069,3.586207 +L 3.862069,3.586207,4.137931,3.034483 +L 4.137931,3.034483,4.137931,0 +L 3.034483,3.862069,3.586207,3.586207 +L 3.586207,3.586207,3.862069,3.034483 +L 3.862069,3.034483,3.862069,0 +L 0,5.793103,1.103448,5.793103 +L 0,0,1.931034,0 +L 3.034483,0,4.965517,0 + +[i] 8 +L 0.827586,5.793103,0.551724,5.517241 +L 0.551724,5.517241,0.827586,5.241379 +L 0.827586,5.241379,1.103448,5.517241 +L 1.103448,5.517241,0.827586,5.793103 +L 0.827586,3.862069,0.827586,0 +L 1.103448,3.862069,1.103448,0 +L 0,3.862069,1.103448,3.862069 +L 0,0,1.931034,0 + +[j] 17 +L 1.37931,5.793103,1.103448,5.517241 +L 1.103448,5.517241,1.37931,5.241379 +L 1.37931,5.241379,1.655172,5.517241 +L 1.655172,5.517241,1.37931,5.793103 +L 1.655172,3.862069,1.655172,-1.103448 +L 1.655172,-1.103448,1.37931,-1.655172 +L 1.37931,-1.655172,0.827586,-1.931034 +L 0.827586,-1.931034,0.275862,-1.931034 +L 0.275862,-1.931034,0,-1.655172 +L 0,-1.655172,0,-1.37931 +L 0,-1.37931,0.275862,-1.103448 +L 0.275862,-1.103448,0.551724,-1.37931 +L 0.551724,-1.37931,0.275862,-1.655172 +L 1.37931,3.862069,1.37931,-1.103448 +L 1.37931,-1.103448,1.103448,-1.655172 +L 1.103448,-1.655172,0.827586,-1.931034 +L 0.551724,3.862069,1.655172,3.862069 + +[k] 9 +L 0.827586,5.793103,0.827586,0 +L 1.103448,5.793103,1.103448,0 +L 3.862069,3.862069,1.103448,1.103448 +L 2.482759,2.206897,4.137931,0 +L 2.206897,2.206897,3.862069,0 +L 0,5.793103,1.103448,5.793103 +L 3.034483,3.862069,4.689655,3.862069 +L 0,0,1.931034,0 +L 3.034483,0,4.689655,0 + +[l] 4 +L 0.827586,5.793103,0.827586,0 +L 1.103448,5.793103,1.103448,0 +L 0,5.793103,1.103448,5.793103 +L 0,0,1.931034,0 + +[m] 24 +L 0.827586,3.862069,0.827586,0 +L 1.103448,3.862069,1.103448,0 +L 1.103448,3.034483,1.655172,3.586207 +L 1.655172,3.586207,2.482759,3.862069 +L 2.482759,3.862069,3.034483,3.862069 +L 3.034483,3.862069,3.862069,3.586207 +L 3.862069,3.586207,4.137931,3.034483 +L 4.137931,3.034483,4.137931,0 +L 3.034483,3.862069,3.586207,3.586207 +L 3.586207,3.586207,3.862069,3.034483 +L 3.862069,3.034483,3.862069,0 +L 4.137931,3.034483,4.689655,3.586207 +L 4.689655,3.586207,5.517241,3.862069 +L 5.517241,3.862069,6.068966,3.862069 +L 6.068966,3.862069,6.896552,3.586207 +L 6.896552,3.586207,7.172414,3.034483 +L 7.172414,3.034483,7.172414,0 +L 6.068966,3.862069,6.62069,3.586207 +L 6.62069,3.586207,6.896552,3.034483 +L 6.896552,3.034483,6.896552,0 +L 0,3.862069,1.103448,3.862069 +L 0,0,1.931034,0 +L 3.034483,0,4.965517,0 +L 6.068966,0,8,0 + +[n] 14 +L 0.827586,3.862069,0.827586,0 +L 1.103448,3.862069,1.103448,0 +L 1.103448,3.034483,1.655172,3.586207 +L 1.655172,3.586207,2.482759,3.862069 +L 2.482759,3.862069,3.034483,3.862069 +L 3.034483,3.862069,3.862069,3.586207 +L 3.862069,3.586207,4.137931,3.034483 +L 4.137931,3.034483,4.137931,0 +L 3.034483,3.862069,3.586207,3.586207 +L 3.586207,3.586207,3.862069,3.034483 +L 3.862069,3.034483,3.862069,0 +L 0,3.862069,1.103448,3.862069 +L 0,0,1.931034,0 +L 3.034483,0,4.965517,0 + +[o] 30 +L 1.655172,3.862069,0.827586,3.586207 +L 0.827586,3.586207,0.275862,3.034483 +L 0.275862,3.034483,0,2.206897 +L 0,2.206897,0,1.655172 +L 0,1.655172,0.275862,0.827586 +L 0.275862,0.827586,0.827586,0.275862 +L 0.827586,0.275862,1.655172,0 +L 1.655172,0,2.206897,0 +L 2.206897,0,3.034483,0.275862 +L 3.034483,0.275862,3.586207,0.827586 +L 3.586207,0.827586,3.862069,1.655172 +L 3.862069,1.655172,3.862069,2.206897 +L 3.862069,2.206897,3.586207,3.034483 +L 3.586207,3.034483,3.034483,3.586207 +L 3.034483,3.586207,2.206897,3.862069 +L 2.206897,3.862069,1.655172,3.862069 +L 1.655172,3.862069,1.103448,3.586207 +L 1.103448,3.586207,0.551724,3.034483 +L 0.551724,3.034483,0.275862,2.206897 +L 0.275862,2.206897,0.275862,1.655172 +L 0.275862,1.655172,0.551724,0.827586 +L 0.551724,0.827586,1.103448,0.275862 +L 1.103448,0.275862,1.655172,0 +L 2.206897,0,2.758621,0.275862 +L 2.758621,0.275862,3.310345,0.827586 +L 3.310345,0.827586,3.586207,1.655172 +L 3.586207,1.655172,3.586207,2.206897 +L 3.586207,2.206897,3.310345,3.034483 +L 3.310345,3.034483,2.758621,3.586207 +L 2.758621,3.586207,2.206897,3.862069 + +[p] 24 +L 0.827586,3.862069,0.827586,-1.931034 +L 1.103448,3.862069,1.103448,-1.931034 +L 1.103448,3.034483,1.655172,3.586207 +L 1.655172,3.586207,2.206897,3.862069 +L 2.206897,3.862069,2.758621,3.862069 +L 2.758621,3.862069,3.586207,3.586207 +L 3.586207,3.586207,4.137931,3.034483 +L 4.137931,3.034483,4.413793,2.206897 +L 4.413793,2.206897,4.413793,1.655172 +L 4.413793,1.655172,4.137931,0.827586 +L 4.137931,0.827586,3.586207,0.275862 +L 3.586207,0.275862,2.758621,0 +L 2.758621,0,2.206897,0 +L 2.206897,0,1.655172,0.275862 +L 1.655172,0.275862,1.103448,0.827586 +L 2.758621,3.862069,3.310345,3.586207 +L 3.310345,3.586207,3.862069,3.034483 +L 3.862069,3.034483,4.137931,2.206897 +L 4.137931,2.206897,4.137931,1.655172 +L 4.137931,1.655172,3.862069,0.827586 +L 3.862069,0.827586,3.310345,0.275862 +L 3.310345,0.275862,2.758621,0 +L 0,3.862069,1.103448,3.862069 +L 0,-1.931034,1.931034,-1.931034 + +[q] 23 +L 3.310345,3.862069,3.310345,-1.931034 +L 3.586207,3.862069,3.586207,-1.931034 +L 3.310345,3.034483,2.758621,3.586207 +L 2.758621,3.586207,2.206897,3.862069 +L 2.206897,3.862069,1.655172,3.862069 +L 1.655172,3.862069,0.827586,3.586207 +L 0.827586,3.586207,0.275862,3.034483 +L 0.275862,3.034483,0,2.206897 +L 0,2.206897,0,1.655172 +L 0,1.655172,0.275862,0.827586 +L 0.275862,0.827586,0.827586,0.275862 +L 0.827586,0.275862,1.655172,0 +L 1.655172,0,2.206897,0 +L 2.206897,0,2.758621,0.275862 +L 2.758621,0.275862,3.310345,0.827586 +L 1.655172,3.862069,1.103448,3.586207 +L 1.103448,3.586207,0.551724,3.034483 +L 0.551724,3.034483,0.275862,2.206897 +L 0.275862,2.206897,0.275862,1.655172 +L 0.275862,1.655172,0.551724,0.827586 +L 0.551724,0.827586,1.103448,0.275862 +L 1.103448,0.275862,1.655172,0 +L 2.482759,-1.931034,4.413793,-1.931034 + +[r] 13 +L 0.827586,3.862069,0.827586,0 +L 1.103448,3.862069,1.103448,0 +L 1.103448,2.206897,1.37931,3.034483 +L 1.37931,3.034483,1.931034,3.586207 +L 1.931034,3.586207,2.482759,3.862069 +L 2.482759,3.862069,3.310345,3.862069 +L 3.310345,3.862069,3.586207,3.586207 +L 3.586207,3.586207,3.586207,3.310345 +L 3.586207,3.310345,3.310345,3.034483 +L 3.310345,3.034483,3.034483,3.310345 +L 3.034483,3.310345,3.310345,3.586207 +L 0,3.862069,1.103448,3.862069 +L 0,0,1.931034,0 + +[s] 28 +L 2.758621,3.310345,3.034483,3.862069 +L 3.034483,3.862069,3.034483,2.758621 +L 3.034483,2.758621,2.758621,3.310345 +L 2.758621,3.310345,2.482759,3.586207 +L 2.482759,3.586207,1.931034,3.862069 +L 1.931034,3.862069,0.827586,3.862069 +L 0.827586,3.862069,0.275862,3.586207 +L 0.275862,3.586207,0,3.310345 +L 0,3.310345,0,2.758621 +L 0,2.758621,0.275862,2.482759 +L 0.275862,2.482759,0.827586,2.206897 +L 0.827586,2.206897,2.206897,1.655172 +L 2.206897,1.655172,2.758621,1.37931 +L 2.758621,1.37931,3.034483,1.103448 +L 0,3.034483,0.275862,2.758621 +L 0.275862,2.758621,0.827586,2.482759 +L 0.827586,2.482759,2.206897,1.931034 +L 2.206897,1.931034,2.758621,1.655172 +L 2.758621,1.655172,3.034483,1.37931 +L 3.034483,1.37931,3.034483,0.551724 +L 3.034483,0.551724,2.758621,0.275862 +L 2.758621,0.275862,2.206897,0 +L 2.206897,0,1.103448,0 +L 1.103448,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 +L 0.275862,0.551724,0,1.103448 +L 0,1.103448,0,0 +L 0,0,0.275862,0.551724 + +[t] 10 +L 0.827586,5.793103,0.827586,1.103448 +L 0.827586,1.103448,1.103448,0.275862 +L 1.103448,0.275862,1.655172,0 +L 1.655172,0,2.206897,0 +L 2.206897,0,2.758621,0.275862 +L 2.758621,0.275862,3.034483,0.827586 +L 1.103448,5.793103,1.103448,1.103448 +L 1.103448,1.103448,1.37931,0.275862 +L 1.37931,0.275862,1.655172,0 +L 0,3.862069,2.206897,3.862069 + +[u] 14 +L 0.827586,3.862069,0.827586,0.827586 +L 0.827586,0.827586,1.103448,0.275862 +L 1.103448,0.275862,1.931034,0 +L 1.931034,0,2.482759,0 +L 2.482759,0,3.310345,0.275862 +L 3.310345,0.275862,3.862069,0.827586 +L 1.103448,3.862069,1.103448,0.827586 +L 1.103448,0.827586,1.37931,0.275862 +L 1.37931,0.275862,1.931034,0 +L 3.862069,3.862069,3.862069,0 +L 4.137931,3.862069,4.137931,0 +L 0,3.862069,1.103448,3.862069 +L 3.034483,3.862069,4.137931,3.862069 +L 3.862069,0,4.965517,0 + +[v] 5 +L 0.551724,3.862069,2.206897,0 +L 0.827586,3.862069,2.206897,0.551724 +L 3.862069,3.862069,2.206897,0 +L 0,3.862069,1.655172,3.862069 +L 2.758621,3.862069,4.413793,3.862069 + +[w] 8 +L 0.827586,3.862069,1.931034,0 +L 1.103448,3.862069,1.931034,0.827586 +L 3.034483,3.862069,1.931034,0 +L 3.034483,3.862069,4.137931,0 +L 3.310345,3.862069,4.137931,0.827586 +L 5.241379,3.862069,4.137931,0 +L 0,3.862069,1.931034,3.862069 +L 4.413793,3.862069,6.068966,3.862069 + +[x] 7 +L 0.551724,3.862069,3.586207,0 +L 0.827586,3.862069,3.862069,0 +L 3.862069,3.862069,0.551724,0 +L 0,3.862069,1.655172,3.862069 +L 2.758621,3.862069,4.413793,3.862069 +L 0,0,1.655172,0 +L 2.758621,0,4.413793,0 + +[y] 12 +L 0.551724,3.862069,2.206897,0 +L 0.827586,3.862069,2.206897,0.551724 +L 3.862069,3.862069,2.206897,0 +L 2.206897,0,1.655172,-1.103448 +L 1.655172,-1.103448,1.103448,-1.655172 +L 1.103448,-1.655172,0.551724,-1.931034 +L 0.551724,-1.931034,0.275862,-1.931034 +L 0.275862,-1.931034,0,-1.655172 +L 0,-1.655172,0.275862,-1.37931 +L 0.275862,-1.37931,0.551724,-1.655172 +L 0,3.862069,1.655172,3.862069 +L 2.758621,3.862069,4.413793,3.862069 + +[z] 8 +L 3.034483,3.862069,0,0 +L 3.310345,3.862069,0.275862,0 +L 0.275862,3.862069,0,2.758621 +L 0,2.758621,0,3.862069 +L 0,3.862069,3.310345,3.862069 +L 0,0,3.310345,0 +L 3.310345,0,3.310345,1.103448 +L 3.310345,1.103448,3.034483,0 + +[{] 34 +L 1.37931,6.896552,0.827586,6.62069 +L 0.827586,6.62069,0.551724,6.344828 +L 0.551724,6.344828,0.275862,5.793103 +L 0.275862,5.793103,0.275862,5.241379 +L 0.275862,5.241379,0.551724,4.689655 +L 0.551724,4.689655,0.827586,4.413793 +L 0.827586,4.413793,1.103448,3.862069 +L 1.103448,3.862069,1.103448,3.310345 +L 1.103448,3.310345,0.551724,2.758621 +L 0.827586,6.62069,0.551724,6.068966 +L 0.551724,6.068966,0.551724,5.517241 +L 0.551724,5.517241,0.827586,4.965517 +L 0.827586,4.965517,1.103448,4.689655 +L 1.103448,4.689655,1.37931,4.137931 +L 1.37931,4.137931,1.37931,3.586207 +L 1.37931,3.586207,1.103448,3.034483 +L 1.103448,3.034483,0,2.482759 +L 0,2.482759,1.103448,1.931034 +L 1.103448,1.931034,1.37931,1.37931 +L 1.37931,1.37931,1.37931,0.827586 +L 1.37931,0.827586,1.103448,0.275862 +L 1.103448,0.275862,0.827586,0 +L 0.827586,0,0.551724,-0.551724 +L 0.551724,-0.551724,0.551724,-1.103448 +L 0.551724,-1.103448,0.827586,-1.655172 +L 0.551724,2.206897,1.103448,1.655172 +L 1.103448,1.655172,1.103448,1.103448 +L 1.103448,1.103448,0.827586,0.551724 +L 0.827586,0.551724,0.551724,0.275862 +L 0.551724,0.275862,0.275862,-0.275862 +L 0.275862,-0.275862,0.275862,-0.827586 +L 0.275862,-0.827586,0.551724,-1.37931 +L 0.551724,-1.37931,0.827586,-1.655172 +L 0.827586,-1.655172,1.37931,-1.931034 + +[|] 1 +L 0,6.896552,0,-1.931034 + +[}] 34 +L 0,6.896552,0.551724,6.62069 +L 0.551724,6.62069,0.827586,6.344828 +L 0.827586,6.344828,1.103448,5.793103 +L 1.103448,5.793103,1.103448,5.241379 +L 1.103448,5.241379,0.827586,4.689655 +L 0.827586,4.689655,0.551724,4.413793 +L 0.551724,4.413793,0.275862,3.862069 +L 0.275862,3.862069,0.275862,3.310345 +L 0.275862,3.310345,0.827586,2.758621 +L 0.551724,6.62069,0.827586,6.068966 +L 0.827586,6.068966,0.827586,5.517241 +L 0.827586,5.517241,0.551724,4.965517 +L 0.551724,4.965517,0.275862,4.689655 +L 0.275862,4.689655,0,4.137931 +L 0,4.137931,0,3.586207 +L 0,3.586207,0.275862,3.034483 +L 0.275862,3.034483,1.37931,2.482759 +L 1.37931,2.482759,0.275862,1.931034 +L 0.275862,1.931034,0,1.37931 +L 0,1.37931,0,0.827586 +L 0,0.827586,0.275862,0.275862 +L 0.275862,0.275862,0.551724,0 +L 0.551724,0,0.827586,-0.551724 +L 0.827586,-0.551724,0.827586,-1.103448 +L 0.827586,-1.103448,0.551724,-1.655172 +L 0.827586,2.206897,0.275862,1.655172 +L 0.275862,1.655172,0.275862,1.103448 +L 0.275862,1.103448,0.551724,0.551724 +L 0.551724,0.551724,0.827586,0.275862 +L 0.827586,0.275862,1.103448,-0.275862 +L 1.103448,-0.275862,1.103448,-0.827586 +L 1.103448,-0.827586,0.827586,-1.37931 +L 0.827586,-1.37931,0.551724,-1.655172 +L 0.551724,-1.655172,0,-1.931034 + +[~] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[#0104] 12 +L 2.482759,5.793103,0.551724,0 +L 2.482759,5.793103,4.413793,0 +L 2.482759,4.965517,4.137931,0 +L 1.103448,1.655172,3.586207,1.655172 +L 0,0,1.655172,0 +L 3.310345,0,4.965517,0 +L 4.137931,0,3.862069,-0.275862 +L 3.862069,-0.275862,3.586207,-0.827586 +L 3.586207,-0.827586,3.586207,-1.37931 +L 3.586207,-1.37931,3.862069,-1.655172 +L 3.862069,-1.655172,4.137931,-1.37931 +L 4.137931,-1.37931,3.862069,-1.103448 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[#0141] 7 +L 0.827586,5.793103,0.827586,0 +L 1.103448,5.793103,1.103448,0 +L 0,5.793103,1.931034,5.793103 +L 0,0,4.137931,0 +L 4.137931,0,4.137931,1.655172 +L 4.137931,1.655172,3.862069,0 +L 2.206897,3.862069,0,2.206897 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[#015A] 36 +L 3.586207,4.965517,3.862069,5.793103 +L 3.862069,5.793103,3.862069,4.137931 +L 3.862069,4.137931,3.586207,4.965517 +L 3.586207,4.965517,3.034483,5.517241 +L 3.034483,5.517241,2.206897,5.793103 +L 2.206897,5.793103,1.37931,5.793103 +L 1.37931,5.793103,0.551724,5.517241 +L 0.551724,5.517241,0,4.965517 +L 0,4.965517,0,4.413793 +L 0,4.413793,0.275862,3.862069 +L 0.275862,3.862069,0.551724,3.586207 +L 0.551724,3.586207,1.103448,3.310345 +L 1.103448,3.310345,2.758621,2.758621 +L 2.758621,2.758621,3.310345,2.482759 +L 3.310345,2.482759,3.862069,1.931034 +L 0,4.413793,0.551724,3.862069 +L 0.551724,3.862069,1.103448,3.586207 +L 1.103448,3.586207,2.758621,3.034483 +L 2.758621,3.034483,3.310345,2.758621 +L 3.310345,2.758621,3.586207,2.482759 +L 3.586207,2.482759,3.862069,1.931034 +L 3.862069,1.931034,3.862069,0.827586 +L 3.862069,0.827586,3.310345,0.275862 +L 3.310345,0.275862,2.482759,0 +L 2.482759,0,1.655172,0 +L 1.655172,0,0.827586,0.275862 +L 0.827586,0.275862,0.275862,0.827586 +L 0.275862,0.827586,0,1.655172 +L 0,1.655172,0,0 +L 0,0,0.275862,0.827586 +L 2.206897,7.448276,1.931034,7.724138 +L 1.931034,7.724138,2.206897,8 +L 2.206897,8,2.482759,7.724138 +L 2.482759,7.724138,2.482759,7.172414 +L 2.482759,7.172414,2.206897,6.62069 +L 2.206897,6.62069,1.931034,6.344828 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[#0179] 14 +L 3.586207,5.793103,0,0 +L 3.862069,5.793103,0.275862,0 +L 0.275862,5.793103,0,4.137931 +L 0,4.137931,0,5.793103 +L 0,5.793103,3.862069,5.793103 +L 0,0,3.862069,0 +L 3.862069,0,3.862069,1.655172 +L 3.862069,1.655172,3.586207,0 +L 2.206897,7.448276,1.931034,7.724138 +L 1.931034,7.724138,2.206897,8 +L 2.206897,8,2.482759,7.724138 +L 2.482759,7.724138,2.482759,7.172414 +L 2.482759,7.172414,2.206897,6.62069 +L 2.206897,6.62069,1.931034,6.344828 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[#017B] 12 +L 3.586207,5.793103,0,0 +L 3.862069,5.793103,0.275862,0 +L 0.275862,5.793103,0,4.137931 +L 0,4.137931,0,5.793103 +L 0,5.793103,3.862069,5.793103 +L 0,0,3.862069,0 +L 3.862069,0,3.862069,1.655172 +L 3.862069,1.655172,3.586207,0 +L 1.931034,6.896552,1.655172,6.62069 +L 1.655172,6.62069,1.931034,6.344828 +L 1.931034,6.344828,2.206897,6.62069 +L 2.206897,6.62069,1.931034,6.896552 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[#0105] 37 +L 0.551724,3.310345,0.551724,3.034483 +L 0.551724,3.034483,0.275862,3.034483 +L 0.275862,3.034483,0.275862,3.310345 +L 0.275862,3.310345,0.551724,3.586207 +L 0.551724,3.586207,1.103448,3.862069 +L 1.103448,3.862069,2.206897,3.862069 +L 2.206897,3.862069,2.758621,3.586207 +L 2.758621,3.586207,3.034483,3.310345 +L 3.034483,3.310345,3.310345,2.758621 +L 3.310345,2.758621,3.310345,0.827586 +L 3.310345,0.827586,3.586207,0.275862 +L 3.586207,0.275862,3.862069,0 +L 3.034483,3.310345,3.034483,0.827586 +L 3.034483,0.827586,3.310345,0.275862 +L 3.310345,0.275862,3.862069,0 +L 3.862069,0,4.137931,0 +L 3.034483,2.758621,2.758621,2.482759 +L 2.758621,2.482759,1.103448,2.206897 +L 1.103448,2.206897,0.275862,1.931034 +L 0.275862,1.931034,0,1.37931 +L 0,1.37931,0,0.827586 +L 0,0.827586,0.275862,0.275862 +L 0.275862,0.275862,1.103448,0 +L 1.103448,0,1.931034,0 +L 1.931034,0,2.482759,0.275862 +L 2.482759,0.275862,3.034483,0.827586 +L 1.103448,2.206897,0.551724,1.931034 +L 0.551724,1.931034,0.275862,1.37931 +L 0.275862,1.37931,0.275862,0.827586 +L 0.275862,0.827586,0.551724,0.275862 +L 0.551724,0.275862,1.103448,0 +L 3.862069,0,3.586207,-0.275862 +L 3.586207,-0.275862,3.310345,-0.827586 +L 3.310345,-0.827586,3.310345,-1.37931 +L 3.310345,-1.37931,3.586207,-1.655172 +L 3.586207,-1.655172,3.862069,-1.37931 +L 3.862069,-1.37931,3.586207,-1.103448 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[#0142] 5 +L 0.827586,5.793103,0.827586,0 +L 1.103448,5.793103,1.103448,0 +L 0,5.793103,1.103448,5.793103 +L 0,0,1.931034,0 +L 1.931034,3.862069,0,2.482759 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[#015B] 34 +L 2.758621,3.310345,3.034483,3.862069 +L 3.034483,3.862069,3.034483,2.758621 +L 3.034483,2.758621,2.758621,3.310345 +L 2.758621,3.310345,2.482759,3.586207 +L 2.482759,3.586207,1.931034,3.862069 +L 1.931034,3.862069,0.827586,3.862069 +L 0.827586,3.862069,0.275862,3.586207 +L 0.275862,3.586207,0,3.310345 +L 0,3.310345,0,2.758621 +L 0,2.758621,0.275862,2.482759 +L 0.275862,2.482759,0.827586,2.206897 +L 0.827586,2.206897,2.206897,1.655172 +L 2.206897,1.655172,2.758621,1.37931 +L 2.758621,1.37931,3.034483,1.103448 +L 0,3.034483,0.275862,2.758621 +L 0.275862,2.758621,0.827586,2.482759 +L 0.827586,2.482759,2.206897,1.931034 +L 2.206897,1.931034,2.758621,1.655172 +L 2.758621,1.655172,3.034483,1.37931 +L 3.034483,1.37931,3.034483,0.551724 +L 3.034483,0.551724,2.758621,0.275862 +L 2.758621,0.275862,2.206897,0 +L 2.206897,0,1.103448,0 +L 1.103448,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 +L 0.275862,0.551724,0,1.103448 +L 0,1.103448,0,0 +L 0,0,0.275862,0.551724 +L 1.655172,5.517241,1.37931,5.793103 +L 1.37931,5.793103,1.655172,6.068966 +L 1.655172,6.068966,1.931034,5.793103 +L 1.931034,5.793103,1.931034,5.241379 +L 1.931034,5.241379,1.655172,4.689655 +L 1.655172,4.689655,1.37931,4.413793 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[#017A] 14 +L 3.034483,3.862069,0,0 +L 3.310345,3.862069,0.275862,0 +L 0.275862,3.862069,0,2.758621 +L 0,2.758621,0,3.862069 +L 0,3.862069,3.310345,3.862069 +L 0,0,3.310345,0 +L 3.310345,0,3.310345,1.103448 +L 3.310345,1.103448,3.034483,0 +L 1.655172,5.241379,1.37931,5.517241 +L 1.37931,5.517241,1.655172,5.793103 +L 1.655172,5.793103,1.931034,5.517241 +L 1.931034,5.517241,1.931034,4.965517 +L 1.931034,4.965517,1.655172,4.413793 +L 1.655172,4.413793,1.37931,4.137931 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[#017C] 12 +L 3.034483,3.862069,0,0 +L 3.310345,3.862069,0.275862,0 +L 0.275862,3.862069,0,2.758621 +L 0,2.758621,0,3.862069 +L 0,3.862069,3.310345,3.862069 +L 0,0,3.310345,0 +L 3.310345,0,3.310345,1.103448 +L 3.310345,1.103448,3.034483,0 +L 1.52381,4.952381,1.142857,4.571429 +L 1.142857,4.571429,1.52381,4.190476 +L 1.52381,4.190476,1.904762,4.571429 +L 1.904762,4.571429,1.52381,4.952381 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[#0106] 34 +L 3.862069,4.965517,4.137931,4.137931 +L 4.137931,4.137931,4.137931,5.793103 +L 4.137931,5.793103,3.862069,4.965517 +L 3.862069,4.965517,3.310345,5.517241 +L 3.310345,5.517241,2.482759,5.793103 +L 2.482759,5.793103,1.931034,5.793103 +L 1.931034,5.793103,1.103448,5.517241 +L 1.103448,5.517241,0.551724,4.965517 +L 0.551724,4.965517,0.275862,4.413793 +L 0.275862,4.413793,0,3.586207 +L 0,3.586207,0,2.206897 +L 0,2.206897,0.275862,1.37931 +L 0.275862,1.37931,0.551724,0.827586 +L 0.551724,0.827586,1.103448,0.275862 +L 1.103448,0.275862,1.931034,0 +L 1.931034,0,2.482759,0 +L 2.482759,0,3.310345,0.275862 +L 3.310345,0.275862,3.862069,0.827586 +L 3.862069,0.827586,4.137931,1.37931 +L 1.931034,5.793103,1.37931,5.517241 +L 1.37931,5.517241,0.827586,4.965517 +L 0.827586,4.965517,0.551724,4.413793 +L 0.551724,4.413793,0.275862,3.586207 +L 0.275862,3.586207,0.275862,2.206897 +L 0.275862,2.206897,0.551724,1.37931 +L 0.551724,1.37931,0.827586,0.827586 +L 0.827586,0.827586,1.37931,0.275862 +L 1.37931,0.275862,1.931034,0 +L 2.482759,7.448276,2.206897,7.724138 +L 2.206897,7.724138,2.482759,8 +L 2.482759,8,2.758621,7.724138 +L 2.758621,7.724138,2.758621,7.172414 +L 2.758621,7.172414,2.482759,6.62069 +L 2.482759,6.62069,2.206897,6.344828 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[#0118] 16 +L 0.827586,5.793103,0.827586,0 +L 1.103448,5.793103,1.103448,0 +L 2.758621,4.137931,2.758621,1.931034 +L 0,5.793103,4.413793,5.793103 +L 4.413793,5.793103,4.413793,4.137931 +L 4.413793,4.137931,4.137931,5.793103 +L 1.103448,3.034483,2.758621,3.034483 +L 0,0,4.413793,0 +L 4.413793,0,4.413793,1.655172 +L 4.413793,1.655172,4.137931,0 +L 3.586207,0,3.310345,-0.275862 +L 3.310345,-0.275862,3.034483,-0.827586 +L 3.034483,-0.827586,3.034483,-1.37931 +L 3.034483,-1.37931,3.310345,-1.655172 +L 3.310345,-1.655172,3.586207,-1.37931 +L 3.586207,-1.37931,3.310345,-1.103448 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[#0143] 13 +L 0.827586,5.793103,0.827586,0 +L 1.103448,5.793103,4.413793,0.551724 +L 1.103448,5.241379,4.413793,0 +L 4.413793,5.793103,4.413793,0 +L 0,5.793103,1.103448,5.793103 +L 3.586207,5.793103,5.241379,5.793103 +L 0,0,1.655172,0 +L 2.758621,7.448276,2.482759,7.724138 +L 2.482759,7.724138,2.758621,8 +L 2.758621,8,3.034483,7.724138 +L 3.034483,7.724138,3.034483,7.172414 +L 3.034483,7.172414,2.758621,6.62069 +L 2.758621,6.62069,2.482759,6.344828 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[#00D3] 44 +L 1.931034,5.793103,1.103448,5.517241 +L 1.103448,5.517241,0.551724,4.965517 +L 0.551724,4.965517,0.275862,4.413793 +L 0.275862,4.413793,0,3.310345 +L 0,3.310345,0,2.482759 +L 0,2.482759,0.275862,1.37931 +L 0.275862,1.37931,0.551724,0.827586 +L 0.551724,0.827586,1.103448,0.275862 +L 1.103448,0.275862,1.931034,0 +L 1.931034,0,2.482759,0 +L 2.482759,0,3.310345,0.275862 +L 3.310345,0.275862,3.862069,0.827586 +L 3.862069,0.827586,4.137931,1.37931 +L 4.137931,1.37931,4.413793,2.482759 +L 4.413793,2.482759,4.413793,3.310345 +L 4.413793,3.310345,4.137931,4.413793 +L 4.137931,4.413793,3.862069,4.965517 +L 3.862069,4.965517,3.310345,5.517241 +L 3.310345,5.517241,2.482759,5.793103 +L 2.482759,5.793103,1.931034,5.793103 +L 1.931034,5.793103,1.37931,5.517241 +L 1.37931,5.517241,0.827586,4.965517 +L 0.827586,4.965517,0.551724,4.413793 +L 0.551724,4.413793,0.275862,3.310345 +L 0.275862,3.310345,0.275862,2.482759 +L 0.275862,2.482759,0.551724,1.37931 +L 0.551724,1.37931,0.827586,0.827586 +L 0.827586,0.827586,1.37931,0.275862 +L 1.37931,0.275862,1.931034,0 +L 2.482759,0,3.034483,0.275862 +L 3.034483,0.275862,3.586207,0.827586 +L 3.586207,0.827586,3.862069,1.37931 +L 3.862069,1.37931,4.137931,2.482759 +L 4.137931,2.482759,4.137931,3.310345 +L 4.137931,3.310345,3.862069,4.413793 +L 3.862069,4.413793,3.586207,4.965517 +L 3.586207,4.965517,3.034483,5.517241 +L 3.034483,5.517241,2.482759,5.793103 +L 2.482759,7.448276,2.206897,7.724138 +L 2.206897,7.724138,2.482759,8 +L 2.482759,8,2.758621,7.724138 +L 2.758621,7.724138,2.758621,7.172414 +L 2.758621,7.172414,2.482759,6.62069 +L 2.482759,6.62069,2.206897,6.344828 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[#0107] 30 +L 3.310345,3.034483,3.034483,2.758621 +L 3.034483,2.758621,3.310345,2.482759 +L 3.310345,2.482759,3.586207,2.758621 +L 3.586207,2.758621,3.586207,3.034483 +L 3.586207,3.034483,3.034483,3.586207 +L 3.034483,3.586207,2.482759,3.862069 +L 2.482759,3.862069,1.655172,3.862069 +L 1.655172,3.862069,0.827586,3.586207 +L 0.827586,3.586207,0.275862,3.034483 +L 0.275862,3.034483,0,2.206897 +L 0,2.206897,0,1.655172 +L 0,1.655172,0.275862,0.827586 +L 0.275862,0.827586,0.827586,0.275862 +L 0.827586,0.275862,1.655172,0 +L 1.655172,0,2.206897,0 +L 2.206897,0,3.034483,0.275862 +L 3.034483,0.275862,3.586207,0.827586 +L 1.655172,3.862069,1.103448,3.586207 +L 1.103448,3.586207,0.551724,3.034483 +L 0.551724,3.034483,0.275862,2.206897 +L 0.275862,2.206897,0.275862,1.655172 +L 0.275862,1.655172,0.551724,0.827586 +L 0.551724,0.827586,1.103448,0.275862 +L 1.103448,0.275862,1.655172,0 +L 2.206897,5.517241,1.931034,5.793103 +L 1.931034,5.793103,2.206897,6.068966 +L 2.206897,6.068966,2.482759,5.793103 +L 2.482759,5.793103,2.482759,5.241379 +L 2.482759,5.241379,2.206897,4.689655 +L 2.206897,4.689655,1.931034,4.413793 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[#0119] 31 +L 0.275862,2.206897,3.586207,2.206897 +L 3.586207,2.206897,3.586207,2.758621 +L 3.586207,2.758621,3.310345,3.310345 +L 3.310345,3.310345,3.034483,3.586207 +L 3.034483,3.586207,2.482759,3.862069 +L 2.482759,3.862069,1.655172,3.862069 +L 1.655172,3.862069,0.827586,3.586207 +L 0.827586,3.586207,0.275862,3.034483 +L 0.275862,3.034483,0,2.206897 +L 0,2.206897,0,1.655172 +L 0,1.655172,0.275862,0.827586 +L 0.275862,0.827586,0.827586,0.275862 +L 0.827586,0.275862,1.655172,0 +L 1.655172,0,2.206897,0 +L 2.206897,0,3.034483,0.275862 +L 3.034483,0.275862,3.586207,0.827586 +L 3.310345,2.206897,3.310345,3.034483 +L 3.310345,3.034483,3.034483,3.586207 +L 1.655172,3.862069,1.103448,3.586207 +L 1.103448,3.586207,0.551724,3.034483 +L 0.551724,3.034483,0.275862,2.206897 +L 0.275862,2.206897,0.275862,1.655172 +L 0.275862,1.655172,0.551724,0.827586 +L 0.551724,0.827586,1.103448,0.275862 +L 1.103448,0.275862,1.655172,0 +L 2.206897,0,1.931034,-0.275862 +L 1.931034,-0.275862,1.655172,-0.827586 +L 1.655172,-0.827586,1.655172,-1.37931 +L 1.655172,-1.37931,1.931034,-1.655172 +L 1.931034,-1.655172,2.206897,-1.37931 +L 2.206897,-1.37931,1.931034,-1.103448 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[#0144] 20 +L 0.827586,3.862069,0.827586,0 +L 1.103448,3.862069,1.103448,0 +L 1.103448,3.034483,1.655172,3.586207 +L 1.655172,3.586207,2.482759,3.862069 +L 2.482759,3.862069,3.034483,3.862069 +L 3.034483,3.862069,3.862069,3.586207 +L 3.862069,3.586207,4.137931,3.034483 +L 4.137931,3.034483,4.137931,0 +L 3.034483,3.862069,3.586207,3.586207 +L 3.586207,3.586207,3.862069,3.034483 +L 3.862069,3.034483,3.862069,0 +L 0,3.862069,1.103448,3.862069 +L 0,0,1.931034,0 +L 3.034483,0,4.965517,0 +L 2.758621,5.517241,2.482759,5.793103 +L 2.482759,5.793103,2.758621,6.068966 +L 2.758621,6.068966,3.034483,5.793103 +L 3.034483,5.793103,3.034483,5.241379 +L 3.034483,5.241379,2.758621,4.689655 +L 2.758621,4.689655,2.482759,4.413793 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[#00F3] 36 +L 1.655172,3.862069,0.827586,3.586207 +L 0.827586,3.586207,0.275862,3.034483 +L 0.275862,3.034483,0,2.206897 +L 0,2.206897,0,1.655172 +L 0,1.655172,0.275862,0.827586 +L 0.275862,0.827586,0.827586,0.275862 +L 0.827586,0.275862,1.655172,0 +L 1.655172,0,2.206897,0 +L 2.206897,0,3.034483,0.275862 +L 3.034483,0.275862,3.586207,0.827586 +L 3.586207,0.827586,3.862069,1.655172 +L 3.862069,1.655172,3.862069,2.206897 +L 3.862069,2.206897,3.586207,3.034483 +L 3.586207,3.034483,3.034483,3.586207 +L 3.034483,3.586207,2.206897,3.862069 +L 2.206897,3.862069,1.655172,3.862069 +L 1.655172,3.862069,1.103448,3.586207 +L 1.103448,3.586207,0.551724,3.034483 +L 0.551724,3.034483,0.275862,2.206897 +L 0.275862,2.206897,0.275862,1.655172 +L 0.275862,1.655172,0.551724,0.827586 +L 0.551724,0.827586,1.103448,0.275862 +L 1.103448,0.275862,1.655172,0 +L 2.206897,0,2.758621,0.275862 +L 2.758621,0.275862,3.310345,0.827586 +L 3.310345,0.827586,3.586207,1.655172 +L 3.586207,1.655172,3.586207,2.206897 +L 3.586207,2.206897,3.310345,3.034483 +L 3.310345,3.034483,2.758621,3.586207 +L 2.758621,3.586207,2.206897,3.862069 +L 2.206897,5.517241,1.931034,5.793103 +L 1.931034,5.793103,2.206897,6.068966 +L 2.206897,6.068966,2.482759,5.793103 +L 2.482759,5.793103,2.482759,5.241379 +L 2.482759,5.241379,2.206897,4.689655 +L 2.206897,4.689655,1.931034,4.413793 + +#EOF diff --git a/pycam/share/fonts/romancs.cxf b/pycam/share/fonts/romancs.cxf new file mode 100644 index 00000000..555d45bb --- /dev/null +++ b/pycam/share/fonts/romancs.cxf @@ -0,0 +1,2425 @@ +# Format: QCad II Font +# Creator: Adam Radlowski's "dodajf" program - GRASS font translator +# Version: 1.0.0 +# Name: Roman Complex Small +# LetterSpacing: 3.0 +# WordSpacing: 6.75 +# LineSpacingFactor: 1.0 +# Author: Hershey fonts +# Author: Adam Radlowski (Polish) + +[!] 9 +L 0.380952,4.952381,0,4.571429 +L 0,4.571429,0.380952,1.904762 +L 0.380952,1.904762,0.761905,4.571429 +L 0.761905,4.571429,0.380952,4.952381 +L 0.380952,4.571429,0.380952,3.428571 +L 0.380952,0.761905,0,0.380952 +L 0,0.380952,0.380952,0 +L 0.380952,0,0.761905,0.380952 +L 0.761905,0.380952,0.380952,0.761905 + +["] 10 +L 0.380952,3.428571,0,3.047619 +L 0,3.047619,0.380952,2.666667 +L 0.380952,2.666667,0.761905,3.047619 +L 0.761905,3.047619,0.380952,3.428571 +L 0.761905,0.380952,0.380952,0 +L 0.380952,0,0,0.380952 +L 0,0.380952,0.380952,0.761905 +L 0.380952,0.761905,0.761905,0.380952 +L 0.761905,0.380952,0.761905,-0.380952 +L 0.761905,-0.380952,0,-1.142857 + +[#] 4 +L 1.904762,4.952381,0.380952,-1.52381 +L 3.428571,4.952381,1.904762,-1.52381 +L 0.380952,2.666667,3.809524,2.666667 +L 0,0.761905,3.428571,0.761905 + +[$] 26 +L 1.142857,6.095238,1.142857,-1.52381 +L 2.285714,6.095238,2.285714,-1.52381 +L 3.428571,4.571429,3.047619,4.571429 +L 3.047619,4.571429,3.047619,4.190476 +L 3.047619,4.190476,3.428571,4.190476 +L 3.428571,4.190476,3.428571,4.571429 +L 3.428571,4.571429,2.666667,4.952381 +L 2.666667,4.952381,0.761905,4.952381 +L 0.761905,4.952381,0,4.571429 +L 0,4.571429,0,3.809524 +L 0,3.809524,0.380952,3.047619 +L 0.380952,3.047619,3.047619,1.904762 +L 3.047619,1.904762,3.428571,1.52381 +L 0,3.809524,0.380952,3.428571 +L 0.380952,3.428571,3.047619,2.285714 +L 3.047619,2.285714,3.428571,1.52381 +L 3.428571,1.52381,3.428571,0.761905 +L 3.428571,0.761905,3.047619,0.380952 +L 3.047619,0.380952,2.285714,0 +L 2.285714,0,1.142857,0 +L 1.142857,0,0.380952,0.380952 +L 0.380952,0.380952,0,0.761905 +L 0,0.761905,0,1.142857 +L 0,1.142857,0.380952,1.142857 +L 0.380952,1.142857,0.380952,0.761905 +L 0.380952,0.761905,0,0.761905 + +[%] 20 +L 4.571429,4.952381,0,0 +L 1.142857,4.952381,1.52381,4.571429 +L 1.52381,4.571429,1.52381,3.809524 +L 1.52381,3.809524,1.142857,3.428571 +L 1.142857,3.428571,0.380952,3.428571 +L 0.380952,3.428571,0,3.809524 +L 0,3.809524,0,4.571429 +L 0,4.571429,0.380952,4.952381 +L 0.380952,4.952381,1.142857,4.952381 +L 1.142857,4.952381,2.666667,4.571429 +L 2.666667,4.571429,3.809524,4.571429 +L 3.809524,4.571429,4.571429,4.952381 +L 3.428571,1.52381,3.047619,1.142857 +L 3.047619,1.142857,3.047619,0.380952 +L 3.047619,0.380952,3.428571,0 +L 3.428571,0,4.190476,0 +L 4.190476,0,4.571429,0.380952 +L 4.571429,0.380952,4.571429,1.142857 +L 4.571429,1.142857,4.190476,1.52381 +L 4.190476,1.52381,3.428571,1.52381 + +[&] 35 +L 4.952381,3.047619,4.571429,3.047619 +L 4.571429,3.047619,4.571429,2.666667 +L 4.571429,2.666667,4.952381,2.666667 +L 4.952381,2.666667,4.952381,3.047619 +L 4.952381,3.047619,4.571429,3.428571 +L 4.571429,3.428571,4.190476,3.428571 +L 4.190476,3.428571,3.809524,3.047619 +L 3.809524,3.047619,3.428571,1.52381 +L 3.428571,1.52381,3.047619,0.761905 +L 3.047619,0.761905,2.666667,0.380952 +L 2.666667,0.380952,1.904762,0 +L 1.904762,0,1.142857,0 +L 1.142857,0,0.380952,0.380952 +L 0.380952,0.380952,0,0.761905 +L 0,0.761905,0,1.52381 +L 0,1.52381,0.380952,1.904762 +L 0.380952,1.904762,1.142857,2.285714 +L 1.142857,2.285714,2.285714,3.047619 +L 2.285714,3.047619,2.666667,3.809524 +L 2.666667,3.809524,2.666667,4.571429 +L 2.666667,4.571429,2.285714,4.952381 +L 2.285714,4.952381,1.52381,4.952381 +L 1.52381,4.952381,1.142857,4.571429 +L 1.142857,4.571429,1.142857,3.809524 +L 1.142857,3.809524,1.52381,2.666667 +L 1.52381,2.666667,3.428571,0.380952 +L 3.428571,0.380952,4.190476,0 +L 4.190476,0,4.571429,0 +L 4.571429,0,4.952381,0.380952 +L 1.142857,0,0.380952,0.761905 +L 0.380952,0.761905,0.380952,1.52381 +L 0.380952,1.52381,1.142857,2.285714 +L 1.142857,3.809524,1.52381,3.047619 +L 1.52381,3.047619,3.809524,0.380952 +L 3.809524,0.380952,4.190476,0 + +['] 6 +L 0.761905,4.571429,0.380952,4.190476 +L 0.380952,4.190476,0,4.571429 +L 0,4.571429,0.380952,4.952381 +L 0.380952,4.952381,0.761905,4.571429 +L 0.761905,4.571429,0.761905,3.809524 +L 0.761905,3.809524,0,3.047619 + +[(] 12 +L 1.904762,6.095238,1.142857,5.333333 +L 1.142857,5.333333,0.380952,4.190476 +L 0.380952,4.190476,0,3.047619 +L 0,3.047619,0,1.52381 +L 0,1.52381,0.380952,0.380952 +L 0.380952,0.380952,1.142857,-0.761905 +L 1.142857,-0.761905,1.904762,-1.52381 +L 1.142857,5.333333,0.761905,4.571429 +L 0.761905,4.571429,0.380952,3.047619 +L 0.380952,3.047619,0.380952,1.52381 +L 0.380952,1.52381,0.761905,0 +L 0.761905,0,1.142857,-0.761905 + +[)] 12 +L 0,6.095238,0.761905,5.333333 +L 0.761905,5.333333,1.52381,4.190476 +L 1.52381,4.190476,1.904762,3.047619 +L 1.904762,3.047619,1.904762,1.52381 +L 1.904762,1.52381,1.52381,0.380952 +L 1.52381,0.380952,0.761905,-0.761905 +L 0.761905,-0.761905,0,-1.52381 +L 0.761905,5.333333,1.142857,4.571429 +L 1.142857,4.571429,1.52381,3.047619 +L 1.52381,3.047619,1.52381,1.52381 +L 1.52381,1.52381,1.142857,0 +L 1.142857,0,0.761905,-0.761905 + +[*] 3 +L 1.142857,5.333333,1.142857,3.047619 +L 0,4.952381,2.285714,3.428571 +L 2.285714,4.952381,0,3.428571 + +[+] 2 +L 2.285714,4.571429,2.285714,0 +L 0,2.285714,4.571429,2.285714 + +[,] 6 +L 0.761905,0.380952,0.380952,0 +L 0.380952,0,0,0.380952 +L 0,0.380952,0.380952,0.761905 +L 0.380952,0.761905,0.761905,0.380952 +L 0.761905,0.380952,0.761905,-0.380952 +L 0.761905,-0.380952,0,-1.142857 + +[-] 1 +L 0,2.285714,4.571429,2.285714 + +[.] 4 +L 0.380952,0.761905,0,0.380952 +L 0,0.380952,0.380952,0 +L 0.380952,0,0.761905,0.380952 +L 0.761905,0.380952,0.380952,0.761905 + +[/] 1 +L 2.666667,6.095238,0,-1.52381 + +[0] 22 +L 1.142857,4.952381,0.380952,4.571429 +L 0.380952,4.571429,0,3.428571 +L 0,3.428571,0,1.52381 +L 0,1.52381,0.380952,0.380952 +L 0.380952,0.380952,1.142857,0 +L 1.142857,0,2.285714,0 +L 2.285714,0,3.047619,0.380952 +L 3.047619,0.380952,3.428571,1.52381 +L 3.428571,1.52381,3.428571,3.428571 +L 3.428571,3.428571,3.047619,4.571429 +L 3.047619,4.571429,2.285714,4.952381 +L 2.285714,4.952381,1.142857,4.952381 +L 1.142857,4.952381,0.761905,4.571429 +L 0.761905,4.571429,0.380952,3.428571 +L 0.380952,3.428571,0.380952,1.52381 +L 0.380952,1.52381,0.761905,0.380952 +L 0.761905,0.380952,1.142857,0 +L 2.285714,0,2.666667,0.380952 +L 2.666667,0.380952,3.047619,1.52381 +L 3.047619,1.52381,3.047619,3.428571 +L 3.047619,3.428571,2.666667,4.571429 +L 2.666667,4.571429,2.285714,4.952381 + +[1] 4 +L 0.380952,3.809524,1.52381,4.952381 +L 1.52381,4.952381,1.52381,0 +L 1.142857,4.571429,1.142857,0 +L 0,0,2.666667,0 + +[2] 27 +L 0.380952,4.190476,0.380952,3.809524 +L 0.380952,3.809524,0,3.809524 +L 0,3.809524,0,4.190476 +L 0,4.190476,0.380952,4.571429 +L 0.380952,4.571429,1.142857,4.952381 +L 1.142857,4.952381,2.285714,4.952381 +L 2.285714,4.952381,3.047619,4.571429 +L 3.047619,4.571429,3.428571,3.809524 +L 3.428571,3.809524,3.047619,3.047619 +L 3.047619,3.047619,2.285714,2.666667 +L 2.285714,2.666667,1.142857,2.285714 +L 1.142857,2.285714,0.380952,1.904762 +L 0.380952,1.904762,0,1.142857 +L 0,1.142857,0,0 +L 2.285714,4.952381,2.666667,4.571429 +L 2.666667,4.571429,3.047619,3.809524 +L 3.047619,3.809524,2.666667,3.047619 +L 2.666667,3.047619,2.285714,2.666667 +L 0,0.380952,0.380952,0.761905 +L 0.380952,0.761905,0.761905,0.761905 +L 0.761905,0.761905,1.904762,0.380952 +L 1.904762,0.380952,3.047619,0.380952 +L 3.047619,0.380952,3.428571,0.761905 +L 0.761905,0.761905,1.904762,0 +L 1.904762,0,3.047619,0 +L 3.047619,0,3.428571,0.761905 +L 3.428571,0.761905,3.428571,1.142857 + +[3] 31 +L 0.380952,4.190476,0.380952,3.809524 +L 0.380952,3.809524,0,3.809524 +L 0,3.809524,0,4.190476 +L 0,4.190476,0.380952,4.571429 +L 0.380952,4.571429,1.142857,4.952381 +L 1.142857,4.952381,2.285714,4.952381 +L 2.285714,4.952381,3.047619,4.571429 +L 3.047619,4.571429,3.428571,3.809524 +L 3.428571,3.809524,3.047619,3.047619 +L 3.047619,3.047619,2.285714,2.666667 +L 2.285714,4.952381,2.666667,4.571429 +L 2.666667,4.571429,3.047619,3.809524 +L 3.047619,3.809524,2.666667,3.047619 +L 2.666667,3.047619,2.285714,2.666667 +L 1.52381,2.666667,2.285714,2.666667 +L 2.285714,2.666667,3.047619,2.285714 +L 3.047619,2.285714,3.428571,1.52381 +L 3.428571,1.52381,3.428571,1.142857 +L 3.428571,1.142857,3.047619,0.380952 +L 3.047619,0.380952,2.285714,0 +L 2.285714,0,1.142857,0 +L 1.142857,0,0.380952,0.380952 +L 0.380952,0.380952,0,0.761905 +L 0,0.761905,0,1.142857 +L 0,1.142857,0.380952,1.142857 +L 0.380952,1.142857,0.380952,0.761905 +L 2.285714,2.666667,2.666667,2.285714 +L 2.666667,2.285714,3.047619,1.52381 +L 3.047619,1.52381,3.047619,1.142857 +L 3.047619,1.142857,2.666667,0.380952 +L 2.666667,0.380952,2.285714,0 + +[4] 5 +L 2.285714,4.190476,2.285714,0 +L 2.666667,4.952381,2.666667,0 +L 2.666667,4.952381,0,1.52381 +L 0,1.52381,4.190476,1.52381 +L 1.52381,0,3.428571,0 + +[5] 23 +L 0.380952,4.952381,0,2.666667 +L 0.380952,4.952381,3.047619,4.952381 +L 0.380952,4.571429,1.904762,4.571429 +L 1.904762,4.571429,3.047619,4.952381 +L 0,2.666667,0.380952,3.047619 +L 0.380952,3.047619,1.142857,3.428571 +L 1.142857,3.428571,2.285714,3.428571 +L 2.285714,3.428571,3.047619,3.047619 +L 3.047619,3.047619,3.428571,2.285714 +L 3.428571,2.285714,3.428571,1.142857 +L 3.428571,1.142857,3.047619,0.380952 +L 3.047619,0.380952,2.285714,0 +L 2.285714,0,1.142857,0 +L 1.142857,0,0.380952,0.380952 +L 0.380952,0.380952,0,0.761905 +L 0,0.761905,0,1.142857 +L 0,1.142857,0.380952,1.142857 +L 0.380952,1.142857,0.380952,0.761905 +L 2.285714,3.428571,2.666667,3.047619 +L 2.666667,3.047619,3.047619,2.285714 +L 3.047619,2.285714,3.047619,1.142857 +L 3.047619,1.142857,2.666667,0.380952 +L 2.666667,0.380952,2.285714,0 + +[6] 30 +L 3.047619,4.190476,3.047619,3.809524 +L 3.047619,3.809524,3.428571,3.809524 +L 3.428571,3.809524,3.428571,4.190476 +L 3.428571,4.190476,3.047619,4.571429 +L 3.047619,4.571429,2.285714,4.952381 +L 2.285714,4.952381,1.52381,4.952381 +L 1.52381,4.952381,0.761905,4.571429 +L 0.761905,4.571429,0.380952,4.190476 +L 0.380952,4.190476,0,3.047619 +L 0,3.047619,0,1.142857 +L 0,1.142857,0.380952,0.380952 +L 0.380952,0.380952,1.142857,0 +L 1.142857,0,2.285714,0 +L 2.285714,0,3.047619,0.380952 +L 3.047619,0.380952,3.428571,1.142857 +L 3.428571,1.142857,3.428571,1.904762 +L 3.428571,1.904762,3.047619,2.666667 +L 3.047619,2.666667,2.285714,3.047619 +L 2.285714,3.047619,1.142857,3.047619 +L 1.142857,3.047619,0,2.285714 +L 1.52381,4.952381,0.761905,4.190476 +L 0.761905,4.190476,0.380952,3.047619 +L 0.380952,3.047619,0.380952,1.142857 +L 0.380952,1.142857,0.761905,0.380952 +L 0.761905,0.380952,1.142857,0 +L 2.285714,0,2.666667,0.380952 +L 2.666667,0.380952,3.047619,1.142857 +L 3.047619,1.142857,3.047619,1.904762 +L 3.047619,1.904762,2.666667,2.666667 +L 2.666667,2.666667,2.285714,3.047619 + +[7] 12 +L 0,4.952381,0,3.428571 +L 3.047619,4.190476,1.52381,1.52381 +L 1.52381,1.52381,0.761905,0 +L 3.428571,4.952381,2.285714,2.666667 +L 2.285714,2.666667,1.142857,0 +L 0,4.190476,0.761905,4.952381 +L 0.761905,4.952381,1.52381,4.952381 +L 1.52381,4.952381,2.666667,4.190476 +L 0,4.190476,0.761905,4.571429 +L 0.761905,4.571429,1.52381,4.571429 +L 1.52381,4.571429,2.666667,4.190476 +L 2.666667,4.190476,3.047619,4.190476 + +[8] 39 +L 1.142857,4.952381,0.380952,4.571429 +L 0.380952,4.571429,0,3.809524 +L 0,3.809524,0.380952,3.047619 +L 0.380952,3.047619,1.142857,2.666667 +L 1.142857,2.666667,2.285714,2.666667 +L 2.285714,2.666667,3.047619,3.047619 +L 3.047619,3.047619,3.428571,3.809524 +L 3.428571,3.809524,3.047619,4.571429 +L 3.047619,4.571429,2.285714,4.952381 +L 2.285714,4.952381,1.142857,4.952381 +L 1.142857,4.952381,0.761905,4.571429 +L 0.761905,4.571429,0.380952,3.809524 +L 0.380952,3.809524,0.761905,3.047619 +L 0.761905,3.047619,1.142857,2.666667 +L 2.285714,2.666667,2.666667,3.047619 +L 2.666667,3.047619,3.047619,3.809524 +L 3.047619,3.809524,2.666667,4.571429 +L 2.666667,4.571429,2.285714,4.952381 +L 1.142857,2.666667,0.380952,2.285714 +L 0.380952,2.285714,0,1.52381 +L 0,1.52381,0,1.142857 +L 0,1.142857,0.380952,0.380952 +L 0.380952,0.380952,1.142857,0 +L 1.142857,0,2.285714,0 +L 2.285714,0,3.047619,0.380952 +L 3.047619,0.380952,3.428571,1.142857 +L 3.428571,1.142857,3.428571,1.52381 +L 3.428571,1.52381,3.047619,2.285714 +L 3.047619,2.285714,2.285714,2.666667 +L 1.142857,2.666667,0.761905,2.285714 +L 0.761905,2.285714,0.380952,1.52381 +L 0.380952,1.52381,0.380952,1.142857 +L 0.380952,1.142857,0.761905,0.380952 +L 0.761905,0.380952,1.142857,0 +L 2.285714,0,2.666667,0.380952 +L 2.666667,0.380952,3.047619,1.142857 +L 3.047619,1.142857,3.047619,1.52381 +L 3.047619,1.52381,2.666667,2.285714 +L 2.666667,2.285714,2.285714,2.666667 + +[9] 30 +L 0.380952,0.761905,0.380952,1.142857 +L 0.380952,1.142857,0,1.142857 +L 0,1.142857,0,0.761905 +L 0,0.761905,0.380952,0.380952 +L 0.380952,0.380952,1.142857,0 +L 1.142857,0,1.904762,0 +L 1.904762,0,2.666667,0.380952 +L 2.666667,0.380952,3.047619,0.761905 +L 3.047619,0.761905,3.428571,1.904762 +L 3.428571,1.904762,3.428571,3.809524 +L 3.428571,3.809524,3.047619,4.571429 +L 3.047619,4.571429,2.285714,4.952381 +L 2.285714,4.952381,1.142857,4.952381 +L 1.142857,4.952381,0.380952,4.571429 +L 0.380952,4.571429,0,3.809524 +L 0,3.809524,0,3.047619 +L 0,3.047619,0.380952,2.285714 +L 0.380952,2.285714,1.142857,1.904762 +L 1.142857,1.904762,2.285714,1.904762 +L 2.285714,1.904762,3.428571,2.666667 +L 1.904762,0,2.666667,0.761905 +L 2.666667,0.761905,3.047619,1.904762 +L 3.047619,1.904762,3.047619,3.809524 +L 3.047619,3.809524,2.666667,4.571429 +L 2.666667,4.571429,2.285714,4.952381 +L 1.142857,4.952381,0.761905,4.571429 +L 0.761905,4.571429,0.380952,3.809524 +L 0.380952,3.809524,0.380952,3.047619 +L 0.380952,3.047619,0.761905,2.285714 +L 0.761905,2.285714,1.142857,1.904762 + +[:] 8 +L 0.380952,3.428571,0,3.047619 +L 0,3.047619,0.380952,2.666667 +L 0.380952,2.666667,0.761905,3.047619 +L 0.761905,3.047619,0.380952,3.428571 +L 0.380952,0.761905,0,0.380952 +L 0,0.380952,0.380952,0 +L 0.380952,0,0.761905,0.380952 +L 0.761905,0.380952,0.380952,0.761905 + +[;] 10 +L 0.380952,3.428571,0,3.047619 +L 0,3.047619,0.380952,2.666667 +L 0.380952,2.666667,0.761905,3.047619 +L 0.761905,3.047619,0.380952,3.428571 +L 0.761905,0.380952,0.380952,0 +L 0.380952,0,0,0.380952 +L 0,0.380952,0.380952,0.761905 +L 0.380952,0.761905,0.761905,0.380952 +L 0.761905,0.380952,0.761905,-0.380952 +L 0.761905,-0.380952,0,-1.142857 + +[<] 2 +L 3.809524,4.571429,0,2.285714 +L 0,2.285714,3.809524,0 + +[=] 2 +L 0,3.047619,4.571429,3.047619 +L 0,1.52381,4.571429,1.52381 + +[>] 2 +L 0,4.571429,3.809524,2.285714 +L 3.809524,2.285714,0,0 + +[?] 23 +L 0,3.809524,0.380952,3.809524 +L 0.380952,3.809524,0.380952,3.428571 +L 0.380952,3.428571,0,3.428571 +L 0,3.428571,0,3.809524 +L 0,3.809524,0.380952,4.571429 +L 0.380952,4.571429,1.142857,4.952381 +L 1.142857,4.952381,2.285714,4.952381 +L 2.285714,4.952381,3.047619,4.571429 +L 3.047619,4.571429,3.428571,3.809524 +L 3.428571,3.809524,3.428571,3.428571 +L 3.428571,3.428571,3.047619,2.666667 +L 3.047619,2.666667,1.904762,2.285714 +L 1.904762,2.285714,1.52381,1.904762 +L 1.52381,1.904762,1.52381,1.52381 +L 1.52381,1.52381,1.904762,1.52381 +L 2.285714,4.952381,3.047619,4.190476 +L 3.047619,4.190476,3.047619,3.047619 +L 3.047619,3.047619,2.666667,2.666667 +L 2.666667,2.666667,1.904762,2.285714 +L 1.52381,0.380952,1.52381,0 +L 1.52381,0,1.904762,0 +L 1.904762,0,1.904762,0.380952 +L 1.904762,0.380952,1.52381,0.380952 + +[@] 25 +L 3.428571,3.047619,2.666667,3.428571 +L 2.666667,3.428571,1.904762,3.428571 +L 1.904762,3.428571,1.52381,2.666667 +L 1.52381,2.666667,1.52381,2.285714 +L 1.52381,2.285714,1.904762,1.52381 +L 1.904762,1.52381,2.666667,1.52381 +L 2.666667,1.52381,3.428571,1.904762 +L 3.428571,3.428571,3.428571,1.904762 +L 3.428571,1.904762,3.809524,1.52381 +L 3.809524,1.52381,4.571429,1.52381 +L 4.571429,1.52381,4.952381,2.285714 +L 4.952381,2.285714,4.952381,2.666667 +L 4.952381,2.666667,4.571429,3.809524 +L 4.571429,3.809524,3.809524,4.571429 +L 3.809524,4.571429,2.666667,4.952381 +L 2.666667,4.952381,2.285714,4.952381 +L 2.285714,4.952381,1.142857,4.571429 +L 1.142857,4.571429,0.380952,3.809524 +L 0.380952,3.809524,0,2.666667 +L 0,2.666667,0,2.285714 +L 0,2.285714,0.380952,1.142857 +L 0.380952,1.142857,1.142857,0.380952 +L 1.142857,0.380952,2.285714,0 +L 2.285714,0,2.666667,0 +L 2.666667,0,3.809524,0.380952 + +[A] 6 +L 2.666667,4.952381,0.761905,0 +L 2.666667,3.809524,4.190476,0 +L 2.666667,4.952381,4.571429,0 +L 1.52381,1.52381,3.428571,1.52381 +L 0,0,1.904762,0 +L 3.428571,0,5.333333,0 + +[B] 23 +L 0.761905,4.952381,0.761905,0 +L 1.142857,4.952381,1.142857,0 +L 0,4.952381,2.666667,4.952381 +L 2.666667,4.952381,3.809524,4.571429 +L 3.809524,4.571429,4.190476,3.809524 +L 4.190476,3.809524,3.809524,3.047619 +L 3.809524,3.047619,2.666667,2.666667 +L 2.666667,4.952381,3.428571,4.571429 +L 3.428571,4.571429,3.809524,3.809524 +L 3.809524,3.809524,3.428571,3.047619 +L 3.428571,3.047619,2.666667,2.666667 +L 1.142857,2.666667,2.666667,2.666667 +L 2.666667,2.666667,3.809524,2.285714 +L 3.809524,2.285714,4.190476,1.52381 +L 4.190476,1.52381,4.190476,1.142857 +L 4.190476,1.142857,3.809524,0.380952 +L 3.809524,0.380952,2.666667,0 +L 2.666667,0,0,0 +L 2.666667,2.666667,3.428571,2.285714 +L 3.428571,2.285714,3.809524,1.52381 +L 3.809524,1.52381,3.809524,1.142857 +L 3.809524,1.142857,3.428571,0.380952 +L 3.428571,0.380952,2.666667,0 + +[C] 20 +L 3.428571,4.571429,3.809524,4.952381 +L 3.809524,4.952381,3.809524,3.428571 +L 3.809524,3.428571,3.428571,4.571429 +L 3.428571,4.571429,2.666667,4.952381 +L 2.666667,4.952381,1.52381,4.952381 +L 1.52381,4.952381,0.761905,4.571429 +L 0.761905,4.571429,0.380952,4.190476 +L 0.380952,4.190476,0,3.047619 +L 0,3.047619,0,1.904762 +L 0,1.904762,0.380952,0.761905 +L 0.380952,0.761905,0.761905,0.380952 +L 0.761905,0.380952,1.52381,0 +L 1.52381,0,2.666667,0 +L 2.666667,0,3.428571,0.380952 +L 3.428571,0.380952,3.809524,1.142857 +L 1.52381,4.952381,0.761905,4.190476 +L 0.761905,4.190476,0.380952,3.047619 +L 0.380952,3.047619,0.380952,1.904762 +L 0.380952,1.904762,0.761905,0.761905 +L 0.761905,0.761905,1.52381,0 + +[D] 18 +L 0.761905,4.952381,0.761905,0 +L 1.142857,4.952381,1.142857,0 +L 0,4.952381,2.666667,4.952381 +L 2.666667,4.952381,3.809524,4.571429 +L 3.809524,4.571429,4.190476,4.190476 +L 4.190476,4.190476,4.571429,3.047619 +L 4.571429,3.047619,4.571429,1.904762 +L 4.571429,1.904762,4.190476,0.761905 +L 4.190476,0.761905,3.809524,0.380952 +L 3.809524,0.380952,2.666667,0 +L 2.666667,0,0,0 +L 2.666667,4.952381,3.428571,4.571429 +L 3.428571,4.571429,3.809524,4.190476 +L 3.809524,4.190476,4.190476,3.047619 +L 4.190476,3.047619,4.190476,1.904762 +L 4.190476,1.904762,3.809524,0.761905 +L 3.809524,0.761905,3.428571,0.380952 +L 3.428571,0.380952,2.666667,0 + +[E] 10 +L 0.761905,4.952381,0.761905,0 +L 1.142857,4.952381,1.142857,0 +L 2.666667,3.428571,2.666667,1.904762 +L 0,4.952381,3.809524,4.952381 +L 3.809524,4.952381,3.809524,3.428571 +L 3.809524,3.428571,3.428571,4.952381 +L 1.142857,2.666667,2.666667,2.666667 +L 0,0,3.809524,0 +L 3.809524,0,3.809524,1.52381 +L 3.809524,1.52381,3.428571,0 + +[F] 8 +L 0.761905,4.952381,0.761905,0 +L 1.142857,4.952381,1.142857,0 +L 2.666667,3.428571,2.666667,1.904762 +L 0,4.952381,3.809524,4.952381 +L 3.809524,4.952381,3.809524,3.428571 +L 3.809524,3.428571,3.428571,4.952381 +L 1.142857,2.666667,2.666667,2.666667 +L 0,0,1.904762,0 + +[G] 24 +L 3.428571,4.571429,3.809524,4.952381 +L 3.809524,4.952381,3.809524,3.428571 +L 3.809524,3.428571,3.428571,4.571429 +L 3.428571,4.571429,2.666667,4.952381 +L 2.666667,4.952381,1.52381,4.952381 +L 1.52381,4.952381,0.761905,4.571429 +L 0.761905,4.571429,0.380952,4.190476 +L 0.380952,4.190476,0,3.047619 +L 0,3.047619,0,1.904762 +L 0,1.904762,0.380952,0.761905 +L 0.380952,0.761905,0.761905,0.380952 +L 0.761905,0.380952,1.52381,0 +L 1.52381,0,2.666667,0 +L 2.666667,0,3.428571,0.380952 +L 1.52381,4.952381,0.761905,4.190476 +L 0.761905,4.190476,0.380952,3.047619 +L 0.380952,3.047619,0.380952,1.904762 +L 0.380952,1.904762,0.761905,0.761905 +L 0.761905,0.761905,1.52381,0 +L 2.666667,0,3.047619,0.380952 +L 3.047619,0.380952,3.428571,1.142857 +L 3.428571,1.904762,3.428571,0 +L 3.809524,1.904762,3.809524,0 +L 2.666667,1.904762,4.571429,1.904762 + +[H] 9 +L 0.761905,4.952381,0.761905,0 +L 1.142857,4.952381,1.142857,0 +L 3.809524,4.952381,3.809524,0 +L 4.190476,4.952381,4.190476,0 +L 0,4.952381,1.904762,4.952381 +L 3.047619,4.952381,4.952381,4.952381 +L 1.142857,2.666667,3.809524,2.666667 +L 0,0,1.904762,0 +L 3.047619,0,4.952381,0 + +[I] 4 +L 0.761905,4.952381,0.761905,0 +L 1.142857,4.952381,1.142857,0 +L 0,4.952381,1.904762,4.952381 +L 0,0,1.904762,0 + +[J] 13 +L 2.285714,4.952381,2.285714,1.142857 +L 2.285714,1.142857,1.904762,0.380952 +L 1.904762,0.380952,1.52381,0 +L 2.666667,4.952381,2.666667,1.142857 +L 2.666667,1.142857,2.285714,0.380952 +L 2.285714,0.380952,1.52381,0 +L 1.52381,0,1.142857,0 +L 1.142857,0,0.380952,0.380952 +L 0.380952,0.380952,0,1.142857 +L 0,1.142857,0.380952,1.52381 +L 0.380952,1.52381,0.761905,1.142857 +L 0.761905,1.142857,0.380952,0.761905 +L 1.52381,4.952381,3.428571,4.952381 + +[K] 9 +L 0.761905,4.952381,0.761905,0 +L 1.142857,4.952381,1.142857,0 +L 4.190476,4.952381,1.142857,1.904762 +L 1.904762,2.666667,3.809524,0 +L 2.285714,2.666667,4.190476,0 +L 0,4.952381,1.904762,4.952381 +L 3.047619,4.952381,4.952381,4.952381 +L 0,0,1.904762,0 +L 3.047619,0,4.952381,0 + +[L] 6 +L 0.761905,4.952381,0.761905,0 +L 1.142857,4.952381,1.142857,0 +L 0,4.952381,1.904762,4.952381 +L 0,0,3.809524,0 +L 3.809524,0,3.809524,1.52381 +L 3.809524,1.52381,3.428571,0 + +[M] 10 +L 0.761905,4.952381,0.761905,0 +L 1.142857,3.809524,2.666667,0 +L 1.142857,4.952381,2.666667,1.142857 +L 4.571429,4.952381,2.666667,0 +L 4.571429,4.952381,4.571429,0 +L 4.952381,4.952381,4.952381,0 +L 0,4.952381,1.142857,4.952381 +L 4.571429,4.952381,5.714286,4.952381 +L 0,0,1.52381,0 +L 3.809524,0,5.714286,0 + +[N] 7 +L 0.761905,4.952381,0.761905,0 +L 1.142857,4.190476,3.809524,0 +L 1.142857,4.952381,3.809524,0.761905 +L 3.809524,4.952381,3.809524,0 +L 0,4.952381,1.142857,4.952381 +L 3.047619,4.952381,4.571429,4.952381 +L 0,0,1.52381,0 + +[O] 26 +L 1.52381,4.952381,0.761905,4.571429 +L 0.761905,4.571429,0.380952,4.190476 +L 0.380952,4.190476,0,3.047619 +L 0,3.047619,0,1.904762 +L 0,1.904762,0.380952,0.761905 +L 0.380952,0.761905,0.761905,0.380952 +L 0.761905,0.380952,1.52381,0 +L 1.52381,0,2.666667,0 +L 2.666667,0,3.428571,0.380952 +L 3.428571,0.380952,3.809524,0.761905 +L 3.809524,0.761905,4.190476,1.904762 +L 4.190476,1.904762,4.190476,3.047619 +L 4.190476,3.047619,3.809524,4.190476 +L 3.809524,4.190476,3.428571,4.571429 +L 3.428571,4.571429,2.666667,4.952381 +L 2.666667,4.952381,1.52381,4.952381 +L 1.52381,4.952381,0.761905,4.190476 +L 0.761905,4.190476,0.380952,3.047619 +L 0.380952,3.047619,0.380952,1.904762 +L 0.380952,1.904762,0.761905,0.761905 +L 0.761905,0.761905,1.52381,0 +L 2.666667,0,3.428571,0.761905 +L 3.428571,0.761905,3.809524,1.904762 +L 3.809524,1.904762,3.809524,3.047619 +L 3.809524,3.047619,3.428571,4.190476 +L 3.428571,4.190476,2.666667,4.952381 + +[P] 15 +L 0.761905,4.952381,0.761905,0 +L 1.142857,4.952381,1.142857,0 +L 0,4.952381,2.666667,4.952381 +L 2.666667,4.952381,3.809524,4.571429 +L 3.809524,4.571429,4.190476,3.809524 +L 4.190476,3.809524,4.190476,3.428571 +L 4.190476,3.428571,3.809524,2.666667 +L 3.809524,2.666667,2.666667,2.285714 +L 2.666667,2.285714,1.142857,2.285714 +L 2.666667,4.952381,3.428571,4.571429 +L 3.428571,4.571429,3.809524,3.809524 +L 3.809524,3.809524,3.809524,3.428571 +L 3.809524,3.428571,3.428571,2.666667 +L 3.428571,2.666667,2.666667,2.285714 +L 0,0,1.904762,0 + +[Q] 37 +L 1.52381,4.952381,0.761905,4.571429 +L 0.761905,4.571429,0.380952,4.190476 +L 0.380952,4.190476,0,3.047619 +L 0,3.047619,0,1.904762 +L 0,1.904762,0.380952,0.761905 +L 0.380952,0.761905,0.761905,0.380952 +L 0.761905,0.380952,1.52381,0 +L 1.52381,0,2.666667,0 +L 2.666667,0,3.428571,0.380952 +L 3.428571,0.380952,3.809524,0.761905 +L 3.809524,0.761905,4.190476,1.904762 +L 4.190476,1.904762,4.190476,3.047619 +L 4.190476,3.047619,3.809524,4.190476 +L 3.809524,4.190476,3.428571,4.571429 +L 3.428571,4.571429,2.666667,4.952381 +L 2.666667,4.952381,1.52381,4.952381 +L 1.52381,4.952381,0.761905,4.190476 +L 0.761905,4.190476,0.380952,3.047619 +L 0.380952,3.047619,0.380952,1.904762 +L 0.380952,1.904762,0.761905,0.761905 +L 0.761905,0.761905,1.52381,0 +L 2.666667,0,3.428571,0.761905 +L 3.428571,0.761905,3.809524,1.904762 +L 3.809524,1.904762,3.809524,3.047619 +L 3.809524,3.047619,3.428571,4.190476 +L 3.428571,4.190476,2.666667,4.952381 +L 1.142857,0.380952,1.142857,1.142857 +L 1.142857,1.142857,1.52381,1.52381 +L 1.52381,1.52381,2.285714,1.52381 +L 2.285714,1.52381,2.666667,1.142857 +L 2.666667,1.142857,3.047619,-0.761905 +L 3.047619,-0.761905,3.428571,-1.142857 +L 3.428571,-1.142857,3.809524,-1.142857 +L 3.809524,-1.142857,4.190476,-0.761905 +L 2.666667,1.142857,3.047619,0 +L 3.047619,0,3.428571,-0.761905 +L 3.428571,-0.761905,3.809524,-1.142857 + +[R] 23 +L 0.761905,4.952381,0.761905,0 +L 1.142857,4.952381,1.142857,0 +L 0,4.952381,2.666667,4.952381 +L 2.666667,4.952381,3.809524,4.571429 +L 3.809524,4.571429,4.190476,3.809524 +L 4.190476,3.809524,4.190476,3.428571 +L 4.190476,3.428571,3.809524,2.666667 +L 3.809524,2.666667,2.666667,2.285714 +L 2.666667,2.285714,1.142857,2.285714 +L 2.666667,4.952381,3.428571,4.571429 +L 3.428571,4.571429,3.809524,3.809524 +L 3.809524,3.809524,3.809524,3.428571 +L 3.809524,3.428571,3.428571,2.666667 +L 3.428571,2.666667,2.666667,2.285714 +L 0,0,1.904762,0 +L 2.666667,2.285714,3.047619,1.904762 +L 3.047619,1.904762,3.428571,0.380952 +L 3.428571,0.380952,3.809524,0 +L 3.809524,0,4.190476,0 +L 4.190476,0,4.571429,0.380952 +L 2.666667,2.285714,3.428571,1.904762 +L 3.428571,1.904762,3.809524,0.380952 +L 3.809524,0.380952,4.190476,0 + +[S] 28 +L 3.047619,4.190476,3.428571,4.952381 +L 3.428571,4.952381,3.428571,3.428571 +L 3.428571,3.428571,3.047619,4.190476 +L 3.047619,4.190476,2.666667,4.571429 +L 2.666667,4.571429,1.904762,4.952381 +L 1.904762,4.952381,1.142857,4.952381 +L 1.142857,4.952381,0.380952,4.571429 +L 0.380952,4.571429,0,4.190476 +L 0,4.190476,0,3.428571 +L 0,3.428571,0.380952,3.047619 +L 0.380952,3.047619,1.142857,2.666667 +L 1.142857,2.666667,2.285714,2.285714 +L 2.285714,2.285714,3.047619,1.904762 +L 3.047619,1.904762,3.428571,1.52381 +L 0,3.809524,0.380952,3.428571 +L 0.380952,3.428571,1.142857,3.047619 +L 1.142857,3.047619,2.285714,2.666667 +L 2.285714,2.666667,3.047619,2.285714 +L 3.047619,2.285714,3.428571,1.904762 +L 3.428571,1.904762,3.428571,0.761905 +L 3.428571,0.761905,3.047619,0.380952 +L 3.047619,0.380952,2.285714,0 +L 2.285714,0,1.52381,0 +L 1.52381,0,0.761905,0.380952 +L 0.761905,0.380952,0.380952,0.761905 +L 0.380952,0.761905,0,1.52381 +L 0,1.52381,0,0 +L 0,0,0.380952,0.761905 + +[T] 8 +L 1.904762,4.952381,1.904762,0 +L 2.285714,4.952381,2.285714,0 +L 0.380952,4.952381,0,3.428571 +L 0,3.428571,0,4.952381 +L 0,4.952381,4.190476,4.952381 +L 4.190476,4.952381,4.190476,3.428571 +L 4.190476,3.428571,3.809524,4.952381 +L 1.142857,0,3.047619,0 + +[U] 12 +L 0.761905,4.952381,0.761905,1.142857 +L 0.761905,1.142857,1.142857,0.380952 +L 1.142857,0.380952,1.904762,0 +L 1.904762,0,3.047619,0 +L 3.047619,0,3.809524,0.380952 +L 3.809524,0.380952,4.190476,1.142857 +L 4.190476,1.142857,4.190476,4.952381 +L 1.142857,4.952381,1.142857,1.142857 +L 1.142857,1.142857,1.52381,0.380952 +L 1.52381,0.380952,1.904762,0 +L 0,4.952381,1.904762,4.952381 +L 3.428571,4.952381,4.952381,4.952381 + +[V] 5 +L 0.761905,4.952381,2.666667,0 +L 1.142857,4.952381,2.666667,1.142857 +L 4.571429,4.952381,2.666667,0 +L 0,4.952381,1.904762,4.952381 +L 3.428571,4.952381,5.333333,4.952381 + +[W] 8 +L 0.761905,4.952381,1.904762,0 +L 1.142857,4.952381,1.904762,1.52381 +L 3.047619,4.952381,1.904762,0 +L 3.047619,4.952381,4.190476,0 +L 3.428571,4.952381,4.190476,1.52381 +L 5.333333,4.952381,4.190476,0 +L 0,4.952381,1.904762,4.952381 +L 4.571429,4.952381,6.095238,4.952381 + +[X] 7 +L 0.761905,4.952381,3.809524,0 +L 1.142857,4.952381,4.190476,0 +L 4.190476,4.952381,0.761905,0 +L 0,4.952381,1.904762,4.952381 +L 3.047619,4.952381,4.952381,4.952381 +L 0,0,1.904762,0 +L 3.047619,0,4.952381,0 + +[Y] 8 +L 0.761905,4.952381,2.285714,2.285714 +L 2.285714,2.285714,2.285714,0 +L 1.142857,4.952381,2.666667,2.285714 +L 4.190476,4.952381,2.666667,2.285714 +L 2.666667,2.285714,2.666667,0 +L 0,4.952381,1.904762,4.952381 +L 3.047619,4.952381,4.952381,4.952381 +L 1.52381,0,3.428571,0 + +[Z] 8 +L 3.047619,4.952381,0,0 +L 3.428571,4.952381,0.380952,0 +L 0.380952,4.952381,0,3.428571 +L 0,3.428571,0,4.952381 +L 0,4.952381,3.428571,4.952381 +L 0,0,3.428571,0 +L 3.428571,0,3.428571,1.52381 +L 3.428571,1.52381,3.047619,0 + +[[] 4 +L 0,6.095238,0,-1.52381 +L 0.380952,6.095238,0.380952,-1.52381 +L 0,6.095238,1.904762,6.095238 +L 0,-1.52381,1.904762,-1.52381 + +[\] 1 +L 0,6.857143,5.333333,-2.285714 + +[]] 4 +L 1.52381,6.095238,1.52381,-1.52381 +L 1.904762,6.095238,1.904762,-1.52381 +L 0,6.095238,1.904762,6.095238 +L 0,-1.52381,1.904762,-1.52381 + +[^] 7 +L 1.142857,4.190476,1.142857,0 +L 0,3.047619,0.380952,3.428571 +L 0.380952,3.428571,1.142857,4.571429 +L 1.142857,4.571429,1.904762,3.428571 +L 1.904762,3.428571,2.285714,3.047619 +L 0.380952,3.428571,1.142857,4.190476 +L 1.142857,4.190476,1.904762,3.428571 + +[_] 1 +L 0,-0.761905,6.095238,-0.761905 + +[`] 6 +L 0.761905,4.952381,0,4.190476 +L 0,4.190476,0,3.428571 +L 0,3.428571,0.380952,3.047619 +L 0.380952,3.047619,0.761905,3.428571 +L 0.761905,3.428571,0.380952,3.809524 +L 0.380952,3.809524,0,3.428571 + +[a] 24 +L 0.761905,3.428571,0.380952,3.047619 +L 0.380952,3.047619,0.380952,2.666667 +L 0.380952,2.666667,0,2.666667 +L 0,2.666667,0,3.047619 +L 0,3.047619,0.761905,3.428571 +L 0.761905,3.428571,1.904762,3.428571 +L 1.904762,3.428571,2.666667,2.666667 +L 2.666667,2.666667,2.666667,0.380952 +L 2.666667,0.380952,3.047619,0 +L 3.047619,0,3.428571,0 +L 1.904762,3.428571,2.285714,2.666667 +L 2.285714,2.666667,2.285714,0.380952 +L 2.285714,0.380952,3.047619,0 +L 2.285714,2.285714,1.142857,1.904762 +L 1.142857,1.904762,0.380952,1.52381 +L 0.380952,1.52381,0,1.142857 +L 0,1.142857,0,0.380952 +L 0,0.380952,0.380952,0 +L 0.380952,0,1.52381,0 +L 1.52381,0,1.904762,0.380952 +L 1.904762,0.380952,2.285714,1.142857 +L 1.142857,1.904762,0.380952,1.142857 +L 0.380952,1.142857,0.380952,0.380952 +L 0.380952,0.380952,0.761905,0 + +[b] 19 +L 0.761905,4.952381,0.761905,0 +L 1.142857,4.952381,1.142857,0 +L 1.142857,2.285714,1.52381,3.047619 +L 1.52381,3.047619,2.285714,3.428571 +L 2.285714,3.428571,3.047619,3.428571 +L 3.047619,3.428571,3.809524,3.047619 +L 3.809524,3.047619,4.190476,2.285714 +L 4.190476,2.285714,4.190476,1.142857 +L 4.190476,1.142857,3.809524,0.380952 +L 3.809524,0.380952,3.047619,0 +L 3.047619,0,2.285714,0 +L 2.285714,0,1.52381,0.380952 +L 1.52381,0.380952,1.142857,1.142857 +L 3.047619,3.428571,3.428571,3.047619 +L 3.428571,3.047619,3.809524,2.285714 +L 3.809524,2.285714,3.809524,1.142857 +L 3.809524,1.142857,3.428571,0.380952 +L 3.428571,0.380952,3.047619,0 +L 0,4.952381,1.142857,4.952381 + +[c] 20 +L 3.047619,2.666667,2.666667,2.666667 +L 2.666667,2.666667,2.666667,2.285714 +L 2.666667,2.285714,3.047619,2.285714 +L 3.047619,2.285714,3.047619,2.666667 +L 3.047619,2.666667,2.666667,3.047619 +L 2.666667,3.047619,1.904762,3.428571 +L 1.904762,3.428571,1.142857,3.428571 +L 1.142857,3.428571,0.380952,3.047619 +L 0.380952,3.047619,0,2.285714 +L 0,2.285714,0,1.142857 +L 0,1.142857,0.380952,0.380952 +L 0.380952,0.380952,1.142857,0 +L 1.142857,0,1.904762,0 +L 1.904762,0,2.666667,0.380952 +L 2.666667,0.380952,3.047619,0.761905 +L 1.142857,3.428571,0.761905,3.047619 +L 0.761905,3.047619,0.380952,2.285714 +L 0.380952,2.285714,0.380952,1.142857 +L 0.380952,1.142857,0.761905,0.380952 +L 0.761905,0.380952,1.142857,0 + +[d] 20 +L 3.047619,4.952381,3.047619,0 +L 3.428571,4.952381,3.428571,0 +L 3.047619,2.285714,2.666667,3.047619 +L 2.666667,3.047619,1.904762,3.428571 +L 1.904762,3.428571,1.142857,3.428571 +L 1.142857,3.428571,0.380952,3.047619 +L 0.380952,3.047619,0,2.285714 +L 0,2.285714,0,1.142857 +L 0,1.142857,0.380952,0.380952 +L 0.380952,0.380952,1.142857,0 +L 1.142857,0,1.904762,0 +L 1.904762,0,2.666667,0.380952 +L 2.666667,0.380952,3.047619,1.142857 +L 1.142857,3.428571,0.761905,3.047619 +L 0.761905,3.047619,0.380952,2.285714 +L 0.380952,2.285714,0.380952,1.142857 +L 0.380952,1.142857,0.761905,0.380952 +L 0.761905,0.380952,1.142857,0 +L 2.285714,4.952381,3.428571,4.952381 +L 3.047619,0,4.190476,0 + +[e] 20 +L 0.380952,1.904762,3.047619,1.904762 +L 3.047619,1.904762,3.047619,2.285714 +L 3.047619,2.285714,2.666667,3.047619 +L 2.666667,3.047619,1.904762,3.428571 +L 1.904762,3.428571,1.142857,3.428571 +L 1.142857,3.428571,0.380952,3.047619 +L 0.380952,3.047619,0,2.285714 +L 0,2.285714,0,1.142857 +L 0,1.142857,0.380952,0.380952 +L 0.380952,0.380952,1.142857,0 +L 1.142857,0,1.904762,0 +L 1.904762,0,2.666667,0.380952 +L 2.666667,0.380952,3.047619,0.761905 +L 2.666667,1.904762,2.666667,2.666667 +L 2.666667,2.666667,1.904762,3.428571 +L 1.142857,3.428571,0.761905,3.047619 +L 0.761905,3.047619,0.380952,2.285714 +L 0.380952,2.285714,0.380952,1.142857 +L 0.380952,1.142857,0.761905,0.380952 +L 0.761905,0.380952,1.142857,0 + +[f] 12 +L 2.285714,4.952381,2.666667,4.571429 +L 2.666667,4.571429,2.666667,4.190476 +L 2.666667,4.190476,3.047619,4.190476 +L 3.047619,4.190476,3.047619,4.571429 +L 3.047619,4.571429,2.285714,4.952381 +L 2.285714,4.952381,1.52381,4.952381 +L 1.52381,4.952381,0.761905,4.190476 +L 0.761905,4.190476,0.761905,0 +L 1.52381,4.952381,1.142857,4.190476 +L 1.142857,4.190476,1.142857,0 +L 0,3.428571,1.904762,3.428571 +L 0,0,1.904762,0 + +[g] 30 +L 1.142857,3.428571,0.380952,2.666667 +L 0.380952,2.666667,0.380952,1.904762 +L 0.380952,1.904762,1.142857,1.142857 +L 1.142857,1.142857,1.904762,1.142857 +L 1.904762,1.142857,2.666667,1.904762 +L 2.666667,1.904762,2.666667,2.666667 +L 2.666667,2.666667,1.904762,3.428571 +L 1.904762,3.428571,1.142857,3.428571 +L 1.142857,3.428571,0.761905,2.666667 +L 0.761905,2.666667,0.761905,1.904762 +L 0.761905,1.904762,1.142857,1.142857 +L 1.904762,1.142857,2.285714,1.904762 +L 2.285714,1.904762,2.285714,2.666667 +L 2.285714,2.666667,1.904762,3.428571 +L 2.285714,3.047619,2.666667,3.428571 +L 2.666667,3.428571,3.047619,3.428571 +L 0.761905,1.52381,0.380952,1.142857 +L 0.380952,1.142857,0.380952,0 +L 0.380952,0,0.761905,-0.380952 +L 0.761905,-0.380952,2.285714,-0.380952 +L 2.285714,-0.380952,3.047619,-0.761905 +L 0.380952,0.380952,0.761905,0 +L 0.761905,0,2.285714,0 +L 2.285714,0,3.047619,-0.380952 +L 3.047619,-0.380952,3.047619,-1.142857 +L 3.047619,-1.142857,2.285714,-1.52381 +L 2.285714,-1.52381,0.761905,-1.52381 +L 0.761905,-1.52381,0,-1.142857 +L 0,-1.142857,0,-0.380952 +L 0,-0.380952,0.761905,0 + +[h] 14 +L 0.761905,4.952381,0.761905,0 +L 1.142857,4.952381,1.142857,0 +L 1.142857,2.285714,1.52381,3.047619 +L 1.52381,3.047619,2.285714,3.428571 +L 2.285714,3.428571,3.047619,3.428571 +L 3.047619,3.428571,3.809524,3.047619 +L 3.809524,3.047619,4.190476,2.285714 +L 4.190476,2.285714,4.190476,0 +L 3.047619,3.428571,3.428571,3.047619 +L 3.428571,3.047619,3.809524,2.285714 +L 3.809524,2.285714,3.809524,0 +L 0,4.952381,1.142857,4.952381 +L 0,0,1.904762,0 +L 3.047619,0,4.952381,0 + +[i] 8 +L 0.761905,4.952381,0.761905,4.571429 +L 0.761905,4.571429,1.142857,4.571429 +L 1.142857,4.571429,1.142857,4.952381 +L 1.142857,4.952381,0.761905,4.952381 +L 0.761905,3.428571,0.761905,0 +L 1.142857,3.428571,1.142857,0 +L 0,3.428571,1.142857,3.428571 +L 0,0,1.904762,0 + +[j] 15 +L 1.52381,4.952381,1.52381,4.571429 +L 1.52381,4.571429,1.904762,4.571429 +L 1.904762,4.571429,1.904762,4.952381 +L 1.904762,4.952381,1.52381,4.952381 +L 1.52381,3.428571,1.52381,-0.761905 +L 1.52381,-0.761905,1.142857,-1.52381 +L 1.904762,3.428571,1.904762,-0.761905 +L 1.904762,-0.761905,1.142857,-1.52381 +L 1.142857,-1.52381,0.380952,-1.52381 +L 0.380952,-1.52381,0,-1.142857 +L 0,-1.142857,0,-0.761905 +L 0,-0.761905,0.380952,-0.761905 +L 0.380952,-0.761905,0.380952,-1.142857 +L 0.380952,-1.142857,0,-1.142857 +L 0.761905,3.428571,1.904762,3.428571 + +[k] 9 +L 0.761905,4.952381,0.761905,0 +L 1.142857,4.952381,1.142857,0 +L 4.190476,3.428571,1.142857,1.142857 +L 2.285714,1.904762,3.809524,0 +L 2.666667,1.904762,4.190476,0 +L 0,4.952381,1.142857,4.952381 +L 3.047619,3.428571,4.952381,3.428571 +L 0,0,1.904762,0 +L 3.047619,0,4.952381,0 + +[l] 4 +L 0.761905,4.952381,0.761905,0 +L 1.142857,4.952381,1.142857,0 +L 0,4.952381,1.142857,4.952381 +L 0,0,1.904762,0 + +[m] 24 +L 0.761905,3.428571,0.761905,0 +L 1.142857,3.428571,1.142857,0 +L 1.142857,2.285714,1.52381,3.047619 +L 1.52381,3.047619,2.285714,3.428571 +L 2.285714,3.428571,3.047619,3.428571 +L 3.047619,3.428571,3.809524,3.047619 +L 3.809524,3.047619,4.190476,2.285714 +L 4.190476,2.285714,4.190476,0 +L 3.047619,3.428571,3.428571,3.047619 +L 3.428571,3.047619,3.809524,2.285714 +L 3.809524,2.285714,3.809524,0 +L 4.190476,2.285714,4.571429,3.047619 +L 4.571429,3.047619,5.333333,3.428571 +L 5.333333,3.428571,6.095238,3.428571 +L 6.095238,3.428571,6.857143,3.047619 +L 6.857143,3.047619,7.238095,2.285714 +L 7.238095,2.285714,7.238095,0 +L 6.095238,3.428571,6.47619,3.047619 +L 6.47619,3.047619,6.857143,2.285714 +L 6.857143,2.285714,6.857143,0 +L 0,3.428571,1.142857,3.428571 +L 0,0,1.904762,0 +L 3.047619,0,4.952381,0 +L 6.095238,0,8,0 + +[n] 14 +L 0.761905,3.428571,0.761905,0 +L 1.142857,3.428571,1.142857,0 +L 1.142857,2.285714,1.52381,3.047619 +L 1.52381,3.047619,2.285714,3.428571 +L 2.285714,3.428571,3.047619,3.428571 +L 3.047619,3.428571,3.809524,3.047619 +L 3.809524,3.047619,4.190476,2.285714 +L 4.190476,2.285714,4.190476,0 +L 3.047619,3.428571,3.428571,3.047619 +L 3.428571,3.047619,3.809524,2.285714 +L 3.809524,2.285714,3.809524,0 +L 0,3.428571,1.142857,3.428571 +L 0,0,1.904762,0 +L 3.047619,0,4.952381,0 + +[o] 22 +L 1.142857,3.428571,0.380952,3.047619 +L 0.380952,3.047619,0,2.285714 +L 0,2.285714,0,1.142857 +L 0,1.142857,0.380952,0.380952 +L 0.380952,0.380952,1.142857,0 +L 1.142857,0,2.285714,0 +L 2.285714,0,3.047619,0.380952 +L 3.047619,0.380952,3.428571,1.142857 +L 3.428571,1.142857,3.428571,2.285714 +L 3.428571,2.285714,3.047619,3.047619 +L 3.047619,3.047619,2.285714,3.428571 +L 2.285714,3.428571,1.142857,3.428571 +L 1.142857,3.428571,0.761905,3.047619 +L 0.761905,3.047619,0.380952,2.285714 +L 0.380952,2.285714,0.380952,1.142857 +L 0.380952,1.142857,0.761905,0.380952 +L 0.761905,0.380952,1.142857,0 +L 2.285714,0,2.666667,0.380952 +L 2.666667,0.380952,3.047619,1.142857 +L 3.047619,1.142857,3.047619,2.285714 +L 3.047619,2.285714,2.666667,3.047619 +L 2.666667,3.047619,2.285714,3.428571 + +[p] 20 +L 0.761905,3.428571,0.761905,-1.52381 +L 1.142857,3.428571,1.142857,-1.52381 +L 1.142857,2.285714,1.52381,3.047619 +L 1.52381,3.047619,2.285714,3.428571 +L 2.285714,3.428571,3.047619,3.428571 +L 3.047619,3.428571,3.809524,3.047619 +L 3.809524,3.047619,4.190476,2.285714 +L 4.190476,2.285714,4.190476,1.142857 +L 4.190476,1.142857,3.809524,0.380952 +L 3.809524,0.380952,3.047619,0 +L 3.047619,0,2.285714,0 +L 2.285714,0,1.52381,0.380952 +L 1.52381,0.380952,1.142857,1.142857 +L 3.047619,3.428571,3.428571,3.047619 +L 3.428571,3.047619,3.809524,2.285714 +L 3.809524,2.285714,3.809524,1.142857 +L 3.809524,1.142857,3.428571,0.380952 +L 3.428571,0.380952,3.047619,0 +L 0,3.428571,1.142857,3.428571 +L 0,-1.52381,1.904762,-1.52381 + +[q] 19 +L 3.047619,3.428571,3.047619,-1.52381 +L 3.428571,3.428571,3.428571,-1.52381 +L 3.047619,2.285714,2.666667,3.047619 +L 2.666667,3.047619,1.904762,3.428571 +L 1.904762,3.428571,1.142857,3.428571 +L 1.142857,3.428571,0.380952,3.047619 +L 0.380952,3.047619,0,2.285714 +L 0,2.285714,0,1.142857 +L 0,1.142857,0.380952,0.380952 +L 0.380952,0.380952,1.142857,0 +L 1.142857,0,1.904762,0 +L 1.904762,0,2.666667,0.380952 +L 2.666667,0.380952,3.047619,1.142857 +L 1.142857,3.428571,0.761905,3.047619 +L 0.761905,3.047619,0.380952,2.285714 +L 0.380952,2.285714,0.380952,1.142857 +L 0.380952,1.142857,0.761905,0.380952 +L 0.761905,0.380952,1.142857,0 +L 2.285714,-1.52381,4.190476,-1.52381 + +[r] 12 +L 0.761905,3.428571,0.761905,0 +L 1.142857,3.428571,1.142857,0 +L 1.142857,2.285714,1.52381,3.047619 +L 1.52381,3.047619,2.285714,3.428571 +L 2.285714,3.428571,3.047619,3.428571 +L 3.047619,3.428571,3.428571,3.047619 +L 3.428571,3.047619,3.428571,2.666667 +L 3.428571,2.666667,3.047619,2.666667 +L 3.047619,2.666667,3.047619,3.047619 +L 3.047619,3.047619,3.428571,3.047619 +L 0,3.428571,1.142857,3.428571 +L 0,0,1.904762,0 + +[s] 22 +L 1.904762,3.428571,2.285714,3.047619 +L 2.285714,3.047619,2.285714,2.666667 +L 2.285714,2.666667,2.666667,2.666667 +L 2.666667,2.666667,2.666667,3.047619 +L 2.666667,3.047619,1.904762,3.428571 +L 1.904762,3.428571,0.761905,3.428571 +L 0.761905,3.428571,0,3.047619 +L 0,3.047619,0,2.285714 +L 0,2.285714,0.761905,1.904762 +L 0.761905,1.904762,1.904762,1.52381 +L 1.904762,1.52381,2.666667,1.142857 +L 0,2.666667,0.761905,2.285714 +L 0.761905,2.285714,1.904762,1.904762 +L 1.904762,1.904762,2.666667,1.52381 +L 2.666667,1.52381,2.666667,0.380952 +L 2.666667,0.380952,1.904762,0 +L 1.904762,0,0.761905,0 +L 0.761905,0,0,0.380952 +L 0,0.380952,0,0.761905 +L 0,0.761905,0.380952,0.761905 +L 0.380952,0.761905,0.380952,0.380952 +L 0.380952,0.380952,0.761905,0 + +[t] 8 +L 0.761905,4.952381,0.761905,0.761905 +L 0.761905,0.761905,1.52381,0 +L 1.52381,0,2.285714,0 +L 2.285714,0,2.666667,0.380952 +L 2.666667,0.380952,2.666667,0.761905 +L 1.142857,4.952381,1.142857,0.761905 +L 1.142857,0.761905,1.52381,0 +L 0,3.428571,2.285714,3.428571 + +[u] 14 +L 0.761905,3.428571,0.761905,1.142857 +L 0.761905,1.142857,1.142857,0.380952 +L 1.142857,0.380952,1.904762,0 +L 1.904762,0,2.666667,0 +L 2.666667,0,3.428571,0.380952 +L 3.428571,0.380952,3.809524,1.142857 +L 1.142857,3.428571,1.142857,1.142857 +L 1.142857,1.142857,1.52381,0.380952 +L 1.52381,0.380952,1.904762,0 +L 3.809524,3.428571,3.809524,0 +L 4.190476,3.428571,4.190476,0 +L 0,3.428571,1.142857,3.428571 +L 3.047619,3.428571,4.190476,3.428571 +L 3.809524,0,4.952381,0 + +[v] 5 +L 0.761905,3.428571,2.285714,0 +L 1.142857,3.428571,2.285714,0.761905 +L 3.809524,3.428571,2.285714,0 +L 0,3.428571,1.904762,3.428571 +L 3.047619,3.428571,4.571429,3.428571 + +[w] 8 +L 0.761905,3.428571,1.904762,0 +L 1.142857,3.428571,1.904762,1.142857 +L 3.047619,3.428571,1.904762,0 +L 3.047619,3.428571,4.190476,0 +L 3.428571,3.428571,4.190476,1.142857 +L 5.333333,3.428571,4.190476,0 +L 0,3.428571,1.904762,3.428571 +L 4.571429,3.428571,6.095238,3.428571 + +[x] 7 +L 0.761905,3.428571,3.428571,0 +L 1.142857,3.428571,3.809524,0 +L 3.809524,3.428571,0.761905,0 +L 0,3.428571,1.904762,3.428571 +L 3.047619,3.428571,4.571429,3.428571 +L 0,0,1.52381,0 +L 2.666667,0,4.571429,0 + +[y] 13 +L 0.761905,3.428571,2.285714,0 +L 1.142857,3.428571,2.285714,0.761905 +L 3.809524,3.428571,2.285714,0 +L 2.285714,0,1.52381,-1.142857 +L 1.52381,-1.142857,0.761905,-1.52381 +L 0.761905,-1.52381,0.380952,-1.52381 +L 0.380952,-1.52381,0,-1.142857 +L 0,-1.142857,0,-0.761905 +L 0,-0.761905,0.380952,-0.761905 +L 0.380952,-0.761905,0.380952,-1.142857 +L 0.380952,-1.142857,0,-1.142857 +L 0,3.428571,1.904762,3.428571 +L 3.047619,3.428571,4.571429,3.428571 + +[z] 8 +L 2.666667,3.428571,0,0 +L 3.047619,3.428571,0.380952,0 +L 0.380952,3.428571,0,2.666667 +L 0,2.666667,0,3.428571 +L 0,3.428571,3.047619,3.428571 +L 0,0,3.047619,0 +L 3.047619,0,3.047619,0.761905 +L 3.047619,0.761905,2.666667,0 + +[{] 24 +L 1.142857,6.095238,0.380952,5.714286 +L 0.380952,5.714286,0,5.333333 +L 0,5.333333,0,4.571429 +L 0,4.571429,0.761905,3.809524 +L 0.761905,3.809524,1.142857,3.047619 +L 0.380952,5.714286,0,4.571429 +L 1.142857,3.809524,0.761905,2.666667 +L 0,5.333333,0.380952,4.571429 +L 0.380952,4.571429,1.142857,3.809524 +L 1.142857,3.809524,1.142857,3.047619 +L 1.142857,3.047619,0.761905,2.666667 +L 0.761905,2.666667,0,2.285714 +L 0,2.285714,0.761905,1.904762 +L 0.761905,1.904762,1.142857,1.52381 +L 1.142857,1.52381,1.142857,0.761905 +L 1.142857,0.761905,0.380952,0 +L 0.380952,0,0,-0.761905 +L 0.761905,1.904762,1.142857,0.761905 +L 0,0,0.380952,-1.142857 +L 1.142857,1.52381,0.761905,0.761905 +L 0.761905,0.761905,0,0 +L 0,0,0,-0.761905 +L 0,-0.761905,0.380952,-1.142857 +L 0.380952,-1.142857,1.142857,-1.52381 + +[|] 1 +L 0,6.095238,0,-1.52381 + +[}] 24 +L 0,6.095238,0.761905,5.714286 +L 0.761905,5.714286,1.142857,5.333333 +L 1.142857,5.333333,1.142857,4.571429 +L 1.142857,4.571429,0.380952,3.809524 +L 0.380952,3.809524,0,3.047619 +L 0.761905,5.714286,1.142857,4.571429 +L 0,3.809524,0.380952,2.666667 +L 1.142857,5.333333,0.761905,4.571429 +L 0.761905,4.571429,0,3.809524 +L 0,3.809524,0,3.047619 +L 0,3.047619,0.380952,2.666667 +L 0.380952,2.666667,1.142857,2.285714 +L 1.142857,2.285714,0.380952,1.904762 +L 0.380952,1.904762,0,1.52381 +L 0,1.52381,0,0.761905 +L 0,0.761905,0.761905,0 +L 0.761905,0,1.142857,-0.761905 +L 0.380952,1.904762,0,0.761905 +L 1.142857,0,0.761905,-1.142857 +L 0,1.52381,0.380952,0.761905 +L 0.380952,0.761905,1.142857,0 +L 1.142857,0,1.142857,-0.761905 +L 1.142857,-0.761905,0.761905,-1.142857 +L 0.761905,-1.142857,0,-1.52381 + +[~] 4 +L 0.380952,0.761905,0,0.380952 +L 0,0.380952,0.380952,0 +L 0.380952,0,0.761905,0.380952 +L 0.761905,0.380952,0.380952,0.761905 + +[] 4 +L 0.380952,0.761905,0,0.380952 +L 0,0.380952,0.380952,0 +L 0.380952,0,0.761905,0.380952 +L 0.761905,0.380952,0.380952,0.761905 + +[] 4 +L 0.380952,0.761905,0,0.380952 +L 0,0.380952,0.380952,0 +L 0.380952,0,0.761905,0.380952 +L 0.761905,0.380952,0.380952,0.761905 + +[] 4 +L 0.380952,0.761905,0,0.380952 +L 0,0.380952,0.380952,0 +L 0.380952,0,0.761905,0.380952 +L 0.761905,0.380952,0.380952,0.761905 + +[] 4 +L 0.380952,0.761905,0,0.380952 +L 0,0.380952,0.380952,0 +L 0.380952,0,0.761905,0.380952 +L 0.761905,0.380952,0.380952,0.761905 + +[] 4 +L 0.380952,0.761905,0,0.380952 +L 0,0.380952,0.380952,0 +L 0.380952,0,0.761905,0.380952 +L 0.761905,0.380952,0.380952,0.761905 + +[] 4 +L 0.380952,0.761905,0,0.380952 +L 0,0.380952,0.380952,0 +L 0.380952,0,0.761905,0.380952 +L 0.761905,0.380952,0.380952,0.761905 + +[] 4 +L 0.380952,0.761905,0,0.380952 +L 0,0.380952,0.380952,0 +L 0.380952,0,0.761905,0.380952 +L 0.761905,0.380952,0.380952,0.761905 + +[] 4 +L 0.380952,0.761905,0,0.380952 +L 0,0.380952,0.380952,0 +L 0.380952,0,0.761905,0.380952 +L 0.761905,0.380952,0.380952,0.761905 + +[] 4 +L 0.380952,0.761905,0,0.380952 +L 0,0.380952,0.380952,0 +L 0.380952,0,0.761905,0.380952 +L 0.761905,0.380952,0.380952,0.761905 + +[] 4 +L 0.380952,0.761905,0,0.380952 +L 0,0.380952,0.380952,0 +L 0.380952,0,0.761905,0.380952 +L 0.761905,0.380952,0.380952,0.761905 + +[] 4 +L 0.380952,0.761905,0,0.380952 +L 0,0.380952,0.380952,0 +L 0.380952,0,0.761905,0.380952 +L 0.761905,0.380952,0.380952,0.761905 + +[] 4 +L 0.380952,0.761905,0,0.380952 +L 0,0.380952,0.380952,0 +L 0.380952,0,0.761905,0.380952 +L 0.761905,0.380952,0.380952,0.761905 + +[] 4 +L 0.380952,0.761905,0,0.380952 +L 0,0.380952,0.380952,0 +L 0.380952,0,0.761905,0.380952 +L 0.761905,0.380952,0.380952,0.761905 + +[] 4 +L 0.380952,0.761905,0,0.380952 +L 0,0.380952,0.380952,0 +L 0.380952,0,0.761905,0.380952 +L 0.761905,0.380952,0.380952,0.761905 + +[] 4 +L 0.380952,0.761905,0,0.380952 +L 0,0.380952,0.380952,0 +L 0.380952,0,0.761905,0.380952 +L 0.761905,0.380952,0.380952,0.761905 + +[] 4 +L 0.380952,0.761905,0,0.380952 +L 0,0.380952,0.380952,0 +L 0.380952,0,0.761905,0.380952 +L 0.761905,0.380952,0.380952,0.761905 + +[] 4 +L 0.380952,0.761905,0,0.380952 +L 0,0.380952,0.380952,0 +L 0.380952,0,0.761905,0.380952 +L 0.761905,0.380952,0.380952,0.761905 + +[] 4 +L 0.380952,0.761905,0,0.380952 +L 0,0.380952,0.380952,0 +L 0.380952,0,0.761905,0.380952 +L 0.761905,0.380952,0.380952,0.761905 + +[] 4 +L 0.380952,0.761905,0,0.380952 +L 0,0.380952,0.380952,0 +L 0.380952,0,0.761905,0.380952 +L 0.761905,0.380952,0.380952,0.761905 + +[] 4 +L 0.380952,0.761905,0,0.380952 +L 0,0.380952,0.380952,0 +L 0.380952,0,0.761905,0.380952 +L 0.761905,0.380952,0.380952,0.761905 + +[] 4 +L 0.380952,0.761905,0,0.380952 +L 0,0.380952,0.380952,0 +L 0.380952,0,0.761905,0.380952 +L 0.761905,0.380952,0.380952,0.761905 + +[] 4 +L 0.380952,0.761905,0,0.380952 +L 0,0.380952,0.380952,0 +L 0.380952,0,0.761905,0.380952 +L 0.761905,0.380952,0.380952,0.761905 + +[] 4 +L 0.380952,0.761905,0,0.380952 +L 0,0.380952,0.380952,0 +L 0.380952,0,0.761905,0.380952 +L 0.761905,0.380952,0.380952,0.761905 + +[] 4 +L 0.380952,0.761905,0,0.380952 +L 0,0.380952,0.380952,0 +L 0.380952,0,0.761905,0.380952 +L 0.761905,0.380952,0.380952,0.761905 + +[] 4 +L 0.380952,0.761905,0,0.380952 +L 0,0.380952,0.380952,0 +L 0.380952,0,0.761905,0.380952 +L 0.761905,0.380952,0.380952,0.761905 + +[] 4 +L 0.380952,0.761905,0,0.380952 +L 0,0.380952,0.380952,0 +L 0.380952,0,0.761905,0.380952 +L 0.761905,0.380952,0.380952,0.761905 + +[] 4 +L 0.380952,0.761905,0,0.380952 +L 0,0.380952,0.380952,0 +L 0.380952,0,0.761905,0.380952 +L 0.761905,0.380952,0.380952,0.761905 + +[] 4 +L 0.380952,0.761905,0,0.380952 +L 0,0.380952,0.380952,0 +L 0.380952,0,0.761905,0.380952 +L 0.761905,0.380952,0.380952,0.761905 + +[] 4 +L 0.380952,0.761905,0,0.380952 +L 0,0.380952,0.380952,0 +L 0.380952,0,0.761905,0.380952 +L 0.761905,0.380952,0.380952,0.761905 + +[] 4 +L 0.380952,0.761905,0,0.380952 +L 0,0.380952,0.380952,0 +L 0.380952,0,0.761905,0.380952 +L 0.761905,0.380952,0.380952,0.761905 + +[#0104] 12 +L 2.666667,4.952381,0.761905,0 +L 2.666667,3.809524,4.190476,0 +L 2.666667,4.952381,4.571429,0 +L 1.52381,1.52381,3.428571,1.52381 +L 0,0,1.904762,0 +L 3.428571,0,5.333333,0 +L 4.190476,0,3.428571,-0.761905 +L 3.428571,-0.761905,3.428571,-1.52381 +L 3.428571,-1.52381,3.809524,-1.904762 +L 3.809524,-1.904762,4.190476,-1.52381 +L 4.190476,-1.52381,3.809524,-1.142857 +L 3.809524,-1.142857,3.428571,-1.52381 + +[] 4 +L 0.380952,0.761905,0,0.380952 +L 0,0.380952,0.380952,0 +L 0.380952,0,0.761905,0.380952 +L 0.761905,0.380952,0.380952,0.761905 + +[#0141] 7 +L 0.761905,4.952381,0.761905,0 +L 1.142857,4.952381,1.142857,0 +L 0,4.952381,1.904762,4.952381 +L 0,0,3.809524,0 +L 3.809524,0,3.809524,1.52381 +L 3.809524,1.52381,3.428571,0 +L 2.285714,3.809524,0,1.904762 + +[] 4 +L 0.380952,0.761905,0,0.380952 +L 0,0.380952,0.380952,0 +L 0.380952,0,0.761905,0.380952 +L 0.761905,0.380952,0.380952,0.761905 + +[] 4 +L 0.380952,0.761905,0,0.380952 +L 0,0.380952,0.380952,0 +L 0.380952,0,0.761905,0.380952 +L 0.761905,0.380952,0.380952,0.761905 + +[] 34 +L 3.047619,4.190476,3.428571,4.952381 +L 3.428571,4.952381,3.428571,3.428571 +L 3.428571,3.428571,3.047619,4.190476 +L 3.047619,4.190476,2.666667,4.571429 +L 2.666667,4.571429,1.904762,4.952381 +L 1.904762,4.952381,1.142857,4.952381 +L 1.142857,4.952381,0.380952,4.571429 +L 0.380952,4.571429,0,4.190476 +L 0,4.190476,0,3.428571 +L 0,3.428571,0.380952,3.047619 +L 0.380952,3.047619,1.142857,2.666667 +L 1.142857,2.666667,2.285714,2.285714 +L 2.285714,2.285714,3.047619,1.904762 +L 3.047619,1.904762,3.428571,1.52381 +L 0,3.809524,0.380952,3.428571 +L 0.380952,3.428571,1.142857,3.047619 +L 1.142857,3.047619,2.285714,2.666667 +L 2.285714,2.666667,3.047619,2.285714 +L 3.047619,2.285714,3.428571,1.904762 +L 3.428571,1.904762,3.428571,0.761905 +L 3.428571,0.761905,3.047619,0.380952 +L 3.047619,0.380952,2.285714,0 +L 2.285714,0,1.52381,0 +L 1.52381,0,0.761905,0.380952 +L 0.761905,0.380952,0.380952,0.761905 +L 0.380952,0.761905,0,1.52381 +L 0,1.52381,0,0 +L 0,0,0.380952,0.761905 +L 2.285714,6.857143,1.904762,6.47619 +L 1.904762,6.47619,1.52381,6.857143 +L 1.52381,6.857143,1.904762,7.238095 +L 1.904762,7.238095,2.285714,6.857143 +L 2.285714,6.857143,2.285714,6.095238 +L 2.285714,6.095238,1.52381,5.333333 + +[] 4 +L 0.380952,0.761905,0,0.380952 +L 0,0.380952,0.380952,0 +L 0.380952,0,0.761905,0.380952 +L 0.761905,0.380952,0.380952,0.761905 + +[] 4 +L 0.380952,0.761905,0,0.380952 +L 0,0.380952,0.380952,0 +L 0.380952,0,0.761905,0.380952 +L 0.761905,0.380952,0.380952,0.761905 + +[] 4 +L 0.380952,0.761905,0,0.380952 +L 0,0.380952,0.380952,0 +L 0.380952,0,0.761905,0.380952 +L 0.761905,0.380952,0.380952,0.761905 + +[] 4 +L 0.380952,0.761905,0,0.380952 +L 0,0.380952,0.380952,0 +L 0.380952,0,0.761905,0.380952 +L 0.761905,0.380952,0.380952,0.761905 + +[] 4 +L 0.380952,0.761905,0,0.380952 +L 0,0.380952,0.380952,0 +L 0.380952,0,0.761905,0.380952 +L 0.761905,0.380952,0.380952,0.761905 + +[#0179] 14 +L 3.047619,4.952381,0,0 +L 3.428571,4.952381,0.380952,0 +L 0.380952,4.952381,0,3.428571 +L 0,3.428571,0,4.952381 +L 0,4.952381,3.428571,4.952381 +L 0,0,3.428571,0 +L 3.428571,0,3.428571,1.52381 +L 3.428571,1.52381,3.047619,0 +L 2.285714,6.857143,1.904762,6.47619 +L 1.904762,6.47619,1.52381,6.857143 +L 1.52381,6.857143,1.904762,7.238095 +L 1.904762,7.238095,2.285714,6.857143 +L 2.285714,6.857143,2.285714,6.095238 +L 2.285714,6.095238,1.52381,5.333333 + +[] 4 +L 0.380952,0.761905,0,0.380952 +L 0,0.380952,0.380952,0 +L 0.380952,0,0.761905,0.380952 +L 0.761905,0.380952,0.380952,0.761905 + +[] 4 +L 0.380952,0.761905,0,0.380952 +L 0,0.380952,0.380952,0 +L 0.380952,0,0.761905,0.380952 +L 0.761905,0.380952,0.380952,0.761905 + +[#017B] 12 +L 3.047619,4.952381,0,0 +L 3.428571,4.952381,0.380952,0 +L 0.380952,4.952381,0,3.428571 +L 0,3.428571,0,4.952381 +L 0,4.952381,3.428571,4.952381 +L 0,0,3.428571,0 +L 3.428571,0,3.428571,1.52381 +L 3.428571,1.52381,3.047619,0 +L 1.904762,6.47619,1.52381,6.095238 +L 1.52381,6.095238,1.904762,5.714286 +L 1.904762,5.714286,2.285714,6.095238 +L 2.285714,6.095238,1.904762,6.47619 + +[] 4 +L 0.380952,0.761905,0,0.380952 +L 0,0.380952,0.380952,0 +L 0.380952,0,0.761905,0.380952 +L 0.761905,0.380952,0.380952,0.761905 + +[#0105] 30 +L 0.761905,3.428571,0.380952,3.047619 +L 0.380952,3.047619,0.380952,2.666667 +L 0.380952,2.666667,0,2.666667 +L 0,2.666667,0,3.047619 +L 0,3.047619,0.761905,3.428571 +L 0.761905,3.428571,1.904762,3.428571 +L 1.904762,3.428571,2.666667,2.666667 +L 2.666667,2.666667,2.666667,0.380952 +L 2.666667,0.380952,3.047619,0 +L 3.047619,0,3.428571,0 +L 1.904762,3.428571,2.285714,2.666667 +L 2.285714,2.666667,2.285714,0.380952 +L 2.285714,0.380952,3.047619,0 +L 2.285714,2.285714,1.142857,1.904762 +L 1.142857,1.904762,0.380952,1.52381 +L 0.380952,1.52381,0,1.142857 +L 0,1.142857,0,0.380952 +L 0,0.380952,0.380952,0 +L 0.380952,0,1.52381,0 +L 1.52381,0,1.904762,0.380952 +L 1.904762,0.380952,2.285714,1.142857 +L 1.142857,1.904762,0.380952,1.142857 +L 0.380952,1.142857,0.380952,0.380952 +L 0.380952,0.380952,0.761905,0 +L 3.047619,0,2.285714,-0.761905 +L 2.285714,-0.761905,2.285714,-1.52381 +L 2.285714,-1.52381,2.666667,-1.904762 +L 2.666667,-1.904762,3.047619,-1.52381 +L 3.047619,-1.52381,2.666667,-1.142857 +L 2.666667,-1.142857,2.285714,-1.52381 + +[] 4 +L 0.380952,0.761905,0,0.380952 +L 0,0.380952,0.380952,0 +L 0.380952,0,0.761905,0.380952 +L 0.761905,0.380952,0.380952,0.761905 + +[#0142] 5 +L 0.761905,4.952381,0.761905,0 +L 1.142857,4.952381,1.142857,0 +L 0,4.952381,1.142857,4.952381 +L 0,0,1.904762,0 +L 1.904762,3.428571,0,1.904762 + +[] 4 +L 0.380952,0.761905,0,0.380952 +L 0,0.380952,0.380952,0 +L 0.380952,0,0.761905,0.380952 +L 0.761905,0.380952,0.380952,0.761905 + +[] 4 +L 0.380952,0.761905,0,0.380952 +L 0,0.380952,0.380952,0 +L 0.380952,0,0.761905,0.380952 +L 0.761905,0.380952,0.380952,0.761905 + +[#015B] 28 +L 1.904762,3.428571,2.285714,3.047619 +L 2.285714,3.047619,2.285714,2.666667 +L 2.285714,2.666667,2.666667,2.666667 +L 2.666667,2.666667,2.666667,3.047619 +L 2.666667,3.047619,1.904762,3.428571 +L 1.904762,3.428571,0.761905,3.428571 +L 0.761905,3.428571,0,3.047619 +L 0,3.047619,0,2.285714 +L 0,2.285714,0.761905,1.904762 +L 0.761905,1.904762,1.904762,1.52381 +L 1.904762,1.52381,2.666667,1.142857 +L 0,2.666667,0.761905,2.285714 +L 0.761905,2.285714,1.904762,1.904762 +L 1.904762,1.904762,2.666667,1.52381 +L 2.666667,1.52381,2.666667,0.380952 +L 2.666667,0.380952,1.904762,0 +L 1.904762,0,0.761905,0 +L 0.761905,0,0,0.380952 +L 0,0.380952,0,0.761905 +L 0,0.761905,0.380952,0.761905 +L 0.380952,0.761905,0.380952,0.380952 +L 0.380952,0.380952,0.761905,0 +L 1.904762,5.714286,1.52381,5.333333 +L 1.52381,5.333333,1.142857,5.714286 +L 1.142857,5.714286,1.52381,6.095238 +L 1.52381,6.095238,1.904762,5.714286 +L 1.904762,5.714286,1.904762,4.952381 +L 1.904762,4.952381,1.142857,4.190476 + +[] 4 +L 0.380952,0.761905,0,0.380952 +L 0,0.380952,0.380952,0 +L 0.380952,0,0.761905,0.380952 +L 0.761905,0.380952,0.380952,0.761905 + +[] 4 +L 0.380952,0.761905,0,0.380952 +L 0,0.380952,0.380952,0 +L 0.380952,0,0.761905,0.380952 +L 0.761905,0.380952,0.380952,0.761905 + +[] 4 +L 0.380952,0.761905,0,0.380952 +L 0,0.380952,0.380952,0 +L 0.380952,0,0.761905,0.380952 +L 0.761905,0.380952,0.380952,0.761905 + +[] 4 +L 0.380952,0.761905,0,0.380952 +L 0,0.380952,0.380952,0 +L 0.380952,0,0.761905,0.380952 +L 0.761905,0.380952,0.380952,0.761905 + +[] 4 +L 0.380952,0.761905,0,0.380952 +L 0,0.380952,0.380952,0 +L 0.380952,0,0.761905,0.380952 +L 0.761905,0.380952,0.380952,0.761905 + +[#017A] 14 +L 2.666667,3.428571,0,0 +L 3.047619,3.428571,0.380952,0 +L 0.380952,3.428571,0,2.666667 +L 0,2.666667,0,3.428571 +L 0,3.428571,3.047619,3.428571 +L 0,0,3.047619,0 +L 3.047619,0,3.047619,0.761905 +L 3.047619,0.761905,2.666667,0 +L 2.285714,5.714286,1.904762,5.333333 +L 1.904762,5.333333,1.52381,5.714286 +L 1.52381,5.714286,1.904762,6.095238 +L 1.904762,6.095238,2.285714,5.714286 +L 2.285714,5.714286,2.285714,4.952381 +L 2.285714,4.952381,1.52381,4.190476 + +[] 4 +L 0.380952,0.761905,0,0.380952 +L 0,0.380952,0.380952,0 +L 0.380952,0,0.761905,0.380952 +L 0.761905,0.380952,0.380952,0.761905 + +[] 4 +L 0.380952,0.761905,0,0.380952 +L 0,0.380952,0.380952,0 +L 0.380952,0,0.761905,0.380952 +L 0.761905,0.380952,0.380952,0.761905 + +[#017C] 12 +L 2.666667,3.428571,0,0 +L 3.047619,3.428571,0.380952,0 +L 0.380952,3.428571,0,2.666667 +L 0,2.666667,0,3.428571 +L 0,3.428571,3.047619,3.428571 +L 0,0,3.047619,0 +L 3.047619,0,3.047619,0.761905 +L 3.047619,0.761905,2.666667,0 +L 1.52381,4.952381,1.142857,4.571429 +L 1.142857,4.571429,1.52381,4.190476 +L 1.52381,4.190476,1.904762,4.571429 +L 1.904762,4.571429,1.52381,4.952381 + +[] 4 +L 0.380952,0.761905,0,0.380952 +L 0,0.380952,0.380952,0 +L 0.380952,0,0.761905,0.380952 +L 0.761905,0.380952,0.380952,0.761905 + +[] 4 +L 0.380952,0.761905,0,0.380952 +L 0,0.380952,0.380952,0 +L 0.380952,0,0.761905,0.380952 +L 0.761905,0.380952,0.380952,0.761905 + +[] 4 +L 0.380952,0.761905,0,0.380952 +L 0,0.380952,0.380952,0 +L 0.380952,0,0.761905,0.380952 +L 0.761905,0.380952,0.380952,0.761905 + +[] 4 +L 0.380952,0.761905,0,0.380952 +L 0,0.380952,0.380952,0 +L 0.380952,0,0.761905,0.380952 +L 0.761905,0.380952,0.380952,0.761905 + +[] 4 +L 0.380952,0.761905,0,0.380952 +L 0,0.380952,0.380952,0 +L 0.380952,0,0.761905,0.380952 +L 0.761905,0.380952,0.380952,0.761905 + +[] 4 +L 0.380952,0.761905,0,0.380952 +L 0,0.380952,0.380952,0 +L 0.380952,0,0.761905,0.380952 +L 0.761905,0.380952,0.380952,0.761905 + +[#0106] 26 +L 3.428571,4.571429,3.809524,4.952381 +L 3.809524,4.952381,3.809524,3.428571 +L 3.809524,3.428571,3.428571,4.571429 +L 3.428571,4.571429,2.666667,4.952381 +L 2.666667,4.952381,1.52381,4.952381 +L 1.52381,4.952381,0.761905,4.571429 +L 0.761905,4.571429,0.380952,4.190476 +L 0.380952,4.190476,0,3.047619 +L 0,3.047619,0,1.904762 +L 0,1.904762,0.380952,0.761905 +L 0.380952,0.761905,0.761905,0.380952 +L 0.761905,0.380952,1.52381,0 +L 1.52381,0,2.666667,0 +L 2.666667,0,3.428571,0.380952 +L 3.428571,0.380952,3.809524,1.142857 +L 1.52381,4.952381,0.761905,4.190476 +L 0.761905,4.190476,0.380952,3.047619 +L 0.380952,3.047619,0.380952,1.904762 +L 0.380952,1.904762,0.761905,0.761905 +L 0.761905,0.761905,1.52381,0 +L 2.666667,6.857143,2.285714,6.47619 +L 2.285714,6.47619,1.904762,6.857143 +L 1.904762,6.857143,2.285714,7.238095 +L 2.285714,7.238095,2.666667,6.857143 +L 2.666667,6.857143,2.666667,6.095238 +L 2.666667,6.095238,1.904762,5.333333 + +[] 4 +L 0.380952,0.761905,0,0.380952 +L 0,0.380952,0.380952,0 +L 0.380952,0,0.761905,0.380952 +L 0.761905,0.380952,0.380952,0.761905 + +[] 4 +L 0.380952,0.761905,0,0.380952 +L 0,0.380952,0.380952,0 +L 0.380952,0,0.761905,0.380952 +L 0.761905,0.380952,0.380952,0.761905 + +[] 4 +L 0.380952,0.761905,0,0.380952 +L 0,0.380952,0.380952,0 +L 0.380952,0,0.761905,0.380952 +L 0.761905,0.380952,0.380952,0.761905 + +[#0118] 16 +L 0.761905,4.952381,0.761905,0 +L 1.142857,4.952381,1.142857,0 +L 2.666667,3.428571,2.666667,1.904762 +L 0,4.952381,3.809524,4.952381 +L 3.809524,4.952381,3.809524,3.428571 +L 3.809524,3.428571,3.428571,4.952381 +L 1.142857,2.666667,2.666667,2.666667 +L 0,0,3.809524,0 +L 3.809524,0,3.809524,1.52381 +L 3.809524,1.52381,3.428571,0 +L 3.047619,0,2.285714,-0.761905 +L 2.285714,-0.761905,2.285714,-1.52381 +L 2.285714,-1.52381,2.666667,-1.904762 +L 2.666667,-1.904762,3.047619,-1.52381 +L 3.047619,-1.52381,2.666667,-1.142857 +L 2.666667,-1.142857,2.285714,-1.52381 + +[] 4 +L 0.380952,0.761905,0,0.380952 +L 0,0.380952,0.380952,0 +L 0.380952,0,0.761905,0.380952 +L 0.761905,0.380952,0.380952,0.761905 + +[] 4 +L 0.380952,0.761905,0,0.380952 +L 0,0.380952,0.380952,0 +L 0.380952,0,0.761905,0.380952 +L 0.761905,0.380952,0.380952,0.761905 + +[] 4 +L 0.380952,0.761905,0,0.380952 +L 0,0.380952,0.380952,0 +L 0.380952,0,0.761905,0.380952 +L 0.761905,0.380952,0.380952,0.761905 + +[] 4 +L 0.380952,0.761905,0,0.380952 +L 0,0.380952,0.380952,0 +L 0.380952,0,0.761905,0.380952 +L 0.761905,0.380952,0.380952,0.761905 + +[] 4 +L 0.380952,0.761905,0,0.380952 +L 0,0.380952,0.380952,0 +L 0.380952,0,0.761905,0.380952 +L 0.761905,0.380952,0.380952,0.761905 + +[] 4 +L 0.380952,0.761905,0,0.380952 +L 0,0.380952,0.380952,0 +L 0.380952,0,0.761905,0.380952 +L 0.761905,0.380952,0.380952,0.761905 + +[#0143] 13 +L 0.761905,4.952381,0.761905,0 +L 1.142857,4.190476,3.809524,0 +L 1.142857,4.952381,3.809524,0.761905 +L 3.809524,4.952381,3.809524,0 +L 0,4.952381,1.142857,4.952381 +L 3.047619,4.952381,4.571429,4.952381 +L 0,0,1.52381,0 +L 3.047619,6.857143,2.666667,6.47619 +L 2.666667,6.47619,2.285714,6.857143 +L 2.285714,6.857143,2.666667,7.238095 +L 2.666667,7.238095,3.047619,6.857143 +L 3.047619,6.857143,3.047619,6.095238 +L 3.047619,6.095238,2.285714,5.333333 + +[] 4 +L 0.380952,0.761905,0,0.380952 +L 0,0.380952,0.380952,0 +L 0.380952,0,0.761905,0.380952 +L 0.761905,0.380952,0.380952,0.761905 + +[#00D3] 32 +L 1.52381,4.952381,0.761905,4.571429 +L 0.761905,4.571429,0.380952,4.190476 +L 0.380952,4.190476,0,3.047619 +L 0,3.047619,0,1.904762 +L 0,1.904762,0.380952,0.761905 +L 0.380952,0.761905,0.761905,0.380952 +L 0.761905,0.380952,1.52381,0 +L 1.52381,0,2.666667,0 +L 2.666667,0,3.428571,0.380952 +L 3.428571,0.380952,3.809524,0.761905 +L 3.809524,0.761905,4.190476,1.904762 +L 4.190476,1.904762,4.190476,3.047619 +L 4.190476,3.047619,3.809524,4.190476 +L 3.809524,4.190476,3.428571,4.571429 +L 3.428571,4.571429,2.666667,4.952381 +L 2.666667,4.952381,1.52381,4.952381 +L 1.52381,4.952381,0.761905,4.190476 +L 0.761905,4.190476,0.380952,3.047619 +L 0.380952,3.047619,0.380952,1.904762 +L 0.380952,1.904762,0.761905,0.761905 +L 0.761905,0.761905,1.52381,0 +L 2.666667,0,3.428571,0.761905 +L 3.428571,0.761905,3.809524,1.904762 +L 3.809524,1.904762,3.809524,3.047619 +L 3.809524,3.047619,3.428571,4.190476 +L 3.428571,4.190476,2.666667,4.952381 +L 2.666667,6.857143,2.285714,6.47619 +L 2.285714,6.47619,1.904762,6.857143 +L 1.904762,6.857143,2.285714,7.238095 +L 2.285714,7.238095,2.666667,6.857143 +L 2.666667,6.857143,2.666667,6.095238 +L 2.666667,6.095238,1.904762,5.333333 + +[] 4 +L 0.380952,0.761905,0,0.380952 +L 0,0.380952,0.380952,0 +L 0.380952,0,0.761905,0.380952 +L 0.761905,0.380952,0.380952,0.761905 + +[] 4 +L 0.380952,0.761905,0,0.380952 +L 0,0.380952,0.380952,0 +L 0.380952,0,0.761905,0.380952 +L 0.761905,0.380952,0.380952,0.761905 + +[] 4 +L 0.380952,0.761905,0,0.380952 +L 0,0.380952,0.380952,0 +L 0.380952,0,0.761905,0.380952 +L 0.761905,0.380952,0.380952,0.761905 + +[] 4 +L 0.380952,0.761905,0,0.380952 +L 0,0.380952,0.380952,0 +L 0.380952,0,0.761905,0.380952 +L 0.761905,0.380952,0.380952,0.761905 + +[] 4 +L 0.380952,0.761905,0,0.380952 +L 0,0.380952,0.380952,0 +L 0.380952,0,0.761905,0.380952 +L 0.761905,0.380952,0.380952,0.761905 + +[] 4 +L 0.380952,0.761905,0,0.380952 +L 0,0.380952,0.380952,0 +L 0.380952,0,0.761905,0.380952 +L 0.761905,0.380952,0.380952,0.761905 + +[] 4 +L 0.380952,0.761905,0,0.380952 +L 0,0.380952,0.380952,0 +L 0.380952,0,0.761905,0.380952 +L 0.761905,0.380952,0.380952,0.761905 + +[] 4 +L 0.380952,0.761905,0,0.380952 +L 0,0.380952,0.380952,0 +L 0.380952,0,0.761905,0.380952 +L 0.761905,0.380952,0.380952,0.761905 + +[] 4 +L 0.380952,0.761905,0,0.380952 +L 0,0.380952,0.380952,0 +L 0.380952,0,0.761905,0.380952 +L 0.761905,0.380952,0.380952,0.761905 + +[] 4 +L 0.380952,0.761905,0,0.380952 +L 0,0.380952,0.380952,0 +L 0.380952,0,0.761905,0.380952 +L 0.761905,0.380952,0.380952,0.761905 + +[] 4 +L 0.380952,0.761905,0,0.380952 +L 0,0.380952,0.380952,0 +L 0.380952,0,0.761905,0.380952 +L 0.761905,0.380952,0.380952,0.761905 + +[] 4 +L 0.380952,0.761905,0,0.380952 +L 0,0.380952,0.380952,0 +L 0.380952,0,0.761905,0.380952 +L 0.761905,0.380952,0.380952,0.761905 + +[] 4 +L 0.380952,0.761905,0,0.380952 +L 0,0.380952,0.380952,0 +L 0.380952,0,0.761905,0.380952 +L 0.761905,0.380952,0.380952,0.761905 + +[] 4 +L 0.380952,0.761905,0,0.380952 +L 0,0.380952,0.380952,0 +L 0.380952,0,0.761905,0.380952 +L 0.761905,0.380952,0.380952,0.761905 + +[] 4 +L 0.380952,0.761905,0,0.380952 +L 0,0.380952,0.380952,0 +L 0.380952,0,0.761905,0.380952 +L 0.761905,0.380952,0.380952,0.761905 + +[] 4 +L 0.380952,0.761905,0,0.380952 +L 0,0.380952,0.380952,0 +L 0.380952,0,0.761905,0.380952 +L 0.761905,0.380952,0.380952,0.761905 + +[] 4 +L 0.380952,0.761905,0,0.380952 +L 0,0.380952,0.380952,0 +L 0.380952,0,0.761905,0.380952 +L 0.761905,0.380952,0.380952,0.761905 + +[] 4 +L 0.380952,0.761905,0,0.380952 +L 0,0.380952,0.380952,0 +L 0.380952,0,0.761905,0.380952 +L 0.761905,0.380952,0.380952,0.761905 + +[#0107] 26 +L 3.047619,2.666667,2.666667,2.666667 +L 2.666667,2.666667,2.666667,2.285714 +L 2.666667,2.285714,3.047619,2.285714 +L 3.047619,2.285714,3.047619,2.666667 +L 3.047619,2.666667,2.666667,3.047619 +L 2.666667,3.047619,1.904762,3.428571 +L 1.904762,3.428571,1.142857,3.428571 +L 1.142857,3.428571,0.380952,3.047619 +L 0.380952,3.047619,0,2.285714 +L 0,2.285714,0,1.142857 +L 0,1.142857,0.380952,0.380952 +L 0.380952,0.380952,1.142857,0 +L 1.142857,0,1.904762,0 +L 1.904762,0,2.666667,0.380952 +L 2.666667,0.380952,3.047619,0.761905 +L 1.142857,3.428571,0.761905,3.047619 +L 0.761905,3.047619,0.380952,2.285714 +L 0.380952,2.285714,0.380952,1.142857 +L 0.380952,1.142857,0.761905,0.380952 +L 0.761905,0.380952,1.142857,0 +L 2.285714,5.714286,1.904762,5.333333 +L 1.904762,5.333333,1.52381,5.714286 +L 1.52381,5.714286,1.904762,6.095238 +L 1.904762,6.095238,2.285714,5.714286 +L 2.285714,5.714286,2.285714,4.952381 +L 2.285714,4.952381,1.52381,4.190476 + +[] 4 +L 0.380952,0.761905,0,0.380952 +L 0,0.380952,0.380952,0 +L 0.380952,0,0.761905,0.380952 +L 0.761905,0.380952,0.380952,0.761905 + +[] 4 +L 0.380952,0.761905,0,0.380952 +L 0,0.380952,0.380952,0 +L 0.380952,0,0.761905,0.380952 +L 0.761905,0.380952,0.380952,0.761905 + +[] 4 +L 0.380952,0.761905,0,0.380952 +L 0,0.380952,0.380952,0 +L 0.380952,0,0.761905,0.380952 +L 0.761905,0.380952,0.380952,0.761905 + +[#0119] 26 +L 0.380952,1.904762,3.047619,1.904762 +L 3.047619,1.904762,3.047619,2.285714 +L 3.047619,2.285714,2.666667,3.047619 +L 2.666667,3.047619,1.904762,3.428571 +L 1.904762,3.428571,1.142857,3.428571 +L 1.142857,3.428571,0.380952,3.047619 +L 0.380952,3.047619,0,2.285714 +L 0,2.285714,0,1.142857 +L 0,1.142857,0.380952,0.380952 +L 0.380952,0.380952,1.142857,0 +L 1.142857,0,1.904762,0 +L 1.904762,0,2.666667,0.380952 +L 2.666667,0.380952,3.047619,0.761905 +L 2.666667,1.904762,2.666667,2.666667 +L 2.666667,2.666667,1.904762,3.428571 +L 1.142857,3.428571,0.761905,3.047619 +L 0.761905,3.047619,0.380952,2.285714 +L 0.380952,2.285714,0.380952,1.142857 +L 0.380952,1.142857,0.761905,0.380952 +L 0.761905,0.380952,1.142857,0 +L 1.904762,0,1.142857,-0.761905 +L 1.142857,-0.761905,1.142857,-1.52381 +L 1.142857,-1.52381,1.52381,-1.904762 +L 1.52381,-1.904762,1.904762,-1.52381 +L 1.904762,-1.52381,1.52381,-1.142857 +L 1.52381,-1.142857,1.142857,-1.52381 + +[] 4 +L 0.380952,0.761905,0,0.380952 +L 0,0.380952,0.380952,0 +L 0.380952,0,0.761905,0.380952 +L 0.761905,0.380952,0.380952,0.761905 + +[] 4 +L 0.380952,0.761905,0,0.380952 +L 0,0.380952,0.380952,0 +L 0.380952,0,0.761905,0.380952 +L 0.761905,0.380952,0.380952,0.761905 + +[] 4 +L 0.380952,0.761905,0,0.380952 +L 0,0.380952,0.380952,0 +L 0.380952,0,0.761905,0.380952 +L 0.761905,0.380952,0.380952,0.761905 + +[] 4 +L 0.380952,0.761905,0,0.380952 +L 0,0.380952,0.380952,0 +L 0.380952,0,0.761905,0.380952 +L 0.761905,0.380952,0.380952,0.761905 + +[] 4 +L 0.380952,0.761905,0,0.380952 +L 0,0.380952,0.380952,0 +L 0.380952,0,0.761905,0.380952 +L 0.761905,0.380952,0.380952,0.761905 + +[] 4 +L 0.380952,0.761905,0,0.380952 +L 0,0.380952,0.380952,0 +L 0.380952,0,0.761905,0.380952 +L 0.761905,0.380952,0.380952,0.761905 + +[#0144] 20 +L 0.761905,3.428571,0.761905,0 +L 1.142857,3.428571,1.142857,0 +L 1.142857,2.285714,1.52381,3.047619 +L 1.52381,3.047619,2.285714,3.428571 +L 2.285714,3.428571,3.047619,3.428571 +L 3.047619,3.428571,3.809524,3.047619 +L 3.809524,3.047619,4.190476,2.285714 +L 4.190476,2.285714,4.190476,0 +L 3.047619,3.428571,3.428571,3.047619 +L 3.428571,3.047619,3.809524,2.285714 +L 3.809524,2.285714,3.809524,0 +L 0,3.428571,1.142857,3.428571 +L 0,0,1.904762,0 +L 3.047619,0,4.952381,0 +L 3.047619,5.714286,2.666667,5.333333 +L 2.666667,5.333333,2.285714,5.714286 +L 2.285714,5.714286,2.666667,6.095238 +L 2.666667,6.095238,3.047619,5.714286 +L 3.047619,5.714286,3.047619,4.952381 +L 3.047619,4.952381,2.285714,4.190476 + +[] 4 +L 0.380952,0.761905,0,0.380952 +L 0,0.380952,0.380952,0 +L 0.380952,0,0.761905,0.380952 +L 0.761905,0.380952,0.380952,0.761905 + +[#00F3] 28 +L 1.142857,3.428571,0.380952,3.047619 +L 0.380952,3.047619,0,2.285714 +L 0,2.285714,0,1.142857 +L 0,1.142857,0.380952,0.380952 +L 0.380952,0.380952,1.142857,0 +L 1.142857,0,2.285714,0 +L 2.285714,0,3.047619,0.380952 +L 3.047619,0.380952,3.428571,1.142857 +L 3.428571,1.142857,3.428571,2.285714 +L 3.428571,2.285714,3.047619,3.047619 +L 3.047619,3.047619,2.285714,3.428571 +L 2.285714,3.428571,1.142857,3.428571 +L 1.142857,3.428571,0.761905,3.047619 +L 0.761905,3.047619,0.380952,2.285714 +L 0.380952,2.285714,0.380952,1.142857 +L 0.380952,1.142857,0.761905,0.380952 +L 0.761905,0.380952,1.142857,0 +L 2.285714,0,2.666667,0.380952 +L 2.666667,0.380952,3.047619,1.142857 +L 3.047619,1.142857,3.047619,2.285714 +L 3.047619,2.285714,2.666667,3.047619 +L 2.666667,3.047619,2.285714,3.428571 +L 2.285714,5.714286,1.904762,5.333333 +L 1.904762,5.333333,1.52381,5.714286 +L 1.52381,5.714286,1.904762,6.095238 +L 1.904762,6.095238,2.285714,5.714286 +L 2.285714,5.714286,2.285714,4.952381 +L 2.285714,4.952381,1.52381,4.190476 + +#EOF diff --git a/pycam/share/fonts/romand.cxf b/pycam/share/fonts/romand.cxf new file mode 100644 index 00000000..0a8d4d9f --- /dev/null +++ b/pycam/share/fonts/romand.cxf @@ -0,0 +1,4279 @@ +# Format: QCad II Font +# Creator: Adam Radlowski's "dodajf" program - GRASS font translator +# Version: 1.0.0 +# Name: Roman Duplex +# LetterSpacing: 3.0 +# WordSpacing: 6.75 +# LineSpacingFactor: 1.0 +# Author: Hershey fonts +# Author: Adam Radlowski (Polish) + +[!] 16 +L 0.347826,7.304348,0.347826,2.434783 +L 0.347826,2.434783,0.695652,2.434783 +L 0.347826,7.304348,0.695652,7.304348 +L 0.695652,7.304348,0.695652,2.434783 +L 0.347826,1.043478,0,0.695652 +L 0,0.695652,0,0.347826 +L 0,0.347826,0.347826,0 +L 0.347826,0,0.695652,0 +L 0.695652,0,1.043478,0.347826 +L 1.043478,0.347826,1.043478,0.695652 +L 1.043478,0.695652,0.695652,1.043478 +L 0.695652,1.043478,0.347826,1.043478 +L 0.347826,0.695652,0.347826,0.347826 +L 0.347826,0.347826,0.695652,0.347826 +L 0.695652,0.347826,0.695652,0.695652 +L 0.695652,0.695652,0.347826,0.695652 + +["] 10 +L 0.347826,7.304348,0,6.956522 +L 0,6.956522,0,4.869565 +L 0.347826,6.956522,0,4.869565 +L 0.347826,7.304348,0.695652,6.956522 +L 0.695652,6.956522,0,4.869565 +L 3.478261,7.304348,3.130435,6.956522 +L 3.130435,6.956522,3.130435,4.869565 +L 3.478261,6.956522,3.130435,4.869565 +L 3.478261,7.304348,3.826087,6.956522 +L 3.826087,6.956522,3.130435,4.869565 + +[#] 4 +L 2.782609,7.304348,0.347826,-2.434783 +L 4.869565,7.304348,2.434783,-2.434783 +L 0.347826,3.478261,5.217391,3.478261 +L 0,1.391304,4.869565,1.391304 + +[$] 41 +L 2.086957,8.695652,2.086957,-1.391304 +L 2.086957,-1.391304,2.434783,-1.391304 +L 2.086957,8.695652,2.434783,8.695652 +L 2.434783,8.695652,2.434783,-1.391304 +L 3.826087,6.26087,4.521739,6.26087 +L 4.521739,6.26087,3.826087,6.956522 +L 3.826087,6.956522,2.782609,7.304348 +L 2.782609,7.304348,1.73913,7.304348 +L 1.73913,7.304348,0.695652,6.956522 +L 0.695652,6.956522,0,6.26087 +L 0,6.26087,0,5.565217 +L 0,5.565217,0.347826,4.869565 +L 0.347826,4.869565,0.695652,4.521739 +L 0.695652,4.521739,3.478261,3.130435 +L 3.478261,3.130435,3.826087,2.782609 +L 3.826087,2.782609,4.173913,2.086957 +L 4.173913,2.086957,4.173913,1.391304 +L 4.173913,1.391304,3.826087,0.695652 +L 3.826087,0.695652,2.782609,0.347826 +L 2.782609,0.347826,1.73913,0.347826 +L 1.73913,0.347826,1.043478,0.695652 +L 1.043478,0.695652,0.695652,1.043478 +L 3.826087,6.26087,3.478261,6.608696 +L 3.478261,6.608696,2.782609,6.956522 +L 2.782609,6.956522,1.73913,6.956522 +L 1.73913,6.956522,0.695652,6.608696 +L 0.695652,6.608696,0.347826,6.26087 +L 0.347826,6.26087,0.347826,5.565217 +L 0.347826,5.565217,0.695652,4.869565 +L 0.695652,4.869565,3.478261,3.478261 +L 3.478261,3.478261,4.173913,2.782609 +L 4.173913,2.782609,4.521739,2.086957 +L 4.521739,2.086957,4.521739,1.391304 +L 4.521739,1.391304,4.173913,0.695652 +L 4.173913,0.695652,3.826087,0.347826 +L 3.826087,0.347826,2.782609,0 +L 2.782609,0,1.73913,0 +L 1.73913,0,0.695652,0.347826 +L 0.695652,0.347826,0,1.043478 +L 0,1.043478,0.695652,1.043478 +L 4.173913,1.043478,3.130435,0.347826 + +[%] 26 +L 6.26087,7.304348,0,0 +L 1.73913,7.304348,2.434783,6.608696 +L 2.434783,6.608696,2.434783,5.913043 +L 2.434783,5.913043,2.086957,5.217391 +L 2.086957,5.217391,1.391304,4.869565 +L 1.391304,4.869565,0.695652,4.869565 +L 0.695652,4.869565,0,5.565217 +L 0,5.565217,0,6.26087 +L 0,6.26087,0.347826,6.956522 +L 0.347826,6.956522,1.043478,7.304348 +L 1.043478,7.304348,1.73913,7.304348 +L 1.73913,7.304348,2.434783,6.956522 +L 2.434783,6.956522,3.478261,6.608696 +L 3.478261,6.608696,4.521739,6.608696 +L 4.521739,6.608696,5.565217,6.956522 +L 5.565217,6.956522,6.26087,7.304348 +L 4.869565,2.434783,4.173913,2.086957 +L 4.173913,2.086957,3.826087,1.391304 +L 3.826087,1.391304,3.826087,0.695652 +L 3.826087,0.695652,4.521739,0 +L 4.521739,0,5.217391,0 +L 5.217391,0,5.913043,0.347826 +L 5.913043,0.347826,6.26087,1.043478 +L 6.26087,1.043478,6.26087,1.73913 +L 6.26087,1.73913,5.565217,2.434783 +L 5.565217,2.434783,4.869565,2.434783 + +[&] 61 +L 6.608696,4.869565,5.913043,4.869565 +L 5.913043,4.869565,5.217391,4.521739 +L 5.217391,4.521739,4.869565,3.826087 +L 4.869565,3.826087,4.173913,1.73913 +L 4.173913,1.73913,3.826087,1.043478 +L 3.826087,1.043478,3.478261,0.695652 +L 3.478261,0.695652,2.782609,0.347826 +L 2.782609,0.347826,1.391304,0.347826 +L 1.391304,0.347826,0.695652,0.695652 +L 0.695652,0.695652,0.347826,1.391304 +L 0.347826,1.391304,0.347826,2.086957 +L 0.347826,2.086957,0.695652,2.782609 +L 0.695652,2.782609,1.043478,3.130435 +L 1.043478,3.130435,2.782609,4.173913 +L 2.782609,4.173913,3.478261,4.869565 +L 3.478261,4.869565,3.826087,5.565217 +L 3.826087,5.565217,3.826087,6.26087 +L 3.826087,6.26087,3.478261,6.956522 +L 3.478261,6.956522,2.782609,7.304348 +L 2.782609,7.304348,2.434783,7.304348 +L 2.434783,7.304348,1.73913,6.956522 +L 1.73913,6.956522,1.391304,6.26087 +L 1.391304,6.26087,1.391304,5.565217 +L 1.391304,5.565217,1.73913,4.521739 +L 1.73913,4.521739,2.434783,3.478261 +L 2.434783,3.478261,4.173913,1.391304 +L 4.173913,1.391304,5.217391,0.347826 +L 5.217391,0.347826,5.913043,0 +L 5.913043,0,6.608696,0 +L 6.608696,4.869565,6.608696,4.521739 +L 6.608696,4.521739,5.913043,4.521739 +L 5.913043,4.521739,5.217391,4.173913 +L 5.565217,4.521739,5.217391,3.826087 +L 5.217391,3.826087,4.521739,1.73913 +L 4.521739,1.73913,4.173913,1.043478 +L 4.173913,1.043478,3.478261,0.347826 +L 3.478261,0.347826,2.782609,0 +L 2.782609,0,1.391304,0 +L 1.391304,0,0.695652,0.347826 +L 0.695652,0.347826,0.347826,0.695652 +L 0.347826,0.695652,0,1.391304 +L 0,1.391304,0,2.086957 +L 0,2.086957,0.347826,2.782609 +L 0.347826,2.782609,1.043478,3.478261 +L 1.043478,3.478261,2.782609,4.521739 +L 2.782609,4.521739,3.130435,4.869565 +L 3.130435,4.869565,3.478261,5.565217 +L 3.478261,5.565217,3.478261,6.26087 +L 3.478261,6.26087,3.130435,6.956522 +L 3.478261,6.608696,2.782609,6.956522 +L 2.782609,6.956522,2.434783,6.956522 +L 2.434783,6.956522,1.73913,6.608696 +L 2.086957,6.956522,1.73913,6.26087 +L 1.73913,6.26087,1.73913,5.565217 +L 1.73913,5.565217,2.086957,4.521739 +L 2.086957,4.521739,2.782609,3.478261 +L 2.782609,3.478261,4.521739,1.391304 +L 4.521739,1.391304,5.217391,0.695652 +L 5.217391,0.695652,5.913043,0.347826 +L 5.913043,0.347826,6.608696,0.347826 +L 6.608696,0.347826,6.608696,0 + +['] 16 +L 1.043478,6.608696,0.695652,6.26087 +L 0.695652,6.26087,0.347826,6.26087 +L 0.347826,6.26087,0,6.608696 +L 0,6.608696,0,6.956522 +L 0,6.956522,0.347826,7.304348 +L 0.347826,7.304348,0.695652,7.304348 +L 0.695652,7.304348,1.043478,6.956522 +L 1.043478,6.956522,1.043478,5.913043 +L 1.043478,5.913043,0.695652,5.217391 +L 0.695652,5.217391,0,4.869565 +L 0.347826,6.956522,0.347826,6.608696 +L 0.347826,6.608696,0.695652,6.608696 +L 0.695652,6.608696,0.695652,6.956522 +L 0.695652,6.956522,0.347826,6.956522 +L 0.695652,6.26087,1.043478,5.913043 +L 1.043478,6.608696,0.695652,5.217391 + +[(] 20 +L 2.434783,8.695652,1.73913,8 +L 1.73913,8,1.043478,6.956522 +L 1.043478,6.956522,0.347826,5.565217 +L 0.347826,5.565217,0,3.826087 +L 0,3.826087,0,2.434783 +L 0,2.434783,0.347826,0.695652 +L 0.347826,0.695652,1.043478,-0.695652 +L 1.043478,-0.695652,1.73913,-1.73913 +L 1.73913,-1.73913,2.434783,-2.434783 +L 2.434783,-2.434783,2.782609,-2.434783 +L 2.434783,8.695652,2.782609,8.695652 +L 2.782609,8.695652,2.086957,8 +L 2.086957,8,1.391304,6.956522 +L 1.391304,6.956522,0.695652,5.565217 +L 0.695652,5.565217,0.347826,3.826087 +L 0.347826,3.826087,0.347826,2.434783 +L 0.347826,2.434783,0.695652,0.695652 +L 0.695652,0.695652,1.391304,-0.695652 +L 1.391304,-0.695652,2.086957,-1.73913 +L 2.086957,-1.73913,2.782609,-2.434783 + +[)] 20 +L 0,8.695652,0.695652,8 +L 0.695652,8,1.391304,6.956522 +L 1.391304,6.956522,2.086957,5.565217 +L 2.086957,5.565217,2.434783,3.826087 +L 2.434783,3.826087,2.434783,2.434783 +L 2.434783,2.434783,2.086957,0.695652 +L 2.086957,0.695652,1.391304,-0.695652 +L 1.391304,-0.695652,0.695652,-1.73913 +L 0.695652,-1.73913,0,-2.434783 +L 0,-2.434783,0.347826,-2.434783 +L 0,8.695652,0.347826,8.695652 +L 0.347826,8.695652,1.043478,8 +L 1.043478,8,1.73913,6.956522 +L 1.73913,6.956522,2.434783,5.565217 +L 2.434783,5.565217,2.782609,3.826087 +L 2.782609,3.826087,2.782609,2.434783 +L 2.782609,2.434783,2.434783,0.695652 +L 2.434783,0.695652,1.73913,-0.695652 +L 1.73913,-0.695652,1.043478,-1.73913 +L 1.043478,-1.73913,0.347826,-2.434783 + +[*] 21 +L 1.73913,7.304348,1.391304,6.956522 +L 1.391304,6.956522,2.086957,3.478261 +L 2.086957,3.478261,1.73913,3.130435 +L 1.73913,7.304348,1.73913,3.130435 +L 1.73913,7.304348,2.086957,6.956522 +L 2.086957,6.956522,1.391304,3.478261 +L 1.391304,3.478261,1.73913,3.130435 +L 0,6.26087,0.347826,6.26087 +L 0.347826,6.26087,3.130435,4.173913 +L 3.130435,4.173913,3.478261,4.173913 +L 0,6.26087,3.478261,4.173913 +L 0,6.26087,0,5.913043 +L 0,5.913043,3.478261,4.521739 +L 3.478261,4.521739,3.478261,4.173913 +L 3.478261,6.26087,3.130435,6.26087 +L 3.130435,6.26087,0.347826,4.173913 +L 0.347826,4.173913,0,4.173913 +L 3.478261,6.26087,0,4.173913 +L 3.478261,6.26087,3.478261,5.913043 +L 3.478261,5.913043,0,4.521739 +L 0,4.521739,0,4.173913 + +[+] 8 +L 2.782609,6.26087,2.782609,0.347826 +L 2.782609,0.347826,3.130435,0.347826 +L 2.782609,6.26087,3.130435,6.26087 +L 3.130435,6.26087,3.130435,0.347826 +L 0,3.478261,5.913043,3.478261 +L 5.913043,3.478261,5.913043,3.130435 +L 0,3.478261,0,3.130435 +L 0,3.130435,5.913043,3.130435 + +[,] 16 +L 1.043478,0.347826,0.695652,0 +L 0.695652,0,0.347826,0 +L 0.347826,0,0,0.347826 +L 0,0.347826,0,0.695652 +L 0,0.695652,0.347826,1.043478 +L 0.347826,1.043478,0.695652,1.043478 +L 0.695652,1.043478,1.043478,0.695652 +L 1.043478,0.695652,1.043478,-0.347826 +L 1.043478,-0.347826,0.695652,-1.043478 +L 0.695652,-1.043478,0,-1.391304 +L 0.347826,0.695652,0.347826,0.347826 +L 0.347826,0.347826,0.695652,0.347826 +L 0.695652,0.347826,0.695652,0.695652 +L 0.695652,0.695652,0.347826,0.695652 +L 0.695652,0,1.043478,-0.347826 +L 1.043478,0.347826,0.695652,-1.043478 + +[-] 4 +L 0,3.478261,5.913043,3.478261 +L 5.913043,3.478261,5.913043,3.130435 +L 0,3.478261,0,3.130435 +L 0,3.130435,5.913043,3.130435 + +[.] 12 +L 0.347826,1.043478,0,0.695652 +L 0,0.695652,0,0.347826 +L 0,0.347826,0.347826,0 +L 0.347826,0,0.695652,0 +L 0.695652,0,1.043478,0.347826 +L 1.043478,0.347826,1.043478,0.695652 +L 1.043478,0.695652,0.695652,1.043478 +L 0.695652,1.043478,0.347826,1.043478 +L 0.347826,0.695652,0.347826,0.347826 +L 0.347826,0.347826,0.695652,0.347826 +L 0.695652,0.347826,0.695652,0.695652 +L 0.695652,0.695652,0.347826,0.695652 + +[/] 4 +L 2.434783,8.695652,0,-2.434783 +L 0,-2.434783,0,-2.434783 +L 2.434783,8.695652,2.434783,8.695652 +L 2.434783,8.695652,0,-2.434783 + +[0] 32 +L 2.086957,7.304348,1.043478,6.956522 +L 1.043478,6.956522,0.347826,5.913043 +L 0.347826,5.913043,0,4.173913 +L 0,4.173913,0,3.130435 +L 0,3.130435,0.347826,1.391304 +L 0.347826,1.391304,1.043478,0.347826 +L 1.043478,0.347826,2.086957,0 +L 2.086957,0,2.782609,0 +L 2.782609,0,3.826087,0.347826 +L 3.826087,0.347826,4.521739,1.391304 +L 4.521739,1.391304,4.869565,3.130435 +L 4.869565,3.130435,4.869565,4.173913 +L 4.869565,4.173913,4.521739,5.913043 +L 4.521739,5.913043,3.826087,6.956522 +L 3.826087,6.956522,2.782609,7.304348 +L 2.782609,7.304348,2.086957,7.304348 +L 1.391304,6.956522,0.695652,5.913043 +L 0.695652,5.913043,0.347826,4.173913 +L 0.347826,4.173913,0.347826,3.130435 +L 0.347826,3.130435,0.695652,1.391304 +L 0.695652,1.391304,1.391304,0.347826 +L 1.043478,0.695652,2.086957,0.347826 +L 2.086957,0.347826,2.782609,0.347826 +L 2.782609,0.347826,3.826087,0.695652 +L 3.478261,0.347826,4.173913,1.391304 +L 4.173913,1.391304,4.521739,3.130435 +L 4.521739,3.130435,4.521739,4.173913 +L 4.521739,4.173913,4.173913,5.913043 +L 4.173913,5.913043,3.478261,6.956522 +L 3.826087,6.608696,2.782609,6.956522 +L 2.782609,6.956522,2.086957,6.956522 +L 2.086957,6.956522,1.043478,6.608696 + +[1] 8 +L 0,5.913043,0.695652,6.26087 +L 0.695652,6.26087,1.73913,7.304348 +L 1.73913,7.304348,1.73913,0 +L 0,5.913043,0,5.565217 +L 0,5.565217,0.695652,5.913043 +L 0.695652,5.913043,1.391304,6.608696 +L 1.391304,6.608696,1.391304,0 +L 1.391304,0,1.73913,0 + +[2] 26 +L 0.347826,5.565217,0.347826,5.913043 +L 0.347826,5.913043,0.695652,6.608696 +L 0.695652,6.608696,1.043478,6.956522 +L 1.043478,6.956522,1.73913,7.304348 +L 1.73913,7.304348,3.130435,7.304348 +L 3.130435,7.304348,3.826087,6.956522 +L 3.826087,6.956522,4.173913,6.608696 +L 4.173913,6.608696,4.521739,5.913043 +L 4.521739,5.913043,4.521739,5.217391 +L 4.521739,5.217391,4.173913,4.521739 +L 4.173913,4.521739,3.478261,3.478261 +L 3.478261,3.478261,0.347826,0 +L 0.347826,5.565217,0.695652,5.565217 +L 0.695652,5.565217,0.695652,5.913043 +L 0.695652,5.913043,1.043478,6.608696 +L 1.043478,6.608696,1.73913,6.956522 +L 1.73913,6.956522,3.130435,6.956522 +L 3.130435,6.956522,3.826087,6.608696 +L 3.826087,6.608696,4.173913,5.913043 +L 4.173913,5.913043,4.173913,5.217391 +L 4.173913,5.217391,3.826087,4.521739 +L 3.826087,4.521739,3.130435,3.478261 +L 3.130435,3.478261,0,0 +L 0.347826,0.347826,4.869565,0.347826 +L 4.869565,0.347826,4.869565,0 +L 0,0,4.869565,0 + +[3] 32 +L 0.695652,7.304348,4.521739,7.304348 +L 4.521739,7.304348,2.086957,4.173913 +L 0.695652,7.304348,0.695652,6.956522 +L 0.695652,6.956522,4.173913,6.956522 +L 4.173913,7.304348,1.73913,4.173913 +L 2.086957,4.521739,2.782609,4.521739 +L 2.782609,4.521739,3.826087,4.173913 +L 3.826087,4.173913,4.521739,3.478261 +L 4.521739,3.478261,4.869565,2.434783 +L 4.869565,2.434783,4.869565,2.086957 +L 4.869565,2.086957,4.521739,1.043478 +L 4.521739,1.043478,3.826087,0.347826 +L 3.826087,0.347826,2.782609,0 +L 2.782609,0,1.73913,0 +L 1.73913,0,0.695652,0.347826 +L 0.695652,0.347826,0.347826,0.695652 +L 0.347826,0.695652,0,1.391304 +L 0,1.391304,0.347826,1.391304 +L 1.73913,4.173913,2.782609,4.173913 +L 2.782609,4.173913,3.826087,3.826087 +L 3.826087,3.826087,4.521739,2.782609 +L 3.130435,4.173913,4.173913,3.478261 +L 4.173913,3.478261,4.521739,2.434783 +L 4.521739,2.434783,4.521739,2.086957 +L 4.521739,2.086957,4.173913,1.043478 +L 4.173913,1.043478,3.130435,0.347826 +L 4.521739,1.73913,3.826087,0.695652 +L 3.826087,0.695652,2.782609,0.347826 +L 2.782609,0.347826,1.73913,0.347826 +L 1.73913,0.347826,0.695652,0.695652 +L 0.695652,0.695652,0.347826,1.391304 +L 1.391304,0.347826,0.347826,1.043478 + +[4] 8 +L 3.478261,6.26087,3.478261,0 +L 3.478261,0,3.826087,0 +L 3.826087,7.304348,3.826087,0 +L 3.826087,7.304348,0,1.73913 +L 0,1.73913,5.217391,1.73913 +L 3.478261,6.26087,0.347826,1.73913 +L 0.347826,2.086957,5.217391,2.086957 +L 5.217391,2.086957,5.217391,1.73913 + +[5] 35 +L 0.695652,7.304348,0.347826,4.173913 +L 1.043478,6.956522,0.695652,4.521739 +L 0.695652,7.304348,4.173913,7.304348 +L 4.173913,7.304348,4.173913,6.956522 +L 1.043478,6.956522,4.173913,6.956522 +L 0.695652,4.521739,1.73913,4.869565 +L 1.73913,4.869565,2.782609,4.869565 +L 2.782609,4.869565,3.826087,4.521739 +L 3.826087,4.521739,4.521739,3.826087 +L 4.521739,3.826087,4.869565,2.782609 +L 4.869565,2.782609,4.869565,2.086957 +L 4.869565,2.086957,4.521739,1.043478 +L 4.521739,1.043478,3.826087,0.347826 +L 3.826087,0.347826,2.782609,0 +L 2.782609,0,1.73913,0 +L 1.73913,0,0.695652,0.347826 +L 0.695652,0.347826,0.347826,0.695652 +L 0.347826,0.695652,0,1.391304 +L 0,1.391304,0.347826,1.391304 +L 0.347826,4.173913,0.695652,4.173913 +L 0.695652,4.173913,1.391304,4.521739 +L 1.391304,4.521739,2.782609,4.521739 +L 2.782609,4.521739,3.826087,4.173913 +L 3.826087,4.173913,4.521739,3.130435 +L 3.130435,4.521739,4.173913,3.826087 +L 4.173913,3.826087,4.521739,2.782609 +L 4.521739,2.782609,4.521739,2.086957 +L 4.521739,2.086957,4.173913,1.043478 +L 4.173913,1.043478,3.130435,0.347826 +L 4.521739,1.73913,3.826087,0.695652 +L 3.826087,0.695652,2.782609,0.347826 +L 2.782609,0.347826,1.73913,0.347826 +L 1.73913,0.347826,0.695652,0.695652 +L 0.695652,0.695652,0.347826,1.391304 +L 1.391304,0.347826,0.347826,1.043478 + +[6] 48 +L 3.478261,6.956522,3.826087,6.26087 +L 3.826087,6.26087,4.173913,6.26087 +L 4.173913,6.26087,3.826087,6.956522 +L 3.826087,6.956522,2.782609,7.304348 +L 2.782609,7.304348,2.086957,7.304348 +L 2.086957,7.304348,1.043478,6.956522 +L 1.043478,6.956522,0.347826,5.913043 +L 0.347826,5.913043,0,4.173913 +L 0,4.173913,0,2.434783 +L 0,2.434783,0.347826,1.043478 +L 0.347826,1.043478,1.043478,0.347826 +L 1.043478,0.347826,2.086957,0 +L 2.086957,0,2.434783,0 +L 2.434783,0,3.478261,0.347826 +L 3.478261,0.347826,4.173913,1.043478 +L 4.173913,1.043478,4.521739,2.086957 +L 4.521739,2.086957,4.521739,2.434783 +L 4.521739,2.434783,4.173913,3.478261 +L 4.173913,3.478261,3.478261,4.173913 +L 3.478261,4.173913,2.434783,4.521739 +L 2.434783,4.521739,2.086957,4.521739 +L 2.086957,4.521739,1.043478,4.173913 +L 1.043478,4.173913,0.347826,3.478261 +L 3.826087,6.608696,2.782609,6.956522 +L 2.782609,6.956522,2.086957,6.956522 +L 2.086957,6.956522,1.043478,6.608696 +L 1.391304,6.956522,0.695652,5.913043 +L 0.695652,5.913043,0.347826,4.173913 +L 0.347826,4.173913,0.347826,2.434783 +L 0.347826,2.434783,0.695652,1.043478 +L 0.695652,1.043478,1.73913,0.347826 +L 0.347826,1.73913,1.043478,0.695652 +L 1.043478,0.695652,2.086957,0.347826 +L 2.086957,0.347826,2.434783,0.347826 +L 2.434783,0.347826,3.478261,0.695652 +L 3.478261,0.695652,4.173913,1.73913 +L 2.782609,0.347826,3.826087,1.043478 +L 3.826087,1.043478,4.173913,2.086957 +L 4.173913,2.086957,4.173913,2.434783 +L 4.173913,2.434783,3.826087,3.478261 +L 3.826087,3.478261,2.782609,4.173913 +L 4.173913,2.782609,3.478261,3.826087 +L 3.478261,3.826087,2.434783,4.173913 +L 2.434783,4.173913,2.086957,4.173913 +L 2.086957,4.173913,1.043478,3.826087 +L 1.043478,3.826087,0.347826,2.782609 +L 1.73913,4.173913,0.695652,3.478261 +L 0.695652,3.478261,0.347826,2.434783 + +[7] 6 +L 0,7.304348,4.869565,7.304348 +L 4.869565,7.304348,1.391304,0 +L 0,7.304348,0,6.956522 +L 0,6.956522,4.521739,6.956522 +L 4.521739,7.304348,1.043478,0 +L 1.043478,0,1.391304,0 + +[8] 58 +L 1.73913,7.304348,0.695652,6.956522 +L 0.695652,6.956522,0.347826,6.26087 +L 0.347826,6.26087,0.347826,5.565217 +L 0.347826,5.565217,0.695652,4.869565 +L 0.695652,4.869565,1.043478,4.521739 +L 1.043478,4.521739,1.73913,4.173913 +L 1.73913,4.173913,3.130435,3.826087 +L 3.130435,3.826087,3.826087,3.478261 +L 3.826087,3.478261,4.173913,3.130435 +L 4.173913,3.130435,4.521739,2.434783 +L 4.521739,2.434783,4.521739,1.391304 +L 4.521739,1.391304,4.173913,0.695652 +L 4.173913,0.695652,3.130435,0.347826 +L 3.130435,0.347826,1.73913,0.347826 +L 1.73913,0.347826,0.695652,0.695652 +L 0.695652,0.695652,0.347826,1.391304 +L 0.347826,1.391304,0.347826,2.434783 +L 0.347826,2.434783,0.695652,3.130435 +L 0.695652,3.130435,1.043478,3.478261 +L 1.043478,3.478261,1.73913,3.826087 +L 1.73913,3.826087,3.130435,4.173913 +L 3.130435,4.173913,3.826087,4.521739 +L 3.826087,4.521739,4.173913,4.869565 +L 4.173913,4.869565,4.521739,5.565217 +L 4.521739,5.565217,4.521739,6.26087 +L 4.521739,6.26087,4.173913,6.956522 +L 4.173913,6.956522,3.130435,7.304348 +L 3.130435,7.304348,1.73913,7.304348 +L 1.043478,6.956522,0.695652,6.26087 +L 0.695652,6.26087,0.695652,5.565217 +L 0.695652,5.565217,1.043478,4.869565 +L 1.043478,4.869565,1.73913,4.521739 +L 1.73913,4.521739,3.130435,4.173913 +L 3.130435,4.173913,3.826087,3.826087 +L 3.826087,3.826087,4.521739,3.130435 +L 4.521739,3.130435,4.869565,2.434783 +L 4.869565,2.434783,4.869565,1.391304 +L 4.869565,1.391304,4.521739,0.695652 +L 4.521739,0.695652,4.173913,0.347826 +L 4.173913,0.347826,3.130435,0 +L 3.130435,0,1.73913,0 +L 1.73913,0,0.695652,0.347826 +L 0.695652,0.347826,0.347826,0.695652 +L 0.347826,0.695652,0,1.391304 +L 0,1.391304,0,2.434783 +L 0,2.434783,0.347826,3.130435 +L 0.347826,3.130435,1.043478,3.826087 +L 1.043478,3.826087,1.73913,4.173913 +L 1.73913,4.173913,3.130435,4.521739 +L 3.130435,4.521739,3.826087,4.869565 +L 3.826087,4.869565,4.173913,5.565217 +L 4.173913,5.565217,4.173913,6.26087 +L 4.173913,6.26087,3.826087,6.956522 +L 4.173913,6.608696,3.130435,6.956522 +L 3.130435,6.956522,1.73913,6.956522 +L 1.73913,6.956522,0.695652,6.608696 +L 0.347826,1.043478,1.391304,0.347826 +L 3.478261,0.347826,4.521739,1.043478 + +[9] 48 +L 4.173913,3.826087,3.478261,3.130435 +L 3.478261,3.130435,2.434783,2.782609 +L 2.434783,2.782609,2.086957,2.782609 +L 2.086957,2.782609,1.043478,3.130435 +L 1.043478,3.130435,0.347826,3.826087 +L 0.347826,3.826087,0,4.869565 +L 0,4.869565,0,5.217391 +L 0,5.217391,0.347826,6.26087 +L 0.347826,6.26087,1.043478,6.956522 +L 1.043478,6.956522,2.086957,7.304348 +L 2.086957,7.304348,2.434783,7.304348 +L 2.434783,7.304348,3.478261,6.956522 +L 3.478261,6.956522,4.173913,6.26087 +L 4.173913,6.26087,4.521739,4.869565 +L 4.521739,4.869565,4.521739,3.130435 +L 4.521739,3.130435,4.173913,1.391304 +L 4.173913,1.391304,3.478261,0.347826 +L 3.478261,0.347826,2.434783,0 +L 2.434783,0,1.73913,0 +L 1.73913,0,0.695652,0.347826 +L 0.695652,0.347826,0.347826,1.043478 +L 0.347826,1.043478,0.695652,1.043478 +L 0.695652,1.043478,1.043478,0.347826 +L 4.173913,4.869565,3.826087,3.826087 +L 3.826087,3.826087,2.782609,3.130435 +L 4.173913,4.521739,3.478261,3.478261 +L 3.478261,3.478261,2.434783,3.130435 +L 2.434783,3.130435,2.086957,3.130435 +L 2.086957,3.130435,1.043478,3.478261 +L 1.043478,3.478261,0.347826,4.521739 +L 1.73913,3.130435,0.695652,3.826087 +L 0.695652,3.826087,0.347826,4.869565 +L 0.347826,4.869565,0.347826,5.217391 +L 0.347826,5.217391,0.695652,6.26087 +L 0.695652,6.26087,1.73913,6.956522 +L 0.347826,5.565217,1.043478,6.608696 +L 1.043478,6.608696,2.086957,6.956522 +L 2.086957,6.956522,2.434783,6.956522 +L 2.434783,6.956522,3.478261,6.608696 +L 3.478261,6.608696,4.173913,5.565217 +L 2.782609,6.956522,3.826087,6.26087 +L 3.826087,6.26087,4.173913,4.869565 +L 4.173913,4.869565,4.173913,3.130435 +L 4.173913,3.130435,3.826087,1.391304 +L 3.826087,1.391304,3.130435,0.347826 +L 3.478261,0.695652,2.434783,0.347826 +L 2.434783,0.347826,1.73913,0.347826 +L 1.73913,0.347826,0.695652,0.695652 + +[:] 24 +L 0.347826,4.869565,0,4.521739 +L 0,4.521739,0,4.173913 +L 0,4.173913,0.347826,3.826087 +L 0.347826,3.826087,0.695652,3.826087 +L 0.695652,3.826087,1.043478,4.173913 +L 1.043478,4.173913,1.043478,4.521739 +L 1.043478,4.521739,0.695652,4.869565 +L 0.695652,4.869565,0.347826,4.869565 +L 0.347826,4.521739,0.347826,4.173913 +L 0.347826,4.173913,0.695652,4.173913 +L 0.695652,4.173913,0.695652,4.521739 +L 0.695652,4.521739,0.347826,4.521739 +L 0.347826,1.043478,0,0.695652 +L 0,0.695652,0,0.347826 +L 0,0.347826,0.347826,0 +L 0.347826,0,0.695652,0 +L 0.695652,0,1.043478,0.347826 +L 1.043478,0.347826,1.043478,0.695652 +L 1.043478,0.695652,0.695652,1.043478 +L 0.695652,1.043478,0.347826,1.043478 +L 0.347826,0.695652,0.347826,0.347826 +L 0.347826,0.347826,0.695652,0.347826 +L 0.695652,0.347826,0.695652,0.695652 +L 0.695652,0.695652,0.347826,0.695652 + +[;] 28 +L 0.347826,4.869565,0,4.521739 +L 0,4.521739,0,4.173913 +L 0,4.173913,0.347826,3.826087 +L 0.347826,3.826087,0.695652,3.826087 +L 0.695652,3.826087,1.043478,4.173913 +L 1.043478,4.173913,1.043478,4.521739 +L 1.043478,4.521739,0.695652,4.869565 +L 0.695652,4.869565,0.347826,4.869565 +L 0.347826,4.521739,0.347826,4.173913 +L 0.347826,4.173913,0.695652,4.173913 +L 0.695652,4.173913,0.695652,4.521739 +L 0.695652,4.521739,0.347826,4.521739 +L 1.043478,0.347826,0.695652,0 +L 0.695652,0,0.347826,0 +L 0.347826,0,0,0.347826 +L 0,0.347826,0,0.695652 +L 0,0.695652,0.347826,1.043478 +L 0.347826,1.043478,0.695652,1.043478 +L 0.695652,1.043478,1.043478,0.695652 +L 1.043478,0.695652,1.043478,-0.347826 +L 1.043478,-0.347826,0.695652,-1.043478 +L 0.695652,-1.043478,0,-1.391304 +L 0.347826,0.695652,0.347826,0.347826 +L 0.347826,0.347826,0.695652,0.347826 +L 0.695652,0.347826,0.695652,0.695652 +L 0.695652,0.695652,0.347826,0.695652 +L 0.695652,0,1.043478,-0.347826 +L 1.043478,0.347826,0.695652,-1.043478 + +[<] 2 +L 5.565217,6.26087,0,3.130435 +L 0,3.130435,5.565217,0 + +[=] 8 +L 0,4.869565,5.913043,4.869565 +L 5.913043,4.869565,5.913043,4.521739 +L 0,4.869565,0,4.521739 +L 0,4.521739,5.913043,4.521739 +L 0,2.086957,5.913043,2.086957 +L 5.913043,2.086957,5.913043,1.73913 +L 0,2.086957,0,1.73913 +L 0,1.73913,5.913043,1.73913 + +[>] 2 +L 0,6.26087,5.565217,3.130435 +L 5.565217,3.130435,0,0 + +[?] 42 +L 0,5.565217,0,5.913043 +L 0,5.913043,0.347826,6.608696 +L 0.347826,6.608696,0.695652,6.956522 +L 0.695652,6.956522,1.73913,7.304348 +L 1.73913,7.304348,2.782609,7.304348 +L 2.782609,7.304348,3.826087,6.956522 +L 3.826087,6.956522,4.173913,6.608696 +L 4.173913,6.608696,4.521739,5.913043 +L 4.521739,5.913043,4.521739,5.217391 +L 4.521739,5.217391,4.173913,4.521739 +L 4.173913,4.521739,3.826087,4.173913 +L 3.826087,4.173913,3.130435,3.826087 +L 3.130435,3.826087,2.086957,3.478261 +L 0,5.565217,0.347826,5.565217 +L 0.347826,5.565217,0.347826,5.913043 +L 0.347826,5.913043,0.695652,6.608696 +L 0.695652,6.608696,1.73913,6.956522 +L 1.73913,6.956522,2.782609,6.956522 +L 2.782609,6.956522,3.826087,6.608696 +L 3.826087,6.608696,4.173913,5.913043 +L 4.173913,5.913043,4.173913,5.217391 +L 4.173913,5.217391,3.826087,4.521739 +L 3.826087,4.521739,3.130435,4.173913 +L 3.130435,4.173913,2.086957,3.826087 +L 0.347826,6.26087,1.391304,6.956522 +L 3.130435,6.956522,4.173913,6.26087 +L 4.173913,4.869565,2.782609,3.826087 +L 2.086957,3.826087,2.086957,2.434783 +L 2.086957,2.434783,2.434783,2.434783 +L 2.434783,2.434783,2.434783,3.826087 +L 2.086957,1.043478,1.73913,0.695652 +L 1.73913,0.695652,1.73913,0.347826 +L 1.73913,0.347826,2.086957,0 +L 2.086957,0,2.434783,0 +L 2.434783,0,2.782609,0.347826 +L 2.782609,0.347826,2.782609,0.695652 +L 2.782609,0.695652,2.434783,1.043478 +L 2.434783,1.043478,2.086957,1.043478 +L 2.086957,0.695652,2.086957,0.347826 +L 2.086957,0.347826,2.434783,0.347826 +L 2.434783,0.347826,2.434783,0.695652 +L 2.434783,0.695652,2.086957,0.695652 + +[@] 48 +L 5.217391,4.521739,4.869565,5.217391 +L 4.869565,5.217391,4.173913,5.565217 +L 4.173913,5.565217,3.130435,5.565217 +L 3.130435,5.565217,2.434783,5.217391 +L 2.434783,5.217391,2.086957,4.869565 +L 2.086957,4.869565,1.73913,3.826087 +L 1.73913,3.826087,1.73913,2.782609 +L 1.73913,2.782609,2.086957,2.086957 +L 2.086957,2.086957,2.782609,1.73913 +L 2.782609,1.73913,3.826087,1.73913 +L 3.826087,1.73913,4.521739,2.086957 +L 4.521739,2.086957,4.869565,2.782609 +L 3.130435,5.565217,2.434783,4.869565 +L 2.434783,4.869565,2.086957,3.826087 +L 2.086957,3.826087,2.086957,2.782609 +L 2.086957,2.782609,2.434783,2.086957 +L 2.434783,2.086957,2.782609,1.73913 +L 5.217391,5.565217,4.869565,2.782609 +L 4.869565,2.782609,4.869565,2.086957 +L 4.869565,2.086957,5.565217,1.73913 +L 5.565217,1.73913,6.26087,1.73913 +L 6.26087,1.73913,6.956522,2.434783 +L 6.956522,2.434783,7.304348,3.478261 +L 7.304348,3.478261,7.304348,4.173913 +L 7.304348,4.173913,6.956522,5.217391 +L 6.956522,5.217391,6.608696,5.913043 +L 6.608696,5.913043,5.913043,6.608696 +L 5.913043,6.608696,5.217391,6.956522 +L 5.217391,6.956522,4.173913,7.304348 +L 4.173913,7.304348,3.130435,7.304348 +L 3.130435,7.304348,2.086957,6.956522 +L 2.086957,6.956522,1.391304,6.608696 +L 1.391304,6.608696,0.695652,5.913043 +L 0.695652,5.913043,0.347826,5.217391 +L 0.347826,5.217391,0,4.173913 +L 0,4.173913,0,3.130435 +L 0,3.130435,0.347826,2.086957 +L 0.347826,2.086957,0.695652,1.391304 +L 0.695652,1.391304,1.391304,0.695652 +L 1.391304,0.695652,2.086957,0.347826 +L 2.086957,0.347826,3.130435,0 +L 3.130435,0,4.173913,0 +L 4.173913,0,5.217391,0.347826 +L 5.217391,0.347826,5.913043,0.695652 +L 5.913043,0.695652,6.26087,1.043478 +L 5.565217,5.565217,5.217391,2.782609 +L 5.217391,2.782609,5.217391,2.086957 +L 5.217391,2.086957,5.565217,1.73913 + +[A] 8 +L 2.782609,7.304348,0,0 +L 2.782609,6.26087,0.347826,0 +L 0.347826,0,0,0 +L 2.782609,6.26087,5.217391,0 +L 5.217391,0,5.565217,0 +L 2.782609,7.304348,5.565217,0 +L 1.043478,2.086957,4.521739,2.086957 +L 0.695652,1.73913,4.869565,1.73913 + +[B] 32 +L 0,7.304348,0,0 +L 0.347826,6.956522,0.347826,0.347826 +L 0,7.304348,2.782609,7.304348 +L 2.782609,7.304348,3.826087,6.956522 +L 3.826087,6.956522,4.173913,6.608696 +L 4.173913,6.608696,4.521739,5.913043 +L 4.521739,5.913043,4.521739,4.869565 +L 4.521739,4.869565,4.173913,4.173913 +L 4.173913,4.173913,3.826087,3.826087 +L 3.826087,3.826087,2.782609,3.478261 +L 0.347826,6.956522,2.782609,6.956522 +L 2.782609,6.956522,3.826087,6.608696 +L 3.826087,6.608696,4.173913,5.913043 +L 4.173913,5.913043,4.173913,4.869565 +L 4.173913,4.869565,3.826087,4.173913 +L 3.826087,4.173913,2.782609,3.826087 +L 0.347826,3.826087,2.782609,3.826087 +L 2.782609,3.826087,3.826087,3.478261 +L 3.826087,3.478261,4.173913,3.130435 +L 4.173913,3.130435,4.521739,2.434783 +L 4.521739,2.434783,4.521739,1.391304 +L 4.521739,1.391304,4.173913,0.695652 +L 4.173913,0.695652,3.826087,0.347826 +L 3.826087,0.347826,2.782609,0 +L 2.782609,0,0,0 +L 0.347826,3.478261,2.782609,3.478261 +L 2.782609,3.478261,3.826087,3.130435 +L 3.826087,3.130435,4.173913,2.434783 +L 4.173913,2.434783,4.173913,1.391304 +L 4.173913,1.391304,3.826087,0.695652 +L 3.826087,0.695652,2.782609,0.347826 +L 2.782609,0.347826,0.347826,0.347826 + +[C] 34 +L 5.217391,5.565217,4.869565,6.26087 +L 4.869565,6.26087,4.173913,6.956522 +L 4.173913,6.956522,3.478261,7.304348 +L 3.478261,7.304348,2.086957,7.304348 +L 2.086957,7.304348,1.391304,6.956522 +L 1.391304,6.956522,0.695652,6.26087 +L 0.695652,6.26087,0.347826,5.565217 +L 0.347826,5.565217,0,4.521739 +L 0,4.521739,0,2.782609 +L 0,2.782609,0.347826,1.73913 +L 0.347826,1.73913,0.695652,1.043478 +L 0.695652,1.043478,1.391304,0.347826 +L 1.391304,0.347826,2.086957,0 +L 2.086957,0,3.478261,0 +L 3.478261,0,4.173913,0.347826 +L 4.173913,0.347826,4.869565,1.043478 +L 4.869565,1.043478,5.217391,1.73913 +L 5.217391,5.565217,4.869565,5.565217 +L 4.869565,5.565217,4.521739,6.26087 +L 4.521739,6.26087,4.173913,6.608696 +L 4.173913,6.608696,3.478261,6.956522 +L 3.478261,6.956522,2.086957,6.956522 +L 2.086957,6.956522,1.391304,6.608696 +L 1.391304,6.608696,0.695652,5.565217 +L 0.695652,5.565217,0.347826,4.521739 +L 0.347826,4.521739,0.347826,2.782609 +L 0.347826,2.782609,0.695652,1.73913 +L 0.695652,1.73913,1.391304,0.695652 +L 1.391304,0.695652,2.086957,0.347826 +L 2.086957,0.347826,3.478261,0.347826 +L 3.478261,0.347826,4.173913,0.695652 +L 4.173913,0.695652,4.521739,1.043478 +L 4.521739,1.043478,4.869565,1.73913 +L 4.869565,1.73913,5.217391,1.73913 + +[D] 24 +L 0,7.304348,0,0 +L 0.347826,6.956522,0.347826,0.347826 +L 0,7.304348,2.434783,7.304348 +L 2.434783,7.304348,3.478261,6.956522 +L 3.478261,6.956522,4.173913,6.26087 +L 4.173913,6.26087,4.521739,5.565217 +L 4.521739,5.565217,4.869565,4.521739 +L 4.869565,4.521739,4.869565,2.782609 +L 4.869565,2.782609,4.521739,1.73913 +L 4.521739,1.73913,4.173913,1.043478 +L 4.173913,1.043478,3.478261,0.347826 +L 3.478261,0.347826,2.434783,0 +L 2.434783,0,0,0 +L 0.347826,6.956522,2.434783,6.956522 +L 2.434783,6.956522,3.478261,6.608696 +L 3.478261,6.608696,3.826087,6.26087 +L 3.826087,6.26087,4.173913,5.565217 +L 4.173913,5.565217,4.521739,4.521739 +L 4.521739,4.521739,4.521739,2.782609 +L 4.521739,2.782609,4.173913,1.73913 +L 4.173913,1.73913,3.826087,1.043478 +L 3.826087,1.043478,3.478261,0.695652 +L 3.478261,0.695652,2.434783,0.347826 +L 2.434783,0.347826,0.347826,0.347826 + +[E] 11 +L 0,7.304348,0,0 +L 0.347826,6.956522,0.347826,0.347826 +L 0,7.304348,4.173913,7.304348 +L 0.347826,6.956522,4.173913,6.956522 +L 4.173913,6.956522,4.173913,7.304348 +L 0.347826,3.826087,2.434783,3.826087 +L 2.434783,3.826087,2.434783,3.478261 +L 0.347826,3.478261,2.434783,3.478261 +L 0.347826,0.347826,4.173913,0.347826 +L 4.173913,0.347826,4.173913,0 +L 0,0,4.173913,0 + +[F] 9 +L 0,7.304348,0,0 +L 0.347826,6.956522,0.347826,0 +L 0.347826,0,0,0 +L 0,7.304348,4.173913,7.304348 +L 0.347826,6.956522,4.173913,6.956522 +L 4.173913,6.956522,4.173913,7.304348 +L 0.347826,3.826087,2.434783,3.826087 +L 2.434783,3.826087,2.434783,3.478261 +L 0.347826,3.478261,2.434783,3.478261 + +[G] 40 +L 5.217391,5.565217,4.869565,6.26087 +L 4.869565,6.26087,4.173913,6.956522 +L 4.173913,6.956522,3.478261,7.304348 +L 3.478261,7.304348,2.086957,7.304348 +L 2.086957,7.304348,1.391304,6.956522 +L 1.391304,6.956522,0.695652,6.26087 +L 0.695652,6.26087,0.347826,5.565217 +L 0.347826,5.565217,0,4.521739 +L 0,4.521739,0,2.782609 +L 0,2.782609,0.347826,1.73913 +L 0.347826,1.73913,0.695652,1.043478 +L 0.695652,1.043478,1.391304,0.347826 +L 1.391304,0.347826,2.086957,0 +L 2.086957,0,3.478261,0 +L 3.478261,0,4.173913,0.347826 +L 4.173913,0.347826,4.869565,1.043478 +L 4.869565,1.043478,5.217391,1.73913 +L 5.217391,1.73913,5.217391,3.130435 +L 5.217391,3.130435,3.478261,3.130435 +L 5.217391,5.565217,4.869565,5.565217 +L 4.869565,5.565217,4.521739,6.26087 +L 4.521739,6.26087,4.173913,6.608696 +L 4.173913,6.608696,3.478261,6.956522 +L 3.478261,6.956522,2.086957,6.956522 +L 2.086957,6.956522,1.391304,6.608696 +L 1.391304,6.608696,1.043478,6.26087 +L 1.043478,6.26087,0.695652,5.565217 +L 0.695652,5.565217,0.347826,4.521739 +L 0.347826,4.521739,0.347826,2.782609 +L 0.347826,2.782609,0.695652,1.73913 +L 0.695652,1.73913,1.043478,1.043478 +L 1.043478,1.043478,1.391304,0.695652 +L 1.391304,0.695652,2.086957,0.347826 +L 2.086957,0.347826,3.478261,0.347826 +L 3.478261,0.347826,4.173913,0.695652 +L 4.173913,0.695652,4.521739,1.043478 +L 4.521739,1.043478,4.869565,1.73913 +L 4.869565,1.73913,4.869565,2.782609 +L 4.869565,2.782609,3.478261,2.782609 +L 3.478261,2.782609,3.478261,3.130435 + +[H] 10 +L 0,7.304348,0,0 +L 0,7.304348,0.347826,7.304348 +L 0.347826,7.304348,0.347826,0 +L 0.347826,0,0,0 +L 4.869565,7.304348,4.521739,7.304348 +L 4.521739,7.304348,4.521739,0 +L 4.521739,0,4.869565,0 +L 4.869565,7.304348,4.869565,0 +L 0.347826,3.826087,4.521739,3.826087 +L 0.347826,3.478261,4.521739,3.478261 + +[I] 4 +L 0,7.304348,0,0 +L 0,0,0.347826,0 +L 0,7.304348,0.347826,7.304348 +L 0.347826,7.304348,0.347826,0 + +[J] 16 +L 3.130435,7.304348,3.130435,1.73913 +L 3.130435,1.73913,2.782609,0.695652 +L 2.782609,0.695652,2.086957,0.347826 +L 2.086957,0.347826,1.391304,0.347826 +L 1.391304,0.347826,0.695652,0.695652 +L 0.695652,0.695652,0.347826,1.73913 +L 0.347826,1.73913,0,1.73913 +L 3.130435,7.304348,3.478261,7.304348 +L 3.478261,7.304348,3.478261,1.73913 +L 3.478261,1.73913,3.130435,0.695652 +L 3.130435,0.695652,2.782609,0.347826 +L 2.782609,0.347826,2.086957,0 +L 2.086957,0,1.391304,0 +L 1.391304,0,0.695652,0.347826 +L 0.695652,0.347826,0.347826,0.695652 +L 0.347826,0.695652,0,1.73913 + +[K] 10 +L 0,7.304348,0,0 +L 0,0,0.347826,0 +L 0,7.304348,0.347826,7.304348 +L 0.347826,7.304348,0.347826,0 +L 4.869565,7.304348,4.521739,7.304348 +L 4.521739,7.304348,0.347826,3.130435 +L 4.869565,7.304348,0.347826,2.782609 +L 1.391304,4.173913,4.521739,0 +L 4.521739,0,4.869565,0 +L 1.73913,4.173913,4.869565,0 + +[L] 6 +L 0,7.304348,0,0 +L 0,7.304348,0.347826,7.304348 +L 0.347826,7.304348,0.347826,0.347826 +L 0.347826,0.347826,4.173913,0.347826 +L 4.173913,0.347826,4.173913,0 +L 0,0,4.173913,0 + +[M] 10 +L 0,7.304348,0,0 +L 0.347826,5.565217,0.347826,0 +L 0.347826,0,0,0 +L 0.347826,5.565217,2.782609,0 +L 0,7.304348,2.782609,1.043478 +L 5.565217,7.304348,2.782609,1.043478 +L 5.217391,5.565217,2.782609,0 +L 5.217391,5.565217,5.217391,0 +L 5.217391,0,5.565217,0 +L 5.565217,7.304348,5.565217,0 + +[N] 8 +L 0,7.304348,0,0 +L 0.347826,6.26087,0.347826,0 +L 0.347826,0,0,0 +L 0.347826,6.26087,4.869565,0 +L 0,7.304348,4.521739,1.043478 +L 4.521739,7.304348,4.521739,1.043478 +L 4.521739,7.304348,4.869565,7.304348 +L 4.869565,7.304348,4.869565,0 + +[O] 36 +L 2.086957,7.304348,1.391304,6.956522 +L 1.391304,6.956522,0.695652,6.26087 +L 0.695652,6.26087,0.347826,5.565217 +L 0.347826,5.565217,0,4.521739 +L 0,4.521739,0,2.782609 +L 0,2.782609,0.347826,1.73913 +L 0.347826,1.73913,0.695652,1.043478 +L 0.695652,1.043478,1.391304,0.347826 +L 1.391304,0.347826,2.086957,0 +L 2.086957,0,3.478261,0 +L 3.478261,0,4.173913,0.347826 +L 4.173913,0.347826,4.869565,1.043478 +L 4.869565,1.043478,5.217391,1.73913 +L 5.217391,1.73913,5.565217,2.782609 +L 5.565217,2.782609,5.565217,4.521739 +L 5.565217,4.521739,5.217391,5.565217 +L 5.217391,5.565217,4.869565,6.26087 +L 4.869565,6.26087,4.173913,6.956522 +L 4.173913,6.956522,3.478261,7.304348 +L 3.478261,7.304348,2.086957,7.304348 +L 2.434783,6.956522,1.391304,6.608696 +L 1.391304,6.608696,0.695652,5.565217 +L 0.695652,5.565217,0.347826,4.521739 +L 0.347826,4.521739,0.347826,2.782609 +L 0.347826,2.782609,0.695652,1.73913 +L 0.695652,1.73913,1.391304,0.695652 +L 1.391304,0.695652,2.434783,0.347826 +L 2.434783,0.347826,3.130435,0.347826 +L 3.130435,0.347826,4.173913,0.695652 +L 4.173913,0.695652,4.869565,1.73913 +L 4.869565,1.73913,5.217391,2.782609 +L 5.217391,2.782609,5.217391,4.521739 +L 5.217391,4.521739,4.869565,5.565217 +L 4.869565,5.565217,4.173913,6.608696 +L 4.173913,6.608696,3.130435,6.956522 +L 3.130435,6.956522,2.434783,6.956522 + +[P] 19 +L 0,7.304348,0,0 +L 0.347826,6.956522,0.347826,0 +L 0.347826,0,0,0 +L 0,7.304348,3.130435,7.304348 +L 3.130435,7.304348,3.826087,6.956522 +L 3.826087,6.956522,4.173913,6.608696 +L 4.173913,6.608696,4.521739,5.913043 +L 4.521739,5.913043,4.521739,4.869565 +L 4.521739,4.869565,4.173913,4.173913 +L 4.173913,4.173913,3.826087,3.826087 +L 3.826087,3.826087,3.130435,3.478261 +L 3.130435,3.478261,0.347826,3.478261 +L 0.347826,6.956522,3.130435,6.956522 +L 3.130435,6.956522,3.826087,6.608696 +L 3.826087,6.608696,4.173913,5.913043 +L 4.173913,5.913043,4.173913,4.869565 +L 4.173913,4.869565,3.826087,4.173913 +L 3.826087,4.173913,3.130435,3.826087 +L 3.130435,3.826087,0.347826,3.826087 + +[Q] 40 +L 2.086957,7.304348,1.391304,6.956522 +L 1.391304,6.956522,0.695652,6.26087 +L 0.695652,6.26087,0.347826,5.565217 +L 0.347826,5.565217,0,4.521739 +L 0,4.521739,0,2.782609 +L 0,2.782609,0.347826,1.73913 +L 0.347826,1.73913,0.695652,1.043478 +L 0.695652,1.043478,1.391304,0.347826 +L 1.391304,0.347826,2.086957,0 +L 2.086957,0,3.478261,0 +L 3.478261,0,4.173913,0.347826 +L 4.173913,0.347826,4.869565,1.043478 +L 4.869565,1.043478,5.217391,1.73913 +L 5.217391,1.73913,5.565217,2.782609 +L 5.565217,2.782609,5.565217,4.521739 +L 5.565217,4.521739,5.217391,5.565217 +L 5.217391,5.565217,4.869565,6.26087 +L 4.869565,6.26087,4.173913,6.956522 +L 4.173913,6.956522,3.478261,7.304348 +L 3.478261,7.304348,2.086957,7.304348 +L 2.434783,6.956522,1.391304,6.608696 +L 1.391304,6.608696,0.695652,5.565217 +L 0.695652,5.565217,0.347826,4.521739 +L 0.347826,4.521739,0.347826,2.782609 +L 0.347826,2.782609,0.695652,1.73913 +L 0.695652,1.73913,1.391304,0.695652 +L 1.391304,0.695652,2.434783,0.347826 +L 2.434783,0.347826,3.130435,0.347826 +L 3.130435,0.347826,4.173913,0.695652 +L 4.173913,0.695652,4.869565,1.73913 +L 4.869565,1.73913,5.217391,2.782609 +L 5.217391,2.782609,5.217391,4.521739 +L 5.217391,4.521739,4.869565,5.565217 +L 4.869565,5.565217,4.173913,6.608696 +L 4.173913,6.608696,3.130435,6.956522 +L 3.130435,6.956522,2.434783,6.956522 +L 3.130435,1.043478,4.869565,-0.695652 +L 4.869565,-0.695652,5.217391,-0.695652 +L 3.130435,1.043478,3.478261,1.043478 +L 3.478261,1.043478,5.217391,-0.695652 + +[R] 22 +L 0,7.304348,0,0 +L 0.347826,6.956522,0.347826,0 +L 0.347826,0,0,0 +L 0,7.304348,2.782609,7.304348 +L 2.782609,7.304348,3.826087,6.956522 +L 3.826087,6.956522,4.173913,6.608696 +L 4.173913,6.608696,4.521739,5.913043 +L 4.521739,5.913043,4.521739,4.869565 +L 4.521739,4.869565,4.173913,4.173913 +L 4.173913,4.173913,3.826087,3.826087 +L 3.826087,3.826087,2.782609,3.478261 +L 2.782609,3.478261,0.347826,3.478261 +L 0.347826,6.956522,2.782609,6.956522 +L 2.782609,6.956522,3.826087,6.608696 +L 3.826087,6.608696,4.173913,5.913043 +L 4.173913,5.913043,4.173913,4.869565 +L 4.173913,4.869565,3.826087,4.173913 +L 3.826087,4.173913,2.782609,3.826087 +L 2.782609,3.826087,0.347826,3.826087 +L 2.086957,3.478261,4.173913,0 +L 4.173913,0,4.521739,0 +L 2.434783,3.478261,4.521739,0 + +[S] 39 +L 4.869565,6.26087,4.173913,6.956522 +L 4.173913,6.956522,3.130435,7.304348 +L 3.130435,7.304348,1.73913,7.304348 +L 1.73913,7.304348,0.695652,6.956522 +L 0.695652,6.956522,0,6.26087 +L 0,6.26087,0,5.565217 +L 0,5.565217,0.347826,4.869565 +L 0.347826,4.869565,0.695652,4.521739 +L 0.695652,4.521739,1.391304,4.173913 +L 1.391304,4.173913,3.130435,3.478261 +L 3.130435,3.478261,3.826087,3.130435 +L 3.826087,3.130435,4.173913,2.782609 +L 4.173913,2.782609,4.521739,2.086957 +L 4.521739,2.086957,4.521739,1.043478 +L 4.521739,1.043478,4.173913,0.695652 +L 4.173913,0.695652,3.130435,0.347826 +L 3.130435,0.347826,1.73913,0.347826 +L 1.73913,0.347826,1.043478,0.695652 +L 1.043478,0.695652,0.695652,1.043478 +L 0.695652,1.043478,0,1.043478 +L 4.869565,6.26087,4.173913,6.26087 +L 4.173913,6.26087,3.826087,6.608696 +L 3.826087,6.608696,3.130435,6.956522 +L 3.130435,6.956522,1.73913,6.956522 +L 1.73913,6.956522,0.695652,6.608696 +L 0.695652,6.608696,0.347826,6.26087 +L 0.347826,6.26087,0.347826,5.565217 +L 0.347826,5.565217,0.695652,4.869565 +L 0.695652,4.869565,1.391304,4.521739 +L 1.391304,4.521739,3.130435,3.826087 +L 3.130435,3.826087,3.826087,3.478261 +L 3.826087,3.478261,4.521739,2.782609 +L 4.521739,2.782609,4.869565,2.086957 +L 4.869565,2.086957,4.869565,1.043478 +L 4.869565,1.043478,4.173913,0.347826 +L 4.173913,0.347826,3.130435,0 +L 3.130435,0,1.73913,0 +L 1.73913,0,0.695652,0.347826 +L 0.695652,0.347826,0,1.043478 + +[T] 7 +L 2.086957,6.956522,2.086957,0 +L 2.434783,6.956522,2.434783,0 +L 2.434783,0,2.086957,0 +L 0,7.304348,4.521739,7.304348 +L 4.521739,7.304348,4.521739,6.956522 +L 0,7.304348,0,6.956522 +L 0,6.956522,4.521739,6.956522 + +[U] 20 +L 0,7.304348,0,2.086957 +L 0,2.086957,0.347826,1.043478 +L 0.347826,1.043478,1.043478,0.347826 +L 1.043478,0.347826,2.086957,0 +L 2.086957,0,2.782609,0 +L 2.782609,0,3.826087,0.347826 +L 3.826087,0.347826,4.521739,1.043478 +L 4.521739,1.043478,4.869565,2.086957 +L 4.869565,2.086957,4.869565,7.304348 +L 0,7.304348,0.347826,7.304348 +L 0.347826,7.304348,0.347826,2.086957 +L 0.347826,2.086957,0.695652,1.043478 +L 0.695652,1.043478,1.043478,0.695652 +L 1.043478,0.695652,2.086957,0.347826 +L 2.086957,0.347826,2.782609,0.347826 +L 2.782609,0.347826,3.826087,0.695652 +L 3.826087,0.695652,4.173913,1.043478 +L 4.173913,1.043478,4.521739,2.086957 +L 4.521739,2.086957,4.521739,7.304348 +L 4.521739,7.304348,4.869565,7.304348 + +[V] 6 +L 0,7.304348,2.782609,0 +L 0,7.304348,0.347826,7.304348 +L 0.347826,7.304348,2.782609,1.043478 +L 5.565217,7.304348,5.217391,7.304348 +L 5.217391,7.304348,2.782609,1.043478 +L 5.565217,7.304348,2.782609,0 + +[W] 10 +L 0,7.304348,2.086957,0 +L 0,7.304348,0.347826,7.304348 +L 0.347826,7.304348,2.086957,1.043478 +L 3.826087,7.304348,2.086957,1.043478 +L 3.826087,6.26087,2.086957,0 +L 3.826087,6.26087,5.565217,0 +L 3.826087,7.304348,5.565217,1.043478 +L 7.652174,7.304348,7.304348,7.304348 +L 7.304348,7.304348,5.565217,1.043478 +L 7.652174,7.304348,5.565217,0 + +[X] 8 +L 0,7.304348,4.521739,0 +L 4.521739,0,4.869565,0 +L 0,7.304348,0.347826,7.304348 +L 0.347826,7.304348,4.869565,0 +L 4.869565,7.304348,4.521739,7.304348 +L 4.521739,7.304348,0,0 +L 4.869565,7.304348,0.347826,0 +L 0.347826,0,0,0 + +[Y] 9 +L 0,7.304348,2.434783,3.826087 +L 2.434783,3.826087,2.434783,0 +L 2.434783,0,2.782609,0 +L 0,7.304348,0.347826,7.304348 +L 0.347826,7.304348,2.782609,3.826087 +L 5.217391,7.304348,4.869565,7.304348 +L 4.869565,7.304348,2.434783,3.826087 +L 5.217391,7.304348,2.782609,3.826087 +L 2.782609,3.826087,2.782609,0 + +[Z] 8 +L 4.521739,7.304348,0,0 +L 4.869565,7.304348,0.347826,0 +L 0,7.304348,4.869565,7.304348 +L 0,7.304348,0,6.956522 +L 0,6.956522,4.521739,6.956522 +L 0.347826,0.347826,4.869565,0.347826 +L 4.869565,0.347826,4.869565,0 +L 0,0,4.869565,0 + +[[] 4 +L 0,8.695652,0,-2.434783 +L 0.347826,8.695652,0.347826,-2.434783 +L 0,8.695652,2.434783,8.695652 +L 0,-2.434783,2.434783,-2.434783 + +[\] 1 +L 0,7.304348,4.869565,-1.043478 + +[]] 4 +L 2.086957,8.695652,2.086957,-2.434783 +L 2.434783,8.695652,2.434783,-2.434783 +L 0,8.695652,2.434783,8.695652 +L 0,-2.434783,2.434783,-2.434783 + +[^] 5 +L 1.043478,5.217391,1.73913,6.26087 +L 1.73913,6.26087,2.434783,5.217391 +L 0,4.173913,1.73913,5.913043 +L 1.73913,5.913043,3.478261,4.173913 +L 1.73913,5.913043,1.73913,0 + +[_] 1 +L 0,-0.695652,5.565217,-0.695652 + +[`] 16 +L 1.043478,7.304348,0.347826,6.956522 +L 0.347826,6.956522,0,6.26087 +L 0,6.26087,0,5.217391 +L 0,5.217391,0.347826,4.869565 +L 0.347826,4.869565,0.695652,4.869565 +L 0.695652,4.869565,1.043478,5.217391 +L 1.043478,5.217391,1.043478,5.565217 +L 1.043478,5.565217,0.695652,5.913043 +L 0.695652,5.913043,0.347826,5.913043 +L 0.347826,5.913043,0,5.565217 +L 0.347826,5.565217,0.347826,5.217391 +L 0.347826,5.217391,0.695652,5.217391 +L 0.695652,5.217391,0.695652,5.565217 +L 0.695652,5.565217,0.347826,5.565217 +L 0.347826,6.956522,0,5.565217 +L 0,6.26087,0.347826,5.913043 + +[a] 28 +L 4.173913,4.869565,4.173913,0 +L 4.173913,0,4.521739,0 +L 4.173913,4.869565,4.521739,4.869565 +L 4.521739,4.869565,4.521739,0 +L 4.173913,3.826087,3.478261,4.521739 +L 3.478261,4.521739,2.782609,4.869565 +L 2.782609,4.869565,1.73913,4.869565 +L 1.73913,4.869565,1.043478,4.521739 +L 1.043478,4.521739,0.347826,3.826087 +L 0.347826,3.826087,0,2.782609 +L 0,2.782609,0,2.086957 +L 0,2.086957,0.347826,1.043478 +L 0.347826,1.043478,1.043478,0.347826 +L 1.043478,0.347826,1.73913,0 +L 1.73913,0,2.782609,0 +L 2.782609,0,3.478261,0.347826 +L 3.478261,0.347826,4.173913,1.043478 +L 4.173913,3.826087,2.782609,4.521739 +L 2.782609,4.521739,1.73913,4.521739 +L 1.73913,4.521739,1.043478,4.173913 +L 1.043478,4.173913,0.695652,3.826087 +L 0.695652,3.826087,0.347826,2.782609 +L 0.347826,2.782609,0.347826,2.086957 +L 0.347826,2.086957,0.695652,1.043478 +L 0.695652,1.043478,1.043478,0.695652 +L 1.043478,0.695652,1.73913,0.347826 +L 1.73913,0.347826,2.782609,0.347826 +L 2.782609,0.347826,4.173913,1.043478 + +[b] 28 +L 0,7.304348,0,0 +L 0,0,0.347826,0 +L 0,7.304348,0.347826,7.304348 +L 0.347826,7.304348,0.347826,0 +L 0.347826,3.826087,1.043478,4.521739 +L 1.043478,4.521739,1.73913,4.869565 +L 1.73913,4.869565,2.782609,4.869565 +L 2.782609,4.869565,3.478261,4.521739 +L 3.478261,4.521739,4.173913,3.826087 +L 4.173913,3.826087,4.521739,2.782609 +L 4.521739,2.782609,4.521739,2.086957 +L 4.521739,2.086957,4.173913,1.043478 +L 4.173913,1.043478,3.478261,0.347826 +L 3.478261,0.347826,2.782609,0 +L 2.782609,0,1.73913,0 +L 1.73913,0,1.043478,0.347826 +L 1.043478,0.347826,0.347826,1.043478 +L 0.347826,3.826087,1.73913,4.521739 +L 1.73913,4.521739,2.782609,4.521739 +L 2.782609,4.521739,3.478261,4.173913 +L 3.478261,4.173913,3.826087,3.826087 +L 3.826087,3.826087,4.173913,2.782609 +L 4.173913,2.782609,4.173913,2.086957 +L 4.173913,2.086957,3.826087,1.043478 +L 3.826087,1.043478,3.478261,0.695652 +L 3.478261,0.695652,2.782609,0.347826 +L 2.782609,0.347826,1.73913,0.347826 +L 1.73913,0.347826,0.347826,1.043478 + +[c] 28 +L 4.173913,3.826087,3.478261,4.521739 +L 3.478261,4.521739,2.782609,4.869565 +L 2.782609,4.869565,1.73913,4.869565 +L 1.73913,4.869565,1.043478,4.521739 +L 1.043478,4.521739,0.347826,3.826087 +L 0.347826,3.826087,0,2.782609 +L 0,2.782609,0,2.086957 +L 0,2.086957,0.347826,1.043478 +L 0.347826,1.043478,1.043478,0.347826 +L 1.043478,0.347826,1.73913,0 +L 1.73913,0,2.782609,0 +L 2.782609,0,3.478261,0.347826 +L 3.478261,0.347826,4.173913,1.043478 +L 4.173913,3.826087,3.826087,3.478261 +L 3.826087,3.478261,3.478261,4.173913 +L 3.478261,4.173913,2.782609,4.521739 +L 2.782609,4.521739,1.73913,4.521739 +L 1.73913,4.521739,1.043478,4.173913 +L 1.043478,4.173913,0.695652,3.826087 +L 0.695652,3.826087,0.347826,2.782609 +L 0.347826,2.782609,0.347826,2.086957 +L 0.347826,2.086957,0.695652,1.043478 +L 0.695652,1.043478,1.043478,0.695652 +L 1.043478,0.695652,1.73913,0.347826 +L 1.73913,0.347826,2.782609,0.347826 +L 2.782609,0.347826,3.478261,0.695652 +L 3.478261,0.695652,3.826087,1.391304 +L 3.826087,1.391304,4.173913,1.043478 + +[d] 28 +L 4.173913,7.304348,4.173913,0 +L 4.173913,0,4.521739,0 +L 4.173913,7.304348,4.521739,7.304348 +L 4.521739,7.304348,4.521739,0 +L 4.173913,3.826087,3.478261,4.521739 +L 3.478261,4.521739,2.782609,4.869565 +L 2.782609,4.869565,1.73913,4.869565 +L 1.73913,4.869565,1.043478,4.521739 +L 1.043478,4.521739,0.347826,3.826087 +L 0.347826,3.826087,0,2.782609 +L 0,2.782609,0,2.086957 +L 0,2.086957,0.347826,1.043478 +L 0.347826,1.043478,1.043478,0.347826 +L 1.043478,0.347826,1.73913,0 +L 1.73913,0,2.782609,0 +L 2.782609,0,3.478261,0.347826 +L 3.478261,0.347826,4.173913,1.043478 +L 4.173913,3.826087,2.782609,4.521739 +L 2.782609,4.521739,1.73913,4.521739 +L 1.73913,4.521739,1.043478,4.173913 +L 1.043478,4.173913,0.695652,3.826087 +L 0.695652,3.826087,0.347826,2.782609 +L 0.347826,2.782609,0.347826,2.086957 +L 0.347826,2.086957,0.695652,1.043478 +L 0.695652,1.043478,1.043478,0.695652 +L 1.043478,0.695652,1.73913,0.347826 +L 1.73913,0.347826,2.782609,0.347826 +L 2.782609,0.347826,4.173913,1.043478 + +[e] 32 +L 0.347826,2.434783,4.173913,2.434783 +L 4.173913,2.434783,4.173913,3.478261 +L 4.173913,3.478261,3.826087,4.173913 +L 3.826087,4.173913,3.478261,4.521739 +L 3.478261,4.521739,2.782609,4.869565 +L 2.782609,4.869565,1.73913,4.869565 +L 1.73913,4.869565,1.043478,4.521739 +L 1.043478,4.521739,0.347826,3.826087 +L 0.347826,3.826087,0,2.782609 +L 0,2.782609,0,2.086957 +L 0,2.086957,0.347826,1.043478 +L 0.347826,1.043478,1.043478,0.347826 +L 1.043478,0.347826,1.73913,0 +L 1.73913,0,2.782609,0 +L 2.782609,0,3.478261,0.347826 +L 3.478261,0.347826,4.173913,1.043478 +L 0.347826,2.782609,3.826087,2.782609 +L 3.826087,2.782609,3.826087,3.478261 +L 3.826087,3.478261,3.478261,4.173913 +L 3.478261,4.173913,2.782609,4.521739 +L 2.782609,4.521739,1.73913,4.521739 +L 1.73913,4.521739,1.043478,4.173913 +L 1.043478,4.173913,0.695652,3.826087 +L 0.695652,3.826087,0.347826,2.782609 +L 0.347826,2.782609,0.347826,2.086957 +L 0.347826,2.086957,0.695652,1.043478 +L 0.695652,1.043478,1.043478,0.695652 +L 1.043478,0.695652,1.73913,0.347826 +L 1.73913,0.347826,2.782609,0.347826 +L 2.782609,0.347826,3.478261,0.695652 +L 3.478261,0.695652,3.826087,1.391304 +L 3.826087,1.391304,4.173913,1.043478 + +[f] 14 +L 2.782609,7.304348,2.086957,7.304348 +L 2.086957,7.304348,1.391304,6.956522 +L 1.391304,6.956522,1.043478,5.913043 +L 1.043478,5.913043,1.043478,0 +L 1.043478,0,1.391304,0 +L 2.782609,7.304348,2.782609,6.956522 +L 2.782609,6.956522,2.086957,6.956522 +L 2.086957,6.956522,1.391304,6.608696 +L 1.73913,6.956522,1.391304,5.913043 +L 1.391304,5.913043,1.391304,0 +L 0,4.869565,2.434783,4.869565 +L 2.434783,4.869565,2.434783,4.521739 +L 0,4.869565,0,4.521739 +L 0,4.521739,2.434783,4.521739 + +[g] 40 +L 4.521739,4.869565,4.173913,4.869565 +L 4.173913,4.869565,4.173913,-0.347826 +L 4.173913,-0.347826,3.826087,-1.391304 +L 3.826087,-1.391304,3.478261,-1.73913 +L 3.478261,-1.73913,2.782609,-2.086957 +L 2.782609,-2.086957,2.086957,-2.086957 +L 2.086957,-2.086957,1.391304,-1.73913 +L 1.391304,-1.73913,1.043478,-1.391304 +L 1.043478,-1.391304,0.347826,-1.391304 +L 4.521739,4.869565,4.521739,-0.347826 +L 4.521739,-0.347826,4.173913,-1.391304 +L 4.173913,-1.391304,3.478261,-2.086957 +L 3.478261,-2.086957,2.782609,-2.434783 +L 2.782609,-2.434783,1.73913,-2.434783 +L 1.73913,-2.434783,1.043478,-2.086957 +L 1.043478,-2.086957,0.347826,-1.391304 +L 4.173913,3.826087,3.478261,4.521739 +L 3.478261,4.521739,2.782609,4.869565 +L 2.782609,4.869565,1.73913,4.869565 +L 1.73913,4.869565,1.043478,4.521739 +L 1.043478,4.521739,0.347826,3.826087 +L 0.347826,3.826087,0,2.782609 +L 0,2.782609,0,2.086957 +L 0,2.086957,0.347826,1.043478 +L 0.347826,1.043478,1.043478,0.347826 +L 1.043478,0.347826,1.73913,0 +L 1.73913,0,2.782609,0 +L 2.782609,0,3.478261,0.347826 +L 3.478261,0.347826,4.173913,1.043478 +L 4.173913,3.826087,2.782609,4.521739 +L 2.782609,4.521739,1.73913,4.521739 +L 1.73913,4.521739,1.043478,4.173913 +L 1.043478,4.173913,0.695652,3.826087 +L 0.695652,3.826087,0.347826,2.782609 +L 0.347826,2.782609,0.347826,2.086957 +L 0.347826,2.086957,0.695652,1.043478 +L 0.695652,1.043478,1.043478,0.695652 +L 1.043478,0.695652,1.73913,0.347826 +L 1.73913,0.347826,2.782609,0.347826 +L 2.782609,0.347826,4.173913,1.043478 + +[h] 17 +L 0,7.304348,0,0 +L 0,0,0.347826,0 +L 0,7.304348,0.347826,7.304348 +L 0.347826,7.304348,0.347826,0 +L 0.347826,3.478261,1.391304,4.521739 +L 1.391304,4.521739,2.086957,4.869565 +L 2.086957,4.869565,3.130435,4.869565 +L 3.130435,4.869565,3.826087,4.521739 +L 3.826087,4.521739,4.173913,3.478261 +L 4.173913,3.478261,4.173913,0 +L 0.347826,3.478261,1.391304,4.173913 +L 1.391304,4.173913,2.086957,4.521739 +L 2.086957,4.521739,2.782609,4.521739 +L 2.782609,4.521739,3.478261,4.173913 +L 3.478261,4.173913,3.826087,3.478261 +L 3.826087,3.478261,3.826087,0 +L 3.826087,0,4.173913,0 + +[i] 16 +L 0.347826,7.304348,0,6.956522 +L 0,6.956522,0,6.608696 +L 0,6.608696,0.347826,6.26087 +L 0.347826,6.26087,0.695652,6.26087 +L 0.695652,6.26087,1.043478,6.608696 +L 1.043478,6.608696,1.043478,6.956522 +L 1.043478,6.956522,0.695652,7.304348 +L 0.695652,7.304348,0.347826,7.304348 +L 0.347826,6.956522,0.347826,6.608696 +L 0.347826,6.608696,0.695652,6.608696 +L 0.695652,6.608696,0.695652,6.956522 +L 0.695652,6.956522,0.347826,6.956522 +L 0.347826,4.869565,0.347826,0 +L 0.347826,0,0.695652,0 +L 0.347826,4.869565,0.695652,4.869565 +L 0.695652,4.869565,0.695652,0 + +[j] 16 +L 0.347826,7.304348,0,6.956522 +L 0,6.956522,0,6.608696 +L 0,6.608696,0.347826,6.26087 +L 0.347826,6.26087,0.695652,6.26087 +L 0.695652,6.26087,1.043478,6.608696 +L 1.043478,6.608696,1.043478,6.956522 +L 1.043478,6.956522,0.695652,7.304348 +L 0.695652,7.304348,0.347826,7.304348 +L 0.347826,6.956522,0.347826,6.608696 +L 0.347826,6.608696,0.695652,6.608696 +L 0.695652,6.608696,0.695652,6.956522 +L 0.695652,6.956522,0.347826,6.956522 +L 0.347826,4.869565,0.347826,-2.434783 +L 0.347826,-2.434783,0.695652,-2.434783 +L 0.347826,4.869565,0.695652,4.869565 +L 0.695652,4.869565,0.695652,-2.434783 + +[k] 10 +L 0,7.304348,0,0 +L 0,0,0.347826,0 +L 0,7.304348,0.347826,7.304348 +L 0.347826,7.304348,0.347826,0 +L 4.173913,4.869565,3.826087,4.869565 +L 3.826087,4.869565,0.347826,1.391304 +L 4.173913,4.869565,0.347826,1.043478 +L 1.391304,2.434783,3.478261,0 +L 3.478261,0,4.173913,0 +L 1.73913,2.782609,4.173913,0 + +[l] 4 +L 0,7.304348,0,0 +L 0,0,0.347826,0 +L 0,7.304348,0.347826,7.304348 +L 0.347826,7.304348,0.347826,0 + +[m] 30 +L 0,4.869565,0,0 +L 0,0,0.347826,0 +L 0,4.869565,0.347826,4.869565 +L 0.347826,4.869565,0.347826,0 +L 0.347826,3.478261,1.391304,4.521739 +L 1.391304,4.521739,2.086957,4.869565 +L 2.086957,4.869565,3.130435,4.869565 +L 3.130435,4.869565,3.826087,4.521739 +L 3.826087,4.521739,4.173913,3.478261 +L 4.173913,3.478261,4.173913,0 +L 0.347826,3.478261,1.391304,4.173913 +L 1.391304,4.173913,2.086957,4.521739 +L 2.086957,4.521739,2.782609,4.521739 +L 2.782609,4.521739,3.478261,4.173913 +L 3.478261,4.173913,3.826087,3.478261 +L 3.826087,3.478261,3.826087,0 +L 3.826087,0,4.173913,0 +L 4.173913,3.478261,5.217391,4.521739 +L 5.217391,4.521739,5.913043,4.869565 +L 5.913043,4.869565,6.956522,4.869565 +L 6.956522,4.869565,7.652174,4.521739 +L 7.652174,4.521739,8,3.478261 +L 8,3.478261,8,0 +L 4.173913,3.478261,5.217391,4.173913 +L 5.217391,4.173913,5.913043,4.521739 +L 5.913043,4.521739,6.608696,4.521739 +L 6.608696,4.521739,7.304348,4.173913 +L 7.304348,4.173913,7.652174,3.478261 +L 7.652174,3.478261,7.652174,0 +L 7.652174,0,8,0 + +[n] 17 +L 0,4.869565,0,0 +L 0,0,0.347826,0 +L 0,4.869565,0.347826,4.869565 +L 0.347826,4.869565,0.347826,0 +L 0.347826,3.478261,1.391304,4.521739 +L 1.391304,4.521739,2.086957,4.869565 +L 2.086957,4.869565,3.130435,4.869565 +L 3.130435,4.869565,3.826087,4.521739 +L 3.826087,4.521739,4.173913,3.478261 +L 4.173913,3.478261,4.173913,0 +L 0.347826,3.478261,1.391304,4.173913 +L 1.391304,4.173913,2.086957,4.521739 +L 2.086957,4.521739,2.782609,4.521739 +L 2.782609,4.521739,3.478261,4.173913 +L 3.478261,4.173913,3.826087,3.478261 +L 3.826087,3.478261,3.826087,0 +L 3.826087,0,4.173913,0 + +[o] 32 +L 1.73913,4.869565,1.043478,4.521739 +L 1.043478,4.521739,0.347826,3.826087 +L 0.347826,3.826087,0,2.782609 +L 0,2.782609,0,2.086957 +L 0,2.086957,0.347826,1.043478 +L 0.347826,1.043478,1.043478,0.347826 +L 1.043478,0.347826,1.73913,0 +L 1.73913,0,2.782609,0 +L 2.782609,0,3.478261,0.347826 +L 3.478261,0.347826,4.173913,1.043478 +L 4.173913,1.043478,4.521739,2.086957 +L 4.521739,2.086957,4.521739,2.782609 +L 4.521739,2.782609,4.173913,3.826087 +L 4.173913,3.826087,3.478261,4.521739 +L 3.478261,4.521739,2.782609,4.869565 +L 2.782609,4.869565,1.73913,4.869565 +L 1.73913,4.521739,1.043478,4.173913 +L 1.043478,4.173913,0.695652,3.826087 +L 0.695652,3.826087,0.347826,2.782609 +L 0.347826,2.782609,0.347826,2.086957 +L 0.347826,2.086957,0.695652,1.043478 +L 0.695652,1.043478,1.043478,0.695652 +L 1.043478,0.695652,1.73913,0.347826 +L 1.73913,0.347826,2.782609,0.347826 +L 2.782609,0.347826,3.478261,0.695652 +L 3.478261,0.695652,3.826087,1.043478 +L 3.826087,1.043478,4.173913,2.086957 +L 4.173913,2.086957,4.173913,2.782609 +L 4.173913,2.782609,3.826087,3.826087 +L 3.826087,3.826087,3.478261,4.173913 +L 3.478261,4.173913,2.782609,4.521739 +L 2.782609,4.521739,1.73913,4.521739 + +[p] 28 +L 0,4.869565,0,-2.434783 +L 0,-2.434783,0.347826,-2.434783 +L 0,4.869565,0.347826,4.869565 +L 0.347826,4.869565,0.347826,-2.434783 +L 0.347826,3.826087,1.043478,4.521739 +L 1.043478,4.521739,1.73913,4.869565 +L 1.73913,4.869565,2.782609,4.869565 +L 2.782609,4.869565,3.478261,4.521739 +L 3.478261,4.521739,4.173913,3.826087 +L 4.173913,3.826087,4.521739,2.782609 +L 4.521739,2.782609,4.521739,2.086957 +L 4.521739,2.086957,4.173913,1.043478 +L 4.173913,1.043478,3.478261,0.347826 +L 3.478261,0.347826,2.782609,0 +L 2.782609,0,1.73913,0 +L 1.73913,0,1.043478,0.347826 +L 1.043478,0.347826,0.347826,1.043478 +L 0.347826,3.826087,1.73913,4.521739 +L 1.73913,4.521739,2.782609,4.521739 +L 2.782609,4.521739,3.478261,4.173913 +L 3.478261,4.173913,3.826087,3.826087 +L 3.826087,3.826087,4.173913,2.782609 +L 4.173913,2.782609,4.173913,2.086957 +L 4.173913,2.086957,3.826087,1.043478 +L 3.826087,1.043478,3.478261,0.695652 +L 3.478261,0.695652,2.782609,0.347826 +L 2.782609,0.347826,1.73913,0.347826 +L 1.73913,0.347826,0.347826,1.043478 + +[q] 28 +L 4.173913,4.869565,4.173913,-2.434783 +L 4.173913,-2.434783,4.521739,-2.434783 +L 4.173913,4.869565,4.521739,4.869565 +L 4.521739,4.869565,4.521739,-2.434783 +L 4.173913,3.826087,3.478261,4.521739 +L 3.478261,4.521739,2.782609,4.869565 +L 2.782609,4.869565,1.73913,4.869565 +L 1.73913,4.869565,1.043478,4.521739 +L 1.043478,4.521739,0.347826,3.826087 +L 0.347826,3.826087,0,2.782609 +L 0,2.782609,0,2.086957 +L 0,2.086957,0.347826,1.043478 +L 0.347826,1.043478,1.043478,0.347826 +L 1.043478,0.347826,1.73913,0 +L 1.73913,0,2.782609,0 +L 2.782609,0,3.478261,0.347826 +L 3.478261,0.347826,4.173913,1.043478 +L 4.173913,3.826087,2.782609,4.521739 +L 2.782609,4.521739,1.73913,4.521739 +L 1.73913,4.521739,1.043478,4.173913 +L 1.043478,4.173913,0.695652,3.826087 +L 0.695652,3.826087,0.347826,2.782609 +L 0.347826,2.782609,0.347826,2.086957 +L 0.347826,2.086957,0.695652,1.043478 +L 0.695652,1.043478,1.043478,0.695652 +L 1.043478,0.695652,1.73913,0.347826 +L 1.73913,0.347826,2.782609,0.347826 +L 2.782609,0.347826,4.173913,1.043478 + +[r] 13 +L 0,4.869565,0,0 +L 0,0,0.347826,0 +L 0,4.869565,0.347826,4.869565 +L 0.347826,4.869565,0.347826,0 +L 0.347826,2.782609,0.695652,3.826087 +L 0.695652,3.826087,1.391304,4.521739 +L 1.391304,4.521739,2.086957,4.869565 +L 2.086957,4.869565,3.130435,4.869565 +L 0.347826,2.782609,0.695652,3.478261 +L 0.695652,3.478261,1.391304,4.173913 +L 1.391304,4.173913,2.086957,4.521739 +L 2.086957,4.521739,3.130435,4.521739 +L 3.130435,4.521739,3.130435,4.869565 + +[s] 34 +L 3.826087,3.826087,3.478261,4.521739 +L 3.478261,4.521739,2.434783,4.869565 +L 2.434783,4.869565,1.391304,4.869565 +L 1.391304,4.869565,0.347826,4.521739 +L 0.347826,4.521739,0,3.826087 +L 0,3.826087,0.347826,3.130435 +L 0.347826,3.130435,1.043478,2.782609 +L 1.043478,2.782609,2.782609,2.086957 +L 2.782609,2.086957,3.478261,1.73913 +L 3.130435,2.086957,3.478261,1.391304 +L 3.478261,1.391304,3.478261,1.043478 +L 3.478261,1.043478,3.130435,0.347826 +L 3.478261,0.695652,2.434783,0.347826 +L 2.434783,0.347826,1.391304,0.347826 +L 1.391304,0.347826,0.347826,0.695652 +L 0.695652,0.347826,0.347826,1.043478 +L 0.347826,1.043478,0,1.043478 +L 3.826087,3.826087,3.478261,3.826087 +L 3.478261,3.826087,3.130435,4.521739 +L 3.478261,4.173913,2.434783,4.521739 +L 2.434783,4.521739,1.391304,4.521739 +L 1.391304,4.521739,0.347826,4.173913 +L 0.695652,4.521739,0.347826,3.826087 +L 0.347826,3.826087,0.695652,3.130435 +L 0.347826,3.478261,1.043478,3.130435 +L 1.043478,3.130435,2.782609,2.434783 +L 2.782609,2.434783,3.478261,2.086957 +L 3.478261,2.086957,3.826087,1.391304 +L 3.826087,1.391304,3.826087,1.043478 +L 3.826087,1.043478,3.478261,0.347826 +L 3.478261,0.347826,2.434783,0 +L 2.434783,0,1.391304,0 +L 1.391304,0,0.347826,0.347826 +L 0.347826,0.347826,0,1.043478 + +[t] 8 +L 1.043478,7.304348,1.043478,0 +L 1.043478,0,1.391304,0 +L 1.043478,7.304348,1.391304,7.304348 +L 1.391304,7.304348,1.391304,0 +L 0,4.869565,2.434783,4.869565 +L 2.434783,4.869565,2.434783,4.521739 +L 0,4.869565,0,4.521739 +L 0,4.521739,2.434783,4.521739 + +[u] 17 +L 0,4.869565,0,1.391304 +L 0,1.391304,0.347826,0.347826 +L 0.347826,0.347826,1.043478,0 +L 1.043478,0,2.086957,0 +L 2.086957,0,2.782609,0.347826 +L 2.782609,0.347826,3.826087,1.391304 +L 0,4.869565,0.347826,4.869565 +L 0.347826,4.869565,0.347826,1.391304 +L 0.347826,1.391304,0.695652,0.695652 +L 0.695652,0.695652,1.391304,0.347826 +L 1.391304,0.347826,2.086957,0.347826 +L 2.086957,0.347826,2.782609,0.695652 +L 2.782609,0.695652,3.826087,1.391304 +L 3.826087,4.869565,3.826087,0 +L 3.826087,0,4.173913,0 +L 3.826087,4.869565,4.173913,4.869565 +L 4.173913,4.869565,4.173913,0 + +[v] 6 +L 0,4.869565,2.086957,0 +L 0,4.869565,0.347826,4.869565 +L 0.347826,4.869565,2.086957,0.695652 +L 4.173913,4.869565,3.826087,4.869565 +L 3.826087,4.869565,2.086957,0.695652 +L 4.173913,4.869565,2.086957,0 + +[w] 10 +L 0,4.869565,1.73913,0 +L 0,4.869565,0.347826,4.869565 +L 0.347826,4.869565,1.73913,1.043478 +L 3.130435,4.869565,1.73913,1.043478 +L 3.130435,3.826087,1.73913,0 +L 3.130435,3.826087,4.521739,0 +L 3.130435,4.869565,4.521739,1.043478 +L 6.26087,4.869565,5.913043,4.869565 +L 5.913043,4.869565,4.521739,1.043478 +L 6.26087,4.869565,4.521739,0 + +[x] 8 +L 0,4.869565,3.826087,0 +L 3.826087,0,4.173913,0 +L 0,4.869565,0.347826,4.869565 +L 0.347826,4.869565,4.173913,0 +L 4.173913,4.869565,3.826087,4.869565 +L 3.826087,4.869565,0,0 +L 4.173913,4.869565,0.347826,0 +L 0.347826,0,0,0 + +[y] 9 +L 0,4.869565,2.086957,0 +L 0,4.869565,0.347826,4.869565 +L 0.347826,4.869565,2.086957,0.695652 +L 4.173913,4.869565,3.826087,4.869565 +L 3.826087,4.869565,2.086957,0.695652 +L 2.086957,0.695652,0.695652,-2.434783 +L 4.173913,4.869565,2.086957,0 +L 2.086957,0,1.043478,-2.434783 +L 1.043478,-2.434783,0.695652,-2.434783 + +[z] 8 +L 3.478261,4.521739,0,0 +L 4.173913,4.869565,0.695652,0.347826 +L 0,4.869565,4.173913,4.869565 +L 0,4.869565,0,4.521739 +L 0,4.521739,3.478261,4.521739 +L 0.695652,0.347826,4.173913,0.347826 +L 4.173913,0.347826,4.173913,0 +L 0,0,4.173913,0 + +[{] 34 +L 1.73913,8.695652,1.043478,8.347826 +L 1.043478,8.347826,0.695652,8 +L 0.695652,8,0.347826,7.304348 +L 0.347826,7.304348,0.347826,6.608696 +L 0.347826,6.608696,0.695652,5.913043 +L 0.695652,5.913043,1.043478,5.565217 +L 1.043478,5.565217,1.391304,4.869565 +L 1.391304,4.869565,1.391304,4.173913 +L 1.391304,4.173913,0.695652,3.478261 +L 1.043478,8.347826,0.695652,7.652174 +L 0.695652,7.652174,0.695652,6.956522 +L 0.695652,6.956522,1.043478,6.26087 +L 1.043478,6.26087,1.391304,5.913043 +L 1.391304,5.913043,1.73913,5.217391 +L 1.73913,5.217391,1.73913,4.521739 +L 1.73913,4.521739,1.391304,3.826087 +L 1.391304,3.826087,0,3.130435 +L 0,3.130435,1.391304,2.434783 +L 1.391304,2.434783,1.73913,1.73913 +L 1.73913,1.73913,1.73913,1.043478 +L 1.73913,1.043478,1.391304,0.347826 +L 1.391304,0.347826,1.043478,0 +L 1.043478,0,0.695652,-0.695652 +L 0.695652,-0.695652,0.695652,-1.391304 +L 0.695652,-1.391304,1.043478,-2.086957 +L 0.695652,2.782609,1.391304,2.086957 +L 1.391304,2.086957,1.391304,1.391304 +L 1.391304,1.391304,1.043478,0.695652 +L 1.043478,0.695652,0.695652,0.347826 +L 0.695652,0.347826,0.347826,-0.347826 +L 0.347826,-0.347826,0.347826,-1.043478 +L 0.347826,-1.043478,0.695652,-1.73913 +L 0.695652,-1.73913,1.043478,-2.086957 +L 1.043478,-2.086957,1.73913,-2.434783 + +[|] 1 +L 0,8.695652,0,-2.434783 + +[}] 34 +L 0,8.695652,0.695652,8.347826 +L 0.695652,8.347826,1.043478,8 +L 1.043478,8,1.391304,7.304348 +L 1.391304,7.304348,1.391304,6.608696 +L 1.391304,6.608696,1.043478,5.913043 +L 1.043478,5.913043,0.695652,5.565217 +L 0.695652,5.565217,0.347826,4.869565 +L 0.347826,4.869565,0.347826,4.173913 +L 0.347826,4.173913,1.043478,3.478261 +L 0.695652,8.347826,1.043478,7.652174 +L 1.043478,7.652174,1.043478,6.956522 +L 1.043478,6.956522,0.695652,6.26087 +L 0.695652,6.26087,0.347826,5.913043 +L 0.347826,5.913043,0,5.217391 +L 0,5.217391,0,4.521739 +L 0,4.521739,0.347826,3.826087 +L 0.347826,3.826087,1.73913,3.130435 +L 1.73913,3.130435,0.347826,2.434783 +L 0.347826,2.434783,0,1.73913 +L 0,1.73913,0,1.043478 +L 0,1.043478,0.347826,0.347826 +L 0.347826,0.347826,0.695652,0 +L 0.695652,0,1.043478,-0.695652 +L 1.043478,-0.695652,1.043478,-1.391304 +L 1.043478,-1.391304,0.695652,-2.086957 +L 1.043478,2.782609,0.347826,2.086957 +L 0.347826,2.086957,0.347826,1.391304 +L 0.347826,1.391304,0.695652,0.695652 +L 0.695652,0.695652,1.043478,0.347826 +L 1.043478,0.347826,1.391304,-0.347826 +L 1.391304,-0.347826,1.391304,-1.043478 +L 1.391304,-1.043478,1.043478,-1.73913 +L 1.043478,-1.73913,0.695652,-2.086957 +L 0.695652,-2.086957,0,-2.434783 + +[~] 12 +L 0.347826,1.043478,0,0.695652 +L 0,0.695652,0,0.347826 +L 0,0.347826,0.347826,0 +L 0.347826,0,0.695652,0 +L 0.695652,0,1.043478,0.347826 +L 1.043478,0.347826,1.043478,0.695652 +L 1.043478,0.695652,0.695652,1.043478 +L 0.695652,1.043478,0.347826,1.043478 +L 0.347826,0.695652,0.347826,0.347826 +L 0.347826,0.347826,0.695652,0.347826 +L 0.695652,0.347826,0.695652,0.695652 +L 0.695652,0.695652,0.347826,0.695652 + +[] 12 +L 0.347826,1.043478,0,0.695652 +L 0,0.695652,0,0.347826 +L 0,0.347826,0.347826,0 +L 0.347826,0,0.695652,0 +L 0.695652,0,1.043478,0.347826 +L 1.043478,0.347826,1.043478,0.695652 +L 1.043478,0.695652,0.695652,1.043478 +L 0.695652,1.043478,0.347826,1.043478 +L 0.347826,0.695652,0.347826,0.347826 +L 0.347826,0.347826,0.695652,0.347826 +L 0.695652,0.347826,0.695652,0.695652 +L 0.695652,0.695652,0.347826,0.695652 + +[] 12 +L 0.347826,1.043478,0,0.695652 +L 0,0.695652,0,0.347826 +L 0,0.347826,0.347826,0 +L 0.347826,0,0.695652,0 +L 0.695652,0,1.043478,0.347826 +L 1.043478,0.347826,1.043478,0.695652 +L 1.043478,0.695652,0.695652,1.043478 +L 0.695652,1.043478,0.347826,1.043478 +L 0.347826,0.695652,0.347826,0.347826 +L 0.347826,0.347826,0.695652,0.347826 +L 0.695652,0.347826,0.695652,0.695652 +L 0.695652,0.695652,0.347826,0.695652 + +[] 12 +L 0.347826,1.043478,0,0.695652 +L 0,0.695652,0,0.347826 +L 0,0.347826,0.347826,0 +L 0.347826,0,0.695652,0 +L 0.695652,0,1.043478,0.347826 +L 1.043478,0.347826,1.043478,0.695652 +L 1.043478,0.695652,0.695652,1.043478 +L 0.695652,1.043478,0.347826,1.043478 +L 0.347826,0.695652,0.347826,0.347826 +L 0.347826,0.347826,0.695652,0.347826 +L 0.695652,0.347826,0.695652,0.695652 +L 0.695652,0.695652,0.347826,0.695652 + +[] 12 +L 0.347826,1.043478,0,0.695652 +L 0,0.695652,0,0.347826 +L 0,0.347826,0.347826,0 +L 0.347826,0,0.695652,0 +L 0.695652,0,1.043478,0.347826 +L 1.043478,0.347826,1.043478,0.695652 +L 1.043478,0.695652,0.695652,1.043478 +L 0.695652,1.043478,0.347826,1.043478 +L 0.347826,0.695652,0.347826,0.347826 +L 0.347826,0.347826,0.695652,0.347826 +L 0.695652,0.347826,0.695652,0.695652 +L 0.695652,0.695652,0.347826,0.695652 + +[] 12 +L 0.347826,1.043478,0,0.695652 +L 0,0.695652,0,0.347826 +L 0,0.347826,0.347826,0 +L 0.347826,0,0.695652,0 +L 0.695652,0,1.043478,0.347826 +L 1.043478,0.347826,1.043478,0.695652 +L 1.043478,0.695652,0.695652,1.043478 +L 0.695652,1.043478,0.347826,1.043478 +L 0.347826,0.695652,0.347826,0.347826 +L 0.347826,0.347826,0.695652,0.347826 +L 0.695652,0.347826,0.695652,0.695652 +L 0.695652,0.695652,0.347826,0.695652 + +[] 12 +L 0.347826,1.043478,0,0.695652 +L 0,0.695652,0,0.347826 +L 0,0.347826,0.347826,0 +L 0.347826,0,0.695652,0 +L 0.695652,0,1.043478,0.347826 +L 1.043478,0.347826,1.043478,0.695652 +L 1.043478,0.695652,0.695652,1.043478 +L 0.695652,1.043478,0.347826,1.043478 +L 0.347826,0.695652,0.347826,0.347826 +L 0.347826,0.347826,0.695652,0.347826 +L 0.695652,0.347826,0.695652,0.695652 +L 0.695652,0.695652,0.347826,0.695652 + +[] 12 +L 0.347826,1.043478,0,0.695652 +L 0,0.695652,0,0.347826 +L 0,0.347826,0.347826,0 +L 0.347826,0,0.695652,0 +L 0.695652,0,1.043478,0.347826 +L 1.043478,0.347826,1.043478,0.695652 +L 1.043478,0.695652,0.695652,1.043478 +L 0.695652,1.043478,0.347826,1.043478 +L 0.347826,0.695652,0.347826,0.347826 +L 0.347826,0.347826,0.695652,0.347826 +L 0.695652,0.347826,0.695652,0.695652 +L 0.695652,0.695652,0.347826,0.695652 + +[] 12 +L 0.347826,1.043478,0,0.695652 +L 0,0.695652,0,0.347826 +L 0,0.347826,0.347826,0 +L 0.347826,0,0.695652,0 +L 0.695652,0,1.043478,0.347826 +L 1.043478,0.347826,1.043478,0.695652 +L 1.043478,0.695652,0.695652,1.043478 +L 0.695652,1.043478,0.347826,1.043478 +L 0.347826,0.695652,0.347826,0.347826 +L 0.347826,0.347826,0.695652,0.347826 +L 0.695652,0.347826,0.695652,0.695652 +L 0.695652,0.695652,0.347826,0.695652 + +[] 12 +L 0.347826,1.043478,0,0.695652 +L 0,0.695652,0,0.347826 +L 0,0.347826,0.347826,0 +L 0.347826,0,0.695652,0 +L 0.695652,0,1.043478,0.347826 +L 1.043478,0.347826,1.043478,0.695652 +L 1.043478,0.695652,0.695652,1.043478 +L 0.695652,1.043478,0.347826,1.043478 +L 0.347826,0.695652,0.347826,0.347826 +L 0.347826,0.347826,0.695652,0.347826 +L 0.695652,0.347826,0.695652,0.695652 +L 0.695652,0.695652,0.347826,0.695652 + +[] 12 +L 0.347826,1.043478,0,0.695652 +L 0,0.695652,0,0.347826 +L 0,0.347826,0.347826,0 +L 0.347826,0,0.695652,0 +L 0.695652,0,1.043478,0.347826 +L 1.043478,0.347826,1.043478,0.695652 +L 1.043478,0.695652,0.695652,1.043478 +L 0.695652,1.043478,0.347826,1.043478 +L 0.347826,0.695652,0.347826,0.347826 +L 0.347826,0.347826,0.695652,0.347826 +L 0.695652,0.347826,0.695652,0.695652 +L 0.695652,0.695652,0.347826,0.695652 + +[] 12 +L 0.347826,1.043478,0,0.695652 +L 0,0.695652,0,0.347826 +L 0,0.347826,0.347826,0 +L 0.347826,0,0.695652,0 +L 0.695652,0,1.043478,0.347826 +L 1.043478,0.347826,1.043478,0.695652 +L 1.043478,0.695652,0.695652,1.043478 +L 0.695652,1.043478,0.347826,1.043478 +L 0.347826,0.695652,0.347826,0.347826 +L 0.347826,0.347826,0.695652,0.347826 +L 0.695652,0.347826,0.695652,0.695652 +L 0.695652,0.695652,0.347826,0.695652 + +[] 12 +L 0.347826,1.043478,0,0.695652 +L 0,0.695652,0,0.347826 +L 0,0.347826,0.347826,0 +L 0.347826,0,0.695652,0 +L 0.695652,0,1.043478,0.347826 +L 1.043478,0.347826,1.043478,0.695652 +L 1.043478,0.695652,0.695652,1.043478 +L 0.695652,1.043478,0.347826,1.043478 +L 0.347826,0.695652,0.347826,0.347826 +L 0.347826,0.347826,0.695652,0.347826 +L 0.695652,0.347826,0.695652,0.695652 +L 0.695652,0.695652,0.347826,0.695652 + +[] 12 +L 0.347826,1.043478,0,0.695652 +L 0,0.695652,0,0.347826 +L 0,0.347826,0.347826,0 +L 0.347826,0,0.695652,0 +L 0.695652,0,1.043478,0.347826 +L 1.043478,0.347826,1.043478,0.695652 +L 1.043478,0.695652,0.695652,1.043478 +L 0.695652,1.043478,0.347826,1.043478 +L 0.347826,0.695652,0.347826,0.347826 +L 0.347826,0.347826,0.695652,0.347826 +L 0.695652,0.347826,0.695652,0.695652 +L 0.695652,0.695652,0.347826,0.695652 + +[] 12 +L 0.347826,1.043478,0,0.695652 +L 0,0.695652,0,0.347826 +L 0,0.347826,0.347826,0 +L 0.347826,0,0.695652,0 +L 0.695652,0,1.043478,0.347826 +L 1.043478,0.347826,1.043478,0.695652 +L 1.043478,0.695652,0.695652,1.043478 +L 0.695652,1.043478,0.347826,1.043478 +L 0.347826,0.695652,0.347826,0.347826 +L 0.347826,0.347826,0.695652,0.347826 +L 0.695652,0.347826,0.695652,0.695652 +L 0.695652,0.695652,0.347826,0.695652 + +[] 12 +L 0.347826,1.043478,0,0.695652 +L 0,0.695652,0,0.347826 +L 0,0.347826,0.347826,0 +L 0.347826,0,0.695652,0 +L 0.695652,0,1.043478,0.347826 +L 1.043478,0.347826,1.043478,0.695652 +L 1.043478,0.695652,0.695652,1.043478 +L 0.695652,1.043478,0.347826,1.043478 +L 0.347826,0.695652,0.347826,0.347826 +L 0.347826,0.347826,0.695652,0.347826 +L 0.695652,0.347826,0.695652,0.695652 +L 0.695652,0.695652,0.347826,0.695652 + +[] 12 +L 0.347826,1.043478,0,0.695652 +L 0,0.695652,0,0.347826 +L 0,0.347826,0.347826,0 +L 0.347826,0,0.695652,0 +L 0.695652,0,1.043478,0.347826 +L 1.043478,0.347826,1.043478,0.695652 +L 1.043478,0.695652,0.695652,1.043478 +L 0.695652,1.043478,0.347826,1.043478 +L 0.347826,0.695652,0.347826,0.347826 +L 0.347826,0.347826,0.695652,0.347826 +L 0.695652,0.347826,0.695652,0.695652 +L 0.695652,0.695652,0.347826,0.695652 + +[] 12 +L 0.347826,1.043478,0,0.695652 +L 0,0.695652,0,0.347826 +L 0,0.347826,0.347826,0 +L 0.347826,0,0.695652,0 +L 0.695652,0,1.043478,0.347826 +L 1.043478,0.347826,1.043478,0.695652 +L 1.043478,0.695652,0.695652,1.043478 +L 0.695652,1.043478,0.347826,1.043478 +L 0.347826,0.695652,0.347826,0.347826 +L 0.347826,0.347826,0.695652,0.347826 +L 0.695652,0.347826,0.695652,0.695652 +L 0.695652,0.695652,0.347826,0.695652 + +[] 12 +L 0.347826,1.043478,0,0.695652 +L 0,0.695652,0,0.347826 +L 0,0.347826,0.347826,0 +L 0.347826,0,0.695652,0 +L 0.695652,0,1.043478,0.347826 +L 1.043478,0.347826,1.043478,0.695652 +L 1.043478,0.695652,0.695652,1.043478 +L 0.695652,1.043478,0.347826,1.043478 +L 0.347826,0.695652,0.347826,0.347826 +L 0.347826,0.347826,0.695652,0.347826 +L 0.695652,0.347826,0.695652,0.695652 +L 0.695652,0.695652,0.347826,0.695652 + +[] 12 +L 0.347826,1.043478,0,0.695652 +L 0,0.695652,0,0.347826 +L 0,0.347826,0.347826,0 +L 0.347826,0,0.695652,0 +L 0.695652,0,1.043478,0.347826 +L 1.043478,0.347826,1.043478,0.695652 +L 1.043478,0.695652,0.695652,1.043478 +L 0.695652,1.043478,0.347826,1.043478 +L 0.347826,0.695652,0.347826,0.347826 +L 0.347826,0.347826,0.695652,0.347826 +L 0.695652,0.347826,0.695652,0.695652 +L 0.695652,0.695652,0.347826,0.695652 + +[] 12 +L 0.347826,1.043478,0,0.695652 +L 0,0.695652,0,0.347826 +L 0,0.347826,0.347826,0 +L 0.347826,0,0.695652,0 +L 0.695652,0,1.043478,0.347826 +L 1.043478,0.347826,1.043478,0.695652 +L 1.043478,0.695652,0.695652,1.043478 +L 0.695652,1.043478,0.347826,1.043478 +L 0.347826,0.695652,0.347826,0.347826 +L 0.347826,0.347826,0.695652,0.347826 +L 0.695652,0.347826,0.695652,0.695652 +L 0.695652,0.695652,0.347826,0.695652 + +[] 12 +L 0.347826,1.043478,0,0.695652 +L 0,0.695652,0,0.347826 +L 0,0.347826,0.347826,0 +L 0.347826,0,0.695652,0 +L 0.695652,0,1.043478,0.347826 +L 1.043478,0.347826,1.043478,0.695652 +L 1.043478,0.695652,0.695652,1.043478 +L 0.695652,1.043478,0.347826,1.043478 +L 0.347826,0.695652,0.347826,0.347826 +L 0.347826,0.347826,0.695652,0.347826 +L 0.695652,0.347826,0.695652,0.695652 +L 0.695652,0.695652,0.347826,0.695652 + +[] 12 +L 0.347826,1.043478,0,0.695652 +L 0,0.695652,0,0.347826 +L 0,0.347826,0.347826,0 +L 0.347826,0,0.695652,0 +L 0.695652,0,1.043478,0.347826 +L 1.043478,0.347826,1.043478,0.695652 +L 1.043478,0.695652,0.695652,1.043478 +L 0.695652,1.043478,0.347826,1.043478 +L 0.347826,0.695652,0.347826,0.347826 +L 0.347826,0.347826,0.695652,0.347826 +L 0.695652,0.347826,0.695652,0.695652 +L 0.695652,0.695652,0.347826,0.695652 + +[] 12 +L 0.347826,1.043478,0,0.695652 +L 0,0.695652,0,0.347826 +L 0,0.347826,0.347826,0 +L 0.347826,0,0.695652,0 +L 0.695652,0,1.043478,0.347826 +L 1.043478,0.347826,1.043478,0.695652 +L 1.043478,0.695652,0.695652,1.043478 +L 0.695652,1.043478,0.347826,1.043478 +L 0.347826,0.695652,0.347826,0.347826 +L 0.347826,0.347826,0.695652,0.347826 +L 0.695652,0.347826,0.695652,0.695652 +L 0.695652,0.695652,0.347826,0.695652 + +[] 12 +L 0.347826,1.043478,0,0.695652 +L 0,0.695652,0,0.347826 +L 0,0.347826,0.347826,0 +L 0.347826,0,0.695652,0 +L 0.695652,0,1.043478,0.347826 +L 1.043478,0.347826,1.043478,0.695652 +L 1.043478,0.695652,0.695652,1.043478 +L 0.695652,1.043478,0.347826,1.043478 +L 0.347826,0.695652,0.347826,0.347826 +L 0.347826,0.347826,0.695652,0.347826 +L 0.695652,0.347826,0.695652,0.695652 +L 0.695652,0.695652,0.347826,0.695652 + +[] 12 +L 0.347826,1.043478,0,0.695652 +L 0,0.695652,0,0.347826 +L 0,0.347826,0.347826,0 +L 0.347826,0,0.695652,0 +L 0.695652,0,1.043478,0.347826 +L 1.043478,0.347826,1.043478,0.695652 +L 1.043478,0.695652,0.695652,1.043478 +L 0.695652,1.043478,0.347826,1.043478 +L 0.347826,0.695652,0.347826,0.347826 +L 0.347826,0.347826,0.695652,0.347826 +L 0.695652,0.347826,0.695652,0.695652 +L 0.695652,0.695652,0.347826,0.695652 + +[] 12 +L 0.347826,1.043478,0,0.695652 +L 0,0.695652,0,0.347826 +L 0,0.347826,0.347826,0 +L 0.347826,0,0.695652,0 +L 0.695652,0,1.043478,0.347826 +L 1.043478,0.347826,1.043478,0.695652 +L 1.043478,0.695652,0.695652,1.043478 +L 0.695652,1.043478,0.347826,1.043478 +L 0.347826,0.695652,0.347826,0.347826 +L 0.347826,0.347826,0.695652,0.347826 +L 0.695652,0.347826,0.695652,0.695652 +L 0.695652,0.695652,0.347826,0.695652 + +[] 12 +L 0.347826,1.043478,0,0.695652 +L 0,0.695652,0,0.347826 +L 0,0.347826,0.347826,0 +L 0.347826,0,0.695652,0 +L 0.695652,0,1.043478,0.347826 +L 1.043478,0.347826,1.043478,0.695652 +L 1.043478,0.695652,0.695652,1.043478 +L 0.695652,1.043478,0.347826,1.043478 +L 0.347826,0.695652,0.347826,0.347826 +L 0.347826,0.347826,0.695652,0.347826 +L 0.695652,0.347826,0.695652,0.695652 +L 0.695652,0.695652,0.347826,0.695652 + +[] 12 +L 0.347826,1.043478,0,0.695652 +L 0,0.695652,0,0.347826 +L 0,0.347826,0.347826,0 +L 0.347826,0,0.695652,0 +L 0.695652,0,1.043478,0.347826 +L 1.043478,0.347826,1.043478,0.695652 +L 1.043478,0.695652,0.695652,1.043478 +L 0.695652,1.043478,0.347826,1.043478 +L 0.347826,0.695652,0.347826,0.347826 +L 0.347826,0.347826,0.695652,0.347826 +L 0.695652,0.347826,0.695652,0.695652 +L 0.695652,0.695652,0.347826,0.695652 + +[] 12 +L 0.347826,1.043478,0,0.695652 +L 0,0.695652,0,0.347826 +L 0,0.347826,0.347826,0 +L 0.347826,0,0.695652,0 +L 0.695652,0,1.043478,0.347826 +L 1.043478,0.347826,1.043478,0.695652 +L 1.043478,0.695652,0.695652,1.043478 +L 0.695652,1.043478,0.347826,1.043478 +L 0.347826,0.695652,0.347826,0.347826 +L 0.347826,0.347826,0.695652,0.347826 +L 0.695652,0.347826,0.695652,0.695652 +L 0.695652,0.695652,0.347826,0.695652 + +[] 12 +L 0.347826,1.043478,0,0.695652 +L 0,0.695652,0,0.347826 +L 0,0.347826,0.347826,0 +L 0.347826,0,0.695652,0 +L 0.695652,0,1.043478,0.347826 +L 1.043478,0.347826,1.043478,0.695652 +L 1.043478,0.695652,0.695652,1.043478 +L 0.695652,1.043478,0.347826,1.043478 +L 0.347826,0.695652,0.347826,0.347826 +L 0.347826,0.347826,0.695652,0.347826 +L 0.695652,0.347826,0.695652,0.695652 +L 0.695652,0.695652,0.347826,0.695652 + +[0104] 24 +L 2.782609,7.304348,0,0 +L 2.782609,6.26087,0.347826,0 +L 0.347826,0,0,0 +L 2.782609,6.26087,5.217391,0 +L 5.217391,0,5.565217,0 +L 2.782609,7.304348,5.565217,0 +L 1.043478,2.086957,4.521739,2.086957 +L 0.695652,1.73913,4.869565,1.73913 +L 5.217391,0,4.521739,-0.347826 +L 4.521739,-0.347826,4.173913,-1.043478 +L 4.173913,-1.043478,4.173913,-2.086957 +L 4.173913,-2.086957,4.521739,-2.434783 +L 4.521739,-2.434783,4.869565,-2.434783 +L 4.869565,-2.434783,5.217391,-2.086957 +L 5.217391,-2.086957,5.217391,-1.73913 +L 5.217391,-1.73913,4.869565,-1.391304 +L 4.869565,-1.391304,4.521739,-1.391304 +L 4.521739,-1.391304,4.173913,-1.73913 +L 4.521739,-1.73913,4.521739,-2.086957 +L 4.521739,-2.086957,4.869565,-2.086957 +L 4.869565,-2.086957,4.869565,-1.73913 +L 4.869565,-1.73913,4.521739,-1.73913 +L 4.521739,-0.347826,4.173913,-1.73913 +L 4.173913,-1.043478,4.521739,-1.391304 + +[] 12 +L 0.347826,1.043478,0,0.695652 +L 0,0.695652,0,0.347826 +L 0,0.347826,0.347826,0 +L 0.347826,0,0.695652,0 +L 0.695652,0,1.043478,0.347826 +L 1.043478,0.347826,1.043478,0.695652 +L 1.043478,0.695652,0.695652,1.043478 +L 0.695652,1.043478,0.347826,1.043478 +L 0.347826,0.695652,0.347826,0.347826 +L 0.347826,0.347826,0.695652,0.347826 +L 0.695652,0.347826,0.695652,0.695652 +L 0.695652,0.695652,0.347826,0.695652 + +[0141] 10 +L 0.695652,7.304348,0.695652,0 +L 0.695652,7.304348,1.043478,7.304348 +L 1.043478,7.304348,1.043478,0.347826 +L 1.043478,0.347826,4.869565,0.347826 +L 4.869565,0.347826,4.869565,0 +L 0.695652,0,4.869565,0 +L 2.782609,4.173913,0,2.086957 +L 0,2.086957,0,2.434783 +L 2.782609,4.173913,2.782609,4.521739 +L 2.782609,4.521739,0,2.434783 + +[] 12 +L 0.347826,1.043478,0,0.695652 +L 0,0.695652,0,0.347826 +L 0,0.347826,0.347826,0 +L 0.347826,0,0.695652,0 +L 0.695652,0,1.043478,0.347826 +L 1.043478,0.347826,1.043478,0.695652 +L 1.043478,0.695652,0.695652,1.043478 +L 0.695652,1.043478,0.347826,1.043478 +L 0.347826,0.695652,0.347826,0.347826 +L 0.347826,0.347826,0.695652,0.347826 +L 0.695652,0.347826,0.695652,0.695652 +L 0.695652,0.695652,0.347826,0.695652 + +[] 12 +L 0.347826,1.043478,0,0.695652 +L 0,0.695652,0,0.347826 +L 0,0.347826,0.347826,0 +L 0.347826,0,0.695652,0 +L 0.695652,0,1.043478,0.347826 +L 1.043478,0.347826,1.043478,0.695652 +L 1.043478,0.695652,0.695652,1.043478 +L 0.695652,1.043478,0.347826,1.043478 +L 0.347826,0.695652,0.347826,0.347826 +L 0.347826,0.347826,0.695652,0.347826 +L 0.695652,0.347826,0.695652,0.695652 +L 0.695652,0.695652,0.347826,0.695652 + +[015A] 55 +L 4.869565,6.26087,4.173913,6.956522 +L 4.173913,6.956522,3.130435,7.304348 +L 3.130435,7.304348,1.73913,7.304348 +L 1.73913,7.304348,0.695652,6.956522 +L 0.695652,6.956522,0,6.26087 +L 0,6.26087,0,5.565217 +L 0,5.565217,0.347826,4.869565 +L 0.347826,4.869565,0.695652,4.521739 +L 0.695652,4.521739,1.391304,4.173913 +L 1.391304,4.173913,3.130435,3.478261 +L 3.130435,3.478261,3.826087,3.130435 +L 3.826087,3.130435,4.173913,2.782609 +L 4.173913,2.782609,4.521739,2.086957 +L 4.521739,2.086957,4.521739,1.043478 +L 4.521739,1.043478,4.173913,0.695652 +L 4.173913,0.695652,3.130435,0.347826 +L 3.130435,0.347826,1.73913,0.347826 +L 1.73913,0.347826,1.043478,0.695652 +L 1.043478,0.695652,0.695652,1.043478 +L 0.695652,1.043478,0,1.043478 +L 4.869565,6.26087,4.173913,6.26087 +L 4.173913,6.26087,3.826087,6.608696 +L 3.826087,6.608696,3.130435,6.956522 +L 3.130435,6.956522,1.73913,6.956522 +L 1.73913,6.956522,0.695652,6.608696 +L 0.695652,6.608696,0.347826,6.26087 +L 0.347826,6.26087,0.347826,5.565217 +L 0.347826,5.565217,0.695652,4.869565 +L 0.695652,4.869565,1.391304,4.521739 +L 1.391304,4.521739,3.130435,3.826087 +L 3.130435,3.826087,3.826087,3.478261 +L 3.826087,3.478261,4.521739,2.782609 +L 4.521739,2.782609,4.869565,2.086957 +L 4.869565,2.086957,4.869565,1.043478 +L 4.869565,1.043478,4.173913,0.347826 +L 4.173913,0.347826,3.130435,0 +L 3.130435,0,1.73913,0 +L 1.73913,0,0.695652,0.347826 +L 0.695652,0.347826,0,1.043478 +L 3.478261,9.73913,3.130435,9.391304 +L 3.130435,9.391304,2.782609,9.391304 +L 2.782609,9.391304,2.434783,9.73913 +L 2.434783,9.73913,2.434783,10.086957 +L 2.434783,10.086957,2.782609,10.434783 +L 2.782609,10.434783,3.130435,10.434783 +L 3.130435,10.434783,3.478261,10.086957 +L 3.478261,10.086957,3.478261,9.043478 +L 3.478261,9.043478,3.130435,8.347826 +L 3.130435,8.347826,2.434783,8 +L 2.782609,10.086957,2.782609,9.73913 +L 2.782609,9.73913,3.130435,9.73913 +L 3.130435,9.73913,3.130435,10.086957 +L 3.130435,10.086957,2.782609,10.086957 +L 3.130435,9.391304,3.478261,9.043478 +L 3.478261,9.73913,3.130435,8.347826 + +[] 12 +L 0.347826,1.043478,0,0.695652 +L 0,0.695652,0,0.347826 +L 0,0.347826,0.347826,0 +L 0.347826,0,0.695652,0 +L 0.695652,0,1.043478,0.347826 +L 1.043478,0.347826,1.043478,0.695652 +L 1.043478,0.695652,0.695652,1.043478 +L 0.695652,1.043478,0.347826,1.043478 +L 0.347826,0.695652,0.347826,0.347826 +L 0.347826,0.347826,0.695652,0.347826 +L 0.695652,0.347826,0.695652,0.695652 +L 0.695652,0.695652,0.347826,0.695652 + +[] 12 +L 0.347826,1.043478,0,0.695652 +L 0,0.695652,0,0.347826 +L 0,0.347826,0.347826,0 +L 0.347826,0,0.695652,0 +L 0.695652,0,1.043478,0.347826 +L 1.043478,0.347826,1.043478,0.695652 +L 1.043478,0.695652,0.695652,1.043478 +L 0.695652,1.043478,0.347826,1.043478 +L 0.347826,0.695652,0.347826,0.347826 +L 0.347826,0.347826,0.695652,0.347826 +L 0.695652,0.347826,0.695652,0.695652 +L 0.695652,0.695652,0.347826,0.695652 + +[] 12 +L 0.347826,1.043478,0,0.695652 +L 0,0.695652,0,0.347826 +L 0,0.347826,0.347826,0 +L 0.347826,0,0.695652,0 +L 0.695652,0,1.043478,0.347826 +L 1.043478,0.347826,1.043478,0.695652 +L 1.043478,0.695652,0.695652,1.043478 +L 0.695652,1.043478,0.347826,1.043478 +L 0.347826,0.695652,0.347826,0.347826 +L 0.347826,0.347826,0.695652,0.347826 +L 0.695652,0.347826,0.695652,0.695652 +L 0.695652,0.695652,0.347826,0.695652 + +[] 12 +L 0.347826,1.043478,0,0.695652 +L 0,0.695652,0,0.347826 +L 0,0.347826,0.347826,0 +L 0.347826,0,0.695652,0 +L 0.695652,0,1.043478,0.347826 +L 1.043478,0.347826,1.043478,0.695652 +L 1.043478,0.695652,0.695652,1.043478 +L 0.695652,1.043478,0.347826,1.043478 +L 0.347826,0.695652,0.347826,0.347826 +L 0.347826,0.347826,0.695652,0.347826 +L 0.695652,0.347826,0.695652,0.695652 +L 0.695652,0.695652,0.347826,0.695652 + +[] 12 +L 0.347826,1.043478,0,0.695652 +L 0,0.695652,0,0.347826 +L 0,0.347826,0.347826,0 +L 0.347826,0,0.695652,0 +L 0.695652,0,1.043478,0.347826 +L 1.043478,0.347826,1.043478,0.695652 +L 1.043478,0.695652,0.695652,1.043478 +L 0.695652,1.043478,0.347826,1.043478 +L 0.347826,0.695652,0.347826,0.347826 +L 0.347826,0.347826,0.695652,0.347826 +L 0.695652,0.347826,0.695652,0.695652 +L 0.695652,0.695652,0.347826,0.695652 + +[0179] 24 +L 4.521739,7.304348,0,0 +L 4.869565,7.304348,0.347826,0 +L 0,7.304348,4.869565,7.304348 +L 0,7.304348,0,6.956522 +L 0,6.956522,4.521739,6.956522 +L 0.347826,0.347826,4.869565,0.347826 +L 4.869565,0.347826,4.869565,0 +L 0,0,4.869565,0 +L 3.478261,9.73913,3.130435,9.391304 +L 3.130435,9.391304,2.782609,9.391304 +L 2.782609,9.391304,2.434783,9.73913 +L 2.434783,9.73913,2.434783,10.086957 +L 2.434783,10.086957,2.782609,10.434783 +L 2.782609,10.434783,3.130435,10.434783 +L 3.130435,10.434783,3.478261,10.086957 +L 3.478261,10.086957,3.478261,9.043478 +L 3.478261,9.043478,3.130435,8.347826 +L 3.130435,8.347826,2.434783,8 +L 2.782609,10.086957,2.782609,9.73913 +L 2.782609,9.73913,3.130435,9.73913 +L 3.130435,9.73913,3.130435,10.086957 +L 3.130435,10.086957,2.782609,10.086957 +L 3.130435,9.391304,3.478261,9.043478 +L 3.478261,9.73913,3.130435,8.347826 + +[] 12 +L 0.347826,1.043478,0,0.695652 +L 0,0.695652,0,0.347826 +L 0,0.347826,0.347826,0 +L 0.347826,0,0.695652,0 +L 0.695652,0,1.043478,0.347826 +L 1.043478,0.347826,1.043478,0.695652 +L 1.043478,0.695652,0.695652,1.043478 +L 0.695652,1.043478,0.347826,1.043478 +L 0.347826,0.695652,0.347826,0.347826 +L 0.347826,0.347826,0.695652,0.347826 +L 0.695652,0.347826,0.695652,0.695652 +L 0.695652,0.695652,0.347826,0.695652 + +[] 12 +L 0.347826,1.043478,0,0.695652 +L 0,0.695652,0,0.347826 +L 0,0.347826,0.347826,0 +L 0.347826,0,0.695652,0 +L 0.695652,0,1.043478,0.347826 +L 1.043478,0.347826,1.043478,0.695652 +L 1.043478,0.695652,0.695652,1.043478 +L 0.695652,1.043478,0.347826,1.043478 +L 0.347826,0.695652,0.347826,0.347826 +L 0.347826,0.347826,0.695652,0.347826 +L 0.695652,0.347826,0.695652,0.695652 +L 0.695652,0.695652,0.347826,0.695652 + +[017B] 20 +L 4.521739,7.304348,0,0 +L 4.869565,7.304348,0.347826,0 +L 0,7.304348,4.869565,7.304348 +L 0,7.304348,0,6.956522 +L 0,6.956522,4.521739,6.956522 +L 0.347826,0.347826,4.869565,0.347826 +L 4.869565,0.347826,4.869565,0 +L 0,0,4.869565,0 +L 2.434783,9.043478,2.086957,8.695652 +L 2.086957,8.695652,2.086957,8.347826 +L 2.086957,8.347826,2.434783,8 +L 2.434783,8,2.782609,8 +L 2.782609,8,3.130435,8.347826 +L 3.130435,8.347826,3.130435,8.695652 +L 3.130435,8.695652,2.782609,9.043478 +L 2.782609,9.043478,2.434783,9.043478 +L 2.434783,8.695652,2.434783,8.347826 +L 2.434783,8.347826,2.782609,8.347826 +L 2.782609,8.347826,2.782609,8.695652 +L 2.782609,8.695652,2.434783,8.695652 + +[] 12 +L 0.347826,1.043478,0,0.695652 +L 0,0.695652,0,0.347826 +L 0,0.347826,0.347826,0 +L 0.347826,0,0.695652,0 +L 0.695652,0,1.043478,0.347826 +L 1.043478,0.347826,1.043478,0.695652 +L 1.043478,0.695652,0.695652,1.043478 +L 0.695652,1.043478,0.347826,1.043478 +L 0.347826,0.695652,0.347826,0.347826 +L 0.347826,0.347826,0.695652,0.347826 +L 0.695652,0.347826,0.695652,0.695652 +L 0.695652,0.695652,0.347826,0.695652 + +[0105] 44 +L 4.173913,4.869565,4.173913,0 +L 4.173913,0,4.521739,0 +L 4.173913,4.869565,4.521739,4.869565 +L 4.521739,4.869565,4.521739,0 +L 4.173913,3.826087,3.478261,4.521739 +L 3.478261,4.521739,2.782609,4.869565 +L 2.782609,4.869565,1.73913,4.869565 +L 1.73913,4.869565,1.043478,4.521739 +L 1.043478,4.521739,0.347826,3.826087 +L 0.347826,3.826087,0,2.782609 +L 0,2.782609,0,2.086957 +L 0,2.086957,0.347826,1.043478 +L 0.347826,1.043478,1.043478,0.347826 +L 1.043478,0.347826,1.73913,0 +L 1.73913,0,2.782609,0 +L 2.782609,0,3.478261,0.347826 +L 3.478261,0.347826,4.173913,1.043478 +L 4.173913,3.826087,2.782609,4.521739 +L 2.782609,4.521739,1.73913,4.521739 +L 1.73913,4.521739,1.043478,4.173913 +L 1.043478,4.173913,0.695652,3.826087 +L 0.695652,3.826087,0.347826,2.782609 +L 0.347826,2.782609,0.347826,2.086957 +L 0.347826,2.086957,0.695652,1.043478 +L 0.695652,1.043478,1.043478,0.695652 +L 1.043478,0.695652,1.73913,0.347826 +L 1.73913,0.347826,2.782609,0.347826 +L 2.782609,0.347826,4.173913,1.043478 +L 4.173913,0,3.478261,-0.347826 +L 3.478261,-0.347826,3.130435,-1.043478 +L 3.130435,-1.043478,3.130435,-2.086957 +L 3.130435,-2.086957,3.478261,-2.434783 +L 3.478261,-2.434783,3.826087,-2.434783 +L 3.826087,-2.434783,4.173913,-2.086957 +L 4.173913,-2.086957,4.173913,-1.73913 +L 4.173913,-1.73913,3.826087,-1.391304 +L 3.826087,-1.391304,3.478261,-1.391304 +L 3.478261,-1.391304,3.130435,-1.73913 +L 3.478261,-1.73913,3.478261,-2.086957 +L 3.478261,-2.086957,3.826087,-2.086957 +L 3.826087,-2.086957,3.826087,-1.73913 +L 3.826087,-1.73913,3.478261,-1.73913 +L 3.478261,-0.347826,3.130435,-1.73913 +L 3.130435,-1.043478,3.478261,-1.391304 + +[] 12 +L 0.347826,1.043478,0,0.695652 +L 0,0.695652,0,0.347826 +L 0,0.347826,0.347826,0 +L 0.347826,0,0.695652,0 +L 0.695652,0,1.043478,0.347826 +L 1.043478,0.347826,1.043478,0.695652 +L 1.043478,0.695652,0.695652,1.043478 +L 0.695652,1.043478,0.347826,1.043478 +L 0.347826,0.695652,0.347826,0.347826 +L 0.347826,0.347826,0.695652,0.347826 +L 0.695652,0.347826,0.695652,0.695652 +L 0.695652,0.695652,0.347826,0.695652 + +[0142] 8 +L 1.043478,7.304348,1.043478,0 +L 1.043478,0,1.391304,0 +L 1.043478,7.304348,1.391304,7.304348 +L 1.391304,7.304348,1.391304,0 +L 2.434783,4.521739,0,2.434783 +L 0,2.434783,0,2.782609 +L 2.434783,4.521739,2.434783,4.869565 +L 2.434783,4.869565,0,2.782609 + +[] 12 +L 0.347826,1.043478,0,0.695652 +L 0,0.695652,0,0.347826 +L 0,0.347826,0.347826,0 +L 0.347826,0,0.695652,0 +L 0.695652,0,1.043478,0.347826 +L 1.043478,0.347826,1.043478,0.695652 +L 1.043478,0.695652,0.695652,1.043478 +L 0.695652,1.043478,0.347826,1.043478 +L 0.347826,0.695652,0.347826,0.347826 +L 0.347826,0.347826,0.695652,0.347826 +L 0.695652,0.347826,0.695652,0.695652 +L 0.695652,0.695652,0.347826,0.695652 + +[] 12 +L 0.347826,1.043478,0,0.695652 +L 0,0.695652,0,0.347826 +L 0,0.347826,0.347826,0 +L 0.347826,0,0.695652,0 +L 0.695652,0,1.043478,0.347826 +L 1.043478,0.347826,1.043478,0.695652 +L 1.043478,0.695652,0.695652,1.043478 +L 0.695652,1.043478,0.347826,1.043478 +L 0.347826,0.695652,0.347826,0.347826 +L 0.347826,0.347826,0.695652,0.347826 +L 0.695652,0.347826,0.695652,0.695652 +L 0.695652,0.695652,0.347826,0.695652 + +[015B] 50 +L 3.826087,3.826087,3.478261,4.521739 +L 3.478261,4.521739,2.434783,4.869565 +L 2.434783,4.869565,1.391304,4.869565 +L 1.391304,4.869565,0.347826,4.521739 +L 0.347826,4.521739,0,3.826087 +L 0,3.826087,0.347826,3.130435 +L 0.347826,3.130435,1.043478,2.782609 +L 1.043478,2.782609,2.782609,2.086957 +L 2.782609,2.086957,3.478261,1.73913 +L 3.130435,2.086957,3.478261,1.391304 +L 3.478261,1.391304,3.478261,1.043478 +L 3.478261,1.043478,3.130435,0.347826 +L 3.478261,0.695652,2.434783,0.347826 +L 2.434783,0.347826,1.391304,0.347826 +L 1.391304,0.347826,0.347826,0.695652 +L 0.695652,0.347826,0.347826,1.043478 +L 0.347826,1.043478,0,1.043478 +L 3.826087,3.826087,3.478261,3.826087 +L 3.478261,3.826087,3.130435,4.521739 +L 3.478261,4.173913,2.434783,4.521739 +L 2.434783,4.521739,1.391304,4.521739 +L 1.391304,4.521739,0.347826,4.173913 +L 0.695652,4.521739,0.347826,3.826087 +L 0.347826,3.826087,0.695652,3.130435 +L 0.347826,3.478261,1.043478,3.130435 +L 1.043478,3.130435,2.782609,2.434783 +L 2.782609,2.434783,3.478261,2.086957 +L 3.478261,2.086957,3.826087,1.391304 +L 3.826087,1.391304,3.826087,1.043478 +L 3.826087,1.043478,3.478261,0.347826 +L 3.478261,0.347826,2.434783,0 +L 2.434783,0,1.391304,0 +L 1.391304,0,0.347826,0.347826 +L 0.347826,0.347826,0,1.043478 +L 2.782609,7.304348,2.434783,6.956522 +L 2.434783,6.956522,2.086957,6.956522 +L 2.086957,6.956522,1.73913,7.304348 +L 1.73913,7.304348,1.73913,7.652174 +L 1.73913,7.652174,2.086957,8 +L 2.086957,8,2.434783,8 +L 2.434783,8,2.782609,7.652174 +L 2.782609,7.652174,2.782609,6.608696 +L 2.782609,6.608696,2.434783,5.913043 +L 2.434783,5.913043,1.73913,5.565217 +L 2.086957,7.652174,2.086957,7.304348 +L 2.086957,7.304348,2.434783,7.304348 +L 2.434783,7.304348,2.434783,7.652174 +L 2.434783,7.652174,2.086957,7.652174 +L 2.434783,6.956522,2.782609,6.608696 +L 2.782609,7.304348,2.434783,5.913043 + +[] 12 +L 0.347826,1.043478,0,0.695652 +L 0,0.695652,0,0.347826 +L 0,0.347826,0.347826,0 +L 0.347826,0,0.695652,0 +L 0.695652,0,1.043478,0.347826 +L 1.043478,0.347826,1.043478,0.695652 +L 1.043478,0.695652,0.695652,1.043478 +L 0.695652,1.043478,0.347826,1.043478 +L 0.347826,0.695652,0.347826,0.347826 +L 0.347826,0.347826,0.695652,0.347826 +L 0.695652,0.347826,0.695652,0.695652 +L 0.695652,0.695652,0.347826,0.695652 + +[] 12 +L 0.347826,1.043478,0,0.695652 +L 0,0.695652,0,0.347826 +L 0,0.347826,0.347826,0 +L 0.347826,0,0.695652,0 +L 0.695652,0,1.043478,0.347826 +L 1.043478,0.347826,1.043478,0.695652 +L 1.043478,0.695652,0.695652,1.043478 +L 0.695652,1.043478,0.347826,1.043478 +L 0.347826,0.695652,0.347826,0.347826 +L 0.347826,0.347826,0.695652,0.347826 +L 0.695652,0.347826,0.695652,0.695652 +L 0.695652,0.695652,0.347826,0.695652 + +[] 12 +L 0.347826,1.043478,0,0.695652 +L 0,0.695652,0,0.347826 +L 0,0.347826,0.347826,0 +L 0.347826,0,0.695652,0 +L 0.695652,0,1.043478,0.347826 +L 1.043478,0.347826,1.043478,0.695652 +L 1.043478,0.695652,0.695652,1.043478 +L 0.695652,1.043478,0.347826,1.043478 +L 0.347826,0.695652,0.347826,0.347826 +L 0.347826,0.347826,0.695652,0.347826 +L 0.695652,0.347826,0.695652,0.695652 +L 0.695652,0.695652,0.347826,0.695652 + +[] 12 +L 0.347826,1.043478,0,0.695652 +L 0,0.695652,0,0.347826 +L 0,0.347826,0.347826,0 +L 0.347826,0,0.695652,0 +L 0.695652,0,1.043478,0.347826 +L 1.043478,0.347826,1.043478,0.695652 +L 1.043478,0.695652,0.695652,1.043478 +L 0.695652,1.043478,0.347826,1.043478 +L 0.347826,0.695652,0.347826,0.347826 +L 0.347826,0.347826,0.695652,0.347826 +L 0.695652,0.347826,0.695652,0.695652 +L 0.695652,0.695652,0.347826,0.695652 + +[] 12 +L 0.347826,1.043478,0,0.695652 +L 0,0.695652,0,0.347826 +L 0,0.347826,0.347826,0 +L 0.347826,0,0.695652,0 +L 0.695652,0,1.043478,0.347826 +L 1.043478,0.347826,1.043478,0.695652 +L 1.043478,0.695652,0.695652,1.043478 +L 0.695652,1.043478,0.347826,1.043478 +L 0.347826,0.695652,0.347826,0.347826 +L 0.347826,0.347826,0.695652,0.347826 +L 0.695652,0.347826,0.695652,0.695652 +L 0.695652,0.695652,0.347826,0.695652 + +[017A] 24 +L 3.478261,4.521739,0,0 +L 4.173913,4.869565,0.695652,0.347826 +L 0,4.869565,4.173913,4.869565 +L 0,4.869565,0,4.521739 +L 0,4.521739,3.478261,4.521739 +L 0.695652,0.347826,4.173913,0.347826 +L 4.173913,0.347826,4.173913,0 +L 0,0,4.173913,0 +L 3.130435,7.304348,2.782609,6.956522 +L 2.782609,6.956522,2.434783,6.956522 +L 2.434783,6.956522,2.086957,7.304348 +L 2.086957,7.304348,2.086957,7.652174 +L 2.086957,7.652174,2.434783,8 +L 2.434783,8,2.782609,8 +L 2.782609,8,3.130435,7.652174 +L 3.130435,7.652174,3.130435,6.608696 +L 3.130435,6.608696,2.782609,5.913043 +L 2.782609,5.913043,2.086957,5.565217 +L 2.434783,7.652174,2.434783,7.304348 +L 2.434783,7.304348,2.782609,7.304348 +L 2.782609,7.304348,2.782609,7.652174 +L 2.782609,7.652174,2.434783,7.652174 +L 2.782609,6.956522,3.130435,6.608696 +L 3.130435,7.304348,2.782609,5.913043 + +[] 12 +L 0.347826,1.043478,0,0.695652 +L 0,0.695652,0,0.347826 +L 0,0.347826,0.347826,0 +L 0.347826,0,0.695652,0 +L 0.695652,0,1.043478,0.347826 +L 1.043478,0.347826,1.043478,0.695652 +L 1.043478,0.695652,0.695652,1.043478 +L 0.695652,1.043478,0.347826,1.043478 +L 0.347826,0.695652,0.347826,0.347826 +L 0.347826,0.347826,0.695652,0.347826 +L 0.695652,0.347826,0.695652,0.695652 +L 0.695652,0.695652,0.347826,0.695652 + +[] 12 +L 0.347826,1.043478,0,0.695652 +L 0,0.695652,0,0.347826 +L 0,0.347826,0.347826,0 +L 0.347826,0,0.695652,0 +L 0.695652,0,1.043478,0.347826 +L 1.043478,0.347826,1.043478,0.695652 +L 1.043478,0.695652,0.695652,1.043478 +L 0.695652,1.043478,0.347826,1.043478 +L 0.347826,0.695652,0.347826,0.347826 +L 0.347826,0.347826,0.695652,0.347826 +L 0.695652,0.347826,0.695652,0.695652 +L 0.695652,0.695652,0.347826,0.695652 + +[017C] 20 +L 3.478261,4.521739,0,0 +L 4.173913,4.869565,0.695652,0.347826 +L 0,4.869565,4.173913,4.869565 +L 0,4.869565,0,4.521739 +L 0,4.521739,3.478261,4.521739 +L 0.695652,0.347826,4.173913,0.347826 +L 4.173913,0.347826,4.173913,0 +L 0,0,4.173913,0 +L 2.086957,6.608696,1.73913,6.26087 +L 1.73913,6.26087,1.73913,5.913043 +L 1.73913,5.913043,2.086957,5.565217 +L 2.086957,5.565217,2.434783,5.565217 +L 2.434783,5.565217,2.782609,5.913043 +L 2.782609,5.913043,2.782609,6.26087 +L 2.782609,6.26087,2.434783,6.608696 +L 2.434783,6.608696,2.086957,6.608696 +L 2.086957,6.26087,2.086957,5.913043 +L 2.086957,5.913043,2.434783,5.913043 +L 2.434783,5.913043,2.434783,6.26087 +L 2.434783,6.26087,2.086957,6.26087 + +[] 12 +L 0.347826,1.043478,0,0.695652 +L 0,0.695652,0,0.347826 +L 0,0.347826,0.347826,0 +L 0.347826,0,0.695652,0 +L 0.695652,0,1.043478,0.347826 +L 1.043478,0.347826,1.043478,0.695652 +L 1.043478,0.695652,0.695652,1.043478 +L 0.695652,1.043478,0.347826,1.043478 +L 0.347826,0.695652,0.347826,0.347826 +L 0.347826,0.347826,0.695652,0.347826 +L 0.695652,0.347826,0.695652,0.695652 +L 0.695652,0.695652,0.347826,0.695652 + +[] 12 +L 0.347826,1.043478,0,0.695652 +L 0,0.695652,0,0.347826 +L 0,0.347826,0.347826,0 +L 0.347826,0,0.695652,0 +L 0.695652,0,1.043478,0.347826 +L 1.043478,0.347826,1.043478,0.695652 +L 1.043478,0.695652,0.695652,1.043478 +L 0.695652,1.043478,0.347826,1.043478 +L 0.347826,0.695652,0.347826,0.347826 +L 0.347826,0.347826,0.695652,0.347826 +L 0.695652,0.347826,0.695652,0.695652 +L 0.695652,0.695652,0.347826,0.695652 + +[] 12 +L 0.347826,1.043478,0,0.695652 +L 0,0.695652,0,0.347826 +L 0,0.347826,0.347826,0 +L 0.347826,0,0.695652,0 +L 0.695652,0,1.043478,0.347826 +L 1.043478,0.347826,1.043478,0.695652 +L 1.043478,0.695652,0.695652,1.043478 +L 0.695652,1.043478,0.347826,1.043478 +L 0.347826,0.695652,0.347826,0.347826 +L 0.347826,0.347826,0.695652,0.347826 +L 0.695652,0.347826,0.695652,0.695652 +L 0.695652,0.695652,0.347826,0.695652 + +[] 12 +L 0.347826,1.043478,0,0.695652 +L 0,0.695652,0,0.347826 +L 0,0.347826,0.347826,0 +L 0.347826,0,0.695652,0 +L 0.695652,0,1.043478,0.347826 +L 1.043478,0.347826,1.043478,0.695652 +L 1.043478,0.695652,0.695652,1.043478 +L 0.695652,1.043478,0.347826,1.043478 +L 0.347826,0.695652,0.347826,0.347826 +L 0.347826,0.347826,0.695652,0.347826 +L 0.695652,0.347826,0.695652,0.695652 +L 0.695652,0.695652,0.347826,0.695652 + +[] 12 +L 0.347826,1.043478,0,0.695652 +L 0,0.695652,0,0.347826 +L 0,0.347826,0.347826,0 +L 0.347826,0,0.695652,0 +L 0.695652,0,1.043478,0.347826 +L 1.043478,0.347826,1.043478,0.695652 +L 1.043478,0.695652,0.695652,1.043478 +L 0.695652,1.043478,0.347826,1.043478 +L 0.347826,0.695652,0.347826,0.347826 +L 0.347826,0.347826,0.695652,0.347826 +L 0.695652,0.347826,0.695652,0.695652 +L 0.695652,0.695652,0.347826,0.695652 + +[] 12 +L 0.347826,1.043478,0,0.695652 +L 0,0.695652,0,0.347826 +L 0,0.347826,0.347826,0 +L 0.347826,0,0.695652,0 +L 0.695652,0,1.043478,0.347826 +L 1.043478,0.347826,1.043478,0.695652 +L 1.043478,0.695652,0.695652,1.043478 +L 0.695652,1.043478,0.347826,1.043478 +L 0.347826,0.695652,0.347826,0.347826 +L 0.347826,0.347826,0.695652,0.347826 +L 0.695652,0.347826,0.695652,0.695652 +L 0.695652,0.695652,0.347826,0.695652 + +[0106] 50 +L 5.217391,5.565217,4.869565,6.26087 +L 4.869565,6.26087,4.173913,6.956522 +L 4.173913,6.956522,3.478261,7.304348 +L 3.478261,7.304348,2.086957,7.304348 +L 2.086957,7.304348,1.391304,6.956522 +L 1.391304,6.956522,0.695652,6.26087 +L 0.695652,6.26087,0.347826,5.565217 +L 0.347826,5.565217,0,4.521739 +L 0,4.521739,0,2.782609 +L 0,2.782609,0.347826,1.73913 +L 0.347826,1.73913,0.695652,1.043478 +L 0.695652,1.043478,1.391304,0.347826 +L 1.391304,0.347826,2.086957,0 +L 2.086957,0,3.478261,0 +L 3.478261,0,4.173913,0.347826 +L 4.173913,0.347826,4.869565,1.043478 +L 4.869565,1.043478,5.217391,1.73913 +L 5.217391,5.565217,4.869565,5.565217 +L 4.869565,5.565217,4.521739,6.26087 +L 4.521739,6.26087,4.173913,6.608696 +L 4.173913,6.608696,3.478261,6.956522 +L 3.478261,6.956522,2.086957,6.956522 +L 2.086957,6.956522,1.391304,6.608696 +L 1.391304,6.608696,0.695652,5.565217 +L 0.695652,5.565217,0.347826,4.521739 +L 0.347826,4.521739,0.347826,2.782609 +L 0.347826,2.782609,0.695652,1.73913 +L 0.695652,1.73913,1.391304,0.695652 +L 1.391304,0.695652,2.086957,0.347826 +L 2.086957,0.347826,3.478261,0.347826 +L 3.478261,0.347826,4.173913,0.695652 +L 4.173913,0.695652,4.521739,1.043478 +L 4.521739,1.043478,4.869565,1.73913 +L 4.869565,1.73913,5.217391,1.73913 +L 3.478261,9.73913,3.130435,9.391304 +L 3.130435,9.391304,2.782609,9.391304 +L 2.782609,9.391304,2.434783,9.73913 +L 2.434783,9.73913,2.434783,10.086957 +L 2.434783,10.086957,2.782609,10.434783 +L 2.782609,10.434783,3.130435,10.434783 +L 3.130435,10.434783,3.478261,10.086957 +L 3.478261,10.086957,3.478261,9.043478 +L 3.478261,9.043478,3.130435,8.347826 +L 3.130435,8.347826,2.434783,8 +L 2.782609,10.086957,2.782609,9.73913 +L 2.782609,9.73913,3.130435,9.73913 +L 3.130435,9.73913,3.130435,10.086957 +L 3.130435,10.086957,2.782609,10.086957 +L 3.130435,9.391304,3.478261,9.043478 +L 3.478261,9.73913,3.130435,8.347826 + +[] 12 +L 0.347826,1.043478,0,0.695652 +L 0,0.695652,0,0.347826 +L 0,0.347826,0.347826,0 +L 0.347826,0,0.695652,0 +L 0.695652,0,1.043478,0.347826 +L 1.043478,0.347826,1.043478,0.695652 +L 1.043478,0.695652,0.695652,1.043478 +L 0.695652,1.043478,0.347826,1.043478 +L 0.347826,0.695652,0.347826,0.347826 +L 0.347826,0.347826,0.695652,0.347826 +L 0.695652,0.347826,0.695652,0.695652 +L 0.695652,0.695652,0.347826,0.695652 + +[] 12 +L 0.347826,1.043478,0,0.695652 +L 0,0.695652,0,0.347826 +L 0,0.347826,0.347826,0 +L 0.347826,0,0.695652,0 +L 0.695652,0,1.043478,0.347826 +L 1.043478,0.347826,1.043478,0.695652 +L 1.043478,0.695652,0.695652,1.043478 +L 0.695652,1.043478,0.347826,1.043478 +L 0.347826,0.695652,0.347826,0.347826 +L 0.347826,0.347826,0.695652,0.347826 +L 0.695652,0.347826,0.695652,0.695652 +L 0.695652,0.695652,0.347826,0.695652 + +[] 12 +L 0.347826,1.043478,0,0.695652 +L 0,0.695652,0,0.347826 +L 0,0.347826,0.347826,0 +L 0.347826,0,0.695652,0 +L 0.695652,0,1.043478,0.347826 +L 1.043478,0.347826,1.043478,0.695652 +L 1.043478,0.695652,0.695652,1.043478 +L 0.695652,1.043478,0.347826,1.043478 +L 0.347826,0.695652,0.347826,0.347826 +L 0.347826,0.347826,0.695652,0.347826 +L 0.695652,0.347826,0.695652,0.695652 +L 0.695652,0.695652,0.347826,0.695652 + +[0118] 27 +L 0,7.304348,0,0 +L 0.347826,6.956522,0.347826,0.347826 +L 0,7.304348,4.173913,7.304348 +L 0.347826,6.956522,4.173913,6.956522 +L 4.173913,6.956522,4.173913,7.304348 +L 0.347826,3.826087,2.434783,3.826087 +L 2.434783,3.826087,2.434783,3.478261 +L 0.347826,3.478261,2.434783,3.478261 +L 0.347826,0.347826,4.173913,0.347826 +L 4.173913,0.347826,4.173913,0 +L 0,0,4.173913,0 +L 3.130435,0,2.434783,-0.347826 +L 2.434783,-0.347826,2.086957,-1.043478 +L 2.086957,-1.043478,2.086957,-2.086957 +L 2.086957,-2.086957,2.434783,-2.434783 +L 2.434783,-2.434783,2.782609,-2.434783 +L 2.782609,-2.434783,3.130435,-2.086957 +L 3.130435,-2.086957,3.130435,-1.73913 +L 3.130435,-1.73913,2.782609,-1.391304 +L 2.782609,-1.391304,2.434783,-1.391304 +L 2.434783,-1.391304,2.086957,-1.73913 +L 2.434783,-1.73913,2.434783,-2.086957 +L 2.434783,-2.086957,2.782609,-2.086957 +L 2.782609,-2.086957,2.782609,-1.73913 +L 2.782609,-1.73913,2.434783,-1.73913 +L 2.434783,-0.347826,2.086957,-1.73913 +L 2.086957,-1.043478,2.434783,-1.391304 + +[] 12 +L 0.347826,1.043478,0,0.695652 +L 0,0.695652,0,0.347826 +L 0,0.347826,0.347826,0 +L 0.347826,0,0.695652,0 +L 0.695652,0,1.043478,0.347826 +L 1.043478,0.347826,1.043478,0.695652 +L 1.043478,0.695652,0.695652,1.043478 +L 0.695652,1.043478,0.347826,1.043478 +L 0.347826,0.695652,0.347826,0.347826 +L 0.347826,0.347826,0.695652,0.347826 +L 0.695652,0.347826,0.695652,0.695652 +L 0.695652,0.695652,0.347826,0.695652 + +[] 12 +L 0.347826,1.043478,0,0.695652 +L 0,0.695652,0,0.347826 +L 0,0.347826,0.347826,0 +L 0.347826,0,0.695652,0 +L 0.695652,0,1.043478,0.347826 +L 1.043478,0.347826,1.043478,0.695652 +L 1.043478,0.695652,0.695652,1.043478 +L 0.695652,1.043478,0.347826,1.043478 +L 0.347826,0.695652,0.347826,0.347826 +L 0.347826,0.347826,0.695652,0.347826 +L 0.695652,0.347826,0.695652,0.695652 +L 0.695652,0.695652,0.347826,0.695652 + +[] 12 +L 0.347826,1.043478,0,0.695652 +L 0,0.695652,0,0.347826 +L 0,0.347826,0.347826,0 +L 0.347826,0,0.695652,0 +L 0.695652,0,1.043478,0.347826 +L 1.043478,0.347826,1.043478,0.695652 +L 1.043478,0.695652,0.695652,1.043478 +L 0.695652,1.043478,0.347826,1.043478 +L 0.347826,0.695652,0.347826,0.347826 +L 0.347826,0.347826,0.695652,0.347826 +L 0.695652,0.347826,0.695652,0.695652 +L 0.695652,0.695652,0.347826,0.695652 + +[] 12 +L 0.347826,1.043478,0,0.695652 +L 0,0.695652,0,0.347826 +L 0,0.347826,0.347826,0 +L 0.347826,0,0.695652,0 +L 0.695652,0,1.043478,0.347826 +L 1.043478,0.347826,1.043478,0.695652 +L 1.043478,0.695652,0.695652,1.043478 +L 0.695652,1.043478,0.347826,1.043478 +L 0.347826,0.695652,0.347826,0.347826 +L 0.347826,0.347826,0.695652,0.347826 +L 0.695652,0.347826,0.695652,0.695652 +L 0.695652,0.695652,0.347826,0.695652 + +[] 12 +L 0.347826,1.043478,0,0.695652 +L 0,0.695652,0,0.347826 +L 0,0.347826,0.347826,0 +L 0.347826,0,0.695652,0 +L 0.695652,0,1.043478,0.347826 +L 1.043478,0.347826,1.043478,0.695652 +L 1.043478,0.695652,0.695652,1.043478 +L 0.695652,1.043478,0.347826,1.043478 +L 0.347826,0.695652,0.347826,0.347826 +L 0.347826,0.347826,0.695652,0.347826 +L 0.695652,0.347826,0.695652,0.695652 +L 0.695652,0.695652,0.347826,0.695652 + +[] 12 +L 0.347826,1.043478,0,0.695652 +L 0,0.695652,0,0.347826 +L 0,0.347826,0.347826,0 +L 0.347826,0,0.695652,0 +L 0.695652,0,1.043478,0.347826 +L 1.043478,0.347826,1.043478,0.695652 +L 1.043478,0.695652,0.695652,1.043478 +L 0.695652,1.043478,0.347826,1.043478 +L 0.347826,0.695652,0.347826,0.347826 +L 0.347826,0.347826,0.695652,0.347826 +L 0.695652,0.347826,0.695652,0.695652 +L 0.695652,0.695652,0.347826,0.695652 + +[0143] 24 +L 0,7.304348,0,0 +L 0.347826,6.26087,0.347826,0 +L 0.347826,0,0,0 +L 0.347826,6.26087,4.869565,0 +L 0,7.304348,4.521739,1.043478 +L 4.521739,7.304348,4.521739,1.043478 +L 4.521739,7.304348,4.869565,7.304348 +L 4.869565,7.304348,4.869565,0 +L 3.478261,9.73913,3.130435,9.391304 +L 3.130435,9.391304,2.782609,9.391304 +L 2.782609,9.391304,2.434783,9.73913 +L 2.434783,9.73913,2.434783,10.086957 +L 2.434783,10.086957,2.782609,10.434783 +L 2.782609,10.434783,3.130435,10.434783 +L 3.130435,10.434783,3.478261,10.086957 +L 3.478261,10.086957,3.478261,9.043478 +L 3.478261,9.043478,3.130435,8.347826 +L 3.130435,8.347826,2.434783,8 +L 2.782609,10.086957,2.782609,9.73913 +L 2.782609,9.73913,3.130435,9.73913 +L 3.130435,9.73913,3.130435,10.086957 +L 3.130435,10.086957,2.782609,10.086957 +L 3.130435,9.391304,3.478261,9.043478 +L 3.478261,9.73913,3.130435,8.347826 + +[] 12 +L 0.347826,1.043478,0,0.695652 +L 0,0.695652,0,0.347826 +L 0,0.347826,0.347826,0 +L 0.347826,0,0.695652,0 +L 0.695652,0,1.043478,0.347826 +L 1.043478,0.347826,1.043478,0.695652 +L 1.043478,0.695652,0.695652,1.043478 +L 0.695652,1.043478,0.347826,1.043478 +L 0.347826,0.695652,0.347826,0.347826 +L 0.347826,0.347826,0.695652,0.347826 +L 0.695652,0.347826,0.695652,0.695652 +L 0.695652,0.695652,0.347826,0.695652 + +[00D3] 52 +L 2.086957,7.304348,1.391304,6.956522 +L 1.391304,6.956522,0.695652,6.26087 +L 0.695652,6.26087,0.347826,5.565217 +L 0.347826,5.565217,0,4.521739 +L 0,4.521739,0,2.782609 +L 0,2.782609,0.347826,1.73913 +L 0.347826,1.73913,0.695652,1.043478 +L 0.695652,1.043478,1.391304,0.347826 +L 1.391304,0.347826,2.086957,0 +L 2.086957,0,3.478261,0 +L 3.478261,0,4.173913,0.347826 +L 4.173913,0.347826,4.869565,1.043478 +L 4.869565,1.043478,5.217391,1.73913 +L 5.217391,1.73913,5.565217,2.782609 +L 5.565217,2.782609,5.565217,4.521739 +L 5.565217,4.521739,5.217391,5.565217 +L 5.217391,5.565217,4.869565,6.26087 +L 4.869565,6.26087,4.173913,6.956522 +L 4.173913,6.956522,3.478261,7.304348 +L 3.478261,7.304348,2.086957,7.304348 +L 2.434783,6.956522,1.391304,6.608696 +L 1.391304,6.608696,0.695652,5.565217 +L 0.695652,5.565217,0.347826,4.521739 +L 0.347826,4.521739,0.347826,2.782609 +L 0.347826,2.782609,0.695652,1.73913 +L 0.695652,1.73913,1.391304,0.695652 +L 1.391304,0.695652,2.434783,0.347826 +L 2.434783,0.347826,3.130435,0.347826 +L 3.130435,0.347826,4.173913,0.695652 +L 4.173913,0.695652,4.869565,1.73913 +L 4.869565,1.73913,5.217391,2.782609 +L 5.217391,2.782609,5.217391,4.521739 +L 5.217391,4.521739,4.869565,5.565217 +L 4.869565,5.565217,4.173913,6.608696 +L 4.173913,6.608696,3.130435,6.956522 +L 3.130435,6.956522,2.434783,6.956522 +L 3.826087,9.73913,3.478261,9.391304 +L 3.478261,9.391304,3.130435,9.391304 +L 3.130435,9.391304,2.782609,9.73913 +L 2.782609,9.73913,2.782609,10.086957 +L 2.782609,10.086957,3.130435,10.434783 +L 3.130435,10.434783,3.478261,10.434783 +L 3.478261,10.434783,3.826087,10.086957 +L 3.826087,10.086957,3.826087,9.043478 +L 3.826087,9.043478,3.478261,8.347826 +L 3.478261,8.347826,2.782609,8 +L 3.130435,10.086957,3.130435,9.73913 +L 3.130435,9.73913,3.478261,9.73913 +L 3.478261,9.73913,3.478261,10.086957 +L 3.478261,10.086957,3.130435,10.086957 +L 3.478261,9.391304,3.826087,9.043478 +L 3.826087,9.73913,3.478261,8.347826 + +[] 12 +L 0.347826,1.043478,0,0.695652 +L 0,0.695652,0,0.347826 +L 0,0.347826,0.347826,0 +L 0.347826,0,0.695652,0 +L 0.695652,0,1.043478,0.347826 +L 1.043478,0.347826,1.043478,0.695652 +L 1.043478,0.695652,0.695652,1.043478 +L 0.695652,1.043478,0.347826,1.043478 +L 0.347826,0.695652,0.347826,0.347826 +L 0.347826,0.347826,0.695652,0.347826 +L 0.695652,0.347826,0.695652,0.695652 +L 0.695652,0.695652,0.347826,0.695652 + +[] 12 +L 0.347826,1.043478,0,0.695652 +L 0,0.695652,0,0.347826 +L 0,0.347826,0.347826,0 +L 0.347826,0,0.695652,0 +L 0.695652,0,1.043478,0.347826 +L 1.043478,0.347826,1.043478,0.695652 +L 1.043478,0.695652,0.695652,1.043478 +L 0.695652,1.043478,0.347826,1.043478 +L 0.347826,0.695652,0.347826,0.347826 +L 0.347826,0.347826,0.695652,0.347826 +L 0.695652,0.347826,0.695652,0.695652 +L 0.695652,0.695652,0.347826,0.695652 + +[] 12 +L 0.347826,1.043478,0,0.695652 +L 0,0.695652,0,0.347826 +L 0,0.347826,0.347826,0 +L 0.347826,0,0.695652,0 +L 0.695652,0,1.043478,0.347826 +L 1.043478,0.347826,1.043478,0.695652 +L 1.043478,0.695652,0.695652,1.043478 +L 0.695652,1.043478,0.347826,1.043478 +L 0.347826,0.695652,0.347826,0.347826 +L 0.347826,0.347826,0.695652,0.347826 +L 0.695652,0.347826,0.695652,0.695652 +L 0.695652,0.695652,0.347826,0.695652 + +[] 12 +L 0.347826,1.043478,0,0.695652 +L 0,0.695652,0,0.347826 +L 0,0.347826,0.347826,0 +L 0.347826,0,0.695652,0 +L 0.695652,0,1.043478,0.347826 +L 1.043478,0.347826,1.043478,0.695652 +L 1.043478,0.695652,0.695652,1.043478 +L 0.695652,1.043478,0.347826,1.043478 +L 0.347826,0.695652,0.347826,0.347826 +L 0.347826,0.347826,0.695652,0.347826 +L 0.695652,0.347826,0.695652,0.695652 +L 0.695652,0.695652,0.347826,0.695652 + +[] 12 +L 0.347826,1.043478,0,0.695652 +L 0,0.695652,0,0.347826 +L 0,0.347826,0.347826,0 +L 0.347826,0,0.695652,0 +L 0.695652,0,1.043478,0.347826 +L 1.043478,0.347826,1.043478,0.695652 +L 1.043478,0.695652,0.695652,1.043478 +L 0.695652,1.043478,0.347826,1.043478 +L 0.347826,0.695652,0.347826,0.347826 +L 0.347826,0.347826,0.695652,0.347826 +L 0.695652,0.347826,0.695652,0.695652 +L 0.695652,0.695652,0.347826,0.695652 + +[] 12 +L 0.347826,1.043478,0,0.695652 +L 0,0.695652,0,0.347826 +L 0,0.347826,0.347826,0 +L 0.347826,0,0.695652,0 +L 0.695652,0,1.043478,0.347826 +L 1.043478,0.347826,1.043478,0.695652 +L 1.043478,0.695652,0.695652,1.043478 +L 0.695652,1.043478,0.347826,1.043478 +L 0.347826,0.695652,0.347826,0.347826 +L 0.347826,0.347826,0.695652,0.347826 +L 0.695652,0.347826,0.695652,0.695652 +L 0.695652,0.695652,0.347826,0.695652 + +[] 12 +L 0.347826,1.043478,0,0.695652 +L 0,0.695652,0,0.347826 +L 0,0.347826,0.347826,0 +L 0.347826,0,0.695652,0 +L 0.695652,0,1.043478,0.347826 +L 1.043478,0.347826,1.043478,0.695652 +L 1.043478,0.695652,0.695652,1.043478 +L 0.695652,1.043478,0.347826,1.043478 +L 0.347826,0.695652,0.347826,0.347826 +L 0.347826,0.347826,0.695652,0.347826 +L 0.695652,0.347826,0.695652,0.695652 +L 0.695652,0.695652,0.347826,0.695652 + +[] 12 +L 0.347826,1.043478,0,0.695652 +L 0,0.695652,0,0.347826 +L 0,0.347826,0.347826,0 +L 0.347826,0,0.695652,0 +L 0.695652,0,1.043478,0.347826 +L 1.043478,0.347826,1.043478,0.695652 +L 1.043478,0.695652,0.695652,1.043478 +L 0.695652,1.043478,0.347826,1.043478 +L 0.347826,0.695652,0.347826,0.347826 +L 0.347826,0.347826,0.695652,0.347826 +L 0.695652,0.347826,0.695652,0.695652 +L 0.695652,0.695652,0.347826,0.695652 + +[] 12 +L 0.347826,1.043478,0,0.695652 +L 0,0.695652,0,0.347826 +L 0,0.347826,0.347826,0 +L 0.347826,0,0.695652,0 +L 0.695652,0,1.043478,0.347826 +L 1.043478,0.347826,1.043478,0.695652 +L 1.043478,0.695652,0.695652,1.043478 +L 0.695652,1.043478,0.347826,1.043478 +L 0.347826,0.695652,0.347826,0.347826 +L 0.347826,0.347826,0.695652,0.347826 +L 0.695652,0.347826,0.695652,0.695652 +L 0.695652,0.695652,0.347826,0.695652 + +[] 12 +L 0.347826,1.043478,0,0.695652 +L 0,0.695652,0,0.347826 +L 0,0.347826,0.347826,0 +L 0.347826,0,0.695652,0 +L 0.695652,0,1.043478,0.347826 +L 1.043478,0.347826,1.043478,0.695652 +L 1.043478,0.695652,0.695652,1.043478 +L 0.695652,1.043478,0.347826,1.043478 +L 0.347826,0.695652,0.347826,0.347826 +L 0.347826,0.347826,0.695652,0.347826 +L 0.695652,0.347826,0.695652,0.695652 +L 0.695652,0.695652,0.347826,0.695652 + +[] 12 +L 0.347826,1.043478,0,0.695652 +L 0,0.695652,0,0.347826 +L 0,0.347826,0.347826,0 +L 0.347826,0,0.695652,0 +L 0.695652,0,1.043478,0.347826 +L 1.043478,0.347826,1.043478,0.695652 +L 1.043478,0.695652,0.695652,1.043478 +L 0.695652,1.043478,0.347826,1.043478 +L 0.347826,0.695652,0.347826,0.347826 +L 0.347826,0.347826,0.695652,0.347826 +L 0.695652,0.347826,0.695652,0.695652 +L 0.695652,0.695652,0.347826,0.695652 + +[] 12 +L 0.347826,1.043478,0,0.695652 +L 0,0.695652,0,0.347826 +L 0,0.347826,0.347826,0 +L 0.347826,0,0.695652,0 +L 0.695652,0,1.043478,0.347826 +L 1.043478,0.347826,1.043478,0.695652 +L 1.043478,0.695652,0.695652,1.043478 +L 0.695652,1.043478,0.347826,1.043478 +L 0.347826,0.695652,0.347826,0.347826 +L 0.347826,0.347826,0.695652,0.347826 +L 0.695652,0.347826,0.695652,0.695652 +L 0.695652,0.695652,0.347826,0.695652 + +[] 12 +L 0.347826,1.043478,0,0.695652 +L 0,0.695652,0,0.347826 +L 0,0.347826,0.347826,0 +L 0.347826,0,0.695652,0 +L 0.695652,0,1.043478,0.347826 +L 1.043478,0.347826,1.043478,0.695652 +L 1.043478,0.695652,0.695652,1.043478 +L 0.695652,1.043478,0.347826,1.043478 +L 0.347826,0.695652,0.347826,0.347826 +L 0.347826,0.347826,0.695652,0.347826 +L 0.695652,0.347826,0.695652,0.695652 +L 0.695652,0.695652,0.347826,0.695652 + +[] 12 +L 0.347826,1.043478,0,0.695652 +L 0,0.695652,0,0.347826 +L 0,0.347826,0.347826,0 +L 0.347826,0,0.695652,0 +L 0.695652,0,1.043478,0.347826 +L 1.043478,0.347826,1.043478,0.695652 +L 1.043478,0.695652,0.695652,1.043478 +L 0.695652,1.043478,0.347826,1.043478 +L 0.347826,0.695652,0.347826,0.347826 +L 0.347826,0.347826,0.695652,0.347826 +L 0.695652,0.347826,0.695652,0.695652 +L 0.695652,0.695652,0.347826,0.695652 + +[] 12 +L 0.347826,1.043478,0,0.695652 +L 0,0.695652,0,0.347826 +L 0,0.347826,0.347826,0 +L 0.347826,0,0.695652,0 +L 0.695652,0,1.043478,0.347826 +L 1.043478,0.347826,1.043478,0.695652 +L 1.043478,0.695652,0.695652,1.043478 +L 0.695652,1.043478,0.347826,1.043478 +L 0.347826,0.695652,0.347826,0.347826 +L 0.347826,0.347826,0.695652,0.347826 +L 0.695652,0.347826,0.695652,0.695652 +L 0.695652,0.695652,0.347826,0.695652 + +[] 12 +L 0.347826,1.043478,0,0.695652 +L 0,0.695652,0,0.347826 +L 0,0.347826,0.347826,0 +L 0.347826,0,0.695652,0 +L 0.695652,0,1.043478,0.347826 +L 1.043478,0.347826,1.043478,0.695652 +L 1.043478,0.695652,0.695652,1.043478 +L 0.695652,1.043478,0.347826,1.043478 +L 0.347826,0.695652,0.347826,0.347826 +L 0.347826,0.347826,0.695652,0.347826 +L 0.695652,0.347826,0.695652,0.695652 +L 0.695652,0.695652,0.347826,0.695652 + +[] 12 +L 0.347826,1.043478,0,0.695652 +L 0,0.695652,0,0.347826 +L 0,0.347826,0.347826,0 +L 0.347826,0,0.695652,0 +L 0.695652,0,1.043478,0.347826 +L 1.043478,0.347826,1.043478,0.695652 +L 1.043478,0.695652,0.695652,1.043478 +L 0.695652,1.043478,0.347826,1.043478 +L 0.347826,0.695652,0.347826,0.347826 +L 0.347826,0.347826,0.695652,0.347826 +L 0.695652,0.347826,0.695652,0.695652 +L 0.695652,0.695652,0.347826,0.695652 + +[] 12 +L 0.347826,1.043478,0,0.695652 +L 0,0.695652,0,0.347826 +L 0,0.347826,0.347826,0 +L 0.347826,0,0.695652,0 +L 0.695652,0,1.043478,0.347826 +L 1.043478,0.347826,1.043478,0.695652 +L 1.043478,0.695652,0.695652,1.043478 +L 0.695652,1.043478,0.347826,1.043478 +L 0.347826,0.695652,0.347826,0.347826 +L 0.347826,0.347826,0.695652,0.347826 +L 0.695652,0.347826,0.695652,0.695652 +L 0.695652,0.695652,0.347826,0.695652 + +[0107] 44 +L 4.173913,3.826087,3.478261,4.521739 +L 3.478261,4.521739,2.782609,4.869565 +L 2.782609,4.869565,1.73913,4.869565 +L 1.73913,4.869565,1.043478,4.521739 +L 1.043478,4.521739,0.347826,3.826087 +L 0.347826,3.826087,0,2.782609 +L 0,2.782609,0,2.086957 +L 0,2.086957,0.347826,1.043478 +L 0.347826,1.043478,1.043478,0.347826 +L 1.043478,0.347826,1.73913,0 +L 1.73913,0,2.782609,0 +L 2.782609,0,3.478261,0.347826 +L 3.478261,0.347826,4.173913,1.043478 +L 4.173913,3.826087,3.826087,3.478261 +L 3.826087,3.478261,3.478261,4.173913 +L 3.478261,4.173913,2.782609,4.521739 +L 2.782609,4.521739,1.73913,4.521739 +L 1.73913,4.521739,1.043478,4.173913 +L 1.043478,4.173913,0.695652,3.826087 +L 0.695652,3.826087,0.347826,2.782609 +L 0.347826,2.782609,0.347826,2.086957 +L 0.347826,2.086957,0.695652,1.043478 +L 0.695652,1.043478,1.043478,0.695652 +L 1.043478,0.695652,1.73913,0.347826 +L 1.73913,0.347826,2.782609,0.347826 +L 2.782609,0.347826,3.478261,0.695652 +L 3.478261,0.695652,3.826087,1.391304 +L 3.826087,1.391304,4.173913,1.043478 +L 3.130435,7.304348,2.782609,6.956522 +L 2.782609,6.956522,2.434783,6.956522 +L 2.434783,6.956522,2.086957,7.304348 +L 2.086957,7.304348,2.086957,7.652174 +L 2.086957,7.652174,2.434783,8 +L 2.434783,8,2.782609,8 +L 2.782609,8,3.130435,7.652174 +L 3.130435,7.652174,3.130435,6.608696 +L 3.130435,6.608696,2.782609,5.913043 +L 2.782609,5.913043,2.086957,5.565217 +L 2.434783,7.652174,2.434783,7.304348 +L 2.434783,7.304348,2.782609,7.304348 +L 2.782609,7.304348,2.782609,7.652174 +L 2.782609,7.652174,2.434783,7.652174 +L 2.782609,6.956522,3.130435,6.608696 +L 3.130435,7.304348,2.782609,5.913043 + +[] 12 +L 0.347826,1.043478,0,0.695652 +L 0,0.695652,0,0.347826 +L 0,0.347826,0.347826,0 +L 0.347826,0,0.695652,0 +L 0.695652,0,1.043478,0.347826 +L 1.043478,0.347826,1.043478,0.695652 +L 1.043478,0.695652,0.695652,1.043478 +L 0.695652,1.043478,0.347826,1.043478 +L 0.347826,0.695652,0.347826,0.347826 +L 0.347826,0.347826,0.695652,0.347826 +L 0.695652,0.347826,0.695652,0.695652 +L 0.695652,0.695652,0.347826,0.695652 + +[] 12 +L 0.347826,1.043478,0,0.695652 +L 0,0.695652,0,0.347826 +L 0,0.347826,0.347826,0 +L 0.347826,0,0.695652,0 +L 0.695652,0,1.043478,0.347826 +L 1.043478,0.347826,1.043478,0.695652 +L 1.043478,0.695652,0.695652,1.043478 +L 0.695652,1.043478,0.347826,1.043478 +L 0.347826,0.695652,0.347826,0.347826 +L 0.347826,0.347826,0.695652,0.347826 +L 0.695652,0.347826,0.695652,0.695652 +L 0.695652,0.695652,0.347826,0.695652 + +[] 12 +L 0.347826,1.043478,0,0.695652 +L 0,0.695652,0,0.347826 +L 0,0.347826,0.347826,0 +L 0.347826,0,0.695652,0 +L 0.695652,0,1.043478,0.347826 +L 1.043478,0.347826,1.043478,0.695652 +L 1.043478,0.695652,0.695652,1.043478 +L 0.695652,1.043478,0.347826,1.043478 +L 0.347826,0.695652,0.347826,0.347826 +L 0.347826,0.347826,0.695652,0.347826 +L 0.695652,0.347826,0.695652,0.695652 +L 0.695652,0.695652,0.347826,0.695652 + +[0119] 48 +L 0.347826,2.434783,4.173913,2.434783 +L 4.173913,2.434783,4.173913,3.478261 +L 4.173913,3.478261,3.826087,4.173913 +L 3.826087,4.173913,3.478261,4.521739 +L 3.478261,4.521739,2.782609,4.869565 +L 2.782609,4.869565,1.73913,4.869565 +L 1.73913,4.869565,1.043478,4.521739 +L 1.043478,4.521739,0.347826,3.826087 +L 0.347826,3.826087,0,2.782609 +L 0,2.782609,0,2.086957 +L 0,2.086957,0.347826,1.043478 +L 0.347826,1.043478,1.043478,0.347826 +L 1.043478,0.347826,1.73913,0 +L 1.73913,0,2.782609,0 +L 2.782609,0,3.478261,0.347826 +L 3.478261,0.347826,4.173913,1.043478 +L 0.347826,2.782609,3.826087,2.782609 +L 3.826087,2.782609,3.826087,3.478261 +L 3.826087,3.478261,3.478261,4.173913 +L 3.478261,4.173913,2.782609,4.521739 +L 2.782609,4.521739,1.73913,4.521739 +L 1.73913,4.521739,1.043478,4.173913 +L 1.043478,4.173913,0.695652,3.826087 +L 0.695652,3.826087,0.347826,2.782609 +L 0.347826,2.782609,0.347826,2.086957 +L 0.347826,2.086957,0.695652,1.043478 +L 0.695652,1.043478,1.043478,0.695652 +L 1.043478,0.695652,1.73913,0.347826 +L 1.73913,0.347826,2.782609,0.347826 +L 2.782609,0.347826,3.478261,0.695652 +L 3.478261,0.695652,3.826087,1.391304 +L 3.826087,1.391304,4.173913,1.043478 +L 2.782609,0,2.086957,-0.347826 +L 2.086957,-0.347826,1.73913,-1.043478 +L 1.73913,-1.043478,1.73913,-2.086957 +L 1.73913,-2.086957,2.086957,-2.434783 +L 2.086957,-2.434783,2.434783,-2.434783 +L 2.434783,-2.434783,2.782609,-2.086957 +L 2.782609,-2.086957,2.782609,-1.73913 +L 2.782609,-1.73913,2.434783,-1.391304 +L 2.434783,-1.391304,2.086957,-1.391304 +L 2.086957,-1.391304,1.73913,-1.73913 +L 2.086957,-1.73913,2.086957,-2.086957 +L 2.086957,-2.086957,2.434783,-2.086957 +L 2.434783,-2.086957,2.434783,-1.73913 +L 2.434783,-1.73913,2.086957,-1.73913 +L 2.086957,-0.347826,1.73913,-1.73913 +L 1.73913,-1.043478,2.086957,-1.391304 + +[] 12 +L 0.347826,1.043478,0,0.695652 +L 0,0.695652,0,0.347826 +L 0,0.347826,0.347826,0 +L 0.347826,0,0.695652,0 +L 0.695652,0,1.043478,0.347826 +L 1.043478,0.347826,1.043478,0.695652 +L 1.043478,0.695652,0.695652,1.043478 +L 0.695652,1.043478,0.347826,1.043478 +L 0.347826,0.695652,0.347826,0.347826 +L 0.347826,0.347826,0.695652,0.347826 +L 0.695652,0.347826,0.695652,0.695652 +L 0.695652,0.695652,0.347826,0.695652 + +[] 12 +L 0.347826,1.043478,0,0.695652 +L 0,0.695652,0,0.347826 +L 0,0.347826,0.347826,0 +L 0.347826,0,0.695652,0 +L 0.695652,0,1.043478,0.347826 +L 1.043478,0.347826,1.043478,0.695652 +L 1.043478,0.695652,0.695652,1.043478 +L 0.695652,1.043478,0.347826,1.043478 +L 0.347826,0.695652,0.347826,0.347826 +L 0.347826,0.347826,0.695652,0.347826 +L 0.695652,0.347826,0.695652,0.695652 +L 0.695652,0.695652,0.347826,0.695652 + +[] 12 +L 0.347826,1.043478,0,0.695652 +L 0,0.695652,0,0.347826 +L 0,0.347826,0.347826,0 +L 0.347826,0,0.695652,0 +L 0.695652,0,1.043478,0.347826 +L 1.043478,0.347826,1.043478,0.695652 +L 1.043478,0.695652,0.695652,1.043478 +L 0.695652,1.043478,0.347826,1.043478 +L 0.347826,0.695652,0.347826,0.347826 +L 0.347826,0.347826,0.695652,0.347826 +L 0.695652,0.347826,0.695652,0.695652 +L 0.695652,0.695652,0.347826,0.695652 + +[] 12 +L 0.347826,1.043478,0,0.695652 +L 0,0.695652,0,0.347826 +L 0,0.347826,0.347826,0 +L 0.347826,0,0.695652,0 +L 0.695652,0,1.043478,0.347826 +L 1.043478,0.347826,1.043478,0.695652 +L 1.043478,0.695652,0.695652,1.043478 +L 0.695652,1.043478,0.347826,1.043478 +L 0.347826,0.695652,0.347826,0.347826 +L 0.347826,0.347826,0.695652,0.347826 +L 0.695652,0.347826,0.695652,0.695652 +L 0.695652,0.695652,0.347826,0.695652 + +[] 12 +L 0.347826,1.043478,0,0.695652 +L 0,0.695652,0,0.347826 +L 0,0.347826,0.347826,0 +L 0.347826,0,0.695652,0 +L 0.695652,0,1.043478,0.347826 +L 1.043478,0.347826,1.043478,0.695652 +L 1.043478,0.695652,0.695652,1.043478 +L 0.695652,1.043478,0.347826,1.043478 +L 0.347826,0.695652,0.347826,0.347826 +L 0.347826,0.347826,0.695652,0.347826 +L 0.695652,0.347826,0.695652,0.695652 +L 0.695652,0.695652,0.347826,0.695652 + +[] 12 +L 0.347826,1.043478,0,0.695652 +L 0,0.695652,0,0.347826 +L 0,0.347826,0.347826,0 +L 0.347826,0,0.695652,0 +L 0.695652,0,1.043478,0.347826 +L 1.043478,0.347826,1.043478,0.695652 +L 1.043478,0.695652,0.695652,1.043478 +L 0.695652,1.043478,0.347826,1.043478 +L 0.347826,0.695652,0.347826,0.347826 +L 0.347826,0.347826,0.695652,0.347826 +L 0.695652,0.347826,0.695652,0.695652 +L 0.695652,0.695652,0.347826,0.695652 + +[0144] 33 +L 0,4.869565,0,0 +L 0,0,0.347826,0 +L 0,4.869565,0.347826,4.869565 +L 0.347826,4.869565,0.347826,0 +L 0.347826,3.478261,1.391304,4.521739 +L 1.391304,4.521739,2.086957,4.869565 +L 2.086957,4.869565,3.130435,4.869565 +L 3.130435,4.869565,3.826087,4.521739 +L 3.826087,4.521739,4.173913,3.478261 +L 4.173913,3.478261,4.173913,0 +L 0.347826,3.478261,1.391304,4.173913 +L 1.391304,4.173913,2.086957,4.521739 +L 2.086957,4.521739,2.782609,4.521739 +L 2.782609,4.521739,3.478261,4.173913 +L 3.478261,4.173913,3.826087,3.478261 +L 3.826087,3.478261,3.826087,0 +L 3.826087,0,4.173913,0 +L 3.130435,7.304348,2.782609,6.956522 +L 2.782609,6.956522,2.434783,6.956522 +L 2.434783,6.956522,2.086957,7.304348 +L 2.086957,7.304348,2.086957,7.652174 +L 2.086957,7.652174,2.434783,8 +L 2.434783,8,2.782609,8 +L 2.782609,8,3.130435,7.652174 +L 3.130435,7.652174,3.130435,6.608696 +L 3.130435,6.608696,2.782609,5.913043 +L 2.782609,5.913043,2.086957,5.565217 +L 2.434783,7.652174,2.434783,7.304348 +L 2.434783,7.304348,2.782609,7.304348 +L 2.782609,7.304348,2.782609,7.652174 +L 2.782609,7.652174,2.434783,7.652174 +L 2.782609,6.956522,3.130435,6.608696 +L 3.130435,7.304348,2.782609,5.913043 + +[] 12 +L 0.347826,1.043478,0,0.695652 +L 0,0.695652,0,0.347826 +L 0,0.347826,0.347826,0 +L 0.347826,0,0.695652,0 +L 0.695652,0,1.043478,0.347826 +L 1.043478,0.347826,1.043478,0.695652 +L 1.043478,0.695652,0.695652,1.043478 +L 0.695652,1.043478,0.347826,1.043478 +L 0.347826,0.695652,0.347826,0.347826 +L 0.347826,0.347826,0.695652,0.347826 +L 0.695652,0.347826,0.695652,0.695652 +L 0.695652,0.695652,0.347826,0.695652 + +[00F3] 48 +L 1.73913,4.869565,1.043478,4.521739 +L 1.043478,4.521739,0.347826,3.826087 +L 0.347826,3.826087,0,2.782609 +L 0,2.782609,0,2.086957 +L 0,2.086957,0.347826,1.043478 +L 0.347826,1.043478,1.043478,0.347826 +L 1.043478,0.347826,1.73913,0 +L 1.73913,0,2.782609,0 +L 2.782609,0,3.478261,0.347826 +L 3.478261,0.347826,4.173913,1.043478 +L 4.173913,1.043478,4.521739,2.086957 +L 4.521739,2.086957,4.521739,2.782609 +L 4.521739,2.782609,4.173913,3.826087 +L 4.173913,3.826087,3.478261,4.521739 +L 3.478261,4.521739,2.782609,4.869565 +L 2.782609,4.869565,1.73913,4.869565 +L 1.73913,4.521739,1.043478,4.173913 +L 1.043478,4.173913,0.695652,3.826087 +L 0.695652,3.826087,0.347826,2.782609 +L 0.347826,2.782609,0.347826,2.086957 +L 0.347826,2.086957,0.695652,1.043478 +L 0.695652,1.043478,1.043478,0.695652 +L 1.043478,0.695652,1.73913,0.347826 +L 1.73913,0.347826,2.782609,0.347826 +L 2.782609,0.347826,3.478261,0.695652 +L 3.478261,0.695652,3.826087,1.043478 +L 3.826087,1.043478,4.173913,2.086957 +L 4.173913,2.086957,4.173913,2.782609 +L 4.173913,2.782609,3.826087,3.826087 +L 3.826087,3.826087,3.478261,4.173913 +L 3.478261,4.173913,2.782609,4.521739 +L 2.782609,4.521739,1.73913,4.521739 +L 3.130435,7.304348,2.782609,6.956522 +L 2.782609,6.956522,2.434783,6.956522 +L 2.434783,6.956522,2.086957,7.304348 +L 2.086957,7.304348,2.086957,7.652174 +L 2.086957,7.652174,2.434783,8 +L 2.434783,8,2.782609,8 +L 2.782609,8,3.130435,7.652174 +L 3.130435,7.652174,3.130435,6.608696 +L 3.130435,6.608696,2.782609,5.913043 +L 2.782609,5.913043,2.086957,5.565217 +L 2.434783,7.652174,2.434783,7.304348 +L 2.434783,7.304348,2.782609,7.304348 +L 2.782609,7.304348,2.782609,7.652174 +L 2.782609,7.652174,2.434783,7.652174 +L 2.782609,6.956522,3.130435,6.608696 +L 3.130435,7.304348,2.782609,5.913043 + +[00C4] 32 +L 2.782609,7.304340,0,0 +L 2.782609,6.26087,0.347826,0 +L 0.347826,0,0,0 +L 2.782609,6.26087,5.217391,0 +L 5.217391,0,5.565217,0 +L 2.782609,7.304340,5.565217,0 +L 1.043478,2.086957,4.521739,2.086957 +L 0.695652,1.73913,4.869565,1.73913 +L 1.043478,8.695650,0.695652,8.347826 +L 0.695652,8.347826,0.695652,8.000000 +L 0.695652,8.000000,1.043478,7.652174 +L 1.043478,7.652174,1.391304,7.652174 +L 1.391304,7.652174,1.739130,8.000000 +L 1.739130,8.000000,1.739130,8.347826 +L 1.739130,8.347826,1.391304,8.695650 +L 1.391304,8.695650,1.043478,8.695650 +L 1.043478,8.347826,1.043478,8.000000 +L 1.043478,8.000000,1.391304,8.000000 +L 1.391304,8.000000,1.391304,8.347826 +L 1.391304,8.347826,1.043478,8.347826 +L 4.173913,8.695650,3.826087,8.347826 +L 3.826087,8.347826,3.826087,8.000000 +L 3.826087,8.000000,4.173913,7.652174 +L 4.173913,7.652174,4.521739,7.652174 +L 4.521739,7.652174,4.869565,8.000000 +L 4.869565,8.000000,4.869565,8.347826 +L 4.869565,8.347826,4.521739,8.695650 +L 4.521739,8.695650,4.173913,8.695650 +L 4.173913,8.347826,4.173913,8.000000 +L 4.173913,8.000000,4.521739,8.000000 +L 4.521739,8.000000,4.521739,8.347826 +L 4.521739,8.347826,4.173913,8.347826 + +[00D6] 60 +L 2.086957,7.304340,1.391304,6.956522 +L 1.391304,6.956522,0.695652,6.26087 +L 0.695652,6.26087,0.347826,5.565217 +L 0.347826,5.565217,0,4.521739 +L 0,4.521739,0,2.782609 +L 0,2.782609,0.347826,1.73913 +L 0.347826,1.73913,0.695652,1.043478 +L 0.695652,1.043478,1.391304,0.347826 +L 1.391304,0.347826,2.086957,0 +L 2.086957,0,3.478261,0 +L 3.478261,0,4.173913,0.347826 +L 4.173913,0.347826,4.869565,1.043478 +L 4.869565,1.043478,5.217391,1.73913 +L 5.217391,1.73913,5.565217,2.782609 +L 5.565217,2.782609,5.565217,4.521739 +L 5.565217,4.521739,5.217391,5.565217 +L 5.217391,5.565217,4.869565,6.26087 +L 4.869565,6.26087,4.173913,6.956522 +L 4.173913,6.956522,3.478261,7.304340 +L 3.478261,7.304340,2.086957,7.304340 +L 2.434783,6.956522,1.391304,6.608696 +L 1.391304,6.608696,0.695652,5.565217 +L 0.695652,5.565217,0.347826,4.521739 +L 0.347826,4.521739,0.347826,2.782609 +L 0.347826,2.782609,0.695652,1.73913 +L 0.695652,1.73913,1.391304,0.695652 +L 1.391304,0.695652,2.434783,0.347826 +L 2.434783,0.347826,3.130435,0.347826 +L 3.130435,0.347826,4.173913,0.695652 +L 4.173913,0.695652,4.869565,1.73913 +L 4.869565,1.73913,5.217391,2.782609 +L 5.217391,2.782609,5.217391,4.521739 +L 5.217391,4.521739,4.869565,5.565217 +L 4.869565,5.565217,4.173913,6.608696 +L 4.173913,6.608696,3.130435,6.956522 +L 3.130435,6.956522,2.434783,6.956522 +L 1.043478,8.695650,0.695652,8.347826 +L 0.695652,8.347826,0.695652,8.000000 +L 0.695652,8.000000,1.043478,7.652174 +L 1.043478,7.652174,1.391304,7.652174 +L 1.391304,7.652174,1.739130,8.000000 +L 1.739130,8.000000,1.739130,8.347826 +L 1.739130,8.347826,1.391304,8.695650 +L 1.391304,8.695650,1.043478,8.695650 +L 1.043478,8.347826,1.043478,8.000000 +L 1.043478,8.000000,1.391304,8.000000 +L 1.391304,8.000000,1.391304,8.347826 +L 1.391304,8.347826,1.043478,8.347826 +L 4.173913,8.695650,3.826087,8.347826 +L 3.826087,8.347826,3.826087,8.000000 +L 3.826087,8.000000,4.173913,7.652174 +L 4.173913,7.652174,4.521739,7.652174 +L 4.521739,7.652174,4.869565,8.000000 +L 4.869565,8.000000,4.869565,8.347826 +L 4.869565,8.347826,4.521739,8.695650 +L 4.521739,8.695650,4.173913,8.695650 +L 4.173913,8.347826,4.173913,8.000000 +L 4.173913,8.000000,4.521739,8.000000 +L 4.521739,8.000000,4.521739,8.347826 +L 4.521739,8.347826,4.173913,8.347826 + +[00DC] 44 +L 0,7.304340,0,2.086957 +L 0,2.086957,0.347826,1.043478 +L 0.347826,1.043478,1.043478,0.347826 +L 1.043478,0.347826,2.086957,0 +L 2.086957,0,2.782609,0 +L 2.782609,0,3.826087,0.347826 +L 3.826087,0.347826,4.521739,1.043478 +L 4.521739,1.043478,4.869565,2.086957 +L 4.869565,2.086957,4.869565,7.304340 +L 0,7.304340,0.347826,7.304340 +L 0.347826,7.304340,0.347826,2.086957 +L 0.347826,2.086957,0.695652,1.043478 +L 0.695652,1.043478,1.043478,0.695652 +L 1.043478,0.695652,2.086957,0.347826 +L 2.086957,0.347826,2.782609,0.347826 +L 2.782609,0.347826,3.826087,0.695652 +L 3.826087,0.695652,4.173913,1.043478 +L 4.173913,1.043478,4.521739,2.086957 +L 4.521739,2.086957,4.521739,7.304340 +L 4.521739,7.304340,4.869565,7.304340 +L 1.043478,8.695650,0.695652,8.347826 +L 0.695652,8.347826,0.695652,8.000000 +L 0.695652,8.000000,1.043478,7.652174 +L 1.043478,7.652174,1.391304,7.652174 +L 1.391304,7.652174,1.739130,8.000000 +L 1.739130,8.000000,1.739130,8.347826 +L 1.739130,8.347826,1.391304,8.695650 +L 1.391304,8.695650,1.043478,8.695650 +L 1.043478,8.347826,1.043478,8.000000 +L 1.043478,8.000000,1.391304,8.000000 +L 1.391304,8.000000,1.391304,8.347826 +L 1.391304,8.347826,1.043478,8.347826 +L 3.478261,8.695650,3.130435,8.347826 +L 3.130435,8.347826,3.130435,8.000000 +L 3.130435,8.000000,3.478261,7.652174 +L 3.478261,7.652174,3.826087,7.652174 +L 3.826087,7.652174,4.173913,8.000000 +L 4.173913,8.000000,4.173913,8.347826 +L 4.173913,8.347826,3.826087,8.695650 +L 3.826087,8.695650,3.478261,8.695650 +L 3.478261,8.347826,3.478261,8.000000 +L 3.478261,8.000000,3.826087,8.000000 +L 3.826087,8.000000,3.826087,8.347826 +L 3.826087,8.347826,3.478261,8.347826 + +[00F6] 56 +L 1.73913,4.869565,1.043478,4.521739 +L 1.043478,4.521739,0.347826,3.826087 +L 0.347826,3.826087,0,2.782609 +L 0,2.782609,0,2.086957 +L 0,2.086957,0.347826,1.043478 +L 0.347826,1.043478,1.043478,0.347826 +L 1.043478,0.347826,1.73913,0 +L 1.73913,0,2.782609,0 +L 2.782609,0,3.478261,0.347826 +L 3.478261,0.347826,4.173913,1.043478 +L 4.173913,1.043478,4.521739,2.086957 +L 4.521739,2.086957,4.521739,2.782609 +L 4.521739,2.782609,4.173913,3.826087 +L 4.173913,3.826087,3.478261,4.521739 +L 3.478261,4.521739,2.782609,4.869565 +L 2.782609,4.869565,1.73913,4.869565 +L 1.73913,4.521739,1.043478,4.173913 +L 1.043478,4.173913,0.695652,3.826087 +L 0.695652,3.826087,0.347826,2.782609 +L 0.347826,2.782609,0.347826,2.086957 +L 0.347826,2.086957,0.695652,1.043478 +L 0.695652,1.043478,1.043478,0.695652 +L 1.043478,0.695652,1.73913,0.347826 +L 1.73913,0.347826,2.782609,0.347826 +L 2.782609,0.347826,3.478261,0.695652 +L 3.478261,0.695652,3.826087,1.043478 +L 3.826087,1.043478,4.173913,2.086957 +L 4.173913,2.086957,4.173913,2.782609 +L 4.173913,2.782609,3.826087,3.826087 +L 3.826087,3.826087,3.478261,4.173913 +L 3.478261,4.173913,2.782609,4.521739 +L 2.782609,4.521739,1.73913,4.521739 +L 0.695652,7.304348,0.347826,6.956522 +L 0.347826,6.956522,0.347826,6.608696 +L 0.347826,6.608696,0.695652,6.260870 +L 0.695652,6.260870,1.043478,6.260870 +L 1.043478,6.260870,1.391304,6.608696 +L 1.391304,6.608696,1.391304,6.956522 +L 1.391304,6.956522,1.043478,7.304348 +L 1.043478,7.304348,0.695652,7.304348 +L 0.695652,6.956522,0.695652,6.608696 +L 0.695652,6.608696,1.043478,6.608696 +L 1.043478,6.608696,1.043478,6.956522 +L 1.043478,6.956522,0.695652,6.956522 +L 3.478261,7.304348,3.130435,6.956522 +L 3.130435,6.956522,3.130435,6.608696 +L 3.130435,6.608696,3.478261,6.260870 +L 3.478261,6.260870,3.826087,6.260870 +L 3.826087,6.260870,4.173913,6.608696 +L 4.173913,6.608696,4.173913,6.956522 +L 4.173913,6.956522,3.826087,7.304348 +L 3.826087,7.304348,3.478261,7.304348 +L 3.478261,6.956522,3.478261,6.608696 +L 3.478261,6.608696,3.826087,6.608696 +L 3.826087,6.608696,3.826087,6.956522 +L 3.826087,6.956522,3.478261,6.956522 + +[00E4] 52 +L 4.173913,4.869565,4.173913,0 +L 4.173913,0,4.521739,0 +L 4.173913,4.869565,4.521739,4.869565 +L 4.521739,4.869565,4.521739,0 +L 4.173913,3.826087,3.478261,4.521739 +L 3.478261,4.521739,2.782609,4.869565 +L 2.782609,4.869565,1.73913,4.869565 +L 1.73913,4.869565,1.043478,4.521739 +L 1.043478,4.521739,0.347826,3.826087 +L 0.347826,3.826087,0,2.782609 +L 0,2.782609,0,2.086957 +L 0,2.086957,0.347826,1.043478 +L 0.347826,1.043478,1.043478,0.347826 +L 1.043478,0.347826,1.73913,0 +L 1.73913,0,2.782609,0 +L 2.782609,0,3.478261,0.347826 +L 3.478261,0.347826,4.173913,1.043478 +L 4.173913,3.826087,2.782609,4.521739 +L 2.782609,4.521739,1.73913,4.521739 +L 1.73913,4.521739,1.043478,4.173913 +L 1.043478,4.173913,0.695652,3.826087 +L 0.695652,3.826087,0.347826,2.782609 +L 0.347826,2.782609,0.347826,2.086957 +L 0.347826,2.086957,0.695652,1.043478 +L 0.695652,1.043478,1.043478,0.695652 +L 1.043478,0.695652,1.73913,0.347826 +L 1.73913,0.347826,2.782609,0.347826 +L 2.782609,0.347826,4.173913,1.043478 +L 1.043478,7.304348,0.695652,6.956522 +L 0.695652,6.956522,0.695652,6.608696 +L 0.695652,6.608696,1.043478,6.260870 +L 1.043478,6.260870,1.391304,6.260870 +L 1.391304,6.260870,1.739130,6.608696 +L 1.739130,6.608696,1.739130,6.956522 +L 1.739130,6.956522,1.391304,7.304348 +L 1.391304,7.304348,1.043478,7.304348 +L 1.043478,6.956522,1.043478,6.608696 +L 1.043478,6.608696,1.391304,6.608696 +L 1.391304,6.608696,1.391304,6.956522 +L 1.391304,6.956522,1.043478,6.956522 +L 3.478261,7.304348,3.130435,6.956522 +L 3.130435,6.956522,3.130435,6.608696 +L 3.130435,6.608696,3.478261,6.260870 +L 3.478261,6.260870,3.826087,6.260870 +L 3.826087,6.260870,4.173913,6.608696 +L 4.173913,6.608696,4.173913,6.956522 +L 4.173913,6.956522,3.826087,7.304348 +L 3.826087,7.304348,3.478261,7.304348 +L 3.478261,6.956522,3.478261,6.608696 +L 3.478261,6.608696,3.826087,6.608696 +L 3.826087,6.608696,3.826087,6.956522 +L 3.826087,6.956522,3.478261,6.956522 + +[00FC] 41 +L 0,4.869565,0,1.391304 +L 0,1.391304,0.347826,0.347826 +L 0.347826,0.347826,1.043478,0 +L 1.043478,0,2.086957,0 +L 2.086957,0,2.782609,0.347826 +L 2.782609,0.347826,3.826087,1.391304 +L 0,4.869565,0.347826,4.869565 +L 0.347826,4.869565,0.347826,1.391304 +L 0.347826,1.391304,0.695652,0.695652 +L 0.695652,0.695652,1.391304,0.347826 +L 1.391304,0.347826,2.086957,0.347826 +L 2.086957,0.347826,2.782609,0.695652 +L 2.782609,0.695652,3.826087,1.391304 +L 3.826087,4.869565,3.826087,0 +L 3.826087,0,4.173913,0 +L 3.826087,4.869565,4.173913,4.869565 +L 4.173913,4.869565,4.173913,0 +L 0.695652,7.304348,0.347826,6.956522 +L 0.347826,6.956522,0.347826,6.608696 +L 0.347826,6.608696,0.695652,6.260870 +L 0.695652,6.260870,1.043478,6.260870 +L 1.043478,6.260870,1.391304,6.608696 +L 1.391304,6.608696,1.391304,6.956522 +L 1.391304,6.956522,1.043478,7.304348 +L 1.043478,7.304348,0.695652,7.304348 +L 0.695652,6.956522,0.695652,6.608696 +L 0.695652,6.608696,1.043478,6.608696 +L 1.043478,6.608696,1.043478,6.956522 +L 1.043478,6.956522,0.695652,6.956522 +L 3.130435,7.304348,2.782609,6.956522 +L 2.782609,6.956522,2.782609,6.608696 +L 2.782609,6.608696,3.130435,6.260870 +L 3.130435,6.260870,3.478261,6.260870 +L 3.478261,6.260870,3.826087,6.608696 +L 3.826087,6.608696,3.826087,6.956522 +L 3.826087,6.956522,3.478261,7.304348 +L 3.478261,7.304348,3.130435,7.304348 +L 3.130435,6.956522,3.130435,6.608696 +L 3.130435,6.608696,3.478261,6.608696 +L 3.478261,6.608696,3.478261,6.956522 +L 3.478261,6.956522,3.130435,6.956522 + +[00DF] 9 +L 0,-1.043478,0,5.565218 +L 0,-1.043478,0.347826,-1.043478 +L 0.347826,-1.043478,0.347826,5.565218 +AR 1.391304,5.565216,1.391304,180,270 +AR 1.391304,5.565216,1.043478,180,270 +AR 1.391304,2.086956,2.086956,90,250 +AR 1.391304,2.086956,1.739130,90,250 +A 1.391304,4.173912,0.347826,90,270 +L 0.677523,0.125858,0.796486,0.4527083 + +#EOF diff --git a/pycam/share/fonts/romanp.cxf b/pycam/share/fonts/romanp.cxf new file mode 100644 index 00000000..257c96a2 --- /dev/null +++ b/pycam/share/fonts/romanp.cxf @@ -0,0 +1,2779 @@ +# Format: QCad II Font +# Creator: Adam Radlowski's "dodajf" program - GRASS font translator +# Version: 1.0.0 +# Name: Roman Plain +# LetterSpacing: 3.0 +# WordSpacing: 6.75 +# LineSpacingFactor: 1.0 +# Author: Hershey fonts +# Author: Adam Radlowski (Polish) + +[!] 9 +L 0.275862,5.793103,0,5.241379 +L 0,5.241379,0.275862,1.931034 +L 0.275862,1.931034,0.551724,5.241379 +L 0.551724,5.241379,0.275862,5.793103 +L 0.275862,5.241379,0.275862,3.586207 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +["] 10 +L 0.275862,3.862069,0,3.586207 +L 0,3.586207,0.275862,3.310345 +L 0.275862,3.310345,0.551724,3.586207 +L 0.551724,3.586207,0.275862,3.862069 +L 0.275862,0,0,0.275862 +L 0,0.275862,0.275862,0.551724 +L 0.275862,0.551724,0.551724,0.275862 +L 0.551724,0.275862,0.551724,-0.275862 +L 0.551724,-0.275862,0.275862,-0.827586 +L 0.275862,-0.827586,0,-1.103448 + +[#] 4 +L 2.206897,5.793103,0.275862,-1.931034 +L 3.862069,5.793103,1.931034,-1.931034 +L 0.275862,2.758621,4.137931,2.758621 +L 0,1.103448,3.862069,1.103448 + +[$] 34 +L 1.37931,6.896552,1.37931,-1.103448 +L 2.482759,6.896552,2.482759,-1.103448 +L 3.586207,4.965517,3.310345,4.689655 +L 3.310345,4.689655,3.586207,4.413793 +L 3.586207,4.413793,3.862069,4.689655 +L 3.862069,4.689655,3.862069,4.965517 +L 3.862069,4.965517,3.310345,5.517241 +L 3.310345,5.517241,2.482759,5.793103 +L 2.482759,5.793103,1.37931,5.793103 +L 1.37931,5.793103,0.551724,5.517241 +L 0.551724,5.517241,0,4.965517 +L 0,4.965517,0,4.413793 +L 0,4.413793,0.275862,3.862069 +L 0.275862,3.862069,0.551724,3.586207 +L 0.551724,3.586207,1.103448,3.310345 +L 1.103448,3.310345,2.758621,2.758621 +L 2.758621,2.758621,3.310345,2.482759 +L 3.310345,2.482759,3.862069,1.931034 +L 0,4.413793,0.551724,3.862069 +L 0.551724,3.862069,1.103448,3.586207 +L 1.103448,3.586207,2.758621,3.034483 +L 2.758621,3.034483,3.310345,2.758621 +L 3.310345,2.758621,3.586207,2.482759 +L 3.586207,2.482759,3.862069,1.931034 +L 3.862069,1.931034,3.862069,0.827586 +L 3.862069,0.827586,3.310345,0.275862 +L 3.310345,0.275862,2.482759,0 +L 2.482759,0,1.37931,0 +L 1.37931,0,0.551724,0.275862 +L 0.551724,0.275862,0,0.827586 +L 0,0.827586,0,1.103448 +L 0,1.103448,0.275862,1.37931 +L 0.275862,1.37931,0.551724,1.103448 +L 0.551724,1.103448,0.275862,0.827586 + +[%] 26 +L 4.965517,5.793103,0,0 +L 1.37931,5.793103,1.931034,5.241379 +L 1.931034,5.241379,1.931034,4.689655 +L 1.931034,4.689655,1.655172,4.137931 +L 1.655172,4.137931,1.103448,3.862069 +L 1.103448,3.862069,0.551724,3.862069 +L 0.551724,3.862069,0,4.413793 +L 0,4.413793,0,4.965517 +L 0,4.965517,0.275862,5.517241 +L 0.275862,5.517241,0.827586,5.793103 +L 0.827586,5.793103,1.37931,5.793103 +L 1.37931,5.793103,1.931034,5.517241 +L 1.931034,5.517241,2.758621,5.241379 +L 2.758621,5.241379,3.586207,5.241379 +L 3.586207,5.241379,4.413793,5.517241 +L 4.413793,5.517241,4.965517,5.793103 +L 3.862069,1.931034,3.310345,1.655172 +L 3.310345,1.655172,3.034483,1.103448 +L 3.034483,1.103448,3.034483,0.551724 +L 3.034483,0.551724,3.586207,0 +L 3.586207,0,4.137931,0 +L 4.137931,0,4.689655,0.275862 +L 4.689655,0.275862,4.965517,0.827586 +L 4.965517,0.827586,4.965517,1.37931 +L 4.965517,1.37931,4.413793,1.931034 +L 4.413793,1.931034,3.862069,1.931034 + +[&] 43 +L 4.965517,3.586207,4.689655,3.310345 +L 4.689655,3.310345,4.965517,3.034483 +L 4.965517,3.034483,5.241379,3.310345 +L 5.241379,3.310345,5.241379,3.586207 +L 5.241379,3.586207,4.965517,3.862069 +L 4.965517,3.862069,4.689655,3.862069 +L 4.689655,3.862069,4.413793,3.586207 +L 4.413793,3.586207,4.137931,3.034483 +L 4.137931,3.034483,3.586207,1.655172 +L 3.586207,1.655172,3.034483,0.827586 +L 3.034483,0.827586,2.482759,0.275862 +L 2.482759,0.275862,1.931034,0 +L 1.931034,0,1.103448,0 +L 1.103448,0,0.275862,0.275862 +L 0.275862,0.275862,0,0.827586 +L 0,0.827586,0,1.655172 +L 0,1.655172,0.275862,2.206897 +L 0.275862,2.206897,1.931034,3.310345 +L 1.931034,3.310345,2.482759,3.862069 +L 2.482759,3.862069,2.758621,4.413793 +L 2.758621,4.413793,2.758621,4.965517 +L 2.758621,4.965517,2.482759,5.517241 +L 2.482759,5.517241,1.931034,5.793103 +L 1.931034,5.793103,1.37931,5.517241 +L 1.37931,5.517241,1.103448,4.965517 +L 1.103448,4.965517,1.103448,4.413793 +L 1.103448,4.413793,1.37931,3.586207 +L 1.37931,3.586207,1.931034,2.758621 +L 1.931034,2.758621,3.310345,0.827586 +L 3.310345,0.827586,3.862069,0.275862 +L 3.862069,0.275862,4.689655,0 +L 4.689655,0,4.965517,0 +L 4.965517,0,5.241379,0.275862 +L 5.241379,0.275862,5.241379,0.551724 +L 1.103448,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.827586 +L 0.275862,0.827586,0.275862,1.655172 +L 0.275862,1.655172,0.551724,2.206897 +L 0.551724,2.206897,1.103448,2.758621 +L 1.103448,4.413793,1.37931,3.862069 +L 1.37931,3.862069,3.586207,0.827586 +L 3.586207,0.827586,4.137931,0.275862 +L 4.137931,0.275862,4.689655,0 + +['] 6 +L 0.275862,5.241379,0,5.517241 +L 0,5.517241,0.275862,5.793103 +L 0.275862,5.793103,0.551724,5.517241 +L 0.551724,5.517241,0.551724,4.965517 +L 0.551724,4.965517,0.275862,4.413793 +L 0.275862,4.413793,0,4.137931 + +[(] 16 +L 1.931034,6.896552,1.37931,6.344828 +L 1.37931,6.344828,0.827586,5.517241 +L 0.827586,5.517241,0.275862,4.413793 +L 0.275862,4.413793,0,3.034483 +L 0,3.034483,0,1.931034 +L 0,1.931034,0.275862,0.551724 +L 0.275862,0.551724,0.827586,-0.551724 +L 0.827586,-0.551724,1.37931,-1.37931 +L 1.37931,-1.37931,1.931034,-1.931034 +L 1.37931,6.344828,0.827586,5.241379 +L 0.827586,5.241379,0.551724,4.413793 +L 0.551724,4.413793,0.275862,3.034483 +L 0.275862,3.034483,0.275862,1.931034 +L 0.275862,1.931034,0.551724,0.551724 +L 0.551724,0.551724,0.827586,-0.275862 +L 0.827586,-0.275862,1.37931,-1.37931 + +[)] 16 +L 0,6.896552,0.551724,6.344828 +L 0.551724,6.344828,1.103448,5.517241 +L 1.103448,5.517241,1.655172,4.413793 +L 1.655172,4.413793,1.931034,3.034483 +L 1.931034,3.034483,1.931034,1.931034 +L 1.931034,1.931034,1.655172,0.551724 +L 1.655172,0.551724,1.103448,-0.551724 +L 1.103448,-0.551724,0.551724,-1.37931 +L 0.551724,-1.37931,0,-1.931034 +L 0.551724,6.344828,1.103448,5.241379 +L 1.103448,5.241379,1.37931,4.413793 +L 1.37931,4.413793,1.655172,3.034483 +L 1.655172,3.034483,1.655172,1.931034 +L 1.655172,1.931034,1.37931,0.551724 +L 1.37931,0.551724,1.103448,-0.275862 +L 1.103448,-0.275862,0.551724,-1.37931 + +[*] 3 +L 1.37931,5.793103,1.37931,2.482759 +L 0,4.965517,2.758621,3.310345 +L 2.758621,4.965517,0,3.310345 + +[+] 2 +L 2.482759,4.965517,2.482759,0 +L 0,2.482759,4.965517,2.482759 + +[,] 6 +L 0.275862,0,0,0.275862 +L 0,0.275862,0.275862,0.551724 +L 0.275862,0.551724,0.551724,0.275862 +L 0.551724,0.275862,0.551724,-0.275862 +L 0.551724,-0.275862,0.275862,-0.827586 +L 0.275862,-0.827586,0,-1.103448 + +[-] 1 +L 0,2.482759,4.965517,2.482759 + +[.] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[/] 1 +L 2.482759,6.896552,0,-1.931034 + +[0] 34 +L 1.655172,5.793103,0.827586,5.517241 +L 0.827586,5.517241,0.275862,4.689655 +L 0.275862,4.689655,0,3.310345 +L 0,3.310345,0,2.482759 +L 0,2.482759,0.275862,1.103448 +L 0.275862,1.103448,0.827586,0.275862 +L 0.827586,0.275862,1.655172,0 +L 1.655172,0,2.206897,0 +L 2.206897,0,3.034483,0.275862 +L 3.034483,0.275862,3.586207,1.103448 +L 3.586207,1.103448,3.862069,2.482759 +L 3.862069,2.482759,3.862069,3.310345 +L 3.862069,3.310345,3.586207,4.689655 +L 3.586207,4.689655,3.034483,5.517241 +L 3.034483,5.517241,2.206897,5.793103 +L 2.206897,5.793103,1.655172,5.793103 +L 1.655172,5.793103,1.103448,5.517241 +L 1.103448,5.517241,0.827586,5.241379 +L 0.827586,5.241379,0.551724,4.689655 +L 0.551724,4.689655,0.275862,3.310345 +L 0.275862,3.310345,0.275862,2.482759 +L 0.275862,2.482759,0.551724,1.103448 +L 0.551724,1.103448,0.827586,0.551724 +L 0.827586,0.551724,1.103448,0.275862 +L 1.103448,0.275862,1.655172,0 +L 2.206897,0,2.758621,0.275862 +L 2.758621,0.275862,3.034483,0.551724 +L 3.034483,0.551724,3.310345,1.103448 +L 3.310345,1.103448,3.586207,2.482759 +L 3.586207,2.482759,3.586207,3.310345 +L 3.586207,3.310345,3.310345,4.689655 +L 3.310345,4.689655,3.034483,5.241379 +L 3.034483,5.241379,2.758621,5.517241 +L 2.758621,5.517241,2.206897,5.793103 + +[1] 5 +L 0,4.689655,0.551724,4.965517 +L 0.551724,4.965517,1.37931,5.793103 +L 1.37931,5.793103,1.37931,0 +L 1.103448,5.517241,1.103448,0 +L 0,0,2.482759,0 + +[2] 37 +L 0.275862,4.689655,0.551724,4.413793 +L 0.551724,4.413793,0.275862,4.137931 +L 0.275862,4.137931,0,4.413793 +L 0,4.413793,0,4.689655 +L 0,4.689655,0.275862,5.241379 +L 0.275862,5.241379,0.551724,5.517241 +L 0.551724,5.517241,1.37931,5.793103 +L 1.37931,5.793103,2.482759,5.793103 +L 2.482759,5.793103,3.310345,5.517241 +L 3.310345,5.517241,3.586207,5.241379 +L 3.586207,5.241379,3.862069,4.689655 +L 3.862069,4.689655,3.862069,4.137931 +L 3.862069,4.137931,3.586207,3.586207 +L 3.586207,3.586207,2.758621,3.034483 +L 2.758621,3.034483,1.37931,2.482759 +L 1.37931,2.482759,0.827586,2.206897 +L 0.827586,2.206897,0.275862,1.655172 +L 0.275862,1.655172,0,0.827586 +L 0,0.827586,0,0 +L 2.482759,5.793103,3.034483,5.517241 +L 3.034483,5.517241,3.310345,5.241379 +L 3.310345,5.241379,3.586207,4.689655 +L 3.586207,4.689655,3.586207,4.137931 +L 3.586207,4.137931,3.310345,3.586207 +L 3.310345,3.586207,2.482759,3.034483 +L 2.482759,3.034483,1.37931,2.482759 +L 0,0.551724,0.275862,0.827586 +L 0.275862,0.827586,0.827586,0.827586 +L 0.827586,0.827586,2.206897,0.275862 +L 2.206897,0.275862,3.034483,0.275862 +L 3.034483,0.275862,3.586207,0.551724 +L 3.586207,0.551724,3.862069,0.827586 +L 0.827586,0.827586,2.206897,0 +L 2.206897,0,3.310345,0 +L 3.310345,0,3.586207,0.275862 +L 3.586207,0.275862,3.862069,0.827586 +L 3.862069,0.827586,3.862069,1.37931 + +[3] 39 +L 0.275862,4.689655,0.551724,4.413793 +L 0.551724,4.413793,0.275862,4.137931 +L 0.275862,4.137931,0,4.413793 +L 0,4.413793,0,4.689655 +L 0,4.689655,0.275862,5.241379 +L 0.275862,5.241379,0.551724,5.517241 +L 0.551724,5.517241,1.37931,5.793103 +L 1.37931,5.793103,2.482759,5.793103 +L 2.482759,5.793103,3.310345,5.517241 +L 3.310345,5.517241,3.586207,4.965517 +L 3.586207,4.965517,3.586207,4.137931 +L 3.586207,4.137931,3.310345,3.586207 +L 3.310345,3.586207,2.482759,3.310345 +L 2.482759,3.310345,1.655172,3.310345 +L 2.482759,5.793103,3.034483,5.517241 +L 3.034483,5.517241,3.310345,4.965517 +L 3.310345,4.965517,3.310345,4.137931 +L 3.310345,4.137931,3.034483,3.586207 +L 3.034483,3.586207,2.482759,3.310345 +L 2.482759,3.310345,3.034483,3.034483 +L 3.034483,3.034483,3.586207,2.482759 +L 3.586207,2.482759,3.862069,1.931034 +L 3.862069,1.931034,3.862069,1.103448 +L 3.862069,1.103448,3.586207,0.551724 +L 3.586207,0.551724,3.310345,0.275862 +L 3.310345,0.275862,2.482759,0 +L 2.482759,0,1.37931,0 +L 1.37931,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 +L 0.275862,0.551724,0,1.103448 +L 0,1.103448,0,1.37931 +L 0,1.37931,0.275862,1.655172 +L 0.275862,1.655172,0.551724,1.37931 +L 0.551724,1.37931,0.275862,1.103448 +L 3.310345,2.758621,3.586207,1.931034 +L 3.586207,1.931034,3.586207,1.103448 +L 3.586207,1.103448,3.310345,0.551724 +L 3.310345,0.551724,3.034483,0.275862 +L 3.034483,0.275862,2.482759,0 + +[4] 5 +L 2.758621,5.241379,2.758621,0 +L 3.034483,5.793103,3.034483,0 +L 3.034483,5.793103,0,1.655172 +L 0,1.655172,4.413793,1.655172 +L 1.931034,0,3.862069,0 + +[5] 29 +L 0.551724,5.793103,0,3.034483 +L 0,3.034483,0.551724,3.586207 +L 0.551724,3.586207,1.37931,3.862069 +L 1.37931,3.862069,2.206897,3.862069 +L 2.206897,3.862069,3.034483,3.586207 +L 3.034483,3.586207,3.586207,3.034483 +L 3.586207,3.034483,3.862069,2.206897 +L 3.862069,2.206897,3.862069,1.655172 +L 3.862069,1.655172,3.586207,0.827586 +L 3.586207,0.827586,3.034483,0.275862 +L 3.034483,0.275862,2.206897,0 +L 2.206897,0,1.37931,0 +L 1.37931,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 +L 0.275862,0.551724,0,1.103448 +L 0,1.103448,0,1.37931 +L 0,1.37931,0.275862,1.655172 +L 0.275862,1.655172,0.551724,1.37931 +L 0.551724,1.37931,0.275862,1.103448 +L 2.206897,3.862069,2.758621,3.586207 +L 2.758621,3.586207,3.310345,3.034483 +L 3.310345,3.034483,3.586207,2.206897 +L 3.586207,2.206897,3.586207,1.655172 +L 3.586207,1.655172,3.310345,0.827586 +L 3.310345,0.827586,2.758621,0.275862 +L 2.758621,0.275862,2.206897,0 +L 0.551724,5.793103,3.310345,5.793103 +L 0.551724,5.517241,1.931034,5.517241 +L 1.931034,5.517241,3.310345,5.793103 + +[6] 42 +L 3.310345,4.965517,3.034483,4.689655 +L 3.034483,4.689655,3.310345,4.413793 +L 3.310345,4.413793,3.586207,4.689655 +L 3.586207,4.689655,3.586207,4.965517 +L 3.586207,4.965517,3.310345,5.517241 +L 3.310345,5.517241,2.758621,5.793103 +L 2.758621,5.793103,1.931034,5.793103 +L 1.931034,5.793103,1.103448,5.517241 +L 1.103448,5.517241,0.551724,4.965517 +L 0.551724,4.965517,0.275862,4.413793 +L 0.275862,4.413793,0,3.310345 +L 0,3.310345,0,1.655172 +L 0,1.655172,0.275862,0.827586 +L 0.275862,0.827586,0.827586,0.275862 +L 0.827586,0.275862,1.655172,0 +L 1.655172,0,2.206897,0 +L 2.206897,0,3.034483,0.275862 +L 3.034483,0.275862,3.586207,0.827586 +L 3.586207,0.827586,3.862069,1.655172 +L 3.862069,1.655172,3.862069,1.931034 +L 3.862069,1.931034,3.586207,2.758621 +L 3.586207,2.758621,3.034483,3.310345 +L 3.034483,3.310345,2.206897,3.586207 +L 2.206897,3.586207,1.931034,3.586207 +L 1.931034,3.586207,1.103448,3.310345 +L 1.103448,3.310345,0.551724,2.758621 +L 0.551724,2.758621,0.275862,1.931034 +L 1.931034,5.793103,1.37931,5.517241 +L 1.37931,5.517241,0.827586,4.965517 +L 0.827586,4.965517,0.551724,4.413793 +L 0.551724,4.413793,0.275862,3.310345 +L 0.275862,3.310345,0.275862,1.655172 +L 0.275862,1.655172,0.551724,0.827586 +L 0.551724,0.827586,1.103448,0.275862 +L 1.103448,0.275862,1.655172,0 +L 2.206897,0,2.758621,0.275862 +L 2.758621,0.275862,3.310345,0.827586 +L 3.310345,0.827586,3.586207,1.655172 +L 3.586207,1.655172,3.586207,1.931034 +L 3.586207,1.931034,3.310345,2.758621 +L 3.310345,2.758621,2.758621,3.310345 +L 2.758621,3.310345,2.206897,3.586207 + +[7] 21 +L 0,5.793103,0,4.137931 +L 0,4.689655,0.275862,5.241379 +L 0.275862,5.241379,0.827586,5.793103 +L 0.827586,5.793103,1.37931,5.793103 +L 1.37931,5.793103,2.758621,4.965517 +L 2.758621,4.965517,3.310345,4.965517 +L 3.310345,4.965517,3.586207,5.241379 +L 3.586207,5.241379,3.862069,5.793103 +L 0.275862,5.241379,0.827586,5.517241 +L 0.827586,5.517241,1.37931,5.517241 +L 1.37931,5.517241,2.758621,4.965517 +L 3.862069,5.793103,3.862069,4.965517 +L 3.862069,4.965517,3.586207,4.137931 +L 3.586207,4.137931,2.482759,2.758621 +L 2.482759,2.758621,2.206897,2.206897 +L 2.206897,2.206897,1.931034,1.37931 +L 1.931034,1.37931,1.931034,0 +L 3.586207,4.137931,2.206897,2.758621 +L 2.206897,2.758621,1.931034,2.206897 +L 1.931034,2.206897,1.655172,1.37931 +L 1.655172,1.37931,1.655172,0 + +[8] 51 +L 1.37931,5.793103,0.551724,5.517241 +L 0.551724,5.517241,0.275862,4.965517 +L 0.275862,4.965517,0.275862,4.137931 +L 0.275862,4.137931,0.551724,3.586207 +L 0.551724,3.586207,1.37931,3.310345 +L 1.37931,3.310345,2.482759,3.310345 +L 2.482759,3.310345,3.310345,3.586207 +L 3.310345,3.586207,3.586207,4.137931 +L 3.586207,4.137931,3.586207,4.965517 +L 3.586207,4.965517,3.310345,5.517241 +L 3.310345,5.517241,2.482759,5.793103 +L 2.482759,5.793103,1.37931,5.793103 +L 1.37931,5.793103,0.827586,5.517241 +L 0.827586,5.517241,0.551724,4.965517 +L 0.551724,4.965517,0.551724,4.137931 +L 0.551724,4.137931,0.827586,3.586207 +L 0.827586,3.586207,1.37931,3.310345 +L 2.482759,3.310345,3.034483,3.586207 +L 3.034483,3.586207,3.310345,4.137931 +L 3.310345,4.137931,3.310345,4.965517 +L 3.310345,4.965517,3.034483,5.517241 +L 3.034483,5.517241,2.482759,5.793103 +L 1.37931,3.310345,0.551724,3.034483 +L 0.551724,3.034483,0.275862,2.758621 +L 0.275862,2.758621,0,2.206897 +L 0,2.206897,0,1.103448 +L 0,1.103448,0.275862,0.551724 +L 0.275862,0.551724,0.551724,0.275862 +L 0.551724,0.275862,1.37931,0 +L 1.37931,0,2.482759,0 +L 2.482759,0,3.310345,0.275862 +L 3.310345,0.275862,3.586207,0.551724 +L 3.586207,0.551724,3.862069,1.103448 +L 3.862069,1.103448,3.862069,2.206897 +L 3.862069,2.206897,3.586207,2.758621 +L 3.586207,2.758621,3.310345,3.034483 +L 3.310345,3.034483,2.482759,3.310345 +L 1.37931,3.310345,0.827586,3.034483 +L 0.827586,3.034483,0.551724,2.758621 +L 0.551724,2.758621,0.275862,2.206897 +L 0.275862,2.206897,0.275862,1.103448 +L 0.275862,1.103448,0.551724,0.551724 +L 0.551724,0.551724,0.827586,0.275862 +L 0.827586,0.275862,1.37931,0 +L 2.482759,0,3.034483,0.275862 +L 3.034483,0.275862,3.310345,0.551724 +L 3.310345,0.551724,3.586207,1.103448 +L 3.586207,1.103448,3.586207,2.206897 +L 3.586207,2.206897,3.310345,2.758621 +L 3.310345,2.758621,3.034483,3.034483 +L 3.034483,3.034483,2.482759,3.310345 + +[9] 42 +L 3.586207,3.862069,3.310345,3.034483 +L 3.310345,3.034483,2.758621,2.482759 +L 2.758621,2.482759,1.931034,2.206897 +L 1.931034,2.206897,1.655172,2.206897 +L 1.655172,2.206897,0.827586,2.482759 +L 0.827586,2.482759,0.275862,3.034483 +L 0.275862,3.034483,0,3.862069 +L 0,3.862069,0,4.137931 +L 0,4.137931,0.275862,4.965517 +L 0.275862,4.965517,0.827586,5.517241 +L 0.827586,5.517241,1.655172,5.793103 +L 1.655172,5.793103,2.206897,5.793103 +L 2.206897,5.793103,3.034483,5.517241 +L 3.034483,5.517241,3.586207,4.965517 +L 3.586207,4.965517,3.862069,4.137931 +L 3.862069,4.137931,3.862069,2.482759 +L 3.862069,2.482759,3.586207,1.37931 +L 3.586207,1.37931,3.310345,0.827586 +L 3.310345,0.827586,2.758621,0.275862 +L 2.758621,0.275862,1.931034,0 +L 1.931034,0,1.103448,0 +L 1.103448,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.827586 +L 0.275862,0.827586,0.275862,1.103448 +L 0.275862,1.103448,0.551724,1.37931 +L 0.551724,1.37931,0.827586,1.103448 +L 0.827586,1.103448,0.551724,0.827586 +L 1.655172,2.206897,1.103448,2.482759 +L 1.103448,2.482759,0.551724,3.034483 +L 0.551724,3.034483,0.275862,3.862069 +L 0.275862,3.862069,0.275862,4.137931 +L 0.275862,4.137931,0.551724,4.965517 +L 0.551724,4.965517,1.103448,5.517241 +L 1.103448,5.517241,1.655172,5.793103 +L 2.206897,5.793103,2.758621,5.517241 +L 2.758621,5.517241,3.310345,4.965517 +L 3.310345,4.965517,3.586207,4.137931 +L 3.586207,4.137931,3.586207,2.482759 +L 3.586207,2.482759,3.310345,1.37931 +L 3.310345,1.37931,3.034483,0.827586 +L 3.034483,0.827586,2.482759,0.275862 +L 2.482759,0.275862,1.931034,0 + +[:] 8 +L 0.275862,3.862069,0,3.586207 +L 0,3.586207,0.275862,3.310345 +L 0.275862,3.310345,0.551724,3.586207 +L 0.551724,3.586207,0.275862,3.862069 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[;] 10 +L 0.275862,3.862069,0,3.586207 +L 0,3.586207,0.275862,3.310345 +L 0.275862,3.310345,0.551724,3.586207 +L 0.551724,3.586207,0.275862,3.862069 +L 0.275862,0,0,0.275862 +L 0,0.275862,0.275862,0.551724 +L 0.275862,0.551724,0.551724,0.275862 +L 0.551724,0.275862,0.551724,-0.275862 +L 0.551724,-0.275862,0.275862,-0.827586 +L 0.275862,-0.827586,0,-1.103448 + +[<] 2 +L 4.413793,4.965517,0,2.482759 +L 0,2.482759,4.413793,0 + +[=] 2 +L 0,3.310345,4.965517,3.310345 +L 0,1.655172,4.965517,1.655172 + +[>] 2 +L 0,4.965517,4.413793,2.482759 +L 4.413793,2.482759,0,0 + +[?] 26 +L 0.275862,4.689655,0.551724,4.413793 +L 0.551724,4.413793,0.275862,4.137931 +L 0.275862,4.137931,0,4.413793 +L 0,4.413793,0,4.689655 +L 0,4.689655,0.275862,5.241379 +L 0.275862,5.241379,0.551724,5.517241 +L 0.551724,5.517241,1.103448,5.793103 +L 1.103448,5.793103,1.931034,5.793103 +L 1.931034,5.793103,2.758621,5.517241 +L 2.758621,5.517241,3.034483,5.241379 +L 3.034483,5.241379,3.310345,4.689655 +L 3.310345,4.689655,3.310345,4.137931 +L 3.310345,4.137931,3.034483,3.586207 +L 3.034483,3.586207,2.758621,3.310345 +L 2.758621,3.310345,1.655172,2.758621 +L 1.655172,2.758621,1.655172,1.931034 +L 1.931034,5.793103,2.482759,5.517241 +L 2.482759,5.517241,2.758621,5.241379 +L 2.758621,5.241379,3.034483,4.689655 +L 3.034483,4.689655,3.034483,4.137931 +L 3.034483,4.137931,2.758621,3.586207 +L 2.758621,3.586207,2.206897,3.034483 +L 1.655172,0.551724,1.37931,0.275862 +L 1.37931,0.275862,1.655172,0 +L 1.655172,0,1.931034,0.275862 +L 1.931034,0.275862,1.655172,0.551724 + +[@] 48 +L 4.137931,3.586207,3.862069,4.137931 +L 3.862069,4.137931,3.310345,4.413793 +L 3.310345,4.413793,2.482759,4.413793 +L 2.482759,4.413793,1.931034,4.137931 +L 1.931034,4.137931,1.655172,3.862069 +L 1.655172,3.862069,1.37931,3.034483 +L 1.37931,3.034483,1.37931,2.206897 +L 1.37931,2.206897,1.655172,1.655172 +L 1.655172,1.655172,2.206897,1.37931 +L 2.206897,1.37931,3.034483,1.37931 +L 3.034483,1.37931,3.586207,1.655172 +L 3.586207,1.655172,3.862069,2.206897 +L 2.482759,4.413793,1.931034,3.862069 +L 1.931034,3.862069,1.655172,3.034483 +L 1.655172,3.034483,1.655172,2.206897 +L 1.655172,2.206897,1.931034,1.655172 +L 1.931034,1.655172,2.206897,1.37931 +L 4.137931,4.413793,3.862069,2.206897 +L 3.862069,2.206897,3.862069,1.655172 +L 3.862069,1.655172,4.413793,1.37931 +L 4.413793,1.37931,4.965517,1.37931 +L 4.965517,1.37931,5.517241,1.931034 +L 5.517241,1.931034,5.793103,2.758621 +L 5.793103,2.758621,5.793103,3.310345 +L 5.793103,3.310345,5.517241,4.137931 +L 5.517241,4.137931,5.241379,4.689655 +L 5.241379,4.689655,4.689655,5.241379 +L 4.689655,5.241379,4.137931,5.517241 +L 4.137931,5.517241,3.310345,5.793103 +L 3.310345,5.793103,2.482759,5.793103 +L 2.482759,5.793103,1.655172,5.517241 +L 1.655172,5.517241,1.103448,5.241379 +L 1.103448,5.241379,0.551724,4.689655 +L 0.551724,4.689655,0.275862,4.137931 +L 0.275862,4.137931,0,3.310345 +L 0,3.310345,0,2.482759 +L 0,2.482759,0.275862,1.655172 +L 0.275862,1.655172,0.551724,1.103448 +L 0.551724,1.103448,1.103448,0.551724 +L 1.103448,0.551724,1.655172,0.275862 +L 1.655172,0.275862,2.482759,0 +L 2.482759,0,3.310345,0 +L 3.310345,0,4.137931,0.275862 +L 4.137931,0.275862,4.689655,0.551724 +L 4.689655,0.551724,4.965517,0.827586 +L 4.413793,4.413793,4.137931,2.206897 +L 4.137931,2.206897,4.137931,1.655172 +L 4.137931,1.655172,4.413793,1.37931 + +[A] 6 +L 2.482759,5.793103,0.551724,0 +L 2.482759,5.793103,4.413793,0 +L 2.482759,4.965517,4.137931,0 +L 1.103448,1.655172,3.586207,1.655172 +L 0,0,1.655172,0 +L 3.310345,0,4.965517,0 + +[B] 33 +L 0.827586,5.793103,0.827586,0 +L 1.103448,5.793103,1.103448,0 +L 0,5.793103,3.310345,5.793103 +L 3.310345,5.793103,4.137931,5.517241 +L 4.137931,5.517241,4.413793,5.241379 +L 4.413793,5.241379,4.689655,4.689655 +L 4.689655,4.689655,4.689655,4.137931 +L 4.689655,4.137931,4.413793,3.586207 +L 4.413793,3.586207,4.137931,3.310345 +L 4.137931,3.310345,3.310345,3.034483 +L 3.310345,5.793103,3.862069,5.517241 +L 3.862069,5.517241,4.137931,5.241379 +L 4.137931,5.241379,4.413793,4.689655 +L 4.413793,4.689655,4.413793,4.137931 +L 4.413793,4.137931,4.137931,3.586207 +L 4.137931,3.586207,3.862069,3.310345 +L 3.862069,3.310345,3.310345,3.034483 +L 1.103448,3.034483,3.310345,3.034483 +L 3.310345,3.034483,4.137931,2.758621 +L 4.137931,2.758621,4.413793,2.482759 +L 4.413793,2.482759,4.689655,1.931034 +L 4.689655,1.931034,4.689655,1.103448 +L 4.689655,1.103448,4.413793,0.551724 +L 4.413793,0.551724,4.137931,0.275862 +L 4.137931,0.275862,3.310345,0 +L 3.310345,0,0,0 +L 3.310345,3.034483,3.862069,2.758621 +L 3.862069,2.758621,4.137931,2.482759 +L 4.137931,2.482759,4.413793,1.931034 +L 4.413793,1.931034,4.413793,1.103448 +L 4.413793,1.103448,4.137931,0.551724 +L 4.137931,0.551724,3.862069,0.275862 +L 3.862069,0.275862,3.310345,0 + +[C] 28 +L 3.862069,4.965517,4.137931,4.137931 +L 4.137931,4.137931,4.137931,5.793103 +L 4.137931,5.793103,3.862069,4.965517 +L 3.862069,4.965517,3.310345,5.517241 +L 3.310345,5.517241,2.482759,5.793103 +L 2.482759,5.793103,1.931034,5.793103 +L 1.931034,5.793103,1.103448,5.517241 +L 1.103448,5.517241,0.551724,4.965517 +L 0.551724,4.965517,0.275862,4.413793 +L 0.275862,4.413793,0,3.586207 +L 0,3.586207,0,2.206897 +L 0,2.206897,0.275862,1.37931 +L 0.275862,1.37931,0.551724,0.827586 +L 0.551724,0.827586,1.103448,0.275862 +L 1.103448,0.275862,1.931034,0 +L 1.931034,0,2.482759,0 +L 2.482759,0,3.310345,0.275862 +L 3.310345,0.275862,3.862069,0.827586 +L 3.862069,0.827586,4.137931,1.37931 +L 1.931034,5.793103,1.37931,5.517241 +L 1.37931,5.517241,0.827586,4.965517 +L 0.827586,4.965517,0.551724,4.413793 +L 0.551724,4.413793,0.275862,3.586207 +L 0.275862,3.586207,0.275862,2.206897 +L 0.275862,2.206897,0.551724,1.37931 +L 0.551724,1.37931,0.827586,0.827586 +L 0.827586,0.827586,1.37931,0.275862 +L 1.37931,0.275862,1.931034,0 + +[D] 22 +L 0.827586,5.793103,0.827586,0 +L 1.103448,5.793103,1.103448,0 +L 0,5.793103,2.758621,5.793103 +L 2.758621,5.793103,3.586207,5.517241 +L 3.586207,5.517241,4.137931,4.965517 +L 4.137931,4.965517,4.413793,4.413793 +L 4.413793,4.413793,4.689655,3.586207 +L 4.689655,3.586207,4.689655,2.206897 +L 4.689655,2.206897,4.413793,1.37931 +L 4.413793,1.37931,4.137931,0.827586 +L 4.137931,0.827586,3.586207,0.275862 +L 3.586207,0.275862,2.758621,0 +L 2.758621,0,0,0 +L 2.758621,5.793103,3.310345,5.517241 +L 3.310345,5.517241,3.862069,4.965517 +L 3.862069,4.965517,4.137931,4.413793 +L 4.137931,4.413793,4.413793,3.586207 +L 4.413793,3.586207,4.413793,2.206897 +L 4.413793,2.206897,4.137931,1.37931 +L 4.137931,1.37931,3.862069,0.827586 +L 3.862069,0.827586,3.310345,0.275862 +L 3.310345,0.275862,2.758621,0 + +[E] 10 +L 0.827586,5.793103,0.827586,0 +L 1.103448,5.793103,1.103448,0 +L 2.758621,4.137931,2.758621,1.931034 +L 0,5.793103,4.413793,5.793103 +L 4.413793,5.793103,4.413793,4.137931 +L 4.413793,4.137931,4.137931,5.793103 +L 1.103448,3.034483,2.758621,3.034483 +L 0,0,4.413793,0 +L 4.413793,0,4.413793,1.655172 +L 4.413793,1.655172,4.137931,0 + +[F] 8 +L 0.827586,5.793103,0.827586,0 +L 1.103448,5.793103,1.103448,0 +L 2.758621,4.137931,2.758621,1.931034 +L 0,5.793103,4.413793,5.793103 +L 4.413793,5.793103,4.413793,4.137931 +L 4.413793,4.137931,4.137931,5.793103 +L 1.103448,3.034483,2.758621,3.034483 +L 0,0,1.931034,0 + +[G] 30 +L 3.862069,4.965517,4.137931,4.137931 +L 4.137931,4.137931,4.137931,5.793103 +L 4.137931,5.793103,3.862069,4.965517 +L 3.862069,4.965517,3.310345,5.517241 +L 3.310345,5.517241,2.482759,5.793103 +L 2.482759,5.793103,1.931034,5.793103 +L 1.931034,5.793103,1.103448,5.517241 +L 1.103448,5.517241,0.551724,4.965517 +L 0.551724,4.965517,0.275862,4.413793 +L 0.275862,4.413793,0,3.586207 +L 0,3.586207,0,2.206897 +L 0,2.206897,0.275862,1.37931 +L 0.275862,1.37931,0.551724,0.827586 +L 0.551724,0.827586,1.103448,0.275862 +L 1.103448,0.275862,1.931034,0 +L 1.931034,0,2.482759,0 +L 2.482759,0,3.310345,0.275862 +L 3.310345,0.275862,3.862069,0.827586 +L 1.931034,5.793103,1.37931,5.517241 +L 1.37931,5.517241,0.827586,4.965517 +L 0.827586,4.965517,0.551724,4.413793 +L 0.551724,4.413793,0.275862,3.586207 +L 0.275862,3.586207,0.275862,2.206897 +L 0.275862,2.206897,0.551724,1.37931 +L 0.551724,1.37931,0.827586,0.827586 +L 0.827586,0.827586,1.37931,0.275862 +L 1.37931,0.275862,1.931034,0 +L 3.862069,2.206897,3.862069,0 +L 4.137931,2.206897,4.137931,0 +L 3.034483,2.206897,4.965517,2.206897 + +[H] 9 +L 0.827586,5.793103,0.827586,0 +L 1.103448,5.793103,1.103448,0 +L 4.413793,5.793103,4.413793,0 +L 4.689655,5.793103,4.689655,0 +L 0,5.793103,1.931034,5.793103 +L 3.586207,5.793103,5.517241,5.793103 +L 1.103448,3.034483,4.413793,3.034483 +L 0,0,1.931034,0 +L 3.586207,0,5.517241,0 + +[I] 4 +L 0.827586,5.793103,0.827586,0 +L 1.103448,5.793103,1.103448,0 +L 0,5.793103,1.931034,5.793103 +L 0,0,1.931034,0 + +[J] 14 +L 2.206897,5.793103,2.206897,1.103448 +L 2.206897,1.103448,1.931034,0.275862 +L 1.931034,0.275862,1.37931,0 +L 1.37931,0,0.827586,0 +L 0.827586,0,0.275862,0.275862 +L 0.275862,0.275862,0,0.827586 +L 0,0.827586,0,1.37931 +L 0,1.37931,0.275862,1.655172 +L 0.275862,1.655172,0.551724,1.37931 +L 0.551724,1.37931,0.275862,1.103448 +L 1.931034,5.793103,1.931034,1.103448 +L 1.931034,1.103448,1.655172,0.275862 +L 1.655172,0.275862,1.37931,0 +L 1.103448,5.793103,3.034483,5.793103 + +[K] 9 +L 0.827586,5.793103,0.827586,0 +L 1.103448,5.793103,1.103448,0 +L 4.689655,5.793103,1.103448,2.206897 +L 2.482759,3.310345,4.689655,0 +L 2.206897,3.310345,4.413793,0 +L 0,5.793103,1.931034,5.793103 +L 3.586207,5.793103,5.241379,5.793103 +L 0,0,1.931034,0 +L 3.586207,0,5.241379,0 + +[L] 6 +L 0.827586,5.793103,0.827586,0 +L 1.103448,5.793103,1.103448,0 +L 0,5.793103,1.931034,5.793103 +L 0,0,4.137931,0 +L 4.137931,0,4.137931,1.655172 +L 4.137931,1.655172,3.862069,0 + +[M] 10 +L 0.827586,5.793103,0.827586,0 +L 1.103448,5.793103,2.758621,0.827586 +L 0.827586,5.793103,2.758621,0 +L 4.689655,5.793103,2.758621,0 +L 4.689655,5.793103,4.689655,0 +L 4.965517,5.793103,4.965517,0 +L 0,5.793103,1.103448,5.793103 +L 4.689655,5.793103,5.793103,5.793103 +L 0,0,1.655172,0 +L 3.862069,0,5.793103,0 + +[N] 7 +L 0.827586,5.793103,0.827586,0 +L 1.103448,5.793103,4.413793,0.551724 +L 1.103448,5.241379,4.413793,0 +L 4.413793,5.793103,4.413793,0 +L 0,5.793103,1.103448,5.793103 +L 3.586207,5.793103,5.241379,5.793103 +L 0,0,1.655172,0 + +[O] 38 +L 1.931034,5.793103,1.103448,5.517241 +L 1.103448,5.517241,0.551724,4.965517 +L 0.551724,4.965517,0.275862,4.413793 +L 0.275862,4.413793,0,3.310345 +L 0,3.310345,0,2.482759 +L 0,2.482759,0.275862,1.37931 +L 0.275862,1.37931,0.551724,0.827586 +L 0.551724,0.827586,1.103448,0.275862 +L 1.103448,0.275862,1.931034,0 +L 1.931034,0,2.482759,0 +L 2.482759,0,3.310345,0.275862 +L 3.310345,0.275862,3.862069,0.827586 +L 3.862069,0.827586,4.137931,1.37931 +L 4.137931,1.37931,4.413793,2.482759 +L 4.413793,2.482759,4.413793,3.310345 +L 4.413793,3.310345,4.137931,4.413793 +L 4.137931,4.413793,3.862069,4.965517 +L 3.862069,4.965517,3.310345,5.517241 +L 3.310345,5.517241,2.482759,5.793103 +L 2.482759,5.793103,1.931034,5.793103 +L 1.931034,5.793103,1.37931,5.517241 +L 1.37931,5.517241,0.827586,4.965517 +L 0.827586,4.965517,0.551724,4.413793 +L 0.551724,4.413793,0.275862,3.310345 +L 0.275862,3.310345,0.275862,2.482759 +L 0.275862,2.482759,0.551724,1.37931 +L 0.551724,1.37931,0.827586,0.827586 +L 0.827586,0.827586,1.37931,0.275862 +L 1.37931,0.275862,1.931034,0 +L 2.482759,0,3.034483,0.275862 +L 3.034483,0.275862,3.586207,0.827586 +L 3.586207,0.827586,3.862069,1.37931 +L 3.862069,1.37931,4.137931,2.482759 +L 4.137931,2.482759,4.137931,3.310345 +L 4.137931,3.310345,3.862069,4.413793 +L 3.862069,4.413793,3.586207,4.965517 +L 3.586207,4.965517,3.034483,5.517241 +L 3.034483,5.517241,2.482759,5.793103 + +[P] 19 +L 0.827586,5.793103,0.827586,0 +L 1.103448,5.793103,1.103448,0 +L 0,5.793103,3.310345,5.793103 +L 3.310345,5.793103,4.137931,5.517241 +L 4.137931,5.517241,4.413793,5.241379 +L 4.413793,5.241379,4.689655,4.689655 +L 4.689655,4.689655,4.689655,3.862069 +L 4.689655,3.862069,4.413793,3.310345 +L 4.413793,3.310345,4.137931,3.034483 +L 4.137931,3.034483,3.310345,2.758621 +L 3.310345,2.758621,1.103448,2.758621 +L 3.310345,5.793103,3.862069,5.517241 +L 3.862069,5.517241,4.137931,5.241379 +L 4.137931,5.241379,4.413793,4.689655 +L 4.413793,4.689655,4.413793,3.862069 +L 4.413793,3.862069,4.137931,3.310345 +L 4.137931,3.310345,3.862069,3.034483 +L 3.862069,3.034483,3.310345,2.758621 +L 0,0,1.931034,0 + +[Q] 54 +L 1.931034,5.793103,1.103448,5.517241 +L 1.103448,5.517241,0.551724,4.965517 +L 0.551724,4.965517,0.275862,4.413793 +L 0.275862,4.413793,0,3.310345 +L 0,3.310345,0,2.482759 +L 0,2.482759,0.275862,1.37931 +L 0.275862,1.37931,0.551724,0.827586 +L 0.551724,0.827586,1.103448,0.275862 +L 1.103448,0.275862,1.931034,0 +L 1.931034,0,2.482759,0 +L 2.482759,0,3.310345,0.275862 +L 3.310345,0.275862,3.862069,0.827586 +L 3.862069,0.827586,4.137931,1.37931 +L 4.137931,1.37931,4.413793,2.482759 +L 4.413793,2.482759,4.413793,3.310345 +L 4.413793,3.310345,4.137931,4.413793 +L 4.137931,4.413793,3.862069,4.965517 +L 3.862069,4.965517,3.310345,5.517241 +L 3.310345,5.517241,2.482759,5.793103 +L 2.482759,5.793103,1.931034,5.793103 +L 1.931034,5.793103,1.37931,5.517241 +L 1.37931,5.517241,0.827586,4.965517 +L 0.827586,4.965517,0.551724,4.413793 +L 0.551724,4.413793,0.275862,3.310345 +L 0.275862,3.310345,0.275862,2.482759 +L 0.275862,2.482759,0.551724,1.37931 +L 0.551724,1.37931,0.827586,0.827586 +L 0.827586,0.827586,1.37931,0.275862 +L 1.37931,0.275862,1.931034,0 +L 2.482759,0,3.034483,0.275862 +L 3.034483,0.275862,3.586207,0.827586 +L 3.586207,0.827586,3.862069,1.37931 +L 3.862069,1.37931,4.137931,2.482759 +L 4.137931,2.482759,4.137931,3.310345 +L 4.137931,3.310345,3.862069,4.413793 +L 3.862069,4.413793,3.586207,4.965517 +L 3.586207,4.965517,3.034483,5.517241 +L 3.034483,5.517241,2.482759,5.793103 +L 1.103448,0.551724,1.103448,0.827586 +L 1.103448,0.827586,1.37931,1.37931 +L 1.37931,1.37931,1.931034,1.655172 +L 1.931034,1.655172,2.206897,1.655172 +L 2.206897,1.655172,2.758621,1.37931 +L 2.758621,1.37931,3.034483,0.827586 +L 3.034483,0.827586,3.310345,-1.103448 +L 3.310345,-1.103448,3.586207,-1.37931 +L 3.586207,-1.37931,4.137931,-1.37931 +L 4.137931,-1.37931,4.413793,-0.827586 +L 4.413793,-0.827586,4.413793,-0.551724 +L 3.034483,0.827586,3.310345,-0.275862 +L 3.310345,-0.275862,3.586207,-0.827586 +L 3.586207,-0.827586,3.862069,-1.103448 +L 3.862069,-1.103448,4.137931,-1.103448 +L 4.137931,-1.103448,4.413793,-0.827586 + +[R] 31 +L 0.827586,5.793103,0.827586,0 +L 1.103448,5.793103,1.103448,0 +L 0,5.793103,3.310345,5.793103 +L 3.310345,5.793103,4.137931,5.517241 +L 4.137931,5.517241,4.413793,5.241379 +L 4.413793,5.241379,4.689655,4.689655 +L 4.689655,4.689655,4.689655,4.137931 +L 4.689655,4.137931,4.413793,3.586207 +L 4.413793,3.586207,4.137931,3.310345 +L 4.137931,3.310345,3.310345,3.034483 +L 3.310345,3.034483,1.103448,3.034483 +L 3.310345,5.793103,3.862069,5.517241 +L 3.862069,5.517241,4.137931,5.241379 +L 4.137931,5.241379,4.413793,4.689655 +L 4.413793,4.689655,4.413793,4.137931 +L 4.413793,4.137931,4.137931,3.586207 +L 4.137931,3.586207,3.862069,3.310345 +L 3.862069,3.310345,3.310345,3.034483 +L 0,0,1.931034,0 +L 2.482759,3.034483,3.034483,2.758621 +L 3.034483,2.758621,3.310345,2.482759 +L 3.310345,2.482759,4.137931,0.551724 +L 4.137931,0.551724,4.413793,0.275862 +L 4.413793,0.275862,4.689655,0.275862 +L 4.689655,0.275862,4.965517,0.551724 +L 3.034483,2.758621,3.310345,2.206897 +L 3.310345,2.206897,3.862069,0.275862 +L 3.862069,0.275862,4.137931,0 +L 4.137931,0,4.689655,0 +L 4.689655,0,4.965517,0.551724 +L 4.965517,0.551724,4.965517,0.827586 + +[S] 30 +L 3.586207,4.965517,3.862069,5.793103 +L 3.862069,5.793103,3.862069,4.137931 +L 3.862069,4.137931,3.586207,4.965517 +L 3.586207,4.965517,3.034483,5.517241 +L 3.034483,5.517241,2.206897,5.793103 +L 2.206897,5.793103,1.37931,5.793103 +L 1.37931,5.793103,0.551724,5.517241 +L 0.551724,5.517241,0,4.965517 +L 0,4.965517,0,4.413793 +L 0,4.413793,0.275862,3.862069 +L 0.275862,3.862069,0.551724,3.586207 +L 0.551724,3.586207,1.103448,3.310345 +L 1.103448,3.310345,2.758621,2.758621 +L 2.758621,2.758621,3.310345,2.482759 +L 3.310345,2.482759,3.862069,1.931034 +L 0,4.413793,0.551724,3.862069 +L 0.551724,3.862069,1.103448,3.586207 +L 1.103448,3.586207,2.758621,3.034483 +L 2.758621,3.034483,3.310345,2.758621 +L 3.310345,2.758621,3.586207,2.482759 +L 3.586207,2.482759,3.862069,1.931034 +L 3.862069,1.931034,3.862069,0.827586 +L 3.862069,0.827586,3.310345,0.275862 +L 3.310345,0.275862,2.482759,0 +L 2.482759,0,1.655172,0 +L 1.655172,0,0.827586,0.275862 +L 0.827586,0.275862,0.275862,0.827586 +L 0.275862,0.827586,0,1.655172 +L 0,1.655172,0,0 +L 0,0,0.275862,0.827586 + +[T] 8 +L 1.931034,5.793103,1.931034,0 +L 2.206897,5.793103,2.206897,0 +L 0.275862,5.793103,0,4.137931 +L 0,4.137931,0,5.793103 +L 0,5.793103,4.137931,5.793103 +L 4.137931,5.793103,4.137931,4.137931 +L 4.137931,4.137931,3.862069,5.793103 +L 1.103448,0,3.034483,0 + +[U] 15 +L 0.827586,5.793103,0.827586,1.655172 +L 0.827586,1.655172,1.103448,0.827586 +L 1.103448,0.827586,1.655172,0.275862 +L 1.655172,0.275862,2.482759,0 +L 2.482759,0,3.034483,0 +L 3.034483,0,3.862069,0.275862 +L 3.862069,0.275862,4.413793,0.827586 +L 4.413793,0.827586,4.689655,1.655172 +L 4.689655,1.655172,4.689655,5.793103 +L 1.103448,5.793103,1.103448,1.655172 +L 1.103448,1.655172,1.37931,0.827586 +L 1.37931,0.827586,1.931034,0.275862 +L 1.931034,0.275862,2.482759,0 +L 0,5.793103,1.931034,5.793103 +L 3.862069,5.793103,5.517241,5.793103 + +[V] 5 +L 0.551724,5.793103,2.482759,0 +L 0.827586,5.793103,2.482759,0.827586 +L 4.413793,5.793103,2.482759,0 +L 0,5.793103,1.655172,5.793103 +L 3.310345,5.793103,4.965517,5.793103 + +[W] 8 +L 0.827586,5.793103,1.931034,0 +L 1.103448,5.793103,1.931034,1.37931 +L 3.034483,5.793103,1.931034,0 +L 3.034483,5.793103,4.137931,0 +L 3.310345,5.793103,4.137931,1.37931 +L 5.241379,5.793103,4.137931,0 +L 0,5.793103,1.931034,5.793103 +L 4.413793,5.793103,6.068966,5.793103 + +[X] 7 +L 0.551724,5.793103,4.137931,0 +L 0.827586,5.793103,4.413793,0 +L 4.413793,5.793103,0.551724,0 +L 0,5.793103,1.655172,5.793103 +L 3.310345,5.793103,4.965517,5.793103 +L 0,0,1.655172,0 +L 3.310345,0,4.965517,0 + +[Y] 8 +L 0.551724,5.793103,2.482759,2.758621 +L 2.482759,2.758621,2.482759,0 +L 0.827586,5.793103,2.758621,2.758621 +L 2.758621,2.758621,2.758621,0 +L 4.689655,5.793103,2.758621,2.758621 +L 0,5.793103,1.655172,5.793103 +L 3.586207,5.793103,5.241379,5.793103 +L 1.655172,0,3.586207,0 + +[Z] 8 +L 3.586207,5.793103,0,0 +L 3.862069,5.793103,0.275862,0 +L 0.275862,5.793103,0,4.137931 +L 0,4.137931,0,5.793103 +L 0,5.793103,3.862069,5.793103 +L 0,0,3.862069,0 +L 3.862069,0,3.862069,1.655172 +L 3.862069,1.655172,3.586207,0 + +[[] 4 +L 0,6.896552,0,-1.931034 +L 0.275862,6.896552,0.275862,-1.931034 +L 0,6.896552,1.931034,6.896552 +L 0,-1.931034,1.931034,-1.931034 + +[\] 1 +L 0,5.793103,3.862069,-0.827586 + +[]] 4 +L 1.655172,6.896552,1.655172,-1.931034 +L 1.931034,6.896552,1.931034,-1.931034 +L 0,6.896552,1.931034,6.896552 +L 0,-1.931034,1.931034,-1.931034 + +[^] 5 +L 0.827586,4.137931,1.37931,4.965517 +L 1.37931,4.965517,1.931034,4.137931 +L 0,3.310345,1.37931,4.689655 +L 1.37931,4.689655,2.758621,3.310345 +L 1.37931,4.689655,1.37931,0 + +[_] 1 +L 0,-0.551724,4.413793,-0.551724 + +[`] 6 +L 0.551724,5.793103,0.275862,5.517241 +L 0.275862,5.517241,0,4.965517 +L 0,4.965517,0,4.413793 +L 0,4.413793,0.275862,4.137931 +L 0.275862,4.137931,0.551724,4.413793 +L 0.551724,4.413793,0.275862,4.689655 + +[a] 31 +L 0.551724,3.310345,0.551724,3.034483 +L 0.551724,3.034483,0.275862,3.034483 +L 0.275862,3.034483,0.275862,3.310345 +L 0.275862,3.310345,0.551724,3.586207 +L 0.551724,3.586207,1.103448,3.862069 +L 1.103448,3.862069,2.206897,3.862069 +L 2.206897,3.862069,2.758621,3.586207 +L 2.758621,3.586207,3.034483,3.310345 +L 3.034483,3.310345,3.310345,2.758621 +L 3.310345,2.758621,3.310345,0.827586 +L 3.310345,0.827586,3.586207,0.275862 +L 3.586207,0.275862,3.862069,0 +L 3.034483,3.310345,3.034483,0.827586 +L 3.034483,0.827586,3.310345,0.275862 +L 3.310345,0.275862,3.862069,0 +L 3.862069,0,4.137931,0 +L 3.034483,2.758621,2.758621,2.482759 +L 2.758621,2.482759,1.103448,2.206897 +L 1.103448,2.206897,0.275862,1.931034 +L 0.275862,1.931034,0,1.37931 +L 0,1.37931,0,0.827586 +L 0,0.827586,0.275862,0.275862 +L 0.275862,0.275862,1.103448,0 +L 1.103448,0,1.931034,0 +L 1.931034,0,2.482759,0.275862 +L 2.482759,0.275862,3.034483,0.827586 +L 1.103448,2.206897,0.551724,1.931034 +L 0.551724,1.931034,0.275862,1.37931 +L 0.275862,1.37931,0.275862,0.827586 +L 0.275862,0.827586,0.551724,0.275862 +L 0.551724,0.275862,1.103448,0 + +[b] 23 +L 0.827586,5.793103,0.827586,0 +L 1.103448,5.793103,1.103448,0 +L 1.103448,3.034483,1.655172,3.586207 +L 1.655172,3.586207,2.206897,3.862069 +L 2.206897,3.862069,2.758621,3.862069 +L 2.758621,3.862069,3.586207,3.586207 +L 3.586207,3.586207,4.137931,3.034483 +L 4.137931,3.034483,4.413793,2.206897 +L 4.413793,2.206897,4.413793,1.655172 +L 4.413793,1.655172,4.137931,0.827586 +L 4.137931,0.827586,3.586207,0.275862 +L 3.586207,0.275862,2.758621,0 +L 2.758621,0,2.206897,0 +L 2.206897,0,1.655172,0.275862 +L 1.655172,0.275862,1.103448,0.827586 +L 2.758621,3.862069,3.310345,3.586207 +L 3.310345,3.586207,3.862069,3.034483 +L 3.862069,3.034483,4.137931,2.206897 +L 4.137931,2.206897,4.137931,1.655172 +L 4.137931,1.655172,3.862069,0.827586 +L 3.862069,0.827586,3.310345,0.275862 +L 3.310345,0.275862,2.758621,0 +L 0,5.793103,1.103448,5.793103 + +[c] 24 +L 3.310345,3.034483,3.034483,2.758621 +L 3.034483,2.758621,3.310345,2.482759 +L 3.310345,2.482759,3.586207,2.758621 +L 3.586207,2.758621,3.586207,3.034483 +L 3.586207,3.034483,3.034483,3.586207 +L 3.034483,3.586207,2.482759,3.862069 +L 2.482759,3.862069,1.655172,3.862069 +L 1.655172,3.862069,0.827586,3.586207 +L 0.827586,3.586207,0.275862,3.034483 +L 0.275862,3.034483,0,2.206897 +L 0,2.206897,0,1.655172 +L 0,1.655172,0.275862,0.827586 +L 0.275862,0.827586,0.827586,0.275862 +L 0.827586,0.275862,1.655172,0 +L 1.655172,0,2.206897,0 +L 2.206897,0,3.034483,0.275862 +L 3.034483,0.275862,3.586207,0.827586 +L 1.655172,3.862069,1.103448,3.586207 +L 1.103448,3.586207,0.551724,3.034483 +L 0.551724,3.034483,0.275862,2.206897 +L 0.275862,2.206897,0.275862,1.655172 +L 0.275862,1.655172,0.551724,0.827586 +L 0.551724,0.827586,1.103448,0.275862 +L 1.103448,0.275862,1.655172,0 + +[d] 24 +L 3.310345,5.793103,3.310345,0 +L 3.586207,5.793103,3.586207,0 +L 3.310345,3.034483,2.758621,3.586207 +L 2.758621,3.586207,2.206897,3.862069 +L 2.206897,3.862069,1.655172,3.862069 +L 1.655172,3.862069,0.827586,3.586207 +L 0.827586,3.586207,0.275862,3.034483 +L 0.275862,3.034483,0,2.206897 +L 0,2.206897,0,1.655172 +L 0,1.655172,0.275862,0.827586 +L 0.275862,0.827586,0.827586,0.275862 +L 0.827586,0.275862,1.655172,0 +L 1.655172,0,2.206897,0 +L 2.206897,0,2.758621,0.275862 +L 2.758621,0.275862,3.310345,0.827586 +L 1.655172,3.862069,1.103448,3.586207 +L 1.103448,3.586207,0.551724,3.034483 +L 0.551724,3.034483,0.275862,2.206897 +L 0.275862,2.206897,0.275862,1.655172 +L 0.275862,1.655172,0.551724,0.827586 +L 0.551724,0.827586,1.103448,0.275862 +L 1.103448,0.275862,1.655172,0 +L 2.482759,5.793103,3.586207,5.793103 +L 3.310345,0,4.413793,0 + +[e] 25 +L 0.275862,2.206897,3.586207,2.206897 +L 3.586207,2.206897,3.586207,2.758621 +L 3.586207,2.758621,3.310345,3.310345 +L 3.310345,3.310345,3.034483,3.586207 +L 3.034483,3.586207,2.482759,3.862069 +L 2.482759,3.862069,1.655172,3.862069 +L 1.655172,3.862069,0.827586,3.586207 +L 0.827586,3.586207,0.275862,3.034483 +L 0.275862,3.034483,0,2.206897 +L 0,2.206897,0,1.655172 +L 0,1.655172,0.275862,0.827586 +L 0.275862,0.827586,0.827586,0.275862 +L 0.827586,0.275862,1.655172,0 +L 1.655172,0,2.206897,0 +L 2.206897,0,3.034483,0.275862 +L 3.034483,0.275862,3.586207,0.827586 +L 3.310345,2.206897,3.310345,3.034483 +L 3.310345,3.034483,3.034483,3.586207 +L 1.655172,3.862069,1.103448,3.586207 +L 1.103448,3.586207,0.551724,3.034483 +L 0.551724,3.034483,0.275862,2.206897 +L 0.275862,2.206897,0.275862,1.655172 +L 0.275862,1.655172,0.551724,0.827586 +L 0.551724,0.827586,1.103448,0.275862 +L 1.103448,0.275862,1.655172,0 + +[f] 14 +L 2.206897,5.517241,1.931034,5.241379 +L 1.931034,5.241379,2.206897,4.965517 +L 2.206897,4.965517,2.482759,5.241379 +L 2.482759,5.241379,2.482759,5.517241 +L 2.482759,5.517241,2.206897,5.793103 +L 2.206897,5.793103,1.655172,5.793103 +L 1.655172,5.793103,1.103448,5.517241 +L 1.103448,5.517241,0.827586,4.965517 +L 0.827586,4.965517,0.827586,0 +L 1.655172,5.793103,1.37931,5.517241 +L 1.37931,5.517241,1.103448,4.965517 +L 1.103448,4.965517,1.103448,0 +L 0,3.862069,2.206897,3.862069 +L 0,0,1.931034,0 + +[g] 48 +L 1.655172,3.862069,1.103448,3.586207 +L 1.103448,3.586207,0.827586,3.310345 +L 0.827586,3.310345,0.551724,2.758621 +L 0.551724,2.758621,0.551724,2.206897 +L 0.551724,2.206897,0.827586,1.655172 +L 0.827586,1.655172,1.103448,1.37931 +L 1.103448,1.37931,1.655172,1.103448 +L 1.655172,1.103448,2.206897,1.103448 +L 2.206897,1.103448,2.758621,1.37931 +L 2.758621,1.37931,3.034483,1.655172 +L 3.034483,1.655172,3.310345,2.206897 +L 3.310345,2.206897,3.310345,2.758621 +L 3.310345,2.758621,3.034483,3.310345 +L 3.034483,3.310345,2.758621,3.586207 +L 2.758621,3.586207,2.206897,3.862069 +L 2.206897,3.862069,1.655172,3.862069 +L 1.103448,3.586207,0.827586,3.034483 +L 0.827586,3.034483,0.827586,1.931034 +L 0.827586,1.931034,1.103448,1.37931 +L 2.758621,1.37931,3.034483,1.931034 +L 3.034483,1.931034,3.034483,3.034483 +L 3.034483,3.034483,2.758621,3.586207 +L 3.034483,3.310345,3.310345,3.586207 +L 3.310345,3.586207,3.862069,3.862069 +L 3.862069,3.862069,3.862069,3.586207 +L 3.862069,3.586207,3.310345,3.586207 +L 0.827586,1.655172,0.551724,1.37931 +L 0.551724,1.37931,0.275862,0.827586 +L 0.275862,0.827586,0.275862,0.551724 +L 0.275862,0.551724,0.551724,0 +L 0.551724,0,1.37931,-0.275862 +L 1.37931,-0.275862,2.758621,-0.275862 +L 2.758621,-0.275862,3.586207,-0.551724 +L 3.586207,-0.551724,3.862069,-0.827586 +L 0.275862,0.551724,0.551724,0.275862 +L 0.551724,0.275862,1.37931,0 +L 1.37931,0,2.758621,0 +L 2.758621,0,3.586207,-0.275862 +L 3.586207,-0.275862,3.862069,-0.827586 +L 3.862069,-0.827586,3.862069,-1.103448 +L 3.862069,-1.103448,3.586207,-1.655172 +L 3.586207,-1.655172,2.758621,-1.931034 +L 2.758621,-1.931034,1.103448,-1.931034 +L 1.103448,-1.931034,0.275862,-1.655172 +L 0.275862,-1.655172,0,-1.103448 +L 0,-1.103448,0,-0.827586 +L 0,-0.827586,0.275862,-0.275862 +L 0.275862,-0.275862,1.103448,0 + +[h] 14 +L 0.827586,5.793103,0.827586,0 +L 1.103448,5.793103,1.103448,0 +L 1.103448,3.034483,1.655172,3.586207 +L 1.655172,3.586207,2.482759,3.862069 +L 2.482759,3.862069,3.034483,3.862069 +L 3.034483,3.862069,3.862069,3.586207 +L 3.862069,3.586207,4.137931,3.034483 +L 4.137931,3.034483,4.137931,0 +L 3.034483,3.862069,3.586207,3.586207 +L 3.586207,3.586207,3.862069,3.034483 +L 3.862069,3.034483,3.862069,0 +L 0,5.793103,1.103448,5.793103 +L 0,0,1.931034,0 +L 3.034483,0,4.965517,0 + +[i] 8 +L 0.827586,5.793103,0.551724,5.517241 +L 0.551724,5.517241,0.827586,5.241379 +L 0.827586,5.241379,1.103448,5.517241 +L 1.103448,5.517241,0.827586,5.793103 +L 0.827586,3.862069,0.827586,0 +L 1.103448,3.862069,1.103448,0 +L 0,3.862069,1.103448,3.862069 +L 0,0,1.931034,0 + +[j] 17 +L 1.37931,5.793103,1.103448,5.517241 +L 1.103448,5.517241,1.37931,5.241379 +L 1.37931,5.241379,1.655172,5.517241 +L 1.655172,5.517241,1.37931,5.793103 +L 1.655172,3.862069,1.655172,-1.103448 +L 1.655172,-1.103448,1.37931,-1.655172 +L 1.37931,-1.655172,0.827586,-1.931034 +L 0.827586,-1.931034,0.275862,-1.931034 +L 0.275862,-1.931034,0,-1.655172 +L 0,-1.655172,0,-1.37931 +L 0,-1.37931,0.275862,-1.103448 +L 0.275862,-1.103448,0.551724,-1.37931 +L 0.551724,-1.37931,0.275862,-1.655172 +L 1.37931,3.862069,1.37931,-1.103448 +L 1.37931,-1.103448,1.103448,-1.655172 +L 1.103448,-1.655172,0.827586,-1.931034 +L 0.551724,3.862069,1.655172,3.862069 + +[k] 9 +L 0.827586,5.793103,0.827586,0 +L 1.103448,5.793103,1.103448,0 +L 3.862069,3.862069,1.103448,1.103448 +L 2.482759,2.206897,4.137931,0 +L 2.206897,2.206897,3.862069,0 +L 0,5.793103,1.103448,5.793103 +L 3.034483,3.862069,4.689655,3.862069 +L 0,0,1.931034,0 +L 3.034483,0,4.689655,0 + +[l] 4 +L 0.827586,5.793103,0.827586,0 +L 1.103448,5.793103,1.103448,0 +L 0,5.793103,1.103448,5.793103 +L 0,0,1.931034,0 + +[m] 24 +L 0.827586,3.862069,0.827586,0 +L 1.103448,3.862069,1.103448,0 +L 1.103448,3.034483,1.655172,3.586207 +L 1.655172,3.586207,2.482759,3.862069 +L 2.482759,3.862069,3.034483,3.862069 +L 3.034483,3.862069,3.862069,3.586207 +L 3.862069,3.586207,4.137931,3.034483 +L 4.137931,3.034483,4.137931,0 +L 3.034483,3.862069,3.586207,3.586207 +L 3.586207,3.586207,3.862069,3.034483 +L 3.862069,3.034483,3.862069,0 +L 4.137931,3.034483,4.689655,3.586207 +L 4.689655,3.586207,5.517241,3.862069 +L 5.517241,3.862069,6.068966,3.862069 +L 6.068966,3.862069,6.896552,3.586207 +L 6.896552,3.586207,7.172414,3.034483 +L 7.172414,3.034483,7.172414,0 +L 6.068966,3.862069,6.62069,3.586207 +L 6.62069,3.586207,6.896552,3.034483 +L 6.896552,3.034483,6.896552,0 +L 0,3.862069,1.103448,3.862069 +L 0,0,1.931034,0 +L 3.034483,0,4.965517,0 +L 6.068966,0,8,0 + +[n] 14 +L 0.827586,3.862069,0.827586,0 +L 1.103448,3.862069,1.103448,0 +L 1.103448,3.034483,1.655172,3.586207 +L 1.655172,3.586207,2.482759,3.862069 +L 2.482759,3.862069,3.034483,3.862069 +L 3.034483,3.862069,3.862069,3.586207 +L 3.862069,3.586207,4.137931,3.034483 +L 4.137931,3.034483,4.137931,0 +L 3.034483,3.862069,3.586207,3.586207 +L 3.586207,3.586207,3.862069,3.034483 +L 3.862069,3.034483,3.862069,0 +L 0,3.862069,1.103448,3.862069 +L 0,0,1.931034,0 +L 3.034483,0,4.965517,0 + +[o] 30 +L 1.655172,3.862069,0.827586,3.586207 +L 0.827586,3.586207,0.275862,3.034483 +L 0.275862,3.034483,0,2.206897 +L 0,2.206897,0,1.655172 +L 0,1.655172,0.275862,0.827586 +L 0.275862,0.827586,0.827586,0.275862 +L 0.827586,0.275862,1.655172,0 +L 1.655172,0,2.206897,0 +L 2.206897,0,3.034483,0.275862 +L 3.034483,0.275862,3.586207,0.827586 +L 3.586207,0.827586,3.862069,1.655172 +L 3.862069,1.655172,3.862069,2.206897 +L 3.862069,2.206897,3.586207,3.034483 +L 3.586207,3.034483,3.034483,3.586207 +L 3.034483,3.586207,2.206897,3.862069 +L 2.206897,3.862069,1.655172,3.862069 +L 1.655172,3.862069,1.103448,3.586207 +L 1.103448,3.586207,0.551724,3.034483 +L 0.551724,3.034483,0.275862,2.206897 +L 0.275862,2.206897,0.275862,1.655172 +L 0.275862,1.655172,0.551724,0.827586 +L 0.551724,0.827586,1.103448,0.275862 +L 1.103448,0.275862,1.655172,0 +L 2.206897,0,2.758621,0.275862 +L 2.758621,0.275862,3.310345,0.827586 +L 3.310345,0.827586,3.586207,1.655172 +L 3.586207,1.655172,3.586207,2.206897 +L 3.586207,2.206897,3.310345,3.034483 +L 3.310345,3.034483,2.758621,3.586207 +L 2.758621,3.586207,2.206897,3.862069 + +[p] 24 +L 0.827586,3.862069,0.827586,-1.931034 +L 1.103448,3.862069,1.103448,-1.931034 +L 1.103448,3.034483,1.655172,3.586207 +L 1.655172,3.586207,2.206897,3.862069 +L 2.206897,3.862069,2.758621,3.862069 +L 2.758621,3.862069,3.586207,3.586207 +L 3.586207,3.586207,4.137931,3.034483 +L 4.137931,3.034483,4.413793,2.206897 +L 4.413793,2.206897,4.413793,1.655172 +L 4.413793,1.655172,4.137931,0.827586 +L 4.137931,0.827586,3.586207,0.275862 +L 3.586207,0.275862,2.758621,0 +L 2.758621,0,2.206897,0 +L 2.206897,0,1.655172,0.275862 +L 1.655172,0.275862,1.103448,0.827586 +L 2.758621,3.862069,3.310345,3.586207 +L 3.310345,3.586207,3.862069,3.034483 +L 3.862069,3.034483,4.137931,2.206897 +L 4.137931,2.206897,4.137931,1.655172 +L 4.137931,1.655172,3.862069,0.827586 +L 3.862069,0.827586,3.310345,0.275862 +L 3.310345,0.275862,2.758621,0 +L 0,3.862069,1.103448,3.862069 +L 0,-1.931034,1.931034,-1.931034 + +[q] 23 +L 3.310345,3.862069,3.310345,-1.931034 +L 3.586207,3.862069,3.586207,-1.931034 +L 3.310345,3.034483,2.758621,3.586207 +L 2.758621,3.586207,2.206897,3.862069 +L 2.206897,3.862069,1.655172,3.862069 +L 1.655172,3.862069,0.827586,3.586207 +L 0.827586,3.586207,0.275862,3.034483 +L 0.275862,3.034483,0,2.206897 +L 0,2.206897,0,1.655172 +L 0,1.655172,0.275862,0.827586 +L 0.275862,0.827586,0.827586,0.275862 +L 0.827586,0.275862,1.655172,0 +L 1.655172,0,2.206897,0 +L 2.206897,0,2.758621,0.275862 +L 2.758621,0.275862,3.310345,0.827586 +L 1.655172,3.862069,1.103448,3.586207 +L 1.103448,3.586207,0.551724,3.034483 +L 0.551724,3.034483,0.275862,2.206897 +L 0.275862,2.206897,0.275862,1.655172 +L 0.275862,1.655172,0.551724,0.827586 +L 0.551724,0.827586,1.103448,0.275862 +L 1.103448,0.275862,1.655172,0 +L 2.482759,-1.931034,4.413793,-1.931034 + +[r] 13 +L 0.827586,3.862069,0.827586,0 +L 1.103448,3.862069,1.103448,0 +L 1.103448,2.206897,1.37931,3.034483 +L 1.37931,3.034483,1.931034,3.586207 +L 1.931034,3.586207,2.482759,3.862069 +L 2.482759,3.862069,3.310345,3.862069 +L 3.310345,3.862069,3.586207,3.586207 +L 3.586207,3.586207,3.586207,3.310345 +L 3.586207,3.310345,3.310345,3.034483 +L 3.310345,3.034483,3.034483,3.310345 +L 3.034483,3.310345,3.310345,3.586207 +L 0,3.862069,1.103448,3.862069 +L 0,0,1.931034,0 + +[s] 28 +L 2.758621,3.310345,3.034483,3.862069 +L 3.034483,3.862069,3.034483,2.758621 +L 3.034483,2.758621,2.758621,3.310345 +L 2.758621,3.310345,2.482759,3.586207 +L 2.482759,3.586207,1.931034,3.862069 +L 1.931034,3.862069,0.827586,3.862069 +L 0.827586,3.862069,0.275862,3.586207 +L 0.275862,3.586207,0,3.310345 +L 0,3.310345,0,2.758621 +L 0,2.758621,0.275862,2.482759 +L 0.275862,2.482759,0.827586,2.206897 +L 0.827586,2.206897,2.206897,1.655172 +L 2.206897,1.655172,2.758621,1.37931 +L 2.758621,1.37931,3.034483,1.103448 +L 0,3.034483,0.275862,2.758621 +L 0.275862,2.758621,0.827586,2.482759 +L 0.827586,2.482759,2.206897,1.931034 +L 2.206897,1.931034,2.758621,1.655172 +L 2.758621,1.655172,3.034483,1.37931 +L 3.034483,1.37931,3.034483,0.551724 +L 3.034483,0.551724,2.758621,0.275862 +L 2.758621,0.275862,2.206897,0 +L 2.206897,0,1.103448,0 +L 1.103448,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 +L 0.275862,0.551724,0,1.103448 +L 0,1.103448,0,0 +L 0,0,0.275862,0.551724 + +[t] 10 +L 0.827586,5.793103,0.827586,1.103448 +L 0.827586,1.103448,1.103448,0.275862 +L 1.103448,0.275862,1.655172,0 +L 1.655172,0,2.206897,0 +L 2.206897,0,2.758621,0.275862 +L 2.758621,0.275862,3.034483,0.827586 +L 1.103448,5.793103,1.103448,1.103448 +L 1.103448,1.103448,1.37931,0.275862 +L 1.37931,0.275862,1.655172,0 +L 0,3.862069,2.206897,3.862069 + +[u] 14 +L 0.827586,3.862069,0.827586,0.827586 +L 0.827586,0.827586,1.103448,0.275862 +L 1.103448,0.275862,1.931034,0 +L 1.931034,0,2.482759,0 +L 2.482759,0,3.310345,0.275862 +L 3.310345,0.275862,3.862069,0.827586 +L 1.103448,3.862069,1.103448,0.827586 +L 1.103448,0.827586,1.37931,0.275862 +L 1.37931,0.275862,1.931034,0 +L 3.862069,3.862069,3.862069,0 +L 4.137931,3.862069,4.137931,0 +L 0,3.862069,1.103448,3.862069 +L 3.034483,3.862069,4.137931,3.862069 +L 3.862069,0,4.965517,0 + +[v] 5 +L 0.551724,3.862069,2.206897,0 +L 0.827586,3.862069,2.206897,0.551724 +L 3.862069,3.862069,2.206897,0 +L 0,3.862069,1.655172,3.862069 +L 2.758621,3.862069,4.413793,3.862069 + +[w] 8 +L 0.827586,3.862069,1.931034,0 +L 1.103448,3.862069,1.931034,0.827586 +L 3.034483,3.862069,1.931034,0 +L 3.034483,3.862069,4.137931,0 +L 3.310345,3.862069,4.137931,0.827586 +L 5.241379,3.862069,4.137931,0 +L 0,3.862069,1.931034,3.862069 +L 4.413793,3.862069,6.068966,3.862069 + +[x] 7 +L 0.551724,3.862069,3.586207,0 +L 0.827586,3.862069,3.862069,0 +L 3.862069,3.862069,0.551724,0 +L 0,3.862069,1.655172,3.862069 +L 2.758621,3.862069,4.413793,3.862069 +L 0,0,1.655172,0 +L 2.758621,0,4.413793,0 + +[y] 12 +L 0.551724,3.862069,2.206897,0 +L 0.827586,3.862069,2.206897,0.551724 +L 3.862069,3.862069,2.206897,0 +L 2.206897,0,1.655172,-1.103448 +L 1.655172,-1.103448,1.103448,-1.655172 +L 1.103448,-1.655172,0.551724,-1.931034 +L 0.551724,-1.931034,0.275862,-1.931034 +L 0.275862,-1.931034,0,-1.655172 +L 0,-1.655172,0.275862,-1.37931 +L 0.275862,-1.37931,0.551724,-1.655172 +L 0,3.862069,1.655172,3.862069 +L 2.758621,3.862069,4.413793,3.862069 + +[z] 8 +L 3.034483,3.862069,0,0 +L 3.310345,3.862069,0.275862,0 +L 0.275862,3.862069,0,2.758621 +L 0,2.758621,0,3.862069 +L 0,3.862069,3.310345,3.862069 +L 0,0,3.310345,0 +L 3.310345,0,3.310345,1.103448 +L 3.310345,1.103448,3.034483,0 + +[{] 34 +L 1.37931,6.896552,0.827586,6.62069 +L 0.827586,6.62069,0.551724,6.344828 +L 0.551724,6.344828,0.275862,5.793103 +L 0.275862,5.793103,0.275862,5.241379 +L 0.275862,5.241379,0.551724,4.689655 +L 0.551724,4.689655,0.827586,4.413793 +L 0.827586,4.413793,1.103448,3.862069 +L 1.103448,3.862069,1.103448,3.310345 +L 1.103448,3.310345,0.551724,2.758621 +L 0.827586,6.62069,0.551724,6.068966 +L 0.551724,6.068966,0.551724,5.517241 +L 0.551724,5.517241,0.827586,4.965517 +L 0.827586,4.965517,1.103448,4.689655 +L 1.103448,4.689655,1.37931,4.137931 +L 1.37931,4.137931,1.37931,3.586207 +L 1.37931,3.586207,1.103448,3.034483 +L 1.103448,3.034483,0,2.482759 +L 0,2.482759,1.103448,1.931034 +L 1.103448,1.931034,1.37931,1.37931 +L 1.37931,1.37931,1.37931,0.827586 +L 1.37931,0.827586,1.103448,0.275862 +L 1.103448,0.275862,0.827586,0 +L 0.827586,0,0.551724,-0.551724 +L 0.551724,-0.551724,0.551724,-1.103448 +L 0.551724,-1.103448,0.827586,-1.655172 +L 0.551724,2.206897,1.103448,1.655172 +L 1.103448,1.655172,1.103448,1.103448 +L 1.103448,1.103448,0.827586,0.551724 +L 0.827586,0.551724,0.551724,0.275862 +L 0.551724,0.275862,0.275862,-0.275862 +L 0.275862,-0.275862,0.275862,-0.827586 +L 0.275862,-0.827586,0.551724,-1.37931 +L 0.551724,-1.37931,0.827586,-1.655172 +L 0.827586,-1.655172,1.37931,-1.931034 + +[|] 1 +L 0,6.896552,0,-1.931034 + +[}] 34 +L 0,6.896552,0.551724,6.62069 +L 0.551724,6.62069,0.827586,6.344828 +L 0.827586,6.344828,1.103448,5.793103 +L 1.103448,5.793103,1.103448,5.241379 +L 1.103448,5.241379,0.827586,4.689655 +L 0.827586,4.689655,0.551724,4.413793 +L 0.551724,4.413793,0.275862,3.862069 +L 0.275862,3.862069,0.275862,3.310345 +L 0.275862,3.310345,0.827586,2.758621 +L 0.551724,6.62069,0.827586,6.068966 +L 0.827586,6.068966,0.827586,5.517241 +L 0.827586,5.517241,0.551724,4.965517 +L 0.551724,4.965517,0.275862,4.689655 +L 0.275862,4.689655,0,4.137931 +L 0,4.137931,0,3.586207 +L 0,3.586207,0.275862,3.034483 +L 0.275862,3.034483,1.37931,2.482759 +L 1.37931,2.482759,0.275862,1.931034 +L 0.275862,1.931034,0,1.37931 +L 0,1.37931,0,0.827586 +L 0,0.827586,0.275862,0.275862 +L 0.275862,0.275862,0.551724,0 +L 0.551724,0,0.827586,-0.551724 +L 0.827586,-0.551724,0.827586,-1.103448 +L 0.827586,-1.103448,0.551724,-1.655172 +L 0.827586,2.206897,0.275862,1.655172 +L 0.275862,1.655172,0.275862,1.103448 +L 0.275862,1.103448,0.551724,0.551724 +L 0.551724,0.551724,0.827586,0.275862 +L 0.827586,0.275862,1.103448,-0.275862 +L 1.103448,-0.275862,1.103448,-0.827586 +L 1.103448,-0.827586,0.827586,-1.37931 +L 0.827586,-1.37931,0.551724,-1.655172 +L 0.551724,-1.655172,0,-1.931034 + +[~] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[#0104] 12 +L 2.482759,5.793103,0.551724,0 +L 2.482759,5.793103,4.413793,0 +L 2.482759,4.965517,4.137931,0 +L 1.103448,1.655172,3.586207,1.655172 +L 0,0,1.655172,0 +L 3.310345,0,4.965517,0 +L 4.137931,0,3.862069,-0.275862 +L 3.862069,-0.275862,3.586207,-0.827586 +L 3.586207,-0.827586,3.586207,-1.37931 +L 3.586207,-1.37931,3.862069,-1.655172 +L 3.862069,-1.655172,4.137931,-1.37931 +L 4.137931,-1.37931,3.862069,-1.103448 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[#0141] 7 +L 0.827586,5.793103,0.827586,0 +L 1.103448,5.793103,1.103448,0 +L 0,5.793103,1.931034,5.793103 +L 0,0,4.137931,0 +L 4.137931,0,4.137931,1.655172 +L 4.137931,1.655172,3.862069,0 +L 2.206897,3.862069,0,2.206897 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[#015A] 36 +L 3.586207,4.965517,3.862069,5.793103 +L 3.862069,5.793103,3.862069,4.137931 +L 3.862069,4.137931,3.586207,4.965517 +L 3.586207,4.965517,3.034483,5.517241 +L 3.034483,5.517241,2.206897,5.793103 +L 2.206897,5.793103,1.37931,5.793103 +L 1.37931,5.793103,0.551724,5.517241 +L 0.551724,5.517241,0,4.965517 +L 0,4.965517,0,4.413793 +L 0,4.413793,0.275862,3.862069 +L 0.275862,3.862069,0.551724,3.586207 +L 0.551724,3.586207,1.103448,3.310345 +L 1.103448,3.310345,2.758621,2.758621 +L 2.758621,2.758621,3.310345,2.482759 +L 3.310345,2.482759,3.862069,1.931034 +L 0,4.413793,0.551724,3.862069 +L 0.551724,3.862069,1.103448,3.586207 +L 1.103448,3.586207,2.758621,3.034483 +L 2.758621,3.034483,3.310345,2.758621 +L 3.310345,2.758621,3.586207,2.482759 +L 3.586207,2.482759,3.862069,1.931034 +L 3.862069,1.931034,3.862069,0.827586 +L 3.862069,0.827586,3.310345,0.275862 +L 3.310345,0.275862,2.482759,0 +L 2.482759,0,1.655172,0 +L 1.655172,0,0.827586,0.275862 +L 0.827586,0.275862,0.275862,0.827586 +L 0.275862,0.827586,0,1.655172 +L 0,1.655172,0,0 +L 0,0,0.275862,0.827586 +L 2.206897,7.448276,1.931034,7.724138 +L 1.931034,7.724138,2.206897,8 +L 2.206897,8,2.482759,7.724138 +L 2.482759,7.724138,2.482759,7.172414 +L 2.482759,7.172414,2.206897,6.62069 +L 2.206897,6.62069,1.931034,6.344828 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[#0179] 14 +L 3.586207,5.793103,0,0 +L 3.862069,5.793103,0.275862,0 +L 0.275862,5.793103,0,4.137931 +L 0,4.137931,0,5.793103 +L 0,5.793103,3.862069,5.793103 +L 0,0,3.862069,0 +L 3.862069,0,3.862069,1.655172 +L 3.862069,1.655172,3.586207,0 +L 2.206897,7.448276,1.931034,7.724138 +L 1.931034,7.724138,2.206897,8 +L 2.206897,8,2.482759,7.724138 +L 2.482759,7.724138,2.482759,7.172414 +L 2.482759,7.172414,2.206897,6.62069 +L 2.206897,6.62069,1.931034,6.344828 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[#017B] 12 +L 3.586207,5.793103,0,0 +L 3.862069,5.793103,0.275862,0 +L 0.275862,5.793103,0,4.137931 +L 0,4.137931,0,5.793103 +L 0,5.793103,3.862069,5.793103 +L 0,0,3.862069,0 +L 3.862069,0,3.862069,1.655172 +L 3.862069,1.655172,3.586207,0 +L 1.931034,6.896552,1.655172,6.62069 +L 1.655172,6.62069,1.931034,6.344828 +L 1.931034,6.344828,2.206897,6.62069 +L 2.206897,6.62069,1.931034,6.896552 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[#0105] 37 +L 0.551724,3.310345,0.551724,3.034483 +L 0.551724,3.034483,0.275862,3.034483 +L 0.275862,3.034483,0.275862,3.310345 +L 0.275862,3.310345,0.551724,3.586207 +L 0.551724,3.586207,1.103448,3.862069 +L 1.103448,3.862069,2.206897,3.862069 +L 2.206897,3.862069,2.758621,3.586207 +L 2.758621,3.586207,3.034483,3.310345 +L 3.034483,3.310345,3.310345,2.758621 +L 3.310345,2.758621,3.310345,0.827586 +L 3.310345,0.827586,3.586207,0.275862 +L 3.586207,0.275862,3.862069,0 +L 3.034483,3.310345,3.034483,0.827586 +L 3.034483,0.827586,3.310345,0.275862 +L 3.310345,0.275862,3.862069,0 +L 3.862069,0,4.137931,0 +L 3.034483,2.758621,2.758621,2.482759 +L 2.758621,2.482759,1.103448,2.206897 +L 1.103448,2.206897,0.275862,1.931034 +L 0.275862,1.931034,0,1.37931 +L 0,1.37931,0,0.827586 +L 0,0.827586,0.275862,0.275862 +L 0.275862,0.275862,1.103448,0 +L 1.103448,0,1.931034,0 +L 1.931034,0,2.482759,0.275862 +L 2.482759,0.275862,3.034483,0.827586 +L 1.103448,2.206897,0.551724,1.931034 +L 0.551724,1.931034,0.275862,1.37931 +L 0.275862,1.37931,0.275862,0.827586 +L 0.275862,0.827586,0.551724,0.275862 +L 0.551724,0.275862,1.103448,0 +L 3.862069,0,3.586207,-0.275862 +L 3.586207,-0.275862,3.310345,-0.827586 +L 3.310345,-0.827586,3.310345,-1.37931 +L 3.310345,-1.37931,3.586207,-1.655172 +L 3.586207,-1.655172,3.862069,-1.37931 +L 3.862069,-1.37931,3.586207,-1.103448 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[#0142] 5 +L 0.827586,5.793103,0.827586,0 +L 1.103448,5.793103,1.103448,0 +L 0,5.793103,1.103448,5.793103 +L 0,0,1.931034,0 +L 1.931034,3.862069,0,2.482759 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[#015B] 34 +L 2.758621,3.310345,3.034483,3.862069 +L 3.034483,3.862069,3.034483,2.758621 +L 3.034483,2.758621,2.758621,3.310345 +L 2.758621,3.310345,2.482759,3.586207 +L 2.482759,3.586207,1.931034,3.862069 +L 1.931034,3.862069,0.827586,3.862069 +L 0.827586,3.862069,0.275862,3.586207 +L 0.275862,3.586207,0,3.310345 +L 0,3.310345,0,2.758621 +L 0,2.758621,0.275862,2.482759 +L 0.275862,2.482759,0.827586,2.206897 +L 0.827586,2.206897,2.206897,1.655172 +L 2.206897,1.655172,2.758621,1.37931 +L 2.758621,1.37931,3.034483,1.103448 +L 0,3.034483,0.275862,2.758621 +L 0.275862,2.758621,0.827586,2.482759 +L 0.827586,2.482759,2.206897,1.931034 +L 2.206897,1.931034,2.758621,1.655172 +L 2.758621,1.655172,3.034483,1.37931 +L 3.034483,1.37931,3.034483,0.551724 +L 3.034483,0.551724,2.758621,0.275862 +L 2.758621,0.275862,2.206897,0 +L 2.206897,0,1.103448,0 +L 1.103448,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 +L 0.275862,0.551724,0,1.103448 +L 0,1.103448,0,0 +L 0,0,0.275862,0.551724 +L 1.655172,5.517241,1.37931,5.793103 +L 1.37931,5.793103,1.655172,6.068966 +L 1.655172,6.068966,1.931034,5.793103 +L 1.931034,5.793103,1.931034,5.241379 +L 1.931034,5.241379,1.655172,4.689655 +L 1.655172,4.689655,1.37931,4.413793 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[#017A] 14 +L 3.034483,3.862069,0,0 +L 3.310345,3.862069,0.275862,0 +L 0.275862,3.862069,0,2.758621 +L 0,2.758621,0,3.862069 +L 0,3.862069,3.310345,3.862069 +L 0,0,3.310345,0 +L 3.310345,0,3.310345,1.103448 +L 3.310345,1.103448,3.034483,0 +L 1.655172,5.241379,1.37931,5.517241 +L 1.37931,5.517241,1.655172,5.793103 +L 1.655172,5.793103,1.931034,5.517241 +L 1.931034,5.517241,1.931034,4.965517 +L 1.931034,4.965517,1.655172,4.413793 +L 1.655172,4.413793,1.37931,4.137931 + + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[#017C] 12 +L 3.034483,3.862069,0,0 +L 3.310345,3.862069,0.275862,0 +L 0.275862,3.862069,0,2.758621 +L 0,2.758621,0,3.862069 +L 0,3.862069,3.310345,3.862069 +L 0,0,3.310345,0 +L 3.310345,0,3.310345,1.103448 +L 3.310345,1.103448,3.034483,0 +L 1.655172,5.241379,1.37931,5.517241 +L 1.37931,5.517241,1.655172,5.793103 +L 1.655172,5.793103,1.931034,5.517241 +L 1.931034,5.517241,1.655172,5.241379 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[#0106] 34 +L 3.862069,4.965517,4.137931,4.137931 +L 4.137931,4.137931,4.137931,5.793103 +L 4.137931,5.793103,3.862069,4.965517 +L 3.862069,4.965517,3.310345,5.517241 +L 3.310345,5.517241,2.482759,5.793103 +L 2.482759,5.793103,1.931034,5.793103 +L 1.931034,5.793103,1.103448,5.517241 +L 1.103448,5.517241,0.551724,4.965517 +L 0.551724,4.965517,0.275862,4.413793 +L 0.275862,4.413793,0,3.586207 +L 0,3.586207,0,2.206897 +L 0,2.206897,0.275862,1.37931 +L 0.275862,1.37931,0.551724,0.827586 +L 0.551724,0.827586,1.103448,0.275862 +L 1.103448,0.275862,1.931034,0 +L 1.931034,0,2.482759,0 +L 2.482759,0,3.310345,0.275862 +L 3.310345,0.275862,3.862069,0.827586 +L 3.862069,0.827586,4.137931,1.37931 +L 1.931034,5.793103,1.37931,5.517241 +L 1.37931,5.517241,0.827586,4.965517 +L 0.827586,4.965517,0.551724,4.413793 +L 0.551724,4.413793,0.275862,3.586207 +L 0.275862,3.586207,0.275862,2.206897 +L 0.275862,2.206897,0.551724,1.37931 +L 0.551724,1.37931,0.827586,0.827586 +L 0.827586,0.827586,1.37931,0.275862 +L 1.37931,0.275862,1.931034,0 +L 2.482759,7.448276,2.206897,7.724138 +L 2.206897,7.724138,2.482759,8 +L 2.482759,8,2.758621,7.724138 +L 2.758621,7.724138,2.758621,7.172414 +L 2.758621,7.172414,2.482759,6.62069 +L 2.482759,6.62069,2.206897,6.344828 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[#0118] 16 +L 0.827586,5.793103,0.827586,0 +L 1.103448,5.793103,1.103448,0 +L 2.758621,4.137931,2.758621,1.931034 +L 0,5.793103,4.413793,5.793103 +L 4.413793,5.793103,4.413793,4.137931 +L 4.413793,4.137931,4.137931,5.793103 +L 1.103448,3.034483,2.758621,3.034483 +L 0,0,4.413793,0 +L 4.413793,0,4.413793,1.655172 +L 4.413793,1.655172,4.137931,0 +L 3.586207,0,3.310345,-0.275862 +L 3.310345,-0.275862,3.034483,-0.827586 +L 3.034483,-0.827586,3.034483,-1.37931 +L 3.034483,-1.37931,3.310345,-1.655172 +L 3.310345,-1.655172,3.586207,-1.37931 +L 3.586207,-1.37931,3.310345,-1.103448 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[#0143] 13 +L 0.827586,5.793103,0.827586,0 +L 1.103448,5.793103,4.413793,0.551724 +L 1.103448,5.241379,4.413793,0 +L 4.413793,5.793103,4.413793,0 +L 0,5.793103,1.103448,5.793103 +L 3.586207,5.793103,5.241379,5.793103 +L 0,0,1.655172,0 +L 2.758621,7.448276,2.482759,7.724138 +L 2.482759,7.724138,2.758621,8 +L 2.758621,8,3.034483,7.724138 +L 3.034483,7.724138,3.034483,7.172414 +L 3.034483,7.172414,2.758621,6.62069 +L 2.758621,6.62069,2.482759,6.344828 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[#00D3] 44 +L 1.931034,5.793103,1.103448,5.517241 +L 1.103448,5.517241,0.551724,4.965517 +L 0.551724,4.965517,0.275862,4.413793 +L 0.275862,4.413793,0,3.310345 +L 0,3.310345,0,2.482759 +L 0,2.482759,0.275862,1.37931 +L 0.275862,1.37931,0.551724,0.827586 +L 0.551724,0.827586,1.103448,0.275862 +L 1.103448,0.275862,1.931034,0 +L 1.931034,0,2.482759,0 +L 2.482759,0,3.310345,0.275862 +L 3.310345,0.275862,3.862069,0.827586 +L 3.862069,0.827586,4.137931,1.37931 +L 4.137931,1.37931,4.413793,2.482759 +L 4.413793,2.482759,4.413793,3.310345 +L 4.413793,3.310345,4.137931,4.413793 +L 4.137931,4.413793,3.862069,4.965517 +L 3.862069,4.965517,3.310345,5.517241 +L 3.310345,5.517241,2.482759,5.793103 +L 2.482759,5.793103,1.931034,5.793103 +L 1.931034,5.793103,1.37931,5.517241 +L 1.37931,5.517241,0.827586,4.965517 +L 0.827586,4.965517,0.551724,4.413793 +L 0.551724,4.413793,0.275862,3.310345 +L 0.275862,3.310345,0.275862,2.482759 +L 0.275862,2.482759,0.551724,1.37931 +L 0.551724,1.37931,0.827586,0.827586 +L 0.827586,0.827586,1.37931,0.275862 +L 1.37931,0.275862,1.931034,0 +L 2.482759,0,3.034483,0.275862 +L 3.034483,0.275862,3.586207,0.827586 +L 3.586207,0.827586,3.862069,1.37931 +L 3.862069,1.37931,4.137931,2.482759 +L 4.137931,2.482759,4.137931,3.310345 +L 4.137931,3.310345,3.862069,4.413793 +L 3.862069,4.413793,3.586207,4.965517 +L 3.586207,4.965517,3.034483,5.517241 +L 3.034483,5.517241,2.482759,5.793103 +L 2.482759,7.448276,2.206897,7.724138 +L 2.206897,7.724138,2.482759,8 +L 2.482759,8,2.758621,7.724138 +L 2.758621,7.724138,2.758621,7.172414 +L 2.758621,7.172414,2.482759,6.62069 +L 2.482759,6.62069,2.206897,6.344828 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[#0107] 30 +L 3.310345,3.034483,3.034483,2.758621 +L 3.034483,2.758621,3.310345,2.482759 +L 3.310345,2.482759,3.586207,2.758621 +L 3.586207,2.758621,3.586207,3.034483 +L 3.586207,3.034483,3.034483,3.586207 +L 3.034483,3.586207,2.482759,3.862069 +L 2.482759,3.862069,1.655172,3.862069 +L 1.655172,3.862069,0.827586,3.586207 +L 0.827586,3.586207,0.275862,3.034483 +L 0.275862,3.034483,0,2.206897 +L 0,2.206897,0,1.655172 +L 0,1.655172,0.275862,0.827586 +L 0.275862,0.827586,0.827586,0.275862 +L 0.827586,0.275862,1.655172,0 +L 1.655172,0,2.206897,0 +L 2.206897,0,3.034483,0.275862 +L 3.034483,0.275862,3.586207,0.827586 +L 1.655172,3.862069,1.103448,3.586207 +L 1.103448,3.586207,0.551724,3.034483 +L 0.551724,3.034483,0.275862,2.206897 +L 0.275862,2.206897,0.275862,1.655172 +L 0.275862,1.655172,0.551724,0.827586 +L 0.551724,0.827586,1.103448,0.275862 +L 1.103448,0.275862,1.655172,0 +L 2.206897,5.517241,1.931034,5.793103 +L 1.931034,5.793103,2.206897,6.068966 +L 2.206897,6.068966,2.482759,5.793103 +L 2.482759,5.793103,2.482759,5.241379 +L 2.482759,5.241379,2.206897,4.689655 +L 2.206897,4.689655,1.931034,4.413793 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[#0119] 31 +L 0.275862,2.206897,3.586207,2.206897 +L 3.586207,2.206897,3.586207,2.758621 +L 3.586207,2.758621,3.310345,3.310345 +L 3.310345,3.310345,3.034483,3.586207 +L 3.034483,3.586207,2.482759,3.862069 +L 2.482759,3.862069,1.655172,3.862069 +L 1.655172,3.862069,0.827586,3.586207 +L 0.827586,3.586207,0.275862,3.034483 +L 0.275862,3.034483,0,2.206897 +L 0,2.206897,0,1.655172 +L 0,1.655172,0.275862,0.827586 +L 0.275862,0.827586,0.827586,0.275862 +L 0.827586,0.275862,1.655172,0 +L 1.655172,0,2.206897,0 +L 2.206897,0,3.034483,0.275862 +L 3.034483,0.275862,3.586207,0.827586 +L 3.310345,2.206897,3.310345,3.034483 +L 3.310345,3.034483,3.034483,3.586207 +L 1.655172,3.862069,1.103448,3.586207 +L 1.103448,3.586207,0.551724,3.034483 +L 0.551724,3.034483,0.275862,2.206897 +L 0.275862,2.206897,0.275862,1.655172 +L 0.275862,1.655172,0.551724,0.827586 +L 0.551724,0.827586,1.103448,0.275862 +L 1.103448,0.275862,1.655172,0 +L 2.206897,0,1.931034,-0.275862 +L 1.931034,-0.275862,1.655172,-0.827586 +L 1.655172,-0.827586,1.655172,-1.37931 +L 1.655172,-1.37931,1.931034,-1.655172 +L 1.931034,-1.655172,2.206897,-1.37931 +L 2.206897,-1.37931,1.931034,-1.103448 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[#0144] 20 +L 0.827586,3.862069,0.827586,0 +L 1.103448,3.862069,1.103448,0 +L 1.103448,3.034483,1.655172,3.586207 +L 1.655172,3.586207,2.482759,3.862069 +L 2.482759,3.862069,3.034483,3.862069 +L 3.034483,3.862069,3.862069,3.586207 +L 3.862069,3.586207,4.137931,3.034483 +L 4.137931,3.034483,4.137931,0 +L 3.034483,3.862069,3.586207,3.586207 +L 3.586207,3.586207,3.862069,3.034483 +L 3.862069,3.034483,3.862069,0 +L 0,3.862069,1.103448,3.862069 +L 0,0,1.931034,0 +L 3.034483,0,4.965517,0 +L 2.758621,5.517241,2.482759,5.793103 +L 2.482759,5.793103,2.758621,6.068966 +L 2.758621,6.068966,3.034483,5.793103 +L 3.034483,5.793103,3.034483,5.241379 +L 3.034483,5.241379,2.758621,4.689655 +L 2.758621,4.689655,2.482759,4.413793 + +[] 4 +L 0.275862,0.551724,0,0.275862 +L 0,0.275862,0.275862,0 +L 0.275862,0,0.551724,0.275862 +L 0.551724,0.275862,0.275862,0.551724 + +[#00F3] 36 +L 1.655172,3.862069,0.827586,3.586207 +L 0.827586,3.586207,0.275862,3.034483 +L 0.275862,3.034483,0,2.206897 +L 0,2.206897,0,1.655172 +L 0,1.655172,0.275862,0.827586 +L 0.275862,0.827586,0.827586,0.275862 +L 0.827586,0.275862,1.655172,0 +L 1.655172,0,2.206897,0 +L 2.206897,0,3.034483,0.275862 +L 3.034483,0.275862,3.586207,0.827586 +L 3.586207,0.827586,3.862069,1.655172 +L 3.862069,1.655172,3.862069,2.206897 +L 3.862069,2.206897,3.586207,3.034483 +L 3.586207,3.034483,3.034483,3.586207 +L 3.034483,3.586207,2.206897,3.862069 +L 2.206897,3.862069,1.655172,3.862069 +L 1.655172,3.862069,1.103448,3.586207 +L 1.103448,3.586207,0.551724,3.034483 +L 0.551724,3.034483,0.275862,2.206897 +L 0.275862,2.206897,0.275862,1.655172 +L 0.275862,1.655172,0.551724,0.827586 +L 0.551724,0.827586,1.103448,0.275862 +L 1.103448,0.275862,1.655172,0 +L 2.206897,0,2.758621,0.275862 +L 2.758621,0.275862,3.310345,0.827586 +L 3.310345,0.827586,3.586207,1.655172 +L 3.586207,1.655172,3.586207,2.206897 +L 3.586207,2.206897,3.310345,3.034483 +L 3.310345,3.034483,2.758621,3.586207 +L 2.758621,3.586207,2.206897,3.862069 +L 2.206897,5.517241,1.931034,5.793103 +L 1.931034,5.793103,2.206897,6.068966 +L 2.206897,6.068966,2.482759,5.793103 +L 2.482759,5.793103,2.482759,5.241379 +L 2.482759,5.241379,2.206897,4.689655 +L 2.206897,4.689655,1.931034,4.413793 + +#EOF diff --git a/pycam/share/fonts/romans.cxf b/pycam/share/fonts/romans.cxf new file mode 100644 index 00000000..c32c6d2d --- /dev/null +++ b/pycam/share/fonts/romans.cxf @@ -0,0 +1,1407 @@ +# Format: QCad II Font +# Creator: Adam Radlowski's "dodajf" program - GRASS font translator +# Version: 1.0.0 +# Name: Roman Simplex +# LetterSpacing: 3.0 +# WordSpacing: 6.75 +# LineSpacingFactor: 1.0 +# Author: Ain Vagula + +[!] 5 +L 1.077881,0.830731,0.558594,0.415326 +L 0.558594,0.415326,0.870117,-0.000003 +L 0.870117,-0.000003,1.389404,0.415326 +L 1.389404,0.415326,1.077881,0.830731 +L 3.206543,8.77435,1.648926,2.959424 + +["] 14 +L 5.631104,9.020413,5.111816,8.605083 +L 5.111816,8.605083,4.800293,9.020413 +L 4.800293,9.020413,5.31958,9.435803 +L 5.31958,9.435803,5.631104,9.020413 +L 5.631104,9.020413,5.371338,8.18974 +L 5.371338,8.18974,4.748291,7.359021 +L 4.748291,7.359021,4.229248,6.943677 +L 3.138916,9.020413,2.567871,8.605083 +L 2.567871,8.605083,2.308105,9.020413 +L 2.308105,9.020413,2.827393,9.435803 +L 2.827393,9.435803,3.138916,9.020413 +L 3.138916,9.020413,2.879395,8.18974 +L 2.879395,8.18974,2.256348,7.359021 +L 2.256348,7.359021,1.737061,6.943677 + +[#] 4 +L 1.03833,4.451492,6.853271,4.451492 +L 6.48999,12.343262,0,-1 +L 8.981934,12.343262,2.492188,-1 +L 2.128662,6.943619,7.943604,6.943619 + +[$] 21 +L 7.316162,7.528288,6.693115,8.359022 +L 6.693115,8.359022,5.551025,8.774351 +L 5.551025,8.774351,3.889404,8.774351 +L 3.889404,8.774351,2.539551,8.359022 +L 2.539551,8.359022,1.501221,7.528288 +L 1.501221,7.528288,1.241699,6.697615 +L 1.241699,6.697615,1.449219,5.866896 +L 1.449219,5.866896,1.760742,5.451551 +L 1.760742,5.451551,2.487549,5.036161 +L 2.487549,5.036161,4.772217,4.205488 +L 4.772217,4.205488,5.447021,3.790098 +L 5.447021,3.790098,5.758545,3.374769 +L 5.758545,3.374769,5.966309,2.544035 +L 5.966309,2.544035,5.654785,1.246061 +L 5.654785,1.246061,4.564453,0.415327 +L 4.564453,0.415327,3.2146,-0.000002 +L 3.2146,-0.000002,1.553223,-0.000002 +L 1.553223,-0.000002,0.410889,0.415327 +L 0.410889,0.415327,-0.212158,1.246061 +L 6.018311,10.435804,2.747314,-1.661394 +L 4.356689,10.435804,1.085938,-1.661394 + +[%] 25 +L 6.59375,2.959427,5.65918,2.544037 +L 5.65918,2.544037,4.984131,1.713364 +L 4.984131,1.713364,4.776611,0.830734 +L 4.776611,0.830734,5.399658,-0 +L 5.399658,-0,6.230225,-0 +L 6.230225,-0,7.164795,0.415329 +L 7.164795,0.415329,7.787842,1.246063 +L 7.787842,1.246063,8.047363,2.128708 +L 8.047363,2.128708,7.424316,2.959427 +L 7.424316,2.959427,6.59375,2.959427 +L 4.413086,8.774353,5.036133,7.94368 +L 5.036133,7.94368,4.776611,7.112961 +L 4.776611,7.112961,4.153564,6.282227 +L 4.153564,6.282227,3.218994,5.866898 +L 3.218994,5.866898,2.388184,5.866898 +L 2.388184,5.866898,1.765137,6.697617 +L 1.765137,6.697617,1.9729,7.52829 +L 1.9729,7.52829,2.647949,8.359024 +L 2.647949,8.359024,3.58252,8.774353 +L 3.58252,8.774353,4.413086,8.774353 +L 4.413086,8.774353,5.139893,8.359024 +L 5.139893,8.359024,6.282227,7.94368 +L 6.282227,7.94368,7.52832,7.94368 +L 9,8.999999,0,-0 +L 7.52832,7.94368,9,8.999999 + +[&] 30 +L 8.83667,5.866894,8.265625,5.45155 +L 8.265625,5.45155,7.642578,4.620831 +L 7.642578,4.620831,6.240723,2.544033 +L 6.240723,2.544033,5.098633,1.246059 +L 5.098633,1.246059,4.060059,0.415325 +L 4.060059,0.415325,3.07373,-0.000004 +L 3.07373,-0.000004,1.412354,-0.000004 +L 1.412354,-0.000004,0.685303,0.415325 +L 0.685303,0.415325,0.373779,0.83073 +L 0.373779,0.83073,0.218018,1.71336 +L 0.218018,1.71336,0.425781,2.544033 +L 0.425781,2.544033,1.048828,3.374767 +L 1.048828,3.374767,1.619873,3.790096 +L 1.619873,3.790096,4.942871,5.45155 +L 4.942871,5.45155,5.461914,5.866894 +L 5.461914,5.866894,6.136963,6.697613 +L 6.136963,6.697613,6.344727,7.528286 +L 6.344727,7.528286,6.136963,8.35902 +L 6.136963,8.35902,5.409912,8.774349 +L 5.409912,8.774349,4.475586,8.35902 +L 4.475586,8.35902,3.852539,7.528286 +L 3.852539,7.528286,3.644775,6.697613 +L 3.644775,6.697613,3.696777,5.45155 +L 3.696777,5.45155,4.216064,4.205486 +L 4.216064,4.205486,5.513916,1.246059 +L 5.513916,1.246059,6.136963,0.415325 +L 6.136963,0.415325,6.86377,-0.000004 +L 6.86377,-0.000004,7.69458,-0.000004 +L 7.69458,-0.000004,8.213623,0.415325 +L 8.213623,0.415325,8.317627,0.83073 + +['] 7 +L 1.812256,9.020412,2.123779,8.605083 +L 2.123779,8.605083,2.643066,9.020412 +L 2.643066,9.020412,2.331787,9.435802 +L 2.331787,9.435802,1.812256,9.020412 +L 1.812256,9.020412,1.604736,8.189739 +L 1.604736,8.189739,1.812256,7.35902 +L 1.812256,7.35902,2.123779,6.943676 + +[(] 9 +L 5.866211,10.435802,4.827881,9.605083 +L 4.827881,9.605083,3.633789,8.35902 +L 3.633789,8.35902,2.387695,6.697613 +L 2.387695,6.697613,1.401123,4.620831 +L 1.401123,4.620831,0.933838,2.959423 +L 0.933838,2.959423,0.830078,0.83073 +L 0.830078,0.83073,1.193604,-0.830738 +L 1.193604,-0.830738,1.712646,-2.076801 +L 1.712646,-2.076801,2.283936,-2.907459 + +[)] 9 +L 4.358398,10.435804,4.981445,9.605085 +L 4.981445,9.605085,5.500732,8.359022 +L 5.500732,8.359022,5.864014,6.697615 +L 5.864014,6.697615,5.708252,4.620832 +L 5.708252,4.620832,5.292969,2.959425 +L 5.292969,2.959425,4.306396,0.830732 +L 4.306396,0.830732,3.008545,-0.830736 +L 3.008545,-0.830736,1.866211,-2.076799 +L 1.866211,-2.076799,0.776123,-2.907457 + +[*] 3 +L 5.579346,9.385914,0.750977,6.893787 +L 1.425781,9.385914,4.904297,6.893787 +L 3.865967,10.631977,2.516113,5.647724 + +[+] 2 +L 5.366699,7.528287,3.341797,-0.000003 +L 0.64209,3.790097,8.118408,3.790097 + +[,] 7 +L 1.401611,1.128708,0.882568,0.713379 +L 0.882568,0.713379,0.571045,1.128708 +L 0.571045,1.128708,1.090088,1.544037 +L 1.090088,1.544037,1.401611,1.128708 +L 1.401611,1.128708,1.14209,0.297974 +L 1.14209,0.297974,0.519043,-0.584656 +L 0.519043,-0.584656,0,-1 + +[-] 1 +L 0.64209,3.790097,8.118408,3.790097 + +[.] 4 +L 0.519043,0.415329,0,-0 +L 0,-0,0.311523,-0.415329 +L 0.311523,-0.415329,0.830566,-0 +L 0.830566,-0,0.519043,0.415329 + +[/] 1 +L 0.111816,-0.44889,7.476318,12.10815 + +[0] 16 +L 4.374512,8.788957,3.024658,8.373628 +L 3.024658,8.373628,1.830322,7.127564 +L 1.830322,7.127564,0.895752,5.050767 +L 0.895752,5.050767,0.532471,3.804704 +L 0.532471,3.804704,0.376709,1.727967 +L 0.376709,1.727967,0.895752,0.429933 +L 0.895752,0.429933,2.038086,0.014604 +L 2.038086,0.014604,2.868896,0.014604 +L 2.868896,0.014604,4.21875,0.429933 +L 4.21875,0.429933,5.412842,1.727967 +L 5.412842,1.727967,6.347412,3.804704 +L 6.347412,3.804704,6.710938,5.050767 +L 6.710938,5.050767,6.866699,7.127564 +L 6.866699,7.127564,6.347412,8.373628 +L 6.347412,8.373628,5.205322,8.788957 +L 5.205322,8.788957,4.374512,8.788957 + +[1] 3 +L 1.741455,7.127564,2.676025,7.542893 +L 2.676025,7.542893,4.233643,8.788957 +L 4.233643,8.788957,1.897217,0.014604 + +[2] 13 +L 2.114014,6.71222,2.218018,7.127564 +L 2.218018,7.127564,2.841064,7.958283 +L 2.841064,7.958283,3.360107,8.373628 +L 3.360107,8.373628,4.34668,8.788957 +L 4.34668,8.788957,6.008057,8.788957 +L 6.008057,8.788957,6.734863,8.373628 +L 6.734863,8.373628,6.994385,7.958283 +L 6.994385,7.958283,7.202148,7.127564 +L 7.202148,7.127564,6.994385,6.29683 +L 6.994385,6.29683,6.371338,5.466157 +L 6.371338,5.466157,5.17749,4.220094 +L 5.17749,4.220094,-0.118408,0.014604 +L -0.118408,0.014604,5.748291,0.014604 + +[3] 14 +L 3.407715,8.788957,7.976562,8.788957 +L 7.976562,8.788957,4.601807,5.466157 +L 4.601807,5.466157,5.8479,5.466157 +L 5.8479,5.466157,6.574707,5.050767 +L 6.574707,5.050767,6.88623,4.635438 +L 6.88623,4.635438,6.938232,3.389375 +L 6.938232,3.389375,6.730469,2.55864 +L 6.730469,2.55864,5.95166,1.260667 +L 5.95166,1.260667,4.91333,0.429933 +L 4.91333,0.429933,3.563477,0.014604 +L 3.563477,0.014604,2.317383,0.014604 +L 2.317383,0.014604,1.175049,0.429933 +L 1.175049,0.429933,0.863525,0.845338 +L 0.863525,0.845338,0.656006,1.727967 + +[4] 3 +L 6.0896,8.788957,3.701172,0.014604 +L 6.0896,8.788957,0.326416,2.97403 +L 0.326416,2.97403,6.608643,2.97403 + +[5] 16 +L 7.227295,8.788957,3.07373,8.788957 +L 3.07373,8.788957,1.619873,5.050767 +L 1.619873,5.050767,2.191162,5.466157 +L 2.191162,5.466157,3.541016,5.881501 +L 3.541016,5.881501,4.787109,5.881501 +L 4.787109,5.881501,5.929443,5.466157 +L 5.929443,5.466157,6.55249,4.635438 +L 6.55249,4.635438,6.604248,3.389375 +L 6.604248,3.389375,6.396729,2.55864 +L 6.396729,2.55864,5.61792,1.260667 +L 5.61792,1.260667,4.579346,0.429933 +L 4.579346,0.429933,3.229492,0.014604 +L 3.229492,0.014604,1.983398,0.014604 +L 1.983398,0.014604,0.841309,0.429933 +L 0.841309,0.429933,0.529785,0.845338 +L 0.529785,0.845338,0.322021,1.727967 + +[6] 22 +L 6.638184,7.542893,6.43042,8.373628 +L 6.43042,8.373628,5.28833,8.788957 +L 5.28833,8.788957,4.457764,8.788957 +L 4.457764,8.788957,3.107666,8.373628 +L 3.107666,8.373628,1.965576,7.127564 +L 1.965576,7.127564,0.979004,5.050767 +L 0.979004,5.050767,0.407959,2.97403 +L 0.407959,2.97403,0.407959,1.260667 +L 0.407959,1.260667,0.979004,0.429933 +L 0.979004,0.429933,2.121338,0.014604 +L 2.121338,0.014604,2.536621,0.014604 +L 2.536621,0.014604,3.886475,0.429933 +L 3.886475,0.429933,4.976807,1.260667 +L 4.976807,1.260667,5.703613,2.55864 +L 5.703613,2.55864,5.807617,2.97403 +L 5.807617,2.97403,5.755615,4.220094 +L 5.755615,4.220094,5.132568,5.050767 +L 5.132568,5.050767,3.990479,5.466157 +L 3.990479,5.466157,3.574951,5.466157 +L 3.574951,5.466157,2.225098,5.050767 +L 2.225098,5.050767,1.186768,4.220094 +L 1.186768,4.220094,0.407959,2.97403 + +[7] 2 +L 0.234131,0.014604,6.724121,8.788957 +L 6.724121,8.788957,0.90918,8.788957 + +[8] 28 +L 4.292969,8.788957,2.943115,8.373628 +L 2.943115,8.373628,2.320068,7.542893 +L 2.320068,7.542893,2.060547,6.71222 +L 2.060547,6.71222,2.268311,5.881501 +L 2.268311,5.881501,2.994873,5.466157 +L 2.994873,5.466157,4.55249,5.050767 +L 4.55249,5.050767,5.694824,4.635438 +L 5.694824,4.635438,6.265869,3.804704 +L 6.265869,3.804704,6.473633,2.97403 +L 6.473633,2.97403,6.162109,1.727967 +L 6.162109,1.727967,5.487061,0.845338 +L 5.487061,0.845338,4.968018,0.429933 +L 4.968018,0.429933,3.61792,0.014604 +L 3.61792,0.014604,1.956787,0.014604 +L 1.956787,0.014604,0.814453,0.429933 +L 0.814453,0.429933,0.50293,0.845338 +L 0.50293,0.845338,0.295166,1.727967 +L 0.295166,1.727967,0.658691,2.97403 +L 0.658691,2.97403,1.281738,3.804704 +L 1.281738,3.804704,2.37207,4.635438 +L 2.37207,4.635438,3.721924,5.050767 +L 3.721924,5.050767,5.487061,5.466157 +L 5.487061,5.466157,6.421631,5.881501 +L 6.421631,5.881501,7.09668,6.71222 +L 7.09668,6.71222,7.304443,7.542893 +L 7.304443,7.542893,7.09668,8.373628 +L 7.09668,8.373628,5.954346,8.788957 +L 5.954346,8.788957,4.292969,8.788957 + +[9] 22 +L 6.196045,5.881501,5.417236,4.635438 +L 5.417236,4.635438,4.378906,3.804704 +L 4.378906,3.804704,3.029053,3.389375 +L 3.029053,3.389375,2.613525,3.389375 +L 2.613525,3.389375,1.471436,3.804704 +L 1.471436,3.804704,0.848389,4.635438 +L 0.848389,4.635438,0.744629,5.881501 +L 0.744629,5.881501,0.900391,6.29683 +L 0.900391,6.29683,1.627197,7.542893 +L 1.627197,7.542893,2.665527,8.373628 +L 2.665527,8.373628,4.067383,8.788957 +L 4.067383,8.788957,4.482666,8.788957 +L 4.482666,8.788957,5.572998,8.373628 +L 5.572998,8.373628,6.196045,7.542893 +L 6.196045,7.542893,6.196045,5.881501 +L 6.196045,5.881501,5.625,3.804704 +L 5.625,3.804704,4.638428,1.727967 +L 4.638428,1.727967,3.496338,0.429933 +L 3.496338,0.429933,2.094482,0.014604 +L 2.094482,0.014604,1.263672,0.014604 +L 1.263672,0.014604,0.121582,0.429933 +L 0.121582,0.429933,-0.03418,1.260667 + +[:] 8 +L 0.519043,0.41539,0,-0 +L 0,-0,0.311523,-0.415344 +L 0.311523,-0.415344,0.830566,-0 +L 0.830566,-0,0.519043,0.41539 +L 1.868896,5.399643,1.349854,4.984253 +L 1.349854,4.984253,1.609375,4.568909 +L 1.609375,4.568909,2.18042,4.984253 +L 2.18042,4.984253,1.868896,5.399643 + +[;] 11 +L 0.830811,-0,0.259521,-0.415344 +L 0.259521,-0.415344,0,-0 +L 0,-0,0.519287,0.41539 +L 0.519287,0.41539,0.830811,-0 +L 0.830811,-0,0.571045,-0.830673 +L 0.571045,-0.830673,-0.052002,-1.661407 +L -0.052002,-1.661407,-0.571045,-2.076736 +L 1.869141,5.399643,1.297852,4.984253 +L 1.297852,4.984253,1.609375,4.568909 +L 1.609375,4.568909,2.128662,4.984253 +L 2.128662,4.984253,1.869141,5.399643 + +[<] 2 +L 8.06543,7.476379,0.43335,3.73819 +L 0.43335,3.73819,6.092529,-0 + +[=] 2 +L 0.511963,2.544035,7.988281,2.544035 +L 1.186768,5.036161,8.66333,5.036161 + +[>] 2 +L 1.9729,7.476379,7.63208,3.73819 +L 7.63208,3.73819,0,-0 + +[?] 17 +L 0.972656,0.830732,0.453369,0.415327 +L 0.453369,0.415327,0.713013,-0.000002 +L 0.713013,-0.000002,1.28418,0.415327 +L 1.28418,0.415327,0.972656,0.830732 +L 0.038086,6.697615,0.141846,7.112959 +L 0.141846,7.112959,0.764893,7.943678 +L 0.764893,7.943678,1.28418,8.359022 +L 1.28418,8.359022,2.270508,8.774351 +L 2.270508,8.774351,3.932007,8.774351 +L 3.932007,8.774351,4.658936,8.359022 +L 4.658936,8.359022,4.918457,7.943678 +L 4.918457,7.943678,5.126099,7.112959 +L 5.126099,7.112959,4.918457,6.282225 +L 4.918457,6.282225,4.24353,5.451551 +L 4.24353,5.451551,3.724365,5.036161 +L 3.724365,5.036161,1.855225,4.205488 +L 1.855225,4.205488,1.491821,2.959425 + +[@] 39 +L 6.980957,6.697615,5.838745,2.544035 +L 5.838745,2.544035,6.150269,2.128706 +L 6.150269,2.128706,6.980957,2.128706 +L 6.980957,2.128706,8.019287,2.959425 +L 8.019287,2.959425,8.798096,4.205488 +L 8.798096,4.205488,9.005859,5.036161 +L 9.005859,5.036161,8.953857,6.282225 +L 8.953857,6.282225,8.746216,7.112959 +L 8.746216,7.112959,8.123169,7.943678 +L 8.123169,7.943678,7.39624,8.359022 +L 7.39624,8.359022,6.25415,8.774351 +L 6.25415,8.774351,5.008057,8.774351 +L 5.008057,8.774351,3.658203,8.359022 +L 3.658203,8.359022,2.723633,7.943678 +L 2.723633,7.943678,1.685059,7.112959 +L 1.685059,7.112959,1.010254,6.282225 +L 1.010254,6.282225,0.283447,5.036161 +L 0.023682,2.544035,0.231445,1.713362 +L 0.231445,1.713362,0.80249,0.830732 +L 0.80249,0.830732,1.529419,0.415327 +L 1.529419,0.415327,2.671631,-0.000002 +L 2.671631,-0.000002,3.917725,-0.000002 +L 3.917725,-0.000002,5.267578,0.415327 +L 5.267578,0.415327,6.25415,0.830732 +L 6.25415,0.830732,6.773193,1.246061 +L 6.617432,5.451551,6.409912,6.282225 +L 6.409912,6.282225,5.734863,6.697615 +L 5.734863,6.697615,4.48877,6.697615 +L 4.48877,6.697615,3.502441,6.282225 +L 3.502441,6.282225,2.983154,5.866896 +L 2.983154,5.866896,2.360107,5.036161 +L 2.360107,5.036161,1.996582,3.790098 +L 1.996582,3.790098,2.204346,2.959425 +L 2.204346,2.959425,2.515869,2.544035 +L 2.515869,2.544035,3.242676,2.128706 +L 3.242676,2.128706,4.48877,2.128706 +L 4.48877,2.128706,5.42334,2.544035 +L 5.42334,2.544035,6.046387,3.374769 +L 0.283447,5.036161,0.023682,2.544035 + +[A] 3 +L 2.024658,2.907471,6.178345,2.907471 +L 0,-0,5.65918,8.722443 +L 5.65918,8.722443,6.645508,-0 + +[B] 18 +L 4.984253,4.568924,6.126465,4.153534 +L 6.126465,4.153534,6.437988,3.73819 +L 6.437988,3.73819,6.59375,2.907471 +L 6.59375,2.907471,6.282227,1.661407 +L 6.282227,1.661407,5.65918,0.830734 +L 5.65918,0.830734,5.088013,0.415344 +L 5.088013,0.415344,3.738159,-0 +L 3.738159,-0,0,-0 +L 0,-0,2.336304,8.722443 +L 2.336304,8.722443,6.074463,8.722443 +L 6.074463,8.722443,7.216797,8.307114 +L 7.216797,8.307114,7.52832,7.891724 +L 7.52832,7.891724,7.735962,7.06105 +L 7.735962,7.06105,7.52832,6.230316 +L 7.52832,6.230316,6.853271,5.399597 +L 6.853271,5.399597,6.334106,4.984253 +L 6.334106,4.984253,4.984253,4.568924 +L 4.984253,4.568924,1.246094,4.568924 + +[C] 17 +L 7.270752,6.645658,7.06311,7.476377 +L 7.06311,7.476377,6.440063,8.307112 +L 6.440063,8.307112,5.713135,8.722441 +L 5.713135,8.722441,4.051758,8.722441 +L 4.051758,8.722441,3.117188,8.307112 +L 3.117188,8.307112,2.078857,7.476377 +L 2.078857,7.476377,1.455811,6.645658 +L 1.455811,6.645658,0.677002,5.399595 +L 0.677002,5.399595,0.105957,3.322859 +L 0.105957,3.322859,0.209717,2.076796 +L 0.209717,2.076796,0.417358,1.246061 +L 0.417358,1.246061,0.988525,0.415342 +L 0.988525,0.415342,1.715332,-0.000002 +L 1.715332,-0.000002,3.376831,-0.000002 +L 3.376831,-0.000002,4.363281,0.415342 +L 4.363281,0.415342,5.401611,1.246061 +L 5.401611,1.246061,6.024658,2.076796 + +[D] 12 +L 0,-0,2.336304,8.722443 +L 2.336304,8.722443,5.243896,8.722443 +L 5.243896,8.722443,6.385986,8.307114 +L 6.385986,8.307114,7.009033,7.476379 +L 7.009033,7.476379,7.164795,6.64566 +L 7.164795,6.64566,7.268555,5.399597 +L 7.268555,5.399597,6.69751,3.322861 +L 6.69751,3.322861,5.970703,2.076797 +L 5.970703,2.076797,5.295654,1.246063 +L 5.295654,1.246063,4.257324,0.415344 +L 4.257324,0.415344,2.907471,-0 +L 2.907471,-0,0,-0 + +[E] 4 +L 0,-0,5.399536,-0 +L 1.245972,4.568924,4.568848,4.568924 +L 0,-0,2.336304,8.722443 +L 2.336304,8.722443,7.735962,8.722443 + +[F] 3 +L 1.245972,4.568924,4.568848,4.568924 +L 0,-0,2.336304,8.722443 +L 2.336304,8.722443,7.787842,8.722443 + +[G] 19 +L 7.879272,6.645658,7.723389,7.476377 +L 7.723389,7.476377,7.100464,8.307112 +L 7.100464,8.307112,6.373535,8.722441 +L 6.373535,8.722441,4.712158,8.722441 +L 4.712158,8.722441,3.777588,8.307112 +L 3.777588,8.307112,2.687256,7.476377 +L 2.687256,7.476377,2.064209,6.645658 +L 2.064209,6.645658,1.2854,5.399595 +L 1.2854,5.399595,0.766357,3.322859 +L 0.766357,3.322859,0.818237,2.076796 +L 0.818237,2.076796,1.025879,1.246061 +L 1.025879,1.246061,1.648926,0.415342 +L 1.648926,0.415342,2.375732,-0.000002 +L 2.375732,-0.000002,4.037109,-0.000002 +L 4.037109,-0.000002,4.97168,0.415342 +L 4.97168,0.415342,6.010132,1.246061 +L 6.010132,1.246061,6.685059,2.076796 +L 6.685059,2.076796,6.996582,3.322859 +L 6.996582,3.322859,4.9198,3.322859 + +[H] 3 +L 1.245972,4.568924,7.061035,4.568924 +L 8.151367,8.722443,5.814941,-0 +L 2.336304,8.722443,0,-0 + +[I] 1 +L 2.986694,8.722441,0.650269,-0.000002 + +[J] 9 +L 6.870361,8.722441,5.053223,2.076796 +L 5.053223,2.076796,4.326294,0.830732 +L 4.326294,0.830732,3.807129,0.415342 +L 3.807129,0.415342,2.872559,-0.000002 +L 2.872559,-0.000002,2.04187,-0.000002 +L 2.04187,-0.000002,1.314941,0.415342 +L 1.314941,0.415342,1.003418,0.830732 +L 1.003418,0.830732,0.899658,2.076796 +L 0.899658,2.076796,1.107422,2.907469 + +[K] 3 +L 8.151367,8.722443,0.778809,2.907471 +L 3.426514,4.984253,5.814941,-0 +L 2.336426,8.722443,0,-0 + +[L] 2 +L 2.336426,8.722443,0,-0 +L 0,-0,5.036255,-0 + +[M] 4 +L 0,-0,2.336426,8.722443 +L 2.336426,8.722443,3.322876,-0 +L 3.322876,-0,8.982056,8.722443 +L 8.982056,8.722443,6.645752,-0 + +[N] 3 +L 0,-0,2.388306,8.722443 +L 2.388306,8.722443,5.866943,-0 +L 5.866943,-0,8.203247,8.722443 + +[O] 20 +L 4.38623,8.722441,3.45166,8.307112 +L 3.45166,8.307112,2.41333,7.476377 +L 2.41333,7.476377,1.738403,6.645658 +L 1.738403,6.645658,1.011475,5.399595 +L 1.011475,5.399595,0.44043,3.322859 +L 0.44043,3.322859,0.544312,2.076796 +L 0.544312,2.076796,0.751953,1.246061 +L 0.751953,1.246061,1.322998,0.415342 +L 1.322998,0.415342,2.049927,-0.000002 +L 2.049927,-0.000002,3.711304,-0.000002 +L 3.711304,-0.000002,4.645874,0.415342 +L 4.645874,0.415342,5.736206,1.246061 +L 5.736206,1.246061,6.359253,2.076796 +L 6.359253,2.076796,7.137939,3.322859 +L 7.137939,3.322859,7.657227,5.399595 +L 7.657227,5.399595,7.605347,6.645658 +L 7.605347,6.645658,7.397583,7.476377 +L 7.397583,7.476377,6.774658,8.307112 +L 6.774658,8.307112,6.047729,8.722441 +L 6.047729,8.722441,4.38623,8.722441 + +[P] 10 +L 0,-0,2.336426,8.722443 +L 2.336426,8.722443,6.074463,8.722443 +L 6.074463,8.722443,7.216797,8.307114 +L 7.216797,8.307114,7.52832,7.891724 +L 7.52832,7.891724,7.684082,7.06105 +L 7.684082,7.06105,7.372559,5.814987 +L 7.372559,5.814987,6.749512,4.984253 +L 6.749512,4.984253,6.178467,4.568924 +L 6.178467,4.568924,4.828369,4.153534 +L 4.828369,4.153534,1.090332,4.153534 + +[Q] 21 +L 3.304321,1.661406,5.12146,-0.830721 +L 3.927368,8.722441,2.992798,8.307112 +L 2.992798,8.307112,1.954346,7.476377 +L 1.954346,7.476377,1.279419,6.645658 +L 1.279419,6.645658,0.552612,5.399595 +L 0.552612,5.399595,-0.018555,3.322859 +L -0.018555,3.322859,0.085327,2.076796 +L 0.085327,2.076796,0.241089,1.246061 +L 0.241089,1.246061,0.864136,0.415342 +L 0.864136,0.415342,1.590942,-0.000002 +L 1.590942,-0.000002,3.252441,-0.000002 +L 3.252441,-0.000002,4.187012,0.415342 +L 4.187012,0.415342,5.277222,1.246061 +L 5.277222,1.246061,5.900269,2.076796 +L 5.900269,2.076796,6.627197,3.322859 +L 6.627197,3.322859,7.198242,5.399595 +L 7.198242,5.399595,7.146362,6.645658 +L 7.146362,6.645658,6.938721,7.476377 +L 6.938721,7.476377,6.315674,8.307112 +L 6.315674,8.307112,5.588745,8.722441 +L 5.588745,8.722441,3.927368,8.722441 + +[R] 11 +L 0,-0,2.336304,8.722443 +L 2.336304,8.722443,6.126465,8.722443 +L 6.126465,8.722443,7.268677,8.307114 +L 7.268677,8.307114,7.52832,7.891724 +L 7.52832,7.891724,7.735962,7.061051 +L 7.735962,7.061051,7.52832,6.230317 +L 7.52832,6.230317,6.905273,5.399598 +L 6.905273,5.399598,6.334106,4.984253 +L 6.334106,4.984253,4.984253,4.568924 +L 4.984253,4.568924,1.246094,4.568924 +L 4.153564,4.568924,5.866821,-0 + +[S] 19 +L 8.11377,7.476377,7.542603,8.307112 +L 7.542603,8.307112,6.400391,8.722441 +L 6.400391,8.722441,4.739014,8.722441 +L 4.739014,8.722441,3.337158,8.307112 +L 3.337158,8.307112,2.298706,7.476377 +L 2.298706,7.476377,2.091064,6.645658 +L 2.091064,6.645658,2.246826,5.814985 +L 2.246826,5.814985,2.55835,5.399595 +L 2.55835,5.399595,3.285156,4.984251 +L 3.285156,4.984251,5.569702,4.153532 +L 5.569702,4.153532,6.296509,3.738188 +L 6.296509,3.738188,6.608032,3.322859 +L 6.608032,3.322859,6.763794,2.492125 +L 6.763794,2.492125,6.452271,1.246061 +L 6.452271,1.246061,5.413818,0.415342 +L 5.413818,0.415342,4.012085,-0.000002 +L 4.012085,-0.000002,2.350586,-0.000002 +L 2.350586,-0.000002,1.208496,0.415342 +L 1.208496,0.415342,0.637329,1.246061 + +[T] 2 +L 0.428833,8.722441,6.243774,8.722441 +L 3.336304,8.722441,1,-0.000002 + +[U] 9 +L 1.848877,8.722441,0.135498,2.492125 +L 0.135498,2.492125,0.23938,1.246061 +L 0.23938,1.246061,0.862427,0.415342 +L 0.862427,0.415342,2.004639,-0.000002 +L 2.004639,-0.000002,2.835327,-0.000002 +L 2.835327,-0.000002,4.185303,0.415342 +L 4.185303,0.415342,5.223633,1.246061 +L 5.223633,1.246061,6.002441,2.492125 +L 6.002441,2.492125,7.663818,8.722441 + +[V] 2 +L 0.503296,8.722441,1.489746,-0.000002 +L 1.489746,-0.000002,7.148926,8.722441 + +[W] 4 +L 0.259521,8.722443,0,-0 +L 0,-0,4.465088,8.722443 +L 4.465088,8.722443,4.205444,-0 +L 4.205444,-0,8.618652,8.722443 + +[X] 2 +L 8.151367,8.722443,0,-0 +L 2.336426,8.722443,5.814941,-0 + +[Y] 3 +L 6.720215,8.722441,2.307129,4.568922 +L 0.074463,8.722441,2.307129,4.568922 +L 2.307129,4.568922,1.061035,-0.000002 + +[Z] 3 +L 0,-0,5.866943,-0 +L 0,-0,8.203125,8.722443 +L 8.203125,8.722443,2.336426,8.722443 + +[[] 3 +L 0.593994,-1.907457,3.501465,-1.907457 +L 0.593994,-1.907457,4.176514,11.435804 +L 4.176514,11.435804,7.083984,11.435804 + +[\] 1 +L 0.427246,11.435804,4.321045,-1.907457 + +[]] 3 +L 2.907471,-2,6.48999,11.343262 +L 6.48999,11.343262,3.58252,11.343262 +L 0,-2,2.907471,-2 + +[^] 2 +L -0.000122,9,3.893799,11.076782 +L 3.893799,11.076782,6.645508,9 + +[_] 1 +L 0,-0,8.359131,-0 + +[`] 5 +L 0.999878,10.999999,-0.000122,10.999999 +L -0.000122,10.999999,0.499878,9.999999 +L 0.499878,9.999999,1.499878,8.999999 +L 1.499878,8.999999,0.999878,9.999999 +L 0.999878,9.999999,0.999878,10.999999 + +[a] 14 +L 5.915527,4.568846,5.29248,5.39958 +L 5.29248,5.39958,4.565552,5.814909 +L 4.565552,5.814909,3.31958,5.814909 +L 3.31958,5.814909,2.38501,5.39958 +L 2.38501,5.39958,1.346558,4.568846 +L 1.346558,4.568846,0.567749,3.322783 +L 0.567749,3.322783,0.360107,2.492125 +L 0.360107,2.492125,0.463867,1.246061 +L 0.463867,1.246061,1.035034,0.415327 +L 1.035034,0.415327,1.761963,-0.000002 +L 1.761963,-0.000002,3.008057,-0.000002 +L 3.008057,-0.000002,3.994385,0.415327 +L 3.994385,0.415327,5.032837,1.246061 +L 6.278809,5.814909,4.669434,-0.000002 + +[b] 14 +L 1.245972,4.568848,2.284302,5.399582 +L 2.284302,5.399582,3.218872,5.814911 +L 3.218872,5.814911,4.464966,5.814911 +L 4.464966,5.814911,5.191772,5.399582 +L 5.191772,5.399582,5.814819,4.568848 +L 5.814819,4.568848,5.918579,3.322784 +L 5.918579,3.322784,5.659058,2.492126 +L 5.659058,2.492126,4.932251,1.246063 +L 4.932251,1.246063,3.841919,0.415329 +L 3.841919,0.415329,2.907349,-0 +L 2.907349,-0,1.661255,-0 +L 1.661255,-0,0.934448,0.415329 +L 0.934448,0.415329,0.363159,1.246063 +L 2.33606,8.722443,-0.000122,-0 + +[c] 13 +L 5.552124,4.568848,4.981079,5.399582 +L 4.981079,5.399582,4.254272,5.814911 +L 4.254272,5.814911,3.008179,5.814911 +L 3.008179,5.814911,2.021606,5.399582 +L 2.021606,5.399582,0.983276,4.568848 +L 0.983276,4.568848,0.25647,3.322784 +L 0.25647,3.322784,-0.003296,2.492126 +L -0.003296,2.492126,0.100708,1.246063 +L 0.100708,1.246063,0.723755,0.415329 +L 0.723755,0.415329,1.450562,-0 +L 1.450562,-0,2.696655,-0 +L 2.696655,-0,3.631226,0.415329 +L 3.631226,0.415329,4.669556,1.246063 + +[d] 14 +L 5.920166,4.568846,5.297119,5.39958 +L 5.297119,5.39958,4.570312,5.814909 +L 4.570312,5.814909,3.324219,5.814909 +L 3.324219,5.814909,2.389648,5.39958 +L 2.389648,5.39958,1.351318,4.568846 +L 1.351318,4.568846,0.57251,3.322783 +L 0.57251,3.322783,0.364746,2.492125 +L 0.364746,2.492125,0.416748,1.246061 +L 0.416748,1.246061,1.039795,0.415327 +L 1.039795,0.415327,1.766602,-0.000002 +L 1.766602,-0.000002,3.012695,-0.000002 +L 3.012695,-0.000002,3.947266,0.415327 +L 3.947266,0.415327,5.037598,1.246061 +L 7.010498,8.722441,4.674072,-0.000002 + +[e] 16 +L 0.224487,3.322783,5.20874,3.322783 +L 5.20874,3.322783,5.468384,4.153517 +L 5.468384,4.153517,5.26062,4.984251 +L 5.26062,4.984251,4.949219,5.39958 +L 4.949219,5.39958,4.22229,5.814909 +L 4.22229,5.814909,2.976196,5.814909 +L 2.976196,5.814909,2.041748,5.39958 +L 2.041748,5.39958,0.951416,4.568846 +L 0.951416,4.568846,0.224487,3.322783 +L 0.224487,3.322783,0.016846,2.492125 +L 0.016846,2.492125,0.068726,1.246061 +L 0.068726,1.246061,0.691772,0.415327 +L 0.691772,0.415327,1.418701,-0.000002 +L 1.418701,-0.000002,2.664673,-0.000002 +L 2.664673,-0.000002,3.599243,0.415327 +L 3.599243,0.415327,4.637695,1.246061 + +[f] 5 +L 0.311401,5.814911,3.270874,5.814911 +L 4.464966,8.722443,3.634155,8.722443 +L 3.634155,8.722443,2.647827,8.307037 +L 2.647827,8.307037,1.920776,7.060974 +L 1.920776,7.060974,-0.000122,-0 + +[g] 19 +L 5.848145,4.568846,5.225098,5.39958 +L 5.225098,5.39958,4.498291,5.814909 +L 4.498291,5.814909,3.252197,5.814909 +L 3.252197,5.814909,2.317627,5.39958 +L 2.317627,5.39958,1.227295,4.568846 +L 1.227295,4.568846,0.500488,3.322783 +L 0.500488,3.322783,0.292725,2.492125 +L 0.292725,2.492125,0.344727,1.246061 +L 0.344727,1.246061,0.967773,0.415327 +L 0.967773,0.415327,1.69458,-0.000002 +L 1.69458,-0.000002,2.940674,-0.000002 +L 2.940674,-0.000002,3.875244,0.415327 +L 3.875244,0.415327,4.913574,1.246061 +L 6.159668,5.814909,4.394287,-0.830736 +L 4.394287,-0.830736,3.615479,-2.12871 +L 3.615479,-2.12871,3.096436,-2.5441 +L 3.096436,-2.5441,2.161865,-2.959444 +L 2.161865,-2.959444,0.915771,-2.959444 +L 0.915771,-2.959444,0.188965,-2.5441 + +[h] 7 +L 1.142212,4.153519,2.699829,5.399582 +L 2.699829,5.399582,3.634399,5.814911 +L 3.634399,5.814911,4.880249,5.814911 +L 4.880249,5.814911,5.6073,5.399582 +L 5.6073,5.399582,5.71106,4.153519 +L 5.71106,4.153519,4.568726,-0 +L 2.336304,8.722443,-0.000122,-0 + +[i] 5 +L 2.560547,5.39958,1.106812,-0.000002 +L 2.924072,8.307035,3.235596,7.891706 +L 3.235596,7.891706,3.754761,8.307035 +L 3.754761,8.307035,3.495117,8.722441 +L 3.495117,8.722441,2.924072,8.307035 + +[j] 8 +L 4.101074,5.39958,2.335938,-1.298037 +L 2.335938,-1.298037,1.608887,-2.5441 +L 1.608887,-2.5441,0.622559,-2.959444 +L 0.622559,-2.959444,-0.208252,-2.959444 +L 4.4646,8.307035,4.776123,7.891706 +L 4.776123,7.891706,5.295166,8.307035 +L 5.295166,8.307035,5.035645,8.722441 +L 5.035645,8.722441,4.4646,8.307035 + +[k] 3 +L 5.710815,5.814911,0.415161,1.661392 +L 2.33606,8.722443,-0.000122,-0 +L 2.543823,3.322784,4.568726,-0 + +[l] 1 +L 3.336304,8.722443,0.999878,-0 + +[m] 13 +L 1.557251,5.814911,-0.000122,-0 +L 4.910889,4.153519,3.768799,-0 +L 1.089966,4.153519,2.299927,5.4 +L 2.299927,5.4,2.999878,5.8 +L 2.999878,5.8,3.999878,5.8 +L 3.999878,5.8,4.599976,5.4 +L 4.599976,5.4,4.910889,4.153519 +L 4.910889,4.153519,6.12085,5.4 +L 6.12085,5.4,6.820801,5.8 +L 6.820801,5.8,7.820801,5.8 +L 7.820801,5.8,8.420898,5.4 +L 8.420898,5.4,8.731812,4.153519 +L 8.731812,4.153519,7.589722,-0 + +[n] 7 +L 1.09021,4.153519,2.699585,5.399582 +L 2.699585,5.399582,3.634155,5.814911 +L 3.634155,5.814911,4.880249,5.814911 +L 4.880249,5.814911,5.607056,5.399582 +L 5.607056,5.399582,5.659058,4.153519 +L 5.659058,4.153519,4.568726,-0 +L 1.557495,5.814911,-0.000122,-0 + +[o] 16 +L 3.700684,5.814909,2.766113,5.39958 +L 2.766113,5.39958,1.675781,4.568846 +L 1.675781,4.568846,0.948853,3.322783 +L 0.948853,3.322783,0.689331,2.492125 +L 0.689331,2.492125,0.793091,1.246061 +L 0.793091,1.246061,1.416138,0.415327 +L 1.416138,0.415327,2.143066,-0.000002 +L 2.143066,-0.000002,3.38916,-0.000002 +L 3.38916,-0.000002,4.32373,0.415327 +L 4.32373,0.415327,5.362061,1.246061 +L 5.362061,1.246061,6.140869,2.492125 +L 6.140869,2.492125,6.348511,3.322783 +L 6.348511,3.322783,6.244629,4.568846 +L 6.244629,4.568846,5.673584,5.39958 +L 5.673584,5.39958,4.946655,5.814909 +L 4.946655,5.814909,3.700684,5.814909 + +[p] 14 +L 2.619385,4.568846,3.657837,5.39958 +L 3.657837,5.39958,4.592285,5.814909 +L 4.592285,5.814909,5.838379,5.814909 +L 5.838379,5.814909,6.565186,5.39958 +L 6.565186,5.39958,7.188232,4.568846 +L 7.188232,4.568846,7.240234,3.322783 +L 7.240234,3.322783,7.032593,2.492125 +L 7.032593,2.492125,6.305664,1.246061 +L 6.305664,1.246061,5.215332,0.415327 +L 5.215332,0.415327,4.280762,-0.000002 +L 4.280762,-0.000002,3.03479,-0.000002 +L 3.03479,-0.000002,2.307861,0.415327 +L 2.307861,0.415327,1.684814,1.246061 +L 2.930908,5.814909,0.594482,-2.959444 + +[q] 14 +L 6.390747,4.568846,5.7677,5.39958 +L 5.7677,5.39958,5.040894,5.814909 +L 5.040894,5.814909,3.7948,5.814909 +L 3.7948,5.814909,2.860229,5.39958 +L 2.860229,5.39958,1.821899,4.568846 +L 1.821899,4.568846,1.043091,3.322783 +L 1.043091,3.322783,0.835449,2.492125 +L 0.835449,2.492125,0.887329,1.246061 +L 0.887329,1.246061,1.510376,0.415327 +L 1.510376,0.415327,2.237183,-0.000002 +L 2.237183,-0.000002,3.483276,-0.000002 +L 3.483276,-0.000002,4.417847,0.415327 +L 4.417847,0.415327,5.508179,1.246061 +L 6.702271,5.814909,4.365967,-2.959444 + +[r] 5 +L 0.882568,3.322784,1.661255,4.568848 +L 1.661255,4.568848,2.699707,5.399582 +L 2.699707,5.399582,3.634277,5.814911 +L 3.634277,5.814911,4.880249,5.814911 +L 1.557495,5.814911,-0.000122,-0 + +[s] 16 +L 5.391846,4.568846,5.236084,5.39958 +L 5.236084,5.39958,4.093994,5.814909 +L 4.093994,5.814909,2.847778,5.814909 +L 2.847778,5.814909,1.497803,5.39958 +L 1.497803,5.39958,0.822876,4.568846 +L 0.822876,4.568846,1.03064,3.738188 +L 1.03064,3.738188,1.757446,3.322783 +L 1.757446,3.322783,3.730469,2.907454 +L 3.730469,2.907454,4.457275,2.492125 +L 4.457275,2.492125,4.613037,1.66139 +L 4.613037,1.66139,4.509277,1.246061 +L 4.509277,1.246061,3.88623,0.415327 +L 3.88623,0.415327,2.536255,-0.000002 +L 2.536255,-0.000002,1.290283,-0.000002 +L 1.290283,-0.000002,0.147949,0.415327 +L 0.147949,0.415327,-0.059692,1.246061 + +[t] 5 +L 0.312012,5.814909,3.219482,5.814909 +L 2.336914,8.722441,0.415894,1.66139 +L 0.415894,1.66139,0.519775,0.415327 +L 0.519775,0.415327,1.246582,-0.000002 +L 1.246582,-0.000002,2.077271,-0.000002 + +[u] 7 +L 6.341553,5.814909,4.783936,-0.000002 +L 1.772705,5.814909,0.682373,1.66139 +L 0.682373,1.66139,0.734375,0.415327 +L 0.734375,0.415327,1.461182,-0.000002 +L 1.461182,-0.000002,2.707275,-0.000002 +L 2.707275,-0.000002,3.641846,0.415327 +L 3.641846,0.415327,5.251221,1.66139 + +[v] 2 +L 0.792358,5.814911,1.726929,-0 +L 1.726929,-0,5.776733,5.814911 + +[w] 4 +L 0.609741,5.814909,0.713623,-0.000002 +L 0.713623,-0.000002,3.984619,5.814909 +L 3.984619,5.814909,4.088379,-0.000002 +L 4.088379,-0.000002,7.307373,5.814909 + +[x] 3 +L 6.126343,5.814911,-0.000122,-0 +L 1.557495,5.814911,4.568726,-0 +L 9.959961,-2.959444,9.544556,-2.959444 + +[y] 4 +L 2.230835,-0.000002,0.932861,-1.713381 +L 0.932861,-1.713381,-0.105469,-2.5441 +L 1.296387,5.814909,2.230835,-0.000002 +L 2.230835,-0.000002,6.280518,5.814909 + +[z] 3 +L -0.000122,-0,6.126343,5.814911 +L 6.126343,5.814911,1.557495,5.814911 +L -0.000122,-0,4.568726,-0 + +[{] 20 +L 5.438232,11.435804,4.45166,11.020414 +L 4.45166,11.020414,3.932617,10.605085 +L 3.932617,10.605085,3.30957,9.774351 +L 3.30957,9.774351,3.101807,8.943678 +L 3.101807,8.943678,3.257568,8.112959 +L 3.257568,8.112959,3.569092,7.697615 +L 3.569092,7.697615,3.776611,6.866896 +L 3.776611,6.866896,3.569092,6.036161 +L 3.569092,6.036161,2.47876,5.205488 +L 2.47876,5.205488,1.544189,4.790098 +L 1.544189,4.790098,2.270996,4.374769 +L 2.270996,4.374769,2.894043,3.544035 +L 2.894043,3.544035,2.634521,2.713362 +L 2.634521,2.713362,2.011475,1.830732 +L 2.011475,1.830732,1.492188,1.415327 +L 1.492188,1.415327,0.869141,0.584669 +L 0.869141,0.584669,0.609619,-0.246065 +L 0.609619,-0.246065,0.817383,-1.076799 +L 0.817383,-1.076799,1.128906,-1.492128 +L 1.128906,-1.492128,1.855713,-1.907457 + +[|] 1 +L 0.999878,-1,1.999878,9.999999 + +[}] 20 +L 3.530151,11.343262,4.257202,10.927872 +L 4.257202,10.927872,4.568726,10.512543 +L 4.568726,10.512543,4.776245,9.681808 +L 4.776245,9.681808,4.568726,8.851135 +L 4.568726,8.851135,3.893677,8.020416 +L 3.893677,8.020416,3.374634,7.605072 +L 3.374634,7.605072,2.751587,6.774353 +L 2.751587,6.774353,2.491821,5.943619 +L 2.491821,5.943619,3.114868,5.112946 +L 3.114868,5.112946,3.841675,4.697556 +L 3.841675,4.697556,2.907349,4.282227 +L 2.907349,4.282227,1.868774,3.451492 +L 1.868774,3.451492,1.609253,2.620819 +L 1.609253,2.620819,1.817017,1.73819 +L 1.817017,1.73819,2.128296,1.322784 +L 2.128296,1.322784,2.33606,0.492126 +L 2.33606,0.492126,2.076538,-0.338608 +L 2.076538,-0.338608,1.453491,-1.169342 +L 1.453491,-1.169342,0.934204,-1.584671 +L 0.934204,-1.584671,-0.000122,-2 + +[~] 11 +L -0.000122,3,0.259644,3.830734 +L 0.259644,3.830734,0.98645,5.076797 +L 0.98645,5.076797,1.921021,5.492126 +L 1.921021,5.492126,2.751587,5.492126 +L 2.751587,5.492126,3.478394,5.076797 +L 3.478394,5.076797,4.828491,3.830734 +L 4.828491,3.830734,5.555298,3.41539 +L 5.555298,3.41539,6.386108,3.41539 +L 6.386108,3.41539,7.320679,3.830734 +L 7.320679,3.830734,7.943726,4.661453 +L 7.943726,4.661453,8.203247,5.492126 + +[] 21 +L 7.503296,11.266525,5.426636,9.553162 +L 5.426636,9.553162,4.180542,11.266525 +L 7.763062,7.476379,7.140015,8.307098 +L 7.140015,8.307098,5.997925,8.722443 +L 5.997925,8.722443,4.336304,8.722443 +L 4.336304,8.722443,2.986694,8.307098 +L 2.986694,8.307098,1.94812,7.476379 +L 1.94812,7.476379,1.688354,6.645691 +L 1.688354,6.645691,1.896362,5.814972 +L 1.896362,5.814972,2.207886,5.399628 +L 2.207886,5.399628,2.934448,4.984253 +L 2.934448,4.984253,5.219116,4.153564 +L 5.219116,4.153564,5.945679,3.73819 +L 5.945679,3.73819,6.257202,3.322845 +L 6.257202,3.322845,6.413208,2.492126 +L 6.413208,2.492126,6.101685,1.246063 +L 6.101685,1.246063,5.063354,0.415375 +L 5.063354,0.415375,3.661499,-0 +L 3.661499,-0,1.999878,-0 +L 1.999878,-0,0.857788,0.415375 +L 0.857788,0.415375,0.286499,1.246063 + +[] 3 +L 1.98645,1.48296,6.342773,9.21037 +A 4.164673,5.34666,2.89778,60.587872,240.58786 +A 4.164673,5.34666,2.89778,240.58786,60.587872 + +[] 10 +L 3.582153,4.20549,1.089966,4.20549 +L 1.089966,4.20549,1.19397,4.620834 +L 1.19397,4.620834,3.686157,4.620834 +L 5.710815,7.52829,5.555054,8.359024 +L 5.555054,8.359024,4.828247,8.774353 +L 4.828247,8.774353,3.893677,8.359024 +L 3.893677,8.359024,3.218872,7.52829 +L 3.218872,7.52829,1.557251,1.246063 +L 1.557251,1.246063,-0.000122,-0 +L -0.000122,-0,5.814819,-0 + +[] 46 +L 6.513916,8.457996,5.994629,8.042652 +L 5.994629,8.042652,6.306152,7.627308 +L 6.306152,7.627308,6.825439,8.042652 +L 6.825439,8.042652,6.929199,8.457996 +L 6.929199,8.457996,6.773438,9.288715 +L 6.773438,9.288715,6.461914,9.70406 +L 6.461914,9.70406,5.735107,10.119434 +L 5.735107,10.119434,4.904419,10.119434 +L 4.904419,10.119434,3.969849,9.70406 +L 3.969849,9.70406,3.398682,9.288715 +L 3.398682,9.288715,2.775635,8.457996 +L 2.775635,8.457996,2.671875,8.042652 +L 2.671875,8.042652,2.879639,7.211933 +L 2.879639,7.211933,3.191162,6.796589 +L 3.191162,6.796589,6.046631,5.135181 +L 6.046631,5.135181,6.358154,4.719807 +L 6.358154,4.719807,6.565918,3.889118 +L 6.565918,3.889118,6.461914,3.473743 +L 6.461914,3.473743,5.787109,2.643055 +L 5.787109,2.643055,5.267822,2.22768 +L 5.267822,2.22768,4.333252,1.812336 +L 4.333252,1.812336,3.917969,1.812336 +L 3.917969,1.812336,1.010498,3.473743 +L 0.854736,-0.264446,1.373901,0.150928 +L 1.373901,0.150928,1.062378,0.566273 +L 1.062378,0.566273,0.543213,0.150928 +L 0.543213,0.150928,0.439331,-0.264446 +L 0.439331,-0.264446,0.646973,-1.095135 +L 0.646973,-1.095135,0.958496,-1.510509 +L 0.958496,-1.510509,1.633545,-1.925854 +L 1.633545,-1.925854,2.464111,-1.925854 +L 2.464111,-1.925854,3.450684,-1.510509 +L 3.450684,-1.510509,3.969849,-1.095135 +L 3.969849,-1.095135,4.592896,-0.264446 +L 4.592896,-0.264446,4.696777,0.150928 +L 4.696777,0.150928,4.541016,0.981617 +L 4.541016,0.981617,4.229492,1.396992 +L 4.229492,1.396992,1.322021,3.058399 +L 1.322021,3.058399,1.010498,3.473743 +L 1.010498,3.473743,0.854736,4.304462 +L 0.854736,4.304462,0.958496,4.719807 +L 0.958496,4.719807,1.581543,5.550526 +L 1.581543,5.550526,2.10083,5.96587 +L 2.10083,5.96587,3.0354,6.381245 +L 3.0354,6.381245,3.450684,6.381245 +L 3.450684,6.381245,6.358154,4.719807 + +[] 5 +L -0.000122,-0,8.151245,8.722443 +L 8.151245,8.722443,2.336304,8.722443 +L -0.000122,-0,5.814819,-0 +L 7.580444,11.266525,5.451538,9.553162 +L 5.451538,9.553162,4.25769,11.266525 + +[] 2 +A 3.480347,8.193339,1.5,76.951317,253.048615 +A 3.480347,8.193339,1.5,253.048615,76.951317 + +[] 7 +L 1.771729,9.968506,1.200684,9.553101 +L 1.200684,9.553101,0.941162,9.968506 +L 0.941162,9.968506,1.460205,10.383835 +L 1.460205,10.383835,1.771729,9.968506 +L 1.771729,9.968506,1.512207,9.137772 +L 1.512207,9.137772,0.88916,8.307037 +L 0.88916,8.307037,0.370117,7.891708 + +[] 18 +L 6.153687,4.568909,5.997925,5.399628 +L 5.997925,5.399628,4.855835,5.814972 +L 4.855835,5.814972,3.609741,5.814972 +L 3.609741,5.814972,2.207886,5.399628 +L 2.207886,5.399628,1.584839,4.568909 +L 1.584839,4.568909,1.792358,3.73819 +L 1.792358,3.73819,2.519409,3.322845 +L 2.519409,3.322845,4.492065,2.907501 +L 4.492065,2.907501,5.167358,2.492126 +L 5.167358,2.492126,5.374878,1.661438 +L 5.374878,1.661438,5.270874,1.246063 +L 5.270874,1.246063,4.647827,0.415375 +L 4.647827,0.415375,3.298218,-0 +L 3.298218,-0,1.999878,-0 +L 1.999878,-0,0.909546,0.415375 +L 0.909546,0.415375,0.702026,1.246063 +L 6.776733,8.307098,4.647827,6.645691 +L 4.647827,6.645691,3.401733,8.307098 + +[] 14 +L 5.399414,3.568909,5.503174,3.984253 +L 5.503174,3.984253,6.126221,4.814972 +L 6.126221,4.814972,7.060547,5.230316 +L 7.060547,5.230316,7.891602,5.230316 +L 7.891602,5.230316,8.618164,4.814972 +L 8.618164,4.814972,8.826172,3.984253 +L 8.826172,3.984253,8.722168,3.568909 +L 8.722168,3.568909,8.099121,2.73819 +L 8.099121,2.73819,4.257324,-0.584656 +L 4.257324,-0.584656,7.580078,-0.584656 +L -0.000244,-1,9.864258,11.045288 +L 1.920898,9.38385,2.907227,9.799225 +L 2.907227,9.799225,3.945801,10.629913 +L 3.945801,10.629913,2.388184,4.814972 + +[] 5 +L -0.000244,-0,6.126221,5.814972 +L 6.126221,5.814972,1.557373,5.814972 +L -0.000244,-0,4.568604,-0 +L 6.385986,8.307098,4.25708,6.645691 +L 4.25708,6.645691,3.063232,8.307098 + +[] 11 +L 7.268311,9.968506,7.579834,9.553177 +L 7.579834,9.553177,8.099121,9.968506 +L 8.099121,9.968506,7.787598,10.38385 +L 7.787598,10.38385,7.268311,9.968506 +L 3.945557,9.968506,4.25708,9.553177 +L 4.25708,9.553177,4.776123,9.968506 +L 4.776123,9.968506,4.464844,10.38385 +L 4.464844,10.38385,3.945557,9.968506 +L 2.024414,2.907471,6.177979,2.907471 +L -0.000244,-0,5.658936,8.722443 +L 5.658936,8.722443,6.645264,-0 + +[] 27 +L 5.163086,9.968504,5.474609,9.553175 +L 5.474609,9.553175,5.993652,9.345488 +L 5.993652,9.345488,6.616699,9.553175 +L 6.616699,9.553175,7.291504,10.383848 +L 3.345703,9.137785,3.96875,9.968504 +L 4.488281,8.722441,3.553711,8.307112 +L 3.553711,8.307112,2.463379,7.476377 +L 2.463379,7.476377,1.840332,6.645658 +L 1.840332,6.645658,1.061523,5.399595 +L 1.061523,5.399595,0.541992,3.322859 +L 0.541992,3.322859,0.594238,2.076796 +L 0.594238,2.076796,0.801758,1.246061 +L 0.801758,1.246061,1.424805,0.415342 +L 1.424805,0.415342,2.151855,-0.000002 +L 2.151855,-0.000002,3.812988,-0.000002 +L 3.812988,-0.000002,4.747559,0.415342 +L 4.747559,0.415342,5.786133,1.246061 +L 5.786133,1.246061,6.460938,2.076796 +L 6.460938,2.076796,7.187988,3.322859 +L 7.187988,3.322859,7.758789,5.399595 +L 7.758789,5.399595,7.655273,6.645658 +L 7.655273,6.645658,7.447266,7.476377 +L 7.447266,7.476377,6.876465,8.307112 +L 6.876465,8.307112,6.149414,8.722441 +L 6.149414,8.722441,4.488281,8.722441 +L 5.163086,9.968504,4.643555,10.228117 +L 4.643555,10.228117,3.96875,9.968504 + +[] 28 +L 6.493652,9.968504,6.805176,9.553175 +L 6.805176,9.553175,7.324219,9.968504 +L 7.324219,9.968504,7.064697,10.383848 +L 7.064697,10.383848,6.493652,9.968504 +L 3.170898,9.968504,3.482178,9.553175 +L 3.482178,9.553175,4.001465,9.968504 +L 4.001465,9.968504,3.689941,10.383848 +L 3.689941,10.383848,3.170898,9.968504 +L 4.105225,8.722441,3.170898,8.307112 +L 3.170898,8.307112,2.080566,7.476377 +L 2.080566,7.476377,1.45752,6.645658 +L 1.45752,6.645658,0.730469,5.399595 +L 0.730469,5.399595,0.159424,3.322859 +L 0.159424,3.322859,0.211426,2.076796 +L 0.211426,2.076796,0.418945,1.246061 +L 0.418945,1.246061,1.041992,0.415342 +L 1.041992,0.415342,1.769043,-0.000002 +L 1.769043,-0.000002,3.43042,-0.000002 +L 3.43042,-0.000002,4.36499,0.415342 +L 4.36499,0.415342,5.40332,1.246061 +L 5.40332,1.246061,6.078125,2.076796 +L 6.078125,2.076796,6.805176,3.322859 +L 6.805176,3.322859,7.376221,5.399595 +L 7.376221,5.399595,7.272461,6.645658 +L 7.272461,6.645658,7.116699,7.476377 +L 7.116699,7.476377,6.493652,8.307112 +L 6.493652,8.307112,5.766846,8.722441 +L 5.766846,8.722441,4.105225,8.722441 + +[] 17 +L 3.415527,9.968504,3.727051,9.553175 +L 3.727051,9.553175,4.246582,9.968504 +L 4.246582,9.968504,3.935059,10.383848 +L 3.935059,10.383848,3.415527,9.968504 +L 6.738281,9.968504,7.049805,9.553175 +L 7.049805,9.553175,7.569336,9.968504 +L 7.569336,9.968504,7.257812,10.383848 +L 7.257812,10.383848,6.738281,9.968504 +L 2.22168,8.722441,0.560059,2.492125 +L 0.560059,2.492125,0.611816,1.246061 +L 0.611816,1.246061,1.234863,0.415342 +L 1.234863,0.415342,2.377441,-0.000002 +L 2.377441,-0.000002,3.208008,-0.000002 +L 3.208008,-0.000002,4.558105,0.415342 +L 4.558105,0.415342,5.647949,1.246061 +L 5.647949,1.246061,6.375,2.492125 +L 6.375,2.492125,8.036621,8.722441 + +[] 22 +L 6.112305,4.568846,5.541504,5.39958 +L 5.541504,5.39958,4.814453,5.814909 +L 4.814453,5.814909,3.568359,5.814909 +L 3.568359,5.814909,2.633789,5.39958 +L 2.633789,5.39958,1.543457,4.568846 +L 1.543457,4.568846,0.816895,3.322783 +L 0.816895,3.322783,0.557129,2.492125 +L 0.557129,2.492125,0.661133,1.246061 +L 0.661133,1.246061,1.28418,0.415327 +L 1.28418,0.415327,2.010742,-0.000002 +L 2.010742,-0.000002,3.256836,-0.000002 +L 3.256836,-0.000002,4.191406,0.415327 +L 4.191406,0.415327,5.22998,1.246061 +L 6.476074,5.814909,4.918457,-0.000002 +L 6.320312,8.307035,6.631836,7.891706 +L 6.631836,7.891706,7.150879,8.307035 +L 7.150879,8.307035,6.839355,8.722441 +L 6.839355,8.722441,6.320312,8.307035 +L 2.582031,8.307035,2.841797,7.891706 +L 2.841797,7.891706,3.412598,8.307035 +L 3.412598,8.307035,3.101074,8.722441 +L 3.101074,8.722441,2.582031,8.307035 + +[] 21 +L 3.427734,5.814909,2.493164,5.39958 +L 2.493164,5.39958,1.402832,4.568846 +L 1.402832,4.568846,0.675781,3.322783 +L 0.675781,3.322783,0.468262,2.492125 +L 0.468262,2.492125,0.52002,1.246061 +L 0.52002,1.246061,1.143066,0.415327 +L 1.143066,0.415327,1.870117,-0.000002 +L 1.870117,-0.000002,3.116211,-0.000002 +L 3.116211,-0.000002,4.050781,0.415327 +L 4.050781,0.415327,5.141113,1.246061 +L 5.141113,1.246061,5.867676,2.492125 +L 5.867676,2.492125,6.075684,3.322783 +L 6.075684,3.322783,6.023438,4.568846 +L 6.023438,4.568846,5.400391,5.39958 +L 5.400391,5.39958,4.673828,5.814909 +L 4.673828,5.814909,3.427734,5.814909 +L 2.233398,7.476377,3.791016,8.722441 +L 3.791016,8.722441,4.206543,8.722441 +L 4.206543,8.722441,5.141113,7.476377 +L 5.141113,7.476377,5.556152,7.476377 +L 5.556152,7.476377,7.11377,8.722441 + +[] 24 +L 3.625,5.814909,2.69043,5.39958 +L 2.69043,5.39958,1.651855,4.568846 +L 1.651855,4.568846,0.873047,3.322783 +L 0.873047,3.322783,0.665527,2.492125 +L 0.665527,2.492125,0.769043,1.246061 +L 0.769043,1.246061,1.340332,0.415327 +L 1.340332,0.415327,2.067383,-0.000002 +L 2.067383,-0.000002,3.313477,-0.000002 +L 3.313477,-0.000002,4.299805,0.415327 +L 4.299805,0.415327,5.338379,1.246061 +L 5.338379,1.246061,6.064941,2.492125 +L 6.064941,2.492125,6.324707,3.322783 +L 6.324707,3.322783,6.220703,4.568846 +L 6.220703,4.568846,5.597656,5.39958 +L 5.597656,5.39958,4.871094,5.814909 +L 4.871094,5.814909,3.625,5.814909 +L 2.638184,8.307035,2.949707,7.891706 +L 2.949707,7.891706,3.469238,8.307035 +L 3.469238,8.307035,3.157715,8.722441 +L 3.157715,8.722441,2.638184,8.307035 +L 6.376465,8.307035,6.687988,7.891706 +L 6.687988,7.891706,7.207031,8.307035 +L 7.207031,8.307035,6.947754,8.722441 +L 6.947754,8.722441,6.376465,8.307035 + +[] 3 +L 1.986572,1.48296,6.342773,9.21037 +A 4.164551,5.34666,2.89778,60.587872,240.58786 +A 4.164551,5.34666,2.89778,240.58786,60.587872 + +[] 2 +L 1.294189,5.82963,4.258789,1.96593 +L 5.294189,5.82963,0.258789,1.96593 + +[] 15 +L 6.443359,5.814909,4.885742,-0.000002 +L 1.874512,5.814909,0.732422,1.66139 +L 0.732422,1.66139,0.835938,0.415327 +L 0.835938,0.415327,1.510986,-0.000002 +L 1.510986,-0.000002,2.809082,-0.000002 +L 2.809082,-0.000002,3.743652,0.415327 +L 3.743652,0.415327,5.30127,1.66139 +L 6.287598,8.307035,6.547363,7.891706 +L 6.547363,7.891706,7.118164,8.307035 +L 7.118164,8.307035,6.806641,8.722441 +L 6.806641,8.722441,6.287598,8.307035 +L 2.497559,8.307035,2.809082,7.891706 +L 2.809082,7.891706,3.328125,8.307035 +L 3.328125,8.307035,3.068604,8.722441 +L 3.068604,8.722441,2.497559,8.307035 + +#EOF diff --git a/pycam/share/fonts/romans2.cxf b/pycam/share/fonts/romans2.cxf new file mode 100644 index 00000000..2a74a7ab --- /dev/null +++ b/pycam/share/fonts/romans2.cxf @@ -0,0 +1,1958 @@ +# Format: QCad II Font +# Creator: Adam Radlowski's "dodajf" program - GRASS font translator +# Version: 1.0.0 +# Name: Roman Simplex +# LetterSpacing: 3.0 +# WordSpacing: 6.75 +# LineSpacingFactor: 1.0 +# Author: Hershey fonts +# Author: Adam Radlowski (Polish) + +[!] 5 +L 0.363636,7.636364,0.363636,2.545455 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +["] 2 +L 0,7.636364,0,5.090909 +L 2.909091,7.636364,2.909091,5.090909 + +[#] 4 +L 2.909091,9.090909,0.363636,-2.545455 +L 5.090909,9.090909,2.545455,-2.545455 +L 0.363636,4.363636,5.454545,4.363636 +L 0,2.181818,5.090909,2.181818 + +[$] 21 +L 1.818182,9.090909,1.818182,-1.454545 +L 3.272727,9.090909,3.272727,-1.454545 +L 5.090909,6.545455,4.363636,7.272727 +L 4.363636,7.272727,3.272727,7.636364 +L 3.272727,7.636364,1.818182,7.636364 +L 1.818182,7.636364,0.727273,7.272727 +L 0.727273,7.272727,0,6.545455 +L 0,6.545455,0,5.818182 +L 0,5.818182,0.363636,5.090909 +L 0.363636,5.090909,0.727273,4.727273 +L 0.727273,4.727273,1.454545,4.363636 +L 1.454545,4.363636,3.636364,3.636364 +L 3.636364,3.636364,4.363636,3.272727 +L 4.363636,3.272727,4.727273,2.909091 +L 4.727273,2.909091,5.090909,2.181818 +L 5.090909,2.181818,5.090909,1.090909 +L 5.090909,1.090909,4.363636,0.363636 +L 4.363636,0.363636,3.272727,0 +L 3.272727,0,1.818182,0 +L 1.818182,0,0.727273,0.363636 +L 0.727273,0.363636,0,1.090909 + +[%] 26 +L 6.545455,7.636364,0,0 +L 1.818182,7.636364,2.545455,6.909091 +L 2.545455,6.909091,2.545455,6.181818 +L 2.545455,6.181818,2.181818,5.454545 +L 2.181818,5.454545,1.454545,5.090909 +L 1.454545,5.090909,0.727273,5.090909 +L 0.727273,5.090909,0,5.818182 +L 0,5.818182,0,6.545455 +L 0,6.545455,0.363636,7.272727 +L 0.363636,7.272727,1.090909,7.636364 +L 1.090909,7.636364,1.818182,7.636364 +L 1.818182,7.636364,2.545455,7.272727 +L 2.545455,7.272727,3.636364,6.909091 +L 3.636364,6.909091,4.727273,6.909091 +L 4.727273,6.909091,5.818182,7.272727 +L 5.818182,7.272727,6.545455,7.636364 +L 5.090909,2.545455,4.363636,2.181818 +L 4.363636,2.181818,4,1.454545 +L 4,1.454545,4,0.727273 +L 4,0.727273,4.727273,0 +L 4.727273,0,5.454545,0 +L 5.454545,0,6.181818,0.363636 +L 6.181818,0.363636,6.545455,1.090909 +L 6.545455,1.090909,6.545455,1.818182 +L 6.545455,1.818182,5.818182,2.545455 +L 5.818182,2.545455,5.090909,2.545455 + +[&] 33 +L 7.272727,4.363636,7.272727,4.727273 +L 7.272727,4.727273,6.909091,5.090909 +L 6.909091,5.090909,6.545455,5.090909 +L 6.545455,5.090909,6.181818,4.727273 +L 6.181818,4.727273,5.818182,4 +L 5.818182,4,5.090909,2.181818 +L 5.090909,2.181818,4.363636,1.090909 +L 4.363636,1.090909,3.636364,0.363636 +L 3.636364,0.363636,2.909091,0 +L 2.909091,0,1.454545,0 +L 1.454545,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 +L 0.363636,0.727273,0,1.454545 +L 0,1.454545,0,2.181818 +L 0,2.181818,0.363636,2.909091 +L 0.363636,2.909091,0.727273,3.272727 +L 0.727273,3.272727,3.272727,4.727273 +L 3.272727,4.727273,3.636364,5.090909 +L 3.636364,5.090909,4,5.818182 +L 4,5.818182,4,6.545455 +L 4,6.545455,3.636364,7.272727 +L 3.636364,7.272727,2.909091,7.636364 +L 2.909091,7.636364,2.181818,7.272727 +L 2.181818,7.272727,1.818182,6.545455 +L 1.818182,6.545455,1.818182,5.818182 +L 1.818182,5.818182,2.181818,4.727273 +L 2.181818,4.727273,2.909091,3.636364 +L 2.909091,3.636364,4.727273,1.090909 +L 4.727273,1.090909,5.454545,0.363636 +L 5.454545,0.363636,6.181818,0 +L 6.181818,0,6.909091,0 +L 6.909091,0,7.272727,0.363636 +L 7.272727,0.363636,7.272727,0.727273 + +['] 6 +L 0.363636,6.909091,0,7.272727 +L 0,7.272727,0.363636,7.636364 +L 0.363636,7.636364,0.727273,7.272727 +L 0.727273,7.272727,0.727273,6.545455 +L 0.727273,6.545455,0.363636,5.818182 +L 0.363636,5.818182,0,5.454545 + +[(] 9 +L 2.545455,9.090909,1.818182,8.363636 +L 1.818182,8.363636,1.090909,7.272727 +L 1.090909,7.272727,0.363636,5.818182 +L 0.363636,5.818182,0,4 +L 0,4,0,2.545455 +L 0,2.545455,0.363636,0.727273 +L 0.363636,0.727273,1.090909,-0.727273 +L 1.090909,-0.727273,1.818182,-1.818182 +L 1.818182,-1.818182,2.545455,-2.545455 + +[)] 9 +L 0,9.090909,0.727273,8.363636 +L 0.727273,8.363636,1.454545,7.272727 +L 1.454545,7.272727,2.181818,5.818182 +L 2.181818,5.818182,2.545455,4 +L 2.545455,4,2.545455,2.545455 +L 2.545455,2.545455,2.181818,0.727273 +L 2.181818,0.727273,1.454545,-0.727273 +L 1.454545,-0.727273,0.727273,-1.818182 +L 0.727273,-1.818182,0,-2.545455 + +[*] 3 +L 1.818182,7.636364,1.818182,3.272727 +L 0,6.545455,3.636364,4.363636 +L 3.636364,6.545455,0,4.363636 + +[+] 2 +L 3.272727,6.545455,3.272727,0 +L 0,3.272727,6.545455,3.272727 + +[,] 7 +L 0.727273,0.363636,0.363636,0 +L 0.363636,0,0,0.363636 +L 0,0.363636,0.363636,0.727273 +L 0.363636,0.727273,0.727273,0.363636 +L 0.727273,0.363636,0.727273,-0.363636 +L 0.727273,-0.363636,0.363636,-1.090909 +L 0.363636,-1.090909,0,-1.454545 + +[-] 1 +L 0,3.272727,5.818182,3.272727 + +[.] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[/] 1 +L 2.181818,9.090909,0,-2.545455 + +[0] 16 +L 2.181818,7.636364,1.090909,7.272727 +L 1.090909,7.272727,0.363636,6.181818 +L 0.363636,6.181818,0,4.363636 +L 0,4.363636,0,3.272727 +L 0,3.272727,0.363636,1.454545 +L 0.363636,1.454545,1.090909,0.363636 +L 1.090909,0.363636,2.181818,0 +L 2.181818,0,2.909091,0 +L 2.909091,0,4,0.363636 +L 4,0.363636,4.727273,1.454545 +L 4.727273,1.454545,5.090909,3.272727 +L 5.090909,3.272727,5.090909,4.363636 +L 5.090909,4.363636,4.727273,6.181818 +L 4.727273,6.181818,4,7.272727 +L 4,7.272727,2.909091,7.636364 +L 2.909091,7.636364,2.181818,7.636364 + +[1] 3 +L 0,6.181818,0.727273,6.545455 +L 0.727273,6.545455,1.818182,7.636364 +L 1.818182,7.636364,1.818182,0 + +[2] 13 +L 0.363636,5.818182,0.363636,6.181818 +L 0.363636,6.181818,0.727273,6.909091 +L 0.727273,6.909091,1.090909,7.272727 +L 1.090909,7.272727,1.818182,7.636364 +L 1.818182,7.636364,3.272727,7.636364 +L 3.272727,7.636364,4,7.272727 +L 4,7.272727,4.363636,6.909091 +L 4.363636,6.909091,4.727273,6.181818 +L 4.727273,6.181818,4.727273,5.454545 +L 4.727273,5.454545,4.363636,4.727273 +L 4.363636,4.727273,3.636364,3.636364 +L 3.636364,3.636364,0,0 +L 0,0,5.090909,0 + +[3] 14 +L 0.727273,7.636364,4.727273,7.636364 +L 4.727273,7.636364,2.545455,4.727273 +L 2.545455,4.727273,3.636364,4.727273 +L 3.636364,4.727273,4.363636,4.363636 +L 4.363636,4.363636,4.727273,4 +L 4.727273,4,5.090909,2.909091 +L 5.090909,2.909091,5.090909,2.181818 +L 5.090909,2.181818,4.727273,1.090909 +L 4.727273,1.090909,4,0.363636 +L 4,0.363636,2.909091,0 +L 2.909091,0,1.818182,0 +L 1.818182,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 +L 0.363636,0.727273,0,1.454545 + +[4] 3 +L 3.636364,7.636364,0,2.545455 +L 0,2.545455,5.454545,2.545455 +L 3.636364,7.636364,3.636364,0 + +[5] 16 +L 4.363636,7.636364,0.727273,7.636364 +L 0.727273,7.636364,0.363636,4.363636 +L 0.363636,4.363636,0.727273,4.727273 +L 0.727273,4.727273,1.818182,5.090909 +L 1.818182,5.090909,2.909091,5.090909 +L 2.909091,5.090909,4,4.727273 +L 4,4.727273,4.727273,4 +L 4.727273,4,5.090909,2.909091 +L 5.090909,2.909091,5.090909,2.181818 +L 5.090909,2.181818,4.727273,1.090909 +L 4.727273,1.090909,4,0.363636 +L 4,0.363636,2.909091,0 +L 2.909091,0,1.818182,0 +L 1.818182,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 +L 0.363636,0.727273,0,1.454545 + +[6] 22 +L 4.363636,6.545455,4,7.272727 +L 4,7.272727,2.909091,7.636364 +L 2.909091,7.636364,2.181818,7.636364 +L 2.181818,7.636364,1.090909,7.272727 +L 1.090909,7.272727,0.363636,6.181818 +L 0.363636,6.181818,0,4.363636 +L 0,4.363636,0,2.545455 +L 0,2.545455,0.363636,1.090909 +L 0.363636,1.090909,1.090909,0.363636 +L 1.090909,0.363636,2.181818,0 +L 2.181818,0,2.545455,0 +L 2.545455,0,3.636364,0.363636 +L 3.636364,0.363636,4.363636,1.090909 +L 4.363636,1.090909,4.727273,2.181818 +L 4.727273,2.181818,4.727273,2.545455 +L 4.727273,2.545455,4.363636,3.636364 +L 4.363636,3.636364,3.636364,4.363636 +L 3.636364,4.363636,2.545455,4.727273 +L 2.545455,4.727273,2.181818,4.727273 +L 2.181818,4.727273,1.090909,4.363636 +L 1.090909,4.363636,0.363636,3.636364 +L 0.363636,3.636364,0,2.545455 + +[7] 2 +L 5.090909,7.636364,1.454545,0 +L 0,7.636364,5.090909,7.636364 + +[8] 28 +L 1.818182,7.636364,0.727273,7.272727 +L 0.727273,7.272727,0.363636,6.545455 +L 0.363636,6.545455,0.363636,5.818182 +L 0.363636,5.818182,0.727273,5.090909 +L 0.727273,5.090909,1.454545,4.727273 +L 1.454545,4.727273,2.909091,4.363636 +L 2.909091,4.363636,4,4 +L 4,4,4.727273,3.272727 +L 4.727273,3.272727,5.090909,2.545455 +L 5.090909,2.545455,5.090909,1.454545 +L 5.090909,1.454545,4.727273,0.727273 +L 4.727273,0.727273,4.363636,0.363636 +L 4.363636,0.363636,3.272727,0 +L 3.272727,0,1.818182,0 +L 1.818182,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 +L 0.363636,0.727273,0,1.454545 +L 0,1.454545,0,2.545455 +L 0,2.545455,0.363636,3.272727 +L 0.363636,3.272727,1.090909,4 +L 1.090909,4,2.181818,4.363636 +L 2.181818,4.363636,3.636364,4.727273 +L 3.636364,4.727273,4.363636,5.090909 +L 4.363636,5.090909,4.727273,5.818182 +L 4.727273,5.818182,4.727273,6.545455 +L 4.727273,6.545455,4.363636,7.272727 +L 4.363636,7.272727,3.272727,7.636364 +L 3.272727,7.636364,1.818182,7.636364 + +[9] 22 +L 4.727273,5.090909,4.363636,4 +L 4.363636,4,3.636364,3.272727 +L 3.636364,3.272727,2.545455,2.909091 +L 2.545455,2.909091,2.181818,2.909091 +L 2.181818,2.909091,1.090909,3.272727 +L 1.090909,3.272727,0.363636,4 +L 0.363636,4,0,5.090909 +L 0,5.090909,0,5.454545 +L 0,5.454545,0.363636,6.545455 +L 0.363636,6.545455,1.090909,7.272727 +L 1.090909,7.272727,2.181818,7.636364 +L 2.181818,7.636364,2.545455,7.636364 +L 2.545455,7.636364,3.636364,7.272727 +L 3.636364,7.272727,4.363636,6.545455 +L 4.363636,6.545455,4.727273,5.090909 +L 4.727273,5.090909,4.727273,3.272727 +L 4.727273,3.272727,4.363636,1.454545 +L 4.363636,1.454545,3.636364,0.363636 +L 3.636364,0.363636,2.545455,0 +L 2.545455,0,1.818182,0 +L 1.818182,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,1.090909 + +[:] 8 +L 0.363636,5.090909,0,4.727273 +L 0,4.727273,0.363636,4.363636 +L 0.363636,4.363636,0.727273,4.727273 +L 0.727273,4.727273,0.363636,5.090909 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[;] 11 +L 0.363636,5.090909,0,4.727273 +L 0,4.727273,0.363636,4.363636 +L 0.363636,4.363636,0.727273,4.727273 +L 0.727273,4.727273,0.363636,5.090909 +L 0.727273,0.363636,0.363636,0 +L 0.363636,0,0,0.363636 +L 0,0.363636,0.363636,0.727273 +L 0.363636,0.727273,0.727273,0.363636 +L 0.727273,0.363636,0.727273,-0.363636 +L 0.727273,-0.363636,0.363636,-1.090909 +L 0.363636,-1.090909,0,-1.454545 + +[<] 2 +L 5.818182,6.545455,0,3.272727 +L 0,3.272727,5.818182,0 + +[=] 2 +L 0,4.363636,6.545455,4.363636 +L 0,2.181818,6.545455,2.181818 + +[>] 2 +L 0,6.545455,5.818182,3.272727 +L 5.818182,3.272727,0,0 + +[?] 17 +L 0,5.818182,0,6.181818 +L 0,6.181818,0.363636,6.909091 +L 0.363636,6.909091,0.727273,7.272727 +L 0.727273,7.272727,1.454545,7.636364 +L 1.454545,7.636364,2.909091,7.636364 +L 2.909091,7.636364,3.636364,7.272727 +L 3.636364,7.272727,4,6.909091 +L 4,6.909091,4.363636,6.181818 +L 4.363636,6.181818,4.363636,5.454545 +L 4.363636,5.454545,4,4.727273 +L 4,4.727273,3.636364,4.363636 +L 3.636364,4.363636,2.181818,3.636364 +L 2.181818,3.636364,2.181818,2.545455 +L 2.181818,0.727273,1.818182,0.363636 +L 1.818182,0.363636,2.181818,0 +L 2.181818,0,2.545455,0.363636 +L 2.545455,0.363636,2.181818,0.727273 + +[@] 48 +L 5.454545,4.727273,5.090909,5.454545 +L 5.090909,5.454545,4.363636,5.818182 +L 4.363636,5.818182,3.272727,5.818182 +L 3.272727,5.818182,2.545455,5.454545 +L 2.545455,5.454545,2.181818,5.090909 +L 2.181818,5.090909,1.818182,4 +L 1.818182,4,1.818182,2.909091 +L 1.818182,2.909091,2.181818,2.181818 +L 2.181818,2.181818,2.909091,1.818182 +L 2.909091,1.818182,4,1.818182 +L 4,1.818182,4.727273,2.181818 +L 4.727273,2.181818,5.090909,2.909091 +L 3.272727,5.818182,2.545455,5.090909 +L 2.545455,5.090909,2.181818,4 +L 2.181818,4,2.181818,2.909091 +L 2.181818,2.909091,2.545455,2.181818 +L 2.545455,2.181818,2.909091,1.818182 +L 5.454545,5.818182,5.090909,2.909091 +L 5.090909,2.909091,5.090909,2.181818 +L 5.090909,2.181818,5.818182,1.818182 +L 5.818182,1.818182,6.545455,1.818182 +L 6.545455,1.818182,7.272727,2.545455 +L 7.272727,2.545455,7.636364,3.636364 +L 7.636364,3.636364,7.636364,4.363636 +L 7.636364,4.363636,7.272727,5.454545 +L 7.272727,5.454545,6.909091,6.181818 +L 6.909091,6.181818,6.181818,6.909091 +L 6.181818,6.909091,5.454545,7.272727 +L 5.454545,7.272727,4.363636,7.636364 +L 4.363636,7.636364,3.272727,7.636364 +L 3.272727,7.636364,2.181818,7.272727 +L 2.181818,7.272727,1.454545,6.909091 +L 1.454545,6.909091,0.727273,6.181818 +L 0.727273,6.181818,0.363636,5.454545 +L 0.363636,5.454545,0,4.363636 +L 0,4.363636,0,3.272727 +L 0,3.272727,0.363636,2.181818 +L 0.363636,2.181818,0.727273,1.454545 +L 0.727273,1.454545,1.454545,0.727273 +L 1.454545,0.727273,2.181818,0.363636 +L 2.181818,0.363636,3.272727,0 +L 3.272727,0,4.363636,0 +L 4.363636,0,5.454545,0.363636 +L 5.454545,0.363636,6.181818,0.727273 +L 6.181818,0.727273,6.545455,1.090909 +L 5.818182,5.818182,5.454545,2.909091 +L 5.454545,2.909091,5.454545,2.181818 +L 5.454545,2.181818,5.818182,1.818182 + +[A] 3 +L 2.909091,7.636364,0,0 +L 2.909091,7.636364,5.818182,0 +L 1.090909,2.545455,4.727273,2.545455 + +[B] 18 +L 0,7.636364,0,0 +L 0,7.636364,3.272727,7.636364 +L 3.272727,7.636364,4.363636,7.272727 +L 4.363636,7.272727,4.727273,6.909091 +L 4.727273,6.909091,5.090909,6.181818 +L 5.090909,6.181818,5.090909,5.454545 +L 5.090909,5.454545,4.727273,4.727273 +L 4.727273,4.727273,4.363636,4.363636 +L 4.363636,4.363636,3.272727,4 +L 0,4,3.272727,4 +L 3.272727,4,4.363636,3.636364 +L 4.363636,3.636364,4.727273,3.272727 +L 4.727273,3.272727,5.090909,2.545455 +L 5.090909,2.545455,5.090909,1.454545 +L 5.090909,1.454545,4.727273,0.727273 +L 4.727273,0.727273,4.363636,0.363636 +L 4.363636,0.363636,3.272727,0 +L 3.272727,0,0,0 + +[C] 17 +L 5.454545,5.818182,5.090909,6.545455 +L 5.090909,6.545455,4.363636,7.272727 +L 4.363636,7.272727,3.636364,7.636364 +L 3.636364,7.636364,2.181818,7.636364 +L 2.181818,7.636364,1.454545,7.272727 +L 1.454545,7.272727,0.727273,6.545455 +L 0.727273,6.545455,0.363636,5.818182 +L 0.363636,5.818182,0,4.727273 +L 0,4.727273,0,2.909091 +L 0,2.909091,0.363636,1.818182 +L 0.363636,1.818182,0.727273,1.090909 +L 0.727273,1.090909,1.454545,0.363636 +L 1.454545,0.363636,2.181818,0 +L 2.181818,0,3.636364,0 +L 3.636364,0,4.363636,0.363636 +L 4.363636,0.363636,5.090909,1.090909 +L 5.090909,1.090909,5.454545,1.818182 + +[D] 12 +L 0,7.636364,0,0 +L 0,7.636364,2.545455,7.636364 +L 2.545455,7.636364,3.636364,7.272727 +L 3.636364,7.272727,4.363636,6.545455 +L 4.363636,6.545455,4.727273,5.818182 +L 4.727273,5.818182,5.090909,4.727273 +L 5.090909,4.727273,5.090909,2.909091 +L 5.090909,2.909091,4.727273,1.818182 +L 4.727273,1.818182,4.363636,1.090909 +L 4.363636,1.090909,3.636364,0.363636 +L 3.636364,0.363636,2.545455,0 +L 2.545455,0,0,0 + +[E] 4 +L 0,7.636364,0,0 +L 0,7.636364,4.727273,7.636364 +L 0,4,2.909091,4 +L 0,0,4.727273,0 + +[F] 3 +L 0,7.636364,0,0 +L 0,7.636364,4.727273,7.636364 +L 0,4,2.909091,4 + +[G] 19 +L 5.454545,5.818182,5.090909,6.545455 +L 5.090909,6.545455,4.363636,7.272727 +L 4.363636,7.272727,3.636364,7.636364 +L 3.636364,7.636364,2.181818,7.636364 +L 2.181818,7.636364,1.454545,7.272727 +L 1.454545,7.272727,0.727273,6.545455 +L 0.727273,6.545455,0.363636,5.818182 +L 0.363636,5.818182,0,4.727273 +L 0,4.727273,0,2.909091 +L 0,2.909091,0.363636,1.818182 +L 0.363636,1.818182,0.727273,1.090909 +L 0.727273,1.090909,1.454545,0.363636 +L 1.454545,0.363636,2.181818,0 +L 2.181818,0,3.636364,0 +L 3.636364,0,4.363636,0.363636 +L 4.363636,0.363636,5.090909,1.090909 +L 5.090909,1.090909,5.454545,1.818182 +L 5.454545,1.818182,5.454545,2.909091 +L 3.636364,2.909091,5.454545,2.909091 + +[H] 3 +L 0,7.636364,0,0 +L 5.090909,7.636364,5.090909,0 +L 0,4,5.090909,4 + +[I] 1 +L 0,7.636364,0,0 + +[J] 9 +L 3.636364,7.636364,3.636364,1.818182 +L 3.636364,1.818182,3.272727,0.727273 +L 3.272727,0.727273,2.909091,0.363636 +L 2.909091,0.363636,2.181818,0 +L 2.181818,0,1.454545,0 +L 1.454545,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 +L 0.363636,0.727273,0,1.818182 +L 0,1.818182,0,2.545455 + +[K] 3 +L 0,7.636364,0,0 +L 5.090909,7.636364,0,2.545455 +L 1.818182,4.363636,5.090909,0 + +[L] 2 +L 0,7.636364,0,0 +L 0,0,4.363636,0 + +[M] 4 +L 0,7.636364,0,0 +L 0,7.636364,2.909091,0 +L 5.818182,7.636364,2.909091,0 +L 5.818182,7.636364,5.818182,0 + +[N] 3 +L 0,7.636364,0,0 +L 0,7.636364,5.090909,0 +L 5.090909,7.636364,5.090909,0 + +[O] 20 +L 2.181818,7.636364,1.454545,7.272727 +L 1.454545,7.272727,0.727273,6.545455 +L 0.727273,6.545455,0.363636,5.818182 +L 0.363636,5.818182,0,4.727273 +L 0,4.727273,0,2.909091 +L 0,2.909091,0.363636,1.818182 +L 0.363636,1.818182,0.727273,1.090909 +L 0.727273,1.090909,1.454545,0.363636 +L 1.454545,0.363636,2.181818,0 +L 2.181818,0,3.636364,0 +L 3.636364,0,4.363636,0.363636 +L 4.363636,0.363636,5.090909,1.090909 +L 5.090909,1.090909,5.454545,1.818182 +L 5.454545,1.818182,5.818182,2.909091 +L 5.818182,2.909091,5.818182,4.727273 +L 5.818182,4.727273,5.454545,5.818182 +L 5.454545,5.818182,5.090909,6.545455 +L 5.090909,6.545455,4.363636,7.272727 +L 4.363636,7.272727,3.636364,7.636364 +L 3.636364,7.636364,2.181818,7.636364 + +[P] 10 +L 0,7.636364,0,0 +L 0,7.636364,3.272727,7.636364 +L 3.272727,7.636364,4.363636,7.272727 +L 4.363636,7.272727,4.727273,6.909091 +L 4.727273,6.909091,5.090909,6.181818 +L 5.090909,6.181818,5.090909,5.090909 +L 5.090909,5.090909,4.727273,4.363636 +L 4.727273,4.363636,4.363636,4 +L 4.363636,4,3.272727,3.636364 +L 3.272727,3.636364,0,3.636364 + +[Q] 21 +L 2.181818,7.636364,1.454545,7.272727 +L 1.454545,7.272727,0.727273,6.545455 +L 0.727273,6.545455,0.363636,5.818182 +L 0.363636,5.818182,0,4.727273 +L 0,4.727273,0,2.909091 +L 0,2.909091,0.363636,1.818182 +L 0.363636,1.818182,0.727273,1.090909 +L 0.727273,1.090909,1.454545,0.363636 +L 1.454545,0.363636,2.181818,0 +L 2.181818,0,3.636364,0 +L 3.636364,0,4.363636,0.363636 +L 4.363636,0.363636,5.090909,1.090909 +L 5.090909,1.090909,5.454545,1.818182 +L 5.454545,1.818182,5.818182,2.909091 +L 5.818182,2.909091,5.818182,4.727273 +L 5.818182,4.727273,5.454545,5.818182 +L 5.454545,5.818182,5.090909,6.545455 +L 5.090909,6.545455,4.363636,7.272727 +L 4.363636,7.272727,3.636364,7.636364 +L 3.636364,7.636364,2.181818,7.636364 +L 3.272727,1.454545,5.454545,-0.727273 + +[R] 11 +L 0,7.636364,0,0 +L 0,7.636364,3.272727,7.636364 +L 3.272727,7.636364,4.363636,7.272727 +L 4.363636,7.272727,4.727273,6.909091 +L 4.727273,6.909091,5.090909,6.181818 +L 5.090909,6.181818,5.090909,5.454545 +L 5.090909,5.454545,4.727273,4.727273 +L 4.727273,4.727273,4.363636,4.363636 +L 4.363636,4.363636,3.272727,4 +L 3.272727,4,0,4 +L 2.545455,4,5.090909,0 + +[S] 19 +L 5.090909,6.545455,4.363636,7.272727 +L 4.363636,7.272727,3.272727,7.636364 +L 3.272727,7.636364,1.818182,7.636364 +L 1.818182,7.636364,0.727273,7.272727 +L 0.727273,7.272727,0,6.545455 +L 0,6.545455,0,5.818182 +L 0,5.818182,0.363636,5.090909 +L 0.363636,5.090909,0.727273,4.727273 +L 0.727273,4.727273,1.454545,4.363636 +L 1.454545,4.363636,3.636364,3.636364 +L 3.636364,3.636364,4.363636,3.272727 +L 4.363636,3.272727,4.727273,2.909091 +L 4.727273,2.909091,5.090909,2.181818 +L 5.090909,2.181818,5.090909,1.090909 +L 5.090909,1.090909,4.363636,0.363636 +L 4.363636,0.363636,3.272727,0 +L 3.272727,0,1.818182,0 +L 1.818182,0,0.727273,0.363636 +L 0.727273,0.363636,0,1.090909 + +[T] 2 +L 2.545455,7.636364,2.545455,0 +L 0,7.636364,5.090909,7.636364 + +[U] 9 +L 0,7.636364,0,2.181818 +L 0,2.181818,0.363636,1.090909 +L 0.363636,1.090909,1.090909,0.363636 +L 1.090909,0.363636,2.181818,0 +L 2.181818,0,2.909091,0 +L 2.909091,0,4,0.363636 +L 4,0.363636,4.727273,1.090909 +L 4.727273,1.090909,5.090909,2.181818 +L 5.090909,2.181818,5.090909,7.636364 + +[V] 2 +L 0,7.636364,2.909091,0 +L 5.818182,7.636364,2.909091,0 + +[W] 4 +L 0,7.636364,1.818182,0 +L 3.636364,7.636364,1.818182,0 +L 3.636364,7.636364,5.454545,0 +L 7.272727,7.636364,5.454545,0 + +[X] 2 +L 0,7.636364,5.090909,0 +L 5.090909,7.636364,0,0 + +[Y] 3 +L 0,7.636364,2.909091,4 +L 2.909091,4,2.909091,0 +L 5.818182,7.636364,2.909091,4 + +[Z] 3 +L 5.090909,7.636364,0,0 +L 0,7.636364,5.090909,7.636364 +L 0,0,5.090909,0 + +[[] 4 +L 0,9.090909,0,-2.545455 +L 0.363636,9.090909,0.363636,-2.545455 +L 0,9.090909,2.545455,9.090909 +L 0,-2.545455,2.545455,-2.545455 + +[\] 1 +L 0,7.636364,5.090909,-1.090909 + +[]] 4 +L 2.181818,9.090909,2.181818,-2.545455 +L 2.545455,9.090909,2.545455,-2.545455 +L 0,9.090909,2.545455,9.090909 +L 0,-2.545455,2.545455,-2.545455 + +[^] 5 +L 1.090909,5.454545,1.818182,6.545455 +L 1.818182,6.545455,2.545455,5.454545 +L 0,4.363636,1.818182,6.181818 +L 1.818182,6.181818,3.636364,4.363636 +L 1.818182,6.181818,1.818182,0 + +[_] 1 +L 0,-0.727273,5.818182,-0.727273 + +[`] 6 +L 0.727273,7.636364,0.363636,7.272727 +L 0.363636,7.272727,0,6.545455 +L 0,6.545455,0,5.818182 +L 0,5.818182,0.363636,5.454545 +L 0.363636,5.454545,0.727273,5.818182 +L 0.727273,5.818182,0.363636,6.181818 + +[a] 14 +L 4.363636,5.090909,4.363636,0 +L 4.363636,4,3.636364,4.727273 +L 3.636364,4.727273,2.909091,5.090909 +L 2.909091,5.090909,1.818182,5.090909 +L 1.818182,5.090909,1.090909,4.727273 +L 1.090909,4.727273,0.363636,4 +L 0.363636,4,0,2.909091 +L 0,2.909091,0,2.181818 +L 0,2.181818,0.363636,1.090909 +L 0.363636,1.090909,1.090909,0.363636 +L 1.090909,0.363636,1.818182,0 +L 1.818182,0,2.909091,0 +L 2.909091,0,3.636364,0.363636 +L 3.636364,0.363636,4.363636,1.090909 + +[b] 14 +L 0,7.636364,0,0 +L 0,4,0.727273,4.727273 +L 0.727273,4.727273,1.454545,5.090909 +L 1.454545,5.090909,2.545455,5.090909 +L 2.545455,5.090909,3.272727,4.727273 +L 3.272727,4.727273,4,4 +L 4,4,4.363636,2.909091 +L 4.363636,2.909091,4.363636,2.181818 +L 4.363636,2.181818,4,1.090909 +L 4,1.090909,3.272727,0.363636 +L 3.272727,0.363636,2.545455,0 +L 2.545455,0,1.454545,0 +L 1.454545,0,0.727273,0.363636 +L 0.727273,0.363636,0,1.090909 + +[c] 13 +L 4.363636,4,3.636364,4.727273 +L 3.636364,4.727273,2.909091,5.090909 +L 2.909091,5.090909,1.818182,5.090909 +L 1.818182,5.090909,1.090909,4.727273 +L 1.090909,4.727273,0.363636,4 +L 0.363636,4,0,2.909091 +L 0,2.909091,0,2.181818 +L 0,2.181818,0.363636,1.090909 +L 0.363636,1.090909,1.090909,0.363636 +L 1.090909,0.363636,1.818182,0 +L 1.818182,0,2.909091,0 +L 2.909091,0,3.636364,0.363636 +L 3.636364,0.363636,4.363636,1.090909 + +[d] 14 +L 4.363636,7.636364,4.363636,0 +L 4.363636,4,3.636364,4.727273 +L 3.636364,4.727273,2.909091,5.090909 +L 2.909091,5.090909,1.818182,5.090909 +L 1.818182,5.090909,1.090909,4.727273 +L 1.090909,4.727273,0.363636,4 +L 0.363636,4,0,2.909091 +L 0,2.909091,0,2.181818 +L 0,2.181818,0.363636,1.090909 +L 0.363636,1.090909,1.090909,0.363636 +L 1.090909,0.363636,1.818182,0 +L 1.818182,0,2.909091,0 +L 2.909091,0,3.636364,0.363636 +L 3.636364,0.363636,4.363636,1.090909 + +[e] 16 +L 0,2.909091,4.363636,2.909091 +L 4.363636,2.909091,4.363636,3.636364 +L 4.363636,3.636364,4,4.363636 +L 4,4.363636,3.636364,4.727273 +L 3.636364,4.727273,2.909091,5.090909 +L 2.909091,5.090909,1.818182,5.090909 +L 1.818182,5.090909,1.090909,4.727273 +L 1.090909,4.727273,0.363636,4 +L 0.363636,4,0,2.909091 +L 0,2.909091,0,2.181818 +L 0,2.181818,0.363636,1.090909 +L 0.363636,1.090909,1.090909,0.363636 +L 1.090909,0.363636,1.818182,0 +L 1.818182,0,2.909091,0 +L 2.909091,0,3.636364,0.363636 +L 3.636364,0.363636,4.363636,1.090909 + +[f] 5 +L 2.909091,7.636364,2.181818,7.636364 +L 2.181818,7.636364,1.454545,7.272727 +L 1.454545,7.272727,1.090909,6.181818 +L 1.090909,6.181818,1.090909,0 +L 0,5.090909,2.545455,5.090909 + +[g] 19 +L 4.363636,5.090909,4.363636,-0.727273 +L 4.363636,-0.727273,4,-1.818182 +L 4,-1.818182,3.636364,-2.181818 +L 3.636364,-2.181818,2.909091,-2.545455 +L 2.909091,-2.545455,1.818182,-2.545455 +L 1.818182,-2.545455,1.090909,-2.181818 +L 4.363636,4,3.636364,4.727273 +L 3.636364,4.727273,2.909091,5.090909 +L 2.909091,5.090909,1.818182,5.090909 +L 1.818182,5.090909,1.090909,4.727273 +L 1.090909,4.727273,0.363636,4 +L 0.363636,4,0,2.909091 +L 0,2.909091,0,2.181818 +L 0,2.181818,0.363636,1.090909 +L 0.363636,1.090909,1.090909,0.363636 +L 1.090909,0.363636,1.818182,0 +L 1.818182,0,2.909091,0 +L 2.909091,0,3.636364,0.363636 +L 3.636364,0.363636,4.363636,1.090909 + +[h] 7 +L 0,7.636364,0,0 +L 0,3.636364,1.090909,4.727273 +L 1.090909,4.727273,1.818182,5.090909 +L 1.818182,5.090909,2.909091,5.090909 +L 2.909091,5.090909,3.636364,4.727273 +L 3.636364,4.727273,4,3.636364 +L 4,3.636364,4,0 + +[i] 5 +L 0,7.636364,0.363636,7.272727 +L 0.363636,7.272727,0.727273,7.636364 +L 0.727273,7.636364,0.363636,8 +L 0.363636,8,0,7.636364 +L 0.363636,5.090909,0.363636,0 + +[j] 8 +L 1.454545,7.636364,1.818182,7.272727 +L 1.818182,7.272727,2.181818,7.636364 +L 2.181818,7.636364,1.818182,8 +L 1.818182,8,1.454545,7.636364 +L 1.818182,5.090909,1.818182,-1.090909 +L 1.818182,-1.090909,1.454545,-2.181818 +L 1.454545,-2.181818,0.727273,-2.545455 +L 0.727273,-2.545455,0,-2.545455 + +[k] 3 +L 0,7.636364,0,0 +L 3.636364,5.090909,0,1.454545 +L 1.454545,2.909091,4,0 + +[l] 1 +L 0,7.636364,0,0 + +[m] 13 +L 0,5.090909,0,0 +L 0,3.636364,1.090909,4.727273 +L 1.090909,4.727273,1.818182,5.090909 +L 1.818182,5.090909,2.909091,5.090909 +L 2.909091,5.090909,3.636364,4.727273 +L 3.636364,4.727273,4,3.636364 +L 4,3.636364,4,0 +L 4,3.636364,5.090909,4.727273 +L 5.090909,4.727273,5.818182,5.090909 +L 5.818182,5.090909,6.909091,5.090909 +L 6.909091,5.090909,7.636364,4.727273 +L 7.636364,4.727273,8,3.636364 +L 8,3.636364,8,0 + +[n] 7 +L 0,5.090909,0,0 +L 0,3.636364,1.090909,4.727273 +L 1.090909,4.727273,1.818182,5.090909 +L 1.818182,5.090909,2.909091,5.090909 +L 2.909091,5.090909,3.636364,4.727273 +L 3.636364,4.727273,4,3.636364 +L 4,3.636364,4,0 + +[o] 16 +L 1.818182,5.090909,1.090909,4.727273 +L 1.090909,4.727273,0.363636,4 +L 0.363636,4,0,2.909091 +L 0,2.909091,0,2.181818 +L 0,2.181818,0.363636,1.090909 +L 0.363636,1.090909,1.090909,0.363636 +L 1.090909,0.363636,1.818182,0 +L 1.818182,0,2.909091,0 +L 2.909091,0,3.636364,0.363636 +L 3.636364,0.363636,4.363636,1.090909 +L 4.363636,1.090909,4.727273,2.181818 +L 4.727273,2.181818,4.727273,2.909091 +L 4.727273,2.909091,4.363636,4 +L 4.363636,4,3.636364,4.727273 +L 3.636364,4.727273,2.909091,5.090909 +L 2.909091,5.090909,1.818182,5.090909 + +[p] 14 +L 0,5.090909,0,-2.545455 +L 0,4,0.727273,4.727273 +L 0.727273,4.727273,1.454545,5.090909 +L 1.454545,5.090909,2.545455,5.090909 +L 2.545455,5.090909,3.272727,4.727273 +L 3.272727,4.727273,4,4 +L 4,4,4.363636,2.909091 +L 4.363636,2.909091,4.363636,2.181818 +L 4.363636,2.181818,4,1.090909 +L 4,1.090909,3.272727,0.363636 +L 3.272727,0.363636,2.545455,0 +L 2.545455,0,1.454545,0 +L 1.454545,0,0.727273,0.363636 +L 0.727273,0.363636,0,1.090909 + +[q] 14 +L 4.363636,5.090909,4.363636,-2.545455 +L 4.363636,4,3.636364,4.727273 +L 3.636364,4.727273,2.909091,5.090909 +L 2.909091,5.090909,1.818182,5.090909 +L 1.818182,5.090909,1.090909,4.727273 +L 1.090909,4.727273,0.363636,4 +L 0.363636,4,0,2.909091 +L 0,2.909091,0,2.181818 +L 0,2.181818,0.363636,1.090909 +L 0.363636,1.090909,1.090909,0.363636 +L 1.090909,0.363636,1.818182,0 +L 1.818182,0,2.909091,0 +L 2.909091,0,3.636364,0.363636 +L 3.636364,0.363636,4.363636,1.090909 + +[r] 5 +L 0,5.090909,0,0 +L 0,2.909091,0.363636,4 +L 0.363636,4,1.090909,4.727273 +L 1.090909,4.727273,1.818182,5.090909 +L 1.818182,5.090909,2.909091,5.090909 + +[s] 16 +L 4,4,3.636364,4.727273 +L 3.636364,4.727273,2.545455,5.090909 +L 2.545455,5.090909,1.454545,5.090909 +L 1.454545,5.090909,0.363636,4.727273 +L 0.363636,4.727273,0,4 +L 0,4,0.363636,3.272727 +L 0.363636,3.272727,1.090909,2.909091 +L 1.090909,2.909091,2.909091,2.545455 +L 2.909091,2.545455,3.636364,2.181818 +L 3.636364,2.181818,4,1.454545 +L 4,1.454545,4,1.090909 +L 4,1.090909,3.636364,0.363636 +L 3.636364,0.363636,2.545455,0 +L 2.545455,0,1.454545,0 +L 1.454545,0,0.363636,0.363636 +L 0.363636,0.363636,0,1.090909 + +[t] 5 +L 1.090909,7.636364,1.090909,1.454545 +L 1.090909,1.454545,1.454545,0.363636 +L 1.454545,0.363636,2.181818,0 +L 2.181818,0,2.909091,0 +L 0,5.090909,2.545455,5.090909 + +[u] 7 +L 0,5.090909,0,1.454545 +L 0,1.454545,0.363636,0.363636 +L 0.363636,0.363636,1.090909,0 +L 1.090909,0,2.181818,0 +L 2.181818,0,2.909091,0.363636 +L 2.909091,0.363636,4,1.454545 +L 4,5.090909,4,0 + +[v] 2 +L 0,5.090909,2.181818,0 +L 4.363636,5.090909,2.181818,0 + +[w] 4 +L 0,5.090909,1.454545,0 +L 2.909091,5.090909,1.454545,0 +L 2.909091,5.090909,4.363636,0 +L 5.818182,5.090909,4.363636,0 + +[x] 2 +L 0,5.090909,4,0 +L 4,5.090909,0,0 + +[y] 6 +L 0.363636,5.090909,2.545455,0 +L 4.727273,5.090909,2.545455,0 +L 2.545455,0,1.818182,-1.454545 +L 1.818182,-1.454545,1.090909,-2.181818 +L 1.090909,-2.181818,0.363636,-2.545455 +L 0.363636,-2.545455,0,-2.545455 + +[z] 3 +L 4,5.090909,0,0 +L 0,5.090909,4,5.090909 +L 0,0,4,0 + +[{] 34 +L 1.818182,9.090909,1.090909,8.727273 +L 1.090909,8.727273,0.727273,8.363636 +L 0.727273,8.363636,0.363636,7.636364 +L 0.363636,7.636364,0.363636,6.909091 +L 0.363636,6.909091,0.727273,6.181818 +L 0.727273,6.181818,1.090909,5.818182 +L 1.090909,5.818182,1.454545,5.090909 +L 1.454545,5.090909,1.454545,4.363636 +L 1.454545,4.363636,0.727273,3.636364 +L 1.090909,8.727273,0.727273,8 +L 0.727273,8,0.727273,7.272727 +L 0.727273,7.272727,1.090909,6.545455 +L 1.090909,6.545455,1.454545,6.181818 +L 1.454545,6.181818,1.818182,5.454545 +L 1.818182,5.454545,1.818182,4.727273 +L 1.818182,4.727273,1.454545,4 +L 1.454545,4,0,3.272727 +L 0,3.272727,1.454545,2.545455 +L 1.454545,2.545455,1.818182,1.818182 +L 1.818182,1.818182,1.818182,1.090909 +L 1.818182,1.090909,1.454545,0.363636 +L 1.454545,0.363636,1.090909,0 +L 1.090909,0,0.727273,-0.727273 +L 0.727273,-0.727273,0.727273,-1.454545 +L 0.727273,-1.454545,1.090909,-2.181818 +L 0.727273,2.909091,1.454545,2.181818 +L 1.454545,2.181818,1.454545,1.454545 +L 1.454545,1.454545,1.090909,0.727273 +L 1.090909,0.727273,0.727273,0.363636 +L 0.727273,0.363636,0.363636,-0.363636 +L 0.363636,-0.363636,0.363636,-1.090909 +L 0.363636,-1.090909,0.727273,-1.818182 +L 0.727273,-1.818182,1.090909,-2.181818 +L 1.090909,-2.181818,1.818182,-2.545455 + +[|] 1 +L 0,9.090909,0,-2.545455 + +[}] 34 +L 0,9.090909,0.727273,8.727273 +L 0.727273,8.727273,1.090909,8.363636 +L 1.090909,8.363636,1.454545,7.636364 +L 1.454545,7.636364,1.454545,6.909091 +L 1.454545,6.909091,1.090909,6.181818 +L 1.090909,6.181818,0.727273,5.818182 +L 0.727273,5.818182,0.363636,5.090909 +L 0.363636,5.090909,0.363636,4.363636 +L 0.363636,4.363636,1.090909,3.636364 +L 0.727273,8.727273,1.090909,8 +L 1.090909,8,1.090909,7.272727 +L 1.090909,7.272727,0.727273,6.545455 +L 0.727273,6.545455,0.363636,6.181818 +L 0.363636,6.181818,0,5.454545 +L 0,5.454545,0,4.727273 +L 0,4.727273,0.363636,4 +L 0.363636,4,1.818182,3.272727 +L 1.818182,3.272727,0.363636,2.545455 +L 0.363636,2.545455,0,1.818182 +L 0,1.818182,0,1.090909 +L 0,1.090909,0.363636,0.363636 +L 0.363636,0.363636,0.727273,0 +L 0.727273,0,1.090909,-0.727273 +L 1.090909,-0.727273,1.090909,-1.454545 +L 1.090909,-1.454545,0.727273,-2.181818 +L 1.090909,2.909091,0.363636,2.181818 +L 0.363636,2.181818,0.363636,1.454545 +L 0.363636,1.454545,0.727273,0.727273 +L 0.727273,0.727273,1.090909,0.363636 +L 1.090909,0.363636,1.454545,-0.363636 +L 1.454545,-0.363636,1.454545,-1.090909 +L 1.454545,-1.090909,1.090909,-1.818182 +L 1.090909,-1.818182,0.727273,-2.181818 +L 0.727273,-2.181818,0,-2.545455 + +[~] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[#0104] 9 +L 2.909091,7.636364,0,0 +L 2.909091,7.636364,5.818182,0 +L 1.090909,2.545455,4.727273,2.545455 +L 5.818182,0,5.454545,-0.363636 +L 5.454545,-0.363636,5.090909,-1.090909 +L 5.090909,-1.090909,5.090909,-1.818182 +L 5.090909,-1.818182,5.454545,-2.181818 +L 5.454545,-2.181818,5.818182,-1.818182 +L 5.818182,-1.818182,5.454545,-1.454545 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[#0141] 3 +L 0.727273,7.636364,0.727273,0 +L 0.727273,0,5.090909,0 +L 2.181818,5.090909,0,2.909091 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[#015A] 25 +L 5.090909,6.545455,4.363636,7.272727 +L 4.363636,7.272727,3.272727,7.636364 +L 3.272727,7.636364,1.818182,7.636364 +L 1.818182,7.636364,0.727273,7.272727 +L 0.727273,7.272727,0,6.545455 +L 0,6.545455,0,5.818182 +L 0,5.818182,0.363636,5.090909 +L 0.363636,5.090909,0.727273,4.727273 +L 0.727273,4.727273,1.454545,4.363636 +L 1.454545,4.363636,3.636364,3.636364 +L 3.636364,3.636364,4.363636,3.272727 +L 4.363636,3.272727,4.727273,2.909091 +L 4.727273,2.909091,5.090909,2.181818 +L 5.090909,2.181818,5.090909,1.090909 +L 5.090909,1.090909,4.363636,0.363636 +L 4.363636,0.363636,3.272727,0 +L 3.272727,0,1.818182,0 +L 1.818182,0,0.727273,0.363636 +L 0.727273,0.363636,0,1.090909 +L 2.909091,9.818182,2.545455,10.181818 +L 2.545455,10.181818,2.909091,10.545455 +L 2.909091,10.545455,3.272727,10.181818 +L 3.272727,10.181818,3.272727,9.454545 +L 3.272727,9.454545,2.909091,8.727273 +L 2.909091,8.727273,2.545455,8.363636 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[#0179] 9 +L 5.090909,7.636364,0,0 +L 0,7.636364,5.090909,7.636364 +L 0,0,5.090909,0 +L 2.909091,9.818182,2.545455,10.181818 +L 2.545455,10.181818,2.909091,10.545455 +L 2.909091,10.545455,3.272727,10.181818 +L 3.272727,10.181818,3.272727,9.454545 +L 3.272727,9.454545,2.909091,8.727273 +L 2.909091,8.727273,2.545455,8.363636 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[#017B] 7 +L 5.090909,7.636364,0,0 +L 0,7.636364,5.090909,7.636364 +L 0,0,5.090909,0 +L 2.545455,9.090909,2.181818,8.727273 +L 2.181818,8.727273,2.545455,8.363636 +L 2.545455,8.363636,2.909091,8.727273 +L 2.909091,8.727273,2.545455,9.090909 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[#0105] 20 +L 4.363636,5.090909,4.363636,0 +L 4.363636,4,3.636364,4.727273 +L 3.636364,4.727273,2.909091,5.090909 +L 2.909091,5.090909,1.818182,5.090909 +L 1.818182,5.090909,1.090909,4.727273 +L 1.090909,4.727273,0.363636,4 +L 0.363636,4,0,2.909091 +L 0,2.909091,0,2.181818 +L 0,2.181818,0.363636,1.090909 +L 0.363636,1.090909,1.090909,0.363636 +L 1.090909,0.363636,1.818182,0 +L 1.818182,0,2.909091,0 +L 2.909091,0,3.636364,0.363636 +L 3.636364,0.363636,4.363636,1.090909 +L 4.363636,0,4,-0.363636 +L 4,-0.363636,3.636364,-1.090909 +L 3.636364,-1.090909,3.636364,-1.818182 +L 3.636364,-1.818182,4,-2.181818 +L 4,-2.181818,4.363636,-1.818182 +L 4.363636,-1.818182,4,-1.454545 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[#0142] 2 +L 1.090909,7.636364,1.090909,0 +L 2.181818,5.090909,0,2.909091 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[#015B] 22 +L 4,4,3.636364,4.727273 +L 3.636364,4.727273,2.545455,5.090909 +L 2.545455,5.090909,1.454545,5.090909 +L 1.454545,5.090909,0.363636,4.727273 +L 0.363636,4.727273,0,4 +L 0,4,0.363636,3.272727 +L 0.363636,3.272727,1.090909,2.909091 +L 1.090909,2.909091,2.909091,2.545455 +L 2.909091,2.545455,3.636364,2.181818 +L 3.636364,2.181818,4,1.454545 +L 4,1.454545,4,1.090909 +L 4,1.090909,3.636364,0.363636 +L 3.636364,0.363636,2.545455,0 +L 2.545455,0,1.454545,0 +L 1.454545,0,0.363636,0.363636 +L 0.363636,0.363636,0,1.090909 +L 2.181818,7.272727,1.818182,7.636364 +L 1.818182,7.636364,2.181818,8 +L 2.181818,8,2.545455,7.636364 +L 2.545455,7.636364,2.545455,6.909091 +L 2.545455,6.909091,2.181818,6.181818 +L 2.181818,6.181818,1.818182,5.818182 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[#017A] 9 +L 4,5.090909,0,0 +L 0,5.090909,4,5.090909 +L 0,0,4,0 +L 2.181818,7.272727,1.818182,7.636364 +L 1.818182,7.636364,2.181818,8 +L 2.181818,8,2.545455,7.636364 +L 2.545455,7.636364,2.545455,6.909091 +L 2.545455,6.909091,2.181818,6.181818 +L 2.181818,6.181818,1.818182,5.818182 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[#017C] 7 +L 4,5.090909,0,0 +L 0,5.090909,4,5.090909 +L 0,0,4,0 +L 1.818182,6.545455,1.454545,6.181818 +L 1.454545,6.181818,1.818182,5.818182 +L 1.818182,5.818182,2.181818,6.181818 +L 2.181818,6.181818,1.818182,6.545455 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[#0106] 23 +L 5.454545,5.818182,5.090909,6.545455 +L 5.090909,6.545455,4.363636,7.272727 +L 4.363636,7.272727,3.636364,7.636364 +L 3.636364,7.636364,2.181818,7.636364 +L 2.181818,7.636364,1.454545,7.272727 +L 1.454545,7.272727,0.727273,6.545455 +L 0.727273,6.545455,0.363636,5.818182 +L 0.363636,5.818182,0,4.727273 +L 0,4.727273,0,2.909091 +L 0,2.909091,0.363636,1.818182 +L 0.363636,1.818182,0.727273,1.090909 +L 0.727273,1.090909,1.454545,0.363636 +L 1.454545,0.363636,2.181818,0 +L 2.181818,0,3.636364,0 +L 3.636364,0,4.363636,0.363636 +L 4.363636,0.363636,5.090909,1.090909 +L 5.090909,1.090909,5.454545,1.818182 +L 2.909091,9.818182,2.545455,10.181818 +L 2.545455,10.181818,2.909091,10.545455 +L 2.909091,10.545455,3.272727,10.181818 +L 3.272727,10.181818,3.272727,9.454545 +L 3.272727,9.454545,2.909091,8.727273 +L 2.909091,8.727273,2.545455,8.363636 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[#0118] 10 +L 0,7.636364,0,0 +L 0,7.636364,4.727273,7.636364 +L 0,4,2.909091,4 +L 0,0,4.727273,0 +L 3.636364,0,3.272727,-0.363636 +L 3.272727,-0.363636,2.909091,-1.090909 +L 2.909091,-1.090909,2.909091,-1.818182 +L 2.909091,-1.818182,3.272727,-2.181818 +L 3.272727,-2.181818,3.636364,-1.818182 +L 3.636364,-1.818182,3.272727,-1.454545 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[#0143] 9 +L 0,7.636364,0,0 +L 0,7.636364,5.090909,0 +L 5.090909,7.636364,5.090909,0 +L 2.909091,9.818182,2.545455,10.181818 +L 2.545455,10.181818,2.909091,10.545455 +L 2.909091,10.545455,3.272727,10.181818 +L 3.272727,10.181818,3.272727,9.454545 +L 3.272727,9.454545,2.909091,8.727273 +L 2.909091,8.727273,2.545455,8.363636 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[#00D3] 26 +L 2.181818,7.636364,1.454545,7.272727 +L 1.454545,7.272727,0.727273,6.545455 +L 0.727273,6.545455,0.363636,5.818182 +L 0.363636,5.818182,0,4.727273 +L 0,4.727273,0,2.909091 +L 0,2.909091,0.363636,1.818182 +L 0.363636,1.818182,0.727273,1.090909 +L 0.727273,1.090909,1.454545,0.363636 +L 1.454545,0.363636,2.181818,0 +L 2.181818,0,3.636364,0 +L 3.636364,0,4.363636,0.363636 +L 4.363636,0.363636,5.090909,1.090909 +L 5.090909,1.090909,5.454545,1.818182 +L 5.454545,1.818182,5.818182,2.909091 +L 5.818182,2.909091,5.818182,4.727273 +L 5.818182,4.727273,5.454545,5.818182 +L 5.454545,5.818182,5.090909,6.545455 +L 5.090909,6.545455,4.363636,7.272727 +L 4.363636,7.272727,3.636364,7.636364 +L 3.636364,7.636364,2.181818,7.636364 +L 3.272727,9.818182,2.909091,10.181818 +L 2.909091,10.181818,3.272727,10.545455 +L 3.272727,10.545455,3.636364,10.181818 +L 3.636364,10.181818,3.636364,9.454545 +L 3.636364,9.454545,3.272727,8.727273 +L 3.272727,8.727273,2.909091,8.363636 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[#0107] 19 +L 4.363636,4,3.636364,4.727273 +L 3.636364,4.727273,2.909091,5.090909 +L 2.909091,5.090909,1.818182,5.090909 +L 1.818182,5.090909,1.090909,4.727273 +L 1.090909,4.727273,0.363636,4 +L 0.363636,4,0,2.909091 +L 0,2.909091,0,2.181818 +L 0,2.181818,0.363636,1.090909 +L 0.363636,1.090909,1.090909,0.363636 +L 1.090909,0.363636,1.818182,0 +L 1.818182,0,2.909091,0 +L 2.909091,0,3.636364,0.363636 +L 3.636364,0.363636,4.363636,1.090909 +L 2.545455,7.272727,2.181818,7.636364 +L 2.181818,7.636364,2.545455,8 +L 2.545455,8,2.909091,7.636364 +L 2.909091,7.636364,2.909091,6.909091 +L 2.909091,6.909091,2.545455,6.181818 +L 2.545455,6.181818,2.181818,5.818182 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[#0119] 22 +L 0,2.909091,4.363636,2.909091 +L 4.363636,2.909091,4.363636,3.636364 +L 4.363636,3.636364,4,4.363636 +L 4,4.363636,3.636364,4.727273 +L 3.636364,4.727273,2.909091,5.090909 +L 2.909091,5.090909,1.818182,5.090909 +L 1.818182,5.090909,1.090909,4.727273 +L 1.090909,4.727273,0.363636,4 +L 0.363636,4,0,2.909091 +L 0,2.909091,0,2.181818 +L 0,2.181818,0.363636,1.090909 +L 0.363636,1.090909,1.090909,0.363636 +L 1.090909,0.363636,1.818182,0 +L 1.818182,0,2.909091,0 +L 2.909091,0,3.636364,0.363636 +L 3.636364,0.363636,4.363636,1.090909 +L 2.909091,0,2.545455,-0.363636 +L 2.545455,-0.363636,2.181818,-1.090909 +L 2.181818,-1.090909,2.181818,-1.818182 +L 2.181818,-1.818182,2.545455,-2.181818 +L 2.545455,-2.181818,2.909091,-1.818182 +L 2.909091,-1.818182,2.545455,-1.454545 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[#0144] 13 +L 0,5.090909,0,0 +L 0,3.636364,1.090909,4.727273 +L 1.090909,4.727273,1.818182,5.090909 +L 1.818182,5.090909,2.909091,5.090909 +L 2.909091,5.090909,3.636364,4.727273 +L 3.636364,4.727273,4,3.636364 +L 4,3.636364,4,0 +L 2.181818,7.272727,1.818182,7.636364 +L 1.818182,7.636364,2.181818,8 +L 2.181818,8,2.545455,7.636364 +L 2.545455,7.636364,2.545455,6.909091 +L 2.545455,6.909091,2.181818,6.181818 +L 2.181818,6.181818,1.818182,5.818182 + +[] 4 +L 0.363636,0.727273,0,0.363636 +L 0,0.363636,0.363636,0 +L 0.363636,0,0.727273,0.363636 +L 0.727273,0.363636,0.363636,0.727273 + +[#00F3] 22 +L 1.818182,5.090909,1.090909,4.727273 +L 1.090909,4.727273,0.363636,4 +L 0.363636,4,0,2.909091 +L 0,2.909091,0,2.181818 +L 0,2.181818,0.363636,1.090909 +L 0.363636,1.090909,1.090909,0.363636 +L 1.090909,0.363636,1.818182,0 +L 1.818182,0,2.909091,0 +L 2.909091,0,3.636364,0.363636 +L 3.636364,0.363636,4.363636,1.090909 +L 4.363636,1.090909,4.727273,2.181818 +L 4.727273,2.181818,4.727273,2.909091 +L 4.727273,2.909091,4.363636,4 +L 4.363636,4,3.636364,4.727273 +L 3.636364,4.727273,2.909091,5.090909 +L 2.909091,5.090909,1.818182,5.090909 +L 2.545455,7.272727,2.181818,7.636364 +L 2.181818,7.636364,2.545455,8 +L 2.545455,8,2.909091,7.636364 +L 2.909091,7.636364,2.909091,6.909091 +L 2.909091,6.909091,2.545455,6.181818 +L 2.545455,6.181818,2.181818,5.818182 + +#EOF diff --git a/pycam/share/fonts/romant.cxf b/pycam/share/fonts/romant.cxf new file mode 100644 index 00000000..426d55b1 --- /dev/null +++ b/pycam/share/fonts/romant.cxf @@ -0,0 +1,4651 @@ +# Format: QCad II Font +# Creator: Adam Radlowski's "dodajf" program - GRASS font translator +# Version: 1.0.0 +# Name: Roman Triplex +# LetterSpacing: 3.0 +# WordSpacing: 6.75 +# LineSpacingFactor: 1.0 +# Author: Hershey fonts +# Author: Adam Radlowski (Polish) + +[!] 22 +L 0.266667,5.6,0,5.333333 +L 0,5.333333,0,4.8 +L 0,4.8,0.266667,2.666667 +L 0.266667,5.6,0.266667,1.866667 +L 0.266667,1.866667,0.533333,1.866667 +L 0.266667,5.6,0.533333,5.6 +L 0.533333,5.6,0.533333,1.866667 +L 0.533333,5.6,0.8,5.333333 +L 0.8,5.333333,0.8,4.8 +L 0.8,4.8,0.533333,2.666667 +L 0.266667,0.8,0,0.533333 +L 0,0.533333,0,0.266667 +L 0,0.266667,0.266667,0 +L 0.266667,0,0.533333,0 +L 0.533333,0,0.8,0.266667 +L 0.8,0.266667,0.8,0.533333 +L 0.8,0.533333,0.533333,0.8 +L 0.533333,0.8,0.266667,0.8 +L 0.266667,0.533333,0.266667,0.266667 +L 0.266667,0.266667,0.533333,0.266667 +L 0.533333,0.266667,0.533333,0.533333 +L 0.533333,0.533333,0.266667,0.533333 + +["] 10 +L 0.266667,5.6,0,5.333333 +L 0,5.333333,0,3.733333 +L 0.266667,5.333333,0,3.733333 +L 0.266667,5.6,0.533333,5.333333 +L 0.533333,5.333333,0,3.733333 +L 2.666667,5.6,2.4,5.333333 +L 2.4,5.333333,2.4,3.733333 +L 2.666667,5.333333,2.4,3.733333 +L 2.666667,5.6,2.933333,5.333333 +L 2.933333,5.333333,2.4,3.733333 + +[#] 4 +L 2.133333,5.6,0.266667,-1.866667 +L 3.733333,5.6,1.866667,-1.866667 +L 0.266667,2.666667,4,2.666667 +L 0,1.066667,3.733333,1.066667 + +[$] 46 +L 1.333333,6.666667,1.333333,-1.066667 +L 2.4,6.666667,2.4,-1.066667 +L 3.466667,4.266667,3.466667,4.533333 +L 3.466667,4.533333,3.2,4.533333 +L 3.2,4.533333,3.2,4 +L 3.2,4,3.733333,4 +L 3.733333,4,3.733333,4.533333 +L 3.733333,4.533333,3.466667,5.066667 +L 3.466667,5.066667,3.2,5.333333 +L 3.2,5.333333,2.4,5.6 +L 2.4,5.6,1.333333,5.6 +L 1.333333,5.6,0.533333,5.333333 +L 0.533333,5.333333,0,4.8 +L 0,4.8,0,4 +L 0,4,0.266667,3.466667 +L 0.266667,3.466667,1.066667,2.933333 +L 1.066667,2.933333,2.666667,2.4 +L 2.666667,2.4,3.2,2.133333 +L 3.2,2.133333,3.466667,1.6 +L 3.466667,1.6,3.466667,0.8 +L 3.466667,0.8,3.2,0.266667 +L 0.266667,4,0.533333,3.466667 +L 0.533333,3.466667,1.066667,3.2 +L 1.066667,3.2,2.666667,2.666667 +L 2.666667,2.666667,3.2,2.4 +L 3.2,2.4,3.466667,1.866667 +L 0.533333,5.333333,0.266667,4.8 +L 0.266667,4.8,0.266667,4.266667 +L 0.266667,4.266667,0.533333,3.733333 +L 0.533333,3.733333,1.066667,3.466667 +L 1.066667,3.466667,2.666667,2.933333 +L 2.666667,2.933333,3.466667,2.4 +L 3.466667,2.4,3.733333,1.866667 +L 3.733333,1.866667,3.733333,1.066667 +L 3.733333,1.066667,3.466667,0.533333 +L 3.466667,0.533333,3.2,0.266667 +L 3.2,0.266667,2.4,0 +L 2.4,0,1.333333,0 +L 1.333333,0,0.533333,0.266667 +L 0.533333,0.266667,0.266667,0.533333 +L 0.266667,0.533333,0,1.066667 +L 0,1.066667,0,1.6 +L 0,1.6,0.533333,1.6 +L 0.533333,1.6,0.533333,1.066667 +L 0.533333,1.066667,0.266667,1.066667 +L 0.266667,1.066667,0.266667,1.333333 + +[%] 26 +L 4.8,5.6,0,0 +L 1.333333,5.6,1.866667,5.066667 +L 1.866667,5.066667,1.866667,4.533333 +L 1.866667,4.533333,1.6,4 +L 1.6,4,1.066667,3.733333 +L 1.066667,3.733333,0.533333,3.733333 +L 0.533333,3.733333,0,4.266667 +L 0,4.266667,0,4.8 +L 0,4.8,0.266667,5.333333 +L 0.266667,5.333333,0.8,5.6 +L 0.8,5.6,1.333333,5.6 +L 1.333333,5.6,1.866667,5.333333 +L 1.866667,5.333333,2.666667,5.066667 +L 2.666667,5.066667,3.466667,5.066667 +L 3.466667,5.066667,4.266667,5.333333 +L 4.266667,5.333333,4.8,5.6 +L 3.733333,1.866667,3.2,1.6 +L 3.2,1.6,2.933333,1.066667 +L 2.933333,1.066667,2.933333,0.533333 +L 2.933333,0.533333,3.466667,0 +L 3.466667,0,4,0 +L 4,0,4.533333,0.266667 +L 4.533333,0.266667,4.8,0.8 +L 4.8,0.8,4.8,1.333333 +L 4.8,1.333333,4.266667,1.866667 +L 4.266667,1.866667,3.733333,1.866667 + +[&] 58 +L 4.8,3.2,4.8,3.466667 +L 4.8,3.466667,4.533333,3.466667 +L 4.533333,3.466667,4.533333,2.933333 +L 4.533333,2.933333,5.066667,2.933333 +L 5.066667,2.933333,5.066667,3.466667 +L 5.066667,3.466667,4.8,3.733333 +L 4.8,3.733333,4.533333,3.733333 +L 4.533333,3.733333,4.266667,3.466667 +L 4.266667,3.466667,4,2.933333 +L 4,2.933333,3.466667,1.6 +L 3.466667,1.6,2.933333,0.8 +L 2.933333,0.8,2.4,0.266667 +L 2.4,0.266667,1.866667,0 +L 1.866667,0,0.8,0 +L 0.8,0,0.266667,0.266667 +L 0.266667,0.266667,0,0.8 +L 0,0.8,0,1.6 +L 0,1.6,0.266667,2.133333 +L 0.266667,2.133333,1.866667,3.2 +L 1.866667,3.2,2.4,3.733333 +L 2.4,3.733333,2.666667,4.266667 +L 2.666667,4.266667,2.666667,4.8 +L 2.666667,4.8,2.4,5.333333 +L 2.4,5.333333,1.866667,5.6 +L 1.866667,5.6,1.333333,5.333333 +L 1.333333,5.333333,1.066667,4.8 +L 1.066667,4.8,1.066667,4 +L 1.066667,4,1.333333,3.2 +L 1.333333,3.2,1.866667,2.4 +L 1.866667,2.4,2.933333,1.066667 +L 2.933333,1.066667,3.733333,0.266667 +L 3.733333,0.266667,4.266667,0 +L 4.266667,0,4.8,0 +L 4.8,0,5.066667,0.533333 +L 5.066667,0.533333,5.066667,0.8 +L 0.533333,0.266667,0.266667,0.8 +L 0.266667,0.8,0.266667,1.6 +L 0.266667,1.6,0.533333,2.133333 +L 0.533333,2.133333,0.8,2.4 +L 2.4,3.733333,2.666667,4.8 +L 2.666667,4.266667,2.4,5.333333 +L 1.333333,5.333333,1.066667,4.266667 +L 1.333333,3.466667,1.866667,2.666667 +L 1.866667,2.666667,2.933333,1.333333 +L 2.933333,1.333333,3.733333,0.533333 +L 3.733333,0.533333,4.266667,0.266667 +L 1.333333,0,0.8,0.266667 +L 0.8,0.266667,0.533333,0.8 +L 0.533333,0.8,0.533333,1.6 +L 0.533333,1.6,0.8,2.133333 +L 0.8,2.133333,1.866667,3.2 +L 1.066667,4.8,1.333333,3.733333 +L 1.333333,3.733333,2.133333,2.666667 +L 2.133333,2.666667,3.2,1.333333 +L 3.2,1.333333,4,0.533333 +L 4,0.533333,4.533333,0.266667 +L 4.533333,0.266667,4.8,0.266667 +L 4.8,0.266667,5.066667,0.533333 + +['] 16 +L 0.8,5.066667,0.533333,4.8 +L 0.533333,4.8,0.266667,4.8 +L 0.266667,4.8,0,5.066667 +L 0,5.066667,0,5.333333 +L 0,5.333333,0.266667,5.6 +L 0.266667,5.6,0.533333,5.6 +L 0.533333,5.6,0.8,5.333333 +L 0.8,5.333333,0.8,4.533333 +L 0.8,4.533333,0.533333,4 +L 0.533333,4,0,3.733333 +L 0.266667,5.333333,0.266667,5.066667 +L 0.266667,5.066667,0.533333,5.066667 +L 0.533333,5.066667,0.533333,5.333333 +L 0.533333,5.333333,0.266667,5.333333 +L 0.533333,4.8,0.8,4.533333 +L 0.8,5.066667,0.533333,4 + +[(] 21 +L 1.866667,6.666667,1.333333,6.133333 +L 1.333333,6.133333,0.8,5.333333 +L 0.8,5.333333,0.266667,4.266667 +L 0.266667,4.266667,0,2.933333 +L 0,2.933333,0,1.866667 +L 0,1.866667,0.266667,0.533333 +L 0.266667,0.533333,0.8,-0.533333 +L 0.8,-0.533333,1.333333,-1.333333 +L 1.333333,-1.333333,1.866667,-1.866667 +L 0.8,5.066667,0.533333,4.266667 +L 0.533333,4.266667,0.266667,3.2 +L 0.266667,3.2,0.266667,1.6 +L 0.266667,1.6,0.533333,0.533333 +L 0.533333,0.533333,0.8,-0.266667 +L 1.333333,6.133333,1.066667,5.6 +L 1.066667,5.6,0.8,4.8 +L 0.8,4.8,0.533333,3.2 +L 0.533333,3.2,0.533333,1.6 +L 0.533333,1.6,0.8,0 +L 0.8,0,1.066667,-0.8 +L 1.066667,-0.8,1.333333,-1.333333 + +[)] 21 +L 0,6.666667,0.533333,6.133333 +L 0.533333,6.133333,1.066667,5.333333 +L 1.066667,5.333333,1.6,4.266667 +L 1.6,4.266667,1.866667,2.933333 +L 1.866667,2.933333,1.866667,1.866667 +L 1.866667,1.866667,1.6,0.533333 +L 1.6,0.533333,1.066667,-0.533333 +L 1.066667,-0.533333,0.533333,-1.333333 +L 0.533333,-1.333333,0,-1.866667 +L 1.066667,5.066667,1.333333,4.266667 +L 1.333333,4.266667,1.6,3.2 +L 1.6,3.2,1.6,1.6 +L 1.6,1.6,1.333333,0.533333 +L 1.333333,0.533333,1.066667,-0.266667 +L 0.533333,6.133333,0.8,5.6 +L 0.8,5.6,1.066667,4.8 +L 1.066667,4.8,1.333333,3.2 +L 1.333333,3.2,1.333333,1.6 +L 1.333333,1.6,1.066667,0 +L 1.066667,0,0.8,-0.8 +L 0.8,-0.8,0.533333,-1.333333 + +[*] 21 +L 1.333333,5.6,1.066667,5.333333 +L 1.066667,5.333333,1.6,2.666667 +L 1.6,2.666667,1.333333,2.4 +L 1.333333,5.6,1.333333,2.4 +L 1.333333,5.6,1.6,5.333333 +L 1.6,5.333333,1.066667,2.666667 +L 1.066667,2.666667,1.333333,2.4 +L 0,4.8,0.266667,4.8 +L 0.266667,4.8,2.4,3.2 +L 2.4,3.2,2.666667,3.2 +L 0,4.8,2.666667,3.2 +L 0,4.8,0,4.533333 +L 0,4.533333,2.666667,3.466667 +L 2.666667,3.466667,2.666667,3.2 +L 2.666667,4.8,2.4,4.8 +L 2.4,4.8,0.266667,3.2 +L 0.266667,3.2,0,3.2 +L 2.666667,4.8,0,3.2 +L 2.666667,4.8,2.666667,4.533333 +L 2.666667,4.533333,0,3.466667 +L 0,3.466667,0,3.2 + +[+] 8 +L 2.133333,4.8,2.133333,0.266667 +L 2.133333,0.266667,2.4,0.266667 +L 2.133333,4.8,2.4,4.8 +L 2.4,4.8,2.4,0.266667 +L 0,2.666667,4.533333,2.666667 +L 4.533333,2.666667,4.533333,2.4 +L 0,2.666667,0,2.4 +L 0,2.4,4.533333,2.4 + +[,] 16 +L 0.8,0.266667,0.533333,0 +L 0.533333,0,0.266667,0 +L 0.266667,0,0,0.266667 +L 0,0.266667,0,0.533333 +L 0,0.533333,0.266667,0.8 +L 0.266667,0.8,0.533333,0.8 +L 0.533333,0.8,0.8,0.533333 +L 0.8,0.533333,0.8,-0.266667 +L 0.8,-0.266667,0.533333,-0.8 +L 0.533333,-0.8,0,-1.066667 +L 0.266667,0.533333,0.266667,0.266667 +L 0.266667,0.266667,0.533333,0.266667 +L 0.533333,0.266667,0.533333,0.533333 +L 0.533333,0.533333,0.266667,0.533333 +L 0.533333,0,0.8,-0.266667 +L 0.8,0.266667,0.533333,-0.8 + +[-] 4 +L 0,2.666667,4.533333,2.666667 +L 4.533333,2.666667,4.533333,2.4 +L 0,2.666667,0,2.4 +L 0,2.4,4.533333,2.4 + +[.] 12 +L 0.266667,0.8,0,0.533333 +L 0,0.533333,0,0.266667 +L 0,0.266667,0.266667,0 +L 0.266667,0,0.533333,0 +L 0.533333,0,0.8,0.266667 +L 0.8,0.266667,0.8,0.533333 +L 0.8,0.533333,0.533333,0.8 +L 0.533333,0.8,0.266667,0.8 +L 0.266667,0.533333,0.266667,0.266667 +L 0.266667,0.266667,0.533333,0.266667 +L 0.533333,0.266667,0.533333,0.533333 +L 0.533333,0.533333,0.266667,0.533333 + +[/] 4 +L 2.666667,6.666667,0,-1.866667 +L 0,-1.866667,0,-1.866667 +L 2.666667,6.666667,2.666667,6.666667 +L 2.666667,6.666667,0,-1.866667 + +[0] 40 +L 1.6,5.6,0.8,5.333333 +L 0.8,5.333333,0.266667,4.533333 +L 0.266667,4.533333,0,3.2 +L 0,3.2,0,2.4 +L 0,2.4,0.266667,1.066667 +L 0.266667,1.066667,0.8,0.266667 +L 0.8,0.266667,1.6,0 +L 1.6,0,2.133333,0 +L 2.133333,0,2.933333,0.266667 +L 2.933333,0.266667,3.466667,1.066667 +L 3.466667,1.066667,3.733333,2.4 +L 3.733333,2.4,3.733333,3.2 +L 3.733333,3.2,3.466667,4.533333 +L 3.466667,4.533333,2.933333,5.333333 +L 2.933333,5.333333,2.133333,5.6 +L 2.133333,5.6,1.6,5.6 +L 0.8,5.066667,0.533333,4.533333 +L 0.533333,4.533333,0.266667,3.466667 +L 0.266667,3.466667,0.266667,2.133333 +L 0.266667,2.133333,0.533333,1.066667 +L 0.533333,1.066667,0.8,0.533333 +L 2.933333,0.533333,3.2,1.066667 +L 3.2,1.066667,3.466667,2.133333 +L 3.466667,2.133333,3.466667,3.466667 +L 3.466667,3.466667,3.2,4.533333 +L 3.2,4.533333,2.933333,5.066667 +L 1.6,5.6,1.066667,5.333333 +L 1.066667,5.333333,0.8,4.8 +L 0.8,4.8,0.533333,3.466667 +L 0.533333,3.466667,0.533333,2.133333 +L 0.533333,2.133333,0.8,0.8 +L 0.8,0.8,1.066667,0.266667 +L 1.066667,0.266667,1.6,0 +L 2.133333,0,2.666667,0.266667 +L 2.666667,0.266667,2.933333,0.8 +L 2.933333,0.8,3.2,2.133333 +L 3.2,2.133333,3.2,3.466667 +L 3.2,3.466667,2.933333,4.8 +L 2.933333,4.8,2.666667,5.333333 +L 2.666667,5.333333,2.133333,5.6 + +[1] 10 +L 1.066667,5.066667,1.066667,0 +L 1.333333,5.066667,1.333333,0.266667 +L 1.6,5.6,1.6,0 +L 1.6,5.6,0.8,4.8 +L 0.8,4.8,0.266667,4.533333 +L 0,0,2.666667,0 +L 1.066667,0.266667,0.533333,0 +L 1.066667,0.533333,0.8,0 +L 1.6,0.533333,1.866667,0 +L 1.6,0.266667,2.133333,0 + +[2] 48 +L 0.266667,4.533333,0.266667,4.266667 +L 0.266667,4.266667,0.533333,4.266667 +L 0.533333,4.266667,0.533333,4.533333 +L 0.533333,4.533333,0.266667,4.533333 +L 0.266667,4.8,0.533333,4.8 +L 0.533333,4.8,0.8,4.533333 +L 0.8,4.533333,0.8,4.266667 +L 0.8,4.266667,0.533333,4 +L 0.533333,4,0.266667,4 +L 0.266667,4,0,4.266667 +L 0,4.266667,0,4.533333 +L 0,4.533333,0.266667,5.066667 +L 0.266667,5.066667,0.533333,5.333333 +L 0.533333,5.333333,1.333333,5.6 +L 1.333333,5.6,2.4,5.6 +L 2.4,5.6,3.2,5.333333 +L 3.2,5.333333,3.466667,5.066667 +L 3.466667,5.066667,3.733333,4.533333 +L 3.733333,4.533333,3.733333,4 +L 3.733333,4,3.466667,3.466667 +L 3.466667,3.466667,2.666667,2.933333 +L 2.666667,2.933333,1.333333,2.4 +L 1.333333,2.4,0.8,2.133333 +L 0.8,2.133333,0.266667,1.6 +L 0.266667,1.6,0,0.8 +L 0,0.8,0,0 +L 3.2,5.066667,3.466667,4.533333 +L 3.466667,4.533333,3.466667,4 +L 3.466667,4,3.2,3.466667 +L 2.4,5.6,2.933333,5.333333 +L 2.933333,5.333333,3.2,4.533333 +L 3.2,4.533333,3.2,4 +L 3.2,4,2.933333,3.466667 +L 2.933333,3.466667,2.4,2.933333 +L 2.4,2.933333,1.333333,2.4 +L 0,0.533333,0.266667,0.8 +L 0.266667,0.8,0.8,0.8 +L 0.8,0.8,2.133333,0.533333 +L 2.133333,0.533333,3.2,0.533333 +L 3.2,0.533333,3.733333,0.8 +L 0.8,0.8,2.133333,0.266667 +L 2.133333,0.266667,3.2,0.266667 +L 3.2,0.266667,3.466667,0.533333 +L 0.8,0.8,2.133333,0 +L 2.133333,0,3.2,0 +L 3.2,0,3.466667,0.266667 +L 3.466667,0.266667,3.733333,0.8 +L 3.733333,0.8,3.733333,1.333333 + +[3] 60 +L 0.266667,4.533333,0.266667,4.266667 +L 0.266667,4.266667,0.533333,4.266667 +L 0.533333,4.266667,0.533333,4.533333 +L 0.533333,4.533333,0.266667,4.533333 +L 0.266667,4.8,0.533333,4.8 +L 0.533333,4.8,0.8,4.533333 +L 0.8,4.533333,0.8,4.266667 +L 0.8,4.266667,0.533333,4 +L 0.533333,4,0.266667,4 +L 0.266667,4,0,4.266667 +L 0,4.266667,0,4.533333 +L 0,4.533333,0.266667,5.066667 +L 0.266667,5.066667,0.533333,5.333333 +L 0.533333,5.333333,1.333333,5.6 +L 1.333333,5.6,2.4,5.6 +L 2.4,5.6,3.2,5.333333 +L 3.2,5.333333,3.466667,4.8 +L 3.466667,4.8,3.466667,4 +L 3.466667,4,3.2,3.466667 +L 3.2,3.466667,2.4,3.2 +L 2.933333,5.333333,3.2,4.8 +L 3.2,4.8,3.2,4 +L 3.2,4,2.933333,3.466667 +L 2.133333,5.6,2.666667,5.333333 +L 2.666667,5.333333,2.933333,4.8 +L 2.933333,4.8,2.933333,4 +L 2.933333,4,2.666667,3.466667 +L 2.666667,3.466667,2.133333,3.2 +L 1.6,3.2,2.4,3.2 +L 2.4,3.2,2.933333,2.933333 +L 2.933333,2.933333,3.466667,2.4 +L 3.466667,2.4,3.733333,1.866667 +L 3.733333,1.866667,3.733333,1.066667 +L 3.733333,1.066667,3.466667,0.533333 +L 3.466667,0.533333,3.2,0.266667 +L 3.2,0.266667,2.4,0 +L 2.4,0,1.333333,0 +L 1.333333,0,0.533333,0.266667 +L 0.533333,0.266667,0.266667,0.533333 +L 0.266667,0.533333,0,1.066667 +L 0,1.066667,0,1.333333 +L 0,1.333333,0.266667,1.6 +L 0.266667,1.6,0.533333,1.6 +L 0.533333,1.6,0.8,1.333333 +L 0.8,1.333333,0.8,1.066667 +L 0.8,1.066667,0.533333,0.8 +L 0.533333,0.8,0.266667,0.8 +L 3.2,2.4,3.466667,1.866667 +L 3.466667,1.866667,3.466667,1.066667 +L 3.466667,1.066667,3.2,0.533333 +L 2.133333,3.2,2.666667,2.933333 +L 2.666667,2.933333,2.933333,2.666667 +L 2.933333,2.666667,3.2,1.866667 +L 3.2,1.866667,3.2,1.066667 +L 3.2,1.066667,2.933333,0.266667 +L 2.933333,0.266667,2.4,0 +L 0.266667,1.333333,0.266667,1.066667 +L 0.266667,1.066667,0.533333,1.066667 +L 0.533333,1.066667,0.533333,1.333333 +L 0.533333,1.333333,0.266667,1.333333 + +[4] 10 +L 2.4,4.8,2.4,0 +L 2.666667,5.066667,2.666667,0.266667 +L 2.933333,5.6,2.933333,0 +L 2.933333,5.6,0,1.6 +L 0,1.6,4.266667,1.6 +L 1.6,0,3.733333,0 +L 2.4,0.266667,1.866667,0 +L 2.4,0.533333,2.133333,0 +L 2.933333,0.533333,3.2,0 +L 2.933333,0.266667,3.466667,0 + +[5] 41 +L 0.533333,5.6,0,2.933333 +L 0,2.933333,0.533333,3.466667 +L 0.533333,3.466667,1.333333,3.733333 +L 1.333333,3.733333,2.133333,3.733333 +L 2.133333,3.733333,2.933333,3.466667 +L 2.933333,3.466667,3.466667,2.933333 +L 3.466667,2.933333,3.733333,2.133333 +L 3.733333,2.133333,3.733333,1.6 +L 3.733333,1.6,3.466667,0.8 +L 3.466667,0.8,2.933333,0.266667 +L 2.933333,0.266667,2.133333,0 +L 2.133333,0,1.333333,0 +L 1.333333,0,0.533333,0.266667 +L 0.533333,0.266667,0.266667,0.533333 +L 0.266667,0.533333,0,1.066667 +L 0,1.066667,0,1.333333 +L 0,1.333333,0.266667,1.6 +L 0.266667,1.6,0.533333,1.6 +L 0.533333,1.6,0.8,1.333333 +L 0.8,1.333333,0.8,1.066667 +L 0.8,1.066667,0.533333,0.8 +L 0.533333,0.8,0.266667,0.8 +L 3.2,2.933333,3.466667,2.4 +L 3.466667,2.4,3.466667,1.333333 +L 3.466667,1.333333,3.2,0.8 +L 2.133333,3.733333,2.666667,3.466667 +L 2.666667,3.466667,2.933333,3.2 +L 2.933333,3.2,3.2,2.4 +L 3.2,2.4,3.2,1.333333 +L 3.2,1.333333,2.933333,0.533333 +L 2.933333,0.533333,2.666667,0.266667 +L 2.666667,0.266667,2.133333,0 +L 0.266667,1.333333,0.266667,1.066667 +L 0.266667,1.066667,0.533333,1.066667 +L 0.533333,1.066667,0.533333,1.333333 +L 0.533333,1.333333,0.266667,1.333333 +L 0.533333,5.6,3.2,5.6 +L 0.533333,5.333333,2.666667,5.333333 +L 0.533333,5.066667,1.6,5.066667 +L 1.6,5.066667,2.666667,5.333333 +L 2.666667,5.333333,3.2,5.6 + +[6] 57 +L 2.933333,4.8,2.933333,4.533333 +L 2.933333,4.533333,3.2,4.533333 +L 3.2,4.533333,3.2,4.8 +L 3.2,4.8,2.933333,4.8 +L 3.2,5.066667,2.933333,5.066667 +L 2.933333,5.066667,2.666667,4.8 +L 2.666667,4.8,2.666667,4.533333 +L 2.666667,4.533333,2.933333,4.266667 +L 2.933333,4.266667,3.2,4.266667 +L 3.2,4.266667,3.466667,4.533333 +L 3.466667,4.533333,3.466667,4.8 +L 3.466667,4.8,3.2,5.333333 +L 3.2,5.333333,2.666667,5.6 +L 2.666667,5.6,1.866667,5.6 +L 1.866667,5.6,1.066667,5.333333 +L 1.066667,5.333333,0.533333,4.8 +L 0.533333,4.8,0.266667,4.266667 +L 0.266667,4.266667,0,3.2 +L 0,3.2,0,1.6 +L 0,1.6,0.266667,0.8 +L 0.266667,0.8,0.8,0.266667 +L 0.8,0.266667,1.6,0 +L 1.6,0,2.133333,0 +L 2.133333,0,2.933333,0.266667 +L 2.933333,0.266667,3.466667,0.8 +L 3.466667,0.8,3.733333,1.6 +L 3.733333,1.6,3.733333,1.866667 +L 3.733333,1.866667,3.466667,2.666667 +L 3.466667,2.666667,2.933333,3.2 +L 2.933333,3.2,2.133333,3.466667 +L 2.133333,3.466667,1.6,3.466667 +L 1.6,3.466667,1.066667,3.2 +L 1.066667,3.2,0.8,2.933333 +L 0.8,2.933333,0.533333,2.4 +L 0.8,4.8,0.533333,4.266667 +L 0.533333,4.266667,0.266667,3.2 +L 0.266667,3.2,0.266667,1.6 +L 0.266667,1.6,0.533333,0.8 +L 0.533333,0.8,0.8,0.533333 +L 3.2,0.8,3.466667,1.333333 +L 3.466667,1.333333,3.466667,2.133333 +L 3.466667,2.133333,3.2,2.666667 +L 1.866667,5.6,1.333333,5.333333 +L 1.333333,5.333333,1.066667,5.066667 +L 1.066667,5.066667,0.8,4.533333 +L 0.8,4.533333,0.533333,3.466667 +L 0.533333,3.466667,0.533333,1.6 +L 0.533333,1.6,0.8,0.8 +L 0.8,0.8,1.066667,0.266667 +L 1.066667,0.266667,1.6,0 +L 2.133333,0,2.666667,0.266667 +L 2.666667,0.266667,2.933333,0.533333 +L 2.933333,0.533333,3.2,1.333333 +L 3.2,1.333333,3.2,2.133333 +L 3.2,2.133333,2.933333,2.933333 +L 2.933333,2.933333,2.666667,3.2 +L 2.666667,3.2,2.133333,3.466667 + +[7] 29 +L 0,5.6,0,4 +L 3.733333,5.6,3.733333,4.8 +L 3.733333,4.8,3.466667,4 +L 3.466667,4,2.4,2.666667 +L 2.4,2.666667,2.133333,2.133333 +L 2.133333,2.133333,1.866667,1.066667 +L 1.866667,1.066667,1.866667,0 +L 2.133333,2.4,1.866667,1.866667 +L 1.866667,1.866667,1.6,1.066667 +L 1.6,1.066667,1.6,0 +L 3.466667,4,2.133333,2.666667 +L 2.133333,2.666667,1.6,1.866667 +L 1.6,1.866667,1.333333,1.066667 +L 1.333333,1.066667,1.333333,0 +L 1.333333,0,1.866667,0 +L 0,4.533333,0.266667,5.066667 +L 0.266667,5.066667,0.8,5.6 +L 0.8,5.6,1.333333,5.6 +L 1.333333,5.6,2.666667,4.8 +L 2.666667,4.8,3.2,4.8 +L 3.2,4.8,3.466667,5.066667 +L 3.466667,5.066667,3.733333,5.6 +L 0.533333,5.066667,0.8,5.333333 +L 0.8,5.333333,1.333333,5.333333 +L 1.333333,5.333333,1.866667,5.066667 +L 0,4.533333,0.266667,4.8 +L 0.266667,4.8,0.8,5.066667 +L 0.8,5.066667,1.333333,5.066667 +L 1.333333,5.066667,2.666667,4.8 + +[8] 59 +L 1.333333,5.6,0.533333,5.333333 +L 0.533333,5.333333,0.266667,4.8 +L 0.266667,4.8,0.266667,4 +L 0.266667,4,0.533333,3.466667 +L 0.533333,3.466667,1.333333,3.2 +L 1.333333,3.2,2.4,3.2 +L 2.4,3.2,3.2,3.466667 +L 3.2,3.466667,3.466667,4 +L 3.466667,4,3.466667,4.8 +L 3.466667,4.8,3.2,5.333333 +L 3.2,5.333333,2.4,5.6 +L 2.4,5.6,1.333333,5.6 +L 0.8,5.333333,0.533333,4.8 +L 0.533333,4.8,0.533333,4 +L 0.533333,4,0.8,3.466667 +L 2.933333,3.466667,3.2,4 +L 3.2,4,3.2,4.8 +L 3.2,4.8,2.933333,5.333333 +L 1.333333,5.6,1.066667,5.333333 +L 1.066667,5.333333,0.8,4.8 +L 0.8,4.8,0.8,4 +L 0.8,4,1.066667,3.466667 +L 1.066667,3.466667,1.333333,3.2 +L 2.4,3.2,2.666667,3.466667 +L 2.666667,3.466667,2.933333,4 +L 2.933333,4,2.933333,4.8 +L 2.933333,4.8,2.666667,5.333333 +L 2.666667,5.333333,2.4,5.6 +L 1.333333,3.2,0.533333,2.933333 +L 0.533333,2.933333,0.266667,2.666667 +L 0.266667,2.666667,0,2.133333 +L 0,2.133333,0,1.066667 +L 0,1.066667,0.266667,0.533333 +L 0.266667,0.533333,0.533333,0.266667 +L 0.533333,0.266667,1.333333,0 +L 1.333333,0,2.4,0 +L 2.4,0,3.2,0.266667 +L 3.2,0.266667,3.466667,0.533333 +L 3.466667,0.533333,3.733333,1.066667 +L 3.733333,1.066667,3.733333,2.133333 +L 3.733333,2.133333,3.466667,2.666667 +L 3.466667,2.666667,3.2,2.933333 +L 3.2,2.933333,2.4,3.2 +L 0.533333,2.666667,0.266667,2.133333 +L 0.266667,2.133333,0.266667,1.066667 +L 0.266667,1.066667,0.533333,0.533333 +L 3.2,0.533333,3.466667,1.066667 +L 3.466667,1.066667,3.466667,2.133333 +L 3.466667,2.133333,3.2,2.666667 +L 1.333333,3.2,0.8,2.933333 +L 0.8,2.933333,0.533333,2.133333 +L 0.533333,2.133333,0.533333,1.066667 +L 0.533333,1.066667,0.8,0.266667 +L 0.8,0.266667,1.333333,0 +L 2.4,0,2.933333,0.266667 +L 2.933333,0.266667,3.2,1.066667 +L 3.2,1.066667,3.2,2.133333 +L 3.2,2.133333,2.933333,2.933333 +L 2.933333,2.933333,2.4,3.2 + +[9] 57 +L 0.533333,1.066667,0.533333,0.8 +L 0.533333,0.8,0.8,0.8 +L 0.8,0.8,0.8,1.066667 +L 0.8,1.066667,0.533333,1.066667 +L 3.2,3.2,2.933333,2.666667 +L 2.933333,2.666667,2.666667,2.4 +L 2.666667,2.4,2.133333,2.133333 +L 2.133333,2.133333,1.6,2.133333 +L 1.6,2.133333,0.8,2.4 +L 0.8,2.4,0.266667,2.933333 +L 0.266667,2.933333,0,3.733333 +L 0,3.733333,0,4 +L 0,4,0.266667,4.8 +L 0.266667,4.8,0.8,5.333333 +L 0.8,5.333333,1.6,5.6 +L 1.6,5.6,2.133333,5.6 +L 2.133333,5.6,2.933333,5.333333 +L 2.933333,5.333333,3.466667,4.8 +L 3.466667,4.8,3.733333,4 +L 3.733333,4,3.733333,2.4 +L 3.733333,2.4,3.466667,1.333333 +L 3.466667,1.333333,3.2,0.8 +L 3.2,0.8,2.666667,0.266667 +L 2.666667,0.266667,1.866667,0 +L 1.866667,0,1.066667,0 +L 1.066667,0,0.533333,0.266667 +L 0.533333,0.266667,0.266667,0.8 +L 0.266667,0.8,0.266667,1.066667 +L 0.266667,1.066667,0.533333,1.333333 +L 0.533333,1.333333,0.8,1.333333 +L 0.8,1.333333,1.066667,1.066667 +L 1.066667,1.066667,1.066667,0.8 +L 1.066667,0.8,0.8,0.533333 +L 0.8,0.533333,0.533333,0.533333 +L 0.533333,2.933333,0.266667,3.466667 +L 0.266667,3.466667,0.266667,4.266667 +L 0.266667,4.266667,0.533333,4.8 +L 2.933333,5.066667,3.2,4.8 +L 3.2,4.8,3.466667,4 +L 3.466667,4,3.466667,2.4 +L 3.466667,2.4,3.2,1.333333 +L 3.2,1.333333,2.933333,0.8 +L 1.6,2.133333,1.066667,2.4 +L 1.066667,2.4,0.8,2.666667 +L 0.8,2.666667,0.533333,3.466667 +L 0.533333,3.466667,0.533333,4.266667 +L 0.533333,4.266667,0.8,5.066667 +L 0.8,5.066667,1.066667,5.333333 +L 1.066667,5.333333,1.6,5.6 +L 2.133333,5.6,2.666667,5.333333 +L 2.666667,5.333333,2.933333,4.8 +L 2.933333,4.8,3.2,4 +L 3.2,4,3.2,2.133333 +L 3.2,2.133333,2.933333,1.066667 +L 2.933333,1.066667,2.666667,0.533333 +L 2.666667,0.533333,2.4,0.266667 +L 2.4,0.266667,1.866667,0 + +[:] 24 +L 0.266667,3.733333,0,3.466667 +L 0,3.466667,0,3.2 +L 0,3.2,0.266667,2.933333 +L 0.266667,2.933333,0.533333,2.933333 +L 0.533333,2.933333,0.8,3.2 +L 0.8,3.2,0.8,3.466667 +L 0.8,3.466667,0.533333,3.733333 +L 0.533333,3.733333,0.266667,3.733333 +L 0.266667,3.466667,0.266667,3.2 +L 0.266667,3.2,0.533333,3.2 +L 0.533333,3.2,0.533333,3.466667 +L 0.533333,3.466667,0.266667,3.466667 +L 0.266667,0.8,0,0.533333 +L 0,0.533333,0,0.266667 +L 0,0.266667,0.266667,0 +L 0.266667,0,0.533333,0 +L 0.533333,0,0.8,0.266667 +L 0.8,0.266667,0.8,0.533333 +L 0.8,0.533333,0.533333,0.8 +L 0.533333,0.8,0.266667,0.8 +L 0.266667,0.533333,0.266667,0.266667 +L 0.266667,0.266667,0.533333,0.266667 +L 0.533333,0.266667,0.533333,0.533333 +L 0.533333,0.533333,0.266667,0.533333 + +[;] 28 +L 0.266667,3.733333,0,3.466667 +L 0,3.466667,0,3.2 +L 0,3.2,0.266667,2.933333 +L 0.266667,2.933333,0.533333,2.933333 +L 0.533333,2.933333,0.8,3.2 +L 0.8,3.2,0.8,3.466667 +L 0.8,3.466667,0.533333,3.733333 +L 0.533333,3.733333,0.266667,3.733333 +L 0.266667,3.466667,0.266667,3.2 +L 0.266667,3.2,0.533333,3.2 +L 0.533333,3.2,0.533333,3.466667 +L 0.533333,3.466667,0.266667,3.466667 +L 0.8,0.266667,0.533333,0 +L 0.533333,0,0.266667,0 +L 0.266667,0,0,0.266667 +L 0,0.266667,0,0.533333 +L 0,0.533333,0.266667,0.8 +L 0.266667,0.8,0.533333,0.8 +L 0.533333,0.8,0.8,0.533333 +L 0.8,0.533333,0.8,-0.266667 +L 0.8,-0.266667,0.533333,-0.8 +L 0.533333,-0.8,0,-1.066667 +L 0.266667,0.533333,0.266667,0.266667 +L 0.266667,0.266667,0.533333,0.266667 +L 0.533333,0.266667,0.533333,0.533333 +L 0.533333,0.533333,0.266667,0.533333 +L 0.533333,0,0.8,-0.266667 +L 0.8,0.266667,0.533333,-0.8 + +[<] 2 +L 4.266667,4.8,0,2.4 +L 0,2.4,4.266667,0 + +[=] 8 +L 0,3.733333,4.533333,3.733333 +L 4.533333,3.733333,4.533333,3.466667 +L 0,3.733333,0,3.466667 +L 0,3.466667,4.533333,3.466667 +L 0,1.6,4.533333,1.6 +L 4.533333,1.6,4.533333,1.333333 +L 0,1.6,0,1.333333 +L 0,1.333333,4.533333,1.333333 + +[>] 2 +L 0,4.8,4.266667,2.4 +L 4.266667,2.4,0,0 + +[?] 40 +L 0.266667,4.266667,0.266667,4.533333 +L 0.266667,4.533333,0.533333,4.533333 +L 0.533333,4.533333,0.533333,4 +L 0.533333,4,0,4 +L 0,4,0,4.533333 +L 0,4.533333,0.266667,5.066667 +L 0.266667,5.066667,0.533333,5.333333 +L 0.533333,5.333333,1.066667,5.6 +L 1.066667,5.6,2.133333,5.6 +L 2.133333,5.6,2.933333,5.333333 +L 2.933333,5.333333,3.2,5.066667 +L 3.2,5.066667,3.466667,4.533333 +L 3.466667,4.533333,3.466667,4 +L 3.466667,4,3.2,3.466667 +L 3.2,3.466667,2.933333,3.2 +L 2.933333,3.2,1.866667,2.666667 +L 2.933333,5.066667,3.2,4.8 +L 3.2,4.8,3.2,3.733333 +L 3.2,3.733333,2.933333,3.466667 +L 2.133333,5.6,2.666667,5.333333 +L 2.666667,5.333333,2.933333,4.8 +L 2.933333,4.8,2.933333,3.733333 +L 2.933333,3.733333,2.666667,3.2 +L 2.666667,3.2,2.4,2.933333 +L 1.6,2.666667,1.6,1.866667 +L 1.6,1.866667,1.866667,1.866667 +L 1.866667,1.866667,1.866667,2.666667 +L 1.866667,2.666667,1.6,2.666667 +L 1.6,0.8,1.333333,0.533333 +L 1.333333,0.533333,1.333333,0.266667 +L 1.333333,0.266667,1.6,0 +L 1.6,0,1.866667,0 +L 1.866667,0,2.133333,0.266667 +L 2.133333,0.266667,2.133333,0.533333 +L 2.133333,0.533333,1.866667,0.8 +L 1.866667,0.8,1.6,0.8 +L 1.6,0.533333,1.6,0.266667 +L 1.6,0.266667,1.866667,0.266667 +L 1.866667,0.266667,1.866667,0.533333 +L 1.866667,0.533333,1.6,0.533333 + +[@] 48 +L 4,3.466667,3.733333,4 +L 3.733333,4,3.2,4.266667 +L 3.2,4.266667,2.4,4.266667 +L 2.4,4.266667,1.866667,4 +L 1.866667,4,1.6,3.733333 +L 1.6,3.733333,1.333333,2.933333 +L 1.333333,2.933333,1.333333,2.133333 +L 1.333333,2.133333,1.6,1.6 +L 1.6,1.6,2.133333,1.333333 +L 2.133333,1.333333,2.933333,1.333333 +L 2.933333,1.333333,3.466667,1.6 +L 3.466667,1.6,3.733333,2.133333 +L 2.4,4.266667,1.866667,3.733333 +L 1.866667,3.733333,1.6,2.933333 +L 1.6,2.933333,1.6,2.133333 +L 1.6,2.133333,1.866667,1.6 +L 1.866667,1.6,2.133333,1.333333 +L 4,4.266667,3.733333,2.133333 +L 3.733333,2.133333,3.733333,1.6 +L 3.733333,1.6,4.266667,1.333333 +L 4.266667,1.333333,4.8,1.333333 +L 4.8,1.333333,5.333333,1.866667 +L 5.333333,1.866667,5.6,2.666667 +L 5.6,2.666667,5.6,3.2 +L 5.6,3.2,5.333333,4 +L 5.333333,4,5.066667,4.533333 +L 5.066667,4.533333,4.533333,5.066667 +L 4.533333,5.066667,4,5.333333 +L 4,5.333333,3.2,5.6 +L 3.2,5.6,2.4,5.6 +L 2.4,5.6,1.6,5.333333 +L 1.6,5.333333,1.066667,5.066667 +L 1.066667,5.066667,0.533333,4.533333 +L 0.533333,4.533333,0.266667,4 +L 0.266667,4,0,3.2 +L 0,3.2,0,2.4 +L 0,2.4,0.266667,1.6 +L 0.266667,1.6,0.533333,1.066667 +L 0.533333,1.066667,1.066667,0.533333 +L 1.066667,0.533333,1.6,0.266667 +L 1.6,0.266667,2.4,0 +L 2.4,0,3.2,0 +L 3.2,0,4,0.266667 +L 4,0.266667,4.533333,0.533333 +L 4.533333,0.533333,4.8,0.8 +L 4.266667,4.266667,4,2.133333 +L 4,2.133333,4,1.6 +L 4,1.6,4.266667,1.333333 + +[A] 12 +L 2.4,5.6,0.533333,0.266667 +L 2.133333,4.8,3.733333,0 +L 2.4,4.8,4,0 +L 2.4,5.6,4.266667,0 +L 1.066667,1.6,3.466667,1.6 +L 0,0,1.6,0 +L 2.933333,0,4.8,0 +L 0.533333,0.266667,0.266667,0 +L 0.533333,0.266667,1.066667,0 +L 3.733333,0.266667,3.2,0 +L 3.733333,0.533333,3.466667,0 +L 4,0.533333,4.533333,0 + +[B] 44 +L 0.8,5.6,0.8,0 +L 1.066667,5.333333,1.066667,0.266667 +L 1.333333,5.6,1.333333,0 +L 0,5.6,3.2,5.6 +L 3.2,5.6,4,5.333333 +L 4,5.333333,4.266667,5.066667 +L 4.266667,5.066667,4.533333,4.533333 +L 4.533333,4.533333,4.533333,4 +L 4.533333,4,4.266667,3.466667 +L 4.266667,3.466667,4,3.2 +L 4,3.2,3.2,2.933333 +L 4,5.066667,4.266667,4.533333 +L 4.266667,4.533333,4.266667,4 +L 4.266667,4,4,3.466667 +L 3.2,5.6,3.733333,5.333333 +L 3.733333,5.333333,4,4.8 +L 4,4.8,4,3.733333 +L 4,3.733333,3.733333,3.2 +L 3.733333,3.2,3.2,2.933333 +L 1.333333,2.933333,3.2,2.933333 +L 3.2,2.933333,4,2.666667 +L 4,2.666667,4.266667,2.4 +L 4.266667,2.4,4.533333,1.866667 +L 4.533333,1.866667,4.533333,1.066667 +L 4.533333,1.066667,4.266667,0.533333 +L 4.266667,0.533333,4,0.266667 +L 4,0.266667,3.2,0 +L 3.2,0,0,0 +L 4,2.4,4.266667,1.866667 +L 4.266667,1.866667,4.266667,1.066667 +L 4.266667,1.066667,4,0.533333 +L 3.2,2.933333,3.733333,2.666667 +L 3.733333,2.666667,4,2.133333 +L 4,2.133333,4,0.8 +L 4,0.8,3.733333,0.266667 +L 3.733333,0.266667,3.2,0 +L 0.266667,5.6,0.8,5.333333 +L 0.533333,5.6,0.8,5.066667 +L 1.6,5.6,1.333333,5.066667 +L 1.866667,5.6,1.333333,5.333333 +L 0.8,0.266667,0.266667,0 +L 0.8,0.533333,0.533333,0 +L 1.333333,0.533333,1.6,0 +L 1.333333,0.266667,1.866667,0 + +[C] 31 +L 3.733333,4.8,4,5.6 +L 4,5.6,4,4 +L 4,4,3.733333,4.8 +L 3.733333,4.8,3.2,5.333333 +L 3.2,5.333333,2.666667,5.6 +L 2.666667,5.6,1.866667,5.6 +L 1.866667,5.6,1.066667,5.333333 +L 1.066667,5.333333,0.533333,4.8 +L 0.533333,4.8,0.266667,4.266667 +L 0.266667,4.266667,0,3.466667 +L 0,3.466667,0,2.133333 +L 0,2.133333,0.266667,1.333333 +L 0.266667,1.333333,0.533333,0.8 +L 0.533333,0.8,1.066667,0.266667 +L 1.066667,0.266667,1.866667,0 +L 1.866667,0,2.666667,0 +L 2.666667,0,3.2,0.266667 +L 3.2,0.266667,3.733333,0.8 +L 3.733333,0.8,4,1.333333 +L 0.8,4.8,0.533333,4.266667 +L 0.533333,4.266667,0.266667,3.466667 +L 0.266667,3.466667,0.266667,2.133333 +L 0.266667,2.133333,0.533333,1.333333 +L 0.533333,1.333333,0.8,0.8 +L 1.866667,5.6,1.333333,5.333333 +L 1.333333,5.333333,0.8,4.533333 +L 0.8,4.533333,0.533333,3.466667 +L 0.533333,3.466667,0.533333,2.133333 +L 0.533333,2.133333,0.8,1.066667 +L 0.8,1.066667,1.333333,0.266667 +L 1.333333,0.266667,1.866667,0 + +[D] 34 +L 0.8,5.6,0.8,0 +L 1.066667,5.333333,1.066667,0.266667 +L 1.333333,5.6,1.333333,0 +L 0,5.6,2.666667,5.6 +L 2.666667,5.6,3.466667,5.333333 +L 3.466667,5.333333,4,4.8 +L 4,4.8,4.266667,4.266667 +L 4.266667,4.266667,4.533333,3.466667 +L 4.533333,3.466667,4.533333,2.133333 +L 4.533333,2.133333,4.266667,1.333333 +L 4.266667,1.333333,4,0.8 +L 4,0.8,3.466667,0.266667 +L 3.466667,0.266667,2.666667,0 +L 2.666667,0,0,0 +L 3.733333,4.8,4,4.266667 +L 4,4.266667,4.266667,3.466667 +L 4.266667,3.466667,4.266667,2.133333 +L 4.266667,2.133333,4,1.333333 +L 4,1.333333,3.733333,0.8 +L 2.666667,5.6,3.2,5.333333 +L 3.2,5.333333,3.733333,4.533333 +L 3.733333,4.533333,4,3.466667 +L 4,3.466667,4,2.133333 +L 4,2.133333,3.733333,1.066667 +L 3.733333,1.066667,3.2,0.266667 +L 3.2,0.266667,2.666667,0 +L 0.266667,5.6,0.8,5.333333 +L 0.533333,5.6,0.8,5.066667 +L 1.6,5.6,1.333333,5.066667 +L 1.866667,5.6,1.333333,5.333333 +L 0.8,0.266667,0.266667,0 +L 0.8,0.533333,0.533333,0 +L 1.333333,0.533333,1.6,0 +L 1.333333,0.266667,1.866667,0 + +[E] 31 +L 0.8,5.6,0.8,0 +L 1.066667,5.333333,1.066667,0.266667 +L 1.333333,5.6,1.333333,0 +L 0,5.6,4.266667,5.6 +L 4.266667,5.6,4.266667,4 +L 1.333333,2.933333,2.933333,2.933333 +L 2.933333,4,2.933333,1.866667 +L 0,0,4.266667,0 +L 4.266667,0,4.266667,1.6 +L 0.266667,5.6,0.8,5.333333 +L 0.533333,5.6,0.8,5.066667 +L 1.6,5.6,1.333333,5.066667 +L 1.866667,5.6,1.333333,5.333333 +L 2.933333,5.6,4.266667,5.333333 +L 3.466667,5.6,4.266667,5.066667 +L 3.733333,5.6,4.266667,4.8 +L 4,5.6,4.266667,4 +L 2.933333,4,2.666667,2.933333 +L 2.666667,2.933333,2.933333,1.866667 +L 2.933333,3.466667,2.4,2.933333 +L 2.4,2.933333,2.933333,2.4 +L 2.933333,3.2,1.866667,2.933333 +L 1.866667,2.933333,2.933333,2.666667 +L 0.8,0.266667,0.266667,0 +L 0.8,0.533333,0.533333,0 +L 1.333333,0.533333,1.6,0 +L 1.333333,0.266667,1.866667,0 +L 2.933333,0,4.266667,0.266667 +L 3.466667,0,4.266667,0.533333 +L 3.733333,0,4.266667,0.8 +L 4,0,4.266667,1.6 + +[F] 26 +L 0.8,5.6,0.8,0 +L 1.066667,5.333333,1.066667,0.266667 +L 1.333333,5.6,1.333333,0 +L 0,5.6,4.266667,5.6 +L 4.266667,5.6,4.266667,4 +L 1.333333,2.933333,2.933333,2.933333 +L 2.933333,4,2.933333,1.866667 +L 0,0,2.133333,0 +L 0.266667,5.6,0.8,5.333333 +L 0.533333,5.6,0.8,5.066667 +L 1.6,5.6,1.333333,5.066667 +L 1.866667,5.6,1.333333,5.333333 +L 2.933333,5.6,4.266667,5.333333 +L 3.466667,5.6,4.266667,5.066667 +L 3.733333,5.6,4.266667,4.8 +L 4,5.6,4.266667,4 +L 2.933333,4,2.666667,2.933333 +L 2.666667,2.933333,2.933333,1.866667 +L 2.933333,3.466667,2.4,2.933333 +L 2.4,2.933333,2.933333,2.4 +L 2.933333,3.2,1.866667,2.933333 +L 1.866667,2.933333,2.933333,2.666667 +L 0.8,0.266667,0.266667,0 +L 0.8,0.533333,0.533333,0 +L 1.333333,0.533333,1.6,0 +L 1.333333,0.266667,1.866667,0 + +[G] 40 +L 3.733333,4.8,4,5.6 +L 4,5.6,4,4 +L 4,4,3.733333,4.8 +L 3.733333,4.8,3.2,5.333333 +L 3.2,5.333333,2.666667,5.6 +L 2.666667,5.6,1.866667,5.6 +L 1.866667,5.6,1.066667,5.333333 +L 1.066667,5.333333,0.533333,4.8 +L 0.533333,4.8,0.266667,4.266667 +L 0.266667,4.266667,0,3.466667 +L 0,3.466667,0,2.133333 +L 0,2.133333,0.266667,1.333333 +L 0.266667,1.333333,0.533333,0.8 +L 0.533333,0.8,1.066667,0.266667 +L 1.066667,0.266667,1.866667,0 +L 1.866667,0,2.666667,0 +L 2.666667,0,3.2,0.266667 +L 3.2,0.266667,3.733333,0.266667 +L 3.733333,0.266667,4,0 +L 4,0,4,2.133333 +L 0.8,4.8,0.533333,4.266667 +L 0.533333,4.266667,0.266667,3.466667 +L 0.266667,3.466667,0.266667,2.133333 +L 0.266667,2.133333,0.533333,1.333333 +L 0.533333,1.333333,0.8,0.8 +L 1.866667,5.6,1.333333,5.333333 +L 1.333333,5.333333,0.8,4.533333 +L 0.8,4.533333,0.533333,3.466667 +L 0.533333,3.466667,0.533333,2.133333 +L 0.533333,2.133333,0.8,1.066667 +L 0.8,1.066667,1.333333,0.266667 +L 1.333333,0.266667,1.866667,0 +L 3.733333,1.866667,3.733333,0.533333 +L 3.466667,2.133333,3.466667,0.533333 +L 3.466667,0.533333,3.2,0.266667 +L 2.666667,2.133333,4.8,2.133333 +L 2.933333,2.133333,3.466667,1.866667 +L 3.2,2.133333,3.466667,1.6 +L 4.266667,2.133333,4,1.6 +L 4.533333,2.133333,4,1.866667 + +[H] 27 +L 0.8,5.6,0.8,0 +L 1.066667,5.333333,1.066667,0.266667 +L 1.333333,5.6,1.333333,0 +L 4,5.6,4,0 +L 4.266667,5.333333,4.266667,0.266667 +L 4.533333,5.6,4.533333,0 +L 0,5.6,2.133333,5.6 +L 3.2,5.6,5.333333,5.6 +L 1.333333,2.933333,4,2.933333 +L 0,0,2.133333,0 +L 3.2,0,5.333333,0 +L 0.266667,5.6,0.8,5.333333 +L 0.533333,5.6,0.8,5.066667 +L 1.6,5.6,1.333333,5.066667 +L 1.866667,5.6,1.333333,5.333333 +L 3.466667,5.6,4,5.333333 +L 3.733333,5.6,4,5.066667 +L 4.8,5.6,4.533333,5.066667 +L 5.066667,5.6,4.533333,5.333333 +L 0.8,0.266667,0.266667,0 +L 0.8,0.533333,0.533333,0 +L 1.333333,0.533333,1.6,0 +L 1.333333,0.266667,1.866667,0 +L 4,0.266667,3.466667,0 +L 4,0.533333,3.733333,0 +L 4.533333,0.533333,4.8,0 +L 4.533333,0.266667,5.066667,0 + +[I] 13 +L 0.8,5.6,0.8,0 +L 1.066667,5.333333,1.066667,0.266667 +L 1.333333,5.6,1.333333,0 +L 0,5.6,2.133333,5.6 +L 0,0,2.133333,0 +L 0.266667,5.6,0.8,5.333333 +L 0.533333,5.6,0.8,5.066667 +L 1.6,5.6,1.333333,5.066667 +L 1.866667,5.6,1.333333,5.333333 +L 0.8,0.266667,0.266667,0 +L 0.8,0.533333,0.533333,0 +L 1.333333,0.533333,1.6,0 +L 1.333333,0.266667,1.866667,0 + +[J] 27 +L 1.866667,5.6,1.866667,1.066667 +L 1.866667,1.066667,1.6,0.266667 +L 1.6,0.266667,1.333333,0 +L 2.133333,5.333333,2.133333,1.066667 +L 2.133333,1.066667,1.866667,0.266667 +L 2.4,5.6,2.4,1.066667 +L 2.4,1.066667,2.133333,0.266667 +L 2.133333,0.266667,1.333333,0 +L 1.333333,0,0.8,0 +L 0.8,0,0.266667,0.266667 +L 0.266667,0.266667,0,0.8 +L 0,0.8,0,1.333333 +L 0,1.333333,0.266667,1.6 +L 0.266667,1.6,0.533333,1.6 +L 0.533333,1.6,0.8,1.333333 +L 0.8,1.333333,0.8,1.066667 +L 0.8,1.066667,0.533333,0.8 +L 0.533333,0.8,0.266667,0.8 +L 0.266667,1.333333,0.266667,1.066667 +L 0.266667,1.066667,0.533333,1.066667 +L 0.533333,1.066667,0.533333,1.333333 +L 0.533333,1.333333,0.266667,1.333333 +L 1.066667,5.6,3.2,5.6 +L 1.333333,5.6,1.866667,5.333333 +L 1.6,5.6,1.866667,5.066667 +L 2.666667,5.6,2.4,5.066667 +L 2.933333,5.6,2.4,5.333333 + +[K] 23 +L 0.8,5.6,0.8,0 +L 1.066667,5.333333,1.066667,0.266667 +L 1.333333,5.6,1.333333,0 +L 4.266667,5.333333,1.333333,2.4 +L 2.133333,2.933333,4,0 +L 2.4,2.933333,4.266667,0 +L 2.4,3.466667,4.533333,0 +L 0,5.6,2.133333,5.6 +L 3.466667,5.6,5.066667,5.6 +L 0,0,2.133333,0 +L 3.2,0,5.066667,0 +L 0.266667,5.6,0.8,5.333333 +L 0.533333,5.6,0.8,5.066667 +L 1.6,5.6,1.333333,5.066667 +L 1.866667,5.6,1.333333,5.333333 +L 4,5.6,4.266667,5.333333 +L 4.8,5.6,4.266667,5.333333 +L 0.8,0.266667,0.266667,0 +L 0.8,0.533333,0.533333,0 +L 1.333333,0.533333,1.6,0 +L 1.333333,0.266667,1.866667,0 +L 4,0.533333,3.466667,0 +L 4,0.533333,4.8,0 + +[L] 18 +L 0.8,5.6,0.8,0 +L 1.066667,5.333333,1.066667,0.266667 +L 1.333333,5.6,1.333333,0 +L 0,5.6,2.133333,5.6 +L 0,0,4,0 +L 4,0,4,1.6 +L 0.266667,5.6,0.8,5.333333 +L 0.533333,5.6,0.8,5.066667 +L 1.6,5.6,1.333333,5.066667 +L 1.866667,5.6,1.333333,5.333333 +L 0.8,0.266667,0.266667,0 +L 0.8,0.533333,0.533333,0 +L 1.333333,0.533333,1.6,0 +L 1.333333,0.266667,1.866667,0 +L 2.666667,0,4,0.266667 +L 3.2,0,4,0.533333 +L 3.466667,0,4,0.8 +L 3.733333,0,4,1.6 + +[M] 21 +L 0.8,5.6,0.8,0.266667 +L 0.8,5.6,2.666667,0 +L 1.066667,5.6,2.666667,0.8 +L 1.333333,5.6,2.933333,0.8 +L 4.533333,5.6,2.666667,0 +L 4.533333,5.6,4.533333,0 +L 4.8,5.333333,4.8,0.266667 +L 5.066667,5.6,5.066667,0 +L 0,5.6,1.333333,5.6 +L 4.533333,5.6,5.866667,5.6 +L 0,0,1.6,0 +L 3.733333,0,5.866667,0 +L 0.266667,5.6,0.8,5.333333 +L 5.333333,5.6,5.066667,5.066667 +L 5.6,5.6,5.066667,5.333333 +L 0.8,0.266667,0.266667,0 +L 0.8,0.266667,1.333333,0 +L 4.533333,0.266667,4,0 +L 4.533333,0.533333,4.266667,0 +L 5.066667,0.533333,5.333333,0 +L 5.066667,0.266667,5.6,0 + +[N] 13 +L 0.8,5.6,0.8,0.266667 +L 0.8,5.6,4.533333,0 +L 1.066667,5.6,4.266667,0.8 +L 1.333333,5.6,4.533333,0.8 +L 4.533333,5.333333,4.533333,0 +L 0,5.6,1.333333,5.6 +L 3.733333,5.6,5.333333,5.6 +L 0,0,1.6,0 +L 0.266667,5.6,0.8,5.333333 +L 4,5.6,4.533333,5.333333 +L 5.066667,5.6,4.533333,5.333333 +L 0.8,0.266667,0.266667,0 +L 0.8,0.266667,1.333333,0 + +[O] 44 +L 1.866667,5.6,1.066667,5.333333 +L 1.066667,5.333333,0.533333,4.8 +L 0.533333,4.8,0.266667,4.266667 +L 0.266667,4.266667,0,3.2 +L 0,3.2,0,2.4 +L 0,2.4,0.266667,1.333333 +L 0.266667,1.333333,0.533333,0.8 +L 0.533333,0.8,1.066667,0.266667 +L 1.066667,0.266667,1.866667,0 +L 1.866667,0,2.4,0 +L 2.4,0,3.2,0.266667 +L 3.2,0.266667,3.733333,0.8 +L 3.733333,0.8,4,1.333333 +L 4,1.333333,4.266667,2.4 +L 4.266667,2.4,4.266667,3.2 +L 4.266667,3.2,4,4.266667 +L 4,4.266667,3.733333,4.8 +L 3.733333,4.8,3.2,5.333333 +L 3.2,5.333333,2.4,5.6 +L 2.4,5.6,1.866667,5.6 +L 0.8,4.8,0.533333,4.266667 +L 0.533333,4.266667,0.266667,3.466667 +L 0.266667,3.466667,0.266667,2.133333 +L 0.266667,2.133333,0.533333,1.333333 +L 0.533333,1.333333,0.8,0.8 +L 3.466667,0.8,3.733333,1.333333 +L 3.733333,1.333333,4,2.133333 +L 4,2.133333,4,3.466667 +L 4,3.466667,3.733333,4.266667 +L 3.733333,4.266667,3.466667,4.8 +L 1.866667,5.6,1.333333,5.333333 +L 1.333333,5.333333,0.8,4.533333 +L 0.8,4.533333,0.533333,3.466667 +L 0.533333,3.466667,0.533333,2.133333 +L 0.533333,2.133333,0.8,1.066667 +L 0.8,1.066667,1.333333,0.266667 +L 1.333333,0.266667,1.866667,0 +L 2.4,0,2.933333,0.266667 +L 2.933333,0.266667,3.466667,1.066667 +L 3.466667,1.066667,3.733333,2.133333 +L 3.733333,2.133333,3.733333,3.466667 +L 3.733333,3.466667,3.466667,4.533333 +L 3.466667,4.533333,2.933333,5.333333 +L 2.933333,5.333333,2.4,5.6 + +[P] 29 +L 0.8,5.6,0.8,0 +L 1.066667,5.333333,1.066667,0.266667 +L 1.333333,5.6,1.333333,0 +L 0,5.6,3.2,5.6 +L 3.2,5.6,4,5.333333 +L 4,5.333333,4.266667,5.066667 +L 4.266667,5.066667,4.533333,4.533333 +L 4.533333,4.533333,4.533333,3.733333 +L 4.533333,3.733333,4.266667,3.2 +L 4.266667,3.2,4,2.933333 +L 4,2.933333,3.2,2.666667 +L 3.2,2.666667,1.333333,2.666667 +L 4,5.066667,4.266667,4.533333 +L 4.266667,4.533333,4.266667,3.733333 +L 4.266667,3.733333,4,3.2 +L 3.2,5.6,3.733333,5.333333 +L 3.733333,5.333333,4,4.8 +L 4,4.8,4,3.466667 +L 4,3.466667,3.733333,2.933333 +L 3.733333,2.933333,3.2,2.666667 +L 0,0,2.133333,0 +L 0.266667,5.6,0.8,5.333333 +L 0.533333,5.6,0.8,5.066667 +L 1.6,5.6,1.333333,5.066667 +L 1.866667,5.6,1.333333,5.333333 +L 0.8,0.266667,0.266667,0 +L 0.8,0.533333,0.533333,0 +L 1.333333,0.533333,1.6,0 +L 1.333333,0.266667,1.866667,0 + +[Q] 61 +L 1.866667,5.6,1.066667,5.333333 +L 1.066667,5.333333,0.533333,4.8 +L 0.533333,4.8,0.266667,4.266667 +L 0.266667,4.266667,0,3.2 +L 0,3.2,0,2.4 +L 0,2.4,0.266667,1.333333 +L 0.266667,1.333333,0.533333,0.8 +L 0.533333,0.8,1.066667,0.266667 +L 1.066667,0.266667,1.866667,0 +L 1.866667,0,2.4,0 +L 2.4,0,3.2,0.266667 +L 3.2,0.266667,3.733333,0.8 +L 3.733333,0.8,4,1.333333 +L 4,1.333333,4.266667,2.4 +L 4.266667,2.4,4.266667,3.2 +L 4.266667,3.2,4,4.266667 +L 4,4.266667,3.733333,4.8 +L 3.733333,4.8,3.2,5.333333 +L 3.2,5.333333,2.4,5.6 +L 2.4,5.6,1.866667,5.6 +L 0.8,4.8,0.533333,4.266667 +L 0.533333,4.266667,0.266667,3.466667 +L 0.266667,3.466667,0.266667,2.133333 +L 0.266667,2.133333,0.533333,1.333333 +L 0.533333,1.333333,0.8,0.8 +L 3.466667,0.8,3.733333,1.333333 +L 3.733333,1.333333,4,2.133333 +L 4,2.133333,4,3.466667 +L 4,3.466667,3.733333,4.266667 +L 3.733333,4.266667,3.466667,4.8 +L 1.866667,5.6,1.333333,5.333333 +L 1.333333,5.333333,0.8,4.533333 +L 0.8,4.533333,0.533333,3.466667 +L 0.533333,3.466667,0.533333,2.133333 +L 0.533333,2.133333,0.8,1.066667 +L 0.8,1.066667,1.333333,0.266667 +L 1.333333,0.266667,1.866667,0 +L 2.4,0,2.933333,0.266667 +L 2.933333,0.266667,3.466667,1.066667 +L 3.466667,1.066667,3.733333,2.133333 +L 3.733333,2.133333,3.733333,3.466667 +L 3.733333,3.466667,3.466667,4.533333 +L 3.466667,4.533333,2.933333,5.333333 +L 2.933333,5.333333,2.4,5.6 +L 1.066667,0.8,1.333333,1.333333 +L 1.333333,1.333333,1.866667,1.6 +L 1.866667,1.6,2.133333,1.6 +L 2.133333,1.6,2.666667,1.333333 +L 2.666667,1.333333,2.933333,0.8 +L 2.933333,0.8,3.2,-0.8 +L 3.2,-0.8,3.466667,-1.333333 +L 3.466667,-1.333333,4,-1.333333 +L 4,-1.333333,4.266667,-0.8 +L 4.266667,-0.8,4.266667,-0.266667 +L 3.2,-0.266667,3.466667,-0.8 +L 3.466667,-0.8,3.733333,-1.066667 +L 3.733333,-1.066667,4,-1.066667 +L 2.933333,0.8,3.466667,-0.533333 +L 3.466667,-0.533333,3.733333,-0.8 +L 3.733333,-0.8,4,-0.8 +L 4,-0.8,4.266667,-0.533333 + +[R] 44 +L 0.8,5.6,0.8,0 +L 1.066667,5.333333,1.066667,0.266667 +L 1.333333,5.6,1.333333,0 +L 0,5.6,3.2,5.6 +L 3.2,5.6,4,5.333333 +L 4,5.333333,4.266667,5.066667 +L 4.266667,5.066667,4.533333,4.533333 +L 4.533333,4.533333,4.533333,4 +L 4.533333,4,4.266667,3.466667 +L 4.266667,3.466667,4,3.2 +L 4,3.2,3.2,2.933333 +L 3.2,2.933333,1.333333,2.933333 +L 4,5.066667,4.266667,4.533333 +L 4.266667,4.533333,4.266667,4 +L 4.266667,4,4,3.466667 +L 3.2,5.6,3.733333,5.333333 +L 3.733333,5.333333,4,4.8 +L 4,4.8,4,3.733333 +L 4,3.733333,3.733333,3.2 +L 3.733333,3.2,3.2,2.933333 +L 2.4,2.933333,2.933333,2.666667 +L 2.933333,2.666667,3.2,2.133333 +L 3.2,2.133333,3.733333,0.533333 +L 3.733333,0.533333,4,0 +L 4,0,4.533333,0 +L 4.533333,0,4.8,0.533333 +L 4.8,0.533333,4.8,1.066667 +L 3.733333,1.066667,4,0.533333 +L 4,0.533333,4.266667,0.266667 +L 4.266667,0.266667,4.533333,0.266667 +L 2.933333,2.666667,3.2,2.4 +L 3.2,2.4,4,0.8 +L 4,0.8,4.266667,0.533333 +L 4.266667,0.533333,4.533333,0.533333 +L 4.533333,0.533333,4.8,0.8 +L 0,0,2.133333,0 +L 0.266667,5.6,0.8,5.333333 +L 0.533333,5.6,0.8,5.066667 +L 1.6,5.6,1.333333,5.066667 +L 1.866667,5.6,1.333333,5.333333 +L 0.8,0.266667,0.266667,0 +L 0.8,0.533333,0.533333,0 +L 1.333333,0.533333,1.6,0 +L 1.333333,0.266667,1.866667,0 + +[S] 38 +L 3.466667,4.8,3.733333,5.6 +L 3.733333,5.6,3.733333,4 +L 3.733333,4,3.466667,4.8 +L 3.466667,4.8,2.933333,5.333333 +L 2.933333,5.333333,2.133333,5.6 +L 2.133333,5.6,1.333333,5.6 +L 1.333333,5.6,0.533333,5.333333 +L 0.533333,5.333333,0,4.8 +L 0,4.8,0,4 +L 0,4,0.266667,3.466667 +L 0.266667,3.466667,1.066667,2.933333 +L 1.066667,2.933333,2.666667,2.4 +L 2.666667,2.4,3.2,2.133333 +L 3.2,2.133333,3.466667,1.6 +L 3.466667,1.6,3.466667,0.8 +L 3.466667,0.8,3.2,0.266667 +L 0.266667,4,0.533333,3.466667 +L 0.533333,3.466667,1.066667,3.2 +L 1.066667,3.2,2.666667,2.666667 +L 2.666667,2.666667,3.2,2.4 +L 3.2,2.4,3.466667,1.866667 +L 0.533333,5.333333,0.266667,4.8 +L 0.266667,4.8,0.266667,4.266667 +L 0.266667,4.266667,0.533333,3.733333 +L 0.533333,3.733333,1.066667,3.466667 +L 1.066667,3.466667,2.666667,2.933333 +L 2.666667,2.933333,3.466667,2.4 +L 3.466667,2.4,3.733333,1.866667 +L 3.733333,1.866667,3.733333,1.066667 +L 3.733333,1.066667,3.466667,0.533333 +L 3.466667,0.533333,3.2,0.266667 +L 3.2,0.266667,2.4,0 +L 2.4,0,1.6,0 +L 1.6,0,0.8,0.266667 +L 0.8,0.266667,0.266667,0.8 +L 0.266667,0.8,0,1.6 +L 0,1.6,0,0 +L 0,0,0.266667,0.8 + +[T] 19 +L 0,5.6,0,4 +L 1.866667,5.6,1.866667,0 +L 2.133333,5.333333,2.133333,0.266667 +L 2.4,5.6,2.4,0 +L 4.266667,5.6,4.266667,4 +L 0,5.6,4.266667,5.6 +L 1.066667,0,3.2,0 +L 0.266667,5.6,0,4 +L 0.533333,5.6,0,4.8 +L 0.8,5.6,0,5.066667 +L 1.333333,5.6,0,5.333333 +L 2.933333,5.6,4.266667,5.333333 +L 3.466667,5.6,4.266667,5.066667 +L 3.733333,5.6,4.266667,4.8 +L 4,5.6,4.266667,4 +L 1.866667,0.266667,1.333333,0 +L 1.866667,0.533333,1.6,0 +L 2.4,0.533333,2.666667,0 +L 2.4,0.266667,2.933333,0 + +[U] 23 +L 0.8,5.6,0.8,1.6 +L 0.8,1.6,1.066667,0.8 +L 1.066667,0.8,1.6,0.266667 +L 1.6,0.266667,2.4,0 +L 2.4,0,2.933333,0 +L 2.933333,0,3.733333,0.266667 +L 3.733333,0.266667,4.266667,0.8 +L 4.266667,0.8,4.533333,1.6 +L 4.533333,1.6,4.533333,5.333333 +L 1.066667,5.333333,1.066667,1.333333 +L 1.066667,1.333333,1.333333,0.8 +L 1.333333,5.6,1.333333,1.333333 +L 1.333333,1.333333,1.6,0.533333 +L 1.6,0.533333,1.866667,0.266667 +L 1.866667,0.266667,2.4,0 +L 0,5.6,2.133333,5.6 +L 3.733333,5.6,5.333333,5.6 +L 0.266667,5.6,0.8,5.333333 +L 0.533333,5.6,0.8,5.066667 +L 1.6,5.6,1.333333,5.066667 +L 1.866667,5.6,1.333333,5.333333 +L 4,5.6,4.533333,5.333333 +L 5.066667,5.6,4.533333,5.333333 + +[V] 12 +L 0.533333,5.6,2.4,0 +L 0.8,5.6,2.4,0.8 +L 2.4,0.8,2.4,0 +L 1.066667,5.6,2.666667,0.8 +L 4.266667,5.333333,2.4,0 +L 0,5.6,1.866667,5.6 +L 3.2,5.6,4.8,5.6 +L 0.266667,5.6,0.8,5.066667 +L 1.333333,5.6,1.066667,5.066667 +L 1.6,5.6,1.066667,5.333333 +L 3.733333,5.6,4.266667,5.333333 +L 4.533333,5.6,4.266667,5.333333 + +[W] 21 +L 0.8,5.6,1.866667,0 +L 1.066667,5.6,1.866667,1.333333 +L 1.866667,1.333333,1.866667,0 +L 1.333333,5.6,2.133333,1.333333 +L 2.933333,5.6,2.133333,1.333333 +L 2.133333,1.333333,1.866667,0 +L 2.933333,5.6,4,0 +L 3.2,5.6,4,1.333333 +L 4,1.333333,4,0 +L 3.466667,5.6,4.266667,1.333333 +L 5.066667,5.333333,4.266667,1.333333 +L 4.266667,1.333333,4,0 +L 0,5.6,2.133333,5.6 +L 2.933333,5.6,3.466667,5.6 +L 4.266667,5.6,5.866667,5.6 +L 0.266667,5.6,1.066667,5.333333 +L 0.533333,5.6,1.066667,5.066667 +L 1.6,5.6,1.333333,5.066667 +L 1.866667,5.6,1.333333,5.333333 +L 4.533333,5.6,5.066667,5.333333 +L 5.6,5.6,5.066667,5.333333 + +[X] 18 +L 0.533333,5.6,3.733333,0 +L 0.8,5.6,4,0 +L 1.066667,5.6,4.266667,0 +L 4,5.333333,0.8,0.266667 +L 0,5.6,1.866667,5.6 +L 3.2,5.6,4.8,5.6 +L 0,0,1.6,0 +L 2.933333,0,4.8,0 +L 0.266667,5.6,1.066667,5.066667 +L 1.333333,5.6,1.066667,5.066667 +L 1.6,5.6,1.066667,5.333333 +L 3.466667,5.6,4,5.333333 +L 4.533333,5.6,4,5.333333 +L 0.8,0.266667,0.266667,0 +L 0.8,0.266667,1.333333,0 +L 3.733333,0.266667,3.2,0 +L 3.733333,0.533333,3.466667,0 +L 3.733333,0.533333,4.533333,0 + +[Y] 18 +L 0.533333,5.6,2.4,2.666667 +L 2.4,2.666667,2.4,0 +L 0.8,5.6,2.666667,2.666667 +L 2.666667,2.666667,2.666667,0.266667 +L 1.066667,5.6,2.933333,2.666667 +L 2.933333,2.666667,2.933333,0 +L 4.533333,5.333333,2.933333,2.666667 +L 0,5.6,1.866667,5.6 +L 3.733333,5.6,5.333333,5.6 +L 1.6,0,3.733333,0 +L 0.266667,5.6,0.8,5.333333 +L 1.6,5.6,1.066667,5.333333 +L 4,5.6,4.533333,5.333333 +L 5.066667,5.6,4.533333,5.333333 +L 2.4,0.266667,1.866667,0 +L 2.4,0.533333,2.133333,0 +L 2.933333,0.533333,3.2,0 +L 2.933333,0.266667,3.466667,0 + +[Z] 15 +L 3.733333,5.6,0,5.6 +L 0,5.6,0,4 +L 3.2,5.6,0,0 +L 3.466667,5.6,0.266667,0 +L 3.733333,5.6,0.533333,0 +L 0,0,3.733333,0 +L 3.733333,0,3.733333,1.6 +L 0.266667,5.6,0,4 +L 0.533333,5.6,0,4.8 +L 0.8,5.6,0,5.066667 +L 1.333333,5.6,0,5.333333 +L 2.4,0,3.733333,0.266667 +L 2.933333,0,3.733333,0.533333 +L 3.2,0,3.733333,0.8 +L 3.466667,0,3.733333,1.6 + +[[] 4 +L 0,6.666667,0,-1.866667 +L 0.266667,6.666667,0.266667,-1.866667 +L 0,6.666667,1.866667,6.666667 +L 0,-1.866667,1.866667,-1.866667 + +[\] 1 +L 0,5.6,3.733333,-0.8 + +[]] 4 +L 1.6,6.666667,1.6,-1.866667 +L 1.866667,6.666667,1.866667,-1.866667 +L 0,6.666667,1.866667,6.666667 +L 0,-1.866667,1.866667,-1.866667 + +[^] 5 +L 0.8,4,1.333333,4.8 +L 1.333333,4.8,1.866667,4 +L 0,3.2,1.333333,4.533333 +L 1.333333,4.533333,2.666667,3.2 +L 1.333333,4.533333,1.333333,0 + +[_] 1 +L 0,-0.533333,4.266667,-0.533333 + +[`] 16 +L 0.8,5.6,0.266667,5.333333 +L 0.266667,5.333333,0,4.8 +L 0,4.8,0,4 +L 0,4,0.266667,3.733333 +L 0.266667,3.733333,0.533333,3.733333 +L 0.533333,3.733333,0.8,4 +L 0.8,4,0.8,4.266667 +L 0.8,4.266667,0.533333,4.533333 +L 0.533333,4.533333,0.266667,4.533333 +L 0.266667,4.533333,0,4.266667 +L 0.266667,4.266667,0.266667,4 +L 0.266667,4,0.533333,4 +L 0.533333,4,0.533333,4.266667 +L 0.533333,4.266667,0.266667,4.266667 +L 0.266667,5.333333,0,4.266667 +L 0,4.8,0.266667,4.533333 + +[a] 42 +L 0.533333,2.933333,0.533333,3.2 +L 0.533333,3.2,0.8,3.2 +L 0.8,3.2,0.8,2.666667 +L 0.8,2.666667,0.266667,2.666667 +L 0.266667,2.666667,0.266667,3.2 +L 0.266667,3.2,0.533333,3.466667 +L 0.533333,3.466667,1.066667,3.733333 +L 1.066667,3.733333,2.133333,3.733333 +L 2.133333,3.733333,2.666667,3.466667 +L 2.666667,3.466667,2.933333,3.2 +L 2.933333,3.2,3.2,2.666667 +L 3.2,2.666667,3.2,0.8 +L 3.2,0.8,3.466667,0.266667 +L 3.466667,0.266667,3.733333,0 +L 2.666667,3.2,2.933333,2.666667 +L 2.933333,2.666667,2.933333,0.8 +L 2.933333,0.8,3.2,0.266667 +L 2.133333,3.733333,2.4,3.466667 +L 2.4,3.466667,2.666667,2.933333 +L 2.666667,2.933333,2.666667,0.8 +L 2.666667,0.8,2.933333,0.266667 +L 2.933333,0.266667,3.733333,0 +L 3.733333,0,4,0 +L 2.666667,2.4,2.4,2.133333 +L 2.4,2.133333,1.066667,1.866667 +L 1.066667,1.866667,0.266667,1.6 +L 0.266667,1.6,0,1.066667 +L 0,1.066667,0,0.8 +L 0,0.8,0.266667,0.266667 +L 0.266667,0.266667,1.066667,0 +L 1.066667,0,1.866667,0 +L 1.866667,0,2.4,0.266667 +L 2.4,0.266667,2.666667,0.8 +L 0.533333,1.6,0.266667,1.066667 +L 0.266667,1.066667,0.266667,0.8 +L 0.266667,0.8,0.533333,0.266667 +L 2.4,2.133333,1.333333,1.866667 +L 1.333333,1.866667,0.8,1.6 +L 0.8,1.6,0.533333,1.066667 +L 0.533333,1.066667,0.533333,0.8 +L 0.533333,0.8,0.8,0.266667 +L 0.8,0.266667,1.066667,0 + +[b] 31 +L 0.8,5.6,0.8,0 +L 0.8,0,1.066667,0.266667 +L 1.066667,0.266667,1.6,0.266667 +L 1.066667,5.333333,1.066667,0.533333 +L 0,5.6,1.333333,5.6 +L 1.333333,5.6,1.333333,0.266667 +L 1.333333,2.933333,1.6,3.466667 +L 1.6,3.466667,2.133333,3.733333 +L 2.133333,3.733333,2.666667,3.733333 +L 2.666667,3.733333,3.466667,3.466667 +L 3.466667,3.466667,4,2.933333 +L 4,2.933333,4.266667,2.133333 +L 4.266667,2.133333,4.266667,1.6 +L 4.266667,1.6,4,0.8 +L 4,0.8,3.466667,0.266667 +L 3.466667,0.266667,2.666667,0 +L 2.666667,0,2.133333,0 +L 2.133333,0,1.6,0.266667 +L 1.6,0.266667,1.333333,0.8 +L 3.733333,2.933333,4,2.4 +L 4,2.4,4,1.333333 +L 4,1.333333,3.733333,0.8 +L 2.666667,3.733333,3.2,3.466667 +L 3.2,3.466667,3.466667,3.2 +L 3.466667,3.2,3.733333,2.4 +L 3.733333,2.4,3.733333,1.333333 +L 3.733333,1.333333,3.466667,0.533333 +L 3.466667,0.533333,3.2,0.266667 +L 3.2,0.266667,2.666667,0 +L 0.266667,5.6,0.8,5.333333 +L 0.533333,5.6,0.8,5.066667 + +[c] 28 +L 3.2,2.666667,3.2,2.933333 +L 3.2,2.933333,2.933333,2.933333 +L 2.933333,2.933333,2.933333,2.4 +L 2.933333,2.4,3.466667,2.4 +L 3.466667,2.4,3.466667,2.933333 +L 3.466667,2.933333,2.933333,3.466667 +L 2.933333,3.466667,2.4,3.733333 +L 2.4,3.733333,1.6,3.733333 +L 1.6,3.733333,0.8,3.466667 +L 0.8,3.466667,0.266667,2.933333 +L 0.266667,2.933333,0,2.133333 +L 0,2.133333,0,1.6 +L 0,1.6,0.266667,0.8 +L 0.266667,0.8,0.8,0.266667 +L 0.8,0.266667,1.6,0 +L 1.6,0,2.133333,0 +L 2.133333,0,2.933333,0.266667 +L 2.933333,0.266667,3.466667,0.8 +L 0.533333,2.933333,0.266667,2.4 +L 0.266667,2.4,0.266667,1.333333 +L 0.266667,1.333333,0.533333,0.8 +L 1.6,3.733333,1.066667,3.466667 +L 1.066667,3.466667,0.8,3.2 +L 0.8,3.2,0.533333,2.4 +L 0.533333,2.4,0.533333,1.333333 +L 0.533333,1.333333,0.8,0.533333 +L 0.8,0.533333,1.066667,0.266667 +L 1.066667,0.266667,1.6,0 + +[d] 32 +L 2.933333,5.6,2.933333,0 +L 2.933333,0,4.266667,0 +L 3.2,5.333333,3.2,0.266667 +L 2.133333,5.6,3.466667,5.6 +L 3.466667,5.6,3.466667,0 +L 2.933333,2.933333,2.666667,3.466667 +L 2.666667,3.466667,2.133333,3.733333 +L 2.133333,3.733333,1.6,3.733333 +L 1.6,3.733333,0.8,3.466667 +L 0.8,3.466667,0.266667,2.933333 +L 0.266667,2.933333,0,2.133333 +L 0,2.133333,0,1.6 +L 0,1.6,0.266667,0.8 +L 0.266667,0.8,0.8,0.266667 +L 0.8,0.266667,1.6,0 +L 1.6,0,2.133333,0 +L 2.133333,0,2.666667,0.266667 +L 2.666667,0.266667,2.933333,0.8 +L 0.533333,2.933333,0.266667,2.4 +L 0.266667,2.4,0.266667,1.333333 +L 0.266667,1.333333,0.533333,0.8 +L 1.6,3.733333,1.066667,3.466667 +L 1.066667,3.466667,0.8,3.2 +L 0.8,3.2,0.533333,2.4 +L 0.533333,2.4,0.533333,1.333333 +L 0.533333,1.333333,0.8,0.533333 +L 0.8,0.533333,1.066667,0.266667 +L 1.066667,0.266667,1.6,0 +L 2.4,5.6,2.933333,5.333333 +L 2.666667,5.6,2.933333,5.066667 +L 3.466667,0.533333,3.733333,0 +L 3.466667,0.266667,4,0 + +[e] 31 +L 0.533333,2.133333,3.466667,2.133333 +L 3.466667,2.133333,3.466667,2.666667 +L 3.466667,2.666667,3.2,3.2 +L 3.2,3.2,2.933333,3.466667 +L 2.933333,3.466667,2.133333,3.733333 +L 2.133333,3.733333,1.6,3.733333 +L 1.6,3.733333,0.8,3.466667 +L 0.8,3.466667,0.266667,2.933333 +L 0.266667,2.933333,0,2.133333 +L 0,2.133333,0,1.6 +L 0,1.6,0.266667,0.8 +L 0.266667,0.8,0.8,0.266667 +L 0.8,0.266667,1.6,0 +L 1.6,0,2.133333,0 +L 2.133333,0,2.933333,0.266667 +L 2.933333,0.266667,3.466667,0.8 +L 3.2,2.4,3.2,2.666667 +L 3.2,2.666667,2.933333,3.2 +L 0.533333,2.933333,0.266667,2.4 +L 0.266667,2.4,0.266667,1.333333 +L 0.266667,1.333333,0.533333,0.8 +L 2.933333,2.133333,2.933333,2.933333 +L 2.933333,2.933333,2.666667,3.466667 +L 2.666667,3.466667,2.133333,3.733333 +L 1.6,3.733333,1.066667,3.466667 +L 1.066667,3.466667,0.8,3.2 +L 0.8,3.2,0.533333,2.4 +L 0.533333,2.4,0.533333,1.333333 +L 0.533333,1.333333,0.8,0.533333 +L 0.8,0.533333,1.066667,0.266667 +L 1.066667,0.266667,1.6,0 + +[f] 22 +L 2.666667,5.066667,2.666667,5.333333 +L 2.666667,5.333333,2.4,5.333333 +L 2.4,5.333333,2.4,4.8 +L 2.4,4.8,2.933333,4.8 +L 2.933333,4.8,2.933333,5.333333 +L 2.933333,5.333333,2.666667,5.6 +L 2.666667,5.6,1.866667,5.6 +L 1.866667,5.6,1.333333,5.333333 +L 1.333333,5.333333,1.066667,5.066667 +L 1.066667,5.066667,0.8,4.266667 +L 0.8,4.266667,0.8,0 +L 1.333333,5.066667,1.066667,4.266667 +L 1.066667,4.266667,1.066667,0.266667 +L 1.866667,5.6,1.6,5.333333 +L 1.6,5.333333,1.333333,4.8 +L 1.333333,4.8,1.333333,0 +L 0,3.733333,2.4,3.733333 +L 0,0,2.133333,0 +L 0.8,0.266667,0.266667,0 +L 0.8,0.533333,0.533333,0 +L 1.333333,0.533333,1.6,0 +L 1.333333,0.266667,1.866667,0 + +[g] 69 +L 3.466667,3.466667,3.733333,3.2 +L 3.733333,3.2,4,3.466667 +L 4,3.466667,3.733333,3.733333 +L 3.733333,3.733333,3.466667,3.733333 +L 3.466667,3.733333,2.933333,3.466667 +L 2.933333,3.466667,2.666667,3.2 +L 1.6,3.733333,1.066667,3.466667 +L 1.066667,3.466667,0.8,3.2 +L 0.8,3.2,0.533333,2.666667 +L 0.533333,2.666667,0.533333,2.133333 +L 0.533333,2.133333,0.8,1.6 +L 0.8,1.6,1.066667,1.333333 +L 1.066667,1.333333,1.6,1.066667 +L 1.6,1.066667,2.133333,1.066667 +L 2.133333,1.066667,2.666667,1.333333 +L 2.666667,1.333333,2.933333,1.6 +L 2.933333,1.6,3.2,2.133333 +L 3.2,2.133333,3.2,2.666667 +L 3.2,2.666667,2.933333,3.2 +L 2.933333,3.2,2.666667,3.466667 +L 2.666667,3.466667,2.133333,3.733333 +L 2.133333,3.733333,1.6,3.733333 +L 1.066667,3.2,0.8,2.666667 +L 0.8,2.666667,0.8,2.133333 +L 0.8,2.133333,1.066667,1.6 +L 2.666667,1.6,2.933333,2.133333 +L 2.933333,2.133333,2.933333,2.666667 +L 2.933333,2.666667,2.666667,3.2 +L 1.6,3.733333,1.333333,3.466667 +L 1.333333,3.466667,1.066667,2.933333 +L 1.066667,2.933333,1.066667,1.866667 +L 1.066667,1.866667,1.333333,1.333333 +L 1.333333,1.333333,1.6,1.066667 +L 2.133333,1.066667,2.4,1.333333 +L 2.4,1.333333,2.666667,1.866667 +L 2.666667,1.866667,2.666667,2.933333 +L 2.666667,2.933333,2.4,3.466667 +L 2.4,3.466667,2.133333,3.733333 +L 0.8,1.6,0.533333,1.333333 +L 0.533333,1.333333,0.266667,0.8 +L 0.266667,0.8,0.266667,0.533333 +L 0.266667,0.533333,0.533333,0 +L 0.533333,0,0.8,-0.266667 +L 0.8,-0.266667,1.6,-0.533333 +L 1.6,-0.533333,2.666667,-0.533333 +L 2.666667,-0.533333,3.466667,-0.8 +L 3.466667,-0.8,3.733333,-1.066667 +L 0.8,0,1.6,-0.266667 +L 1.6,-0.266667,2.666667,-0.266667 +L 2.666667,-0.266667,3.466667,-0.533333 +L 0.266667,0.533333,0.533333,0.266667 +L 0.533333,0.266667,1.333333,0 +L 1.333333,0,2.666667,0 +L 2.666667,0,3.466667,-0.266667 +L 3.466667,-0.266667,3.733333,-0.8 +L 3.733333,-0.8,3.733333,-1.066667 +L 3.733333,-1.066667,3.466667,-1.6 +L 3.466667,-1.6,2.666667,-1.866667 +L 2.666667,-1.866667,1.066667,-1.866667 +L 1.066667,-1.866667,0.266667,-1.6 +L 0.266667,-1.6,0,-1.066667 +L 0,-1.066667,0,-0.8 +L 0,-0.8,0.266667,-0.266667 +L 0.266667,-0.266667,1.066667,0 +L 1.066667,-1.866667,0.533333,-1.6 +L 0.533333,-1.6,0.266667,-1.066667 +L 0.266667,-1.066667,0.266667,-0.8 +L 0.266667,-0.8,0.533333,-0.266667 +L 0.533333,-0.266667,1.066667,0 + +[h] 29 +L 0.8,5.6,0.8,0 +L 1.066667,5.333333,1.066667,0.266667 +L 0,5.6,1.333333,5.6 +L 1.333333,5.6,1.333333,0 +L 1.333333,2.666667,1.6,3.2 +L 1.6,3.2,1.866667,3.466667 +L 1.866667,3.466667,2.4,3.733333 +L 2.4,3.733333,3.2,3.733333 +L 3.2,3.733333,3.733333,3.466667 +L 3.733333,3.466667,4,3.2 +L 4,3.2,4.266667,2.4 +L 4.266667,2.4,4.266667,0 +L 3.733333,3.2,4,2.4 +L 4,2.4,4,0.266667 +L 3.2,3.733333,3.466667,3.466667 +L 3.466667,3.466667,3.733333,2.666667 +L 3.733333,2.666667,3.733333,0 +L 0,0,2.133333,0 +L 2.933333,0,5.066667,0 +L 0.266667,5.6,0.8,5.333333 +L 0.533333,5.6,0.8,5.066667 +L 0.8,0.266667,0.266667,0 +L 0.8,0.533333,0.533333,0 +L 1.333333,0.533333,1.6,0 +L 1.333333,0.266667,1.866667,0 +L 3.733333,0.266667,3.2,0 +L 3.733333,0.533333,3.466667,0 +L 4.266667,0.533333,4.533333,0 +L 4.266667,0.266667,4.8,0 + +[i] 17 +L 0.8,5.6,0.8,5.066667 +L 0.8,5.066667,1.333333,5.066667 +L 1.333333,5.066667,1.333333,5.6 +L 1.333333,5.6,0.8,5.6 +L 1.066667,5.6,1.066667,5.066667 +L 0.8,5.333333,1.333333,5.333333 +L 0.8,3.733333,0.8,0 +L 1.066667,3.466667,1.066667,0.266667 +L 0,3.733333,1.333333,3.733333 +L 1.333333,3.733333,1.333333,0 +L 0,0,2.133333,0 +L 0.266667,3.733333,0.8,3.466667 +L 0.533333,3.733333,0.8,3.2 +L 0.8,0.266667,0.266667,0 +L 0.8,0.533333,0.533333,0 +L 1.333333,0.533333,1.6,0 +L 1.333333,0.266667,1.866667,0 + +[j] 25 +L 1.6,5.6,1.6,5.066667 +L 1.6,5.066667,2.133333,5.066667 +L 2.133333,5.066667,2.133333,5.6 +L 2.133333,5.6,1.6,5.6 +L 1.866667,5.6,1.866667,5.066667 +L 1.6,5.333333,2.133333,5.333333 +L 1.6,3.733333,1.6,-0.8 +L 1.6,-0.8,1.333333,-1.6 +L 1.333333,-1.6,1.066667,-1.866667 +L 1.866667,3.466667,1.866667,-0.533333 +L 1.866667,-0.533333,1.6,-1.333333 +L 0.8,3.733333,2.133333,3.733333 +L 2.133333,3.733333,2.133333,-0.533333 +L 2.133333,-0.533333,1.866667,-1.333333 +L 1.866667,-1.333333,1.6,-1.6 +L 1.6,-1.6,1.066667,-1.866667 +L 1.066667,-1.866667,0.266667,-1.866667 +L 0.266667,-1.866667,0,-1.6 +L 0,-1.6,0,-1.066667 +L 0,-1.066667,0.533333,-1.066667 +L 0.533333,-1.066667,0.533333,-1.6 +L 0.533333,-1.6,0.266667,-1.6 +L 0.266667,-1.6,0.266667,-1.333333 +L 1.066667,3.733333,1.6,3.466667 +L 1.333333,3.733333,1.6,3.2 + +[k] 21 +L 0.8,5.6,0.8,0 +L 1.066667,5.333333,1.066667,0.266667 +L 0,5.6,1.333333,5.6 +L 1.333333,5.6,1.333333,0 +L 3.733333,3.466667,1.333333,1.066667 +L 2.4,2.133333,4.266667,0 +L 2.4,1.866667,4,0 +L 2.133333,1.866667,3.733333,0 +L 2.933333,3.733333,4.8,3.733333 +L 0,0,2.133333,0 +L 2.933333,0,4.8,0 +L 0.266667,5.6,0.8,5.333333 +L 0.533333,5.6,0.8,5.066667 +L 3.2,3.733333,3.733333,3.466667 +L 4.533333,3.733333,3.733333,3.466667 +L 0.8,0.266667,0.266667,0 +L 0.8,0.533333,0.533333,0 +L 1.333333,0.533333,1.6,0 +L 1.333333,0.266667,1.866667,0 +L 3.733333,0.533333,3.2,0 +L 3.466667,0.533333,4.533333,0 + +[l] 11 +L 0.8,5.6,0.8,0 +L 1.066667,5.333333,1.066667,0.266667 +L 0,5.6,1.333333,5.6 +L 1.333333,5.6,1.333333,0 +L 0,0,2.133333,0 +L 0.266667,5.6,0.8,5.333333 +L 0.533333,5.6,0.8,5.066667 +L 0.8,0.266667,0.266667,0 +L 0.8,0.533333,0.533333,0 +L 1.333333,0.533333,1.6,0 +L 1.333333,0.266667,1.866667,0 + +[m] 47 +L 0.8,3.733333,0.8,0 +L 1.066667,3.466667,1.066667,0.266667 +L 0,3.733333,1.333333,3.733333 +L 1.333333,3.733333,1.333333,0 +L 1.333333,2.666667,1.6,3.2 +L 1.6,3.2,1.866667,3.466667 +L 1.866667,3.466667,2.4,3.733333 +L 2.4,3.733333,3.2,3.733333 +L 3.2,3.733333,3.733333,3.466667 +L 3.733333,3.466667,4,3.2 +L 4,3.2,4.266667,2.4 +L 4.266667,2.4,4.266667,0 +L 3.733333,3.2,4,2.4 +L 4,2.4,4,0.266667 +L 3.2,3.733333,3.466667,3.466667 +L 3.466667,3.466667,3.733333,2.666667 +L 3.733333,2.666667,3.733333,0 +L 4.266667,2.666667,4.533333,3.2 +L 4.533333,3.2,4.8,3.466667 +L 4.8,3.466667,5.333333,3.733333 +L 5.333333,3.733333,6.133333,3.733333 +L 6.133333,3.733333,6.666667,3.466667 +L 6.666667,3.466667,6.933333,3.2 +L 6.933333,3.2,7.2,2.4 +L 7.2,2.4,7.2,0 +L 6.666667,3.2,6.933333,2.4 +L 6.933333,2.4,6.933333,0.266667 +L 6.133333,3.733333,6.4,3.466667 +L 6.4,3.466667,6.666667,2.666667 +L 6.666667,2.666667,6.666667,0 +L 0,0,2.133333,0 +L 2.933333,0,5.066667,0 +L 5.866667,0,8,0 +L 0.266667,3.733333,0.8,3.466667 +L 0.533333,3.733333,0.8,3.2 +L 0.8,0.266667,0.266667,0 +L 0.8,0.533333,0.533333,0 +L 1.333333,0.533333,1.6,0 +L 1.333333,0.266667,1.866667,0 +L 3.733333,0.266667,3.2,0 +L 3.733333,0.533333,3.466667,0 +L 4.266667,0.533333,4.533333,0 +L 4.266667,0.266667,4.8,0 +L 6.666667,0.266667,6.133333,0 +L 6.666667,0.533333,6.4,0 +L 7.2,0.533333,7.466667,0 +L 7.2,0.266667,7.733333,0 + +[n] 29 +L 0.8,3.733333,0.8,0 +L 1.066667,3.466667,1.066667,0.266667 +L 0,3.733333,1.333333,3.733333 +L 1.333333,3.733333,1.333333,0 +L 1.333333,2.666667,1.6,3.2 +L 1.6,3.2,1.866667,3.466667 +L 1.866667,3.466667,2.4,3.733333 +L 2.4,3.733333,3.2,3.733333 +L 3.2,3.733333,3.733333,3.466667 +L 3.733333,3.466667,4,3.2 +L 4,3.2,4.266667,2.4 +L 4.266667,2.4,4.266667,0 +L 3.733333,3.2,4,2.4 +L 4,2.4,4,0.266667 +L 3.2,3.733333,3.466667,3.466667 +L 3.466667,3.466667,3.733333,2.666667 +L 3.733333,2.666667,3.733333,0 +L 0,0,2.133333,0 +L 2.933333,0,5.066667,0 +L 0.266667,3.733333,0.8,3.466667 +L 0.533333,3.733333,0.8,3.2 +L 0.8,0.266667,0.266667,0 +L 0.8,0.533333,0.533333,0 +L 1.333333,0.533333,1.6,0 +L 1.333333,0.266667,1.866667,0 +L 3.733333,0.266667,3.2,0 +L 3.733333,0.533333,3.466667,0 +L 4.266667,0.533333,4.533333,0 +L 4.266667,0.266667,4.8,0 + +[o] 36 +L 1.6,3.733333,0.8,3.466667 +L 0.8,3.466667,0.266667,2.933333 +L 0.266667,2.933333,0,2.133333 +L 0,2.133333,0,1.6 +L 0,1.6,0.266667,0.8 +L 0.266667,0.8,0.8,0.266667 +L 0.8,0.266667,1.6,0 +L 1.6,0,2.133333,0 +L 2.133333,0,2.933333,0.266667 +L 2.933333,0.266667,3.466667,0.8 +L 3.466667,0.8,3.733333,1.6 +L 3.733333,1.6,3.733333,2.133333 +L 3.733333,2.133333,3.466667,2.933333 +L 3.466667,2.933333,2.933333,3.466667 +L 2.933333,3.466667,2.133333,3.733333 +L 2.133333,3.733333,1.6,3.733333 +L 0.533333,2.933333,0.266667,2.4 +L 0.266667,2.4,0.266667,1.333333 +L 0.266667,1.333333,0.533333,0.8 +L 3.2,0.8,3.466667,1.333333 +L 3.466667,1.333333,3.466667,2.4 +L 3.466667,2.4,3.2,2.933333 +L 1.6,3.733333,1.066667,3.466667 +L 1.066667,3.466667,0.8,3.2 +L 0.8,3.2,0.533333,2.4 +L 0.533333,2.4,0.533333,1.333333 +L 0.533333,1.333333,0.8,0.533333 +L 0.8,0.533333,1.066667,0.266667 +L 1.066667,0.266667,1.6,0 +L 2.133333,0,2.666667,0.266667 +L 2.666667,0.266667,2.933333,0.533333 +L 2.933333,0.533333,3.2,1.333333 +L 3.2,1.333333,3.2,2.4 +L 3.2,2.4,2.933333,3.2 +L 2.933333,3.2,2.666667,3.466667 +L 2.666667,3.466667,2.133333,3.733333 + +[p] 34 +L 0.8,3.733333,0.8,-1.866667 +L 1.066667,3.466667,1.066667,-1.6 +L 0,3.733333,1.333333,3.733333 +L 1.333333,3.733333,1.333333,-1.866667 +L 1.333333,2.933333,1.6,3.466667 +L 1.6,3.466667,2.133333,3.733333 +L 2.133333,3.733333,2.666667,3.733333 +L 2.666667,3.733333,3.466667,3.466667 +L 3.466667,3.466667,4,2.933333 +L 4,2.933333,4.266667,2.133333 +L 4.266667,2.133333,4.266667,1.6 +L 4.266667,1.6,4,0.8 +L 4,0.8,3.466667,0.266667 +L 3.466667,0.266667,2.666667,0 +L 2.666667,0,2.133333,0 +L 2.133333,0,1.6,0.266667 +L 1.6,0.266667,1.333333,0.8 +L 3.733333,2.933333,4,2.4 +L 4,2.4,4,1.333333 +L 4,1.333333,3.733333,0.8 +L 2.666667,3.733333,3.2,3.466667 +L 3.2,3.466667,3.466667,3.2 +L 3.466667,3.2,3.733333,2.4 +L 3.733333,2.4,3.733333,1.333333 +L 3.733333,1.333333,3.466667,0.533333 +L 3.466667,0.533333,3.2,0.266667 +L 3.2,0.266667,2.666667,0 +L 0,-1.866667,2.133333,-1.866667 +L 0.266667,3.733333,0.8,3.466667 +L 0.533333,3.733333,0.8,3.2 +L 0.8,-1.6,0.266667,-1.866667 +L 0.8,-1.333333,0.533333,-1.866667 +L 1.333333,-1.333333,1.6,-1.866667 +L 1.333333,-1.6,1.866667,-1.866667 + +[q] 33 +L 2.933333,3.466667,2.933333,-1.866667 +L 3.2,3.2,3.2,-1.6 +L 2.666667,3.466667,3.2,3.466667 +L 3.2,3.466667,3.466667,3.733333 +L 3.466667,3.733333,3.466667,-1.866667 +L 2.933333,2.933333,2.666667,3.466667 +L 2.666667,3.466667,2.133333,3.733333 +L 2.133333,3.733333,1.6,3.733333 +L 1.6,3.733333,0.8,3.466667 +L 0.8,3.466667,0.266667,2.933333 +L 0.266667,2.933333,0,2.133333 +L 0,2.133333,0,1.6 +L 0,1.6,0.266667,0.8 +L 0.266667,0.8,0.8,0.266667 +L 0.8,0.266667,1.6,0 +L 1.6,0,2.133333,0 +L 2.133333,0,2.666667,0.266667 +L 2.666667,0.266667,2.933333,0.8 +L 0.533333,2.933333,0.266667,2.4 +L 0.266667,2.4,0.266667,1.333333 +L 0.266667,1.333333,0.533333,0.8 +L 1.6,3.733333,1.066667,3.466667 +L 1.066667,3.466667,0.8,3.2 +L 0.8,3.2,0.533333,2.4 +L 0.533333,2.4,0.533333,1.333333 +L 0.533333,1.333333,0.8,0.533333 +L 0.8,0.533333,1.066667,0.266667 +L 1.066667,0.266667,1.6,0 +L 2.133333,-1.866667,4.266667,-1.866667 +L 2.933333,-1.6,2.4,-1.866667 +L 2.933333,-1.333333,2.666667,-1.866667 +L 3.466667,-1.333333,3.733333,-1.866667 +L 3.466667,-1.6,4,-1.866667 + +[r] 21 +L 0.8,3.733333,0.8,0 +L 1.066667,3.466667,1.066667,0.266667 +L 0,3.733333,1.333333,3.733333 +L 1.333333,3.733333,1.333333,0 +L 3.2,3.2,3.2,3.466667 +L 3.2,3.466667,2.933333,3.466667 +L 2.933333,3.466667,2.933333,2.933333 +L 2.933333,2.933333,3.466667,2.933333 +L 3.466667,2.933333,3.466667,3.466667 +L 3.466667,3.466667,3.2,3.733333 +L 3.2,3.733333,2.666667,3.733333 +L 2.666667,3.733333,2.133333,3.466667 +L 2.133333,3.466667,1.6,2.933333 +L 1.6,2.933333,1.333333,2.133333 +L 0,0,2.133333,0 +L 0.266667,3.733333,0.8,3.466667 +L 0.533333,3.733333,0.8,3.2 +L 0.8,0.266667,0.266667,0 +L 0.8,0.533333,0.533333,0 +L 1.333333,0.533333,1.6,0 +L 1.333333,0.266667,1.866667,0 + +[s] 33 +L 2.666667,3.2,2.933333,3.733333 +L 2.933333,3.733333,2.933333,2.666667 +L 2.933333,2.666667,2.666667,3.2 +L 2.666667,3.2,2.4,3.466667 +L 2.4,3.466667,1.866667,3.733333 +L 1.866667,3.733333,0.8,3.733333 +L 0.8,3.733333,0.266667,3.466667 +L 0.266667,3.466667,0,3.2 +L 0,3.2,0,2.666667 +L 0,2.666667,0.266667,2.133333 +L 0.266667,2.133333,0.8,1.866667 +L 0.8,1.866667,2.133333,1.6 +L 2.133333,1.6,2.666667,1.333333 +L 2.666667,1.333333,2.933333,0.533333 +L 0.266667,3.466667,0,2.666667 +L 0.266667,2.4,0.8,2.133333 +L 0.8,2.133333,2.133333,1.866667 +L 2.133333,1.866667,2.666667,1.6 +L 2.933333,1.333333,2.666667,0.266667 +L 0,3.2,0.266667,2.666667 +L 0.266667,2.666667,0.8,2.4 +L 0.8,2.4,2.133333,2.133333 +L 2.133333,2.133333,2.666667,1.866667 +L 2.666667,1.866667,2.933333,1.333333 +L 2.933333,1.333333,2.933333,0.533333 +L 2.933333,0.533333,2.666667,0.266667 +L 2.666667,0.266667,2.133333,0 +L 2.133333,0,1.066667,0 +L 1.066667,0,0.533333,0.266667 +L 0.533333,0.266667,0.266667,0.533333 +L 0.266667,0.533333,0,1.066667 +L 0,1.066667,0,0 +L 0,0,0.266667,0.533333 + +[t] 14 +L 0.8,5.066667,0.8,1.333333 +L 0.8,1.333333,1.066667,0.533333 +L 1.066667,0.533333,1.333333,0.266667 +L 1.333333,0.266667,1.866667,0 +L 1.866667,0,2.4,0 +L 2.4,0,2.933333,0.266667 +L 2.933333,0.266667,3.2,0.8 +L 1.066667,5.066667,1.066667,1.066667 +L 1.066667,1.066667,1.333333,0.533333 +L 0.8,5.066667,1.333333,5.6 +L 1.333333,5.6,1.333333,1.066667 +L 1.333333,1.066667,1.6,0.266667 +L 1.6,0.266667,1.866667,0 +L 0,3.733333,2.4,3.733333 + +[u] 23 +L 0.8,3.733333,0.8,1.333333 +L 0.8,1.333333,1.066667,0.533333 +L 1.066667,0.533333,1.333333,0.266667 +L 1.333333,0.266667,1.866667,0 +L 1.866667,0,2.666667,0 +L 2.666667,0,3.2,0.266667 +L 3.2,0.266667,3.466667,0.533333 +L 3.466667,0.533333,3.733333,1.066667 +L 1.066667,3.466667,1.066667,1.066667 +L 1.066667,1.066667,1.333333,0.533333 +L 0,3.733333,1.333333,3.733333 +L 1.333333,3.733333,1.333333,1.066667 +L 1.333333,1.066667,1.6,0.266667 +L 1.6,0.266667,1.866667,0 +L 3.733333,3.733333,3.733333,0 +L 3.733333,0,5.066667,0 +L 4,3.466667,4,0.266667 +L 2.933333,3.733333,4.266667,3.733333 +L 4.266667,3.733333,4.266667,0 +L 0.266667,3.733333,0.8,3.466667 +L 0.533333,3.733333,0.8,3.2 +L 4.266667,0.533333,4.533333,0 +L 4.266667,0.266667,4.8,0 + +[v] 11 +L 0.533333,3.733333,2.133333,0 +L 0.8,3.733333,2.133333,0.533333 +L 1.066667,3.733333,2.4,0.533333 +L 3.733333,3.466667,2.4,0.533333 +L 2.4,0.533333,2.133333,0 +L 0,3.733333,1.866667,3.733333 +L 2.666667,3.733333,4.266667,3.733333 +L 0.266667,3.733333,1.066667,3.2 +L 1.6,3.733333,1.066667,3.466667 +L 3.2,3.733333,3.733333,3.466667 +L 4,3.733333,3.733333,3.466667 + +[w] 17 +L 0.8,3.733333,1.866667,0 +L 1.066667,3.733333,1.866667,0.8 +L 1.333333,3.733333,2.133333,0.8 +L 2.933333,3.733333,2.133333,0.8 +L 2.133333,0.8,1.866667,0 +L 2.933333,3.733333,4,0 +L 3.2,3.733333,4,0.8 +L 2.933333,3.733333,3.466667,3.733333 +L 3.466667,3.733333,4.266667,0.8 +L 5.066667,3.466667,4.266667,0.8 +L 4.266667,0.8,4,0 +L 0,3.733333,2.133333,3.733333 +L 4.266667,3.733333,5.866667,3.733333 +L 0.266667,3.733333,1.066667,3.466667 +L 1.866667,3.733333,1.333333,3.466667 +L 4.533333,3.733333,5.066667,3.466667 +L 5.6,3.733333,5.066667,3.466667 + +[x] 16 +L 0.533333,3.733333,3.2,0 +L 0.8,3.733333,3.466667,0 +L 1.066667,3.733333,3.733333,0 +L 3.466667,3.466667,0.8,0.266667 +L 0,3.733333,1.866667,3.733333 +L 2.666667,3.733333,4.266667,3.733333 +L 0,0,1.6,0 +L 2.4,0,4.266667,0 +L 0.266667,3.733333,0.8,3.466667 +L 1.6,3.733333,1.066667,3.466667 +L 2.933333,3.733333,3.466667,3.466667 +L 4,3.733333,3.466667,3.466667 +L 0.8,0.266667,0.266667,0 +L 0.8,0.266667,1.333333,0 +L 3.2,0.266667,2.666667,0 +L 3.466667,0.266667,4,0 + +[y] 20 +L 0.8,3.733333,2.4,0 +L 1.066667,3.733333,2.4,0.533333 +L 1.333333,3.733333,2.666667,0.533333 +L 4,3.466667,2.666667,0.533333 +L 2.666667,0.533333,1.866667,-1.066667 +L 1.866667,-1.066667,1.333333,-1.6 +L 1.333333,-1.6,0.8,-1.866667 +L 0.8,-1.866667,0.266667,-1.866667 +L 0.266667,-1.866667,0,-1.6 +L 0,-1.6,0,-1.066667 +L 0,-1.066667,0.533333,-1.066667 +L 0.533333,-1.066667,0.533333,-1.6 +L 0.533333,-1.6,0.266667,-1.6 +L 0.266667,-1.6,0.266667,-1.333333 +L 0.266667,3.733333,2.133333,3.733333 +L 2.933333,3.733333,4.533333,3.733333 +L 0.533333,3.733333,1.333333,3.2 +L 1.866667,3.733333,1.333333,3.466667 +L 3.466667,3.733333,4,3.466667 +L 4.266667,3.733333,4,3.466667 + +[z] 15 +L 2.666667,3.733333,0,0 +L 2.933333,3.733333,0.266667,0 +L 3.2,3.733333,0.533333,0 +L 3.2,3.733333,0,3.733333 +L 0,3.733333,0,2.666667 +L 0,0,3.2,0 +L 3.2,0,3.2,1.066667 +L 0.266667,3.733333,0,2.666667 +L 0.533333,3.733333,0,2.933333 +L 0.8,3.733333,0,3.2 +L 1.333333,3.733333,0,3.466667 +L 1.866667,0,3.2,0.266667 +L 2.4,0,3.2,0.533333 +L 2.666667,0,3.2,0.8 +L 2.933333,0,3.2,1.066667 + +[{] 34 +L 1.333333,6.666667,0.8,6.4 +L 0.8,6.4,0.533333,6.133333 +L 0.533333,6.133333,0.266667,5.6 +L 0.266667,5.6,0.266667,5.066667 +L 0.266667,5.066667,0.533333,4.533333 +L 0.533333,4.533333,0.8,4.266667 +L 0.8,4.266667,1.066667,3.733333 +L 1.066667,3.733333,1.066667,3.2 +L 1.066667,3.2,0.533333,2.666667 +L 0.8,6.4,0.533333,5.866667 +L 0.533333,5.866667,0.533333,5.333333 +L 0.533333,5.333333,0.8,4.8 +L 0.8,4.8,1.066667,4.533333 +L 1.066667,4.533333,1.333333,4 +L 1.333333,4,1.333333,3.466667 +L 1.333333,3.466667,1.066667,2.933333 +L 1.066667,2.933333,0,2.4 +L 0,2.4,1.066667,1.866667 +L 1.066667,1.866667,1.333333,1.333333 +L 1.333333,1.333333,1.333333,0.8 +L 1.333333,0.8,1.066667,0.266667 +L 1.066667,0.266667,0.8,0 +L 0.8,0,0.533333,-0.533333 +L 0.533333,-0.533333,0.533333,-1.066667 +L 0.533333,-1.066667,0.8,-1.6 +L 0.533333,2.133333,1.066667,1.6 +L 1.066667,1.6,1.066667,1.066667 +L 1.066667,1.066667,0.8,0.533333 +L 0.8,0.533333,0.533333,0.266667 +L 0.533333,0.266667,0.266667,-0.266667 +L 0.266667,-0.266667,0.266667,-0.8 +L 0.266667,-0.8,0.533333,-1.333333 +L 0.533333,-1.333333,0.8,-1.6 +L 0.8,-1.6,1.333333,-1.866667 + +[|] 1 +L 0,6.666667,0,-1.866667 + +[}] 34 +L 0,6.666667,0.533333,6.4 +L 0.533333,6.4,0.8,6.133333 +L 0.8,6.133333,1.066667,5.6 +L 1.066667,5.6,1.066667,5.066667 +L 1.066667,5.066667,0.8,4.533333 +L 0.8,4.533333,0.533333,4.266667 +L 0.533333,4.266667,0.266667,3.733333 +L 0.266667,3.733333,0.266667,3.2 +L 0.266667,3.2,0.8,2.666667 +L 0.533333,6.4,0.8,5.866667 +L 0.8,5.866667,0.8,5.333333 +L 0.8,5.333333,0.533333,4.8 +L 0.533333,4.8,0.266667,4.533333 +L 0.266667,4.533333,0,4 +L 0,4,0,3.466667 +L 0,3.466667,0.266667,2.933333 +L 0.266667,2.933333,1.333333,2.4 +L 1.333333,2.4,0.266667,1.866667 +L 0.266667,1.866667,0,1.333333 +L 0,1.333333,0,0.8 +L 0,0.8,0.266667,0.266667 +L 0.266667,0.266667,0.533333,0 +L 0.533333,0,0.8,-0.533333 +L 0.8,-0.533333,0.8,-1.066667 +L 0.8,-1.066667,0.533333,-1.6 +L 0.8,2.133333,0.266667,1.6 +L 0.266667,1.6,0.266667,1.066667 +L 0.266667,1.066667,0.533333,0.533333 +L 0.533333,0.533333,0.8,0.266667 +L 0.8,0.266667,1.066667,-0.266667 +L 1.066667,-0.266667,1.066667,-0.8 +L 1.066667,-0.8,0.8,-1.333333 +L 0.8,-1.333333,0.533333,-1.6 +L 0.533333,-1.6,0,-1.866667 + +[~] 12 +L 0.266667,0.8,0,0.533333 +L 0,0.533333,0,0.266667 +L 0,0.266667,0.266667,0 +L 0.266667,0,0.533333,0 +L 0.533333,0,0.8,0.266667 +L 0.8,0.266667,0.8,0.533333 +L 0.8,0.533333,0.533333,0.8 +L 0.533333,0.8,0.266667,0.8 +L 0.266667,0.533333,0.266667,0.266667 +L 0.266667,0.266667,0.533333,0.266667 +L 0.533333,0.266667,0.533333,0.533333 +L 0.533333,0.533333,0.266667,0.533333 + +[] 12 +L 0.266667,0.8,0,0.533333 +L 0,0.533333,0,0.266667 +L 0,0.266667,0.266667,0 +L 0.266667,0,0.533333,0 +L 0.533333,0,0.8,0.266667 +L 0.8,0.266667,0.8,0.533333 +L 0.8,0.533333,0.533333,0.8 +L 0.533333,0.8,0.266667,0.8 +L 0.266667,0.533333,0.266667,0.266667 +L 0.266667,0.266667,0.533333,0.266667 +L 0.533333,0.266667,0.533333,0.533333 +L 0.533333,0.533333,0.266667,0.533333 + +[] 12 +L 0.266667,0.8,0,0.533333 +L 0,0.533333,0,0.266667 +L 0,0.266667,0.266667,0 +L 0.266667,0,0.533333,0 +L 0.533333,0,0.8,0.266667 +L 0.8,0.266667,0.8,0.533333 +L 0.8,0.533333,0.533333,0.8 +L 0.533333,0.8,0.266667,0.8 +L 0.266667,0.533333,0.266667,0.266667 +L 0.266667,0.266667,0.533333,0.266667 +L 0.533333,0.266667,0.533333,0.533333 +L 0.533333,0.533333,0.266667,0.533333 + +[] 12 +L 0.266667,0.8,0,0.533333 +L 0,0.533333,0,0.266667 +L 0,0.266667,0.266667,0 +L 0.266667,0,0.533333,0 +L 0.533333,0,0.8,0.266667 +L 0.8,0.266667,0.8,0.533333 +L 0.8,0.533333,0.533333,0.8 +L 0.533333,0.8,0.266667,0.8 +L 0.266667,0.533333,0.266667,0.266667 +L 0.266667,0.266667,0.533333,0.266667 +L 0.533333,0.266667,0.533333,0.533333 +L 0.533333,0.533333,0.266667,0.533333 + +[] 12 +L 0.266667,0.8,0,0.533333 +L 0,0.533333,0,0.266667 +L 0,0.266667,0.266667,0 +L 0.266667,0,0.533333,0 +L 0.533333,0,0.8,0.266667 +L 0.8,0.266667,0.8,0.533333 +L 0.8,0.533333,0.533333,0.8 +L 0.533333,0.8,0.266667,0.8 +L 0.266667,0.533333,0.266667,0.266667 +L 0.266667,0.266667,0.533333,0.266667 +L 0.533333,0.266667,0.533333,0.533333 +L 0.533333,0.533333,0.266667,0.533333 + +[] 12 +L 0.266667,0.8,0,0.533333 +L 0,0.533333,0,0.266667 +L 0,0.266667,0.266667,0 +L 0.266667,0,0.533333,0 +L 0.533333,0,0.8,0.266667 +L 0.8,0.266667,0.8,0.533333 +L 0.8,0.533333,0.533333,0.8 +L 0.533333,0.8,0.266667,0.8 +L 0.266667,0.533333,0.266667,0.266667 +L 0.266667,0.266667,0.533333,0.266667 +L 0.533333,0.266667,0.533333,0.533333 +L 0.533333,0.533333,0.266667,0.533333 + +[] 12 +L 0.266667,0.8,0,0.533333 +L 0,0.533333,0,0.266667 +L 0,0.266667,0.266667,0 +L 0.266667,0,0.533333,0 +L 0.533333,0,0.8,0.266667 +L 0.8,0.266667,0.8,0.533333 +L 0.8,0.533333,0.533333,0.8 +L 0.533333,0.8,0.266667,0.8 +L 0.266667,0.533333,0.266667,0.266667 +L 0.266667,0.266667,0.533333,0.266667 +L 0.533333,0.266667,0.533333,0.533333 +L 0.533333,0.533333,0.266667,0.533333 + +[] 12 +L 0.266667,0.8,0,0.533333 +L 0,0.533333,0,0.266667 +L 0,0.266667,0.266667,0 +L 0.266667,0,0.533333,0 +L 0.533333,0,0.8,0.266667 +L 0.8,0.266667,0.8,0.533333 +L 0.8,0.533333,0.533333,0.8 +L 0.533333,0.8,0.266667,0.8 +L 0.266667,0.533333,0.266667,0.266667 +L 0.266667,0.266667,0.533333,0.266667 +L 0.533333,0.266667,0.533333,0.533333 +L 0.533333,0.533333,0.266667,0.533333 + +[] 12 +L 0.266667,0.8,0,0.533333 +L 0,0.533333,0,0.266667 +L 0,0.266667,0.266667,0 +L 0.266667,0,0.533333,0 +L 0.533333,0,0.8,0.266667 +L 0.8,0.266667,0.8,0.533333 +L 0.8,0.533333,0.533333,0.8 +L 0.533333,0.8,0.266667,0.8 +L 0.266667,0.533333,0.266667,0.266667 +L 0.266667,0.266667,0.533333,0.266667 +L 0.533333,0.266667,0.533333,0.533333 +L 0.533333,0.533333,0.266667,0.533333 + +[] 12 +L 0.266667,0.8,0,0.533333 +L 0,0.533333,0,0.266667 +L 0,0.266667,0.266667,0 +L 0.266667,0,0.533333,0 +L 0.533333,0,0.8,0.266667 +L 0.8,0.266667,0.8,0.533333 +L 0.8,0.533333,0.533333,0.8 +L 0.533333,0.8,0.266667,0.8 +L 0.266667,0.533333,0.266667,0.266667 +L 0.266667,0.266667,0.533333,0.266667 +L 0.533333,0.266667,0.533333,0.533333 +L 0.533333,0.533333,0.266667,0.533333 + +[] 12 +L 0.266667,0.8,0,0.533333 +L 0,0.533333,0,0.266667 +L 0,0.266667,0.266667,0 +L 0.266667,0,0.533333,0 +L 0.533333,0,0.8,0.266667 +L 0.8,0.266667,0.8,0.533333 +L 0.8,0.533333,0.533333,0.8 +L 0.533333,0.8,0.266667,0.8 +L 0.266667,0.533333,0.266667,0.266667 +L 0.266667,0.266667,0.533333,0.266667 +L 0.533333,0.266667,0.533333,0.533333 +L 0.533333,0.533333,0.266667,0.533333 + +[] 12 +L 0.266667,0.8,0,0.533333 +L 0,0.533333,0,0.266667 +L 0,0.266667,0.266667,0 +L 0.266667,0,0.533333,0 +L 0.533333,0,0.8,0.266667 +L 0.8,0.266667,0.8,0.533333 +L 0.8,0.533333,0.533333,0.8 +L 0.533333,0.8,0.266667,0.8 +L 0.266667,0.533333,0.266667,0.266667 +L 0.266667,0.266667,0.533333,0.266667 +L 0.533333,0.266667,0.533333,0.533333 +L 0.533333,0.533333,0.266667,0.533333 + +[] 12 +L 0.266667,0.8,0,0.533333 +L 0,0.533333,0,0.266667 +L 0,0.266667,0.266667,0 +L 0.266667,0,0.533333,0 +L 0.533333,0,0.8,0.266667 +L 0.8,0.266667,0.8,0.533333 +L 0.8,0.533333,0.533333,0.8 +L 0.533333,0.8,0.266667,0.8 +L 0.266667,0.533333,0.266667,0.266667 +L 0.266667,0.266667,0.533333,0.266667 +L 0.533333,0.266667,0.533333,0.533333 +L 0.533333,0.533333,0.266667,0.533333 + +[] 12 +L 0.266667,0.8,0,0.533333 +L 0,0.533333,0,0.266667 +L 0,0.266667,0.266667,0 +L 0.266667,0,0.533333,0 +L 0.533333,0,0.8,0.266667 +L 0.8,0.266667,0.8,0.533333 +L 0.8,0.533333,0.533333,0.8 +L 0.533333,0.8,0.266667,0.8 +L 0.266667,0.533333,0.266667,0.266667 +L 0.266667,0.266667,0.533333,0.266667 +L 0.533333,0.266667,0.533333,0.533333 +L 0.533333,0.533333,0.266667,0.533333 + +[] 12 +L 0.266667,0.8,0,0.533333 +L 0,0.533333,0,0.266667 +L 0,0.266667,0.266667,0 +L 0.266667,0,0.533333,0 +L 0.533333,0,0.8,0.266667 +L 0.8,0.266667,0.8,0.533333 +L 0.8,0.533333,0.533333,0.8 +L 0.533333,0.8,0.266667,0.8 +L 0.266667,0.533333,0.266667,0.266667 +L 0.266667,0.266667,0.533333,0.266667 +L 0.533333,0.266667,0.533333,0.533333 +L 0.533333,0.533333,0.266667,0.533333 + +[] 12 +L 0.266667,0.8,0,0.533333 +L 0,0.533333,0,0.266667 +L 0,0.266667,0.266667,0 +L 0.266667,0,0.533333,0 +L 0.533333,0,0.8,0.266667 +L 0.8,0.266667,0.8,0.533333 +L 0.8,0.533333,0.533333,0.8 +L 0.533333,0.8,0.266667,0.8 +L 0.266667,0.533333,0.266667,0.266667 +L 0.266667,0.266667,0.533333,0.266667 +L 0.533333,0.266667,0.533333,0.533333 +L 0.533333,0.533333,0.266667,0.533333 + +[] 12 +L 0.266667,0.8,0,0.533333 +L 0,0.533333,0,0.266667 +L 0,0.266667,0.266667,0 +L 0.266667,0,0.533333,0 +L 0.533333,0,0.8,0.266667 +L 0.8,0.266667,0.8,0.533333 +L 0.8,0.533333,0.533333,0.8 +L 0.533333,0.8,0.266667,0.8 +L 0.266667,0.533333,0.266667,0.266667 +L 0.266667,0.266667,0.533333,0.266667 +L 0.533333,0.266667,0.533333,0.533333 +L 0.533333,0.533333,0.266667,0.533333 + +[] 12 +L 0.266667,0.8,0,0.533333 +L 0,0.533333,0,0.266667 +L 0,0.266667,0.266667,0 +L 0.266667,0,0.533333,0 +L 0.533333,0,0.8,0.266667 +L 0.8,0.266667,0.8,0.533333 +L 0.8,0.533333,0.533333,0.8 +L 0.533333,0.8,0.266667,0.8 +L 0.266667,0.533333,0.266667,0.266667 +L 0.266667,0.266667,0.533333,0.266667 +L 0.533333,0.266667,0.533333,0.533333 +L 0.533333,0.533333,0.266667,0.533333 + +[] 12 +L 0.266667,0.8,0,0.533333 +L 0,0.533333,0,0.266667 +L 0,0.266667,0.266667,0 +L 0.266667,0,0.533333,0 +L 0.533333,0,0.8,0.266667 +L 0.8,0.266667,0.8,0.533333 +L 0.8,0.533333,0.533333,0.8 +L 0.533333,0.8,0.266667,0.8 +L 0.266667,0.533333,0.266667,0.266667 +L 0.266667,0.266667,0.533333,0.266667 +L 0.533333,0.266667,0.533333,0.533333 +L 0.533333,0.533333,0.266667,0.533333 + +[] 12 +L 0.266667,0.8,0,0.533333 +L 0,0.533333,0,0.266667 +L 0,0.266667,0.266667,0 +L 0.266667,0,0.533333,0 +L 0.533333,0,0.8,0.266667 +L 0.8,0.266667,0.8,0.533333 +L 0.8,0.533333,0.533333,0.8 +L 0.533333,0.8,0.266667,0.8 +L 0.266667,0.533333,0.266667,0.266667 +L 0.266667,0.266667,0.533333,0.266667 +L 0.533333,0.266667,0.533333,0.533333 +L 0.533333,0.533333,0.266667,0.533333 + +[] 12 +L 0.266667,0.8,0,0.533333 +L 0,0.533333,0,0.266667 +L 0,0.266667,0.266667,0 +L 0.266667,0,0.533333,0 +L 0.533333,0,0.8,0.266667 +L 0.8,0.266667,0.8,0.533333 +L 0.8,0.533333,0.533333,0.8 +L 0.533333,0.8,0.266667,0.8 +L 0.266667,0.533333,0.266667,0.266667 +L 0.266667,0.266667,0.533333,0.266667 +L 0.533333,0.266667,0.533333,0.533333 +L 0.533333,0.533333,0.266667,0.533333 + +[] 12 +L 0.266667,0.8,0,0.533333 +L 0,0.533333,0,0.266667 +L 0,0.266667,0.266667,0 +L 0.266667,0,0.533333,0 +L 0.533333,0,0.8,0.266667 +L 0.8,0.266667,0.8,0.533333 +L 0.8,0.533333,0.533333,0.8 +L 0.533333,0.8,0.266667,0.8 +L 0.266667,0.533333,0.266667,0.266667 +L 0.266667,0.266667,0.533333,0.266667 +L 0.533333,0.266667,0.533333,0.533333 +L 0.533333,0.533333,0.266667,0.533333 + +[] 12 +L 0.266667,0.8,0,0.533333 +L 0,0.533333,0,0.266667 +L 0,0.266667,0.266667,0 +L 0.266667,0,0.533333,0 +L 0.533333,0,0.8,0.266667 +L 0.8,0.266667,0.8,0.533333 +L 0.8,0.533333,0.533333,0.8 +L 0.533333,0.8,0.266667,0.8 +L 0.266667,0.533333,0.266667,0.266667 +L 0.266667,0.266667,0.533333,0.266667 +L 0.533333,0.266667,0.533333,0.533333 +L 0.533333,0.533333,0.266667,0.533333 + +[] 12 +L 0.266667,0.8,0,0.533333 +L 0,0.533333,0,0.266667 +L 0,0.266667,0.266667,0 +L 0.266667,0,0.533333,0 +L 0.533333,0,0.8,0.266667 +L 0.8,0.266667,0.8,0.533333 +L 0.8,0.533333,0.533333,0.8 +L 0.533333,0.8,0.266667,0.8 +L 0.266667,0.533333,0.266667,0.266667 +L 0.266667,0.266667,0.533333,0.266667 +L 0.533333,0.266667,0.533333,0.533333 +L 0.533333,0.533333,0.266667,0.533333 + +[] 12 +L 0.266667,0.8,0,0.533333 +L 0,0.533333,0,0.266667 +L 0,0.266667,0.266667,0 +L 0.266667,0,0.533333,0 +L 0.533333,0,0.8,0.266667 +L 0.8,0.266667,0.8,0.533333 +L 0.8,0.533333,0.533333,0.8 +L 0.533333,0.8,0.266667,0.8 +L 0.266667,0.533333,0.266667,0.266667 +L 0.266667,0.266667,0.533333,0.266667 +L 0.533333,0.266667,0.533333,0.533333 +L 0.533333,0.533333,0.266667,0.533333 + +[] 12 +L 0.266667,0.8,0,0.533333 +L 0,0.533333,0,0.266667 +L 0,0.266667,0.266667,0 +L 0.266667,0,0.533333,0 +L 0.533333,0,0.8,0.266667 +L 0.8,0.266667,0.8,0.533333 +L 0.8,0.533333,0.533333,0.8 +L 0.533333,0.8,0.266667,0.8 +L 0.266667,0.533333,0.266667,0.266667 +L 0.266667,0.266667,0.533333,0.266667 +L 0.533333,0.266667,0.533333,0.533333 +L 0.533333,0.533333,0.266667,0.533333 + +[] 12 +L 0.266667,0.8,0,0.533333 +L 0,0.533333,0,0.266667 +L 0,0.266667,0.266667,0 +L 0.266667,0,0.533333,0 +L 0.533333,0,0.8,0.266667 +L 0.8,0.266667,0.8,0.533333 +L 0.8,0.533333,0.533333,0.8 +L 0.533333,0.8,0.266667,0.8 +L 0.266667,0.533333,0.266667,0.266667 +L 0.266667,0.266667,0.533333,0.266667 +L 0.533333,0.266667,0.533333,0.533333 +L 0.533333,0.533333,0.266667,0.533333 + +[] 12 +L 0.266667,0.8,0,0.533333 +L 0,0.533333,0,0.266667 +L 0,0.266667,0.266667,0 +L 0.266667,0,0.533333,0 +L 0.533333,0,0.8,0.266667 +L 0.8,0.266667,0.8,0.533333 +L 0.8,0.533333,0.533333,0.8 +L 0.533333,0.8,0.266667,0.8 +L 0.266667,0.533333,0.266667,0.266667 +L 0.266667,0.266667,0.533333,0.266667 +L 0.533333,0.266667,0.533333,0.533333 +L 0.533333,0.533333,0.266667,0.533333 + +[] 12 +L 0.266667,0.8,0,0.533333 +L 0,0.533333,0,0.266667 +L 0,0.266667,0.266667,0 +L 0.266667,0,0.533333,0 +L 0.533333,0,0.8,0.266667 +L 0.8,0.266667,0.8,0.533333 +L 0.8,0.533333,0.533333,0.8 +L 0.533333,0.8,0.266667,0.8 +L 0.266667,0.533333,0.266667,0.266667 +L 0.266667,0.266667,0.533333,0.266667 +L 0.533333,0.266667,0.533333,0.533333 +L 0.533333,0.533333,0.266667,0.533333 + +[] 12 +L 0.266667,0.8,0,0.533333 +L 0,0.533333,0,0.266667 +L 0,0.266667,0.266667,0 +L 0.266667,0,0.533333,0 +L 0.533333,0,0.8,0.266667 +L 0.8,0.266667,0.8,0.533333 +L 0.8,0.533333,0.533333,0.8 +L 0.533333,0.8,0.266667,0.8 +L 0.266667,0.533333,0.266667,0.266667 +L 0.266667,0.266667,0.533333,0.266667 +L 0.533333,0.266667,0.533333,0.533333 +L 0.533333,0.533333,0.266667,0.533333 + +[] 12 +L 0.266667,0.8,0,0.533333 +L 0,0.533333,0,0.266667 +L 0,0.266667,0.266667,0 +L 0.266667,0,0.533333,0 +L 0.533333,0,0.8,0.266667 +L 0.8,0.266667,0.8,0.533333 +L 0.8,0.533333,0.533333,0.8 +L 0.533333,0.8,0.266667,0.8 +L 0.266667,0.533333,0.266667,0.266667 +L 0.266667,0.266667,0.533333,0.266667 +L 0.533333,0.266667,0.533333,0.533333 +L 0.533333,0.533333,0.266667,0.533333 + +[#0104] 28 +L 2.4,5.6,0.533333,0.266667 +L 2.133333,4.8,3.733333,0 +L 2.4,4.8,4,0 +L 2.4,5.6,4.266667,0 +L 1.066667,1.6,3.466667,1.6 +L 0,0,1.6,0 +L 2.933333,0,4.8,0 +L 0.533333,0.266667,0.266667,0 +L 0.533333,0.266667,1.066667,0 +L 3.733333,0.266667,3.2,0 +L 3.733333,0.533333,3.466667,0 +L 4,0.533333,4.533333,0 +L 3.733333,0,3.2,-0.266667 +L 3.2,-0.266667,2.933333,-0.8 +L 2.933333,-0.8,2.933333,-1.6 +L 2.933333,-1.6,3.2,-1.866667 +L 3.2,-1.866667,3.466667,-1.866667 +L 3.466667,-1.866667,3.733333,-1.6 +L 3.733333,-1.6,3.733333,-1.333333 +L 3.733333,-1.333333,3.466667,-1.066667 +L 3.466667,-1.066667,3.2,-1.066667 +L 3.2,-1.066667,2.933333,-1.333333 +L 3.2,-1.333333,3.2,-1.6 +L 3.2,-1.6,3.466667,-1.6 +L 3.466667,-1.6,3.466667,-1.333333 +L 3.466667,-1.333333,3.2,-1.333333 +L 3.2,-0.266667,2.933333,-1.333333 +L 2.933333,-0.8,3.2,-1.066667 + +[] 12 +L 0.266667,0.8,0,0.533333 +L 0,0.533333,0,0.266667 +L 0,0.266667,0.266667,0 +L 0.266667,0,0.533333,0 +L 0.533333,0,0.8,0.266667 +L 0.8,0.266667,0.8,0.533333 +L 0.8,0.533333,0.533333,0.8 +L 0.533333,0.8,0.266667,0.8 +L 0.266667,0.533333,0.266667,0.266667 +L 0.266667,0.266667,0.533333,0.266667 +L 0.533333,0.266667,0.533333,0.533333 +L 0.533333,0.533333,0.266667,0.533333 + +[#0141] 22 +L 0.8,5.6,0.8,0 +L 1.066667,5.333333,1.066667,0.266667 +L 1.333333,5.6,1.333333,0 +L 0,5.6,2.133333,5.6 +L 0,0,4,0 +L 4,0,4,1.6 +L 0.266667,5.6,0.8,5.333333 +L 0.533333,5.6,0.8,5.066667 +L 1.6,5.6,1.333333,5.066667 +L 1.866667,5.6,1.333333,5.333333 +L 0.8,0.266667,0.266667,0 +L 0.8,0.533333,0.533333,0 +L 1.333333,0.533333,1.6,0 +L 1.333333,0.266667,1.866667,0 +L 2.666667,0,4,0.266667 +L 3.2,0,4,0.533333 +L 3.466667,0,4,0.8 +L 3.733333,0,4,1.6 +L 2.4,4,0,2.133333 +L 0,2.133333,0,1.866667 +L 2.4,4,2.4,3.733333 +L 2.4,3.733333,0,1.866667 + +[] 12 +L 0.266667,0.8,0,0.533333 +L 0,0.533333,0,0.266667 +L 0,0.266667,0.266667,0 +L 0.266667,0,0.533333,0 +L 0.533333,0,0.8,0.266667 +L 0.8,0.266667,0.8,0.533333 +L 0.8,0.533333,0.533333,0.8 +L 0.533333,0.8,0.266667,0.8 +L 0.266667,0.533333,0.266667,0.266667 +L 0.266667,0.266667,0.533333,0.266667 +L 0.533333,0.266667,0.533333,0.533333 +L 0.533333,0.533333,0.266667,0.533333 + +[] 12 +L 0.266667,0.8,0,0.533333 +L 0,0.533333,0,0.266667 +L 0,0.266667,0.266667,0 +L 0.266667,0,0.533333,0 +L 0.533333,0,0.8,0.266667 +L 0.8,0.266667,0.8,0.533333 +L 0.8,0.533333,0.533333,0.8 +L 0.533333,0.8,0.266667,0.8 +L 0.266667,0.533333,0.266667,0.266667 +L 0.266667,0.266667,0.533333,0.266667 +L 0.533333,0.266667,0.533333,0.533333 +L 0.533333,0.533333,0.266667,0.533333 + +[#015A] 54 +L 3.466667,4.8,3.733333,5.6 +L 3.733333,5.6,3.733333,4 +L 3.733333,4,3.466667,4.8 +L 3.466667,4.8,2.933333,5.333333 +L 2.933333,5.333333,2.133333,5.6 +L 2.133333,5.6,1.333333,5.6 +L 1.333333,5.6,0.533333,5.333333 +L 0.533333,5.333333,0,4.8 +L 0,4.8,0,4 +L 0,4,0.266667,3.466667 +L 0.266667,3.466667,1.066667,2.933333 +L 1.066667,2.933333,2.666667,2.4 +L 2.666667,2.4,3.2,2.133333 +L 3.2,2.133333,3.466667,1.6 +L 3.466667,1.6,3.466667,0.8 +L 3.466667,0.8,3.2,0.266667 +L 0.266667,4,0.533333,3.466667 +L 0.533333,3.466667,1.066667,3.2 +L 1.066667,3.2,2.666667,2.666667 +L 2.666667,2.666667,3.2,2.4 +L 3.2,2.4,3.466667,1.866667 +L 0.533333,5.333333,0.266667,4.8 +L 0.266667,4.8,0.266667,4.266667 +L 0.266667,4.266667,0.533333,3.733333 +L 0.533333,3.733333,1.066667,3.466667 +L 1.066667,3.466667,2.666667,2.933333 +L 2.666667,2.933333,3.466667,2.4 +L 3.466667,2.4,3.733333,1.866667 +L 3.733333,1.866667,3.733333,1.066667 +L 3.733333,1.066667,3.466667,0.533333 +L 3.466667,0.533333,3.2,0.266667 +L 3.2,0.266667,2.4,0 +L 2.4,0,1.6,0 +L 1.6,0,0.8,0.266667 +L 0.8,0.266667,0.266667,0.8 +L 0.266667,0.8,0,1.6 +L 0,1.6,0,0 +L 0,0,0.266667,0.8 +L 2.666667,7.466667,2.4,7.2 +L 2.4,7.2,2.133333,7.2 +L 2.133333,7.2,1.866667,7.466667 +L 1.866667,7.466667,1.866667,7.733333 +L 1.866667,7.733333,2.133333,8 +L 2.133333,8,2.4,8 +L 2.4,8,2.666667,7.733333 +L 2.666667,7.733333,2.666667,6.933333 +L 2.666667,6.933333,2.4,6.4 +L 2.4,6.4,1.866667,6.133333 +L 2.133333,7.733333,2.133333,7.466667 +L 2.133333,7.466667,2.4,7.466667 +L 2.4,7.466667,2.4,7.733333 +L 2.4,7.733333,2.133333,7.733333 +L 2.4,7.2,2.666667,6.933333 +L 2.666667,7.466667,2.4,6.4 + +[] 12 +L 0.266667,0.8,0,0.533333 +L 0,0.533333,0,0.266667 +L 0,0.266667,0.266667,0 +L 0.266667,0,0.533333,0 +L 0.533333,0,0.8,0.266667 +L 0.8,0.266667,0.8,0.533333 +L 0.8,0.533333,0.533333,0.8 +L 0.533333,0.8,0.266667,0.8 +L 0.266667,0.533333,0.266667,0.266667 +L 0.266667,0.266667,0.533333,0.266667 +L 0.533333,0.266667,0.533333,0.533333 +L 0.533333,0.533333,0.266667,0.533333 + +[] 12 +L 0.266667,0.8,0,0.533333 +L 0,0.533333,0,0.266667 +L 0,0.266667,0.266667,0 +L 0.266667,0,0.533333,0 +L 0.533333,0,0.8,0.266667 +L 0.8,0.266667,0.8,0.533333 +L 0.8,0.533333,0.533333,0.8 +L 0.533333,0.8,0.266667,0.8 +L 0.266667,0.533333,0.266667,0.266667 +L 0.266667,0.266667,0.533333,0.266667 +L 0.533333,0.266667,0.533333,0.533333 +L 0.533333,0.533333,0.266667,0.533333 + +[] 12 +L 0.266667,0.8,0,0.533333 +L 0,0.533333,0,0.266667 +L 0,0.266667,0.266667,0 +L 0.266667,0,0.533333,0 +L 0.533333,0,0.8,0.266667 +L 0.8,0.266667,0.8,0.533333 +L 0.8,0.533333,0.533333,0.8 +L 0.533333,0.8,0.266667,0.8 +L 0.266667,0.533333,0.266667,0.266667 +L 0.266667,0.266667,0.533333,0.266667 +L 0.533333,0.266667,0.533333,0.533333 +L 0.533333,0.533333,0.266667,0.533333 + +[] 12 +L 0.266667,0.8,0,0.533333 +L 0,0.533333,0,0.266667 +L 0,0.266667,0.266667,0 +L 0.266667,0,0.533333,0 +L 0.533333,0,0.8,0.266667 +L 0.8,0.266667,0.8,0.533333 +L 0.8,0.533333,0.533333,0.8 +L 0.533333,0.8,0.266667,0.8 +L 0.266667,0.533333,0.266667,0.266667 +L 0.266667,0.266667,0.533333,0.266667 +L 0.533333,0.266667,0.533333,0.533333 +L 0.533333,0.533333,0.266667,0.533333 + +[] 12 +L 0.266667,0.8,0,0.533333 +L 0,0.533333,0,0.266667 +L 0,0.266667,0.266667,0 +L 0.266667,0,0.533333,0 +L 0.533333,0,0.8,0.266667 +L 0.8,0.266667,0.8,0.533333 +L 0.8,0.533333,0.533333,0.8 +L 0.533333,0.8,0.266667,0.8 +L 0.266667,0.533333,0.266667,0.266667 +L 0.266667,0.266667,0.533333,0.266667 +L 0.533333,0.266667,0.533333,0.533333 +L 0.533333,0.533333,0.266667,0.533333 + +[#0179] 31 +L 3.733333,5.6,0,5.6 +L 0,5.6,0,4 +L 3.2,5.6,0,0 +L 3.466667,5.6,0.266667,0 +L 3.733333,5.6,0.533333,0 +L 0,0,3.733333,0 +L 3.733333,0,3.733333,1.6 +L 0.266667,5.6,0,4 +L 0.533333,5.6,0,4.8 +L 0.8,5.6,0,5.066667 +L 1.333333,5.6,0,5.333333 +L 2.4,0,3.733333,0.266667 +L 2.933333,0,3.733333,0.533333 +L 3.2,0,3.733333,0.8 +L 3.466667,0,3.733333,1.6 +L 2.666667,7.466667,2.4,7.2 +L 2.4,7.2,2.133333,7.2 +L 2.133333,7.2,1.866667,7.466667 +L 1.866667,7.466667,1.866667,7.733333 +L 1.866667,7.733333,2.133333,8 +L 2.133333,8,2.4,8 +L 2.4,8,2.666667,7.733333 +L 2.666667,7.733333,2.666667,6.933333 +L 2.666667,6.933333,2.4,6.4 +L 2.4,6.4,1.866667,6.133333 +L 2.133333,7.733333,2.133333,7.466667 +L 2.133333,7.466667,2.4,7.466667 +L 2.4,7.466667,2.4,7.733333 +L 2.4,7.733333,2.133333,7.733333 +L 2.4,7.2,2.666667,6.933333 +L 2.666667,7.466667,2.4,6.4 + +[] 12 +L 0.266667,0.8,0,0.533333 +L 0,0.533333,0,0.266667 +L 0,0.266667,0.266667,0 +L 0.266667,0,0.533333,0 +L 0.533333,0,0.8,0.266667 +L 0.8,0.266667,0.8,0.533333 +L 0.8,0.533333,0.533333,0.8 +L 0.533333,0.8,0.266667,0.8 +L 0.266667,0.533333,0.266667,0.266667 +L 0.266667,0.266667,0.533333,0.266667 +L 0.533333,0.266667,0.533333,0.533333 +L 0.533333,0.533333,0.266667,0.533333 + +[] 12 +L 0.266667,0.8,0,0.533333 +L 0,0.533333,0,0.266667 +L 0,0.266667,0.266667,0 +L 0.266667,0,0.533333,0 +L 0.533333,0,0.8,0.266667 +L 0.8,0.266667,0.8,0.533333 +L 0.8,0.533333,0.533333,0.8 +L 0.533333,0.8,0.266667,0.8 +L 0.266667,0.533333,0.266667,0.266667 +L 0.266667,0.266667,0.533333,0.266667 +L 0.533333,0.266667,0.533333,0.533333 +L 0.533333,0.533333,0.266667,0.533333 + +[#017B] 27 +L 3.733333,5.6,0,5.6 +L 0,5.6,0,4 +L 3.2,5.6,0,0 +L 3.466667,5.6,0.266667,0 +L 3.733333,5.6,0.533333,0 +L 0,0,3.733333,0 +L 3.733333,0,3.733333,1.6 +L 0.266667,5.6,0,4 +L 0.533333,5.6,0,4.8 +L 0.8,5.6,0,5.066667 +L 1.333333,5.6,0,5.333333 +L 2.4,0,3.733333,0.266667 +L 2.933333,0,3.733333,0.533333 +L 3.2,0,3.733333,0.8 +L 3.466667,0,3.733333,1.6 +L 1.866667,6.933333,1.6,6.666667 +L 1.6,6.666667,1.6,6.4 +L 1.6,6.4,1.866667,6.133333 +L 1.866667,6.133333,2.133333,6.133333 +L 2.133333,6.133333,2.4,6.4 +L 2.4,6.4,2.4,6.666667 +L 2.4,6.666667,2.133333,6.933333 +L 2.133333,6.933333,1.866667,6.933333 +L 1.866667,6.666667,1.866667,6.4 +L 1.866667,6.4,2.133333,6.4 +L 2.133333,6.4,2.133333,6.666667 +L 2.133333,6.666667,1.866667,6.666667 + +[] 12 +L 0.266667,0.8,0,0.533333 +L 0,0.533333,0,0.266667 +L 0,0.266667,0.266667,0 +L 0.266667,0,0.533333,0 +L 0.533333,0,0.8,0.266667 +L 0.8,0.266667,0.8,0.533333 +L 0.8,0.533333,0.533333,0.8 +L 0.533333,0.8,0.266667,0.8 +L 0.266667,0.533333,0.266667,0.266667 +L 0.266667,0.266667,0.533333,0.266667 +L 0.533333,0.266667,0.533333,0.533333 +L 0.533333,0.533333,0.266667,0.533333 + +[#0105] 58 +L 0.533333,2.933333,0.533333,3.2 +L 0.533333,3.2,0.8,3.2 +L 0.8,3.2,0.8,2.666667 +L 0.8,2.666667,0.266667,2.666667 +L 0.266667,2.666667,0.266667,3.2 +L 0.266667,3.2,0.533333,3.466667 +L 0.533333,3.466667,1.066667,3.733333 +L 1.066667,3.733333,2.133333,3.733333 +L 2.133333,3.733333,2.666667,3.466667 +L 2.666667,3.466667,2.933333,3.2 +L 2.933333,3.2,3.2,2.666667 +L 3.2,2.666667,3.2,0.8 +L 3.2,0.8,3.466667,0.266667 +L 3.466667,0.266667,3.733333,0 +L 2.666667,3.2,2.933333,2.666667 +L 2.933333,2.666667,2.933333,0.8 +L 2.933333,0.8,3.2,0.266667 +L 2.133333,3.733333,2.4,3.466667 +L 2.4,3.466667,2.666667,2.933333 +L 2.666667,2.933333,2.666667,0.8 +L 2.666667,0.8,2.933333,0.266667 +L 2.933333,0.266667,3.733333,0 +L 3.733333,0,4,0 +L 2.666667,2.4,2.4,2.133333 +L 2.4,2.133333,1.066667,1.866667 +L 1.066667,1.866667,0.266667,1.6 +L 0.266667,1.6,0,1.066667 +L 0,1.066667,0,0.8 +L 0,0.8,0.266667,0.266667 +L 0.266667,0.266667,1.066667,0 +L 1.066667,0,1.866667,0 +L 1.866667,0,2.4,0.266667 +L 2.4,0.266667,2.666667,0.8 +L 0.533333,1.6,0.266667,1.066667 +L 0.266667,1.066667,0.266667,0.8 +L 0.266667,0.8,0.533333,0.266667 +L 2.4,2.133333,1.333333,1.866667 +L 1.333333,1.866667,0.8,1.6 +L 0.8,1.6,0.533333,1.066667 +L 0.533333,1.066667,0.533333,0.8 +L 0.533333,0.8,0.8,0.266667 +L 0.8,0.266667,1.066667,0 +L 3.733333,0,3.2,-0.266667 +L 3.2,-0.266667,2.933333,-0.8 +L 2.933333,-0.8,2.933333,-1.6 +L 2.933333,-1.6,3.2,-1.866667 +L 3.2,-1.866667,3.466667,-1.866667 +L 3.466667,-1.866667,3.733333,-1.6 +L 3.733333,-1.6,3.733333,-1.333333 +L 3.733333,-1.333333,3.466667,-1.066667 +L 3.466667,-1.066667,3.2,-1.066667 +L 3.2,-1.066667,2.933333,-1.333333 +L 3.2,-1.333333,3.2,-1.6 +L 3.2,-1.6,3.466667,-1.6 +L 3.466667,-1.6,3.466667,-1.333333 +L 3.466667,-1.333333,3.2,-1.333333 +L 3.2,-0.266667,2.933333,-1.333333 +L 2.933333,-0.8,3.2,-1.066667 + +[] 12 +L 0.266667,0.8,0,0.533333 +L 0,0.533333,0,0.266667 +L 0,0.266667,0.266667,0 +L 0.266667,0,0.533333,0 +L 0.533333,0,0.8,0.266667 +L 0.8,0.266667,0.8,0.533333 +L 0.8,0.533333,0.533333,0.8 +L 0.533333,0.8,0.266667,0.8 +L 0.266667,0.533333,0.266667,0.266667 +L 0.266667,0.266667,0.533333,0.266667 +L 0.533333,0.266667,0.533333,0.533333 +L 0.533333,0.533333,0.266667,0.533333 + +[#0142] 15 +L 0.8,5.6,0.8,0 +L 1.066667,5.333333,1.066667,0.266667 +L 0,5.6,1.333333,5.6 +L 1.333333,5.6,1.333333,0 +L 0,0,2.133333,0 +L 0.266667,5.6,0.8,5.333333 +L 0.533333,5.6,0.8,5.066667 +L 0.8,0.266667,0.266667,0 +L 0.8,0.533333,0.533333,0 +L 1.333333,0.533333,1.6,0 +L 1.333333,0.266667,1.866667,0 +L 2.133333,4,0,2.133333 +L 0,2.133333,0,1.866667 +L 2.133333,4,2.133333,3.733333 +L 2.133333,3.733333,0,1.866667 + +[] 12 +L 0.266667,0.8,0,0.533333 +L 0,0.533333,0,0.266667 +L 0,0.266667,0.266667,0 +L 0.266667,0,0.533333,0 +L 0.533333,0,0.8,0.266667 +L 0.8,0.266667,0.8,0.533333 +L 0.8,0.533333,0.533333,0.8 +L 0.533333,0.8,0.266667,0.8 +L 0.266667,0.533333,0.266667,0.266667 +L 0.266667,0.266667,0.533333,0.266667 +L 0.533333,0.266667,0.533333,0.533333 +L 0.533333,0.533333,0.266667,0.533333 + +[] 12 +L 0.266667,0.8,0,0.533333 +L 0,0.533333,0,0.266667 +L 0,0.266667,0.266667,0 +L 0.266667,0,0.533333,0 +L 0.533333,0,0.8,0.266667 +L 0.8,0.266667,0.8,0.533333 +L 0.8,0.533333,0.533333,0.8 +L 0.533333,0.8,0.266667,0.8 +L 0.266667,0.533333,0.266667,0.266667 +L 0.266667,0.266667,0.533333,0.266667 +L 0.533333,0.266667,0.533333,0.533333 +L 0.533333,0.533333,0.266667,0.533333 + +[#015B] 49 +L 2.666667,3.2,2.933333,3.733333 +L 2.933333,3.733333,2.933333,2.666667 +L 2.933333,2.666667,2.666667,3.2 +L 2.666667,3.2,2.4,3.466667 +L 2.4,3.466667,1.866667,3.733333 +L 1.866667,3.733333,0.8,3.733333 +L 0.8,3.733333,0.266667,3.466667 +L 0.266667,3.466667,0,3.2 +L 0,3.2,0,2.666667 +L 0,2.666667,0.266667,2.133333 +L 0.266667,2.133333,0.8,1.866667 +L 0.8,1.866667,2.133333,1.6 +L 2.133333,1.6,2.666667,1.333333 +L 2.666667,1.333333,2.933333,0.533333 +L 0.266667,3.466667,0,2.666667 +L 0.266667,2.4,0.8,2.133333 +L 0.8,2.133333,2.133333,1.866667 +L 2.133333,1.866667,2.666667,1.6 +L 2.933333,1.333333,2.666667,0.266667 +L 0,3.2,0.266667,2.666667 +L 0.266667,2.666667,0.8,2.4 +L 0.8,2.4,2.133333,2.133333 +L 2.133333,2.133333,2.666667,1.866667 +L 2.666667,1.866667,2.933333,1.333333 +L 2.933333,1.333333,2.933333,0.533333 +L 2.933333,0.533333,2.666667,0.266667 +L 2.666667,0.266667,2.133333,0 +L 2.133333,0,1.066667,0 +L 1.066667,0,0.533333,0.266667 +L 0.533333,0.266667,0.266667,0.533333 +L 0.266667,0.533333,0,1.066667 +L 0,1.066667,0,0 +L 0,0,0.266667,0.533333 +L 2.133333,5.6,1.866667,5.333333 +L 1.866667,5.333333,1.6,5.333333 +L 1.6,5.333333,1.333333,5.6 +L 1.333333,5.6,1.333333,5.866667 +L 1.333333,5.866667,1.6,6.133333 +L 1.6,6.133333,1.866667,6.133333 +L 1.866667,6.133333,2.133333,5.866667 +L 2.133333,5.866667,2.133333,5.066667 +L 2.133333,5.066667,1.866667,4.533333 +L 1.866667,4.533333,1.333333,4.266667 +L 1.6,5.866667,1.6,5.6 +L 1.6,5.6,1.866667,5.6 +L 1.866667,5.6,1.866667,5.866667 +L 1.866667,5.866667,1.6,5.866667 +L 1.866667,5.333333,2.133333,5.066667 +L 2.133333,5.6,1.866667,4.533333 + +[] 12 +L 0.266667,0.8,0,0.533333 +L 0,0.533333,0,0.266667 +L 0,0.266667,0.266667,0 +L 0.266667,0,0.533333,0 +L 0.533333,0,0.8,0.266667 +L 0.8,0.266667,0.8,0.533333 +L 0.8,0.533333,0.533333,0.8 +L 0.533333,0.8,0.266667,0.8 +L 0.266667,0.533333,0.266667,0.266667 +L 0.266667,0.266667,0.533333,0.266667 +L 0.533333,0.266667,0.533333,0.533333 +L 0.533333,0.533333,0.266667,0.533333 + +[] 12 +L 0.266667,0.8,0,0.533333 +L 0,0.533333,0,0.266667 +L 0,0.266667,0.266667,0 +L 0.266667,0,0.533333,0 +L 0.533333,0,0.8,0.266667 +L 0.8,0.266667,0.8,0.533333 +L 0.8,0.533333,0.533333,0.8 +L 0.533333,0.8,0.266667,0.8 +L 0.266667,0.533333,0.266667,0.266667 +L 0.266667,0.266667,0.533333,0.266667 +L 0.533333,0.266667,0.533333,0.533333 +L 0.533333,0.533333,0.266667,0.533333 + +[] 12 +L 0.266667,0.8,0,0.533333 +L 0,0.533333,0,0.266667 +L 0,0.266667,0.266667,0 +L 0.266667,0,0.533333,0 +L 0.533333,0,0.8,0.266667 +L 0.8,0.266667,0.8,0.533333 +L 0.8,0.533333,0.533333,0.8 +L 0.533333,0.8,0.266667,0.8 +L 0.266667,0.533333,0.266667,0.266667 +L 0.266667,0.266667,0.533333,0.266667 +L 0.533333,0.266667,0.533333,0.533333 +L 0.533333,0.533333,0.266667,0.533333 + +[] 12 +L 0.266667,0.8,0,0.533333 +L 0,0.533333,0,0.266667 +L 0,0.266667,0.266667,0 +L 0.266667,0,0.533333,0 +L 0.533333,0,0.8,0.266667 +L 0.8,0.266667,0.8,0.533333 +L 0.8,0.533333,0.533333,0.8 +L 0.533333,0.8,0.266667,0.8 +L 0.266667,0.533333,0.266667,0.266667 +L 0.266667,0.266667,0.533333,0.266667 +L 0.533333,0.266667,0.533333,0.533333 +L 0.533333,0.533333,0.266667,0.533333 + +[] 12 +L 0.266667,0.8,0,0.533333 +L 0,0.533333,0,0.266667 +L 0,0.266667,0.266667,0 +L 0.266667,0,0.533333,0 +L 0.533333,0,0.8,0.266667 +L 0.8,0.266667,0.8,0.533333 +L 0.8,0.533333,0.533333,0.8 +L 0.533333,0.8,0.266667,0.8 +L 0.266667,0.533333,0.266667,0.266667 +L 0.266667,0.266667,0.533333,0.266667 +L 0.533333,0.266667,0.533333,0.533333 +L 0.533333,0.533333,0.266667,0.533333 + +[#017A] 31 +L 2.666667,3.733333,0,0 +L 2.933333,3.733333,0.266667,0 +L 3.2,3.733333,0.533333,0 +L 3.2,3.733333,0,3.733333 +L 0,3.733333,0,2.666667 +L 0,0,3.2,0 +L 3.2,0,3.2,1.066667 +L 0.266667,3.733333,0,2.666667 +L 0.533333,3.733333,0,2.933333 +L 0.8,3.733333,0,3.2 +L 1.333333,3.733333,0,3.466667 +L 1.866667,0,3.2,0.266667 +L 2.4,0,3.2,0.533333 +L 2.666667,0,3.2,0.8 +L 2.933333,0,3.2,1.066667 +L 2.4,5.6,2.133333,5.333333 +L 2.133333,5.333333,1.866667,5.333333 +L 1.866667,5.333333,1.6,5.6 +L 1.6,5.6,1.6,5.866667 +L 1.6,5.866667,1.866667,6.133333 +L 1.866667,6.133333,2.133333,6.133333 +L 2.133333,6.133333,2.4,5.866667 +L 2.4,5.866667,2.4,5.066667 +L 2.4,5.066667,2.133333,4.533333 +L 2.133333,4.533333,1.6,4.266667 +L 1.866667,5.866667,1.866667,5.6 +L 1.866667,5.6,2.133333,5.6 +L 2.133333,5.6,2.133333,5.866667 +L 2.133333,5.866667,1.866667,5.866667 +L 2.133333,5.333333,2.4,5.066667 +L 2.4,5.6,2.133333,4.533333 + +[] 12 +L 0.266667,0.8,0,0.533333 +L 0,0.533333,0,0.266667 +L 0,0.266667,0.266667,0 +L 0.266667,0,0.533333,0 +L 0.533333,0,0.8,0.266667 +L 0.8,0.266667,0.8,0.533333 +L 0.8,0.533333,0.533333,0.8 +L 0.533333,0.8,0.266667,0.8 +L 0.266667,0.533333,0.266667,0.266667 +L 0.266667,0.266667,0.533333,0.266667 +L 0.533333,0.266667,0.533333,0.533333 +L 0.533333,0.533333,0.266667,0.533333 + +[] 12 +L 0.266667,0.8,0,0.533333 +L 0,0.533333,0,0.266667 +L 0,0.266667,0.266667,0 +L 0.266667,0,0.533333,0 +L 0.533333,0,0.8,0.266667 +L 0.8,0.266667,0.8,0.533333 +L 0.8,0.533333,0.533333,0.8 +L 0.533333,0.8,0.266667,0.8 +L 0.266667,0.533333,0.266667,0.266667 +L 0.266667,0.266667,0.533333,0.266667 +L 0.533333,0.266667,0.533333,0.533333 +L 0.533333,0.533333,0.266667,0.533333 + +[#017C] 27 +L 2.666667,3.733333,0,0 +L 2.933333,3.733333,0.266667,0 +L 3.2,3.733333,0.533333,0 +L 3.2,3.733333,0,3.733333 +L 0,3.733333,0,2.666667 +L 0,0,3.2,0 +L 3.2,0,3.2,1.066667 +L 0.266667,3.733333,0,2.666667 +L 0.533333,3.733333,0,2.933333 +L 0.8,3.733333,0,3.2 +L 1.333333,3.733333,0,3.466667 +L 1.866667,0,3.2,0.266667 +L 2.4,0,3.2,0.533333 +L 2.666667,0,3.2,0.8 +L 2.933333,0,3.2,1.066667 +L 1.6,5.066667,1.333333,4.8 +L 1.333333,4.8,1.333333,4.533333 +L 1.333333,4.533333,1.6,4.266667 +L 1.6,4.266667,1.866667,4.266667 +L 1.866667,4.266667,2.133333,4.533333 +L 2.133333,4.533333,2.133333,4.8 +L 2.133333,4.8,1.866667,5.066667 +L 1.866667,5.066667,1.6,5.066667 +L 1.6,4.8,1.6,4.533333 +L 1.6,4.533333,1.866667,4.533333 +L 1.866667,4.533333,1.866667,4.8 +L 1.866667,4.8,1.6,4.8 + +[] 12 +L 0.266667,0.8,0,0.533333 +L 0,0.533333,0,0.266667 +L 0,0.266667,0.266667,0 +L 0.266667,0,0.533333,0 +L 0.533333,0,0.8,0.266667 +L 0.8,0.266667,0.8,0.533333 +L 0.8,0.533333,0.533333,0.8 +L 0.533333,0.8,0.266667,0.8 +L 0.266667,0.533333,0.266667,0.266667 +L 0.266667,0.266667,0.533333,0.266667 +L 0.533333,0.266667,0.533333,0.533333 +L 0.533333,0.533333,0.266667,0.533333 + +[] 12 +L 0.266667,0.8,0,0.533333 +L 0,0.533333,0,0.266667 +L 0,0.266667,0.266667,0 +L 0.266667,0,0.533333,0 +L 0.533333,0,0.8,0.266667 +L 0.8,0.266667,0.8,0.533333 +L 0.8,0.533333,0.533333,0.8 +L 0.533333,0.8,0.266667,0.8 +L 0.266667,0.533333,0.266667,0.266667 +L 0.266667,0.266667,0.533333,0.266667 +L 0.533333,0.266667,0.533333,0.533333 +L 0.533333,0.533333,0.266667,0.533333 + +[] 12 +L 0.266667,0.8,0,0.533333 +L 0,0.533333,0,0.266667 +L 0,0.266667,0.266667,0 +L 0.266667,0,0.533333,0 +L 0.533333,0,0.8,0.266667 +L 0.8,0.266667,0.8,0.533333 +L 0.8,0.533333,0.533333,0.8 +L 0.533333,0.8,0.266667,0.8 +L 0.266667,0.533333,0.266667,0.266667 +L 0.266667,0.266667,0.533333,0.266667 +L 0.533333,0.266667,0.533333,0.533333 +L 0.533333,0.533333,0.266667,0.533333 + +[] 12 +L 0.266667,0.8,0,0.533333 +L 0,0.533333,0,0.266667 +L 0,0.266667,0.266667,0 +L 0.266667,0,0.533333,0 +L 0.533333,0,0.8,0.266667 +L 0.8,0.266667,0.8,0.533333 +L 0.8,0.533333,0.533333,0.8 +L 0.533333,0.8,0.266667,0.8 +L 0.266667,0.533333,0.266667,0.266667 +L 0.266667,0.266667,0.533333,0.266667 +L 0.533333,0.266667,0.533333,0.533333 +L 0.533333,0.533333,0.266667,0.533333 + +[] 12 +L 0.266667,0.8,0,0.533333 +L 0,0.533333,0,0.266667 +L 0,0.266667,0.266667,0 +L 0.266667,0,0.533333,0 +L 0.533333,0,0.8,0.266667 +L 0.8,0.266667,0.8,0.533333 +L 0.8,0.533333,0.533333,0.8 +L 0.533333,0.8,0.266667,0.8 +L 0.266667,0.533333,0.266667,0.266667 +L 0.266667,0.266667,0.533333,0.266667 +L 0.533333,0.266667,0.533333,0.533333 +L 0.533333,0.533333,0.266667,0.533333 + +[] 12 +L 0.266667,0.8,0,0.533333 +L 0,0.533333,0,0.266667 +L 0,0.266667,0.266667,0 +L 0.266667,0,0.533333,0 +L 0.533333,0,0.8,0.266667 +L 0.8,0.266667,0.8,0.533333 +L 0.8,0.533333,0.533333,0.8 +L 0.533333,0.8,0.266667,0.8 +L 0.266667,0.533333,0.266667,0.266667 +L 0.266667,0.266667,0.533333,0.266667 +L 0.533333,0.266667,0.533333,0.533333 +L 0.533333,0.533333,0.266667,0.533333 + +[#0106] 47 +L 3.733333,4.8,4,5.6 +L 4,5.6,4,4 +L 4,4,3.733333,4.8 +L 3.733333,4.8,3.2,5.333333 +L 3.2,5.333333,2.666667,5.6 +L 2.666667,5.6,1.866667,5.6 +L 1.866667,5.6,1.066667,5.333333 +L 1.066667,5.333333,0.533333,4.8 +L 0.533333,4.8,0.266667,4.266667 +L 0.266667,4.266667,0,3.466667 +L 0,3.466667,0,2.133333 +L 0,2.133333,0.266667,1.333333 +L 0.266667,1.333333,0.533333,0.8 +L 0.533333,0.8,1.066667,0.266667 +L 1.066667,0.266667,1.866667,0 +L 1.866667,0,2.666667,0 +L 2.666667,0,3.2,0.266667 +L 3.2,0.266667,3.733333,0.8 +L 3.733333,0.8,4,1.333333 +L 0.8,4.8,0.533333,4.266667 +L 0.533333,4.266667,0.266667,3.466667 +L 0.266667,3.466667,0.266667,2.133333 +L 0.266667,2.133333,0.533333,1.333333 +L 0.533333,1.333333,0.8,0.8 +L 1.866667,5.6,1.333333,5.333333 +L 1.333333,5.333333,0.8,4.533333 +L 0.8,4.533333,0.533333,3.466667 +L 0.533333,3.466667,0.533333,2.133333 +L 0.533333,2.133333,0.8,1.066667 +L 0.8,1.066667,1.333333,0.266667 +L 1.333333,0.266667,1.866667,0 +L 2.933333,7.466667,2.666667,7.2 +L 2.666667,7.2,2.4,7.2 +L 2.4,7.2,2.133333,7.466667 +L 2.133333,7.466667,2.133333,7.733333 +L 2.133333,7.733333,2.4,8 +L 2.4,8,2.666667,8 +L 2.666667,8,2.933333,7.733333 +L 2.933333,7.733333,2.933333,6.933333 +L 2.933333,6.933333,2.666667,6.4 +L 2.666667,6.4,2.133333,6.133333 +L 2.4,7.733333,2.4,7.466667 +L 2.4,7.466667,2.666667,7.466667 +L 2.666667,7.466667,2.666667,7.733333 +L 2.666667,7.733333,2.4,7.733333 +L 2.666667,7.2,2.933333,6.933333 +L 2.933333,7.466667,2.666667,6.4 + +[] 12 +L 0.266667,0.8,0,0.533333 +L 0,0.533333,0,0.266667 +L 0,0.266667,0.266667,0 +L 0.266667,0,0.533333,0 +L 0.533333,0,0.8,0.266667 +L 0.8,0.266667,0.8,0.533333 +L 0.8,0.533333,0.533333,0.8 +L 0.533333,0.8,0.266667,0.8 +L 0.266667,0.533333,0.266667,0.266667 +L 0.266667,0.266667,0.533333,0.266667 +L 0.533333,0.266667,0.533333,0.533333 +L 0.533333,0.533333,0.266667,0.533333 + +[] 12 +L 0.266667,0.8,0,0.533333 +L 0,0.533333,0,0.266667 +L 0,0.266667,0.266667,0 +L 0.266667,0,0.533333,0 +L 0.533333,0,0.8,0.266667 +L 0.8,0.266667,0.8,0.533333 +L 0.8,0.533333,0.533333,0.8 +L 0.533333,0.8,0.266667,0.8 +L 0.266667,0.533333,0.266667,0.266667 +L 0.266667,0.266667,0.533333,0.266667 +L 0.533333,0.266667,0.533333,0.533333 +L 0.533333,0.533333,0.266667,0.533333 + +[] 12 +L 0.266667,0.8,0,0.533333 +L 0,0.533333,0,0.266667 +L 0,0.266667,0.266667,0 +L 0.266667,0,0.533333,0 +L 0.533333,0,0.8,0.266667 +L 0.8,0.266667,0.8,0.533333 +L 0.8,0.533333,0.533333,0.8 +L 0.533333,0.8,0.266667,0.8 +L 0.266667,0.533333,0.266667,0.266667 +L 0.266667,0.266667,0.533333,0.266667 +L 0.533333,0.266667,0.533333,0.533333 +L 0.533333,0.533333,0.266667,0.533333 + +[#0118] 47 +L 0.8,5.6,0.8,0 +L 1.066667,5.333333,1.066667,0.266667 +L 1.333333,5.6,1.333333,0 +L 0,5.6,4.266667,5.6 +L 4.266667,5.6,4.266667,4 +L 1.333333,2.933333,2.933333,2.933333 +L 2.933333,4,2.933333,1.866667 +L 0,0,4.266667,0 +L 4.266667,0,4.266667,1.6 +L 0.266667,5.6,0.8,5.333333 +L 0.533333,5.6,0.8,5.066667 +L 1.6,5.6,1.333333,5.066667 +L 1.866667,5.6,1.333333,5.333333 +L 2.933333,5.6,4.266667,5.333333 +L 3.466667,5.6,4.266667,5.066667 +L 3.733333,5.6,4.266667,4.8 +L 4,5.6,4.266667,4 +L 2.933333,4,2.666667,2.933333 +L 2.666667,2.933333,2.933333,1.866667 +L 2.933333,3.466667,2.4,2.933333 +L 2.4,2.933333,2.933333,2.4 +L 2.933333,3.2,1.866667,2.933333 +L 1.866667,2.933333,2.933333,2.666667 +L 0.8,0.266667,0.266667,0 +L 0.8,0.533333,0.533333,0 +L 1.333333,0.533333,1.6,0 +L 1.333333,0.266667,1.866667,0 +L 2.933333,0,4.266667,0.266667 +L 3.466667,0,4.266667,0.533333 +L 3.733333,0,4.266667,0.8 +L 4,0,4.266667,1.6 +L 3.466667,0,2.933333,-0.266667 +L 2.933333,-0.266667,2.666667,-0.8 +L 2.666667,-0.8,2.666667,-1.6 +L 2.666667,-1.6,2.933333,-1.866667 +L 2.933333,-1.866667,3.2,-1.866667 +L 3.2,-1.866667,3.466667,-1.6 +L 3.466667,-1.6,3.466667,-1.333333 +L 3.466667,-1.333333,3.2,-1.066667 +L 3.2,-1.066667,2.933333,-1.066667 +L 2.933333,-1.066667,2.666667,-1.333333 +L 2.933333,-1.333333,2.933333,-1.6 +L 2.933333,-1.6,3.2,-1.6 +L 3.2,-1.6,3.2,-1.333333 +L 3.2,-1.333333,2.933333,-1.333333 +L 2.933333,-0.266667,2.666667,-1.333333 +L 2.666667,-0.8,2.933333,-1.066667 + +[] 12 +L 0.266667,0.8,0,0.533333 +L 0,0.533333,0,0.266667 +L 0,0.266667,0.266667,0 +L 0.266667,0,0.533333,0 +L 0.533333,0,0.8,0.266667 +L 0.8,0.266667,0.8,0.533333 +L 0.8,0.533333,0.533333,0.8 +L 0.533333,0.8,0.266667,0.8 +L 0.266667,0.533333,0.266667,0.266667 +L 0.266667,0.266667,0.533333,0.266667 +L 0.533333,0.266667,0.533333,0.533333 +L 0.533333,0.533333,0.266667,0.533333 + +[] 12 +L 0.266667,0.8,0,0.533333 +L 0,0.533333,0,0.266667 +L 0,0.266667,0.266667,0 +L 0.266667,0,0.533333,0 +L 0.533333,0,0.8,0.266667 +L 0.8,0.266667,0.8,0.533333 +L 0.8,0.533333,0.533333,0.8 +L 0.533333,0.8,0.266667,0.8 +L 0.266667,0.533333,0.266667,0.266667 +L 0.266667,0.266667,0.533333,0.266667 +L 0.533333,0.266667,0.533333,0.533333 +L 0.533333,0.533333,0.266667,0.533333 + +[] 12 +L 0.266667,0.8,0,0.533333 +L 0,0.533333,0,0.266667 +L 0,0.266667,0.266667,0 +L 0.266667,0,0.533333,0 +L 0.533333,0,0.8,0.266667 +L 0.8,0.266667,0.8,0.533333 +L 0.8,0.533333,0.533333,0.8 +L 0.533333,0.8,0.266667,0.8 +L 0.266667,0.533333,0.266667,0.266667 +L 0.266667,0.266667,0.533333,0.266667 +L 0.533333,0.266667,0.533333,0.533333 +L 0.533333,0.533333,0.266667,0.533333 + +[] 12 +L 0.266667,0.8,0,0.533333 +L 0,0.533333,0,0.266667 +L 0,0.266667,0.266667,0 +L 0.266667,0,0.533333,0 +L 0.533333,0,0.8,0.266667 +L 0.8,0.266667,0.8,0.533333 +L 0.8,0.533333,0.533333,0.8 +L 0.533333,0.8,0.266667,0.8 +L 0.266667,0.533333,0.266667,0.266667 +L 0.266667,0.266667,0.533333,0.266667 +L 0.533333,0.266667,0.533333,0.533333 +L 0.533333,0.533333,0.266667,0.533333 + +[] 12 +L 0.266667,0.8,0,0.533333 +L 0,0.533333,0,0.266667 +L 0,0.266667,0.266667,0 +L 0.266667,0,0.533333,0 +L 0.533333,0,0.8,0.266667 +L 0.8,0.266667,0.8,0.533333 +L 0.8,0.533333,0.533333,0.8 +L 0.533333,0.8,0.266667,0.8 +L 0.266667,0.533333,0.266667,0.266667 +L 0.266667,0.266667,0.533333,0.266667 +L 0.533333,0.266667,0.533333,0.533333 +L 0.533333,0.533333,0.266667,0.533333 + +[] 12 +L 0.266667,0.8,0,0.533333 +L 0,0.533333,0,0.266667 +L 0,0.266667,0.266667,0 +L 0.266667,0,0.533333,0 +L 0.533333,0,0.8,0.266667 +L 0.8,0.266667,0.8,0.533333 +L 0.8,0.533333,0.533333,0.8 +L 0.533333,0.8,0.266667,0.8 +L 0.266667,0.533333,0.266667,0.266667 +L 0.266667,0.266667,0.533333,0.266667 +L 0.533333,0.266667,0.533333,0.533333 +L 0.533333,0.533333,0.266667,0.533333 + +[#0143] 29 +L 0.8,5.6,0.8,0.266667 +L 0.8,5.6,4.533333,0 +L 1.066667,5.6,4.266667,0.8 +L 1.333333,5.6,4.533333,0.8 +L 4.533333,5.333333,4.533333,0 +L 0,5.6,1.333333,5.6 +L 3.733333,5.6,5.333333,5.6 +L 0,0,1.6,0 +L 0.266667,5.6,0.8,5.333333 +L 4,5.6,4.533333,5.333333 +L 5.066667,5.6,4.533333,5.333333 +L 0.8,0.266667,0.266667,0 +L 0.8,0.266667,1.333333,0 +L 3.466667,7.466667,3.2,7.2 +L 3.2,7.2,2.933333,7.2 +L 2.933333,7.2,2.666667,7.466667 +L 2.666667,7.466667,2.666667,7.733333 +L 2.666667,7.733333,2.933333,8 +L 2.933333,8,3.2,8 +L 3.2,8,3.466667,7.733333 +L 3.466667,7.733333,3.466667,6.933333 +L 3.466667,6.933333,3.2,6.4 +L 3.2,6.4,2.666667,6.133333 +L 2.933333,7.733333,2.933333,7.466667 +L 2.933333,7.466667,3.2,7.466667 +L 3.2,7.466667,3.2,7.733333 +L 3.2,7.733333,2.933333,7.733333 +L 3.466667,7.466667,3.2,6.4 +L 3.2,7.2,3.466667,6.933333 + +[] 12 +L 0.266667,0.8,0,0.533333 +L 0,0.533333,0,0.266667 +L 0,0.266667,0.266667,0 +L 0.266667,0,0.533333,0 +L 0.533333,0,0.8,0.266667 +L 0.8,0.266667,0.8,0.533333 +L 0.8,0.533333,0.533333,0.8 +L 0.533333,0.8,0.266667,0.8 +L 0.266667,0.533333,0.266667,0.266667 +L 0.266667,0.266667,0.533333,0.266667 +L 0.533333,0.266667,0.533333,0.533333 +L 0.533333,0.533333,0.266667,0.533333 + +[#00D3] 60 +L 1.866667,5.6,1.066667,5.333333 +L 1.066667,5.333333,0.533333,4.8 +L 0.533333,4.8,0.266667,4.266667 +L 0.266667,4.266667,0,3.2 +L 0,3.2,0,2.4 +L 0,2.4,0.266667,1.333333 +L 0.266667,1.333333,0.533333,0.8 +L 0.533333,0.8,1.066667,0.266667 +L 1.066667,0.266667,1.866667,0 +L 1.866667,0,2.4,0 +L 2.4,0,3.2,0.266667 +L 3.2,0.266667,3.733333,0.8 +L 3.733333,0.8,4,1.333333 +L 4,1.333333,4.266667,2.4 +L 4.266667,2.4,4.266667,3.2 +L 4.266667,3.2,4,4.266667 +L 4,4.266667,3.733333,4.8 +L 3.733333,4.8,3.2,5.333333 +L 3.2,5.333333,2.4,5.6 +L 2.4,5.6,1.866667,5.6 +L 0.8,4.8,0.533333,4.266667 +L 0.533333,4.266667,0.266667,3.466667 +L 0.266667,3.466667,0.266667,2.133333 +L 0.266667,2.133333,0.533333,1.333333 +L 0.533333,1.333333,0.8,0.8 +L 3.466667,0.8,3.733333,1.333333 +L 3.733333,1.333333,4,2.133333 +L 4,2.133333,4,3.466667 +L 4,3.466667,3.733333,4.266667 +L 3.733333,4.266667,3.466667,4.8 +L 1.866667,5.6,1.333333,5.333333 +L 1.333333,5.333333,0.8,4.533333 +L 0.8,4.533333,0.533333,3.466667 +L 0.533333,3.466667,0.533333,2.133333 +L 0.533333,2.133333,0.8,1.066667 +L 0.8,1.066667,1.333333,0.266667 +L 1.333333,0.266667,1.866667,0 +L 2.4,0,2.933333,0.266667 +L 2.933333,0.266667,3.466667,1.066667 +L 3.466667,1.066667,3.733333,2.133333 +L 3.733333,2.133333,3.733333,3.466667 +L 3.733333,3.466667,3.466667,4.533333 +L 3.466667,4.533333,2.933333,5.333333 +L 2.933333,5.333333,2.4,5.6 +L 2.933333,7.466667,2.666667,7.2 +L 2.666667,7.2,2.4,7.2 +L 2.4,7.2,2.133333,7.466667 +L 2.133333,7.466667,2.133333,7.733333 +L 2.133333,7.733333,2.4,8 +L 2.4,8,2.666667,8 +L 2.666667,8,2.933333,7.733333 +L 2.933333,7.733333,2.933333,6.933333 +L 2.933333,6.933333,2.666667,6.4 +L 2.666667,6.4,2.133333,6.133333 +L 2.4,7.733333,2.4,7.466667 +L 2.4,7.466667,2.666667,7.466667 +L 2.666667,7.466667,2.666667,7.733333 +L 2.666667,7.733333,2.4,7.733333 +L 2.666667,7.2,2.933333,6.933333 +L 2.933333,7.466667,2.666667,6.4 + +[] 12 +L 0.266667,0.8,0,0.533333 +L 0,0.533333,0,0.266667 +L 0,0.266667,0.266667,0 +L 0.266667,0,0.533333,0 +L 0.533333,0,0.8,0.266667 +L 0.8,0.266667,0.8,0.533333 +L 0.8,0.533333,0.533333,0.8 +L 0.533333,0.8,0.266667,0.8 +L 0.266667,0.533333,0.266667,0.266667 +L 0.266667,0.266667,0.533333,0.266667 +L 0.533333,0.266667,0.533333,0.533333 +L 0.533333,0.533333,0.266667,0.533333 + +[] 12 +L 0.266667,0.8,0,0.533333 +L 0,0.533333,0,0.266667 +L 0,0.266667,0.266667,0 +L 0.266667,0,0.533333,0 +L 0.533333,0,0.8,0.266667 +L 0.8,0.266667,0.8,0.533333 +L 0.8,0.533333,0.533333,0.8 +L 0.533333,0.8,0.266667,0.8 +L 0.266667,0.533333,0.266667,0.266667 +L 0.266667,0.266667,0.533333,0.266667 +L 0.533333,0.266667,0.533333,0.533333 +L 0.533333,0.533333,0.266667,0.533333 + +[] 12 +L 0.266667,0.8,0,0.533333 +L 0,0.533333,0,0.266667 +L 0,0.266667,0.266667,0 +L 0.266667,0,0.533333,0 +L 0.533333,0,0.8,0.266667 +L 0.8,0.266667,0.8,0.533333 +L 0.8,0.533333,0.533333,0.8 +L 0.533333,0.8,0.266667,0.8 +L 0.266667,0.533333,0.266667,0.266667 +L 0.266667,0.266667,0.533333,0.266667 +L 0.533333,0.266667,0.533333,0.533333 +L 0.533333,0.533333,0.266667,0.533333 + +[] 12 +L 0.266667,0.8,0,0.533333 +L 0,0.533333,0,0.266667 +L 0,0.266667,0.266667,0 +L 0.266667,0,0.533333,0 +L 0.533333,0,0.8,0.266667 +L 0.8,0.266667,0.8,0.533333 +L 0.8,0.533333,0.533333,0.8 +L 0.533333,0.8,0.266667,0.8 +L 0.266667,0.533333,0.266667,0.266667 +L 0.266667,0.266667,0.533333,0.266667 +L 0.533333,0.266667,0.533333,0.533333 +L 0.533333,0.533333,0.266667,0.533333 + +[] 12 +L 0.266667,0.8,0,0.533333 +L 0,0.533333,0,0.266667 +L 0,0.266667,0.266667,0 +L 0.266667,0,0.533333,0 +L 0.533333,0,0.8,0.266667 +L 0.8,0.266667,0.8,0.533333 +L 0.8,0.533333,0.533333,0.8 +L 0.533333,0.8,0.266667,0.8 +L 0.266667,0.533333,0.266667,0.266667 +L 0.266667,0.266667,0.533333,0.266667 +L 0.533333,0.266667,0.533333,0.533333 +L 0.533333,0.533333,0.266667,0.533333 + +[] 12 +L 0.266667,0.8,0,0.533333 +L 0,0.533333,0,0.266667 +L 0,0.266667,0.266667,0 +L 0.266667,0,0.533333,0 +L 0.533333,0,0.8,0.266667 +L 0.8,0.266667,0.8,0.533333 +L 0.8,0.533333,0.533333,0.8 +L 0.533333,0.8,0.266667,0.8 +L 0.266667,0.533333,0.266667,0.266667 +L 0.266667,0.266667,0.533333,0.266667 +L 0.533333,0.266667,0.533333,0.533333 +L 0.533333,0.533333,0.266667,0.533333 + +[] 12 +L 0.266667,0.8,0,0.533333 +L 0,0.533333,0,0.266667 +L 0,0.266667,0.266667,0 +L 0.266667,0,0.533333,0 +L 0.533333,0,0.8,0.266667 +L 0.8,0.266667,0.8,0.533333 +L 0.8,0.533333,0.533333,0.8 +L 0.533333,0.8,0.266667,0.8 +L 0.266667,0.533333,0.266667,0.266667 +L 0.266667,0.266667,0.533333,0.266667 +L 0.533333,0.266667,0.533333,0.533333 +L 0.533333,0.533333,0.266667,0.533333 + +[] 12 +L 0.266667,0.8,0,0.533333 +L 0,0.533333,0,0.266667 +L 0,0.266667,0.266667,0 +L 0.266667,0,0.533333,0 +L 0.533333,0,0.8,0.266667 +L 0.8,0.266667,0.8,0.533333 +L 0.8,0.533333,0.533333,0.8 +L 0.533333,0.8,0.266667,0.8 +L 0.266667,0.533333,0.266667,0.266667 +L 0.266667,0.266667,0.533333,0.266667 +L 0.533333,0.266667,0.533333,0.533333 +L 0.533333,0.533333,0.266667,0.533333 + +[] 12 +L 0.266667,0.8,0,0.533333 +L 0,0.533333,0,0.266667 +L 0,0.266667,0.266667,0 +L 0.266667,0,0.533333,0 +L 0.533333,0,0.8,0.266667 +L 0.8,0.266667,0.8,0.533333 +L 0.8,0.533333,0.533333,0.8 +L 0.533333,0.8,0.266667,0.8 +L 0.266667,0.533333,0.266667,0.266667 +L 0.266667,0.266667,0.533333,0.266667 +L 0.533333,0.266667,0.533333,0.533333 +L 0.533333,0.533333,0.266667,0.533333 + +[] 12 +L 0.266667,0.8,0,0.533333 +L 0,0.533333,0,0.266667 +L 0,0.266667,0.266667,0 +L 0.266667,0,0.533333,0 +L 0.533333,0,0.8,0.266667 +L 0.8,0.266667,0.8,0.533333 +L 0.8,0.533333,0.533333,0.8 +L 0.533333,0.8,0.266667,0.8 +L 0.266667,0.533333,0.266667,0.266667 +L 0.266667,0.266667,0.533333,0.266667 +L 0.533333,0.266667,0.533333,0.533333 +L 0.533333,0.533333,0.266667,0.533333 + +[] 12 +L 0.266667,0.8,0,0.533333 +L 0,0.533333,0,0.266667 +L 0,0.266667,0.266667,0 +L 0.266667,0,0.533333,0 +L 0.533333,0,0.8,0.266667 +L 0.8,0.266667,0.8,0.533333 +L 0.8,0.533333,0.533333,0.8 +L 0.533333,0.8,0.266667,0.8 +L 0.266667,0.533333,0.266667,0.266667 +L 0.266667,0.266667,0.533333,0.266667 +L 0.533333,0.266667,0.533333,0.533333 +L 0.533333,0.533333,0.266667,0.533333 + +[] 12 +L 0.266667,0.8,0,0.533333 +L 0,0.533333,0,0.266667 +L 0,0.266667,0.266667,0 +L 0.266667,0,0.533333,0 +L 0.533333,0,0.8,0.266667 +L 0.8,0.266667,0.8,0.533333 +L 0.8,0.533333,0.533333,0.8 +L 0.533333,0.8,0.266667,0.8 +L 0.266667,0.533333,0.266667,0.266667 +L 0.266667,0.266667,0.533333,0.266667 +L 0.533333,0.266667,0.533333,0.533333 +L 0.533333,0.533333,0.266667,0.533333 + +[] 12 +L 0.266667,0.8,0,0.533333 +L 0,0.533333,0,0.266667 +L 0,0.266667,0.266667,0 +L 0.266667,0,0.533333,0 +L 0.533333,0,0.8,0.266667 +L 0.8,0.266667,0.8,0.533333 +L 0.8,0.533333,0.533333,0.8 +L 0.533333,0.8,0.266667,0.8 +L 0.266667,0.533333,0.266667,0.266667 +L 0.266667,0.266667,0.533333,0.266667 +L 0.533333,0.266667,0.533333,0.533333 +L 0.533333,0.533333,0.266667,0.533333 + +[] 12 +L 0.266667,0.8,0,0.533333 +L 0,0.533333,0,0.266667 +L 0,0.266667,0.266667,0 +L 0.266667,0,0.533333,0 +L 0.533333,0,0.8,0.266667 +L 0.8,0.266667,0.8,0.533333 +L 0.8,0.533333,0.533333,0.8 +L 0.533333,0.8,0.266667,0.8 +L 0.266667,0.533333,0.266667,0.266667 +L 0.266667,0.266667,0.533333,0.266667 +L 0.533333,0.266667,0.533333,0.533333 +L 0.533333,0.533333,0.266667,0.533333 + +[] 12 +L 0.266667,0.8,0,0.533333 +L 0,0.533333,0,0.266667 +L 0,0.266667,0.266667,0 +L 0.266667,0,0.533333,0 +L 0.533333,0,0.8,0.266667 +L 0.8,0.266667,0.8,0.533333 +L 0.8,0.533333,0.533333,0.8 +L 0.533333,0.8,0.266667,0.8 +L 0.266667,0.533333,0.266667,0.266667 +L 0.266667,0.266667,0.533333,0.266667 +L 0.533333,0.266667,0.533333,0.533333 +L 0.533333,0.533333,0.266667,0.533333 + +[] 12 +L 0.266667,0.8,0,0.533333 +L 0,0.533333,0,0.266667 +L 0,0.266667,0.266667,0 +L 0.266667,0,0.533333,0 +L 0.533333,0,0.8,0.266667 +L 0.8,0.266667,0.8,0.533333 +L 0.8,0.533333,0.533333,0.8 +L 0.533333,0.8,0.266667,0.8 +L 0.266667,0.533333,0.266667,0.266667 +L 0.266667,0.266667,0.533333,0.266667 +L 0.533333,0.266667,0.533333,0.533333 +L 0.533333,0.533333,0.266667,0.533333 + +[] 12 +L 0.266667,0.8,0,0.533333 +L 0,0.533333,0,0.266667 +L 0,0.266667,0.266667,0 +L 0.266667,0,0.533333,0 +L 0.533333,0,0.8,0.266667 +L 0.8,0.266667,0.8,0.533333 +L 0.8,0.533333,0.533333,0.8 +L 0.533333,0.8,0.266667,0.8 +L 0.266667,0.533333,0.266667,0.266667 +L 0.266667,0.266667,0.533333,0.266667 +L 0.533333,0.266667,0.533333,0.533333 +L 0.533333,0.533333,0.266667,0.533333 + +[] 12 +L 0.266667,0.8,0,0.533333 +L 0,0.533333,0,0.266667 +L 0,0.266667,0.266667,0 +L 0.266667,0,0.533333,0 +L 0.533333,0,0.8,0.266667 +L 0.8,0.266667,0.8,0.533333 +L 0.8,0.533333,0.533333,0.8 +L 0.533333,0.8,0.266667,0.8 +L 0.266667,0.533333,0.266667,0.266667 +L 0.266667,0.266667,0.533333,0.266667 +L 0.533333,0.266667,0.533333,0.533333 +L 0.533333,0.533333,0.266667,0.533333 + +[#0107] 44 +L 3.2,2.666667,3.2,2.933333 +L 3.2,2.933333,2.933333,2.933333 +L 2.933333,2.933333,2.933333,2.4 +L 2.933333,2.4,3.466667,2.4 +L 3.466667,2.4,3.466667,2.933333 +L 3.466667,2.933333,2.933333,3.466667 +L 2.933333,3.466667,2.4,3.733333 +L 2.4,3.733333,1.6,3.733333 +L 1.6,3.733333,0.8,3.466667 +L 0.8,3.466667,0.266667,2.933333 +L 0.266667,2.933333,0,2.133333 +L 0,2.133333,0,1.6 +L 0,1.6,0.266667,0.8 +L 0.266667,0.8,0.8,0.266667 +L 0.8,0.266667,1.6,0 +L 1.6,0,2.133333,0 +L 2.133333,0,2.933333,0.266667 +L 2.933333,0.266667,3.466667,0.8 +L 0.533333,2.933333,0.266667,2.4 +L 0.266667,2.4,0.266667,1.333333 +L 0.266667,1.333333,0.533333,0.8 +L 1.6,3.733333,1.066667,3.466667 +L 1.066667,3.466667,0.8,3.2 +L 0.8,3.2,0.533333,2.4 +L 0.533333,2.4,0.533333,1.333333 +L 0.533333,1.333333,0.8,0.533333 +L 0.8,0.533333,1.066667,0.266667 +L 1.066667,0.266667,1.6,0 +L 2.666667,5.6,2.4,5.333333 +L 2.4,5.333333,2.133333,5.333333 +L 2.133333,5.333333,1.866667,5.6 +L 1.866667,5.6,1.866667,5.866667 +L 1.866667,5.866667,2.133333,6.133333 +L 2.133333,6.133333,2.4,6.133333 +L 2.4,6.133333,2.666667,5.866667 +L 2.666667,5.866667,2.666667,5.066667 +L 2.666667,5.066667,2.4,4.533333 +L 2.4,4.533333,1.866667,4.266667 +L 2.133333,5.866667,2.133333,5.6 +L 2.133333,5.6,2.4,5.6 +L 2.4,5.6,2.4,5.866667 +L 2.4,5.866667,2.133333,5.866667 +L 2.4,5.333333,2.666667,5.066667 +L 2.666667,5.6,2.4,4.533333 + +[] 12 +L 0.266667,0.8,0,0.533333 +L 0,0.533333,0,0.266667 +L 0,0.266667,0.266667,0 +L 0.266667,0,0.533333,0 +L 0.533333,0,0.8,0.266667 +L 0.8,0.266667,0.8,0.533333 +L 0.8,0.533333,0.533333,0.8 +L 0.533333,0.8,0.266667,0.8 +L 0.266667,0.533333,0.266667,0.266667 +L 0.266667,0.266667,0.533333,0.266667 +L 0.533333,0.266667,0.533333,0.533333 +L 0.533333,0.533333,0.266667,0.533333 + +[] 12 +L 0.266667,0.8,0,0.533333 +L 0,0.533333,0,0.266667 +L 0,0.266667,0.266667,0 +L 0.266667,0,0.533333,0 +L 0.533333,0,0.8,0.266667 +L 0.8,0.266667,0.8,0.533333 +L 0.8,0.533333,0.533333,0.8 +L 0.533333,0.8,0.266667,0.8 +L 0.266667,0.533333,0.266667,0.266667 +L 0.266667,0.266667,0.533333,0.266667 +L 0.533333,0.266667,0.533333,0.533333 +L 0.533333,0.533333,0.266667,0.533333 + +[] 12 +L 0.266667,0.8,0,0.533333 +L 0,0.533333,0,0.266667 +L 0,0.266667,0.266667,0 +L 0.266667,0,0.533333,0 +L 0.533333,0,0.8,0.266667 +L 0.8,0.266667,0.8,0.533333 +L 0.8,0.533333,0.533333,0.8 +L 0.533333,0.8,0.266667,0.8 +L 0.266667,0.533333,0.266667,0.266667 +L 0.266667,0.266667,0.533333,0.266667 +L 0.533333,0.266667,0.533333,0.533333 +L 0.533333,0.533333,0.266667,0.533333 + +[#0119] 47 +L 0.533333,2.133333,3.466667,2.133333 +L 3.466667,2.133333,3.466667,2.666667 +L 3.466667,2.666667,3.2,3.2 +L 3.2,3.2,2.933333,3.466667 +L 2.933333,3.466667,2.133333,3.733333 +L 2.133333,3.733333,1.6,3.733333 +L 1.6,3.733333,0.8,3.466667 +L 0.8,3.466667,0.266667,2.933333 +L 0.266667,2.933333,0,2.133333 +L 0,2.133333,0,1.6 +L 0,1.6,0.266667,0.8 +L 0.266667,0.8,0.8,0.266667 +L 0.8,0.266667,1.6,0 +L 1.6,0,2.133333,0 +L 2.133333,0,2.933333,0.266667 +L 2.933333,0.266667,3.466667,0.8 +L 3.2,2.4,3.2,2.666667 +L 3.2,2.666667,2.933333,3.2 +L 0.533333,2.933333,0.266667,2.4 +L 0.266667,2.4,0.266667,1.333333 +L 0.266667,1.333333,0.533333,0.8 +L 2.933333,2.133333,2.933333,2.933333 +L 2.933333,2.933333,2.666667,3.466667 +L 2.666667,3.466667,2.133333,3.733333 +L 1.6,3.733333,1.066667,3.466667 +L 1.066667,3.466667,0.8,3.2 +L 0.8,3.2,0.533333,2.4 +L 0.533333,2.4,0.533333,1.333333 +L 0.533333,1.333333,0.8,0.533333 +L 0.8,0.533333,1.066667,0.266667 +L 1.066667,0.266667,1.6,0 +L 2.933333,0.266667,2.4,0 +L 2.4,0,2.133333,-0.533333 +L 2.133333,-0.533333,2.133333,-1.333333 +L 2.133333,-1.333333,2.4,-1.6 +L 2.4,-1.6,2.666667,-1.6 +L 2.666667,-1.6,2.933333,-1.333333 +L 2.933333,-1.333333,2.933333,-1.066667 +L 2.933333,-1.066667,2.666667,-0.8 +L 2.666667,-0.8,2.4,-0.8 +L 2.4,-0.8,2.133333,-1.066667 +L 2.4,-1.066667,2.4,-1.333333 +L 2.4,-1.333333,2.666667,-1.333333 +L 2.666667,-1.333333,2.666667,-1.066667 +L 2.666667,-1.066667,2.4,-1.066667 +L 2.4,0,2.133333,-1.066667 +L 2.133333,-0.533333,2.4,-0.8 + +[] 12 +L 0.266667,0.8,0,0.533333 +L 0,0.533333,0,0.266667 +L 0,0.266667,0.266667,0 +L 0.266667,0,0.533333,0 +L 0.533333,0,0.8,0.266667 +L 0.8,0.266667,0.8,0.533333 +L 0.8,0.533333,0.533333,0.8 +L 0.533333,0.8,0.266667,0.8 +L 0.266667,0.533333,0.266667,0.266667 +L 0.266667,0.266667,0.533333,0.266667 +L 0.533333,0.266667,0.533333,0.533333 +L 0.533333,0.533333,0.266667,0.533333 + +[] 12 +L 0.266667,0.8,0,0.533333 +L 0,0.533333,0,0.266667 +L 0,0.266667,0.266667,0 +L 0.266667,0,0.533333,0 +L 0.533333,0,0.8,0.266667 +L 0.8,0.266667,0.8,0.533333 +L 0.8,0.533333,0.533333,0.8 +L 0.533333,0.8,0.266667,0.8 +L 0.266667,0.533333,0.266667,0.266667 +L 0.266667,0.266667,0.533333,0.266667 +L 0.533333,0.266667,0.533333,0.533333 +L 0.533333,0.533333,0.266667,0.533333 + +[] 12 +L 0.266667,0.8,0,0.533333 +L 0,0.533333,0,0.266667 +L 0,0.266667,0.266667,0 +L 0.266667,0,0.533333,0 +L 0.533333,0,0.8,0.266667 +L 0.8,0.266667,0.8,0.533333 +L 0.8,0.533333,0.533333,0.8 +L 0.533333,0.8,0.266667,0.8 +L 0.266667,0.533333,0.266667,0.266667 +L 0.266667,0.266667,0.533333,0.266667 +L 0.533333,0.266667,0.533333,0.533333 +L 0.533333,0.533333,0.266667,0.533333 + +[] 12 +L 0.266667,0.8,0,0.533333 +L 0,0.533333,0,0.266667 +L 0,0.266667,0.266667,0 +L 0.266667,0,0.533333,0 +L 0.533333,0,0.8,0.266667 +L 0.8,0.266667,0.8,0.533333 +L 0.8,0.533333,0.533333,0.8 +L 0.533333,0.8,0.266667,0.8 +L 0.266667,0.533333,0.266667,0.266667 +L 0.266667,0.266667,0.533333,0.266667 +L 0.533333,0.266667,0.533333,0.533333 +L 0.533333,0.533333,0.266667,0.533333 + +[] 12 +L 0.266667,0.8,0,0.533333 +L 0,0.533333,0,0.266667 +L 0,0.266667,0.266667,0 +L 0.266667,0,0.533333,0 +L 0.533333,0,0.8,0.266667 +L 0.8,0.266667,0.8,0.533333 +L 0.8,0.533333,0.533333,0.8 +L 0.533333,0.8,0.266667,0.8 +L 0.266667,0.533333,0.266667,0.266667 +L 0.266667,0.266667,0.533333,0.266667 +L 0.533333,0.266667,0.533333,0.533333 +L 0.533333,0.533333,0.266667,0.533333 + +[] 12 +L 0.266667,0.8,0,0.533333 +L 0,0.533333,0,0.266667 +L 0,0.266667,0.266667,0 +L 0.266667,0,0.533333,0 +L 0.533333,0,0.8,0.266667 +L 0.8,0.266667,0.8,0.533333 +L 0.8,0.533333,0.533333,0.8 +L 0.533333,0.8,0.266667,0.8 +L 0.266667,0.533333,0.266667,0.266667 +L 0.266667,0.266667,0.533333,0.266667 +L 0.533333,0.266667,0.533333,0.533333 +L 0.533333,0.533333,0.266667,0.533333 + +[#0144] 45 +L 0.8,3.733333,0.8,0 +L 1.066667,3.466667,1.066667,0.266667 +L 0,3.733333,1.333333,3.733333 +L 1.333333,3.733333,1.333333,0 +L 1.333333,2.666667,1.6,3.2 +L 1.6,3.2,1.866667,3.466667 +L 1.866667,3.466667,2.4,3.733333 +L 2.4,3.733333,3.2,3.733333 +L 3.2,3.733333,3.733333,3.466667 +L 3.733333,3.466667,4,3.2 +L 4,3.2,4.266667,2.4 +L 4.266667,2.4,4.266667,0 +L 3.733333,3.2,4,2.4 +L 4,2.4,4,0.266667 +L 3.2,3.733333,3.466667,3.466667 +L 3.466667,3.466667,3.733333,2.666667 +L 3.733333,2.666667,3.733333,0 +L 0,0,2.133333,0 +L 2.933333,0,5.066667,0 +L 0.266667,3.733333,0.8,3.466667 +L 0.533333,3.733333,0.8,3.2 +L 0.8,0.266667,0.266667,0 +L 0.8,0.533333,0.533333,0 +L 1.333333,0.533333,1.6,0 +L 1.333333,0.266667,1.866667,0 +L 3.733333,0.266667,3.2,0 +L 3.733333,0.533333,3.466667,0 +L 4.266667,0.533333,4.533333,0 +L 4.266667,0.266667,4.8,0 +L 3.2,5.6,2.933333,5.333333 +L 2.933333,5.333333,2.666667,5.333333 +L 2.666667,5.333333,2.4,5.6 +L 2.4,5.6,2.4,5.866667 +L 2.4,5.866667,2.666667,6.133333 +L 2.666667,6.133333,2.933333,6.133333 +L 2.933333,6.133333,3.2,5.866667 +L 3.2,5.866667,3.2,5.066667 +L 3.2,5.066667,2.933333,4.533333 +L 2.933333,4.533333,2.4,4.266667 +L 2.666667,5.866667,2.666667,5.6 +L 2.666667,5.6,2.933333,5.6 +L 2.933333,5.6,2.933333,5.866667 +L 2.933333,5.866667,2.666667,5.866667 +L 2.933333,5.333333,3.2,5.066667 +L 3.2,5.6,2.933333,4.533333 + +[] 12 +L 0.266667,0.8,0,0.533333 +L 0,0.533333,0,0.266667 +L 0,0.266667,0.266667,0 +L 0.266667,0,0.533333,0 +L 0.533333,0,0.8,0.266667 +L 0.8,0.266667,0.8,0.533333 +L 0.8,0.533333,0.533333,0.8 +L 0.533333,0.8,0.266667,0.8 +L 0.266667,0.533333,0.266667,0.266667 +L 0.266667,0.266667,0.533333,0.266667 +L 0.533333,0.266667,0.533333,0.533333 +L 0.533333,0.533333,0.266667,0.533333 + +[#00F3] 52 +L 1.6,3.733333,0.8,3.466667 +L 0.8,3.466667,0.266667,2.933333 +L 0.266667,2.933333,0,2.133333 +L 0,2.133333,0,1.6 +L 0,1.6,0.266667,0.8 +L 0.266667,0.8,0.8,0.266667 +L 0.8,0.266667,1.6,0 +L 1.6,0,2.133333,0 +L 2.133333,0,2.933333,0.266667 +L 2.933333,0.266667,3.466667,0.8 +L 3.466667,0.8,3.733333,1.6 +L 3.733333,1.6,3.733333,2.133333 +L 3.733333,2.133333,3.466667,2.933333 +L 3.466667,2.933333,2.933333,3.466667 +L 2.933333,3.466667,2.133333,3.733333 +L 2.133333,3.733333,1.6,3.733333 +L 0.533333,2.933333,0.266667,2.4 +L 0.266667,2.4,0.266667,1.333333 +L 0.266667,1.333333,0.533333,0.8 +L 3.2,0.8,3.466667,1.333333 +L 3.466667,1.333333,3.466667,2.4 +L 3.466667,2.4,3.2,2.933333 +L 1.6,3.733333,1.066667,3.466667 +L 1.066667,3.466667,0.8,3.2 +L 0.8,3.2,0.533333,2.4 +L 0.533333,2.4,0.533333,1.333333 +L 0.533333,1.333333,0.8,0.533333 +L 0.8,0.533333,1.066667,0.266667 +L 1.066667,0.266667,1.6,0 +L 2.133333,0,2.666667,0.266667 +L 2.666667,0.266667,2.933333,0.533333 +L 2.933333,0.533333,3.2,1.333333 +L 3.2,1.333333,3.2,2.4 +L 3.2,2.4,2.933333,3.2 +L 2.933333,3.2,2.666667,3.466667 +L 2.666667,3.466667,2.133333,3.733333 +L 2.666667,5.6,2.4,5.333333 +L 2.4,5.333333,2.133333,5.333333 +L 2.133333,5.333333,1.866667,5.6 +L 1.866667,5.6,1.866667,5.866667 +L 1.866667,5.866667,2.133333,6.133333 +L 2.133333,6.133333,2.4,6.133333 +L 2.4,6.133333,2.666667,5.866667 +L 2.666667,5.866667,2.666667,5.066667 +L 2.666667,5.066667,2.4,4.533333 +L 2.4,4.533333,1.866667,4.266667 +L 2.133333,5.866667,2.133333,5.6 +L 2.133333,5.6,2.4,5.6 +L 2.4,5.6,2.4,5.866667 +L 2.4,5.866667,2.133333,5.866667 +L 2.4,5.333333,2.666667,5.066667 +L 2.666667,5.6,2.4,4.533333 + +#EOF diff --git a/pycam/share/fonts/scriptc.cxf b/pycam/share/fonts/scriptc.cxf new file mode 100644 index 00000000..68d1308e --- /dev/null +++ b/pycam/share/fonts/scriptc.cxf @@ -0,0 +1,3635 @@ +# Format: QCad II Font +# Creator: Adam Radlowski's "dodajf" program - GRASS font translator +# Version: 1.0.0 +# Name: Script Complex +# LetterSpacing: 3.0 +# WordSpacing: 6.75 +# LineSpacingFactor: 1.0 +# Author: Hershey fonts +# Author: Adam Radlowski (Polish) + +[!] 9 +L 1.548387,5.419355,1.290323,5.16129 +L 1.290323,5.16129,0.774194,2.064516 +L 1.548387,5.16129,0.774194,2.064516 +L 1.548387,5.419355,1.806452,5.16129 +L 1.806452,5.16129,0.774194,2.064516 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +["] 4 +L 0.516129,5.419355,0,3.612903 +L 0.774194,5.419355,0,3.612903 +L 2.83871,5.419355,2.322581,3.612903 +L 3.096774,5.419355,2.322581,3.612903 + +[#] 4 +L 2.064516,5.419355,0.258065,-1.806452 +L 3.612903,5.419355,1.806452,-1.806452 +L 0.258065,2.580645,3.870968,2.580645 +L 0,1.032258,3.612903,1.032258 + +[$] 33 +L 2.580645,6.451613,0.516129,-1.032258 +L 3.870968,6.451613,1.806452,-1.032258 +L 4.129032,4.387097,3.870968,4.129032 +L 3.870968,4.129032,4.129032,3.870968 +L 4.129032,3.870968,4.387097,4.129032 +L 4.387097,4.129032,4.387097,4.387097 +L 4.387097,4.387097,4.129032,4.903226 +L 4.129032,4.903226,3.870968,5.16129 +L 3.870968,5.16129,3.096774,5.419355 +L 3.096774,5.419355,2.064516,5.419355 +L 2.064516,5.419355,1.290323,5.16129 +L 1.290323,5.16129,0.774194,4.645161 +L 0.774194,4.645161,0.774194,4.129032 +L 0.774194,4.129032,1.032258,3.612903 +L 1.032258,3.612903,1.290323,3.354839 +L 1.290323,3.354839,3.096774,2.322581 +L 3.096774,2.322581,3.612903,1.806452 +L 0.774194,4.129032,1.290323,3.612903 +L 1.290323,3.612903,3.096774,2.580645 +L 3.096774,2.580645,3.354839,2.322581 +L 3.354839,2.322581,3.612903,1.806452 +L 3.612903,1.806452,3.612903,1.032258 +L 3.612903,1.032258,3.354839,0.516129 +L 3.354839,0.516129,3.096774,0.258065 +L 3.096774,0.258065,2.322581,0 +L 2.322581,0,1.290323,0 +L 1.290323,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 +L 0.258065,0.516129,0,1.032258 +L 0,1.032258,0,1.290323 +L 0,1.290323,0.258065,1.548387 +L 0.258065,1.548387,0.516129,1.290323 +L 0.516129,1.290323,0.258065,1.032258 + +[%] 26 +L 4.645161,5.419355,0,0 +L 1.290323,5.419355,1.806452,4.903226 +L 1.806452,4.903226,1.806452,4.387097 +L 1.806452,4.387097,1.548387,3.870968 +L 1.548387,3.870968,1.032258,3.612903 +L 1.032258,3.612903,0.516129,3.612903 +L 0.516129,3.612903,0,4.129032 +L 0,4.129032,0,4.645161 +L 0,4.645161,0.258065,5.16129 +L 0.258065,5.16129,0.774194,5.419355 +L 0.774194,5.419355,1.290323,5.419355 +L 1.290323,5.419355,1.806452,5.16129 +L 1.806452,5.16129,2.580645,4.903226 +L 2.580645,4.903226,3.354839,4.903226 +L 3.354839,4.903226,4.129032,5.16129 +L 4.129032,5.16129,4.645161,5.419355 +L 3.612903,1.806452,3.096774,1.548387 +L 3.096774,1.548387,2.83871,1.032258 +L 2.83871,1.032258,2.83871,0.516129 +L 2.83871,0.516129,3.354839,0 +L 3.354839,0,3.870968,0 +L 3.870968,0,4.387097,0.258065 +L 4.387097,0.258065,4.645161,0.774194 +L 4.645161,0.774194,4.645161,1.290323 +L 4.645161,1.290323,4.129032,1.806452 +L 4.129032,1.806452,3.612903,1.806452 + +[&] 49 +L 5.419355,3.354839,5.16129,3.096774 +L 5.16129,3.096774,5.419355,2.83871 +L 5.419355,2.83871,5.677419,3.096774 +L 5.677419,3.096774,5.677419,3.354839 +L 5.677419,3.354839,5.419355,3.612903 +L 5.419355,3.612903,5.16129,3.612903 +L 5.16129,3.612903,4.645161,3.354839 +L 4.645161,3.354839,4.129032,2.83871 +L 4.129032,2.83871,2.83871,0.774194 +L 2.83871,0.774194,2.322581,0.258065 +L 2.322581,0.258065,1.806452,0 +L 1.806452,0,1.032258,0 +L 1.032258,0,0.258065,0.258065 +L 0.258065,0.258065,0,0.774194 +L 0,0.774194,0,1.290323 +L 0,1.290323,0.258065,1.806452 +L 0.258065,1.806452,0.516129,2.064516 +L 0.516129,2.064516,1.032258,2.322581 +L 1.032258,2.322581,2.322581,2.83871 +L 2.322581,2.83871,2.83871,3.096774 +L 2.83871,3.096774,3.354839,3.612903 +L 3.354839,3.612903,3.612903,4.129032 +L 3.612903,4.129032,3.612903,4.645161 +L 3.612903,4.645161,3.354839,5.16129 +L 3.354839,5.16129,2.83871,5.419355 +L 2.83871,5.419355,2.322581,5.16129 +L 2.322581,5.16129,2.064516,4.645161 +L 2.064516,4.645161,2.064516,3.870968 +L 2.064516,3.870968,2.322581,2.322581 +L 2.322581,2.322581,2.580645,1.548387 +L 2.580645,1.548387,3.096774,0.774194 +L 3.096774,0.774194,3.612903,0.258065 +L 3.612903,0.258065,4.129032,0 +L 4.129032,0,4.645161,0 +L 4.645161,0,4.903226,0.516129 +L 4.903226,0.516129,4.903226,0.774194 +L 1.032258,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.774194 +L 0.258065,0.774194,0.258065,1.290323 +L 0.258065,1.290323,0.516129,1.806452 +L 0.516129,1.806452,0.774194,2.064516 +L 0.774194,2.064516,2.322581,2.83871 +L 2.064516,3.870968,2.322581,2.580645 +L 2.322581,2.580645,2.580645,1.806452 +L 2.580645,1.806452,3.096774,1.032258 +L 3.096774,1.032258,3.612903,0.516129 +L 3.612903,0.516129,4.129032,0.258065 +L 4.129032,0.258065,4.645161,0.258065 +L 4.645161,0.258065,4.903226,0.516129 + +['] 6 +L 0.516129,4.903226,0.258065,5.16129 +L 0.258065,5.16129,0.516129,5.419355 +L 0.516129,5.419355,0.774194,5.16129 +L 0.774194,5.16129,0.774194,4.903226 +L 0.774194,4.903226,0.516129,4.387097 +L 0.516129,4.387097,0,3.870968 + +[(] 16 +L 3.096774,6.451613,2.064516,5.677419 +L 2.064516,5.677419,1.290323,4.903226 +L 1.290323,4.903226,0.774194,4.129032 +L 0.774194,4.129032,0.258065,3.096774 +L 0.258065,3.096774,0,1.806452 +L 0,1.806452,0,0.774194 +L 0,0.774194,0.258065,-0.516129 +L 0.258065,-0.516129,0.516129,-1.290323 +L 0.516129,-1.290323,0.774194,-1.806452 +L 2.064516,5.677419,1.290323,4.645161 +L 1.290323,4.645161,0.774194,3.612903 +L 0.774194,3.612903,0.516129,2.83871 +L 0.516129,2.83871,0.258065,1.548387 +L 0.258065,1.548387,0.258065,0.258065 +L 0.258065,0.258065,0.516129,-1.032258 +L 0.516129,-1.032258,0.774194,-1.806452 + +[)] 16 +L 2.322581,6.451613,2.580645,5.935484 +L 2.580645,5.935484,2.83871,5.16129 +L 2.83871,5.16129,3.096774,3.870968 +L 3.096774,3.870968,3.096774,2.83871 +L 3.096774,2.83871,2.83871,1.548387 +L 2.83871,1.548387,2.322581,0.516129 +L 2.322581,0.516129,1.806452,-0.258065 +L 1.806452,-0.258065,1.032258,-1.032258 +L 1.032258,-1.032258,0,-1.806452 +L 2.322581,6.451613,2.580645,5.677419 +L 2.580645,5.677419,2.83871,4.387097 +L 2.83871,4.387097,2.83871,3.096774 +L 2.83871,3.096774,2.580645,1.806452 +L 2.580645,1.806452,2.322581,1.032258 +L 2.322581,1.032258,1.806452,0 +L 1.806452,0,1.032258,-1.032258 + +[*] 3 +L 1.290323,5.419355,1.290323,2.322581 +L 0,4.645161,2.580645,3.096774 +L 2.580645,4.645161,0,3.096774 + +[+] 2 +L 2.322581,4.645161,2.322581,0 +L 0,2.322581,4.645161,2.322581 + +[,] 6 +L 0.516129,0,0.258065,0.258065 +L 0.258065,0.258065,0.516129,0.516129 +L 0.516129,0.516129,0.774194,0.258065 +L 0.774194,0.258065,0.774194,0 +L 0.774194,0,0.516129,-0.516129 +L 0.516129,-0.516129,0,-1.032258 + +[-] 1 +L 0,2.322581,4.645161,2.322581 + +[.] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[/] 1 +L 1.548387,6.451613,0,-1.806452 + +[0] 36 +L 2.322581,5.419355,1.548387,5.16129 +L 1.548387,5.16129,1.032258,4.645161 +L 1.032258,4.645161,0.516129,3.870968 +L 0.516129,3.870968,0.258065,3.096774 +L 0.258065,3.096774,0,2.064516 +L 0,2.064516,0,1.290323 +L 0,1.290323,0.258065,0.516129 +L 0.258065,0.516129,0.516129,0.258065 +L 0.516129,0.258065,1.032258,0 +L 1.032258,0,1.548387,0 +L 1.548387,0,2.322581,0.258065 +L 2.322581,0.258065,2.83871,0.774194 +L 2.83871,0.774194,3.354839,1.548387 +L 3.354839,1.548387,3.612903,2.322581 +L 3.612903,2.322581,3.870968,3.354839 +L 3.870968,3.354839,3.870968,4.129032 +L 3.870968,4.129032,3.612903,4.903226 +L 3.612903,4.903226,3.354839,5.16129 +L 3.354839,5.16129,2.83871,5.419355 +L 2.83871,5.419355,2.322581,5.419355 +L 2.322581,5.419355,1.806452,5.16129 +L 1.806452,5.16129,1.290323,4.645161 +L 1.290323,4.645161,0.774194,3.870968 +L 0.774194,3.870968,0.516129,3.096774 +L 0.516129,3.096774,0.258065,2.064516 +L 0.258065,2.064516,0.258065,1.290323 +L 0.258065,1.290323,0.516129,0.516129 +L 0.516129,0.516129,1.032258,0 +L 1.548387,0,2.064516,0.258065 +L 2.064516,0.258065,2.580645,0.774194 +L 2.580645,0.774194,3.096774,1.548387 +L 3.096774,1.548387,3.354839,2.322581 +L 3.354839,2.322581,3.612903,3.354839 +L 3.612903,3.354839,3.612903,4.129032 +L 3.612903,4.129032,3.354839,4.903226 +L 3.354839,4.903226,2.83871,5.419355 + +[1] 7 +L 1.548387,4.387097,0.258065,0 +L 2.064516,5.419355,0.516129,0 +L 2.064516,5.419355,1.290323,4.645161 +L 1.290323,4.645161,0.516129,4.129032 +L 0.516129,4.129032,0,3.870968 +L 1.806452,4.645161,0.774194,4.129032 +L 0.774194,4.129032,0,3.870968 + +[2] 34 +L 1.548387,4.387097,1.806452,4.129032 +L 1.806452,4.129032,1.548387,3.870968 +L 1.548387,3.870968,1.290323,4.129032 +L 1.290323,4.129032,1.290323,4.387097 +L 1.290323,4.387097,1.548387,4.903226 +L 1.548387,4.903226,1.806452,5.16129 +L 1.806452,5.16129,2.580645,5.419355 +L 2.580645,5.419355,3.354839,5.419355 +L 3.354839,5.419355,4.129032,5.16129 +L 4.129032,5.16129,4.387097,4.645161 +L 4.387097,4.645161,4.387097,4.129032 +L 4.387097,4.129032,4.129032,3.612903 +L 4.129032,3.612903,3.612903,3.096774 +L 3.612903,3.096774,2.83871,2.580645 +L 2.83871,2.580645,1.806452,2.064516 +L 1.806452,2.064516,1.032258,1.548387 +L 1.032258,1.548387,0.516129,1.032258 +L 0.516129,1.032258,0,0 +L 3.354839,5.419355,3.870968,5.16129 +L 3.870968,5.16129,4.129032,4.645161 +L 4.129032,4.645161,4.129032,4.129032 +L 4.129032,4.129032,3.870968,3.612903 +L 3.870968,3.612903,3.354839,3.096774 +L 3.354839,3.096774,1.806452,2.064516 +L 0.258065,0.516129,0.516129,0.774194 +L 0.516129,0.774194,1.032258,0.774194 +L 1.032258,0.774194,2.322581,0.258065 +L 2.322581,0.258065,3.096774,0.258065 +L 3.096774,0.258065,3.612903,0.516129 +L 3.612903,0.516129,3.870968,1.032258 +L 1.032258,0.774194,2.322581,0 +L 2.322581,0,3.096774,0 +L 3.096774,0,3.612903,0.258065 +L 3.612903,0.258065,3.870968,1.032258 + +[3] 42 +L 1.290323,4.387097,1.548387,4.129032 +L 1.548387,4.129032,1.290323,3.870968 +L 1.290323,3.870968,1.032258,4.129032 +L 1.032258,4.129032,1.032258,4.387097 +L 1.032258,4.387097,1.290323,4.903226 +L 1.290323,4.903226,1.548387,5.16129 +L 1.548387,5.16129,2.322581,5.419355 +L 2.322581,5.419355,3.096774,5.419355 +L 3.096774,5.419355,3.870968,5.16129 +L 3.870968,5.16129,4.129032,4.645161 +L 4.129032,4.645161,4.129032,4.129032 +L 4.129032,4.129032,3.870968,3.612903 +L 3.870968,3.612903,3.096774,3.096774 +L 3.096774,3.096774,2.322581,2.83871 +L 3.096774,5.419355,3.612903,5.16129 +L 3.612903,5.16129,3.870968,4.645161 +L 3.870968,4.645161,3.870968,4.129032 +L 3.870968,4.129032,3.612903,3.612903 +L 3.612903,3.612903,3.096774,3.096774 +L 1.806452,2.83871,2.322581,2.83871 +L 2.322581,2.83871,3.096774,2.580645 +L 3.096774,2.580645,3.354839,2.322581 +L 3.354839,2.322581,3.612903,1.806452 +L 3.612903,1.806452,3.612903,1.032258 +L 3.612903,1.032258,3.354839,0.516129 +L 3.354839,0.516129,3.096774,0.258065 +L 3.096774,0.258065,2.322581,0 +L 2.322581,0,1.290323,0 +L 1.290323,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 +L 0.258065,0.516129,0,1.032258 +L 0,1.032258,0,1.290323 +L 0,1.290323,0.258065,1.548387 +L 0.258065,1.548387,0.516129,1.290323 +L 0.516129,1.290323,0.258065,1.032258 +L 2.322581,2.83871,2.83871,2.580645 +L 2.83871,2.580645,3.096774,2.322581 +L 3.096774,2.322581,3.354839,1.806452 +L 3.354839,1.806452,3.354839,1.032258 +L 3.354839,1.032258,3.096774,0.516129 +L 3.096774,0.516129,2.83871,0.258065 +L 2.83871,0.258065,2.322581,0 + +[4] 4 +L 3.612903,5.16129,2.064516,0 +L 3.870968,5.419355,2.322581,0 +L 3.870968,5.419355,0,1.548387 +L 0,1.548387,4.129032,1.548387 + +[5] 29 +L 1.806452,5.419355,0.516129,2.83871 +L 1.806452,5.419355,4.387097,5.419355 +L 1.806452,5.16129,3.096774,5.16129 +L 3.096774,5.16129,4.387097,5.419355 +L 0.516129,2.83871,0.774194,3.096774 +L 0.774194,3.096774,1.548387,3.354839 +L 1.548387,3.354839,2.322581,3.354839 +L 2.322581,3.354839,3.096774,3.096774 +L 3.096774,3.096774,3.354839,2.83871 +L 3.354839,2.83871,3.612903,2.322581 +L 3.612903,2.322581,3.612903,1.548387 +L 3.612903,1.548387,3.354839,0.774194 +L 3.354839,0.774194,2.83871,0.258065 +L 2.83871,0.258065,2.064516,0 +L 2.064516,0,1.290323,0 +L 1.290323,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 +L 0.258065,0.516129,0,1.032258 +L 0,1.032258,0,1.290323 +L 0,1.290323,0.258065,1.548387 +L 0.258065,1.548387,0.516129,1.290323 +L 0.516129,1.290323,0.258065,1.032258 +L 2.322581,3.354839,2.83871,3.096774 +L 2.83871,3.096774,3.096774,2.83871 +L 3.096774,2.83871,3.354839,2.322581 +L 3.354839,2.322581,3.354839,1.548387 +L 3.354839,1.548387,3.096774,0.774194 +L 3.096774,0.774194,2.580645,0.258065 +L 2.580645,0.258065,2.064516,0 + +[6] 40 +L 3.612903,4.645161,3.354839,4.387097 +L 3.354839,4.387097,3.612903,4.129032 +L 3.612903,4.129032,3.870968,4.387097 +L 3.870968,4.387097,3.870968,4.645161 +L 3.870968,4.645161,3.612903,5.16129 +L 3.612903,5.16129,3.096774,5.419355 +L 3.096774,5.419355,2.322581,5.419355 +L 2.322581,5.419355,1.548387,5.16129 +L 1.548387,5.16129,1.032258,4.645161 +L 1.032258,4.645161,0.516129,3.870968 +L 0.516129,3.870968,0.258065,3.096774 +L 0.258065,3.096774,0,2.064516 +L 0,2.064516,0,1.032258 +L 0,1.032258,0.258065,0.516129 +L 0.258065,0.516129,0.516129,0.258065 +L 0.516129,0.258065,1.032258,0 +L 1.032258,0,1.806452,0 +L 1.806452,0,2.580645,0.258065 +L 2.580645,0.258065,3.096774,0.774194 +L 3.096774,0.774194,3.354839,1.290323 +L 3.354839,1.290323,3.354839,2.064516 +L 3.354839,2.064516,3.096774,2.580645 +L 3.096774,2.580645,2.83871,2.83871 +L 2.83871,2.83871,2.322581,3.096774 +L 2.322581,3.096774,1.548387,3.096774 +L 1.548387,3.096774,1.032258,2.83871 +L 1.032258,2.83871,0.516129,2.322581 +L 0.516129,2.322581,0.258065,1.806452 +L 2.322581,5.419355,1.806452,5.16129 +L 1.806452,5.16129,1.290323,4.645161 +L 1.290323,4.645161,0.774194,3.870968 +L 0.774194,3.870968,0.516129,3.096774 +L 0.516129,3.096774,0.258065,2.064516 +L 0.258065,2.064516,0.258065,0.774194 +L 0.258065,0.774194,0.516129,0.258065 +L 1.806452,0,2.322581,0.258065 +L 2.322581,0.258065,2.83871,0.774194 +L 2.83871,0.774194,3.096774,1.290323 +L 3.096774,1.290323,3.096774,2.322581 +L 3.096774,2.322581,2.83871,2.83871 + +[7] 20 +L 0.516129,5.419355,0,3.870968 +L 3.870968,5.419355,3.612903,4.645161 +L 3.612903,4.645161,3.096774,3.870968 +L 3.096774,3.870968,1.806452,2.322581 +L 1.806452,2.322581,1.290323,1.548387 +L 1.290323,1.548387,1.032258,1.032258 +L 1.032258,1.032258,0.774194,0 +L 3.096774,3.870968,1.548387,2.322581 +L 1.548387,2.322581,1.032258,1.548387 +L 1.032258,1.548387,0.774194,1.032258 +L 0.774194,1.032258,0.516129,0 +L 0.258065,4.645161,1.032258,5.419355 +L 1.032258,5.419355,1.548387,5.419355 +L 1.548387,5.419355,2.83871,4.645161 +L 0.516129,4.903226,1.032258,5.16129 +L 1.032258,5.16129,1.548387,5.16129 +L 1.548387,5.16129,2.83871,4.645161 +L 2.83871,4.645161,3.354839,4.645161 +L 3.354839,4.645161,3.612903,4.903226 +L 3.612903,4.903226,3.870968,5.419355 + +[8] 51 +L 2.322581,5.419355,1.548387,5.16129 +L 1.548387,5.16129,1.290323,4.903226 +L 1.290323,4.903226,1.032258,4.387097 +L 1.032258,4.387097,1.032258,3.612903 +L 1.032258,3.612903,1.290323,3.096774 +L 1.290323,3.096774,1.806452,2.83871 +L 1.806452,2.83871,2.580645,2.83871 +L 2.580645,2.83871,3.612903,3.096774 +L 3.612903,3.096774,3.870968,3.354839 +L 3.870968,3.354839,4.129032,3.870968 +L 4.129032,3.870968,4.129032,4.645161 +L 4.129032,4.645161,3.870968,5.16129 +L 3.870968,5.16129,3.096774,5.419355 +L 3.096774,5.419355,2.322581,5.419355 +L 2.322581,5.419355,1.806452,5.16129 +L 1.806452,5.16129,1.548387,4.903226 +L 1.548387,4.903226,1.290323,4.387097 +L 1.290323,4.387097,1.290323,3.612903 +L 1.290323,3.612903,1.548387,3.096774 +L 1.548387,3.096774,1.806452,2.83871 +L 2.580645,2.83871,3.354839,3.096774 +L 3.354839,3.096774,3.612903,3.354839 +L 3.612903,3.354839,3.870968,3.870968 +L 3.870968,3.870968,3.870968,4.645161 +L 3.870968,4.645161,3.612903,5.16129 +L 3.612903,5.16129,3.096774,5.419355 +L 1.806452,2.83871,0.774194,2.580645 +L 0.774194,2.580645,0.258065,2.064516 +L 0.258065,2.064516,0,1.548387 +L 0,1.548387,0,0.774194 +L 0,0.774194,0.258065,0.258065 +L 0.258065,0.258065,1.032258,0 +L 1.032258,0,2.064516,0 +L 2.064516,0,3.096774,0.258065 +L 3.096774,0.258065,3.354839,0.516129 +L 3.354839,0.516129,3.612903,1.032258 +L 3.612903,1.032258,3.612903,1.806452 +L 3.612903,1.806452,3.354839,2.322581 +L 3.354839,2.322581,3.096774,2.580645 +L 3.096774,2.580645,2.580645,2.83871 +L 1.806452,2.83871,1.032258,2.580645 +L 1.032258,2.580645,0.516129,2.064516 +L 0.516129,2.064516,0.258065,1.548387 +L 0.258065,1.548387,0.258065,0.774194 +L 0.258065,0.774194,0.516129,0.258065 +L 0.516129,0.258065,1.032258,0 +L 2.064516,0,2.83871,0.258065 +L 2.83871,0.258065,3.096774,0.516129 +L 3.096774,0.516129,3.354839,1.032258 +L 3.354839,1.032258,3.354839,2.064516 +L 3.354839,2.064516,3.096774,2.580645 + +[9] 40 +L 3.612903,3.612903,3.354839,3.096774 +L 3.354839,3.096774,2.83871,2.580645 +L 2.83871,2.580645,2.322581,2.322581 +L 2.322581,2.322581,1.548387,2.322581 +L 1.548387,2.322581,1.032258,2.580645 +L 1.032258,2.580645,0.774194,2.83871 +L 0.774194,2.83871,0.516129,3.354839 +L 0.516129,3.354839,0.516129,4.129032 +L 0.516129,4.129032,0.774194,4.645161 +L 0.774194,4.645161,1.290323,5.16129 +L 1.290323,5.16129,2.064516,5.419355 +L 2.064516,5.419355,2.83871,5.419355 +L 2.83871,5.419355,3.354839,5.16129 +L 3.354839,5.16129,3.612903,4.903226 +L 3.612903,4.903226,3.870968,4.387097 +L 3.870968,4.387097,3.870968,3.354839 +L 3.870968,3.354839,3.612903,2.322581 +L 3.612903,2.322581,3.354839,1.548387 +L 3.354839,1.548387,2.83871,0.774194 +L 2.83871,0.774194,2.322581,0.258065 +L 2.322581,0.258065,1.548387,0 +L 1.548387,0,0.774194,0 +L 0.774194,0,0.258065,0.258065 +L 0.258065,0.258065,0,0.774194 +L 0,0.774194,0,1.032258 +L 0,1.032258,0.258065,1.290323 +L 0.258065,1.290323,0.516129,1.032258 +L 0.516129,1.032258,0.258065,0.774194 +L 1.032258,2.580645,0.774194,3.096774 +L 0.774194,3.096774,0.774194,4.129032 +L 0.774194,4.129032,1.032258,4.645161 +L 1.032258,4.645161,1.548387,5.16129 +L 1.548387,5.16129,2.064516,5.419355 +L 3.354839,5.16129,3.612903,4.645161 +L 3.612903,4.645161,3.612903,3.354839 +L 3.612903,3.354839,3.354839,2.322581 +L 3.354839,2.322581,3.096774,1.548387 +L 3.096774,1.548387,2.580645,0.774194 +L 2.580645,0.774194,2.064516,0.258065 +L 2.064516,0.258065,1.548387,0 + +[:] 7 +L 1.032258,3.612903,0.774194,3.354839 +L 0.774194,3.354839,1.032258,3.096774 +L 1.032258,3.096774,1.290323,3.354839 +L 1.290323,3.354839,1.032258,3.612903 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 + +[;] 10 +L 1.290323,3.612903,1.032258,3.354839 +L 1.032258,3.354839,1.290323,3.096774 +L 1.290323,3.096774,1.548387,3.354839 +L 1.548387,3.354839,1.290323,3.612903 +L 0.516129,0,0.258065,0.258065 +L 0.258065,0.258065,0.516129,0.516129 +L 0.516129,0.516129,0.774194,0.258065 +L 0.774194,0.258065,0.774194,0 +L 0.774194,0,0.516129,-0.516129 +L 0.516129,-0.516129,0,-1.032258 + +[<] 2 +L 4.129032,4.645161,0,2.322581 +L 0,2.322581,4.129032,0 + +[=] 2 +L 0,3.096774,4.645161,3.096774 +L 0,1.548387,4.645161,1.548387 + +[>] 2 +L 0,4.645161,4.129032,2.322581 +L 4.129032,2.322581,0,0 + +[?] 28 +L 0.258065,4.387097,0.516129,4.129032 +L 0.516129,4.129032,0.258065,3.870968 +L 0.258065,3.870968,0,4.129032 +L 0,4.129032,0,4.387097 +L 0,4.387097,0.258065,4.903226 +L 0.258065,4.903226,0.516129,5.16129 +L 0.516129,5.16129,1.290323,5.419355 +L 1.290323,5.419355,2.322581,5.419355 +L 2.322581,5.419355,3.096774,5.16129 +L 3.096774,5.16129,3.354839,4.645161 +L 3.354839,4.645161,3.354839,4.129032 +L 3.354839,4.129032,3.096774,3.612903 +L 3.096774,3.612903,2.83871,3.354839 +L 2.83871,3.354839,1.290323,2.83871 +L 1.290323,2.83871,0.774194,2.580645 +L 0.774194,2.580645,0.774194,2.064516 +L 0.774194,2.064516,1.032258,1.806452 +L 1.032258,1.806452,1.548387,1.806452 +L 2.322581,5.419355,2.83871,5.16129 +L 2.83871,5.16129,3.096774,4.645161 +L 3.096774,4.645161,3.096774,4.129032 +L 3.096774,4.129032,2.83871,3.612903 +L 2.83871,3.612903,2.580645,3.354839 +L 2.580645,3.354839,2.064516,3.096774 +L 0.516129,0.516129,0.258065,0.258065 +L 0.258065,0.258065,0.516129,0 +L 0.516129,0,0.774194,0.258065 +L 0.774194,0.258065,0.516129,0.516129 + +[@] 48 +L 3.870968,3.354839,3.612903,3.870968 +L 3.612903,3.870968,3.096774,4.129032 +L 3.096774,4.129032,2.322581,4.129032 +L 2.322581,4.129032,1.806452,3.870968 +L 1.806452,3.870968,1.548387,3.612903 +L 1.548387,3.612903,1.290323,2.83871 +L 1.290323,2.83871,1.290323,2.064516 +L 1.290323,2.064516,1.548387,1.548387 +L 1.548387,1.548387,2.064516,1.290323 +L 2.064516,1.290323,2.83871,1.290323 +L 2.83871,1.290323,3.354839,1.548387 +L 3.354839,1.548387,3.612903,2.064516 +L 2.322581,4.129032,1.806452,3.612903 +L 1.806452,3.612903,1.548387,2.83871 +L 1.548387,2.83871,1.548387,2.064516 +L 1.548387,2.064516,1.806452,1.548387 +L 1.806452,1.548387,2.064516,1.290323 +L 3.870968,4.129032,3.612903,2.064516 +L 3.612903,2.064516,3.612903,1.548387 +L 3.612903,1.548387,4.129032,1.290323 +L 4.129032,1.290323,4.645161,1.290323 +L 4.645161,1.290323,5.16129,1.806452 +L 5.16129,1.806452,5.419355,2.580645 +L 5.419355,2.580645,5.419355,3.096774 +L 5.419355,3.096774,5.16129,3.870968 +L 5.16129,3.870968,4.903226,4.387097 +L 4.903226,4.387097,4.387097,4.903226 +L 4.387097,4.903226,3.870968,5.16129 +L 3.870968,5.16129,3.096774,5.419355 +L 3.096774,5.419355,2.322581,5.419355 +L 2.322581,5.419355,1.548387,5.16129 +L 1.548387,5.16129,1.032258,4.903226 +L 1.032258,4.903226,0.516129,4.387097 +L 0.516129,4.387097,0.258065,3.870968 +L 0.258065,3.870968,0,3.096774 +L 0,3.096774,0,2.322581 +L 0,2.322581,0.258065,1.548387 +L 0.258065,1.548387,0.516129,1.032258 +L 0.516129,1.032258,1.032258,0.516129 +L 1.032258,0.516129,1.548387,0.258065 +L 1.548387,0.258065,2.322581,0 +L 2.322581,0,3.096774,0 +L 3.096774,0,3.870968,0.258065 +L 3.870968,0.258065,4.387097,0.516129 +L 4.387097,0.516129,4.645161,0.774194 +L 4.129032,4.129032,3.870968,2.064516 +L 3.870968,2.064516,3.870968,1.548387 +L 3.870968,1.548387,4.129032,1.290323 + +[A] 30 +L 5.16129,5.419355,4.645161,4.903226 +L 4.645161,4.903226,4.129032,4.129032 +L 4.129032,4.129032,3.354839,2.83871 +L 3.354839,2.83871,2.83871,2.064516 +L 2.83871,2.064516,2.064516,1.032258 +L 2.064516,1.032258,1.290323,0.258065 +L 1.290323,0.258065,0.774194,0 +L 0.774194,0,0.258065,0 +L 0.258065,0,0,0.258065 +L 0,0.258065,0,0.774194 +L 0,0.774194,0.258065,1.032258 +L 0.258065,1.032258,0.516129,0.774194 +L 0.516129,0.774194,0.258065,0.516129 +L 5.16129,5.419355,4.903226,4.387097 +L 4.903226,4.387097,4.387097,1.806452 +L 4.387097,1.806452,4.129032,0 +L 5.16129,5.419355,4.387097,0 +L 4.129032,0,4.129032,0.516129 +L 4.129032,0.516129,3.870968,1.290323 +L 3.870968,1.290323,3.612903,1.806452 +L 3.612903,1.806452,3.096774,2.322581 +L 3.096774,2.322581,2.580645,2.580645 +L 2.580645,2.580645,2.064516,2.580645 +L 2.064516,2.580645,1.806452,2.322581 +L 1.806452,2.322581,1.806452,1.806452 +L 1.806452,1.806452,2.064516,1.032258 +L 2.064516,1.032258,2.83871,0.258065 +L 2.83871,0.258065,3.612903,0 +L 3.612903,0,4.645161,0 +L 4.645161,0,5.16129,0.258065 + +[B] 58 +L 3.612903,5.16129,3.354839,4.903226 +L 3.354839,4.903226,3.096774,4.387097 +L 3.096774,4.387097,2.580645,3.096774 +L 2.580645,3.096774,2.064516,1.548387 +L 2.064516,1.548387,1.806452,1.032258 +L 1.806452,1.032258,1.290323,0.258065 +L 1.290323,0.258065,0.774194,0 +L 3.354839,4.903226,3.096774,4.129032 +L 3.096774,4.129032,2.580645,2.064516 +L 2.580645,2.064516,2.322581,1.290323 +L 2.322581,1.290323,2.064516,0.774194 +L 2.064516,0.774194,1.548387,0.258065 +L 1.548387,0.258065,0.774194,0 +L 0.774194,0,0.258065,0 +L 0.258065,0,0,0.258065 +L 0,0.258065,0,0.774194 +L 0,0.774194,0.258065,1.032258 +L 0.258065,1.032258,0.516129,0.774194 +L 0.516129,0.774194,0.258065,0.516129 +L 2.064516,3.870968,1.806452,3.354839 +L 1.806452,3.354839,1.548387,3.096774 +L 1.548387,3.096774,1.032258,3.096774 +L 1.032258,3.096774,0.774194,3.354839 +L 0.774194,3.354839,0.774194,3.870968 +L 0.774194,3.870968,1.032258,4.387097 +L 1.032258,4.387097,1.548387,4.903226 +L 1.548387,4.903226,2.064516,5.16129 +L 2.064516,5.16129,2.83871,5.419355 +L 2.83871,5.419355,4.387097,5.419355 +L 4.387097,5.419355,4.903226,5.16129 +L 4.903226,5.16129,5.16129,4.645161 +L 5.16129,4.645161,5.16129,4.129032 +L 5.16129,4.129032,4.903226,3.612903 +L 4.903226,3.612903,4.387097,3.354839 +L 4.387097,3.354839,3.354839,3.096774 +L 3.354839,3.096774,2.83871,3.096774 +L 4.387097,5.419355,4.645161,5.16129 +L 4.645161,5.16129,4.903226,4.645161 +L 4.903226,4.645161,4.903226,4.129032 +L 4.903226,4.129032,4.645161,3.612903 +L 4.645161,3.612903,4.387097,3.354839 +L 3.354839,3.096774,4.129032,2.83871 +L 4.129032,2.83871,4.387097,2.580645 +L 4.387097,2.580645,4.645161,2.064516 +L 4.645161,2.064516,4.645161,1.290323 +L 4.645161,1.290323,4.387097,0.516129 +L 4.387097,0.516129,4.129032,0.258065 +L 4.129032,0.258065,3.612903,0 +L 3.612903,0,3.096774,0 +L 3.096774,0,2.83871,0.258065 +L 2.83871,0.258065,2.83871,0.774194 +L 2.83871,0.774194,3.096774,1.548387 +L 3.354839,3.096774,3.870968,2.83871 +L 3.870968,2.83871,4.129032,2.580645 +L 4.129032,2.580645,4.387097,2.064516 +L 4.387097,2.064516,4.387097,1.290323 +L 4.387097,1.290323,4.129032,0.516129 +L 4.129032,0.516129,3.612903,0 + +[C] 37 +L 0.258065,4.903226,0,4.387097 +L 0,4.387097,0,3.870968 +L 0,3.870968,0.258065,3.354839 +L 0.258065,3.354839,1.032258,3.096774 +L 1.032258,3.096774,1.806452,3.096774 +L 1.806452,3.096774,2.83871,3.354839 +L 2.83871,3.354839,3.354839,3.612903 +L 3.354839,3.612903,3.870968,4.129032 +L 3.870968,4.129032,4.129032,4.645161 +L 4.129032,4.645161,4.129032,5.16129 +L 4.129032,5.16129,3.870968,5.419355 +L 3.870968,5.419355,3.354839,5.419355 +L 3.354839,5.419355,2.580645,5.16129 +L 2.580645,5.16129,1.806452,4.387097 +L 1.806452,4.387097,1.290323,3.612903 +L 1.290323,3.612903,0.774194,2.580645 +L 0.774194,2.580645,0.516129,1.548387 +L 0.516129,1.548387,0.516129,0.774194 +L 0.516129,0.774194,0.774194,0.258065 +L 0.774194,0.258065,1.548387,0 +L 1.548387,0,2.064516,0 +L 2.064516,0,2.83871,0.258065 +L 2.83871,0.258065,3.354839,0.774194 +L 3.354839,0.774194,3.612903,1.290323 +L 3.612903,1.290323,3.612903,1.806452 +L 3.612903,1.806452,3.354839,2.322581 +L 3.354839,2.322581,2.83871,2.322581 +L 2.83871,2.322581,2.322581,2.064516 +L 2.322581,2.064516,2.064516,1.548387 +L 3.354839,5.419355,2.83871,5.16129 +L 2.83871,5.16129,2.064516,4.387097 +L 2.064516,4.387097,1.548387,3.612903 +L 1.548387,3.612903,1.032258,2.580645 +L 1.032258,2.580645,0.774194,1.548387 +L 0.774194,1.548387,0.774194,0.774194 +L 0.774194,0.774194,1.032258,0.258065 +L 1.032258,0.258065,1.548387,0 + +[D] 39 +L 3.612903,5.16129,3.354839,4.903226 +L 3.354839,4.903226,3.096774,4.387097 +L 3.096774,4.387097,2.580645,3.096774 +L 2.580645,3.096774,2.064516,1.548387 +L 2.064516,1.548387,1.806452,1.032258 +L 1.806452,1.032258,1.290323,0.258065 +L 1.290323,0.258065,0.774194,0 +L 3.354839,4.903226,3.096774,4.129032 +L 3.096774,4.129032,2.580645,2.064516 +L 2.580645,2.064516,2.322581,1.290323 +L 2.322581,1.290323,2.064516,0.774194 +L 2.064516,0.774194,1.548387,0.258065 +L 1.548387,0.258065,0.774194,0 +L 0.774194,0,0.258065,0 +L 0.258065,0,0,0.258065 +L 0,0.258065,0,0.774194 +L 0,0.774194,0.258065,1.032258 +L 0.258065,1.032258,0.774194,1.032258 +L 0.774194,1.032258,1.290323,0.774194 +L 1.290323,0.774194,1.806452,0.258065 +L 1.806452,0.258065,2.322581,0 +L 2.322581,0,3.096774,0 +L 3.096774,0,3.612903,0.258065 +L 3.612903,0.258065,4.129032,0.774194 +L 4.129032,0.774194,4.645161,1.806452 +L 4.645161,1.806452,4.903226,3.096774 +L 4.903226,3.096774,4.903226,3.870968 +L 4.903226,3.870968,4.645161,4.645161 +L 4.645161,4.645161,4.129032,5.16129 +L 4.129032,5.16129,3.612903,5.419355 +L 3.612903,5.419355,2.322581,5.419355 +L 2.322581,5.419355,1.548387,5.16129 +L 1.548387,5.16129,1.032258,4.645161 +L 1.032258,4.645161,0.774194,4.129032 +L 0.774194,4.129032,0.774194,3.612903 +L 0.774194,3.612903,1.032258,3.354839 +L 1.032258,3.354839,1.548387,3.354839 +L 1.548387,3.354839,1.806452,3.612903 +L 1.806452,3.612903,2.064516,4.129032 + +[E] 41 +L 3.096774,4.645161,2.83871,4.387097 +L 2.83871,4.387097,2.83871,3.870968 +L 2.83871,3.870968,3.096774,3.612903 +L 3.096774,3.612903,3.612903,3.612903 +L 3.612903,3.612903,3.870968,4.129032 +L 3.870968,4.129032,3.870968,4.645161 +L 3.870968,4.645161,3.612903,5.16129 +L 3.612903,5.16129,3.096774,5.419355 +L 3.096774,5.419355,2.322581,5.419355 +L 2.322581,5.419355,1.806452,5.16129 +L 1.806452,5.16129,1.548387,4.903226 +L 1.548387,4.903226,1.290323,4.387097 +L 1.290323,4.387097,1.290323,3.870968 +L 1.290323,3.870968,1.548387,3.354839 +L 1.548387,3.354839,2.064516,3.096774 +L 2.322581,5.419355,1.806452,4.903226 +L 1.806452,4.903226,1.548387,4.387097 +L 1.548387,4.387097,1.548387,3.612903 +L 1.548387,3.612903,2.064516,3.096774 +L 2.064516,3.096774,1.548387,3.096774 +L 1.548387,3.096774,0.774194,2.83871 +L 0.774194,2.83871,0.258065,2.322581 +L 0.258065,2.322581,0,1.806452 +L 0,1.806452,0,1.032258 +L 0,1.032258,0.258065,0.516129 +L 0.258065,0.516129,0.516129,0.258065 +L 0.516129,0.258065,1.032258,0 +L 1.032258,0,1.806452,0 +L 1.806452,0,2.580645,0.258065 +L 2.580645,0.258065,3.096774,0.774194 +L 3.096774,0.774194,3.354839,1.290323 +L 3.354839,1.290323,3.354839,1.806452 +L 3.354839,1.806452,3.096774,2.322581 +L 3.096774,2.322581,2.580645,2.322581 +L 2.580645,2.322581,2.064516,2.064516 +L 2.064516,2.064516,1.806452,1.548387 +L 1.548387,3.096774,1.032258,2.83871 +L 1.032258,2.83871,0.516129,2.322581 +L 0.516129,2.322581,0.258065,1.806452 +L 0.258065,1.806452,0.258065,0.774194 +L 0.258065,0.774194,0.516129,0.258065 + +[F] 38 +L 3.870968,4.903226,3.612903,4.387097 +L 3.612903,4.387097,3.096774,3.096774 +L 3.096774,3.096774,2.580645,1.548387 +L 2.580645,1.548387,2.322581,1.032258 +L 2.322581,1.032258,1.806452,0.258065 +L 1.806452,0.258065,1.290323,0 +L 2.322581,3.870968,2.064516,3.354839 +L 2.064516,3.354839,1.548387,3.096774 +L 1.548387,3.096774,1.032258,3.096774 +L 1.032258,3.096774,0.774194,3.612903 +L 0.774194,3.612903,0.774194,4.129032 +L 0.774194,4.129032,1.032258,4.645161 +L 1.032258,4.645161,1.548387,5.16129 +L 1.548387,5.16129,2.322581,5.419355 +L 2.322581,5.419355,4.903226,5.419355 +L 4.903226,5.419355,4.129032,5.16129 +L 4.129032,5.16129,3.870968,4.903226 +L 3.870968,4.903226,3.612903,4.129032 +L 3.612903,4.129032,3.096774,2.064516 +L 3.096774,2.064516,2.83871,1.290323 +L 2.83871,1.290323,2.580645,0.774194 +L 2.580645,0.774194,2.064516,0.258065 +L 2.064516,0.258065,1.290323,0 +L 1.290323,0,0.774194,0 +L 0.774194,0,0.258065,0.258065 +L 0.258065,0.258065,0,0.516129 +L 0,0.516129,0,0.774194 +L 0,0.774194,0.258065,1.032258 +L 0.258065,1.032258,0.516129,0.774194 +L 0.516129,0.774194,0.258065,0.516129 +L 2.83871,5.419355,3.870968,5.16129 +L 3.870968,5.16129,4.129032,5.16129 +L 1.806452,2.064516,2.064516,2.322581 +L 2.064516,2.322581,2.580645,2.580645 +L 2.580645,2.580645,3.612903,2.580645 +L 3.612903,2.580645,4.129032,2.83871 +L 4.129032,2.83871,4.645161,3.612903 +L 4.645161,3.612903,4.129032,1.806452 + +[G] 45 +L 0.258065,4.645161,0,4.129032 +L 0,4.129032,0,3.612903 +L 0,3.612903,0.258065,3.096774 +L 0.258065,3.096774,0.774194,2.83871 +L 0.774194,2.83871,1.548387,2.83871 +L 1.548387,2.83871,2.322581,3.096774 +L 2.322581,3.096774,2.83871,3.354839 +L 2.83871,3.354839,3.612903,4.129032 +L 3.612903,4.129032,3.870968,4.903226 +L 3.870968,4.903226,3.870968,5.16129 +L 3.870968,5.16129,3.612903,5.419355 +L 3.612903,5.419355,3.354839,5.419355 +L 3.354839,5.419355,2.83871,5.16129 +L 2.83871,5.16129,2.322581,4.645161 +L 2.322581,4.645161,2.064516,4.129032 +L 2.064516,4.129032,1.806452,3.354839 +L 1.806452,3.354839,1.806452,2.580645 +L 1.806452,2.580645,2.064516,2.064516 +L 2.064516,2.064516,2.580645,1.806452 +L 2.580645,1.806452,3.096774,1.806452 +L 3.096774,1.806452,3.612903,2.064516 +L 3.612903,2.064516,4.129032,2.580645 +L 4.129032,2.580645,4.387097,3.096774 +L 3.612903,5.419355,3.096774,5.16129 +L 3.096774,5.16129,2.580645,4.645161 +L 2.580645,4.645161,2.322581,4.129032 +L 2.322581,4.129032,2.064516,3.354839 +L 2.064516,3.354839,2.064516,2.322581 +L 2.064516,2.322581,2.580645,1.806452 +L 4.387097,3.096774,4.129032,2.064516 +L 4.129032,2.064516,3.612903,1.032258 +L 3.612903,1.032258,3.096774,0.516129 +L 3.096774,0.516129,2.580645,0.258065 +L 2.580645,0.258065,1.548387,0 +L 1.548387,0,0.774194,0 +L 0.774194,0,0.258065,0.258065 +L 0.258065,0.258065,0,0.774194 +L 0,0.774194,0,1.032258 +L 0,1.032258,0.258065,1.290323 +L 0.258065,1.290323,0.516129,1.032258 +L 0.516129,1.032258,0.258065,0.774194 +L 4.129032,2.064516,3.612903,1.290323 +L 3.612903,1.290323,3.096774,0.774194 +L 3.096774,0.774194,2.322581,0.258065 +L 2.322581,0.258065,1.548387,0 + +[H] 47 +L 1.548387,3.870968,1.290323,4.129032 +L 1.290323,4.129032,1.290323,4.645161 +L 1.290323,4.645161,1.548387,5.16129 +L 1.548387,5.16129,2.322581,5.419355 +L 2.322581,5.419355,3.096774,5.419355 +L 3.096774,5.419355,2.322581,2.580645 +L 2.322581,2.580645,1.806452,1.032258 +L 1.806452,1.032258,1.548387,0.516129 +L 1.548387,0.516129,1.290323,0.258065 +L 1.290323,0.258065,0.774194,0 +L 0.774194,0,0.258065,0 +L 0.258065,0,0,0.258065 +L 0,0.258065,0,0.774194 +L 0,0.774194,0.258065,1.032258 +L 0.258065,1.032258,0.516129,0.774194 +L 0.516129,0.774194,0.258065,0.516129 +L 3.096774,5.419355,2.322581,3.096774 +L 2.322581,3.096774,2.064516,2.322581 +L 2.064516,2.322581,1.548387,1.032258 +L 1.548387,1.032258,1.290323,0.516129 +L 1.290323,0.516129,0.774194,0 +L 1.032258,1.806452,1.290323,2.064516 +L 1.290323,2.064516,1.806452,2.322581 +L 1.806452,2.322581,4.129032,3.096774 +L 4.129032,3.096774,4.645161,3.354839 +L 4.645161,3.354839,5.419355,3.870968 +L 5.419355,3.870968,5.935484,4.387097 +L 5.935484,4.387097,6.193548,4.903226 +L 6.193548,4.903226,6.193548,5.16129 +L 6.193548,5.16129,5.935484,5.419355 +L 5.935484,5.419355,5.677419,5.419355 +L 5.677419,5.419355,5.16129,5.16129 +L 5.16129,5.16129,4.645161,4.387097 +L 4.645161,4.387097,4.387097,3.870968 +L 4.387097,3.870968,3.870968,2.322581 +L 3.870968,2.322581,3.612903,1.290323 +L 3.612903,1.290323,3.612903,0.516129 +L 3.612903,0.516129,4.129032,0 +L 4.129032,0,4.387097,0 +L 4.387097,0,4.903226,0.258065 +L 4.903226,0.258065,5.419355,0.774194 +L 5.677419,5.419355,5.16129,4.903226 +L 5.16129,4.903226,4.645161,3.870968 +L 4.645161,3.870968,4.129032,2.322581 +L 4.129032,2.322581,3.870968,1.290323 +L 3.870968,1.290323,3.870968,0.516129 +L 3.870968,0.516129,4.129032,0 + +[I] 29 +L 3.612903,4.903226,3.096774,4.129032 +L 3.096774,4.129032,2.580645,2.83871 +L 2.580645,2.83871,2.064516,1.548387 +L 2.064516,1.548387,1.806452,1.032258 +L 1.806452,1.032258,1.290323,0.258065 +L 1.290323,0.258065,0.774194,0 +L 4.129032,3.870968,3.612903,3.354839 +L 3.612903,3.354839,2.83871,3.096774 +L 2.83871,3.096774,2.064516,3.096774 +L 2.064516,3.096774,1.548387,3.354839 +L 1.548387,3.354839,1.290323,3.870968 +L 1.290323,3.870968,1.290323,4.387097 +L 1.290323,4.387097,1.548387,4.903226 +L 1.548387,4.903226,2.064516,5.16129 +L 2.064516,5.16129,3.096774,5.419355 +L 3.096774,5.419355,4.129032,5.419355 +L 4.129032,5.419355,3.612903,4.903226 +L 3.612903,4.903226,3.354839,4.387097 +L 3.354839,4.387097,2.83871,2.83871 +L 2.83871,2.83871,2.322581,1.290323 +L 2.322581,1.290323,2.064516,0.774194 +L 2.064516,0.774194,1.548387,0.258065 +L 1.548387,0.258065,0.774194,0 +L 0.774194,0,0.258065,0 +L 0.258065,0,0,0.258065 +L 0,0.258065,0,0.774194 +L 0,0.774194,0.258065,1.032258 +L 0.258065,1.032258,0.516129,0.774194 +L 0.516129,0.774194,0.258065,0.516129 + +[J] 30 +L 3.870968,5.419355,3.354839,4.903226 +L 3.354839,4.903226,2.83871,4.129032 +L 2.83871,4.129032,2.322581,2.83871 +L 2.322581,2.83871,1.548387,0.516129 +L 1.548387,0.516129,1.032258,-0.516129 +L 3.870968,3.612903,3.354839,3.096774 +L 3.354839,3.096774,2.580645,2.83871 +L 2.580645,2.83871,1.806452,2.83871 +L 1.806452,2.83871,1.290323,3.096774 +L 1.290323,3.096774,1.032258,3.612903 +L 1.032258,3.612903,1.032258,4.129032 +L 1.032258,4.129032,1.290323,4.645161 +L 1.290323,4.645161,1.806452,5.16129 +L 1.806452,5.16129,2.83871,5.419355 +L 2.83871,5.419355,3.870968,5.419355 +L 3.870968,5.419355,3.354839,4.645161 +L 3.354839,4.645161,3.096774,4.129032 +L 3.096774,4.129032,2.322581,1.806452 +L 2.322581,1.806452,1.806452,0.774194 +L 1.806452,0.774194,1.548387,0.258065 +L 1.548387,0.258065,1.032258,-0.516129 +L 1.032258,-0.516129,0.774194,-0.774194 +L 0.774194,-0.774194,0.258065,-1.032258 +L 0.258065,-1.032258,0,-0.774194 +L 0,-0.774194,0,-0.258065 +L 0,-0.258065,0.258065,0.258065 +L 0.258065,0.258065,0.774194,0.774194 +L 0.774194,0.774194,1.290323,1.032258 +L 1.290323,1.032258,2.064516,1.290323 +L 2.064516,1.290323,3.096774,1.548387 + +[K] 47 +L 1.548387,3.870968,1.290323,4.129032 +L 1.290323,4.129032,1.290323,4.645161 +L 1.290323,4.645161,1.806452,5.16129 +L 1.806452,5.16129,2.580645,5.419355 +L 2.580645,5.419355,3.096774,5.419355 +L 3.096774,5.419355,2.322581,2.580645 +L 2.322581,2.580645,1.806452,1.032258 +L 1.806452,1.032258,1.548387,0.516129 +L 1.548387,0.516129,1.290323,0.258065 +L 1.290323,0.258065,0.774194,0 +L 0.774194,0,0.258065,0 +L 0.258065,0,0,0.258065 +L 0,0.258065,0,0.774194 +L 0,0.774194,0.258065,1.032258 +L 0.258065,1.032258,0.516129,0.774194 +L 0.516129,0.774194,0.258065,0.516129 +L 3.096774,5.419355,2.322581,3.096774 +L 2.322581,3.096774,2.064516,2.322581 +L 2.064516,2.322581,1.548387,1.032258 +L 1.548387,1.032258,1.290323,0.516129 +L 1.290323,0.516129,0.774194,0 +L 5.16129,5.16129,4.387097,4.129032 +L 4.387097,4.129032,3.870968,3.612903 +L 3.870968,3.612903,3.354839,3.354839 +L 3.354839,3.354839,2.580645,3.096774 +L 5.935484,5.16129,5.677419,4.903226 +L 5.677419,4.903226,5.935484,4.645161 +L 5.935484,4.645161,6.193548,4.903226 +L 6.193548,4.903226,6.193548,5.16129 +L 6.193548,5.16129,5.935484,5.419355 +L 5.935484,5.419355,5.677419,5.419355 +L 5.677419,5.419355,5.16129,5.16129 +L 5.16129,5.16129,4.387097,3.870968 +L 4.387097,3.870968,4.129032,3.612903 +L 4.129032,3.612903,3.612903,3.354839 +L 3.612903,3.354839,2.580645,3.096774 +L 2.580645,3.096774,3.354839,2.83871 +L 3.354839,2.83871,3.612903,2.322581 +L 3.612903,2.322581,3.870968,0.516129 +L 3.870968,0.516129,4.129032,0 +L 2.580645,3.096774,3.096774,2.83871 +L 3.096774,2.83871,3.354839,2.322581 +L 3.354839,2.322581,3.612903,0.516129 +L 3.612903,0.516129,4.129032,0 +L 4.129032,0,4.387097,0 +L 4.387097,0,4.903226,0.258065 +L 4.903226,0.258065,5.419355,0.774194 + +[L] 36 +L 1.290323,4.645161,1.032258,4.129032 +L 1.032258,4.129032,1.032258,3.612903 +L 1.032258,3.612903,1.290323,3.096774 +L 1.290323,3.096774,1.806452,2.83871 +L 1.806452,2.83871,2.580645,2.83871 +L 2.580645,2.83871,3.354839,3.096774 +L 3.354839,3.096774,3.870968,3.354839 +L 3.870968,3.354839,4.645161,4.129032 +L 4.645161,4.129032,4.903226,4.903226 +L 4.903226,4.903226,4.903226,5.16129 +L 4.903226,5.16129,4.645161,5.419355 +L 4.645161,5.419355,4.387097,5.419355 +L 4.387097,5.419355,3.870968,5.16129 +L 3.870968,5.16129,3.612903,4.903226 +L 3.612903,4.903226,3.096774,4.129032 +L 3.096774,4.129032,2.064516,1.548387 +L 2.064516,1.548387,1.806452,1.032258 +L 1.806452,1.032258,1.290323,0.258065 +L 1.290323,0.258065,0.774194,0 +L 3.612903,4.903226,3.096774,3.870968 +L 3.096774,3.870968,2.580645,2.064516 +L 2.580645,2.064516,2.322581,1.290323 +L 2.322581,1.290323,2.064516,0.774194 +L 2.064516,0.774194,1.548387,0.258065 +L 1.548387,0.258065,0.774194,0 +L 0.774194,0,0.258065,0 +L 0.258065,0,0,0.258065 +L 0,0.258065,0,0.774194 +L 0,0.774194,0.258065,1.032258 +L 0.258065,1.032258,0.774194,1.032258 +L 0.774194,1.032258,1.290323,0.774194 +L 1.290323,0.774194,2.064516,0.258065 +L 2.064516,0.258065,2.580645,0 +L 2.580645,0,3.354839,0 +L 3.354839,0,3.870968,0.258065 +L 3.870968,0.258065,4.387097,0.774194 + +[M] 37 +L 4.129032,5.419355,3.096774,3.096774 +L 3.096774,3.096774,2.322581,1.548387 +L 2.322581,1.548387,1.806452,0.774194 +L 1.806452,0.774194,1.290323,0.258065 +L 1.290323,0.258065,0.774194,0 +L 0.774194,0,0.258065,0 +L 0.258065,0,0,0.258065 +L 0,0.258065,0,0.774194 +L 0,0.774194,0.258065,1.032258 +L 0.258065,1.032258,0.516129,0.774194 +L 0.516129,0.774194,0.258065,0.516129 +L 4.129032,5.419355,3.612903,3.612903 +L 3.612903,3.612903,3.354839,2.580645 +L 3.354839,2.580645,3.096774,1.290323 +L 3.096774,1.290323,3.096774,0.258065 +L 3.096774,0.258065,3.612903,0 +L 4.129032,5.419355,3.870968,4.387097 +L 3.870968,4.387097,3.612903,3.096774 +L 3.612903,3.096774,3.354839,1.290323 +L 3.354839,1.290323,3.354839,0.258065 +L 3.354839,0.258065,3.612903,0 +L 6.451613,5.419355,5.419355,3.096774 +L 5.419355,3.096774,4.129032,0.774194 +L 4.129032,0.774194,3.612903,0 +L 6.451613,5.419355,5.935484,3.612903 +L 5.935484,3.612903,5.677419,2.580645 +L 5.677419,2.580645,5.419355,1.290323 +L 5.419355,1.290323,5.419355,0.258065 +L 5.419355,0.258065,5.935484,0 +L 5.935484,0,6.193548,0 +L 6.193548,0,6.709677,0.258065 +L 6.709677,0.258065,7.225806,0.774194 +L 6.451613,5.419355,6.193548,4.387097 +L 6.193548,4.387097,5.935484,3.096774 +L 5.935484,3.096774,5.677419,1.290323 +L 5.677419,1.290323,5.677419,0.258065 +L 5.677419,0.258065,5.935484,0 + +[N] 30 +L 3.354839,5.419355,3.096774,4.387097 +L 3.096774,4.387097,2.580645,2.83871 +L 2.580645,2.83871,2.064516,1.548387 +L 2.064516,1.548387,1.806452,1.032258 +L 1.806452,1.032258,1.290323,0.258065 +L 1.290323,0.258065,0.774194,0 +L 0.774194,0,0.258065,0 +L 0.258065,0,0,0.258065 +L 0,0.258065,0,0.774194 +L 0,0.774194,0.258065,1.032258 +L 0.258065,1.032258,0.516129,0.774194 +L 0.516129,0.774194,0.258065,0.516129 +L 3.354839,5.419355,3.354839,4.129032 +L 3.354839,4.129032,3.612903,1.290323 +L 3.612903,1.290323,3.870968,0 +L 3.354839,5.419355,3.612903,4.129032 +L 3.612903,4.129032,3.870968,1.290323 +L 3.870968,1.290323,3.870968,0 +L 6.967742,5.16129,6.709677,4.903226 +L 6.709677,4.903226,6.967742,4.645161 +L 6.967742,4.645161,7.225806,4.903226 +L 7.225806,4.903226,7.225806,5.16129 +L 7.225806,5.16129,6.967742,5.419355 +L 6.967742,5.419355,6.451613,5.419355 +L 6.451613,5.419355,5.935484,5.16129 +L 5.935484,5.16129,5.419355,4.387097 +L 5.419355,4.387097,5.16129,3.870968 +L 5.16129,3.870968,4.645161,2.580645 +L 4.645161,2.580645,4.129032,1.032258 +L 4.129032,1.032258,3.870968,0 + +[O] 30 +L 2.064516,5.419355,1.548387,5.16129 +L 1.548387,5.16129,1.032258,4.645161 +L 1.032258,4.645161,0.516129,3.870968 +L 0.516129,3.870968,0.258065,3.354839 +L 0.258065,3.354839,0,2.322581 +L 0,2.322581,0,1.290323 +L 0,1.290323,0.258065,0.516129 +L 0.258065,0.516129,0.516129,0.258065 +L 0.516129,0.258065,1.032258,0 +L 1.032258,0,1.548387,0 +L 1.548387,0,2.322581,0.258065 +L 2.322581,0.258065,2.83871,0.774194 +L 2.83871,0.774194,3.354839,1.548387 +L 3.354839,1.548387,3.612903,2.064516 +L 3.612903,2.064516,3.870968,3.096774 +L 3.870968,3.096774,3.870968,4.129032 +L 3.870968,4.129032,3.612903,4.903226 +L 3.612903,4.903226,3.354839,5.16129 +L 3.354839,5.16129,3.096774,5.16129 +L 3.096774,5.16129,2.580645,4.903226 +L 2.580645,4.903226,2.064516,4.387097 +L 2.064516,4.387097,1.548387,3.354839 +L 1.548387,3.354839,1.290323,2.064516 +L 1.290323,2.064516,1.290323,1.290323 +L 1.548387,5.16129,1.032258,4.387097 +L 1.032258,4.387097,0.516129,3.354839 +L 0.516129,3.354839,0.258065,2.322581 +L 0.258065,2.322581,0.258065,1.290323 +L 0.258065,1.290323,0.516129,0.516129 +L 0.516129,0.516129,1.032258,0 + +[P] 45 +L 3.612903,5.16129,3.354839,4.903226 +L 3.354839,4.903226,3.096774,4.387097 +L 3.096774,4.387097,2.580645,3.096774 +L 2.580645,3.096774,2.064516,1.548387 +L 2.064516,1.548387,1.806452,1.032258 +L 1.806452,1.032258,1.290323,0.258065 +L 1.290323,0.258065,0.774194,0 +L 3.354839,4.903226,3.096774,4.129032 +L 3.096774,4.129032,2.580645,2.064516 +L 2.580645,2.064516,2.322581,1.290323 +L 2.322581,1.290323,2.064516,0.774194 +L 2.064516,0.774194,1.548387,0.258065 +L 1.548387,0.258065,0.774194,0 +L 0.774194,0,0.258065,0 +L 0.258065,0,0,0.258065 +L 0,0.258065,0,0.774194 +L 0,0.774194,0.258065,1.032258 +L 0.258065,1.032258,0.516129,0.774194 +L 0.516129,0.774194,0.258065,0.516129 +L 2.064516,3.870968,1.806452,3.354839 +L 1.806452,3.354839,1.548387,3.096774 +L 1.548387,3.096774,1.032258,3.096774 +L 1.032258,3.096774,0.774194,3.354839 +L 0.774194,3.354839,0.774194,3.870968 +L 0.774194,3.870968,1.032258,4.387097 +L 1.032258,4.387097,1.548387,4.903226 +L 1.548387,4.903226,2.064516,5.16129 +L 2.064516,5.16129,2.83871,5.419355 +L 2.83871,5.419355,3.870968,5.419355 +L 3.870968,5.419355,4.645161,5.16129 +L 4.645161,5.16129,4.903226,4.903226 +L 4.903226,4.903226,5.16129,4.387097 +L 5.16129,4.387097,5.16129,3.612903 +L 5.16129,3.612903,4.903226,3.096774 +L 4.903226,3.096774,4.645161,2.83871 +L 4.645161,2.83871,3.870968,2.580645 +L 3.870968,2.580645,3.354839,2.580645 +L 3.354839,2.580645,2.83871,2.83871 +L 3.870968,5.419355,4.387097,5.16129 +L 4.387097,5.16129,4.645161,4.903226 +L 4.645161,4.903226,4.903226,4.387097 +L 4.903226,4.387097,4.903226,3.612903 +L 4.903226,3.612903,4.645161,3.096774 +L 4.645161,3.096774,4.387097,2.83871 +L 4.387097,2.83871,3.870968,2.580645 + +[Q] 39 +L 3.354839,4.387097,3.354839,3.870968 +L 3.354839,3.870968,3.096774,3.354839 +L 3.096774,3.354839,2.83871,3.096774 +L 2.83871,3.096774,2.322581,2.83871 +L 2.322581,2.83871,1.806452,2.83871 +L 1.806452,2.83871,1.548387,3.354839 +L 1.548387,3.354839,1.548387,3.870968 +L 1.548387,3.870968,1.806452,4.645161 +L 1.806452,4.645161,2.322581,5.16129 +L 2.322581,5.16129,3.096774,5.419355 +L 3.096774,5.419355,3.870968,5.419355 +L 3.870968,5.419355,4.387097,5.16129 +L 4.387097,5.16129,4.645161,4.645161 +L 4.645161,4.645161,4.645161,3.612903 +L 4.645161,3.612903,4.387097,2.83871 +L 4.387097,2.83871,3.870968,2.064516 +L 3.870968,2.064516,2.83871,1.032258 +L 2.83871,1.032258,2.064516,0.516129 +L 2.064516,0.516129,1.548387,0.258065 +L 1.548387,0.258065,0.774194,0 +L 0.774194,0,0.258065,0 +L 0.258065,0,0,0.258065 +L 0,0.258065,0,0.774194 +L 0,0.774194,0.258065,1.032258 +L 0.258065,1.032258,0.774194,1.032258 +L 0.774194,1.032258,1.290323,0.774194 +L 1.290323,0.774194,2.064516,0.258065 +L 2.064516,0.258065,2.83871,0 +L 2.83871,0,3.612903,0 +L 3.612903,0,4.129032,0.258065 +L 4.129032,0.258065,4.645161,0.774194 +L 3.870968,5.419355,4.129032,5.16129 +L 4.129032,5.16129,4.387097,4.645161 +L 4.387097,4.645161,4.387097,3.612903 +L 4.387097,3.612903,4.129032,2.83871 +L 4.129032,2.83871,3.612903,2.064516 +L 3.612903,2.064516,2.83871,1.290323 +L 2.83871,1.290323,1.806452,0.516129 +L 1.806452,0.516129,0.774194,0 + +[R] 53 +L 3.612903,5.16129,3.354839,4.903226 +L 3.354839,4.903226,3.096774,4.387097 +L 3.096774,4.387097,2.580645,3.096774 +L 2.580645,3.096774,2.064516,1.548387 +L 2.064516,1.548387,1.806452,1.032258 +L 1.806452,1.032258,1.290323,0.258065 +L 1.290323,0.258065,0.774194,0 +L 3.354839,4.903226,3.096774,4.129032 +L 3.096774,4.129032,2.580645,2.064516 +L 2.580645,2.064516,2.322581,1.290323 +L 2.322581,1.290323,2.064516,0.774194 +L 2.064516,0.774194,1.548387,0.258065 +L 1.548387,0.258065,0.774194,0 +L 0.774194,0,0.258065,0 +L 0.258065,0,0,0.258065 +L 0,0.258065,0,0.774194 +L 0,0.774194,0.258065,1.032258 +L 0.258065,1.032258,0.516129,0.774194 +L 0.516129,0.774194,0.258065,0.516129 +L 2.064516,3.870968,1.806452,3.354839 +L 1.806452,3.354839,1.548387,3.096774 +L 1.548387,3.096774,1.032258,3.096774 +L 1.032258,3.096774,0.774194,3.354839 +L 0.774194,3.354839,0.774194,3.870968 +L 0.774194,3.870968,1.032258,4.387097 +L 1.032258,4.387097,1.548387,4.903226 +L 1.548387,4.903226,2.064516,5.16129 +L 2.064516,5.16129,2.83871,5.419355 +L 2.83871,5.419355,4.129032,5.419355 +L 4.129032,5.419355,4.903226,5.16129 +L 4.903226,5.16129,5.16129,4.645161 +L 5.16129,4.645161,5.16129,4.129032 +L 5.16129,4.129032,4.903226,3.612903 +L 4.903226,3.612903,4.645161,3.354839 +L 4.645161,3.354839,3.870968,3.096774 +L 3.870968,3.096774,2.83871,3.096774 +L 4.129032,5.419355,4.645161,5.16129 +L 4.645161,5.16129,4.903226,4.645161 +L 4.903226,4.645161,4.903226,4.129032 +L 4.903226,4.129032,4.645161,3.612903 +L 4.645161,3.612903,4.387097,3.354839 +L 4.387097,3.354839,3.870968,3.096774 +L 2.83871,3.096774,3.612903,2.83871 +L 3.612903,2.83871,3.870968,2.322581 +L 3.870968,2.322581,4.129032,0.516129 +L 4.129032,0.516129,4.387097,0 +L 2.83871,3.096774,3.354839,2.83871 +L 3.354839,2.83871,3.612903,2.322581 +L 3.612903,2.322581,3.870968,0.516129 +L 3.870968,0.516129,4.387097,0 +L 4.387097,0,4.645161,0 +L 4.645161,0,5.16129,0.258065 +L 5.16129,0.258065,5.677419,0.774194 + +[S] 32 +L 1.548387,4.645161,1.290323,4.129032 +L 1.290323,4.129032,1.290323,3.612903 +L 1.290323,3.612903,1.548387,3.096774 +L 1.548387,3.096774,2.064516,2.83871 +L 2.064516,2.83871,2.83871,2.83871 +L 2.83871,2.83871,3.612903,3.096774 +L 3.612903,3.096774,4.129032,3.354839 +L 4.129032,3.354839,4.903226,4.129032 +L 4.903226,4.129032,5.16129,4.903226 +L 5.16129,4.903226,5.16129,5.16129 +L 5.16129,5.16129,4.903226,5.419355 +L 4.903226,5.419355,4.645161,5.419355 +L 4.645161,5.419355,4.129032,5.16129 +L 4.129032,5.16129,3.870968,4.903226 +L 3.870968,4.903226,3.612903,4.387097 +L 3.612903,4.387097,3.354839,3.612903 +L 3.354839,3.612903,2.83871,1.806452 +L 2.83871,1.806452,2.580645,1.032258 +L 2.580645,1.032258,2.064516,0.258065 +L 2.064516,0.258065,1.548387,0 +L 3.612903,4.387097,3.354839,3.354839 +L 3.354839,3.354839,3.096774,1.548387 +L 3.096774,1.548387,2.83871,0.774194 +L 2.83871,0.774194,2.322581,0.258065 +L 2.322581,0.258065,1.548387,0 +L 1.548387,0,0.774194,0 +L 0.774194,0,0.258065,0.258065 +L 0.258065,0.258065,0,0.774194 +L 0,0.774194,0,1.032258 +L 0,1.032258,0.258065,1.290323 +L 0.258065,1.290323,0.516129,1.032258 +L 0.516129,1.032258,0.258065,0.774194 + +[T] 32 +L 3.870968,4.903226,3.612903,4.387097 +L 3.612903,4.387097,3.096774,3.096774 +L 3.096774,3.096774,2.580645,1.548387 +L 2.580645,1.548387,2.322581,1.032258 +L 2.322581,1.032258,1.806452,0.258065 +L 1.806452,0.258065,1.290323,0 +L 2.322581,3.870968,2.064516,3.354839 +L 2.064516,3.354839,1.548387,3.096774 +L 1.548387,3.096774,1.032258,3.096774 +L 1.032258,3.096774,0.774194,3.612903 +L 0.774194,3.612903,0.774194,4.129032 +L 0.774194,4.129032,1.032258,4.645161 +L 1.032258,4.645161,1.548387,5.16129 +L 1.548387,5.16129,2.322581,5.419355 +L 2.322581,5.419355,4.645161,5.419355 +L 4.645161,5.419355,4.129032,5.16129 +L 4.129032,5.16129,3.870968,4.903226 +L 3.870968,4.903226,3.612903,4.129032 +L 3.612903,4.129032,3.096774,2.064516 +L 3.096774,2.064516,2.83871,1.290323 +L 2.83871,1.290323,2.580645,0.774194 +L 2.580645,0.774194,2.064516,0.258065 +L 2.064516,0.258065,1.290323,0 +L 1.290323,0,0.774194,0 +L 0.774194,0,0.258065,0.258065 +L 0.258065,0.258065,0,0.516129 +L 0,0.516129,0,0.774194 +L 0,0.774194,0.258065,1.032258 +L 0.258065,1.032258,0.516129,0.774194 +L 0.516129,0.774194,0.258065,0.516129 +L 2.83871,5.419355,3.870968,5.16129 +L 3.870968,5.16129,4.129032,5.16129 + +[U] 31 +L 0,4.387097,0.516129,5.16129 +L 0.516129,5.16129,1.032258,5.419355 +L 1.032258,5.419355,1.290323,5.419355 +L 1.290323,5.419355,1.806452,4.903226 +L 1.806452,4.903226,1.806452,4.129032 +L 1.806452,4.129032,1.548387,3.354839 +L 1.548387,3.354839,0.774194,1.290323 +L 0.774194,1.290323,0.774194,0.516129 +L 0.774194,0.516129,1.032258,0 +L 1.290323,5.419355,1.548387,4.903226 +L 1.548387,4.903226,1.548387,4.129032 +L 1.548387,4.129032,0.774194,2.064516 +L 0.774194,2.064516,0.516129,1.290323 +L 0.516129,1.290323,0.516129,0.516129 +L 0.516129,0.516129,1.032258,0 +L 1.032258,0,1.548387,0 +L 1.548387,0,2.064516,0.258065 +L 2.064516,0.258065,2.83871,1.032258 +L 2.83871,1.032258,3.354839,1.806452 +L 3.354839,1.806452,3.612903,2.322581 +L 4.645161,5.419355,3.612903,2.322581 +L 3.612903,2.322581,3.354839,1.290323 +L 3.354839,1.290323,3.354839,0.516129 +L 3.354839,0.516129,3.870968,0 +L 3.870968,0,4.129032,0 +L 4.129032,0,4.645161,0.258065 +L 4.645161,0.258065,5.16129,0.774194 +L 4.903226,5.419355,3.870968,2.322581 +L 3.870968,2.322581,3.612903,1.290323 +L 3.612903,1.290323,3.612903,0.516129 +L 3.612903,0.516129,3.870968,0 + +[V] 32 +L 0,4.387097,0.516129,5.16129 +L 0.516129,5.16129,1.032258,5.419355 +L 1.032258,5.419355,1.290323,5.419355 +L 1.290323,5.419355,1.806452,4.903226 +L 1.806452,4.903226,1.806452,4.129032 +L 1.806452,4.129032,1.548387,3.096774 +L 1.548387,3.096774,1.032258,1.290323 +L 1.032258,1.290323,1.032258,0.516129 +L 1.032258,0.516129,1.290323,0 +L 1.290323,5.419355,1.548387,4.903226 +L 1.548387,4.903226,1.548387,4.129032 +L 1.548387,4.129032,1.032258,2.322581 +L 1.032258,2.322581,0.774194,1.290323 +L 0.774194,1.290323,0.774194,0.516129 +L 0.774194,0.516129,1.290323,0 +L 1.290323,0,1.548387,0 +L 1.548387,0,2.322581,0.258065 +L 2.322581,0.258065,3.096774,1.032258 +L 3.096774,1.032258,3.612903,1.806452 +L 3.612903,1.806452,4.129032,2.83871 +L 4.129032,2.83871,4.387097,3.612903 +L 4.387097,3.612903,4.645161,4.645161 +L 4.645161,4.645161,4.645161,5.16129 +L 4.645161,5.16129,4.387097,5.419355 +L 4.387097,5.419355,4.129032,5.419355 +L 4.129032,5.419355,3.870968,5.16129 +L 3.870968,5.16129,3.612903,4.645161 +L 3.612903,4.645161,3.612903,3.870968 +L 3.612903,3.870968,3.870968,3.354839 +L 3.870968,3.354839,4.387097,2.83871 +L 4.387097,2.83871,4.903226,2.580645 +L 4.903226,2.580645,5.419355,2.580645 + +[W] 29 +L 0.516129,3.870968,0.258065,3.870968 +L 0.258065,3.870968,0,4.129032 +L 0,4.129032,0,4.645161 +L 0,4.645161,0.258065,5.16129 +L 0.258065,5.16129,0.774194,5.419355 +L 0.774194,5.419355,1.806452,5.419355 +L 1.806452,5.419355,1.548387,4.903226 +L 1.548387,4.903226,1.290323,3.870968 +L 1.290323,3.870968,1.032258,1.548387 +L 1.032258,1.548387,0.774194,0 +L 1.290323,3.870968,1.290323,1.548387 +L 1.290323,1.548387,1.032258,0 +L 3.870968,5.419355,3.354839,4.903226 +L 3.354839,4.903226,2.83871,3.870968 +L 2.83871,3.870968,2.064516,1.548387 +L 2.064516,1.548387,1.548387,0.516129 +L 1.548387,0.516129,1.032258,0 +L 3.870968,5.419355,3.612903,4.903226 +L 3.612903,4.903226,3.354839,3.870968 +L 3.354839,3.870968,3.096774,1.548387 +L 3.096774,1.548387,2.83871,0 +L 3.354839,3.870968,3.354839,1.548387 +L 3.354839,1.548387,3.096774,0 +L 6.451613,5.419355,5.935484,5.16129 +L 5.935484,5.16129,5.419355,4.645161 +L 5.419355,4.645161,4.903226,3.870968 +L 4.903226,3.870968,4.129032,1.548387 +L 4.129032,1.548387,3.612903,0.516129 +L 3.612903,0.516129,3.096774,0 + +[X] 46 +L 2.322581,4.129032,2.064516,3.870968 +L 2.064516,3.870968,1.548387,3.870968 +L 1.548387,3.870968,1.290323,4.129032 +L 1.290323,4.129032,1.290323,4.645161 +L 1.290323,4.645161,1.548387,5.16129 +L 1.548387,5.16129,2.064516,5.419355 +L 2.064516,5.419355,2.580645,5.419355 +L 2.580645,5.419355,3.096774,5.16129 +L 3.096774,5.16129,3.354839,4.645161 +L 3.354839,4.645161,3.354839,3.870968 +L 3.354839,3.870968,3.096774,2.83871 +L 3.096774,2.83871,2.580645,1.548387 +L 2.580645,1.548387,2.064516,0.774194 +L 2.064516,0.774194,1.548387,0.258065 +L 1.548387,0.258065,0.774194,0 +L 0.774194,0,0.258065,0 +L 0.258065,0,0,0.258065 +L 0,0.258065,0,0.774194 +L 0,0.774194,0.258065,1.032258 +L 0.258065,1.032258,0.516129,0.774194 +L 0.516129,0.774194,0.258065,0.516129 +L 2.580645,5.419355,2.83871,5.16129 +L 2.83871,5.16129,3.096774,4.645161 +L 3.096774,4.645161,3.096774,3.870968 +L 3.096774,3.870968,2.83871,2.83871 +L 2.83871,2.83871,2.322581,1.548387 +L 2.322581,1.548387,1.806452,0.774194 +L 1.806452,0.774194,1.290323,0.258065 +L 1.290323,0.258065,0.774194,0 +L 5.677419,5.16129,5.419355,4.903226 +L 5.419355,4.903226,5.677419,4.645161 +L 5.677419,4.645161,5.935484,4.903226 +L 5.935484,4.903226,5.935484,5.16129 +L 5.935484,5.16129,5.677419,5.419355 +L 5.677419,5.419355,5.16129,5.419355 +L 5.16129,5.419355,4.645161,5.16129 +L 4.645161,5.16129,4.129032,4.645161 +L 4.129032,4.645161,3.612903,3.870968 +L 3.612903,3.870968,3.096774,2.83871 +L 3.096774,2.83871,2.83871,1.548387 +L 2.83871,1.548387,2.83871,0.774194 +L 2.83871,0.774194,3.096774,0.258065 +L 3.096774,0.258065,3.354839,0 +L 3.354839,0,3.612903,0 +L 3.612903,0,4.129032,0.258065 +L 4.129032,0.258065,4.645161,0.774194 + +[Y] 34 +L 0.258065,4.387097,0.774194,5.16129 +L 0.774194,5.16129,1.290323,5.419355 +L 1.290323,5.419355,1.548387,5.419355 +L 1.548387,5.419355,2.064516,5.16129 +L 2.064516,5.16129,2.064516,4.645161 +L 2.064516,4.645161,1.548387,3.096774 +L 1.548387,3.096774,1.548387,2.322581 +L 1.548387,2.322581,1.806452,1.806452 +L 1.548387,5.419355,1.806452,5.16129 +L 1.806452,5.16129,1.806452,4.645161 +L 1.806452,4.645161,1.290323,3.096774 +L 1.290323,3.096774,1.290323,2.322581 +L 1.290323,2.322581,1.806452,1.806452 +L 1.806452,1.806452,2.322581,1.806452 +L 2.322581,1.806452,3.096774,2.064516 +L 3.096774,2.064516,3.612903,2.580645 +L 3.612903,2.580645,4.129032,3.354839 +L 4.129032,3.354839,4.387097,3.870968 +L 4.903226,5.419355,4.387097,3.870968 +L 4.387097,3.870968,3.612903,1.806452 +L 3.612903,1.806452,3.096774,0.774194 +L 5.16129,5.419355,4.645161,3.870968 +L 4.645161,3.870968,4.129032,2.580645 +L 4.129032,2.580645,3.612903,1.548387 +L 3.612903,1.548387,3.096774,0.774194 +L 3.096774,0.774194,2.580645,0.258065 +L 2.580645,0.258065,1.806452,0 +L 1.806452,0,0.774194,0 +L 0.774194,0,0.258065,0.258065 +L 0.258065,0.258065,0,0.774194 +L 0,0.774194,0,1.032258 +L 0,1.032258,0.258065,1.290323 +L 0.258065,1.290323,0.516129,1.032258 +L 0.516129,1.032258,0.258065,0.774194 + +[Z] 38 +L 4.903226,4.903226,4.645161,4.387097 +L 4.645161,4.387097,4.129032,3.096774 +L 4.129032,3.096774,3.870968,2.322581 +L 3.870968,2.322581,3.612903,1.806452 +L 3.612903,1.806452,3.096774,1.032258 +L 3.096774,1.032258,2.580645,0.516129 +L 2.580645,0.516129,2.064516,0.258065 +L 2.064516,0.258065,1.290323,0 +L 3.096774,3.870968,2.83871,3.354839 +L 2.83871,3.354839,2.322581,3.096774 +L 2.322581,3.096774,1.806452,3.096774 +L 1.806452,3.096774,1.548387,3.612903 +L 1.548387,3.612903,1.548387,4.129032 +L 1.548387,4.129032,1.806452,4.645161 +L 1.806452,4.645161,2.322581,5.16129 +L 2.322581,5.16129,3.096774,5.419355 +L 3.096774,5.419355,5.677419,5.419355 +L 5.677419,5.419355,5.16129,5.16129 +L 5.16129,5.16129,4.903226,4.903226 +L 4.903226,4.903226,4.645161,4.129032 +L 4.645161,4.129032,4.387097,3.096774 +L 4.387097,3.096774,3.870968,1.548387 +L 3.870968,1.548387,3.354839,0.774194 +L 3.354839,0.774194,2.580645,0.258065 +L 2.580645,0.258065,1.290323,0 +L 1.290323,0,0.258065,0 +L 0.258065,0,0,0.258065 +L 0,0.258065,0,0.774194 +L 0,0.774194,0.258065,1.032258 +L 0.258065,1.032258,0.774194,1.032258 +L 0.774194,1.032258,1.290323,0.774194 +L 1.290323,0.774194,2.064516,0.258065 +L 2.064516,0.258065,2.580645,0 +L 2.580645,0,3.354839,0 +L 3.354839,0,4.129032,0.258065 +L 4.129032,0.258065,4.645161,0.774194 +L 3.870968,5.419355,4.903226,5.16129 +L 4.903226,5.16129,5.16129,5.16129 + +[[] 4 +L 0,6.451613,0,-1.806452 +L 0.258065,6.451613,0.258065,-1.806452 +L 0,6.451613,1.806452,6.451613 +L 0,-1.806452,1.806452,-1.806452 + +[\] 1 +L 0,5.419355,3.612903,-0.774194 + +[]] 4 +L 1.548387,6.451613,1.548387,-1.806452 +L 1.806452,6.451613,1.806452,-1.806452 +L 0,6.451613,1.806452,6.451613 +L 0,-1.806452,1.806452,-1.806452 + +[^] 5 +L 0.774194,3.870968,1.290323,4.645161 +L 1.290323,4.645161,1.806452,3.870968 +L 0,3.096774,1.290323,4.387097 +L 1.290323,4.387097,2.580645,3.096774 +L 1.290323,4.387097,1.290323,0 + +[_] 1 +L 0,-0.516129,4.129032,-0.516129 + +[`] 6 +L 0.774194,5.419355,0.258065,4.903226 +L 0.258065,4.903226,0,4.387097 +L 0,4.387097,0,4.129032 +L 0,4.129032,0.258065,3.870968 +L 0.258065,3.870968,0.516129,4.129032 +L 0.516129,4.129032,0.258065,4.387097 + +[a] 25 +L 2.322581,1.548387,2.064516,2.064516 +L 2.064516,2.064516,1.548387,2.322581 +L 1.548387,2.322581,1.032258,2.322581 +L 1.032258,2.322581,0.516129,2.064516 +L 0.516129,2.064516,0.258065,1.806452 +L 0.258065,1.806452,0,1.290323 +L 0,1.290323,0,0.774194 +L 0,0.774194,0.258065,0.258065 +L 0.258065,0.258065,0.774194,0 +L 0.774194,0,1.290323,0 +L 1.290323,0,1.806452,0.258065 +L 1.806452,0.258065,2.064516,0.774194 +L 1.032258,2.322581,0.516129,1.806452 +L 0.516129,1.806452,0.258065,1.290323 +L 0.258065,1.290323,0.258065,0.516129 +L 0.258065,0.516129,0.774194,0 +L 2.580645,2.322581,2.064516,0.774194 +L 2.064516,0.774194,2.064516,0.258065 +L 2.064516,0.258065,2.580645,0 +L 2.580645,0,3.096774,0.258065 +L 3.096774,0.258065,3.354839,0.516129 +L 3.354839,0.516129,3.870968,1.290323 +L 2.83871,2.322581,2.322581,0.774194 +L 2.322581,0.774194,2.322581,0.258065 +L 2.322581,0.258065,2.580645,0 + +[b] 17 +L 0,1.290323,0.516129,2.064516 +L 0.516129,2.064516,1.032258,3.096774 +L 1.806452,5.419355,0.258065,0.774194 +L 0.258065,0.774194,0.258065,0.258065 +L 0.258065,0.258065,0.774194,0 +L 0.774194,0,1.032258,0 +L 1.032258,0,1.548387,0.258065 +L 1.548387,0.258065,2.064516,0.774194 +L 2.064516,0.774194,2.322581,1.548387 +L 2.322581,1.548387,2.322581,2.322581 +L 2.322581,2.322581,2.580645,1.290323 +L 2.580645,1.290323,2.83871,1.032258 +L 2.83871,1.032258,3.096774,1.032258 +L 3.096774,1.032258,3.612903,1.290323 +L 2.064516,5.419355,0.516129,0.774194 +L 0.516129,0.774194,0.516129,0.258065 +L 0.516129,0.258065,0.774194,0 + +[c] 18 +L 1.806452,2.064516,1.548387,1.806452 +L 1.548387,1.806452,1.806452,1.806452 +L 1.806452,1.806452,1.806452,2.064516 +L 1.806452,2.064516,1.548387,2.322581 +L 1.548387,2.322581,1.032258,2.322581 +L 1.032258,2.322581,0.516129,2.064516 +L 0.516129,2.064516,0.258065,1.806452 +L 0.258065,1.806452,0,1.290323 +L 0,1.290323,0,0.774194 +L 0,0.774194,0.258065,0.258065 +L 0.258065,0.258065,0.774194,0 +L 0.774194,0,1.548387,0 +L 1.548387,0,2.322581,0.516129 +L 2.322581,0.516129,2.83871,1.290323 +L 1.032258,2.322581,0.516129,1.806452 +L 0.516129,1.806452,0.258065,1.290323 +L 0.258065,1.290323,0.258065,0.516129 +L 0.258065,0.516129,0.774194,0 + +[d] 25 +L 2.322581,1.548387,2.064516,2.064516 +L 2.064516,2.064516,1.548387,2.322581 +L 1.548387,2.322581,1.032258,2.322581 +L 1.032258,2.322581,0.516129,2.064516 +L 0.516129,2.064516,0.258065,1.806452 +L 0.258065,1.806452,0,1.290323 +L 0,1.290323,0,0.774194 +L 0,0.774194,0.258065,0.258065 +L 0.258065,0.258065,0.774194,0 +L 0.774194,0,1.290323,0 +L 1.290323,0,1.806452,0.258065 +L 1.806452,0.258065,2.064516,0.774194 +L 1.032258,2.322581,0.516129,1.806452 +L 0.516129,1.806452,0.258065,1.290323 +L 0.258065,1.290323,0.258065,0.516129 +L 0.258065,0.516129,0.774194,0 +L 3.612903,5.419355,2.064516,0.774194 +L 2.064516,0.774194,2.064516,0.258065 +L 2.064516,0.258065,2.580645,0 +L 2.580645,0,3.096774,0.258065 +L 3.096774,0.258065,3.354839,0.516129 +L 3.354839,0.516129,3.870968,1.290323 +L 3.870968,5.419355,2.322581,0.774194 +L 2.322581,0.774194,2.322581,0.258065 +L 2.322581,0.258065,2.580645,0 + +[e] 19 +L 0.516129,0.516129,1.032258,0.774194 +L 1.032258,0.774194,1.290323,1.032258 +L 1.290323,1.032258,1.548387,1.548387 +L 1.548387,1.548387,1.548387,2.064516 +L 1.548387,2.064516,1.290323,2.322581 +L 1.290323,2.322581,1.032258,2.322581 +L 1.032258,2.322581,0.516129,2.064516 +L 0.516129,2.064516,0.258065,1.806452 +L 0.258065,1.806452,0,1.290323 +L 0,1.290323,0,0.774194 +L 0,0.774194,0.258065,0.258065 +L 0.258065,0.258065,0.774194,0 +L 0.774194,0,1.548387,0 +L 1.548387,0,2.322581,0.516129 +L 2.322581,0.516129,2.83871,1.290323 +L 1.032258,2.322581,0.516129,1.806452 +L 0.516129,1.806452,0.258065,1.290323 +L 0.258065,1.290323,0.258065,0.516129 +L 0.258065,0.516129,0.774194,0 + +[f] 23 +L 1.806452,2.322581,2.580645,3.096774 +L 2.580645,3.096774,3.096774,3.870968 +L 3.096774,3.870968,3.354839,4.645161 +L 3.354839,4.645161,3.354839,5.16129 +L 3.354839,5.16129,3.096774,5.419355 +L 3.096774,5.419355,2.580645,5.16129 +L 2.580645,5.16129,2.322581,4.645161 +L 2.322581,4.645161,0,-2.322581 +L 0,-2.322581,0,-2.83871 +L 0,-2.83871,0.258065,-3.096774 +L 0.258065,-3.096774,0.774194,-2.83871 +L 0.774194,-2.83871,1.032258,-2.064516 +L 1.032258,-2.064516,1.290323,0.258065 +L 1.290323,0.258065,1.548387,0 +L 1.548387,0,2.064516,0 +L 2.064516,0,2.580645,0.258065 +L 2.580645,0.258065,2.83871,0.516129 +L 2.83871,0.516129,3.354839,1.290323 +L 2.322581,4.645161,2.064516,3.354839 +L 2.064516,3.354839,1.806452,2.322581 +L 1.806452,2.322581,1.032258,0 +L 1.032258,0,0.516129,-1.290323 +L 0.516129,-1.290323,0,-2.322581 + +[g] 30 +L 2.322581,1.548387,2.064516,2.064516 +L 2.064516,2.064516,1.548387,2.322581 +L 1.548387,2.322581,1.032258,2.322581 +L 1.032258,2.322581,0.516129,2.064516 +L 0.516129,2.064516,0.258065,1.806452 +L 0.258065,1.806452,0,1.290323 +L 0,1.290323,0,0.774194 +L 0,0.774194,0.258065,0.258065 +L 0.258065,0.258065,0.774194,0 +L 0.774194,0,1.290323,0 +L 1.290323,0,1.806452,0.258065 +L 1.806452,0.258065,2.064516,0.774194 +L 1.032258,2.322581,0.516129,1.806452 +L 0.516129,1.806452,0.258065,1.290323 +L 0.258065,1.290323,0.258065,0.516129 +L 0.258065,0.516129,0.774194,0 +L 2.580645,2.322581,1.032258,-2.322581 +L 2.83871,2.322581,2.064516,0 +L 2.064516,0,1.548387,-1.290323 +L 1.548387,-1.290323,1.032258,-2.322581 +L 1.032258,-2.322581,0.774194,-2.83871 +L 0.774194,-2.83871,0.258065,-3.096774 +L 0.258065,-3.096774,0,-2.83871 +L 0,-2.83871,0,-2.322581 +L 0,-2.322581,0.258065,-1.548387 +L 0.258065,-1.548387,0.774194,-1.032258 +L 0.774194,-1.032258,1.548387,-0.516129 +L 1.548387,-0.516129,2.580645,0 +L 2.580645,0,3.354839,0.516129 +L 3.354839,0.516129,3.870968,1.290323 + +[h] 20 +L 0,1.290323,0.516129,2.064516 +L 0.516129,2.064516,1.032258,3.096774 +L 1.806452,5.419355,0,0 +L 2.064516,5.419355,0.258065,0 +L 0.774194,1.548387,1.290323,2.064516 +L 1.290323,2.064516,1.806452,2.322581 +L 1.806452,2.322581,2.064516,2.322581 +L 2.064516,2.322581,2.580645,2.064516 +L 2.580645,2.064516,2.580645,1.548387 +L 2.580645,1.548387,2.322581,0.774194 +L 2.322581,0.774194,2.322581,0.258065 +L 2.322581,0.258065,2.580645,0 +L 2.064516,2.322581,2.322581,2.064516 +L 2.322581,2.064516,2.322581,1.548387 +L 2.322581,1.548387,2.064516,0.774194 +L 2.064516,0.774194,2.064516,0.258065 +L 2.064516,0.258065,2.580645,0 +L 2.580645,0,3.096774,0.258065 +L 3.096774,0.258065,3.354839,0.516129 +L 3.354839,0.516129,3.870968,1.290323 + +[i] 13 +L 1.032258,3.870968,0.774194,3.612903 +L 0.774194,3.612903,1.032258,3.354839 +L 1.032258,3.354839,1.290323,3.612903 +L 1.290323,3.612903,1.032258,3.870968 +L 0.516129,2.322581,0,0.774194 +L 0,0.774194,0,0.258065 +L 0,0.258065,0.516129,0 +L 0.516129,0,1.032258,0.258065 +L 1.032258,0.258065,1.290323,0.516129 +L 1.290323,0.516129,1.806452,1.290323 +L 0.774194,2.322581,0.258065,0.774194 +L 0.258065,0.774194,0.258065,0.258065 +L 0.258065,0.258065,0.516129,0 + +[j] 18 +L 3.096774,3.870968,2.83871,3.612903 +L 2.83871,3.612903,3.096774,3.354839 +L 3.096774,3.354839,3.354839,3.612903 +L 3.354839,3.612903,3.096774,3.870968 +L 2.580645,2.322581,1.032258,-2.322581 +L 2.83871,2.322581,2.064516,0 +L 2.064516,0,1.548387,-1.290323 +L 1.548387,-1.290323,1.032258,-2.322581 +L 1.032258,-2.322581,0.774194,-2.83871 +L 0.774194,-2.83871,0.258065,-3.096774 +L 0.258065,-3.096774,0,-2.83871 +L 0,-2.83871,0,-2.322581 +L 0,-2.322581,0.258065,-1.548387 +L 0.258065,-1.548387,0.774194,-1.032258 +L 0.774194,-1.032258,1.548387,-0.516129 +L 1.548387,-0.516129,2.580645,0 +L 2.580645,0,3.354839,0.516129 +L 3.354839,0.516129,3.870968,1.290323 + +[k] 19 +L 0,1.290323,0.516129,2.064516 +L 0.516129,2.064516,1.032258,3.096774 +L 1.806452,5.419355,0,0 +L 2.064516,5.419355,0.258065,0 +L 2.322581,2.322581,2.322581,2.064516 +L 2.322581,2.064516,2.580645,2.064516 +L 2.580645,2.064516,2.322581,2.322581 +L 2.322581,2.322581,2.064516,2.322581 +L 2.064516,2.322581,1.548387,1.806452 +L 1.548387,1.806452,0.774194,1.548387 +L 0.774194,1.548387,1.548387,1.290323 +L 1.548387,1.290323,1.806452,0.258065 +L 1.806452,0.258065,2.064516,0 +L 0.774194,1.548387,1.290323,1.290323 +L 1.290323,1.290323,1.548387,0.258065 +L 1.548387,0.258065,2.064516,0 +L 2.064516,0,2.322581,0 +L 2.322581,0,3.096774,0.516129 +L 3.096774,0.516129,3.612903,1.290323 + +[l] 11 +L 0,1.290323,0.516129,2.064516 +L 0.516129,2.064516,1.032258,3.096774 +L 1.806452,5.419355,0.258065,0.774194 +L 0.258065,0.774194,0.258065,0.258065 +L 0.258065,0.258065,0.774194,0 +L 0.774194,0,1.290323,0.258065 +L 1.290323,0.258065,1.548387,0.516129 +L 1.548387,0.516129,2.064516,1.290323 +L 2.064516,5.419355,0.516129,0.774194 +L 0.516129,0.774194,0.516129,0.258065 +L 0.516129,0.258065,0.774194,0 + +[m] 33 +L 0,1.290323,0.516129,2.064516 +L 0.516129,2.064516,1.032258,2.322581 +L 1.032258,2.322581,1.548387,2.064516 +L 1.548387,2.064516,1.548387,1.548387 +L 1.548387,1.548387,1.032258,0 +L 1.032258,2.322581,1.290323,2.064516 +L 1.290323,2.064516,1.290323,1.548387 +L 1.290323,1.548387,0.774194,0 +L 1.548387,1.548387,2.064516,2.064516 +L 2.064516,2.064516,2.580645,2.322581 +L 2.580645,2.322581,2.83871,2.322581 +L 2.83871,2.322581,3.354839,2.064516 +L 3.354839,2.064516,3.354839,1.548387 +L 3.354839,1.548387,2.83871,0 +L 2.83871,2.322581,3.096774,2.064516 +L 3.096774,2.064516,3.096774,1.548387 +L 3.096774,1.548387,2.580645,0 +L 3.354839,1.548387,3.870968,2.064516 +L 3.870968,2.064516,4.387097,2.322581 +L 4.387097,2.322581,4.645161,2.322581 +L 4.645161,2.322581,5.16129,2.064516 +L 5.16129,2.064516,5.16129,1.548387 +L 5.16129,1.548387,4.903226,0.774194 +L 4.903226,0.774194,4.903226,0.258065 +L 4.903226,0.258065,5.16129,0 +L 4.645161,2.322581,4.903226,2.064516 +L 4.903226,2.064516,4.903226,1.548387 +L 4.903226,1.548387,4.645161,0.774194 +L 4.645161,0.774194,4.645161,0.258065 +L 4.645161,0.258065,5.16129,0 +L 5.16129,0,5.677419,0.258065 +L 5.677419,0.258065,5.935484,0.516129 +L 5.935484,0.516129,6.451613,1.290323 + +[n] 24 +L 0,1.290323,0.516129,2.064516 +L 0.516129,2.064516,1.032258,2.322581 +L 1.032258,2.322581,1.548387,2.064516 +L 1.548387,2.064516,1.548387,1.548387 +L 1.548387,1.548387,1.032258,0 +L 1.032258,2.322581,1.290323,2.064516 +L 1.290323,2.064516,1.290323,1.548387 +L 1.290323,1.548387,0.774194,0 +L 1.548387,1.548387,2.064516,2.064516 +L 2.064516,2.064516,2.580645,2.322581 +L 2.580645,2.322581,2.83871,2.322581 +L 2.83871,2.322581,3.354839,2.064516 +L 3.354839,2.064516,3.354839,1.548387 +L 3.354839,1.548387,3.096774,0.774194 +L 3.096774,0.774194,3.096774,0.258065 +L 3.096774,0.258065,3.354839,0 +L 2.83871,2.322581,3.096774,2.064516 +L 3.096774,2.064516,3.096774,1.548387 +L 3.096774,1.548387,2.83871,0.774194 +L 2.83871,0.774194,2.83871,0.258065 +L 2.83871,0.258065,3.354839,0 +L 3.354839,0,3.870968,0.258065 +L 3.870968,0.258065,4.129032,0.516129 +L 4.129032,0.516129,4.645161,1.290323 + +[o] 25 +L 1.548387,2.322581,1.032258,2.322581 +L 1.032258,2.322581,0.516129,2.064516 +L 0.516129,2.064516,0.258065,1.806452 +L 0.258065,1.806452,0,1.290323 +L 0,1.290323,0,0.774194 +L 0,0.774194,0.258065,0.258065 +L 0.258065,0.258065,0.774194,0 +L 0.774194,0,1.290323,0 +L 1.290323,0,1.806452,0.258065 +L 1.806452,0.258065,2.064516,0.516129 +L 2.064516,0.516129,2.322581,1.032258 +L 2.322581,1.032258,2.322581,1.548387 +L 2.322581,1.548387,2.064516,2.064516 +L 2.064516,2.064516,1.548387,2.322581 +L 1.548387,2.322581,1.290323,2.064516 +L 1.290323,2.064516,1.290323,1.548387 +L 1.290323,1.548387,1.548387,1.032258 +L 1.548387,1.032258,2.064516,0.774194 +L 2.064516,0.774194,2.580645,0.774194 +L 2.580645,0.774194,3.096774,1.032258 +L 3.096774,1.032258,3.354839,1.290323 +L 1.032258,2.322581,0.516129,1.806452 +L 0.516129,1.806452,0.258065,1.290323 +L 0.258065,1.290323,0.258065,0.516129 +L 0.258065,0.516129,0.774194,0 + +[p] 20 +L 1.032258,1.290323,1.548387,2.064516 +L 1.548387,2.064516,2.064516,3.096774 +L 2.322581,3.870968,0,-3.096774 +L 2.580645,3.870968,0.258065,-3.096774 +L 1.806452,1.548387,2.322581,2.064516 +L 2.322581,2.064516,2.83871,2.322581 +L 2.83871,2.322581,3.096774,2.322581 +L 3.096774,2.322581,3.612903,2.064516 +L 3.612903,2.064516,3.612903,1.548387 +L 3.612903,1.548387,3.354839,0.774194 +L 3.354839,0.774194,3.354839,0.258065 +L 3.354839,0.258065,3.612903,0 +L 3.096774,2.322581,3.354839,2.064516 +L 3.354839,2.064516,3.354839,1.548387 +L 3.354839,1.548387,3.096774,0.774194 +L 3.096774,0.774194,3.096774,0.258065 +L 3.096774,0.258065,3.612903,0 +L 3.612903,0,4.129032,0.258065 +L 4.129032,0.258065,4.387097,0.516129 +L 4.387097,0.516129,4.903226,1.290323 + +[q] 27 +L 2.322581,1.548387,2.064516,2.064516 +L 2.064516,2.064516,1.548387,2.322581 +L 1.548387,2.322581,1.032258,2.322581 +L 1.032258,2.322581,0.516129,2.064516 +L 0.516129,2.064516,0.258065,1.806452 +L 0.258065,1.806452,0,1.290323 +L 0,1.290323,0,0.774194 +L 0,0.774194,0.258065,0.258065 +L 0.258065,0.258065,0.774194,0 +L 0.774194,0,1.290323,0 +L 1.290323,0,1.806452,0.258065 +L 1.032258,2.322581,0.516129,1.806452 +L 0.516129,1.806452,0.258065,1.290323 +L 0.258065,1.290323,0.258065,0.516129 +L 0.258065,0.516129,0.774194,0 +L 2.580645,2.322581,1.032258,-2.322581 +L 1.032258,-2.322581,1.032258,-2.83871 +L 1.032258,-2.83871,1.290323,-3.096774 +L 1.290323,-3.096774,1.806452,-2.83871 +L 1.806452,-2.83871,2.064516,-2.064516 +L 2.064516,-2.064516,2.064516,0 +L 2.064516,0,2.580645,0 +L 2.580645,0,3.354839,0.516129 +L 3.354839,0.516129,3.870968,1.290323 +L 2.83871,2.322581,2.064516,0 +L 2.064516,0,1.548387,-1.290323 +L 1.548387,-1.290323,1.032258,-2.322581 + +[r] 16 +L 0,1.290323,0.516129,2.064516 +L 0.516129,2.064516,1.032258,2.322581 +L 1.032258,2.322581,1.548387,2.064516 +L 1.548387,2.064516,1.548387,1.548387 +L 1.548387,1.548387,1.032258,0 +L 1.032258,2.322581,1.290323,2.064516 +L 1.290323,2.064516,1.290323,1.548387 +L 1.290323,1.548387,0.774194,0 +L 1.548387,1.548387,2.064516,2.064516 +L 2.064516,2.064516,2.580645,2.322581 +L 2.580645,2.322581,2.83871,2.322581 +L 2.83871,2.322581,2.580645,1.548387 +L 2.580645,2.322581,2.580645,1.548387 +L 2.580645,1.548387,2.83871,1.032258 +L 2.83871,1.032258,3.096774,1.032258 +L 3.096774,1.032258,3.612903,1.290323 + +[s] 16 +L 0,1.290323,0.516129,2.064516 +L 0.516129,2.064516,0.774194,2.580645 +L 0.774194,2.580645,0.774194,2.064516 +L 0.774194,2.064516,1.548387,1.548387 +L 1.548387,1.548387,1.806452,1.032258 +L 1.806452,1.032258,1.806452,0.516129 +L 1.806452,0.516129,1.548387,0.258065 +L 1.548387,0.258065,1.032258,0 +L 0.774194,2.064516,1.290323,1.548387 +L 1.290323,1.548387,1.548387,1.032258 +L 1.548387,1.032258,1.548387,0.516129 +L 1.548387,0.516129,1.032258,0 +L 0,0.258065,0.516129,0 +L 0.516129,0,1.806452,0 +L 1.806452,0,2.580645,0.516129 +L 2.580645,0.516129,3.096774,1.290323 + +[t] 12 +L 0,1.290323,0.516129,2.064516 +L 0.516129,2.064516,1.032258,3.096774 +L 1.806452,5.419355,0.258065,0.774194 +L 0.258065,0.774194,0.258065,0.258065 +L 0.258065,0.258065,0.774194,0 +L 0.774194,0,1.290323,0.258065 +L 1.290323,0.258065,1.548387,0.516129 +L 1.548387,0.516129,2.064516,1.290323 +L 2.064516,5.419355,0.516129,0.774194 +L 0.516129,0.774194,0.516129,0.258065 +L 0.516129,0.258065,0.774194,0 +L 0.516129,3.354839,2.064516,3.354839 + +[u] 19 +L 0.516129,2.322581,0,0.774194 +L 0,0.774194,0,0.258065 +L 0,0.258065,0.516129,0 +L 0.516129,0,0.774194,0 +L 0.774194,0,1.290323,0.258065 +L 1.290323,0.258065,1.806452,0.774194 +L 1.806452,0.774194,2.322581,1.548387 +L 0.774194,2.322581,0.258065,0.774194 +L 0.258065,0.774194,0.258065,0.258065 +L 0.258065,0.258065,0.516129,0 +L 2.580645,2.322581,2.064516,0.774194 +L 2.064516,0.774194,2.064516,0.258065 +L 2.064516,0.258065,2.580645,0 +L 2.580645,0,3.096774,0.258065 +L 3.096774,0.258065,3.354839,0.516129 +L 3.354839,0.516129,3.870968,1.290323 +L 2.83871,2.322581,2.322581,0.774194 +L 2.322581,0.774194,2.322581,0.258065 +L 2.322581,0.258065,2.580645,0 + +[v] 17 +L 0.516129,2.322581,0.258065,1.806452 +L 0.258065,1.806452,0,1.032258 +L 0,1.032258,0,0.258065 +L 0,0.258065,0.516129,0 +L 0.516129,0,0.774194,0 +L 0.774194,0,1.548387,0.258065 +L 1.548387,0.258065,2.064516,0.774194 +L 2.064516,0.774194,2.322581,1.548387 +L 2.322581,1.548387,2.322581,2.322581 +L 0.774194,2.322581,0.516129,1.806452 +L 0.516129,1.806452,0.258065,1.032258 +L 0.258065,1.032258,0.258065,0.258065 +L 0.258065,0.258065,0.516129,0 +L 2.322581,2.322581,2.580645,1.290323 +L 2.580645,1.290323,2.83871,1.032258 +L 2.83871,1.032258,3.096774,1.032258 +L 3.096774,1.032258,3.612903,1.290323 + +[w] 26 +L 0.774194,2.322581,0.258065,1.806452 +L 0.258065,1.806452,0,1.032258 +L 0,1.032258,0,0.258065 +L 0,0.258065,0.516129,0 +L 0.516129,0,0.774194,0 +L 0.774194,0,1.290323,0.258065 +L 1.290323,0.258065,1.806452,0.774194 +L 1.032258,2.322581,0.516129,1.806452 +L 0.516129,1.806452,0.258065,1.032258 +L 0.258065,1.032258,0.258065,0.258065 +L 0.258065,0.258065,0.516129,0 +L 2.322581,2.322581,1.806452,0.774194 +L 1.806452,0.774194,1.806452,0.258065 +L 1.806452,0.258065,2.322581,0 +L 2.322581,0,2.580645,0 +L 2.580645,0,3.096774,0.258065 +L 3.096774,0.258065,3.612903,0.774194 +L 3.612903,0.774194,3.870968,1.548387 +L 3.870968,1.548387,3.870968,2.322581 +L 2.580645,2.322581,2.064516,0.774194 +L 2.064516,0.774194,2.064516,0.258065 +L 2.064516,0.258065,2.322581,0 +L 3.870968,2.322581,4.129032,1.290323 +L 4.129032,1.290323,4.387097,1.032258 +L 4.387097,1.032258,4.645161,1.032258 +L 4.645161,1.032258,5.16129,1.290323 + +[x] 30 +L 0,1.290323,0.516129,2.064516 +L 0.516129,2.064516,1.032258,2.322581 +L 1.032258,2.322581,1.548387,2.322581 +L 1.548387,2.322581,1.806452,2.064516 +L 1.806452,2.064516,1.806452,1.548387 +L 1.806452,1.548387,1.548387,0.774194 +L 1.548387,0.774194,1.290323,0.258065 +L 1.290323,0.258065,0.774194,0 +L 0.774194,0,0.516129,0 +L 0.516129,0,0.258065,0.258065 +L 0.258065,0.258065,0.258065,0.516129 +L 0.258065,0.516129,0.516129,0.516129 +L 0.516129,0.516129,0.258065,0.258065 +L 3.354839,2.064516,3.096774,1.806452 +L 3.096774,1.806452,3.354839,1.806452 +L 3.354839,1.806452,3.354839,2.064516 +L 3.354839,2.064516,3.096774,2.322581 +L 3.096774,2.322581,2.83871,2.322581 +L 2.83871,2.322581,2.322581,2.064516 +L 2.322581,2.064516,2.064516,1.548387 +L 2.064516,1.548387,1.806452,0.774194 +L 1.806452,0.774194,1.806452,0.258065 +L 1.806452,0.258065,2.064516,0 +L 2.064516,0,2.83871,0 +L 2.83871,0,3.612903,0.516129 +L 3.612903,0.516129,4.129032,1.290323 +L 1.806452,2.064516,2.064516,1.548387 +L 2.322581,2.064516,1.806452,1.548387 +L 1.548387,0.774194,1.806452,0.258065 +L 1.806452,0.774194,1.290323,0.258065 + +[y] 24 +L 0.516129,2.322581,0,0.774194 +L 0,0.774194,0,0.258065 +L 0,0.258065,0.516129,0 +L 0.516129,0,0.774194,0 +L 0.774194,0,1.290323,0.258065 +L 1.290323,0.258065,1.806452,0.774194 +L 1.806452,0.774194,2.322581,1.548387 +L 0.774194,2.322581,0.258065,0.774194 +L 0.258065,0.774194,0.258065,0.258065 +L 0.258065,0.258065,0.516129,0 +L 2.580645,2.322581,1.032258,-2.322581 +L 2.83871,2.322581,2.064516,0 +L 2.064516,0,1.548387,-1.290323 +L 1.548387,-1.290323,1.032258,-2.322581 +L 1.032258,-2.322581,0.774194,-2.83871 +L 0.774194,-2.83871,0.258065,-3.096774 +L 0.258065,-3.096774,0,-2.83871 +L 0,-2.83871,0,-2.322581 +L 0,-2.322581,0.258065,-1.548387 +L 0.258065,-1.548387,0.774194,-1.032258 +L 0.774194,-1.032258,1.548387,-0.516129 +L 1.548387,-0.516129,2.580645,0 +L 2.580645,0,3.354839,0.516129 +L 3.354839,0.516129,3.870968,1.290323 + +[z] 30 +L 0.258065,1.290323,0.774194,2.064516 +L 0.774194,2.064516,1.290323,2.322581 +L 1.290323,2.322581,1.806452,2.322581 +L 1.806452,2.322581,2.322581,2.064516 +L 2.322581,2.064516,2.322581,1.290323 +L 2.322581,1.290323,2.064516,0.774194 +L 2.064516,0.774194,1.290323,0.258065 +L 1.290323,0.258065,0.774194,0 +L 1.806452,2.322581,2.064516,2.064516 +L 2.064516,2.064516,2.064516,1.290323 +L 2.064516,1.290323,1.806452,0.774194 +L 1.806452,0.774194,1.290323,0.258065 +L 0.774194,0,1.290323,-0.258065 +L 1.290323,-0.258065,1.548387,-0.774194 +L 1.548387,-0.774194,1.548387,-1.548387 +L 1.548387,-1.548387,1.290323,-2.322581 +L 1.290323,-2.322581,0.774194,-2.83871 +L 0.774194,-2.83871,0.258065,-3.096774 +L 0.258065,-3.096774,0,-2.83871 +L 0,-2.83871,0,-2.322581 +L 0,-2.322581,0.258065,-1.548387 +L 0.258065,-1.548387,1.032258,-0.774194 +L 1.032258,-0.774194,1.806452,-0.258065 +L 1.806452,-0.258065,2.83871,0.516129 +L 2.83871,0.516129,3.612903,1.290323 +L 0.774194,0,1.032258,-0.258065 +L 1.032258,-0.258065,1.290323,-0.774194 +L 1.290323,-0.774194,1.290323,-1.548387 +L 1.290323,-1.548387,1.032258,-2.322581 +L 1.032258,-2.322581,0.774194,-2.83871 + +[{] 34 +L 1.290323,6.451613,0.774194,6.193548 +L 0.774194,6.193548,0.516129,5.935484 +L 0.516129,5.935484,0.258065,5.419355 +L 0.258065,5.419355,0.258065,4.903226 +L 0.258065,4.903226,0.516129,4.387097 +L 0.516129,4.387097,0.774194,4.129032 +L 0.774194,4.129032,1.032258,3.612903 +L 1.032258,3.612903,1.032258,3.096774 +L 1.032258,3.096774,0.516129,2.580645 +L 0.774194,6.193548,0.516129,5.677419 +L 0.516129,5.677419,0.516129,5.16129 +L 0.516129,5.16129,0.774194,4.645161 +L 0.774194,4.645161,1.032258,4.387097 +L 1.032258,4.387097,1.290323,3.870968 +L 1.290323,3.870968,1.290323,3.354839 +L 1.290323,3.354839,1.032258,2.83871 +L 1.032258,2.83871,0,2.322581 +L 0,2.322581,1.032258,1.806452 +L 1.032258,1.806452,1.290323,1.290323 +L 1.290323,1.290323,1.290323,0.774194 +L 1.290323,0.774194,1.032258,0.258065 +L 1.032258,0.258065,0.774194,0 +L 0.774194,0,0.516129,-0.516129 +L 0.516129,-0.516129,0.516129,-1.032258 +L 0.516129,-1.032258,0.774194,-1.548387 +L 0.516129,2.064516,1.032258,1.548387 +L 1.032258,1.548387,1.032258,1.032258 +L 1.032258,1.032258,0.774194,0.516129 +L 0.774194,0.516129,0.516129,0.258065 +L 0.516129,0.258065,0.258065,-0.258065 +L 0.258065,-0.258065,0.258065,-0.774194 +L 0.258065,-0.774194,0.516129,-1.290323 +L 0.516129,-1.290323,0.774194,-1.548387 +L 0.774194,-1.548387,1.290323,-1.806452 + +[|] 1 +L 0,6.451613,0,-1.806452 + +[}] 34 +L 0,6.451613,0.516129,6.193548 +L 0.516129,6.193548,0.774194,5.935484 +L 0.774194,5.935484,1.032258,5.419355 +L 1.032258,5.419355,1.032258,4.903226 +L 1.032258,4.903226,0.774194,4.387097 +L 0.774194,4.387097,0.516129,4.129032 +L 0.516129,4.129032,0.258065,3.612903 +L 0.258065,3.612903,0.258065,3.096774 +L 0.258065,3.096774,0.774194,2.580645 +L 0.516129,6.193548,0.774194,5.677419 +L 0.774194,5.677419,0.774194,5.16129 +L 0.774194,5.16129,0.516129,4.645161 +L 0.516129,4.645161,0.258065,4.387097 +L 0.258065,4.387097,0,3.870968 +L 0,3.870968,0,3.354839 +L 0,3.354839,0.258065,2.83871 +L 0.258065,2.83871,1.290323,2.322581 +L 1.290323,2.322581,0.258065,1.806452 +L 0.258065,1.806452,0,1.290323 +L 0,1.290323,0,0.774194 +L 0,0.774194,0.258065,0.258065 +L 0.258065,0.258065,0.516129,0 +L 0.516129,0,0.774194,-0.516129 +L 0.774194,-0.516129,0.774194,-1.032258 +L 0.774194,-1.032258,0.516129,-1.548387 +L 0.774194,2.064516,0.258065,1.548387 +L 0.258065,1.548387,0.258065,1.032258 +L 0.258065,1.032258,0.516129,0.516129 +L 0.516129,0.516129,0.774194,0.258065 +L 0.774194,0.258065,1.032258,-0.258065 +L 1.032258,-0.258065,1.032258,-0.774194 +L 1.032258,-0.774194,0.774194,-1.290323 +L 0.774194,-1.290323,0.516129,-1.548387 +L 0.516129,-1.548387,0,-1.806452 + +[~] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[#0104] 36 +L 5.16129,5.419355,4.645161,4.903226 +L 4.645161,4.903226,4.129032,4.129032 +L 4.129032,4.129032,3.354839,2.83871 +L 3.354839,2.83871,2.83871,2.064516 +L 2.83871,2.064516,2.064516,1.032258 +L 2.064516,1.032258,1.290323,0.258065 +L 1.290323,0.258065,0.774194,0 +L 0.774194,0,0.258065,0 +L 0.258065,0,0,0.258065 +L 0,0.258065,0,0.774194 +L 0,0.774194,0.258065,1.032258 +L 0.258065,1.032258,0.516129,0.774194 +L 0.516129,0.774194,0.258065,0.516129 +L 5.16129,5.419355,4.903226,4.387097 +L 4.903226,4.387097,4.387097,1.806452 +L 4.387097,1.806452,4.129032,0 +L 5.16129,5.419355,4.387097,0 +L 4.129032,0,4.129032,0.516129 +L 4.129032,0.516129,3.870968,1.290323 +L 3.870968,1.290323,3.612903,1.806452 +L 3.612903,1.806452,3.096774,2.322581 +L 3.096774,2.322581,2.580645,2.580645 +L 2.580645,2.580645,2.064516,2.580645 +L 2.064516,2.580645,1.806452,2.322581 +L 1.806452,2.322581,1.806452,1.806452 +L 1.806452,1.806452,2.064516,1.032258 +L 2.064516,1.032258,2.83871,0.258065 +L 2.83871,0.258065,3.612903,0 +L 3.612903,0,4.645161,0 +L 4.645161,0,5.16129,0.258065 +L 4.387097,0,3.870968,-0.516129 +L 3.870968,-0.516129,3.612903,-1.032258 +L 3.612903,-1.032258,3.612903,-1.290323 +L 3.612903,-1.290323,3.870968,-1.548387 +L 3.870968,-1.548387,4.129032,-1.290323 +L 4.129032,-1.290323,3.870968,-1.032258 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[#0141] 41 +L 1.290323,4.645161,1.032258,4.129032 +L 1.032258,4.129032,1.032258,3.612903 +L 1.032258,3.612903,1.290323,3.096774 +L 1.290323,3.096774,1.806452,2.83871 +L 1.806452,2.83871,2.580645,2.83871 +L 2.580645,2.83871,3.354839,3.096774 +L 3.354839,3.096774,3.870968,3.354839 +L 3.870968,3.354839,4.645161,4.129032 +L 4.645161,4.129032,4.903226,4.903226 +L 4.903226,4.903226,4.903226,5.16129 +L 4.903226,5.16129,4.645161,5.419355 +L 4.645161,5.419355,4.387097,5.419355 +L 4.387097,5.419355,3.870968,5.16129 +L 3.870968,5.16129,3.612903,4.903226 +L 3.612903,4.903226,3.096774,4.129032 +L 3.096774,4.129032,2.064516,1.548387 +L 2.064516,1.548387,1.806452,1.032258 +L 1.806452,1.032258,1.290323,0.258065 +L 1.290323,0.258065,0.774194,0 +L 3.612903,4.903226,3.096774,3.870968 +L 3.096774,3.870968,2.580645,2.064516 +L 2.580645,2.064516,2.322581,1.290323 +L 2.322581,1.290323,2.064516,0.774194 +L 2.064516,0.774194,1.548387,0.258065 +L 1.548387,0.258065,0.774194,0 +L 0.774194,0,0.258065,0 +L 0.258065,0,0,0.258065 +L 0,0.258065,0,0.774194 +L 0,0.774194,0.258065,1.032258 +L 0.258065,1.032258,0.774194,1.032258 +L 0.774194,1.032258,1.290323,0.774194 +L 1.290323,0.774194,2.064516,0.258065 +L 2.064516,0.258065,2.580645,0 +L 2.580645,0,3.354839,0 +L 3.354839,0,3.870968,0.258065 +L 3.870968,0.258065,4.387097,0.774194 +L 4.387097,2.322581,3.612903,1.806452 +L 3.612903,1.806452,2.83871,1.806452 +L 2.83871,1.806452,2.064516,2.322581 +L 2.064516,2.322581,1.290323,2.322581 +L 1.290323,2.322581,0.774194,1.806452 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[#015A] 38 +L 1.548387,4.645161,1.290323,4.129032 +L 1.290323,4.129032,1.290323,3.612903 +L 1.290323,3.612903,1.548387,3.096774 +L 1.548387,3.096774,2.064516,2.83871 +L 2.064516,2.83871,2.83871,2.83871 +L 2.83871,2.83871,3.612903,3.096774 +L 3.612903,3.096774,4.129032,3.354839 +L 4.129032,3.354839,4.903226,4.129032 +L 4.903226,4.129032,5.16129,4.903226 +L 5.16129,4.903226,5.16129,5.16129 +L 5.16129,5.16129,4.903226,5.419355 +L 4.903226,5.419355,4.645161,5.419355 +L 4.645161,5.419355,4.129032,5.16129 +L 4.129032,5.16129,3.870968,4.903226 +L 3.870968,4.903226,3.612903,4.387097 +L 3.612903,4.387097,3.354839,3.612903 +L 3.354839,3.612903,2.83871,1.806452 +L 2.83871,1.806452,2.580645,1.032258 +L 2.580645,1.032258,2.064516,0.258065 +L 2.064516,0.258065,1.548387,0 +L 3.612903,4.387097,3.354839,3.354839 +L 3.354839,3.354839,3.096774,1.548387 +L 3.096774,1.548387,2.83871,0.774194 +L 2.83871,0.774194,2.322581,0.258065 +L 2.322581,0.258065,1.548387,0 +L 1.548387,0,0.774194,0 +L 0.774194,0,0.258065,0.258065 +L 0.258065,0.258065,0,0.774194 +L 0,0.774194,0,1.032258 +L 0,1.032258,0.258065,1.290323 +L 0.258065,1.290323,0.516129,1.032258 +L 0.516129,1.032258,0.258065,0.774194 +L 3.870968,6.967742,3.612903,7.225806 +L 3.612903,7.225806,3.870968,7.483871 +L 3.870968,7.483871,4.129032,7.225806 +L 4.129032,7.225806,4.129032,6.967742 +L 4.129032,6.967742,3.870968,6.451613 +L 3.870968,6.451613,3.354839,5.935484 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[#0179] 44 +L 4.903226,4.903226,4.645161,4.387097 +L 4.645161,4.387097,4.129032,3.096774 +L 4.129032,3.096774,3.870968,2.322581 +L 3.870968,2.322581,3.612903,1.806452 +L 3.612903,1.806452,3.096774,1.032258 +L 3.096774,1.032258,2.580645,0.516129 +L 2.580645,0.516129,2.064516,0.258065 +L 2.064516,0.258065,1.290323,0 +L 3.096774,3.870968,2.83871,3.354839 +L 2.83871,3.354839,2.322581,3.096774 +L 2.322581,3.096774,1.806452,3.096774 +L 1.806452,3.096774,1.548387,3.612903 +L 1.548387,3.612903,1.548387,4.129032 +L 1.548387,4.129032,1.806452,4.645161 +L 1.806452,4.645161,2.322581,5.16129 +L 2.322581,5.16129,3.096774,5.419355 +L 3.096774,5.419355,5.677419,5.419355 +L 5.677419,5.419355,5.16129,5.16129 +L 5.16129,5.16129,4.903226,4.903226 +L 4.903226,4.903226,4.645161,4.129032 +L 4.645161,4.129032,4.387097,3.096774 +L 4.387097,3.096774,3.870968,1.548387 +L 3.870968,1.548387,3.354839,0.774194 +L 3.354839,0.774194,2.580645,0.258065 +L 2.580645,0.258065,1.290323,0 +L 1.290323,0,0.258065,0 +L 0.258065,0,0,0.258065 +L 0,0.258065,0,0.774194 +L 0,0.774194,0.258065,1.032258 +L 0.258065,1.032258,0.774194,1.032258 +L 0.774194,1.032258,1.290323,0.774194 +L 1.290323,0.774194,2.064516,0.258065 +L 2.064516,0.258065,2.580645,0 +L 2.580645,0,3.354839,0 +L 3.354839,0,4.129032,0.258065 +L 4.129032,0.258065,4.645161,0.774194 +L 3.870968,5.419355,4.903226,5.16129 +L 4.903226,5.16129,5.16129,5.16129 +L 4.387097,6.967742,4.129032,7.225806 +L 4.129032,7.225806,4.387097,7.483871 +L 4.387097,7.483871,4.645161,7.225806 +L 4.645161,7.225806,4.645161,6.967742 +L 4.645161,6.967742,4.387097,6.451613 +L 4.387097,6.451613,3.870968,5.935484 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[#017B] 42 +L 4.903226,4.903226,4.645161,4.387097 +L 4.645161,4.387097,4.129032,3.096774 +L 4.129032,3.096774,3.870968,2.322581 +L 3.870968,2.322581,3.612903,1.806452 +L 3.612903,1.806452,3.096774,1.032258 +L 3.096774,1.032258,2.580645,0.516129 +L 2.580645,0.516129,2.064516,0.258065 +L 2.064516,0.258065,1.290323,0 +L 3.096774,3.870968,2.83871,3.354839 +L 2.83871,3.354839,2.322581,3.096774 +L 2.322581,3.096774,1.806452,3.096774 +L 1.806452,3.096774,1.548387,3.612903 +L 1.548387,3.612903,1.548387,4.129032 +L 1.548387,4.129032,1.806452,4.645161 +L 1.806452,4.645161,2.322581,5.16129 +L 2.322581,5.16129,3.096774,5.419355 +L 3.096774,5.419355,5.677419,5.419355 +L 5.677419,5.419355,5.16129,5.16129 +L 5.16129,5.16129,4.903226,4.903226 +L 4.903226,4.903226,4.645161,4.129032 +L 4.645161,4.129032,4.387097,3.096774 +L 4.387097,3.096774,3.870968,1.548387 +L 3.870968,1.548387,3.354839,0.774194 +L 3.354839,0.774194,2.580645,0.258065 +L 2.580645,0.258065,1.290323,0 +L 1.290323,0,0.258065,0 +L 0.258065,0,0,0.258065 +L 0,0.258065,0,0.774194 +L 0,0.774194,0.258065,1.032258 +L 0.258065,1.032258,0.774194,1.032258 +L 0.774194,1.032258,1.290323,0.774194 +L 1.290323,0.774194,2.064516,0.258065 +L 2.064516,0.258065,2.580645,0 +L 2.580645,0,3.354839,0 +L 3.354839,0,4.129032,0.258065 +L 4.129032,0.258065,4.645161,0.774194 +L 3.870968,5.419355,4.903226,5.16129 +L 4.903226,5.16129,5.16129,5.16129 +L 3.870968,6.451613,3.612903,6.193548 +L 3.612903,6.193548,3.870968,5.935484 +L 3.870968,5.935484,4.129032,6.193548 +L 4.129032,6.193548,3.870968,6.451613 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[#0105] 31 +L 2.322581,1.548387,2.064516,2.064516 +L 2.064516,2.064516,1.548387,2.322581 +L 1.548387,2.322581,1.032258,2.322581 +L 1.032258,2.322581,0.516129,2.064516 +L 0.516129,2.064516,0.258065,1.806452 +L 0.258065,1.806452,0,1.290323 +L 0,1.290323,0,0.774194 +L 0,0.774194,0.258065,0.258065 +L 0.258065,0.258065,0.774194,0 +L 0.774194,0,1.290323,0 +L 1.290323,0,1.806452,0.258065 +L 1.806452,0.258065,2.064516,0.774194 +L 1.032258,2.322581,0.516129,1.806452 +L 0.516129,1.806452,0.258065,1.290323 +L 0.258065,1.290323,0.258065,0.516129 +L 0.258065,0.516129,0.774194,0 +L 2.580645,2.322581,2.064516,0.774194 +L 2.064516,0.774194,2.064516,0.258065 +L 2.064516,0.258065,2.580645,0 +L 2.580645,0,3.096774,0.258065 +L 3.096774,0.258065,3.354839,0.516129 +L 3.354839,0.516129,3.870968,1.290323 +L 2.83871,2.322581,2.322581,0.774194 +L 2.322581,0.774194,2.322581,0.258065 +L 2.322581,0.258065,2.580645,0 +L 2.580645,0,2.064516,-0.516129 +L 2.064516,-0.516129,1.806452,-1.032258 +L 1.806452,-1.032258,1.806452,-1.290323 +L 1.806452,-1.290323,2.064516,-1.548387 +L 2.064516,-1.548387,2.322581,-1.290323 +L 2.322581,-1.290323,2.064516,-1.032258 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[#0142] 16 +L 0,1.290323,0.516129,2.064516 +L 0.516129,2.064516,1.032258,3.096774 +L 1.806452,5.419355,0.258065,0.774194 +L 0.258065,0.774194,0.258065,0.258065 +L 0.258065,0.258065,0.774194,0 +L 0.774194,0,1.290323,0.258065 +L 1.290323,0.258065,1.548387,0.516129 +L 1.548387,0.516129,2.064516,1.290323 +L 2.064516,5.419355,0.516129,0.774194 +L 0.516129,0.774194,0.516129,0.258065 +L 0.516129,0.258065,0.774194,0 +L 2.83871,5.935484,2.580645,5.677419 +L 2.580645,5.677419,2.064516,5.419355 +L 2.064516,5.419355,1.806452,5.419355 +L 1.806452,5.419355,1.290323,5.677419 +L 1.290323,5.677419,0.774194,5.419355 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[#015B] 22 +L 0,1.290323,0.516129,2.064516 +L 0.516129,2.064516,0.774194,2.580645 +L 0.774194,2.580645,0.774194,2.064516 +L 0.774194,2.064516,1.548387,1.548387 +L 1.548387,1.548387,1.806452,1.032258 +L 1.806452,1.032258,1.806452,0.516129 +L 1.806452,0.516129,1.548387,0.258065 +L 1.548387,0.258065,1.032258,0 +L 0.774194,2.064516,1.290323,1.548387 +L 1.290323,1.548387,1.548387,1.032258 +L 1.548387,1.032258,1.548387,0.516129 +L 1.548387,0.516129,1.032258,0 +L 0,0.258065,0.516129,0 +L 0.516129,0,1.806452,0 +L 1.806452,0,2.580645,0.516129 +L 2.580645,0.516129,3.096774,1.290323 +L 1.548387,4.129032,1.290323,4.387097 +L 1.290323,4.387097,1.548387,4.645161 +L 1.548387,4.645161,1.806452,4.387097 +L 1.806452,4.387097,1.806452,4.129032 +L 1.806452,4.129032,1.548387,3.612903 +L 1.548387,3.612903,1.032258,3.096774 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[#017A] 36 +L 0.258065,1.290323,0.774194,2.064516 +L 0.774194,2.064516,1.290323,2.322581 +L 1.290323,2.322581,1.806452,2.322581 +L 1.806452,2.322581,2.322581,2.064516 +L 2.322581,2.064516,2.322581,1.290323 +L 2.322581,1.290323,2.064516,0.774194 +L 2.064516,0.774194,1.290323,0.258065 +L 1.290323,0.258065,0.774194,0 +L 1.806452,2.322581,2.064516,2.064516 +L 2.064516,2.064516,2.064516,1.290323 +L 2.064516,1.290323,1.806452,0.774194 +L 1.806452,0.774194,1.290323,0.258065 +L 0.774194,0,1.290323,-0.258065 +L 1.290323,-0.258065,1.548387,-0.774194 +L 1.548387,-0.774194,1.548387,-1.548387 +L 1.548387,-1.548387,1.290323,-2.322581 +L 1.290323,-2.322581,0.774194,-2.83871 +L 0.774194,-2.83871,0.258065,-3.096774 +L 0.258065,-3.096774,0,-2.83871 +L 0,-2.83871,0,-2.322581 +L 0,-2.322581,0.258065,-1.548387 +L 0.258065,-1.548387,1.032258,-0.774194 +L 1.032258,-0.774194,1.806452,-0.258065 +L 1.806452,-0.258065,2.83871,0.516129 +L 2.83871,0.516129,3.612903,1.290323 +L 0.774194,0,1.032258,-0.258065 +L 1.032258,-0.258065,1.290323,-0.774194 +L 1.290323,-0.774194,1.290323,-1.548387 +L 1.290323,-1.548387,1.032258,-2.322581 +L 1.032258,-2.322581,0.774194,-2.83871 +L 2.322581,3.870968,2.064516,4.129032 +L 2.064516,4.129032,2.322581,4.387097 +L 2.322581,4.387097,2.580645,4.129032 +L 2.580645,4.129032,2.580645,3.870968 +L 2.580645,3.870968,2.322581,3.354839 +L 2.322581,3.354839,1.806452,2.83871 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[#017C] 34 +L 0.258065,1.290323,0.774194,2.064516 +L 0.774194,2.064516,1.290323,2.322581 +L 1.290323,2.322581,1.806452,2.322581 +L 1.806452,2.322581,2.322581,2.064516 +L 2.322581,2.064516,2.322581,1.290323 +L 2.322581,1.290323,2.064516,0.774194 +L 2.064516,0.774194,1.290323,0.258065 +L 1.290323,0.258065,0.774194,0 +L 1.806452,2.322581,2.064516,2.064516 +L 2.064516,2.064516,2.064516,1.290323 +L 2.064516,1.290323,1.806452,0.774194 +L 1.806452,0.774194,1.290323,0.258065 +L 0.774194,0,1.290323,-0.258065 +L 1.290323,-0.258065,1.548387,-0.774194 +L 1.548387,-0.774194,1.548387,-1.548387 +L 1.548387,-1.548387,1.290323,-2.322581 +L 1.290323,-2.322581,0.774194,-2.83871 +L 0.774194,-2.83871,0.258065,-3.096774 +L 0.258065,-3.096774,0,-2.83871 +L 0,-2.83871,0,-2.322581 +L 0,-2.322581,0.258065,-1.548387 +L 0.258065,-1.548387,1.032258,-0.774194 +L 1.032258,-0.774194,1.806452,-0.258065 +L 1.806452,-0.258065,2.83871,0.516129 +L 2.83871,0.516129,3.612903,1.290323 +L 0.774194,0,1.032258,-0.258065 +L 1.032258,-0.258065,1.290323,-0.774194 +L 1.290323,-0.774194,1.290323,-1.548387 +L 1.290323,-1.548387,1.032258,-2.322581 +L 1.032258,-2.322581,0.774194,-2.83871 +L 1.806452,3.354839,1.548387,3.096774 +L 1.548387,3.096774,1.806452,2.83871 +L 1.806452,2.83871,2.064516,3.096774 +L 2.064516,3.096774,1.806452,3.354839 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[#0106] 43 +L 0.258065,4.903226,0,4.387097 +L 0,4.387097,0,3.870968 +L 0,3.870968,0.258065,3.354839 +L 0.258065,3.354839,1.032258,3.096774 +L 1.032258,3.096774,1.806452,3.096774 +L 1.806452,3.096774,2.83871,3.354839 +L 2.83871,3.354839,3.354839,3.612903 +L 3.354839,3.612903,3.870968,4.129032 +L 3.870968,4.129032,4.129032,4.645161 +L 4.129032,4.645161,4.129032,5.16129 +L 4.129032,5.16129,3.870968,5.419355 +L 3.870968,5.419355,3.354839,5.419355 +L 3.354839,5.419355,2.580645,5.16129 +L 2.580645,5.16129,1.806452,4.387097 +L 1.806452,4.387097,1.290323,3.612903 +L 1.290323,3.612903,0.774194,2.580645 +L 0.774194,2.580645,0.516129,1.548387 +L 0.516129,1.548387,0.516129,0.774194 +L 0.516129,0.774194,0.774194,0.258065 +L 0.774194,0.258065,1.548387,0 +L 1.548387,0,2.064516,0 +L 2.064516,0,2.83871,0.258065 +L 2.83871,0.258065,3.354839,0.774194 +L 3.354839,0.774194,3.612903,1.290323 +L 3.612903,1.290323,3.612903,1.806452 +L 3.612903,1.806452,3.354839,2.322581 +L 3.354839,2.322581,2.83871,2.322581 +L 2.83871,2.322581,2.322581,2.064516 +L 2.322581,2.064516,2.064516,1.548387 +L 3.354839,5.419355,2.83871,5.16129 +L 2.83871,5.16129,2.064516,4.387097 +L 2.064516,4.387097,1.548387,3.612903 +L 1.548387,3.612903,1.032258,2.580645 +L 1.032258,2.580645,0.774194,1.548387 +L 0.774194,1.548387,0.774194,0.774194 +L 0.774194,0.774194,1.032258,0.258065 +L 1.032258,0.258065,1.548387,0 +L 4.129032,6.967742,3.870968,7.225806 +L 3.870968,7.225806,4.129032,7.483871 +L 4.129032,7.483871,4.387097,7.225806 +L 4.387097,7.225806,4.387097,6.967742 +L 4.387097,6.967742,4.129032,6.451613 +L 4.129032,6.451613,3.612903,5.935484 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[#0118] 47 +L 3.096774,4.645161,2.83871,4.387097 +L 2.83871,4.387097,2.83871,3.870968 +L 2.83871,3.870968,3.096774,3.612903 +L 3.096774,3.612903,3.612903,3.612903 +L 3.612903,3.612903,3.870968,4.129032 +L 3.870968,4.129032,3.870968,4.645161 +L 3.870968,4.645161,3.612903,5.16129 +L 3.612903,5.16129,3.096774,5.419355 +L 3.096774,5.419355,2.322581,5.419355 +L 2.322581,5.419355,1.806452,5.16129 +L 1.806452,5.16129,1.548387,4.903226 +L 1.548387,4.903226,1.290323,4.387097 +L 1.290323,4.387097,1.290323,3.870968 +L 1.290323,3.870968,1.548387,3.354839 +L 1.548387,3.354839,2.064516,3.096774 +L 2.322581,5.419355,1.806452,4.903226 +L 1.806452,4.903226,1.548387,4.387097 +L 1.548387,4.387097,1.548387,3.612903 +L 1.548387,3.612903,2.064516,3.096774 +L 2.064516,3.096774,1.548387,3.096774 +L 1.548387,3.096774,0.774194,2.83871 +L 0.774194,2.83871,0.258065,2.322581 +L 0.258065,2.322581,0,1.806452 +L 0,1.806452,0,1.032258 +L 0,1.032258,0.258065,0.516129 +L 0.258065,0.516129,0.516129,0.258065 +L 0.516129,0.258065,1.032258,0 +L 1.032258,0,1.806452,0 +L 1.806452,0,2.580645,0.258065 +L 2.580645,0.258065,3.096774,0.774194 +L 3.096774,0.774194,3.354839,1.290323 +L 3.354839,1.290323,3.354839,1.806452 +L 3.354839,1.806452,3.096774,2.322581 +L 3.096774,2.322581,2.580645,2.322581 +L 2.580645,2.322581,2.064516,2.064516 +L 2.064516,2.064516,1.806452,1.548387 +L 1.548387,3.096774,1.032258,2.83871 +L 1.032258,2.83871,0.516129,2.322581 +L 0.516129,2.322581,0.258065,1.806452 +L 0.258065,1.806452,0.258065,0.774194 +L 0.258065,0.774194,0.516129,0.258065 +L 1.806452,0,1.290323,-0.516129 +L 1.290323,-0.516129,1.032258,-1.032258 +L 1.032258,-1.032258,1.032258,-1.290323 +L 1.032258,-1.290323,1.290323,-1.548387 +L 1.290323,-1.548387,1.548387,-1.290323 +L 1.548387,-1.290323,1.290323,-1.032258 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[#0143] 36 +L 3.354839,5.419355,3.096774,4.387097 +L 3.096774,4.387097,2.580645,2.83871 +L 2.580645,2.83871,2.064516,1.548387 +L 2.064516,1.548387,1.806452,1.032258 +L 1.806452,1.032258,1.290323,0.258065 +L 1.290323,0.258065,0.774194,0 +L 0.774194,0,0.258065,0 +L 0.258065,0,0,0.258065 +L 0,0.258065,0,0.774194 +L 0,0.774194,0.258065,1.032258 +L 0.258065,1.032258,0.516129,0.774194 +L 0.516129,0.774194,0.258065,0.516129 +L 3.354839,5.419355,3.354839,4.129032 +L 3.354839,4.129032,3.612903,1.290323 +L 3.612903,1.290323,3.870968,0 +L 3.354839,5.419355,3.612903,4.129032 +L 3.612903,4.129032,3.870968,1.290323 +L 3.870968,1.290323,3.870968,0 +L 6.967742,5.16129,6.709677,4.903226 +L 6.709677,4.903226,6.967742,4.645161 +L 6.967742,4.645161,7.225806,4.903226 +L 7.225806,4.903226,7.225806,5.16129 +L 7.225806,5.16129,6.967742,5.419355 +L 6.967742,5.419355,6.451613,5.419355 +L 6.451613,5.419355,5.935484,5.16129 +L 5.935484,5.16129,5.419355,4.387097 +L 5.419355,4.387097,5.16129,3.870968 +L 5.16129,3.870968,4.645161,2.580645 +L 4.645161,2.580645,4.129032,1.032258 +L 4.129032,1.032258,3.870968,0 +L 5.16129,6.967742,4.903226,7.225806 +L 4.903226,7.225806,5.16129,7.483871 +L 5.16129,7.483871,5.419355,7.225806 +L 5.419355,7.225806,5.419355,6.967742 +L 5.419355,6.967742,5.16129,6.451613 +L 5.16129,6.451613,4.645161,5.935484 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[#00D3] 36 +L 2.064516,5.419355,1.548387,5.16129 +L 1.548387,5.16129,1.032258,4.645161 +L 1.032258,4.645161,0.516129,3.870968 +L 0.516129,3.870968,0.258065,3.354839 +L 0.258065,3.354839,0,2.322581 +L 0,2.322581,0,1.290323 +L 0,1.290323,0.258065,0.516129 +L 0.258065,0.516129,0.516129,0.258065 +L 0.516129,0.258065,1.032258,0 +L 1.032258,0,1.548387,0 +L 1.548387,0,2.322581,0.258065 +L 2.322581,0.258065,2.83871,0.774194 +L 2.83871,0.774194,3.354839,1.548387 +L 3.354839,1.548387,3.612903,2.064516 +L 3.612903,2.064516,3.870968,3.096774 +L 3.870968,3.096774,3.870968,4.129032 +L 3.870968,4.129032,3.612903,4.903226 +L 3.612903,4.903226,3.354839,5.16129 +L 3.354839,5.16129,3.096774,5.16129 +L 3.096774,5.16129,2.580645,4.903226 +L 2.580645,4.903226,2.064516,4.387097 +L 2.064516,4.387097,1.548387,3.354839 +L 1.548387,3.354839,1.290323,2.064516 +L 1.290323,2.064516,1.290323,1.290323 +L 1.548387,5.16129,1.032258,4.387097 +L 1.032258,4.387097,0.516129,3.354839 +L 0.516129,3.354839,0.258065,2.322581 +L 0.258065,2.322581,0.258065,1.290323 +L 0.258065,1.290323,0.516129,0.516129 +L 0.516129,0.516129,1.032258,0 +L 3.354839,6.967742,3.096774,7.225806 +L 3.096774,7.225806,3.354839,7.483871 +L 3.354839,7.483871,3.612903,7.225806 +L 3.612903,7.225806,3.612903,6.967742 +L 3.612903,6.967742,3.354839,6.451613 +L 3.354839,6.451613,2.83871,5.935484 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[#0107] 24 +L 1.806452,2.064516,1.548387,1.806452 +L 1.548387,1.806452,1.806452,1.806452 +L 1.806452,1.806452,1.806452,2.064516 +L 1.806452,2.064516,1.548387,2.322581 +L 1.548387,2.322581,1.032258,2.322581 +L 1.032258,2.322581,0.516129,2.064516 +L 0.516129,2.064516,0.258065,1.806452 +L 0.258065,1.806452,0,1.290323 +L 0,1.290323,0,0.774194 +L 0,0.774194,0.258065,0.258065 +L 0.258065,0.258065,0.774194,0 +L 0.774194,0,1.548387,0 +L 1.548387,0,2.322581,0.516129 +L 2.322581,0.516129,2.83871,1.290323 +L 1.032258,2.322581,0.516129,1.806452 +L 0.516129,1.806452,0.258065,1.290323 +L 0.258065,1.290323,0.258065,0.516129 +L 0.258065,0.516129,0.774194,0 +L 1.806452,3.870968,1.548387,4.129032 +L 1.548387,4.129032,1.806452,4.387097 +L 1.806452,4.387097,2.064516,4.129032 +L 2.064516,4.129032,2.064516,3.870968 +L 2.064516,3.870968,1.806452,3.354839 +L 1.806452,3.354839,1.290323,2.83871 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[#0119] 25 +L 0.516129,0.516129,1.032258,0.774194 +L 1.032258,0.774194,1.290323,1.032258 +L 1.290323,1.032258,1.548387,1.548387 +L 1.548387,1.548387,1.548387,2.064516 +L 1.548387,2.064516,1.290323,2.322581 +L 1.290323,2.322581,1.032258,2.322581 +L 1.032258,2.322581,0.516129,2.064516 +L 0.516129,2.064516,0.258065,1.806452 +L 0.258065,1.806452,0,1.290323 +L 0,1.290323,0,0.774194 +L 0,0.774194,0.258065,0.258065 +L 0.258065,0.258065,0.774194,0 +L 0.774194,0,1.548387,0 +L 1.548387,0,2.322581,0.516129 +L 2.322581,0.516129,2.83871,1.290323 +L 1.032258,2.322581,0.516129,1.806452 +L 0.516129,1.806452,0.258065,1.290323 +L 0.258065,1.290323,0.258065,0.516129 +L 0.258065,0.516129,0.774194,0 +L 1.548387,0,1.032258,-0.516129 +L 1.032258,-0.516129,0.774194,-1.032258 +L 0.774194,-1.032258,0.774194,-1.290323 +L 0.774194,-1.290323,1.032258,-1.548387 +L 1.032258,-1.548387,1.290323,-1.290323 +L 1.290323,-1.290323,1.032258,-1.032258 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[#0144] 30 +L 0,1.290323,0.516129,2.064516 +L 0.516129,2.064516,1.032258,2.322581 +L 1.032258,2.322581,1.548387,2.064516 +L 1.548387,2.064516,1.548387,1.548387 +L 1.548387,1.548387,1.032258,0 +L 1.032258,2.322581,1.290323,2.064516 +L 1.290323,2.064516,1.290323,1.548387 +L 1.290323,1.548387,0.774194,0 +L 1.548387,1.548387,2.064516,2.064516 +L 2.064516,2.064516,2.580645,2.322581 +L 2.580645,2.322581,2.83871,2.322581 +L 2.83871,2.322581,3.354839,2.064516 +L 3.354839,2.064516,3.354839,1.548387 +L 3.354839,1.548387,3.096774,0.774194 +L 3.096774,0.774194,3.096774,0.258065 +L 3.096774,0.258065,3.354839,0 +L 2.83871,2.322581,3.096774,2.064516 +L 3.096774,2.064516,3.096774,1.548387 +L 3.096774,1.548387,2.83871,0.774194 +L 2.83871,0.774194,2.83871,0.258065 +L 2.83871,0.258065,3.354839,0 +L 3.354839,0,3.870968,0.258065 +L 3.870968,0.258065,4.129032,0.516129 +L 4.129032,0.516129,4.645161,1.290323 +L 3.354839,3.870968,3.096774,4.129032 +L 3.096774,4.129032,3.354839,4.387097 +L 3.354839,4.387097,3.612903,4.129032 +L 3.612903,4.129032,3.612903,3.870968 +L 3.612903,3.870968,3.354839,3.354839 +L 3.354839,3.354839,2.83871,2.83871 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[#00F3] 31 +L 1.548387,2.322581,1.032258,2.322581 +L 1.032258,2.322581,0.516129,2.064516 +L 0.516129,2.064516,0.258065,1.806452 +L 0.258065,1.806452,0,1.290323 +L 0,1.290323,0,0.774194 +L 0,0.774194,0.258065,0.258065 +L 0.258065,0.258065,0.774194,0 +L 0.774194,0,1.290323,0 +L 1.290323,0,1.806452,0.258065 +L 1.806452,0.258065,2.064516,0.516129 +L 2.064516,0.516129,2.322581,1.032258 +L 2.322581,1.032258,2.322581,1.548387 +L 2.322581,1.548387,2.064516,2.064516 +L 2.064516,2.064516,1.548387,2.322581 +L 1.548387,2.322581,1.290323,2.064516 +L 1.290323,2.064516,1.290323,1.548387 +L 1.290323,1.548387,1.548387,1.032258 +L 1.548387,1.032258,2.064516,0.774194 +L 2.064516,0.774194,2.580645,0.774194 +L 2.580645,0.774194,3.096774,1.032258 +L 3.096774,1.032258,3.354839,1.290323 +L 1.032258,2.322581,0.516129,1.806452 +L 0.516129,1.806452,0.258065,1.290323 +L 0.258065,1.290323,0.258065,0.516129 +L 0.258065,0.516129,0.774194,0 +L 2.064516,3.870968,1.806452,4.129032 +L 1.806452,4.129032,2.064516,4.387097 +L 2.064516,4.387097,2.322581,4.129032 +L 2.322581,4.129032,2.322581,3.870968 +L 2.322581,3.870968,2.064516,3.354839 +L 2.064516,3.354839,1.548387,2.83871 + +#EOF diff --git a/pycam/share/fonts/scripts.cxf b/pycam/share/fonts/scripts.cxf new file mode 100644 index 00000000..325fe83d --- /dev/null +++ b/pycam/share/fonts/scripts.cxf @@ -0,0 +1,3207 @@ +# Format: QCad II Font +# Creator: Adam Radlowski's "dodajf" program - GRASS font translator +# Version: 1.0.0 +# Name: Roman Simplex +# LetterSpacing: 3.0 +# WordSpacing: 6.75 +# LineSpacingFactor: 1.0 +# Author: Hershey fonts +# Author: Adam Radlowski (Polish) + +[!] 9 +L 1.548387,5.419355,1.290323,5.16129 +L 1.290323,5.16129,0.774194,2.064516 +L 1.548387,5.16129,0.774194,2.064516 +L 1.548387,5.419355,1.806452,5.16129 +L 1.806452,5.16129,0.774194,2.064516 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +["] 4 +L 0.516129,5.419355,0,3.612903 +L 0.774194,5.419355,0,3.612903 +L 2.83871,5.419355,2.322581,3.612903 +L 3.096774,5.419355,2.322581,3.612903 + +[#] 4 +L 2.064516,6.451613,0.258065,-1.806452 +L 3.612903,6.451613,1.806452,-1.806452 +L 0.258065,3.096774,3.870968,3.096774 +L 0,1.548387,3.612903,1.548387 + +[$] 33 +L 2.580645,6.451613,0.516129,-1.032258 +L 3.870968,6.451613,1.806452,-1.032258 +L 4.129032,4.387097,3.870968,4.129032 +L 3.870968,4.129032,4.129032,3.870968 +L 4.129032,3.870968,4.387097,4.129032 +L 4.387097,4.129032,4.387097,4.387097 +L 4.387097,4.387097,4.129032,4.903226 +L 4.129032,4.903226,3.870968,5.16129 +L 3.870968,5.16129,3.096774,5.419355 +L 3.096774,5.419355,2.064516,5.419355 +L 2.064516,5.419355,1.290323,5.16129 +L 1.290323,5.16129,0.774194,4.645161 +L 0.774194,4.645161,0.774194,4.129032 +L 0.774194,4.129032,1.032258,3.612903 +L 1.032258,3.612903,1.290323,3.354839 +L 1.290323,3.354839,3.096774,2.322581 +L 3.096774,2.322581,3.612903,1.806452 +L 0.774194,4.129032,1.290323,3.612903 +L 1.290323,3.612903,3.096774,2.580645 +L 3.096774,2.580645,3.354839,2.322581 +L 3.354839,2.322581,3.612903,1.806452 +L 3.612903,1.806452,3.612903,1.032258 +L 3.612903,1.032258,3.354839,0.516129 +L 3.354839,0.516129,3.096774,0.258065 +L 3.096774,0.258065,2.322581,0 +L 2.322581,0,1.290323,0 +L 1.290323,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 +L 0.258065,0.516129,0,1.032258 +L 0,1.032258,0,1.290323 +L 0,1.290323,0.258065,1.548387 +L 0.258065,1.548387,0.516129,1.290323 +L 0.516129,1.290323,0.258065,1.032258 + +[%] 26 +L 4.645161,5.419355,0,0 +L 1.290323,5.419355,1.806452,4.903226 +L 1.806452,4.903226,1.806452,4.387097 +L 1.806452,4.387097,1.548387,3.870968 +L 1.548387,3.870968,1.032258,3.612903 +L 1.032258,3.612903,0.516129,3.612903 +L 0.516129,3.612903,0,4.129032 +L 0,4.129032,0,4.645161 +L 0,4.645161,0.258065,5.16129 +L 0.258065,5.16129,0.774194,5.419355 +L 0.774194,5.419355,1.290323,5.419355 +L 1.290323,5.419355,1.806452,5.16129 +L 1.806452,5.16129,2.580645,4.903226 +L 2.580645,4.903226,3.354839,4.903226 +L 3.354839,4.903226,4.129032,5.16129 +L 4.129032,5.16129,4.645161,5.419355 +L 3.612903,1.806452,3.096774,1.548387 +L 3.096774,1.548387,2.83871,1.032258 +L 2.83871,1.032258,2.83871,0.516129 +L 2.83871,0.516129,3.354839,0 +L 3.354839,0,3.870968,0 +L 3.870968,0,4.387097,0.258065 +L 4.387097,0.258065,4.645161,0.774194 +L 4.645161,0.774194,4.645161,1.290323 +L 4.645161,1.290323,4.129032,1.806452 +L 4.129032,1.806452,3.612903,1.806452 + +[&] 49 +L 5.419355,3.354839,5.16129,3.096774 +L 5.16129,3.096774,5.419355,2.83871 +L 5.419355,2.83871,5.677419,3.096774 +L 5.677419,3.096774,5.677419,3.354839 +L 5.677419,3.354839,5.419355,3.612903 +L 5.419355,3.612903,5.16129,3.612903 +L 5.16129,3.612903,4.645161,3.354839 +L 4.645161,3.354839,4.129032,2.83871 +L 4.129032,2.83871,2.83871,0.774194 +L 2.83871,0.774194,2.322581,0.258065 +L 2.322581,0.258065,1.806452,0 +L 1.806452,0,1.032258,0 +L 1.032258,0,0.258065,0.258065 +L 0.258065,0.258065,0,0.774194 +L 0,0.774194,0,1.290323 +L 0,1.290323,0.258065,1.806452 +L 0.258065,1.806452,0.516129,2.064516 +L 0.516129,2.064516,1.032258,2.322581 +L 1.032258,2.322581,2.322581,2.83871 +L 2.322581,2.83871,2.83871,3.096774 +L 2.83871,3.096774,3.354839,3.612903 +L 3.354839,3.612903,3.612903,4.129032 +L 3.612903,4.129032,3.612903,4.645161 +L 3.612903,4.645161,3.354839,5.16129 +L 3.354839,5.16129,2.83871,5.419355 +L 2.83871,5.419355,2.322581,5.16129 +L 2.322581,5.16129,2.064516,4.645161 +L 2.064516,4.645161,2.064516,3.870968 +L 2.064516,3.870968,2.322581,2.322581 +L 2.322581,2.322581,2.580645,1.548387 +L 2.580645,1.548387,3.096774,0.774194 +L 3.096774,0.774194,3.612903,0.258065 +L 3.612903,0.258065,4.129032,0 +L 4.129032,0,4.645161,0 +L 4.645161,0,4.903226,0.516129 +L 4.903226,0.516129,4.903226,0.774194 +L 1.032258,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.774194 +L 0.258065,0.774194,0.258065,1.290323 +L 0.258065,1.290323,0.516129,1.806452 +L 0.516129,1.806452,0.774194,2.064516 +L 0.774194,2.064516,2.322581,2.83871 +L 2.064516,3.870968,2.322581,2.580645 +L 2.322581,2.580645,2.580645,1.806452 +L 2.580645,1.806452,3.096774,1.032258 +L 3.096774,1.032258,3.612903,0.516129 +L 3.612903,0.516129,4.129032,0.258065 +L 4.129032,0.258065,4.645161,0.258065 +L 4.645161,0.258065,4.903226,0.516129 + +['] 6 +L 0.516129,4.903226,0.258065,5.16129 +L 0.258065,5.16129,0.516129,5.419355 +L 0.516129,5.419355,0.774194,5.16129 +L 0.774194,5.16129,0.774194,4.903226 +L 0.774194,4.903226,0.516129,4.387097 +L 0.516129,4.387097,0,3.870968 + +[(] 16 +L 3.096774,6.451613,2.064516,5.677419 +L 2.064516,5.677419,1.290323,4.903226 +L 1.290323,4.903226,0.774194,4.129032 +L 0.774194,4.129032,0.258065,3.096774 +L 0.258065,3.096774,0,1.806452 +L 0,1.806452,0,0.774194 +L 0,0.774194,0.258065,-0.516129 +L 0.258065,-0.516129,0.516129,-1.290323 +L 0.516129,-1.290323,0.774194,-1.806452 +L 2.064516,5.677419,1.290323,4.645161 +L 1.290323,4.645161,0.774194,3.612903 +L 0.774194,3.612903,0.516129,2.83871 +L 0.516129,2.83871,0.258065,1.548387 +L 0.258065,1.548387,0.258065,0.258065 +L 0.258065,0.258065,0.516129,-1.032258 +L 0.516129,-1.032258,0.774194,-1.806452 + +[)] 16 +L 2.322581,6.451613,2.580645,5.935484 +L 2.580645,5.935484,2.83871,5.16129 +L 2.83871,5.16129,3.096774,3.870968 +L 3.096774,3.870968,3.096774,2.83871 +L 3.096774,2.83871,2.83871,1.548387 +L 2.83871,1.548387,2.322581,0.516129 +L 2.322581,0.516129,1.806452,-0.258065 +L 1.806452,-0.258065,1.032258,-1.032258 +L 1.032258,-1.032258,0,-1.806452 +L 2.322581,6.451613,2.580645,5.677419 +L 2.580645,5.677419,2.83871,4.387097 +L 2.83871,4.387097,2.83871,3.096774 +L 2.83871,3.096774,2.580645,1.806452 +L 2.580645,1.806452,2.322581,1.032258 +L 2.322581,1.032258,1.806452,0 +L 1.806452,0,1.032258,-1.032258 + +[*] 3 +L 1.290323,5.419355,1.290323,2.322581 +L 0,4.645161,2.580645,3.096774 +L 2.580645,4.645161,0,3.096774 + +[+] 2 +L 2.322581,4.645161,2.322581,0 +L 0,2.322581,4.645161,2.322581 + +[,] 6 +L 0.516129,0,0.258065,0.258065 +L 0.258065,0.258065,0.516129,0.516129 +L 0.516129,0.516129,0.774194,0.258065 +L 0.774194,0.258065,0.774194,0 +L 0.774194,0,0.516129,-0.516129 +L 0.516129,-0.516129,0,-1.032258 + +[-] 1 +L 0,2.322581,4.645161,2.322581 + +[.] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[/] 1 +L 1.548387,6.451613,0,-1.806452 + +[0] 36 +L 2.322581,5.419355,1.548387,5.16129 +L 1.548387,5.16129,1.032258,4.645161 +L 1.032258,4.645161,0.516129,3.870968 +L 0.516129,3.870968,0.258065,3.096774 +L 0.258065,3.096774,0,2.064516 +L 0,2.064516,0,1.290323 +L 0,1.290323,0.258065,0.516129 +L 0.258065,0.516129,0.516129,0.258065 +L 0.516129,0.258065,1.032258,0 +L 1.032258,0,1.548387,0 +L 1.548387,0,2.322581,0.258065 +L 2.322581,0.258065,2.83871,0.774194 +L 2.83871,0.774194,3.354839,1.548387 +L 3.354839,1.548387,3.612903,2.322581 +L 3.612903,2.322581,3.870968,3.354839 +L 3.870968,3.354839,3.870968,4.129032 +L 3.870968,4.129032,3.612903,4.903226 +L 3.612903,4.903226,3.354839,5.16129 +L 3.354839,5.16129,2.83871,5.419355 +L 2.83871,5.419355,2.322581,5.419355 +L 2.322581,5.419355,1.806452,5.16129 +L 1.806452,5.16129,1.290323,4.645161 +L 1.290323,4.645161,0.774194,3.870968 +L 0.774194,3.870968,0.516129,3.096774 +L 0.516129,3.096774,0.258065,2.064516 +L 0.258065,2.064516,0.258065,1.290323 +L 0.258065,1.290323,0.516129,0.516129 +L 0.516129,0.516129,1.032258,0 +L 1.548387,0,2.064516,0.258065 +L 2.064516,0.258065,2.580645,0.774194 +L 2.580645,0.774194,3.096774,1.548387 +L 3.096774,1.548387,3.354839,2.322581 +L 3.354839,2.322581,3.612903,3.354839 +L 3.612903,3.354839,3.612903,4.129032 +L 3.612903,4.129032,3.354839,4.903226 +L 3.354839,4.903226,2.83871,5.419355 + +[1] 7 +L 1.548387,4.387097,0.258065,0 +L 2.064516,5.419355,0.516129,0 +L 2.064516,5.419355,1.290323,4.645161 +L 1.290323,4.645161,0.516129,4.129032 +L 0.516129,4.129032,0,3.870968 +L 1.806452,4.645161,0.774194,4.129032 +L 0.774194,4.129032,0,3.870968 + +[2] 34 +L 1.548387,4.387097,1.806452,4.129032 +L 1.806452,4.129032,1.548387,3.870968 +L 1.548387,3.870968,1.290323,4.129032 +L 1.290323,4.129032,1.290323,4.387097 +L 1.290323,4.387097,1.548387,4.903226 +L 1.548387,4.903226,1.806452,5.16129 +L 1.806452,5.16129,2.580645,5.419355 +L 2.580645,5.419355,3.354839,5.419355 +L 3.354839,5.419355,4.129032,5.16129 +L 4.129032,5.16129,4.387097,4.645161 +L 4.387097,4.645161,4.387097,4.129032 +L 4.387097,4.129032,4.129032,3.612903 +L 4.129032,3.612903,3.612903,3.096774 +L 3.612903,3.096774,2.83871,2.580645 +L 2.83871,2.580645,1.806452,2.064516 +L 1.806452,2.064516,1.032258,1.548387 +L 1.032258,1.548387,0.516129,1.032258 +L 0.516129,1.032258,0,0 +L 3.354839,5.419355,3.870968,5.16129 +L 3.870968,5.16129,4.129032,4.645161 +L 4.129032,4.645161,4.129032,4.129032 +L 4.129032,4.129032,3.870968,3.612903 +L 3.870968,3.612903,3.354839,3.096774 +L 3.354839,3.096774,1.806452,2.064516 +L 0.258065,0.516129,0.516129,0.774194 +L 0.516129,0.774194,1.032258,0.774194 +L 1.032258,0.774194,2.322581,0.258065 +L 2.322581,0.258065,3.096774,0.258065 +L 3.096774,0.258065,3.612903,0.516129 +L 3.612903,0.516129,3.870968,1.032258 +L 1.032258,0.774194,2.322581,0 +L 2.322581,0,3.096774,0 +L 3.096774,0,3.612903,0.258065 +L 3.612903,0.258065,3.870968,1.032258 + +[3] 42 +L 1.290323,4.387097,1.548387,4.129032 +L 1.548387,4.129032,1.290323,3.870968 +L 1.290323,3.870968,1.032258,4.129032 +L 1.032258,4.129032,1.032258,4.387097 +L 1.032258,4.387097,1.290323,4.903226 +L 1.290323,4.903226,1.548387,5.16129 +L 1.548387,5.16129,2.322581,5.419355 +L 2.322581,5.419355,3.096774,5.419355 +L 3.096774,5.419355,3.870968,5.16129 +L 3.870968,5.16129,4.129032,4.645161 +L 4.129032,4.645161,4.129032,4.129032 +L 4.129032,4.129032,3.870968,3.612903 +L 3.870968,3.612903,3.096774,3.096774 +L 3.096774,3.096774,2.322581,2.83871 +L 3.096774,5.419355,3.612903,5.16129 +L 3.612903,5.16129,3.870968,4.645161 +L 3.870968,4.645161,3.870968,4.129032 +L 3.870968,4.129032,3.612903,3.612903 +L 3.612903,3.612903,3.096774,3.096774 +L 1.806452,2.83871,2.322581,2.83871 +L 2.322581,2.83871,3.096774,2.580645 +L 3.096774,2.580645,3.354839,2.322581 +L 3.354839,2.322581,3.612903,1.806452 +L 3.612903,1.806452,3.612903,1.032258 +L 3.612903,1.032258,3.354839,0.516129 +L 3.354839,0.516129,3.096774,0.258065 +L 3.096774,0.258065,2.322581,0 +L 2.322581,0,1.290323,0 +L 1.290323,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 +L 0.258065,0.516129,0,1.032258 +L 0,1.032258,0,1.290323 +L 0,1.290323,0.258065,1.548387 +L 0.258065,1.548387,0.516129,1.290323 +L 0.516129,1.290323,0.258065,1.032258 +L 2.322581,2.83871,2.83871,2.580645 +L 2.83871,2.580645,3.096774,2.322581 +L 3.096774,2.322581,3.354839,1.806452 +L 3.354839,1.806452,3.354839,1.032258 +L 3.354839,1.032258,3.096774,0.516129 +L 3.096774,0.516129,2.83871,0.258065 +L 2.83871,0.258065,2.322581,0 + +[4] 4 +L 3.612903,5.16129,2.064516,0 +L 3.870968,5.419355,2.322581,0 +L 3.870968,5.419355,0,1.548387 +L 0,1.548387,4.129032,1.548387 + +[5] 29 +L 1.806452,5.419355,0.516129,2.83871 +L 1.806452,5.419355,4.387097,5.419355 +L 1.806452,5.16129,3.096774,5.16129 +L 3.096774,5.16129,4.387097,5.419355 +L 0.516129,2.83871,0.774194,3.096774 +L 0.774194,3.096774,1.548387,3.354839 +L 1.548387,3.354839,2.322581,3.354839 +L 2.322581,3.354839,3.096774,3.096774 +L 3.096774,3.096774,3.354839,2.83871 +L 3.354839,2.83871,3.612903,2.322581 +L 3.612903,2.322581,3.612903,1.548387 +L 3.612903,1.548387,3.354839,0.774194 +L 3.354839,0.774194,2.83871,0.258065 +L 2.83871,0.258065,2.064516,0 +L 2.064516,0,1.290323,0 +L 1.290323,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 +L 0.258065,0.516129,0,1.032258 +L 0,1.032258,0,1.290323 +L 0,1.290323,0.258065,1.548387 +L 0.258065,1.548387,0.516129,1.290323 +L 0.516129,1.290323,0.258065,1.032258 +L 2.322581,3.354839,2.83871,3.096774 +L 2.83871,3.096774,3.096774,2.83871 +L 3.096774,2.83871,3.354839,2.322581 +L 3.354839,2.322581,3.354839,1.548387 +L 3.354839,1.548387,3.096774,0.774194 +L 3.096774,0.774194,2.580645,0.258065 +L 2.580645,0.258065,2.064516,0 + +[6] 40 +L 3.612903,4.645161,3.354839,4.387097 +L 3.354839,4.387097,3.612903,4.129032 +L 3.612903,4.129032,3.870968,4.387097 +L 3.870968,4.387097,3.870968,4.645161 +L 3.870968,4.645161,3.612903,5.16129 +L 3.612903,5.16129,3.096774,5.419355 +L 3.096774,5.419355,2.322581,5.419355 +L 2.322581,5.419355,1.548387,5.16129 +L 1.548387,5.16129,1.032258,4.645161 +L 1.032258,4.645161,0.516129,3.870968 +L 0.516129,3.870968,0.258065,3.096774 +L 0.258065,3.096774,0,2.064516 +L 0,2.064516,0,1.032258 +L 0,1.032258,0.258065,0.516129 +L 0.258065,0.516129,0.516129,0.258065 +L 0.516129,0.258065,1.032258,0 +L 1.032258,0,1.806452,0 +L 1.806452,0,2.580645,0.258065 +L 2.580645,0.258065,3.096774,0.774194 +L 3.096774,0.774194,3.354839,1.290323 +L 3.354839,1.290323,3.354839,2.064516 +L 3.354839,2.064516,3.096774,2.580645 +L 3.096774,2.580645,2.83871,2.83871 +L 2.83871,2.83871,2.322581,3.096774 +L 2.322581,3.096774,1.548387,3.096774 +L 1.548387,3.096774,1.032258,2.83871 +L 1.032258,2.83871,0.516129,2.322581 +L 0.516129,2.322581,0.258065,1.806452 +L 2.322581,5.419355,1.806452,5.16129 +L 1.806452,5.16129,1.290323,4.645161 +L 1.290323,4.645161,0.774194,3.870968 +L 0.774194,3.870968,0.516129,3.096774 +L 0.516129,3.096774,0.258065,2.064516 +L 0.258065,2.064516,0.258065,0.774194 +L 0.258065,0.774194,0.516129,0.258065 +L 1.806452,0,2.322581,0.258065 +L 2.322581,0.258065,2.83871,0.774194 +L 2.83871,0.774194,3.096774,1.290323 +L 3.096774,1.290323,3.096774,2.322581 +L 3.096774,2.322581,2.83871,2.83871 + +[7] 20 +L 0.516129,5.419355,0,3.870968 +L 3.870968,5.419355,3.612903,4.645161 +L 3.612903,4.645161,3.096774,3.870968 +L 3.096774,3.870968,1.806452,2.322581 +L 1.806452,2.322581,1.290323,1.548387 +L 1.290323,1.548387,1.032258,1.032258 +L 1.032258,1.032258,0.774194,0 +L 3.096774,3.870968,1.548387,2.322581 +L 1.548387,2.322581,1.032258,1.548387 +L 1.032258,1.548387,0.774194,1.032258 +L 0.774194,1.032258,0.516129,0 +L 0.258065,4.645161,1.032258,5.419355 +L 1.032258,5.419355,1.548387,5.419355 +L 1.548387,5.419355,2.83871,4.645161 +L 0.516129,4.903226,1.032258,5.16129 +L 1.032258,5.16129,1.548387,5.16129 +L 1.548387,5.16129,2.83871,4.645161 +L 2.83871,4.645161,3.354839,4.645161 +L 3.354839,4.645161,3.612903,4.903226 +L 3.612903,4.903226,3.870968,5.419355 + +[8] 51 +L 2.322581,5.419355,1.548387,5.16129 +L 1.548387,5.16129,1.290323,4.903226 +L 1.290323,4.903226,1.032258,4.387097 +L 1.032258,4.387097,1.032258,3.612903 +L 1.032258,3.612903,1.290323,3.096774 +L 1.290323,3.096774,1.806452,2.83871 +L 1.806452,2.83871,2.580645,2.83871 +L 2.580645,2.83871,3.612903,3.096774 +L 3.612903,3.096774,3.870968,3.354839 +L 3.870968,3.354839,4.129032,3.870968 +L 4.129032,3.870968,4.129032,4.645161 +L 4.129032,4.645161,3.870968,5.16129 +L 3.870968,5.16129,3.096774,5.419355 +L 3.096774,5.419355,2.322581,5.419355 +L 2.322581,5.419355,1.806452,5.16129 +L 1.806452,5.16129,1.548387,4.903226 +L 1.548387,4.903226,1.290323,4.387097 +L 1.290323,4.387097,1.290323,3.612903 +L 1.290323,3.612903,1.548387,3.096774 +L 1.548387,3.096774,1.806452,2.83871 +L 2.580645,2.83871,3.354839,3.096774 +L 3.354839,3.096774,3.612903,3.354839 +L 3.612903,3.354839,3.870968,3.870968 +L 3.870968,3.870968,3.870968,4.645161 +L 3.870968,4.645161,3.612903,5.16129 +L 3.612903,5.16129,3.096774,5.419355 +L 1.806452,2.83871,0.774194,2.580645 +L 0.774194,2.580645,0.258065,2.064516 +L 0.258065,2.064516,0,1.548387 +L 0,1.548387,0,0.774194 +L 0,0.774194,0.258065,0.258065 +L 0.258065,0.258065,1.032258,0 +L 1.032258,0,2.064516,0 +L 2.064516,0,3.096774,0.258065 +L 3.096774,0.258065,3.354839,0.516129 +L 3.354839,0.516129,3.612903,1.032258 +L 3.612903,1.032258,3.612903,1.806452 +L 3.612903,1.806452,3.354839,2.322581 +L 3.354839,2.322581,3.096774,2.580645 +L 3.096774,2.580645,2.580645,2.83871 +L 1.806452,2.83871,1.032258,2.580645 +L 1.032258,2.580645,0.516129,2.064516 +L 0.516129,2.064516,0.258065,1.548387 +L 0.258065,1.548387,0.258065,0.774194 +L 0.258065,0.774194,0.516129,0.258065 +L 0.516129,0.258065,1.032258,0 +L 2.064516,0,2.83871,0.258065 +L 2.83871,0.258065,3.096774,0.516129 +L 3.096774,0.516129,3.354839,1.032258 +L 3.354839,1.032258,3.354839,2.064516 +L 3.354839,2.064516,3.096774,2.580645 + +[9] 40 +L 3.612903,3.612903,3.354839,3.096774 +L 3.354839,3.096774,2.83871,2.580645 +L 2.83871,2.580645,2.322581,2.322581 +L 2.322581,2.322581,1.548387,2.322581 +L 1.548387,2.322581,1.032258,2.580645 +L 1.032258,2.580645,0.774194,2.83871 +L 0.774194,2.83871,0.516129,3.354839 +L 0.516129,3.354839,0.516129,4.129032 +L 0.516129,4.129032,0.774194,4.645161 +L 0.774194,4.645161,1.290323,5.16129 +L 1.290323,5.16129,2.064516,5.419355 +L 2.064516,5.419355,2.83871,5.419355 +L 2.83871,5.419355,3.354839,5.16129 +L 3.354839,5.16129,3.612903,4.903226 +L 3.612903,4.903226,3.870968,4.387097 +L 3.870968,4.387097,3.870968,3.354839 +L 3.870968,3.354839,3.612903,2.322581 +L 3.612903,2.322581,3.354839,1.548387 +L 3.354839,1.548387,2.83871,0.774194 +L 2.83871,0.774194,2.322581,0.258065 +L 2.322581,0.258065,1.548387,0 +L 1.548387,0,0.774194,0 +L 0.774194,0,0.258065,0.258065 +L 0.258065,0.258065,0,0.774194 +L 0,0.774194,0,1.032258 +L 0,1.032258,0.258065,1.290323 +L 0.258065,1.290323,0.516129,1.032258 +L 0.516129,1.032258,0.258065,0.774194 +L 1.032258,2.580645,0.774194,3.096774 +L 0.774194,3.096774,0.774194,4.129032 +L 0.774194,4.129032,1.032258,4.645161 +L 1.032258,4.645161,1.548387,5.16129 +L 1.548387,5.16129,2.064516,5.419355 +L 3.354839,5.16129,3.612903,4.645161 +L 3.612903,4.645161,3.612903,3.354839 +L 3.612903,3.354839,3.354839,2.322581 +L 3.354839,2.322581,3.096774,1.548387 +L 3.096774,1.548387,2.580645,0.774194 +L 2.580645,0.774194,2.064516,0.258065 +L 2.064516,0.258065,1.548387,0 + +[:] 7 +L 1.032258,3.612903,0.774194,3.354839 +L 0.774194,3.354839,1.032258,3.096774 +L 1.032258,3.096774,1.290323,3.354839 +L 1.290323,3.354839,1.032258,3.612903 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 + +[;] 10 +L 1.290323,3.612903,1.032258,3.354839 +L 1.032258,3.354839,1.290323,3.096774 +L 1.290323,3.096774,1.548387,3.354839 +L 1.548387,3.354839,1.290323,3.612903 +L 0.516129,0,0.258065,0.258065 +L 0.258065,0.258065,0.516129,0.516129 +L 0.516129,0.516129,0.774194,0.258065 +L 0.774194,0.258065,0.774194,0 +L 0.774194,0,0.516129,-0.516129 +L 0.516129,-0.516129,0,-1.032258 + +[<] 2 +L 4.129032,4.645161,0,2.322581 +L 0,2.322581,4.129032,0 + +[=] 2 +L 0,3.096774,4.645161,3.096774 +L 0,1.548387,4.645161,1.548387 + +[>] 2 +L 0,4.645161,4.129032,2.322581 +L 4.129032,2.322581,0,0 + +[?] 28 +L 0.258065,4.387097,0.516129,4.129032 +L 0.516129,4.129032,0.258065,3.870968 +L 0.258065,3.870968,0,4.129032 +L 0,4.129032,0,4.387097 +L 0,4.387097,0.258065,4.903226 +L 0.258065,4.903226,0.516129,5.16129 +L 0.516129,5.16129,1.290323,5.419355 +L 1.290323,5.419355,2.322581,5.419355 +L 2.322581,5.419355,3.096774,5.16129 +L 3.096774,5.16129,3.354839,4.645161 +L 3.354839,4.645161,3.354839,4.129032 +L 3.354839,4.129032,3.096774,3.612903 +L 3.096774,3.612903,2.83871,3.354839 +L 2.83871,3.354839,1.290323,2.83871 +L 1.290323,2.83871,0.774194,2.580645 +L 0.774194,2.580645,0.774194,2.064516 +L 0.774194,2.064516,1.032258,1.806452 +L 1.032258,1.806452,1.548387,1.806452 +L 2.322581,5.419355,2.83871,5.16129 +L 2.83871,5.16129,3.096774,4.645161 +L 3.096774,4.645161,3.096774,4.129032 +L 3.096774,4.129032,2.83871,3.612903 +L 2.83871,3.612903,2.580645,3.354839 +L 2.580645,3.354839,2.064516,3.096774 +L 0.516129,0.516129,0.258065,0.258065 +L 0.258065,0.258065,0.516129,0 +L 0.516129,0,0.774194,0.258065 +L 0.774194,0.258065,0.516129,0.516129 + +[@] 48 +L 3.870968,3.354839,3.612903,3.870968 +L 3.612903,3.870968,3.096774,4.129032 +L 3.096774,4.129032,2.322581,4.129032 +L 2.322581,4.129032,1.806452,3.870968 +L 1.806452,3.870968,1.548387,3.612903 +L 1.548387,3.612903,1.290323,2.83871 +L 1.290323,2.83871,1.290323,2.064516 +L 1.290323,2.064516,1.548387,1.548387 +L 1.548387,1.548387,2.064516,1.290323 +L 2.064516,1.290323,2.83871,1.290323 +L 2.83871,1.290323,3.354839,1.548387 +L 3.354839,1.548387,3.612903,2.064516 +L 2.322581,4.129032,1.806452,3.612903 +L 1.806452,3.612903,1.548387,2.83871 +L 1.548387,2.83871,1.548387,2.064516 +L 1.548387,2.064516,1.806452,1.548387 +L 1.806452,1.548387,2.064516,1.290323 +L 3.870968,4.129032,3.612903,2.064516 +L 3.612903,2.064516,3.612903,1.548387 +L 3.612903,1.548387,4.129032,1.290323 +L 4.129032,1.290323,4.645161,1.290323 +L 4.645161,1.290323,5.16129,1.806452 +L 5.16129,1.806452,5.419355,2.580645 +L 5.419355,2.580645,5.419355,3.096774 +L 5.419355,3.096774,5.16129,3.870968 +L 5.16129,3.870968,4.903226,4.387097 +L 4.903226,4.387097,4.387097,4.903226 +L 4.387097,4.903226,3.870968,5.16129 +L 3.870968,5.16129,3.096774,5.419355 +L 3.096774,5.419355,2.322581,5.419355 +L 2.322581,5.419355,1.548387,5.16129 +L 1.548387,5.16129,1.032258,4.903226 +L 1.032258,4.903226,0.516129,4.387097 +L 0.516129,4.387097,0.258065,3.870968 +L 0.258065,3.870968,0,3.096774 +L 0,3.096774,0,2.322581 +L 0,2.322581,0.258065,1.548387 +L 0.258065,1.548387,0.516129,1.032258 +L 0.516129,1.032258,1.032258,0.516129 +L 1.032258,0.516129,1.548387,0.258065 +L 1.548387,0.258065,2.322581,0 +L 2.322581,0,3.096774,0 +L 3.096774,0,3.870968,0.258065 +L 3.870968,0.258065,4.387097,0.516129 +L 4.387097,0.516129,4.645161,0.774194 +L 4.129032,4.129032,3.870968,2.064516 +L 3.870968,2.064516,3.870968,1.548387 +L 3.870968,1.548387,4.129032,1.290323 + +[A] 18 +L 0,0,0.516129,0.258065 +L 0.516129,0.258065,1.290323,1.032258 +L 1.290323,1.032258,2.064516,2.064516 +L 2.064516,2.064516,3.096774,3.870968 +L 3.096774,3.870968,3.870968,5.419355 +L 3.870968,5.419355,3.870968,0 +L 3.870968,0,3.612903,0.774194 +L 3.612903,0.774194,3.096774,1.548387 +L 3.096774,1.548387,2.580645,2.064516 +L 2.580645,2.064516,1.806452,2.580645 +L 1.806452,2.580645,1.290323,2.580645 +L 1.290323,2.580645,1.032258,2.322581 +L 1.032258,2.322581,1.032258,1.806452 +L 1.032258,1.806452,1.290323,1.290323 +L 1.290323,1.290323,1.806452,0.774194 +L 1.806452,0.774194,2.580645,0.258065 +L 2.580645,0.258065,3.354839,0 +L 3.354839,0,4.645161,0 + +[B] 37 +L 2.580645,4.903226,2.83871,4.645161 +L 2.83871,4.645161,2.83871,3.870968 +L 2.83871,3.870968,2.580645,2.83871 +L 2.580645,2.83871,2.322581,2.064516 +L 2.322581,2.064516,2.064516,1.548387 +L 2.064516,1.548387,1.548387,0.774194 +L 1.548387,0.774194,1.032258,0.258065 +L 1.032258,0.258065,0.516129,0 +L 0.516129,0,0.258065,0 +L 0.258065,0,0,0.258065 +L 0,0.258065,0,1.032258 +L 0,1.032258,0.258065,2.322581 +L 0.258065,2.322581,0.516129,3.096774 +L 0.516129,3.096774,0.774194,3.612903 +L 0.774194,3.612903,1.290323,4.387097 +L 1.290323,4.387097,1.806452,4.903226 +L 1.806452,4.903226,2.322581,5.16129 +L 2.322581,5.16129,3.096774,5.419355 +L 3.096774,5.419355,3.870968,5.419355 +L 3.870968,5.419355,4.387097,5.16129 +L 4.387097,5.16129,4.645161,4.645161 +L 4.645161,4.645161,4.645161,4.129032 +L 4.645161,4.129032,4.387097,3.612903 +L 4.387097,3.612903,4.129032,3.354839 +L 4.129032,3.354839,3.612903,3.096774 +L 3.612903,3.096774,2.83871,2.83871 +L 2.580645,2.83871,2.83871,2.83871 +L 2.83871,2.83871,3.612903,2.580645 +L 3.612903,2.580645,3.870968,2.322581 +L 3.870968,2.322581,4.129032,1.806452 +L 4.129032,1.806452,4.129032,1.032258 +L 4.129032,1.032258,3.870968,0.516129 +L 3.870968,0.516129,3.612903,0.258065 +L 3.612903,0.258065,3.096774,0 +L 3.096774,0,2.322581,0 +L 2.322581,0,1.806452,0.258065 +L 1.806452,0.258065,1.548387,0.774194 + +[C] 22 +L 2.322581,3.870968,2.322581,3.612903 +L 2.322581,3.612903,2.580645,3.354839 +L 2.580645,3.354839,3.096774,3.354839 +L 3.096774,3.354839,3.612903,3.612903 +L 3.612903,3.612903,3.870968,4.129032 +L 3.870968,4.129032,3.870968,4.645161 +L 3.870968,4.645161,3.612903,5.16129 +L 3.612903,5.16129,3.096774,5.419355 +L 3.096774,5.419355,2.322581,5.419355 +L 2.322581,5.419355,1.548387,5.16129 +L 1.548387,5.16129,1.032258,4.645161 +L 1.032258,4.645161,0.516129,3.870968 +L 0.516129,3.870968,0.258065,3.354839 +L 0.258065,3.354839,0,2.322581 +L 0,2.322581,0,1.290323 +L 0,1.290323,0.258065,0.516129 +L 0.258065,0.516129,0.516129,0.258065 +L 0.516129,0.258065,1.032258,0 +L 1.032258,0,1.548387,0 +L 1.548387,0,2.322581,0.258065 +L 2.322581,0.258065,2.83871,0.774194 +L 2.83871,0.774194,3.096774,1.290323 + +[D] 33 +L 3.612903,5.419355,3.096774,5.16129 +L 3.096774,5.16129,2.83871,4.645161 +L 2.83871,4.645161,2.580645,3.612903 +L 2.580645,3.612903,2.322581,2.064516 +L 2.322581,2.064516,2.064516,1.290323 +L 2.064516,1.290323,1.806452,0.774194 +L 1.806452,0.774194,1.290323,0.258065 +L 1.290323,0.258065,0.774194,0 +L 0.774194,0,0.258065,0 +L 0.258065,0,0,0.258065 +L 0,0.258065,0,0.774194 +L 0,0.774194,0.258065,1.032258 +L 0.258065,1.032258,0.774194,1.032258 +L 0.774194,1.032258,1.290323,0.774194 +L 1.290323,0.774194,1.806452,0.258065 +L 1.806452,0.258065,2.580645,0 +L 2.580645,0,3.354839,0 +L 3.354839,0,4.129032,0.258065 +L 4.129032,0.258065,4.645161,0.774194 +L 4.645161,0.774194,5.16129,1.806452 +L 5.16129,1.806452,5.419355,3.096774 +L 5.419355,3.096774,5.419355,4.129032 +L 5.419355,4.129032,5.16129,4.903226 +L 5.16129,4.903226,4.903226,5.16129 +L 4.903226,5.16129,4.387097,5.419355 +L 4.387097,5.419355,3.612903,5.419355 +L 3.612903,5.419355,3.096774,4.903226 +L 3.096774,4.903226,3.096774,4.387097 +L 3.096774,4.387097,3.354839,3.612903 +L 3.354839,3.612903,3.870968,2.83871 +L 3.870968,2.83871,4.387097,2.322581 +L 4.387097,2.322581,5.16129,1.806452 +L 5.16129,1.806452,5.677419,1.548387 + +[E] 26 +L 2.83871,4.387097,2.83871,4.129032 +L 2.83871,4.129032,3.096774,3.870968 +L 3.096774,3.870968,3.612903,3.870968 +L 3.612903,3.870968,3.870968,4.129032 +L 3.870968,4.129032,3.870968,4.645161 +L 3.870968,4.645161,3.612903,5.16129 +L 3.612903,5.16129,2.83871,5.419355 +L 2.83871,5.419355,1.806452,5.419355 +L 1.806452,5.419355,1.032258,5.16129 +L 1.032258,5.16129,0.774194,4.645161 +L 0.774194,4.645161,0.774194,3.870968 +L 0.774194,3.870968,1.032258,3.354839 +L 1.032258,3.354839,1.290323,3.096774 +L 1.290323,3.096774,2.064516,2.83871 +L 2.064516,2.83871,1.290323,2.83871 +L 1.290323,2.83871,0.516129,2.580645 +L 0.516129,2.580645,0.258065,2.322581 +L 0.258065,2.322581,0,1.806452 +L 0,1.806452,0,1.032258 +L 0,1.032258,0.258065,0.516129 +L 0.258065,0.516129,0.516129,0.258065 +L 0.516129,0.258065,1.290323,0 +L 1.290323,0,2.064516,0 +L 2.064516,0,2.83871,0.258065 +L 2.83871,0.258065,3.354839,0.774194 +L 3.354839,0.774194,3.612903,1.290323 + +[F] 22 +L 2.322581,3.870968,1.806452,3.870968 +L 1.806452,3.870968,1.290323,4.129032 +L 1.290323,4.129032,1.032258,4.645161 +L 1.032258,4.645161,1.290323,5.16129 +L 1.290323,5.16129,2.064516,5.419355 +L 2.064516,5.419355,2.83871,5.419355 +L 2.83871,5.419355,3.870968,5.16129 +L 3.870968,5.16129,4.645161,5.16129 +L 4.645161,5.16129,5.16129,5.419355 +L 3.870968,5.16129,3.354839,3.354839 +L 3.354839,3.354839,2.83871,1.806452 +L 2.83871,1.806452,2.322581,0.774194 +L 2.322581,0.774194,1.806452,0.258065 +L 1.806452,0.258065,1.290323,0 +L 1.290323,0,0.774194,0 +L 0.774194,0,0.258065,0.258065 +L 0.258065,0.258065,0,0.774194 +L 0,0.774194,0,1.290323 +L 0,1.290323,0.258065,1.548387 +L 0.258065,1.548387,0.774194,1.548387 +L 0.774194,1.548387,1.290323,1.290323 +L 2.064516,2.83871,4.387097,2.83871 + +[G] 27 +L 0,0,0.516129,0.258065 +L 0.516129,0.258065,1.548387,1.290323 +L 1.548387,1.290323,2.322581,2.580645 +L 2.322581,2.580645,2.580645,3.354839 +L 2.580645,3.354839,2.83871,4.387097 +L 2.83871,4.387097,2.83871,5.16129 +L 2.83871,5.16129,2.580645,5.419355 +L 2.580645,5.419355,2.322581,5.419355 +L 2.322581,5.419355,2.064516,5.16129 +L 2.064516,5.16129,1.806452,4.645161 +L 1.806452,4.645161,1.806452,3.870968 +L 1.806452,3.870968,2.064516,3.354839 +L 2.064516,3.354839,2.580645,3.096774 +L 2.580645,3.096774,3.612903,3.096774 +L 3.612903,3.096774,4.387097,3.354839 +L 4.387097,3.354839,4.645161,3.612903 +L 4.645161,3.612903,4.903226,4.129032 +L 4.903226,4.129032,4.903226,2.580645 +L 4.903226,2.580645,4.645161,1.290323 +L 4.645161,1.290323,4.387097,0.774194 +L 4.387097,0.774194,3.870968,0.258065 +L 3.870968,0.258065,3.096774,0 +L 3.096774,0,2.064516,0 +L 2.064516,0,1.290323,0.258065 +L 1.290323,0.258065,0.774194,0.774194 +L 0.774194,0.774194,0.516129,1.290323 +L 0.516129,1.290323,0.516129,1.806452 + +[H] 34 +L 1.548387,3.612903,1.032258,3.870968 +L 1.032258,3.870968,0.774194,4.387097 +L 0.774194,4.387097,0.774194,4.645161 +L 0.774194,4.645161,1.032258,5.16129 +L 1.032258,5.16129,1.548387,5.419355 +L 1.548387,5.419355,1.806452,5.419355 +L 1.806452,5.419355,2.322581,5.16129 +L 2.322581,5.16129,2.580645,4.645161 +L 2.580645,4.645161,2.580645,4.129032 +L 2.580645,4.129032,2.322581,3.096774 +L 2.322581,3.096774,1.806452,1.548387 +L 1.806452,1.548387,1.290323,0.516129 +L 1.290323,0.516129,0.774194,0 +L 0.774194,0,0.258065,0 +L 0.258065,0,0,0.258065 +L 0,0.258065,0,0.774194 +L 1.548387,2.322581,3.870968,3.096774 +L 3.870968,3.096774,4.387097,3.354839 +L 4.387097,3.354839,5.16129,3.870968 +L 5.16129,3.870968,5.677419,4.387097 +L 5.677419,4.387097,5.935484,4.903226 +L 5.935484,4.903226,5.935484,5.16129 +L 5.935484,5.16129,5.677419,5.419355 +L 5.677419,5.419355,5.419355,5.419355 +L 5.419355,5.419355,4.903226,4.903226 +L 4.903226,4.903226,4.387097,3.870968 +L 4.387097,3.870968,3.870968,2.322581 +L 3.870968,2.322581,3.612903,1.032258 +L 3.612903,1.032258,3.612903,0.258065 +L 3.612903,0.258065,3.870968,0 +L 3.870968,0,4.129032,0 +L 4.129032,0,4.645161,0.258065 +L 4.645161,0.258065,4.903226,0.516129 +L 4.903226,0.516129,5.419355,1.290323 + +[I] 23 +L 3.354839,1.290323,2.83871,1.806452 +L 2.83871,1.806452,2.322581,2.580645 +L 2.322581,2.580645,2.064516,3.096774 +L 2.064516,3.096774,1.806452,3.870968 +L 1.806452,3.870968,1.806452,4.645161 +L 1.806452,4.645161,2.064516,5.16129 +L 2.064516,5.16129,2.322581,5.419355 +L 2.322581,5.419355,2.83871,5.419355 +L 2.83871,5.419355,3.096774,5.16129 +L 3.096774,5.16129,3.354839,4.645161 +L 3.354839,4.645161,3.354839,3.870968 +L 3.354839,3.870968,3.096774,2.580645 +L 3.096774,2.580645,2.580645,1.290323 +L 2.580645,1.290323,2.322581,0.774194 +L 2.322581,0.774194,1.806452,0.258065 +L 1.806452,0.258065,1.290323,0 +L 1.290323,0,0.774194,0 +L 0.774194,0,0.258065,0.258065 +L 0.258065,0.258065,0,0.774194 +L 0,0.774194,0,1.290323 +L 0,1.290323,0.258065,1.548387 +L 0.258065,1.548387,0.774194,1.548387 +L 0.774194,1.548387,1.290323,1.290323 + +[J] 23 +L 2.322581,-0.774194,1.806452,0 +L 1.806452,0,1.290323,1.290323 +L 1.290323,1.290323,1.032258,2.83871 +L 1.032258,2.83871,1.032258,4.387097 +L 1.032258,4.387097,1.290323,5.16129 +L 1.290323,5.16129,1.806452,5.419355 +L 1.806452,5.419355,2.322581,5.419355 +L 2.322581,5.419355,2.580645,5.16129 +L 2.580645,5.16129,2.83871,4.387097 +L 2.83871,4.387097,2.83871,3.612903 +L 2.83871,3.612903,2.580645,2.322581 +L 2.580645,2.322581,1.806452,0 +L 1.806452,0,1.290323,-1.548387 +L 1.290323,-1.548387,1.032258,-2.322581 +L 1.032258,-2.322581,0.774194,-2.83871 +L 0.774194,-2.83871,0.258065,-3.096774 +L 0.258065,-3.096774,0,-2.83871 +L 0,-2.83871,0,-2.322581 +L 0,-2.322581,0.258065,-1.548387 +L 0.258065,-1.548387,0.774194,-0.774194 +L 0.774194,-0.774194,1.290323,-0.258065 +L 1.290323,-0.258065,2.064516,0.258065 +L 2.064516,0.258065,3.096774,0.774194 + +[K] 33 +L 1.548387,3.612903,1.032258,3.870968 +L 1.032258,3.870968,0.774194,4.387097 +L 0.774194,4.387097,0.774194,4.645161 +L 0.774194,4.645161,1.032258,5.16129 +L 1.032258,5.16129,1.548387,5.419355 +L 1.548387,5.419355,1.806452,5.419355 +L 1.806452,5.419355,2.322581,5.16129 +L 2.322581,5.16129,2.580645,4.645161 +L 2.580645,4.645161,2.580645,4.129032 +L 2.580645,4.129032,2.322581,3.096774 +L 2.322581,3.096774,1.806452,1.548387 +L 1.806452,1.548387,1.290323,0.516129 +L 1.290323,0.516129,0.774194,0 +L 0.774194,0,0.258065,0 +L 0.258065,0,0,0.258065 +L 0,0.258065,0,0.774194 +L 5.935484,4.645161,5.935484,5.16129 +L 5.935484,5.16129,5.677419,5.419355 +L 5.677419,5.419355,5.419355,5.419355 +L 5.419355,5.419355,4.903226,5.16129 +L 4.903226,5.16129,4.387097,4.645161 +L 4.387097,4.645161,3.870968,3.870968 +L 3.870968,3.870968,3.354839,3.354839 +L 3.354839,3.354839,2.83871,3.096774 +L 2.83871,3.096774,2.322581,3.096774 +L 2.83871,3.096774,3.096774,2.580645 +L 3.096774,2.580645,3.096774,0.774194 +L 3.096774,0.774194,3.354839,0.258065 +L 3.354839,0.258065,3.612903,0 +L 3.612903,0,3.870968,0 +L 3.870968,0,4.387097,0.258065 +L 4.387097,0.258065,4.645161,0.516129 +L 4.645161,0.516129,5.16129,1.290323 + +[L] 27 +L 1.032258,2.322581,1.548387,2.322581 +L 1.548387,2.322581,2.580645,2.580645 +L 2.580645,2.580645,3.354839,3.096774 +L 3.354839,3.096774,3.870968,3.612903 +L 3.870968,3.612903,4.129032,4.129032 +L 4.129032,4.129032,4.129032,4.903226 +L 4.129032,4.903226,3.870968,5.419355 +L 3.870968,5.419355,3.354839,5.419355 +L 3.354839,5.419355,3.096774,5.16129 +L 3.096774,5.16129,2.83871,4.645161 +L 2.83871,4.645161,2.580645,3.354839 +L 2.580645,3.354839,2.322581,2.064516 +L 2.322581,2.064516,2.064516,1.290323 +L 2.064516,1.290323,1.806452,0.774194 +L 1.806452,0.774194,1.290323,0.258065 +L 1.290323,0.258065,0.774194,0 +L 0.774194,0,0.258065,0 +L 0.258065,0,0,0.258065 +L 0,0.258065,0,0.774194 +L 0,0.774194,0.258065,1.032258 +L 0.258065,1.032258,0.774194,1.032258 +L 0.774194,1.032258,1.290323,0.774194 +L 1.290323,0.774194,2.064516,0.258065 +L 2.064516,0.258065,2.83871,0 +L 2.83871,0,3.354839,0 +L 3.354839,0,4.129032,0.258065 +L 4.129032,0.258065,4.645161,0.774194 + +[M] 39 +L 0.774194,3.612903,0.258065,3.870968 +L 0.258065,3.870968,0,4.387097 +L 0,4.387097,0,4.645161 +L 0,4.645161,0.258065,5.16129 +L 0.258065,5.16129,0.774194,5.419355 +L 0.774194,5.419355,1.032258,5.419355 +L 1.032258,5.419355,1.548387,5.16129 +L 1.548387,5.16129,1.806452,4.645161 +L 1.806452,4.645161,1.806452,4.129032 +L 1.806452,4.129032,1.548387,2.83871 +L 1.548387,2.83871,1.290323,1.806452 +L 1.290323,1.806452,0.774194,0 +L 1.290323,1.806452,2.064516,3.870968 +L 2.064516,3.870968,2.580645,4.903226 +L 2.580645,4.903226,2.83871,5.16129 +L 2.83871,5.16129,3.354839,5.419355 +L 3.354839,5.419355,3.612903,5.419355 +L 3.612903,5.419355,4.129032,5.16129 +L 4.129032,5.16129,4.387097,4.645161 +L 4.387097,4.645161,4.387097,4.129032 +L 4.387097,4.129032,4.129032,2.83871 +L 4.129032,2.83871,3.870968,1.806452 +L 3.870968,1.806452,3.354839,0 +L 3.870968,1.806452,4.645161,3.870968 +L 4.645161,3.870968,5.16129,4.903226 +L 5.16129,4.903226,5.419355,5.16129 +L 5.419355,5.16129,5.935484,5.419355 +L 5.935484,5.419355,6.193548,5.419355 +L 6.193548,5.419355,6.709677,5.16129 +L 6.709677,5.16129,6.967742,4.645161 +L 6.967742,4.645161,6.967742,4.129032 +L 6.967742,4.129032,6.709677,2.83871 +L 6.709677,2.83871,6.193548,1.032258 +L 6.193548,1.032258,6.193548,0.258065 +L 6.193548,0.258065,6.451613,0 +L 6.451613,0,6.709677,0 +L 6.709677,0,7.225806,0.258065 +L 7.225806,0.258065,7.483871,0.516129 +L 7.483871,0.516129,8,1.290323 + +[N] 28 +L 0.774194,3.612903,0.258065,3.870968 +L 0.258065,3.870968,0,4.387097 +L 0,4.387097,0,4.645161 +L 0,4.645161,0.258065,5.16129 +L 0.258065,5.16129,0.774194,5.419355 +L 0.774194,5.419355,1.032258,5.419355 +L 1.032258,5.419355,1.548387,5.16129 +L 1.548387,5.16129,1.806452,4.645161 +L 1.806452,4.645161,1.806452,4.129032 +L 1.806452,4.129032,1.548387,2.83871 +L 1.548387,2.83871,1.290323,1.806452 +L 1.290323,1.806452,0.774194,0 +L 1.290323,1.806452,2.064516,3.870968 +L 2.064516,3.870968,2.580645,4.903226 +L 2.580645,4.903226,2.83871,5.16129 +L 2.83871,5.16129,3.354839,5.419355 +L 3.354839,5.419355,3.870968,5.419355 +L 3.870968,5.419355,4.387097,5.16129 +L 4.387097,5.16129,4.645161,4.645161 +L 4.645161,4.645161,4.645161,4.129032 +L 4.645161,4.129032,4.387097,2.83871 +L 4.387097,2.83871,3.870968,1.032258 +L 3.870968,1.032258,3.870968,0.258065 +L 3.870968,0.258065,4.129032,0 +L 4.129032,0,4.387097,0 +L 4.387097,0,4.903226,0.258065 +L 4.903226,0.258065,5.16129,0.516129 +L 5.16129,0.516129,5.677419,1.290323 + +[O] 27 +L 2.322581,5.419355,1.548387,5.16129 +L 1.548387,5.16129,1.032258,4.645161 +L 1.032258,4.645161,0.516129,3.870968 +L 0.516129,3.870968,0.258065,3.354839 +L 0.258065,3.354839,0,2.322581 +L 0,2.322581,0,1.290323 +L 0,1.290323,0.258065,0.516129 +L 0.258065,0.516129,0.516129,0.258065 +L 0.516129,0.258065,1.032258,0 +L 1.032258,0,1.548387,0 +L 1.548387,0,2.322581,0.258065 +L 2.322581,0.258065,2.83871,0.774194 +L 2.83871,0.774194,3.354839,1.548387 +L 3.354839,1.548387,3.612903,2.064516 +L 3.612903,2.064516,3.870968,3.096774 +L 3.870968,3.096774,3.870968,4.129032 +L 3.870968,4.129032,3.612903,4.903226 +L 3.612903,4.903226,3.354839,5.16129 +L 3.354839,5.16129,2.83871,5.419355 +L 2.83871,5.419355,2.322581,5.419355 +L 2.322581,5.419355,1.806452,4.903226 +L 1.806452,4.903226,1.806452,4.129032 +L 1.806452,4.129032,2.064516,3.354839 +L 2.064516,3.354839,2.580645,2.580645 +L 2.580645,2.580645,3.096774,2.064516 +L 3.096774,2.064516,3.870968,1.548387 +L 3.870968,1.548387,4.387097,1.290323 + +[P] 29 +L 2.580645,4.903226,2.83871,4.645161 +L 2.83871,4.645161,2.83871,3.870968 +L 2.83871,3.870968,2.580645,2.83871 +L 2.580645,2.83871,2.322581,2.064516 +L 2.322581,2.064516,2.064516,1.548387 +L 2.064516,1.548387,1.548387,0.774194 +L 1.548387,0.774194,1.032258,0.258065 +L 1.032258,0.258065,0.516129,0 +L 0.516129,0,0.258065,0 +L 0.258065,0,0,0.258065 +L 0,0.258065,0,1.032258 +L 0,1.032258,0.258065,2.322581 +L 0.258065,2.322581,0.516129,3.096774 +L 0.516129,3.096774,0.774194,3.612903 +L 0.774194,3.612903,1.290323,4.387097 +L 1.290323,4.387097,1.806452,4.903226 +L 1.806452,4.903226,2.322581,5.16129 +L 2.322581,5.16129,3.096774,5.419355 +L 3.096774,5.419355,4.387097,5.419355 +L 4.387097,5.419355,4.903226,5.16129 +L 4.903226,5.16129,5.16129,4.903226 +L 5.16129,4.903226,5.419355,4.387097 +L 5.419355,4.387097,5.419355,3.612903 +L 5.419355,3.612903,5.16129,3.096774 +L 5.16129,3.096774,4.903226,2.83871 +L 4.903226,2.83871,4.387097,2.580645 +L 4.387097,2.580645,3.612903,2.580645 +L 3.612903,2.580645,3.096774,2.83871 +L 3.096774,2.83871,2.83871,3.096774 + +[Q] 30 +L 3.354839,3.870968,3.096774,3.354839 +L 3.096774,3.354839,2.83871,3.096774 +L 2.83871,3.096774,2.322581,2.83871 +L 2.322581,2.83871,1.806452,2.83871 +L 1.806452,2.83871,1.548387,3.354839 +L 1.548387,3.354839,1.548387,3.870968 +L 1.548387,3.870968,1.806452,4.645161 +L 1.806452,4.645161,2.322581,5.16129 +L 2.322581,5.16129,3.096774,5.419355 +L 3.096774,5.419355,3.870968,5.419355 +L 3.870968,5.419355,4.387097,5.16129 +L 4.387097,5.16129,4.645161,4.645161 +L 4.645161,4.645161,4.645161,3.612903 +L 4.645161,3.612903,4.387097,2.83871 +L 4.387097,2.83871,3.870968,2.064516 +L 3.870968,2.064516,2.83871,1.032258 +L 2.83871,1.032258,2.064516,0.516129 +L 2.064516,0.516129,1.548387,0.258065 +L 1.548387,0.258065,0.774194,0 +L 0.774194,0,0.258065,0 +L 0.258065,0,0,0.258065 +L 0,0.258065,0,0.774194 +L 0,0.774194,0.258065,1.032258 +L 0.258065,1.032258,0.774194,1.032258 +L 0.774194,1.032258,1.290323,0.774194 +L 1.290323,0.774194,2.064516,0.258065 +L 2.064516,0.258065,2.83871,0 +L 2.83871,0,3.612903,0 +L 3.612903,0,4.387097,0.258065 +L 4.387097,0.258065,4.903226,0.774194 + +[R] 36 +L 2.580645,4.903226,2.83871,4.645161 +L 2.83871,4.645161,2.83871,3.870968 +L 2.83871,3.870968,2.580645,2.83871 +L 2.580645,2.83871,2.322581,2.064516 +L 2.322581,2.064516,2.064516,1.548387 +L 2.064516,1.548387,1.548387,0.774194 +L 1.548387,0.774194,1.032258,0.258065 +L 1.032258,0.258065,0.516129,0 +L 0.516129,0,0.258065,0 +L 0.258065,0,0,0.258065 +L 0,0.258065,0,1.032258 +L 0,1.032258,0.258065,2.322581 +L 0.258065,2.322581,0.516129,3.096774 +L 0.516129,3.096774,0.774194,3.612903 +L 0.774194,3.612903,1.290323,4.387097 +L 1.290323,4.387097,1.806452,4.903226 +L 1.806452,4.903226,2.322581,5.16129 +L 2.322581,5.16129,3.096774,5.419355 +L 3.096774,5.419355,4.129032,5.419355 +L 4.129032,5.419355,4.645161,5.16129 +L 4.645161,5.16129,4.903226,4.903226 +L 4.903226,4.903226,5.16129,4.387097 +L 5.16129,4.387097,5.16129,3.612903 +L 5.16129,3.612903,4.903226,3.096774 +L 4.903226,3.096774,4.645161,2.83871 +L 4.645161,2.83871,4.129032,2.580645 +L 4.129032,2.580645,3.354839,2.580645 +L 3.354839,2.580645,2.580645,2.83871 +L 2.580645,2.83871,2.83871,2.580645 +L 2.83871,2.580645,3.096774,2.064516 +L 3.096774,2.064516,3.096774,0.774194 +L 3.096774,0.774194,3.354839,0.258065 +L 3.354839,0.258065,3.870968,0 +L 3.870968,0,4.387097,0.258065 +L 4.387097,0.258065,4.645161,0.516129 +L 4.645161,0.516129,5.16129,1.290323 + +[S] 26 +L 0,0,0.516129,0.258065 +L 0.516129,0.258065,1.032258,0.774194 +L 1.032258,0.774194,1.806452,1.806452 +L 1.806452,1.806452,2.322581,2.580645 +L 2.322581,2.580645,2.83871,3.612903 +L 2.83871,3.612903,3.096774,4.387097 +L 3.096774,4.387097,3.096774,5.16129 +L 3.096774,5.16129,2.83871,5.419355 +L 2.83871,5.419355,2.580645,5.419355 +L 2.580645,5.419355,2.322581,5.16129 +L 2.322581,5.16129,2.064516,4.645161 +L 2.064516,4.645161,2.064516,4.129032 +L 2.064516,4.129032,2.322581,3.612903 +L 2.322581,3.612903,2.83871,3.096774 +L 2.83871,3.096774,3.612903,2.580645 +L 3.612903,2.580645,4.129032,2.064516 +L 4.129032,2.064516,4.387097,1.548387 +L 4.387097,1.548387,4.387097,1.032258 +L 4.387097,1.032258,4.129032,0.516129 +L 4.129032,0.516129,3.870968,0.258065 +L 3.870968,0.258065,3.096774,0 +L 3.096774,0,2.064516,0 +L 2.064516,0,1.290323,0.258065 +L 1.290323,0.258065,0.774194,0.774194 +L 0.774194,0.774194,0.516129,1.290323 +L 0.516129,1.290323,0.516129,1.806452 + +[T] 21 +L 2.322581,3.870968,1.806452,3.870968 +L 1.806452,3.870968,1.290323,4.129032 +L 1.290323,4.129032,1.032258,4.645161 +L 1.032258,4.645161,1.290323,5.16129 +L 1.290323,5.16129,2.064516,5.419355 +L 2.064516,5.419355,2.83871,5.419355 +L 2.83871,5.419355,3.870968,5.16129 +L 3.870968,5.16129,4.645161,5.16129 +L 4.645161,5.16129,5.16129,5.419355 +L 3.870968,5.16129,3.354839,3.354839 +L 3.354839,3.354839,2.83871,1.806452 +L 2.83871,1.806452,2.322581,0.774194 +L 2.322581,0.774194,1.806452,0.258065 +L 1.806452,0.258065,1.290323,0 +L 1.290323,0,0.774194,0 +L 0.774194,0,0.258065,0.258065 +L 0.258065,0.258065,0,0.774194 +L 0,0.774194,0,1.290323 +L 0,1.290323,0.258065,1.548387 +L 0.258065,1.548387,0.774194,1.548387 +L 0.774194,1.548387,1.290323,1.290323 + +[U] 29 +L 0.774194,3.612903,0.258065,3.870968 +L 0.258065,3.870968,0,4.387097 +L 0,4.387097,0,4.645161 +L 0,4.645161,0.258065,5.16129 +L 0.258065,5.16129,0.774194,5.419355 +L 0.774194,5.419355,1.032258,5.419355 +L 1.032258,5.419355,1.548387,5.16129 +L 1.548387,5.16129,1.806452,4.645161 +L 1.806452,4.645161,1.806452,4.129032 +L 1.806452,4.129032,1.548387,3.096774 +L 1.548387,3.096774,1.290323,2.322581 +L 1.290323,2.322581,1.032258,1.290323 +L 1.032258,1.290323,1.032258,0.774194 +L 1.032258,0.774194,1.290323,0.258065 +L 1.290323,0.258065,1.806452,0 +L 1.806452,0,2.322581,0 +L 2.322581,0,2.83871,0.258065 +L 2.83871,0.258065,3.096774,0.516129 +L 3.096774,0.516129,3.612903,1.548387 +L 3.612903,1.548387,4.387097,3.612903 +L 4.387097,3.612903,4.903226,5.419355 +L 4.387097,3.612903,4.129032,2.580645 +L 4.129032,2.580645,3.870968,1.032258 +L 3.870968,1.032258,3.870968,0.258065 +L 3.870968,0.258065,4.129032,0 +L 4.129032,0,4.387097,0 +L 4.387097,0,4.903226,0.258065 +L 4.903226,0.258065,5.16129,0.516129 +L 5.16129,0.516129,5.677419,1.290323 + +[V] 30 +L 0.774194,3.612903,0.258065,3.870968 +L 0.258065,3.870968,0,4.387097 +L 0,4.387097,0,4.645161 +L 0,4.645161,0.258065,5.16129 +L 0.258065,5.16129,0.774194,5.419355 +L 0.774194,5.419355,1.032258,5.419355 +L 1.032258,5.419355,1.548387,5.16129 +L 1.548387,5.16129,1.806452,4.645161 +L 1.806452,4.645161,1.806452,4.129032 +L 1.806452,4.129032,1.548387,3.096774 +L 1.548387,3.096774,1.290323,2.322581 +L 1.290323,2.322581,1.032258,1.290323 +L 1.032258,1.290323,1.032258,0.516129 +L 1.032258,0.516129,1.290323,0 +L 1.290323,0,1.806452,0 +L 1.806452,0,2.322581,0.258065 +L 2.322581,0.258065,3.096774,1.032258 +L 3.096774,1.032258,3.612903,1.806452 +L 3.612903,1.806452,4.129032,2.83871 +L 4.129032,2.83871,4.387097,3.612903 +L 4.387097,3.612903,4.645161,4.645161 +L 4.645161,4.645161,4.645161,5.16129 +L 4.645161,5.16129,4.387097,5.419355 +L 4.387097,5.419355,4.129032,5.419355 +L 4.129032,5.419355,3.870968,5.16129 +L 3.870968,5.16129,3.612903,4.645161 +L 3.612903,4.645161,3.612903,4.129032 +L 3.612903,4.129032,3.870968,3.354839 +L 3.870968,3.354839,4.387097,2.83871 +L 4.387097,2.83871,4.903226,2.580645 + +[W] 17 +L 0.774194,3.612903,0.258065,3.870968 +L 0.258065,3.870968,0,4.387097 +L 0,4.387097,0,4.645161 +L 0,4.645161,0.258065,5.16129 +L 0.258065,5.16129,0.774194,5.419355 +L 0.774194,5.419355,1.032258,5.419355 +L 1.032258,5.419355,1.548387,5.16129 +L 1.548387,5.16129,1.806452,4.645161 +L 1.806452,4.645161,1.806452,3.870968 +L 1.806452,3.870968,1.548387,0 +L 4.129032,5.419355,1.548387,0 +L 4.129032,5.419355,3.612903,0 +L 7.225806,5.419355,6.709677,5.16129 +L 6.709677,5.16129,5.935484,4.387097 +L 5.935484,4.387097,5.16129,3.354839 +L 5.16129,3.354839,4.387097,1.806452 +L 4.387097,1.806452,3.612903,0 + +[X] 32 +L 1.806452,3.870968,1.290323,3.870968 +L 1.290323,3.870968,1.032258,4.129032 +L 1.032258,4.129032,1.032258,4.645161 +L 1.032258,4.645161,1.290323,5.16129 +L 1.290323,5.16129,1.806452,5.419355 +L 1.806452,5.419355,2.322581,5.419355 +L 2.322581,5.419355,2.83871,5.16129 +L 2.83871,5.16129,3.096774,4.645161 +L 3.096774,4.645161,3.096774,3.870968 +L 3.096774,3.870968,2.580645,1.548387 +L 2.580645,1.548387,2.580645,0.774194 +L 2.580645,0.774194,2.83871,0.258065 +L 2.83871,0.258065,3.354839,0 +L 3.354839,0,3.870968,0 +L 3.870968,0,4.387097,0.258065 +L 4.387097,0.258065,4.645161,0.774194 +L 4.645161,0.774194,4.645161,1.290323 +L 4.645161,1.290323,4.387097,1.548387 +L 4.387097,1.548387,3.870968,1.548387 +L 5.677419,4.645161,5.677419,5.16129 +L 5.677419,5.16129,5.419355,5.419355 +L 5.419355,5.419355,4.903226,5.419355 +L 4.903226,5.419355,4.387097,5.16129 +L 4.387097,5.16129,3.870968,4.645161 +L 3.870968,4.645161,3.354839,3.870968 +L 3.354839,3.870968,2.322581,1.548387 +L 2.322581,1.548387,1.806452,0.774194 +L 1.806452,0.774194,1.290323,0.258065 +L 1.290323,0.258065,0.774194,0 +L 0.774194,0,0.258065,0 +L 0.258065,0,0,0.258065 +L 0,0.258065,0,0.774194 + +[Y] 34 +L 0.774194,3.612903,0.258065,3.870968 +L 0.258065,3.870968,0,4.387097 +L 0,4.387097,0,4.645161 +L 0,4.645161,0.258065,5.16129 +L 0.258065,5.16129,0.774194,5.419355 +L 0.774194,5.419355,1.032258,5.419355 +L 1.032258,5.419355,1.548387,5.16129 +L 1.548387,5.16129,1.806452,4.645161 +L 1.806452,4.645161,1.806452,4.129032 +L 1.806452,4.129032,1.548387,3.096774 +L 1.548387,3.096774,1.290323,2.322581 +L 1.290323,2.322581,1.032258,1.290323 +L 1.032258,1.290323,1.032258,0.774194 +L 1.032258,0.774194,1.290323,0.258065 +L 1.290323,0.258065,1.548387,0 +L 1.548387,0,2.064516,0 +L 2.064516,0,2.580645,0.258065 +L 2.580645,0.258065,3.096774,0.774194 +L 3.096774,0.774194,3.612903,1.548387 +L 3.612903,1.548387,3.870968,2.064516 +L 3.870968,2.064516,4.387097,3.612903 +L 4.903226,5.419355,4.387097,3.612903 +L 4.387097,3.612903,3.612903,1.032258 +L 3.612903,1.032258,3.096774,-0.516129 +L 3.096774,-0.516129,2.580645,-1.806452 +L 2.580645,-1.806452,2.064516,-2.83871 +L 2.064516,-2.83871,1.548387,-3.096774 +L 1.548387,-3.096774,1.290323,-2.83871 +L 1.290323,-2.83871,1.290323,-2.322581 +L 1.290323,-2.322581,1.548387,-1.548387 +L 1.548387,-1.548387,2.064516,-0.774194 +L 2.064516,-0.774194,2.83871,0 +L 2.83871,0,3.612903,0.516129 +L 3.612903,0.516129,4.903226,1.290323 + +[Z] 38 +L 2.83871,3.870968,2.580645,3.354839 +L 2.580645,3.354839,2.322581,3.096774 +L 2.322581,3.096774,1.806452,2.83871 +L 1.806452,2.83871,1.290323,2.83871 +L 1.290323,2.83871,1.032258,3.354839 +L 1.032258,3.354839,1.032258,3.870968 +L 1.032258,3.870968,1.290323,4.645161 +L 1.290323,4.645161,1.806452,5.16129 +L 1.806452,5.16129,2.580645,5.419355 +L 2.580645,5.419355,3.354839,5.419355 +L 3.354839,5.419355,3.870968,5.16129 +L 3.870968,5.16129,4.129032,4.645161 +L 4.129032,4.645161,4.129032,3.612903 +L 4.129032,3.612903,3.870968,2.83871 +L 3.870968,2.83871,3.354839,1.806452 +L 3.354839,1.806452,2.580645,1.032258 +L 2.580645,1.032258,1.548387,0.258065 +L 1.548387,0.258065,1.032258,0 +L 1.032258,0,0.258065,0 +L 0.258065,0,0,0.258065 +L 0,0.258065,0,0.774194 +L 0,0.774194,0.258065,1.032258 +L 0.258065,1.032258,1.032258,1.032258 +L 1.032258,1.032258,1.548387,0.774194 +L 1.548387,0.774194,1.806452,0.516129 +L 1.806452,0.516129,2.064516,0 +L 2.064516,0,2.064516,-0.774194 +L 2.064516,-0.774194,1.806452,-1.548387 +L 1.806452,-1.548387,1.548387,-2.064516 +L 1.548387,-2.064516,1.032258,-2.83871 +L 1.032258,-2.83871,0.516129,-3.096774 +L 0.516129,-3.096774,0.258065,-2.83871 +L 0.258065,-2.83871,0.258065,-2.322581 +L 0.258065,-2.322581,0.516129,-1.548387 +L 0.516129,-1.548387,1.032258,-0.774194 +L 1.032258,-0.774194,1.806452,0 +L 1.806452,0,2.580645,0.516129 +L 2.580645,0.516129,4.129032,1.290323 + +[[] 4 +L 0,6.451613,0,-1.806452 +L 0.258065,6.451613,0.258065,-1.806452 +L 0,6.451613,1.806452,6.451613 +L 0,-1.806452,1.806452,-1.806452 + +[\] 1 +L 0,5.419355,3.612903,-0.774194 + +[]] 4 +L 1.548387,6.451613,1.548387,-1.806452 +L 1.806452,6.451613,1.806452,-1.806452 +L 0,6.451613,1.806452,6.451613 +L 0,-1.806452,1.806452,-1.806452 + +[^] 5 +L 0.774194,3.870968,1.290323,4.645161 +L 1.290323,4.645161,1.806452,3.870968 +L 0,3.096774,1.290323,4.387097 +L 1.290323,4.387097,2.580645,3.096774 +L 1.290323,4.387097,1.290323,0 + +[_] 1 +L 0,-0.516129,4.129032,-0.516129 + +[`] 6 +L 0.774194,5.419355,0.258065,4.903226 +L 0.258065,4.903226,0,4.387097 +L 0,4.387097,0,4.129032 +L 0,4.129032,0.258065,3.870968 +L 0.258065,3.870968,0.516129,4.129032 +L 0.516129,4.129032,0.258065,4.387097 + +[a] 20 +L 2.322581,1.548387,2.064516,2.064516 +L 2.064516,2.064516,1.548387,2.322581 +L 1.548387,2.322581,1.032258,2.322581 +L 1.032258,2.322581,0.516129,2.064516 +L 0.516129,2.064516,0.258065,1.806452 +L 0.258065,1.806452,0,1.290323 +L 0,1.290323,0,0.774194 +L 0,0.774194,0.258065,0.258065 +L 0.258065,0.258065,0.774194,0 +L 0.774194,0,1.290323,0 +L 1.290323,0,1.806452,0.258065 +L 1.806452,0.258065,2.064516,0.774194 +L 2.064516,0.774194,2.580645,2.322581 +L 2.580645,2.322581,2.322581,1.032258 +L 2.322581,1.032258,2.322581,0.258065 +L 2.322581,0.258065,2.580645,0 +L 2.580645,0,2.83871,0 +L 2.83871,0,3.354839,0.258065 +L 3.354839,0.258065,3.612903,0.516129 +L 3.612903,0.516129,4.129032,1.290323 + +[b] 21 +L 0,1.290323,0.516129,2.064516 +L 0.516129,2.064516,1.290323,3.354839 +L 1.290323,3.354839,1.548387,3.870968 +L 1.548387,3.870968,1.806452,4.645161 +L 1.806452,4.645161,1.806452,5.16129 +L 1.806452,5.16129,1.548387,5.419355 +L 1.548387,5.419355,1.032258,5.16129 +L 1.032258,5.16129,0.774194,4.645161 +L 0.774194,4.645161,0.516129,3.612903 +L 0.516129,3.612903,0.258065,1.806452 +L 0.258065,1.806452,0.258065,0.258065 +L 0.258065,0.258065,0.516129,0 +L 0.516129,0,0.774194,0 +L 0.774194,0,1.290323,0.258065 +L 1.290323,0.258065,1.806452,0.774194 +L 1.806452,0.774194,2.064516,1.548387 +L 2.064516,1.548387,2.064516,2.322581 +L 2.064516,2.322581,2.322581,1.290323 +L 2.322581,1.290323,2.580645,1.032258 +L 2.580645,1.032258,3.096774,1.032258 +L 3.096774,1.032258,3.612903,1.290323 + +[c] 12 +L 1.806452,1.806452,1.806452,2.064516 +L 1.806452,2.064516,1.548387,2.322581 +L 1.548387,2.322581,1.032258,2.322581 +L 1.032258,2.322581,0.516129,2.064516 +L 0.516129,2.064516,0.258065,1.806452 +L 0.258065,1.806452,0,1.290323 +L 0,1.290323,0,0.774194 +L 0,0.774194,0.258065,0.258065 +L 0.258065,0.258065,0.774194,0 +L 0.774194,0,1.548387,0 +L 1.548387,0,2.322581,0.516129 +L 2.322581,0.516129,2.83871,1.290323 + +[d] 20 +L 2.322581,1.548387,2.064516,2.064516 +L 2.064516,2.064516,1.548387,2.322581 +L 1.548387,2.322581,1.032258,2.322581 +L 1.032258,2.322581,0.516129,2.064516 +L 0.516129,2.064516,0.258065,1.806452 +L 0.258065,1.806452,0,1.290323 +L 0,1.290323,0,0.774194 +L 0,0.774194,0.258065,0.258065 +L 0.258065,0.258065,0.774194,0 +L 0.774194,0,1.290323,0 +L 1.290323,0,1.806452,0.258065 +L 1.806452,0.258065,2.064516,0.774194 +L 2.064516,0.774194,3.612903,5.419355 +L 2.580645,2.322581,2.322581,1.032258 +L 2.322581,1.032258,2.322581,0.258065 +L 2.322581,0.258065,2.580645,0 +L 2.580645,0,2.83871,0 +L 2.83871,0,3.354839,0.258065 +L 3.354839,0.258065,3.612903,0.516129 +L 3.612903,0.516129,4.129032,1.290323 + +[e] 15 +L 0.258065,0.516129,0.774194,0.774194 +L 0.774194,0.774194,1.032258,1.032258 +L 1.032258,1.032258,1.290323,1.548387 +L 1.290323,1.548387,1.290323,2.064516 +L 1.290323,2.064516,1.032258,2.322581 +L 1.032258,2.322581,0.774194,2.322581 +L 0.774194,2.322581,0.258065,2.064516 +L 0.258065,2.064516,0,1.548387 +L 0,1.548387,0,0.774194 +L 0,0.774194,0.258065,0.258065 +L 0.258065,0.258065,0.774194,0 +L 0.774194,0,1.290323,0 +L 1.290323,0,1.806452,0.258065 +L 1.806452,0.258065,2.064516,0.516129 +L 2.064516,0.516129,2.580645,1.290323 + +[f] 22 +L 1.290323,1.290323,2.322581,2.580645 +L 2.322581,2.580645,2.83871,3.354839 +L 2.83871,3.354839,3.096774,3.870968 +L 3.096774,3.870968,3.354839,4.645161 +L 3.354839,4.645161,3.354839,5.16129 +L 3.354839,5.16129,3.096774,5.419355 +L 3.096774,5.419355,2.580645,5.16129 +L 2.580645,5.16129,2.322581,4.645161 +L 2.322581,4.645161,1.806452,2.580645 +L 1.806452,2.580645,1.032258,0.258065 +L 1.032258,0.258065,0.258065,-1.548387 +L 0.258065,-1.548387,0,-2.322581 +L 0,-2.322581,0,-2.83871 +L 0,-2.83871,0.258065,-3.096774 +L 0.258065,-3.096774,0.774194,-2.83871 +L 0.774194,-2.83871,1.032258,-2.064516 +L 1.032258,-2.064516,1.290323,0.258065 +L 1.290323,0.258065,1.548387,0 +L 1.548387,0,2.064516,0 +L 2.064516,0,2.580645,0.258065 +L 2.580645,0.258065,2.83871,0.516129 +L 2.83871,0.516129,3.354839,1.290323 + +[g] 24 +L 2.322581,1.548387,2.064516,2.064516 +L 2.064516,2.064516,1.548387,2.322581 +L 1.548387,2.322581,1.032258,2.322581 +L 1.032258,2.322581,0.516129,2.064516 +L 0.516129,2.064516,0.258065,1.806452 +L 0.258065,1.806452,0,1.290323 +L 0,1.290323,0,0.774194 +L 0,0.774194,0.258065,0.258065 +L 0.258065,0.258065,0.774194,0 +L 0.774194,0,1.290323,0 +L 1.290323,0,1.806452,0.258065 +L 1.806452,0.258065,2.064516,0.516129 +L 2.580645,2.322581,2.064516,0.516129 +L 2.064516,0.516129,1.032258,-2.322581 +L 1.032258,-2.322581,0.774194,-2.83871 +L 0.774194,-2.83871,0.258065,-3.096774 +L 0.258065,-3.096774,0,-2.83871 +L 0,-2.83871,0,-2.322581 +L 0,-2.322581,0.258065,-1.548387 +L 0.258065,-1.548387,1.032258,-0.774194 +L 1.032258,-0.774194,1.806452,-0.258065 +L 1.806452,-0.258065,2.322581,0 +L 2.322581,0,3.096774,0.516129 +L 3.096774,0.516129,3.870968,1.290323 + +[h] 25 +L 0,1.290323,0.516129,2.064516 +L 0.516129,2.064516,1.290323,3.354839 +L 1.290323,3.354839,1.548387,3.870968 +L 1.548387,3.870968,1.806452,4.645161 +L 1.806452,4.645161,1.806452,5.16129 +L 1.806452,5.16129,1.548387,5.419355 +L 1.548387,5.419355,1.032258,5.16129 +L 1.032258,5.16129,0.774194,4.645161 +L 0.774194,4.645161,0.516129,3.612903 +L 0.516129,3.612903,0.258065,2.064516 +L 0.258065,2.064516,0,0 +L 0,0,0.258065,0.774194 +L 0.258065,0.774194,0.516129,1.290323 +L 0.516129,1.290323,1.032258,2.064516 +L 1.032258,2.064516,1.548387,2.322581 +L 1.548387,2.322581,2.064516,2.322581 +L 2.064516,2.322581,2.322581,2.064516 +L 2.322581,2.064516,2.322581,1.548387 +L 2.322581,1.548387,2.064516,0.774194 +L 2.064516,0.774194,2.064516,0.258065 +L 2.064516,0.258065,2.322581,0 +L 2.322581,0,2.580645,0 +L 2.580645,0,3.096774,0.258065 +L 3.096774,0.258065,3.354839,0.516129 +L 3.354839,0.516129,3.870968,1.290323 + +[i] 12 +L 0.774194,3.612903,0.774194,3.354839 +L 0.774194,3.354839,1.032258,3.354839 +L 1.032258,3.354839,1.032258,3.612903 +L 1.032258,3.612903,0.774194,3.612903 +L 0,1.290323,0.516129,2.322581 +L 0.516129,2.322581,0,0.774194 +L 0,0.774194,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0 +L 0.516129,0,1.032258,0.258065 +L 1.032258,0.258065,1.290323,0.516129 +L 1.290323,0.516129,1.806452,1.290323 + +[j] 16 +L 2.83871,3.612903,2.83871,3.354839 +L 2.83871,3.354839,3.096774,3.354839 +L 3.096774,3.354839,3.096774,3.612903 +L 3.096774,3.612903,2.83871,3.612903 +L 2.064516,1.290323,2.580645,2.322581 +L 2.580645,2.322581,1.032258,-2.322581 +L 1.032258,-2.322581,0.774194,-2.83871 +L 0.774194,-2.83871,0.258065,-3.096774 +L 0.258065,-3.096774,0,-2.83871 +L 0,-2.83871,0,-2.322581 +L 0,-2.322581,0.258065,-1.548387 +L 0.258065,-1.548387,1.032258,-0.774194 +L 1.032258,-0.774194,1.806452,-0.258065 +L 1.806452,-0.258065,2.322581,0 +L 2.322581,0,3.096774,0.516129 +L 3.096774,0.516129,3.870968,1.290323 + +[k] 27 +L 0,1.290323,0.516129,2.064516 +L 0.516129,2.064516,1.290323,3.354839 +L 1.290323,3.354839,1.548387,3.870968 +L 1.548387,3.870968,1.806452,4.645161 +L 1.806452,4.645161,1.806452,5.16129 +L 1.806452,5.16129,1.548387,5.419355 +L 1.548387,5.419355,1.032258,5.16129 +L 1.032258,5.16129,0.774194,4.645161 +L 0.774194,4.645161,0.516129,3.612903 +L 0.516129,3.612903,0.258065,2.064516 +L 0.258065,2.064516,0,0 +L 0,0,0.258065,0.774194 +L 0.258065,0.774194,0.516129,1.290323 +L 0.516129,1.290323,1.032258,2.064516 +L 1.032258,2.064516,1.548387,2.322581 +L 1.548387,2.322581,2.064516,2.322581 +L 2.064516,2.322581,2.322581,2.064516 +L 2.322581,2.064516,2.322581,1.548387 +L 2.322581,1.548387,1.806452,1.290323 +L 1.806452,1.290323,1.032258,1.290323 +L 1.032258,1.290323,1.548387,1.032258 +L 1.548387,1.032258,1.806452,0.258065 +L 1.806452,0.258065,2.064516,0 +L 2.064516,0,2.322581,0 +L 2.322581,0,2.83871,0.258065 +L 2.83871,0.258065,3.096774,0.516129 +L 3.096774,0.516129,3.612903,1.290323 + +[l] 16 +L 0,1.290323,0.516129,2.064516 +L 0.516129,2.064516,1.290323,3.354839 +L 1.290323,3.354839,1.548387,3.870968 +L 1.548387,3.870968,1.806452,4.645161 +L 1.806452,4.645161,1.806452,5.16129 +L 1.806452,5.16129,1.548387,5.419355 +L 1.548387,5.419355,1.032258,5.16129 +L 1.032258,5.16129,0.774194,4.645161 +L 0.774194,4.645161,0.516129,3.612903 +L 0.516129,3.612903,0.258065,1.806452 +L 0.258065,1.806452,0.258065,0.258065 +L 0.258065,0.258065,0.516129,0 +L 0.516129,0,0.774194,0 +L 0.774194,0,1.290323,0.258065 +L 1.290323,0.258065,1.548387,0.516129 +L 1.548387,0.516129,2.064516,1.290323 + +[m] 27 +L 0,1.290323,0.516129,2.064516 +L 0.516129,2.064516,1.032258,2.322581 +L 1.032258,2.322581,1.290323,2.064516 +L 1.290323,2.064516,1.290323,1.806452 +L 1.290323,1.806452,1.032258,0.774194 +L 1.032258,0.774194,0.774194,0 +L 1.032258,0.774194,1.290323,1.290323 +L 1.290323,1.290323,1.806452,2.064516 +L 1.806452,2.064516,2.322581,2.322581 +L 2.322581,2.322581,2.83871,2.322581 +L 2.83871,2.322581,3.096774,2.064516 +L 3.096774,2.064516,3.096774,1.806452 +L 3.096774,1.806452,2.83871,0.774194 +L 2.83871,0.774194,2.580645,0 +L 2.83871,0.774194,3.096774,1.290323 +L 3.096774,1.290323,3.612903,2.064516 +L 3.612903,2.064516,4.129032,2.322581 +L 4.129032,2.322581,4.645161,2.322581 +L 4.645161,2.322581,4.903226,2.064516 +L 4.903226,2.064516,4.903226,1.548387 +L 4.903226,1.548387,4.645161,0.774194 +L 4.645161,0.774194,4.645161,0.258065 +L 4.645161,0.258065,4.903226,0 +L 4.903226,0,5.16129,0 +L 5.16129,0,5.677419,0.258065 +L 5.677419,0.258065,5.935484,0.516129 +L 5.935484,0.516129,6.451613,1.290323 + +[n] 19 +L 0,1.290323,0.516129,2.064516 +L 0.516129,2.064516,1.032258,2.322581 +L 1.032258,2.322581,1.290323,2.064516 +L 1.290323,2.064516,1.290323,1.806452 +L 1.290323,1.806452,1.032258,0.774194 +L 1.032258,0.774194,0.774194,0 +L 1.032258,0.774194,1.290323,1.290323 +L 1.290323,1.290323,1.806452,2.064516 +L 1.806452,2.064516,2.322581,2.322581 +L 2.322581,2.322581,2.83871,2.322581 +L 2.83871,2.322581,3.096774,2.064516 +L 3.096774,2.064516,3.096774,1.548387 +L 3.096774,1.548387,2.83871,0.774194 +L 2.83871,0.774194,2.83871,0.258065 +L 2.83871,0.258065,3.096774,0 +L 3.096774,0,3.354839,0 +L 3.354839,0,3.870968,0.258065 +L 3.870968,0.258065,4.129032,0.516129 +L 4.129032,0.516129,4.645161,1.290323 + +[o] 21 +L 1.548387,2.322581,1.032258,2.322581 +L 1.032258,2.322581,0.516129,2.064516 +L 0.516129,2.064516,0.258065,1.806452 +L 0.258065,1.806452,0,1.290323 +L 0,1.290323,0,0.774194 +L 0,0.774194,0.258065,0.258065 +L 0.258065,0.258065,0.774194,0 +L 0.774194,0,1.290323,0 +L 1.290323,0,1.806452,0.258065 +L 1.806452,0.258065,2.064516,0.516129 +L 2.064516,0.516129,2.322581,1.032258 +L 2.322581,1.032258,2.322581,1.548387 +L 2.322581,1.548387,2.064516,2.064516 +L 2.064516,2.064516,1.548387,2.322581 +L 1.548387,2.322581,1.290323,2.064516 +L 1.290323,2.064516,1.290323,1.548387 +L 1.290323,1.548387,1.548387,1.032258 +L 1.548387,1.032258,2.064516,0.774194 +L 2.064516,0.774194,2.83871,0.774194 +L 2.83871,0.774194,3.354839,1.032258 +L 3.354839,1.032258,3.612903,1.290323 + +[p] 18 +L 1.032258,1.290323,1.548387,2.064516 +L 1.548387,2.064516,1.806452,2.580645 +L 1.806452,2.580645,1.548387,1.548387 +L 1.548387,1.548387,0,-3.096774 +L 1.548387,1.548387,1.806452,2.064516 +L 1.806452,2.064516,2.322581,2.322581 +L 2.322581,2.322581,2.83871,2.322581 +L 2.83871,2.322581,3.354839,2.064516 +L 3.354839,2.064516,3.612903,1.548387 +L 3.612903,1.548387,3.612903,1.032258 +L 3.612903,1.032258,3.354839,0.516129 +L 3.354839,0.516129,3.096774,0.258065 +L 3.096774,0.258065,2.580645,0 +L 1.548387,0.258065,2.064516,0 +L 2.064516,0,2.83871,0 +L 2.83871,0,3.612903,0.258065 +L 3.612903,0.258065,4.129032,0.516129 +L 4.129032,0.516129,4.903226,1.290323 + +[q] 23 +L 2.322581,1.548387,2.064516,2.064516 +L 2.064516,2.064516,1.548387,2.322581 +L 1.548387,2.322581,1.032258,2.322581 +L 1.032258,2.322581,0.516129,2.064516 +L 0.516129,2.064516,0.258065,1.806452 +L 0.258065,1.806452,0,1.290323 +L 0,1.290323,0,0.774194 +L 0,0.774194,0.258065,0.258065 +L 0.258065,0.258065,0.774194,0 +L 0.774194,0,1.290323,0 +L 1.290323,0,1.806452,0.258065 +L 2.580645,2.322581,2.322581,1.548387 +L 2.322581,1.548387,1.806452,0.258065 +L 1.806452,0.258065,1.032258,-1.548387 +L 1.032258,-1.548387,0.774194,-2.322581 +L 0.774194,-2.322581,0.774194,-2.83871 +L 0.774194,-2.83871,1.032258,-3.096774 +L 1.032258,-3.096774,1.548387,-2.83871 +L 1.548387,-2.83871,1.806452,-2.064516 +L 1.806452,-2.064516,1.806452,-0.258065 +L 1.806452,-0.258065,2.322581,0 +L 2.322581,0,3.096774,0.516129 +L 3.096774,0.516129,3.870968,1.290323 + +[r] 13 +L 0,1.290323,0.516129,2.064516 +L 0.516129,2.064516,0.774194,2.580645 +L 0.774194,2.580645,0.774194,2.064516 +L 0.774194,2.064516,1.548387,2.064516 +L 1.548387,2.064516,1.806452,1.806452 +L 1.806452,1.806452,1.806452,1.290323 +L 1.806452,1.290323,1.548387,0.516129 +L 1.548387,0.516129,1.548387,0.258065 +L 1.548387,0.258065,1.806452,0 +L 1.806452,0,2.064516,0 +L 2.064516,0,2.580645,0.258065 +L 2.580645,0.258065,2.83871,0.516129 +L 2.83871,0.516129,3.354839,1.290323 + +[s] 12 +L 0,1.290323,0.516129,2.064516 +L 0.516129,2.064516,0.774194,2.580645 +L 0.774194,2.580645,0.774194,2.064516 +L 0.774194,2.064516,1.290323,1.290323 +L 1.290323,1.290323,1.548387,0.774194 +L 1.548387,0.774194,1.548387,0.258065 +L 1.548387,0.258065,1.032258,0 +L 0,0.258065,0.516129,0 +L 0.516129,0,1.548387,0 +L 1.548387,0,2.064516,0.258065 +L 2.064516,0.258065,2.322581,0.516129 +L 2.322581,0.516129,2.83871,1.290323 + +[t] 10 +L 0,1.290323,0.516129,2.064516 +L 0.516129,2.064516,1.032258,3.096774 +L 1.806452,5.419355,0.258065,0.774194 +L 0.258065,0.774194,0.258065,0.258065 +L 0.258065,0.258065,0.516129,0 +L 0.516129,0,1.032258,0 +L 1.032258,0,1.548387,0.258065 +L 1.548387,0.258065,1.806452,0.516129 +L 1.806452,0.516129,2.322581,1.290323 +L 0.258065,3.354839,2.064516,3.354839 + +[u] 15 +L 0,1.290323,0.516129,2.322581 +L 0.516129,2.322581,0,0.774194 +L 0,0.774194,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.774194,0 +L 0.774194,0,1.290323,0.258065 +L 1.290323,0.258065,1.806452,0.774194 +L 1.806452,0.774194,2.322581,1.548387 +L 2.580645,2.322581,2.064516,0.774194 +L 2.064516,0.774194,2.064516,0.258065 +L 2.064516,0.258065,2.322581,0 +L 2.322581,0,2.580645,0 +L 2.580645,0,3.096774,0.258065 +L 3.096774,0.258065,3.354839,0.516129 +L 3.354839,0.516129,3.870968,1.290323 + +[v] 13 +L 0,1.290323,0.516129,2.322581 +L 0.516129,2.322581,0.258065,1.032258 +L 0.258065,1.032258,0.258065,0.258065 +L 0.258065,0.258065,0.516129,0 +L 0.516129,0,0.774194,0 +L 0.774194,0,1.548387,0.258065 +L 1.548387,0.258065,2.064516,0.774194 +L 2.064516,0.774194,2.322581,1.548387 +L 2.322581,1.548387,2.322581,2.322581 +L 2.322581,2.322581,2.580645,1.290323 +L 2.580645,1.290323,2.83871,1.032258 +L 2.83871,1.032258,3.354839,1.032258 +L 3.354839,1.032258,3.870968,1.290323 + +[w] 19 +L 0.774194,2.322581,0.258065,1.806452 +L 0.258065,1.806452,0,1.032258 +L 0,1.032258,0,0.516129 +L 0,0.516129,0.258065,0 +L 0.258065,0,0.774194,0 +L 0.774194,0,1.290323,0.258065 +L 1.290323,0.258065,1.806452,0.774194 +L 2.322581,2.322581,1.806452,0.774194 +L 1.806452,0.774194,1.806452,0.258065 +L 1.806452,0.258065,2.064516,0 +L 2.064516,0,2.580645,0 +L 2.580645,0,3.096774,0.258065 +L 3.096774,0.258065,3.612903,0.774194 +L 3.612903,0.774194,3.870968,1.548387 +L 3.870968,1.548387,3.870968,2.322581 +L 3.870968,2.322581,4.129032,1.290323 +L 4.129032,1.290323,4.387097,1.032258 +L 4.387097,1.032258,4.903226,1.032258 +L 4.903226,1.032258,5.419355,1.290323 + +[x] 16 +L 0,1.290323,0.516129,2.064516 +L 0.516129,2.064516,1.032258,2.322581 +L 1.032258,2.322581,1.548387,2.322581 +L 1.548387,2.322581,1.806452,2.064516 +L 1.806452,2.064516,1.806452,0.258065 +L 1.806452,0.258065,2.064516,0 +L 2.064516,0,2.83871,0 +L 2.83871,0,3.612903,0.516129 +L 3.612903,0.516129,4.129032,1.290323 +L 3.354839,2.064516,3.096774,2.322581 +L 3.096774,2.322581,2.580645,2.322581 +L 2.580645,2.322581,2.322581,2.064516 +L 2.322581,2.064516,1.290323,0.258065 +L 1.290323,0.258065,1.032258,0 +L 1.032258,0,0.516129,0 +L 0.516129,0,0.258065,0.258065 + +[y] 19 +L 0,1.290323,0.516129,2.322581 +L 0.516129,2.322581,0,0.774194 +L 0,0.774194,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.774194,0 +L 0.774194,0,1.290323,0.258065 +L 1.290323,0.258065,1.806452,0.774194 +L 1.806452,0.774194,2.322581,1.548387 +L 2.580645,2.322581,1.032258,-2.322581 +L 1.032258,-2.322581,0.774194,-2.83871 +L 0.774194,-2.83871,0.258065,-3.096774 +L 0.258065,-3.096774,0,-2.83871 +L 0,-2.83871,0,-2.322581 +L 0,-2.322581,0.258065,-1.548387 +L 0.258065,-1.548387,1.032258,-0.774194 +L 1.032258,-0.774194,1.806452,-0.258065 +L 1.806452,-0.258065,2.322581,0 +L 2.322581,0,3.096774,0.516129 +L 3.096774,0.516129,3.870968,1.290323 + +[z] 21 +L 0,1.290323,0.516129,2.064516 +L 0.516129,2.064516,1.032258,2.322581 +L 1.032258,2.322581,1.548387,2.322581 +L 1.548387,2.322581,2.064516,1.806452 +L 2.064516,1.806452,2.064516,1.290323 +L 2.064516,1.290323,1.806452,0.774194 +L 1.806452,0.774194,1.290323,0.258065 +L 1.290323,0.258065,0.516129,0 +L 0.516129,0,1.032258,-0.258065 +L 1.032258,-0.258065,1.290323,-0.774194 +L 1.290323,-0.774194,1.290323,-1.548387 +L 1.290323,-1.548387,1.032258,-2.322581 +L 1.032258,-2.322581,0.774194,-2.83871 +L 0.774194,-2.83871,0.258065,-3.096774 +L 0.258065,-3.096774,0,-2.83871 +L 0,-2.83871,0,-2.322581 +L 0,-2.322581,0.258065,-1.548387 +L 0.258065,-1.548387,1.032258,-0.774194 +L 1.032258,-0.774194,1.806452,-0.258065 +L 1.806452,-0.258065,2.83871,0.516129 +L 2.83871,0.516129,3.612903,1.290323 + +[{] 34 +L 1.290323,6.451613,0.774194,6.193548 +L 0.774194,6.193548,0.516129,5.935484 +L 0.516129,5.935484,0.258065,5.419355 +L 0.258065,5.419355,0.258065,4.903226 +L 0.258065,4.903226,0.516129,4.387097 +L 0.516129,4.387097,0.774194,4.129032 +L 0.774194,4.129032,1.032258,3.612903 +L 1.032258,3.612903,1.032258,3.096774 +L 1.032258,3.096774,0.516129,2.580645 +L 0.774194,6.193548,0.516129,5.677419 +L 0.516129,5.677419,0.516129,5.16129 +L 0.516129,5.16129,0.774194,4.645161 +L 0.774194,4.645161,1.032258,4.387097 +L 1.032258,4.387097,1.290323,3.870968 +L 1.290323,3.870968,1.290323,3.354839 +L 1.290323,3.354839,1.032258,2.83871 +L 1.032258,2.83871,0,2.322581 +L 0,2.322581,1.032258,1.806452 +L 1.032258,1.806452,1.290323,1.290323 +L 1.290323,1.290323,1.290323,0.774194 +L 1.290323,0.774194,1.032258,0.258065 +L 1.032258,0.258065,0.774194,0 +L 0.774194,0,0.516129,-0.516129 +L 0.516129,-0.516129,0.516129,-1.032258 +L 0.516129,-1.032258,0.774194,-1.548387 +L 0.516129,2.064516,1.032258,1.548387 +L 1.032258,1.548387,1.032258,1.032258 +L 1.032258,1.032258,0.774194,0.516129 +L 0.774194,0.516129,0.516129,0.258065 +L 0.516129,0.258065,0.258065,-0.258065 +L 0.258065,-0.258065,0.258065,-0.774194 +L 0.258065,-0.774194,0.516129,-1.290323 +L 0.516129,-1.290323,0.774194,-1.548387 +L 0.774194,-1.548387,1.290323,-1.806452 + +[|] 1 +L 0,6.451613,0,-1.806452 + +[}] 34 +L 0,6.451613,0.516129,6.193548 +L 0.516129,6.193548,0.774194,5.935484 +L 0.774194,5.935484,1.032258,5.419355 +L 1.032258,5.419355,1.032258,4.903226 +L 1.032258,4.903226,0.774194,4.387097 +L 0.774194,4.387097,0.516129,4.129032 +L 0.516129,4.129032,0.258065,3.612903 +L 0.258065,3.612903,0.258065,3.096774 +L 0.258065,3.096774,0.774194,2.580645 +L 0.516129,6.193548,0.774194,5.677419 +L 0.774194,5.677419,0.774194,5.16129 +L 0.774194,5.16129,0.516129,4.645161 +L 0.516129,4.645161,0.258065,4.387097 +L 0.258065,4.387097,0,3.870968 +L 0,3.870968,0,3.354839 +L 0,3.354839,0.258065,2.83871 +L 0.258065,2.83871,1.290323,2.322581 +L 1.290323,2.322581,0.258065,1.806452 +L 0.258065,1.806452,0,1.290323 +L 0,1.290323,0,0.774194 +L 0,0.774194,0.258065,0.258065 +L 0.258065,0.258065,0.516129,0 +L 0.516129,0,0.774194,-0.516129 +L 0.774194,-0.516129,0.774194,-1.032258 +L 0.774194,-1.032258,0.516129,-1.548387 +L 0.774194,2.064516,0.258065,1.548387 +L 0.258065,1.548387,0.258065,1.032258 +L 0.258065,1.032258,0.516129,0.516129 +L 0.516129,0.516129,0.774194,0.258065 +L 0.774194,0.258065,1.032258,-0.258065 +L 1.032258,-0.258065,1.032258,-0.774194 +L 1.032258,-0.774194,0.774194,-1.290323 +L 0.774194,-1.290323,0.516129,-1.548387 +L 0.516129,-1.548387,0,-1.806452 + +[~] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[#0104] 24 +L 0,0,0.516129,0.258065 +L 0.516129,0.258065,1.290323,1.032258 +L 1.290323,1.032258,2.064516,2.064516 +L 2.064516,2.064516,3.096774,3.870968 +L 3.096774,3.870968,3.870968,5.419355 +L 3.870968,5.419355,3.870968,0 +L 3.870968,0,3.612903,0.774194 +L 3.612903,0.774194,3.096774,1.548387 +L 3.096774,1.548387,2.580645,2.064516 +L 2.580645,2.064516,1.806452,2.580645 +L 1.806452,2.580645,1.290323,2.580645 +L 1.290323,2.580645,1.032258,2.322581 +L 1.032258,2.322581,1.032258,1.806452 +L 1.032258,1.806452,1.290323,1.290323 +L 1.290323,1.290323,1.806452,0.774194 +L 1.806452,0.774194,2.580645,0.258065 +L 2.580645,0.258065,3.354839,0 +L 3.354839,0,4.645161,0 +L 3.870968,0,3.354839,-0.516129 +L 3.354839,-0.516129,3.096774,-1.032258 +L 3.096774,-1.032258,3.096774,-1.290323 +L 3.096774,-1.290323,3.354839,-1.548387 +L 3.354839,-1.548387,3.612903,-1.290323 +L 3.612903,-1.290323,3.354839,-1.032258 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[#0141] 32 +L 1.032258,2.322581,1.548387,2.322581 +L 1.548387,2.322581,2.580645,2.580645 +L 2.580645,2.580645,3.354839,3.096774 +L 3.354839,3.096774,3.870968,3.612903 +L 3.870968,3.612903,4.129032,4.129032 +L 4.129032,4.129032,4.129032,4.903226 +L 4.129032,4.903226,3.870968,5.419355 +L 3.870968,5.419355,3.354839,5.419355 +L 3.354839,5.419355,3.096774,5.16129 +L 3.096774,5.16129,2.83871,4.645161 +L 2.83871,4.645161,2.580645,3.354839 +L 2.580645,3.354839,2.322581,2.064516 +L 2.322581,2.064516,2.064516,1.290323 +L 2.064516,1.290323,1.806452,0.774194 +L 1.806452,0.774194,1.290323,0.258065 +L 1.290323,0.258065,0.774194,0 +L 0.774194,0,0.258065,0 +L 0.258065,0,0,0.258065 +L 0,0.258065,0,0.774194 +L 0,0.774194,0.258065,1.032258 +L 0.258065,1.032258,0.774194,1.032258 +L 0.774194,1.032258,1.290323,0.774194 +L 1.290323,0.774194,2.064516,0.258065 +L 2.064516,0.258065,2.83871,0 +L 2.83871,0,3.354839,0 +L 3.354839,0,4.129032,0.258065 +L 4.129032,0.258065,4.645161,0.774194 +L 4.129032,2.064516,3.354839,1.548387 +L 3.354839,1.548387,2.580645,1.548387 +L 2.580645,1.548387,1.806452,2.064516 +L 1.806452,2.064516,1.032258,2.064516 +L 1.032258,2.064516,0.516129,1.548387 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[#015A] 32 +L 0,0,0.516129,0.258065 +L 0.516129,0.258065,1.032258,0.774194 +L 1.032258,0.774194,1.806452,1.806452 +L 1.806452,1.806452,2.322581,2.580645 +L 2.322581,2.580645,2.83871,3.612903 +L 2.83871,3.612903,3.096774,4.387097 +L 3.096774,4.387097,3.096774,5.16129 +L 3.096774,5.16129,2.83871,5.419355 +L 2.83871,5.419355,2.580645,5.419355 +L 2.580645,5.419355,2.322581,5.16129 +L 2.322581,5.16129,2.064516,4.645161 +L 2.064516,4.645161,2.064516,4.129032 +L 2.064516,4.129032,2.322581,3.612903 +L 2.322581,3.612903,2.83871,3.096774 +L 2.83871,3.096774,3.612903,2.580645 +L 3.612903,2.580645,4.129032,2.064516 +L 4.129032,2.064516,4.387097,1.548387 +L 4.387097,1.548387,4.387097,1.032258 +L 4.387097,1.032258,4.129032,0.516129 +L 4.129032,0.516129,3.870968,0.258065 +L 3.870968,0.258065,3.096774,0 +L 3.096774,0,2.064516,0 +L 2.064516,0,1.290323,0.258065 +L 1.290323,0.258065,0.774194,0.774194 +L 0.774194,0.774194,0.516129,1.290323 +L 0.516129,1.290323,0.516129,1.806452 +L 3.354839,6.967742,3.096774,7.225806 +L 3.096774,7.225806,3.354839,7.483871 +L 3.354839,7.483871,3.612903,7.225806 +L 3.612903,7.225806,3.612903,6.967742 +L 3.612903,6.967742,3.354839,6.451613 +L 3.354839,6.451613,2.83871,5.935484 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[#0179] 44 +L 2.83871,3.870968,2.580645,3.354839 +L 2.580645,3.354839,2.322581,3.096774 +L 2.322581,3.096774,1.806452,2.83871 +L 1.806452,2.83871,1.290323,2.83871 +L 1.290323,2.83871,1.032258,3.354839 +L 1.032258,3.354839,1.032258,3.870968 +L 1.032258,3.870968,1.290323,4.645161 +L 1.290323,4.645161,1.806452,5.16129 +L 1.806452,5.16129,2.580645,5.419355 +L 2.580645,5.419355,3.354839,5.419355 +L 3.354839,5.419355,3.870968,5.16129 +L 3.870968,5.16129,4.129032,4.645161 +L 4.129032,4.645161,4.129032,3.612903 +L 4.129032,3.612903,3.870968,2.83871 +L 3.870968,2.83871,3.354839,1.806452 +L 3.354839,1.806452,2.580645,1.032258 +L 2.580645,1.032258,1.548387,0.258065 +L 1.548387,0.258065,1.032258,0 +L 1.032258,0,0.258065,0 +L 0.258065,0,0,0.258065 +L 0,0.258065,0,0.774194 +L 0,0.774194,0.258065,1.032258 +L 0.258065,1.032258,1.032258,1.032258 +L 1.032258,1.032258,1.548387,0.774194 +L 1.548387,0.774194,1.806452,0.516129 +L 1.806452,0.516129,2.064516,0 +L 2.064516,0,2.064516,-0.774194 +L 2.064516,-0.774194,1.806452,-1.548387 +L 1.806452,-1.548387,1.548387,-2.064516 +L 1.548387,-2.064516,1.032258,-2.83871 +L 1.032258,-2.83871,0.516129,-3.096774 +L 0.516129,-3.096774,0.258065,-2.83871 +L 0.258065,-2.83871,0.258065,-2.322581 +L 0.258065,-2.322581,0.516129,-1.548387 +L 0.516129,-1.548387,1.032258,-0.774194 +L 1.032258,-0.774194,1.806452,0 +L 1.806452,0,2.580645,0.516129 +L 2.580645,0.516129,4.129032,1.290323 +L 3.354839,6.967742,3.096774,7.225806 +L 3.096774,7.225806,3.354839,7.483871 +L 3.354839,7.483871,3.612903,7.225806 +L 3.612903,7.225806,3.612903,6.967742 +L 3.612903,6.967742,3.354839,6.451613 +L 3.354839,6.451613,2.83871,5.935484 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[#017B] 42 +L 2.83871,3.870968,2.580645,3.354839 +L 2.580645,3.354839,2.322581,3.096774 +L 2.322581,3.096774,1.806452,2.83871 +L 1.806452,2.83871,1.290323,2.83871 +L 1.290323,2.83871,1.032258,3.354839 +L 1.032258,3.354839,1.032258,3.870968 +L 1.032258,3.870968,1.290323,4.645161 +L 1.290323,4.645161,1.806452,5.16129 +L 1.806452,5.16129,2.580645,5.419355 +L 2.580645,5.419355,3.354839,5.419355 +L 3.354839,5.419355,3.870968,5.16129 +L 3.870968,5.16129,4.129032,4.645161 +L 4.129032,4.645161,4.129032,3.612903 +L 4.129032,3.612903,3.870968,2.83871 +L 3.870968,2.83871,3.354839,1.806452 +L 3.354839,1.806452,2.580645,1.032258 +L 2.580645,1.032258,1.548387,0.258065 +L 1.548387,0.258065,1.032258,0 +L 1.032258,0,0.258065,0 +L 0.258065,0,0,0.258065 +L 0,0.258065,0,0.774194 +L 0,0.774194,0.258065,1.032258 +L 0.258065,1.032258,1.032258,1.032258 +L 1.032258,1.032258,1.548387,0.774194 +L 1.548387,0.774194,1.806452,0.516129 +L 1.806452,0.516129,2.064516,0 +L 2.064516,0,2.064516,-0.774194 +L 2.064516,-0.774194,1.806452,-1.548387 +L 1.806452,-1.548387,1.548387,-2.064516 +L 1.548387,-2.064516,1.032258,-2.83871 +L 1.032258,-2.83871,0.516129,-3.096774 +L 0.516129,-3.096774,0.258065,-2.83871 +L 0.258065,-2.83871,0.258065,-2.322581 +L 0.258065,-2.322581,0.516129,-1.548387 +L 0.516129,-1.548387,1.032258,-0.774194 +L 1.032258,-0.774194,1.806452,0 +L 1.806452,0,2.580645,0.516129 +L 2.580645,0.516129,4.129032,1.290323 +L 3.096774,6.451613,2.83871,6.193548 +L 2.83871,6.193548,3.096774,5.935484 +L 3.096774,5.935484,3.354839,6.193548 +L 3.354839,6.193548,3.096774,6.451613 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[#0105] 26 +L 2.322581,1.548387,2.064516,2.064516 +L 2.064516,2.064516,1.548387,2.322581 +L 1.548387,2.322581,1.032258,2.322581 +L 1.032258,2.322581,0.516129,2.064516 +L 0.516129,2.064516,0.258065,1.806452 +L 0.258065,1.806452,0,1.290323 +L 0,1.290323,0,0.774194 +L 0,0.774194,0.258065,0.258065 +L 0.258065,0.258065,0.774194,0 +L 0.774194,0,1.290323,0 +L 1.290323,0,1.806452,0.258065 +L 1.806452,0.258065,2.064516,0.774194 +L 2.064516,0.774194,2.580645,2.322581 +L 2.580645,2.322581,2.322581,1.032258 +L 2.322581,1.032258,2.322581,0.258065 +L 2.322581,0.258065,2.580645,0 +L 2.580645,0,2.83871,0 +L 2.83871,0,3.354839,0.258065 +L 3.354839,0.258065,3.612903,0.516129 +L 3.612903,0.516129,4.129032,1.290323 +L 2.83871,0,2.322581,-0.516129 +L 2.322581,-0.516129,2.064516,-1.032258 +L 2.064516,-1.032258,2.064516,-1.290323 +L 2.064516,-1.290323,2.322581,-1.548387 +L 2.322581,-1.548387,2.580645,-1.290323 +L 2.580645,-1.290323,2.322581,-1.032258 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[#0142] 21 +L 0,1.290323,0.516129,2.064516 +L 0.516129,2.064516,1.290323,3.354839 +L 1.290323,3.354839,1.548387,3.870968 +L 1.548387,3.870968,1.806452,4.645161 +L 1.806452,4.645161,1.806452,5.16129 +L 1.806452,5.16129,1.548387,5.419355 +L 1.548387,5.419355,1.032258,5.16129 +L 1.032258,5.16129,0.774194,4.645161 +L 0.774194,4.645161,0.516129,3.612903 +L 0.516129,3.612903,0.258065,1.806452 +L 0.258065,1.806452,0.258065,0.258065 +L 0.258065,0.258065,0.516129,0 +L 0.516129,0,0.774194,0 +L 0.774194,0,1.290323,0.258065 +L 1.290323,0.258065,1.548387,0.516129 +L 1.548387,0.516129,2.064516,1.290323 +L 2.580645,5.935484,2.322581,5.677419 +L 2.322581,5.677419,1.806452,5.419355 +L 1.806452,5.419355,1.548387,5.419355 +L 1.548387,5.419355,1.032258,5.677419 +L 1.032258,5.677419,0.516129,5.419355 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[#015B] 18 +L 0,1.290323,0.516129,2.064516 +L 0.516129,2.064516,0.774194,2.580645 +L 0.774194,2.580645,0.774194,2.064516 +L 0.774194,2.064516,1.290323,1.290323 +L 1.290323,1.290323,1.548387,0.774194 +L 1.548387,0.774194,1.548387,0.258065 +L 1.548387,0.258065,1.032258,0 +L 0,0.258065,0.516129,0 +L 0.516129,0,1.548387,0 +L 1.548387,0,2.064516,0.258065 +L 2.064516,0.258065,2.322581,0.516129 +L 2.322581,0.516129,2.83871,1.290323 +L 1.548387,4.129032,1.290323,4.387097 +L 1.290323,4.387097,1.548387,4.645161 +L 1.548387,4.645161,1.806452,4.387097 +L 1.806452,4.387097,1.806452,4.129032 +L 1.806452,4.129032,1.548387,3.612903 +L 1.548387,3.612903,1.032258,3.096774 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[#017A] 27 +L 0,1.290323,0.516129,2.064516 +L 0.516129,2.064516,1.032258,2.322581 +L 1.032258,2.322581,1.548387,2.322581 +L 1.548387,2.322581,2.064516,1.806452 +L 2.064516,1.806452,2.064516,1.290323 +L 2.064516,1.290323,1.806452,0.774194 +L 1.806452,0.774194,1.290323,0.258065 +L 1.290323,0.258065,0.516129,0 +L 0.516129,0,1.032258,-0.258065 +L 1.032258,-0.258065,1.290323,-0.774194 +L 1.290323,-0.774194,1.290323,-1.548387 +L 1.290323,-1.548387,1.032258,-2.322581 +L 1.032258,-2.322581,0.774194,-2.83871 +L 0.774194,-2.83871,0.258065,-3.096774 +L 0.258065,-3.096774,0,-2.83871 +L 0,-2.83871,0,-2.322581 +L 0,-2.322581,0.258065,-1.548387 +L 0.258065,-1.548387,1.032258,-0.774194 +L 1.032258,-0.774194,1.806452,-0.258065 +L 1.806452,-0.258065,2.83871,0.516129 +L 2.83871,0.516129,3.612903,1.290323 +L 2.064516,3.870968,1.806452,4.129032 +L 1.806452,4.129032,2.064516,4.387097 +L 2.064516,4.387097,2.322581,4.129032 +L 2.322581,4.129032,2.322581,3.870968 +L 2.322581,3.870968,2.064516,3.354839 +L 2.064516,3.354839,1.548387,2.83871 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[#017C] 25 +L 0,1.290323,0.516129,2.064516 +L 0.516129,2.064516,1.032258,2.322581 +L 1.032258,2.322581,1.548387,2.322581 +L 1.548387,2.322581,2.064516,1.806452 +L 2.064516,1.806452,2.064516,1.290323 +L 2.064516,1.290323,1.806452,0.774194 +L 1.806452,0.774194,1.290323,0.258065 +L 1.290323,0.258065,0.516129,0 +L 0.516129,0,1.032258,-0.258065 +L 1.032258,-0.258065,1.290323,-0.774194 +L 1.290323,-0.774194,1.290323,-1.548387 +L 1.290323,-1.548387,1.032258,-2.322581 +L 1.032258,-2.322581,0.774194,-2.83871 +L 0.774194,-2.83871,0.258065,-3.096774 +L 0.258065,-3.096774,0,-2.83871 +L 0,-2.83871,0,-2.322581 +L 0,-2.322581,0.258065,-1.548387 +L 0.258065,-1.548387,1.032258,-0.774194 +L 1.032258,-0.774194,1.806452,-0.258065 +L 1.806452,-0.258065,2.83871,0.516129 +L 2.83871,0.516129,3.612903,1.290323 +L 1.548387,3.354839,1.290323,3.096774 +L 1.290323,3.096774,1.548387,2.83871 +L 1.548387,2.83871,1.806452,3.096774 +L 1.806452,3.096774,1.548387,3.354839 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[#0106] 28 +L 2.322581,3.870968,2.322581,3.612903 +L 2.322581,3.612903,2.580645,3.354839 +L 2.580645,3.354839,3.096774,3.354839 +L 3.096774,3.354839,3.612903,3.612903 +L 3.612903,3.612903,3.870968,4.129032 +L 3.870968,4.129032,3.870968,4.645161 +L 3.870968,4.645161,3.612903,5.16129 +L 3.612903,5.16129,3.096774,5.419355 +L 3.096774,5.419355,2.322581,5.419355 +L 2.322581,5.419355,1.548387,5.16129 +L 1.548387,5.16129,1.032258,4.645161 +L 1.032258,4.645161,0.516129,3.870968 +L 0.516129,3.870968,0.258065,3.354839 +L 0.258065,3.354839,0,2.322581 +L 0,2.322581,0,1.290323 +L 0,1.290323,0.258065,0.516129 +L 0.258065,0.516129,0.516129,0.258065 +L 0.516129,0.258065,1.032258,0 +L 1.032258,0,1.548387,0 +L 1.548387,0,2.322581,0.258065 +L 2.322581,0.258065,2.83871,0.774194 +L 2.83871,0.774194,3.096774,1.290323 +L 3.096774,6.967742,2.83871,7.225806 +L 2.83871,7.225806,3.096774,7.483871 +L 3.096774,7.483871,3.354839,7.225806 +L 3.354839,7.225806,3.354839,6.967742 +L 3.354839,6.967742,3.096774,6.451613 +L 3.096774,6.451613,2.580645,5.935484 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[#0118] 32 +L 2.83871,4.387097,2.83871,4.129032 +L 2.83871,4.129032,3.096774,3.870968 +L 3.096774,3.870968,3.612903,3.870968 +L 3.612903,3.870968,3.870968,4.129032 +L 3.870968,4.129032,3.870968,4.645161 +L 3.870968,4.645161,3.612903,5.16129 +L 3.612903,5.16129,2.83871,5.419355 +L 2.83871,5.419355,1.806452,5.419355 +L 1.806452,5.419355,1.032258,5.16129 +L 1.032258,5.16129,0.774194,4.645161 +L 0.774194,4.645161,0.774194,3.870968 +L 0.774194,3.870968,1.032258,3.354839 +L 1.032258,3.354839,1.290323,3.096774 +L 1.290323,3.096774,2.064516,2.83871 +L 2.064516,2.83871,1.290323,2.83871 +L 1.290323,2.83871,0.516129,2.580645 +L 0.516129,2.580645,0.258065,2.322581 +L 0.258065,2.322581,0,1.806452 +L 0,1.806452,0,1.032258 +L 0,1.032258,0.258065,0.516129 +L 0.258065,0.516129,0.516129,0.258065 +L 0.516129,0.258065,1.290323,0 +L 1.290323,0,2.064516,0 +L 2.064516,0,2.83871,0.258065 +L 2.83871,0.258065,3.354839,0.774194 +L 3.354839,0.774194,3.612903,1.290323 +L 2.064516,0,1.548387,-0.516129 +L 1.548387,-0.516129,1.290323,-1.032258 +L 1.290323,-1.032258,1.290323,-1.290323 +L 1.290323,-1.290323,1.548387,-1.548387 +L 1.548387,-1.548387,1.806452,-1.290323 +L 1.806452,-1.290323,1.548387,-1.032258 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[#0143] 34 +L 0.774194,3.612903,0.258065,3.870968 +L 0.258065,3.870968,0,4.387097 +L 0,4.387097,0,4.645161 +L 0,4.645161,0.258065,5.16129 +L 0.258065,5.16129,0.774194,5.419355 +L 0.774194,5.419355,1.032258,5.419355 +L 1.032258,5.419355,1.548387,5.16129 +L 1.548387,5.16129,1.806452,4.645161 +L 1.806452,4.645161,1.806452,4.129032 +L 1.806452,4.129032,1.548387,2.83871 +L 1.548387,2.83871,1.290323,1.806452 +L 1.290323,1.806452,0.774194,0 +L 1.290323,1.806452,2.064516,3.870968 +L 2.064516,3.870968,2.580645,4.903226 +L 2.580645,4.903226,2.83871,5.16129 +L 2.83871,5.16129,3.354839,5.419355 +L 3.354839,5.419355,3.870968,5.419355 +L 3.870968,5.419355,4.387097,5.16129 +L 4.387097,5.16129,4.645161,4.645161 +L 4.645161,4.645161,4.645161,4.129032 +L 4.645161,4.129032,4.387097,2.83871 +L 4.387097,2.83871,3.870968,1.032258 +L 3.870968,1.032258,3.870968,0.258065 +L 3.870968,0.258065,4.129032,0 +L 4.129032,0,4.387097,0 +L 4.387097,0,4.903226,0.258065 +L 4.903226,0.258065,5.16129,0.516129 +L 5.16129,0.516129,5.677419,1.290323 +L 4.129032,6.967742,3.870968,7.225806 +L 3.870968,7.225806,4.129032,7.483871 +L 4.129032,7.483871,4.387097,7.225806 +L 4.387097,7.225806,4.387097,6.967742 +L 4.387097,6.967742,4.129032,6.451613 +L 4.129032,6.451613,3.612903,5.935484 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[#00D3] 33 +L 2.322581,5.419355,1.548387,5.16129 +L 1.548387,5.16129,1.032258,4.645161 +L 1.032258,4.645161,0.516129,3.870968 +L 0.516129,3.870968,0.258065,3.354839 +L 0.258065,3.354839,0,2.322581 +L 0,2.322581,0,1.290323 +L 0,1.290323,0.258065,0.516129 +L 0.258065,0.516129,0.516129,0.258065 +L 0.516129,0.258065,1.032258,0 +L 1.032258,0,1.548387,0 +L 1.548387,0,2.322581,0.258065 +L 2.322581,0.258065,2.83871,0.774194 +L 2.83871,0.774194,3.354839,1.548387 +L 3.354839,1.548387,3.612903,2.064516 +L 3.612903,2.064516,3.870968,3.096774 +L 3.870968,3.096774,3.870968,4.129032 +L 3.870968,4.129032,3.612903,4.903226 +L 3.612903,4.903226,3.354839,5.16129 +L 3.354839,5.16129,2.83871,5.419355 +L 2.83871,5.419355,2.322581,5.419355 +L 2.322581,5.419355,1.806452,4.903226 +L 1.806452,4.903226,1.806452,4.129032 +L 1.806452,4.129032,2.064516,3.354839 +L 2.064516,3.354839,2.580645,2.580645 +L 2.580645,2.580645,3.096774,2.064516 +L 3.096774,2.064516,3.870968,1.548387 +L 3.870968,1.548387,4.387097,1.290323 +L 3.096774,6.967742,2.83871,7.225806 +L 2.83871,7.225806,3.096774,7.483871 +L 3.096774,7.483871,3.354839,7.225806 +L 3.354839,7.225806,3.354839,6.967742 +L 3.354839,6.967742,3.096774,6.451613 +L 3.096774,6.451613,2.580645,5.935484 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[#0107] 18 +L 1.806452,1.806452,1.806452,2.064516 +L 1.806452,2.064516,1.548387,2.322581 +L 1.548387,2.322581,1.032258,2.322581 +L 1.032258,2.322581,0.516129,2.064516 +L 0.516129,2.064516,0.258065,1.806452 +L 0.258065,1.806452,0,1.290323 +L 0,1.290323,0,0.774194 +L 0,0.774194,0.258065,0.258065 +L 0.258065,0.258065,0.774194,0 +L 0.774194,0,1.548387,0 +L 1.548387,0,2.322581,0.516129 +L 2.322581,0.516129,2.83871,1.290323 +L 1.806452,3.870968,1.548387,4.129032 +L 1.548387,4.129032,1.806452,4.387097 +L 1.806452,4.387097,2.064516,4.129032 +L 2.064516,4.129032,2.064516,3.870968 +L 2.064516,3.870968,1.806452,3.354839 +L 1.806452,3.354839,1.290323,2.83871 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[#0119] 21 +L 0.258065,0.516129,0.774194,0.774194 +L 0.774194,0.774194,1.032258,1.032258 +L 1.032258,1.032258,1.290323,1.548387 +L 1.290323,1.548387,1.290323,2.064516 +L 1.290323,2.064516,1.032258,2.322581 +L 1.032258,2.322581,0.774194,2.322581 +L 0.774194,2.322581,0.258065,2.064516 +L 0.258065,2.064516,0,1.548387 +L 0,1.548387,0,0.774194 +L 0,0.774194,0.258065,0.258065 +L 0.258065,0.258065,0.774194,0 +L 0.774194,0,1.290323,0 +L 1.290323,0,1.806452,0.258065 +L 1.806452,0.258065,2.064516,0.516129 +L 2.064516,0.516129,2.580645,1.290323 +L 1.290323,0,0.774194,-0.516129 +L 0.774194,-0.516129,0.516129,-1.032258 +L 0.516129,-1.032258,0.516129,-1.290323 +L 0.516129,-1.290323,0.774194,-1.548387 +L 0.774194,-1.548387,1.032258,-1.290323 +L 1.032258,-1.290323,0.774194,-1.032258 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[#0144] 25 +L 0,1.290323,0.516129,2.064516 +L 0.516129,2.064516,1.032258,2.322581 +L 1.032258,2.322581,1.290323,2.064516 +L 1.290323,2.064516,1.290323,1.806452 +L 1.290323,1.806452,1.032258,0.774194 +L 1.032258,0.774194,0.774194,0 +L 1.032258,0.774194,1.290323,1.290323 +L 1.290323,1.290323,1.806452,2.064516 +L 1.806452,2.064516,2.322581,2.322581 +L 2.322581,2.322581,2.83871,2.322581 +L 2.83871,2.322581,3.096774,2.064516 +L 3.096774,2.064516,3.096774,1.548387 +L 3.096774,1.548387,2.83871,0.774194 +L 2.83871,0.774194,2.83871,0.258065 +L 2.83871,0.258065,3.096774,0 +L 3.096774,0,3.354839,0 +L 3.354839,0,3.870968,0.258065 +L 3.870968,0.258065,4.129032,0.516129 +L 4.129032,0.516129,4.645161,1.290323 +L 2.83871,3.870968,2.580645,4.129032 +L 2.580645,4.129032,2.83871,4.387097 +L 2.83871,4.387097,3.096774,4.129032 +L 3.096774,4.129032,3.096774,3.870968 +L 3.096774,3.870968,2.83871,3.354839 +L 2.83871,3.354839,2.322581,2.83871 + +[] 4 +L 0.258065,0.516129,0,0.258065 +L 0,0.258065,0.258065,0 +L 0.258065,0,0.516129,0.258065 +L 0.516129,0.258065,0.258065,0.516129 + +[#00F3] 27 +L 1.548387,2.322581,1.032258,2.322581 +L 1.032258,2.322581,0.516129,2.064516 +L 0.516129,2.064516,0.258065,1.806452 +L 0.258065,1.806452,0,1.290323 +L 0,1.290323,0,0.774194 +L 0,0.774194,0.258065,0.258065 +L 0.258065,0.258065,0.774194,0 +L 0.774194,0,1.290323,0 +L 1.290323,0,1.806452,0.258065 +L 1.806452,0.258065,2.064516,0.516129 +L 2.064516,0.516129,2.322581,1.032258 +L 2.322581,1.032258,2.322581,1.548387 +L 2.322581,1.548387,2.064516,2.064516 +L 2.064516,2.064516,1.548387,2.322581 +L 1.548387,2.322581,1.290323,2.064516 +L 1.290323,2.064516,1.290323,1.548387 +L 1.290323,1.548387,1.548387,1.032258 +L 1.548387,1.032258,2.064516,0.774194 +L 2.064516,0.774194,2.83871,0.774194 +L 2.83871,0.774194,3.354839,1.032258 +L 3.354839,1.032258,3.612903,1.290323 +L 2.064516,3.870968,1.806452,4.129032 +L 1.806452,4.129032,2.064516,4.387097 +L 2.064516,4.387097,2.322581,4.129032 +L 2.322581,4.129032,2.322581,3.870968 +L 2.322581,3.870968,2.064516,3.354839 +L 2.064516,3.354839,1.548387,2.83871 + +#EOF diff --git a/pycam/share/fonts/standard.cxf b/pycam/share/fonts/standard.cxf new file mode 100644 index 00000000..33d4073b --- /dev/null +++ b/pycam/share/fonts/standard.cxf @@ -0,0 +1,655 @@ +# Format: QCad II Font +# Creator: CAM Expert +# Version: 2.0.3.2 +# Name: Standard +# Name: Normal +# Encoding: ISO8859-1 +# LetterSpacing: 3.000000 +# WordSpacing: 6.750000 +# LineSpacingFactor: 1.000000 +# Author: Andrew Mustun + +[0021] ! +L 0,9,0,3 +L 0,0,0,0.5 + +[0022] " +L 0.5,7,1,9 +L 3.5,7,4,9 + +[0023] # +L 2,0,2,9 +L 5,9,5,0 +L 0,2.5,7,2.5 +L 7,6.5,0,6.5 + +[0026] & +L 6,3.214990,3.425964,0.597640 +A 2,2,2,135.478088,315.478088 +L 0.574036,3.402360,3.569458,6.448230 +A 2.5,7.5,1.5,315.478271,209.372314 +L 1.192810,6.764280,5,0 + +[0027] ' +L 0.5,7,1,9 + +[0028] ( +A 13,4,13,157.380142,202.619858 + +[0029] ) +A -12,4,13,337.380127,22.619860 + +[002a] * +L 0,6,4,2 +L 4,6,0,2 + +[002b] + +L 0,4,4,4 +L 2,6,2,2 + +[002c] , +L 1,0,0,-3 +L 1,0,1,0.5 + +[002d] - +L 0,4,4,4 + +[002e] . +L 0,0,0,0.5 + +[002f] / +L 4,9,0,0 + +[0030] 0 +A 2,7.910490,1.089510,32.756950,147.243042 +A 4.933350,5.623520,4.805590,143.232468,169.491135 +A 4.933350,3.376480,4.805590,190.508865,216.767532 +A 2,1.089510,1.089510,212.756958,327.243042 +A -0.933350,3.376480,4.805590,323.232452,349.491119 +A -5.404663,4.469060,9.404730,347.913147,0.188510 +A -5.404663,4.530940,9.404730,359.811493,12.086860 +A -0.933350,5.623520,4.805590,10.508870,36.767540 +A 9.404663,4.469060,9.404730,179.811493,192.086868 +A 9.404663,4.530940,9.404730,167.913132,180.188507 + +[0031] 1 +L 0,7,2,9 +L 2,9,2,0 + +[0032] 2 +L 4,0,0,0 +L 0,0,3.864502,6.646680 +A 3,7.149310,1,329.825470,20.529110 +A 2,7,2,14.477510,165.522491 + +[0033] 3 +L 0,9,2,9 +A 2,7,2,270,90 +L 2,5,1,5 +A 2,3,2,0,90 +L 4,3,4,2 +A 2,2,2,270,0 +L 2,0,0,0 + +[0034] 4 +L 3.5,0,3.5,4 +L 5,2,0,2 +L 0,2,2,9 + +[0035] 5 +L 4,9,0,9 +L 0,9,0,5 +L 0,5,2,5 +A 2,3,2,0,90 +L 4,3,4,2 +A 2,2,2,270,0 +L 2,0,0,0 + +[0036] 6 +A 6,3.803850,6,120,180 +L 0,3.803850,0,2 +A 2,2,2,180,0 +L 4,2,4,3 +A 2,3,2,0,90 +L 2,5,0.120422,5 + +[0037] 7 +L 0,9,4,9 +L 4,9,1.5,0 +L 2,5,4,5 + +[0038] 8 +L 0,3,0,2 +A 2,2,2,180,0 +L 4,2,4,3 +A 2,3,2,0,180 +L 0.25,7.25,0.25,6.75 +A 2,6.75,1.75,180,0 +L 3.75,6.75,3.75,7.25 +A 2,7.25,1.75,0,180 + +[0039] 9 +A -2,5.196150,6,300,0 +L 4,5.196150,4,7 +A 2,7,2,0,180 +L 0,7,0,6 +A 2,6,2,180,270 +L 2,4,3.879578,4 + +[003a] : +L 0,0,0,0.5 +L 0,4,0,3.5 + +[003b] ; +L 1,0,0,-3 +L 1,0,1,0.5 +L 1,4,1,3.5 + +[003c] < +L 4,7,0,3.5 +L 0,3.5,4,0 + +[003d] = +L 0,5.5,4,5.5 +L 0,2.5,4,2.5 + +[003e] > +L 0,7,4,3.5 +L 4,3.5,0,0 + +[003f] ? +L 2,0,2,0.5 +L 2,3,2,3.394450 +L 0,7,0,7.5 +L 1.5,9,2.5,9 +L 3.664062,6.496150,2.335938,4.503850 +A 4,3.394450,2,146.309937,180 +A 2,7.605550,2,326.309998,358.379272 +A 1.5,7.5,1.5,90,180 +A 2.5,7.5,1.5,1.871470,90 + +[0040] @ +L 8,1,6.067566,0.281860 +A 4.5,4.5,4.5,333.472015,290.386322 +A 7.412354,2.943008,1.200000,168.690186,337.880432 +A 4.439636,4,2,168.689804,270 +A 5.170288,5.5,1.5,348.690002,90 +A 5.049561,4.5,2.5,90,168.690094 +L 2.478455,4.392246,2.598083,4.990294 +A 4.360352,4,2,270,348.689850 +L 4.360352,2,4.439636,2 +L 6.321533,3.607756,7,7 +L 5.049561,7,5.170288,7 + +[0041] A +L 0,0,3,9 +L 3,9,6,0 +L 0.833313,2.5,5.166687,2.5 + +[0042] B +L 0,0,0,9 +L 0,9,2.5,9 +A 2.5,7,2,270,90 +L 0,5,2.599976,5 +A 2.599976,2.600000,2.400000,0,90 +L 5,2.600000,5,2.400000 +A 2.599976,2.400000,2.400000,270,0 +L 2.599976,0,0,0 + +[0043] C +L 4,9,2,9 +A 2,7,2,90,180 +L 0,7,0,2 +A 2,2,2,180,270 +L 2,0,4,0 + +[0044] D +L 0,0,3,0 +A 3,2,2,270,0 +L 5,2,5,7 +A 3,7,2,0,90 +L 3,9,0,9 +L 0,9,0,0 + +[0045] E +L 4,9,0,9 +L 0,9,0,0 +L 0,0,4,0 +L 0,5,3,5 + +[0046] F +L 4,9,0,9 +L 0,9,0,0 +L 0,5,4,5 + +[0047] G +L 5,9,2,9 +A 2,7,2,90,180 +L 0,7,0,2 +A 2,2,2,180,270 +L 2,0,5,0 +L 5,0,5,5 +L 5,5,3.5,5 + +[0048] H +L 0,9,0,0 +L 5,0,5,9 +L 0,5,5,5 + +[0049] I +L 0,9,0,0 + +[004a] J +L 3,9,3,2 +A 1,2,2,270,0 +L 1,0,0,0 + +[004b] K +L 0,9,0,0 +L 0,3.5,5,9 +L 1.671326,5.338440,5,0 + +[004c] L +L 0,9,0,0 +L 0,0,4,0 + +[004d] M +L 0,0,0,9 +L 0,9,3,4 +L 3,4,6,9 +L 6,9,6,0 + +[004e] N +L 0,0,0,9 +L 0,9,5,0 +L 5,0,5,9 + +[004f] O +L 0,2,0,7 +A 2,7,2,90,180 +L 2,9,3,9 +A 3,7,2,0,90 +L 5,7,5,2 +A 3,2,2,270,0 +L 3,0,2,0 +A 2,2,2,180,270 + +[0050] P +L 0,0,0,9 +L 0,9,3,9 +A 3,7,2,0,90 +L 5,7,5,6 +A 3,6,2,270,0 +L 3,4,0,4 + +[0051] Q +L 0,2,0,7 +A 2,7,2,90,180 +L 2,9,3,9 +A 3,7,2,0,90 +L 5,7,5,2 +A 3,2,2,270,0 +L 3,0,2,0 +A 2,2,2,180,270 +L 6,0,3,2 + +[0052] R +L 0,0,0,9 +L 0,9,3,9 +A 3,7,2,0,90 +L 5,7,5,6 +A 3,6,2,270,0 +L 3,4,0,4 +L 3,4,5,0 + +[0053] S +A 2,2.375000,6.625000,63.074589,90 +A 2,7,2,90,242.981201 +L 1.091431,5.218290,3.908569,3.781710 +A 3,2,2,270,62.981190 +A 3,6.625000,6.625000,243.074585,270 + +[0054] T +L 0,9,6,9 +L 3,9,3,0 + +[0055] U +L 0,9,0,2.5 +A 2.5,2.5,2.5,180,0 +L 5,2.5,5,9 + +[0056] V +L 0,9,3,0 +L 3,0,6,9 + +[0057] W +L 0,9,2,0 +L 2,0,4,6 +L 4,6,6,0 +L 6,0,8,9 + +[0058] X +L 0,9,6,0 +L 0,0,6,9 + +[0059] Y +L 0,9,3,5 +L 3,5,3,0 +L 3,5,6,9 + +[005a] Z +L 0,9,5,9 +L 5,9,0,0 +L 0,0,5,0 + +[005b] [ +L 1,-1,0,-1 +L 0,-1,0,9 +L 0,9,1,9 + +[005c] \ +L 0,9,4,0 + +[005d] ] +L 0,9,1,9 +L 1,9,1,-1 +L 1,-1,0,-1 + +[0061] a +L 0.5,6,2.5,6 +A 2.5,4.5,1.5,0,90 +L 4,4.5,4,0 +L 4,0,1.5,0 +A 1.5,1.5,1.5,90,270 +L 1.5,3,4,3 + +[0062] b +L 0,9,0,0 +L 0,0,2.5,0 +A 2.5,1.5,1.5,270,0 +L 4,1.5,4,4.5 +A 2.5,4.5,1.5,0,90 +L 2.5,6,0,6 + +[0063] c +L 3,6,1.5,6 +A 1.5,4.5,1.5,90,180 +L 0,4.5,0,1.5 +A 1.5,1.5,1.5,180,270 +L 1.5,0,3,0 + +[0064] d +L 4,9,4,0 +L 4,0,1.5,0 +A 1.5,1.5,1.5,180,270 +L 0,1.5,0,4.5 +A 1.5,4.5,1.5,90,180 +L 1.5,6,4,6 + +[0065] e +L 0,3,4,3 +L 4,3,4,4 +A 2,4,2,0,180 +L 0,4,0,1.5 +A 1.5,1.5,1.5,180,270 +L 1.5,0,4,0 + +[0066] f +L 1,0,1,7.5 +A 2.5,7.5,1.5,90,180 +L 2.5,9,3,9 +L 0,6,3,6 + +[0067] g +L 0,-3,2.5,-3 +A 2.5,-1.5,1.5,270,0 +L 4,-1.5,4,6 +L 4,6,1.5,6 +A 1.5,4.5,1.5,90,180 +L 0,4.5,0,1.5 +A 1.5,1.5,1.5,180,270 +L 1.5,0,4,0 + +[0068] h +L 0,9,0,0 +L 0,6,2.5,6 +A 2.5,4.5,1.5,0,90 +L 4,4.5,4,0 + +[0069] i +L 0,0,0,6 +L 0,8.5,0,9 + +[006a] j +L 0,-3,0.5,-3 +A 0.5,-1.5,1.5,270,0 +L 2,-1.5,2,6 +L 2,8.5,2,9 + +[006b] k +L 0,9,0,0 +L 0,3.5,4,6 +L 1.320923,4.325550,4,0 + +[006c] l +L 0,9,0,1 +A 1,1,1,180,270 + +[006d] m +L 0,0,0,6 +L 0,6,4.5,6 +A 4.5,4.5,1.5,0,90 +L 6,4.5,6,0 +L 3,6,3,0 + +[006e] n +L 0,0,0,6 +L 0,6,2.5,6 +A 2.5,4.5,1.5,0,90 +L 4,4.5,4,0 + +[006f] o +L 0,4,0,2 +A 2,2,2,180,0 +L 4,2,4,4 +A 2,4,2,0,180 + +[0070] p +L 0,0,2.5,0 +A 2.5,1.5,1.5,270,0 +L 4,1.5,4,4.5 +A 2.5,4.5,1.5,0,90 +L 2.5,6,0,6 +L 0,6,0,-3 + +[0071] q +L 4,0,1.5,0 +A 1.5,1.5,1.5,180,270 +L 0,1.5,0,4.5 +A 1.5,4.5,1.5,90,180 +L 1.5,6,4,6 +L 4,6,4,-3 + +[0072] r +L 0,0,0,6 +L 0,6,2,6 +A 2,5,1,0,90 + +[0073] s +A 2.164185,1.820880,4.057300,63.097370,108.275520 +A 1.268188,4.534060,1.200000,108.274567,247.790543 +L 0.814575,3.423090,3.185425,2.455090 +A 2.731812,1.344120,1.199990,288.274933,67.791191 +A 1.835815,4.057320,4.057320,243.097656,288.275513 + +[0074] t +L 0,6,3,6 +L 1,9,1,0 + +[0075] u +L 0,6,0,1.5 +A 1.5,1.5,1.5,180,270 +L 1.5,0,4,0 +L 4,0,4,6 + +[0076] v +L 0,6,2,0 +L 2,0,4,6 + +[0077] w +L 0,6,1.5,0 +L 1.5,0,3,4 +L 3,4,4.5,0 +L 4.5,0,6,6 + +[0078] x +L 0,6,4,0 +L 0,0,4,6 + +[0079] y +L 0,6,2,0 +L 4,6,1.227905,-2.316230 +A 0.279297,-2,1,270,341.565063 +L 0.279297,-3,0,-3 + +[007a] z +L 0,6,4,6 +L 4,6,0,0 +L 0,0,4,0 + +[007b] { +A 2,8,1,90,180 +L 1,8,1,5 +A 0,5,1,270,0 +A 0,3,1,0,90 +L 1,3,1,0 +A 2,0,1,180,270 + +[007d] } +A 0,8,1,0,90 +L 1,8,1,5 +A 2,5,1,180,270 +A 2,3,1,90,180 +L 1,3,1,0 +A 0,0,1,270,0 + +[00a2] +A 3,4.5,3,77.471191,257.471191 +A 3,4.5,3,257.471191,77.471191 +L 2,0,4,9 + +[00b0] +A 1.5,7.5,1.5,90,270 +A 1.5,7.5,1.5,270,90 + +[00b1] +L -0.000122,5,3.999878,5 +L 1.999878,7,1.999878,3 +L -0.000122,1,3.999878,1 + +[00c4] +L 0,0,3,9 +L 3,9,6,0 +L 0.833252,2.5,5.166748,2.5 +L 5,10.25,5,10.75 +L 1,10.25,1,10.75 + +[00d6] +L 0,2,0,7 +A 2,7,2,90,180 +L 2,9,3,9 +A 3,7,2,0,90 +L 5,7,5,2 +A 3,2,2,270,0 +L 3,0,2,0 +A 2,2,2,180,270 +L 1,10.25,1,10.75 +L 4,10.25,4,10.75 + +[00dc] +L 0,9,0,2.5 +A 2.5,2.5,2.5,180,0 +L 5,2.5,5,9 +L 1,10.25,1,10.75 +L 4,10.25,4,10.75 + +[00df] +A 2.5,7,2,270,90 +A 2.599976,2.600000,2.400000,0,90 +L 5,2.600000,5,2.400000 +A 2.599976,2.400000,2.400000,270,0 +L 1,5,2.599976,5 +A 2,7,2,90,180 +L 2,9,2.5,9 +L 0,0,0,7 +L 2.599976,0,1,0 + +[00e4] +L 0.5,6,2.5,6 +A 2.5,4.5,1.5,0,90 +L 4,4.5,4,0 +L 4,0,1.5,0 +A 1.5,1.5,1.5,90,270 +L 1.5,3,4,3 +L 1,9,1,8.5 +L 3,9,3,8.5 + +[00f6] +L 0,4,0,2 +A 2,2,2,180,0 +L 4,2,4,4 +A 2,4,2,0,180 +L 1,9,1,8.5 +L 3,9,3,8.5 + +[00f8] +A 3,4.5,3,77.471191,257.471191 +A 3,4.5,3,257.471191,77.471191 +L 2,0,4,9 + +[00fa] +L 0,6,4,2 +L 4,6,0,2 + +[00fc] +L 0,6,0,1.5 +A 1.5,1.5,1.5,180,270 +L 1.5,0,4,0 +L 4,0,4,6 +L 1,9,1,8.5 +L 3,9,3,8.5 + +[00c5] +L 0,0,3,9 +L 3,9,6,0 +L 0.833252,2.5,5.166748,2.5 +A 3,10.5,0.35,0,360 + +[00e5] +L 0.5,6,2.5,6 +A 2.5,4.5,1.5,0,90 +L 4,4.5,4,0 +L 4,0,1.5,0 +A 1.5,1.5,1.5,90,270 +L 1.5,3,4,3 +A 2,8.75,0.35,0,360 + +[2205] ? +A 3,4.5,3,77.471191,257.471191 +A 3,4.5,3,257.471191,77.471191 +L 2,0,4,9 + +[00b6] +L 2,0,2,8 +L 5,0,5,8 +L 6,8,1,8 +A 1,7,1,90,270 + +[00d7] +L 0,6,4,2 +L 4,6,0,2 + +[00f7] +L 0,4,4,4 +L 1.75,6,2.25,6 +L 1.75,2,2.25,2 diff --git a/pycam/share/fonts/symbol.cxf b/pycam/share/fonts/symbol.cxf new file mode 100644 index 00000000..e4ea731f --- /dev/null +++ b/pycam/share/fonts/symbol.cxf @@ -0,0 +1,705 @@ +# Format: QCad II Font +# Creator: QCad +# Version: 1 +# Name: Symbol +# LetterSpacing: 3.0 +# WordSpacing: 6.75 +# LineSpacingFactor: 1.0 +# Author: ? + +[!] 2 +L -0.132743,9,-0.132743,3 +L -0.132743,0,-0.132743,0.5 + +[#] 4 +L 1.867226,0,1.867226,8.999999 +L 4.867226,8.999999,4.867226,0 +L -0.132774,2.5,6.867226,2.5 +L 6.867226,6.499999,-0.132774,6.499999 + +[$] 5 +L -0.144647,9.004032,4.857593,9.004032 +L 4.857593,9.004032,4.857593,0 +L 4.857593,0,-0.144647,0 +L 4.857593,0,-0.144647,0 +L 4.857593,4.502016,-0.144647,4.502016 + +[%] 5 +L -0.131207,0,4.871033,9.004032 +A 1.869689,7.003136,1.061135,0,180 +A 1.869689,7.003136,1.061135,180,360 +A 2.870137,2.000896,1.000448,0,180 +A 2.870137,2.000896,1.000448,180,360 + +[&] 5 +L 5.867257,3.21499,3.293221,0.59764 +A 1.867257,2,2,135.478088,315.478088 +L 0.441293,3.40236,3.436715,6.44823 +A 2.367257,7.5,1.5,315.478271,209.372314 +L 1.060067,6.76428,4.867257,0 + +[(] 1 +A 12.867257,4,13,157.380142,202.619858 + +[)] 1 +A -12.132743,4,13,337.380127,22.61986 + +[*] 2 +L -0.132743,6,3.867257,2 +L 3.867257,6,-0.132743,2 + +[+] 2 +L -0.132743,4,3.867257,4 +L 1.867257,6,1.867257,2 + +[,] 2 +L 0.867257,0,-0.132743,-3 +L 0.867257,0,0.867257,0.5 + +[-] 1 +L -0.132743,4,3.867257,4 + +[.] 1 +L -0.132743,0,-0.132743,0.5 + +[/] 1 +L 3.867257,9,-0.132743,0 + +[0] 10 +A 1.867257,7.91049,1.08951,32.75695,147.243042 +A 4.800607,5.62352,4.80559,143.232468,169.491135 +A 4.800607,3.37648,4.80559,190.508865,216.767532 +A 1.867257,1.08951,1.08951,212.756958,327.243042 +A -1.066093,3.37648,4.80559,323.232452,349.491119 +A -5.537406,4.46906,9.40473,347.913147,0.18851 +A -5.537406,4.53094,9.40473,359.811493,12.08686 +A -1.066093,5.62352,4.80559,10.50887,36.76754 +A 9.27192,4.46906,9.40473,179.811493,192.086868 +A 9.27192,4.53094,9.40473,167.913132,180.188507 + +[1] 2 +L -0.132743,7,1.867257,9 +L 1.867257,9,1.867257,0 + +[2] 4 +L 3.867257,0,-0.132743,0 +L -0.132743,0,3.731759,6.64668 +A 2.867257,7.14931,1,329.82547,20.52911 +A 1.867257,7,2,14.47751,165.522491 + +[3] 7 +L -0.132743,9,1.867257,9 +A 1.867257,7,2,270,90 +L 1.867257,5,0.867257,5 +A 1.867257,3,2,0,90 +L 3.867257,3,3.867257,2 +A 1.867257,2,2,270,0 +L 1.867257,0,-0.132743,0 + +[4] 3 +L 3.367257,0,3.367257,4 +L 4.867257,2,-0.132743,2 +L -0.132743,2,1.867257,9 + +[5] 7 +L 3.867257,9,-0.132743,9 +L -0.132743,9,-0.132743,5 +L -0.132743,5,1.867257,5 +A 1.867257,3,2,0,90 +L 3.867257,3,3.867257,2 +A 1.867257,2,2,270,0 +L 1.867257,0,-0.132743,0 + +[6] 6 +A 5.867257,3.80385,6,120,180 +L -0.132743,3.80385,-0.132743,2 +A 1.867257,2,2,180,0 +L 3.867257,2,3.867257,3 +A 1.867257,3,2,0,90 +L 1.867257,5,-0.012321,5 + +[7] 3 +L -0.132743,9,3.867257,9 +L 3.867257,9,1.367257,0 +L 1.867257,5,3.867257,5 + +[8] 8 +L -0.132743,3,-0.132743,2 +A 1.867257,2,2,180,0 +L 3.867257,2,3.867257,3 +A 1.867257,3,2,0,180 +L 0.117257,7.25,0.117257,6.75 +A 1.867257,6.75,1.75,180,0 +L 3.617257,6.75,3.617257,7.25 +A 1.867257,7.25,1.75,0,180 + +[9] 6 +A -2.132743,5.19615,6,300,0 +L 3.867257,5.19615,3.867257,7 +A 1.867257,7,2,0,180 +L -0.132743,7,-0.132743,6 +A 1.867257,6,2,180,270 +L 1.867257,4,3.746835,4 + +[:] 2 +L -0.132743,0,-0.132743,0.5 +L -0.132743,4,-0.132743,3.5 + +[;] 3 +L 0.867257,0,-0.132743,-3 +L 0.867257,0,0.867257,0.5 +L 0.867257,4,0.867257,3.5 + +[<] 2 +L 3.867257,7,-0.132743,3.5 +L -0.132743,3.5,3.867257,0 + +[=] 2 +L -0.132743,5.5,3.867257,5.5 +L -0.132743,2.5,3.867257,2.5 + +[>] 2 +L -0.132743,7,3.867257,3.5 +L 3.867257,3.5,-0.132743,0 + +[?] 9 +L 1.867257,0,1.867257,0.5 +L 1.867257,3,1.867257,3.39445 +L -0.132743,7,-0.132743,7.5 +L 1.367257,9,2.367257,9 +L 3.531319,6.49615,2.203195,4.50385 +A 3.867257,3.39445,2,146.309937,180 +A 1.867257,7.60555,2,326.309998,358.379272 +A 1.367257,7.5,1.5,90,180 +A 2.367257,7.5,1.5,1.87147,90 + +[@] 5 +A 2.232569,3.001344,1.500672,53.130102,180 +A 5.233913,4.502016,1.500672,233.130102,340.528779 +L 4.33351,3.301478,3.132972,4.201882 +L 0.731897,2.50112,6.734585,2.50112 +L 0.731897,1.500672,6.734585,1.500672 + +[A] 3 +L -0.132743,0,2.867257,9 +L 2.867257,9,5.867257,0 +L 0.70057,2.5,5.033944,2.5 + +[B] 8 +L -0.132743,0,-0.132743,9 +L -0.132743,9,2.367257,9 +A 2.367257,7,2,270,90 +L -0.132743,5,2.467233,5 +A 2.467233,2.6,2.4,0,90 +L 4.867257,2.6,4.867257,2.4 +A 2.467233,2.4,2.4,270,0 +L 2.467233,0,-0.132743,0 + +[C] 2 +L -0.109439,8.992982,5.890561,-0.007018 +L -0.109439,-0.007018,5.890561,8.992982 + +[D] 3 +L 0.035321,0,2.786553,9.004032 +L 2.786553,9.004032,5.287673,0 +L 0.035321,0,5.287673,0 + +[E] 4 +L 3.867257,9,-0.132743,9 +L -0.132743,9,-0.132743,0 +L -0.132743,0,3.867257,0 +L -0.132743,5,2.867257,5 + +[F] 5 +L 2.313209,0,2.313209,9.004032 +L 1.812985,9.004032,2.813433,9.004032 +L 1.812985,0,2.813433,0 +A 2.313209,4.502016,2.50112,0,180 +A 2.313209,4.502016,2.50112,180,360 + +[G] 3 +L 0.075641,0,0.075641,9.004032 +L 0.075641,9.004032,5.077881,9.004032 +L 5.077881,9.004032,5.077881,8.503808 + +[H] 3 +L -0.132743,9,-0.132743,0 +L 4.867257,0,4.867257,9 +L -0.132743,5,4.867257,5 + +[I] 3 +L 0.852857,9.004032,0.852857,0 +L 0.352633,9.004032,1.353081,9.004032 +L 0.352633,0,1.353081,0 + +[J] 8 +L 4.868089,4.126848,2.402838,4.299139 +A 2.617081,6.789942,2.5,198.419785,266.002232 +A -1.884935,4.502016,6.794581,327.881984,30.004073 +L 0.245164,6,0.199535,7.027055 +A 2.199535,7.027055,2,25.870267,180 +L 0.176188,2.000896,-0.134151,2.000896 +A 2.175616,1.953058,2,178.629403,329.036708 +L 4.868089,4.126848,5.398164,4.090173 + +[K] 3 +L -0.132743,9,-0.132743,0 +L -0.132743,3.5,4.867257,9 +L 1.538583,5.33844,4.867257,0 + +[L] 4 +L -0.107271,0,2.393849,9.004032 +L 2.393849,9.004032,4.894969,0 +L -0.107271,0,0.142841,0 +L 4.644857,0,5.145081,0 + +[M] 4 +L -0.132743,0,-0.132743,9 +L -0.132743,9,2.867257,4 +L 2.867257,4,5.867257,9 +L 5.867257,9,5.867257,0 + +[N] 3 +L -0.132743,0,-0.132743,9 +L -0.132743,9,4.867257,0 +L 4.867257,0,4.867257,9 + +[O] 8 +L -0.132743,2,-0.132743,7 +A 1.867257,7,2,90,180 +L 1.867257,9,2.867257,9 +A 2.867257,7,2,0,90 +L 4.867257,7,4.867257,2 +A 2.867257,2,2,270,0 +L 2.867257,0,1.867257,0 +A 1.867257,2,2,180,270 + +[P] 3 +L -0.053511,9.004032,5.198841,9.004032 +L 0.946937,9.004032,0.946937,0 +L 3.948281,9.004032,3.948281,0 + +[Q] 7 +A 2.461049,2.50112,2.5,180,0 +L -0.038951,2.50112,-0.038951,6.502912 +A 2.461049,6.502912,2.5,0,180 +L 4.961049,2.50112,4.961049,6.502912 +L 0.960377,4.502016,3.961721,4.502016 +L 3.961721,4.752128,3.961721,4.251904 +L 0.960377,4.752128,0.960377,4.251904 + +[R] 6 +L -0.026631,9.004032,-0.026631,0 +L 3.974601,6.2528,3.974601,7.753472 +A 2.724601,7.753472,1.25,0,90 +A 2.724601,6.2528,1.25,270,0 +L -0.026631,9.004032,2.724601,9.003621 +L -0.026631,5.00224,2.724601,5.00224 + +[S] 4 +L -0.013191,9.004032,4.989049,9.004032 +L -0.013191,9.004032,4.989049,5.00224 +L 4.989049,5.00224,-0.013191,0 +L -0.013191,0,4.989049,0 + +[T] 2 +L -0.132743,9,5.867257,9 +L 2.867257,9,2.867257,0 + +[U] 3 +L 2.514809,0,2.514809,6.002688 +L 2.514809,6.002688,5.015929,9.004032 +L 2.514809,6.002688,0.013689,9.004032 + +[V] 9 +A 4.279033,-0.750336,0.75,270,90 +L 4.279033,-1.500672,3.778809,-1.500672 +A 2.215609,6.502912,0.5,90,131.090134 +L 2.215609,0,4.279033,0 +A 4.028921,3.501568,4,122.37672,237.62328 +A 2.215609,0.500224,0.5,228.909866,270 +L 2.215609,7.003136,5.998313,7.003136 +L 5.869617,6.679964,5.029369,7.003136 +A 5.842233,6.87808,0.2,277.869722,38.702742 + +[W] 7 +A 10.045049,5.00224,10,172.81354,209.775253 +L 0.046846,0.036249,1.365249,0.036249 +L 5.719025,0.036249,7.042885,0.036249 +A -2.960775,5.00224,10,330.224747,7.186461 +L 0.040569,0,0.040569,0.500224 +L 7.043705,0,7.043705,0.500224 +A 3.542137,5.502464,3.5,12.386427,167.613575 + +[X] 9 +L 0.054009,8.75392,0.054009,9.004032 +L 0.054009,9.004032,5.806585,9.004032 +L 5.806585,9.004032,5.806585,8.75392 +L 0.054009,0.250112,0.054009,0 +L 0.054009,0,5.806585,0 +L 5.806585,0,5.806585,0.250112 +L 0.804345,4.251904,0.804345,3.75168 +L 0.804345,4.001792,4.806137,4.001792 +L 4.806137,4.251904,4.806137,3.75168 + +[Y] 8 +L 2.867257,9,2.867257,0 +L 5.321622,7.268519,5.318663,6.493368 +L 0.318699,6.493368,0.31574,7.268519 +A 2.818681,6.502912,2.5,180.218743,0.218743 +A -3.684231,7.253248,4,0.218743,22.034697 +A 9.321593,7.253248,4,157.965303,179.781257 +L 2.318457,9.004032,3.318905,9.004032 +L 2.318457,0,3.318905,0 + +[Z] 3 +L -0.132743,9,4.867257,9 +L 4.867257,9,-0.132743,0 +L -0.132743,0,4.867257,0 + +[[] 3 +L 0.867257,-1,-0.132743,-1 +L -0.132743,-1,-0.132743,9 +L -0.132743,9,0.867257,9 + +[\] 6 +A 0.866598,0.030271,0.15,0,180 +A 0.866598,0.030271,0.15,180,360 +A 4.892674,-0.060542,0.15,0,180 +A 4.892674,-0.060542,0.15,180,360 +A 2.894772,3.995804,0.15,0,180 +A 2.894772,3.995804,0.15,180,360 + +[]] 3 +L -0.132743,9,0.867257,9 +L 0.867257,9,0.867257,-1 +L 0.867257,-1,-0.132743,-1 + +[^] 2 +L -0.115463,0,4.886777,0 +L 2.635769,0,2.635769,9.004032 + +[_] 1 +L -0.102023,-1.25056,6.901113,-1.25056 + +[`] 1 +L -0.088583,9.004032,6.914553,9.004032 + +[a] 12 +L 0.489883,3.200717,0.316652,2.900493 +L 0.489883,0.801075,0.316652,1.101299 +A 1.875731,2.000896,1.8,150.014812,209.985188 +A 1.875731,1.600717,1.6,209.985188,330.014812 +A 1.875731,2.401075,1.6,29.985188,150.014812 +L 4.103098,0.597973,3.617179,2.456263 +L 3.434809,2.900493,3.261578,3.200717 +A 4.877075,0.800358,0.8,194.654007,262.81601 +L 4.112244,3.436028,3.352212,0.958151 +A 4.877075,3.201434,0.8,90,162.947796 +L 3.352212,0.958151,3.261578,0.801075 +A 1.875731,2.000896,1.8,14.654007,29.985188 + +[b] 4 +L 0.938745,4.001792,2.939641,4.001792 +A 2.939641,5.752576,1.75,270,172.373561 +L 0.269805,-1.000448,1.205121,5.984825 +A 2.689529,2.000896,2,172.373561,90 + +[c] 5 +L 3.258649,0.673356,1.647065,5.329332 +L -0.048263,0,4.703865,6.002688 +A 0.702073,5.00224,1,19.092382,146.596684 +A 4.203641,1.000448,1,199.092382,270 +A 4.203641,1.000448,1,199.092382,325.186678 + +[d] 7 +L 4.026201,5.288864,2.177293,6.060942 +L 3.101747,5.674903,2.145606,5.375846 +A 2.966521,2.751232,2.75,107.368401,67.335266 +L 2.466297,7.503136,3.976875,7.352756 +L 3.931923,7.15959,3.572402,7.393022 +A 2.466297,6.753024,0.75,78.71634,247.335266 +A 3.966969,7.253248,0.1,249.484309,84.314868 + +[e] 11 +A 1.979513,3.001344,3,63.898342,92.691728 +A 1.729401,1.750784,1.75,180,316.414829 +A 1.479289,1.750784,1.5,90,181.852161 +L 1.479289,3.251456,2.557712,3.251456 +A 3.730297,1.375616,0.1,0,180 +A 3.730297,1.375616,0.1,180,360 +A 1.729401,4.502016,1.5,85.824206,201.216677 +A 1.604345,4.752128,1.5,211.913426,270 +L 3.64937,1.434359,3.478712,1.090388 +L 3.478712,1.090388,3.806759,1.311168 +L 2.997014,0.544278,3.796446,1.450611 + +[f] 6 +A 2.493177,3.001344,2.5,0,180 +A 2.493177,3.001344,2.5,180,360 +L 0.742393,-1.500672,4.321266,7.426256 +L 0.742393,-1.500672,4.264692,7.556669 +A 4.228448,7.463468,0.1,339.345211,159.345211 +L 0.742393,-1.500672,4.134875,7.498742 + +[g] 3 +A 0.755833,2.251008,2,40.125191,116.377794 +A 27.017593,-5.00224,25,145.938006,170.658358 +A -0.994951,1.25056,4,326.72256,34.913698 + +[h] 6 +L 0.918078,5.723164,0.519161,0 +A 0.519161,5.752576,0.4,356.012806,153.434949 +A 2.520057,4.251904,1.75,356.012806,162.339415 +L 4.068794,1.309322,4.089032,-1.015089 +L 4.265419,4.130248,4.068794,1.309322 +A 6.021625,-0.500224,2,194.91777,229.398705 + +[i] 5 +A 1.032825,5.752576,0.2,355.831223,161.565051 +L 1.232296,5.738037,0.833354,0.264651 +A 1.032825,0.250112,0.2,175.831223,347.331775 +A 1.380942,7.690927,0.1,0,180 +A 1.380942,7.690927,0.1,180,360 + +[j] 7 +A 2.296825,3.251456,2.4,164.300451,46.100208 +A 3.233121,4.295061,1,52.91221,170.550567 +L 2.24669,4.459238,1.198032,-1.232441 +L 2.24669,4.459238,1.395289,-1.265271 +L 0.634941,6.20835,-0.01364,3.900879 +L 1.279959,-1.349203,2.24669,4.459238 +A 1.296377,-1.25056,0.1,171.540465,351.540465 + +[k] 7 +L -0.132743,6.2528,-0.132743,0 +L 3.008865,5.893833,3.766876,6.265879 +A 6.061945,-1.500672,8,105.626144,140.744871 +L 3.001512,5.890793,3.832966,6.078565 +A 3.810937,6.176109,0.1,282.725988,116.142653 +L -0.132743,3.561525,3.604966,0.031993 +A 3.810937,0.250112,0.3,226.640841,270 + +[l] 4 +A 0.322809,8.503808,0.4,22.3106,180 +L 0.072697,0,2.364124,4.582854 +L 4.150167,0.230324,0.692865,8.655659 +A 4.520223,0.382175,0.4,202.3106,357.14239 + +[m] 3 +L 0.087523,6,0.087523,-3 +A 2.087033,2.000896,2,180,0 +L 4.086999,6,4.086999,0 + +[n] 3 +A -1.901319,5.752576,7,304.191942,2.025615 +L 0.099577,6.002688,2.03245,-0.037541 +L 0.099577,6.002688,-0.132743,6 + +[o] 2 +A 2.364025,2.50112,2.5,0,180 +A 2.364025,2.50112,2.5,180,360 + +[p] 6 +L 4.878585,5.752576,0.39656,6.051909 +L 0.961205,0.554318,1.387862,5.985705 +A -7.126791,4.502016,9,329.985179,333.983299 +L 3.818926,5.823346,3.959435,1.074222 +A 12.882169,2.251008,9,187.513165,194.48414 +A 0.376569,5.752576,0.3,86.179161,180 + +[q] 5 +A 2.174989,5.666903,1.125,1.147633,132.730964 +A -3.311461,4.327741,6.75,324.234706,11.638294 +A 6.818075,2.451901,6.75,143.221623,194.78234 +A 1.337411,1.14398,1.125,201.610225,317.40682 +L 0.133556,3.389821,3.373059,3.389821 + +[r] 6 +A 2.90998,2.944333,1.75,0,180 +A 2.90998,2.944333,1.75,180,360 +L 1.177415,3.190751,0.304718,-2.235128 +L 0.389368,-2.350012,1.177415,3.190751 +L 1.177415,3.190751,0.502692,-2.263285 +A 0.403449,-2.251008,0.1,170.862811,352.947727 + +[s] 3 +A 2.417785,2.50112,2.5,0,180 +A 2.417785,2.50112,2.5,180,360 +L 2.423747,5.001113,4.918905,5.00224 + +[t] 4 +L 4.432121,5.752576,0.370298,5.988959 +A 0.347059,5.589635,0.4,86.669348,181.086396 +L 2.455457,5.867611,1.902993,0.411288 +A 2.300958,0.370993,0.4,174.218384,278.953591 + +[u] 6 +A -0.036593,5.56676,0.4,13.172363,103.908702 +A -3.338091,8.458583,10,301.991379,329.778171 +A -8.037304,0.216887,10,358.627168,32.963358 +A 1.674403,5.108888,4,335.105477,341.075023 +L 5.458179,3.811569,5.614051,4.525652 +A 3.626384,4.74741,2,353.633994,38.777296 + +[v] 11 +A -0.425604,1.36057,3.2,347.617753,12.369338 +A 5.825834,1.36057,3.2,167.630662,192.308015 +A 1.977393,2.226578,3.2,7.356556,41.586416 +L 1.244498,0.292175,1.370593,0.183515 +A 1.892827,0.789544,0.8,229.247485,355.212849 +A 3.373997,2.405285,3,190.817168,224.778673 +A 2.152273,2.550728,3,310.420977,1.634862 +A 3.491662,0.789317,0.8,187.966948,319.223163 +A 3.497756,2.743547,3.2,149.862024,196.358885 +L 0.290964,4.350216,5.524728,4.350216 +A 0.345619,3.953968,0.4,97.853313,174.440731 + +[w] 9 +A -0.477443,1.369644,3.2,347.617753,12.369338 +A 5.773995,1.369644,3.2,167.630662,192.308015 +A 1.925554,2.235652,3.2,7.356556,41.586416 +L 1.192659,0.301249,1.318754,0.192589 +A 1.840988,0.798618,0.8,229.247485,355.212849 +A 3.322158,2.414359,3,190.817168,224.778673 +A 2.100434,2.559802,3,310.420977,1.634862 +A 3.439823,0.798391,0.8,187.966948,319.223163 +A 3.445917,2.752621,3.2,149.862024,196.358885 + +[x] 8 +A 2.840059,8.134096,0.5,183.335063,248.207941 +L 2.715276,5.451612,4.094907,5.645893 +A 3.235321,2.751232,2.75,100.900697,297.878144 +L 4.298758,-0.19779,4.754142,-0.068075 +A 4.699352,0.124274,0.2,285.899387,24.882527 +A 4.631567,0.041425,0.3,33.825812,111.58531 +A 3.260362,6.576504,1.25,118.995305,244.146648 +L 2.65444,7.669828,4.124718,8.066569 + +[y] 6 +L 0.628611,2.733539,0.608059,3.796478 +A -1.141614,3.762649,1.75,1.107638,45.0276 +A 2.378284,2.767367,1.75,181.107638,1.107638 +L 4.148523,3.772992,4.127941,2.732749 +A 5.898181,3.738374,1.75,133.836526,178.866501 +L 2.378284,5.000682,2.378284,-3 + +[z] 9 +L 4.537596,0.009488,1.033551,-0.007416 +L 3.103125,6.241724,4.141469,6.604519 +L 0.708019,3.584129,0.064918,1.259168 +A 1.028727,0.992572,1,164.53818,270.276396 +A 4.563252,2.517744,4,111.409542,164.53818 +A 3.312768,6.60969,0.6,72.125907,228.296377 +L 3.781809,-0.969599,4.476289,-0.869214 +A 4.234994,-0.323553,0.6,294.966656,14.087095 +A 4.539043,-0.290509,0.3,22.126049,90.276396 + +[{] 6 +A 1.867257,8,1,90,180 +L 0.867257,8,0.867257,5 +A -0.132743,5,1,270,0 +A -0.132743,3,1,0,90 +L 0.867257,3,0.867257,0 +A 1.867257,0,1,180,270 + +[|] 3 +L 3.236958,2.8014,2.590868,3.201288 +A 1.538297,1.500672,2,58.245185,131.380508 +A 4.289529,4.502016,2,238.245185,311.380508 + +[}] 6 +A -0.132743,8,1,0,90 +L 0.867257,8,0.867257,5 +A 1.867257,5,1,180,270 +A 1.867257,3,1,90,180 +L 0.867257,3,0.867257,0 +A -0.132743,0,1,270,0 + +[] 3 +A 2.867257,4.5,3,77.471191,257.471191 +A 2.867257,4.5,3,257.471191,77.471191 +L 1.867257,0,3.867257,9 + +[] 2 +A 1.367257,7.5,1.5,90,270 +A 1.367257,7.5,1.5,270,90 + +[] 3 +L -0.132865,5,3.867135,5 +L 1.867135,7,1.867135,3 +L -0.132865,1,3.867135,1 + +[] 5 +L -0.132743,0,2.867257,9 +L 2.867257,9,5.867257,0 +L 0.700509,2.5,5.034005,2.5 +L 4.867257,10.25,4.867257,10.75 +L 0.867257,10.25,0.867257,10.75 + +[] 10 +L -0.132743,2,-0.132743,7 +A 1.867257,7,2,90,180 +L 1.867257,9,2.867257,9 +A 2.867257,7,2,0,90 +L 4.867257,7,4.867257,2 +A 2.867257,2,2,270,0 +L 2.867257,0,1.867257,0 +A 1.867257,2,2,180,270 +L 0.867257,10.25,0.867257,10.75 +L 3.867257,10.25,3.867257,10.75 + +[] 5 +L -0.132743,9,-0.132743,2.5 +A 2.367257,2.5,2.5,180,0 +L 4.867257,2.5,4.867257,9 +L 0.867257,10.25,0.867257,10.75 +L 3.867257,10.25,3.867257,10.75 + +[] 9 +A 2.367257,7,2,270,90 +A 2.467233,2.6,2.4,0,90 +L 4.867257,2.6,4.867257,2.4 +A 2.467233,2.4,2.4,270,0 +L 0.867257,5,2.467233,5 +A 1.867257,7,2,90,180 +L 1.867257,9,2.367257,9 +L -0.132743,0,-0.132743,7 +L 2.467233,0,0.867257,0 + +[] 8 +L 0.367257,6,2.367257,6 +A 2.367257,4.5,1.5,0,90 +L 3.867257,4.5,3.867257,0 +L 3.867257,0,1.367257,0 +A 1.367257,1.5,1.5,90,270 +L 1.367257,3,3.867257,3 +L 0.867257,9,0.867257,8.5 +L 2.867257,9,2.867257,8.5 + +[] 6 +L -0.132743,4,-0.132743,2 +A 1.867257,2,2,180,0 +L 3.867257,2,3.867257,4 +A 1.867257,4,2,0,180 +L 0.867257,9,0.867257,8.5 +L 2.867257,9,2.867257,8.5 + +[] 3 +A 2.867257,4.5,3,77.471191,257.471191 +A 2.867257,4.5,3,257.471191,77.471191 +L 1.867257,0,3.867257,9 + +[] 2 +L -0.132743,6,3.867257,2 +L 3.867257,6,-0.132743,2 + +[] 6 +L -0.132743,6,-0.132743,1.5 +A 1.367257,1.5,1.5,180,270 +L 1.367257,0,3.867257,0 +L 3.867257,0,3.867257,6 +L 0.867257,9,0.867257,8.5 +L 2.867257,9,2.867257,8.5 + +#EOF diff --git a/pycam/share/fonts/symbol_astro.cxf b/pycam/share/fonts/symbol_astro.cxf new file mode 100644 index 00000000..7eff31a2 --- /dev/null +++ b/pycam/share/fonts/symbol_astro.cxf @@ -0,0 +1,923 @@ +# Format: QCad II Font +# Creator: QCad +# Version: 1 +# Name: Symbol Astro +# LetterSpacing: 3.0 +# WordSpacing: 6.75 +# LineSpacingFactor: 1.0 +# Author: Hershey fonts + +[!] 20 +L 2.181818,5.090909,1.090909,4.727273 +L 1.090909,4.727273,0.363636,4 +L 0.363636,4,0,2.909091 +L 0,2.909091,0,2.181818 +L 0,2.181818,0.363636,1.090909 +L 0.363636,1.090909,1.090909,0.363636 +L 1.090909,0.363636,2.181818,0 +L 2.181818,0,2.909091,0 +L 2.909091,0,4,0.363636 +L 4,0.363636,4.727273,1.090909 +L 4.727273,1.090909,5.090909,2.181818 +L 5.090909,2.181818,5.090909,2.909091 +L 5.090909,2.909091,4.727273,4 +L 4.727273,4,4,4.727273 +L 4,4.727273,2.909091,5.090909 +L 2.909091,5.090909,2.181818,5.090909 +L 2.545455,2.909091,2.181818,2.545455 +L 2.181818,2.545455,2.545455,2.181818 +L 2.545455,2.181818,2.909091,2.545455 +L 2.909091,2.545455,2.545455,2.909091 + +["] 21 +L 0.727273,5.090909,0.363636,4.727273 +L 0.363636,4.727273,0.363636,4.363636 +L 0.363636,4.363636,0.727273,4 +L 1.818182,5.090909,2.181818,4.727273 +L 2.181818,4.727273,2.181818,4.363636 +L 2.181818,4.363636,1.818182,4 +L 1.090909,4,0.363636,3.636364 +L 0.363636,3.636364,0,2.909091 +L 0,2.909091,0,2.545455 +L 0,2.545455,0.363636,1.818182 +L 0.363636,1.818182,1.090909,1.454545 +L 1.090909,1.454545,1.454545,1.454545 +L 1.454545,1.454545,2.181818,1.818182 +L 2.181818,1.818182,2.545455,2.545455 +L 2.545455,2.545455,2.545455,2.909091 +L 2.545455,2.909091,2.181818,3.636364 +L 2.181818,3.636364,1.454545,4 +L 1.454545,4,1.090909,4 +L 1.090909,1.454545,1.090909,0 +L 1.454545,1.454545,1.454545,0 +L 0,0.727273,2.545455,0.727273 + +[#] 15 +L 1.090909,5.090909,0.363636,4.727273 +L 0.363636,4.727273,0,4 +L 0,4,0,3.636364 +L 0,3.636364,0.363636,2.909091 +L 0.363636,2.909091,1.090909,2.545455 +L 1.090909,2.545455,1.454545,2.545455 +L 1.454545,2.545455,2.181818,2.909091 +L 2.181818,2.909091,2.545455,3.636364 +L 2.545455,3.636364,2.545455,4 +L 2.545455,4,2.181818,4.727273 +L 2.181818,4.727273,1.454545,5.090909 +L 1.454545,5.090909,1.090909,5.090909 +L 1.090909,2.545455,1.090909,0.363636 +L 1.454545,2.545455,1.454545,0.363636 +L 0,1.454545,2.545455,1.454545 + +[$] 18 +L 2.181818,5.090909,1.090909,4.727273 +L 1.090909,4.727273,0.363636,4 +L 0.363636,4,0,2.909091 +L 0,2.909091,0,2.181818 +L 0,2.181818,0.363636,1.090909 +L 0.363636,1.090909,1.090909,0.363636 +L 1.090909,0.363636,2.181818,0 +L 2.181818,0,2.909091,0 +L 2.909091,0,4,0.363636 +L 4,0.363636,4.727273,1.090909 +L 4.727273,1.090909,5.090909,2.181818 +L 5.090909,2.181818,5.090909,2.909091 +L 5.090909,2.909091,4.727273,4 +L 4.727273,4,4,4.727273 +L 4,4.727273,2.909091,5.090909 +L 2.909091,5.090909,2.181818,5.090909 +L 2.545455,5.090909,2.545455,0 +L 0,2.545455,5.090909,2.545455 + +[%] 17 +L 2.181818,2.545455,1.454545,2.909091 +L 1.454545,2.909091,1.090909,2.909091 +L 1.090909,2.909091,0.363636,2.545455 +L 0.363636,2.545455,0,1.818182 +L 0,1.818182,0,1.454545 +L 0,1.454545,0.363636,0.727273 +L 0.363636,0.727273,1.090909,0.363636 +L 1.090909,0.363636,1.454545,0.363636 +L 1.454545,0.363636,2.181818,0.727273 +L 2.181818,0.727273,2.545455,1.454545 +L 2.545455,1.454545,2.545455,1.818182 +L 2.545455,1.818182,2.181818,2.545455 +L 4,4.363636,2.181818,2.545455 +L 2.181818,4.363636,4,4.363636 +L 4,4.363636,4,2.545455 +L 2.181818,4.363636,3.636364,4 +L 3.636364,4,4,2.545455 + +[&] 15 +L 0,4.727273,0.363636,5.090909 +L 0.363636,5.090909,1.090909,5.090909 +L 1.090909,5.090909,1.818182,4.727273 +L 1.818182,4.727273,2.181818,4 +L 2.181818,4,2.181818,3.272727 +L 2.181818,3.272727,1.818182,2.545455 +L 1.818182,2.545455,1.454545,2.181818 +L 1.454545,2.181818,0.727273,1.818182 +L 1.090909,5.090909,1.454545,4.727273 +L 1.454545,4.727273,1.818182,4 +L 1.818182,4,1.818182,2.909091 +L 1.818182,2.909091,1.454545,2.181818 +L 3.636364,5.090909,3.272727,0.363636 +L 4,5.090909,2.909091,0.363636 +L 0.727273,1.818182,4.363636,1.818182 + +['] 17 +L 0.727273,5.090909,0.727273,1.454545 +L 1.090909,5.090909,0.727273,2.545455 +L 0.727273,2.545455,1.090909,3.272727 +L 1.090909,3.272727,1.818182,3.636364 +L 1.818182,3.636364,2.545455,3.636364 +L 2.545455,3.636364,3.272727,3.272727 +L 3.272727,3.272727,3.636364,2.909091 +L 3.636364,2.909091,3.636364,1.818182 +L 3.636364,1.818182,2.909091,1.090909 +L 2.909091,1.090909,2.909091,0.363636 +L 2.909091,0.363636,3.272727,0 +L 3.272727,0,3.636364,0 +L 3.636364,0,4,0.363636 +L 2.545455,3.636364,3.272727,2.909091 +L 3.272727,2.909091,3.272727,1.818182 +L 3.272727,1.818182,2.909091,1.090909 +L 0,5.090909,1.090909,5.090909 + +[(] 19 +L 0,4,1.090909,5.090909 +L 1.090909,5.090909,1.090909,2.909091 +L 2.545455,4,1.454545,5.090909 +L 1.454545,5.090909,1.454545,2.909091 +L 1.090909,2.909091,0.363636,2.545455 +L 0.363636,2.545455,0,1.818182 +L 0,1.818182,0,1.454545 +L 0,1.454545,0.363636,0.727273 +L 0.363636,0.727273,1.090909,0.363636 +L 1.090909,0.363636,1.454545,0.363636 +L 1.454545,0.363636,2.181818,0.727273 +L 2.181818,0.727273,2.545455,1.454545 +L 2.545455,1.454545,2.545455,1.818182 +L 2.545455,1.818182,2.181818,2.545455 +L 2.181818,2.545455,1.454545,2.909091 +L 1.090909,1.818182,1.090909,1.454545 +L 1.090909,1.454545,1.454545,1.454545 +L 1.454545,1.454545,1.454545,1.818182 +L 1.454545,1.818182,1.090909,1.818182 + +[)] 15 +L 2.181818,5.090909,2.181818,0 +L 0.363636,5.090909,0.363636,3.272727 +L 0.363636,3.272727,0.727273,2.545455 +L 0.727273,2.545455,1.454545,2.181818 +L 1.454545,2.181818,2.909091,2.181818 +L 2.909091,2.181818,3.636364,2.545455 +L 3.636364,2.545455,4,3.272727 +L 4,3.272727,4,5.090909 +L 0,4.363636,0.363636,5.090909 +L 0.363636,5.090909,0.727273,4.363636 +L 1.818182,4.363636,2.181818,5.090909 +L 2.181818,5.090909,2.545455,4.363636 +L 3.636364,4.363636,4,5.090909 +L 4,5.090909,4.363636,4.363636 +L 1.090909,1.090909,3.272727,1.090909 + +[*] 17 +L 0.727273,5.090909,0.727273,0.363636 +L 1.090909,5.090909,1.090909,0.363636 +L 0,5.090909,2.545455,5.090909 +L 2.545455,5.090909,3.636364,4.727273 +L 3.636364,4.727273,4,4 +L 4,4,4,3.636364 +L 4,3.636364,3.636364,2.909091 +L 3.636364,2.909091,2.545455,2.545455 +L 2.545455,2.545455,1.090909,2.545455 +L 2.545455,5.090909,3.272727,4.727273 +L 3.272727,4.727273,3.636364,4 +L 3.636364,4,3.636364,3.636364 +L 3.636364,3.636364,3.272727,2.909091 +L 3.272727,2.909091,2.545455,2.545455 +L 0,0.363636,3.636364,0.363636 +L 3.636364,0.363636,3.636364,1.454545 +L 3.636364,1.454545,3.272727,0.363636 + +[+] 16 +L 3.272727,5.090909,2.181818,5.090909 +L 2.181818,5.090909,1.090909,4.727273 +L 1.090909,4.727273,0.363636,4 +L 0.363636,4,0,2.909091 +L 0,2.909091,0,2.181818 +L 0,2.181818,0.363636,1.090909 +L 0.363636,1.090909,1.090909,0.363636 +L 1.090909,0.363636,2.181818,0 +L 2.181818,0,3.272727,0 +L 3.272727,5.090909,2.181818,4.727273 +L 2.181818,4.727273,1.454545,4 +L 1.454545,4,1.090909,2.909091 +L 1.090909,2.909091,1.090909,2.181818 +L 1.090909,2.181818,1.454545,1.090909 +L 1.454545,1.090909,2.181818,0.363636 +L 2.181818,0.363636,3.272727,0 + +[,] 15 +L 2.181818,2.545455,1.454545,2.909091 +L 1.454545,2.909091,1.090909,2.909091 +L 1.090909,2.909091,0.363636,2.545455 +L 0.363636,2.545455,0,1.818182 +L 0,1.818182,0,1.454545 +L 0,1.454545,0.363636,0.727273 +L 0.363636,0.727273,1.090909,0.363636 +L 1.090909,0.363636,1.454545,0.363636 +L 1.454545,0.363636,2.181818,0.727273 +L 2.181818,0.727273,2.545455,1.454545 +L 2.545455,1.454545,2.545455,1.818182 +L 2.545455,1.818182,2.181818,2.545455 +L 2.545455,4.727273,1.818182,2.909091 +L 4,4.363636,2.181818,2.545455 +L 4.363636,2.909091,2.545455,2.181818 + +[-] 4 +L 1.090909,4.363636,2.545455,0.727273 +L 2.545455,4.363636,1.090909,0.727273 +L 0,3.272727,3.636364,1.818182 +L 3.636364,3.272727,0,1.818182 + +[.] 32 +L 3.272727,6.909091,2.181818,6.545455 +L 2.181818,6.545455,1.090909,5.818182 +L 1.090909,5.818182,0.363636,4.727273 +L 0.363636,4.727273,0,3.636364 +L 0,3.636364,0,2.545455 +L 0,2.545455,0.363636,1.454545 +L 0.363636,1.454545,1.090909,0.363636 +L 1.090909,0.363636,2.181818,-0.363636 +L 2.181818,-0.363636,3.272727,-0.727273 +L 3.272727,-0.727273,4.363636,-0.727273 +L 4.363636,-0.727273,5.454545,-0.363636 +L 5.454545,-0.363636,6.545455,0.363636 +L 6.545455,0.363636,7.272727,1.454545 +L 7.272727,1.454545,7.636364,2.545455 +L 7.636364,2.545455,7.636364,3.636364 +L 7.636364,3.636364,7.272727,4.727273 +L 7.272727,4.727273,6.545455,5.818182 +L 6.545455,5.818182,5.454545,6.545455 +L 5.454545,6.545455,4.363636,6.909091 +L 4.363636,6.909091,3.272727,6.909091 +L 3.636364,3.636364,3.272727,3.272727 +L 3.272727,3.272727,3.272727,2.909091 +L 3.272727,2.909091,3.636364,2.545455 +L 3.636364,2.545455,4,2.545455 +L 4,2.545455,4.363636,2.909091 +L 4.363636,2.909091,4.363636,3.272727 +L 4.363636,3.272727,4,3.636364 +L 4,3.636364,3.636364,3.636364 +L 3.636364,3.272727,3.636364,2.909091 +L 3.636364,2.909091,4,2.909091 +L 4,2.909091,4,3.272727 +L 4,3.272727,3.636364,3.272727 + +[/] 29 +L 1.090909,6.909091,0.363636,6.545455 +L 0.363636,6.545455,0.727273,5.818182 +L 0.727273,5.818182,1.454545,5.454545 +L 1.090909,6.909091,0.727273,6.545455 +L 0.727273,6.545455,0.727273,5.818182 +L 2.909091,6.909091,3.636364,6.545455 +L 3.636364,6.545455,3.272727,5.818182 +L 3.272727,5.818182,2.545455,5.454545 +L 2.909091,6.909091,3.272727,6.545455 +L 3.272727,6.545455,3.272727,5.818182 +L 1.454545,5.454545,0.727273,5.090909 +L 0.727273,5.090909,0.363636,4.727273 +L 0.363636,4.727273,0,4 +L 0,4,0,2.909091 +L 0,2.909091,0.363636,2.181818 +L 0.363636,2.181818,0.727273,1.818182 +L 0.727273,1.818182,1.454545,1.454545 +L 1.454545,1.454545,2.545455,1.454545 +L 2.545455,1.454545,3.272727,1.818182 +L 3.272727,1.818182,3.636364,2.181818 +L 3.636364,2.181818,4,2.909091 +L 4,2.909091,4,4 +L 4,4,3.636364,4.727273 +L 3.636364,4.727273,3.272727,5.090909 +L 3.272727,5.090909,2.545455,5.454545 +L 2.545455,5.454545,1.454545,5.454545 +L 1.818182,1.454545,1.818182,-0.727273 +L 2.181818,1.454545,2.181818,-0.727273 +L 0.363636,0.363636,3.636364,0.363636 + +[0] 19 +L 2.181818,6.909091,1.090909,6.545455 +L 1.090909,6.545455,0.363636,5.818182 +L 0.363636,5.818182,0,4.727273 +L 0,4.727273,0,4.363636 +L 0,4.363636,0.363636,3.272727 +L 0.363636,3.272727,1.090909,2.545455 +L 1.090909,2.545455,2.181818,2.181818 +L 2.181818,2.181818,2.545455,2.181818 +L 2.545455,2.181818,3.636364,2.545455 +L 3.636364,2.545455,4.363636,3.272727 +L 4.363636,3.272727,4.727273,4.363636 +L 4.727273,4.363636,4.727273,4.727273 +L 4.727273,4.727273,4.363636,5.818182 +L 4.363636,5.818182,3.636364,6.545455 +L 3.636364,6.545455,2.545455,6.909091 +L 2.545455,6.909091,2.181818,6.909091 +L 2.181818,2.181818,2.181818,-0.727273 +L 2.545455,2.181818,2.545455,-0.727273 +L 0.727273,0.727273,4,0.727273 + +[1] 22 +L 3.272727,6.909091,2.181818,6.545455 +L 2.181818,6.545455,1.090909,5.818182 +L 1.090909,5.818182,0.363636,4.727273 +L 0.363636,4.727273,0,3.636364 +L 0,3.636364,0,2.181818 +L 0,2.181818,0.363636,1.090909 +L 0.363636,1.090909,1.090909,0 +L 1.090909,0,2.181818,-0.727273 +L 2.181818,-0.727273,3.272727,-1.090909 +L 3.272727,-1.090909,4.727273,-1.090909 +L 4.727273,-1.090909,5.818182,-0.727273 +L 5.818182,-0.727273,6.909091,0 +L 6.909091,0,7.636364,1.090909 +L 7.636364,1.090909,8,2.181818 +L 8,2.181818,8,3.636364 +L 8,3.636364,7.636364,4.727273 +L 7.636364,4.727273,6.909091,5.818182 +L 6.909091,5.818182,5.818182,6.545455 +L 5.818182,6.545455,4.727273,6.909091 +L 4.727273,6.909091,3.272727,6.909091 +L 4,6.909091,4,-1.090909 +L 0,2.909091,8,2.909091 + +[2] 23 +L 2.181818,4.363636,1.090909,4 +L 1.090909,4,0.363636,3.272727 +L 0.363636,3.272727,0,2.181818 +L 0,2.181818,0,1.818182 +L 0,1.818182,0.363636,0.727273 +L 0.363636,0.727273,1.090909,0 +L 1.090909,0,2.181818,-0.363636 +L 2.181818,-0.363636,2.545455,-0.363636 +L 2.545455,-0.363636,3.636364,0 +L 3.636364,0,4.363636,0.727273 +L 4.363636,0.727273,4.727273,1.818182 +L 4.727273,1.818182,4.727273,2.181818 +L 4.727273,2.181818,4.363636,3.272727 +L 4.363636,3.272727,3.636364,4 +L 3.636364,4,2.545455,4.363636 +L 2.545455,4.363636,2.181818,4.363636 +L 6.909091,6.545455,4.727273,6.545455 +L 4.727273,6.545455,6.181818,6.181818 +L 6.181818,6.181818,4,4 +L 6.909091,6.545455,6.909091,4.363636 +L 6.909091,4.363636,6.545455,5.818182 +L 6.545455,5.818182,4.363636,3.636364 +L 6.545455,6.181818,4.363636,4 + +[3] 18 +L 0,5.818182,0.363636,6.545455 +L 0.363636,6.545455,1.090909,6.909091 +L 1.090909,6.909091,2.181818,6.909091 +L 2.181818,6.909091,2.909091,6.545455 +L 2.909091,6.545455,3.272727,5.818182 +L 3.272727,5.818182,3.272727,4.727273 +L 3.272727,4.727273,2.909091,3.636364 +L 2.909091,3.636364,2.545455,2.909091 +L 2.545455,2.909091,1.818182,2.181818 +L 1.818182,2.181818,0.727273,1.454545 +L 2.181818,6.909091,2.545455,6.545455 +L 2.545455,6.545455,2.909091,5.818182 +L 2.909091,5.818182,2.909091,4.363636 +L 2.909091,4.363636,2.545455,3.272727 +L 2.545455,3.272727,1.818182,2.181818 +L 4.727273,6.909091,4,-0.727273 +L 5.090909,6.909091,3.636364,-0.727273 +L 0.727273,1.454545,5.818182,1.454545 + +[4] 20 +L 0.727273,6.909091,0.727273,1.454545 +L 1.090909,6.909091,0.727273,2.909091 +L 0.727273,2.909091,1.090909,3.636364 +L 1.090909,3.636364,1.454545,4 +L 1.454545,4,2.181818,4.363636 +L 2.181818,4.363636,3.272727,4.363636 +L 3.272727,4.363636,4.363636,4 +L 4.363636,4,4.727273,3.272727 +L 4.727273,3.272727,4.727273,2.545455 +L 4.727273,2.545455,4.363636,1.818182 +L 4.363636,1.818182,3.636364,1.090909 +L 3.272727,4.363636,4,4 +L 4,4,4.363636,3.272727 +L 4.363636,3.272727,4.363636,2.545455 +L 4.363636,2.545455,3.272727,0.363636 +L 3.272727,0.363636,3.272727,-0.363636 +L 3.272727,-0.363636,3.636364,-0.727273 +L 3.636364,-0.727273,4.363636,-0.727273 +L 4.363636,-0.727273,5.090909,0 +L 0,6.909091,1.090909,6.909091 + +[5] 34 +L 2.181818,4,1.090909,3.636364 +L 1.090909,3.636364,0.363636,2.909091 +L 0.363636,2.909091,0,1.818182 +L 0,1.818182,0,1.454545 +L 0,1.454545,0.363636,0.363636 +L 0.363636,0.363636,1.090909,-0.363636 +L 1.090909,-0.363636,2.181818,-0.727273 +L 2.181818,-0.727273,2.545455,-0.727273 +L 2.545455,-0.727273,3.636364,-0.363636 +L 3.636364,-0.363636,4.363636,0.363636 +L 4.363636,0.363636,4.727273,1.454545 +L 4.727273,1.454545,4.727273,1.818182 +L 4.727273,1.818182,4.363636,2.909091 +L 4.363636,2.909091,3.636364,3.636364 +L 3.636364,3.636364,2.545455,4 +L 2.545455,4,2.181818,4 +L 2.181818,6.181818,0.727273,5.454545 +L 0.727273,5.454545,2.181818,6.909091 +L 2.181818,6.909091,2.181818,4 +L 2.545455,6.181818,4,5.454545 +L 4,5.454545,2.545455,6.909091 +L 2.545455,6.909091,2.545455,4 +L 2.181818,2.181818,1.818182,1.818182 +L 1.818182,1.818182,1.818182,1.454545 +L 1.818182,1.454545,2.181818,1.090909 +L 2.181818,1.090909,2.545455,1.090909 +L 2.545455,1.090909,2.909091,1.454545 +L 2.909091,1.454545,2.909091,1.818182 +L 2.909091,1.818182,2.545455,2.181818 +L 2.545455,2.181818,2.181818,2.181818 +L 2.181818,1.818182,2.181818,1.454545 +L 2.181818,1.454545,2.545455,1.454545 +L 2.545455,1.454545,2.545455,1.818182 +L 2.545455,1.818182,2.181818,1.818182 + +[6] 23 +L 2.545455,6.181818,2.909091,6.909091 +L 2.909091,6.909091,2.909091,-0.727273 +L 3.636364,6.181818,3.272727,6.909091 +L 3.272727,6.909091,3.272727,-0.727273 +L 0,6.181818,0.363636,6.909091 +L 0.363636,6.909091,0.363636,4.363636 +L 0.363636,4.363636,0.727273,3.272727 +L 0.727273,3.272727,1.454545,2.545455 +L 1.454545,2.545455,2.545455,2.181818 +L 2.545455,2.181818,2.909091,2.181818 +L 1.090909,6.181818,0.727273,6.909091 +L 0.727273,6.909091,0.727273,4 +L 0.727273,4,1.090909,2.909091 +L 6.181818,6.181818,5.818182,6.909091 +L 5.818182,6.909091,5.818182,4.363636 +L 5.818182,4.363636,5.454545,3.272727 +L 5.454545,3.272727,4.727273,2.545455 +L 4.727273,2.545455,3.636364,2.181818 +L 3.636364,2.181818,3.272727,2.181818 +L 5.090909,6.181818,5.454545,6.909091 +L 5.454545,6.909091,5.454545,4 +L 5.454545,4,5.090909,2.909091 +L 1.454545,0.727273,4.727273,0.727273 + +[7] 21 +L 1.090909,6.909091,1.090909,-0.727273 +L 1.454545,6.909091,1.454545,-0.727273 +L 0,6.909091,4.363636,6.909091 +L 4.363636,6.909091,5.454545,6.545455 +L 5.454545,6.545455,5.818182,6.181818 +L 5.818182,6.181818,6.181818,5.454545 +L 6.181818,5.454545,6.181818,4.363636 +L 6.181818,4.363636,5.818182,3.636364 +L 5.818182,3.636364,5.454545,3.272727 +L 5.454545,3.272727,4.363636,2.909091 +L 4.363636,2.909091,1.454545,2.909091 +L 4.363636,6.909091,5.090909,6.545455 +L 5.090909,6.545455,5.454545,6.181818 +L 5.454545,6.181818,5.818182,5.454545 +L 5.818182,5.454545,5.818182,4.363636 +L 5.818182,4.363636,5.454545,3.636364 +L 5.454545,3.636364,5.090909,3.272727 +L 5.090909,3.272727,4.363636,2.909091 +L 0,-0.727273,5.818182,-0.727273 +L 5.818182,-0.727273,5.818182,1.090909 +L 5.818182,1.090909,5.454545,-0.727273 + +[8] 20 +L 5.090909,6.545455,3.636364,6.545455 +L 3.636364,6.545455,2.181818,6.181818 +L 2.181818,6.181818,1.090909,5.454545 +L 1.090909,5.454545,0.363636,4.363636 +L 0.363636,4.363636,0,3.272727 +L 0,3.272727,0,2.181818 +L 0,2.181818,0.363636,1.090909 +L 0.363636,1.090909,1.090909,0 +L 1.090909,0,2.181818,-0.727273 +L 2.181818,-0.727273,3.636364,-1.090909 +L 3.636364,-1.090909,5.090909,-1.090909 +L 5.090909,6.545455,4,6.181818 +L 4,6.181818,2.909091,5.454545 +L 2.909091,5.454545,2.181818,4.363636 +L 2.181818,4.363636,1.818182,3.272727 +L 1.818182,3.272727,1.818182,2.181818 +L 1.818182,2.181818,2.181818,1.090909 +L 2.181818,1.090909,2.909091,0 +L 2.909091,0,4,-0.727273 +L 4,-0.727273,5.090909,-1.090909 + +[9] 19 +L 2.181818,2.909091,1.454545,2.909091 +L 1.454545,2.909091,0.727273,2.545455 +L 0.727273,2.545455,0.363636,2.181818 +L 0.363636,2.181818,0,1.454545 +L 0,1.454545,0,0.727273 +L 0,0.727273,0.363636,0 +L 0.363636,0,0.727273,-0.363636 +L 0.727273,-0.363636,1.454545,-0.727273 +L 1.454545,-0.727273,2.181818,-0.727273 +L 2.181818,-0.727273,2.909091,-0.363636 +L 2.909091,-0.363636,3.272727,0 +L 3.272727,0,3.636364,0.727273 +L 3.636364,0.727273,3.636364,1.454545 +L 3.636364,1.454545,3.272727,2.181818 +L 3.272727,2.181818,2.909091,2.545455 +L 2.909091,2.545455,2.181818,2.909091 +L 3.636364,6.181818,2.545455,2.909091 +L 6.181818,5.454545,3.272727,2.545455 +L 6.909091,2.909091,3.636364,1.818182 + +[:] 4 +L 1.454545,5.090909,3.636364,0 +L 3.636364,5.090909,1.454545,0 +L 0,3.636364,5.090909,1.454545 +L 5.090909,3.636364,0,1.454545 + +[;] 32 +L 0.363636,4.363636,0,4.727273 +L 0,4.727273,0,5.454545 +L 0,5.454545,0.363636,6.181818 +L 0.363636,6.181818,1.090909,6.545455 +L 1.090909,6.545455,1.818182,6.545455 +L 1.818182,6.545455,2.545455,6.181818 +L 2.545455,6.181818,2.909091,5.818182 +L 2.909091,5.818182,3.272727,5.090909 +L 3.272727,5.090909,3.636364,3.272727 +L 0,5.454545,0.727273,6.181818 +L 0.727273,6.181818,1.454545,6.181818 +L 1.454545,6.181818,2.181818,5.818182 +L 2.181818,5.818182,2.545455,5.454545 +L 2.545455,5.454545,2.909091,4.727273 +L 2.909091,4.727273,3.272727,3.272727 +L 3.272727,3.272727,3.272727,-0.727273 +L 6.545455,4.363636,6.909091,4.727273 +L 6.909091,4.727273,6.909091,5.454545 +L 6.909091,5.454545,6.545455,6.181818 +L 6.545455,6.181818,5.818182,6.545455 +L 5.818182,6.545455,5.090909,6.545455 +L 5.090909,6.545455,4.363636,6.181818 +L 4.363636,6.181818,4,5.818182 +L 4,5.818182,3.636364,5.090909 +L 3.636364,5.090909,3.272727,3.272727 +L 6.909091,5.454545,6.181818,6.181818 +L 6.181818,6.181818,5.454545,6.181818 +L 5.454545,6.181818,4.727273,5.818182 +L 4.727273,5.818182,4.363636,5.454545 +L 4.363636,5.454545,4,4.727273 +L 4,4.727273,3.636364,3.272727 +L 3.636364,3.272727,3.636364,-0.727273 + +[<] 41 +L 0,6.545455,0.363636,5.090909 +L 0.363636,5.090909,0.727273,4.363636 +L 0.727273,4.363636,1.454545,3.636364 +L 1.454545,3.636364,2.545455,3.272727 +L 2.545455,3.272727,4,3.272727 +L 4,3.272727,5.090909,3.636364 +L 5.090909,3.636364,5.818182,4.363636 +L 5.818182,4.363636,6.181818,5.090909 +L 6.181818,5.090909,6.545455,6.545455 +L 0,6.545455,0.363636,5.454545 +L 0.363636,5.454545,0.727273,4.727273 +L 0.727273,4.727273,1.454545,4 +L 1.454545,4,2.545455,3.636364 +L 2.545455,3.636364,4,3.636364 +L 4,3.636364,5.090909,4 +L 5.090909,4,5.818182,4.727273 +L 5.818182,4.727273,6.181818,5.454545 +L 6.181818,5.454545,6.545455,6.545455 +L 2.545455,3.636364,1.818182,3.272727 +L 1.818182,3.272727,1.454545,2.909091 +L 1.454545,2.909091,1.090909,2.181818 +L 1.090909,2.181818,1.090909,1.090909 +L 1.090909,1.090909,1.454545,0.363636 +L 1.454545,0.363636,2.181818,-0.363636 +L 2.181818,-0.363636,2.909091,-0.727273 +L 2.909091,-0.727273,3.636364,-0.727273 +L 3.636364,-0.727273,4.363636,-0.363636 +L 4.363636,-0.363636,5.090909,0.363636 +L 5.090909,0.363636,5.454545,1.090909 +L 5.454545,1.090909,5.454545,2.181818 +L 5.454545,2.181818,5.090909,2.909091 +L 5.090909,2.909091,4.727273,3.272727 +L 4.727273,3.272727,4,3.636364 +L 2.545455,3.272727,1.818182,2.909091 +L 1.818182,2.909091,1.454545,2.181818 +L 1.454545,2.181818,1.454545,1.090909 +L 1.454545,1.090909,1.818182,0 +L 4.727273,0,5.090909,1.090909 +L 5.090909,1.090909,5.090909,2.181818 +L 5.090909,2.181818,4.727273,2.909091 +L 4.727273,2.909091,4,3.272727 + +[=] 18 +L 1.454545,5.454545,1.454545,1.090909 +L 1.818182,5.090909,1.818182,1.454545 +L 4.727273,5.090909,4.727273,1.454545 +L 5.090909,5.454545,5.090909,1.090909 +L 0,6.545455,0.727273,5.818182 +L 0.727273,5.818182,1.454545,5.454545 +L 1.454545,5.454545,2.545455,5.090909 +L 2.545455,5.090909,4,5.090909 +L 4,5.090909,5.090909,5.454545 +L 5.090909,5.454545,5.818182,5.818182 +L 5.818182,5.818182,6.545455,6.545455 +L 0,0,0.727273,0.727273 +L 0.727273,0.727273,1.454545,1.090909 +L 1.454545,1.090909,2.545455,1.454545 +L 2.545455,1.454545,4,1.454545 +L 4,1.454545,5.090909,1.090909 +L 5.090909,1.090909,5.818182,0.727273 +L 5.818182,0.727273,6.545455,0 + +[>] 36 +L 6.545455,5.818182,1.090909,5.818182 +L 1.090909,5.818182,0.363636,5.454545 +L 0.363636,5.454545,0,4.727273 +L 0,4.727273,0,4 +L 0,4,0.363636,3.272727 +L 0.363636,3.272727,1.090909,2.909091 +L 1.090909,2.909091,1.818182,2.909091 +L 1.818182,2.909091,2.545455,3.272727 +L 2.545455,3.272727,2.909091,4 +L 2.909091,4,2.909091,4.727273 +L 2.909091,4.727273,2.545455,5.454545 +L 2.545455,5.454545,6.545455,5.454545 +L 0,4.363636,0.363636,3.636364 +L 0.363636,3.636364,0.727273,3.272727 +L 0.727273,3.272727,1.454545,2.909091 +L 2.909091,4.363636,2.545455,5.090909 +L 2.545455,5.090909,2.181818,5.454545 +L 2.181818,5.454545,1.454545,5.818182 +L 0,0.363636,5.454545,0.363636 +L 5.454545,0.363636,6.181818,0.727273 +L 6.181818,0.727273,6.545455,1.454545 +L 6.545455,1.454545,6.545455,2.181818 +L 6.545455,2.181818,6.181818,2.909091 +L 6.181818,2.909091,5.454545,3.272727 +L 5.454545,3.272727,4.727273,3.272727 +L 4.727273,3.272727,4,2.909091 +L 4,2.909091,3.636364,2.181818 +L 3.636364,2.181818,3.636364,1.454545 +L 3.636364,1.454545,4,0.727273 +L 4,0.727273,0,0.727273 +L 6.545455,1.818182,6.181818,2.545455 +L 6.181818,2.545455,5.818182,2.909091 +L 5.818182,2.909091,5.090909,3.272727 +L 3.636364,1.818182,4,1.090909 +L 4,1.090909,4.363636,0.727273 +L 4.363636,0.727273,5.090909,0.363636 + +[?] 42 +L 2.181818,1.454545,1.454545,1.818182 +L 1.454545,1.818182,1.090909,1.818182 +L 1.090909,1.818182,0.363636,1.454545 +L 0.363636,1.454545,0,0.727273 +L 0,0.727273,0,0.363636 +L 0,0.363636,0.363636,-0.363636 +L 0.363636,-0.363636,1.090909,-0.727273 +L 1.090909,-0.727273,1.454545,-0.727273 +L 1.454545,-0.727273,2.181818,-0.363636 +L 2.181818,-0.363636,2.545455,0.363636 +L 2.545455,0.363636,2.545455,0.727273 +L 2.545455,0.727273,2.181818,1.454545 +L 2.181818,1.454545,0.363636,3.272727 +L 0.363636,3.272727,0,4 +L 0,4,0,5.090909 +L 0,5.090909,0.363636,5.818182 +L 0.363636,5.818182,1.090909,6.181818 +L 1.090909,6.181818,2.181818,6.545455 +L 2.181818,6.545455,3.636364,6.545455 +L 3.636364,6.545455,5.090909,6.181818 +L 5.090909,6.181818,5.818182,5.454545 +L 5.818182,5.454545,6.181818,4.727273 +L 6.181818,4.727273,6.181818,3.636364 +L 6.181818,3.636364,5.818182,2.545455 +L 5.818182,2.545455,4.727273,1.454545 +L 4.727273,1.454545,4.363636,0.727273 +L 4.363636,0.727273,4.363636,0 +L 4.363636,0,4.727273,-0.727273 +L 4.727273,-0.727273,5.454545,-0.727273 +L 5.454545,-0.727273,5.818182,-0.363636 +L 5.818182,-0.363636,6.181818,0.363636 +L 1.454545,2.181818,0.727273,3.272727 +L 0.727273,3.272727,0.363636,4 +L 0.363636,4,0.363636,5.090909 +L 0.363636,5.090909,0.727273,5.818182 +L 0.727273,5.818182,1.090909,6.181818 +L 3.636364,6.545455,4.727273,6.181818 +L 4.727273,6.181818,5.454545,5.454545 +L 5.454545,5.454545,5.818182,4.727273 +L 5.818182,4.727273,5.818182,3.636364 +L 5.818182,3.636364,5.454545,2.545455 +L 5.454545,2.545455,4.727273,1.454545 + +[@] 32 +L 0,5.090909,1.090909,6.181818 +L 1.090909,6.181818,1.818182,5.090909 +L 1.818182,5.090909,1.818182,1.090909 +L 0.727273,5.818182,1.454545,4.727273 +L 1.454545,4.727273,1.454545,1.090909 +L 1.818182,5.090909,2.909091,6.181818 +L 2.909091,6.181818,3.636364,5.090909 +L 3.636364,5.090909,3.636364,1.454545 +L 2.545455,5.818182,3.272727,4.727273 +L 3.272727,4.727273,3.272727,1.454545 +L 3.636364,5.090909,4.727273,6.181818 +L 4.727273,6.181818,5.454545,5.090909 +L 5.454545,5.090909,5.454545,-0.727273 +L 4.363636,5.818182,5.090909,4.727273 +L 5.090909,4.727273,5.090909,-0.727273 +L 5.454545,5.090909,6.545455,6.181818 +L 6.545455,6.181818,6.909091,5.454545 +L 6.909091,5.454545,7.272727,4.363636 +L 7.272727,4.363636,7.272727,3.272727 +L 7.272727,3.272727,6.909091,2.181818 +L 6.909091,2.181818,6.545455,1.454545 +L 6.545455,1.454545,5.818182,0.727273 +L 5.818182,0.727273,4.727273,0 +L 4.727273,0,2.909091,-0.727273 +L 6.181818,5.818182,6.545455,5.454545 +L 6.545455,5.454545,6.909091,4.363636 +L 6.909091,4.363636,6.909091,3.272727 +L 6.909091,3.272727,6.545455,2.181818 +L 6.545455,2.181818,6.181818,1.454545 +L 6.181818,1.454545,5.454545,0.727273 +L 5.454545,0.727273,4.363636,0 +L 4.363636,0,2.909091,-0.727273 + +[A] 31 +L 0,2.181818,1.454545,2.181818 +L 1.454545,2.181818,1.090909,2.545455 +L 1.090909,2.545455,0.727273,3.636364 +L 0.727273,3.636364,0.727273,4.363636 +L 0.727273,4.363636,1.090909,5.454545 +L 1.090909,5.454545,1.818182,6.181818 +L 1.818182,6.181818,2.909091,6.545455 +L 2.909091,6.545455,3.636364,6.545455 +L 3.636364,6.545455,4.727273,6.181818 +L 4.727273,6.181818,5.454545,5.454545 +L 5.454545,5.454545,5.818182,4.363636 +L 5.818182,4.363636,5.818182,3.636364 +L 5.818182,3.636364,5.454545,2.545455 +L 5.454545,2.545455,5.090909,2.181818 +L 5.090909,2.181818,6.545455,2.181818 +L 0,1.818182,2.181818,1.818182 +L 2.181818,1.818182,1.454545,2.545455 +L 1.454545,2.545455,1.090909,3.636364 +L 1.090909,3.636364,1.090909,4.363636 +L 1.090909,4.363636,1.454545,5.454545 +L 1.454545,5.454545,2.181818,6.181818 +L 2.181818,6.181818,2.909091,6.545455 +L 3.636364,6.545455,4.363636,6.181818 +L 4.363636,6.181818,5.090909,5.454545 +L 5.090909,5.454545,5.454545,4.363636 +L 5.454545,4.363636,5.454545,3.636364 +L 5.454545,3.636364,5.090909,2.545455 +L 5.090909,2.545455,4.363636,1.818182 +L 4.363636,1.818182,6.545455,1.818182 +L 0.727273,0.363636,5.818182,0.363636 +L 0.727273,0,5.818182,0 + +[B] 18 +L 0,4.727273,1.090909,5.818182 +L 1.090909,5.818182,2.181818,4.727273 +L 2.181818,4.727273,2.181818,0.363636 +L 0.727273,5.454545,1.818182,4.363636 +L 1.818182,4.363636,1.818182,0.363636 +L 2.181818,4.727273,3.272727,5.818182 +L 3.272727,5.818182,4.363636,4.727273 +L 4.363636,4.727273,4.363636,0.363636 +L 2.909091,5.454545,4,4.363636 +L 4,4.363636,4,0.363636 +L 4.363636,4.727273,5.454545,5.818182 +L 5.454545,5.818182,6.545455,4.727273 +L 6.545455,4.727273,6.545455,0.727273 +L 6.545455,0.727273,7.272727,0 +L 5.090909,5.454545,6.181818,4.363636 +L 6.181818,4.363636,6.181818,0.363636 +L 6.181818,0.363636,6.909091,-0.363636 +L 6.909091,-0.363636,8,0.727273 + +[C] 15 +L 5.818182,5.818182,0,0 +L 5.818182,5.818182,4.727273,5.454545 +L 4.727273,5.454545,2.545455,5.454545 +L 5.090909,5.090909,4,5.090909 +L 4,5.090909,2.545455,5.454545 +L 5.818182,5.818182,5.454545,4.727273 +L 5.454545,4.727273,5.454545,2.545455 +L 5.090909,5.090909,5.090909,4 +L 5.090909,4,5.454545,2.545455 +L 2.545455,2.545455,0,2.545455 +L 2.181818,2.181818,1.090909,2.181818 +L 1.090909,2.181818,0,2.545455 +L 2.545455,2.545455,2.545455,0 +L 2.181818,2.181818,2.181818,1.090909 +L 2.181818,1.090909,2.545455,0 + +[D] 27 +L 0,3.636364,0.727273,5.090909 +L 0.727273,5.090909,2.545455,1.454545 +L 0.727273,4.363636,2.545455,0.727273 +L 2.545455,0.727273,3.636364,3.272727 +L 3.636364,3.272727,5.454545,3.272727 +L 5.454545,3.272727,6.545455,3.636364 +L 6.545455,3.636364,6.909091,4.363636 +L 6.909091,4.363636,6.909091,5.090909 +L 6.909091,5.090909,6.545455,5.818182 +L 6.545455,5.818182,5.818182,6.181818 +L 5.818182,6.181818,5.454545,6.181818 +L 5.454545,6.181818,4.727273,5.818182 +L 4.727273,5.818182,4.363636,5.090909 +L 4.363636,5.090909,4.363636,4.363636 +L 4.363636,4.363636,4.727273,3.272727 +L 4.727273,3.272727,5.090909,2.545455 +L 5.090909,2.545455,5.454545,1.454545 +L 5.454545,1.454545,5.454545,0.363636 +L 5.454545,0.363636,4.727273,-0.363636 +L 5.454545,6.181818,5.090909,5.818182 +L 5.090909,5.818182,4.727273,5.090909 +L 4.727273,5.090909,4.727273,4.363636 +L 4.727273,4.363636,5.454545,2.909091 +L 5.454545,2.909091,5.818182,1.818182 +L 5.818182,1.818182,5.818182,0.727273 +L 5.818182,0.727273,5.454545,0 +L 5.454545,0,4.727273,-0.363636 + +[E] 20 +L 0,3.636364,1.090909,4.727273 +L 1.090909,4.727273,2.545455,4 +L 0.727273,4.363636,2.181818,3.636364 +L 2.181818,3.636364,3.272727,4.727273 +L 3.272727,4.727273,4.363636,4 +L 2.909091,4.363636,4,3.636364 +L 4,3.636364,5.090909,4.727273 +L 5.090909,4.727273,5.818182,4 +L 4.727273,4.363636,5.454545,3.636364 +L 5.454545,3.636364,6.545455,4.727273 +L 0,1.454545,1.090909,2.545455 +L 1.090909,2.545455,2.545455,1.818182 +L 0.727273,2.181818,2.181818,1.454545 +L 2.181818,1.454545,3.272727,2.545455 +L 3.272727,2.545455,4.363636,1.818182 +L 2.909091,2.181818,4,1.454545 +L 4,1.454545,5.090909,2.545455 +L 5.090909,2.545455,5.818182,1.818182 +L 4.727273,2.181818,5.454545,1.454545 +L 5.454545,1.454545,6.545455,2.545455 + +[F] 32 +L 0.363636,6.181818,1.818182,5.454545 +L 1.818182,5.454545,2.545455,4.727273 +L 2.545455,4.727273,2.909091,3.636364 +L 2.909091,3.636364,2.909091,2.545455 +L 2.909091,2.545455,2.545455,1.454545 +L 2.545455,1.454545,1.818182,0.727273 +L 1.818182,0.727273,0.363636,0 +L 0.363636,6.181818,1.454545,5.818182 +L 1.454545,5.818182,2.181818,5.454545 +L 2.181818,5.454545,2.909091,4.727273 +L 2.909091,4.727273,3.272727,3.636364 +L 3.272727,2.545455,2.909091,1.454545 +L 2.909091,1.454545,2.181818,0.727273 +L 2.181818,0.727273,1.454545,0.363636 +L 1.454545,0.363636,0.363636,0 +L 6.181818,6.181818,5.090909,5.818182 +L 5.090909,5.818182,4.363636,5.454545 +L 4.363636,5.454545,3.636364,4.727273 +L 3.636364,4.727273,3.272727,3.636364 +L 3.272727,2.545455,3.636364,1.454545 +L 3.636364,1.454545,4.363636,0.727273 +L 4.363636,0.727273,5.090909,0.363636 +L 5.090909,0.363636,6.181818,0 +L 6.181818,6.181818,4.727273,5.454545 +L 4.727273,5.454545,4,4.727273 +L 4,4.727273,3.636364,3.636364 +L 3.636364,3.636364,3.636364,2.545455 +L 3.636364,2.545455,4,1.454545 +L 4,1.454545,4.727273,0.727273 +L 4.727273,0.727273,6.181818,0 +L 0,3.272727,6.545455,3.272727 +L 0,2.909091,6.545455,2.909091 + +#EOF diff --git a/pycam/share/fonts/symbol_misc1.cxf b/pycam/share/fonts/symbol_misc1.cxf new file mode 100644 index 00000000..0de006df --- /dev/null +++ b/pycam/share/fonts/symbol_misc1.cxf @@ -0,0 +1,1208 @@ +# Format: QCad II Font +# Creator: QCad +# Version: 1 +# Name: Symbol Misc 1 +# LetterSpacing: 3.0 +# WordSpacing: 6.75 +# LineSpacingFactor: 1.0 +# Author: Hershey fonts + +[!] 23 +L 1.6,4.8,0.8,4 +L 0.8,4,0.2,3.2 +L 0.2,3.2,0,2.6 +L 0,2.6,0,2.2 +L 0,2.2,0.2,1.8 +L 0.2,1.8,0.6,1.6 +L 0.6,1.6,1,1.6 +L 1,1.6,1.4,1.8 +L 1.4,1.8,1.6,2.2 +L 1.6,4.8,2.4,4 +L 2.4,4,3,3.2 +L 3,3.2,3.2,2.6 +L 3.2,2.6,3.2,2.2 +L 3.2,2.2,3,1.8 +L 3,1.8,2.6,1.6 +L 2.6,1.6,2.2,1.6 +L 2.2,1.6,1.8,1.8 +L 1.8,1.8,1.6,2.2 +L 1.6,2.2,1.4,1.4 +L 1.4,1.4,1.2,0.8 +L 1.6,2.2,1.8,1.4 +L 1.8,1.4,2,0.8 +L 1.2,0.8,2,0.8 + +["] 22 +L 1.6,3.6,1.4,4.2 +L 1.4,4.2,1.2,4.6 +L 1.2,4.6,0.8,4.8 +L 0.8,4.8,0.6,4.8 +L 0.6,4.8,0.2,4.6 +L 0.2,4.6,0,4.2 +L 0,4.2,0,3.4 +L 0,3.4,0.2,2.8 +L 0.2,2.8,0.4,2.4 +L 0.4,2.4,0.8,1.8 +L 0.8,1.8,1.6,0.8 +L 1.6,3.6,1.8,4.2 +L 1.8,4.2,2,4.6 +L 2,4.6,2.4,4.8 +L 2.4,4.8,2.6,4.8 +L 2.6,4.8,3,4.6 +L 3,4.6,3.2,4.2 +L 3.2,4.2,3.2,3.4 +L 3.2,3.4,3,2.8 +L 3,2.8,2.8,2.4 +L 2.8,2.4,2.4,1.8 +L 2.4,1.8,1.6,0.8 + +[#] 12 +L 1.8,5,1.4,4.4 +L 1.4,4.4,0.6,3.4 +L 0.6,3.4,0,2.8 +L 1.8,5,2.2,4.4 +L 2.2,4.4,3,3.4 +L 3,3.4,3.6,2.8 +L 0,2.8,0.6,2.2 +L 0.6,2.2,1.4,1.2 +L 1.4,1.2,1.8,0.6 +L 3.6,2.8,3,2.2 +L 3,2.2,2.2,1.2 +L 2.2,1.2,1.8,0.6 + +[$] 36 +L 1.8,2.4,2.2,1.8 +L 2.2,1.8,2.6,1.6 +L 2.6,1.6,3,1.6 +L 3,1.6,3.4,1.8 +L 3.4,1.8,3.6,2.2 +L 3.6,2.2,3.6,2.6 +L 3.6,2.6,3.4,3 +L 3.4,3,3,3.2 +L 3,3.2,2.6,3.2 +L 2.6,3.2,2,3 +L 2,3,2.4,3.4 +L 2.4,3.4,2.6,3.8 +L 2.6,3.8,2.6,4.2 +L 2.6,4.2,2.4,4.6 +L 2.4,4.6,2,4.8 +L 2,4.8,1.6,4.8 +L 1.6,4.8,1.2,4.6 +L 1.2,4.6,1,4.2 +L 1,4.2,1,3.8 +L 1,3.8,1.2,3.4 +L 1.2,3.4,1.6,3 +L 1.6,3,1,3.2 +L 1,3.2,0.6,3.2 +L 0.6,3.2,0.2,3 +L 0.2,3,0,2.6 +L 0,2.6,0,2.2 +L 0,2.2,0.2,1.8 +L 0.2,1.8,0.6,1.6 +L 0.6,1.6,1,1.6 +L 1,1.6,1.4,1.8 +L 1.4,1.8,1.8,2.4 +L 1.8,2.4,1.6,1.4 +L 1.6,1.4,1.4,0.8 +L 1.8,2.4,2,1.4 +L 2,1.4,2.2,0.8 +L 1.4,0.8,2.2,0.8 + +[%] 39 +L 1.8,2.8,1.8,1 +L 1.8,1,1.6,0.8 +L 1.8,2,1.6,0.8 +L 1.8,4.6,1.6,4.8 +L 1.6,4.8,1.2,4.8 +L 1.2,4.8,1,4.6 +L 1,4.6,1,4.2 +L 1,4.2,1.2,3.6 +L 1.2,3.6,1.8,2.8 +L 1.8,4.6,2,4.8 +L 2,4.8,2.4,4.8 +L 2.4,4.8,2.6,4.6 +L 2.6,4.6,2.6,4.2 +L 2.6,4.2,2.4,3.6 +L 2.4,3.6,1.8,2.8 +L 1.8,2.8,1,3.4 +L 1,3.4,0.6,3.6 +L 0.6,3.6,0.2,3.6 +L 0.2,3.6,0,3.4 +L 0,3.4,0,3 +L 0,3,0.2,2.8 +L 1.8,2.8,2.6,3.4 +L 2.6,3.4,3,3.6 +L 3,3.6,3.4,3.6 +L 3.4,3.6,3.6,3.4 +L 3.6,3.4,3.6,3 +L 3.6,3,3.4,2.8 +L 1.8,2.8,1,2.2 +L 1,2.2,0.6,2 +L 0.6,2,0.2,2 +L 0.2,2,0,2.2 +L 0,2.2,0,2.6 +L 0,2.6,0.2,2.8 +L 1.8,2.8,2.6,2.2 +L 2.6,2.2,3,2 +L 3,2,3.4,2 +L 3.4,2,3.6,2.2 +L 3.6,2.2,3.6,2.6 +L 3.6,2.6,3.4,2.8 + +[&] 41 +L 0,2.6,0.2,2.6 +L 0.2,2.6,0.6,2.4 +L 0.6,2.4,0.8,2 +L 0.8,2,0.8,1.6 +L 0.8,1.6,0.6,1.2 +L 0,2.6,0,2.8 +L 0,2.8,0.2,3 +L 0.2,3,0.6,3 +L 0.6,3,0.8,2.8 +L 0.8,2.8,1,2.4 +L 1,2.4,1,1.8 +L 1,1.8,0.8,1.4 +L 0.8,1.4,0.6,1.2 +L 1.8,5,1.4,4.6 +L 1.4,4.6,1.2,4 +L 1.2,4,1.2,3.4 +L 1.2,3.4,1.6,2.2 +L 1.6,2.2,1.6,1.6 +L 1.6,1.6,1.4,1.2 +L 1.4,1.2,1.8,0.8 +L 1.8,5,2.2,4.6 +L 2.2,4.6,2.4,4 +L 2.4,4,2.4,3.4 +L 2.4,3.4,2,2.2 +L 2,2.2,2,1.6 +L 2,1.6,2.2,1.2 +L 2.2,1.2,1.8,0.8 +L 3.6,2.6,3.6,2.8 +L 3.6,2.8,3.4,3 +L 3.4,3,3,3 +L 3,3,2.8,2.8 +L 2.8,2.8,2.6,2.4 +L 2.6,2.4,2.6,1.8 +L 2.6,1.8,2.8,1.4 +L 2.8,1.4,3,1.2 +L 3.6,2.6,3.4,2.6 +L 3.4,2.6,3,2.4 +L 3,2.4,2.8,2 +L 2.8,2,2.8,1.6 +L 2.8,1.6,3,1.2 +L 0.4,2,3.2,2 + +['] 14 +L 0.6,2.8,0.4,2.6 +L 0.4,2.6,0.2,2.6 +L 0.2,2.6,0,2.8 +L 0,2.8,0,3 +L 0,3,0.2,3.2 +L 0.2,3.2,0.4,3.2 +L 0.4,3.2,0.6,3 +L 0.6,3,0.6,2.6 +L 0.6,2.6,0.4,2.2 +L 0.4,2.2,0.2,2 +L 0.2,3,0.2,2.8 +L 0.2,2.8,0.4,2.8 +L 0.4,2.8,0.4,3 +L 0.4,3,0.2,3 + +[(] 12 +L 0.2,3.2,0,3 +L 0,3,0,2.6 +L 0,2.6,0.2,2.4 +L 0.2,2.4,0.6,2.4 +L 0.6,2.4,0.8,2.6 +L 0.8,2.6,0.8,3 +L 0.8,3,0.6,3.2 +L 0.6,3.2,0.2,3.2 +L 0.4,3,0.2,2.8 +L 0.2,2.8,0.4,2.6 +L 0.4,2.6,0.6,2.8 +L 0.6,2.8,0.4,3 + +[)] 3 +L 0.4,3.4,1.2,2.2 +L 1.2,3.4,0.4,2.2 +L 0,2.8,1.6,2.8 + +[*] 12 +L 1,4.2,0.8,3.8 +L 0.8,3.8,0.4,3.2 +L 0.4,3.2,0,2.8 +L 1,4.2,1.2,3.8 +L 1.2,3.8,1.6,3.2 +L 1.6,3.2,2,2.8 +L 1,3.8,0.4,3 +L 1,3.8,1.6,3 +L 1,3.4,0.6,3 +L 1,3.4,1.4,3 +L 0.8,3,1.2,3 +L 0,2.8,2,2.8 + +[+] 14 +L 0,2.8,0,3 +L 0,3,0.2,3.4 +L 0.2,3.4,0.4,3.6 +L 0.4,3.6,0.8,3.8 +L 0.8,3.8,1.2,3.8 +L 1.2,3.8,1.6,3.6 +L 1.6,3.6,1.8,3.4 +L 1.8,3.4,2,3 +L 2,3,2,2.8 +L 0.6,3.6,1.4,3.6 +L 0.4,3.4,1.6,3.4 +L 0.2,3.2,1.8,3.2 +L 0.2,3,1.8,3 +L 0,2.8,2,2.8 + +[,] 6 +L 0,5.2,0,2.8 +L 0,2.8,1.2,2.8 +L 1.2,2.8,0,5.2 +L 0,4.6,0.8,3 +L 0,4,0.6,2.8 +L 0,3.4,0.2,3 + +[-] 6 +L 1,4.2,0.8,3.8 +L 0.8,3.8,0.4,3.2 +L 0.4,3.2,0,2.8 +L 1,4.2,1.2,3.8 +L 1.2,3.8,1.6,3.2 +L 1.6,3.2,2,2.8 + +[.] 9 +L 2,2.8,2,3 +L 2,3,1.8,3.4 +L 1.8,3.4,1.6,3.6 +L 1.6,3.6,1.2,3.8 +L 1.2,3.8,0.8,3.8 +L 0.8,3.8,0.4,3.6 +L 0.4,3.6,0.2,3.4 +L 0.2,3.4,0,3 +L 0,3,0,2.8 + +[/] 11 +L 4.4,2.8,4.4,3.2 +L 4.4,3.2,4.2,3.8 +L 4.2,3.8,3.8,4.4 +L 3.8,4.4,3.2,4.8 +L 3.2,4.8,2.6,5 +L 2.6,5,1.8,5 +L 1.8,5,1.2,4.8 +L 1.2,4.8,0.6,4.4 +L 0.6,4.4,0.2,3.8 +L 0.2,3.8,0,3.2 +L 0,3.2,0,2.8 + +[0] 9 +L 0,2.8,0,2.6 +L 0,2.6,0.2,2.2 +L 0.2,2.2,0.4,2 +L 0.4,2,0.8,1.8 +L 0.8,1.8,1.2,1.8 +L 1.2,1.8,1.6,2 +L 1.6,2,1.8,2.2 +L 1.8,2.2,2,2.6 +L 2,2.6,2,2.8 + +[1] 5 +L 0,3.2,0.4,2.8 +L 0.4,2.8,1,2.6 +L 1,2.6,1.4,2.6 +L 1.4,2.6,2,2.8 +L 2,2.8,2.4,3.2 + +[2] 4 +L 0,2.2,0.4,2.4 +L 0.4,2.4,0.6,2.8 +L 0.6,2.8,0.4,3.2 +L 0.4,3.2,0,3.4 + +[3] 5 +L 0,2.8,0.6,3.2 +L 0.6,3.2,0.8,3.6 +L 0.8,3.6,0.8,4 +L 0.8,4,0.6,4.2 +L 0.6,4.2,0.4,4.2 + +[4] 5 +L 0.8,2.8,0.2,3.2 +L 0.2,3.2,0,3.6 +L 0,3.6,0,4 +L 0,4,0.2,4.2 +L 0.2,4.2,0.4,4.2 + +[5] 19 +L 2,4.8,1.8,5 +L 1.8,5,1.4,5.2 +L 1.4,5.2,0.8,5.2 +L 0.8,5.2,0.4,5 +L 0.4,5,0.2,4.8 +L 0.2,4.8,0,4.4 +L 0,4.4,0,4 +L 0,4,0.2,3.6 +L 0.2,3.6,0.4,3.4 +L 0.4,3.4,1.6,2.6 +L 1.6,2.6,1.8,2.4 +L 1.8,2.4,2,2 +L 2,2,2,1.6 +L 2,1.6,1.8,1.2 +L 1.8,1.2,1.6,1 +L 1.6,1,1.2,0.8 +L 1.2,0.8,0.6,0.8 +L 0.6,0.8,0.2,1 +L 0.2,1,0,1.2 + +[6] 19 +L 0.4,1.8,0.2,2 +L 0.2,2,0,2.4 +L 0,2.4,0,3 +L 0,3,0.2,3.4 +L 0.2,3.4,0.4,3.6 +L 0.4,3.6,0.8,3.8 +L 0.8,3.8,1.2,3.8 +L 1.2,3.8,1.6,3.6 +L 1.6,3.6,1.8,3.4 +L 1.8,3.4,2.6,2.2 +L 2.6,2.2,2.8,2 +L 2.8,2,3.2,1.8 +L 3.2,1.8,3.6,1.8 +L 3.6,1.8,4,2 +L 4,2,4.2,2.2 +L 4.2,2.2,4.4,2.6 +L 4.4,2.6,4.4,3.2 +L 4.4,3.2,4.2,3.6 +L 4.2,3.6,4,3.8 + +[7] 29 +L 2.2,2.8,2.6,2.2 +L 2.6,2.2,2.8,2 +L 2.8,2,3.2,1.8 +L 3.2,1.8,3.6,1.8 +L 3.6,1.8,4,2 +L 4,2,4.2,2.2 +L 4.2,2.2,4.4,2.6 +L 4.4,2.6,4.4,3 +L 4.4,3,4.2,3.4 +L 4.2,3.4,4,3.6 +L 4,3.6,3.6,3.8 +L 3.6,3.8,3.2,3.8 +L 3.2,3.8,2.8,3.6 +L 2.8,3.6,2.6,3.4 +L 2.6,3.4,1.8,2.2 +L 1.8,2.2,1.6,2 +L 1.6,2,1.2,1.8 +L 1.2,1.8,0.8,1.8 +L 0.8,1.8,0.4,2 +L 0.4,2,0.2,2.2 +L 0.2,2.2,0,2.6 +L 0,2.6,0,3 +L 0,3,0.2,3.4 +L 0.2,3.4,0.4,3.6 +L 0.4,3.6,0.8,3.8 +L 0.8,3.8,1.2,3.8 +L 1.2,3.8,1.6,3.6 +L 1.6,3.6,1.8,3.4 +L 1.8,3.4,2.2,2.8 + +[8] 10 +L 0.6,5.2,0.6,1 +L 0,5.2,3.8,5.2 +L 3.8,5.2,1.8,3.2 +L 1.8,3.2,3.8,1.2 +L 3.6,2,3.8,1.4 +L 3.8,1.4,4,1 +L 3.6,2,3.6,1.4 +L 3,1.4,3.6,1.4 +L 3,1.4,3.6,1.2 +L 3.6,1.2,4,1 + +[9] 26 +L 2,6.2,1.4,6 +L 1.4,6,1,5.8 +L 1,5.8,0.6,5.4 +L 0.6,5.4,0.2,4.8 +L 0.2,4.8,0,4 +L 0,4,0,2.8 +L 0,2.8,0.2,2.2 +L 0.2,2.2,0.6,1.8 +L 0.6,1.8,1.2,1.6 +L 1.2,1.6,1.6,1.6 +L 1.6,1.6,2.2,1.8 +L 2.2,1.8,2.6,2.2 +L 2.6,2.2,2.8,2.8 +L 0,3.2,0.2,3.8 +L 0.2,3.8,0.6,4.2 +L 0.6,4.2,1.2,4.4 +L 1.2,4.4,1.6,4.4 +L 1.6,4.4,2.2,4.2 +L 2.2,4.2,2.6,3.8 +L 2.6,3.8,2.8,3.2 +L 2.8,3.2,2.8,2 +L 2.8,2,2.6,1.2 +L 2.6,1.2,2.2,0.6 +L 2.2,0.6,1.8,0.2 +L 1.8,0.2,1.4,0 +L 1.4,0,0.8,-0.2 + +[:] 1 +L 0,2.8,8,2.8 + +[;] 1 +L 0,0,5.6,5.6 + +[<] 1 +L 0,6.8,0,-1.2 + +[=] 1 +L 0,5.6,5.6,0 + +[>] 1 +L 0,2.8,5.6,2.8 + +[?] 1 +L 0,1.4,4.8,4.2 + +[@] 1 +L 0,0.4,2.8,5.2 + +[A] 1 +L 0,5.6,0,0 + +[B] 1 +L 0,5.2,2.8,0.4 + +[C] 1 +L 0,4.2,4.8,1.4 + +[D] 1 +L 0,2.8,2.8,2.8 + +[E] 1 +L 0,1.8,2,3.8 + +[F] 1 +L 0,4.2,0,1.4 + +[G] 1 +L 0,3.8,2,1.8 + +[H] 6 +L 2.2,5,1.8,5 +L 1.8,5,1.2,4.8 +L 1.2,4.8,0.6,4.4 +L 0.6,4.4,0.2,3.8 +L 0.2,3.8,0,3.2 +L 0,3.2,0,2.8 + +[I] 6 +L 0,2.8,0,2.4 +L 0,2.4,0.2,1.8 +L 0.2,1.8,0.6,1.2 +L 0.6,1.2,1.2,0.8 +L 1.2,0.8,1.8,0.6 +L 1.8,0.6,2.2,0.6 + +[J] 6 +L 0,0.6,0.4,0.6 +L 0.4,0.6,1,0.8 +L 1,0.8,1.6,1.2 +L 1.6,1.2,2,1.8 +L 2,1.8,2.2,2.4 +L 2.2,2.4,2.2,2.8 + +[K] 6 +L 2.2,2.8,2.2,3.2 +L 2.2,3.2,2,3.8 +L 2,3.8,1.6,4.4 +L 1.6,4.4,1,4.8 +L 1,4.8,0.4,5 +L 0.4,5,0,5 + +[L] 7 +L 0,3.4,0.6,3 +L 0.6,3,1.4,2.6 +L 1.4,2.6,2.4,2.4 +L 2.4,2.4,3.2,2.4 +L 3.2,2.4,4.2,2.6 +L 4.2,2.6,5,3 +L 5,3,5.6,3.4 + +[M] 7 +L 1,5.6,0.6,5 +L 0.6,5,0.2,4.2 +L 0.2,4.2,0,3.2 +L 0,3.2,0,2.4 +L 0,2.4,0.2,1.4 +L 0.2,1.4,0.6,0.6 +L 0.6,0.6,1,0 + +[N] 7 +L 0,5.6,0.4,5 +L 0.4,5,0.8,4.2 +L 0.8,4.2,1,3.2 +L 1,3.2,1,2.4 +L 1,2.4,0.8,1.4 +L 0.8,1.4,0.4,0.6 +L 0.4,0.6,0,0 + +[O] 7 +L 0,2.2,0.6,2.6 +L 0.6,2.6,1.4,3 +L 1.4,3,2.4,3.2 +L 2.4,3.2,3.2,3.2 +L 3.2,3.2,4.2,3 +L 4.2,3,5,2.6 +L 5,2.6,5.6,2.2 + +[P] 3 +L 1.4,4.4,2.8,3.6 +L 2.8,3.6,0,2 +L 0,2,1.4,1.2 + +[Q] 3 +L 0,2.8,0.8,4.2 +L 0.8,4.2,2.4,1.4 +L 2.4,1.4,3.2,2.8 + +[R] 3 +L 0,2,0,3.6 +L 0,3.6,2.8,2 +L 2.8,2,2.8,3.6 + +[S] 3 +L 0.4,1.6,0,3.2 +L 0,3.2,3.2,2.4 +L 3.2,2.4,2.8,4 + +[T] 21 +L 0,0.6,0.4,0.6 +L 0.4,0.6,1,0.8 +L 1,0.8,1.4,1 +L 1.4,1,2,1.6 +L 2,1.6,2.2,2 +L 2.2,2,2.4,2.6 +L 2.4,2.6,2.4,3.4 +L 2.4,3.4,2.2,4 +L 2.2,4,2,4.4 +L 2,4.4,1.8,4.6 +L 1.8,4.6,1.4,4.6 +L 1.4,4.6,1.2,4.4 +L 1.2,4.4,1,4 +L 1,4,0.8,3.4 +L 0.8,3.4,0.8,2.6 +L 0.8,2.6,1,2 +L 1,2,1.2,1.6 +L 1.2,1.6,1.8,1 +L 1.8,1,2.2,0.8 +L 2.2,0.8,2.8,0.6 +L 2.8,0.6,3.2,0.6 + +[U] 21 +L 4,1.2,4,1.6 +L 4,1.6,3.8,2.2 +L 3.8,2.2,3.6,2.6 +L 3.6,2.6,3,3.2 +L 3,3.2,2.6,3.4 +L 2.6,3.4,2,3.6 +L 2,3.6,1.2,3.6 +L 1.2,3.6,0.6,3.4 +L 0.6,3.4,0.2,3.2 +L 0.2,3.2,0,3 +L 0,3,0,2.6 +L 0,2.6,0.2,2.4 +L 0.2,2.4,0.6,2.2 +L 0.6,2.2,1.2,2 +L 1.2,2,2,2 +L 2,2,2.6,2.2 +L 2.6,2.2,3,2.4 +L 3,2.4,3.6,3 +L 3.6,3,3.8,3.4 +L 3.8,3.4,4,4 +L 4,4,4,4.4 + +[V] 21 +L 3.2,5,2.8,5 +L 2.8,5,2.2,4.8 +L 2.2,4.8,1.8,4.6 +L 1.8,4.6,1.2,4 +L 1.2,4,1,3.6 +L 1,3.6,0.8,3 +L 0.8,3,0.8,2.2 +L 0.8,2.2,1,1.6 +L 1,1.6,1.2,1.2 +L 1.2,1.2,1.4,1 +L 1.4,1,1.8,1 +L 1.8,1,2,1.2 +L 2,1.2,2.2,1.6 +L 2.2,1.6,2.4,2.2 +L 2.4,2.2,2.4,3 +L 2.4,3,2.2,3.6 +L 2.2,3.6,2,4 +L 2,4,1.4,4.6 +L 1.4,4.6,1,4.8 +L 1,4.8,0.4,5 +L 0.4,5,0,5 + +[W] 21 +L 0,4.4,0,4 +L 0,4,0.2,3.4 +L 0.2,3.4,0.4,3 +L 0.4,3,1,2.4 +L 1,2.4,1.4,2.2 +L 1.4,2.2,2,2 +L 2,2,2.8,2 +L 2.8,2,3.4,2.2 +L 3.4,2.2,3.8,2.4 +L 3.8,2.4,4,2.6 +L 4,2.6,4,3 +L 4,3,3.8,3.2 +L 3.8,3.2,3.4,3.4 +L 3.4,3.4,2.8,3.6 +L 2.8,3.6,2,3.6 +L 2,3.6,1.4,3.4 +L 1.4,3.4,1,3.2 +L 1,3.2,0.4,2.6 +L 0.4,2.6,0.2,2.2 +L 0.2,2.2,0,1.6 +L 0,1.6,0,1.2 + +[X] 19 +L 0,3.2,0.2,2.8 +L 0.2,2.8,0.6,2.4 +L 0.6,2.4,1,2.2 +L 1,2.2,1.6,2 +L 1.6,2,2.4,2 +L 2.4,2,3.2,2.2 +L 3.2,2.2,3.8,2.6 +L 3.8,2.6,4.2,3.2 +L 4.2,3.2,4.4,3.6 +L 4.4,3.6,4.2,4 +L 4.2,4,3.6,4 +L 3.6,4,2.8,3.8 +L 2.8,3.8,2.4,3.6 +L 2.4,3.6,1.8,3.2 +L 1.8,3.2,1.4,2.6 +L 1.4,2.6,1.2,2 +L 1.2,2,1.2,1.4 +L 1.2,1.4,1.4,0.8 +L 1.4,0.8,1.6,0.4 + +[Y] 17 +L 0,2.4,0.6,2 +L 0.6,2,1.2,1.8 +L 1.2,1.8,2.2,1.8 +L 2.2,1.8,2.8,2 +L 2.8,2,3.4,2.4 +L 3.4,2.4,3.8,3 +L 3.8,3,4,3.6 +L 4,3.6,4,4 +L 4,4,3.8,4.2 +L 3.8,4.2,3.4,4.2 +L 3.4,4.2,2.8,4 +L 2.8,4,2.2,3.6 +L 2.2,3.6,1.8,3 +L 1.8,3,1.6,2.4 +L 1.6,2.4,1.6,1.4 +L 1.6,1.4,1.8,0.8 +L 1.8,0.8,2.2,0.2 + +[Z] 20 +L 0.4,3.4,0,3 +L 0,3,0,2.6 +L 0,2.6,0.4,2.2 +L 0.4,2.2,0.8,2.2 +L 0.8,2.2,1.2,2.6 +L 1.2,2.6,1.2,3 +L 1.2,3,0.8,3.4 +L 0.8,3.4,0.4,3.4 +L 0.4,3.2,0.2,3 +L 0.2,3,0.2,2.6 +L 0.2,2.6,0.4,2.4 +L 0.4,2.4,0.8,2.4 +L 0.8,2.4,1,2.6 +L 1,2.6,1,3 +L 1,3,0.8,3.2 +L 0.8,3.2,0.4,3.2 +L 0.6,3,0.4,2.8 +L 0.4,2.8,0.6,2.6 +L 0.6,2.6,0.8,2.8 +L 0.8,2.8,0.6,3 + +[[] 9 +L 0,3.8,0.2,3.8 +L 0.2,3.8,0.6,3.6 +L 0.6,3.6,0.8,3.4 +L 0.8,3.4,1,3 +L 1,3,1,2.6 +L 1,2.6,0.8,2.2 +L 0.8,2.2,0.6,2 +L 0.6,2,0.2,1.8 +L 0.2,1.8,0,1.8 + +[\] 3 +L 0,2.8,1.2,2.8 +L 2.2,2.8,3.4,2.8 +L 4.4,2.8,5.6,2.8 + +[]] 3 +L 0,2.2,0,3.4 +L 0,3.4,5.6,3.4 +L 5.6,3.4,5.6,2.2 + +[^] 2 +L 1.6,5.6,0,2.8 +L 1.6,5.6,3.2,2.8 + +[_] 3 +L 0,2.8,5.6,2.8 +L 1.2,1.4,4.4,1.4 +L 2.4,0,3.2,0 + +[`] 3 +L 0,2.8,5.6,2.8 +L 0,2.8,2.8,-0.4 +L 5.6,2.8,2.8,-0.4 + +[a] 16 +L 1.2,4.2,0.6,4 +L 0.6,4,0.2,3.6 +L 0.2,3.6,0,3 +L 0,3,0,2.6 +L 0,2.6,0.2,2 +L 0.2,2,0.6,1.6 +L 0.6,1.6,1.2,1.4 +L 1.2,1.4,1.6,1.4 +L 1.6,1.4,2.2,1.6 +L 2.2,1.6,2.6,2 +L 2.6,2,2.8,2.6 +L 2.8,2.6,2.8,3 +L 2.8,3,2.6,3.6 +L 2.6,3.6,2.2,4 +L 2.2,4,1.6,4.2 +L 1.6,4.2,1.2,4.2 + +[b] 4 +L 0,4,0,1.6 +L 0,1.6,2.4,1.6 +L 2.4,1.6,2.4,4 +L 2.4,4,0,4 + +[c] 3 +L 1.4,4.4,0,2 +L 0,2,2.8,2 +L 2.8,2,1.4,4.4 + +[d] 4 +L 1.2,4.8,0,2.8 +L 0,2.8,1.2,0.8 +L 1.2,0.8,2.4,2.8 +L 2.4,2.8,1.2,4.8 + +[e] 10 +L 1.6,4.6,1.2,3.4 +L 1.2,3.4,0,3.4 +L 0,3.4,1,2.6 +L 1,2.6,0.6,1.4 +L 0.6,1.4,1.6,2.2 +L 1.6,2.2,2.6,1.4 +L 2.6,1.4,2.2,2.6 +L 2.2,2.6,3.2,3.4 +L 3.2,3.4,2,3.4 +L 2,3.4,1.6,4.6 + +[f] 2 +L 1.4,4.2,1.4,1.4 +L 0,2.8,2.8,2.8 + +[g] 2 +L 0,3.8,2,1.8 +L 2,3.8,0,1.8 + +[h] 3 +L 1,4,1,1.6 +L 0,3.4,2,2.2 +L 2,3.4,0,2.2 + +[i] 19 +L 0.6,3.6,0.2,3.4 +L 0.2,3.4,0,3 +L 0,3,0,2.6 +L 0,2.6,0.2,2.2 +L 0.2,2.2,0.6,2 +L 0.6,2,1,2 +L 1,2,1.4,2.2 +L 1.4,2.2,1.6,2.6 +L 1.6,2.6,1.6,3 +L 1.6,3,1.4,3.4 +L 1.4,3.4,1,3.6 +L 1,3.6,0.6,3.6 +L 0.2,3,0.2,2.6 +L 0.4,3.2,0.4,2.4 +L 0.6,3.4,0.6,2.2 +L 0.8,3.4,0.8,2.2 +L 1,3.4,1,2.2 +L 1.2,3.2,1.2,2.4 +L 1.4,3,1.4,2.6 + +[j] 11 +L 0,3.6,0,2 +L 0,2,1.6,2 +L 1.6,2,1.6,3.6 +L 1.6,3.6,0,3.6 +L 0.2,3.4,0.2,2.2 +L 0.4,3.4,0.4,2.2 +L 0.6,3.4,0.6,2.2 +L 0.8,3.4,0.8,2.2 +L 1,3.4,1,2.2 +L 1.2,3.4,1.2,2.2 +L 1.4,3.4,1.4,2.2 + +[k] 7 +L 1,4,0,2.2 +L 0,2.2,2,2.2 +L 2,2.2,1,4 +L 1,3.4,0.4,2.4 +L 1,3.4,1.6,2.4 +L 1,2.8,0.8,2.4 +L 1,2.8,1.2,2.4 + +[l] 7 +L 0,2.8,1.8,1.8 +L 1.8,1.8,1.8,3.8 +L 1.8,3.8,0,2.8 +L 0.6,2.8,1.6,2.2 +L 0.6,2.8,1.6,3.4 +L 1.2,2.8,1.6,2.6 +L 1.2,2.8,1.6,3 + +[m] 7 +L 1,1.6,2,3.4 +L 2,3.4,0,3.4 +L 0,3.4,1,1.6 +L 1,2.2,1.6,3.2 +L 1,2.2,0.4,3.2 +L 1,2.8,1.2,3.2 +L 1,2.8,0.8,3.2 + +[n] 7 +L 1.8,2.8,0,3.8 +L 0,3.8,0,1.8 +L 0,1.8,1.8,2.8 +L 1.2,2.8,0.2,3.4 +L 1.2,2.8,0.2,2.2 +L 0.6,2.8,0.2,3 +L 0.6,2.8,0.2,2.6 + +[o] 10 +L 1.2,4,0.4,1.8 +L 0.4,1.8,2.4,3.2 +L 2.4,3.2,0,3.2 +L 0,3.2,2,1.8 +L 2,1.8,1.2,4 +L 1.2,2.8,1.2,4 +L 1.2,2.8,0,3.2 +L 1.2,2.8,0.4,1.8 +L 1.2,2.8,2,1.8 +L 1.2,2.8,2.4,3.2 + +[p] 5 +L 0,4.2,0,1.4 +L 0,4.2,1.4,3.6 +L 1.4,3.6,0,3 +L 0.2,3.8,0.8,3.6 +L 0.8,3.6,0.2,3.4 + +[q] 7 +L 1,4,1,1.6 +L 0.4,3.4,1.6,3.4 +L 0,2.2,0.4,1.8 +L 0.4,1.8,0.8,1.6 +L 0.8,1.6,1.2,1.6 +L 1.2,1.6,1.6,1.8 +L 1.6,1.8,2,2.2 + +[r] 5 +L 1.2,4,1.2,1.6 +L 0,3,0.2,3.4 +L 0.2,3.4,2.2,3.4 +L 2.2,3.4,2.4,3 +L 0.8,1.8,1.6,1.8 + +[s] 6 +L 0.4,3.6,2.4,1.6 +L 2.4,3.6,0.4,1.6 +L 0.8,4,0.2,3.4 +L 0.2,3.4,0,3 +L 2,4,2.6,3.4 +L 2.6,3.4,2.8,3 + +[t] 6 +L 1,4.6,0,1 +L 2.6,4.6,3.6,1 +L 0.8,3.8,3.6,1 +L 2.8,3.8,0,1 +L 1,4.6,2.6,4.6 +L 0.8,3.8,2.8,3.8 + +[u] 7 +L 1.8,5,1.8,2 +L 0.8,4.4,2.8,3.2 +L 2.8,4.4,0.8,3.2 +L 0,2,0.6,0.8 +L 3.6,2,3,0.8 +L 0,2,3.6,2 +L 0.6,0.8,3,0.8 + +[v] 5 +L 1.2,4.4,2.4,2 +L 0.8,3.2,2.4,4 +L 0,0.8,4,0.8 +L 4,0.8,4,2.8 +L 4,2.8,0,0.8 + +[w] 12 +L 0.8,4,0.8,3.2 +L 0.8,3.2,0,3.2 +L 0,3.2,0,2.4 +L 0,2.4,0.8,2.4 +L 0.8,2.4,0.8,1.6 +L 0.8,1.6,1.6,1.6 +L 1.6,1.6,1.6,2.4 +L 1.6,2.4,2.4,2.4 +L 2.4,2.4,2.4,3.2 +L 2.4,3.2,1.6,3.2 +L 1.6,3.2,1.6,4 +L 1.6,4,0.8,4 + +[x] 28 +L 2.8,3.2,2.6,3.6 +L 2.6,3.6,2.2,4 +L 2.2,4,1.6,4.2 +L 1.6,4.2,1.2,4.2 +L 1.2,4.2,0.6,4 +L 0.6,4,0.2,3.6 +L 0.2,3.6,0,3 +L 0,3,0,2.6 +L 0,2.6,0.2,2 +L 0.2,2,0.6,1.6 +L 0.6,1.6,1.2,1.4 +L 1.2,1.4,1.6,1.4 +L 1.6,1.4,2.2,1.6 +L 2.2,1.6,2.6,2 +L 2.6,2,2.8,2.4 +L 2.8,3.2,2.4,3.6 +L 2.4,3.6,2,3.8 +L 2,3.8,1.6,3.8 +L 1.6,3.8,1.2,3.6 +L 1.2,3.6,1,3.4 +L 1,3.4,0.8,3 +L 0.8,3,0.8,2.6 +L 0.8,2.6,1,2.2 +L 1,2.2,1.2,2 +L 1.2,2,1.6,1.8 +L 1.6,1.8,2,1.8 +L 2,1.8,2.4,2 +L 2.4,2,2.8,2.4 + +[y] 6 +L 1.4,4.4,0,2 +L 0,2,2.8,2 +L 2.8,2,1.4,4.4 +L 1.4,1.2,2.8,3.6 +L 2.8,3.6,0,3.6 +L 0,3.6,1.4,1.2 + +[z] 26 +L 1.8,4.6,1.8,5 +L 1.8,5,2,5.2 +L 2,5.2,2.4,5.2 +L 2.4,5.2,2.6,5 +L 2.6,5,2.6,4.6 +L 0,1.2,0.2,1.6 +L 0.2,1.6,0.6,2 +L 0.6,2,0.8,2.4 +L 0.8,2.4,1,3.2 +L 1,3.2,1,4.2 +L 1,4.2,1.2,4.4 +L 1.2,4.4,1.6,4.6 +L 1.6,4.6,2.8,4.6 +L 2.8,4.6,3.2,4.4 +L 3.2,4.4,3.4,4.2 +L 3.4,4.2,3.4,3.2 +L 3.4,3.2,3.6,2.4 +L 3.6,2.4,3.8,2 +L 3.8,2,4.2,1.6 +L 4.2,1.6,4.4,1.2 +L 0,1.2,4.4,1.2 +L 2,1.2,1.8,1 +L 1.8,1,2,0.8 +L 2,0.8,2.4,0.8 +L 2.4,0.8,2.6,1 +L 2.6,1,2.4,1.2 + +[{] 32 +L 1.6,3.8,1.6,2.6 +L 1.6,2.6,1.4,0.8 +L 1.6,2.6,1.8,0.8 +L 1.4,0.8,1.8,0.8 +L 1.6,3.8,1.4,4.4 +L 1.4,4.4,1.2,4.8 +L 1.2,4.8,0.8,5 +L 1.4,4.4,0.8,5 +L 1.6,3.8,1.8,4.4 +L 1.8,4.4,2,4.8 +L 2,4.8,2.4,5 +L 1.8,4.4,2.4,5 +L 1.6,3.8,0.8,4.2 +L 0.8,4.2,0.4,4.2 +L 0.4,4.2,0,3.8 +L 1.2,4,0.4,4 +L 0.4,4,0,3.8 +L 1.6,3.8,2.4,4.2 +L 2.4,4.2,2.8,4.2 +L 2.8,4.2,3.2,3.8 +L 2,4,2.8,4 +L 2.8,4,3.2,3.8 +L 1.6,3.8,1.2,3.6 +L 1.2,3.6,1,3.4 +L 1,3.4,1,2.8 +L 1.6,3.8,1.2,3.4 +L 1.2,3.4,1,2.8 +L 1.6,3.8,2,3.6 +L 2,3.6,2.2,3.4 +L 2.2,3.4,2.2,2.8 +L 1.6,3.8,2,3.4 +L 2,3.4,2.2,2.8 + +[|] 58 +L 1.6,4.6,1.6,4.2 +L 1.6,3.6,1.6,3.2 +L 1.6,2.6,1.6,2.2 +L 1.6,1.4,1.4,0.8 +L 1.6,1.4,1.8,0.8 +L 1.4,0.8,1.8,0.8 +L 1.6,5,1.4,4.6 +L 1.4,4.6,1.2,4.4 +L 1.6,5,1.8,4.6 +L 1.8,4.6,2,4.4 +L 1.2,4.4,1.6,4.6 +L 1.6,4.6,2,4.4 +L 1.6,4.2,1.2,3.6 +L 1.2,3.6,0.8,3.4 +L 0.8,3.4,0.6,3.6 +L 1.6,4.2,2,3.6 +L 2,3.6,2.4,3.4 +L 2.4,3.4,2.6,3.6 +L 0.8,3.4,1.2,3.4 +L 1.2,3.4,1.6,3.6 +L 1.6,3.6,2,3.4 +L 2,3.4,2.4,3.4 +L 1.6,3.2,1.2,2.6 +L 1.2,2.6,0.8,2.4 +L 0.8,2.4,0.4,2.4 +L 0.4,2.4,0.2,2.8 +L 0.2,2.8,0.2,2.6 +L 0.2,2.6,0.4,2.4 +L 1.6,3.2,2,2.6 +L 2,2.6,2.4,2.4 +L 2.4,2.4,2.8,2.4 +L 2.8,2.4,3,2.8 +L 3,2.8,3,2.6 +L 3,2.6,2.8,2.4 +L 0.8,2.4,1.2,2.4 +L 1.2,2.4,1.6,2.6 +L 1.6,2.6,2,2.4 +L 2,2.4,2.4,2.4 +L 1.6,2.2,1.2,1.6 +L 1.2,1.6,1,1.4 +L 1,1.4,0.6,1.2 +L 0.6,1.2,0.4,1.2 +L 0.4,1.2,0.2,1.4 +L 0.2,1.4,0,1.8 +L 0,1.8,0,1.4 +L 0,1.4,0.4,1.2 +L 1.6,2.2,2,1.6 +L 2,1.6,2.2,1.4 +L 2.2,1.4,2.6,1.2 +L 2.6,1.2,2.8,1.2 +L 2.8,1.2,3,1.4 +L 3,1.4,3.2,1.8 +L 3.2,1.8,3.2,1.4 +L 3.2,1.4,2.8,1.2 +L 0.6,1.2,1,1.2 +L 1,1.2,1.6,1.4 +L 1.6,1.4,2.2,1.2 +L 2.2,1.2,2.6,1.2 + +[}] 32 +L 1.6,1.4,1.4,0.8 +L 1.6,1.4,1.8,0.8 +L 1.4,0.8,1.8,0.8 +L 1.6,1.4,2.2,1.2 +L 2.2,1.2,2.8,1.2 +L 2.8,1.2,3.2,1.6 +L 3.2,1.6,3.2,2.2 +L 3.2,2.2,3,2.4 +L 3,2.4,2.6,2.4 +L 2.6,2.4,3,2.8 +L 3,2.8,3.2,3.4 +L 3.2,3.4,3,3.8 +L 3,3.8,2.6,4 +L 2.6,4,2.2,3.8 +L 2.2,3.8,2.4,4.4 +L 2.4,4.4,2.2,4.8 +L 2.2,4.8,1.8,5 +L 1.8,5,1.4,5 +L 1.4,5,1,4.8 +L 1,4.8,0.8,4.4 +L 0.8,4.4,1,3.8 +L 1,3.8,0.6,4 +L 0.6,4,0.2,3.8 +L 0.2,3.8,0,3.4 +L 0,3.4,0.2,2.8 +L 0.2,2.8,0.6,2.4 +L 0.6,2.4,0.2,2.4 +L 0.2,2.4,0,2.2 +L 0,2.2,0,1.6 +L 0,1.6,0.4,1.2 +L 0.4,1.2,1,1.2 +L 1,1.2,1.6,1.4 + +[~] 24 +L 1.6,1.4,1.4,0.8 +L 1.6,1.4,1.8,0.8 +L 1.4,0.8,1.8,0.8 +L 1.6,1.4,2.4,1.6 +L 2.4,1.6,2.4,2 +L 2.4,2,2.8,2.2 +L 2.8,2.2,2.8,2.8 +L 2.8,2.8,3.2,3 +L 3.2,3,3.2,4 +L 3.2,4,3,4.6 +L 3,4.6,2.8,4.8 +L 2.8,4.8,2.4,4.8 +L 2.4,4.8,2,5 +L 2,5,1.2,5 +L 1.2,5,0.8,4.8 +L 0.8,4.8,0.4,4.8 +L 0.4,4.8,0.2,4.6 +L 0.2,4.6,0,4 +L 0,4,0,3 +L 0,3,0.4,2.8 +L 0.4,2.8,0.4,2.2 +L 0.4,2.2,0.8,2 +L 0.8,2,0.8,1.6 +L 0.8,1.6,1.6,1.4 + +[] 5 +L 0,3.2,0.4,2.8 +L 0.6,4.2,1,3.2 +L 1.8,5,1.8,3.4 +L 3,4.2,2.6,3.2 +L 3.6,3.2,3.2,2.8 + +#EOF diff --git a/pycam/share/fonts/symbol_misc2.cxf b/pycam/share/fonts/symbol_misc2.cxf new file mode 100644 index 00000000..526384f4 --- /dev/null +++ b/pycam/share/fonts/symbol_misc2.cxf @@ -0,0 +1,1055 @@ +# Format: QCad II Font +# Creator: Adam Radlowski's "dodajf" program - GRASS font translator +# Version: 1.0.0 +# Name: Symbol Misc 2 +# LetterSpacing: 3.0 +# WordSpacing: 6.75 +# LineSpacingFactor: 1.0 +# Author: Hershey fonts + +[!] 4 +L 0.097561,0.585366,0,0.487805 +L 0,0.487805,0.097561,0.390244 +L 0.097561,0.390244,0.195122,0.487805 +L 0.195122,0.487805,0.097561,0.585366 + +["] 8 +L 0.097561,0.682927,0,0.585366 +L 0,0.585366,0,0.390244 +L 0,0.390244,0.097561,0.292683 +L 0.097561,0.292683,0.292683,0.292683 +L 0.292683,0.292683,0.390244,0.390244 +L 0.390244,0.390244,0.390244,0.585366 +L 0.390244,0.585366,0.292683,0.682927 +L 0.292683,0.682927,0.097561,0.682927 + +[#] 12 +L 0.292683,0.878049,0.097561,0.780488 +L 0.097561,0.780488,0,0.585366 +L 0,0.585366,0,0.390244 +L 0,0.390244,0.097561,0.195122 +L 0.097561,0.195122,0.292683,0.097561 +L 0.292683,0.097561,0.487805,0.097561 +L 0.487805,0.097561,0.682927,0.195122 +L 0.682927,0.195122,0.780488,0.390244 +L 0.780488,0.390244,0.780488,0.585366 +L 0.780488,0.585366,0.682927,0.780488 +L 0.682927,0.780488,0.487805,0.878049 +L 0.487805,0.878049,0.292683,0.878049 + +[$] 16 +L 0.390244,0.97561,0.195122,0.878049 +L 0.195122,0.878049,0.097561,0.780488 +L 0.097561,0.780488,0,0.585366 +L 0,0.585366,0,0.390244 +L 0,0.390244,0.097561,0.195122 +L 0.097561,0.195122,0.195122,0.097561 +L 0.195122,0.097561,0.390244,0 +L 0.390244,0,0.585366,0 +L 0.585366,0,0.780488,0.097561 +L 0.780488,0.097561,0.878049,0.195122 +L 0.878049,0.195122,0.97561,0.390244 +L 0.97561,0.390244,0.97561,0.585366 +L 0.97561,0.585366,0.878049,0.780488 +L 0.878049,0.780488,0.780488,0.878049 +L 0.780488,0.878049,0.585366,0.97561 +L 0.585366,0.97561,0.390244,0.97561 + +[%] 16 +L 0.585366,1.170732,0.292683,1.073171 +L 0.292683,1.073171,0.097561,0.878049 +L 0.097561,0.878049,0,0.585366 +L 0,0.585366,0,0.390244 +L 0,0.390244,0.097561,0.097561 +L 0.097561,0.097561,0.292683,-0.097561 +L 0.292683,-0.097561,0.585366,-0.195122 +L 0.585366,-0.195122,0.780488,-0.195122 +L 0.780488,-0.195122,1.073171,-0.097561 +L 1.073171,-0.097561,1.268293,0.097561 +L 1.268293,0.097561,1.365854,0.390244 +L 1.365854,0.390244,1.365854,0.585366 +L 1.365854,0.585366,1.268293,0.878049 +L 1.268293,0.878049,1.073171,1.073171 +L 1.073171,1.073171,0.780488,1.170732 +L 0.780488,1.170732,0.585366,1.170732 + +[&] 20 +L 0.878049,1.560976,0.585366,1.463415 +L 0.585366,1.463415,0.292683,1.268293 +L 0.292683,1.268293,0.097561,0.97561 +L 0.097561,0.97561,0,0.682927 +L 0,0.682927,0,0.292683 +L 0,0.292683,0.097561,0 +L 0.097561,0,0.292683,-0.292683 +L 0.292683,-0.292683,0.585366,-0.487805 +L 0.585366,-0.487805,0.878049,-0.585366 +L 0.878049,-0.585366,1.268293,-0.585366 +L 1.268293,-0.585366,1.560976,-0.487805 +L 1.560976,-0.487805,1.853659,-0.292683 +L 1.853659,-0.292683,2.04878,0 +L 2.04878,0,2.146341,0.292683 +L 2.146341,0.292683,2.146341,0.682927 +L 2.146341,0.682927,2.04878,0.97561 +L 2.04878,0.97561,1.853659,1.268293 +L 1.853659,1.268293,1.560976,1.463415 +L 1.560976,1.463415,1.268293,1.560976 +L 1.268293,1.560976,0.878049,1.560976 + +['] 32 +L 1.463415,2.146341,1.073171,2.04878 +L 1.073171,2.04878,0.878049,1.95122 +L 0.878049,1.95122,0.585366,1.756098 +L 0.585366,1.756098,0.390244,1.560976 +L 0.390244,1.560976,0.195122,1.268293 +L 0.195122,1.268293,0.097561,1.073171 +L 0.097561,1.073171,0,0.682927 +L 0,0.682927,0,0.292683 +L 0,0.292683,0.097561,-0.097561 +L 0.097561,-0.097561,0.195122,-0.292683 +L 0.195122,-0.292683,0.390244,-0.585366 +L 0.390244,-0.585366,0.585366,-0.780488 +L 0.585366,-0.780488,0.878049,-0.97561 +L 0.878049,-0.97561,1.073171,-1.073171 +L 1.073171,-1.073171,1.463415,-1.170732 +L 1.463415,-1.170732,1.853659,-1.170732 +L 1.853659,-1.170732,2.243902,-1.073171 +L 2.243902,-1.073171,2.439024,-0.97561 +L 2.439024,-0.97561,2.731707,-0.780488 +L 2.731707,-0.780488,2.926829,-0.585366 +L 2.926829,-0.585366,3.121951,-0.292683 +L 3.121951,-0.292683,3.219512,-0.097561 +L 3.219512,-0.097561,3.317073,0.292683 +L 3.317073,0.292683,3.317073,0.682927 +L 3.317073,0.682927,3.219512,1.073171 +L 3.219512,1.073171,3.121951,1.268293 +L 3.121951,1.268293,2.926829,1.560976 +L 2.926829,1.560976,2.731707,1.756098 +L 2.731707,1.756098,2.439024,1.95122 +L 2.439024,1.95122,2.243902,2.04878 +L 2.243902,2.04878,1.853659,2.146341 +L 1.853659,2.146341,1.463415,2.146341 + +[(] 32 +L 1.95122,2.634146,1.463415,2.536585 +L 1.463415,2.536585,1.073171,2.341463 +L 1.073171,2.341463,0.780488,2.146341 +L 0.780488,2.146341,0.487805,1.853659 +L 0.487805,1.853659,0.292683,1.560976 +L 0.292683,1.560976,0.097561,1.170732 +L 0.097561,1.170732,0,0.682927 +L 0,0.682927,0,0.292683 +L 0,0.292683,0.097561,-0.195122 +L 0.097561,-0.195122,0.292683,-0.585366 +L 0.292683,-0.585366,0.487805,-0.878049 +L 0.487805,-0.878049,0.780488,-1.170732 +L 0.780488,-1.170732,1.073171,-1.365854 +L 1.073171,-1.365854,1.463415,-1.560976 +L 1.463415,-1.560976,1.95122,-1.658537 +L 1.95122,-1.658537,2.341463,-1.658537 +L 2.341463,-1.658537,2.829268,-1.560976 +L 2.829268,-1.560976,3.219512,-1.365854 +L 3.219512,-1.365854,3.512195,-1.170732 +L 3.512195,-1.170732,3.804878,-0.878049 +L 3.804878,-0.878049,4,-0.585366 +L 4,-0.585366,4.195122,-0.195122 +L 4.195122,-0.195122,4.292683,0.292683 +L 4.292683,0.292683,4.292683,0.682927 +L 4.292683,0.682927,4.195122,1.170732 +L 4.195122,1.170732,4,1.560976 +L 4,1.560976,3.804878,1.853659 +L 3.804878,1.853659,3.512195,2.146341 +L 3.512195,2.146341,3.219512,2.341463 +L 3.219512,2.341463,2.829268,2.536585 +L 2.829268,2.536585,2.341463,2.634146 +L 2.341463,2.634146,1.95122,2.634146 + +[)] 48 +L 3.707317,4.487805,3.121951,4.390244 +L 3.121951,4.390244,2.731707,4.292683 +L 2.731707,4.292683,2.243902,4.097561 +L 2.243902,4.097561,1.756098,3.804878 +L 1.756098,3.804878,1.365854,3.512195 +L 1.365854,3.512195,0.97561,3.121951 +L 0.97561,3.121951,0.682927,2.731707 +L 0.682927,2.731707,0.390244,2.243902 +L 0.390244,2.243902,0.195122,1.756098 +L 0.195122,1.756098,0.097561,1.365854 +L 0.097561,1.365854,0,0.780488 +L 0,0.780488,0,0.195122 +L 0,0.195122,0.097561,-0.390244 +L 0.097561,-0.390244,0.195122,-0.780488 +L 0.195122,-0.780488,0.390244,-1.268293 +L 0.390244,-1.268293,0.682927,-1.756098 +L 0.682927,-1.756098,0.97561,-2.146341 +L 0.97561,-2.146341,1.365854,-2.536585 +L 1.365854,-2.536585,1.756098,-2.829268 +L 1.756098,-2.829268,2.243902,-3.121951 +L 2.243902,-3.121951,2.731707,-3.317073 +L 2.731707,-3.317073,3.121951,-3.414634 +L 3.121951,-3.414634,3.707317,-3.512195 +L 3.707317,-3.512195,4.292683,-3.512195 +L 4.292683,-3.512195,4.878049,-3.414634 +L 4.878049,-3.414634,5.268293,-3.317073 +L 5.268293,-3.317073,5.756098,-3.121951 +L 5.756098,-3.121951,6.243902,-2.829268 +L 6.243902,-2.829268,6.634146,-2.536585 +L 6.634146,-2.536585,7.02439,-2.146341 +L 7.02439,-2.146341,7.317073,-1.756098 +L 7.317073,-1.756098,7.609756,-1.268293 +L 7.609756,-1.268293,7.804878,-0.780488 +L 7.804878,-0.780488,7.902439,-0.390244 +L 7.902439,-0.390244,8,0.195122 +L 8,0.195122,8,0.780488 +L 8,0.780488,7.902439,1.365854 +L 7.902439,1.365854,7.804878,1.756098 +L 7.804878,1.756098,7.609756,2.243902 +L 7.609756,2.243902,7.317073,2.731707 +L 7.317073,2.731707,7.02439,3.121951 +L 7.02439,3.121951,6.634146,3.512195 +L 6.634146,3.512195,6.243902,3.804878 +L 6.243902,3.804878,5.756098,4.097561 +L 5.756098,4.097561,5.268293,4.292683 +L 5.268293,4.292683,4.878049,4.390244 +L 4.878049,4.390244,4.292683,4.487805 +L 4.292683,4.487805,3.707317,4.487805 + +[*] 30 +L 1.95122,2.146341,1.756098,1.95122 +L 1.756098,1.95122,1.463415,1.853659 +L 1.463415,1.853659,1.170732,1.853659 +L 1.170732,1.853659,0.878049,1.95122 +L 0.878049,1.95122,0.682927,2.146341 +L 0.682927,2.146341,0,1.463415 +L 0,1.463415,0.195122,1.268293 +L 0.195122,1.268293,0.292683,0.97561 +L 0.292683,0.97561,0.292683,-0.292683 +L 0.292683,-0.292683,0.390244,-0.585366 +L 0.390244,-0.585366,0.585366,-0.780488 +L 0.585366,-0.780488,0.878049,-0.878049 +L 0.878049,-0.878049,1.463415,-0.878049 +L 1.463415,-0.878049,1.756098,-0.97561 +L 1.756098,-0.97561,1.95122,-1.170732 +L 1.95122,2.146341,2.146341,1.95122 +L 2.146341,1.95122,2.439024,1.853659 +L 2.439024,1.853659,2.731707,1.853659 +L 2.731707,1.853659,3.02439,1.95122 +L 3.02439,1.95122,3.219512,2.146341 +L 3.219512,2.146341,3.902439,1.463415 +L 3.902439,1.463415,3.707317,1.268293 +L 3.707317,1.268293,3.609756,0.97561 +L 3.609756,0.97561,3.609756,-0.292683 +L 3.609756,-0.292683,3.512195,-0.585366 +L 3.512195,-0.585366,3.317073,-0.780488 +L 3.317073,-0.780488,3.02439,-0.878049 +L 3.02439,-0.878049,2.439024,-0.878049 +L 2.439024,-0.878049,2.146341,-0.97561 +L 2.146341,-0.97561,1.95122,-1.170732 + +[+] 27 +L 1.658537,2.146341,1.463415,1.95122 +L 1.463415,1.95122,1.170732,1.853659 +L 1.170732,1.853659,0.878049,1.853659 +L 0.878049,1.853659,0.585366,1.95122 +L 0.585366,1.95122,0.390244,2.146341 +L 0.390244,2.146341,0.097561,1.560976 +L 0.097561,1.560976,0,1.170732 +L 0,1.170732,0,0.682927 +L 0,0.682927,0.097561,0.292683 +L 0.097561,0.292683,0.292683,-0.097561 +L 0.292683,-0.097561,0.585366,-0.487805 +L 0.585366,-0.487805,1.073171,-0.878049 +L 1.073171,-0.878049,1.658537,-1.170732 +L 1.658537,2.146341,1.853659,1.95122 +L 1.853659,1.95122,2.146341,1.853659 +L 2.146341,1.853659,2.439024,1.853659 +L 2.439024,1.853659,2.731707,1.95122 +L 2.731707,1.95122,2.926829,2.146341 +L 2.926829,2.146341,3.219512,1.560976 +L 3.219512,1.560976,3.317073,1.170732 +L 3.317073,1.170732,3.317073,0.682927 +L 3.317073,0.682927,3.219512,0.292683 +L 3.219512,0.292683,3.02439,-0.097561 +L 3.02439,-0.097561,2.731707,-0.487805 +L 2.731707,-0.487805,2.243902,-0.878049 +L 2.243902,-0.878049,1.658537,-1.170732 +L 0.097561,1.463415,3.219512,1.463415 + +[,] 6 +L 0,0.585366,0,0.390244 +L 0,0.390244,0.195122,0.390244 +L 0.195122,0.390244,0.195122,0.585366 +L 0.195122,0.585366,0,0.585366 +L 0,0.585366,0.195122,0.390244 +L 0.195122,0.585366,0,0.390244 + +[-] 12 +L 0,0.682927,0.390244,0.487805 +L 0.390244,0.487805,0.682927,0.292683 +L 0.682927,0.292683,0.878049,0.097561 +L 0.878049,0.097561,0.97561,-0.195122 +L 0.97561,-0.195122,0.97561,-0.390244 +L 0.97561,-0.390244,0.878049,-0.585366 +L 0.878049,-0.585366,0.780488,-0.682927 +L 0,0.585366,0.585366,0.292683 +L 0,0.487805,0.292683,0.390244 +L 0.292683,0.390244,0.682927,0.195122 +L 0.682927,0.195122,0.878049,0 +L 0.878049,0,0.97561,-0.195122 + +[.] 12 +L 0.97561,1.170732,0.878049,0.97561 +L 0.878049,0.97561,0.682927,0.780488 +L 0.682927,0.780488,0.292683,0.585366 +L 0.292683,0.585366,0,0.487805 +L 0.585366,0.682927,0,0.390244 +L 0.780488,1.658537,0.878049,1.560976 +L 0.878049,1.560976,0.97561,1.365854 +L 0.97561,1.365854,0.97561,1.170732 +L 0.97561,1.170732,0.878049,0.878049 +L 0.878049,0.878049,0.682927,0.682927 +L 0.682927,0.682927,0.390244,0.487805 +L 0.390244,0.487805,0,0.292683 + +[/] 22 +L 0.780488,0.97561,0.390244,0.878049 +L 0.390244,0.878049,0.097561,0.682927 +L 0.097561,0.682927,0,0.487805 +L 0,0.487805,0,0.292683 +L 0,0.292683,0.097561,0.097561 +L 0.097561,0.097561,0.292683,0 +L 0.292683,0,0.585366,0 +L 0.585366,0,0.97561,0.097561 +L 0.97561,0.097561,1.268293,0.292683 +L 1.268293,0.292683,1.365854,0.487805 +L 1.365854,0.487805,1.365854,0.682927 +L 1.365854,0.682927,1.268293,0.878049 +L 1.268293,0.878049,1.073171,0.97561 +L 1.073171,0.97561,0.780488,0.97561 +L 1.268293,0.878049,0.780488,0.97561 +L 1.073171,0.97561,0.585366,0.878049 +L 0.585366,0.878049,0.097561,0.682927 +L 0.390244,0.878049,0,0.487805 +L 0.097561,0.097561,0.585366,0 +L 0.292683,0,0.780488,0.097561 +L 0.780488,0.097561,1.268293,0.292683 +L 0.97561,0.097561,1.365854,0.487805 + +[0] 22 +L 0.780488,0.97561,0.390244,0.878049 +L 0.390244,0.878049,0.097561,0.682927 +L 0.097561,0.682927,0,0.487805 +L 0,0.487805,0,0.292683 +L 0,0.292683,0.097561,0.097561 +L 0.097561,0.097561,0.292683,0 +L 0.292683,0,0.585366,0 +L 0.585366,0,0.97561,0.097561 +L 0.97561,0.097561,1.268293,0.292683 +L 1.268293,0.292683,1.365854,0.487805 +L 1.365854,0.487805,1.365854,0.682927 +L 1.365854,0.682927,1.268293,0.878049 +L 1.268293,0.878049,1.073171,0.97561 +L 1.073171,0.97561,0.780488,0.97561 +L 1.268293,0.878049,0.780488,0.97561 +L 1.073171,0.97561,0.585366,0.878049 +L 0.585366,0.878049,0.097561,0.682927 +L 0.390244,0.878049,0,0.487805 +L 0.097561,0.097561,0.585366,0 +L 0.292683,0,0.780488,0.097561 +L 0.780488,0.097561,1.268293,0.292683 +L 0.97561,0.097561,1.365854,0.487805 + +[1] 20 +L 0.585366,0.97561,0.292683,0.878049 +L 0.292683,0.878049,0.097561,0.682927 +L 0.097561,0.682927,0,0.487805 +L 0,0.487805,0,0.292683 +L 0,0.292683,0.097561,0.097561 +L 0.097561,0.097561,0.292683,0 +L 0.292683,0,0.487805,0 +L 0.487805,0,0.780488,0.097561 +L 0.780488,0.097561,0.97561,0.292683 +L 0.97561,0.292683,1.073171,0.487805 +L 1.073171,0.487805,1.073171,0.682927 +L 1.073171,0.682927,0.97561,0.878049 +L 0.97561,0.878049,0.780488,0.97561 +L 0.780488,0.97561,0.585366,0.97561 +L 0.195122,0.682927,0.780488,0.97561 +L 0.097561,0.487805,0.878049,0.878049 +L 0,0.292683,0.97561,0.780488 +L 0.097561,0.195122,1.073171,0.682927 +L 0.195122,0.097561,0.97561,0.487805 +L 0.292683,0,0.878049,0.292683 + +[2] 6 +L 0.195122,1.560976,0.195122,-0.682927 +L 0.780488,1.658537,0.780488,-0.585366 +L 0,0.878049,0.97561,1.073171 +L 0,0.780488,0.97561,0.97561 +L 0,0,0.97561,0.195122 +L 0,-0.097561,0.97561,0.097561 + +[3] 6 +L 0,1.658537,0,-0.097561 +L 0.780488,1.073171,0.780488,-0.682927 +L 0,0.878049,0.780488,1.073171 +L 0,0.780488,0.780488,0.97561 +L 0,0,0.780488,0.195122 +L 0,-0.097561,0.780488,0.097561 + +[4] 17 +L 0,2.04878,0,0 +L 0,0.878049,0.292683,1.073171 +L 0.292683,1.073171,0.585366,1.073171 +L 0.585366,1.073171,0.780488,0.97561 +L 0.780488,0.97561,0.878049,0.780488 +L 0.878049,0.780488,0.878049,0.585366 +L 0.878049,0.585366,0.780488,0.390244 +L 0.780488,0.390244,0.487805,0.195122 +L 0.487805,0.195122,0.292683,0.097561 +L 0.292683,0.097561,0,0 +L 0,0.878049,0.292683,0.97561 +L 0.292683,0.97561,0.585366,0.97561 +L 0.585366,0.97561,0.780488,0.878049 +L 0.682927,0.97561,0.780488,0.780488 +L 0.780488,0.780488,0.780488,0.585366 +L 0.780488,0.585366,0.682927,0.390244 +L 0.682927,0.390244,0.487805,0.195122 + +[5] 6 +L 0,1.365854,0,1.073171 +L 1.95122,1.365854,1.95122,1.073171 +L 0,1.365854,1.95122,1.365854 +L 0,1.268293,1.95122,1.268293 +L 0,1.170732,1.95122,1.170732 +L 0,1.073171,1.95122,1.073171 + +[6] 6 +L 0,0.878049,0,0.585366 +L 0.97561,0.878049,0.97561,0.585366 +L 0,0.878049,0.97561,0.878049 +L 0,0.780488,0.97561,0.780488 +L 0,0.682927,0.97561,0.682927 +L 0,0.585366,0.97561,0.585366 + +[7] 27 +L 0,1.073171,0.97561,-0.097561 +L 0,1.073171,0.195122,0.878049 +L 0.195122,0.878049,0.390244,0.780488 +L 0.390244,0.780488,0.682927,0.780488 +L 0.682927,0.780488,0.878049,0.878049 +L 0.878049,0.878049,0.97561,0.97561 +L 0.97561,0.97561,0.97561,1.170732 +L 0.97561,1.170732,0.780488,1.170732 +L 0.780488,1.170732,0.780488,0.97561 +L 0.780488,0.97561,0.682927,0.780488 +L 0.195122,0.878049,0.682927,0.780488 +L 0.390244,0.780488,0.97561,0.97561 +L 0.878049,1.170732,0.878049,0.878049 +L 0.780488,1.073171,0.97561,1.073171 +L 0.97561,-0.097561,0.780488,0.097561 +L 0.780488,0.097561,0.585366,0.195122 +L 0.585366,0.195122,0.292683,0.195122 +L 0.292683,0.195122,0.097561,0.097561 +L 0.097561,0.097561,0,0 +L 0,0,0,-0.195122 +L 0,-0.195122,0.195122,-0.195122 +L 0.195122,-0.195122,0.195122,0 +L 0.195122,0,0.292683,0.195122 +L 0.780488,0.097561,0.292683,0.195122 +L 0.585366,0.195122,0,0 +L 0.097561,0.097561,0.097561,-0.195122 +L 0,-0.097561,0.195122,-0.097561 + +[8] 14 +L 0.292683,0.780488,0.195122,0.97561 +L 0.195122,0.97561,0.195122,1.170732 +L 0.195122,1.170732,0,1.170732 +L 0,1.170732,0,0.97561 +L 0,0.97561,0.097561,0.878049 +L 0.097561,0.878049,0.292683,0.780488 +L 0.292683,0.780488,0.585366,0.780488 +L 0.585366,0.780488,0.780488,0.878049 +L 0.780488,0.878049,0.97561,1.073171 +L 0.097561,1.170732,0.097561,0.878049 +L 0,1.073171,0.195122,1.073171 +L 0,0.97561,0.585366,0.780488 +L 0.292683,0.780488,0.780488,0.878049 +L 0.97561,1.073171,0.97561,-0.195122 + +[9] 78 +L 0.292683,-1.463415,0.390244,-1.463415 +L 0.390244,-1.463415,0.487805,-1.365854 +L 0.487805,-1.365854,0.487805,-1.268293 +L 0.487805,-1.268293,0.390244,-1.170732 +L 0.390244,-1.170732,0.292683,-1.170732 +L 0.292683,-1.170732,0.195122,-1.268293 +L 0.195122,-1.268293,0.195122,-1.463415 +L 0.195122,-1.463415,0.292683,-1.658537 +L 0.292683,-1.658537,0.487805,-1.756098 +L 0.487805,-1.756098,0.682927,-1.756098 +L 0.682927,-1.756098,0.97561,-1.658537 +L 0.97561,-1.658537,1.170732,-1.463415 +L 1.170732,-1.463415,1.268293,-1.268293 +L 1.268293,-1.268293,1.365854,-0.878049 +L 1.365854,-0.878049,1.365854,0.195122 +L 1.365854,0.195122,1.268293,2.731707 +L 1.268293,2.731707,1.268293,3.414634 +L 1.268293,3.414634,1.365854,3.902439 +L 1.365854,3.902439,1.463415,4.097561 +L 1.463415,4.097561,1.658537,4.195122 +L 1.658537,4.195122,1.756098,4.195122 +L 1.756098,4.195122,1.95122,4.097561 +L 1.95122,4.097561,2.04878,3.902439 +L 2.04878,3.902439,2.04878,3.512195 +L 2.04878,3.512195,1.95122,3.219512 +L 1.95122,3.219512,1.853659,3.02439 +L 1.853659,3.02439,1.658537,2.731707 +L 1.658537,2.731707,1.170732,2.341463 +L 1.170732,2.341463,0.585366,1.95122 +L 0.585366,1.95122,0.390244,1.756098 +L 0.390244,1.756098,0.195122,1.463415 +L 0.195122,1.463415,0.097561,1.268293 +L 0.097561,1.268293,0,0.878049 +L 0,0.878049,0,0.487805 +L 0,0.487805,0.097561,0.097561 +L 0.097561,0.097561,0.292683,-0.195122 +L 0.292683,-0.195122,0.585366,-0.390244 +L 0.585366,-0.390244,0.97561,-0.487805 +L 0.97561,-0.487805,1.365854,-0.487805 +L 1.365854,-0.487805,1.756098,-0.390244 +L 1.756098,-0.390244,1.95122,-0.292683 +L 1.95122,-0.292683,2.146341,0 +L 2.146341,0,2.243902,0.292683 +L 2.243902,0.292683,2.243902,0.682927 +L 2.243902,0.682927,2.146341,0.97561 +L 2.146341,0.97561,2.04878,1.170732 +L 2.04878,1.170732,1.853659,1.365854 +L 1.853659,1.365854,1.560976,1.463415 +L 1.560976,1.463415,1.170732,1.463415 +L 1.170732,1.463415,0.878049,1.365854 +L 0.878049,1.365854,0.682927,1.170732 +L 0.682927,1.170732,0.585366,0.878049 +L 0.585366,0.878049,0.585366,0.487805 +L 0.585366,0.487805,0.682927,0.195122 +L 0.682927,0.195122,0.878049,0 +L 0.292683,-1.268293,0.292683,-1.365854 +L 0.292683,-1.365854,0.390244,-1.365854 +L 0.390244,-1.365854,0.390244,-1.268293 +L 0.390244,-1.268293,0.292683,-1.268293 +L 1.658537,2.731707,1.268293,2.341463 +L 1.268293,2.341463,0.780488,1.95122 +L 0.780488,1.95122,0.487805,1.658537 +L 0.487805,1.658537,0.292683,1.365854 +L 0.292683,1.365854,0.195122,1.170732 +L 0.195122,1.170732,0.097561,0.878049 +L 0.097561,0.878049,0.097561,0.487805 +L 0.097561,0.487805,0.195122,0.097561 +L 0.195122,0.097561,0.292683,-0.097561 +L 0.292683,-0.097561,0.585366,-0.390244 +L 1.365854,-0.487805,1.658537,-0.390244 +L 1.658537,-0.390244,1.853659,-0.292683 +L 1.853659,-0.292683,2.04878,0 +L 2.04878,0,2.146341,0.292683 +L 2.146341,0.292683,2.146341,0.682927 +L 2.146341,0.682927,2.04878,0.97561 +L 2.04878,0.97561,1.95122,1.170732 +L 1.95122,1.170732,1.756098,1.365854 +L 1.756098,1.365854,1.560976,1.463415 + +[:] 73 +L 0.585366,0.390244,0.682927,0.195122 +L 0.682927,0.195122,0.878049,0.097561 +L 0.878049,0.097561,1.073171,0.097561 +L 1.073171,0.097561,1.268293,0.195122 +L 1.268293,0.195122,1.365854,0.390244 +L 1.365854,0.390244,1.365854,0.585366 +L 1.365854,0.585366,1.268293,0.780488 +L 1.268293,0.780488,1.073171,0.878049 +L 1.073171,0.878049,0.878049,0.878049 +L 0.878049,0.878049,0.682927,0.780488 +L 0.682927,0.780488,0.585366,0.682927 +L 0.585366,0.682927,0.487805,0.390244 +L 0.487805,0.390244,0.487805,0.097561 +L 0.487805,0.097561,0.585366,-0.195122 +L 0.585366,-0.195122,0.780488,-0.390244 +L 0.780488,-0.390244,1.073171,-0.487805 +L 1.073171,-0.487805,1.365854,-0.487805 +L 1.365854,-0.487805,1.658537,-0.390244 +L 1.658537,-0.390244,1.853659,-0.195122 +L 1.853659,-0.195122,1.95122,0 +L 1.95122,0,2.04878,0.292683 +L 2.04878,0.292683,2.04878,0.682927 +L 2.04878,0.682927,1.95122,0.97561 +L 1.95122,0.97561,1.756098,1.268293 +L 1.756098,1.268293,1.560976,1.365854 +L 1.560976,1.365854,1.268293,1.463415 +L 1.268293,1.463415,0.97561,1.463415 +L 0.97561,1.463415,0.682927,1.365854 +L 0.682927,1.365854,0.487805,1.268293 +L 0.487805,1.268293,0.292683,1.073171 +L 0.292683,1.073171,0.097561,0.780488 +L 0.097561,0.780488,0,0.390244 +L 0,0.390244,0,-0.097561 +L 0,-0.097561,0.097561,-0.585366 +L 0.097561,-0.585366,0.292683,-0.97561 +L 0.292683,-0.97561,0.487805,-1.170732 +L 0.487805,-1.170732,0.780488,-1.365854 +L 0.780488,-1.365854,1.170732,-1.463415 +L 1.170732,-1.463415,1.658537,-1.463415 +L 1.658537,-1.463415,2.04878,-1.365854 +L 2.04878,-1.365854,2.341463,-1.170732 +L 2.341463,-1.170732,2.536585,-0.97561 +L 0.292683,1.073171,0.195122,0.878049 +L 0.195122,0.878049,0.097561,0.487805 +L 0.097561,0.487805,0.097561,-0.097561 +L 0.097561,-0.097561,0.195122,-0.487805 +L 0.195122,-0.487805,0.390244,-0.878049 +L 0.390244,-0.878049,0.585366,-1.073171 +L 0.585366,-1.073171,0.878049,-1.268293 +L 0.878049,-1.268293,1.268293,-1.365854 +L 1.268293,-1.365854,1.658537,-1.365854 +L 1.658537,-1.365854,2.04878,-1.268293 +L 2.04878,-1.268293,2.243902,-1.170732 +L 2.243902,-1.170732,2.536585,-0.97561 +L 0.780488,0.780488,1.170732,0.780488 +L 0.682927,0.682927,1.268293,0.682927 +L 0.585366,0.585366,1.365854,0.585366 +L 0.585366,0.487805,1.365854,0.487805 +L 0.585366,0.390244,1.365854,0.390244 +L 0.682927,0.292683,1.268293,0.292683 +L 0.780488,0.195122,1.170732,0.195122 +L 2.439024,1.073171,2.439024,0.878049 +L 2.439024,0.878049,2.634146,0.878049 +L 2.634146,0.878049,2.634146,1.073171 +L 2.634146,1.073171,2.439024,1.073171 +L 2.536585,1.073171,2.536585,0.878049 +L 2.439024,0.97561,2.634146,0.97561 +L 2.439024,0.097561,2.439024,-0.097561 +L 2.439024,-0.097561,2.634146,-0.097561 +L 2.634146,-0.097561,2.634146,0.097561 +L 2.634146,0.097561,2.439024,0.097561 +L 2.536585,0.097561,2.536585,-0.097561 +L 2.439024,0,2.634146,0 + +[;] 10 +L 0,2.243902,0,-1.268293 +L 0.487805,2.243902,0.487805,-1.268293 +L 1.463415,2.243902,1.463415,-1.268293 +L 1.95122,2.243902,1.95122,-1.268293 +L 0.487805,0.97561,1.463415,1.170732 +L 0.487805,0.878049,1.463415,1.073171 +L 0.487805,0.780488,1.463415,0.97561 +L 0.487805,0,1.463415,0.195122 +L 0.487805,-0.097561,1.463415,0.097561 +L 0.487805,-0.195122,1.463415,0 + +[<] 6 +L 0,0.585366,0,0.390244 +L 0,0.390244,0.195122,0.390244 +L 0.195122,0.390244,0.195122,0.585366 +L 0.195122,0.585366,0,0.585366 +L 0,0.585366,0.195122,0.390244 +L 0.195122,0.585366,0,0.390244 + +[=] 12 +L 0,0.682927,0.390244,0.487805 +L 0.390244,0.487805,0.682927,0.292683 +L 0.682927,0.292683,0.878049,0.097561 +L 0.878049,0.097561,0.97561,-0.195122 +L 0.97561,-0.195122,0.97561,-0.390244 +L 0.97561,-0.390244,0.878049,-0.585366 +L 0.878049,-0.585366,0.780488,-0.682927 +L 0,0.585366,0.585366,0.292683 +L 0,0.487805,0.292683,0.390244 +L 0.292683,0.390244,0.682927,0.195122 +L 0.682927,0.195122,0.878049,0 +L 0.878049,0,0.97561,-0.195122 + +[>] 12 +L 0.97561,1.170732,0.878049,0.97561 +L 0.878049,0.97561,0.682927,0.780488 +L 0.682927,0.780488,0.292683,0.585366 +L 0.292683,0.585366,0,0.487805 +L 0.585366,0.682927,0,0.390244 +L 0.780488,1.658537,0.878049,1.560976 +L 0.878049,1.560976,0.97561,1.365854 +L 0.97561,1.365854,0.97561,1.170732 +L 0.97561,1.170732,0.878049,0.878049 +L 0.878049,0.878049,0.682927,0.682927 +L 0.682927,0.682927,0.390244,0.487805 +L 0.390244,0.487805,0,0.292683 + +[?] 26 +L 0.487805,0.97561,0.195122,0.878049 +L 0.195122,0.878049,0.097561,0.780488 +L 0.097561,0.780488,0,0.585366 +L 0,0.585366,0,0.390244 +L 0,0.390244,0.097561,0.195122 +L 0.097561,0.195122,0.195122,0.097561 +L 0.195122,0.097561,0.487805,0 +L 0.487805,0,0.878049,0 +L 0.878049,0,1.170732,0.097561 +L 1.170732,0.097561,1.268293,0.195122 +L 1.268293,0.195122,1.365854,0.390244 +L 1.365854,0.390244,1.365854,0.585366 +L 1.365854,0.585366,1.268293,0.780488 +L 1.268293,0.780488,1.170732,0.878049 +L 1.170732,0.878049,0.878049,0.97561 +L 0.878049,0.97561,0.487805,0.97561 +L 0.195122,0.878049,0.097561,0.682927 +L 0.097561,0.682927,0.097561,0.390244 +L 0.097561,0.390244,0.195122,0.195122 +L 0.195122,0.195122,0.292683,0.097561 +L 0.292683,0.097561,0.487805,0 +L 1.170732,0.097561,1.268293,0.292683 +L 1.268293,0.292683,1.268293,0.585366 +L 1.268293,0.585366,1.170732,0.780488 +L 1.170732,0.780488,1.073171,0.878049 +L 1.073171,0.878049,0.878049,0.97561 + +[@] 22 +L 0.780488,0.97561,0.390244,0.878049 +L 0.390244,0.878049,0.097561,0.682927 +L 0.097561,0.682927,0,0.487805 +L 0,0.487805,0,0.292683 +L 0,0.292683,0.097561,0.097561 +L 0.097561,0.097561,0.292683,0 +L 0.292683,0,0.585366,0 +L 0.585366,0,0.97561,0.097561 +L 0.97561,0.097561,1.268293,0.292683 +L 1.268293,0.292683,1.365854,0.487805 +L 1.365854,0.487805,1.365854,0.682927 +L 1.365854,0.682927,1.268293,0.878049 +L 1.268293,0.878049,1.073171,0.97561 +L 1.073171,0.97561,0.780488,0.97561 +L 1.268293,0.878049,0.780488,0.97561 +L 1.073171,0.97561,0.585366,0.878049 +L 0.585366,0.878049,0.097561,0.682927 +L 0.390244,0.878049,0,0.487805 +L 0.097561,0.097561,0.585366,0 +L 0.292683,0,0.780488,0.097561 +L 0.780488,0.097561,1.268293,0.292683 +L 0.97561,0.097561,1.365854,0.487805 + +[A] 20 +L 0.585366,0.97561,0.292683,0.878049 +L 0.292683,0.878049,0.097561,0.682927 +L 0.097561,0.682927,0,0.487805 +L 0,0.487805,0,0.292683 +L 0,0.292683,0.097561,0.097561 +L 0.097561,0.097561,0.292683,0 +L 0.292683,0,0.487805,0 +L 0.487805,0,0.780488,0.097561 +L 0.780488,0.097561,0.97561,0.292683 +L 0.97561,0.292683,1.073171,0.487805 +L 1.073171,0.487805,1.073171,0.682927 +L 1.073171,0.682927,0.97561,0.878049 +L 0.97561,0.878049,0.780488,0.97561 +L 0.780488,0.97561,0.585366,0.97561 +L 0.195122,0.682927,0.780488,0.97561 +L 0.097561,0.487805,0.878049,0.878049 +L 0,0.292683,0.97561,0.780488 +L 0.097561,0.195122,1.073171,0.682927 +L 0.195122,0.097561,0.97561,0.487805 +L 0.292683,0,0.878049,0.292683 + +[B] 6 +L 0.195122,1.560976,0.195122,-0.682927 +L 0.780488,1.658537,0.780488,-0.585366 +L 0,0.878049,0.97561,1.073171 +L 0,0.780488,0.97561,0.97561 +L 0,0,0.97561,0.195122 +L 0,-0.097561,0.97561,0.097561 + +[C] 6 +L 0,1.658537,0,-0.097561 +L 0.780488,1.073171,0.780488,-0.682927 +L 0,0.878049,0.780488,1.073171 +L 0,0.780488,0.780488,0.97561 +L 0,0,0.780488,0.195122 +L 0,-0.097561,0.780488,0.097561 + +[D] 17 +L 0,2.04878,0,0 +L 0,0.878049,0.292683,1.073171 +L 0.292683,1.073171,0.585366,1.073171 +L 0.585366,1.073171,0.780488,0.97561 +L 0.780488,0.97561,0.878049,0.780488 +L 0.878049,0.780488,0.878049,0.585366 +L 0.878049,0.585366,0.780488,0.390244 +L 0.780488,0.390244,0.487805,0.195122 +L 0.487805,0.195122,0.292683,0.097561 +L 0.292683,0.097561,0,0 +L 0,0.878049,0.292683,0.97561 +L 0.292683,0.97561,0.585366,0.97561 +L 0.585366,0.97561,0.780488,0.878049 +L 0.682927,0.97561,0.780488,0.780488 +L 0.780488,0.780488,0.780488,0.585366 +L 0.780488,0.585366,0.682927,0.390244 +L 0.682927,0.390244,0.487805,0.195122 + +[E] 6 +L 0,1.365854,0,1.073171 +L 1.95122,1.365854,1.95122,1.073171 +L 0,1.365854,1.95122,1.365854 +L 0,1.268293,1.95122,1.268293 +L 0,1.170732,1.95122,1.170732 +L 0,1.073171,1.95122,1.073171 + +[F] 6 +L 0,0.878049,0,0.585366 +L 0.97561,0.878049,0.97561,0.585366 +L 0,0.878049,0.97561,0.878049 +L 0,0.780488,0.97561,0.780488 +L 0,0.682927,0.97561,0.682927 +L 0,0.585366,0.97561,0.585366 + +[G] 24 +L 0.292683,1.95122,0.780488,0.97561 +L 0.780488,0.97561,0.390244,0.292683 +L 0.390244,0.292683,0.390244,0.195122 +L 0.682927,1.073171,0.292683,0.390244 +L 0.585366,1.365854,0.585366,1.170732 +L 0.585366,1.170732,0.195122,0.487805 +L 0.195122,0.487805,0.390244,0.195122 +L 0.390244,0.195122,0.682927,-0.195122 +L 0.878049,-0.487805,0.682927,-0.195122 +L 0.682927,-0.195122,0.487805,-0.097561 +L 0.487805,-0.097561,0.292683,-0.097561 +L 0.292683,-0.097561,0.097561,-0.195122 +L 0.097561,-0.195122,0,-0.390244 +L 0,-0.390244,0,-0.585366 +L 0,-0.585366,0.097561,-0.780488 +L 0.097561,-0.780488,0.390244,-0.97561 +L 0.878049,-0.487805,0.682927,-0.292683 +L 0.682927,-0.292683,0.487805,-0.195122 +L 0.487805,-0.195122,0.097561,-0.195122 +L 0.097561,-0.195122,0.097561,-0.585366 +L 0.097561,-0.585366,0.195122,-0.780488 +L 0.195122,-0.780488,0.390244,-0.97561 +L 0.487805,-0.097561,0.195122,-0.292683 +L 0.195122,-0.292683,0,-0.585366 + +[H] 14 +L 0.292683,0.780488,0.195122,0.97561 +L 0.195122,0.97561,0.195122,1.170732 +L 0.195122,1.170732,0,1.170732 +L 0,1.170732,0,0.97561 +L 0,0.97561,0.097561,0.878049 +L 0.097561,0.878049,0.292683,0.780488 +L 0.292683,0.780488,0.585366,0.780488 +L 0.585366,0.780488,0.780488,0.878049 +L 0.780488,0.878049,0.97561,1.073171 +L 0.097561,1.170732,0.097561,0.878049 +L 0,1.073171,0.195122,1.073171 +L 0,0.97561,0.585366,0.780488 +L 0.292683,0.780488,0.780488,0.878049 +L 0.97561,1.073171,0.585366,-0.195122 + +[I] 78 +L 0.292683,-1.463415,0.390244,-1.463415 +L 0.390244,-1.463415,0.487805,-1.365854 +L 0.487805,-1.365854,0.487805,-1.268293 +L 0.487805,-1.268293,0.390244,-1.170732 +L 0.390244,-1.170732,0.292683,-1.170732 +L 0.292683,-1.170732,0.195122,-1.268293 +L 0.195122,-1.268293,0.195122,-1.463415 +L 0.195122,-1.463415,0.292683,-1.658537 +L 0.292683,-1.658537,0.487805,-1.756098 +L 0.487805,-1.756098,0.682927,-1.756098 +L 0.682927,-1.756098,0.97561,-1.658537 +L 0.97561,-1.658537,1.170732,-1.463415 +L 1.170732,-1.463415,1.268293,-1.268293 +L 1.268293,-1.268293,1.365854,-0.878049 +L 1.365854,-0.878049,1.365854,0.195122 +L 1.365854,0.195122,1.268293,2.731707 +L 1.268293,2.731707,1.268293,3.414634 +L 1.268293,3.414634,1.365854,3.902439 +L 1.365854,3.902439,1.463415,4.097561 +L 1.463415,4.097561,1.658537,4.195122 +L 1.658537,4.195122,1.756098,4.195122 +L 1.756098,4.195122,1.95122,4.097561 +L 1.95122,4.097561,2.04878,3.902439 +L 2.04878,3.902439,2.04878,3.512195 +L 2.04878,3.512195,1.95122,3.219512 +L 1.95122,3.219512,1.853659,3.02439 +L 1.853659,3.02439,1.658537,2.731707 +L 1.658537,2.731707,1.170732,2.341463 +L 1.170732,2.341463,0.585366,1.95122 +L 0.585366,1.95122,0.390244,1.756098 +L 0.390244,1.756098,0.195122,1.463415 +L 0.195122,1.463415,0.097561,1.268293 +L 0.097561,1.268293,0,0.878049 +L 0,0.878049,0,0.487805 +L 0,0.487805,0.097561,0.097561 +L 0.097561,0.097561,0.292683,-0.195122 +L 0.292683,-0.195122,0.585366,-0.390244 +L 0.585366,-0.390244,0.97561,-0.487805 +L 0.97561,-0.487805,1.365854,-0.487805 +L 1.365854,-0.487805,1.756098,-0.390244 +L 1.756098,-0.390244,1.95122,-0.292683 +L 1.95122,-0.292683,2.146341,0 +L 2.146341,0,2.243902,0.292683 +L 2.243902,0.292683,2.243902,0.682927 +L 2.243902,0.682927,2.146341,0.97561 +L 2.146341,0.97561,2.04878,1.170732 +L 2.04878,1.170732,1.853659,1.365854 +L 1.853659,1.365854,1.560976,1.463415 +L 1.560976,1.463415,1.170732,1.463415 +L 1.170732,1.463415,0.878049,1.365854 +L 0.878049,1.365854,0.682927,1.170732 +L 0.682927,1.170732,0.585366,0.878049 +L 0.585366,0.878049,0.585366,0.487805 +L 0.585366,0.487805,0.682927,0.195122 +L 0.682927,0.195122,0.878049,0 +L 0.292683,-1.268293,0.292683,-1.365854 +L 0.292683,-1.365854,0.390244,-1.365854 +L 0.390244,-1.365854,0.390244,-1.268293 +L 0.390244,-1.268293,0.292683,-1.268293 +L 1.658537,2.731707,1.268293,2.341463 +L 1.268293,2.341463,0.780488,1.95122 +L 0.780488,1.95122,0.487805,1.658537 +L 0.487805,1.658537,0.292683,1.365854 +L 0.292683,1.365854,0.195122,1.170732 +L 0.195122,1.170732,0.097561,0.878049 +L 0.097561,0.878049,0.097561,0.487805 +L 0.097561,0.487805,0.195122,0.097561 +L 0.195122,0.097561,0.292683,-0.097561 +L 0.292683,-0.097561,0.585366,-0.390244 +L 1.365854,-0.487805,1.658537,-0.390244 +L 1.658537,-0.390244,1.853659,-0.292683 +L 1.853659,-0.292683,2.04878,0 +L 2.04878,0,2.146341,0.292683 +L 2.146341,0.292683,2.146341,0.682927 +L 2.146341,0.682927,2.04878,0.97561 +L 2.04878,0.97561,1.95122,1.170732 +L 1.95122,1.170732,1.756098,1.365854 +L 1.756098,1.365854,1.560976,1.463415 + +[J] 59 +L 0.097561,0.585366,0.195122,0.780488 +L 0.195122,0.780488,0.390244,0.878049 +L 0.390244,0.878049,0.585366,0.878049 +L 0.585366,0.878049,0.780488,0.780488 +L 0.780488,0.780488,0.878049,0.585366 +L 0.878049,0.585366,0.878049,0.390244 +L 0.878049,0.390244,0.780488,0.195122 +L 0.780488,0.195122,0.585366,0.097561 +L 0.585366,0.097561,0.390244,0.097561 +L 0.390244,0.097561,0.195122,0.195122 +L 0.195122,0.195122,0.097561,0.292683 +L 0.097561,0.292683,0,0.585366 +L 0,0.585366,0,0.878049 +L 0,0.878049,0.097561,1.170732 +L 0.097561,1.170732,0.292683,1.365854 +L 0.292683,1.365854,0.585366,1.463415 +L 0.585366,1.463415,0.97561,1.463415 +L 0.97561,1.463415,1.365854,1.365854 +L 1.365854,1.365854,1.658537,1.170732 +L 1.658537,1.170732,1.853659,0.878049 +L 1.853659,0.878049,1.95122,0.487805 +L 1.95122,0.487805,1.95122,0 +L 1.95122,0,1.853659,-0.390244 +L 1.853659,-0.390244,1.756098,-0.585366 +L 1.756098,-0.585366,1.560976,-0.878049 +L 1.560976,-0.878049,1.268293,-1.170732 +L 1.268293,-1.170732,0.878049,-1.463415 +L 0.878049,-1.463415,0.390244,-1.756098 +L 0.390244,-1.756098,0,-1.95122 +L 0.97561,1.463415,1.268293,1.365854 +L 1.268293,1.365854,1.560976,1.170732 +L 1.560976,1.170732,1.756098,0.878049 +L 1.756098,0.878049,1.853659,0.487805 +L 1.853659,0.487805,1.853659,0 +L 1.853659,0,1.756098,-0.390244 +L 1.756098,-0.390244,1.658537,-0.585366 +L 1.658537,-0.585366,1.463415,-0.878049 +L 1.463415,-0.878049,1.170732,-1.170732 +L 1.170732,-1.170732,0.682927,-1.560976 +L 0.682927,-1.560976,0.390244,-1.756098 +L 0.292683,0.780488,0.682927,0.780488 +L 0.195122,0.682927,0.780488,0.682927 +L 0.097561,0.585366,0.878049,0.585366 +L 0.097561,0.487805,0.878049,0.487805 +L 0.097561,0.390244,0.878049,0.390244 +L 0.195122,0.292683,0.780488,0.292683 +L 0.292683,0.195122,0.682927,0.195122 +L 2.341463,1.073171,2.341463,0.878049 +L 2.341463,0.878049,2.536585,0.878049 +L 2.536585,0.878049,2.536585,1.073171 +L 2.536585,1.073171,2.341463,1.073171 +L 2.439024,1.073171,2.439024,0.878049 +L 2.341463,0.97561,2.536585,0.97561 +L 2.341463,0.097561,2.341463,-0.097561 +L 2.341463,-0.097561,2.536585,-0.097561 +L 2.536585,-0.097561,2.536585,0.097561 +L 2.536585,0.097561,2.341463,0.097561 +L 2.439024,0.097561,2.439024,-0.097561 +L 2.341463,0,2.536585,0 + +[K] 63 +L 0,2.439024,0,-1.463415 +L 0.097561,2.439024,0.097561,-1.463415 +L 0.487805,2.439024,0.487805,-1.463415 +L 0.878049,2.04878,1.073171,2.04878 +L 1.073171,2.04878,1.073171,1.853659 +L 1.073171,1.853659,0.878049,1.853659 +L 0.878049,1.853659,0.878049,2.146341 +L 0.878049,2.146341,0.97561,2.341463 +L 0.97561,2.341463,1.170732,2.439024 +L 1.170732,2.439024,1.463415,2.439024 +L 1.463415,2.439024,1.658537,2.341463 +L 1.658537,2.341463,1.853659,2.146341 +L 1.853659,2.146341,1.95122,1.853659 +L 1.95122,1.853659,1.95122,1.365854 +L 1.95122,1.365854,1.853659,1.073171 +L 1.853659,1.073171,1.658537,0.878049 +L 1.658537,0.878049,1.463415,0.780488 +L 1.463415,0.780488,1.268293,0.780488 +L 1.268293,0.780488,1.073171,0.878049 +L 1.073171,0.878049,0.97561,1.073171 +L 0.97561,1.073171,0.878049,0.878049 +L 0.878049,0.878049,0.682927,0.585366 +L 0.682927,0.585366,0.585366,0.487805 +L 0.585366,0.487805,0.682927,0.390244 +L 0.682927,0.390244,0.878049,0.097561 +L 0.878049,0.097561,0.97561,-0.097561 +L 0.97561,-0.097561,1.073171,0.097561 +L 1.073171,0.097561,1.268293,0.195122 +L 1.268293,0.195122,1.463415,0.195122 +L 1.463415,0.195122,1.658537,0.097561 +L 1.658537,0.097561,1.853659,-0.097561 +L 1.853659,-0.097561,1.95122,-0.390244 +L 1.95122,-0.390244,1.95122,-0.878049 +L 1.95122,-0.878049,1.853659,-1.170732 +L 1.853659,-1.170732,1.658537,-1.365854 +L 1.658537,-1.365854,1.463415,-1.463415 +L 1.463415,-1.463415,1.170732,-1.463415 +L 1.170732,-1.463415,0.97561,-1.365854 +L 0.97561,-1.365854,0.878049,-1.170732 +L 0.878049,-1.170732,0.878049,-0.878049 +L 0.878049,-0.878049,1.073171,-0.878049 +L 1.073171,-0.878049,1.073171,-1.073171 +L 1.073171,-1.073171,0.878049,-1.073171 +L 0.97561,2.04878,0.97561,1.853659 +L 0.878049,1.95122,1.073171,1.95122 +L 1.658537,2.341463,1.756098,2.146341 +L 1.756098,2.146341,1.853659,1.853659 +L 1.853659,1.853659,1.853659,1.365854 +L 1.853659,1.365854,1.756098,1.073171 +L 1.756098,1.073171,1.658537,0.878049 +L 0.97561,1.073171,0.97561,0.878049 +L 0.97561,0.878049,0.780488,0.585366 +L 0.780488,0.585366,0.585366,0.487805 +L 0.585366,0.487805,0.780488,0.390244 +L 0.780488,0.390244,0.97561,0.097561 +L 0.97561,0.097561,0.97561,-0.097561 +L 1.658537,0.097561,1.756098,-0.097561 +L 1.756098,-0.097561,1.853659,-0.390244 +L 1.853659,-0.390244,1.853659,-0.878049 +L 1.853659,-0.878049,1.756098,-1.170732 +L 1.756098,-1.170732,1.658537,-1.365854 +L 0.97561,-0.878049,0.97561,-1.073171 +L 0.878049,-0.97561,1.073171,-0.97561 + +#EOF diff --git a/pycam/share/fonts/unicode.cxf b/pycam/share/fonts/unicode.cxf new file mode 100644 index 00000000..6921628e --- /dev/null +++ b/pycam/share/fonts/unicode.cxf @@ -0,0 +1,86548 @@ +# Format: QCad II Font +# Creator: QCad +# Version: 1 +# Name: Unicode +# Name: Japanese +# LetterSpacing: 3.0 +# WordSpacing: 6.75 +# LineSpacingFactor: 1.0 +# Author: Andrew Mustun (Latin1) +# Author: Eugene Osintsev (Cyrillic) +# Author: Yoshimune Kobayashi (Japanese) + +[!] 2 +L 0,9,0,3 +L 0,0,0,0.5 + +["] 2 +L 0.5,7,1,9 +L 3.5,7,4,9 + +[#] 4 +L 1.999969,0,1.999969,8.999999 +L 4.999969,8.999999,4.999969,0 +L -0.000031,2.5,6.999969,2.5 +L 6.999969,6.499999,-0.000031,6.499999 + +[&] 5 +L 6,3.21499,3.425964,0.59764 +A 2,2,2,135.478088,315.478088 +L 0.574036,3.40236,3.569458,6.44823 +A 2.5,7.5,1.5,315.478271,209.372314 +L 1.19281,6.76428,5,0 + +['] 1 +L 0.5,7,1,9 + +[(] 1 +A 13,4,13,157.380142,202.619858 + +[)] 1 +A -12,4,13,337.380127,22.61986 + +[*] 2 +L 0,6,4,2 +L 4,6,0,2 + +[+] 2 +L 0,4,4,4 +L 2,6,2,2 + +[,] 2 +L 1,0,0,-3 +L 1,0,1,0.5 + +[-] 1 +L 0,4,4,4 + +[.] 1 +L 0,0,0,0.5 + +[/] 1 +L 4,9,0,0 + +[0] 10 +A 2,7.91049,1.08951,32.75695,147.243042 +A 4.93335,5.62352,4.80559,143.232468,169.491135 +A 4.93335,3.37648,4.80559,190.508865,216.767532 +A 2,1.08951,1.08951,212.756958,327.243042 +A -0.93335,3.37648,4.80559,323.232452,349.491119 +A -5.404663,4.46906,9.40473,347.913147,0.18851 +A -5.404663,4.53094,9.40473,359.811493,12.08686 +A -0.93335,5.62352,4.80559,10.50887,36.76754 +A 9.404663,4.46906,9.40473,179.811493,192.086868 +A 9.404663,4.53094,9.40473,167.913132,180.188507 + +[1] 2 +L 0,7,2,9 +L 2,9,2,0 + +[2] 4 +L 4,0,0,0 +L 0,0,3.864502,6.64668 +A 3,7.14931,1,329.82547,20.52911 +A 2,7,2,14.47751,165.522491 + +[3] 7 +L 0,9,2,9 +A 2,7,2,270,90 +L 2,5,1,5 +A 2,3,2,0,90 +L 4,3,4,2 +A 2,2,2,270,0 +L 2,0,0,0 + +[4] 3 +L 3.5,0,3.5,4 +L 5,2,0,2 +L 0,2,2,9 + +[5] 7 +L 4,9,0,9 +L 0,9,0,5 +L 0,5,2,5 +A 2,3,2,0,90 +L 4,3,4,2 +A 2,2,2,270,0 +L 2,0,0,0 + +[6] 6 +A 6,3.80385,6,120,180 +L 0,3.80385,0,2 +A 2,2,2,180,0 +L 4,2,4,3 +A 2,3,2,0,90 +L 2,5,0.120422,5 + +[7] 3 +L 0,9,4,9 +L 4,9,1.5,0 +L 2,5,4,5 + +[8] 8 +L 0,3,0,2 +A 2,2,2,180,0 +L 4,2,4,3 +A 2,3,2,0,180 +L 0.25,7.25,0.25,6.75 +A 2,6.75,1.75,180,0 +L 3.75,6.75,3.75,7.25 +A 2,7.25,1.75,0,180 + +[9] 6 +A -2,5.19615,6,300,0 +L 4,5.19615,4,7 +A 2,7,2,0,180 +L 0,7,0,6 +A 2,6,2,180,270 +L 2,4,3.879578,4 + +[:] 2 +L 0,0,0,0.5 +L 0,4,0,3.5 + +[;] 3 +L 1,0,0,-3 +L 1,0,1,0.5 +L 1,4,1,3.5 + +[<] 2 +L 4,7,0,3.5 +L 0,3.5,4,0 + +[=] 2 +L 0,5.5,4,5.5 +L 0,2.5,4,2.5 + +[>] 2 +L 0,7,4,3.5 +L 4,3.5,0,0 + +[?] 9 +L 2,0,2,0.5 +L 2,3,2,3.39445 +L 0,7,0,7.5 +L 1.5,9,2.5,9 +L 3.664062,6.49615,2.335938,4.50385 +A 4,3.39445,2,146.309937,180 +A 2,7.60555,2,326.309998,358.379272 +A 1.5,7.5,1.5,90,180 +A 2.5,7.5,1.5,1.87147,90 + +[@] 11 +L 8,1,6.067566,0.28186 +A 4.5,4.5,4.5,333.472015,290.386322 +A 7.412354,2.943008,1.2,168.690186,337.880432 +A 4.439636,4,2,168.689804,270 +A 5.170288,5.5,1.5,348.690002,90 +A 5.049561,4.5,2.5,90,168.690094 +L 2.478455,4.392246,2.598083,4.990294 +A 4.360352,4,2,270,348.68985 +L 4.360352,2,4.439636,2 +L 6.321533,3.607756,7,7 +L 5.049561,7,5.170288,7 + +[A] 3 +L 0,0,3,9 +L 3,9,6,0 +L 0.833313,2.5,5.166687,2.5 + +[B] 8 +L 0,0,0,9 +L 0,9,2.5,9 +A 2.5,7,2,270,90 +L 0,5,2.599976,5 +A 2.599976,2.6,2.4,0,90 +L 5,2.6,5,2.4 +A 2.599976,2.4,2.4,270,0 +L 2.599976,0,0,0 + +[C] 5 +L 4,9,2,9 +A 2,7,2,90,180 +L 0,7,0,2 +A 2,2,2,180,270 +L 2,0,4,0 + +[D] 6 +L 0,0,3,0 +A 3,2,2,270,0 +L 5,2,5,7 +A 3,7,2,0,90 +L 3,9,0,9 +L 0,9,0,0 + +[E] 4 +L 4,9,0,9 +L 0,9,0,0 +L 0,0,4,0 +L 0,5,3,5 + +[F] 3 +L 4,9,0,9 +L 0,9,0,0 +L 0,5,4,5 + +[G] 7 +L 5,9,2,9 +A 2,7,2,90,180 +L 0,7,0,2 +A 2,2,2,180,270 +L 2,0,5,0 +L 5,0,5,5 +L 5,5,3.5,5 + +[H] 3 +L 0,9,0,0 +L 5,0,5,9 +L 0,5,5,5 + +[I] 1 +L 0,9,0,0 + +[J] 3 +L 3,9,3,2 +A 1,2,2,270,0 +L 1,0,0,0 + +[K] 3 +L 0,9,0,0 +L 0,3.5,5,9 +L 1.671326,5.33844,5,0 + +[L] 2 +L 0,9,0,0 +L 0,0,4,0 + +[M] 4 +L 0,0,0,9 +L 0,9,3,4 +L 3,4,6,9 +L 6,9,6,0 + +[N] 3 +L 0,0,0,9 +L 0,9,5,0 +L 5,0,5,9 + +[O] 8 +L 0,2,0,7 +A 2,7,2,90,180 +L 2,9,3,9 +A 3,7,2,0,90 +L 5,7,5,2 +A 3,2,2,270,0 +L 3,0,2,0 +A 2,2,2,180,270 + +[P] 6 +L 0,0,0,9 +L 0,9,3,9 +A 3,7,2,0,90 +L 5,7,5,6 +A 3,6,2,270,0 +L 3,4,0,4 + +[Q] 9 +L 0,2,0,7 +A 2,7,2,90,180 +L 2,9,3,9 +A 3,7,2,0,90 +L 5,7,5,2 +A 3,2,2,270,0 +L 3,0,2,0 +A 2,2,2,180,270 +L 6,0,3,2 + +[R] 7 +L 0,0,0,9 +L 0,9,3,9 +A 3,7,2,0,90 +L 5,7,5,6 +A 3,6,2,270,0 +L 3,4,0,4 +L 3,4,5,0 + +[S] 5 +A 2,2.375,6.625,63.074589,90 +A 2,7,2,90,242.981201 +L 1.091431,5.21829,3.908569,3.78171 +A 3,2,2,270,62.98119 +A 3,6.625,6.625,243.074585,270 + +[T] 2 +L 0,9,6,9 +L 3,9,3,0 + +[U] 3 +L 0,9,0,2.5 +A 2.5,2.5,2.5,180,0 +L 5,2.5,5,9 + +[V] 2 +L 0,9,3,0 +L 3,0,6,9 + +[W] 4 +L 0,9,2,0 +L 2,0,4,6 +L 4,6,6,0 +L 6,0,8,9 + +[X] 2 +L 0,9,6,0 +L 0,0,6,9 + +[Y] 3 +L 0,9,3,5 +L 3,5,3,0 +L 3,5,6,9 + +[Z] 3 +L 0,9,5,9 +L 5,9,0,0 +L 0,0,5,0 + +[[] 3 +L 1,-1,0,-1 +L 0,-1,0,9 +L 0,9,1,9 + +[\] 1 +L 0,9,4,0 + +[]] 3 +L 0,9,1,9 +L 1,9,1,-1 +L 1,-1,0,-1 + +[a] 6 +L 0.5,6,2.5,6 +A 2.5,4.5,1.5,0,90 +L 4,4.5,4,0 +L 4,0,1.5,0 +A 1.5,1.5,1.5,90,270 +L 1.5,3,4,3 + +[b] 6 +L 0,9,0,0 +L 0,0,2.5,0 +A 2.5,1.5,1.5,270,0 +L 4,1.5,4,4.5 +A 2.5,4.5,1.5,0,90 +L 2.5,6,0,6 + +[c] 5 +L 3,6,1.5,6 +A 1.5,4.5,1.5,90,180 +L 0,4.5,0,1.5 +A 1.5,1.5,1.5,180,270 +L 1.5,0,3,0 + +[d] 6 +L 4,9,4,0 +L 4,0,1.5,0 +A 1.5,1.5,1.5,180,270 +L 0,1.5,0,4.5 +A 1.5,4.5,1.5,90,180 +L 1.5,6,4,6 + +[e] 6 +L 0,3,4,3 +L 4,3,4,4 +A 2,4,2,0,180 +L 0,4,0,1.5 +A 1.5,1.5,1.5,180,270 +L 1.5,0,4,0 + +[f] 4 +L 1,0,1,7.5 +A 2.5,7.5,1.5,90,180 +L 2.5,9,3,9 +L 0,6,3,6 + +[g] 8 +L 0,-3,2.5,-3 +A 2.5,-1.5,1.5,270,0 +L 4,-1.5,4,6 +L 4,6,1.5,6 +A 1.5,4.5,1.5,90,180 +L 0,4.5,0,1.5 +A 1.5,1.5,1.5,180,270 +L 1.5,0,4,0 + +[h] 4 +L 0,9,0,0 +L 0,6,2.5,6 +A 2.5,4.5,1.5,0,90 +L 4,4.5,4,0 + +[i] 2 +L 0,0,0,6 +L 0,8.5,0,9 + +[j] 4 +L 0,-3,0.5,-3 +A 0.5,-1.5,1.5,270,0 +L 2,-1.5,2,6 +L 2,8.5,2,9 + +[k] 3 +L 0,9,0,0 +L 0,3.5,4,6 +L 1.320923,4.32555,4,0 + +[l] 2 +L 0,9,0,1 +A 1,1,1,180,270 + +[m] 5 +L 0,0,0,6 +L 0,6,4.5,6 +A 4.5,4.5,1.5,0,90 +L 6,4.5,6,0 +L 3,6,3,0 + +[n] 4 +L 0,0,0,6 +L 0,6,2.5,6 +A 2.5,4.5,1.5,0,90 +L 4,4.5,4,0 + +[o] 4 +L 0,4,0,2 +A 2,2,2,180,0 +L 4,2,4,4 +A 2,4,2,0,180 + +[p] 6 +L 0,0,2.5,0 +A 2.5,1.5,1.5,270,0 +L 4,1.5,4,4.5 +A 2.5,4.5,1.5,0,90 +L 2.5,6,0,6 +L 0,6,0,-3 + +[q] 6 +L 4,0,1.5,0 +A 1.5,1.5,1.5,180,270 +L 0,1.5,0,4.5 +A 1.5,4.5,1.5,90,180 +L 1.5,6,4,6 +L 4,6,4,-3 + +[r] 3 +L 0,0,0,6 +L 0,6,2,6 +A 2,5,1,0,90 + +[s] 5 +A 2.164185,1.82088,4.0573,63.09737,108.27552 +A 1.268188,4.53406,1.2,108.274567,247.790543 +L 0.814575,3.42309,3.185425,2.45509 +A 2.731812,1.34412,1.19999,288.274933,67.791191 +A 1.835815,4.05732,4.05732,243.097656,288.275513 + +[t] 2 +L 0,6,3,6 +L 1,9,1,0 + +[u] 4 +L 0,6,0,1.5 +A 1.5,1.5,1.5,180,270 +L 1.5,0,4,0 +L 4,0,4,6 + +[v] 2 +L 0,6,2,0 +L 2,0,4,6 + +[w] 4 +L 0,6,1.5,0 +L 1.5,0,3,4 +L 3,4,4.5,0 +L 4.5,0,6,6 + +[x] 2 +L 0,6,4,0 +L 0,0,4,6 + +[y] 4 +L 0,6,2,0 +L 4,6,1.227905,-2.31623 +A 0.279297,-2,1,270,341.565063 +L 0.279297,-3,0,-3 + +[z] 3 +L 0,6,4,6 +L 4,6,0,0 +L 0,0,4,0 + +[{] 6 +A 2,8,1,90,180 +L 1,8,1,5 +A 0,5,1,270,0 +A 0,3,1,0,90 +L 1,3,1,0 +A 2,0,1,180,270 + +[}] 6 +A 0,8,1,0,90 +L 1,8,1,5 +A 2,5,1,180,270 +A 2,3,1,90,180 +L 1,3,1,0 +A 0,0,1,270,0 + +# Cyrillic letters -------------------------------------- + +[ё] 8 +L 0,3,4,3 +L 4,3,4,4 +A 2,4,2,0,180 +L 0,4,0,1.5 +A 1.5,1.5,1.5,180,270 +L 1.5,0,4,0 +L 1,9,1,8.5 +L 3,9,3,8.5 + +[Ё] 6 +L 4,9,0,9 +L 0,9,0,0 +L 0,0,4,0 +L 0,5,3,5 +L 1,10.25,1,10.75 +L 3,10.25,3,10.75 + +[ю] 6 +L 0,6,0,0 +A 3,4.5,1.5,0,180 +A 3,1.5,1.5,180,0 +L 1.5,4.5,1.5,1.5 +L 4.5,4.5,4.5,1.5 +L 0,3,1.5,3 + +[а] 8 +A 1.5,4.5,1.5,90,180 +A 1.5,1.5,1.5,180,270 +L 1.5,6,4,6 +L 0,4.5,0,1.5 +A 2.5,1.5,1.5,270,0 +L 1.5,0,2.5,0 +L 4,6,4,1.5 +A 5.5,1.5,1.5,180,270 + +[б] 10 +A 1.5,4.5,1.5,90,180 +A 1.5,1.5,1.5,180,270 +L 0,4.5,0,1.5 +A 2.5,1.5,1.5,270,0 +L 1.5,0,2.5,0 +A 2.5,4.5,1.5,0,90 +L 1.5,6,2.5,6 +L 4,4.5,4,1.5 +L 0,9,4,9 +L 0,9,3.542072,5.578929 + +[ц] 5 +L 0,6,0,1.5 +A 1.5,1.5,1.5,180,270 +L 4,0,4,6 +L 1.5,0,5,0 +L 5,0,5,-1.5 + +[д] 9 +A 1.5,1.5,1.5,180,270 +A 1.5,4.5,1.5,90,180 +L 0,4.5,0,1.5 +A 2.5,1.5,1.5,270,0 +L 1.5,0,2.5,0 +A 2.5,7.5,1.5,0,90 +L 4,7.5,4,1.5 +L 1.5,6,4,6 +L 0.5,9,2.5,9 + +[е] 6 +L 0,3,4,3 +L 4,3,4,4 +A 2,4,2,0,180 +L 0,4,0,1.5 +A 1.5,1.5,1.5,180,270 +L 1.5,0,4,0 + +[ф] 3 +L 3,8,3,-3 +A 3,3,3,90,270 +A 3,3,3,270,90 + +[г] 5 +A 1.835815,1.82088,4.0573,71.72448,116.90263 +A 2.731812,4.53406,1.2,292.209457,71.725433 +L 3.185425,3.42309,0.814575,2.45509 +A 1.268188,1.34412,1.19999,112.208809,251.725067 +A 2.164185,4.05732,4.05732,251.724487,296.902344 + +[х] 2 +L 0,6,4,0 +L 0,0,4,6 + +[и] 4 +L 0,6,0,1.5 +A 1.5,1.5,1.5,180,270 +L 1.5,0,4,0 +L 4,0,4,6 + +[й] 5 +L 0,6,0,1.5 +A 1.5,1.5,1.5,180,270 +L 1.5,0,4,0 +L 4,0,4,6 +L 1,7.5,3,7.5 + +[к] 3 +L 0,6,0,0 +L 0,3,4,6 +L 1.333333,4,4,0 + +[л] 3 +L 4,6,4,0 +L 2.5,6,0,0 +L 2.5,6,4,6 + +[м] 4 +L 0,6,0,0 +L 5,6,5,0 +L 0,6,2.5,2.5 +L 2.5,2.5,5,6 + +[н] 3 +L 0,6,0,0 +L 4,6,4,0 +L 0,3,4,3 + +[о] 4 +L 0,4,0,2 +A 2,2,2,180,0 +L 4,2,4,4 +A 2,4,2,0,180 + +[п] 4 +L 0,0,0,6 +L 0,6,2.5,6 +A 2.5,4.5,1.5,0,90 +L 4,4.5,4,0 + +[я] 5 +L 4,0,4,6 +A 1.5,4.5,1.5,90,270 +L 4,3,1.5,3 +L 4,6,1.5,6 +L 0,0,2.5,3 + +[р] 6 +L 0,0,2.5,0 +A 2.5,1.5,1.5,270,0 +L 4,1.5,4,4.5 +A 2.5,4.5,1.5,0,90 +L 2.5,6,0,6 +L 0,6,0,-3 + +[с] 5 +L 3,6,1.5,6 +A 1.5,4.5,1.5,90,180 +L 0,4.5,0,1.5 +A 1.5,1.5,1.5,180,270 +L 1.5,0,3,0 + +[т] 5 +L 0,0,0,6 +L 0,6,4.5,6 +A 4.5,4.5,1.5,0,90 +L 6,4.5,6,0 +L 3,6,3,0 + +[у] 6 +L 0,6,0,1.5 +A 1.5,1.5,1.5,180,270 +L 1.5,0,4,0 +A 2.5,-1.5,1.5,270,0 +L 4,6,4,-1.5 +L 0.5,-3,2.5,-3 + +[ж] 5 +L 3,6,3,0 +L 0,6,3,3 +L 3,3,6,6 +L 0,0,2.571429,3.428571 +L 6,0,3.428571,3.428571 + +[в] 11 +A 1.5,4.5,1.5,90,180 +A 1.5,1.5,1.5,180,270 +L 0,4.5,0,1.5 +A 2.5,1.5,1.5,270,0 +L 1.5,0,2.5,0 +A 2.5,4.5,1.5,0,90 +L 1.5,6,2.5,6 +L 4,4.5,4,1.5 +L 1.894427,7.552786,0.294612,5.392771 +A 1,8,1,333.434949,180 +L 0,8,0,4.5 + +[ь] 4 +L 0,6,0,0 +A 2.5,1.5,1.5,270,90 +L 0,3,2.5,3 +L 0,0,2.5,0 + +[ы] 5 +L 0,6,0,0 +L 5,6,5,0 +A 2,1.5,1.5,270,90 +L 0,3,2,3 +L 0,0,2,0 + +[з] 7 +A 2.5,4.5,1.5,270,90 +A 2.5,1.5,1.5,270,90 +L 1.5,3,2.5,3 +A 1.5,4.5,1.5,90,161.565051 +L 1.5,6,2.5,6 +A 1.5,1.5,1.5,198.434949,270 +L 1.5,0,2.5,0 + +[ш] 5 +L 0,6,0,1.5 +A 1.5,1.5,1.5,180,270 +L 6,6,6,0 +L 3,6,3,0 +L 1.5,0,6,0 + +[э] 6 +A 2.5,4.5,1.5,0,90 +A 2.5,1.5,1.5,270,0 +L 4,4.5,4,1.5 +L 0,6,2.5,6 +L 0,0,2.5,0 +L 1.5,3,4,3 + +[щ] 6 +L 0,6,0,1.5 +A 1.5,1.5,1.5,180,270 +L 6,6,6,0 +L 3,6,3,0 +L 1.5,0,7,0 +L 7,0,7,-1.5 + +[ч] 4 +L 4,6,4,0 +A 1.5,4.5,1.5,180,270 +L 0,6,0,4.5 +L 1.5,3,4,3 + +[ъ] 5 +L 1.5,6,1.5,0 +A 4,1.5,1.5,270,90 +L 1.5,3,4,3 +L 1.5,0,4,0 +L 0,6,1.5,6 + +[Ю] 10 +A 3.5,7,2,90,180 +A 4,7,2,0,90 +L 3.5,9,4,9 +A 3.5,2,2,180,270 +A 4,2,2,270,0 +L 3.5,0,4,0 +L 0,9,0,0 +L 1.5,7,1.5,2 +L 6,7,6,2 +L 0,5,1.5,5 + +[А] 3 +L 0,0,3,9 +L 3,9,6,0 +L 0.833313,2.5,5.166687,2.5 + +[Б] 7 +L 0,0,0,9 +L 0,5,2.599976,5 +A 2.599976,2.6,2.4,0,90 +L 5,2.6,5,2.4 +A 2.599976,2.4,2.4,270,0 +L 2.599976,0,0,0 +L 0,9,4,9 + +[Ц] 4 +L 0,9,0,0 +L 5,9,5,0 +L 0,0,6,0 +L 6,0,6,-1.5 + +[Д] 6 +L 5.5,9,5.5,0 +L 0,0,6,0 +L 0,0,0,-1.5 +L 6,0,6,-1.5 +L 5.5,9,3.5,9 +L 3.5,9,0.5,0 + +[Е] 4 +L 4,9,0,9 +L 0,9,0,0 +L 0,0,4,0 +L 0,5,3,5 + +[Ф] 9 +L 3,9,3,0 +A 2,4,2,180,270 +A 4,4,2,270,0 +L 2,2,4,2 +A 2,5.5,2,90,180 +L 2,7.5,4,7.5 +A 4,5.5,2,0,90 +L 6,5.5,6,4 +L 0,5.5,0,4 + +[Г] 2 +L 0,9,5,9 +L 0,9,0,0 + +[Х] 2 +L 0,9,6,0 +L 0,0,6,9 + +[И] 3 +L 0,9,0,0 +L 5,0,5,9 +L 5,9,0,0 + +[Й] 4 +L 0,9,0,0 +L 0,0,5,9 +L 5,9,5,0 +L 1.5,10,3.5,10 + +[К] 3 +L 0,9,0,0 +L 0,3.5,5,9 +L 1.671326,5.33844,5,0 + +[Л] 3 +L 5,0,5,9 +L 5,9,3.5,9 +L 3.5,9,0,0 + +[М] 4 +L 0,0,0,9 +L 0,9,3,4 +L 3,4,6,9 +L 6,9,6,0 + +[Н] 3 +L 0,9,0,0 +L 5,0,5,9 +L 0,5,5,5 + +[О] 8 +L 0,2,0,7 +A 2,7,2,90,180 +L 2,9,3,9 +A 3,7,2,0,90 +L 5,7,5,2 +A 3,2,2,270,0 +L 3,0,2,0 +A 2,2,2,180,270 + +[П] 3 +L 5,0,5,9 +L 5,9,0,9 +L 0,9,0,0 + +[Я] 7 +L 5,0,5,9 +L 5,9,2,9 +L 0,7,0,6 +L 2,4,5,4 +L 0,0,3,4 +A 2,7,2,90,180 +A 2,6,2,180,270 + +[Р] 6 +L 0,0,0,9 +L 0,9,3,9 +A 3,7,2,0,90 +L 5,7,5,6 +A 3,6,2,270,0 +L 3,4,0,4 + +[С] 5 +L 4,9,2,9 +A 2,7,2,90,180 +L 0,7,0,2 +A 2,2,2,180,270 +L 2,0,4,0 + +[Т] 2 +L 0,9,6,9 +L 3,9,3,0 + +[У] 6 +L 2,4,5,4 +L 0,9,0,6 +A 2,6,2,180,270 +A 3,2,2,270,0 +L 5,9,5,2 +L 0.5,0,3,0 + +[Ж] 5 +L 3,9,3,0 +L 0,9,3,4.5 +L 3,4.5,6,9 +L 0,0,2.7,4.95 +L 3.3,4.95,6,0 + +[В] 8 +L 0,0,0,9 +L 0,9,2.5,9 +A 2.5,7,2,270,90 +L 0,5,2.599976,5 +A 2.599976,2.6,2.4,0,90 +L 5,2.6,5,2.4 +A 2.599976,2.4,2.4,270,0 +L 2.599976,0,0,0 + +[Ь] 4 +L 0,9,0,0 +A 2.5,2.5,2.5,270,90 +L 0,5,2.5,5 +L 0,0,2.5,0 + +[Ы] 5 +L 0,9,0,0 +L 6,9,6,0 +A 2,2.5,2.5,270,90 +L 0,5,2,5 +L 0,0,2,0 + +[З] 9 +A 3,7,2,270,90 +L 3,5,2,5 +A 3,3,2,0,90 +L 5,3,5,2 +A 3,2,2,270,0 +A 2,7,2,90,135 +L 2,9,3,9 +A 2,2,2,206.565051,270 +L 2,0,3,0 + +[Ш] 4 +L 0,9,0,0 +L 0,0,6,0 +L 6,0,6,9 +L 3,9,3,0 + +[Э] 6 +L 5,7,5,2 +A 3,7,2,0,90 +A 3,2,2,270,0 +L 0,9,3,9 +L 3,0,0,0 +L 5,5,2,5 + +[Щ] 5 +L 0,9,0,0 +L 6,0,6,9 +L 3,9,3,0 +L 0,0,7,0 +L 7,0,7,-1.5 + +[Ч] 4 +L 5,9,5,0 +L 2,4,5,4 +L 0,9,0,6 +A 2,6,2,180,270 + +[Ъ] 5 +L 1.5,9,1.5,0 +A 4,2.5,2.5,270,90 +L 1.5,5,4,5 +L 1.5,0,4,0 +L 0,9,1.5,9 + +# Additional signs (diameter, degree, plus/minus) ------------------- + +[ø] 3 +A 3,4.5,3,77.471191,257.471191 +A 3,4.5,3,257.471191,77.471191 +L 2,0,4,9 + +[°] 2 +A 1.5,7.5,1.5,90,270 +A 1.5,7.5,1.5,270,90 + +[±] 3 +L -0.000122,5,3.999878,5 +L 1.999878,7,1.999878,3 +L -0.000122,1,3.999878,1 + +# Japanese Character (記号)------------------------------------------- + +[~] 20 +L 3.9998,4.946406,3.6347,5.305998 +L 3.6347,5.305998,3.2197,5.588801 +L 3.2197,5.588801,2.7673,5.786222 +L 2.7673,5.786222,2.2913,5.892263 +L 2.2913,5.892263,1.8062,5.903702 +L 1.8062,5.903702,1.3268,5.82019 +L 1.3268,5.82019,0.8674,5.644266 +L 0.8674,5.644266,0.4422,5.381276 +L 0.4422,5.381276,0.0641,5.039209 +L 0.0641,5.039209,0.0002,4.968047 +L 4,4.946399,4.365,4.586808 +L 4.365,4.586808,4.7801,4.304005 +L 4.7801,4.304005,5.2324,4.106584 +L 5.2324,4.106584,5.7084,4.000543 +L 5.7084,4.000543,6.1935,3.989104 +L 6.1935,3.989104,6.673,4.072616 +L 6.673,4.072616,7.1323,4.248539 +L 7.1323,4.248539,7.5575,4.51153 +L 7.5575,4.51153,7.9357,4.853597 +L 7.9357,4.853597,7.9995,4.924759 + +[∥] 2 +L 2.5167,0.000005,2.5167,9.000004 +L 5.4829,0.000005,5.4829,9.000004 + +[|] 1 +L 3.9999,0.000005,3.9999,9.000004 + +[…] 3 +L 0.5001,4.500002,1.5001,4.500002 +L 3.5,4.500002,4.4999,4.500002 +L 7.5001,4.500002,6.5002,4.500002 + +[¨] 2 +L 1.4999,4.500002,2.4999,4.500002 +L 6.5,4.500002,5.5001,4.500002 + +[‘] 1 +L 6.8141,8.237235,7.4071,9.000004 + +[’] 1 +L 0.593,8.237235,1.1856,9.000004 + +[“] 2 +L 6.8139,8.237235,7.4069,9.000004 +L 4.4834,8.237235,5.0763,9.000004 + +[”] 2 +L 0.5928,8.237235,1.1857,9.000004 +L 2.9233,8.237235,3.5163,9.000004 + +[(] 1 +A 11.2814,4.499999,5.569344,126.09962,233.90036 + +[)] 1 +A -3.2815,4.499999,5.569344,306.09963,53.900375 + +[〔] 3 +L 7.9998,0.000005,5.9663,1.174137 +L 5.9663,1.174137,5.9663,7.825867 +L 7.9998,9.000004,5.9663,7.825867 + +[〕] 3 +L -0.0003,0.000005,2.0336,1.174137 +L 2.0336,1.174137,2.0336,7.825867 +L -0.0003,9.000004,2.0336,7.825867 + +[[] 3 +L 5.6263,0.000005,5.6263,9.000004 +L 5.6263,9.000004,7.9996,9.000004 +L 7.9996,0.000005,5.6263,0.000005 + +[]] 3 +L 2.3731,0.000005,2.3731,9.000004 +L 2.3731,9.000004,-0.0001,9.000004 +L -0.0001,0.000005,2.3731,0.000005 + +[{] 6 +L 7.9997,0.000005,7.7034,0.170854 +L 7.7034,0.170854,7.4071,0.325526 +L 7.4071,0.325526,7.1101,0.472136 +L 7.1101,0.472136,7.1101,8.612326 +L 7.1101,8.612326,7.9136,8.964601 +L 7.9136,8.964815,7.9997,9.000004 + +[}] 6 +L 0,0.000005,0.2963,0.170854 +L 0.2963,0.170854,0.5927,0.325526 +L 0.5927,0.325526,0.8897,0.472136 +L 0.8897,0.472136,0.8897,8.612326 +L 0.8897,8.612326,0.0862,8.964601 +L 0.0862,8.964815,0,9.000004 + +[〈] 2 +L 7.9999,9.000124,5.4018,4.500065 +L 7.9999,0.000005,5.4018,4.500065 + +[〉] 2 +L -0.0002,9.000124,2.598,4.500065 +L -0.0002,0.000005,2.598,4.500065 + +[《] 4 +L 8,9.000124,5.4019,4.500065 +L 8,0.000005,5.4019,4.500065 +L 6.2201,9.000124,3.622,4.500065 +L 6.2201,0.000005,3.622,4.500065 + +[》] 4 +L 0,9.000124,2.5981,4.500065 +L 0,0.000005,2.5981,4.500065 +L 1.7799,9.000124,4.378,4.500065 +L 1.7799,0.000005,4.378,4.500065 + +[「] 2 +L 7.9998,9.000047,5.6266,9.000047 +L 5.6266,9.000047,5.6266,3.000041 + +[」] 2 +L 0.0001,0.000005,2.3734,0.000005 +L 2.3734,0.000005,2.3734,6 + +[『] 6 +L 4.4828,9.000004,8,9.000004 +L 8,9.000004,8,7.98282 +L 8,7.98282,5.6698,7.98282 +L 5.6698,7.98282,5.6698,1.40844 +L 5.6698,1.40844,4.4828,1.40844 +L 4.4828,1.40844,4.4828,9.000004 + +[』] 6 +L 3.5171,0.000005,-0.0001,0.000005 +L -0.0001,0.000005,-0.0001,1.017183 +L -0.0001,1.017183,2.3301,1.017183 +L 2.3301,1.017183,2.3301,7.591569 +L 2.3301,7.591569,3.5171,7.591569 +L 3.5171,7.591569,3.5171,0.000005 + +[【] 4 +L 5.6262,0.000005,5.6262,9.000004 +L 5.6262,9.000004,7.9994,9.000004 +L 7.9994,0.000005,5.6262,0.000005 +A 11.2812,4.499999,5.569344,126.09962,233.90036 + +[】] 4 +L 2.3733,0.000005,2.3733,9.000004 +L 2.3733,9.000004,0.0001,9.000004 +L 0.0001,0.000005,2.3733,0.000005 +A -3.2814,4.499999,5.569344,306.09963,53.900375 + +[+] 2 +L 0.4619,4.499999,7.5379,4.499999 +L 3.9998,0.961965,3.9998,8.038039 + +[-] 1 +L 0.4618,4.499999,7.5382,4.499999 + +[±] 3 +L 0.4617,4.499999,7.5381,4.499999 +L 3.9999,0.961965,3.9999,8.038039 +L 0.9619,0.000005,8.0379,0.000005 + +[×] 2 +L 1.4984,1.998231,6.5016,7.001773 +L 6.5016,1.998231,1.4984,7.001773 + +[÷] 3 +L 0.4621,4.499999,7.5381,4.499999 +L 4,0.961965,4,1.961969 +L 4,7.03804,4,8.038039 + +[=] 2 +L 8.0382,3.5,0.0001,3.5 +L 8.0382,5.500004,0.0001,5.500004 + +[≠] 3 +L 3.0842,1.082526,4.9157,7.917483 +L 0,3.5,7.9999,3.5 +L 7.9999,5.500004,0,5.500004 + +[<] 2 +L 7.9998,9.000124,-0.0001,4.500065 +L 7.9998,0.000005,-0.0001,4.500065 + +[>] 2 +L -0.0002,9.000124,8.0001,4.499999 +L -0.0002,0.000005,8.0001,4.499999 + +[≦] 4 +L 7.538,0.000005,0.462,0.000005 +L 7.538,2.000009,0.462,2.000009 +L 7.3863,8.999993,0.462,5.537967 +L 7.538,2.000009,0.462,5.537967 + +[≧] 4 +L 0.4622,0.000005,7.5382,0.000005 +L 0.4622,2.000009,7.5382,2.000009 +L 0.6139,8.999993,7.5382,5.537967 +L 0.4622,2.000009,7.5382,5.537967 + +[∞] 72 +L 4,4.500004,3.9696,4.812566 +L 3.9696,4.812566,3.8794,5.115632 +L 3.8794,5.115632,3.7321,5.399991 +L 3.7321,5.399991,3.5321,5.657005 +L 3.5321,5.657005,3.2856,5.878864 +L 3.2856,5.878864,3,6.058827 +L 3,6.058827,2.6841,6.191426 +L 2.6841,6.191426,2.3473,6.272632 +L 2.3473,6.272632,2.0001,6.299977 +L 2.0001,6.299977,1.6528,6.272632 +L 1.6528,6.272632,1.316,6.191426 +L 1.316,6.191426,1.0001,6.058827 +L 1.0001,6.058827,0.7145,5.878864 +L 0.7145,5.878864,0.468,5.657005 +L 0.468,5.657005,0.268,5.399991 +L 0.268,5.399991,0.1207,5.115632 +L 0.1207,5.115632,0.0305,4.812566 +L 0.0305,4.812566,0.0001,4.500004 +L 0.0001,4.500004,0.0305,4.187442 +L 0.0305,4.187442,0.1207,3.884378 +L 0.1207,3.884378,0.268,3.600018 +L 0.268,3.600018,0.468,3.343004 +L 0.468,3.343004,0.7145,3.121145 +L 0.7145,3.121145,1.0001,2.941182 +L 1.0001,2.941182,1.316,2.808583 +L 1.316,2.808583,1.6528,2.727377 +L 1.6528,2.727377,2.0001,2.700032 +L 2.0001,2.700032,2.3473,2.727377 +L 2.3473,2.727377,2.6841,2.808583 +L 2.6841,2.808583,3,2.941182 +L 3,2.941182,3.2856,3.121145 +L 3.2856,3.121145,3.5321,3.343004 +L 3.5321,3.343004,3.7321,3.600018 +L 3.7321,3.600018,3.8794,3.884378 +L 3.8794,3.884378,3.9696,4.187442 +L 3.9696,4.187442,4,4.500004 +L 3.9999,4.500004,4.0303,4.187442 +L 4.0303,4.187442,4.1205,3.884378 +L 4.1205,3.884378,4.2678,3.600018 +L 4.2678,3.600018,4.4678,3.343004 +L 4.4678,3.343004,4.7143,3.121145 +L 4.7143,3.121145,4.9999,2.941182 +L 4.9999,2.941182,5.3158,2.808583 +L 5.3158,2.808583,5.6526,2.727377 +L 5.6526,2.727377,5.9999,2.700032 +L 5.9999,2.700032,6.3471,2.727377 +L 6.3471,2.727377,6.6839,2.808583 +L 6.6839,2.808583,6.9998,2.941182 +L 6.9998,2.941182,7.2854,3.121145 +L 7.2854,3.121145,7.5319,3.343004 +L 7.5319,3.343004,7.7319,3.600018 +L 7.7319,3.600018,7.8792,3.884378 +L 7.8792,3.884378,7.9694,4.187442 +L 7.9694,4.187442,7.9998,4.500004 +L 7.9998,4.500004,7.9694,4.812566 +L 7.9694,4.812566,7.8792,5.115632 +L 7.8792,5.115632,7.7319,5.399991 +L 7.7319,5.399991,7.5319,5.657005 +L 7.5319,5.657005,7.2854,5.878864 +L 7.2854,5.878864,6.9998,6.058827 +L 6.9998,6.058827,6.6839,6.191426 +L 6.6839,6.191426,6.3471,6.272632 +L 6.3471,6.272632,5.9999,6.299977 +L 5.9999,6.299977,5.6526,6.272632 +L 5.6526,6.272632,5.3158,6.191426 +L 5.3158,6.191426,4.9999,6.058827 +L 4.9999,6.058827,4.7143,5.878864 +L 4.7143,5.878864,4.4678,5.657005 +L 4.4678,5.657005,4.2678,5.399991 +L 4.2678,5.399991,4.1205,5.115632 +L 4.1205,5.115632,4.0303,4.812566 +L 4.0303,4.812566,3.9999,4.500004 + +[♂] 5 +L 8,8.500007,4.0002,8.500007 +L 8,8.500007,8,4.500048 +L 8,8.500007,4.5525,5.052445 +A 2.6672,3.16667,2.666667,0,180 +A 2.6672,3.16667,2.666667,180,360 + +[♀] 4 +L 4.0001,0.000005,4.0001,2.999943 +L 6.2501,1.499974,1.7501,1.499974 +A 4.0001,6,3,0,180 +A 4.0001,6,3,180,360 + +[°] 2 +A 1.5,7.500002,1.5,0,180 +A 1.5,7.500002,1.5,180,360 + +[′] 1 +L 0.5927,8.237235,1.1857,9.000004 + +[″] 2 +L 0.5926,8.237235,1.1859,9.000004 +L 2.9235,8.237235,3.5165,9.000004 + +[℃] 5 +L 1.9998,6,1.9998,2.999998 +A 0.9995,7.999999,1,0,180 +A 0.9995,7.999999,1,180,360 +A 4.9997,6,2.99992,0,180 +A 4.9997,2.999998,2.99992,180,0 + +[¥] 5 +L 3.9996,5.000094,7.8761,8.876854 +L -0.0002,9.000004,3.9996,5.000094 +L 3.9996,5.000094,3.9996,0.000005 +L 1.6691,3.014916,6.3722,3.014916 +L 6.3722,1.525602,1.6691,1.525602 + +[$] 40 +L 1.746,5.087699,6.253,3.91231 +L 3.9998,9.000004,3.9998,0.000005 +L 7.9999,7.592684,6.2858,7.945376 +L 6.2858,7.945376,4.478,8.140556 +L 4.478,8.140556,3.1999,8.180091 +L 3.1999,8.181292,2.6442,8.15644 +L 2.6442,8.15644,2.1054,8.082639 +L 2.1054,8.082639,1.5999,7.962132 +L 1.5999,7.962132,1.143,7.798579 +L 1.143,7.798579,0.7485,7.59695 +L 0.7485,7.59695,0.4286,7.363373 +L 0.4286,7.363373,0.1929,7.104943 +L 0.1929,7.104943,0.0485,6.829513 +L 0.0485,6.829513,-0.0001,6.545453 +L -0.0001,6.545453,0.0485,6.261392 +L 0.0485,6.261392,0.1929,5.985962 +L 0.1929,5.985962,0.4286,5.727533 +L 0.4286,5.727533,0.7485,5.493955 +L 0.7485,5.493955,1.143,5.292326 +L 1.143,5.292326,1.5999,5.128774 +L 1.5999,5.128774,1.7462,5.088152 +L 4.7998,0.818711,5.3555,0.843563 +L 5.3555,0.843563,5.8943,0.917364 +L 5.8943,0.917364,6.3998,1.037872 +L 6.3998,1.037872,6.8567,1.201425 +L 6.8567,1.201425,7.2512,1.403053 +L 7.2512,1.403053,7.5711,1.636631 +L 7.5711,1.636631,7.8068,1.895061 +L 7.8068,1.895061,7.9512,2.17049 +L 7.9512,2.17049,7.9998,2.454551 +L 7.9998,2.454551,7.9512,2.738612 +L 7.9512,2.738612,7.8068,3.014041 +L 7.8068,3.014041,7.5711,3.272471 +L 7.5711,3.272471,7.2512,3.506048 +L 7.2512,3.506048,6.8567,3.707677 +L 6.8567,3.707677,6.3998,3.87123 +L 6.3998,3.87123,6.2535,3.911851 +L -0.0002,1.407325,1.7139,1.054632 +L 1.7139,1.054632,3.5217,0.859453 +L 3.5217,0.859453,4.7998,0.819918 + +[¢] 8 +L 4.0001,9.000004,4.0001,0.000005 +L 4.7496,7.500002,3.2499,7.500002 +L 1.7501,6,1.7501,3.000003 +L 3.2499,1.499996,4.7496,1.499996 +A 3.2499,6,1.5,90,180 +A 3.2499,3.000003,1.5,180,270 +A 4.7496,6,1.5,0,90 +A 4.7496,3.000003,1.5,270,0 + +[£] 8 +L 2.6263,3.421102,1.9293,5.79572 +L 1.8642,0.449534,1.7052,0.29118 +L 1.369,1.929408,5.9607,0.105938 +L -0.0005,4.499955,4,4.499955 +A 4.3278,6.500003,2.5,0,196.36247 +A -0.252,2.575938,3,314.8619,16.363143 +A 0.9998,1.000005,1,68.344573,314.86111 +A 6.5144,1.500007,1.5,248.34396,0 + +[%] 9 +L -0.0003,7.500002,-0.0003,6.500003 +L 2.9996,7.500002,2.9996,6.500003 +L 4.9995,2.500001,4.9995,1.500007 +L 7.9997,2.500001,7.9997,1.500007 +L -0.0003,0.000005,7.9997,9.000004 +A 1.4998,7.500002,1.50003,0,180 +A 6.4999,1.500007,1.50003,180,0 +A 1.4998,6.500003,1.50003,180,0 +A 6.4999,2.500001,1.50003,0,180 + +[#] 4 +L 2.2853,0,2.2853,9.000004 +L 5.7139,9.000004,5.7139,0 +L 0,2.500006,7.9996,2.500006 +L 7.9996,6.500008,0,6.500008 + +[&] 47 +L 7.9998,3.214988,4.5678,0.597644 +L 0.7655,3.402364,4.759,6.448232 +L 1.59,6.764285,6.6665,0 +L 0.7651,3.402344,0.4693,3.133427 +L 0.4693,3.133427,0.2402,2.830072 +L 0.2402,2.830072,0.0849,2.501496 +L 0.0849,2.501496,0.008,2.157682 +L 0.008,2.157682,0.0119,1.809078 +L 0.0119,1.809078,0.0964,1.466274 +L 0.0964,1.466274,0.259,1.139688 +L 0.259,1.139688,0.4948,0.839241 +L 0.4948,0.839241,0.7965,0.574064 +L 0.7965,0.574064,1.1551,0.352214 +L 1.1551,0.352214,1.5596,0.180431 +L 1.5596,0.180431,1.9977,0.063934 +L 1.9977,0.063934,2.4561,0.006264 +L 2.4561,0.006264,2.9209,0.009173 +L 2.9209,0.009173,3.3779,0.072572 +L 3.3779,0.072572,3.8134,0.194535 +L 3.8134,0.194535,4.214,0.371357 +L 4.214,0.371357,4.5676,0.597664 +L 4.7591,6.448251,4.981,6.649938 +L 4.981,6.649938,5.1528,6.877455 +L 5.1528,6.877455,5.2692,7.123888 +L 5.2692,7.123888,5.3269,7.381748 +L 5.3269,7.381748,5.324,7.643202 +L 5.324,7.643202,5.2606,7.900304 +L 5.2606,7.900304,5.1386,8.145243 +L 5.1386,8.145243,4.9618,8.370578 +L 4.9618,8.370578,4.7355,8.56946 +L 4.7355,8.56946,4.4666,8.735847 +L 4.4666,8.735847,4.1632,8.864684 +L 4.1632,8.864684,3.8347,8.952055 +L 3.8347,8.952055,3.4908,8.995307 +L 3.4908,8.995307,3.1422,8.993125 +L 3.1422,8.993125,2.7994,8.945574 +L 2.7994,8.945574,2.4729,8.854101 +L 2.4729,8.854101,2.1724,8.721484 +L 2.1724,8.721484,1.9072,8.551754 +L 1.9072,8.551754,1.6854,8.350066 +L 1.6854,8.350066,1.5136,8.122549 +L 1.5136,8.122549,1.3971,7.876116 +L 1.3971,7.876116,1.3394,7.618256 +L 1.3394,7.618256,1.3423,7.356802 +L 1.3423,7.356802,1.4057,7.0997 +L 1.4057,7.0997,1.5277,6.85476 +L 1.5277,6.85476,1.5903,6.764291 + +[*] 3 +L 3.9996,1.680996,3.9996,6.693781 +L 1.6691,6.221574,6.3725,2.153269 +L 1.627,2.153269,6.3305,6.221574 + +[@] 92 +L 7.1111,1.00001,5.3935,0.281865 +L 2.2027,4.392255,2.3092,4.990298 +L 3.8755,2.000009,3.9463,2.000009 +L 5.619,3.607766,6.2221,7.000005 +L 4.4884,7.000005,4.5956,7.000005 +L 7.578,2.490152,7.8338,3.219833 +L 7.8338,3.219833,7.9732,3.988411 +L 7.9732,3.988411,7.9917,4.772533 +L 7.9917,4.772533,7.889,5.548376 +L 7.889,5.548376,7.6681,6.292364 +L 7.6681,6.292364,7.3358,6.981892 +L 7.3358,6.981892,6.902,7.59601 +L 6.902,7.59601,6.3801,8.116057 +L 6.3801,8.116057,5.7859,8.526233 +L 5.7859,8.526233,5.1373,8.814073 +L 5.1373,8.814073,4.4542,8.970834 +L 4.4542,8.970834,3.7573,8.99175 +L 3.7573,8.99175,3.0677,8.876187 +L 3.0677,8.876187,2.4064,8.627656 +L 2.4064,8.627656,1.7936,8.253709 +L 1.7936,8.253709,1.2478,7.765708 +L 1.2478,7.765708,0.7855,7.17848 +L 0.7855,7.17848,0.421,6.509868 +L 0.421,6.509868,0.1652,5.780187 +L 0.1652,5.780187,0.0258,5.011609 +L 0.0258,5.011609,0.0072,4.227487 +L 0.0072,4.227487,0.1099,3.451644 +L 0.1099,3.451644,0.3308,2.707656 +L 0.3308,2.707656,0.6632,2.018128 +L 0.6632,2.018128,1.0969,1.40401 +L 1.0969,1.40401,1.6189,0.883963 +L 1.6189,0.883963,2.2131,0.473787 +L 2.2131,0.473787,2.8617,0.185946 +L 2.8617,0.185946,3.5448,0.029186 +L 3.5448,0.029186,4.2417,0.00827 +L 4.2417,0.00827,4.9313,0.123833 +L 4.9313,0.123833,5.3927,0.281866 +L 5.5427,3.178354,5.5222,2.970447 +L 5.5222,2.970447,5.5342,2.761707 +L 5.5342,2.761707,5.5782,2.558476 +L 5.5782,2.558476,5.6529,2.366929 +L 5.6529,2.366929,5.756,2.192886 +L 5.756,2.192886,5.8844,2.041636 +L 5.8844,2.041636,6.0342,1.917773 +L 6.0342,1.917773,6.2009,1.825062 +L 6.2009,1.825062,6.3793,1.76632 +L 6.3793,1.76632,6.5641,1.74333 +L 6.5641,1.74333,6.7497,1.756793 +L 6.7497,1.756793,6.9303,1.806299 +L 6.9303,1.806299,7.1005,1.890343 +L 7.1005,1.890343,7.2552,2.006372 +L 7.2552,2.006372,7.3897,2.150861 +L 7.3897,2.150861,7.4997,2.319418 +L 7.4997,2.319418,7.5766,2.491168 +L 2.2032,4.392244,2.1691,4.045733 +L 2.1691,4.045733,2.1891,3.697833 +L 2.1891,3.697833,2.2624,3.359114 +L 2.2624,3.359114,2.3869,3.039868 +L 2.3869,3.039868,2.5588,2.749795 +L 2.5588,2.749795,2.7728,2.497709 +L 2.7728,2.497709,3.0225,2.29127 +L 3.0225,2.29127,3.3002,2.136749 +L 3.3002,2.136749,3.5976,2.038843 +L 3.5976,2.038843,3.9056,2.000525 +L 3.9056,2.000525,3.9463,2.000002 +L 5.9029,5.205833,5.9285,5.465716 +L 5.9285,5.465716,5.9135,5.726641 +L 5.9135,5.726641,5.8585,5.98068 +L 5.8585,5.98068,5.7651,6.220114 +L 5.7651,6.220114,5.6362,6.437668 +L 5.6362,6.437668,5.4757,6.626732 +L 5.4757,6.626732,5.2884,6.781561 +L 5.2884,6.781561,5.0801,6.897451 +L 5.0801,6.897451,4.8571,6.97088 +L 4.8571,6.97088,4.6261,6.999617 +L 4.6261,6.999617,4.5956,7.000009 +L 4.4884,7.00001,4.1026,6.96203 +L 4.1026,6.96203,3.7285,6.849242 +L 3.7285,6.849242,3.3774,6.665074 +L 3.3774,6.665074,3.0602,6.415121 +L 3.0602,6.415121,2.7863,6.106979 +L 2.7863,6.106979,2.5641,5.75001 +L 2.5641,5.75001,2.4004,5.35506 +L 2.4004,5.35506,2.3096,4.990299 +L 3.8755,2.000002,4.1842,2.030387 +L 4.1842,2.030387,4.4835,2.120617 +L 4.4835,2.120617,4.7643,2.267951 +L 4.7643,2.267951,5.0181,2.467913 +L 5.0181,2.467913,5.2372,2.714427 +L 5.2372,2.714427,5.415,3.000002 +L 5.415,3.000002,5.5459,3.315962 +L 5.5459,3.315962,5.6186,3.607762 + +[§] 34 +L 2.8135,3.423094,5.1853,2.455093 +L 2.8135,6.548545,5.1853,5.580549 +A 3.2674,4.53406,1.200147,108.27456,247.79054 +L 5.1077,0.204851,5.2999,0.28749 +L 5.2999,0.28749,5.4748,0.402233 +L 5.4748,0.402233,5.6271,0.545595 +L 5.6271,0.545595,5.7522,0.71322 +L 5.7522,0.71322,5.8463,0.900014 +L 5.8463,0.900014,5.9065,1.100302 +L 5.9065,1.100302,5.931,1.307998 +L 5.931,1.307998,5.919,1.516791 +L 5.919,1.516791,5.871,1.720338 +L 5.871,1.720338,5.7883,1.912453 +L 5.7883,1.912453,5.6736,2.0873 +L 5.6736,2.0873,5.5302,2.239565 +L 5.5302,2.239565,5.3625,2.364623 +L 5.3625,2.364623,5.185,2.454884 +A 3.8348,4.057327,4.057817,243.09764,288.27551 +A 4.1633,4.946343,4.057797,63.097366,108.27551 +A 3.2674,7.659517,1.200147,108.27456,247.79054 +L 5.1077,3.330308,5.2999,3.412946 +L 5.2999,3.412946,5.4748,3.52769 +L 5.4748,3.52769,5.6271,3.671052 +L 5.6271,3.671052,5.7522,3.838676 +L 5.7522,3.838676,5.8463,4.02547 +L 5.8463,4.02547,5.9065,4.225758 +L 5.9065,4.225758,5.931,4.433454 +L 5.931,4.433454,5.919,4.642247 +L 5.919,4.642247,5.871,4.845794 +L 5.871,4.845794,5.7883,5.037909 +L 5.7883,5.037909,5.6736,5.212756 +L 5.6736,5.212756,5.5302,5.365022 +L 5.5302,5.365022,5.3625,5.490079 +L 5.3625,5.490079,5.185,5.58034 + +[☆] 10 +L 3.9996,8.500001,3.0554,5.444271 +L 2.4719,3.555727,1.5276,0.500002 +L 1.5276,0.500002,3.9996,2.388497 +L 5.5278,3.555694,7.9998,5.444271 +L 7.9998,5.444271,4.9439,5.444271 +L 3.0554,5.444271,-0.0005,5.444271 +L -0.0005,5.444271,2.4719,3.555705 +L 3.9996,2.388557,6.472,0.500002 +L 6.472,0.500002,5.5278,3.555683 +L 4.9439,5.444282,3.9996,8.500001 + +[★] 30 +L 3.9999,8.500001,3.0556,5.444271 +L 2.4721,3.555727,1.5279,0.500002 +L 1.5279,0.500002,3.9999,2.388497 +L 5.5277,3.555694,8,5.444271 +L 8,5.444271,4.9441,5.444271 +L 3.0556,5.444271,0.0001,5.444271 +L 0.0001,5.444271,2.4721,3.555705 +L 3.9999,2.388557,6.4719,0.500002 +L 6.4719,0.500002,5.5277,3.555683 +L 4.9441,5.444282,3.9999,8.500001 +L 3.9999,6.80633,3.4248,4.944274 +L 3.4248,4.944274,1.4781,4.944274 +L 1.4781,4.944274,3.0528,3.741346 +L 3.0528,3.741346,2.4676,1.847067 +L 2.4676,1.847067,3.9999,3.017783 +L 3.9999,3.017783,5.5326,1.847034 +L 5.5326,1.847034,4.947,3.741324 +L 4.947,3.741324,6.5217,4.944274 +L 6.5217,4.944274,4.5753,4.944274 +L 4.5753,4.944274,3.9999,6.80633 +L 3.9999,5.112769,3.7932,4.444277 +L 3.7932,4.444277,2.9562,4.444277 +L 2.9562,4.444277,3.6335,3.926702 +L 3.6335,3.926702,3.4073,3.193935 +L 3.4073,3.193935,4.0006,3.646539 +L 4.0006,3.646539,4.5932,3.193973 +L 4.5932,3.193973,4.3662,3.926522 +L 4.3662,3.926522,5.0436,4.444277 +L 5.0436,4.444277,4.2065,4.444277 +L 4.2065,4.444277,3.9999,5.112769 + +[○] 2 +A 3.9998,4.499999,4,0,180 +A 3.9998,4.499999,4,180,360 + +[●] 8 +A 3.9997,4.499999,4,0,180 +A 3.9997,4.499999,4,180,360 +A 3.9997,4.499999,3,0,180 +A 3.9997,4.499999,3,180,360 +A 3.9997,4.499999,2,0,180 +A 3.9997,4.499999,2,180,360 +A 3.9997,4.499999,1,0,180 +A 3.9997,4.499999,1,180,360 + +[◎] 4 +A 3.9996,4.499999,4,0,180 +A 3.9996,4.499999,4,180,360 +A 3.9996,4.499999,2,0,180 +A 3.9996,4.499999,2,180,360 + +[◇] 4 +L -0.0003,4.500004,3.9998,0.499975 +L 3.9998,0.499926,8,4.500004 +L 8,4.500004,3.9998,8.500034 +L 3.9998,8.500083,-0.0003,4.500004 + +[◆] 12 +L -0.0004,4.500004,4.0001,0.499975 +L 4.0001,0.499926,7.9999,4.500004 +L 7.9999,4.500004,4.0001,8.500034 +L 4.0001,8.500083,-0.0004,4.500004 +L 1.4139,4.50001,4.0001,1.914128 +L 4.0001,1.914128,6.5856,4.499999 +L 6.5856,4.499999,4.0001,7.085881 +L 4.0001,7.085881,1.4139,4.50001 +L 2.8282,4.499999,4.0001,3.328308 +L 4.0001,3.328308,5.1713,4.499999 +L 5.1713,4.499999,4.0001,5.671684 +L 4.0001,5.671684,2.8282,4.499999 + +[□] 4 +L 0.0002,0.500002,0.0002,8.500001 +L 0.0002,8.500001,7.9998,8.500001 +L 7.9998,8.500001,7.9998,0.500002 +L 7.9998,0.500002,0.0002,0.500002 + +[■] 16 +L 0.0001,0.500002,0.0001,8.500001 +L 0.0001,8.500001,7.9997,8.500001 +L 7.9997,8.500001,7.9997,0.500002 +L 7.9997,0.500002,0.0001,0.500002 +L 1,1.500007,1,7.500002 +L 1,7.500002,7.0001,7.500002 +L 7.0001,7.500002,7.0001,1.500007 +L 7.0001,1.500007,1,1.500007 +L 2,2.500001,2,6.499997 +L 2,6.499997,5.9998,6.499997 +L 5.9998,6.499997,5.9998,2.500001 +L 5.9998,2.500001,2,2.500001 +L 3.0003,3.500005,3.0003,5.500004 +L 3.0003,5.500004,4.9998,5.500004 +L 4.9998,5.500004,4.9998,3.500005 +L 4.9998,3.500005,3.0003,3.500005 + +[△] 3 +L 0,1.035899,7.9999,1.035899 +L 7.9999,1.035899,3.9998,7.964099 +L 3.9998,7.964099,0,1.035899 + +[▲] 9 +L -0.0001,1.035899,7.9998,1.035899 +L 7.9998,1.035899,3.9997,7.964099 +L 3.9997,7.964099,-0.0001,1.035899 +L 1.7322,2.035904,6.2679,2.035904 +L 6.2679,2.035904,3.9997,5.963991 +L 3.9997,5.963991,1.7322,2.035904 +L 3.4638,3.035898,4.5356,3.035898 +L 4.5356,3.035898,3.9997,3.964091 +L 3.9997,3.964091,3.4638,3.035898 + +[▽] 3 +L -0.0002,7.964104,8.0001,7.964104 +L 8.0001,7.964104,3.9999,1.035899 +L 3.9999,1.035899,-0.0002,7.964104 + +[▼] 9 +L -0.0003,7.964104,8,7.964104 +L 8,7.964104,3.9998,1.035899 +L 3.9998,1.035899,-0.0003,7.964104 +L 1.732,6.964105,6.2677,6.964105 +L 6.2677,6.964105,3.9998,3.036007 +L 3.9998,3.036007,1.732,6.964105 +L 3.4643,5.9641,4.5354,5.9641 +L 4.5354,5.9641,3.9998,5.035912 +L 3.9998,5.035912,3.4643,5.9641 + +[※] 6 +L 3.9997,0.961965,3.9997,1.961969 +L 3.9997,7.03804,3.9997,8.038039 +L 1.4976,1.998231,6.5019,7.001773 +L 7.5379,4.499725,6.5383,4.499725 +L 1.4618,4.499725,0.4622,4.499725 +L 6.5019,1.998231,1.4976,7.001773 + +[〒] 3 +L 4.0003,5.399998,4.0003,0.000005 +L -0.0002,0.000005,8.0001,0.000005 +L -0.0002,9.000004,8.0001,9.000004 + +[→] 3 +L -0.0003,4.499999,7.9993,4.499999 +L 7.9993,4.499999,6.5003,6 +L 7.9993,4.499999,6.5003,2.999998 + +[←] 3 +L 7.9999,4.499999,0.0003,4.499999 +L 0.0003,4.499999,1.4994,6 +L 0.0003,4.499999,1.4994,2.999998 + +[↑] 3 +L 3.9993,0.499926,3.9993,8.500083 +L 3.9993,8.500083,5.4998,6.999912 +L 3.9993,8.500083,2.5003,6.999912 + +[↓] 3 +L 3.9999,8.500083,3.9999,0.499926 +L 3.9999,0.499926,2.4995,2.000091 +L 3.9999,0.499926,5.5004,2.000091 + +[〓] 4 +L 1.3513,6.261732,6.6484,6.261732 +L 1.3513,2.738266,6.6484,2.738266 +L 1.3513,5.761735,6.6484,5.761735 +L 1.3513,3.238268,6.6484,3.238268 + +[∈] 4 +L 2.9994,7.500002,7.9995,7.500002 +L 2.9994,1.499996,7.9995,1.499996 +L 7.9995,4.499999,-0.0001,4.499999 +A 2.9994,4.499999,3.000003,90,270 + +[∋] 4 +L 4.9992,7.500002,0.0005,7.500002 +L 4.9992,1.499996,0.0005,1.499996 +L 0.0005,4.499999,8.0001,4.499999 +A 4.9992,4.499999,3.000003,270,90 + +[⊆] 4 +L -0.0003,1.499996,7.9993,1.499996 +L 2.2497,7.500002,7.9993,7.500002 +L 2.2497,3.000003,7.9993,3.000003 +A 2.2497,5.250005,2.250002,90,270 + +[⊇] 4 +L 7.9999,1.499996,0.0003,1.499996 +L 5.7499,7.500002,0.0003,7.500002 +L 5.7499,3.000003,0.0003,3.000003 +A 5.7499,5.250005,2.250002,270,90 + +[⊂] 3 +L 3.0004,7.500002,7.9991,7.500002 +L 3.0004,1.499996,7.9991,1.499996 +A 3.0004,4.499999,3.000003,90,270 + +[⊃] 3 +L 5.0002,7.500002,0.0001,7.500002 +L 5.0002,1.499996,0.0001,1.499996 +A 5.0002,4.499999,3.000003,270,90 + +[∪] 3 +L 7,3.499983,7,8.499799 +L 0.9996,3.499983,0.9996,8.499799 +A 3.9991,3.499983,3.000003,180,0 + +[∩] 3 +L 7.0006,5.500026,7.0006,0.500199 +L 1.0002,5.500026,1.0002,0.500199 +A 3.9997,5.500026,3.000003,0,180 + +[∧] 2 +L 8.0001,1.035899,4.0003,7.964099 +L 4.0003,7.964099,-0.0009,1.035899 + +[∨] 2 +L 7.9993,7.964099,3.9995,1.035899 +L 3.9995,1.035899,-0.0003,7.964099 + +[¬] 2 +L 0.0003,7.500002,7.9999,7.500002 +L 7.9999,7.500002,7.9999,4.499999 + +[⇒] 4 +L 8.0005,4.499999,5.7491,2.250002 +L 8.0005,4.499999,5.7491,6.750007 +L -0.0005,5.250005,7.2496,5.250005 +L -0.0005,3.750004,7.2496,3.750004 + +[⇔] 6 +L 8.0011,4.499999,5.7497,2.250002 +L 8.0011,4.499999,5.7497,6.750007 +L 0.0001,4.499999,2.2501,2.250002 +L 0.0001,4.499999,2.2501,6.750007 +L 0.751,5.250005,7.2502,5.250005 +L 0.751,3.750004,7.2502,3.750004 + +[∀] 3 +L -0.0007,9.000009,3.9991,0 +L 3.9991,0,7.9989,9.000009 +L 1.1117,6.500003,6.8879,6.500003 + +[∃] 4 +L -0.0001,9.000004,7.9995,9.000004 +L 7.9995,9.000004,7.9995,-0.000005 +L 7.9995,-0.000005,-0.0001,-0.000005 +L 7.9995,4.99999,2.0005,4.99999 + +[∠] 2 +L 0.0005,0.500199,8.0001,0.500199 +L 0.0005,0.500199,8.0001,8.500083 + +[⊥] 2 +L 0,0,8,0 +L 3.9995,8.500083,3.9995,0.500199 + +[⌒] 1 +A 4.0001,2.916836,6.083169,48.886306,131.1117 + +[∂] 6 +L 1.018,3.334985,1.5182,4.200972 +L 4.2501,4.933143,5.9817,3.933072 +L 4.4826,1.335063,6.982,5.664996 +A 2.7496,2.335068,2,150,330 +A 3.2498,3.201115,2,60,150 +A 5.249,6.664996,2,330.00013,150.00013 + +[∇] 5 +L 0.0001,1.035899,7.9997,1.035899 +L 7.9997,1.035899,3.9999,7.964099 +L 3.9999,7.964099,0.0001,1.035899 +L 4.2885,7.464189,0.8659,1.535896 +L 0.8659,1.535896,7.7111,1.535896 + +[≡] 3 +L 8.0003,4.499999,-0.0007,4.499999 +L 8.0003,6.500008,-0.0007,6.500008 +L 8.0003,2.500001,-0.0007,2.500001 + +[≒] 4 +L 0.4608,3.5,7.5372,3.5 +L 7.5372,5.500004,0.4608,5.500004 +L 1.7287,6,1.4611,7.000011 +L 6.5369,2.000004,6.2693,2.999998 + +[≪] 4 +L 0.0019,4.500004,5.5007,8.500083 +L 5.5007,0.499926,0.0005,4.499999 +L 2.5531,4.500004,8.0533,8.500083 +L 8.0533,0.499926,2.5517,4.499999 + +[≫] 4 +L 7.9993,4.500004,2.499,8.500083 +L 2.499,0.499926,8.0007,4.499999 +L 5.4467,4.500004,-0.0535,8.500083 +L -0.0535,0.499926,5.4481,4.499999 + +[√] 4 +L 0.0017,4.500004,0.8941,4.500004 +L 0.8941,4.500004,2.1004,-0.00006 +L 2.1004,-0.00006,4.5114,9.000004 +L 4.5114,9.000004,8.0013,9.000004 + +[∽] 54 +L 2.0001,6.299977,1.6528,6.272632 +L 1.6528,6.272632,1.3161,6.191426 +L 1.3161,6.191426,1.0001,6.058827 +L 1.0001,6.058827,0.7145,5.878864 +L 0.7145,5.878864,0.468,5.657005 +L 0.468,5.657005,0.2681,5.399991 +L 0.2681,5.399991,0.1207,5.115632 +L 0.1207,5.115632,0.0305,4.812566 +L 0.0305,4.812566,0.0001,4.500004 +L 0.0001,4.500004,0.0305,4.187442 +L 0.0305,4.187442,0.1207,3.884378 +L 0.1207,3.884378,0.2681,3.600018 +L 0.2681,3.600018,0.468,3.343004 +L 0.468,3.343004,0.7145,3.121145 +L 0.7145,3.121145,1.0001,2.941182 +L 1.0001,2.941182,1.3161,2.808583 +L 1.3161,2.808583,1.6528,2.727377 +L 1.6528,2.727377,2.0001,2.700032 +L 2.0001,2.700032,2.3474,2.727377 +L 2.3474,2.727377,2.6841,2.808583 +L 2.6841,2.808583,3.0001,2.941182 +L 3.0001,2.941182,3.2856,3.121145 +L 3.2856,3.121145,3.5322,3.343004 +L 3.5322,3.343004,3.7321,3.600018 +L 3.7321,3.600018,3.8794,3.884378 +L 3.8794,3.884378,3.9697,4.187442 +L 3.9697,4.187442,4.0001,4.500004 +L 5.9999,2.700032,6.3472,2.727377 +L 6.3472,2.727377,6.6839,2.808583 +L 6.6839,2.808583,6.9999,2.941182 +L 6.9999,2.941182,7.2854,3.121145 +L 7.2854,3.121145,7.532,3.343004 +L 7.532,3.343004,7.7319,3.600018 +L 7.7319,3.600018,7.8792,3.884378 +L 7.8792,3.884378,7.9695,4.187442 +L 7.9695,4.187442,7.9999,4.500004 +L 7.9999,4.500004,7.9695,4.812566 +L 7.9695,4.812566,7.8792,5.115632 +L 7.8792,5.115632,7.7319,5.399991 +L 7.7319,5.399991,7.532,5.657005 +L 7.532,5.657005,7.2854,5.878864 +L 7.2854,5.878864,6.9999,6.058827 +L 6.9999,6.058827,6.6839,6.191426 +L 6.6839,6.191426,6.3472,6.272632 +L 6.3472,6.272632,5.9999,6.299977 +L 5.9999,6.299977,5.6526,6.272632 +L 5.6526,6.272632,5.3159,6.191426 +L 5.3159,6.191426,4.9999,6.058827 +L 4.9999,6.058827,4.7143,5.878864 +L 4.7143,5.878864,4.4678,5.657005 +L 4.4678,5.657005,4.2679,5.399991 +L 4.2679,5.399991,4.1205,5.115632 +L 4.1205,5.115632,4.0303,4.812566 +L 4.0303,4.812566,3.9999,4.500004 + +[∝] 61 +L 3.9993,4.500004,3.9689,4.812566 +L 3.9689,4.812566,3.8786,5.115632 +L 3.8786,5.115632,3.7313,5.399991 +L 3.7313,5.399991,3.5314,5.657005 +L 3.5314,5.657005,3.2848,5.878864 +L 3.2848,5.878864,2.9993,6.058827 +L 2.9993,6.058827,2.6833,6.191426 +L 2.6833,6.191426,2.3466,6.272632 +L 2.3466,6.272632,1.9993,6.299977 +L 1.9993,6.299977,1.652,6.272632 +L 1.652,6.272632,1.3153,6.191426 +L 1.3153,6.191426,0.9993,6.058827 +L 0.9993,6.058827,0.7137,5.878864 +L 0.7137,5.878864,0.4672,5.657005 +L 0.4672,5.657005,0.2673,5.399991 +L 0.2673,5.399991,0.1199,5.115632 +L 0.1199,5.115632,0.0297,4.812566 +L 0.0297,4.812566,-0.0007,4.500004 +L -0.0007,4.500004,0.0297,4.187442 +L 0.0297,4.187442,0.1199,3.884378 +L 0.1199,3.884378,0.2673,3.600018 +L 0.2673,3.600018,0.4672,3.343004 +L 0.4672,3.343004,0.7137,3.121145 +L 0.7137,3.121145,0.9993,2.941182 +L 0.9993,2.941182,1.3153,2.808583 +L 1.3153,2.808583,1.652,2.727377 +L 1.652,2.727377,1.9993,2.700032 +L 1.9993,2.700032,2.3466,2.727377 +L 2.3466,2.727377,2.6833,2.808583 +L 2.6833,2.808583,2.9993,2.941182 +L 2.9993,2.941182,3.2848,3.121145 +L 3.2848,3.121145,3.5314,3.343004 +L 3.5314,3.343004,3.7313,3.600018 +L 3.7313,3.600018,3.8786,3.884378 +L 3.8786,3.884378,3.9689,4.187442 +L 3.9689,4.187442,3.9993,4.500004 +L 7.1086,5.997611,6.8028,6.148254 +L 6.8028,6.148254,6.4725,6.248814 +L 6.4725,6.248814,6.1279,6.296239 +L 6.1279,6.296239,5.7794,6.289085 +L 5.7794,6.289085,5.4375,6.227571 +L 5.4375,6.227571,5.1128,6.113566 +L 5.1128,6.113566,4.8149,5.950534 +L 4.8149,5.950534,4.553,5.743428 +L 4.553,5.743428,4.3351,5.498542 +L 4.3351,5.498542,4.1677,5.223315 +L 4.1677,5.223315,4.056,4.926111 +L 4.056,4.926111,4.0033,4.615959 +L 4.0033,4.615959,4.0112,4.302285 +L 4.0112,4.302285,4.0796,3.994618 +L 4.0796,3.994618,4.2062,3.702307 +L 4.2062,3.702307,4.3874,3.434234 +L 4.3874,3.434234,4.6175,3.198544 +L 4.6175,3.198544,4.8896,3.002398 +L 4.8896,3.002398,5.1954,2.851755 +L 5.1954,2.851755,5.5256,2.751194 +L 5.5256,2.751194,5.8702,2.70377 +L 5.8702,2.70377,6.2188,2.710924 +L 6.2188,2.710924,6.5606,2.772438 +L 6.5606,2.772438,6.8854,2.886443 +L 6.8854,2.886443,7.1045,2.999958 + +[∵] 6 +A 4.0005,2.035904,0.5,0,180 +A 4.0005,2.035904,0.5,180,360 +A 6.137,5.73157,0.5,0,180 +A 6.137,5.73157,0.5,180,360 +A 1.871,5.732544,0.5,0,180 +A 1.871,5.732544,0.5,180,360 + +[∫] 5 +L 3.0428,7.714308,4.9594,1.285701 +L 5.0014,7.999999,5.0014,7.000005 +L 3.0022,0.999999,3.0022,2.000004 +A 4.0011,0.999999,1,180,16.601211 +A 4.0011,7.999999,1,0,196.60133 + +[∬] 10 +L 1.543,7.714308,3.4595,1.285701 +L 3.5015,7.999999,3.5015,7.000005 +L 1.5009,0.999999,1.5009,2.000004 +L 4.5411,7.714308,6.4576,1.285701 +L 6.4996,7.999999,6.4996,7.000005 +L 4.499,0.999999,4.499,2.000004 +A 2.5012,0.999999,1,180,16.601211 +A 2.5012,7.999999,1,0,196.60133 +A 5.4993,0.999999,1,180,16.601211 +A 5.4993,7.999999,1,0,196.60133 + +[Å] 5 +L 0.0011,-0.000903,4.0009,6.500003 +L 4.0009,6.500003,8.0007,-0.000903 +L 1.1121,1.804906,6.8897,1.804906 +A 4.0009,7.999999,1,0,180 +A 4.0009,7.999999,1,180,360 + +[‰] 13 +L 8.0027,2.999998,8.0027,1.000005 +L 6.0021,1.000005,6.0021,2.999998 +L 5.0018,2.999998,5.0018,1.000005 +L 3.0026,1.000005,3.0026,2.999998 +L -0.0137,6.000012,-0.0137,8.000004 +L 1.9855,8.000004,1.9855,6.000012 +L 5.0018,8.94142,0.0003,0.000005 +A 7.0024,2.999998,1.00002,0,180 +A 7.0024,1.000005,1.00002,180,0 +A 4.0015,2.999998,1.00002,0,180 +A 4.0015,1.000005,1.00002,180,0 +A 0.9866,6.000012,1.00002,180,0 +A 0.9866,8.000004,1.00002,0,180 + +[♯] 4 +L 8.0005,7.571715,-0.0005,5.428225 +L 8.0005,3.571718,-0.0005,1.428223 +L 5.7141,9.000004,5.7141,0.999999 +L 2.2859,0,2.2859,7.999999 + +[♭] 7 +L 3.7533,4.500004,5.2524,4.500004 +L 1.7527,9.000004,1.7527,0.000005 +L 6.2527,3.000003,6.2527,3.500005 +L 3.2518,0.000005,1.7527,0.000005 +A 5.2524,3.500005,1,0,90 +A 3.7533,2.500001,2,90,180 +A 3.2518,3.000003,3,270,0 + +[♪] 7 +L 4.0033,9.000004,4.0033,2.999998 +A 4.0033,0,3,90.010696,179.9967 +A 1.0024,3.000173,3,270.01069,359.9967 +A 2.0027,4.417199,5,0.948929,66.428329 +A 2.0293,3.981751,5,5.948929,66.757217 +A 4.0033,0,2.5,103.05889,166.94233 +A 1.0024,3.000173,2.5,283.05889,346.94233 + +[†] 2 +L 2.0033,7.500002,6.0031,7.500002 +L 4.0025,9.000004,4.0025,0.000005 + +[‡] 3 +L 2.0025,7.500002,6.0023,7.500002 +L 4.0031,9.000004,4.0031,0.000005 +L 2.0025,6,6.0023,6 + +[¶] 7 +L 6.5044,0.000005,6.5044,9.000014 +L 6.5044,9.000014,3.5049,9.000014 +L 1.5043,7.000005,1.5043,6.000012 +L 4.0023,0.000005,4.0023,9.000014 +L 3.5049,4.000008,3.9995,4.000008 +A 3.5049,7.000005,2,90,180 +A 3.5049,6.000012,2,180,270 + +[◯] 2 +A 3.9987,4.499999,4,0,180 +A 3.9987,4.499999,4,180,360 + +# Japanese Character (数字)------------------------------------------- + +[0] 44 +L 5.2475,8.499949,5.0382,8.650083 +L 5.0382,8.650083,4.7852,8.777746 +L 4.7852,8.777746,4.496,8.879057 +L 4.496,8.879057,4.1796,8.950939 +L 4.1796,8.950939,3.8455,8.991208 +L 3.8455,8.991208,3.504,8.99864 +L 3.504,8.99864,3.1652,8.97301 +L 3.1652,8.97301,2.8397,8.915096 +L 2.8397,8.915096,2.5372,8.826658 +L 2.5372,8.826658,2.2669,8.710382 +L 2.2669,8.710382,2.0371,8.569803 +L 2.0371,8.569803,1.949,8.49995 +L 1.9486,8.499724,1.1547,7.787616 +L 1.1547,7.787616,0.5956,7.009753 +L 0.5956,7.009753,0.3729,6.499924 +L 0.3729,2.500098,0.7761,1.693009 +L 0.7761,1.693009,1.4254,0.937072 +L 1.4254,0.937072,1.9486,0.500297 +L 1.949,0.50006,2.1584,0.349926 +L 2.1584,0.349926,2.4114,0.222263 +L 2.4114,0.222263,2.7006,0.120952 +L 2.7006,0.120952,3.017,0.04907 +L 3.017,0.04907,3.351,0.008801 +L 3.351,0.008801,3.6926,0.001369 +L 3.6926,0.001369,4.0313,0.026999 +L 4.0313,0.026999,4.3569,0.084913 +L 4.3569,0.084913,4.6594,0.173351 +L 4.6594,0.173351,4.9297,0.289627 +L 4.9297,0.289627,5.1595,0.430206 +L 5.1595,0.430206,5.2475,0.500059 +L 5.2487,0.500294,6.0425,1.212402 +L 6.0425,1.212402,6.6017,1.990264 +L 6.6017,1.990264,6.8244,2.500094 +L 6.8226,2.499964,7.1866,4.126629 +L 7.1866,4.126629,7.1978,4.500002 +L 7.1978,4.500013,6.9503,6.133425 +L 6.9503,6.133425,6.8226,6.500051 +L 6.8244,6.499924,6.4212,7.307012 +L 6.4212,7.307012,5.7719,8.062949 +L 5.7719,8.062949,5.2487,8.499724 +L -0.0026,4.500002,0.2449,2.86659 +L 0.2449,2.86659,0.3726,2.499964 +L 0.3726,6.500053,0.0085,4.873388 +L 0.0085,4.873388,-0.0026,4.500015 + +[1] 2 +L -0.0058,7.000005,3.5954,9.000009 +L 3.5954,9.000009,3.5954,0.000005 + +[2] 24 +L 7.1979,0.000005,-0.0017,0.000005 +L -0.0017,0.000005,6.9534,6.646684 +L 6.9551,6.646728,7.0886,6.804467 +L 7.0886,6.804467,7.1707,6.972684 +L 7.1707,6.972684,7.199,7.146268 +L 7.199,7.146268,7.1726,7.319944 +L 7.1726,7.319944,7.0924,7.488436 +L 7.0924,7.488436,7.0847,7.499962 +L 7.0852,7.499955,6.8759,7.828594 +L 6.8759,7.828594,6.5671,8.132057 +L 6.5671,8.132057,6.1682,8.401123 +L 6.1682,8.401123,5.6912,8.627617 +L 5.6912,8.627617,5.1506,8.804657 +L 5.1506,8.804657,4.5629,8.926863 +L 4.5629,8.926863,3.9459,8.990523 +L 3.9459,8.990523,3.3184,8.993702 +L 3.3184,8.993702,2.6995,8.936303 +L 2.6995,8.936303,2.1079,8.820071 +L 2.1079,8.820071,1.5616,8.648537 +L 1.5616,8.648537,1.0772,8.426913 +L 1.0772,8.426913,0.6695,8.161934 +L 0.6695,8.161934,0.3508,7.86165 +L 0.3508,7.86165,0.1308,7.535185 +L 0.1308,7.535185,0.1138,7.499956 + +[3] 40 +L -0.0011,9.000009,3.5987,9.000009 +L 3.5987,4.999996,1.7991,4.999996 +L 7.1985,3.000008,7.1985,2.000009 +L 3.5987,0.000005,-0.0011,0.000005 +L 3.5987,5.000205,4.2238,5.030587 +L 4.2238,5.030587,4.83,5.120808 +L 4.83,5.120808,5.3987,5.268128 +L 5.3987,5.268128,5.9127,5.46807 +L 5.9127,5.46807,6.3564,5.714559 +L 6.3564,5.714559,6.7164,6.000105 +L 6.7164,6.000105,6.9816,6.316033 +L 6.9816,6.316033,7.144,6.652744 +L 7.144,6.652744,7.1987,7.000005 +L 7.1987,7.000005,7.144,7.347267 +L 7.144,7.347267,6.9816,7.683977 +L 6.9816,7.683977,6.7164,7.999905 +L 6.7164,7.999905,6.3564,8.285452 +L 6.3564,8.285452,5.9127,8.531941 +L 5.9127,8.531941,5.3987,8.731883 +L 5.3987,8.731883,4.83,8.879202 +L 4.83,8.879202,4.2238,8.969424 +L 4.2238,8.969424,3.5987,8.999805 +L 7.1987,3.000008,7.144,3.34727 +L 7.144,3.34727,6.9816,3.68398 +L 6.9816,3.68398,6.7164,3.999908 +L 6.7164,3.999908,6.3564,4.285455 +L 6.3564,4.285455,5.9127,4.531944 +L 5.9127,4.531944,5.3987,4.731886 +L 5.3987,4.731886,4.83,4.879206 +L 4.83,4.879206,4.2238,4.969427 +L 4.2238,4.969427,3.5987,4.999808 +L 3.5987,0.00021,4.2238,0.030591 +L 4.2238,0.030591,4.83,0.120812 +L 4.83,0.120812,5.3987,0.268132 +L 5.3987,0.268132,5.9127,0.468074 +L 5.9127,0.468074,6.3564,0.714563 +L 6.3564,0.714563,6.7164,1.000109 +L 6.7164,1.000109,6.9816,1.316037 +L 6.9816,1.316037,7.144,1.652748 +L 7.144,1.652748,7.1987,2.000009 + +[4] 3 +L 5.0381,0.000005,5.0381,4.000002 +L 7.1991,2.000009,-0.004,2.000009 +L -0.004,2.000009,2.8771,9.000009 + +[5] 23 +L 7.1906,9.000004,-0.009,9.000004 +L -0.009,9.000004,-0.009,4.999996 +L -0.009,4.999996,3.5908,4.999996 +L 7.1906,3.000008,7.1906,2.000004 +L 3.5908,0.000005,-0.009,0.000005 +L 7.1908,3.000008,7.1361,3.34727 +L 7.1361,3.34727,6.9737,3.68398 +L 6.9737,3.68398,6.7085,3.999908 +L 6.7085,3.999908,6.3485,4.285455 +L 6.3485,4.285455,5.9048,4.531944 +L 5.9048,4.531944,5.3908,4.731886 +L 5.3908,4.731886,4.822,4.879206 +L 4.822,4.879206,4.2159,4.969427 +L 4.2159,4.969427,3.5908,4.999808 +L 3.5908,0.000204,4.2159,0.030585 +L 4.2159,0.030585,4.822,0.120807 +L 4.822,0.120807,5.3908,0.268126 +L 5.3908,0.268126,5.9048,0.468068 +L 5.9048,0.468068,6.3485,0.714557 +L 6.3485,0.714557,6.7085,1.000104 +L 6.7085,1.000104,6.9737,1.316032 +L 6.9737,1.316032,7.1361,1.652742 +L 7.1361,1.652742,7.1908,2.000004 + +[6] 36 +L -0.0021,3.803859,-0.0021,2.000009 +L 7.1989,2.000009,7.1989,3.000008 +L 3.5991,4.999996,0.215,4.999996 +L 5.3987,8.999492,3.8566,8.399666 +L 3.8566,8.399666,2.5254,7.660199 +L 2.5254,7.660199,1.4456,6.803559 +L 1.4456,6.803559,0.65,5.855775 +L 0.65,5.855775,0.1628,4.845644 +L 0.1628,4.845644,-0.0013,3.803859 +L -0.0009,2.000009,0.0538,1.652748 +L 0.0538,1.652748,0.2162,1.316037 +L 0.2162,1.316037,0.4814,1.000109 +L 0.4814,1.000109,0.8413,0.714563 +L 0.8413,0.714563,1.285,0.468074 +L 1.285,0.468074,1.7991,0.268132 +L 1.7991,0.268132,2.3678,0.120812 +L 2.3678,0.120812,2.9739,0.030591 +L 2.9739,0.030591,3.5991,0.00021 +L 3.5991,0.00021,4.2242,0.030591 +L 4.2242,0.030591,4.8304,0.120812 +L 4.8304,0.120812,5.3991,0.268132 +L 5.3991,0.268132,5.9131,0.468074 +L 5.9131,0.468074,6.3568,0.714563 +L 6.3568,0.714563,6.7168,1.000109 +L 6.7168,1.000109,6.982,1.316037 +L 6.982,1.316037,7.1444,1.652748 +L 7.1444,1.652748,7.1991,2.000009 +L 7.1991,3.000008,7.1444,3.34727 +L 7.1444,3.34727,6.982,3.68398 +L 6.982,3.68398,6.7168,3.999908 +L 6.7168,3.999908,6.3568,4.285455 +L 6.3568,4.285455,5.9131,4.531944 +L 5.9131,4.531944,5.3991,4.731886 +L 5.3991,4.731886,4.8304,4.879206 +L 4.8304,4.879206,4.2242,4.969427 +L 4.2242,4.969427,3.5991,4.999808 + +[7] 3 +L -0.0015,9.000009,7.1981,9.000009 +L 7.1981,9.000009,2.6981,0.000005 +L 3.5983,4.999996,7.1981,4.999996 + +[8] 76 +L -0.0058,3.000008,-0.0058,2.000009 +L 7.1952,2.000009,7.1952,3.000008 +L 0.4446,7.250009,0.4446,6.750007 +L 6.7448,6.750007,6.7448,7.250009 +L -0.0046,2.000009,0.0501,1.652748 +L 0.0501,1.652748,0.2125,1.316037 +L 0.2125,1.316037,0.4777,1.000109 +L 0.4777,1.000109,0.8376,0.714563 +L 0.8376,0.714563,1.2813,0.468074 +L 1.2813,0.468074,1.7954,0.268132 +L 1.7954,0.268132,2.3641,0.120812 +L 2.3641,0.120812,2.9702,0.030591 +L 2.9702,0.030591,3.5954,0.00021 +L 3.5954,0.00021,4.2205,0.030591 +L 4.2205,0.030591,4.8266,0.120812 +L 4.8266,0.120812,5.3954,0.268132 +L 5.3954,0.268132,5.9094,0.468074 +L 5.9094,0.468074,6.3531,0.714563 +L 6.3531,0.714563,6.7131,1.000109 +L 6.7131,1.000109,6.9783,1.316037 +L 6.9783,1.316037,7.1407,1.652748 +L 7.1407,1.652748,7.1954,2.000009 +L 7.1954,3.000008,7.1407,3.34727 +L 7.1407,3.34727,6.9783,3.68398 +L 6.9783,3.68398,6.7131,3.999908 +L 6.7131,3.999908,6.3531,4.285455 +L 6.3531,4.285455,5.9094,4.531944 +L 5.9094,4.531944,5.3954,4.731886 +L 5.3954,4.731886,4.8266,4.879206 +L 4.8266,4.879206,4.2205,4.969427 +L 4.2205,4.969427,3.5954,4.999808 +L 3.5954,4.999808,2.9702,4.969427 +L 2.9702,4.969427,2.3641,4.879206 +L 2.3641,4.879206,1.7954,4.731886 +L 1.7954,4.731886,1.2813,4.531944 +L 1.2813,4.531944,0.8376,4.285455 +L 0.8376,4.285455,0.4777,3.999908 +L 0.4777,3.999908,0.2125,3.68398 +L 0.2125,3.68398,0.0501,3.34727 +L 0.0501,3.34727,-0.0046,3.000008 +L 0.4454,6.750007,0.4932,6.446153 +L 0.4932,6.446153,0.6353,6.151531 +L 0.6353,6.151531,0.8674,5.875094 +L 0.8674,5.875094,1.1823,5.625241 +L 1.1823,5.625241,1.5706,5.409563 +L 1.5706,5.409563,2.0204,5.234614 +L 2.0204,5.234614,2.518,5.105709 +L 2.518,5.105709,3.0484,5.026766 +L 3.0484,5.026766,3.5954,5.000182 +L 3.5954,5.000182,4.1424,5.026766 +L 4.1424,5.026766,4.6727,5.105709 +L 4.6727,5.105709,5.1704,5.234614 +L 5.1704,5.234614,5.6202,5.409563 +L 5.6202,5.409563,6.0084,5.625241 +L 6.0084,5.625241,6.3234,5.875094 +L 6.3234,5.875094,6.5554,6.151531 +L 6.5554,6.151531,6.6975,6.446153 +L 6.6975,6.446153,6.7454,6.750007 +L 6.7454,7.250009,6.6975,7.553863 +L 6.6975,7.553863,6.5554,7.848484 +L 6.5554,7.848484,6.3234,8.124921 +L 6.3234,8.124921,6.0084,8.374775 +L 6.0084,8.374775,5.6202,8.590453 +L 5.6202,8.590453,5.1704,8.765402 +L 5.1704,8.765402,4.6727,8.894307 +L 4.6727,8.894307,4.1424,8.97325 +L 4.1424,8.97325,3.5954,8.999834 +L 3.5954,8.999834,3.0484,8.97325 +L 3.0484,8.97325,2.518,8.894307 +L 2.518,8.894307,2.0204,8.765402 +L 2.0204,8.765402,1.5706,8.590453 +L 1.5706,8.590453,1.1823,8.374775 +L 1.1823,8.374775,0.8674,8.124921 +L 0.8674,8.124921,0.6353,7.848484 +L 0.6353,7.848484,0.4932,7.553863 +L 0.4932,7.553863,0.4454,7.250009 + +[9] 36 +L 7.1993,5.196155,7.1993,7.000005 +L -0.0017,7.000005,-0.0017,6.000012 +L 3.5981,4.000002,6.9821,4.000002 +L 1.7984,0.000522,3.3405,0.600348 +L 3.3405,0.600348,4.6717,1.339815 +L 4.6717,1.339815,5.7515,2.196455 +L 5.7515,2.196455,6.5471,3.14424 +L 6.5471,3.14424,7.0344,4.15437 +L 7.0344,4.15437,7.1984,5.196155 +L 7.1981,7.000005,7.1434,7.347267 +L 7.1434,7.347267,6.981,7.683977 +L 6.981,7.683977,6.7158,7.999905 +L 6.7158,7.999905,6.3558,8.285452 +L 6.3558,8.285452,5.9121,8.531941 +L 5.9121,8.531941,5.3981,8.731883 +L 5.3981,8.731883,4.8293,8.879202 +L 4.8293,8.879202,4.2232,8.969424 +L 4.2232,8.969424,3.5981,8.999805 +L 3.5981,8.999805,2.9729,8.969424 +L 2.9729,8.969424,2.3668,8.879202 +L 2.3668,8.879202,1.7981,8.731883 +L 1.7981,8.731883,1.284,8.531941 +L 1.284,8.531941,0.8403,8.285452 +L 0.8403,8.285452,0.4804,7.999905 +L 0.4804,7.999905,0.2152,7.683977 +L 0.2152,7.683977,0.0528,7.347267 +L 0.0528,7.347267,-0.0019,7.000005 +L -0.0019,6.000012,0.0528,5.65275 +L 0.0528,5.65275,0.2152,5.31604 +L 0.2152,5.31604,0.4804,5.000112 +L 0.4804,5.000112,0.8403,4.714565 +L 0.8403,4.714565,1.284,4.468076 +L 1.284,4.468076,1.7981,4.268134 +L 1.7981,4.268134,2.3668,4.120814 +L 2.3668,4.120814,2.9729,4.030593 +L 2.9729,4.030593,3.5981,4.000212 + +# Japanese Character (長母音等)--------------------------------------- + +[ー] 2 +L 1.2787,4.500024,-0.0003,5.23868 +L 1.2787,4.500024,7.9993,4.500024 + +[ー] 1 +L -0.0004,4.500024,7.9999,4.500024 + +[、] 1 +L 7.9998,0,6.5637,1.436091 + +[。] 2 +A 6.9994,0.999999,1,0,180 +A 6.9994,0.999999,1,180,360 + +[,] 2 +L 8.0003,1.409912,8.0003,0 +L 8.0003,0,7.1863,-1.409913 + +[・] 2 +A 3.9996,4.500021,0.25,0,180 +A 3.9996,4.500021,0.25,180,360 + +[?] 10 +L 4.0002,0,4.0002,0.500006 +L 4.0002,3.000007,4.0002,3.394454 +L 2.4998,9.000004,5.5,9.000004 +L 6.0744,5.812898,4.9256,5.081678 +L 4.0002,3.000007,4.0002,3.394454 +A 2.4998,7.500003,1.5001,90,180 +A 5.5,7.500003,1.5001,0,90 +A 2.9999,7.500002,1.9999,180,194.47747 +A 5.0005,7.500002,1.9999,302.477,0 +A 5.9994,3.394454,2.00025,122.48362,180 + +[!] 2 +L 3.9994,0,3.9994,0.500006 +L 3.9994,3.000007,3.9994,9.000004 + +[ヽ] 1 +A -0.2365,1.025499,5.774784,10.795089,60.989852 + +[ヾ] 3 +L 4.7025,7.09314,5.305,6.157882 +L 5.4058,7.499972,6.0082,6.564719 +A -0.2366,1.025499,5.774784,10.795089,60.989852 + +[ゝ] 2 +A 8.1495,6.384516,5.255041,183.36857,234.48506 +A 5.0968,0,2.088326,90,151.06167 + +[ゞ] 4 +L 4.7023,7.09314,5.3048,6.157882 +L 5.4056,7.499972,6.008,6.564719 +A 8.1487,6.384516,5.255041,183.36857,234.48506 +A 5.096,0,2.088326,90,151.06167 + +[_] 1 +L 3.6004,0,-0.0002,0 + +[_] 1 +L 7.2001,0,-0.0003,0 + +[:] 2 +L 3.6002,0,3.6002,0.500006 +L 3.6002,4.000001,3.6002,3.5 + +[:] 3 +L 4.5997,0,3.5994,-2.999998 +L 4.5997,0,4.5997,0.500006 +L 4.5997,4.000001,4.5997,3.5 + +# Japanese Character (全角ABC)------------------------------------ + +[A] 3 +L 3.6008,9.000009,7.203,0.011772 +L 0.9999,2.50851,6.2034,2.50851 +L -0.0001,0.011772,3.6008,9.000009 + +[B] 6 +L -0.0009,0.000011,-0.0009,9.000014 +L -0.0009,5.000001,4.705,5.000001 +L 4.705,0.000011,-0.0009,0.000011 +L -0.0009,9.000014,4.4819,9.000014 +A 4.705,2.500195,2.500842,270,90 +A 4.4819,6.999848,2.001142,272.06121,90 + +[C] 5 +L 2.0007,9.000009,7.2018,9.000009 +L 0.0008,2.000005,0.0008,7.000009 +L 2.0007,0.000005,7.2018,0.000005 +A 2.0007,7.000009,2,90,180 +A 2.0007,2.000005,2,180,270 + +[D] 6 +L 0.0038,9.000009,0.0038,0.000005 +L 5.2035,9.000009,0.0038,9.000009 +L 7.2034,2.000005,7.2034,7.000009 +L 5.2035,0.000005,0.0038,0.000005 +A 5.2035,7.000009,2,0,90 +A 5.2035,2.000005,2,270,0 + +[E] 4 +L 7.204,9.000003,0.0009,9.000003 +L 0.0009,9.000003,0.0009,0.000005 +L 0.0009,0.000005,7.204,0.000005 +L 0.0009,4.999996,5.4024,4.999996 + +[F] 3 +L 7.1959,9.000009,0.0011,9.000009 +L 0.0011,9.000009,0.0011,0.000005 +L 0.0011,4.999996,7.1959,4.999996 + +[G] 7 +L 7.2042,0.000005,7.2042,4.999996 +L 7.2042,4.999996,5.0404,4.999996 +L 1.9943,9.000003,7.2042,9.000003 +L -0.006,2.000005,-0.006,7.000004 +L 1.9943,0.000005,7.2042,0.000005 +A 1.9943,7.000004,2,90,180 +A 1.9943,2.000005,2,180,270 + +[H] 3 +L -0.0001,9.000009,-0.0001,0.000005 +L 7.2044,0.000005,7.2044,9.000009 +L -0.0001,4.999996,7.2044,4.999996 + +[I] 1 +L 3.6003,9.000009,3.6003,0.000005 + +[J] 3 +L 5.2043,0.000005,-0.007,0.000005 +L 7.2042,2.000005,7.2042,9.000003 +A 5.2043,2.000005,2,270,0 + +[K] 3 +L -0.0074,9.000009,-0.0074,0.000005 +L -0.0074,3.500005,7.2034,9.000009 +L 2.4044,5.338442,7.2034,0.000005 + +[L] 2 +L 0.0009,9.000009,0.0009,0.000005 +L 0.0009,0.000005,7.2037,0.000005 + +[M] 4 +L -0.0052,0.000005,-0.0052,9.000003 +L -0.0052,9.000003,3.5999,4.000002 +L 3.5999,4.000002,7.2043,9.000003 +L 7.2043,9.000003,7.2043,0.000005 + +[N] 3 +L -0.0021,0.000005,-0.0021,9.000009 +L -0.0021,9.000009,7.2035,0.000005 +L 7.2035,0.000005,7.2035,9.000009 + +[O] 8 +L 0.0058,2.000005,0.0058,7.000009 +L 5.2045,0.000005,2.0061,0.000005 +L 7.2041,7.000009,7.2041,2.000005 +L 5.2045,9.000009,2.0061,9.000009 +A 2.0061,7.000009,2,90,180 +A 2.0061,2.000005,2,180,270 +A 5.2045,2.000005,2,270,0 +A 5.2045,7.000009,2,0,90 + +[P] 6 +L -0.0009,0,-0.0009,9.000003 +L 5.1967,9.000003,-0.0009,9.000003 +L 7.1963,5.999996,7.1963,7.000004 +L 5.1967,3.999997,-0.0009,3.999997 +A 5.1967,7.000004,2,0,90 +A 5.1967,5.999996,2,270,0 + +[Q] 9 +L 7.2039,0.000005,3.6044,2.000015 +L 0.0042,2.000005,0.0042,7.000009 +L 4.0037,0.000005,2.0045,0.000005 +L 6.0039,7.000009,6.0039,2.000005 +L 4.0037,9.000009,2.0045,9.000009 +A 2.0045,7.000009,2,90,180 +A 2.0045,2.000005,2,180,270 +A 4.0037,2.000005,2,270,0 +A 4.0037,7.000009,2,0,90 + +[R] 7 +L 0.0048,0.000005,0.0048,9.000009 +L 4.3234,4.000002,7.2045,0.000005 +L 5.2049,9.000009,0.0048,9.000009 +L 7.2045,6.000002,7.2045,7.000009 +L 5.2049,4.000002,0.0048,4.000002 +A 5.2049,7.000009,2,0,90 +A 5.2049,6.000002,2,270,0 + +[S] 5 +L 1.4807,5.069755,5.7232,3.931469 +A 5.2055,2.000004,2.000004,270,74.986465 +A 1.9983,7.000004,1.998746,90,254.9774 +A 1.9983,-10.1967,19.196704,74.264724,90 +A 5.2059,19.196704,19.196704,254.26472,270 + +[T] 2 +L -0.0013,9.000003,7.2043,9.000003 +L 3.6024,9.000003,3.6024,0.000005 + +[U] 5 +L -0.0021,2,-0.0021,9.000009 +L 5.2039,0,1.9974,0 +L 7.2035,2,7.2035,9.000009 +A 1.9974,2,2,180,270 +A 5.2039,2,2,270,0 + +[V] 2 +L 0.0058,9.000009,3.6046,0.000005 +L 3.6046,0.000005,7.2041,9.000009 + +[W] 4 +L 0.0001,9.000009,1.8011,0.000005 +L 1.8011,0.000005,3.6003,6.000012 +L 3.6003,6.000012,5.4006,0.000005 +L 5.4006,0.000005,7.1998,9.000009 + +[X] 2 +L -0.0007,9.000009,7.2039,0.000005 +L -0.0007,0.000005,7.2039,9.000009 + +[Y] 3 +L 0.0013,9.000009,3.6025,4.999996 +L 3.6025,4.999996,3.6025,0.000005 +L 3.6025,4.999996,7.2045,9.000009 + +[Z] 3 +L 0.0016,9.000003,7.2037,9.000003 +L 7.2037,9.000003,0.0016,0.000005 +L 0.0016,0.000005,7.2037,0.000005 + +[a] 6 +L 1.4995,3.000008,7.2004,3.000008 +L 7.2004,0.000005,1.4995,0.000005 +L 5.7,6.000012,0.9009,6.000012 +L 7.2004,4.500011,7.2004,0.000005 +A 1.4995,1.499928,1.499928,90,270 +A 5.7,4.500011,1.5,0,90 + +[b] 6 +L 0,9.000009,0,0.000005 +L 5.6992,6.000012,0,6.000012 +L 7.1996,1.500005,7.1996,4.500011 +L 5.6992,0.000005,0,0.000005 +A 5.6992,4.500011,1.5,0,90 +A 5.6992,1.500005,1.5,270,0 + +[c] 5 +L 1.5066,6,7.2051,6 +L 0.0069,1.500005,0.0069,4.5 +L 1.5066,0.000005,7.2051,0.000005 +A 1.5066,4.5,1.5,90,180 +A 1.5066,1.500005,1.5,180,270 + +[d] 6 +L 7.2071,9.000009,7.2071,0.000005 +L 1.5058,6.000012,7.2071,6.000012 +L 0.0061,1.500005,0.0061,4.500011 +L 1.5058,0.000005,7.2071,0.000005 +A 1.5058,4.500011,1.5,90,180 +A 1.5058,1.500005,1.5,180,270 + +[e] 8 +L -0.0052,3.000008,7.1958,3.000008 +L -0.0052,1.500005,-0.0052,4.000002 +L 1.4952,0.000005,7.1958,0.000005 +L 5.6957,6.000012,1.4952,6.000012 +L 7.1958,4.500011,7.1958,3.000008 +A 1.4952,1.500005,1.5,180,270 +A 1.4952,4.500011,1.5,90,180 +A 5.6957,4.500011,1.5,0,90 + +[f] 4 +L 0.0073,6.000005,7.2055,6.000005 +L 3.9052,9.000003,7.2055,9.000003 +L 2.4054,7.500003,2.4054,0.000005 +A 3.9052,7.500003,1.5,90,180 + +[g] 8 +L 1.5013,6.000012,7.2012,6.000012 +L 0.0016,1.500005,0.0016,4.500011 +L 1.5013,0.000005,7.2012,0.000005 +L 5.7008,-2.999992,0.0016,-2.999992 +L 7.2012,-1.499992,7.2012,6.000012 +A 1.5013,4.500011,1.5,90,180 +A 1.5013,1.500005,1.5,180,270 +A 5.7008,-1.499992,1.5,270,0 + +[h] 4 +L 0.0008,9.000009,0.0008,0.000005 +L 5.701,6.000012,0.0008,6.000012 +L 7.2015,4.500011,7.2015,0.000005 +A 5.701,4.500011,1.5,0,90 + +[i] 2 +L 3.6057,0.000005,3.6057,6.000012 +L 3.6057,8.500006,3.6057,9.000009 + +[j] 4 +L 7.2051,8.5,7.2051,9.000003 +L 5.7047,-2.999992,0.0013,-2.999992 +L 7.2051,-1.499992,7.2051,6.000005 +A 5.7047,-1.499992,1.5,270,0 + +[k] 3 +L 0.0012,9.000009,0.0012,0.000005 +L 0.0012,3.500005,7.2008,6.000012 +L 2.379,4.325555,7.2008,0.000005 + +[l] 3 +L 3.7049,0.000099,4.5056,0.000099 +L 2.705,1.000099,2.705,9.000003 +A 3.7049,1.000099,1,180,270 + +[m] 5 +L 0.001,0.000005,0.001,6.000012 +L 7.2055,4.500011,7.2055,0.000005 +L 5.7051,6.000012,0.001,6.000012 +L 3.6029,6.000012,3.6029,0.000005 +A 5.7051,4.500011,1.5,0,90 + +[n] 4 +L 0.0051,0.000005,0.0051,6.000012 +L 5.7057,6.000012,0.0051,6.000012 +L 7.2061,4.500011,7.2061,0.000005 +A 5.7057,4.500011,1.5,0,90 + +[o] 8 +L 0.0008,1.5,0.0008,4.500006 +L 5.6985,0,1.5009,0 +L 7.1986,4.500006,7.1986,1.5 +L 5.6985,6.000005,1.5009,6.000005 +A 1.5009,4.500006,1.5,90,180 +A 1.5009,1.5,1.5,180,270 +A 5.6985,1.5,1.5,270,0 +A 5.6985,4.500006,1.5,0,90 + +[p] 6 +L -0.0004,6.000012,-0.0004,-2.999992 +L 5.7005,6.000012,-0.0004,6.000012 +L 7.201,1.500005,7.201,4.500011 +L 5.7005,0.000005,-0.0004,0.000005 +A 5.7005,4.500011,1.5,0,90 +A 5.7005,1.500005,1.5,270,0 + +[q] 6 +L 7.2002,6.000012,7.2002,-2.999992 +L 1.5007,6.000012,7.2002,6.000012 +L 0.0006,1.500005,0.0006,4.500011 +L 1.5007,0.000005,7.2002,0.000005 +A 1.5007,4.500011,1.5,90,180 +A 1.5007,1.500005,1.5,180,270 + +[r] 4 +L 0.0012,6,0.0012,0.000005 +L 1.0008,6,6.2047,6 +A 1.0008,5.000001,1,90,180 +A 6.2047,5.000001,1,0,90 + +[s] 39 +L 1.4654,3.423099,5.7332,2.455103 +L 7.1996,5.43874,6.0184,5.702534 +L 6.0184,5.702534,4.7728,5.848386 +L 4.7728,5.848386,3.5005,5.871864 +L 3.5005,5.871864,2.2401,5.772256 +L 2.2401,5.772256,1.6049,5.673159 +L 1.6049,5.673435,1.259,5.590791 +L 1.259,5.590791,0.9442,5.476039 +L 0.9442,5.476039,0.6701,5.332665 +L 0.6701,5.332665,0.445,5.165027 +L 0.445,5.165027,0.2756,4.978218 +L 0.2756,4.978218,0.1673,4.777913 +L 0.1673,4.777913,0.1232,4.5702 +L 0.1232,4.5702,0.1447,4.361388 +L 0.1447,4.361388,0.2311,4.157824 +L 0.2311,4.157824,0.3799,3.965691 +L 0.3799,3.965691,0.5865,3.790829 +L 0.5865,3.790829,0.8446,3.63855 +L 0.8446,3.63855,1.1464,3.51348 +L 1.1464,3.51348,1.4657,3.423213 +L 5.5934,0.204774,5.9392,0.287419 +L 5.9392,0.287419,6.254,0.402171 +L 6.254,0.402171,6.5281,0.545544 +L 6.5281,0.545544,6.7533,0.713182 +L 6.7533,0.713182,6.9226,0.89999 +L 6.9226,0.89999,7.031,1.100294 +L 7.031,1.100294,7.075,1.308006 +L 7.075,1.308006,7.0535,1.516815 +L 7.0535,1.516815,6.9671,1.720378 +L 6.9671,1.720378,6.8183,1.912508 +L 6.8183,1.912508,6.6117,2.087368 +L 6.6117,2.087368,6.3536,2.239645 +L 6.3536,2.239645,6.0519,2.364712 +L 6.0519,2.364712,5.7325,2.45498 +L -0.001,0.439462,1.1802,0.17567 +L 1.1802,0.17567,2.4258,0.029821 +L 2.4258,0.029821,3.6982,0.006346 +L 3.6982,0.006346,4.9585,0.105958 +L 4.9585,0.105958,5.5937,0.205051 + +[t] 2 +L -0.0008,6.000012,7.2041,6.000012 +L 2.4012,9.000009,2.4012,0.000005 + +[u] 4 +L 7.2012,0.000005,7.2012,6.000012 +L -0.0002,1.500005,-0.0002,6.000012 +L 1.5003,0.000005,7.2012,0.000005 +A 1.5003,1.500005,1.5,180,270 + +[v] 2 +L 0.0008,6.000012,3.6002,0.000005 +L 3.6002,0.000005,7.2011,6.000012 + +[w] 4 +L -0.0018,6.000012,1.8002,0.000005 +L 1.8002,0.000005,3.6019,4.000002 +L 3.6019,4.000002,5.4028,0.000005 +L 5.4028,0.000005,7.2045,6.000012 + +[x] 2 +L 0.0002,6.000012,7.2009,0.000005 +L 0.0002,0.000005,7.2009,6.000012 + +[y] 4 +L -0.0069,6.000012,3.5947,0.000005 +L 0.9444,-2.999992,-0.0069,-2.999992 +L 2.2301,-2.271642,7.1927,6.000012 +A 0.9444,-1.499992,1.5,270,329.03659 + +[z] 3 +L 0.0017,6.000012,7.2014,6.000012 +L 7.2014,6.000012,0.0017,0.000005 +L 0.0017,0.000005,7.2014,0.000005 + +# Japanese Character (ひらがな)----------------------------------- + +[ぁ] 6 +L 1.9154,3.668972,4.6697,3.952734 +A 17.7868,2.817584,14.975382,173.54991,186.45008 +A -0.5087,3.851328,4.535769,308.25794,349.18185 +A 3.2117,1.360877,1.414641,123.99783,229.51208 +A 3.5104,0.865925,1.992595,17.865814,123.17634 +A 3.6137,1.797255,1.82183,279.44963,349.88478 + +[あ] 7 +L 0.2376,7.337936,5.7445,7.90545 +L 7.2001,2.847845,7.2001,3.016178 +A 31.98,5.635168,29.950765,173.54991,186.45008 +A -4.6112,7.702649,9.071538,308.25794,349.18185 +A 2.8294,2.721754,2.829281,123.99783,229.51208 +A 3.6336,3.594511,3.64366,279.44963,348.17515 +A 3.4273,1.731841,3.98519,18.800735,123.17634 + +[ぃ] 3 +L 3.1274,1.192031,2.4448,0.000051 +A 12.5689,3.656736,10.764402,175.50695,199.85862 +A 0.5356,1.426035,4.86901,357.2453,26.620574 + +[い] 3 +L 2.6443,2.384044,1.2801,0.000077 +A 21.5292,7.313454,21.528805,175.50695,199.85862 +A -2.5376,2.852052,9.738019,357.2453,26.620574 + +[ぅ] 4 +A 2.4015,-5.518935,10.01371,76.324218,89.735473 +A 3.6662,-2.059298,5.485071,82.405975,109.80435 +A 4.1811,2.14508,1.25037,328.9459,80.324539 +A 2.2719,3.625166,3.660466,277.96611,324.51058 + +[う] 4 +A 1.1951,-11.037887,20.027421,76.324218,89.735473 +A 3.7243,-4.118596,10.970142,82.405975,109.80435 +A 4.754,4.290153,2.500739,328.9459,80.324539 +A 0.9356,7.250331,7.320932,277.96611,324.51058 + +[ぇ] 7 +L 4.2001,3.243342,1.8069,0.28826 +L 2.286,3.101363,4.2001,3.243342 +L 4.6057,0.000008,5.4067,0.000008 +L 4.0128,0.705381,4.1301,0.344901 +A 2.7851,3.591697,0.908305,40.65242,91.078216 +A 4.6057,0.500006,0.499997,198.07075,270 +A 3.1186,0.413736,0.940513,18.065643,140.99761 + +[え] 7 +L 4.7944,6.486676,0.0083,0.576511 +L 0.9666,6.202725,4.7944,6.486676 +L 5.6059,0.000008,7.2086,0.000008 +L 4.4207,1.410763,4.6557,0.689802 +A 1.9658,7.183395,1.816611,40.65242,91.078216 +A 5.6059,1.000003,0.999994,198.07075,270 +A 2.632,0.827471,1.881027,18.065643,140.99761 + +[ぉ] 9 +L 4.9225,3.668621,5.4076,3.101337 +L 2.987,4.5,2.987,0.549182 +L 1.8631,0.484888,1.9384,0.320616 +L 4.1978,0,4.8013,0.377813 +A 2.6333,7.210219,3.871548,261.11541,293.8366 +A 2.4375,0.549182,0.549184,204.59683,0 +A 3.8227,0.564976,2.027191,76.853591,174.82151 +A 2.4375,0.747956,0.631982,180.0138,204.60163 +A 4.2532,1.390523,1.152014,298.1948,89.191711 + +[お] 9 +L 6.2376,7.337243,7.2077,6.202674 +L 2.3659,9.000001,2.3659,1.098372 +L 0.1188,0.969784,0.2694,0.641232 +L 4.7879,0.000008,5.9948,0.755635 +A 1.6585,14.420446,7.743095,261.11541,293.8366 +A 1.2676,1.098372,1.098369,204.59683,0 +A 4.038,1.129968,4.054382,76.853591,174.82151 +A 1.2676,1.495913,1.263965,180.0138,204.60163 +A 4.8979,2.781046,2.304028,298.1948,89.191711 + +[か] 5 +L 5.3962,6.770274,7.2076,3.648646 +L 0.0073,6.202674,2.9427,6.729974 +A -28.9426,10.49416,30.785725,340.06973,357.2181 +A 3.0863,5.742797,0.997587,17.528366,98.284484 +A -3.554,4.300114,7.789241,326.4915,12.931716 + +[が] 7 +L 5.3968,6.770274,7.2082,3.648646 +L 6.0314,7.177067,6.5732,6.241812 +L 6.6654,7.583894,7.2082,6.648646 +L 0.0079,6.202674,2.9437,6.729974 +A -28.942,10.49416,30.785725,340.06973,357.2181 +A 3.0873,5.742797,0.997587,17.528366,98.284484 +A -3.553,4.300114,7.789241,326.4915,12.931716 + +[き] 8 +L 0.5223,7.337936,6.7255,7.90545 +L 0.0081,5.63521,7.2081,6.202725 +L 2.2501,0.000008,5.6853,0.000008 +L 3.608,9.000001,6.7255,3.000094 +L 4.0945,4.5,2.2501,4.5 +L 4.6342,4.341783,6.7255,3.000094 +A 2.2501,2.25,2.249997,90,270 +A 4.0945,3.500006,1,57.322799,90 + +[ぎ] 10 +L 6.0309,8.593175,6.573,7.657911 +L 6.6659,9.000001,7.2073,8.064754 +L 0.008,5.63521,7.2077,6.202725 +L 2.2496,0.000008,5.6852,0.000008 +L 3.6082,9.000001,6.7254,3.000094 +L 4.0937,4.5,2.2496,4.5 +L 4.6337,4.341783,6.7254,3.000094 +L 0.5219,7.337936,5.6186,7.804174 +A 2.2496,2.25,2.249997,90,270 +A 4.0937,3.500006,1,57.322799,90 + +[く] 2 +L 0.0009,4.5,6.401,9.000001 +L 7.2079,0.000008,0.0009,4.5 + +[ぐ] 4 +L -0.0002,4.5,6.4005,9.000001 +L 7.2075,0.000008,-0.0002,4.5 +L 6.031,7.59318,6.5742,6.657916 +L 6.665,7.999998,7.2075,7.064751 + +[け] 4 +L 3.0065,6.770335,7.2077,6.770335 +L 5.7451,9.000001,5.7451,4.5 +A 14.248,4.500043,14.248287,163.97862,196.02137 +A 0.4879,4.5,5.258108,301.14933,0 + +[げ] 6 +L 6.0319,8.593175,6.574,7.657911 +L 6.6658,9.000001,7.208,8.064754 +L 3.0068,6.770335,7.2076,6.770335 +L 5.7447,9.000001,5.7447,4.5 +A 14.2479,4.500043,14.248287,163.97862,196.02137 +A 0.4875,4.5,5.258108,301.14933,0 + +[こ] 4 +L 1.2092,7.500001,5.9999,7.500001 +L 6.209,0.000008,3.0091,0.000008 +A 3.0091,3,3,178.53503,270 +A 6.209,1.000003,1,270,0 + +[ご] 6 +L 6.0317,8.593175,6.5742,7.657911 +L 6.6645,9.000001,7.2081,8.064754 +L 1.2095,7.500001,5.9998,7.500001 +L 6.2092,0.000008,3.009,0.000008 +A 3.009,3,3,178.53503,270 +A 6.2092,1.000003,1,270,0 + +[さ] 7 +L 0.5211,7.337936,6.7247,7.90545 +L 2.2496,0.000008,5.6845,0.000008 +L 3.6082,9.000001,6.7247,3.000094 +L 4.094,4.5,2.2496,4.5 +L 4.6344,4.341638,6.7247,3.000094 +A 2.2496,2.25,2.250002,90,270 +A 4.094,3.500006,1,57.318359,90 + +[ざ] 9 +L 6.0308,8.593175,6.574,7.657911 +L 6.665,9.000001,7.2072,8.064754 +L 2.2499,0.000008,5.6844,0.000008 +L 3.6081,9.000001,6.7253,3.000094 +L 4.0939,4.5,2.2499,4.5 +L 4.6343,4.341638,6.7253,3.000094 +L 0.5214,7.337936,5.6196,7.804327 +A 2.2499,2.25,2.250002,90,270 +A 4.0939,3.500006,1,57.318359,90 + +[し] 5 +L 3.0392,0.000008,2.4326,0.000008 +L 5.1897,0.908431,7.2075,2.983676 +A 17.8115,6.397908,17.811692,171.59965,196.39241 +A 2.4326,1.750106,1.750101,192.50366,270 +A 3.0392,3.000009,3,270,315.79589 + +[じ] 7 +L 6.0309,8.593175,6.5738,7.657911 +L 6.6648,9.000001,7.2081,8.064754 +L 3.0388,0.000008,2.4325,0.000008 +L 5.1893,0.908431,7.2077,2.983676 +A 17.8117,6.397908,17.811692,171.59965,196.39241 +A 2.4325,1.750106,1.750101,192.50366,270 +A 3.0388,3.000009,3,270,315.79589 + +[す] 6 +L 7.208,6.797287,0.008,6.797287 +L 4.958,3.78901,4.958,9.000001 +L 4.5696,2.312687,3.2625,0.000008 +A 3.5581,4.5,1.4,0,180 +A 3.5581,4.5,1.4,180,360 +A 1.9578,3.78901,3,330.52172,0 + +[ず] 8 +L 6.0314,8.593175,6.5736,7.657911 +L 6.6646,9.000001,7.2082,8.064754 +L 7.2082,6.797287,0.0086,6.797287 +L 4.9579,3.78901,4.9579,9.000001 +L 4.5698,2.312687,3.2627,0.000008 +A 3.558,4.5,1.4,0,180 +A 3.558,4.5,1.4,180,360 +A 1.958,3.78901,3,330.52172,0 + +[せ] 7 +L 0.0008,5.638485,7.2074,6.202751 +L 1.7905,2.000006,1.7905,8.432486 +L 3.7904,0.000008,6.2996,0.000008 +L 4.3907,3,3.6086,3 +L 5.3907,3.999995,5.3907,9.000001 +A 3.7904,2.000006,2,180,270 +A 4.3907,3.999995,1,270,0 + +[ぜ] 9 +L 6.0305,8.593175,6.5734,7.657911 +L 6.6644,9.000001,7.208,8.064754 +L 0,5.638485,7.208,6.202751 +L 1.7904,2.000006,1.7904,8.432486 +L 3.791,0.000008,6.2998,0.000008 +L 4.391,3,3.6085,3 +L 5.3913,3.999995,5.3913,9.000001 +A 3.791,2.000006,2,180,270 +A 4.391,3.999995,1,270,0 + +[そ] 6 +L 4.9706,0.000008,5.878,0.000008 +L 1.8239,9.000001,4.9706,9.000001 +L 4.9706,9.000001,1.0117,4.60026 +L 4.8199,0.000008,5.878,0.000008 +L 0.0006,4.369428,7.209,6.014495 +A 4.8199,2.700009,2.7,102.84992,270 + +[ぞ] 8 +L 6.0317,8.593175,6.5735,7.657911 +L 6.6646,9.000001,7.2075,8.064754 +L 4.9701,0.000008,5.8786,0.000008 +L 1.8231,9.000001,4.9701,9.000001 +L 4.9701,9.000001,1.0113,4.60026 +L 4.8195,0.000008,5.8786,0.000008 +L -0.0002,4.369428,7.2082,6.014495 +A 4.8195,2.700009,2.7,102.84992,270 + +[た] 5 +L 0.0084,7.182694,3.858,7.788491 +L 3.858,5.408697,6.7244,5.408697 +L 5.3766,0.000008,7.2081,0.000008 +L 1.9215,8.999975,-0.0003,0 +A 5.3766,2.000006,2,180,270 + +[だ] 7 +L 6.0311,8.593175,6.574,7.657911 +L 6.6654,9.000001,7.2076,8.064754 +L 0.009,7.182694,3.8579,7.788491 +L 3.8579,5.408697,6.725,5.408697 +L 5.3765,0.000008,7.2083,0.000008 +L 1.9214,8.999975,0.0003,0 +A 5.3765,2.000006,2,180,270 + +[ち] 7 +L 3.3457,9.000001,0.0086,3.000094 +L 0.0404,7.337936,5.4976,7.804259 +L 4.9495,0.000008,1.1238,0.000008 +L 1.8004,4.073567,0.0086,3.000094 +L 3.3419,4.5,4.9495,4.5 +A 4.9495,2.25,2.250002,270,90 +A 3.3419,1.500009,3,90,120.92288 + +[ぢ] 9 +L 6.032,8.593175,6.5731,7.657911 +L 6.6638,9.000001,7.2081,8.064754 +L 3.3463,9.000001,0.0081,3.000094 +L 0.04,7.337936,5.4979,7.804259 +L 4.9497,0.000008,1.1233,0.000008 +L 1.801,4.073567,0.0081,3.000094 +L 3.3421,4.5,4.9497,4.5 +A 4.9497,2.25,2.250002,270,90 +A 3.3421,1.500009,3,90,120.92288 + +[っ] 3 +A 3.6646,-2.059298,5.485071,82.405975,109.80435 +A 4.1791,2.14508,1.25037,328.9459,80.324539 +A 2.2689,3.625166,3.660466,277.96611,324.51058 + +[つ] 3 +A 3.7247,-4.118596,10.970142,82.405975,109.80435 +A 4.7537,4.290153,2.500739,328.9459,80.324539 +A 0.9357,7.250331,7.320932,277.96611,324.51058 + +[づ] 5 +L 6.0306,8.593175,6.5739,7.657911 +L 6.6649,9.000001,7.2078,8.064754 +A 3.725,-4.118596,10.970142,82.405975,109.80435 +A 4.754,4.290153,2.500739,328.9459,80.324539 +A 0.9356,7.250331,7.320932,277.96611,324.51058 + +[て] 4 +L 0.0088,8.305753,7.2084,9.000001 +L 3.024,6.125066,4.3651,8.725748 +L 6.7573,0,7.2084,0 +A 6.7573,4.2,4.2,152.71891,270 + +[で] 6 +L 6.0315,7.59318,6.5737,6.657916 +L 6.664,7.999998,7.208,7.064751 +L 0.009,8.305753,7.2083,9.000001 +L 3.0243,6.125066,4.365,8.725748 +L 6.7565,0,7.2083,0 +A 6.7565,4.2,4.2,152.71891,270 + +[と] 4 +L 1.9738,9.000001,1.9738,4.518838 +L 2.2501,0.000008,6.7588,0.000008 +L 1.5885,4.40069,7.1998,6.125237 +A 2.2501,2.250009,2.25,107.09091,270 + +[ど] 6 +L 6.0313,7.59318,6.5735,6.657916 +L 6.6656,7.999998,7.2071,7.064751 +L 1.9744,9.000001,1.9744,4.518838 +L 2.25,0.000008,6.7587,0.000008 +L 1.5891,4.40069,7.2,6.125237 +A 2.25,2.250009,2.25,107.09091,270 + +[な] 12 +L 0.0094,7.182694,3.8586,7.788491 +L 1.9221,8.999975,0.0007,0 +L 3.543,0.437909,3.2124,0.92425 +L 4.7517,0.000008,4.37,0.000008 +L 5.7517,1.000003,5.7517,5.044813 +L 4.3836,2.48645,4.0393,2.48645 +L 5.7587,1.938132,7.2077,0.565052 +A 5.5927,5.966361,1.369743,34.389755,102.25912 +A 4.0393,1.486447,1,90,214.2037 +A 4.37,1.000003,1,214.19862,270 +A 4.7517,1.000003,1,270,0 +A 4.3836,0.486452,2,46.549682,90 + +[に] 5 +L 3.3934,7.999998,6.4391,7.999998 +L 4.6308,0.500006,7.2076,0.500006 +L 2.6302,2.500003,2.6302,3.499997 +A 14.2485,4.500043,14.248287,163.97862,196.02137 +A 4.6308,2.500003,2,180,270 + +[ぬ] 8 +A 9.1552,6.274758,8.654096,174.11625,222.55464 +A 4.9375,2.299151,4.938053,183.42921,201.09272 +A 1.1409,0.887276,0.887277,200.4013,323.34741 +A 4.926,0.850003,0.85,90,270 +A 4.926,-0.670793,2.370795,16.445831,90 +A -12.0907,7.66871,15.743477,332.32969,4.850815 +A 4.334,2.263015,4.333976,90,183.42921 +A 3.781,3.22235,3.419639,289.55981,80.691909 + +[ね] 9 +L 1.4546,9.000001,1.4546,0.000008 +L 1.905,6.739945,0.0088,2.268624 +L 1.905,6.739945,0,6.739945 +L 2.4815,6.036,0.0088,2.268624 +L 7.2,4.625673,7.2,2.274122 +A 4.9174,0.849601,0.85,90,270 +A 4.9174,-0.671195,2.370795,16.445831,90 +A 4.6302,4.625673,2.570001,0,146.71859 +A 4.9259,2.274122,2.274136,269.78822,0 + +[の] 5 +A 4.937,2.299151,4.938053,183.42921,201.09272 +A 1.1399,0.887276,0.887277,200.4013,323.34741 +A 3.7811,3.22235,3.419639,289.55981,80.691909 +A -12.0909,7.66871,15.743477,332.32969,355.87544 +A 4.3342,2.263015,4.333976,90,183.42921 + +[は] 11 +L 3.0056,7.540661,7.2082,7.540661 +L 5.0475,1.000011,5.0475,9.000001 +L 2.8392,0.437909,2.5086,0.92425 +L 4.0479,0.000008,3.6662,0.000008 +L 3.6798,2.48645,3.3359,2.48645 +L 5.0549,1.938132,6.5042,0.565052 +A 14.2481,4.500043,14.248287,163.97862,196.02137 +A 3.3359,1.486447,1,90,214.2037 +A 3.6662,1.000003,1,214.19862,270 +A 4.0479,1.000003,1,270,0 +A 3.6798,0.486452,2,46.549682,90 + +[ば] 13 +L 3.0059,6.770335,7.2074,6.770335 +L 5.0492,1.000011,5.0492,9.000001 +L 6.0316,8.593175,6.5731,7.657911 +L 6.6638,9.000001,7.2074,8.064754 +L 2.8405,0.437909,2.5099,0.92425 +L 4.0496,0.000008,3.6675,0.000008 +L 3.6811,2.48645,3.3368,2.48645 +L 5.0565,1.938132,6.5055,0.565052 +A 14.247,4.500043,14.248287,163.97862,196.02137 +A 3.3368,1.486447,1,90,214.2037 +A 3.6675,1.000003,1,214.19862,270 +A 4.0496,1.000003,1,270,0 +A 3.6811,0.486452,2,46.549682,90 + +[ぱ] 13 +L 3.0072,6.770335,7.2076,6.770335 +L 5.0491,1.000011,5.0491,9.000001 +L 2.8404,0.437909,2.5102,0.92425 +L 4.0495,0.000008,3.6677,0.000008 +L 3.681,2.48645,3.3371,2.48645 +L 5.0564,1.938132,6.5054,0.565052 +A 14.249,4.500043,14.248287,163.97862,196.02137 +A 3.3371,1.486447,1,90,214.2037 +A 3.6677,1.000003,1,214.19862,270 +A 4.0495,1.000003,1,270,0 +A 3.681,0.486452,2,46.549682,90 +A 6.5075,8.300006,0.69993,0,180 +A 6.5075,8.300006,0.69993,180,360 + +[ひ] 6 +L 0.0086,8.088945,2.5598,8.088945 +L 5.7876,7.506705,5.7876,5.252018 +L 7.21,3.629834,5.7876,7.506705 +A 6.3344,3.727178,5.768395,130.87388,209.88676 +A 2.8081,1.699997,1.7,209.88442,319.11444 +A -1.1651,5.139223,6.954312,319.11581,0.929398 + +[び] 8 +L 6.031,8.593175,6.5721,7.657911 +L 6.6642,9.000001,7.2074,8.064754 +L 0.0089,8.088945,2.5597,8.088945 +L 5.7879,7.506705,5.7879,5.252018 +L 7.2106,3.629834,5.7879,7.506705 +A 6.3353,3.727178,5.768395,130.87388,209.88676 +A 2.8073,1.699997,1.7,209.88442,319.11444 +A -1.1648,5.139223,6.954312,319.11581,0.929398 + +[ぴ] 8 +L 0.0088,8.088945,2.5599,8.088945 +L 5.7874,7.506705,5.7874,5.252018 +L 7.2098,3.629834,5.7874,7.506705 +A 6.3345,3.727178,5.768395,130.87388,209.88676 +A 2.8076,1.699997,1.7,209.88442,319.11444 +A -1.1649,5.139223,6.954312,319.11581,0.929398 +A 6.509,8.300006,0.69993,0,180 +A 6.509,8.300006,0.69993,180,360 + +[ふ] 6 +L 2.5714,9.000001,2.9476,9.000001 +L 0.0079,1.80856,1.2909,4.176998 +L 5.9579,4.176998,7.2086,2.110099 +L 3.3959,6.415369,4.324,1.986991 +A 2.7104,1.648948,1.648951,224.99537,11.829605 +A 2.9476,7.634421,1.365578,35.25473,90 + +[ぶ] 8 +L 6.0307,8.593175,6.5728,7.657911 +L 6.6646,9.000001,7.2064,8.064754 +L 2.5709,9.000001,2.9475,9.000001 +L 0.0085,1.80856,1.2911,4.176998 +L 5.9585,4.176998,7.2089,2.110099 +L 3.3958,6.415369,4.3239,1.986991 +A 2.71,1.648948,1.648951,224.99537,11.829605 +A 2.9475,7.634421,1.365578,35.25473,90 + +[ぷ] 8 +L 2.5712,9.000001,2.947,9.000001 +L 0.0077,1.80856,1.291,4.176998 +L 5.9581,4.176998,7.2091,2.110099 +L 3.396,6.415369,4.3242,1.986991 +A 6.509,8.300006,0.69993,0,180 +A 6.509,8.300006,0.69993,180,360 +A 2.7099,1.648948,1.648951,224.99537,11.829605 +A 2.947,7.634421,1.365578,35.25473,90 + +[へ] 2 +L 0.001,3.575109,2.7445,9.000001 +L 2.7445,9.000001,7.209,0.000008 + +[べ] 4 +L 0.0005,3.575109,2.7451,9.000001 +L 2.7451,9.000001,7.21,0.000008 +L 6.0311,8.593175,6.5739,7.657911 +L 6.6661,9.000001,7.2086,8.064754 + +[ぺ] 4 +L 0.0011,3.575109,2.7457,9.000001 +L 2.7457,9.000001,7.2092,0.000008 +A 6.509,8.300006,0.69993,0,180 +A 6.509,8.300006,0.69993,180,360 + +[ほ] 12 +L 3.0054,6.202811,7.208,6.202811 +L 5.0488,1.000011,5.0488,8.432477 +L 3.0072,8.432477,7.2098,8.432477 +L 2.8405,0.437909,2.5095,0.92425 +L 4.0488,0.000008,3.6667,0.000008 +L 3.6811,2.48645,3.3361,2.48645 +L 5.0558,1.938132,6.5051,0.565052 +A 14.2476,4.500043,14.248287,163.97862,196.02137 +A 3.3361,1.486447,1,90,214.2037 +A 3.6667,1.000003,1,214.19862,270 +A 4.0488,1.000003,1,270,0 +A 3.6811,0.486452,2,46.549682,90 + +[ぼ] 14 +L 3.006,8.432477,7.2083,8.432477 +L 6.0311,10.255325,6.575,9.320061 +L 6.6654,10.662152,7.2083,9.726896 +L 3.0074,6.202811,7.2086,6.202811 +L 5.0487,1.000011,5.0487,8.432477 +L 2.8407,0.437909,2.5097,0.92425 +L 4.0494,0.000008,3.6673,0.000008 +L 3.6813,2.48645,3.3367,2.48645 +L 5.0564,1.938132,6.5057,0.565052 +A 14.2482,4.500043,14.248287,163.97862,196.02137 +A 3.3367,1.486447,1,90,214.2037 +A 3.6673,1.000003,1,214.19862,270 +A 4.0494,1.000003,1,270,0 +A 3.6813,0.486452,2,46.549682,90 + +[ぽ] 14 +L 3.007,8.432477,7.2085,8.432477 +L 3.007,6.202811,7.2096,6.202811 +L 5.0493,1.000011,5.0493,8.432477 +L 2.841,0.437909,2.5107,0.92425 +L 4.0504,0.000008,3.6679,0.000008 +L 3.6816,2.48645,3.3373,2.48645 +L 5.057,1.938132,6.5063,0.565052 +A 14.2485,4.500043,14.248287,163.97862,196.02137 +A 6.5094,9.962157,0.69993,0,180 +A 6.5094,9.962157,0.69993,180,360 +A 3.3373,1.486447,1,90,214.2037 +A 3.6679,1.000003,1,214.19862,270 +A 4.0504,1.000003,1,270,0 +A 3.6816,0.486452,2,46.549682,90 + +[ま] 11 +L 1.2318,0.000008,2.7099,0.000008 +L 0.0007,7.337858,7.2102,7.337858 +L 0.5244,5.067601,6.6515,5.067601 +L 3.6097,1.000003,3.6097,9.000001 +L 3.9585,2.48645,0.9009,2.48645 +L 0.5023,0.437909,0.172,0.92425 +L 5.2022,1.938132,6.6515,0.565052 +A 0.9993,1.486447,1,90,214.2037 +A 1.3299,1.000003,1,214.19862,270 +A 2.6104,1.000003,1,270,0 +A 3.8272,0.486452,2,46.549682,90 + +[み] 5 +L 3.6096,9.000001,0.8811,8.187682 +L 3.6096,9.000001,1.4142,0.135412 +A 3.4835,-0.868387,5.371154,46.073349,117.13813 +A 2.0849,2.110398,2.085764,120.28436,251.24032 +A -1.8872,5.293978,7.921368,318.06275,9.405502 + +[む] 9 +L 4.0462,7.337849,0.0005,7.337849 +L 6.3298,7.337849,7.2096,6.202725 +L 1.8008,1.000003,1.8008,9.000001 +L 6.7119,2.000006,6.7119,2.837858 +L 4.7117,0.000008,2.8,0.000008 +A 2.8,1.000003,1,180,270 +A 4.7117,2.000006,2,270,0 +A 0.8891,4.5,0.911198,0,180 +A 0.8891,4.5,0.911198,180,360 + +[め] 6 +A 9.1551,6.274758,8.654096,174.11625,222.55464 +A 4.9375,2.299151,4.938053,183.42921,201.09272 +A 1.1401,0.887276,0.887277,200.4013,323.34741 +A -12.0911,7.66871,15.743477,332.32969,4.850815 +A 4.334,2.263015,4.333976,90,183.42921 +A 3.7806,3.22235,3.419639,289.55981,80.691909 + +[も] 7 +L 4.6106,4.500077,0.0105,4.500077 +L 5.6211,0.821135,7.1993,2.983676 +L 4.0054,0.000008,3.7651,0.000008 +L 4.6106,7.297233,0.0105,7.297233 +A 4.0054,2.000006,2,270,323.8827 +A 25.2982,6.400414,23.506293,173.65063,193.0735 +A 3.7651,1.400006,1.4,193.07325,270 + +[ゃ] 5 +L 4.3044,1.37384,4.0939,1.37384 +L 1.7847,3.000017,4.0697,3.508745 +L 2.487,4.220796,3.392,0.000008 +L 4.0533,4.500009,4.0533,2.254592 +A 4.3044,2.454204,1.080364,270,102.55273 + +[や] 5 +L 5.0384,2.747663,4.6181,2.747663 +L -0.0006,6.000009,4.5694,7.017473 +L 1.4046,8.441566,3.2143,-0.000008 +L 4.5372,9.000001,4.5372,4.509158 +A 5.0384,4.908392,2.160729,270,102.55273 + +[ゅ] 6 +L 3.6415,0.646979,3.1218,0.000008 +L 3.9718,1.585937,3.9718,4.5 +L 1.8952,1.50006,2.4976,3.037462 +A 9.2819,2.628574,7.471597,165.49475,194.50524 +A 2.4717,1.585937,1.5,321.24082,0 +A 3.9025,2.48633,1.508779,211.13227,158.5767 + +[ゆ] 6 +L 3.6733,1.293949,2.6345,0.000008 +L 4.3346,3.171874,4.3346,9.000001 +L 0.1792,3.00012,1.3862,6.074915 +A 14.9533,5.257149,14.943193,165.49475,194.50524 +A 1.3337,3.171874,3,321.24082,0 +A 4.1952,4.97266,3.017559,211.13227,158.5767 + +[ょ] 10 +L 3.6094,0.500006,3.6094,4.5 +L 3.6094,3.668929,5.4104,3.668929 +L 2.4214,0,3.1604,0 +L 3.7839,1.243225,2.2554,1.243225 +L 2.0565,0.218954,1.8918,0.462125 +L 4.4059,0.969066,5.1302,0.28253 +A 2.3044,0.743228,0.5,90,214.2037 +A 2.4698,0.500006,0.5,214.19862,270 +A 3.11,0.500006,0.5,270,0 +A 3.718,0.243222,1,46.549682,90 + +[よ] 10 +L 3.6086,1.000003,3.6086,9.000001 +L 3.6086,7.337858,7.2099,7.337858 +L 1.2305,0.000008,2.7092,0.000008 +L 3.9568,2.48645,0.8992,2.48645 +L 0.5013,0.437909,0.1706,0.92425 +L 5.2009,1.938132,6.6495,0.565052 +A 0.9979,1.486447,1,90,214.2037 +A 1.3286,1.000003,1,214.19862,270 +A 2.609,1.000003,1,270,0 +A 3.8258,0.486452,2,46.549682,90 + +[ら] 8 +L 4.9717,0.000008,1.1498,0.000008 +L 1.0384,9.000001,2.4738,9.000001 +L 1.8279,4.073567,0.0353,3.000094 +L 3.369,4.5,4.9717,4.5 +A 10.341,3.880607,10.341751,163.77456,184.88424 +A 3.369,1.500009,3,90,120.92288 +A 4.9584,2.250214,2.249831,269.65748,89.657485 +A 2.4738,7.600004,1.4,36.503509,90 + +[り] 5 +L 6.4868,9.000001,6.4868,6 +L 0.6965,8.432409,0.6965,4.389805 +L 1.5182,2.696204,2.6418,4.500077 +A -1.1507,6.000009,7.637026,308.22169,359.99996 +A 2.8512,4.389805,2.155269,179.96931,231.80247 + +[る] 7 +L -0.0006,3,5.4002,9.000001 +L 1.1139,9.000001,5.4002,9.000001 +L 2.6662,0.000008,4.596,0.000008 +L 5.3477,0.110777,3.2238,1.632018 +A 4.596,2.604982,2.604987,270,90 +A 4.596,-0.672914,5.882889,90,141.36389 +A 2.7005,0.900009,0.9,54.394393,270 + +[れ] 11 +L 1.4542,9.000001,1.4542,0.000008 +L 1.9061,6.739945,0.0084,2.268624 +L 1.9061,6.739945,0,6.739945 +L 2.4819,6.036,0.0084,2.268624 +L 7.2067,1.702776,6.8676,0.305626 +L 5.7174,1.818145,6.0901,0.304344 +L 5.543,3.253039,5.543,6.35441 +A 4.5434,6.35441,1,0,90 +A 4.6744,4.877104,2.48045,90.582504,152.14367 +A 6.4782,0.400003,0.4,193.83718,346.36001 +A 11.5434,3.253039,6,180,193.83641 + +[ろ] 5 +L -0.0015,3,5.3993,9.000001 +L 1.113,9.000001,5.3993,9.000001 +L 2.6653,0.000008,4.5951,0.000008 +A 4.5951,2.604982,2.604987,270,90 +A 4.5951,-0.672914,5.882889,90,141.36389 + +[ゎ] 7 +L 2.5307,4.5,2.5307,0 +L 2.7555,3.369972,1.8071,1.134303 +L 2.7555,3.369972,1.8029,3.369972 +L 1.8071,1.134303,3.0946,3.095223 +L 5.4069,1.757682,5.4069,2.25 +A 3.4714,1.718108,1.935664,297.42601,1.171234 +A 4.1236,2.325676,1.285392,356.62528,143.22042 + +[わ] 7 +L 1.4553,9.000001,1.4553,0.000008 +L 1.9043,6.739945,0.0081,2.268624 +L 1.9043,6.739945,-0.0003,6.739945 +L 0.0081,2.268624,2.5831,6.190446 +L 7.2085,3.515363,7.2085,4.5 +A 3.3361,3.436225,3.871328,297.42601,1.171234 +A 4.6412,4.651351,2.570783,356.62528,143.22042 + +[ゐ] 9 +L 3.6078,9.000001,0.8801,8.187682 +L 6.0077,0.628235,5.1853,1.354361 +A 1.1393,0.887276,0.887277,200.4013,323.34741 +A -12.0916,7.66871,15.743477,332.32969,4.846848 +A 4.9367,2.299151,4.938053,180.41925,201.09272 +A 3.8747,2.263015,3.875673,90,180 +A 4.2572,3.22235,2.941344,0,97.476928 +A 3.7795,3.22235,3.419639,289.55981,0 +A 4.6565,0.753788,0.8,48.55281,289.56269 + +[ゑ] 11 +L 1.203,4.999998,4.8028,9.000001 +L 1.9448,9.000001,4.8028,9.000001 +L 2.4834,3.000009,4.2676,3.000009 +L 0.0072,0.000008,2.9262,3.195166 +L 3.13,0.289098,2.3896,1.211099 +L 4.0406,0.259486,5.3365,1.675225 +A 4.2676,4.736655,1.736658,270,90 +A 4.2676,2.551394,3.921926,90,141.36389 +A 2.4834,3.600009,0.6,317.59426,270 +A 3.5979,0.664773,0.6,218.75917,317.52688 +A 6.0742,1.000003,1,270,137.52323 + +[を] 6 +L 0.5339,7.297293,6.2058,7.864893 +L 3.1649,3.623199,7.2068,5.067558 +L 3.7919,-0.000017,6.687,-0.000017 +A -4.3387,9.398422,7.438966,305.79878,356.92979 +A 3.7919,1.865988,1.866,109.65563,270 +A 2.0525,2.868214,2.777515,346.71157,89.341064 + +[ん] 6 +L 7.2067,3,5.7791,0.362464 +L 3.9529,1.845405,4.5168,0.439594 +L 0.0021,0.00006,0.8133,1.884663 +A 27.7969,-5.917022,28.416681,148.33581,167.98161 +A 5.1661,0.700003,0.7,201.85102,331.58023 +A 2.3754,1.212741,1.7,21.850845,156.71968 + +# Japanese Character (カタカナ)----------------------------------- + +[ァ] 4 +L 5.407,4.499787,4.364,2.491546 +L 3.3525,2.999932,3.3525,3.799784 +L 1.8072,4.499787,5.407,4.499787 +A -1.2309,2.99994,4.582888,319.11058,359.99996 + +[ア] 4 +L 7.2058,8.999693,5.1197,4.983221 +L 3.0967,6,3.0967,7.599696 +L 0.0061,8.999693,7.2058,8.999693 +A -6.0699,6.000009,9.165776,319.11058,359.99996 + +[ィ] 2 +L 3.6079,2.843544,3.6079,0.000008 +A -2.3084,11.073339,10.135557,293.95507,319.56784 + +[イ] 2 +L 3.6085,5.68708,3.6085,0.000008 +A -8.2235,22.146678,20.271115,293.95507,319.56784 + +[ゥ] 4 +L 3.6077,4.475613,3.6077,3.628116 +L 5.4108,3.628116,1.8033,3.628116 +L 1.8033,3.628116,1.8033,2.573122 +A 0.8079,3.628116,4.602425,307.47648,359.90101 + +[ウ] 4 +L 3.6097,9.000001,3.6097,7.304998 +L 7.2152,7.304998,0.0001,7.304998 +L 0.0001,7.304998,0.0001,5.195018 +A -1.9914,7.304998,9.20485,307.47648,359.90101 + +[ェ] 3 +L 3.5998,0.250003,3.5998,4.000003 +L 2.2535,4.000003,4.9609,4.000003 +L 1.7961,0.250003,5.3994,0.250003 + +[エ] 3 +L 3.6074,0.500006,3.6074,8.000006 +L 0.914,8.000006,6.3316,8.000006 +L 0.0013,0.500006,7.2086,0.500006 + +[ォ] 4 +L 1.8036,3.369972,5.4076,3.369972 +L 4.2013,4.5,4.2013,0 +L 3.608,0,4.2013,0 +A -0.3631,5.307103,4.957826,295.96514,337.00099 + +[オ] 4 +L -0.0003,6.739945,7.207,6.739945 +L 4.7946,9.000001,4.7946,0.000008 +L 3.6086,0.000008,4.7946,0.000008 +A -4.3335,10.614223,9.915652,295.96514,337.00099 + +[カ] 6 +L 0.008,6.770274,7.2076,6.770274 +L 7.2076,6.770274,7.2076,4.5 +L 4.1059,0.000008,5.6575,0.000008 +L 3.1854,9.000001,3.1854,6.770274 +A -0.102,4.5,7.308749,321.99717,0.000015 +A -5.6022,6.770274,8.787944,309.60977,0 + +[ガ] 8 +L 6.0307,8.593175,6.5757,7.657911 +L 6.6661,9.000001,7.2082,8.064754 +L 0.0086,6.770274,7.2068,6.770274 +L 7.2068,6.770274,7.2068,4.5 +L 4.1051,0.000008,5.6567,0.000008 +L 3.1853,9.000001,3.1853,6.770274 +A -0.1028,4.5,7.308749,321.99717,0.000015 +A -5.603,6.770274,8.787944,309.60977,0 + +[キ] 6 +L 0.4778,6.174892,6.7227,6.739945 +L -0.0062,3.39017,7.2081,3.955222 +L 3.2553,9.000027,3.9628,0.000008 + +[ギ] 5 +L 0.4784,6.174892,6.724,6.739945 +L -0.0077,3.39017,7.2087,3.955222 +L 3.2552,9.000027,3.9634,0.000008 +L 6.0319,8.593175,6.5734,7.657911 +L 6.6673,9.000001,7.2087,8.064754 + +[ク] 3 +L 7.2072,7.304998,2.128,7.304998 +A -5.0885,11.976905,8.59665,306.3574,339.73953 +A -5.4163,11.277723,13.234345,301.55288,342.53135 + +[グ] 5 +L 6.0324,8.593175,6.5746,7.657911 +L 6.6657,9.000001,7.2085,8.064754 +L 7.2071,7.304998,2.1279,7.304998 +A -5.0886,11.976905,8.59665,306.3574,339.73953 +A -5.4164,11.277723,13.234345,301.55288,342.53135 + +[ケ] 4 +L 7.2007,6.77019,1.587,6.77019 +L 5.3297,5.149331,5.3297,6.77019 +A -5.5244,10.053378,7.833738,314.8516,352.27195 +A -0.9789,5.149331,6.308408,305.28741,0 + +[ゲ] 6 +L 6.0308,8.593175,6.573,7.657911 +L 6.6669,9.000001,7.2083,8.064754 +L 7.2013,6.77019,1.5883,6.77019 +L 5.3303,5.149331,5.3303,6.77019 +A -5.5245,10.053378,7.833738,314.8516,352.27195 +A -0.9783,5.149331,6.308408,305.28741,0 + +[コ] 3 +L 7.2089,6,0.0002,6 +L 7.2089,6,7.2089,0.000008 +L 0.0002,0.000008,7.2089,0.000008 + +[ゴ] 5 +L 6.032,8.593175,6.5749,7.657911 +L 6.6653,9.000001,7.2095,8.064754 +L 7.2074,6,0.0001,6 +L 7.2074,6,7.2074,0.000008 +L 0.0001,0.000008,7.2074,0.000008 + +[サ] 4 +L 0.0084,6,7.208,6 +L 1.7946,9.000001,1.7946,3.364773 +L 5.426,9.000001,5.426,3.364773 +A 2.0615,3.364773,3.363475,263.44903,0 + +[ザ] 6 +L 6.0311,8.593175,6.5761,7.657911 +L 6.6665,9.000001,7.2086,8.064754 +L 0.0076,6,7.2072,6 +L 1.7931,9.000001,1.7931,3.364773 +L 5.4245,9.000001,5.4245,3.364773 +A 2.06,3.364773,3.363475,263.44903,0 + +[シ] 3 +L 0.0019,6.448436,1.6957,5.384532 +L 1.0358,9.000001,2.7296,7.936105 +A -1.3382,8.897715,9.089743,281.79998,340.06823 + +[ジ] 5 +L 6.0323,8.593175,6.5738,7.657911 +L 6.6676,9.000001,7.2091,8.064754 +L 0.0032,6.448436,1.6963,5.384532 +L 1.0371,9.000001,2.7309,7.936105 +A -1.3376,8.897715,9.089743,281.79998,340.06823 + +[ス] 3 +L 5.5755,9.000001,0.0003,9.000001 +L 7.1803,0.002009,3.8348,3.347201 +A -4.478,9.000001,10.052282,296.45051,359.9988 + +[ズ] 5 +L 6.03,8.593175,6.575,7.657911 +L 6.666,9.000001,7.2082,8.064754 +L 5.5747,9.000001,0.0009,9.000001 +L 7.1802,0.002009,3.8354,3.347201 +A -4.4774,9.000001,10.052282,296.45051,359.9988 + +[セ] 5 +L 0.0092,6,7.2081,6.7732 +L 5.038,3.200912,7.2081,6.7732 +L 2.4203,3.000009,2.4203,9.000001 +L 5.4198,0.000008,7.2081,0.000008 +A 5.4198,3.000009,3,180,270 + +[ゼ] 7 +L 6.0312,8.593175,6.5734,7.657911 +L 6.6665,9.000001,7.2087,8.064754 +L 0.0091,6,7.208,6.7732 +L 5.0372,3.200912,7.208,6.7732 +L 2.4195,3.000009,2.4195,9.000001 +L 5.4197,0.000008,7.208,0.000008 +A 5.4197,3.000009,3,180,270 + +[ソ] 2 +L 0.0006,8.998453,1.0772,6.612912 +A -5.2685,10.899875,12.612852,300.21629,351.33641 + +[ゾ] 4 +L 6.0324,11.593166,6.5746,10.65791 +L 6.6663,12.000001,7.2099,11.064745 +L 0.0012,8.998453,1.0771,6.612912 +A -5.2686,10.899875,12.612852,300.21629,351.33641 + +[タ] 4 +L 5.0215,3.106724,0.801,5.705858 +L 7.2084,7.304998,2.1292,7.304998 +A -5.0873,11.976905,8.59665,306.3574,339.73953 +A -5.4158,11.277723,13.234345,301.55288,342.53135 + +[ダ] 6 +L 6.0315,8.593175,6.573,7.657911 +L 6.6668,9.000001,7.209,8.064754 +L 5.0221,3.106724,0.7995,5.705858 +L 7.2076,7.304998,2.1284,7.304998 +A -5.0874,11.976905,8.59665,306.3574,339.73953 +A -5.4166,11.277723,13.234345,301.55288,342.53135 + +[チ] 4 +L 0.01,4.5,7.2096,4.5 +L 4.1085,8.16167,4.1085,2.936724 +A 1.1945,18.673462,10.908256,266.25619,297.52632 +A 1.109,3,2.99978,270,0 + +[ヂ] 6 +L 6.0306,8.593175,6.5742,7.657911 +L 6.6652,9.000001,7.2081,8.064754 +L 0.0092,4.5,7.2088,4.5 +L 4.1084,8.16167,4.1084,2.936724 +A 1.1096,3,2.99978,270,0 +A 1.1951,18.673454,10.908256,266.25619,291.53749 + +[ッ] 3 +A -0.3706,3,2.599775,3.302963,26.407165 +A 0.9463,3.343755,2.599775,3.302963,26.407165 +A 0.5127,4.5,4.915949,293.73908,354.80662 + +[ツ] 3 +A -4.3509,6.000009,5.199551,3.302963,26.407165 +A -1.717,6.687519,5.199551,3.302963,26.407165 +A -2.5849,9.000001,9.831898,293.73908,354.80662 + +[ヅ] 5 +L 6.0317,9.935265,6.5739,9.000001 +L 6.667,10.342091,7.2085,9.406845 +A -4.351,6.000009,5.199551,3.302963,26.407165 +A -1.7178,6.687519,5.199551,3.302963,26.407165 +A -2.5843,9.000001,9.831898,293.73908,354.80662 + +[テ] 4 +L -0.0003,6,7.2091,6 +L 0.8998,9.000001,6.2999,9.000001 +L 3.6086,6,3.6086,3 +A 0.6091,3.000017,2.99978,270,359.99969 + +[デ] 6 +L 6.0301,8.593175,6.5751,7.657911 +L 6.6661,9.000001,7.2083,8.064754 +L 0.0003,6,7.209,6 +L 3.6085,6,3.6085,3 +L 0.8997,9.000001,5.3947,9.000001 +A 0.6097,3.000017,2.99978,270,359.99969 + +[ト] 2 +L 3.6105,0.000008,3.6105,9.000001 +A 3.6105,-0.556074,5.623635,52.947326,90 + +[ド] 4 +L 6.0306,8.593175,6.5728,7.657911 +L 6.6666,9.000001,7.2095,8.064754 +L 3.6097,0.000008,3.6097,9.000001 +A 3.6097,-0.556074,5.623635,52.947326,90 + +[ナ] 3 +L 7.2087,6,0.0105,6 +L 4.806,9.000001,4.806,3 +A 1.8065,2.999889,2.99978,270,0.002029 + +[ニ] 2 +L -0.0001,0.500006,7.21,0.500006 +L 0.9658,8.000006,6.2447,8.000006 + +[ヌ] 3 +L 7.2099,9.000001,1.0344,9.000001 +A -4.8862,11.302093,12.313798,293.38658,349.22497 +A -3.1854,-6.135669,13.230185,38.22113,66.529235 + +[ネ] 5 +L 3.61,9.000001,3.61,6.729692 +L 3.61,0.000008,3.61,4.499923 +L 1.0021,6.729692,6.2186,6.729692 +A -12.1791,25.607786,26.35971,297.51547,314.26072 +A 19.399,25.607786,26.35971,233.20281,242.48452 + +[ノ] 1 +A -3.4279,10.125889,10.69691,288.80485,353.95799 + +[ハ] 2 +L 5.3036,9.000036,7.2103,0.000008 +A -25.3394,10.176041,27.305558,338.11917,357.53157 + +[バ] 4 +L 6.0341,8.593175,6.5763,7.657911 +L 6.6673,9.000001,7.2088,8.064753 +L 5.3028,9.000036,7.2109,0.000008 +A -25.3402,10.176041,27.305558,338.11917,357.53157 + +[パ] 4 +L 5.3034,9.000036,7.2101,0.000008 +A 6.5089,8.300006,0.69993,0,180 +A 6.5089,8.300006,0.69993,180,360 +A -25.3389,10.176041,27.305558,338.11917,357.53157 + +[ヒ] 4 +L 0.0034,3.000008,0.0034,9.000001 +L 3.0029,0.000008,6.4829,0.000008 +A 3.0029,3.000008,3,180,270 +A 0.0034,14.482174,9.369352,270,307.62605 + +[ビ] 6 +L 6.0331,8.593175,6.5753,7.657911 +L 6.6663,9.000001,7.2099,8.064753 +L 0.0025,3.000008,0.0025,9.000001 +L 3.0035,0.000008,6.4828,0.000008 +A 3.0035,3.000008,3,180,270 +A 0.0025,14.482174,9.369352,270,307.62605 + +[ピ] 6 +L 0.0038,3.000008,0.0038,9.000001 +L 3.0033,0.000008,6.4834,0.000008 +A 6.5093,8.300006,0.69993,0,180 +A 6.5093,8.300006,0.69993,180,360 +A 3.0033,3.000008,3,180,270 +A 0.0038,14.482174,9.369352,270,307.62605 + +[フ] 2 +L 0.0023,9.000001,7.2104,9.000001 +A -3.2766,9.000001,10.48606,300.87419,0 + +[ブ] 4 +L 6.0328,11.593166,6.5749,10.65791 +L 6.6681,12.000001,7.2103,11.064745 +L 0.0015,9.000001,7.2103,9.000001 +A -3.2774,9.000001,10.48606,300.87419,0 + +[プ] 4 +L 0.0028,9.000001,7.2109,9.000001 +A 6.509,11.300006,0.69993,0,180 +A 6.509,11.300006,0.69993,180,360 +A -3.2776,9.000001,10.48606,300.87419,0 + +[ヘ] 2 +L 0.0034,3.575108,2.7473,9.000001 +L 2.7473,9.000001,7.2101,0.000008 + +[ベ] 4 +L 0.0012,3.575108,2.7472,9.000001 +L 2.7472,9.000001,7.2114,0.000008 +L 6.0339,8.593175,6.5753,7.657911 +L 6.6692,9.000001,7.2114,8.064753 + +[ペ] 4 +L 0.0018,3.575108,2.7478,9.000001 +L 2.7478,9.000001,7.2113,0.000008 +A 6.5094,8.300006,0.69993,0,180 +A 6.5094,8.300006,0.69993,180,360 + +[ホ] 4 +L 0.0024,7.000005,7.2119,7.000005 +L 3.6114,0.000008,3.6114,9.000001 +L 0.0024,1.695099,1.3593,4.481444 +L 7.2196,1.695099,5.8634,4.481444 + +[ボ] 6 +L 6.0329,8.593175,6.5743,7.657911 +L 6.6654,9.000001,7.2076,8.064753 +L 0.003,7.000005,7.2125,7.000005 +L 3.6113,0.000008,3.6113,9.000001 +L 0.003,1.695099,1.3592,4.481444 +L 7.2209,1.695099,5.8633,4.481444 + +[ポ] 6 +L 0.0043,6.999994,7.2103,6.999994 +L 3.6119,0.000008,3.6119,9.000001 +L 0.0043,1.695099,1.3598,4.481444 +L 7.2208,1.695099,5.8646,4.481444 +A 6.4608,8.25,0.749805,0,180 +A 6.4608,8.25,0.749805,180,360 + +[マ] 3 +L 0.0014,9.000001,7.2095,9.000001 +L 4.8923,0,2.3187,2.574053 +A -2.8482,9.000001,10.057259,309.92468,359.97886 + +[ミ] 3 +A 0.0006,-10.245252,19.313144,68.119506,85.194732 +A 0.0006,-10.750115,16.598338,67.262313,84.408401 +A 0.0006,-12.433874,14.372342,59.891525,89.997772 + +[ム] 3 +L -0.0002,0,6.9564,0.983592 +A -2.8624,-2.062326,10.282174,11.570053,36.316238 +A -30.2151,12.629979,33.556786,338.13189,353.78997 + +[メ] 2 +A -7.9221,13.735698,15.855335,299.96797,342.62171 +A -1.4958,-5.497292,11.88732,42.920181,71.855178 + +[モ] 5 +L 0.0038,5.500004,7.2105,5.500004 +L 0.4977,9.000001,6.248,9.000001 +L 2.9088,3.000008,2.9088,9.000001 +L 5.909,0.000008,6.732,0.000008 +A 5.909,3.000008,3,180,270 + +[ャ] 4 +L 1.8096,2.9174,5.4136,3.317837 +L 3.0025,4.50001,3.6134,0.000008 +L 5.4136,3.317837,4.461,1.849587 + +[ヤ] 3 +L 0.0078,5.834772,7.2124,6.635668 +L 7.2124,6.635668,5.3077,3.699158 +L 2.3951,9.000001,3.6112,0.000008 + +[ュ] 3 +L 1.8017,0.250004,5.4071,0.250004 +L 4.4762,4.000002,2.4545,4.000002 +L 4.4762,4.000002,4.2863,0.250004 + +[ユ] 3 +L 0.0034,0.500005,7.2129,0.500005 +L 5.3524,8.000007,1.3091,8.000007 +L 5.3524,8.000007,4.9741,0.500005 + +[ョ] 4 +L 2.1622,0.449999,5.0469,0.449999 +L 5.0469,0.449999,5.0469,4.05 +L 5.0469,4.05,2.1622,4.05 +L 2.1622,2.25,5.0469,2.25 + +[ヨ] 4 +L 0.724,0.899999,6.4933,0.899999 +L 6.4933,0.899999,6.4933,8.100002 +L 6.4933,8.100002,0.724,8.100002 +L 6.4933,4.500002,0.724,4.500002 + +[ラ] 3 +L 0.6048,9.000001,6.6066,9.000001 +L 0.0024,6.658122,7.2119,6.658122 +A 0.319,6.658122,6.893202,285.00651,359.99996 + +[リ] 4 +L 0.7315,4.197144,0.7315,9.000001 +L 6.4924,4.39142,6.4924,9.000001 +L 5.4276,2.100138,2.9437,0.000008 +A 3.4915,4.39142,3,310.19808,0 + +[ル] 4 +L 3.8542,0,3.8542,9.000001 +L 1.4662,8.397007,1.4662,6 +A -11.5433,6.000009,13.010067,332.53695,359.99996 +A 0.5234,6.294707,7.121929,297.89064,339.92936 + +[レ] 2 +L 0.0014,0.000008,0.0014,9.000001 +A -2.6002,11.26587,11.562176,282.99926,328.0621 + +[ロ] 4 +L 0.7228,8.100002,0.7228,0.899999 +L 0.7228,0.899999,6.4928,0.899999 +L 6.4928,0.899999,6.4928,8.100002 +L 6.4928,8.100002,0.7228,8.100002 + +[ヮ] 4 +L 1.8617,4.500087,5.4664,4.500087 +L 5.4664,4.500087,5.4664,3.329143 +L 1.8603,4.500087,1.8603,3.329143 +A 2.0186,3.329143,3.446891,285.0245,0 + +[ワ] 4 +L 0.0025,9.000001,7.2127,9.000001 +L 7.2127,9.000001,7.2127,6.658122 +L -0.0003,9.000001,-0.0003,6.658122 +A 0.3156,6.658122,6.893782,285.0245,0 + +[ヰ] 4 +L 0.4577,6.500006,6.76,6.500006 +L 7.2133,2.500003,0.0115,2.500003 +L 4.7349,9.000001,4.7349,0.000008 +L 2.4934,6.500006,2.4934,2.500003 + +[ヱ] 4 +L 0.0037,0.500005,7.2111,0.500005 +L 5.8654,8.000007,1.3613,8.000007 +L 5.8654,8.000007,3.6133,4.999999 +L 3.6133,4.999999,3.6133,0.500005 + +[ヲ] 4 +L 0.0022,6.658122,7.2124,6.658122 +L 0.0022,9.000001,7.2124,9.000001 +L 7.2124,9.000001,7.2124,6.658122 +A 0.316,6.658122,6.893782,285.0245,0 + +[ン] 2 +L -0.0077,9.000001,1.5481,7.60003 +A -3.307,10.387001,11.065886,290.17376,341.9047 + +[ヴ] 6 +L 6.0325,8.593175,6.5754,7.657911 +L 6.6665,9.000001,7.2087,8.064753 +L 3.6095,9.000001,3.6095,7.304998 +L 7.2164,7.304998,0.0013,7.304998 +L 0.0013,7.304998,0.0013,5.19502 +A -1.9909,7.304998,9.20485,307.47648,359.90101 + +[ヵ] 6 +L 1.805,3.385133,5.4048,3.385133 +L 5.4048,3.385133,5.4048,2.25 +L 3.8532,0,4.63,0 +L 3.3937,4.500002,3.3937,3.385133 +A 1.7496,2.25,3.654374,321.99717,0.000015 +A -1.0005,3.385133,4.393972,309.60977,0 + +[ヶ] 4 +L 5.2233,3.385125,2.4157,3.385125 +L 4.2867,2.574696,4.2867,3.385125 +A -1.14,5.026718,3.916869,314.8516,352.27195 +A 1.1331,2.574696,3.154204,305.28741,0 + +# Japanese Character (漢字G1)----------------------------------- + +[日] 5 +L 4.6673,0,-0.0004,0 +L -0.0004,8.466175,4.6673,8.466175 +L 4.6673,8.466175,4.6673,0 +L -0.0004,0,-0.0004,8.466175 +L -0.0004,4.232839,4.6673,4.232839 + +[月] 7 +L 1.281,8.466175,5.5218,8.466175 +L 5.5218,0,4.2402,0 +L 5.5218,8.466175,5.5218,0 +L 5.5218,3.165154,1.281,3.165154 +L -0.0002,0,1.281,3.043863 +L 1.281,8.466175,1.281,3.043863 +L 1.281,5.834838,5.5218,5.834838 + +[木] 4 +L 0.0001,6.864324,6.7727,6.864324 +L 3.3862,0,3.3862,8.999943 +L 3.658,6.864324,6.7727,1.563403 +L 3.3862,6.651221,0.0001,1.563403 + +[山] 4 +L 2.9595,8.999943,2.9595,0 +L 0,7.398239,0,0 +L 0,0,5.9187,0 +L 5.9187,0,5.9187,7.398239 + +[川] 4 +L -0.0002,0,0.8587,2.697728 +L 6.8034,0,6.8034,8.999943 +L 3.8137,1.067834,3.8137,8.466175 +A -50.612,5.811749,51.565013,356.53775,3.544739 + +[田] 6 +L -0.0003,8.466175,5.9185,8.466175 +L 5.9185,8.466175,5.9185,0.533768 +L -0.0003,8.466175,-0.0003,0.533768 +L 5.9185,0.533768,-0.0003,0.533768 +L 5.9185,4.766905,-0.0003,4.766905 +L 2.9548,8.466175,2.9548,0.533768 + +[人] 7 +L 6.1615,0,4.6456,2.483939 +L 4.6456,2.483939,3.9872,3.858301 +L 3.9872,3.858301,3.6313,5.301311 +L 2.9,5.522666,3.2026,8.9999 +L 1.8885,2.918243,2.9,5.522666 +L 0,0,1.8885,2.918243 +L 3.6313,5.301311,2.9,5.301311 + +[口] 4 +L 6.346,0.533768,0.0002,0.533768 +L 6.346,7.932158,6.346,0.533768 +L 0.0002,0.533768,0.0002,7.932158 +L 0.0002,7.932158,6.346,7.932158 + +[車] 8 +L 6.3459,7.932158,0.4274,7.932158 +L 1.2512,6.330358,5.492,6.330358 +L 5.492,6.330358,5.492,3.165154 +L 1.2512,3.165154,5.492,3.165154 +L 1.2512,3.165154,1.2512,6.330358 +L 6.7732,1.563403,0.0001,1.563403 +L 3.3867,8.999943,3.3867,0 +L 1.2512,4.766905,5.492,4.766905 + +[火] 13 +L 5.4828,6.064883,5.7041,6.608562 +L 4.8818,5.300722,5.4828,6.064883 +L 5.7041,6.608562,5.736,7.398239 +L 1.0364,6.588943,1.0679,7.398239 +L 0.8151,5.906633,1.0364,6.588943 +L 0.2137,4.766905,0.8151,5.906633 +L 6.163,0,4.6453,2.48433 +L 4.6453,2.48433,3.989,3.858613 +L 3.989,3.858613,3.6307,5.300722 +L 2.9018,5.522496,3.2037,8.999943 +L 1.8882,2.918014,2.9018,5.522496 +L 0,0,1.8882,2.918014 +L 3.6307,5.300722,2.9018,5.300722 + +[水] 10 +L 6.7723,1.067834,5.7744,2.821892 +L 5.7744,2.821892,4.7902,4.576101 +L 4.7902,4.576101,3.8131,6.330358 +L 5.0943,5.300722,5.4998,5.833204 +L 5.4998,5.833204,5.9191,6.357163 +L 5.9191,6.357163,6.345,6.864324 +L 2.1046,6.330358,-0.0008,6.330358 +L 2.1046,0,3.3858,0 +L 3.3858,0,3.3858,8.999943 +A -6.4722,6.708894,8.584908,318.92179,357.47308 + +[金] 10 +L -0.0002,0,6.7725,0 +L 6.7725,5.300722,5.6258,5.981646 +L 3.3864,8.999943,5.6258,5.981646 +L 3.3864,8.999943,1.1469,5.981646 +L -0.0002,5.300722,1.1469,5.981646 +L 5.9183,3.69927,0.8236,3.69927 +L 5.5218,2.631236,5.0949,1.334545 +L 5.6258,5.918076,1.1469,5.918076 +L 1.2506,2.631236,1.6779,1.334545 +L 3.3864,5.918076,3.3864,0 + +[土] 3 +L 0.0001,0,6.7731,0 +L 3.3866,8.999943,3.3866,0 +L 6.3458,5.300722,0.4274,5.300722 + +[子] 5 +L 2.1046,0,3.3858,0 +L 0.4266,8.466175,6.3454,8.466175 +L 6.3454,8.466175,3.3858,6.330358 +L -0.0004,4.766905,6.7723,4.766905 +L 3.3858,6.330358,3.3858,0 + +[女] 11 +L 0.3971,0,1.1077,0.07759 +L 1.1077,0.07759,2.0965,0.621268 +L 2.0965,0.621268,4.6518,2.405502 +L 4.6518,2.405502,5.2389,4.112836 +L 5.2389,4.112836,5.4602,5.141331 +L 5.4602,5.141331,5.4917,6.330358 +L 7.2002,6.330358,0.0002,6.330358 +L 3.4253,2.713188,1.7136,3.326576 +L 3.4253,2.713188,6.7733,0 +L 4.2105,2.097418,3.4253,2.713188 +L 1.7136,3.326576,2.9595,8.999943 + +[学] 11 +L -0.0006,3.165154,6.7721,3.165154 +L 6.7721,5.834838,6.7721,7.398239 +L -0.0006,7.398239,6.7721,7.398239 +L -0.0006,5.834838,-0.0006,7.398239 +L 1.2806,5.834838,5.0941,5.834838 +L 5.0941,5.834838,3.3856,4.553307 +L 3.3856,4.553307,3.3856,0 +L 2.1044,0,3.3856,0 +L 1.9643,8.81315,2.8186,7.745217 +L 0.7535,8.81315,1.6078,7.745217 +L 4.6672,7.665249,5.5214,8.999943 + +[生] 5 +L 1.2508,8.466175,-0.0003,5.300722 +L 5.9185,3.69927,0.8539,3.69927 +L -0.0003,0,6.7727,0 +L 6.3454,6.864324,0.6175,6.864324 +L 3.3862,8.999943,3.3862,0 + +[先] 13 +L 6.8027,0,6.8027,1.563403 +L 4.3668,0.532381,4.2558,1.768278 +L 4.2558,1.768278,4.24,4.766905 +L 2.3827,2.802173,2.562,4.766905 +L 1.7757,1.532386,2.3827,2.802173 +L 0.6402,0,1.7757,1.532386 +L 4.24,7.398239,5.9485,7.398239 +L 6.8027,0,4.6673,0 +L 5.9485,7.398239,1.2808,7.398239 +L 0.4265,5.834838,1.8643,8.466175 +L 3.4166,8.999943,3.4166,4.766905 +L 4.3668,0.532381,4.6673,0 +L -0.0004,4.766905,6.8027,4.766905 + +[一] 1 +L -0.0005,4.766905,6.7725,4.766905 + +[二] 2 +L -0.0003,1.067834,7.1997,1.067834 +L 0.8232,7.398239,6.3455,7.398239 + +[三] 9 +L 4.7906,0.533768,7.1996,0.533768 +L 2.3883,0.533768,4.7906,0.533768 +L -0.0004,0.533768,2.3883,0.533768 +L 1.2808,4.232839,2.837,4.232839 +L 2.837,4.232839,4.3928,4.232839 +L 4.3928,4.232839,5.9489,4.232839 +L 4.5241,7.932158,6.3758,7.932158 +L 2.6853,7.932158,4.5241,7.932158 +L 0.8539,7.932158,2.6853,7.932158 + +[四] 12 +L -0.0001,0.533768,-0.0001,7.932158 +L 6.7726,7.932158,6.7726,0.533768 +L 6.7726,0.533768,-0.0001,0.533768 +L 0.8538,2.631236,1.7206,4.274012 +L 4.2403,3.165154,5.9183,3.165154 +L 5.9183,3.165154,5.9183,4.766905 +L 3.8102,7.932158,3.8102,4.964249 +L 1.7206,4.274012,2.1203,5.816803 +L 2.1203,7.932158,2.1203,5.816803 +L -0.0001,7.932158,6.7726,7.932158 +L 4.2403,3.165154,3.9398,3.677913 +L 3.9398,3.677913,3.8102,4.964249 + +[五] 5 +L -0.0002,0.533768,7.1998,0.533768 +L 5.4913,0.533768,5.4913,4.766905 +L 5.4913,4.766905,0.8236,4.766905 +L 6.7728,8.466175,0.3963,8.466175 +L 3.3863,8.466175,2.1048,0.533768 + +[六] 6 +L -0.0003,6.864324,6.7727,6.864324 +L 3.3862,6.864324,3.3862,8.999943 +L -0.0003,0.533768,2.0563,3.898149 +L 4.7164,3.898149,4.6373,4.766905 +L 6.7727,0.533768,4.7164,3.898149 +L 2.0563,3.898149,2.1355,4.766905 + +[七] 8 +L 6.773,0,6.773,0.532381 +L 6.773,0.532381,6.773,1.056389 +L 6.773,1.056389,6.773,1.563403 +L 2.9591,0,2.6586,0.532381 +L 2.6586,0.532381,2.5322,1.945656 +L 2.5322,1.945656,2.5322,8.999943 +L -0.0001,4.766905,7.1999,5.834838 +L 2.9591,0,6.773,0 + +[八] 6 +L 4.871,5.35582,4.6679,8.466175 +L 1.9073,5.062205,2.1356,7.932158 +L 1.9073,5.062205,1.2043,2.742866 +L 4.871,5.35582,5.644,2.906619 +L 7.2306,0,5.644,2.906619 +L -0.0002,0,1.2043,2.742866 + +[九] 10 +L 0.2134,0,2.124,3.098712 +L 2.532,8.999943,2.124,3.098712 +L -0.0003,6.330358,5.0947,6.330358 +L 5.1105,2.231591,5.0947,6.330358 +L 5.2212,0.590154,5.1105,2.231591 +L 5.2212,0.590154,5.5217,0 +L 5.5217,0,7.1997,0 +L 7.1997,0,7.1997,0.532381 +L 7.1997,0.532381,7.1997,1.056389 +L 7.1997,1.056389,7.1997,1.563403 + +[十] 2 +L 3.1725,8.999943,3.1725,0 +L -0.0004,5.300722,6.3454,5.300722 + +[百] 8 +L 5.9491,0,5.9491,6.330358 +L 5.9491,0,1.2814,0 +L 5.9491,3.165154,1.2814,3.165154 +L -0.0001,8.466175,7.2002,8.466175 +L 3.3867,8.466175,-0.0001,8.466175 +L 2.9237,6.330358,3.3713,8.466175 +L 1.2814,0,1.2814,6.330358 +L 1.2814,6.330358,5.9491,6.330358 + +[千] 3 +L 0.854,7.398239,5.4913,8.466175 +L -0.0002,4.766905,6.7728,4.766905 +L 3.3863,0,3.3863,7.981359 + +[円] 6 +L -0.0003,0,-0.0003,8.466175 +L -0.0003,8.466175,5.9489,8.466175 +L 5.9489,8.466175,5.9489,0 +L 5.9489,0,4.6674,0 +L 2.9894,8.466175,2.9894,4.232839 +L -0.0003,4.232839,5.9489,4.232839 + +[年] 6 +L 1.2811,5.300722,1.2811,2.631236 +L 3.813,0,3.813,7.398239 +L 6.7726,7.398239,0.7515,7.398239 +L 1.2811,8.999943,-0.0004,5.834838 +L 6.3758,5.300722,1.2811,5.300722 +L 7.1996,2.097418,-0.0004,2.097418 + +[上] 3 +L 5.9183,5.834838,3.386,5.834838 +L 3.386,8.999943,3.386,0.533768 +L -0.0002,0.533768,7.1998,0.533768 + +[下] 6 +L 5.949,3.69927,5.2257,4.232839 +L 6.8032,7.932158,-0.0003,7.932158 +L 5.2257,4.232839,3.4167,5.594239 +L 3.4167,0,3.4167,5.594239 +L 3.4167,5.602018,3.4167,7.932158 +L 4.5165,4.766459,4.5151,4.767797 + +[中] 5 +L 2.9588,8.999943,2.9588,0 +L -0.0004,3.69927,-0.0004,6.864324 +L 5.9184,3.69927,5.9184,6.864324 +L -0.0004,6.864324,5.9184,6.864324 +L 5.9184,3.69927,-0.0004,3.69927 + +[大] 9 +L 0.2135,0,1.8768,2.504298 +L 1.8768,2.504298,2.6992,4.016863 +L 6.3456,0,4.8487,2.48433 +L 4.8487,2.48433,4.1919,3.858613 +L 4.1919,3.858613,3.8133,5.300722 +L -0.0001,6.330358,6.7729,6.330358 +L 2.6992,4.016863,3.3864,5.834838 +L 3.3864,8.999943,3.3864,5.834838 +L 3.8133,5.300722,3.1846,5.300722 + +[小] 8 +L 2.1356,0,3.3863,0 +L 3.3863,0,3.3863,8.999943 +L -0.0002,2.631236,0.7524,3.903849 +L 0.7524,3.903849,1.1594,4.981592 +L 1.1594,4.981592,1.2813,6.330358 +L 6.8033,2.631236,6.376,3.878382 +L 6.376,3.878382,5.949,5.108731 +L 5.949,5.108731,5.5217,6.330358 + +[本] 6 +L 0,6.864324,6.7731,6.864324 +L 1.678,2.097418,5.095,2.097418 +L 0.2137,2.097418,3.0944,6.864324 +L 6.3458,2.097418,3.6601,6.864324 +L 3.4023,4.498461,3.3865,8.999943 +L 3.3865,0,3.3865,8.999943 + +[力] 5 +L 4.2407,0,6.0416,1.186301 +L -0.0001,6.864324,6.3761,6.864324 +L 2.9539,6.864324,2.9539,8.999943 +A -7.0134,6.864324,9.967338,316.47418,0 +A -41.9833,6.864324,48.35941,353.25717,0 + +[入] 6 +L 3.3863,8.466175,1.2814,8.466175 +L 1.7976,2.840226,2.565,4.214607 +L 2.565,4.214607,2.959,5.300722 +L 2.959,5.300722,4.1148,5.300722 +L -0.0002,0,1.7976,2.840226 +A 20.4762,10.734455,17.239905,187.56048,218.51037 + +[出] 7 +L 3.3862,0,3.3999,8.999943 +L 0.427,5.300722,6.3454,5.300722 +L 0.427,5.300722,0.427,8.466175 +L 0.0001,0,0.0001,3.69927 +L 6.7727,0,6.7727,3.69927 +L 0.0001,0,6.7727,0 +L 6.3454,5.300722,6.3454,8.466175 + +[休] 6 +L 4.6677,5.416711,2.1354,1.563403 +L 4.6677,8.999943,4.6677,0 +L 7.2304,1.563403,4.6677,5.642151 +L 2.1354,6.330358,7.2304,6.330358 +L 0.8542,0,0.8542,6.597464 +A -6.6754,10.627707,8.540418,321.41046,349.01228 + +[男] 14 +L -0.4267,0,0.6951,0.453354 +L 0.6951,0.453354,1.5732,1.135614 +L 1.5732,1.135614,2.9598,2.631236 +L 4.241,0,5.5166,0.524008 +L 5.5166,0.524008,5.9043,1.751283 +L 5.9043,1.751283,5.919,3.165154 +L 5.4917,8.466175,5.4917,5.300722 +L 0.4275,8.466175,5.4917,8.466175 +L 5.4917,6.864324,0.4275,6.864324 +L 0.4275,5.300722,0.4275,8.466175 +L 5.4917,5.300722,0.4275,5.300722 +L 2.9594,8.466175,2.9594,5.300722 +L 0.0002,3.165154,5.919,3.165154 +L 2.9598,2.631236,2.9598,4.233038 + +[林] 11 +L 5.9189,6.864324,7.2001,6.864324 +L 4.6374,6.864324,3.3866,6.864324 +L 0.8239,6.864324,0.0001,6.864324 +L 1.2508,8.999943,1.2508,0 +L 5.0646,0,5.0646,8.999943 +L 7.2001,6.864324,3.3866,6.864324 +L 5.0646,6.18241,2.9593,2.097418 +L 7.2001,2.097418,5.0646,6.097735 +L 1.2508,5.149012,0.0001,3.165154 +L 2.5324,4.232839,1.2508,5.571051 +L 0.0001,6.864324,2.5324,6.864324 + +[森] 13 +L 4.2408,7.932158,6.3762,7.932158 +L 0.4273,7.932158,6.3762,7.932158 +L 3.8138,3.165154,6.8035,3.165154 +L 5.095,0,5.095,4.766905 +L 1.7085,4.766905,1.7085,0 +L 3.3865,7.60941,0,5.300722 +L 6.3762,5.300722,3.3865,7.762163 +L 1.7085,2.440282,0,1.067834 +L 2.5627,1.563403,1.7085,2.594968 +L 5.095,2.440233,3.3865,1.067785 +L 6.3762,1.067834,5.095,2.600518 +L 0,3.165154,2.5627,3.165154 +L 3.3865,4.766905,3.3865,8.999943 + +[目] 6 +L -0.0004,8.466175,5.0641,8.466175 +L 5.0641,0,-0.0004,0 +L -0.0004,0,-0.0004,8.466175 +L -0.0004,3.165154,5.0641,3.165154 +L -0.0004,5.834838,5.0641,5.834838 +L 5.0641,8.466175,5.0641,0 + +[耳] 7 +L 7.1994,8.466175,-0.0002,8.466175 +L 1.6775,1.898091,1.6775,8.466175 +L 5.3529,2.631236,-0.0002,1.563403 +L 5.3529,2.631236,7.1994,2.631236 +L 5.4913,0,5.4913,8.466175 +L 5.4913,6.330358,1.6775,6.330358 +L 5.4913,4.232839,1.6775,4.232839 + +[手] 6 +L 2.1351,0,3.3862,0 +L 5.3,8.090461,5.9486,8.466175 +L -0.0003,3.165154,6.7724,3.165154 +L 0.4266,5.300722,6.3759,5.300722 +L 0.4266,7.398239,5.3,8.090461 +L 3.3862,0,3.3862,7.818596 + +[足] 12 +L 1.1701,2.626976,1.2503,4.232839 +L 2.7529,0.492892,2.3102,0.829069 +L 1.2503,5.834838,1.2503,8.466175 +L 1.2503,8.466175,5.4907,8.466175 +L 5.4907,8.466175,5.4907,5.834838 +L 4.1328,0,6.7726,0 +L 2.3102,0.829069,1.0612,2.278364 +L -0.0004,0,1.1701,2.626976 +L 5.4907,5.834838,1.2503,5.834838 +L 5.918,3.165154,3.3858,3.165154 +L 3.3858,5.834838,3.3858,0.266859 +L 4.1328,0,2.7529,0.492892 + +[雨] 19 +L 0.4268,0,0.4268,6.330358 +L 6.3761,0,5.5218,0 +L 2.1353,1.83051,1.984,2.097418 +L 1.984,2.097418,1.8393,2.364427 +L 1.8393,2.364427,1.7083,2.631236 +L 5.0945,1.83051,4.9432,2.097418 +L 4.9432,2.097418,4.7986,2.364427 +L 4.7986,2.364427,4.6676,2.631236 +L 3.8133,8.466175,6.803,8.466175 +L 2.1353,3.96613,1.984,4.232839 +L 1.984,4.232839,1.8393,4.499848 +L 1.8393,4.499848,1.7083,4.766905 +L 5.0945,3.96613,4.9432,4.232839 +L 4.9432,4.232839,4.7986,4.499848 +L 4.7986,4.499848,4.6676,4.766905 +L 3.4168,8.466175,3.4168,0 +L -0.0002,8.466175,6.803,8.466175 +L 6.3761,0,6.3761,6.330358 +L 0.4268,6.330358,6.3761,6.330358 + +[竹] 7 +L 5.9182,0.000003,5.9182,6.902675 +L 4.6671,0.000003,5.9182,0.000003 +L 0.9338,6.902675,3.3859,6.902675 +L 4.3221,6.902675,7.1994,6.902675 +L 2.1044,0.000003,2.1044,6.902675 +A -7.25,9.210468,8.502694,328.49339,358.58186 +A -4.261,9.392256,8.936877,328.83197,357.48452 + +[貝] 8 +L 1.2819,8.466175,5.9496,8.466175 +L 5.9496,8.466175,5.9496,2.13567 +L 5.9496,2.13567,1.2819,2.13567 +L 1.2819,2.13567,1.2819,8.466175 +L 0.0003,0.000003,2.113,1.112032 +L 6.3769,0.000003,5.1164,1.091966 +L 1.2819,6.368856,5.9496,6.368856 +L 1.2819,4.23304,5.9496,4.23304 + +[石] 6 +L 7.1992,8.466175,-0.0008,8.466175 +L 6.3449,4.767006,2.0807,4.767006 +L 6.3449,0.000003,6.3449,4.767006 +L 2.0807,0.000003,2.0807,4.767006 +L 2.0807,0.000003,6.3449,0.000003 +A -5.3946,9.034875,8.372327,310.10777,356.10522 + +[糸] 8 +L 1.2505,2.631437,-0.0006,0.534068 +L 5.4913,2.631437,6.7725,0.534068 +L -0.0006,4.23304,6.3455,4.767006 +L 0.8232,7.93221,2.959,5.300874 +L 3.386,0.000003,3.386,4.517983 +L 5.064,7.93221,2.2564,4.422953 +L 3.386,9.000045,1.6631,6.897472 +L 6.7725,3.966131,5.9182,5.567881 + +[花] 11 +L 7.2004,0.000003,7.2004,1.601802 +L 0.0004,7.93221,7.2004,7.93221 +L 4.6681,9.000045,4.6681,7.169486 +L 2.5631,9.000045,2.5631,7.169486 +L 4.8818,3.699073,6.8036,4.767006 +L 1.7089,0.000003,1.7089,4.500048 +L 4.2412,5.834939,4.2412,4.500048 +L 4.2412,1.79999,4.2412,5.834939 +L 6.0411,0.000003,7.2004,0.000003 +A -4.0586,7.081341,6.31878,315.23219,348.62364 +A 6.0411,1.79999,1.8,180,270 + +[文] 4 +L 3.3861,7.436394,3.3861,9.000045 +L -0.0004,7.436394,6.7726,7.436394 +A 11.0306,8.123956,9.378007,184.20425,240.02864 +A -4.2583,8.123956,9.378007,299.97135,355.79574 + +[字] 9 +L 3.3871,7.93221,3.3871,9.000045 +L 0.0005,6.368856,0.0005,7.93221 +L 2.1055,0.000003,3.3871,0.000003 +L 0.0005,7.93221,6.7732,7.93221 +L 6.7732,6.368856,6.7732,7.93221 +L 0.0005,3.165205,6.7732,3.165205 +L 1.2817,5.834841,5.0956,5.834841 +L 5.0956,5.834841,3.3871,4.553359 +L 3.3871,4.553359,3.3871,0.000003 + +[犬] 6 +L -0.0006,6.368856,6.7724,6.368856 +L 3.3859,9.000045,3.3859,5.834939 +L 5.0944,8.466175,5.9487,7.436394 +L 3.8132,5.300874,3.1905,5.300874 +A 18.6083,9.183715,15.296256,194.70509,216.89778 +A -16.1924,12.700948,20.747315,322.25314,340.67439 + +[見] 12 +L 4.7679,0.060895,6.986,0.000003 +L 5.7044,8.466175,5.7044,3.699073 +L 6.986,0.000003,6.986,1.601802 +L 1.0367,8.466175,5.7044,8.466175 +L 5.7044,3.699073,1.0367,3.699073 +L 1.0367,8.466175,1.0367,3.699073 +L 1.0367,6.902675,5.7044,6.902675 +L 1.0367,5.300874,5.7044,5.300874 +L -0.0004,0.000003,2.3183,2.195573 +L 2.3183,2.195573,2.3183,3.699073 +L 4.0268,0.99639,4.7679,0.060895 +L 4.0268,3.699073,4.0268,0.99639 + +[夕] 4 +L 6.3754,7.169486,2.4372,7.486783 +L 4.2421,3.16793,1.2818,5.836228 +A -3.7891,10.615222,6.968056,302.9349,346.59712 +A -4.4339,10.362979,11.271442,293.16104,343.54107 + +[校] 10 +L 5.0945,7.436394,5.0945,9.000045 +L 1.281,0.000003,1.281,9.000045 +L 1.7083,6.902675,-0.0002,6.902675 +L 1.281,5.150053,-0.0002,3.165205 +L 2.1048,4.500048,1.281,6.048338 +L 2.959,7.436394,7.1998,7.436394 +L 3.1429,5.332187,4.2406,6.368856 +L 6.7889,5.313904,5.9487,6.368856 +A -0.7921,5.501043,6.780974,305.78221,353.78562 +A 10.9814,5.501043,6.780974,186.21437,234.21778 + +[青] 10 +L 5.4922,0.000003,4.2415,0.000003 +L 5.4922,4.23304,5.4922,0.000003 +L 1.2518,4.23304,5.4922,4.23304 +L 1.2518,0.000003,1.2518,4.23304 +L 0.428,7.93221,6.3465,7.93221 +L 0.0007,5.834939,6.7738,5.834939 +L 0.8245,6.902675,5.9195,6.902675 +L 1.2518,2.13567,5.4922,2.13567 +L 1.2518,3.165205,5.4922,3.165205 +L 3.3873,9.000045,3.3873,5.834939 + +[気] 10 +L 1.2808,6.368856,5.9485,6.368856 +L 0.8538,3.165205,4.6673,0.534068 +L 0.9536,7.93221,6.8027,7.93221 +L 7.1996,0.000003,7.1996,1.601802 +L 0.4265,4.767006,5.9485,4.767006 +L 5.9485,3.159458,5.9485,4.767006 +L 7.1996,0.000003,6.8129,0.000003 +A -9.4742,14.587792,17.511237,303.58627,321.5512 +A -4.4916,10.183618,5.892526,319.65539,348.41281 +A 12.1559,3.159458,6.207136,180,210.59736 + +[名] 8 +L 6.3456,0.000003,6.3456,3.699073 +L 2.1048,3.699073,6.3456,3.699073 +L 6.3456,0.000003,2.1048,0.000003 +L 2.1048,3.683614,2.1048,0.000003 +L 1.9419,7.776931,5.4913,7.776931 +L 1.1746,7.009497,3.3139,4.870114 +L -0.0002,5.834939,1.9419,7.776931 +A -4.6756,13.124572,11.487686,294.0167,332.25654 + +[早] 8 +L 5.9182,8.466175,5.9182,4.767006 +L 0.8232,8.466175,5.9182,8.466175 +L -0.0003,2.631437,6.7724,2.631437 +L 3.402,3.620194,3.3859,4.767006 +L 3.3859,4.767006,3.3859,0.000003 +L 0.8232,4.767006,0.8232,8.466175 +L 5.9182,4.767006,0.8232,4.767006 +L 0.8232,6.616591,5.9182,6.616591 + +[右] 6 +L 6.3762,0.000003,6.3762,4.23304 +L 7.2,6.902675,0,6.902675 +L 6.3762,0.000003,2.1354,0.000003 +L 6.3762,4.23304,2.1102,4.23304 +L 2.1354,0.000003,2.1102,4.23304 +A -12.2716,9.573798,15.2417,323.62327,357.84262 + +[左] 5 +L 4.6676,0.000003,4.6676,3.699073 +L 1.6776,0.000003,7.1999,0.000003 +L 6.7726,3.699073,2.5623,3.699073 +L 7.1999,6.902675,-0.0001,6.902675 +A -12.272,9.573798,15.2417,323.62327,357.84262 + +[町] 9 +L 2.9898,2.13567,-0.0002,2.13567 +L 5.5221,0.000003,5.5221,7.436394 +L 4.2405,0.000003,5.5221,0.000003 +L -0.0002,2.13567,-0.0002,8.466175 +L -0.0002,8.466175,2.9898,8.466175 +L 2.9898,8.466175,2.9898,2.13567 +L 6.8033,7.436394,2.9898,7.436394 +L 1.495,2.13567,1.495,8.466175 +L -0.0002,5.300874,2.9898,5.300874 + +[村] 8 +L 1.2816,0.000003,1.2816,9.000045 +L 1.7085,6.902675,0,6.902675 +L 1.2816,5.150053,0,3.165205 +L 2.1053,4.500048,1.2816,6.048338 +L 3.3865,6.902675,6.8494,6.902675 +L 5.9493,9.000045,5.9493,0.000003 +L 5.9493,0.000003,4.6681,0.000003 +L 3.8138,4.767006,4.6681,3.699073 + +[音] 10 +L 1.251,0.000003,1.251,4.23304 +L 5.4918,0.000003,1.251,0.000003 +L 5.4918,4.23304,5.4918,0.000003 +L 1.251,4.23304,5.4918,4.23304 +L -0.0001,5.834939,6.773,5.834939 +L 0.8237,7.93221,5.9191,7.93221 +L 4.544,5.834939,5.0645,7.93221 +L 2.1021,5.834939,1.6132,7.93221 +L 3.3707,9.000045,3.3707,7.93221 +L 1.251,2.13567,5.4918,2.13567 + +[白] 6 +L 5.5218,7.436394,-0.0002,7.436394 +L -0.0002,7.436394,-0.0002,0.000003 +L -0.0002,0.000003,5.5218,0.000003 +L 5.5218,0.000003,5.5218,7.436394 +L 5.5218,3.699073,-0.0002,3.699073 +L 2.5321,9.000045,2.0544,7.436394 + +[赤] 8 +L 5.9182,7.93221,0.8536,7.93221 +L 0.0004,5.834939,6.7728,5.834939 +L 4.2412,5.834939,4.2412,0.000003 +L 2.9593,0.000003,4.2412,0.000003 +L 0.0004,2.13567,0.8536,4.23304 +L 5.9182,4.23304,6.7728,2.402481 +L 3.3866,9.000045,3.3866,5.834939 +A -4.5233,4.898009,7.117259,316.51316,7.564438 + +[立] 5 +L 0.3968,7.436394,6.3468,7.436394 +L 3.3865,7.436394,3.3865,9.000045 +L 0.0003,0.534068,6.7741,0.534068 +A -6.1766,2.171394,8.282279,359.75289,26.253128 +A -7.0788,6.172651,12.145958,333.75187,0.925812 + +[天] 6 +L 0.4275,5.300874,6.3761,5.300874 +L 6.7726,8.466175,0.0002,8.466175 +L 3.3864,8.466175,3.3864,4.767006 +L 3.8137,4.23304,3.1917,4.23304 +A -7.0551,8.277503,11.016007,311.28739,341.41719 +A 12.3078,6.483013,8.786733,194.83648,227.54574 + +[正] 5 +L 0.0001,0.534068,6.7725,0.534068 +L 6.3452,8.466175,0.4274,8.466175 +L 1.2512,0.534068,1.2512,5.834939 +L 3.3863,0.534068,3.3863,8.466175 +L 3.3863,4.767006,5.9179,4.767006 + +[空] 13 +L 0,7.93221,0,6.902675 +L 6.8032,6.902675,6.8032,7.93221 +L 6.8032,7.93221,0,7.93221 +L 3.4016,7.93221,3.4016,9.000045 +L 1.0676,4.767006,2.5624,6.398288 +L 2.5624,6.398288,2.5624,7.93221 +L 5.9486,3.165205,0.8532,3.165205 +L 3.417,0.000003,3.417,3.165205 +L 0,0.000003,6.8032,0.000003 +L 6.8032,4.767006,6.8032,5.834939 +L 4.2408,7.93221,4.2408,5.901333 +L 4.6751,4.767006,6.8032,4.767006 +A 5.9374,5.901333,1.697592,180,221.92875 + +[王] 4 +L 6.3471,8.466175,0.4279,8.466175 +L 0.0006,0.534068,6.7744,0.534068 +L 1.2825,4.767006,5.5233,4.767006 +L 3.3868,8.466175,3.3868,0.534068 + +[玉] 5 +L 6.347,8.466175,0.4278,8.466175 +L 0.0005,0.534068,6.7729,0.534068 +L 0.8243,4.767006,5.9197,4.767006 +L 3.3867,8.466175,3.3867,0.534068 +L 5.0651,3.165205,5.9197,2.13567 + +[草] 10 +L 4.6685,9.000045,4.6685,7.169486 +L 2.1663,9.000045,2.1663,7.169486 +L 0.0004,7.93221,6.8036,7.93221 +L 5.5231,6.368856,1.2823,6.368856 +L 5.5231,6.368856,5.5231,3.165205 +L 1.2823,6.368856,1.2823,3.165205 +L 5.5231,3.165205,1.2823,3.165205 +L 6.8036,1.601802,0.0004,1.601802 +L 3.3866,0.000003,3.3866,3.165205 +L 1.2823,4.767006,5.5231,4.767006 + +[虫] 8 +L -0.0004,0.000003,3.3858,0.000003 +L 5.9174,3.699073,0.8528,3.699073 +L 0.8528,3.699073,0.8528,6.902675 +L 3.3858,9.000045,3.3858,0.000003 +L 0.8528,6.902675,5.9174,6.902675 +L 5.9174,6.902675,5.9174,3.699073 +L 3.3858,0.000003,6.4567,0.823472 +L 6.772,0.26701,6.3236,1.056242 + +# Japanese Character (漢字G2)----------------------------------- + +[門] 11 +L 0.0002,0.000003,0.0002,8.466175 +L 0.0002,8.466175,2.5332,8.466175 +L 2.5332,8.466175,2.5332,5.300874 +L 5.4921,0.000003,6.774,0.000003 +L 6.774,5.300874,4.2116,5.300874 +L 4.2116,5.300874,4.2116,8.466175 +L 4.2116,8.466175,6.774,8.466175 +L 2.5332,5.300874,0.0002,5.300874 +L 0.0002,6.902675,2.5332,6.902675 +L 6.774,0.000003,6.774,8.466175 +L 4.2116,6.902675,6.774,6.902675 + +[万] 7 +L 7.2012,8.466175,0.0001,8.466175 +L 2.9604,7.380109,2.9604,8.466175 +L 5.9501,5.300874,2.7755,5.300874 +L 5.9501,4.275055,5.9501,5.300874 +L 3.8136,0.000003,5.045,0.000003 +A -8.8779,7.380109,11.837714,321.43228,0 +A -4.6091,4.275055,10.558861,336.11651,0 + +[半] 5 +L 3.3862,9.000045,3.3862,0.000003 +L 6.7723,3.165205,0,3.165205 +L 5.9192,5.834939,0.8546,5.834939 +L 5.4919,8.466175,4.6681,6.902675 +L 0.8546,8.466175,1.6784,7.169486 + +[分] 7 +L 0.0006,4.767006,2.1357,8.466175 +L 4.6673,8.999943,7.2311,4.767006 +L 1.2811,4.767006,5.5219,4.767006 +L 5.5219,4.767006,5.5219,3.244381 +L 3.8141,0.000003,4.6701,0.000003 +A -3.2749,4.892211,6.266618,308.67732,358.85508 +A -1.0767,3.244381,6.599019,330.55108,0 + +[何] 9 +L 0.8537,0.000003,0.8537,6.597516 +L 6.3455,8.466175,6.3455,0.000003 +L 6.3455,0.000003,5.0945,0.000003 +L 2.745,6.368856,2.745,3.165205 +L 2.745,3.165205,4.4542,3.165205 +L 4.4542,3.165205,4.4542,6.368856 +L 4.4542,6.368856,2.745,6.368856 +L 2.5321,8.466175,6.7728,8.466175 +A -6.6752,10.627756,8.540418,321.41046,349.01228 + +[東] 9 +L 6.7727,7.93221,0.0004,7.93221 +L 0.8242,6.368856,5.9195,6.368856 +L 5.9195,6.368856,5.9195,3.165205 +L 5.9195,3.165205,0.8242,3.165205 +L 5.9195,4.767006,0.8242,4.767006 +L 0.8242,6.368856,0.8242,3.165205 +L 3.3866,9.000045,3.3866,0.000003 +L 3.3866,2.84216,0.0004,0.534068 +L 6.3454,0.534068,3.3866,3.098812 + +[西] 11 +L 6.8035,0.000003,6.8035,5.834939 +L 6.8035,5.834939,0.4276,5.834939 +L 0.4276,0.000003,0.4276,5.834939 +L 0.4276,0.000003,6.8035,0.000003 +L 0.0003,8.466175,7.1999,8.466175 +L 2.5627,8.466175,2.5627,4.543202 +L 1.2808,2.631437,2.5627,4.543202 +L 4.2411,8.466175,4.2411,4.621685 +L 4.2411,4.621685,4.6109,3.461892 +L 4.6109,3.461892,6.8035,3.461892 +L 1.2808,2.631437,0.4276,2.631437 + +[北] 9 +L 2.5318,9.000045,2.5318,0.000003 +L 0.4261,6.368856,2.5318,6.368856 +L 7.1998,1.601802,7.1998,0.000003 +L 0.0002,1.601802,2.5318,2.13567 +L 5.5509,5.8448,5.0942,5.8448 +L 4.6669,1.79999,4.6669,9.000045 +L 6.4671,0.000003,7.1998,0.000003 +A 5.5453,8.52043,2.675639,270.09979,308.17573 +A 6.4671,1.79999,1.8,180,270 + +[南] 11 +L 0.3959,6.368856,0.3959,0.000003 +L 5.0639,0.000003,6.3458,0.000003 +L 6.3458,0.000003,6.3458,6.368856 +L 6.7731,7.93221,-0.0006,7.93221 +L 3.3856,9.000045,3.3856,6.368856 +L 0.3959,6.368856,6.3458,6.368856 +L 1.6778,4.23304,5.0639,4.23304 +L 5.0639,2.631437,1.6778,2.631437 +L 3.3856,0.534068,3.3856,4.23304 +L 2.1051,5.835039,2.9597,4.767006 +L 3.8129,4.500048,4.6366,6.101849 + +[明] 12 +L 3.8135,8.466175,6.7737,8.466175 +L 6.7737,8.466175,6.7737,0.000003 +L 6.7737,0.000003,5.5227,0.000003 +L 0,2.631437,0,8.466175 +L 0,8.466175,2.1365,8.466175 +L 2.1365,8.466175,2.1365,2.631437 +L 2.1365,2.631437,0,2.631437 +L 0,5.834939,2.1365,5.834939 +L 3.8135,5.834939,6.7737,5.834939 +L 3.5165,3.165205,6.7737,3.165205 +L 3.8135,8.466175,3.8135,5.834939 +A -8.3218,5.834939,12.134805,331.25958,0 + +[体] 7 +L 4.6687,5.989031,2.1357,2.13572 +L 4.6687,8.999943,4.6687,0.000003 +L 7.2311,2.13572,4.6687,6.214468 +L 2.1049,6.902675,7.2002,6.902675 +L 0.8552,0.000003,0.8552,6.597516 +L 3.3868,2.13567,5.9492,2.13567 +A -6.6751,10.627756,8.540418,321.41046,349.01228 + +[間] 16 +L 2.1356,1.067886,2.1356,4.767006 +L 2.1356,4.767006,4.6686,4.767006 +L 4.6686,4.767006,4.6686,1.067886 +L 4.6686,1.067886,2.1356,1.067886 +L 0.0005,0.000003,0.0005,8.466175 +L 0.0005,8.466175,2.5321,8.466175 +L 2.5321,8.466175,2.5321,5.300874 +L 5.4923,0.000003,6.7728,0.000003 +L 6.7728,5.300874,4.2104,5.300874 +L 4.2104,5.300874,4.2104,8.466175 +L 4.2104,8.466175,6.7728,8.466175 +L 2.5321,5.300874,0.0005,5.300874 +L 0.0005,6.902675,2.5321,6.902675 +L 6.7728,0.000003,6.7728,8.466175 +L 4.2104,6.902675,6.7728,6.902675 +L 2.1356,3.165205,4.6686,3.165205 + +[岩] 10 +L 5.9195,0.000003,5.9195,3.165205 +L 5.9195,3.165205,1.7096,3.165205 +L 5.9195,6.902675,5.9195,8.466175 +L 0.855,8.466175,0.855,6.902675 +L 3.388,9.000045,3.388,6.902675 +L 5.9195,6.902675,0.855,6.902675 +L 0.0004,5.300874,6.7741,5.300874 +L 5.9195,0.000003,1.7096,0.000003 +L 1.7096,3.165205,1.7096,0.000003 +A -2.4513,5.996364,5.032233,299.15757,352.05572 + +[米] 6 +L 3.3865,0.000003,3.3865,9.000045 +L 6.7726,5.834939,0.0003,5.834939 +L 0.8241,8.466175,1.6787,7.169486 +L 5.0648,6.902675,5.9194,8.466175 +L 3.3865,5.637792,0.0003,1.601802 +L 6.3453,1.601802,3.6372,5.834939 + +[茶] 9 +L 0.0002,7.93221,6.8034,7.93221 +L 4.6683,9.000045,4.6683,7.169486 +L 2.1353,9.000045,2.1353,7.169486 +L 3.3864,6.368856,0.2131,3.699073 +L 3.4172,6.368856,6.5904,3.699073 +L 3.3864,4.767006,3.3864,0.000003 +L 1.2807,3.165205,5.5215,3.165205 +L 1.708,1.601802,0.6404,0.534068 +L 5.0647,1.601802,6.1323,0.534068 + +[肉] 8 +L 0.0001,0.000003,0.0001,7.93221 +L 4.6682,0.000003,5.9192,0.000003 +L 0.0001,7.93221,5.9192,7.93221 +L 5.9192,0.000003,5.9192,7.93221 +L 2.781,7.655986,5.066,5.300874 +L 5.066,2.13567,2.9281,4.130527 +A -2.8733,9.095371,5.833295,312.0968,359.06353 +A -0.3628,4.617969,3.325218,294.89791,2.56868 + +[牛] 4 +L -0.0007,3.699073,6.773,3.699073 +L 3.3869,9.000045,3.3869,0.000003 +L 0.9884,6.902675,6.3457,6.902675 +A -3.2524,8.415888,4.503674,316.23802,0.639923 + +[馬] 12 +L 6.7848,2.045247,6.7736,3.699073 +L 6.7736,3.699073,0.8545,3.699073 +L 0.8545,3.699073,0.8545,8.466175 +L 0.8545,8.466175,6.3758,8.466175 +L 3.3861,8.466175,3.3861,3.699073 +L 0.8545,6.902675,5.9499,6.902675 +L 0.8545,5.300874,5.9499,5.300874 +L -0.0001,0.800976,0.4272,2.13567 +L 1.7091,2.13567,2.1364,1.334844 +L 3.3861,2.13567,3.8134,1.334844 +L 5.0953,2.13567,5.5226,1.334844 +A 4.6568,2.083596,2.129234,281.88272,358.96798 + +[鳥] 14 +L 6.7721,2.631437,1.2509,2.631437 +L -0.0002,0.000003,0.832,1.61305 +L 2.5314,0.800976,2.083,1.589961 +L 3.8133,0.800976,3.3649,1.590209 +L 5.4916,0.000003,4.6679,1.602051 +L 6.7721,2.631437,6.7721,1.135766 +L 1.2509,4.23304,7.1994,4.23304 +L 1.2509,5.834939,5.4916,5.834939 +L 5.4916,6.902675,1.2509,6.902675 +L 1.2509,2.631437,1.2509,7.970461 +L 3.8133,9.000045,3.131,7.970461 +L 5.4916,5.834939,5.4916,7.970461 +L 5.4916,7.970461,1.2509,7.970461 +A 5.4384,1.139531,1.333538,301.29496,359.83906 + +[魚] 14 +L 0.0004,0.000003,0.8536,1.601802 +L 2.5628,1.601802,2.9901,0.26701 +L 4.2412,1.601802,4.6671,0.26701 +L 5.949,1.601802,6.8036,0.26701 +L 4.6671,7.70355,1.8147,8.013319 +L 3.9119,6.368856,0.8536,6.368856 +L 4.6671,7.70355,3.9119,6.368856 +L 5.949,3.165205,5.949,6.368856 +L 3.9119,6.368856,5.949,6.368856 +L 5.949,3.165205,0.8536,3.165205 +L 0.8536,6.368856,0.8536,3.165205 +L 3.4174,6.368856,3.4174,3.165205 +L 5.949,4.767006,0.8536,4.767006 +A -1.2283,9.548329,3.408533,291.12463,350.74298 + +[新] 15 +L 3.3858,4.233041,-0.0004,4.233041 +L 3.3858,5.834742,-0.0004,5.834742 +L 1.6773,5.834742,1.6773,0.000003 +L 6.3453,5.300974,6.3453,0.000003 +L 0.4269,7.703452,0.8535,6.36866 +L 2.1046,6.1017,2.5319,7.970461 +L -0.0004,1.067664,1.6773,3.932786 +L 2.9592,2.135473,1.6773,3.737373 +L 3.1056,8.043295,-0.0004,8.043295 +L 1.6773,8.043295,1.6773,9.142293 +L 4.2404,7.970461,4.2404,5.300974 +L 4.2404,7.970461,5.7534,7.970461 +L 4.2404,5.300974,7.1999,5.300974 +A -12.6352,5.300974,16.875527,341.69213,0 +A 5.7534,10.196553,2.226087,270,310.51983 + +[古] 6 +L 5.9488,0.533945,5.9488,4.233041 +L 6.8033,6.902528,-0.0005,6.902528 +L 5.9488,4.233041,0.8541,4.233041 +L 3.4165,8.999946,3.4165,4.233041 +L 5.9488,0.533945,0.8541,0.533945 +L 0.8541,4.233041,0.8541,0.533945 + +[長] 8 +L 1.2806,8.504329,6.3451,8.504329 +L 1.2806,0.000003,1.2806,8.504329 +L 6.3451,3.470415,5.5214,2.135473 +L 6.7724,0.000003,2.6472,3.737473 +L 1.2806,6.902528,5.9487,6.902528 +L 1.2806,5.300974,5.9487,5.300974 +L -0.0006,3.737473,6.7724,3.737473 +A -0.2472,8.226568,8.230312,271.71943,299.56167 + +[高] 14 +L 2.105,2.669538,4.6372,2.669538 +L 4.6372,2.669538,4.6372,1.067664 +L 4.6372,1.067664,2.105,1.067664 +L 6.3457,4.233041,6.3457,0.000003 +L 6.3457,0.000003,5.4918,0.000003 +L 1.6777,6.902528,5.0645,6.902528 +L 1.6777,5.300974,1.6777,6.902528 +L 0.4273,4.233041,6.3457,4.233041 +L 5.0645,6.902528,5.0645,5.300974 +L 5.0645,5.300974,1.6777,5.300974 +L 2.105,1.067664,2.105,2.669538 +L 3.3862,7.970461,3.3862,8.999946 +L 0.4273,0.000003,0.4273,4.233041 +L 0,7.970461,6.773,7.970461 + +[多] 8 +L 3.3861,5.839665,1.9213,7.441564 +L 6.3757,3.475338,2.5896,3.779556 +L 5.5211,7.708375,2.5952,8.010759 +L 3.9997,1.060324,2.3626,3.508039 +A -0.7833,12.758837,8.078058,278.61201,321.30261 +A 0.264,7.111534,7.111534,267.86721,329.24905 +A 0.4125,5.371249,2.696786,270.29078,323.82809 +A 0.0384,10.352294,3.466629,276.42274,317.50997 + +[少] 5 +L 2.1041,3.203538,3.3853,3.203538 +L 3.3853,3.203538,3.3853,8.999977 +L 1.2803,7.436474,-0.0009,4.766939 +L 5.4909,7.436474,6.7721,5.567765 +A -2.3735,9.571946,9.861673,283.92276,327.2225 + +[行] 7 +L 5.4915,0.000003,5.4915,5.834742 +L 3.3859,8.504329,6.7727,8.504329 +L 4.2096,0.000003,5.4915,0.000003 +L 1.2508,8.999946,-0.0003,6.902528 +L 2.9593,5.834742,7.1993,5.834742 +L 1.2508,0.000003,1.2508,5.567734 +A -4.4673,8.132974,6.2669,315.462,348.67668 + +[来] 7 +L 6.3761,7.970461,0.4269,7.970461 +L 3.3865,8.999946,3.3865,0.000003 +L 6.7726,4.233041,-0.0004,4.233041 +L 6.3761,0.533945,3.4586,4.233041 +L 3.3865,3.989467,-0.0004,0.533945 +L 1.7081,5.567734,1.2668,6.89782 +L 5.0949,5.567734,5.4816,6.91417 + +[帰] 16 +L 6.3445,1.067664,6.3445,3.203506 +L 6.7718,3.737473,6.7718,4.766908 +L 6.3445,7.436444,2.9584,7.436444 +L 2.9584,6.36866,6.3445,6.36866 +L 5.4906,1.067664,6.3445,1.067664 +L 2.9584,3.203506,2.9584,1.067664 +L 6.3445,3.203506,2.9584,3.203506 +L 0.4261,7.436444,0.4261,5.904009 +L 1.2499,8.999946,1.2499,4.766908 +L 2.9584,8.504329,6.3445,8.504329 +L 6.3445,6.36866,6.3445,8.504329 +L 2.5311,4.766908,2.5311,3.737473 +L 6.7718,4.766908,2.5311,4.766908 +L 4.6514,0.000003,4.6514,4.766908 +A -2.0943,5.904009,2.52049,326.15319,0 +A -8.4589,4.766908,9.708885,330.59384,0 + +[食] 10 +L 3.4164,8.999946,6.3759,6.36866 +L -0.0006,6.36866,3.4164,8.999946 +L 5.0947,3.203506,5.0947,6.36866 +L 5.0947,6.36866,1.7079,6.36866 +L 5.0947,4.766908,1.7079,4.766908 +L 1.7079,3.203506,5.0947,3.203506 +L 6.3759,2.669538,5.5213,1.601605 +L 1.7079,0.299787,1.7079,6.36866 +L 6.3759,0.000003,2.6423,3.203506 +A -0.8167,8.20229,8.296013,278.62019,300.68267 + +[聞] 17 +L -0.0007,0,-0.0007,8.4662 +L -0.0007,8.4662,2.5315,8.4662 +L 2.5315,8.4662,2.5315,5.300847 +L 5.4911,0,6.7723,0 +L 6.7723,5.300847,4.2092,5.300847 +L 4.2092,5.300847,4.2092,8.4662 +L 4.2092,8.4662,6.7723,8.4662 +L 2.5315,5.300847,-0.0007,5.300847 +L -0.0007,6.902699,2.5315,6.902699 +L 6.7723,0,6.7723,8.4662 +L 4.2092,6.902699,6.7723,6.902699 +L 5.4911,4.728779,1.2812,4.728779 +L 4.6673,-0.038126,4.6673,4.728779 +L 4.6673,2.535388,2.1043,2.535388 +L 4.6673,3.603024,2.1043,3.603024 +L 2.1043,1.159447,2.1043,4.728779 +L 1.2812,1.029535,5.9576,1.767016 + +[読] 19 +L 2.9587,3.737473,2.9587,4.766908 +L 2.9587,4.766908,7.1995,4.766908 +L 7.1995,4.766908,7.1995,3.737473 +L 7.1995,0.000003,7.1995,1.067664 +L 7.1995,7.970461,2.9587,7.970461 +L 6.7722,6.36866,3.3853,6.36866 +L 5.0637,8.999946,5.0637,6.36866 +L 5.491,0.899996,5.491,3.203506 +L 6.3904,0.000003,7.1995,0.000003 +L -0.0008,6.902528,2.5314,6.902528 +L 0.4265,8.504329,2.1041,8.504329 +L 0.4265,5.300974,2.1041,5.300974 +L 0.4265,4.233041,2.1041,4.233041 +L 0.4265,2.669538,2.1041,2.669538 +L 0.4265,0.000003,0.4265,2.669538 +L 2.1041,0.000003,0.4265,0.000003 +L 2.1041,2.669538,2.1041,0.000003 +A 0.2563,2.938876,3.992384,312.59756,3.800278 +A 6.3904,0.899996,0.9,180,270 + +[書] 12 +L 5.5217,0.000003,1.2817,0.000003 +L 1.2817,0.000003,1.2817,2.669538 +L 1.2817,2.669538,5.5217,2.669538 +L 5.5217,2.669538,5.5217,0.000003 +L -0.0002,3.737473,6.8036,3.737473 +L 1.2817,4.766908,5.5217,4.766908 +L 1.2817,5.834742,5.5217,5.834742 +L 1.2817,7.970461,5.5217,7.970461 +L 5.5217,5.834742,5.5217,7.970461 +L 1.2817,1.334771,5.5217,1.334771 +L 3.3866,8.999946,3.3866,3.737473 +L 6.7735,6.902528,-0.0002,6.902528 + +[話] 15 +L -0.0003,6.902528,2.5319,6.902528 +L 0.427,8.504329,2.1046,8.504329 +L 0.427,5.300974,2.1046,5.300974 +L 0.427,4.233041,2.1046,4.233041 +L 0.427,2.669538,2.1046,2.669538 +L 0.427,0.000003,0.427,2.669538 +L 2.1046,0.000003,0.427,0.000003 +L 2.1046,2.669538,2.1046,0.000003 +L 2.9592,5.834742,7.2,5.834742 +L 6.3454,0.000003,3.8131,0.000003 +L 3.8131,3.203506,3.8131,0.000003 +L 6.3454,0.000003,6.3454,3.203506 +L 3.8131,3.203506,6.3454,3.203506 +L 5.0796,3.203506,5.0796,8.080206 +A 3.6184,17.50551,9.5379,268.60517,289.31208 + +[買] 14 +L -0.0004,6.902525,-0.0004,8.504326 +L 6.3761,6.902525,-0.0004,6.902525 +L 6.3761,8.504326,6.3761,6.902525 +L -0.0004,8.504326,6.3761,8.504326 +L 0.8542,5.83474,5.5215,5.83474 +L 0.8542,5.83474,0.8542,1.067661 +L 0.8542,1.067661,5.5215,1.067661 +L 5.5215,5.83474,5.5215,1.067661 +L 2.1249,6.902525,2.1249,8.504326 +L 4.2508,6.902525,4.2508,8.504326 +L -0.0004,0,1.1302,1.067661 +L 0.8542,4.233038,5.5215,4.233038 +L 0.8542,2.669536,5.5215,2.669536 +L 6.3761,0,5.2455,1.067661 + +[教] 15 +L 1.2807,0.000003,2.1353,0.000003 +L 0.4268,7.970461,2.959,7.970461 +L -0.0005,6.36866,3.1419,6.36866 +L 1.708,8.999946,1.708,6.36866 +L -0.0005,1.601605,3.8129,3.203506 +L 6.4811,5.687489,6.4811,7.169585 +L 2.959,4.500197,1.053,4.500197 +L 2.959,4.500197,2.1353,2.498701 +L 2.1353,0.000003,2.1353,2.498701 +L 4.1877,6.606732,4.7292,4.162337 +L 4.6675,7.169585,7.4436,7.169585 +A -11.3583,14.053431,15.662049,318.8023,336.08131 +A 0.2811,9.455826,4.835225,316.4037,354.59011 +A -0.5721,5.687489,7.053305,306.25872,0 +A 11.6157,5.687489,7.053305,192.48774,233.74127 + +[朝] 16 +L 0.4267,3.203506,0.4267,6.36866 +L -0.0006,7.970461,3.3855,7.970461 +L -0.0006,1.601605,3.3855,1.601605 +L 2.9589,3.203506,0.4267,3.203506 +L 2.9589,3.203506,2.9589,6.36866 +L 0.4267,6.36866,2.9589,6.36866 +L 2.9589,4.766908,0.4267,4.766908 +L 1.677,8.999946,1.677,6.36866 +L 1.677,3.203506,1.677,0.000003 +L 4.6674,8.466176,6.7724,8.466176 +L 6.7724,8.466176,6.7724,0.000003 +L 6.7724,0.000003,5.5213,0.000003 +L 4.6674,5.834941,6.7724,5.834941 +L 4.3697,3.165206,6.7724,3.165206 +L 4.6674,8.466176,4.6674,5.834941 +A -7.4679,5.834941,12.134805,331.25958,0 + +[昼] 13 +L 0.4273,0,6.8038,0 +L 1.2819,8.504326,1.2819,6.902525 +L 2.1358,4.766905,2.1358,1.601603 +L 2.1358,1.601603,5.0953,1.601603 +L 2.1358,4.766905,3.6152,4.766905 +L 3.6152,4.766905,5.0953,4.766905 +L 5.0953,1.601603,5.0953,4.766905 +L 2.1358,3.203504,5.0953,3.203504 +L 1.2819,8.504326,5.9492,8.504326 +L 1.2819,6.902525,5.9492,6.902525 +L 5.9492,8.504326,5.9492,6.902525 +A -9.4826,8.559719,10.890787,330.54016,351.24743 +A 16.7137,8.559719,10.890787,188.75256,209.45983 + +[夜] 10 +L 3.3867,7.970461,3.3867,8.999946 +L 5.9491,5.834742,3.8133,5.834742 +L 5.9491,4.233041,5.9491,5.834742 +L -0.0001,7.970461,6.7729,7.970461 +L 0.8545,0.000003,0.8545,4.500048 +L 5.5485,3.461101,3.6978,5.320941 +A -6.6758,8.530291,8.540418,321.41046,349.01228 +A 0.037,6.416521,3.820929,302.76515,351.24244 +A -3.4634,8.632406,10.389883,303.81378,334.94871 +A 12.5548,8.632406,10.389883,205.20964,236.18621 + +[方] 6 +L 3.3859,7.436444,3.3859,8.999946 +L 4.2405,0.000003,5.0643,0.000003 +L 6.7728,7.436444,-0.0002,7.436444 +L 5.9182,4.766908,2.6805,4.766908 +A -3.1707,3.935809,9.127246,334.45539,5.224472 +A -9.9857,7.436444,12.945145,324.93821,0 + +[午] 4 +L 6.8035,3.737473,-0.0003,3.737473 +L 5.9489,7.436444,0.9621,7.436444 +L 3.3865,0.000003,3.3865,7.436444 +A -3.832,9.22806,5.118516,318.47514,357.44596 + +[前] 16 +L 2.9591,0.000003,2.6628,0.000003 +L 2.6628,0.000003,2.3805,0.000003 +L 2.3805,0.000003,2.1045,0.000003 +L 6.0497,0.000003,6.3453,0.000003 +L 5.7667,0.000003,6.0497,0.000003 +L 5.4914,0.000003,5.7667,0.000003 +L -0.0004,7.436444,7.1999,7.436444 +L 0.8542,0.000003,0.8542,5.834742 +L 2.9591,0.000003,2.9591,5.834742 +L 2.9591,5.834742,0.8542,5.834742 +L 2.9591,2.669538,0.8542,2.669538 +L 0.8542,4.233041,2.9591,4.233041 +L 4.6676,1.601605,4.6676,5.834742 +L 6.3453,0.000003,6.3453,6.36866 +L 5.0942,8.999946,4.6676,7.703452 +A -0.5433,7.436444,3.075234,0,30.55931 + +[後] 12 +L 1.2814,0.000003,1.2814,4.500048 +L 7.2306,4.766908,2.5626,4.766908 +L 4.6675,8.999946,3.8192,6.796942 +L 4.4959,5.325401,5.9487,8.504329 +L 4.6675,3.203506,6.376,2.936596 +A -6.2482,8.530291,8.540418,321.41046,349.01228 +A -6.6755,10.627759,8.540418,321.41046,349.01228 +A -9.3787,16.776526,20.970303,306.86869,318.70182 +A -3.358,2.604385,8.312051,15.080108,40.209152 +A 4.1611,4.158621,3.129195,11.209045,44.931869 +A 19.8121,16.776526,20.970303,222.04853,233.1313 +A -11.0872,17.043435,20.970303,312.95756,318.70182 + +[毎] 10 +L 1.2813,8.999946,0.0001,6.368658 +L 7.1997,7.970461,0.7797,7.970461 +L 1.7086,6.368658,5.9486,6.368658 +L 0.0001,4.23304,7.1997,4.23304 +L 3.8135,4.766908,3.8135,5.834742 +L 3.3862,2.669538,3.3862,3.737373 +L 4.2401,0.000003,5.2236,0.257176 +L 1.2651,2.135473,7.1997,2.135473 +A -13.2728,5.551583,19.239052,344.02664,2.434067 +A -8.5389,5.300876,10.302929,335.74021,5.948761 + +[週] 18 +L 5.0694,0,7.2003,0 +L 1.251,1.067661,0.1989,0.015186 +L 0,4.766905,1.251,4.766905 +L 1.251,1.067661,1.251,4.766905 +L 3.3868,5.83474,5.9191,5.83474 +L 3.8134,6.902525,5.5219,6.902525 +L 4.668,7.97031,4.668,5.83474 +L 3.8134,4.233037,3.8134,2.669536 +L 3.8134,2.669536,5.4918,2.669536 +L 5.4918,2.669536,5.4918,4.233037 +L 5.4918,4.233037,3.8134,4.233037 +L 5.9191,1.601603,6.773,1.601603 +L 6.773,1.601603,6.773,8.504324 +L 6.773,8.504324,2.5322,8.504324 +L 2.5322,8.504324,2.5322,4.233037 +L 0.4273,8.504324,1.251,7.436441 +A 5.0694,7.363012,7.362973,238.75988,270 +A -4.2268,4.233037,6.734313,339.5233,0 + +[曜] 21 +L -0.0001,8.504324,-0.0001,2.135471 +L -0.0001,2.135471,1.2811,2.135471 +L 1.2811,2.135471,1.2811,8.504324 +L 1.2811,8.504324,-0.0001,8.504324 +L -0.0001,5.332732,1.2811,5.332732 +L 2.5623,8.504324,4.2406,8.504324 +L 4.2406,6.368655,4.2406,8.504324 +L 4.1278,6.78817,2.675,5.949144 +L 6.803,2.669536,2.9896,2.669536 +L 6.803,1.601603,2.9896,1.601603 +L 7.2303,0,2.9896,0 +L 7.2303,4.233037,2.9896,4.233037 +L 2.9896,0,2.9896,4.233037 +L 5.3768,4.304583,4.843,5.229426 +L 5.1099,0,5.1099,4.233037 +L 2.5623,7.436441,3.7405,7.436441 +L 5.5519,8.504324,7.2303,8.504324 +L 7.2303,6.368655,7.2303,8.504324 +L 7.1175,6.78817,5.6647,5.949144 +L 5.5519,7.436441,6.7302,7.436441 +A -2.6025,8.002762,6.743704,314.6294,335.60214 + +[作] 7 +L 0.8537,0.000003,0.8537,6.597516 +L 3.1141,6.902528,7.1994,6.902528 +L 4.2398,0.000003,4.2398,6.902528 +L 6.7721,4.766908,4.2398,4.766908 +L 6.7721,2.669538,4.2398,2.669538 +A -6.6759,10.627756,8.540418,321.41046,349.01228 +A -4.5709,10.627956,8.540418,321.41046,349.01228 + +[海] 13 +L 1.2507,7.970461,0.427,8.999946 +L 0.8234,5.834742,-0.0003,6.902528 +L 1.2507,3.737473,-0.0003,0.26701 +L 3.3865,8.999946,2.1053,6.368658 +L 7.2,7.970461,2.885,7.970461 +L 2.1053,4.23304,7.2,4.23304 +L 4.2446,3.623762,5.06,2.210883 +L 4.5718,5.792628,5.1399,4.809071 +L 4.6369,0.000003,5.6834,0.198711 +L 3.3865,6.368658,6.393,6.368658 +L 2.9592,1.601605,7.2,1.601605 +A -11.5108,5.300876,14.9356,345.65963,4.099731 +A -11.5108,5.300876,17.9356,343.47276,3.413086 + +[時] 12 +L 0.0003,7.970458,0.0003,2.135471 +L 0.0003,2.135471,1.7095,2.135471 +L 1.7095,2.135471,1.7095,7.970458 +L 1.7095,7.970458,0.0003,7.970458 +L 0.0003,5.300971,1.7095,5.300971 +L 3.3871,7.970458,6.8041,7.970458 +L 5.0956,0,5.9495,0 +L 3.3871,2.669536,4.2417,1.601652 +L 5.0956,8.999943,5.0956,5.83474 +L 2.9906,5.83474,7.2006,5.83474 +L 2.9906,3.73747,7.2006,3.73747 +L 5.9495,0,5.9495,5.334762 + +[言] 8 +L 1.8372,8.504345,6.4744,8.504345 +L 1.8372,5.300959,6.4744,5.300959 +L 1.8372,3.737508,6.4744,3.737508 +L 1.8372,0,1.8372,2.13549 +L 6.4744,0,1.8372,0 +L 1.8372,2.13549,6.4744,2.13549 +L 0.5588,6.902545,7.7559,6.902545 +L 6.4744,2.13549,6.4744,0 + +[計] 10 +L 0.5573,6.902545,3.0895,6.902545 +L 0.9811,8.504345,2.6584,8.504345 +L 0.9811,5.300959,2.6584,5.300959 +L 0.9811,4.233064,2.6584,4.233064 +L 0.9811,2.669523,2.6584,2.669523 +L 0.9811,0,0.9811,2.669523 +L 2.6584,0,0.9811,0 +L 2.6584,2.669523,2.6584,0 +L 6.0768,8.999945,6.0768,0 +L 4.3991,5.834735,7.7863,5.834735 + +[語] 17 +L 0.5838,6.902544,3.1157,6.902544 +L 1.0142,8.504347,2.6954,8.504347 +L 1.0142,5.300961,2.6954,5.300961 +L 1.0142,4.233063,2.6954,4.233063 +L 1.0142,2.669525,2.6954,2.669525 +L 1.0142,0,1.0142,2.669525 +L 2.6954,0,1.0142,0 +L 2.6954,2.669525,2.6954,0 +L 3.9703,8.504347,7.361,8.504347 +L 3.5465,4.766924,7.7848,4.766924 +L 4.4014,3.203518,4.4014,0 +L 4.4014,0,6.9614,0 +L 6.9614,0,6.9614,3.203518 +L 6.9614,3.203518,4.4014,3.203518 +L 5.2525,8.504347,4.8249,4.766924 +L 6.5344,4.766924,6.5344,6.902544 +L 6.5344,6.902544,4.0719,6.902544 + +[室] 11 +L 0.6173,6.368858,0.6173,7.932221 +L 0.6173,7.932221,7.3907,7.932221 +L 7.3907,6.368858,7.3907,7.932221 +L 4.0042,7.932221,4.0042,9.000075 +L 1.4719,6.368683,6.5361,6.368683 +L 6.5361,2.135488,1.4719,2.135488 +L 7.3907,0,0.6173,0 +L 4.0042,4.233063,4.0042,0 +L 3.1562,6.368683,1.4719,4.233063 +L 6.5361,4.233063,4.8483,6.368683 +L 1.4719,4.233063,5.6885,5.300873 + +[家] 12 +L 4.0027,7.932221,4.0027,9.000075 +L 0.6158,6.368858,0.6158,7.932221 +L 0.6158,7.932221,7.3892,7.932221 +L 7.3892,6.368858,7.3892,7.932221 +L 6.1427,6.368683,1.9008,6.368683 +L 6.9938,5.300961,5.7115,3.73751 +L 1.0431,2.669525,4.8082,4.524467 +L 5.0149,3.322338,6.9938,1.067678 +A 2.0728,2.751526,2.965377,291.89456,0 +A -1.8818,2.751526,6.919518,0,31.517013 +A -5.5804,13.443811,14.31975,295.63848,317.42572 +A -0.9291,10.709533,6.769136,286.90965,318.19009 + +[会] 7 +L 4.2495,9.000075,0.649,5.400036 +L 4.2495,9.000075,7.8469,5.400036 +L 2.4492,5.499987,6.0466,5.499987 +L 0.649,3.5,7.8469,3.5 +L 7.8469,0,4.9959,2.850032 +L 3.4825,3.5,2.5862,0.163696 +A 0.649,11.57963,11.57965,270,299.48793 + +[今] 8 +L 4.276,9.000075,0.6793,5.400036 +L 4.276,9.000075,7.88,5.400036 +L 2.4796,5.499987,6.0763,5.499987 +L 1.5791,3.5,6.9802,3.5 +A 2.4796,4.642894,4.642889,270,345.74961 + +[雪] 13 +L 0.6813,6.000007,0.6813,7.500019 +L 0.6813,7.500019,7.8785,7.500019 +L 7.8785,7.500019,7.8785,6.000007 +L 6.9787,9.000075,1.5776,9.000075 +L 1.5426,6.500025,3.3779,6.500025 +L 1.5776,5.499987,3.3779,5.499987 +L 7.0138,6.500025,5.1785,6.500025 +L 6.9787,5.499987,5.1785,5.499987 +L 1.5776,0,6.9787,0 +L 6.9787,0,6.9787,4.000019 +L 6.9787,4.000019,1.5776,4.000019 +L 1.5776,1.999987,6.9787,1.999987 +L 4.278,9.000075,4.278,4.500037 + +[雲] 14 +L 0.6763,6.000007,0.6763,7.500019 +L 0.6763,7.500019,7.877,7.500019 +L 7.877,7.500019,7.877,6.000007 +L 6.9807,9.000075,1.5765,9.000075 +L 1.5446,6.500025,3.3767,6.500025 +L 1.5765,5.499987,3.3767,5.499987 +L 7.0158,6.500025,5.1801,6.500025 +L 6.9807,5.499987,5.1801,5.499987 +L 4.2804,9.000075,4.2804,4.500037 +L 1.9894,3.73751,6.1958,3.73751 +L 0.7075,2.135488,7.877,2.135488 +L 3.3767,2.135488,1.5765,0 +L 1.5765,0,6.0001,1.184442 +L 6.9807,0,5.7374,1.499969 + +[電] 18 +L 0.6783,6.000007,0.6783,7.500019 +L 0.6783,7.500019,7.8755,7.500019 +L 7.8755,7.500019,7.8755,6.000007 +L 6.9757,9.000075,1.5781,9.000075 +L 1.5431,6.500025,3.3784,6.500025 +L 1.5781,5.499987,3.3784,5.499987 +L 7.0143,6.500025,5.179,6.500025 +L 6.9757,5.499987,5.179,5.499987 +L 4.2785,9.000075,4.2785,4.500037 +L 1.9879,3.73751,1.9879,1.601627 +L 1.9879,1.601627,6.2329,1.601627 +L 6.2329,1.601627,6.2329,3.73751 +L 6.2329,3.73751,1.9879,3.73751 +L 1.9879,2.669525,6.2329,2.669525 +L 7.5113,1.067678,7.5113,0 +L 7.5113,0,4.6116,0 +L 4.1104,3.73751,4.1104,2.000031 +A 8.3624,2.000031,4.249821,180,208.07382 + +[売] 11 +L 7.9371,7.970485,0.7399,7.970485 +L 4.3365,8.999944,4.3365,6.000007 +L 0.7399,3.73751,0.7399,4.766924 +L 0.7399,4.766924,7.9371,4.766924 +L 7.9371,4.766924,7.9371,3.73751 +L 7.9371,1.601627,7.9371,0 +L 5.237,3.73751,5.237,2.000031 +L 7.0408,6.000007,1.6397,6.000007 +L 7.9371,0,5.7379,0 +A -1.6873,4.596223,5.196937,297.82153,350.48883 +A 9.489,2.000031,4.249821,180,208.07382 + +[広] 7 +L 8.0021,7.970485,1.628,7.970485 +L 4.8117,8.999944,4.8117,7.970485 +L 1.628,7.970485,1.628,4.538214 +L 4.5841,6.368683,2.0203,0 +L 2.0203,0,7.4137,1.444718 +A -11.0789,4.538214,12.703326,339.25315,0 +A 2.2336,-1.546288,5.979736,15.365783,45.88388 + +[店] 10 +L 8.0006,7.970485,1.6261,7.970485 +L 4.8137,8.999944,4.8137,7.970485 +L 1.6261,7.970485,1.6261,4.538214 +L 2.5056,3.038158,2.5056,0.03822 +L 2.5056,0.03822,8.0006,0.03822 +L 8.0006,0.03822,8.0006,3.038158 +L 8.0006,3.038158,2.5056,3.038158 +L 5.2515,6.902544,5.2515,3.038158 +L 5.2515,4.970329,7.5421,4.970329 +A -11.0769,4.538214,12.703326,339.25315,0 + +[国] 8 +L 0.8019,8.504347,0.8019,0 +L 0.8019,0,7.5718,0 +L 7.5718,0,7.5718,8.504347 +L 7.5718,8.504347,0.8019,8.504347 +L 2.0835,1.601627,6.3214,1.601627 +L 2.2936,4.252064,6.1113,4.252064 +L 2.0835,6.902544,6.3214,6.902544 +L 4.2063,6.902544,4.2063,1.601627 + +[回] 8 +L 0.8316,8.504347,0.8316,0 +L 0.8316,0,7.6057,0 +L 7.6057,0,7.6057,8.504347 +L 7.6057,8.504347,0.8316,8.504347 +L 2.9401,6.368683,2.9401,2.669525 +L 2.9401,2.669525,5.4723,2.669525 +L 5.4723,2.669525,5.4723,6.368683 +L 5.4723,6.368683,2.9401,6.368683 + +[近] 11 +L 5.9156,-0.015148,8.049,-0.015148 +L 2.0983,1.052487,1.0476,0 +L 0.8479,4.751733,2.0983,4.751733 +L 2.0983,1.052487,2.0983,4.751733 +L 1.2749,8.489111,2.0983,7.421301 +L 8.0346,5.834734,3.7932,5.834734 +L 6.3538,1.067678,6.3538,5.834734 +L 3.7932,7.970485,3.7932,5.834734 +A 5.9156,7.347837,7.362973,238.75988,270 +A 3.7932,22.075034,14.104559,270,285.81495 +A -7.4984,5.834734,11.287175,337.97323,0 + +[遠] 17 +L 5.946,-0.015148,8.0787,-0.015148 +L 2.128,1.052487,1.0738,0 +L 0.8741,4.751733,2.128,4.751733 +L 2.128,1.052487,2.128,4.751733 +L 1.3053,8.489111,2.128,7.421301 +L 7.6969,7.500019,3.4558,7.500019 +L 8.1207,6.000007,3.0285,6.000007 +L 3.778,5.233188,3.778,3.669694 +L 7.3747,3.669694,7.3747,5.233188 +L 7.3747,5.233188,3.778,5.233188 +L 5.5783,6.000007,5.5783,9.000075 +L 3.1966,2.067716,5.5114,3.669694 +L 3.778,3.669694,7.3747,3.669694 +L 5.0109,3.324264,5.0109,1.000037 +L 5.0739,3.36822,8.1207,1.608238 +L 8.0335,3.669694,6.7586,2.395546 +A 5.946,7.347837,7.362973,238.75988,270 + +[道] 16 +L 5.9161,-0.015148,8.0495,-0.015148 +L 2.0988,1.052487,1.0446,0 +L 0.8449,4.751733,2.0988,4.751733 +L 2.0988,1.052487,2.0988,4.751733 +L 1.2754,8.489111,2.0988,7.421301 +L 4.4346,9.000075,5.0724,7.970485 +L 7.3455,1.499969,3.7481,1.499969 +L 3.7481,1.499969,3.7481,6.000007 +L 3.7481,6.000007,7.3455,6.000007 +L 7.3455,6.000007,7.3455,1.499969 +L 3.7481,4.500037,7.3455,4.500037 +L 7.3455,3.000025,3.7481,3.000025 +L 2.8483,7.500019,8.2453,7.500019 +L 5.6048,7.500019,4.7428,6.000007 +L 6.7812,9.000075,5.8496,7.500019 +A 5.9161,7.347837,7.362973,238.75988,270 + +[晴] 15 +L 0.8645,7.970485,0.8645,2.135488 +L 0.8645,2.135488,2.5733,2.135488 +L 2.5733,2.135488,2.5733,7.970485 +L 2.5733,7.970485,0.8645,7.970485 +L 4.0062,4.500037,4.0062,0 +L 7.2526,0,7.2526,4.500037 +L 7.2526,4.500037,4.0062,4.500037 +L 6.482,0,7.2526,0 +L 2.5733,5.052943,0.8645,5.052943 +L 5.6274,8.999944,5.6274,5.834734 +L 8.0616,5.834734,3.5645,5.834734 +L 8.0616,7.970485,3.5645,7.970485 +L 4.0062,6.902544,7.2526,6.902544 +L 4.0062,3.000025,7.2526,3.000025 +L 7.2526,1.499969,4.0062,1.499969 + +[寺] 7 +L 6.9957,7.970574,1.9308,7.970574 +L 6.1408,0.000131,4.8908,0.000131 +L 6.1408,5.33489,6.1408,0.000131 +L 0.8595,6.000007,8.0636,6.000007 +L 2.3301,2.6697,3.2863,1.708671 +L 4.4635,9.000075,4.4635,6.000007 +L 1.3635,3.737598,7.5631,3.737598 + +[歌] 22 +L 0.865,4.500037,4.462,4.500037 +L 0.865,9.000075,4.462,9.000075 +L 1.362,7.500019,1.362,6.000007 +L 1.362,6.000007,2.6617,6.000007 +L 2.6617,6.000007,2.6617,7.500019 +L 2.6617,7.500019,1.362,7.500019 +L 1.362,3.000025,1.362,1.499969 +L 1.362,1.499969,2.6617,1.499969 +L 2.6617,1.499969,2.6617,3.000025 +L 2.6617,3.000025,1.362,3.000025 +L 2.9626,4.999968,3.9646,4.999968 +L 3.9646,9.000075,3.9646,4.999968 +L 3.9646,4.500037,3.9646,0 +L 2.9626,0,3.9646,0 +L 5.152,7.500019,8.0621,7.500019 +L 8.0621,7.500019,8.0621,6.000007 +L 6.2619,7.500019,6.2619,4.500037 +A -0.0877,9.000075,5.450522,326.60432,0 +A -0.2632,4.500037,6.525323,316.39894,0 +A 12.7908,4.500037,6.525323,180,223.60105 + +[友] 6 +L 0.0034,7.398316,7.2041,7.398316 +L 2.4026,7.398316,2.4026,8.999768 +L 5.4003,5.262609,2.2205,5.262609 +A -0.5955,5.754791,6.016679,286.96736,355.30787 +A 8.9592,5.754791,6.016679,184.69212,253.03263 +A -10.1992,7.398316,12.602815,324.05328,0 + +[父] 4 +L 0.2187,6.86428,1.7107,8.466126 +L 6.6247,6.86428,5.1291,8.466126 +A -2.772,6.909636,7.530026,293.42106,351.49856 +A 9.6158,6.909636,7.530026,188.50143,246.57893 + +[母] 8 +L 7.2361,2.097356,0.3818,2.097356 +L 3.4184,7.398185,4.2734,6.330331 +L 3.4184,4.232888,4.2734,3.165297 +L 0.0351,5.262609,7.2361,5.262609 +L 1.7408,8.466126,5.9822,8.466126 +A 117.5073,-8.598826,117.01514,171.61436,175.28025 +A -68.5955,8.466126,74.579211,353.86488,0 +A 4.4345,1.49454,1.502889,263.94705,318.34222 + +[兄] 9 +L 1.3155,8.466126,1.3155,4.766881 +L 1.3155,4.766881,5.9846,4.766881 +L 5.9846,4.766881,5.9846,8.466126 +L 5.9846,8.466126,1.3155,8.466126 +L 6.8388,0,6.8388,1.563275 +L 4.3066,4.766881,4.3066,2.000031 +L 6.8388,0,4.8039,0 +A -3.4619,4.766881,6.059265,308.12171,0 +A 8.5515,2.000031,4.249821,180,208.07389 + +[姉] 10 +L 3.4648,6.330331,-0.1325,6.330331 +L 0.7224,3.326541,1.3455,8.9999 +L 3.0547,7.398316,7.2615,7.398316 +L 5.1565,8.999768,5.1565,0 +L 3.447,1.563275,3.447,5.262609 +L 3.447,5.262609,6.8657,5.262609 +L 6.8657,5.262609,6.8657,1.563275 +L 6.8657,1.563275,6.0146,1.563275 +A -4.6682,-3.399567,8.620982,23.224227,51.278884 +A -6.528,6.330331,9.138971,316.15783,0 + +[弟] 12 +L 0.5209,7.398316,6.0166,7.398316 +L 6.0166,7.398316,6.0166,5.79647 +L 6.0166,5.79647,0.9482,5.79647 +L 0.9482,5.79647,0.9482,3.699158 +L 0.9482,3.699158,6.8674,3.699158 +L 5.1932,0.495553,6.0166,0.495553 +L 6.8674,3.699158,0.9482,3.699158 +L 0.094,0.495553,3.4843,3.344973 +L 3.4843,0,3.4843,7.398316 +L 2.6294,8.198845,1.8273,8.999768 +L 4.3354,7.932177,5.4033,8.999768 +A 0.4334,3.699158,6.43412,330.13858,0 + +[妹] 9 +L 3.528,6.330331,-0.0687,6.330331 +L 0.7856,3.326541,1.4055,8.9999 +L 6.8977,7.398316,3.5105,7.398316 +L 7.3247,4.766881,3.0867,4.766881 +L 5.1882,0,5.1882,8.999768 +L 3.0867,1.029414,5.1882,4.378677 +L 7.2932,1.029414,5.1882,4.378677 +A -4.6082,-3.399567,8.620982,23.224227,51.278884 +A -6.4641,6.330331,9.138971,316.15783,0 + +[元] 6 +L 7.3267,0,7.3267,1.563275 +L 0.9802,8.466126,6.0766,8.466126 +L 6.8994,5.79647,0.126,5.79647 +L 4.3675,5.79647,4.3675,0 +L 4.3675,0,7.3267,0 +A -6.6726,5.79647,8.934206,319.54963,0 + +[親] 21 +L 3.5425,4.23302,0.1592,4.23302 +L 3.5425,5.834734,0.1592,5.834734 +L 1.8337,5.834734,1.8337,0 +L 0.583,7.703468,1.0103,6.368639 +L 2.2641,6.101708,2.6848,7.970442 +L 0.1592,1.067678,1.8337,3.932772 +L 3.1152,2.135445,1.8337,3.737379 +L 3.2627,8.043292,0.1592,8.043292 +L 1.8337,8.043292,1.8337,9.142274 +L 6.4219,0.060855,7.6264,-0.000044 +L 6.9294,8.466126,6.9294,3.699027 +L 7.6264,-0.000044,7.6264,1.601759 +L 4.3936,8.466126,6.9294,8.466126 +L 6.9294,3.699027,4.3936,3.699027 +L 4.3936,8.466126,4.3936,3.699027 +L 4.3936,6.902632,6.9294,6.902632 +L 4.3936,5.300829,6.9294,5.300829 +L 3.8227,-0.000044,5.0906,2.195512 +L 5.0906,2.195512,5.0906,3.699027 +L 6.0188,0.99636,6.4219,0.060855 +L 6.0188,3.699027,6.0188,0.99636 + +[切] 8 +L 0.1577,5.79647,2.7214,6.330331 +L 1.0123,8.999768,0.9807,2.631173 +L 0.9807,2.631173,2.7214,2.631173 +L 2.7214,3.699158,2.7214,2.631173 +L 3.1421,7.932177,7.359,7.932177 +L 7.359,3.000025,7.359,7.932177 +A 4.1648,3.000025,3.190232,289.88542,0 +A -9.5161,8.455181,14.350657,323.901,357.91146 + +[内] 7 +L 0.6153,0,0.6153,7.398316 +L 0.6153,7.398316,6.531,7.398316 +L 6.531,7.398316,6.531,0 +L 5.2802,0,6.531,0 +L 3.5749,7.398316,3.5749,8.999768 +A -2.8735,7.398316,6.450265,302.76605,0 +A 10.0226,7.398316,6.450265,180,237.23394 + +[外] 6 +L 5.2857,8.999768,5.2857,0 +L 3.6046,7.398316,1.591,7.398316 +L 0.9641,5.902244,2.7535,3.432184 +L 6.9918,3.165297,5.2857,5.300435 +A -6.0307,9.692554,7.955982,321.74815,355.00448 +A -7.19,7.648129,10.797311,314.90016,358.67384 + +[科] 9 +L -0.1796,5.834778,3.2111,5.834778 +L -0.1796,1.601802,1.5016,5.131704 +L 1.5016,0,1.5016,8.051699 +L 2.7803,2.436218,1.5016,5.131704 +L 6.1672,8.999768,6.1672,0 +L 3.2111,2.631173,6.5945,3.699158 +L 4.0339,8.465995,4.885,7.398316 +L 4.0339,5.79647,4.885,4.766881 +A 0.5629,12.731806,4.772112,266.17535,297.6407 + +[通] 16 +L 5.3356,-0.015148,7.4651,-0.015148 +L 1.5141,1.052443,0.4634,0 +L 0.2637,4.751776,1.5141,4.751776 +L 1.5141,1.052443,1.5141,4.751776 +L 0.6875,8.489155,1.5141,7.421301 +L 5.7419,1.563275,6.5962,1.563275 +L 6.5962,1.563275,6.5962,6.330331 +L 3.2061,6.330331,3.2061,1.563275 +L 3.2061,4.766881,6.5962,4.766881 +L 6.5962,3.165297,3.2061,3.165297 +L 3.2061,8.466126,6.5962,8.466126 +L 6.5962,6.330331,3.2061,6.330331 +L 4.915,1.563275,4.915,6.330331 +L 4.0607,7.398316,5.7696,6.330331 +L 6.5962,8.466126,4.915,6.86428 +A 5.3356,7.347837,7.362973,238.75988,270 + +[走] 7 +L 4.0939,0,7.0538,0 +L 6.1989,7.398316,1.1032,7.398316 +L 7.0538,5.262609,0.2797,5.262609 +L 3.6631,8.999768,3.6631,-0.033842 +L 6.6265,3.165297,3.6631,3.165297 +A -5.5238,4.015999,7.056805,325.3128,1.761261 +A 4.0939,2.808879,2.808908,190.01544,270 + +[歩] 9 +L 7.0485,5.262609,0.2817,5.262609 +L 6.2292,7.398316,3.6651,7.398316 +L 3.6651,8.999768,3.6651,5.262609 +L 1.5601,7.932177,1.5601,5.262609 +L 3.6651,2.097356,3.6651,4.816309 +L 0.4919,2.631173,1.9913,4.232888 +L 5.8019,4.232888,7.0485,2.631173 +L 3.6651,2.097356,2.4112,2.097356 +A -0.0545,6.889804,6.897716,272.75151,321.874 + +[止] 4 +L 4.1228,8.999768,4.1228,0 +L 0.3083,0,7.5058,0 +L 6.655,4.766881,4.1228,4.766881 +L 1.5621,6.330331,1.5621,0 + +[社] 8 +L 0.3141,7.398316,2.874,7.398316 +L 1.5925,8.999768,1.5925,7.398316 +L 2.874,3.165297,1.5925,4.766881 +L 1.5925,4.766881,1.5925,0 +L 7.1124,5.262609,3.7286,5.262609 +L 7.5432,0,3.2978,0 +L 5.4063,8.999768,5.4063,0 +A -7.8011,10.968758,11.256284,316.1117,341.50627 + +[地] 11 +L 1.6222,8.999768,1.6222,2.303081 +L 0.3403,1.563275,2.7395,2.948933 +L 0.3403,6.330331,2.7395,6.330331 +L 5.4367,8.999768,5.4367,1.563275 +L 7.5382,0,7.5382,1.563275 +L 7.5382,3.165297,7.5382,6.513378 +L 2.8725,5.262609,7.5382,6.513378 +L 6.7182,3.165297,7.5382,3.165297 +L 4.2248,0,7.5382,0 +L 3.7271,2.000031,3.7271,7.932177 +A 7.9756,2.000031,4.249821,180,208.07382 + +[工] 3 +L 0.7979,7.932177,6.7167,7.932177 +L 7.144,0.495553,0.3703,0.495553 +L 3.761,7.932177,3.761,0.495553 + +[場] 15 +L 1.6545,8.999768,1.6545,2.303081 +L 0.3726,1.563275,2.7683,2.948933 +L 0.3726,6.330331,2.7683,6.330331 +L 3.4338,8.466126,3.4338,6.330331 +L 3.4338,6.330331,7.069,6.330331 +L 7.069,6.330331,7.069,8.466126 +L 7.069,8.466126,3.4338,8.466126 +L 3.4338,7.398316,7.069,7.398316 +L 2.9326,4.766881,7.5698,4.766881 +L 3.7735,3.203342,7.069,3.203342 +L 6.1093,0,5.1076,0 +A 1.0167,4.766881,3.165143,302.50141,359.99909 +A 1.2658,3.203342,5.802038,326.48811,0 +A 1.8157,4.022566,3.165143,287.50141,344.99909 +A 2.8068,3.203342,3.165143,302.50141,359.99909 + +[図] 8 +L 0.4023,8.466126,0.4023,0 +L 0.4023,0,7.1726,0 +L 7.1726,0,7.1726,8.466126 +L 7.1726,8.466126,0.4023,8.466126 +L 1.6807,7.398316,2.0768,6.597394 +L 3.3619,7.398316,3.7857,6.597394 +A -3.1243,8.716508,8.723035,304.91166,351.30834 +A -0.515,-1.106731,7.050319,24.618637,64.610092 + +[公] 5 +L 0.4288,3.699158,2.5412,8.466126 +L 5.0661,8.999768,7.6334,3.699158 +L 5.9245,2.631173,7.6089,0 +L 3.8196,5.262609,2.4462,0.12762 +A 0.4288,15.903275,15.90326,270,293.46884 + +[園] 15 +L 0.4347,0,0.4347,8.466126 +L 0.4347,8.466126,7.2046,8.466126 +L 7.2046,8.466126,7.2046,0 +L 7.2046,0,0.4347,0 +L 5.9542,6.898254,1.7131,6.898254 +L 6.3815,5.830312,1.2893,5.830312 +L 2.1404,4.76259,2.1404,3.19914 +L 5.5234,3.19914,5.5234,4.76259 +L 5.5234,4.76259,2.1404,4.76259 +L 3.8317,5.830312,3.8317,7.966108 +L 1.4504,1.597118,3.7725,3.19914 +L 2.1404,3.19914,5.5234,3.19914 +L 3.2682,2.85371,3.2682,0.529396 +L 3.3347,2.897666,6.3815,1.137684 +L 6.2908,3.19914,5.019,1.924991 + +[番] 13 +L 6.1877,0,6.1877,3.699158 +L 6.1877,3.699158,1.9459,3.699158 +L 1.9459,3.699158,1.9459,0 +L 1.9459,0,6.1877,0 +L 1.9459,1.862166,6.1877,1.862166 +L 4.0652,3.699158,4.0652,0 +L 7.6622,6.330331,0.4612,6.330331 +L 0.692,4.232888,3.4379,6.330331 +L 7.4342,4.232888,4.6887,6.330331 +L 2.3522,7.695937,3.1402,6.330331 +L 5.7706,7.695937,4.986,6.330331 +L 4.0652,8.011552,4.0652,4.199133 +A 1.6555,17.010576,9.315303,270.68417,301.00129 + +[市] 6 +L 7.2646,7.398316,0.4628,7.398316 +L 1.3139,1.563275,1.3139,5.262609 +L 1.3139,5.262609,6.4135,5.262609 +L 6.4135,5.262609,6.4135,1.563275 +L 6.4135,1.563275,5.1355,1.563275 +L 3.8816,0,3.8816,8.999768 + +[京] 10 +L 3.8832,7.970442,3.8832,8.999944 +L 0.4929,7.970442,7.2666,7.970442 +L 1.7783,5.79647,1.7783,3.699158 +L 1.7783,3.699158,6.0127,3.699158 +L 6.0127,3.699158,6.0127,5.79647 +L 6.0127,5.79647,1.7783,5.79647 +L 3.0255,0,3.8832,0 +L 3.8832,0,3.8832,3.699158 +L 0.7065,0.495553,2.2024,2.097356 +L 5.5924,2.097356,6.8393,0.495553 + +[強] 17 +L 0.9502,6.368551,3.4825,6.368551 +L 3.4825,6.368551,3.4825,8.466126 +L 3.4825,8.466126,0.5264,8.466126 +L 0.9502,4.233107,0.9502,6.368551 +L 3.4825,4.233107,0.9502,4.233107 +L 1.3775,-0.000044,2.6314,-0.000044 +L 5.3458,8.999768,4.4947,6.86428 +L 4.4947,6.86428,7.2931,7.614374 +L 7.7243,6.86428,6.8798,8.324277 +L 7.7243,2.999981,7.7243,4.811975 +L 7.7243,4.811975,4.1269,4.811975 +L 4.1269,4.811975,4.1269,2.999981 +L 4.1269,2.999981,7.7243,2.999981 +L 4.1868,0,7.6192,1.070218 +L 5.924,6.330331,5.924,0.542442 +A -7.4312,4.233107,10.915649,337.18205,0 +A 2.362,-0.000044,5.363796,0,23.019042 + +[答] 13 +L 2.8575,6.86428,2.2414,7.932177 +L 6.2409,6.86428,5.628,7.932177 +L 2.0029,2.631173,2.0029,0 +L 2.0029,0,6.2409,0 +L 6.2409,0,6.2409,2.631173 +L 6.2409,2.631173,2.0029,2.631173 +L 2.5812,4.232888,5.6665,4.232888 +L 7.7263,7.932177,4.6998,7.932177 +L 4.1258,7.932177,1.3129,7.932177 +L 4.1258,6.3851,0.5249,3.352109 +L 4.1258,6.3851,7.7263,3.352284 +A 0.5739,9.516861,4.418749,323.10826,353.27931 +A -2.8094,9.516861,4.418749,319.01823,353.27931 + +[理] 12 +L 0.5588,8.466126,3.0837,8.466126 +L 0.5588,5.262609,3.0837,5.262609 +L 0.5588,1.563275,3.0837,2.241788 +L 1.8372,8.466126,1.8372,1.906603 +L 3.9421,9.000031,3.9421,4.500037 +L 3.9421,4.500037,7.3287,4.500037 +L 7.3287,4.500037,7.3287,9.000031 +L 7.3287,9.000031,3.9421,9.000031 +L 3.9421,6.750013,7.3287,6.750013 +L 5.6335,9.000031,5.6335,0 +L 3.9421,2.250019,7.3287,2.250019 +L 7.7559,0,3.5148,0 + +[数] 14 +L 0.5849,6.750013,4.1858,6.750013 +L 4.1858,3.000025,0.5849,3.000025 +L 2.3855,9.000031,2.3855,4.500037 +L 1.6535,7.250031,1.1803,9.000031 +L 3.1207,7.250031,3.5865,9.000031 +L 2.3855,6.750013,0.5849,4.950059 +L 2.3855,6.750013,4.1858,4.950059 +L 7.7863,7.500019,4.8754,7.500019 +A -0.0872,3.000025,3.074998,282.67901,0 +A -13.3685,4.500037,15.152425,348.58061,0 +A 1.4854,-1.680082,3.180117,31.892395,90 +A -0.3674,9.000031,5.450156,326.60247,0 +A -4.8789,7.500019,11.76659,320.40203,0 +A 16.8542,7.500019,11.76659,187.32402,219.59796 + +[画] 10 +L 0.5838,9.000031,7.7848,9.000031 +L 4.1874,9.000031,4.1874,1.500012 +L 2.3872,6.00005,2.3872,1.500012 +L 2.3872,1.500012,5.9881,1.500012 +L 5.9881,1.500012,5.9881,6.00005 +L 5.9881,6.00005,2.3872,6.00005 +L 0.5838,6.00005,0.5838,0 +L 0.5838,0,7.7848,0 +L 7.7848,0,7.7848,6.00005 +L 5.9881,3.750031,2.3872,3.750031 + +[楽] 14 +L 7.818,3.000025,0.6173,3.000025 +L 4.2175,0,4.2175,4.500037 +L 4.2175,3.000025,0.6173,0.921539 +L 4.2175,3.000025,7.818,0.921539 +L 6.0142,4.500037,6.0142,7.500019 +L 6.0142,7.500019,2.4176,7.500019 +L 2.4176,7.500019,2.4176,4.500037 +L 2.4176,4.500037,6.0142,4.500037 +L 2.4176,6.00005,6.0142,6.00005 +L 1.668,7.500019,0.6173,8.550098 +L 1.668,6.00005,0.6173,4.949971 +L 6.7673,7.500019,7.818,8.550098 +L 6.7673,6.00005,7.818,4.949971 +L 4.2175,9.000031,2.7184,7.500019 + +[組] 14 +L 4.4331,0,4.4331,8.466126 +L 4.4331,8.466126,6.9938,8.466126 +L 6.9938,8.466126,6.9938,0 +L 1.9008,8.999944,1.0743,7.131385 +L 2.7519,5.301092,3.1792,4.500037 +L 1.9008,4.767012,1.9008,0 +L 1.0743,3.165384,0.647,1.334959 +L 2.7519,3.165384,3.1792,1.868733 +L 0.647,4.767012,3.0356,4.767012 +L 1.0743,7.131385,1.8732,6.130691 +L 2.7519,7.932309,1.2112,4.767012 +L 3.61,0,7.8484,0 +L 4.4331,3.165297,6.9938,3.165297 +L 4.4331,5.79647,6.9938,5.79647 + +[思] 13 +L 1.5456,9.000031,1.5456,4.500037 +L 1.5456,4.500037,6.9464,4.500037 +L 6.9464,4.500037,6.9464,9.000031 +L 6.9464,9.000031,1.5456,9.000031 +L 6.9464,6.750013,1.5456,6.750013 +L 4.2495,4.500037,4.2495,9.000031 +L 6.9464,0,6.9464,1.029414 +L 6.9464,0,2.9469,0 +L 2.4492,4.000019,2.4492,2.000031 +L 6.6031,4.000019,7.8469,1.845573 +L 0.649,0,1.4514,3.000025 +L 4.6491,1.500012,4.2495,3.000025 +A 6.6977,2.000031,4.249821,180,208.07382 + +[色] 11 +L 0.6793,6.00005,2.4796,9.000031 +L 2.4796,9.000031,5.1765,9.000031 +L 7.88,6.750013,7.88,4.500037 +L 1.5791,4.500037,7.88,4.500037 +L 7.88,1.500012,7.88,0 +L 4.7282,6.750013,4.7282,4.500037 +L 7.88,0,2.0768,0 +L 1.5791,6.750013,1.5791,2.000031 +L 1.5791,6.750013,7.88,6.750013 +L 5.1765,9.000031,3.8277,6.750013 +A 5.8276,2.000031,4.249821,180,208.07382 + +[黒] 12 +L 1.1783,9.000031,1.1783,6.00005 +L 1.1783,6.00005,7.378,6.00005 +L 7.378,6.00005,7.378,9.000031 +L 7.378,9.000031,1.1783,9.000031 +L 7.378,7.500019,1.1783,7.500019 +L 4.278,3.000025,4.278,9.000031 +L 1.5776,4.500037,6.9787,4.500037 +L 0.6813,3.000025,7.8785,3.000025 +L 0.6813,0,1.3503,2.50005 +L 2.6143,2.000031,3.1471,0 +L 4.9753,2.000031,5.5147,0 +L 7.343,2.000031,7.8785,0 + +[活] 10 +L 1.9614,7.703468,1.1383,8.732926 +L 1.5309,5.567716,0.7075,6.635526 +L 1.9614,3.470492,0.7075,0 +L 7.0084,0,7.0084,3.000025 +L 7.0084,3.000025,3.4079,3.000025 +L 3.4079,3.000025,3.4079,0 +L 3.4079,0,7.0084,0 +L 2.5078,6.00005,7.9124,6.00005 +L 5.2082,3.000025,5.2082,8.337761 +A 2.5078,18.453585,10.469997,274.93106,295.4551 + +[春] 11 +L 7.298,7.932177,1.3473,7.932177 +L 6.8707,6.597394,1.7781,6.597394 +L 7.7253,5.262609,0.9512,5.262609 +L 6.1422,0,6.1422,4.007505 +L 6.1422,4.007505,2.5378,4.007505 +L 2.5378,4.007505,2.5378,0 +L 2.5378,0,6.1422,0 +L 6.1422,2.003752,2.5378,2.003752 +L 4.3419,8.999768,4.3419,7.932177 +A -0.8417,7.932177,5.17854,287.74655,0 +A 9.5182,7.932177,5.17854,180,252.25344 + +[夏] 12 +L 0.7399,9.000031,7.9371,9.000031 +L 1.6397,7.500019,1.6397,3.000025 +L 1.6397,3.000025,7.0408,3.000025 +L 7.0408,3.000025,7.0408,7.500019 +L 7.0408,7.500019,1.6397,7.500019 +L 1.6397,6.00005,7.0408,6.00005 +L 7.0408,4.500037,1.6397,4.500037 +L 4.3365,9.000031,3.9376,7.500019 +L 3.4399,2.999981,5.8356,2.359076 +A 0.7399,4.680195,3.180191,270,328.10646 +A 1.0302,6.054601,6.061388,267.28257,322.43374 +A 7.6534,6.054601,6.061388,217.98855,272.71742 + +[秋] 10 +L 0.3457,5.834778,3.7291,5.834778 +L 0.3457,1.601802,2.0203,5.131704 +L 2.0203,0,2.0203,8.051699 +L 3.3018,2.436218,2.0203,5.131704 +L 5.2916,9.000031,5.2916,4.500037 +L 7.1163,6.86428,6.6432,5.099613 +L 3.4738,6.86428,3.9431,5.099613 +A 1.0918,12.731806,4.772112,266.17535,297.6407 +A -0.3334,4.500037,5.62476,306.86682,0 +A 10.92,4.500037,5.62476,180,233.13317 + +[冬] 6 +L 3.5,9.000031,6.1583,8.287808 +L 5.6998,0,3.1007,1.500012 +L 3.5,3.900155,5.3006,2.100026 +A -2.7025,11.906846,9.570528,291.4631,342.31832 +A -2.146,11.369746,6.126521,298.78042,337.2449 +A 11.5031,11.906846,9.570528,205.25524,248.53689 + +[記] 15 +L 0.8019,6.902544,3.3342,6.902544 +L 1.2257,8.504303,2.9069,8.504303 +L 1.2257,5.301004,2.9069,5.301004 +L 1.2257,4.23302,2.9069,4.23302 +L 1.2257,2.669569,2.9069,2.669569 +L 1.2257,0,1.2257,2.669569 +L 2.9069,0,1.2257,0 +L 2.9069,2.669569,2.9069,0 +L 4.6157,8.466126,7.148,8.466126 +L 7.148,8.466126,7.148,4.766881 +L 7.148,4.766881,4.6157,4.766881 +L 7.5718,1.563275,7.5718,0 +L 7.5718,0,5.1169,0 +L 4.6157,4.766881,4.6157,2.000031 +A 8.8646,2.000031,4.249821,180,208.07382 + +[点] 10 +L 1.3328,6.00005,1.3328,3.368921 +L 1.3328,3.368921,7.5318,3.368921 +L 7.5318,3.368921,7.5318,6.00005 +L 7.5318,6.00005,1.3328,6.00005 +L 4.4321,9.000031,4.4321,6.00005 +L 7.3882,7.500019,4.4321,7.500019 +L 0.8316,0,1.5006,2.50005 +L 2.7688,2.000031,3.3043,0 +L 5.1291,2.000031,5.6653,0 +L 7.4968,2.000031,8.0295,0 + +[同] 9 +L 1.2574,0,1.2574,8.466126 +L 1.2574,8.466126,7.6353,8.466126 +L 7.6353,8.466126,7.6353,0 +L 7.6353,0,6.3538,0 +L 2.5396,6.86428,6.3538,6.86428 +L 2.9669,4.766881,2.9669,2.097356 +L 2.9669,2.097356,5.9297,2.097356 +L 5.9297,2.097356,5.9297,4.766881 +L 5.9297,4.766881,2.9669,4.766881 + +[当] 7 +L 1.2878,0.495553,7.21,0.495553 +L 7.21,5.79647,1.2878,5.79647 +L 4.2505,6.330331,4.2505,8.999768 +L 1.2878,3.165297,7.21,3.165297 +L 7.21,0.495553,7.21,5.79647 +L 1.7151,8.466126,2.5416,7.131166 +L 5.96,6.86428,6.7827,8.466126 + +[形] 8 +L 0.8625,5.250044,4.4591,5.250044 +L 0.8625,9.000031,4.4591,9.000031 +L 1.7622,4.500037,1.7622,9.000031 +L 3.5593,0,3.5593,9.000031 +L 8.0631,6.00005,4.4591,3.92152 +L 8.0631,9.000031,4.4591,6.921589 +L 4.4591,0,8.0631,2.078486 +A -9.9325,4.500037,11.699109,337.37823,0 + +[合] 7 +L 6.5836,5.250044,2.3425,5.250044 +L 4.4475,8.999768,0.8645,5.414834 +L 4.4786,8.999768,8.0616,5.415184 +L 2.6647,3.000025,2.6647,0 +L 2.6647,0,6.2614,0 +L 6.2614,0,6.2614,3.000025 +L 6.2614,3.000025,2.6647,3.000025 + +[線] 20 +L 2.113,8.999944,1.2903,7.131385 +L 2.9644,5.301092,3.3952,4.500037 +L 2.113,4.767012,2.113,0 +L 1.2903,3.165384,0.8595,1.334959 +L 2.9644,3.165384,3.3952,1.868733 +L 0.8595,4.767012,3.2516,4.767012 +L 1.2903,7.131385,2.092,6.130691 +L 2.9644,7.932309,1.4303,4.767012 +L 7.6647,4.500037,7.6647,7.500019 +L 7.6647,7.500019,3.9626,7.500019 +L 3.9626,7.500019,3.9626,4.500037 +L 3.9626,4.500037,7.6647,4.500037 +L 3.9626,6.00005,7.6647,6.00005 +L 5.8116,4.500037,5.8116,0 +L 4.9118,0,5.8116,0 +L 4.9503,7.500019,5.8116,9.000031 +L 3.563,3.500044,5.3633,3.500044 +L 5.8116,3.000025,8.0636,0 +L 6.2637,3.000025,8.0636,4.03929 +L 5.3633,3.500044,3.563,0 + +[交] 6 +L 4.462,7.970574,4.462,9.000031 +L 1.0783,7.970574,7.8523,7.970574 +L 2.9976,6.83035,1.4709,5.301092 +L 5.9295,6.83035,7.4527,5.301092 +A 0.865,5.427093,5.427117,270,5.721268 +A 8.0621,5.427093,5.427117,174.27873,270 + +[引] 8 +L 2.9626,4.233195,0.4304,4.233195 +L 2.9626,6.368683,2.9626,8.466257 +L 2.9626,8.466257,0.0034,8.466257 +L 0.4304,4.233195,0.4304,6.368683 +L 0.4304,6.368683,2.9626,6.368683 +L 0.8615,0.000044,2.1084,0.000044 +L 6.3498,0.000044,6.3498,8.999988 +A -7.951,4.233195,10.915649,337.18205,0 + +[自] 7 +L 6.376,7.398404,6.376,0.000044 +L 6.376,0.000044,0.8562,0.000044 +L 0.8562,0.000044,0.8562,7.398404 +L 0.8562,7.398404,6.376,7.398404 +L 6.376,4.7671,0.8562,4.7671 +L 6.376,2.631348,0.8562,2.631348 +L 3.4199,8.999988,2.9089,7.398404 + +[知] 10 +L 6.8057,7.932396,6.8057,0.53408 +L 6.8057,0.53408,4.2734,0.53408 +L 4.2734,0.53408,4.2734,7.932396 +L 4.2734,7.932396,6.8057,7.932396 +L 3.4184,4.7671,0.0351,4.7671 +L 1.7408,7.398404,1.7408,4.7671 +L 2.9946,7.398404,0.6025,7.398404 +L 2.14,2.631348,2.9946,1.335003 +A -3.3938,8.936242,4.283867,323.17605,0.852905 +A -5.7615,4.7671,7.504604,320.56463,0 + +[紙] 14 +L 1.3155,8.999988,0.4924,7.131473 +L 2.1736,5.301136,2.5974,4.500125 +L 1.3155,4.7671,1.3155,0.000044 +L 0.4924,3.165472,0.0616,1.335003 +L 2.1736,3.165472,2.5974,1.868777 +L 0.0616,4.7671,2.4541,4.7671 +L 0.4924,7.131473,1.291,6.130735 +L 2.1736,7.932396,0.6293,4.7671 +L 3.666,8.46617,3.666,0.000044 +L 5.5569,5.301136,5.5569,8.668787 +L 7.2626,5.301136,3.666,5.301136 +A 3.0247,4.423422,4.423335,270,298.44519 +A 14.6318,5.301136,9.078493,180,215.7263 +A 3.1473,19.803911,11.349509,272.61383,287.83944 + +[用] 8 +L 0.9217,9.000118,6.4419,9.000118 +L 6.4419,9.000118,6.4419,0.000044 +L 6.4419,0.000044,5.1565,0.000044 +L 3.6785,0.000044,3.6785,9.000118 +L 6.4419,6.000094,0.9217,6.000094 +L 0.9217,9.000118,0.9217,3.000069 +L 6.4419,3.000069,0.9217,3.000069 +A -2.6053,3.000069,3.520825,301.56172,359.6038 + +[台] 16 +L 2.7558,8.226208,3.0532,8.999988 +L 2.4753,7.435179,2.7558,8.226208 +L 2.1989,6.635876,2.4753,7.435179 +L 2.9656,5.973256,0.094,5.83491 +L 4.7063,6.230248,2.9656,5.973256 +L 6.4404,6.368683,4.7063,6.230248 +L 6.5696,6.101884,6.4404,6.368683 +L 6.7167,5.83491,6.5696,6.101884 +L 6.8674,5.568022,6.7167,5.83491 +L 6.0166,6.864411,5.7396,7.23462 +L 5.7396,7.23462,5.4629,7.587624 +L 5.4629,7.587624,5.1932,7.932396 +L 1.3794,3.699202,1.3794,0.000044 +L 1.3794,0.000044,6.0166,0.000044 +L 6.0166,0.000044,6.0166,3.699202 +L 6.0166,3.699202,1.3794,3.699202 + +[心] 7 +L 3.5105,8.999988,4.3371,7.665247 +L 5.6193,1.601978,5.6193,0.000044 +L 5.6193,0.000044,3.1568,0.000044 +L 2.6594,6.368683,2.6594,2.000075 +A -2.948,4.508049,3.906365,321.90057,3.802078 +A -2.1106,-0.588894,10.056823,20.288986,35.850875 +A 6.9114,2.000075,4.249821,180,208.07389 + +[頭] 33 +L 1.5161,0.395427,2.2621,0.53408 +L 0.8682,0.138697,1.5161,0.395427 +L 0.126,0.000044,0.8682,0.138697 +L 0.686,2.391343,0.5529,2.631348 +L 0.8296,2.13435,0.686,2.391343 +L 0.9802,1.868777,0.8296,2.13435 +L 0.5529,4.233195,0.5529,6.368683 +L 0.5529,6.368683,2.6579,6.368683 +L 2.6579,6.368683,2.6579,4.233195 +L 2.6579,4.233195,0.5529,4.233195 +L 0.126,8.466257,3.0852,8.466257 +L 4.497,8.388547,3.9363,8.466257 +L 5.0676,8.302342,4.497,8.388547 +L 5.6455,8.199283,5.0676,8.302342 +L 5.3166,7.437894,5.6455,8.199283 +L 4.987,7.091852,5.3166,7.437894 +L 4.3675,6.864411,4.987,7.091852 +L 4.3675,2.097662,4.3675,6.864411 +L 4.0694,0.370165,4.4301,0.723344 +L 3.7265,0.000044,4.0694,0.370165 +L 4.4301,0.723344,4.7944,1.067854 +L 4.7944,2.097662,6.8994,2.097662 +L 6.8994,2.097662,6.8994,3.699202 +L 6.8994,3.699202,4.7944,3.699202 +L 6.8994,5.301136,4.7944,5.301136 +L 6.8994,4.233195,6.8994,5.301136 +L 6.8994,5.83491,6.8994,6.864411 +L 6.8994,6.864411,5.6455,6.864411 +L 6.0766,8.466257,7.3267,8.466257 +L 2.2621,0.53408,2.2621,2.631348 +L 7.3267,0.000044,7.05,0.370165 +L 7.05,0.370165,6.7768,0.723344 +L 6.7768,0.723344,6.5004,1.067854 + +[考] 30 +L 5.2202,0.000044,5.823,1.185098 +L 5.823,1.185098,6.0471,2.005766 +L 6.0471,2.005766,6.0751,3.165472 +L 3.9733,4.7671,6.0751,4.7671 +L 3.553,5.261514,3.9733,6.101884 +L 4.8244,7.932396,3.5425,7.932396 +L 5.0801,7.518538,4.8244,7.932396 +L 5.0244,7.113216,5.0801,7.518538 +L 4.6108,6.368683,5.0244,7.113216 +L 5.2202,6.368683,7.3567,6.368683 +L 3.5425,7.932396,3.3923,7.587624 +L 3.3923,7.587624,3.2448,7.23462 +L 3.2448,7.23462,3.1152,6.864411 +L 2.9646,8.655566,3.1152,8.999988 +L 5.6475,7.932396,5.7809,8.302342 +L 5.7809,8.302342,5.9245,8.655566 +L 5.9245,8.655566,6.0751,8.999988 +L 3.9733,0.000044,5.2202,0.000044 +L 2.3937,2.467608,2.2641,2.097662 +L 2.5373,2.820831,2.3937,2.467608 +L 2.6848,3.165472,2.5373,2.820831 +L 6.0751,3.165472,2.6848,3.165472 +L 2.8179,8.302342,2.9646,8.655566 +L 2.6848,7.932396,2.8179,8.302342 +L 1.0103,7.932396,2.6848,7.932396 +L 1.413,6.29106,0.1592,6.368683 +L 0.3693,2.631348,2.6179,4.361516 +L 2.6179,4.361516,3.553,5.261514 +L 3.9733,6.101884,2.6914,6.204856 +L 2.6914,6.204856,1.413,6.29106 + +[細] 14 +L 3.5725,0.000044,6.9629,0.000044 +L 6.9629,0.000044,6.9629,8.466257 +L 6.9629,8.466257,3.5725,8.466257 +L 5.2537,8.466257,5.2537,0.000044 +L 3.5725,4.233195,6.9629,4.233195 +L 1.436,8.999988,0.6165,7.131473 +L 2.291,5.301136,2.7214,4.500125 +L 1.436,4.7671,1.436,0.000044 +L 0.6165,3.165472,0.186,1.335003 +L 2.291,3.165472,2.7214,1.868777 +L 0.186,4.7671,2.5778,4.7671 +L 0.6165,7.131473,1.4189,6.130735 +L 2.291,7.932396,0.7496,4.7671 +L 3.5725,8.466257,3.5725,0.000044 + +[太] 14 +L 2.2856,6.348982,0.1915,6.368683 +L 0.4013,0.000044,2.065,2.504297 +L 2.065,2.504297,2.8884,4.017137 +L 2.8884,4.017137,3.5749,5.83491 +L 3.5749,5.83491,3.1651,6.210547 +L 3.1651,6.210547,2.2856,6.348982 +L 4.0022,6.368683,3.7006,6.796682 +L 4.3805,3.859001,4.0022,5.301136 +L 5.0386,2.484552,4.3805,3.859001 +L 6.531,0.000044,5.0386,2.484552 +L 4.0022,0.53408,3.1476,1.601759 +L 3.7006,6.796682,3.5886,7.479048 +L 3.5886,7.479048,3.5749,8.999988 +L 4.426,6.368683,6.9614,6.368683 + +[弱] 30 +L 2.7535,8.466257,0.2177,8.466257 +L 2.7535,6.864411,2.7535,8.466257 +L 0.6485,6.864411,2.7535,6.864411 +L 0.6485,4.7671,0.6485,6.864411 +L 1.0446,4.500125,1.1739,4.233195 +L 1.1739,4.233195,1.3175,3.966132 +L 1.3175,3.966132,1.4649,3.699202 +L 1.5977,4.603272,1.0446,4.500125 +L 2.1721,4.689301,1.5977,4.603272 +L 2.7535,4.7671,2.1721,4.689301 +L 2.813,2.751614,2.7535,4.7671 +L 2.5016,0.846236,2.813,2.751614 +L 1.0446,0.000044,2.5016,0.846236 +L 0.4313,1.601978,1.8957,2.631348 +L 5.2857,0.000044,6.7428,0.846236 +L 6.7428,0.846236,7.0548,2.751614 +L 7.0548,2.751614,6.9918,4.7671 +L 6.9918,4.7671,6.4135,4.689301 +L 6.4135,4.689301,5.8395,4.603272 +L 5.8395,4.603272,5.2857,4.500125 +L 5.2857,4.500125,5.4157,4.233195 +L 5.4157,4.233195,5.5558,3.966132 +L 5.5558,3.966132,5.7095,3.699202 +L 5.132,1.944999,5.6255,2.288327 +L 4.6451,1.601978,5.132,1.944999 +L 4.8549,4.7671,4.8549,6.864411 +L 4.8549,6.864411,6.9918,6.864411 +L 6.9918,6.864411,6.9918,8.466257 +L 6.9918,8.466257,4.4592,8.466257 +L 5.6255,2.288327,6.1368,2.631348 + +[原] 13 +L 7.4176,9.000118,1.1163,9.000118 +L 1.1163,4.500125,1.1163,9.000118 +L 2.02,7.500063,2.02,4.000106 +L 2.02,4.000106,7.4176,4.000106 +L 7.4176,4.000106,7.4176,7.500063 +L 7.4176,7.500063,2.02,7.500063 +L 4.5172,9.000118,4.92,7.500063 +L 2.02,5.750107,7.4176,5.750107 +L 4.7203,4.000106,4.7203,0.000044 +L 3.8206,0.000044,4.7203,0.000044 +L 7.4176,0.872942,6.0201,2.272872 +L 2.02,0.872942,3.4209,2.272872 +A -10.5819,4.500125,11.699206,337.77149,0 + +[野] 33 +L 5.3213,8.388547,4.4912,8.466257 +L 6.1657,8.302342,5.3213,8.388547 +L 7.02,8.199283,6.1657,8.302342 +L 6.7257,7.768613,7.02,8.199283 +L 6.442,7.320912,6.7257,7.768613 +L 6.1657,6.864411,6.442,7.320912 +L 5.84,6.090457,4.915,7.398404 +L 6.4981,5.477528,5.84,6.090457 +L 7.4473,5.033986,6.4981,5.477528 +L 7.1569,4.603272,7.4473,5.033986 +L 6.8697,4.15544,7.1569,4.603272 +L 6.5962,3.699202,6.8697,4.15544 +L 5.7419,5.301136,4.0607,5.301136 +L 3.2061,4.7671,2.355,4.7671 +L 2.355,4.7671,1.8784,6.090457 +L 1.8784,6.090457,1.5561,6.634301 +L 1.5561,6.634301,1.1047,6.864411 +L 0.6774,8.466257,3.2061,8.466257 +L 3.2061,8.466257,3.2061,4.7671 +L 2.355,1.067854,3.2061,1.067854 +L 2.355,3.165472,1.5285,4.7671 +L 1.5285,4.7671,0.6774,4.7671 +L 0.6774,4.7671,0.6774,8.466257 +L 2.355,6.864411,2.2041,7.23462 +L 2.2041,7.23462,2.0573,7.587624 +L 2.0573,7.587624,1.9274,7.932396 +L 1.8048,2.711948,1.5285,3.165472 +L 1.5285,3.165472,0.6774,3.165472 +L 0.2501,0.53408,1.9274,0.53408 +L 1.9274,0.53408,1.9102,2.02989 +L 1.9102,2.02989,1.8048,2.711948 +L 4.4912,0.000044,5.7419,0.000044 +L 5.7419,0.000044,5.7419,5.301136 + +[風] 34 +L 1.1729,5.813676,1.1032,8.466257 +L 1.1032,8.466257,6.1989,8.466257 +L 6.1989,8.466257,6.3078,4.183766 +L 6.3078,4.183766,6.5141,2.146915 +L 6.5141,2.146915,6.6265,1.067854 +L 6.6265,1.067854,6.8398,0.904114 +L 6.8398,0.904114,7.0538,0.723344 +L 7.0538,0.723344,7.2671,0.53408 +L 7.2671,0.53408,7.3267,0.904114 +L 7.3267,0.904114,7.3971,1.257249 +L 7.3971,1.257249,7.4811,1.601978 +L 5.7681,0.801098,5.6178,1.067854 +L 5.6178,1.067854,5.4742,1.335003 +L 5.4742,1.335003,5.3443,1.601978 +L 5.3443,1.601978,5.0119,1.226077 +L 5.0119,1.226077,4.6862,1.087818 +L 4.6862,1.087818,4.0939,1.067854 +L 4.917,3.165472,4.0939,3.165472 +L 4.917,5.301136,4.917,3.165472 +L 4.0032,5.010038,4.917,5.301136 +L 3.6389,4.244621,4.0032,5.010038 +L 4.0939,3.165472,3.6389,4.244621 +L 3.6389,2.182246,3.3272,2.966139 +L 3.3272,2.966139,2.3847,3.165472 +L 2.3847,3.165472,2.3847,5.301136 +L 2.3847,5.301136,3.2327,5.452047 +L 3.2327,5.452047,3.5934,5.950622 +L 3.5934,5.950622,3.6631,6.864411 +L 3.6631,6.864411,2.3847,6.864411 +L 1.0646,2.550879,1.1729,5.813676 +L 0.2797,0.000044,1.0646,2.550879 +L 4.0939,7.398404,4.917,7.398404 +L 3.6631,0.53408,3.6389,2.182246 +L 1.9543,0.53408,3.6631,0.53408 + +[顔] 49 +L 2.8595,0.830606,3.6651,1.601978 +L 3.8823,0.000044,4.2258,0.370165 +L 4.2258,0.370165,4.5831,0.723344 +L 4.5831,0.723344,4.9473,1.067854 +L 4.9473,2.097662,7.0485,2.097662 +L 7.0485,2.097662,7.0485,3.699202 +L 7.0485,3.699202,4.9473,3.699202 +L 7.0485,5.301136,4.9473,5.301136 +L 7.0485,4.233195,7.0485,5.301136 +L 7.0485,5.83491,7.0485,6.864411 +L 7.0485,6.864411,5.8019,6.864411 +L 5.4689,7.437894,5.8019,8.199283 +L 5.8019,8.199283,4.4567,8.248668 +L 4.4567,8.248668,3.588,8.060849 +L 3.588,8.060849,2.8105,7.932396 +L 2.8105,7.932396,2.6673,7.322313 +L 2.6673,7.322313,2.5377,6.712054 +L 2.5377,6.712054,2.4112,6.101884 +L 2.4112,6.101884,2.8214,6.024173 +L 2.8214,6.024173,3.2413,5.937969 +L 3.2413,5.937969,3.6651,5.83491 +L 2.7478,4.422415,3.2378,4.7671 +L 2.261,4.069324,2.7478,4.422415 +L 1.7741,3.699202,2.261,4.069324 +L 1.7741,2.097662,2.261,2.467608 +L 2.261,2.467608,2.7478,2.820831 +L 2.7478,2.820831,3.2378,3.165472 +L 2.2014,0.415391,2.8595,0.830606 +L 1.1328,0.000044,2.2014,0.415391 +L 0.5763,1.00713,0.688,2.450534 +L 0.688,2.450534,0.7024,5.83491 +L 0.7024,5.83491,1.5601,5.83491 +L 1.5601,5.83491,1.4099,6.444992 +L 1.4099,6.444992,1.2628,7.055252 +L 1.2628,7.055252,1.1328,7.665247 +L 1.1328,7.665247,0.8351,7.768613 +L 0.8351,7.768613,0.5553,7.854685 +L 0.5553,7.854685,0.2817,7.932396 +L 1.9069,8.655566,1.9913,8.999988 +L 1.8372,8.302342,1.9069,8.655566 +L 1.7741,7.932396,1.8372,8.302342 +L 4.5236,2.097662,4.5236,6.864411 +L 4.5236,6.864411,5.1365,7.091852 +L 5.1365,7.091852,5.4689,7.437894 +L 6.2292,8.466257,7.4796,8.466257 +L 7.4796,0.000044,7.2026,0.370165 +L 7.2026,0.370165,6.9332,0.723344 +L 6.9332,0.723344,6.6562,1.067854 +L 0.2817,0.266974,0.5763,1.00713 + +[直] 18 +L 4.9805,7.932396,7.5058,7.932396 +L 4.5501,7.932396,4.3991,8.302342 +L 4.3991,8.302342,4.2555,8.655566 +L 4.2555,8.655566,4.1228,8.999988 +L 1.8668,8.120216,0.3083,7.932396 +L 3.4153,7.960547,1.8668,8.120216 +L 4.1228,6.368683,3.4153,7.960547 +L 2.4171,6.368683,4.1228,6.368683 +L 2.4171,1.601978,2.4171,6.368683 +L 2.8405,1.601978,6.2277,1.601978 +L 6.2277,1.601978,6.2277,3.165472 +L 6.2277,3.165472,2.8405,3.165472 +L 6.2277,4.7671,2.8405,4.7671 +L 6.2277,3.699202,6.2277,4.7671 +L 6.2277,5.301136,6.2277,6.368683 +L 6.2277,6.368683,4.5501,6.368683 +L 0.7394,0.000044,0.7394,6.368683 +L 1.1593,0.000044,7.5058,0.000044 + +[羽] 20 +L 2.0198,0.000044,3.2978,0.000044 +L 3.2978,0.000044,3.2978,3.699202 +L 3.2978,3.699202,2.2926,3.354604 +L 2.2926,3.354604,1.2944,3.001645 +L 1.2944,3.001645,0.3141,2.631348 +L 1.0142,6.443679,0.734,6.864411 +L 1.2944,6.01406,1.0142,6.443679 +L 1.5925,5.568022,1.2944,6.01406 +L 3.2978,4.233195,3.2978,8.466257 +L 3.2978,8.466257,0.3141,8.466257 +L 5.8336,0.000044,7.1124,0.000044 +L 7.1124,0.000044,7.1124,3.699202 +L 7.1124,3.699202,6.1072,3.354604 +L 6.1072,3.354604,5.1051,3.001645 +L 5.1051,3.001645,4.1248,2.631348 +L 4.8253,6.443679,4.5486,6.864411 +L 5.1051,6.01406,4.8253,6.443679 +L 5.4063,5.568022,5.1051,6.01406 +L 7.1124,4.233195,7.1124,8.466257 +L 7.1124,8.466257,4.1248,8.466257 + +[黄] 34 +L 5.4367,7.932396,6.6867,7.932396 +L 5.0094,7.932396,4.8549,8.302342 +L 4.8549,8.302342,4.7117,8.655566 +L 4.7117,8.655566,4.5821,8.999988 +L 4.3054,7.819354,3.6081,7.854685 +L 3.6081,7.854685,2.8725,6.864411 +L 2.4452,7.932396,2.5787,8.302342 +L 2.5787,8.302342,2.7223,8.655566 +L 2.7223,8.655566,2.8725,8.999988 +L 0.7711,7.932396,2.4452,7.932396 +L 3.7271,6.368683,0.3403,6.368683 +L 3.4928,5.157053,3.7271,6.368683 +L 2.7888,4.783955,3.4928,5.157053 +L 1.6222,4.7671,2.7888,4.783955 +L 1.6222,1.601978,1.6222,4.7671 +L 2.0495,1.601978,3.7271,1.601978 +L 3.7271,1.601978,3.4963,2.888559 +L 3.4963,2.888559,2.8904,3.200759 +L 2.8904,3.200759,2.0495,3.165472 +L 1.4719,0.370165,2.0495,0.53408 +L 0.8972,0.189395,1.4719,0.370165 +L 0.3403,0.000044,0.8972,0.189395 +L 4.1544,1.601978,5.864,1.601978 +L 5.864,1.601978,5.864,3.165472 +L 5.864,3.165472,4.1544,3.165472 +L 4.1544,3.165472,3.8672,3.758656 +L 3.8672,3.758656,3.8672,4.174003 +L 3.8672,4.174003,4.1544,4.7671 +L 4.1544,4.7671,5.864,4.7671 +L 5.864,4.7671,5.864,3.699202 +L 5.713,0.370165,5.4367,0.53408 +L 6.2913,0.000044,5.713,0.370165 +L 5.0094,6.368683,7.1179,6.368683 +L 4.3684,6.368683,4.3054,7.819354 + +[絵] 27 +L 5.0079,3.699202,3.3302,3.699202 +L 4.7343,2.477547,5.0079,3.699202 +L 4.4615,1.247442,4.7343,2.477547 +L 4.1848,0.000044,4.4615,1.247442 +L 3.3302,0.000044,4.1848,0.000044 +L 4.6118,0.000044,5.3336,0.138697 +L 5.3336,0.138697,5.9777,0.395427 +L 5.9777,0.395427,6.7167,0.53408 +L 6.7167,0.53408,7.0004,1.125819 +L 7.0004,1.125819,7.0004,1.53136 +L 7.0004,1.53136,6.7167,2.097662 +L 5.4352,3.699202,7.5748,3.699202 +L 4.6118,5.301136,6.2863,5.301136 +L 6.7798,6.901231,7.5748,5.83491 +L 5.9952,7.959146,6.7798,6.901231 +L 5.2212,8.999988,5.9952,7.959146 +L 4.5841,7.959146,5.2212,8.999988 +L 3.9498,6.901231,4.5841,7.959146 +L 3.3302,5.83491,3.9498,6.901231 +L 1.6207,8.999987,0.7969,7.1314 +L 2.4749,5.301114,2.9022,4.50009 +L 1.6207,4.767023,1.6207,0.000044 +L 0.7969,3.165421,0.3699,1.334985 +L 2.4749,3.165421,2.9022,1.868754 +L 0.3699,4.767023,2.7597,4.767023 +L 0.7969,7.1314,1.5976,6.130702 +L 2.4749,7.932326,0.9335,4.767023 + +[角] 42 +L 1.6545,7.932396,1.2237,7.425285 +L 1.2237,7.425285,0.7999,6.901231 +L 0.7999,6.901231,0.3726,6.368683 +L 1.6721,3.98023,1.6545,6.368683 +L 1.4059,2.13435,1.6721,3.98023 +L 0.3726,0.000044,1.4059,2.13435 +L 6.3233,0.000044,6.7433,0.000044 +L 5.8922,0.000044,6.3233,0.000044 +L 5.4649,0.000044,5.8922,0.000044 +L 6.7433,0.000044,6.7433,0.877276 +L 6.7433,0.877276,6.7433,1.754378 +L 6.7433,1.754378,6.7433,2.631348 +L 6.7433,2.631348,5.192,2.631348 +L 5.192,2.631348,3.6334,2.631348 +L 3.6334,2.631348,2.0783,2.631348 +L 3.087,4.868846,2.0783,4.7671 +L 3.8677,4.614305,3.087,4.868846 +L 4.1833,3.165472,3.8677,4.614305 +L 5.3146,4.7671,4.6138,4.7671 +L 6.0256,4.7671,5.3146,4.7671 +L 6.7433,4.7671,6.0256,4.7671 +L 6.7433,4.233195,6.7433,4.7671 +L 6.7433,3.699202,6.7433,4.233195 +L 6.7433,3.165472,6.7433,3.699202 +L 6.7433,5.301136,6.7433,5.671082 +L 6.7433,5.671082,6.7433,6.024173 +L 6.7433,6.024173,6.7433,6.368683 +L 6.7433,6.368683,6.1692,6.368683 +L 6.1692,6.368683,5.5948,6.368683 +L 5.5948,6.368683,5.0376,6.368683 +L 4.6138,6.635876,4.7434,6.978985 +L 4.7434,6.978985,4.8873,7.322313 +L 4.8873,7.322313,5.0376,7.665247 +L 5.0376,7.665247,3.9133,7.768613 +L 3.9133,7.768613,2.7823,7.854685 +L 2.7823,7.854685,1.6545,7.932396 +L 1.6545,6.368683,2.6314,6.471655 +L 2.6314,6.471655,3.6159,6.558078 +L 3.6159,6.558078,4.6138,6.635876 +L 4.3161,5.490224,4.1833,5.83491 +L 4.4597,5.137133,4.3161,5.490224 +L 4.6138,4.7671,4.4597,5.137133 + +[丸] 11 +L 0.6163,0.000044,2.5251,3.098794 +L 2.9346,8.999988,2.5251,3.098794 +L 0.4023,6.330418,5.4952,6.330418 +L 5.5089,2.231631,5.4952,6.330418 +L 5.6213,0.590207,5.5089,2.231631 +L 5.6213,0.590207,5.9225,0.000044 +L 5.9225,0.000044,7.6037,0.000044 +L 7.6037,0.000044,7.6037,0.532416 +L 7.6037,0.532416,7.6037,1.056471 +L 7.6037,1.056471,7.6037,1.563451 +A -7.1766,-7.557634,14.933907,40.281036,55.617141 + +[弓] 7 +L 1.4694,6.770239,7.6089,6.770239 +L 7.6089,6.770239,7.6089,9.000118 +L 7.6089,9.000118,0.4288,9.000118 +L 1.4694,4.500125,1.4694,6.770239 +L 7.6089,4.500125,1.4694,4.500125 +L 5.5358,0.000438,4.5372,0.000438 +A 1.6827,4.500125,5.923244,310.56469,0 + +[戸] 6 +L 0.4347,8.466257,7.6284,8.466257 +L 6.8126,6.368683,1.7131,6.368683 +L 6.8126,6.368683,6.8126,3.699202 +L 1.7131,6.368683,1.7131,3.699202 +L 6.8126,3.699202,1.7131,3.699202 +A -4.2695,3.699202,5.980554,321.79092,0 + +[光] 30 +L 6.6567,0.000044,7.2349,0.000044 +L 7.2349,0.000044,7.2349,0.53408 +L 7.2349,0.53408,7.2349,1.067854 +L 7.2349,1.067854,7.2349,1.601978 +L 6.0861,0.000044,6.6567,0.000044 +L 5.5289,0.000044,6.0861,0.000044 +L 5.13,0.000044,4.8323,0.55238 +L 4.8323,0.55238,4.7198,1.926699 +L 4.7198,1.926699,4.7023,5.301136 +L 4.7023,5.301136,4.275,5.301136 +L 4.275,5.301136,3.8512,5.301136 +L 3.8512,5.301136,3.4239,5.301136 +L 2.9966,5.301136,2.142,5.301136 +L 2.142,5.301136,1.2944,5.301136 +L 1.2944,5.301136,0.4612,5.301136 +L 2.142,6.635876,1.8653,7.245829 +L 1.8653,7.245829,1.5925,7.855911 +L 1.5925,7.855911,1.3154,8.466257 +L 3.8512,7.959146,3.8512,8.999988 +L 3.8512,6.901231,3.8512,7.959146 +L 3.8512,5.83491,3.8512,6.901231 +L 2.7129,3.121648,2.9966,5.301136 +L 1.8653,1.670976,2.7129,3.121648 +L 0.4612,0.000044,1.8653,1.670976 +L 5.8336,5.301136,6.5344,5.301136 +L 6.5344,5.301136,7.2349,5.301136 +L 5.13,5.301136,5.8336,5.301136 +L 5.5289,6.368683,5.8059,7.082045 +L 5.8059,7.082045,6.0861,7.778376 +L 6.0861,7.778376,6.3835,8.466257 + +[才] 24 +L 1.654,6.788233,0.4628,6.864411 +L 2.8515,6.712054,1.654,6.788233 +L 4.0637,6.635876,2.8515,6.712054 +L 4.1264,6.024173,4.0637,6.635876 +L 4.193,5.40402,4.1264,6.024173 +L 4.277,4.7671,4.193,5.40402 +L 4.7047,4.7671,4.9775,5.137133 +L 4.9775,5.137133,5.2612,5.490224 +L 5.2612,5.490224,5.5558,5.83491 +L 5.8356,6.864411,6.5431,6.864411 +L 6.5431,6.864411,7.2646,6.864411 +L 5.1355,6.864411,5.8356,6.864411 +L 4.7047,6.864411,4.4035,7.299591 +L 4.4035,7.299591,4.2945,7.853241 +L 4.2945,7.853241,4.277,8.999988 +L 1.654,2.47886,0.4628,1.601978 +L 2.8515,3.356093,1.654,2.47886 +L 4.0637,4.233195,2.8515,3.356093 +L 4.1264,2.822188,4.0637,4.233195 +L 4.193,1.41105,4.1264,2.822188 +L 4.277,0.000044,4.193,1.41105 +L 3.8536,0.000044,4.277,0.000044 +L 3.4333,0.000044,3.8536,0.000044 +L 3.0231,0.000044,3.4333,0.000044 + +[算] 54 +L 0.9205,0.000044,1.551,0.039578 +L 1.551,0.039578,1.9884,0.316578 +L 1.9884,0.316578,2.5978,1.067854 +L 2.5978,1.067854,2.2585,1.443492 +L 2.2585,1.443492,1.7121,1.58197 +L 1.7121,1.58197,0.4929,1.601978 +L 1.7783,3.165472,1.7783,4.233195 +L 1.7783,4.233195,1.7783,5.301136 +L 1.7783,5.301136,1.7783,6.368683 +L 1.7783,6.368683,2.048,6.471655 +L 2.048,6.471655,2.3247,6.558078 +L 2.3247,6.558078,2.5978,6.635876 +L 2.5978,6.635876,2.4542,6.978985 +L 2.4542,6.978985,2.3247,7.322313 +L 2.3247,7.322313,2.2024,7.665247 +L 2.2024,7.665247,1.2848,7.833452 +L 1.2848,7.833452,0.8435,7.764278 +L 0.8435,7.764278,0.4929,7.398404 +L 3.8727,7.960547,2.5978,7.932396 +L 5.3438,7.751408,3.8727,7.960547 +L 6.4089,6.864411,5.3438,7.751408 +L 6.4089,6.101884,5.2842,6.204856 +L 5.2842,6.204856,4.1564,6.29106 +L 4.1564,6.29106,3.0255,6.368683 +L 3.603,5.223425,2.2024,5.301136 +L 3.603,4.233195,2.2024,4.233195 +L 5.0079,4.233195,3.603,4.233195 +L 6.4089,4.233195,5.0079,4.233195 +L 6.3318,3.888553,6.4089,4.233195 +L 6.2614,3.535419,6.3318,3.888553 +L 6.1984,3.165472,6.2614,3.535419 +L 5.5924,3.165472,4.7343,3.165472 +L 4.7343,3.165472,3.8832,3.165472 +L 3.8832,3.165472,3.0255,3.165472 +L 2.5978,3.165472,2.3247,3.165472 +L 2.3247,3.165472,2.048,3.165472 +L 2.048,3.165472,1.7783,3.165472 +L 2.5978,2.820831,2.5978,3.165472 +L 2.5978,2.467608,2.5978,2.820831 +L 2.5978,2.097662,2.5978,2.467608 +L 3.8237,1.714844,2.5978,2.097662 +L 5.0391,1.654033,3.8237,1.714844 +L 5.5924,0.000044,5.0391,1.654033 +L 5.7189,1.990224,5.6064,2.395589 +L 5.6064,2.395589,5.5924,3.165472 +L 6.0127,1.601978,5.7189,1.990224 +L 6.4089,1.601978,6.8393,1.601978 +L 6.8393,1.601978,7.2666,1.601978 +L 7.2666,1.601978,7.6939,1.601978 +L 6.4089,5.033986,5.0079,5.137133 +L 5.0079,5.137133,3.603,5.223425 +L 6.4089,7.932396,6.8393,7.932396 +L 6.8393,7.932396,7.2666,7.932396 +L 7.2666,7.932396,7.6939,7.932396 + +[首] 34 +L 6.442,0.000044,6.442,2.097662 +L 6.442,2.097662,2.2009,2.097662 +L 1.7771,0.000044,1.7771,5.301136 +L 1.7771,5.301136,2.3337,5.40402 +L 2.3337,5.40402,2.9049,5.490224 +L 2.9049,5.490224,3.4825,5.568022 +L 3.4825,5.568022,3.6124,6.178062 +L 3.6124,6.178062,3.7595,6.788233 +L 3.7595,6.788233,3.9098,7.398404 +L 3.9098,7.398404,0.5264,7.398404 +L 3.0552,7.932396,2.7613,8.302342 +L 2.7613,8.302342,2.4776,8.655566 +L 2.4776,8.655566,2.2009,8.999988 +L 3.605,3.699202,2.2009,3.699202 +L 5.0169,3.699202,3.605,3.699202 +L 6.442,3.699202,5.0169,3.699202 +L 6.442,3.354604,6.442,3.699202 +L 6.442,3.001645,6.442,3.354604 +L 6.442,2.631348,6.442,3.001645 +L 6.442,4.233195,6.442,4.603272 +L 6.442,4.603272,6.442,4.956276 +L 6.442,4.956276,6.442,5.301136 +L 6.442,5.301136,5.5909,5.301136 +L 5.5909,5.301136,4.7433,5.301136 +L 4.7433,5.301136,3.9098,5.301136 +L 4.3409,7.398404,4.9503,7.635827 +L 4.9503,7.635827,5.3843,8.05091 +L 5.3843,8.05091,6.0147,8.999988 +L 6.2918,7.398404,7.0024,7.398404 +L 7.0024,7.398404,7.7243,7.398404 +L 5.5874,7.398404,6.2918,7.398404 +L 3.605,0.000044,5.0169,0.000044 +L 2.2009,0.000044,3.605,0.000044 +L 5.0169,0.000044,6.442,0.000044 + +[星] 23 +L 0.5249,0.000044,3.9156,0.000044 +L 3.9156,0.000044,3.8981,0.771327 +L 3.8981,0.771327,3.793,1.186587 +L 3.793,1.186587,3.5128,1.601978 +L 3.5128,1.601978,1.8033,1.601978 +L 1.9963,2.94797,1.334,2.671101 +L 1.334,2.671101,0.9522,2.097662 +L 3.5128,3.165472,1.9963,2.94797 +L 3.7892,2.658361,3.5128,3.165472 +L 4.0627,2.13435,3.7892,2.658361 +L 4.3356,1.601978,4.0627,2.13435 +L 4.7667,1.601978,6.0451,1.601978 +L 4.7667,3.165472,6.4724,3.165472 +L 4.3356,3.165472,4.0343,3.600389 +L 4.0343,3.600389,3.9293,4.154039 +L 3.9293,4.154039,3.9156,5.301136 +L 3.9156,5.301136,1.8033,5.301136 +L 1.8033,5.301136,1.8033,8.466257 +L 1.8033,8.466257,6.0451,8.466257 +L 6.0451,8.466257,6.0451,5.301136 +L 6.0451,5.301136,4.3356,5.301136 +L 2.2344,6.864411,5.6213,6.864411 +L 4.3356,0.000044,7.3302,0.000044 + +[声] 9 +L 7.7559,7.970529,0.5588,7.970529 +L 4.1554,9.000118,4.1554,6.000094 +L 1.4099,6.000094,6.8982,6.000094 +L 1.4099,4.500125,1.4099,2.529646 +L 1.4099,2.529646,6.8982,2.529646 +L 6.8982,2.529646,6.8982,4.500125 +L 6.8982,4.500125,1.4099,4.500125 +L 4.1554,4.500125,4.1554,2.529646 +A -2.7651,2.529646,4.172244,322.67857,0 + +[船] 22 +L 0.5849,0.266974,0.9912,2.709103 +L 0.9912,2.709103,1.4119,6.558078 +L 1.4119,6.558078,1.8357,8.999988 +L 2.263,0.000044,3.1207,0.000044 +L 3.1207,0.000044,3.1207,4.7671 +L 3.1207,4.7671,2.5396,4.603272 +L 2.5396,4.603272,1.9649,4.422415 +L 1.9649,4.422415,1.4119,4.233195 +L 4.7949,0.000044,4.7949,3.699202 +L 4.7949,3.699202,7.3625,3.699202 +L 7.3625,3.699202,7.3625,0.000044 +L 7.3625,0.000044,4.7949,0.000044 +L 1.8357,1.601978,1.8357,3.165472 +L 4.3991,5.033986,4.977,6.381423 +L 4.977,6.381423,5.1945,7.271308 +L 5.1945,7.271308,5.2222,8.466257 +L 7.7863,5.033986,7.1835,6.757236 +L 7.1835,6.757236,6.9629,7.785468 +L 6.9629,7.785468,6.9317,8.999988 +L 3.1207,5.301136,3.1207,7.932396 +L 3.1207,7.932396,1.8357,7.932396 +L 1.8357,5.83491,1.8357,6.864411 + +[谷] 8 +L 2.2019,3.000069,2.2019,0.000044 +L 2.2019,0.000044,6.6006,0.000044 +L 6.6006,0.000044,6.6006,3.000069 +L 6.6006,3.000069,2.2019,3.000069 +L 4.4014,7.500063,0.7974,3.899936 +L 2.5973,9.000118,1.7252,7.485396 +L 4.4014,7.500063,8.0016,3.899936 +L 6.1979,9.000118,7.0738,7.485396 + +[池] 11 +L 1.8638,7.970398,1.0446,8.9999 +L 1.4435,5.83469,0.6173,6.9025 +L 1.8638,3.470535,0.6173,0.000044 +L 5.7095,8.999813,5.7095,1.563363 +L 7.818,0.000044,7.818,1.563363 +L 7.818,3.165341,7.818,6.513465 +L 3.1531,5.262653,7.818,6.513465 +L 6.9918,3.165341,7.818,3.165341 +L 4.5012,0.000044,7.818,0.000044 +L 4.0042,2.000075,4.0042,7.932221 +A 8.2526,2.000075,4.249821,180,208.07382 + +[刀] 6 +L 1.0431,9.000118,8.2476,9.000118 +L 3.7431,9.000118,3.7431,6.000094 +L 8.2476,9.000118,8.2476,6.000094 +L 5.5437,0.000044,6.4474,0.000044 +A -4.274,6.000094,8.016544,311.54348,0 +A -2.6523,6.000094,10.900148,326.602,0 + +[麦。] 29 +L 0.649,0.000044,1.63,0.049516 +L 1.63,0.049516,2.5021,0.395427 +L 2.5021,0.395427,4.0323,1.335003 +L 4.0323,1.335003,3.5245,1.944999 +L 3.5245,1.944999,3.0275,2.555257 +L 3.0275,2.555257,2.5406,3.165472 +L 2.5406,3.165472,2.0499,2.820831 +L 2.0499,2.820831,1.5631,2.467608 +L 1.5631,2.467608,1.0763,2.097662 +L 6.5646,0.000044,5.8645,0.53408 +L 5.8645,0.53408,5.1636,1.067854 +L 5.1636,1.067854,4.4596,1.601978 +L 4.4596,1.601978,5.7419,3.432315 +L 5.7419,3.432315,4.7363,3.535419 +L 4.7363,3.535419,3.735,3.621666 +L 3.735,3.621666,2.7504,3.699202 +L 3.1812,4.233195,3.1812,5.301136 +L 3.1812,5.301136,0.649,5.301136 +L 3.819,5.301136,3.6404,6.774092 +L 3.6404,6.774092,2.6384,6.993214 +L 2.6384,6.993214,1.5001,6.864411 +L 4.4596,5.301136,7.4157,5.301136 +L 4.4596,6.864411,3.3532,7.853241 +L 3.3532,7.853241,2.3445,8.011421 +L 2.3445,8.011421,1.0763,7.932396 +L 4.8908,6.864411,6.5646,6.864411 +L 4.4596,7.932396,4.1658,8.655608 +L 4.1658,8.655566,4.0323,8.999988 +L 4.8908,7.932396,6.9958,7.932396 + +[鳴] 28 +L 6.1712,0.000044,7.4527,0.498618 +L 7.4527,0.498618,7.8555,1.700703 +L 7.8555,1.700703,7.88,3.165472 +L 7.88,3.165472,4.0627,3.165472 +L 4.0627,3.165472,4.0627,7.932396 +L 4.0627,7.932396,4.6788,8.149943 +L 4.6788,8.149943,5.0045,8.426724 +L 5.0045,8.426724,5.3166,8.999988 +L 2.3532,0.53408,2.6544,0.947938 +L 2.6544,0.947938,2.7668,1.353172 +L 2.7668,1.353172,2.7843,2.097662 +L 4.0627,1.335003,3.9118,1.60027 +L 3.9118,1.60027,3.7682,1.857306 +L 3.7682,1.857306,3.6389,2.097662 +L 5.3166,1.335003,5.173,1.60027 +L 5.173,1.60027,5.043,1.857306 +L 5.043,1.857306,4.917,2.097662 +L 0.6793,3.165472,0.6793,7.932396 +L 0.6793,7.932396,2.3532,7.932396 +L 2.3532,7.932396,2.3532,3.165472 +L 2.3532,3.165472,0.6793,3.165472 +L 4.49,4.233195,7.88,4.233195 +L 4.49,5.301136,7.0219,5.301136 +L 7.0219,5.301136,7.0219,6.864411 +L 7.0219,6.864411,4.49,6.864411 +L 7.0219,7.665247,6.444,7.768613 +L 6.444,7.768613,5.8731,7.854685 +L 5.8731,7.854685,5.3166,7.932396 + +[毛] 23 +L 4.0647,0.000044,3.7702,1.077748 +L 3.7702,1.077748,3.5569,2.621629 +L 3.5569,2.621629,3.2413,3.699202 +L 3.2413,3.699202,2.8595,3.323389 +L 2.8595,3.323389,2.1979,3.185304 +L 2.1979,3.185304,0.6813,3.165472 +L 4.4917,0.000044,7.8785,0.000044 +L 7.8785,0.000044,7.8785,1.601978 +L 4.0647,3.699202,3.7877,4.114592 +L 3.7877,4.114592,3.6826,4.529852 +L 3.6826,4.529852,3.6686,5.301136 +L 3.6686,5.301136,1.5324,5.301136 +L 4.4917,3.699202,5.2657,3.83768 +L 5.2657,3.83768,6.1378,4.094585 +L 6.1378,4.094585,7.4796,4.233195 +L 3.6686,5.83491,3.6686,7.398404 +L 3.6686,7.398404,1.9597,7.398404 +L 4.0647,5.83491,4.8282,5.973256 +L 4.8282,5.973256,5.5844,6.230248 +L 5.5844,6.230248,6.6285,6.368683 +L 3.6686,7.932396,4.6916,8.070787 +L 4.6916,8.070787,5.4443,8.327648 +L 5.4443,8.327648,6.2009,8.466257 + +[矢] 16 +L 0.925,0.000044,1.9684,1.247442 +L 1.9684,1.247442,3.03,2.477547 +L 3.03,2.477547,4.0944,3.699202 +L 4.0944,3.699202,3.6881,4.075015 +L 3.6881,4.075015,2.8058,4.213406 +L 2.8058,4.213406,0.7075,4.233195 +L 7.0543,0.000044,4.5217,3.165472 +L 4.5217,4.233195,4.2208,4.706332 +L 4.2208,4.706332,4.1084,5.526869 +L 4.1084,5.526869,4.0944,7.398404 +L 4.0944,7.398404,2.7253,7.264128 +L 2.7253,7.264128,1.9582,6.909593 +L 1.9582,6.909593,1.1383,5.83491 +L 4.9493,4.233195,7.4851,4.233195 +L 4.5217,7.398404,6.6266,7.398404 +L 2.3855,7.932396,2.3855,8.999988 + +[里] 19 +L 0.7379,0.000044,4.1279,0.000044 +L 4.1279,0.000044,3.834,1.831914 +L 3.834,1.831914,2.9724,2.197701 +L 2.9724,2.197701,1.5641,2.097662 +L 4.5552,0.000044,7.5113,0.000044 +L 4.5552,2.097662,3.7111,3.583271 +L 3.7111,3.583271,3.3223,4.14559 +L 3.3223,4.14559,1.5641,4.233195 +L 1.5641,4.233195,1.5641,8.466257 +L 1.5641,8.466257,6.6602,8.466257 +L 6.6602,8.466257,6.6602,4.233195 +L 6.6602,4.233195,4.482,4.786976 +L 4.482,4.786976,3.8057,5.815033 +L 3.8057,5.815033,1.9879,6.368683 +L 4.9513,2.097662,6.6602,2.097662 +L 4.5552,6.368683,4.254,6.757236 +L 4.254,6.757236,4.1458,7.162513 +L 4.1458,7.162513,4.1279,7.932396 +L 4.9513,6.368683,6.2329,6.368683 + +[汽] 9 +L 1.9938,7.970398,1.1707,8.999856 +L 1.5626,5.834647,0.7399,6.902413 +L 1.9938,3.470448,0.7399,0 +L 7.9371,1.499969,7.9371,0 +L 2.5401,4.500037,7.0408,4.500037 +L 3.4399,6.000007,7.0408,6.000007 +L 7.9371,7.500019,3.2301,7.500019 +A 18.739,4.500037,11.700594,180,202.61878 +A -2.0095,8.999988,5.450156,326.60247,0 + +# Japanese Character (漢字G3)----------------------------------- + +[畑] 11 +L 4.3736,8.199239,4.3736,0.800967 +L 4.3736,0.800967,7.9709,0.800967 +L 7.9709,0.800967,7.9709,8.199239 +L 7.9709,8.199239,4.3736,8.199239 +L 7.9709,4.500125,4.3736,4.500125 +L 6.1707,0.800967,6.1707,8.199239 +L 2.1183,9.000118,2.1183,4.500125 +L 2.132,2.257418,3.008,0.742739 +L 3.4738,7.500063,2.5667,6.600151 +L 0.7695,7.699264,0.7695,5.250087 +A -6.0564,4.500125,8.175136,326.60209,0 + +[物] 11 +L 2.1235,9.000118,2.1235,0.000044 +L 0.768,3.45136,3.4723,3.45136 +L 2.9925,6.902632,1.2517,6.902632 +L 6.1692,0.000044,7.069,0.000044 +L 7.9694,6.902632,7.9694,3.000069 +L 4.1798,6.902632,7.9694,6.902632 +A -3.7816,9.000118,5.44975,326.5996,0 +A 2.5231,3.000069,5.44975,326.5996,0 +A -7.3296,9.000118,11.699109,337.37834,0 +A -1.0984,7.049297,6.545251,317.54725,358.71586 +A -2.7586,6.998424,9.466261,316.9308,359.4203 + +[羊] 6 +L 6.2027,9.000118,5.3267,7.485396 +L 2.5983,9.000118,3.4778,7.485396 +L 8.0026,3.000069,0.8019,3.000069 +L 1.7017,7.500063,7.1028,7.500063 +L 1.7017,5.250087,7.1028,5.250087 +L 4.4059,7.500063,4.4059,0.000044 + +[短] 14 +L 4.2188,4.7671,0.8316,4.7671 +L 2.5411,7.398404,2.5411,4.7671 +L 3.7912,7.398404,1.4025,7.398404 +L 2.9401,2.631348,3.7912,1.335003 +L 8.0295,9.000118,4.4321,9.000118 +L 8.0295,0.000044,4.4321,0.000044 +L 7.3321,3.500088,6.5304,0.500106 +L 5.1291,3.500088,5.9347,0.500106 +L 4.7512,7.500063,4.7512,4.500125 +L 4.7512,4.500125,7.7108,4.500125 +L 7.7108,4.500125,7.7108,7.500063 +L 7.7108,7.500063,4.7512,7.500063 +A -2.5935,8.936242,4.283867,323.17605,0.852905 +A -4.9646,4.7671,7.504604,320.56463,0 + +[安] 8 +L 4.4341,7.932177,4.4341,8.999988 +L 1.0476,6.368814,1.0476,7.932177 +L 1.0476,7.932177,7.8175,7.932177 +L 7.8175,6.368814,7.8175,7.932177 +L 8.0346,4.500125,0.8301,4.500125 +L 3.7932,6.864411,2.6303,2.537789 +A 0.8301,5.490224,5.490165,270,349.60986 +A 1.1702,-7.594323,10.237543,47.886596,81.770996 + +[暗] 15 +L 3.8862,0.000044,3.8862,3.699202 +L 3.8862,3.699202,6.8423,3.699202 +L 6.8423,0.000044,3.8862,0.000044 +L 0.864,1.5001,0.864,7.500063 +L 0.864,7.500063,2.6642,7.500063 +L 2.6642,7.500063,2.6642,1.5001 +L 2.6642,1.5001,0.864,1.5001 +L 5.3643,7.932396,5.3643,8.999988 +L 6.8423,3.699202,6.8423,0.000044 +L 3.8862,1.849645,6.8423,1.849645 +L 0.864,4.500125,2.6642,4.500125 +L 3.5784,7.932396,7.1439,7.932396 +L 4.0827,7.932396,4.7902,5.301136 +L 6.6462,7.932396,5.9387,5.301136 +L 2.6642,5.301136,8.0611,5.301136 + +[飲] 16 +L 5.153,7.500194,8.0631,7.500194 +L 8.0631,7.500194,8.0631,6.000137 +L 6.2629,7.500194,6.2629,4.500125 +L 2.6627,9.000118,0.8625,5.882236 +L 2.6627,9.000118,4.4591,7.200121 +L 1.7622,6.441184,3.9621,6.441184 +L 1.7622,3.000069,3.9621,3.000069 +L 3.9621,6.441184,3.9621,3.000069 +L 1.7622,6.441184,1.7622,0.130116 +L 4.4591,3.000069,4.4591,1.5001 +L 1.7622,4.720648,3.9621,4.720648 +A -0.0902,9.000206,5.450522,326.60432,0 +A -0.2653,4.500125,6.525323,316.39894,0 +A 12.7918,4.500125,6.525323,180,223.60105 +A 0.8625,3.179963,3.179894,270,334.63397 +A 1.8253,0.000044,2.63629,10.933074,71.504943 + +[泳] 11 +L 2.111,7.970398,1.2918,8.999856 +L 1.691,5.834647,0.8645,6.902413 +L 2.111,3.470448,0.8645,0 +L 7.6378,5.83491,6.2824,4.481037 +L 5.3616,6.749968,5.3616,0.000044 +L 4.465,0.000044,5.3616,0.000044 +L 2.6647,4.500037,4.465,4.500037 +L 5.3616,6.749968,3.4629,6.749968 +L 4.465,8.999988,6.2614,7.960766 +L 5.3616,4.500037,8.0616,0 +A 1.0602,4.500037,3.399907,298.07041,0 + +[油] 9 +L 2.113,7.970398,1.2903,8.999856 +L 1.6857,5.834647,0.8595,6.902413 +L 2.113,3.470448,0.8595,0 +L 3.3952,6.864411,3.3952,0.000044 +L 3.3952,0.000044,7.6363,0.000044 +L 7.6363,0.000044,7.6363,6.864411 +L 7.6363,6.864411,3.3952,6.864411 +L 5.5314,8.999988,5.5314,0.000044 +L 3.3952,3.432227,7.6363,3.432227 + +[酒] 14 +L 2.1153,7.970398,1.2887,8.999856 +L 1.6877,5.834647,0.865,6.902413 +L 2.1153,3.470448,0.865,0 +L 2.6617,8.999988,8.0621,8.999988 +L 2.6617,6.000007,2.6617,0 +L 2.6617,0,8.0621,0 +L 8.0621,0,8.0621,6.000007 +L 8.0621,6.000007,2.6617,6.000007 +L 6.2619,8.999988,6.2619,6.233182 +L 2.6617,2.249975,8.0621,2.249975 +L 8.0621,4.233195,6.7627,4.233195 +L 4.462,7.500019,4.462,8.999988 +A 10.5104,6.233182,4.249821,180,208.07389 +A -1.5941,7.500019,6.059265,314.66275,0 + +[待] 10 +L 1.2534,8.999944,0.0034,6.902544 +L 1.2534,0,1.2534,5.567716 +L 3.3938,7.970485,6.8083,7.970485 +L 5.0991,0,5.9502,0 +L 3.3938,2.669569,4.2449,1.601671 +L 5.0991,8.999944,5.0991,5.834778 +L 2.9906,5.834778,7.2041,5.834778 +L 2.9906,3.737466,7.2041,3.737466 +L 5.9502,0,5.9502,5.334759 +A -4.4622,8.133,6.266899,315.462,348.67668 + +[客] 28 +L 3.5464,6.291104,2.9926,6.368727 +L 4.0994,6.204899,3.5464,6.291104 +L 4.6668,6.10184,4.0994,6.204899 +L 4.3765,5.670951,4.6668,6.10184 +L 4.0928,5.223206,4.3765,5.670951 +L 3.8157,4.767143,4.0928,5.223206 +L 1.7107,0,1.6267,1.066496 +L 1.6267,1.066496,1.5605,2.124544 +L 1.5605,2.124544,1.501,3.165341 +L 1.501,3.165341,0.9861,3.011408 +L 0.9861,3.011408,0.4919,2.848982 +L 0.4919,2.848982,0.0019,2.669569 +L 2.2256,6.560705,2.5653,7.932309 +L 1.6547,5.731718,2.2256,6.560705 +L 0.6425,4.767143,1.6547,5.731718 +L 4.954,3.202029,3.9702,3.725996 +L 5.9557,2.669569,4.954,3.202029 +L 2.6953,4.069411,2.4147,3.888509 +L 2.9926,4.23315,2.6953,4.069411 +L 3.9702,3.725996,2.9926,4.23315 +L 2.4147,3.888509,2.1416,3.699246 +L 5.0976,2.669569,2.1416,2.669569 +L 5.0976,0,5.0976,2.669569 +L 2.1416,0,5.0976,0 +L 3.3923,7.932221,3.3923,9.000075 +L 0.0019,6.368858,0.0019,7.932221 +L 0.0019,7.932221,6.7756,7.932221 +L 6.7756,6.368858,6.7756,7.932221 + +[薬] 35 +L 1.8462,1.522691,1.1313,0.969084 +L 1.1313,0.969084,0.0351,0.53408 +L 2.781,2.669569,1.8462,1.522691 +L 2.9946,2.505698,2.781,2.669569 +L 3.2083,2.325059,2.9946,2.505698 +L 4.7038,2.669569,6.8057,2.669569 +L 6.3815,4.23315,6.1052,4.422283 +L 5.9822,0.53408,3.4184,3.165472 +L 3.8496,4.23315,4.7038,4.23315 +L 4.7038,4.23315,4.7038,5.300917 +L 3.4184,2.135839,3.2083,2.325059 +L 3.4184,0,3.4184,2.135839 +L 3.4184,3.165341,3.4184,4.23315 +L 4.7038,5.300917,2.5673,5.300917 +L 4.7038,6.10184,4.2734,6.204899 +L 4.2734,6.204899,3.8496,6.291104 +L 3.8496,6.291104,3.4184,6.368727 +L 3.0896,6.863098,3.4184,7.436624 +L 2.7568,6.586317,3.0896,6.863098 +L 0.0351,2.669569,2.14,2.669569 +L 0.2487,4.23315,0.592,4.422283 +L 0.592,4.422283,0.9492,4.60336 +L 2.14,6.368727,2.7568,6.586317 +L 3.4184,4.23315,2.14,4.23315 +L 2.14,4.23315,2.14,6.368727 +L 5.832,6.204899,6.1052,6.558078 +L 6.1052,6.558078,6.3815,6.902588 +L 5.5549,5.834778,5.832,6.204899 +L 5.832,4.60336,5.5549,4.767143 +L 6.1052,4.422283,5.832,4.60336 +L 1.3135,5.834778,0.4592,6.902588 +L 0.9492,4.60336,1.3135,4.767143 +L 0.0351,7.932221,7.2361,7.932221 +L 4.7038,9.000075,4.7038,7.169475 +L 2.5989,9.000075,2.5989,7.169475 + +[度] 25 +L 4.3066,1.067897,3.3718,2.39143 +L 3.3959,0.435092,4.3066,1.067897 +L 2.2471,0.0989,3.3959,0.435092 +L 3.3718,2.39143,2.8184,2.935055 +L 2.8184,2.935055,2.1736,3.165341 +L 3.0247,6.368727,1.7431,6.368727 +L 3.0247,4.767143,3.0247,6.368727 +L 5.5569,6.368727,3.452,6.368727 +L 5.5569,4.767143,5.5569,6.368727 +L 3.452,4.767143,5.5569,4.767143 +L 4.2859,3.089118,3.452,3.165341 +L 5.1296,3.012809,4.2859,3.089118 +L 1.3155,0,2.2471,0.0989 +L 5.9846,6.368727,6.8388,6.368727 +L 5.9846,2.936587,5.1296,3.012809 +L 5.2382,0.672339,4.6992,1.067897 +L 4.6992,1.067897,5.1296,1.704862 +L 5.1296,1.704862,5.5569,2.325059 +L 5.5569,2.325059,5.9846,2.936587 +L 6.4084,0,5.8757,0.395646 +L 5.8757,0.395646,5.2382,0.672339 +L 7.2626,7.932309,0.8882,7.932309 +L 4.0789,8.961767,4.0789,7.932309 +L 0.8882,7.932309,0.8882,4.500081 +A -11.8184,4.500081,12.703326,339.25315,0 + +[病] 14 +L 2.6309,0,2.6309,4.23315 +L 6.8657,0,6.8657,4.23315 +L 6.0146,0,6.8657,0 +L 4.3054,7.932309,4.3054,9.000162 +L 1.3455,4.500081,1.3455,7.932309 +L 1.3455,7.932309,7.2615,7.932309 +L 0.0639,3.165341,1.3455,4.446538 +L 0.0639,6.00005,1.3455,6.00005 +L 2.2004,6.368727,7.2615,6.368727 +L 4.7359,6.368727,4.7359,4.23315 +L 6.8657,4.23315,2.6309,4.23315 +L 4.6973,3.755372,6.0146,1.601802 +A -7.197,4.500081,8.542338,328.21115,0 +A 1.3875,4.23315,3.342486,308.07176,0 + +[屋] 30 +L 4.7624,0,7.2947,0 +L 5.1932,1.601802,6.4404,1.601802 +L 4.7624,1.601802,4.465,2.015792 +L 4.465,2.015792,4.3526,2.420982 +L 4.3526,2.420982,4.3354,3.165341 +L 4.3354,3.165341,1.7751,3.165341 +L 3.1758,1.703461,2.1989,1.601802 +L 3.9953,1.449227,3.1758,1.703461 +L 4.3354,0,3.9953,1.449227 +L 1.3794,0,4.3354,0 +L 3.4843,5.300917,1.3794,5.300917 +L 3.4665,4.529721,3.4843,5.300917 +L 3.3579,4.114418,3.4665,4.529721 +L 3.0532,3.699246,3.3579,4.114418 +L 4.458,5.223206,3.9043,5.300917 +L 5.0181,5.137133,4.458,5.223206 +L 5.5855,5.033855,5.0181,5.137133 +L 5.7186,4.689257,5.5855,5.033855 +L 5.8625,4.336254,5.7186,4.689257 +L 6.0166,3.96622,5.8625,4.336254 +L 5.5855,3.888509,6.0166,3.96622 +L 5.1655,3.802436,5.5855,3.888509 +L 4.7624,3.699246,5.1655,3.802436 +L 6.0166,5.300917,6.8674,5.300917 +L 6.4404,8.466301,6.4404,6.902588 +L 0.9482,8.466301,6.4404,8.466301 +L 0.9587,5.620209,0.9482,8.466301 +L 0.7801,3.036845,0.9587,5.620209 +L 0.094,0.267106,0.7801,3.036845 +L 6.4404,6.902588,1.3794,6.902588 + +[開] 16 +L 0.1271,0,0.1271,8.466214 +L 0.1271,8.466214,2.6594,8.466214 +L 2.6594,8.466214,2.6594,5.300873 +L 5.6193,0,6.8977,0 +L 6.8977,5.300873,4.3371,5.300873 +L 4.3371,5.300873,4.3371,8.466214 +L 4.3371,8.466214,6.8977,8.466214 +L 2.6594,5.300873,0.1271,5.300873 +L 0.1271,6.902675,2.6594,6.902675 +L 6.8977,0,6.8977,8.466214 +L 4.3371,6.902675,6.8977,6.902675 +L 1.3775,4.767143,5.6193,4.767143 +L 6.0428,3.165341,0.9467,3.165341 +L 4.3371,4.767143,4.3371,0.53408 +L 2.6594,4.767143,2.6594,2.930939 +A -0.7551,3.199621,3.412989,308.64701,359.4244 + +[速] 14 +L 5.2112,-0.015148,7.341,-0.015148 +L 1.3935,1.052487,0.3393,0 +L 0.1396,4.751776,1.3935,4.751776 +L 1.3935,1.052487,1.3935,4.751776 +L 0.5708,8.489155,1.3935,7.421301 +L 2.2621,7.932309,7.3267,7.932309 +L 4.7944,9.000162,4.7944,1.067897 +L 6.5004,4.23315,6.5004,6.368727 +L 6.5004,6.368727,3.0852,6.368727 +L 3.0852,6.368727,3.0852,4.23315 +L 3.0852,4.23315,6.5004,4.23315 +L 2.2621,1.601802,4.7944,4.133988 +L 7.3267,1.601802,4.7944,4.133988 +A 5.2112,7.347881,7.362973,238.75988,270 + +[持] 11 +L 1.6372,9.000162,1.6372,0 +L 1.6372,0,0.8106,0 +L 0.1592,3.699246,3.1152,5.54889 +L 0.1592,6.902588,3.1152,6.902588 +L 3.5425,7.970529,6.9578,7.970529 +L 5.2517,0.000044,6.1067,0.000044 +L 3.5425,2.669569,4.3936,1.601715 +L 5.2517,8.999988,5.2517,5.834778 +L 3.1467,5.834778,7.3567,5.834778 +L 3.1467,3.737554,7.3567,3.737554 +L 6.1067,0.000044,6.1067,5.334847 + +[荷] 30 +L 2.291,7.932309,0.1577,7.932309 +L 2.4241,7.692129,2.291,7.932309 +L 2.5673,7.435136,2.4241,7.692129 +L 2.7214,7.16965,2.5673,7.435136 +L 3.3589,8.220516,2.7214,9.000162 +L 4.1823,7.74589,3.3589,8.220516 +L 4.8229,7.16965,4.1823,7.74589 +L 4.956,8.655478,4.8229,9.000162 +L 5.0996,8.302475,4.956,8.655478 +L 5.2537,7.932309,5.0996,8.302475 +L 5.6775,7.932309,7.3867,7.932309 +L 6.5325,5.834778,2.291,5.834778 +L 2.7214,4.23315,4.8229,4.23315 +L 4.8229,4.23315,4.8229,2.135839 +L 4.8229,2.135839,2.7214,2.135839 +L 2.7214,2.135839,2.7214,4.23315 +L 1.0123,4.500213,1.1418,5.137133 +L 1.1418,5.137133,1.2854,5.757198 +L 1.2854,5.757198,1.436,6.368727 +L 6.5325,0,6.5325,5.834778 +L 5.2537,0,6.5325,0 +L 1.0123,0,0.9282,1.24731 +L 0.9282,1.24731,0.862,2.477459 +L 0.862,2.477459,0.7986,3.699246 +L 0.7986,3.699246,0.585,3.53555 +L 0.585,3.53555,0.3682,3.35456 +L 0.3682,3.35456,0.1577,3.165341 +L 0.1577,7.932309,7.359,7.932309 +L 4.8229,9.000162,4.8229,7.169563 +L 2.7214,9.000162,2.7214,7.169563 + +[夫] 17 +L 4.426,7.436624,6.1348,7.436624 +L 4.0022,7.436624,3.7006,7.824828 +L 3.7006,7.824828,3.5886,8.230368 +L 3.5886,8.230368,3.5749,9.000162 +L 4.0022,4.767143,3.1788,6.49302 +L 4.3805,2.697807,4.0022,3.699246 +L 5.0386,1.738748,4.3805,2.697807 +L 6.531,0,5.0386,1.738748 +L 2.2856,4.747223,0.1915,4.767143 +L 3.1651,4.608701,2.2856,4.747223 +L 3.5749,4.23315,3.1651,4.608701 +L 2.8884,2.85603,3.5749,4.23315 +L 2.065,1.758625,2.8884,2.85603 +L 0.4013,0,2.065,1.758625 +L 2.9406,7.261415,1.0426,7.436624 +L 3.1788,6.49302,2.9406,7.261415 +L 4.426,4.767143,6.9614,4.767143 + +[主]12 +L 4.0319,7.932309,3.1738,9.000162 +L 4.0319,6.902588,6.5641,6.902588 +L 4.4592,3.699246,6.1368,3.699246 +L 4.0319,3.699246,3.7307,4.173959 +L 3.7307,4.173959,3.6221,5.004347 +L 3.6221,5.004347,3.6046,6.902588 +L 3.6046,6.902588,0.6485,6.902588 +L 2.9146,3.646884,1.0446,3.699246 +L 3.545,2.772716,2.9146,3.646884 +L 3.6046,0,3.545,2.772716 +L 0.2177,0,3.6046,0 +L 4.0319,0,6.9918,0 + +[有] 23 +L 2.3527,0,2.2721,1.781084 +L 2.2721,1.781084,2.2021,3.5454 +L 2.2021,3.5454,2.1394,5.300917 +L 2.1394,5.300917,1.5016,4.60336 +L 1.5016,4.60336,0.8575,3.888509 +L 0.8575,3.888509,0.2165,3.165341 +L 1.0708,7.358957,0.2165,7.436624 +L 1.9219,7.272622,1.0708,7.358957 +L 2.7803,7.16965,1.9219,7.272622 +L 2.6294,6.824878,2.7803,7.16965 +L 2.4826,6.471874,2.6294,6.824878 +L 2.3527,6.10184,2.4826,6.471874 +L 3.6139,6.024304,2.3527,6.10184 +L 4.885,5.938145,3.6139,6.024304 +L 6.1672,5.834778,4.885,5.938145 +L 6.1672,4.767143,6.1672,5.834778 +L 6.1672,4.23315,2.7803,4.23315 +L 6.1672,2.669569,2.7803,2.669569 +L 6.1672,0,6.1672,2.669569 +L 4.885,0,6.1672,0 +L 6.1672,3.165341,6.1672,4.23315 +L 3.6031,7.436624,7.4176,7.436624 +L 3.2111,7.436624,3.2111,9.000162 + +[乗] 36 +L 1.9274,6.902588,0.6774,6.902588 +L 3.045,7.563719,1.1047,7.932309 +L 4.2394,7.118777,3.045,7.563719 +L 5.3423,6.902588,4.2394,7.118777 +L 5.3598,6.131392,5.3423,6.902588 +L 5.4614,5.716176,5.3598,6.131392 +L 5.7419,5.300917,5.4614,5.716176 +L 5.7419,6.902588,6.5962,6.902588 +L 5.7419,3.699246,6.5962,3.699246 +L 5.3423,3.699246,5.0376,5.185073 +L 5.0376,5.185073,4.3476,5.289753 +L 4.3476,5.289753,3.6369,4.23315 +L 3.6369,6.10184,3.3039,6.665516 +L 3.3039,6.665516,2.968,6.873036 +L 2.968,6.873036,2.355,6.902588 +L 2.355,5.300917,2.0538,5.716176 +L 2.0538,5.716176,1.9414,6.131392 +L 1.9414,6.131392,1.9274,6.902588 +L 1.9274,4.500213,1.6017,5.063582 +L 1.6017,5.063582,1.1642,5.271278 +L 1.1642,5.271278,0.2501,5.300917 +L 3.066,3.446369,0.6774,3.699246 +L 4.5686,2.693736,3.066,3.446369 +L 6.5962,0.53408,4.5686,2.693736 +L 1.2969,1.411138,0.2501,0.53408 +L 2.355,2.288327,1.2969,1.411138 +L 3.4194,3.165341,2.355,2.288327 +L 3.486,2.124544,3.4194,3.165341 +L 3.5529,1.066496,3.486,2.124544 +L 3.6369,0,3.5529,1.066496 +L 2.9921,5.300917,3.6369,6.10184 +L 4.4912,3.699246,5.3423,3.699246 +L 6.1657,5.300917,7.02,5.300917 +L 5.2652,8.446381,6.1657,8.466301 +L 4.7749,8.308166,5.2652,8.446381 +L 4.2775,7.932309,4.7749,8.308166 + +[着] 26 +L 1.6597,7.856043,0.6759,7.932309 +L 2.6618,7.779864,1.6597,7.856043 +L 3.6631,7.703555,2.6618,7.779864 +L 3.793,7.436624,3.6631,7.703555 +L 3.9433,7.16965,3.793,7.436624 +L 4.0939,6.902588,3.9433,7.16965 +L 4.4897,6.902588,5.7681,6.902588 +L 3.2393,2.669569,5.7681,2.669569 +L 3.2393,1.601802,5.7681,1.601802 +L 6.1989,3.699246,6.1989,0 +L 6.1989,0,2.812,0 +L 2.812,0,2.812,3.699246 +L 2.812,3.699246,6.1989,3.699246 +L 4.6998,8.655478,4.917,9.000162 +L 4.4897,8.302475,4.6998,8.655478 +L 4.276,7.932309,4.4897,8.302475 +L 4.917,7.932309,6.6265,7.932309 +L 4.0939,5.300917,7.0538,5.300917 +L 3.6631,5.300917,3.3234,6.750144 +L 3.3234,6.750144,2.5006,7.004422 +L 2.5006,7.004422,1.534,6.902588 +L 1.9543,5.300917,0.2797,5.300917 +L 0.2797,0.53408,1.1207,2.10887 +L 1.1207,2.10887,1.7262,3.57342 +L 1.7262,3.57342,1.9543,5.300917 +L 2.3847,5.300917,3.6631,5.300917 + +[動] 44 +L 0.2817,0,1.9913,0 +L 1.9913,0,1.9069,1.43513 +L 1.9069,1.43513,1.5426,2.022797 +L 1.5426,2.022797,0.7024,2.135839 +L 0.7024,3.699246,0.7024,5.834778 +L 0.7024,5.834778,1.322,5.854654 +L 1.322,5.854654,1.655,5.993001 +L 1.655,5.993001,1.9913,6.368727 +L 1.9913,6.368727,1.6407,6.744452 +L 1.6407,6.744452,1.1959,6.8828 +L 1.1959,6.8828,0.2817,6.902588 +L 1.627,7.741688,0.7024,7.932309 +L 2.068,7.474713,1.627,7.741688 +L 2.4112,6.902588,2.068,7.474713 +L 2.4112,8.466301,3.2378,8.466301 +L 2.6427,5.656897,3.2378,5.300917 +L 2.317,5.656897,2.6427,5.656897 +L 1.9913,5.300917,2.317,5.656897 +L 2.317,4.925322,1.9913,5.300917 +L 2.6427,4.786976,2.317,4.925322 +L 3.2378,4.767143,2.6427,4.786976 +L 3.1537,4.422283,3.2378,4.767143 +L 3.0875,4.069411,3.1537,4.422283 +L 3.0245,3.699246,3.0875,4.069411 +L 2.4112,3.699246,1.9913,4.069411 +L 1.9913,4.069411,1.5601,4.422283 +L 1.5601,4.422283,1.1328,4.767143 +L 1.5601,3.699246,0.7024,3.699246 +L 1.8372,3.192178,1.5601,3.699246 +L 2.1174,2.668212,1.8372,3.192178 +L 2.4112,2.135839,2.1174,2.668212 +L 2.4112,0.53408,3.2378,0.53408 +L 4.0924,0,4.8594,1.928012 +L 4.8594,1.928012,5.2587,3.906985 +L 5.2587,3.906985,5.3746,5.834778 +L 5.3746,5.834778,4.7932,6.204899 +L 4.7932,6.204899,4.5236,6.368727 +L 2.8105,6.902588,3.6651,6.902588 +L 5.3428,7.48741,5.3746,9.000162 +L 5.6829,6.635702,5.3428,7.48741 +L 7.0485,6.368727,5.6829,6.635702 +L 7.2026,3.88724,7.0485,6.368727 +L 7.0768,1.236015,7.2026,3.88724 +L 5.8019,0,7.0768,1.236015 + +[部] 26 +L 1.1593,0,1.1593,1.066496 +L 1.1593,1.066496,1.1593,2.124544 +L 1.1593,2.124544,1.1593,3.165341 +L 1.1593,3.165341,3.6955,3.165341 +L 3.6955,3.165341,3.6955,2.124544 +L 3.6955,2.124544,3.6955,1.066496 +L 3.6955,1.066496,3.6955,0 +L 3.6955,0,2.8405,0 +L 2.8405,0,1.9999,0 +L 1.9999,0,1.1593,0 +L 0.3083,5.300917,1.5621,5.300917 +L 1.5621,5.300917,1.5485,6.0722 +L 1.5485,6.0722,1.443,6.48746 +L 1.443,6.48746,1.1593,6.902588 +L 0.7394,7.932309,2.4171,7.932309 +L 2.4171,7.932309,2.4171,9.000162 +L 2.8405,7.932309,4.1228,7.932309 +L 2.9386,5.953555,3.2717,6.902588 +L 2.6027,5.538295,2.9386,5.953555 +L 1.9859,5.300917,2.6027,5.538295 +L 3.2717,5.300917,4.5501,5.300917 +L 5.8004,8.466301,7.5058,8.466301 +L 5.8004,0.000219,5.8004,8.466301 +L 7.5058,8.466301,7.0645,6.097594 +L 7.0645,6.097594,7.5058,2.631392 +L 7.5058,2.631392,5.8004,1.563801 + +[駅] 28 +L 6.7863,1.92521,7.5432,0 +L 6.38,3.452235,6.7863,1.92521 +L 6.2574,5.300917,6.38,3.452235 +L 7.1124,5.300917,6.2574,5.300917 +L 7.1124,8.466301,7.1124,5.300917 +L 4.5486,8.466301,7.1124,8.466301 +L 4.6183,5.822126,4.5486,8.466301 +L 4.51,2.542473,4.6183,5.822126 +L 3.7286,0,4.51,2.542473 +L 1.5925,0,2.9546,0.59476 +L 2.9546,0.59476,3.3157,2.011458 +L 3.3157,2.011458,3.2978,3.699246 +L 3.2978,3.699246,0.734,3.699246 +L 0.734,3.699246,0.734,8.466301 +L 0.734,8.466301,3.2978,8.466301 +L 2.4436,5.300917,1.1652,6.902588 +L 2.4436,6.902588,2.2926,7.245872 +L 2.2926,7.245872,2.149,7.588981 +L 2.149,7.588981,2.0198,7.932309 +L 2.0198,4.500213,1.7217,4.767143 +L 1.7217,4.767143,1.4415,5.033855 +L 1.4415,5.033855,1.1652,5.300917 +L 1.1652,1.601802,1.1652,2.669569 +L 2.0198,1.601802,2.0198,2.669569 +L 0.3141,1.97188,0.3141,2.669569 +L 0.3141,1.257161,0.3141,1.97188 +L 0.3141,0.53408,0.3141,1.257161 +L 4.979,5.300917,5.8336,5.300917 + +[院] 30 +L 5.5628,0.512715,5.4503,1.610164 +L 5.4503,1.610164,5.4367,4.23315 +L 5.4367,4.23315,4.5821,4.23315 +L 4.1544,4.23315,2.8725,4.23315 +L 2.8725,6.368727,2.8725,7.932309 +L 2.8725,7.932309,5.0094,7.932309 +L 5.0094,7.932309,5.0094,9.000162 +L 7.1179,7.932309,5.4367,7.932309 +L 7.1179,6.368727,7.1179,7.932309 +L 5.864,4.23315,7.1179,4.23315 +L 3.7271,5.834778,6.2913,5.834778 +L 4.0494,2.534024,4.1544,4.23315 +L 3.6154,1.394238,4.0494,2.534024 +L 2.6627,0,3.6154,1.394238 +L 2.0495,2.669569,1.7521,2.505698 +L 1.7521,2.505698,1.4719,2.325059 +L 1.4719,2.325059,1.1914,2.135839 +L 1.8218,4.816396,2.0495,2.669569 +L 1.6012,6.090457,1.8218,4.816396 +L 2.0495,8.466301,1.6012,6.090457 +L 0.3403,8.466301,2.0495,8.466301 +L 0.3403,2.822188,0.3403,8.466301 +L 0.3403,0,0.3403,2.822188 +L 7.1179,1.067897,7.1179,1.601802 +L 7.1179,0.53408,7.1179,1.067897 +L 7.1179,0,7.1179,0.53408 +L 6.8377,0,7.1179,0 +L 6.5641,0,6.8377,0 +L 6.2913,0,6.5641,0 +L 5.864,0,5.5628,0.512715 + +[鉄] 44 +L 2.4753,7.96904,2.9029,7.436624 +L 2.0518,8.493139,2.4753,7.96904 +L 1.6207,9.000162,2.0518,8.493139 +L 1.1934,8.312237,1.6207,9.000162 +L 0.7804,7.615994,1.1934,8.312237 +L 0.3703,6.902588,0.7804,7.615994 +L 0.7034,6.526862,0.3703,6.902588 +L 1.0288,6.388472,0.7034,6.526862 +L 1.6207,6.368727,1.0288,6.388472 +L 1.6382,5.59753,1.6207,6.368727 +L 1.7506,5.182403,1.6382,5.59753 +L 2.0518,4.767143,1.7506,5.182403 +L 1.6977,2.269895,1.4946,4.04809 +L 1.6207,0,1.6977,2.269895 +L 1.1934,0,1.6207,0 +L 0.7804,0,1.1934,0 +L 0.3703,0,0.7804,0 +L 7.5748,0,6.9938,1.066496 +L 6.9938,1.066496,6.419,2.124544 +L 6.419,2.124544,5.866,3.165341 +L 5.866,4.23315,5.3371,5.724626 +L 5.3371,5.724626,4.7487,7.063657 +L 4.7487,7.063657,3.761,5.834778 +L 4.6538,4.213318,3.761,4.23315 +L 5.0884,4.07519,4.6538,4.213318 +L 5.4352,3.699246,5.0884,4.07519 +L 4.7343,2.477459,5.4352,3.699246 +L 4.0304,1.24731,4.7343,2.477459 +L 3.3302,0,4.0304,1.24731 +L 2.6889,0.904026,2.9029,1.067897 +L 2.4753,0.7233,2.6889,0.904026 +L 2.262,0.53408,2.4753,0.7233 +L 2.4753,2.402726,2.6052,2.848982 +L 2.6052,2.848982,2.752,3.278338 +L 2.752,3.278338,2.9029,3.699246 +L 1.4946,4.04809,0.3703,4.767143 +L 0.5002,2.744565,0.3703,3.165341 +L 0.647,2.315077,0.5002,2.744565 +L 0.7979,1.868645,0.647,2.315077 +L 6.2863,4.23315,7.144,4.23315 +L 5.866,6.902588,5.5613,7.336235 +L 5.5613,7.336235,5.4527,7.879947 +L 5.4527,7.879947,5.4352,9.000162 +L 4.1848,7.436624,4.1848,8.466301 + +[館] 43 +L 3.542,7.436624,4.1833,7.615994 +L 4.1833,7.615994,4.8278,7.778333 +L 4.8278,7.778333,5.4649,7.932309 +L 5.4649,7.932309,5.4649,8.302475 +L 5.4649,8.302475,5.4649,8.655478 +L 5.4649,8.655478,5.4649,9.000162 +L 6.4459,7.932309,5.8922,7.932309 +L 6.9993,7.932309,6.4459,7.932309 +L 7.5698,7.932309,6.9993,7.932309 +L 7.5698,7.425197,7.5698,7.932309 +L 7.5698,6.901362,7.5698,7.425197 +L 7.5698,6.368727,7.5698,6.901362 +L 6.7433,6.368727,6.7433,5.670951 +L 6.7433,5.670951,6.7433,4.95632 +L 6.7433,4.95632,6.7433,4.23315 +L 6.7433,4.23315,6.1692,4.23315 +L 6.1692,4.23315,5.5948,4.23315 +L 5.5948,4.23315,5.0376,4.23315 +L 4.6138,2.13435,4.6138,4.259901 +L 4.6138,0,4.6138,2.13435 +L 5.0376,0,5.7419,0 +L 5.7419,0,6.4529,0 +L 6.4529,0,7.1744,0 +L 7.1744,0,7.1744,0.904026 +L 7.1744,0.904026,7.1744,1.791198 +L 7.1744,1.791198,7.1744,2.669569 +L 7.1744,2.669569,6.4529,2.669569 +L 6.4529,2.669569,5.7419,2.669569 +L 5.7419,2.669569,5.0376,2.669569 +L 4.6138,4.259901,4.6138,6.368727 +L 4.6138,6.368727,5.3146,6.368727 +L 5.3146,6.368727,6.0256,6.368727 +L 6.0256,6.368727,6.7433,6.368727 +L 2.1726,9.000075,0.3726,5.882192 +L 2.1726,9.000075,3.9693,7.200034 +L 1.2724,6.44114,3.4723,6.44114 +L 1.2724,3.000025,3.4723,3.000025 +L 3.4723,6.44114,3.4723,3.000025 +L 1.2724,6.44114,1.2724,0.130072 +L 3.9693,3.000025,3.9693,1.500012 +L 1.2724,4.720561,3.4723,4.720561 +A 0.3726,3.17992,3.179894,270,334.63397 +A 1.3355,0,2.63629,10.933074,71.504943 + +[住] 33 +L 1.8068,8.226034,2.0768,9.000162 +L 1.5305,7.435136,1.8068,8.226034 +L 1.2569,6.635702,1.5305,7.435136 +L 1.1032,3.88991,1.0436,5.834778 +L 1.1764,1.945086,1.1032,3.88991 +L 1.2569,0,1.1764,1.945086 +L 2.5073,0,3.3619,0 +L 3.3619,0,4.2165,0 +L 4.2165,0,5.0714,0 +L 5.0714,0,5.0749,2.349094 +L 5.0749,2.349094,4.6963,3.435161 +L 4.6963,3.435161,3.3619,3.699246 +L 4.3429,6.902588,3.6354,6.902588 +L 5.0714,6.902588,4.3429,6.902588 +L 5.0851,5.004347,5.0714,6.902588 +L 5.1975,4.173959,5.0851,5.004347 +L 5.4952,3.699246,5.1975,4.173959 +L 5.898,3.699246,6.1677,3.699246 +L 6.1677,3.699246,6.4514,3.699246 +L 6.4514,3.699246,6.7491,3.699246 +L 6.6052,6.902588,7.1726,6.902588 +L 6.0451,6.902588,6.6052,6.902588 +L 5.4952,6.902588,6.0451,6.902588 +L 5.4952,7.932309,5.2007,8.302475 +L 5.2007,8.302475,4.9205,8.655478 +L 4.9205,8.655478,4.6441,9.000162 +L 3.6354,6.902588,2.9346,6.902588 +L 1.0436,5.834778,0.8296,5.670951 +L 0.8296,5.670951,0.6163,5.490181 +L 0.6163,5.490181,0.4023,5.300917 +L 6.9029,0,7.6037,0 +L 6.1989,0,6.9029,0 +L 5.4952,0,6.1989,0 + +[所] 27 +L 6.7756,0,6.7756,1.781084 +L 6.7756,1.781084,6.7756,3.5454 +L 6.7756,3.5454,6.7756,5.300917 +L 6.7756,5.300917,6.1974,5.300917 +L 6.1974,5.300917,5.6265,5.300917 +L 5.6265,5.300917,5.0661,5.300917 +L 4.0504,2.632793,4.4496,5.045369 +L 2.965,0,4.0504,2.632793 +L 0.4288,0.267106,0.7125,1.026875 +L 0.7125,1.026875,0.8141,2.608889 +L 0.8141,2.608889,0.8281,6.368727 +L 0.8281,6.368727,1.6827,6.368727 +L 1.6827,6.368727,2.5412,6.368727 +L 2.5412,6.368727,3.3923,6.368727 +L 3.3923,6.368727,3.3923,5.670951 +L 3.3923,5.670951,3.3923,4.95632 +L 3.3923,4.95632,3.3923,4.23315 +L 3.3923,4.23315,2.6704,4.23315 +L 2.6704,4.23315,1.9598,4.23315 +L 1.9598,4.23315,1.2554,4.23315 +L 1.5601,8.466301,2.6883,8.466301 +L 2.6883,8.466301,3.8196,8.466301 +L 4.4496,5.045369,4.6461,7.932309 +L 4.6461,7.932309,5.9876,8.070918 +L 5.9876,8.070918,6.8562,8.327561 +L 6.8562,8.327561,7.6334,8.466301 +L 0.4288,8.466301,1.5601,8.466301 + +[号] 30 +L 1.7131,7.778333,1.7131,8.466301 +L 1.7131,7.081957,1.7131,7.778333 +L 1.7131,6.368727,1.7131,7.081957 +L 3.2682,6.368727,1.7131,6.368727 +L 4.8229,6.368727,3.2682,6.368727 +L 6.3815,6.368727,4.8229,6.368727 +L 6.3815,7.081957,6.3815,6.368727 +L 6.3815,7.778333,6.3815,7.081957 +L 6.3815,8.466301,6.3815,7.778333 +L 4.8229,8.466301,6.3815,8.466301 +L 3.2682,8.466301,4.8229,8.466301 +L 1.7131,8.466301,3.2682,8.466301 +L 1.8423,4.767143,1.1348,4.767143 +L 1.1348,4.767143,0.4347,4.767143 +L 2.5673,4.767143,1.8423,4.767143 +L 2.5673,4.422283,2.5673,4.767143 +L 2.5673,4.069411,2.5673,4.422283 +L 2.5673,3.699246,2.5673,4.069411 +L 2.1404,3.165341,2.1404,2.822188 +L 2.1404,2.822188,2.1404,2.478948 +L 2.1404,2.478948,2.1404,2.135839 +L 3.5445,3.165341,2.1404,3.165341 +L 4.956,3.165341,3.5445,3.165341 +L 6.3815,3.165341,4.956,3.165341 +L 6.2939,1.412539,6.3815,3.165341 +L 5.7335,0.354623,6.2939,1.412539 +L 4.2453,0,5.7335,0.354623 +L 4.5182,4.767143,6.0768,4.767143 +L 2.9635,4.767143,4.5182,4.767143 +L 6.0768,4.767143,7.6284,4.767143 + +[区] 21 +L 0.4612,0,0.4612,2.822188 +L 0.4612,2.822188,0.4612,5.644245 +L 0.4612,5.644245,0.4612,8.466301 +L 0.4612,8.466301,2.5693,8.466301 +L 2.5693,8.466301,4.6813,8.466301 +L 4.6813,8.466301,6.8073,8.466301 +L 2.8429,6.204899,2.142,6.902588 +L 3.5539,5.490181,2.8429,6.204899 +L 4.275,4.767143,3.5539,5.490181 +L 3.3399,3.725996,4.275,4.767143 +L 2.4152,2.668212,3.3399,3.725996 +L 1.4976,1.601802,2.4152,2.668212 +L 0.8917,0,2.9966,0 +L 2.9966,0,5.1125,0 +L 5.1125,0,7.2349,0 +L 5.9527,2.402726,5.5289,3.012809 +L 5.5289,3.012809,5.1125,3.623023 +L 5.1125,3.623023,4.7023,4.23315 +L 4.7023,5.300917,4.979,6.024304 +L 4.979,6.024304,5.2526,6.738761 +L 5.2526,6.738761,5.5289,7.436624 + +[都] 47 +L 1.7447,0,1.7272,2.247304 +L 1.7272,2.247304,1.6187,3.206232 +L 1.6187,3.206232,1.3139,3.699246 +L 1.3139,3.699246,1.0236,3.53555 +L 1.0236,3.53555,0.7399,3.35456 +L 0.7399,3.35456,0.4628,3.165341 +L 1.1672,5.757198,0.4628,5.834778 +L 1.8747,5.670951,1.1672,5.757198 +L 2.5997,5.567847,1.8747,5.670951 +L 2.3051,5.137133,2.5997,5.567847 +L 2.0214,4.689257,2.3051,5.137133 +L 1.7447,4.23315,2.0214,4.689257 +L 2.109,3.8576,1.7447,4.23315 +L 2.6627,3.718991,2.109,3.8576 +L 3.8816,3.699246,2.6627,3.718991 +L 3.8816,3.356137,3.8816,3.699246 +L 3.8816,3.012809,3.8816,3.356137 +L 3.8816,2.669569,3.8816,3.012809 +L 3.8816,2.135839,3.2998,2.135839 +L 3.2998,2.135839,2.7293,2.135839 +L 2.7293,2.135839,2.172,2.135839 +L 2.172,0,2.7293,0 +L 2.7293,0,3.2998,0 +L 3.2998,0,3.8816,0 +L 3.8816,0,3.8816,0.7233 +L 3.8816,0.7233,3.8816,1.438063 +L 3.8816,1.438063,3.8816,2.135839 +L 3.8606,5.834778,4.277,5.834778 +L 4.277,5.834778,4.7047,5.834778 +L 3.4543,5.834778,3.8606,5.834778 +L 3.0231,6.10184,3.1597,6.471874 +L 3.1597,6.471874,3.2998,6.824878 +L 3.2998,6.824878,3.4543,7.16965 +L 3.4543,7.16965,3.2368,7.435136 +L 3.2368,7.435136,3.0231,7.692129 +L 3.0231,7.692129,2.813,7.932309 +L 2.813,7.932309,2.3615,7.54393 +L 2.3615,7.54393,2.1931,7.138697 +L 2.1931,7.138697,2.172,6.368727 +L 1.8393,8.248712,2.172,9.000162 +L 1.5069,7.971974,1.8393,8.248712 +L 0.8901,7.932309,1.5069,7.971974 +L 5.5558,8.466126,7.2646,8.466126 +L 5.5558,0,5.5558,8.466126 +L 7.2646,8.466126,6.8166,6.097374 +L 6.8166,6.097374,7.2646,2.631261 +L 7.2646,2.631261,5.5558,1.563582 + +[県]36 +L 0.7065,0.53408,1.1969,0.904026 +L 1.1969,0.904026,1.6946,1.257161 +L 1.6946,1.257161,2.2024,1.601802 +L 1.9009,2.669569,0.9205,2.669569 +L 0.9205,2.669569,0.9205,4.423771 +L 0.9205,4.423771,0.9205,6.17815 +L 0.9205,6.17815,0.9205,7.932309 +L 3.7291,8.466301,4.8639,8.466301 +L 4.8639,8.466301,6.0127,8.466301 +L 6.0127,8.466301,6.0127,7.05512 +L 6.0127,7.05512,6.0127,5.644245 +L 6.0127,5.644245,6.0127,4.23315 +L 6.0127,4.23315,4.8639,4.23315 +L 4.8639,4.23315,3.7291,4.23315 +L 3.7291,4.23315,2.5978,4.23315 +L 2.5978,4.23315,2.5978,5.644245 +L 2.5978,5.644245,2.5978,7.05512 +L 2.5978,7.05512,2.5978,8.466301 +L 2.5978,8.466301,3.7291,8.466301 +L 3.8832,6.902588,4.7343,6.902588 +L 4.7343,6.902588,5.5924,6.902588 +L 4.7343,5.834778,5.5924,5.834778 +L 3.8832,5.834778,4.7343,5.834778 +L 3.0255,5.834778,3.8832,5.834778 +L 3.0255,6.902588,3.8832,6.902588 +L 3.8832,2.669569,2.8815,2.669569 +L 2.8815,2.669569,1.9009,2.669569 +L 3.8832,1.791198,3.8832,2.669569 +L 3.8832,0.904026,3.8832,1.791198 +L 3.8832,0,3.8832,0.904026 +L 6.2688,2.669569,7.2666,2.669569 +L 5.2842,2.669569,6.2688,2.669569 +L 4.3039,2.669569,5.2842,2.669569 +L 5.9952,1.257161,5.5924,1.601802 +L 6.4155,0.904026,5.9952,1.257161 +L 6.8393,0.53408,6.4155,0.904026 + +[島] 40 +L 1.7771,0.53408,2.2009,0.53408 +L 2.2009,0.53408,2.6314,0.53408 +L 3.0552,0.53408,3.756,0.53408 +L 3.756,0.53408,4.4561,0.53408 +L 4.4561,0.53408,5.1636,0.53408 +L 5.1636,0.53408,5.1636,0.904026 +L 5.1636,0.904026,5.1636,1.257161 +L 5.1636,1.257161,5.1636,1.601802 +L 4.4635,2.669569,3.0552,2.669569 +L 3.0552,2.669569,3.0552,1.97188 +L 3.0552,1.97188,3.0552,1.257161 +L 3.0552,1.257161,3.0552,0.53408 +L 1.3463,0.53408,1.7771,0.53408 +L 0.9502,0.53408,0.9502,0.904026 +L 0.9502,0.904026,0.9502,1.257161 +L 0.9502,1.257161,0.9502,1.601802 +L 1.7771,2.669569,1.7771,4.423771 +L 1.7771,4.423771,1.7771,6.17815 +L 1.7771,6.17815,1.7771,7.932309 +L 1.7771,7.932309,2.9925,8.149943 +L 2.9925,8.149943,3.5455,8.42668 +L 3.5455,8.42668,3.9098,9.000162 +L 4.7433,7.856043,3.9098,7.932309 +L 5.5909,7.779864,4.7433,7.856043 +L 6.442,7.703555,5.5909,7.779864 +L 6.442,6.902588,2.2009,6.902588 +L 2.2009,5.834778,3.605,5.834778 +L 3.605,5.834778,5.0169,5.834778 +L 5.0169,5.834778,6.442,5.834778 +L 6.442,5.834778,6.442,6.204899 +L 6.442,6.204899,6.442,6.558078 +L 6.442,6.558078,6.442,6.902588 +L 6.0147,0,7.0938,0.370122 +L 7.0938,0.370122,7.339,1.333515 +L 7.339,1.333515,7.297,2.669569 +L 7.297,2.669569,5.8711,2.669569 +L 5.8711,2.669569,4.4635,2.669569 +L 3.8922,4.23315,5.5909,4.23315 +L 5.5909,4.23315,7.297,4.23315 +L 2.2009,4.23315,3.8922,4.23315 + +[様] 44 +L 3.089,4.23315,2.3111,5.04375 +L 4.7383,4.84481,3.089,4.23315 +L 6.0276,3.125894,4.7383,4.84481 +L 7.3302,1.067897,6.0276,3.125894 +L 6.8997,2.669569,7.1764,3.012809 +L 7.1764,3.012809,7.4461,3.356137 +L 7.4461,3.356137,7.7263,3.699246 +L 7.299,4.767143,7.7263,4.767143 +L 6.8787,4.767143,7.299,4.767143 +L 6.4724,4.767143,6.8787,4.767143 +L 6.0451,4.767143,5.7505,5.300917 +L 5.7505,5.300917,5.4668,5.834778 +L 5.4668,5.834778,5.1905,6.368727 +L 5.1905,6.368727,4.7667,6.368727 +L 4.7667,6.368727,4.3356,6.368727 +L 4.3356,6.368727,3.9156,6.368727 +L 4.9205,7.932309,4.2165,7.932309 +L 5.6213,7.932309,4.9205,7.932309 +L 5.6388,7.187906,5.6213,7.932309 +L 5.7439,6.782585,5.6388,7.187906 +L 6.0451,6.368727,5.7439,6.782585 +L 6.4724,6.368727,6.7491,6.368727 +L 6.7491,6.368727,7.0328,6.368727 +L 7.0328,6.368727,7.3302,6.368727 +L 7.1764,7.932309,7.4461,7.932309 +L 6.8997,7.932309,7.1764,7.932309 +L 6.6896,8.655478,6.8997,9.000162 +L 6.4724,8.302475,6.6896,8.655478 +L 6.2584,7.932309,6.4724,8.302475 +L 7.4461,7.932309,7.7263,7.932309 +L 4.2165,7.932309,3.5128,7.932309 +L 5.6213,0.7233,5.6213,1.438063 +L 5.6213,0,5.6213,0.7233 +L 5.3232,0,5.6213,0 +L 5.0431,0,5.3232,0 +L 4.7667,0,5.0431,0 +L 5.6213,2.135839,4.7667,1.791198 +L 5.6213,1.438063,5.6213,2.135839 +L 4.7667,1.791198,3.9191,1.438063 +L 3.9191,1.438063,3.089,1.067897 +L 1.8033,0,1.8033,9.000075 +L 1.8033,5.150049,0.5249,3.165209 +L 2.6267,4.500081,1.8033,6.04834 +L 2.6267,6.902675,0.5249,6.902675 + +[練] 86 +L 1.8372,0,1.8372,1.600402 +L 1.8372,1.600402,1.8372,3.192178 +L 1.8372,3.192178,1.8372,4.767143 +L 1.8372,4.767143,1.4099,4.767143 +L 1.4099,4.767143,0.9826,4.767143 +L 0.9826,4.767143,0.5588,4.767143 +L 1.4099,5.300917,1.5426,5.567847 +L 1.5426,5.567847,1.6862,5.834778 +L 1.6862,5.834778,1.8372,6.10184 +L 1.8372,6.10184,1.5426,6.471874 +L 1.5426,6.471874,1.2589,6.824878 +L 1.2589,6.824878,0.9826,7.16965 +L 0.9826,7.16965,1.2589,7.779864 +L 1.2589,7.779864,1.5426,8.389992 +L 1.5426,8.389992,1.8372,9.000162 +L 2.2326,7.16965,2.3657,7.435136 +L 2.3657,7.435136,2.5093,7.692129 +L 2.5093,7.692129,2.6637,7.932309 +L 2.793,5.033855,2.6637,5.300917 +L 2.9366,4.767143,2.793,5.033855 +L 3.0837,4.500213,2.9366,4.767143 +L 2.6637,5.300917,2.5093,5.137133 +L 2.5093,5.137133,2.3657,4.95632 +L 2.3657,4.95632,2.2326,4.767143 +L 3.007,2.477459,2.6637,3.165341 +L 3.3639,1.781084,3.007,2.477459 +L 3.7281,1.067897,3.3639,1.781084 +L 3.9421,3.165341,3.9421,4.23315 +L 3.9421,4.23315,3.9421,5.300917 +L 3.9421,5.300917,3.9421,6.368727 +L 0.8281,2.555039,0.9826,3.165341 +L 0.688,1.945086,0.8281,2.555039 +L 0.5588,1.334784,0.688,1.945086 +L 5.651,0,5.5669,0.904026 +L 5.5669,0.904026,5.5007,1.791198 +L 5.5007,1.791198,5.4377,2.669569 +L 5.4377,2.669569,4.8594,2.135839 +L 4.8594,2.135839,4.2885,1.601802 +L 4.2885,1.601802,3.7281,1.067897 +L 7.3287,1.067897,6.2222,2.535425 +L 6.2222,2.535425,5.3781,3.01977 +L 5.3781,3.01977,3.9421,3.165341 +L 3.9421,6.368727,4.8594,6.398454 +L 4.8594,6.398454,5.3007,6.606061 +L 5.3007,6.606061,5.651,7.16965 +L 5.651,7.16965,5.2832,7.706313 +L 5.2832,7.706313,4.7302,7.903983 +L 4.7302,7.903983,3.5148,7.932309 +L 6.4744,3.165341,6.7472,3.165341 +L 6.7472,3.165341,7.0348,3.165341 +L 7.0348,3.165341,7.3287,3.165341 +L 7.3287,3.165341,7.3287,3.699246 +L 7.3287,3.699246,7.3287,4.23315 +L 7.3287,4.23315,7.3287,4.767143 +L 7.3287,4.767143,6.8982,4.767143 +L 6.8982,4.767143,6.4744,4.767143 +L 6.4744,4.767143,6.0471,4.767143 +L 6.0471,4.767143,5.9035,4.422283 +L 5.9035,4.422283,5.7736,4.069411 +L 5.7736,4.069411,5.651,3.699246 +L 4.3726,4.767143,4.6423,4.767143 +L 4.6423,4.767143,4.926,4.767143 +L 4.926,4.767143,5.2237,4.767143 +L 5.2237,4.767143,5.4937,5.300917 +L 5.4937,5.300917,5.7736,5.834778 +L 5.7736,5.834778,6.0471,6.368727 +L 6.0471,6.368727,6.4744,6.368727 +L 6.4744,6.368727,6.8982,6.368727 +L 6.8982,6.368727,7.3287,6.368727 +L 7.3287,6.368727,7.3287,6.024304 +L 7.3287,6.024304,7.3287,5.670951 +L 7.3287,5.670951,7.3287,5.300917 +L 6.0471,7.932309,5.9035,8.302475 +L 5.9035,8.302475,5.7736,8.655478 +L 5.7736,8.655478,5.651,9.000162 +L 6.4744,7.932309,6.8982,7.932309 +L 6.8982,7.932309,7.3287,7.932309 +L 7.3287,7.932309,7.7559,7.932309 +L 1.8372,8.999944,1.0102,7.131385 +L 2.6914,5.301092,3.1187,4.500081 +L 1.8372,4.767012,1.8372,0 +L 1.0102,3.165428,0.5864,1.334959 +L 2.6914,3.165428,3.1187,1.868733 +L 0.5864,4.767012,2.9751,4.767012 +L 1.0102,7.131385,1.8126,6.130691 +L 2.6914,7.932309,1.1507,4.767012 + +[習] 45 +L 1.8357,0,1.8357,1.24731 +L 1.8357,1.24731,1.8357,2.477459 +L 1.8357,2.477459,1.8357,3.699246 +L 1.8357,3.699246,3.3589,3.916748 +L 3.3589,3.916748,4.0177,4.193529 +L 4.0177,4.193529,4.3991,4.767143 +L 2.263,0,3.6706,0 +L 3.6706,0,5.0821,0 +L 5.0821,0,6.5041,0 +L 6.5041,0,6.5041,0.7233 +L 6.5041,0.7233,6.5041,1.438063 +L 6.5041,1.438063,6.5041,2.135839 +L 6.5041,2.135839,5.0821,2.135839 +L 5.0821,2.135839,3.6706,2.135839 +L 3.6706,2.135839,2.263,2.135839 +L 6.5041,2.669569,6.5041,3.012809 +L 6.5041,3.012809,6.5041,3.356137 +L 6.5041,3.356137,6.5041,3.699246 +L 6.5041,3.699246,5.8039,3.699246 +L 5.8039,3.699246,5.0996,3.699246 +L 5.0996,3.699246,4.3991,3.699246 +L 3.541,5.300917,3.541,6.367501 +L 3.541,6.367501,3.541,7.425197 +L 3.541,7.425197,3.541,8.466301 +L 3.541,8.466301,2.6899,8.388504 +L 2.6899,8.388504,1.8357,8.302475 +L 1.8357,8.302475,0.9811,8.199239 +L 0.9811,8.199239,1.1138,7.959102 +L 1.1138,7.959102,1.2574,7.702023 +L 1.2574,7.702023,1.4119,7.436624 +L 7.3625,5.300917,7.3625,6.367501 +L 7.3625,6.367501,7.3625,7.425197 +L 7.3625,7.425197,7.3625,8.466301 +L 7.3625,8.466301,6.6372,8.388504 +L 6.6372,8.388504,5.9265,8.302475 +L 5.9265,8.302475,5.2222,8.199239 +L 5.2222,8.199239,5.3556,7.959102 +L 5.3556,7.959102,5.4992,7.702023 +L 5.4992,7.702023,5.653,7.436624 +L 0.7671,5.834778,1.4119,6.204899 +L 1.4119,6.204899,2.049,6.558078 +L 2.049,6.558078,2.6899,6.902588 +L 5.0124,5.834778,5.4992,6.204899 +L 5.4992,6.204899,5.9927,6.558078 +L 5.9927,6.558078,6.5041,6.902588 + +[勉] 42 +L 0.5838,0,1.2734,3.083471 +L 1.2734,3.083471,1.0563,5.853122 +L 1.0563,5.853122,1.4415,8.199239 +L 1.4415,8.199239,1.8688,8.302475 +L 1.8688,8.302475,2.2926,8.388504 +L 2.2926,8.388504,2.7203,8.466301 +L 2.7203,8.466301,2.5553,7.397047 +L 2.5553,7.397047,2.5728,6.64993 +L 2.5728,6.64993,3.5465,6.368727 +L 3.5465,6.368727,3.5465,5.670951 +L 3.5465,5.670951,3.5465,4.95632 +L 3.5465,4.95632,3.5465,4.23315 +L 3.5465,4.23315,3.2702,4.23315 +L 3.2702,4.23315,2.9966,4.23315 +L 2.9966,4.23315,2.7203,4.23315 +L 2.7203,4.23315,2.7374,1.610164 +L 2.7374,1.610164,2.839,0.512715 +L 2.839,0.512715,3.1157,0 +L 3.1157,0,4.6743,0 +L 4.6743,0,6.2262,0 +L 6.2262,0,7.7848,0 +L 7.7848,0,7.7848,0.370122 +L 7.7848,0.370122,7.7848,0.7233 +L 7.7848,0.7233,7.7848,1.067897 +L 3.9703,1.601802,4.8214,3.117313 +L 4.8214,3.117313,5.179,4.726033 +L 5.179,4.726033,5.2525,6.368727 +L 5.2525,6.368727,4.9548,6.558078 +L 4.9548,6.558078,4.6743,6.738761 +L 4.6743,6.738761,4.4014,6.902588 +L 5.6798,1.601802,6.9614,2.569311 +L 6.9614,2.569311,7.105,4.714825 +L 7.105,4.714825,6.9614,6.902588 +L 6.9614,6.902588,5.6655,7.073683 +L 5.6655,7.073683,5.2697,7.710472 +L 5.2697,7.710472,5.2525,9.000162 +L 2.0825,4.23315,2.1424,4.767143 +L 2.1424,4.767143,2.2121,5.300917 +L 2.2121,5.300917,2.2926,5.834778 +L 2.2926,5.834778,1.9988,6.024304 +L 1.9988,6.024304,1.7182,6.204899 +L 1.7182,6.204899,1.4415,6.368727 + +[研] 39 +L 3.1531,0,4.2458,1.8123 +L 4.2458,1.8123,4.8829,3.81938 +L 4.8829,3.81938,3.5734,4.767143 +L 6.5361,0,6.0983,3.822094 +L 6.0983,3.822094,5.2892,5.457695 +L 5.2892,5.457695,4.8584,8.466301 +L 4.8584,8.466301,4.5607,8.466301 +L 4.5607,8.466301,4.2809,8.466301 +L 4.2809,8.466301,4.0042,8.466301 +L 1.4719,1.067897,1.3878,2.13435 +L 1.3878,2.13435,1.3174,3.192178 +L 1.3174,3.192178,1.2544,4.23315 +L 1.2544,4.23315,1.0446,3.888509 +L 1.0446,3.888509,0.8306,3.53555 +L 0.8306,3.53555,0.6173,3.165341 +L 1.8638,1.067897,2.144,1.067897 +L 2.144,1.067897,2.4246,1.067897 +L 2.4246,1.067897,2.7223,1.067897 +L 2.7223,1.067897,2.7223,2.478948 +L 2.7223,2.478948,2.7223,3.88991 +L 2.7223,3.88991,2.7223,5.300917 +L 2.7223,5.300917,2.2946,5.137133 +L 2.2946,5.137133,1.8782,4.95632 +L 1.8782,4.95632,1.4719,4.767143 +L 6.9634,4.767143,6.6622,5.260113 +L 6.6622,5.260113,6.5505,6.219084 +L 6.5505,6.219084,6.5361,8.466301 +L 6.5361,8.466301,6.1091,8.466301 +L 6.1091,8.466301,5.6885,8.466301 +L 5.6885,8.466301,5.2822,8.466301 +L 1.4719,6.10184,1.7521,6.723175 +L 1.7521,6.723175,1.8537,7.336235 +L 1.8537,7.336235,1.8638,8.466301 +L 1.8638,8.466301,1.4435,8.466301 +L 1.4435,8.466301,1.0236,8.466301 +L 1.0236,8.466301,0.6173,8.466301 +L 2.2946,8.466301,2.5713,8.466301 +L 2.5713,8.466301,2.8515,8.466301 +L 2.8515,8.466301,3.1531,8.466301 + +[究] 42 +L 0.6158,0,1.8413,0.556627 +L 1.8413,0.556627,2.6857,1.401068 +L 2.6857,1.401068,3.61,2.669569 +L 3.61,2.669569,3.2423,3.018413 +L 3.2423,3.018413,2.6857,3.146865 +L 2.6857,3.146865,1.4704,3.165341 +L 5.7115,0,5.4103,0.47305 +L 5.4103,0.47305,5.3017,1.293981 +L 5.3017,1.293981,5.2842,3.165341 +L 5.2842,3.165341,4.1704,3.267175 +L 4.1704,3.267175,3.7046,3.724682 +L 3.7046,3.724682,3.61,4.767143 +L 6.1427,0,6.5661,0 +L 6.5661,0,6.9938,0 +L 6.9938,0,7.4211,0 +L 7.4211,0,7.4211,0.53408 +L 7.4211,0.53408,7.4211,1.067897 +L 7.4211,1.067897,7.4211,1.601802 +L 1.6872,5.300917,2.7344,6.46627 +L 2.7344,6.46627,3.1232,7.148372 +L 3.1232,7.148372,3.1792,7.932309 +L 3.1792,7.932309,2.3215,7.932309 +L 2.3215,7.932309,1.4704,7.932309 +L 1.4704,7.932309,0.6158,7.932309 +L 0.6158,7.932309,0.6158,7.588981 +L 0.6158,7.588981,0.6158,7.245872 +L 0.6158,7.245872,0.6158,6.902588 +L 5.2842,5.300917,4.983,5.754354 +L 4.983,5.754354,4.8713,6.436587 +L 4.8713,6.436587,4.8569,7.932309 +L 4.8569,7.932309,4.4331,7.932309 +L 4.4331,7.932309,4.0128,7.932309 +L 4.0128,7.932309,3.61,7.932309 +L 5.7115,5.300917,6.1427,5.300917 +L 6.1427,5.300917,6.5661,5.300917 +L 6.5661,5.300917,6.9938,5.300917 +L 6.9938,5.300917,7.1023,6.228892 +L 7.1023,6.228892,7.3086,7.029814 +L 7.3086,7.029814,7.4211,7.932309 +L 7.4211,7.932309,6.6961,7.932309 +L 6.6961,7.932309,5.9851,7.932309 +L 5.9851,7.932309,5.2842,7.932309 + +[問] 15 +L 0.649,0,0.649,8.466214 +L 0.649,8.466214,3.1812,8.466214 +L 3.1812,8.466214,3.1812,5.300873 +L 6.1408,0,7.4157,0 +L 7.4157,5.300873,4.8589,5.300873 +L 4.8589,5.300873,4.8589,8.466214 +L 4.8589,8.466214,7.4157,8.466214 +L 3.1812,5.300873,0.649,5.300873 +L 0.649,6.902675,3.1812,6.902675 +L 7.4157,0,7.4157,8.466214 +L 4.8589,6.902675,7.4157,6.902675 +L 2.7504,3.699246,2.7504,1.067897 +L 2.7504,1.067897,5.3146,1.067897 +L 5.3146,1.067897,5.3146,3.699246 +L 5.3146,3.699246,2.7504,3.699246 + +[題] 69 +L 0.6793,0.267106,0.9805,0.908317 +L 0.9805,0.908317,1.0923,1.659637 +L 1.0923,1.659637,1.1066,3.165341 +L 2.3532,0.267106,2.0593,0.370122 +L 2.0593,0.370122,1.7756,0.456282 +L 1.7756,0.456282,1.5021,0.53408 +L 2.7843,0,4.469,0 +L 4.469,0,6.1712,0 +L 6.1712,0,7.88,0 +L 2.3532,1.067897,2.3532,2.315077 +L 2.3532,2.315077,2.3532,3.5454 +L 2.3532,3.5454,2.3532,4.767143 +L 2.3532,4.767143,1.7823,4.767143 +L 1.7823,4.767143,1.2292,4.767143 +L 1.2292,4.767143,0.6793,4.767143 +L 4.7072,1.067897,5.043,1.438063 +L 5.043,1.438063,5.3863,1.791198 +L 5.3863,1.791198,5.7439,2.135839 +L 7.88,1.067897,7.5827,1.438063 +L 7.5827,1.438063,7.299,1.791198 +L 7.299,1.791198,7.0219,2.135839 +L 2.7843,2.669569,3.0607,2.669569 +L 3.0607,2.669569,3.3409,2.669569 +L 3.3409,2.669569,3.6389,2.669569 +L 5.3166,3.165341,5.3166,4.422283 +L 5.3166,4.422283,5.3166,5.670951 +L 5.3166,5.670951,5.3166,6.902588 +L 5.3166,6.902588,5.9327,7.128846 +L 5.9327,7.128846,6.2619,7.464775 +L 6.2619,7.464775,6.5981,8.199239 +L 6.5981,8.199239,6.0241,8.302475 +L 6.0241,8.302475,5.4703,8.388504 +L 5.4703,8.388504,4.917,8.466301 +L 5.7439,3.165341,6.3043,3.165341 +L 6.3043,3.165341,6.8752,3.165341 +L 6.8752,3.165341,7.4527,3.165341 +L 7.4527,3.165341,7.4527,3.699246 +L 7.4527,3.699246,7.4527,4.23315 +L 7.4527,4.23315,7.4527,4.767143 +L 7.4527,4.767143,6.8752,4.767143 +L 6.8752,4.767143,6.3043,4.767143 +L 6.3043,4.767143,5.7439,4.767143 +L 2.7843,4.767143,3.2081,4.767143 +L 3.2081,4.767143,3.6389,4.767143 +L 3.6389,4.767143,4.0627,4.767143 +L 7.4527,5.567847,6.8752,5.670951 +L 6.8752,5.670951,6.3043,5.757198 +L 6.3043,5.757198,5.7439,5.834778 +L 1.1066,6.368727,1.1066,7.081957 +L 1.1066,7.081957,1.1066,7.778333 +L 1.1066,7.778333,1.1066,8.466301 +L 1.1066,8.466301,1.9367,8.466301 +L 1.9367,8.466301,2.7843,8.466301 +L 2.7843,8.466301,3.6389,8.466301 +L 3.6389,8.466301,3.6389,7.778333 +L 3.6389,7.778333,3.6389,7.081957 +L 3.6389,7.081957,3.6389,6.368727 +L 3.6389,6.368727,2.7843,6.368727 +L 2.7843,6.368727,1.9367,6.368727 +L 1.9367,6.368727,1.1066,6.368727 +L 7.4527,6.635702,7.1554,6.738761 +L 7.1554,6.738761,6.8752,6.824878 +L 6.8752,6.824878,6.5981,6.902588 +L 1.5021,7.436624,2.0593,7.436624 +L 2.0593,7.436624,2.6334,7.436624 +L 2.6334,7.436624,3.2081,7.436624 +L 7.0219,8.466301,7.299,8.466301 +L 7.299,8.466301,7.5827,8.466301 +L 7.5827,8.466301,7.88,8.466301 + +[宿] 41 +L 1.5324,0,1.4484,1.24731 +L 1.4484,1.24731,1.3815,2.477459 +L 1.3815,2.477459,1.3184,3.699246 +L 1.3184,3.699246,1.1016,3.53555 +L 1.1016,3.53555,0.8911,3.35456 +L 0.8911,3.35456,0.6813,3.165341 +L 3.6686,0,3.6686,1.600402 +L 3.6686,1.600402,3.6686,3.192178 +L 3.6686,3.192178,3.6686,4.767143 +L 3.6686,4.767143,4.0714,4.870203 +L 4.0714,4.870203,4.4917,4.95632 +L 4.4917,4.95632,4.9225,5.033855 +L 4.9225,5.033855,5.0524,5.404064 +L 5.0524,5.404064,5.1925,5.757198 +L 5.1925,5.757198,5.3463,6.10184 +L 5.3463,6.10184,4.6461,6.204899 +L 4.6461,6.204899,3.9421,6.291104 +L 3.9421,6.291104,3.2413,6.368727 +L 4.0647,0,4.9225,0 +L 4.9225,0,5.7736,0 +L 5.7736,0,6.6285,0 +L 6.6285,0,6.6285,2.669569 +L 6.6285,2.669569,5.7736,2.669569 +L 5.7736,2.669569,4.9225,2.669569 +L 4.9225,2.669569,4.0647,2.669569 +L 6.6285,3.165341,6.6285,4.767143 +L 6.6285,4.767143,6.2009,4.767143 +L 6.2009,4.767143,5.7736,4.767143 +L 5.7736,4.767143,5.3463,4.767143 +L 1.5324,4.23315,1.6442,5.162526 +L 1.6442,5.162526,1.8473,5.973344 +L 1.8473,5.973344,1.9597,6.902588 +L 5.7736,6.368727,6.7896,6.435054 +L 6.7896,6.435054,7.322,6.848913 +L 7.322,6.848913,7.4796,7.932309 +L 7.4796,7.932309,5.2027,7.932309 +L 5.2027,7.932309,2.9366,7.932309 +L 2.9366,7.932309,0.6813,7.932309 +L 0.6813,7.932309,0.6813,7.588981 +L 0.6813,7.588981,0.6813,7.245872 +L 0.6813,7.245872,0.6813,6.902588 + +[育] 21 +L 1.9894,0,1.9894,5.300917 +L 1.9894,5.300917,6.1958,5.300917 +L 6.1958,5.300917,6.1958,0 +L 6.1958,0,5.3801,0 +L 2.3855,2.135839,5.8039,2.135839 +L 2.3855,3.699246,5.8039,3.699246 +L 1.1383,6.368727,1.6885,6.471874 +L 1.6885,6.471874,2.2451,6.558078 +L 2.2451,6.558078,2.8125,6.635702 +L 2.8125,6.635702,2.9459,7.005779 +L 2.9459,7.005779,3.0895,7.358957 +L 3.0895,7.358957,3.2398,7.703555 +L 3.2398,7.703555,2.3887,7.779864 +L 2.3887,7.779864,1.5411,7.856043 +L 1.5411,7.856043,0.7075,7.932309 +L 3.2398,6.368727,4.3014,6.507248 +L 4.3014,6.507248,5.1595,6.764153 +L 5.1595,6.764153,6.1958,6.902588 +L 6.1958,6.902588,6.1958,7.932309 +L 6.1958,7.932309,3.6706,7.932309 +L 6.6266,7.932309,7.4851,7.932309 + +[化] 17 +L 1.9879,0,1.9073,1.781084 +L 1.9073,1.781084,1.8408,3.5454 +L 1.8408,3.5454,1.7781,5.300917 +L 1.7781,5.300917,1.4205,4.95632 +L 1.4205,4.95632,1.0773,4.60336 +L 1.0773,4.60336,0.7379,4.23315 +L 4.9513,0,4.6711,0.689326 +L 4.6711,0.689326,4.5661,3.022835 +L 4.5661,3.022835,4.5552,9.000162 +L 5.3786,0,7.9421,0 +L 7.9421,0,7.9421,1.601802 +L 5.1611,5.300917,5.9352,5.834778 +L 5.9352,5.834778,6.7197,6.368727 +L 6.7197,6.368727,7.5113,6.902588 +L 1.9879,6.10184,2.5903,7.42962 +L 2.5903,7.42962,2.8113,8.181071 +L 2.8113,8.181071,2.8428,9.000162 + +[医] 20 +L 0.7399,0,0.7399,8.466301 +L 0.7399,8.466301,7.1178,8.466301 +L 1.1707,0,7.5133,0 +L 1.8043,1.601802,2.5713,2.315077 +L 2.5713,2.315077,3.3418,3.011408 +L 3.3418,3.011408,4.1267,3.699246 +L 4.1267,3.699246,3.7481,4.07519 +L 3.7481,4.07519,3.09,4.213318 +L 3.09,4.213318,1.5945,4.23315 +L 6.2594,1.601802,5.6818,2.13435 +L 5.6818,2.13435,5.1109,2.658405 +L 5.1109,2.658405,4.5537,3.165341 +L 4.5537,4.23315,4.2525,4.668199 +L 4.2525,4.668199,4.1408,5.221893 +L 4.1408,5.221893,4.1267,6.368727 +L 4.1267,6.368727,2.9289,6.151049 +L 2.9289,6.151049,2.386,5.874399 +L 2.386,5.874399,2.0218,5.300917 +L 4.981,4.23315,6.6905,4.23315 +L 4.5537,6.368727,6.2594,6.368727 + +[写] 15 +L 4.1603,0,5.2986,0.429532 +L 5.2986,0.429532,5.8029,1.451985 +L 5.8029,1.451985,5.4387,2.669569 +L 5.4387,2.669569,0.7695,2.669569 +L 6.2652,2.669569,5.9605,3.077867 +L 5.9605,3.077867,5.8516,3.621579 +L 5.8516,3.621579,5.8341,4.767143 +L 5.8341,4.767143,2.0203,4.767143 +L 2.0203,4.767143,2.0203,3.699246 +L 6.6925,2.669569,7.9709,2.669569 +L 2.4507,5.300917,2.4507,7.436624 +L 2.8745,6.368727,6.2652,6.368727 +L 0.7695,6.902588,0.7695,8.466301 +L 0.7695,8.466301,7.9709,8.466301 +L 7.9709,8.466301,7.9709,6.902588 + +[真] 25 +L 0.9855,0,1.4724,0.370122 +L 1.4724,0.370122,1.9694,0.7233 +L 1.9694,0.7233,2.4772,1.067897 +L 7.1495,0,6.7222,0.370122 +L 6.7222,0.370122,6.2918,0.7233 +L 6.2918,0.7233,5.8645,1.067897 +L 0.768,2.135839,7.5733,2.135839 +L 2.0499,3.165341,2.0499,6.368727 +L 2.0499,6.368727,4.1868,6.368727 +L 4.1868,6.368727,3.584,7.909675 +L 3.584,7.909675,2.2251,8.094822 +L 2.2251,8.094822,0.768,7.932309 +L 2.4772,3.165341,6.2918,3.165341 +L 6.2918,3.165341,6.2918,4.23315 +L 6.2918,4.23315,2.4772,4.23315 +L 6.2918,5.033855,5.0134,5.137133 +L 5.0134,5.137133,3.7385,5.223206 +L 3.7385,5.223206,2.4772,5.300917 +L 6.2918,6.10184,5.7135,6.204899 +L 5.7135,6.204899,5.1426,6.291104 +L 5.1426,6.291104,4.5822,6.368727 +L 4.5822,7.932309,4.4386,8.302475 +L 4.4386,8.302475,4.3125,8.655478 +L 4.3125,8.655478,4.1868,9.000162 +L 5.0134,7.932309,7.5733,7.932309 + +[起] 26 +L 0.8019,0.267106,1.0993,0.928018 +L 1.0993,0.928018,1.2117,1.818079 +L 1.2117,1.818079,1.2257,3.699246 +L 2.9069,0,2.4831,0.370122 +L 2.4831,0.370122,2.0628,0.7233 +L 2.0628,0.7233,1.6565,1.067897 +L 3.3342,0,8.0026,0 +L 2.5076,1.067897,2.5563,3.639879 +L 2.5563,3.639879,2.2204,4.940865 +L 2.2204,4.940865,0.8019,5.300917 +L 5.4703,1.601802,5.1691,2.094816 +L 5.1691,2.094816,5.0574,3.053963 +L 5.0574,3.053963,5.0395,5.300917 +L 5.0395,5.300917,7.148,5.300917 +L 7.148,5.300917,7.148,7.932309 +L 7.148,7.932309,5.0395,7.932309 +L 5.8976,1.601802,7.5718,1.601802 +L 7.5718,1.601802,7.5718,3.165341 +L 2.9069,3.165341,3.7615,3.165341 +L 2.9069,5.300917,2.4162,6.41404 +L 2.4162,6.41404,2.1885,7.162513 +L 2.1885,7.162513,1.2257,7.436624 +L 3.3342,5.300917,4.1884,5.300917 +L 2.6964,7.703555,2.6298,8.149943 +L 2.6298,8.149943,2.5703,8.579255 +L 2.5703,8.579255,2.5076,9.000162 + +[遊] 19 +L 5.9136,-0.015148,8.047,-0.015148 +L 2.0998,1.052487,1.0491,0 +L 0.8459,4.751776,2.0998,4.751776 +L 2.0998,1.052487,2.0998,4.751776 +L 1.2732,8.489155,2.0998,7.421301 +L 3.9067,9.000075,3.9067,7.22026 +L 5.1851,7.22026,2.6497,7.22026 +L 4.8668,5.472362,3.5215,5.472362 +L 4.2258,1.500012,3.609,1.500012 +L 5.7984,6.00005,7.5948,6.00005 +L 5.3497,4.500081,8.047,4.500081 +L 7.5948,6.00005,6.6985,4.500081 +L 6.6985,4.500081,6.6985,1.500012 +L 6.6985,1.500012,6.0783,1.500012 +L 8.047,7.500019,6.0397,7.500019 +A 5.9136,7.347881,7.362973,238.75988,270 +A -13.8612,7.213606,17.466888,340.91947,0.021942 +A -4.7194,4.982719,9.59837,338.72502,2.923996 +A 0.8004,9.000075,5.44975,326.5996,0 + +[使] 10 +L 1.6885,0,1.6885,6.597524 +L 7.4641,4.23315,7.4641,6.368727 +L 7.4641,6.368727,3.2258,6.368727 +L 3.2258,6.368727,3.2258,4.23315 +L 3.2258,4.23315,7.4641,4.23315 +L 5.3346,9.000162,5.3346,4.23315 +L 8.0346,7.932309,2.6303,7.932309 +A -5.8456,10.627751,8.540417,321.41046,349.01228 +A 0.6658,4.23315,4.668306,294.93721,0 +A -2.119,-10.347906,14.49392,45.557174,67.063018 + +[始] 15 +L 4.6778,0,4.6778,3.699246 +L 4.6778,3.699246,7.6338,3.699246 +L 7.6338,3.699246,7.6338,0 +L 7.6338,0,4.6778,0 +L 8.0611,5.300917,8.0611,6.368727 +L 8.0611,6.368727,6.678,6.23038 +L 6.678,6.23038,5.4903,5.973344 +L 5.4903,5.973344,3.82,5.834778 +L 4.6778,6.635702,4.9513,7.435136 +L 4.9513,7.435136,5.235,8.226034 +L 5.235,8.226034,5.5289,9.000162 +L 4.2648,6.330331,0.6643,6.330331 +L 1.5221,3.326541,2.1455,8.9999 +A -3.8714,-3.399523,8.620982,23.224227,51.278884 +A -5.728,6.330331,9.138971,316.15783,0 + +[終] 47 +L 2.1163,0,2.1163,4.767143 +L 2.1163,4.767143,0.8625,4.767143 +L 7.2085,0,6.6271,0.53408 +L 6.6271,0.53408,6.0597,1.067897 +L 6.0597,1.067897,5.4997,1.601802 +L 0.8625,1.334784,0.985,1.945086 +L 0.985,1.945086,1.1178,2.555039 +L 1.1178,2.555039,1.2579,3.165341 +L 3.3947,1.868645,3.2438,2.315077 +L 3.2438,2.315077,3.0967,2.744565 +L 3.0967,2.744565,2.9674,3.165341 +L 6.7812,2.669569,6.4874,3.012809 +L 6.4874,3.012809,6.1998,3.356137 +L 6.1998,3.356137,5.927,3.699246 +L 3.8252,3.699246,3.5275,4.23315 +L 3.5275,4.23315,3.2438,4.767143 +L 3.2438,4.767143,2.9674,5.300917 +L 2.9674,5.300917,2.8165,5.137133 +L 2.8165,5.137133,2.6729,4.95632 +L 2.6729,4.95632,2.5436,4.767143 +L 4.2493,3.699246,4.7989,4.23315 +L 4.7989,4.23315,5.3561,4.767143 +L 5.3561,4.767143,5.927,5.300917 +L 5.927,5.300917,5.4997,6.024304 +L 5.4997,6.024304,5.0861,6.738761 +L 5.0861,6.738761,4.6763,7.436624 +L 4.6763,7.436624,4.3824,7.091939 +L 4.3824,7.091939,4.0949,6.738761 +L 4.0949,6.738761,3.8252,6.368727 +L 7.6358,3.699246,7.2085,4.069411 +L 7.2085,4.069411,6.7812,4.422283 +L 6.7812,4.422283,6.3575,4.767143 +L 1.6852,5.300917,1.8186,5.567847 +L 1.8186,5.567847,1.9619,5.834778 +L 1.9619,5.834778,2.1163,6.10184 +L 2.1163,6.10184,1.5349,6.824833 +L 1.5349,6.824878,1.2579,7.16965 +L 1.2579,7.16965,1.5349,7.779864 +L 1.5349,7.779864,1.8186,8.389992 +L 1.8186,8.389992,2.1163,9.000162 +L 6.3575,6.10184,6.4874,6.712098 +L 6.4874,6.712098,6.6271,7.322182 +L 6.6271,7.322182,6.7812,7.932309 +L 6.7812,7.932309,4.6763,7.932309 +L 2.5436,7.16965,2.6729,7.435136 +L 2.6729,7.435136,2.8165,7.692129 +L 2.8165,7.692129,2.9674,7.932309 + +[返] 24 +L 3.0006,1.868645,3.7116,4.130047 +L 3.7116,4.130047,3.8626,6.179463 +L 3.8626,6.179463,3.8205,8.466301 +L 3.8205,8.466301,8.0616,8.466301 +L 4.465,1.601802,5.1056,2.13435 +L 5.1056,2.13435,5.7434,2.658405 +L 5.7434,2.658405,6.384,3.165341 +L 6.384,3.165341,5.4807,4.707821 +L 5.4807,4.707821,5.1515,5.538295 +L 5.1515,5.538295,5.1056,6.368727 +L 5.1056,6.368727,4.2478,6.368727 +L 7.6378,1.601802,7.3615,1.97188 +L 7.3615,1.97188,7.0845,2.325059 +L 7.0845,2.325059,6.8151,2.669569 +L 6.8151,3.699246,7.3927,4.866 +L 7.3927,4.866,7.6067,5.558172 +L 7.6067,5.558172,7.6378,6.368727 +L 7.6378,6.368727,5.5294,6.368727 +L 5.95,-0.015148,8.0792,-0.015148 +L 2.1285,1.052487,1.0778,0 +L 0.8781,4.751776,2.1285,4.751776 +L 2.1285,1.052487,2.1285,4.751776 +L 1.3019,8.489111,2.1285,7.421257 +A 5.95,7.347793,7.362973,238.75988,270 + +[送] 28 +L 1.0763,0,1.4128,0.370122 +L 1.4128,0.370122,1.7561,0.7233 +L 1.7561,0.7233,2.113,1.067897 +L 2.113,1.067897,2.113,4.767143 +L 2.113,4.767143,0.8595,4.767143 +L 3.3952,0,2.817,0.370165 +L 2.817,0.370122,2.5406,0.53408 +L 3.8225,0,8.0636,0 +L 3.6085,1.601802,5.5314,4.233107 +L 5.5314,4.23315,5.1671,4.608701 +L 5.1671,4.608701,4.6141,4.747223 +L 4.6141,4.747223,3.3952,4.767143 +L 7.6363,2.135839,7.0553,2.668212 +L 7.0553,2.668212,6.4879,3.192178 +L 6.4879,3.192178,5.9275,3.699246 +L 5.9275,4.767143,5.6505,5.202148 +L 5.6505,5.202148,5.5454,5.755666 +L 5.5454,5.755666,5.5314,6.902588 +L 5.5314,6.902588,3.8225,6.902588 +L 6.3548,4.767143,7.6363,4.767143 +L 6.1408,6.902588,6.3548,7.615994 +L 6.3548,7.615994,6.5684,8.312237 +L 6.5684,8.312237,6.7852,9.000162 +L 2.113,7.436624,1.8401,7.779864 +L 1.8401,7.779864,1.2903,8.466301 +L 4.6736,8.199239,4.523,8.466301 +L 4.523,8.466301,4.3791,8.733232 +L 4.3791,8.733232,4.2495,9.000162 + +[予] 15 +L 2.9976,0,4.2798,0 +L 4.2798,0,4.2798,5.300917 +L 4.2798,5.300917,0.865,5.300917 +L 6.3845,3.699246,6.6612,4.15544 +L 6.6612,4.15544,6.9449,4.60336 +L 6.9449,4.60336,7.2429,5.033855 +L 7.2429,5.033855,5.6388,5.382786 +L 5.6388,5.382786,4.5177,5.918268 +L 4.5177,5.918268,3.4284,6.902588 +L 4.8893,6.902588,5.3796,7.349107 +L 5.3796,7.349107,5.8766,7.778333 +L 5.8766,7.778333,6.3845,8.199239 +L 6.3845,8.199239,4.6788,8.302475 +L 4.6788,8.302475,2.9766,8.388504 +L 2.9766,8.388504,1.2887,8.466301 + +# kan_07 ------------------------------------------------------- +# 定洋式和暑寒温仕事者運転員商業農悪次味面受落指投打深流消決旅相談急発局路注意由取服具銀品期感悲代曲集 + +[定] 10 +L 3.3938,7.932199,3.3938,9.000053 +L 0.0034,6.368836,0.0034,7.932199 +L 0.0034,7.932199,6.7768,7.932199 +L 6.7768,6.368836,6.7768,7.932199 +L 0.6937,5.999958,6.0938,5.999958 +L 6.0938,2.999969,3.3938,2.999969 +L 3.3938,5.999958,3.3938,0.119334 +L 4.1419,0.000009,6.9936,0.000009 +A -4.9305,4.499976,6.524367,316.39163,0 +A 4.2936,3.452092,3.452083,203.47329,270 + +[洋] 9 +L 1.2519,7.970463,0.4324,8.999966 +L 0.8281,5.834756,0.0019,6.902522 +L 1.2519,3.737444,0.0019,0.266996 +L 3.4199,9.03823,3.8157,8.237307 +L 5.9557,9.03823,5.3113,7.436515 +L 6.8068,7.436515,2.5653,7.436515 +L 6.376,5.300895,2.9926,5.300895 +L 7.2341,3.203495,2.1416,3.203495 +L 4.6668,7.436515,4.6668,0 + +[式] 9 +L 0.0351,5.999984,7.2361,5.999984 +L 7.2361,0,7.2361,1.49999 +L 5.9507,8.466105,6.8929,7.524207 +L 0.5324,7.499996,3.6321,7.499996 +L 4.7038,9.000053,4.7038,5.999984 +L 1.8318,4.499972,1.8318,1.039243 +L 0.0351,0,4.3781,2.507252 +L 0.0351,4.499972,3.8212,4.499972 +A 13.0786,5.999984,8.374544,180,225.76263 + +[和] 9 +L 0.0616,5.834756,3.452,5.834756 +L 0.0616,1.60178,1.7431,5.131683 +L 1.7431,0,1.7431,8.051721 +L 3.0247,2.43624,1.7431,5.131683 +L 4.3066,7.970288,4.3066,0.533796 +L 4.3066,0.533796,6.8388,0.533796 +L 6.8388,0.533796,6.8388,7.970288 +L 6.8388,7.970288,4.3066,7.970288 +A 0.8076,12.731828,4.772112,266.17535,297.6407 + +[暑] 14 +L 0.9217,8.504325,0.9217,6.368836 +L 0.9217,6.368836,6.0146,6.368836 +L 6.0146,6.368836,6.0146,8.504325 +L 6.0146,8.504325,0.9217,8.504325 +L 0.9217,5.300895,6.0146,5.300895 +L 7.2615,3.737182,0.0639,3.737182 +L 6.0146,0,6.0146,2.669459 +L 6.0146,2.669459,2.2004,2.669459 +L 2.2004,2.669459,2.2004,0 +L 2.2004,0,6.0146,0 +L 6.0146,7.43658,0.9217,7.43658 +L 6.0146,1.33473,2.2004,1.33473 +L 3.4683,3.737182,3.4683,5.868836 +A -0.7591,9.972512,7.879982,275.99557,318.65306 + +[寒] 13 +L 3.6941,7.932155,3.6941,8.999966 +L 0.3076,7.932155,7.0845,7.932155 +L 7.0845,6.368792,7.0845,7.932155 +L 1.1657,6.533845,6.2268,6.533845 +L 1.1657,5.135535,6.2268,5.135535 +L 0.3076,3.737182,7.0845,3.737182 +L 2.7979,1.039243,4.5981,0 +L 2.7979,2.539299,4.5981,1.49999 +L 0.5209,1.067788,2.0655,3.737182 +L 6.8674,1.067788,5.3266,3.737182 +L 0.3076,6.368792,0.3076,7.932155 +L 5.0955,7.932155,5.0955,3.737182 +L 2.2932,7.932155,2.2932,3.737182 + +[温] 14 +L 1.3775,7.970463,0.5513,8.999966 +L 0.9467,5.834756,0.1271,6.902522 +L 1.3775,3.737444,0.1271,0.266996 +L 3.0867,6.902697,6.0428,6.902697 +L 3.0867,8.504325,3.0867,5.300895 +L 3.0867,5.300895,6.0428,5.300895 +L 6.0428,5.300895,6.0428,8.504325 +L 6.0428,8.504325,3.0867,8.504325 +L 6.4736,0.533796,6.4736,3.737182 +L 6.4736,3.737182,2.6594,3.737182 +L 2.6594,3.737182,2.6594,0.533796 +L 1.8052,0.533796,7.3247,0.533796 +L 3.9417,0.533796,3.9417,3.737182 +L 5.1882,0.533796,5.1882,3.737182 + +[仕] 5 +L 0.9802,0,0.9802,6.597502 +L 7.3267,5.834756,2.2621,5.834756 +L 4.7944,9.03823,4.7944,0 +L 2.6579,0,6.8994,0 +A -6.55,10.627729,8.540417,321.41046,349.01228 + +[事] 11 +L 3.5425,9.03823,3.5425,0 +L 3.5425,0,2.6848,0 +L 5.8611,1.60178,1.2239,1.60178 +L 5.6475,5.834756,5.6475,6.902697 +L 5.6475,6.902697,1.4099,6.902697 +L 1.4099,6.902697,1.4099,5.834756 +L 1.4099,5.834756,5.6475,5.834756 +L 0.1592,7.970288,6.9294,7.970288 +L 5.8611,1.60178,5.8611,4.233085 +L 1.2239,4.233085,5.8611,4.233085 +L 0.1592,2.917433,6.9294,2.917433 + +[者] 9 +L 2.291,3.737182,2.291,0 +L 2.291,0,6.1052,0 +L 6.1052,0,6.1052,3.737182 +L 6.1052,3.737182,2.291,3.737182 +L 6.1052,1.868591,2.291,1.868591 +L 0.1577,5.300895,7.3867,5.300895 +L 3.7722,5.300895,3.7722,9.12538 +L 1.0123,7.436515,6.5321,7.436515 +A -12.386,21.066274,22.709347,303.52896,326.41569 + +[運] 40 +L 2.7164,8.504325,6.9614,8.504325 +L 3.0352,7.264194,2.7164,8.504325 +L 3.8267,7.024101,3.0352,7.264194 +L 4.8564,6.368836,3.8267,7.024101 +L 4.5065,5.993023,4.8564,6.368836 +L 4.0649,5.854502,4.5065,5.993023 +L 3.1476,5.834756,4.0649,5.854502 +L 3.1476,3.737182,3.1476,5.834756 +L 4.426,3.737182,3.1476,3.737182 +L 4.7062,3.203495,4.426,3.737182 +L 4.986,2.669459,4.7062,3.203495 +L 5.2802,2.135642,4.986,2.669459 +L 5.2802,3.737182,4.6501,4.462058 +L 4.6501,4.462058,4.2085,4.728857 +L 4.2085,4.728857,3.5749,4.766903 +L 5.2032,4.925082,4.8564,5.300895 +L 5.6343,4.786604,5.2032,4.925082 +L 6.531,4.766903,5.6343,4.786604 +L 6.531,3.737182,6.531,4.766903 +L 5.711,3.737182,6.531,3.737182 +L 5.711,2.135642,6.9614,2.135642 +L 5.6343,5.656788,6.531,5.300895 +L 5.2032,5.656788,5.6343,5.656788 +L 4.8564,5.300895,5.2032,5.656788 +L 4.986,7.625692,4.8564,7.970288 +L 5.1335,7.2726,4.986,7.625692 +L 5.2802,6.902697,5.1335,7.2726 +L 6.1488,6.911059,5.2802,6.902697 +L 6.7408,7.275314,6.1488,6.911059 +L 6.9614,8.504325,6.7408,7.275314 +L 4.426,2.135642,2.7164,2.135642 +L 4.5552,1.86858,4.426,2.135642 +L 4.7062,1.60178,4.5552,1.86858 +L 4.8564,1.334806,4.7062,1.60178 +L 5.2701,-0.015236,7.4031,-0.015236 +L 1.4556,1.052465,0.4013,0 +L 0.2017,4.751667,1.4556,4.751667 +L 1.4556,1.052465,1.4556,4.751667 +L 0.629,8.489133,1.4556,7.421235 +A 5.2701,7.347815,7.362973,238.75988,270 + +[転] 20 +L 4.0319,7.970288,6.9918,7.970288 +L 5.2857,5.300895,3.6046,5.300895 +L 5.09,3.341798,5.2857,5.300895 +L 4.428,1.247201,5.09,3.341798 +L 3.1738,0,4.428,1.247201 +L 5.822,0.395492,6.5641,0.533796 +L 5.1807,0.138412,5.822,0.395492 +L 4.4592,0,5.1807,0.138412 +L 6.5641,0.533796,6.8478,1.146856 +L 6.8478,1.146856,6.8478,1.700637 +L 6.8478,1.700637,6.5641,2.669459 +L 5.7095,5.300895,7.4191,5.300895 +L 1.7136,9.03823,1.7136,0.038286 +L 3.2056,7.970376,0.2177,7.970376 +L 3.2056,1.60178,0.2177,1.60178 +L 0.4313,6.368836,0.4313,3.20332 +L 2.9916,6.368836,0.4313,6.368836 +L 2.9916,4.805079,0.4313,4.805079 +L 0.4313,3.20332,2.9916,3.20332 +L 2.9916,6.368836,2.9916,3.20332 + +[員] 12 +L 1.5016,8.504325,1.5016,6.902697 +L 1.5016,6.902697,6.1672,6.902697 +L 6.1672,6.902697,6.1672,8.504325 +L 6.1672,8.504325,1.5016,8.504325 +L 1.0708,5.834756,1.0708,1.60178 +L 1.0708,1.60178,6.5945,1.60178 +L 6.5945,1.60178,6.5945,5.834756 +L 6.5945,5.834756,1.0708,5.834756 +L 6.5945,4.423764,1.0708,4.423764 +L 6.5945,3.012772,1.0708,3.012772 +L 0.2165,0,1.9219,0.533796 +L 7.4484,0,5.7431,0.533796 + +[商] 26 +L 5.7419,7.970288,7.02,7.970288 +L 5.3423,7.970288,2.355,7.970288 +L 1.9274,7.703533,1.3565,7.806592 +L 1.3565,7.806592,0.7999,7.892841 +L 0.7999,7.892841,0.2501,7.970288 +L 2.7823,5.834756,4.0607,5.834756 +L 4.4912,5.834756,4.4912,4.233085 +L 4.4912,4.233085,5.7419,4.233085 +L 6.5962,5.834756,4.4912,5.834756 +L 4.915,6.368836,5.2165,6.783876 +L 5.2165,6.783876,5.3283,7.19918 +L 5.3283,7.19918,5.3423,7.970288 +L 6.5962,0,6.5962,5.834756 +L 5.7419,0,6.5962,0 +L 4.915,0.533796,2.355,0.533796 +L 2.355,0.533796,2.355,2.669459 +L 2.355,2.669459,4.915,2.669459 +L 4.915,2.669459,4.915,0.533796 +L 0.6774,0,0.6774,5.834756 +L 0.6774,5.834756,2.355,5.834756 +L 2.355,5.834756,2.2041,6.471808 +L 2.2041,6.471808,2.0573,7.091917 +L 2.0573,7.091917,1.9274,7.703533 +L 1.7106,3.737182,2.4636,4.501592 +L 2.4636,4.501592,2.7438,5.045216 +L 2.7438,5.045216,2.7823,5.834756 + +[業] 35 +L 5.5583,7.436515,6.1989,9.03823 +L 4.917,5.834756,6.6265,5.834756 +L 6.1989,7.436515,7.0538,7.436515 +L 4.4897,4.233085,6.1989,4.233085 +L 4.4897,2.669459,7.0538,2.669459 +L 6.1989,0.533796,4.1149,2.053597 +L 4.1149,2.053597,2.4831,2.522619 +L 2.4831,2.522619,0.2797,2.669459 +L 1.3238,1.067788,0.2797,0.533796 +L 2.3847,1.60178,1.3238,1.067788 +L 3.4533,2.135642,2.3847,1.60178 +L 3.5128,1.437997,3.4533,2.135642 +L 3.586,0.723191,3.5128,1.437997 +L 3.6631,0,3.586,0.723191 +L 1.5161,8.207711,1.4044,8.622927 +L 1.4044,8.622927,1.1032,9.03823 +L 0.2797,7.436515,1.534,7.436515 +L 3.6631,5.834756,0.6759,5.834756 +L 3.6775,5.063516,3.6631,5.834756 +L 3.7892,4.648345,3.6775,5.063516 +L 4.0939,4.233085,3.7892,4.648345 +L 4.276,5.834756,4.4897,6.29095 +L 4.4897,6.29095,4.6998,6.738739 +L 4.6998,6.738739,4.917,7.169541 +L 4.917,7.169541,2.3847,7.169541 +L 2.3847,7.169541,2.5143,6.902697 +L 2.5143,6.902697,2.6618,6.63568 +L 2.6618,6.63568,2.812,6.368836 +L 2.812,7.970288,2.812,9.03823 +L 3.2393,4.233085,1.1032,4.233085 +L 3.3692,3.992904,3.2393,4.233085 +L 3.5128,3.735912,3.3692,3.992904 +L 3.6631,3.470514,3.5128,3.735912 +L 1.534,7.436515,1.5161,8.207711 +L 4.4897,7.970288,4.4897,9.03823 + +[農] 45 +L 1.5601,0,2.4112,0 +L 2.4112,2.669459,1.1328,2.669459 +L 2.4112,0,2.4112,2.669459 +L 2.8105,0.533796,4.0924,0.533796 +L 5.2692,1.539524,4.257,2.27412 +L 6.6562,0,5.2692,1.539524 +L 4.9473,2.669459,7.4796,2.669459 +L 1.9913,3.737182,6.2292,3.737182 +L 1.5601,5.834756,1.9629,5.937991 +L 2.1734,6.872883,1.5601,6.902697 +L 2.4991,6.665187,2.1734,6.872883 +L 2.8105,6.10173,2.4991,6.665187 +L 2.3836,6.024151,2.8105,6.10173 +L 1.9629,5.937991,2.3836,6.024151 +L 1.1328,7.970288,2.4112,7.970288 +L 1.1328,5.834756,1.1328,7.970288 +L 0.688,2.134241,0.7024,4.766903 +L 0.5763,0.967443,0.688,2.134241 +L 0.2817,0.266996,0.5763,0.967443 +L 4.257,2.27412,2.8105,2.669459 +L 0.7024,4.766903,7.0485,4.766903 +L 5.3116,7.792364,6.2292,7.436515 +L 6.2292,6.902697,5.3116,6.922398 +L 5.3116,6.922398,4.8668,7.060702 +L 4.8668,7.060702,4.5236,7.436515 +L 4.5236,7.436515,4.8668,7.792364 +L 4.8668,7.792364,5.3116,7.792364 +L 4.9473,5.834756,5.3746,5.834756 +L 5.3746,5.834756,5.8019,5.834756 +L 5.8019,5.834756,6.2292,5.834756 +L 6.2292,5.834756,6.2292,6.20479 +L 6.2292,6.20479,6.2292,6.558012 +L 6.2292,6.558012,6.2292,6.902697 +L 4.5236,6.10173,3.9807,6.685064 +L 3.9807,6.685064,3.3502,7.03115 +L 3.3502,7.03115,2.8105,7.436515 +L 2.8105,7.436515,3.3502,7.851775 +L 3.3502,7.851775,3.9807,8.267034 +L 3.9807,8.267034,4.5236,9.03823 +L 4.0924,6.024151,4.5236,6.10173 +L 3.6651,5.937991,4.0924,6.024151 +L 3.2378,5.834756,3.6651,5.937991 +L 2.6673,8.693588,2.8105,9.03823 +L 2.5377,8.340367,2.6673,8.693588 +L 2.4112,7.970288,2.5377,8.340367 + +[悪] 63 +L 0.3083,0,0.5849,0.723191 +L 0.5849,0.723191,0.8686,1.437997 +L 0.8686,1.437997,1.1593,2.135642 +L 0.3083,3.737182,1.1422,3.737182 +L 1.1422,3.737182,1.9894,3.737182 +L 1.9894,3.737182,2.8405,3.737182 +L 2.8405,3.737182,2.6094,5.024158 +L 2.6094,5.024158,2.0069,5.336182 +L 2.0069,5.336182,1.1593,5.300895 +L 1.1593,5.300895,1.1593,5.834756 +L 1.1593,5.834756,1.1593,6.368836 +L 1.1593,6.368836,1.1593,6.902697 +L 1.1593,6.902697,2.1681,6.970338 +L 2.1681,6.970338,2.6934,7.394179 +L 2.6934,7.394179,2.8405,8.504325 +L 2.8405,8.504325,1.9894,8.504325 +L 1.9894,8.504325,1.1422,8.504325 +L 1.1422,8.504325,0.3083,8.504325 +L 5.3766,8.504325,6.0768,8.504325 +L 6.0768,8.504325,6.7878,8.504325 +L 6.7878,8.504325,7.5058,8.504325 +L 6.2277,6.902697,6.655,6.902697 +L 5.8004,6.902697,6.2277,6.902697 +L 5.3766,6.902697,5.8004,6.902697 +L 5.1105,6.309338,5.3766,6.902697 +L 5.1105,5.89421,5.1105,6.309338 +L 5.3766,5.300895,5.1105,5.89421 +L 5.8004,5.300895,5.3766,5.300895 +L 6.2277,5.300895,5.8004,5.300895 +L 6.655,5.300895,6.2277,5.300895 +L 6.655,5.834756,6.655,5.300895 +L 6.655,6.368836,6.655,5.834756 +L 6.655,6.902697,6.655,6.368836 +L 6.0768,3.737182,6.7878,3.737182 +L 5.3766,3.737182,6.0768,3.737182 +L 4.3991,3.737182,4.9805,3.737182 +L 3.8247,3.737182,4.3991,3.737182 +L 3.2717,3.737182,3.8247,3.737182 +L 4.5953,5.223228,3.7375,5.45474 +L 4.9805,3.737182,4.5953,5.223228 +L 4.5501,1.86858,4.3991,2.135642 +L 4.3991,2.135642,4.2555,2.402616 +L 4.2555,2.402616,4.1228,2.669459 +L 3.2717,0,4.1018,0 +L 2.8405,0,2.5432,0.43507 +L 2.5432,0.43507,2.4307,0.988808 +L 2.4307,0.988808,2.4171,2.135642 +L 3.7375,5.45474,2.8405,6.10173 +L 2.8405,6.10173,3.7231,6.868548 +L 3.7231,6.868548,4.5886,7.22882 +L 4.5886,7.22882,4.9805,8.504325 +L 4.9805,8.504325,4.3991,8.504325 +L 4.3991,8.504325,3.8247,8.504325 +L 3.8247,8.504325,3.2717,8.504325 +L 4.1018,0,4.9455,0 +L 4.9455,0,5.8004,0 +L 5.8004,0,5.8004,0.370012 +L 5.8004,0.370012,5.8004,0.723191 +L 5.8004,0.723191,5.8004,1.067788 +L 6.9317,1.70484,6.655,2.135642 +L 7.2154,1.257096,6.9317,1.70484 +L 7.5058,0.800814,7.2154,1.257096 +L 6.7878,3.737182,7.5058,3.737182 + +[次] 27 +L 3.7115,8.267034,3.7286,9.03823 +L 3.6026,7.851775,3.7115,8.267034 +L 3.2978,7.436515,3.6026,7.851775 +L 3.2978,6.902697,3.004,6.368836 +L 3.004,6.368836,2.7238,5.834756 +L 2.7238,5.834756,2.4436,5.300895 +L 1.1652,3.08914,1.5925,4.233085 +L 0.734,1.944977,1.1652,3.08914 +L 0.3141,0.800814,0.734,1.944977 +L 1.8058,0,3.3332,2.298024 +L 3.3332,2.298024,4.2439,4.248584 +L 4.2439,4.248584,4.5486,6.902697 +L 4.5486,6.902697,4.1248,6.902697 +L 4.1248,6.902697,3.7041,6.902697 +L 3.7041,6.902697,3.2978,6.902697 +L 5.5363,6.82503,4.979,6.902697 +L 6.1072,6.738739,5.5363,6.82503 +L 6.6847,6.63568,6.1072,6.738739 +L 6.394,6.20479,6.6847,6.63568 +L 6.1072,5.757133,6.394,6.20479 +L 5.8336,5.300895,6.1072,5.757133 +L 5.6834,2.505588,4.979,3.737182 +L 6.394,1.257096,5.6834,2.505588 +L 7.1124,0,6.394,1.257096 +L 1.0142,7.625692,0.734,7.970288 +L 1.2944,7.2726,1.0142,7.625692 +L 1.5925,6.902697,1.2944,7.2726 + +[味] 36 +L 7.1179,1.067788,6.4135,2.211908 +L 6.4135,2.211908,5.713,3.355984 +L 5.713,3.355984,5.0094,4.499884 +L 5.0094,4.499884,4.1544,4.60325 +L 4.1544,4.60325,3.2963,4.689192 +L 3.2963,4.689192,2.4452,4.766903 +L 1.6222,6.214684,1.6222,4.450544 +L 1.6222,7.970288,1.6222,6.214684 +L 1.1914,7.970288,1.6222,7.970288 +L 0.7711,7.970288,1.1914,7.970288 +L 0.3403,7.970288,0.7711,7.970288 +L 0.3403,6.214684,0.3403,7.970288 +L 0.3403,4.450544,0.3403,6.214684 +L 0.3403,2.669459,0.3403,4.450544 +L 0.7711,2.669459,0.3403,2.669459 +L 1.1914,2.669459,0.7711,2.669459 +L 1.6222,2.669459,1.1914,2.669459 +L 1.6222,4.450544,1.6222,2.669459 +L 2.5363,2.134241,1.6222,1.067788 +L 3.4508,3.192069,2.5363,2.134241 +L 4.3684,4.233085,3.4508,3.192069 +L 4.4311,2.822122,4.3684,4.233085 +L 4.4977,1.411116,4.4311,2.822122 +L 4.5821,0,4.4977,1.411116 +L 4.5821,5.300895,4.442,6.922398 +L 4.442,6.922398,3.9233,7.41677 +L 3.9233,7.41677,2.8725,7.436515 +L 4.7082,7.851775,4.5957,8.267034 +L 4.5957,8.267034,4.5821,9.03823 +L 5.0094,7.436515,4.7082,7.851775 +L 5.4367,7.436515,5.843,7.436515 +L 5.843,7.436515,6.2594,7.436515 +L 6.2594,7.436515,6.6867,7.436515 +L 6.5431,4.766903,7.1179,4.766903 +L 5.9831,4.766903,6.5431,4.766903 +L 5.4367,4.766903,5.9831,4.766903 + +[面] 48 +L 1.4981,8.504325,0.3703,8.504325 +L 2.6294,8.504325,1.4981,8.504325 +L 3.761,8.504325,2.6294,8.504325 +L 3.6066,7.892841,3.761,8.504325 +L 3.463,7.2726,3.6066,7.892841 +L 3.3302,6.63568,3.463,7.2726 +L 2.4791,6.558012,3.3302,6.63568 +L 1.6315,6.471808,2.4791,6.558012 +L 0.7979,6.368836,1.6315,6.471808 +L 0.7979,4.259966,0.7979,6.368836 +L 0.7979,2.134241,0.7979,4.259966 +L 0.7979,0,0.7979,2.134241 +L 1.1934,0,1.7541,0 +L 1.7541,0,2.3247,0 +L 2.3247,0,2.9029,0 +L 2.9029,0,2.9029,1.944977 +L 2.9029,1.944977,2.9029,3.889801 +L 2.9029,3.889801,2.9029,5.834756 +L 3.761,6.368836,4.0304,6.368836 +L 4.0304,6.368836,4.3141,6.368836 +L 4.3141,6.368836,4.6118,6.368836 +L 5.7115,6.368836,5.0079,6.368836 +L 6.419,6.368836,5.7115,6.368836 +L 7.144,6.368836,6.419,6.368836 +L 6.5665,0,7.144,0 +L 5.9952,0,6.5665,0 +L 5.4352,0,5.9952,0 +L 4.4366,0,5.0079,0 +L 3.8832,0,4.4366,0 +L 3.3302,0,3.8832,0 +L 3.8832,2.135642,3.3302,2.135642 +L 4.4366,2.135642,3.8832,2.135642 +L 5.0079,2.135642,4.4366,2.135642 +L 5.0079,1.437997,5.0079,2.135642 +L 5.0079,0.723191,5.0079,1.437997 +L 5.0079,0,5.0079,0.723191 +L 5.0079,3.916682,5.0079,2.669459 +L 5.0079,5.146787,5.0079,3.916682 +L 5.0079,6.368836,5.0079,5.146787 +L 4.1848,8.504325,5.3126,8.504325 +L 5.3126,8.504325,6.44,8.504325 +L 6.44,8.504325,7.5748,8.504325 +L 4.1848,4.233085,4.6118,4.233085 +L 3.761,4.233085,4.1848,4.233085 +L 3.3302,4.233085,3.761,4.233085 +L 7.144,4.259966,7.144,6.368836 +L 7.144,2.134241,7.144,4.259966 +L 7.144,0,7.144,2.134241 + +[受] 45 +L 5.8922,0,5.3146,0.533796 +L 5.3146,0.533796,4.7434,1.067788 +L 4.7434,1.067788,4.1833,1.60178 +L 4.1833,1.60178,4.6138,2.238701 +L 4.6138,2.238701,5.0376,2.858811 +L 5.0376,2.858811,5.4649,3.470514 +L 5.4649,3.470514,4.6138,3.573529 +L 4.6138,3.573529,3.7662,3.659646 +L 3.7662,3.659646,2.9326,3.737182 +L 3.7595,1.60178,2.8454,2.926627 +L 2.7575,1.067788,3.7595,1.60178 +L 1.7736,0.533796,2.7575,1.067788 +L 0.7999,0,1.7736,0.533796 +L 1.353,7.806592,1.0728,7.892841 +L 1.6545,7.703533,1.353,7.806592 +L 1.7838,7.091917,1.6545,7.703533 +L 1.9312,6.471808,1.7838,7.091917 +L 2.0783,5.834756,1.9312,6.471808 +L 1.5036,5.834756,2.0783,5.834756 +L 0.9292,5.834756,1.5036,5.834756 +L 0.3726,5.834756,0.9292,5.834756 +L 0.3726,5.300895,0.3726,5.834756 +L 0.3726,4.766903,0.3726,5.300895 +L 0.3726,4.233085,0.3726,4.766903 +L 2.299,3.480189,1.6545,3.737182 +L 2.8454,2.926627,2.299,3.480189 +L 4.0642,5.834756,2.5088,5.834756 +L 5.6228,5.834756,4.0642,5.834756 +L 7.1744,5.834756,5.6228,5.834756 +L 7.1744,5.300895,7.1744,5.834756 +L 7.1744,4.766903,7.1744,5.300895 +L 7.1744,4.233085,7.1744,4.766903 +L 6.0256,7.091917,6.3233,7.436515 +L 5.7419,6.738739,6.0256,7.091917 +L 5.4649,6.368836,5.7419,6.738739 +L 4.5332,8.108942,5.4018,8.365847 +L 3.7595,7.970288,4.5332,8.108942 +L 3.4825,7.358892,3.3599,7.703533 +L 3.6159,7.005669,3.4825,7.358892 +L 3.7595,6.63568,3.6159,7.005669 +L 3.3599,7.703533,2.9326,7.806592 +L 2.9326,7.806592,2.5088,7.892841 +L 2.5088,7.892841,2.0783,7.970288 +L 1.0728,7.892841,0.7999,7.970288 +L 5.4018,8.365847,6.7433,8.504325 + +[落] 57 +L 0.4023,7.970288,1.2324,7.970288 +L 1.2324,7.970288,2.0835,7.970288 +L 2.0835,7.970288,2.9346,7.970288 +L 2.9346,7.970288,2.9346,8.340367 +L 2.9346,8.340367,2.9346,8.693588 +L 2.9346,8.693588,2.9346,9.03823 +L 3.3619,7.970288,3.9226,7.970288 +L 3.9226,7.970288,4.4932,7.970288 +L 4.4932,7.970288,5.0714,7.970288 +L 5.0714,7.970288,5.0714,8.340367 +L 5.0714,8.340367,5.0714,8.693588 +L 5.0714,8.693588,5.0714,9.03823 +L 5.4952,7.970288,6.1989,7.970288 +L 6.1989,7.970288,6.9029,7.970288 +L 6.9029,7.970288,7.6037,7.970288 +L 5.194,5.757133,5.7471,5.670973 +L 4.6441,5.834756,5.194,5.757133 +L 4.3566,5.439461,4.6441,5.834756 +L 4.3566,5.162329,4.3566,5.439461 +L 4.6441,4.766903,4.3566,5.162329 +L 4.9205,4.07924,4.5597,3.916682 +L 5.2847,4.233085,4.9205,4.07924 +L 5.9015,3.726017,5.2847,4.233085 +L 6.532,3.201963,5.9015,3.726017 +L 7.1726,2.669459,6.532,3.201963 +L 6.318,2.669459,5.6178,2.669459 +L 5.6178,2.669459,4.917,2.669459 +L 4.917,2.669459,4.2165,2.669459 +L 4.5597,3.916682,4.2165,3.737182 +L 3.5759,3.203495,3.2116,3.039712 +L 3.2116,3.039712,2.8505,2.858811 +L 2.8505,2.858811,2.5073,2.669459 +L 1.2569,2.135642,1.6807,3.203495 +L 0.8296,1.067788,1.2569,2.135642 +L 0.4023,0,0.8296,1.067788 +L 0.6794,4.956254,0.4023,5.300895 +L 0.9596,4.60325,0.6794,4.956254 +L 1.2569,4.233085,0.9596,4.60325 +L 1.6807,5.834756,1.3869,6.20479 +L 1.3869,6.20479,1.1032,6.558012 +L 1.1032,6.558012,0.8296,6.902697 +L 2.7174,4.766903,3.2116,5.49029 +L 3.2116,5.49029,3.7086,6.20479 +L 3.7086,6.20479,4.2165,6.902697 +L 5.7471,5.670973,6.318,5.56787 +L 6.318,5.56787,6.1677,5.300895 +L 6.1677,5.300895,6.0241,5.03392 +L 6.0241,5.03392,5.898,4.766903 +L 6.318,1.791,6.318,2.669459 +L 6.318,0.904092,6.318,1.791 +L 6.318,0,6.318,0.904092 +L 5.6178,0,6.318,0 +L 4.917,0,5.6178,0 +L 4.2165,0,4.917,0 +L 3.7857,0,3.7086,1.067788 +L 3.7086,1.067788,3.6354,2.135642 +L 3.6354,2.135642,3.5759,3.203495 + +[指] 42 +L 4.7964,0,3.8196,0 +L 5.7809,0,4.7964,0 +L 6.7756,0,5.7809,0 +L 6.7756,1.411116,6.7756,0 +L 6.7756,2.822122,6.7756,1.411116 +L 6.7756,4.233085,6.7756,2.822122 +L 5.7809,4.233085,6.7756,4.233085 +L 4.7964,4.233085,5.7809,4.233085 +L 3.8196,4.233085,4.7964,4.233085 +L 3.8196,2.822122,3.8196,4.233085 +L 3.8196,1.411116,3.8196,2.822122 +L 3.8196,0,3.8196,1.411116 +L 4.2469,2.135642,4.9508,2.135642 +L 4.9508,2.135642,5.651,2.135642 +L 5.651,2.135642,6.355,2.135642 +L 6.355,5.834756,7.2061,5.834756 +L 7.2061,5.834756,7.2061,6.20479 +L 7.2061,6.20479,7.2061,6.558012 +L 7.2061,6.558012,7.2061,6.902697 +L 6.0187,7.832073,6.7756,7.970288 +L 5.2692,7.574774,6.0187,7.832073 +L 4.2469,7.436515,5.2692,7.574774 +L 3.8336,7.139988,3.8196,9.03823 +L 3.9453,6.309338,3.8336,7.139988 +L 4.2469,5.834756,3.9453,6.309338 +L 4.6461,5.834756,5.4972,5.834756 +L 5.4972,5.834756,6.355,5.834756 +L 1.7002,7.891265,1.6827,9.03823 +L 1.8091,7.337527,1.7002,7.891265 +L 2.11,6.902697,1.8091,7.337527 +L 1.5986,5.484467,1.3889,6.490153 +L 2.11,4.233085,1.5986,5.484467 +L 1.5566,3.745632,1.2554,4.233085 +L 1.2554,4.233085,0.9826,4.07924 +L 0.9826,4.07924,0.709,3.916682 +L 0.709,3.916682,0.4288,3.737182 +L 1.669,2.648226,1.5566,3.745632 +L 1.6827,0,1.669,2.648226 +L 1.3853,0,1.6827,0 +L 1.1052,0,1.3853,0 +L 0.8281,0,1.1052,0 +L 1.3889,6.490153,0.4288,6.902697 + +[投] 48 +L 4.2453,8.504325,4.8057,8.504325 +L 4.8057,8.504325,5.3766,8.504325 +L 5.3766,8.504325,5.9542,8.504325 +L 5.9542,8.504325,5.9542,7.625692 +L 5.9542,7.625692,5.9542,6.738739 +L 5.9542,6.738739,5.9542,5.834756 +L 5.9542,5.834756,6.3643,5.834756 +L 6.3643,5.834756,6.7776,5.834756 +L 6.7776,5.834756,7.2046,5.834756 +L 7.2046,5.834756,7.2046,6.20479 +L 7.2046,6.20479,7.2046,6.558012 +L 7.2046,6.558012,7.2046,6.902697 +L 6.0841,3.392716,6.3815,4.004243 +L 5.8039,2.772738,6.0841,3.392716 +L 5.5234,2.135642,5.8039,2.772738 +L 5.9542,0.723191,5.5234,1.067788 +L 6.3815,0.370012,5.9542,0.723191 +L 6.8126,0,6.3815,0.370012 +L 1.4185,0,1.7131,0 +L 1.7131,0,1.6987,2.648226 +L 1.6987,2.648226,1.587,3.745632 +L 1.587,3.745632,1.2893,4.233085 +L 1.2893,4.233085,0.9912,4.07924 +L 0.9912,4.07924,0.711,3.916682 +L 0.711,3.916682,0.4347,3.737182 +L 1.422,6.507227,0.4347,6.902697 +L 1.615,5.518397,1.422,6.507227 +L 2.1404,4.233085,1.615,5.518397 +L 3.6671,4.233085,3.3943,4.233085 +L 3.9473,4.233085,3.6671,4.233085 +L 4.2453,4.233085,3.9473,4.233085 +L 4.2765,3.44928,4.2453,4.233085 +L 4.5007,2.767046,4.2765,3.44928 +L 5.1031,1.60178,4.5007,2.767046 +L 4.4586,1.067788,5.1031,1.60178 +L 3.818,0.533796,4.4586,1.067788 +L 3.1803,0,3.818,0.533796 +L 1.1348,0,1.4185,0 +L 0.8585,0,1.1348,0 +L 1.8388,7.337527,1.7267,7.891265 +L 1.7267,7.891265,1.7131,9.03823 +L 2.1404,6.902697,1.8388,7.337527 +L 3.3943,5.834756,3.9928,6.645574 +L 3.9928,6.645574,4.2135,7.337527 +L 4.2135,7.337527,4.2453,8.504325 +L 5.233,4.156994,4.6723,4.233085 +L 5.8039,4.080509,5.233,4.156994 +L 6.3815,4.004243,5.8039,4.080509 + +[打] 30 +L 4.7023,0,5.1125,0 +L 5.1125,0,5.5289,0 +L 5.5289,0,5.9527,0 +L 5.9527,0,5.9527,2.668058 +L 5.9527,2.668058,5.9527,5.327733 +L 5.9527,5.327733,5.9527,7.970288 +L 5.9527,7.970288,5.1016,7.970288 +L 5.1016,7.970288,4.2575,7.970288 +L 4.2575,7.970288,3.4239,7.970288 +L 1.7291,7.891265,1.7151,9.03823 +L 1.8408,7.337527,1.7291,7.891265 +L 2.142,6.902697,1.8408,7.337527 +L 1.61,6.091836,1.3154,6.902697 +L 1.8233,5.043815,1.61,6.091836 +L 2.142,4.233085,1.8233,5.043815 +L 1.5641,2.669459,1.4976,4.004243 +L 1.631,1.334806,1.5641,2.669459 +L 1.7151,0,1.631,1.334806 +L 1.4415,0,1.7151,0 +L 1.1617,0,1.4415,0 +L 0.8917,0,1.1617,0 +L 0.7974,3.840416,0.4612,3.737182 +L 1.1442,3.926577,0.7974,3.840416 +L 1.4976,4.004243,1.1442,3.926577 +L 1.3154,6.902697,1.0216,6.902697 +L 1.0216,6.902697,0.7414,6.902697 +L 0.7414,6.902697,0.4612,6.902697 +L 7.2349,7.970288,7.6622,7.970288 +L 6.8073,7.970288,7.2349,7.970288 +L 6.3835,7.970288,6.8073,7.970288 + +[深] 36 +L 3.3594,1.791,2.5997,1.067788 +L 4.1334,2.505588,3.3594,1.791 +L 4.918,3.203495,4.1334,2.505588 +L 4.9775,2.135642,4.918,3.203495 +L 5.0514,1.067788,4.9775,2.135642 +L 5.1355,0,5.0514,1.067788 +L 5.899,2.895542,4.8234,3.511273 +L 7.2646,1.067788,5.899,2.895542 +L 6.8408,3.737182,7.2646,3.737182 +L 6.4135,3.737182,6.8408,3.737182 +L 5.9866,3.737182,6.4135,3.737182 +L 5.1355,4.233085,5.1355,4.60325 +L 5.1355,4.60325,5.1355,4.956254 +L 5.1355,4.956254,5.1355,5.300895 +L 4.8234,3.511273,3.0231,3.737182 +L 2.813,5.300895,3.2998,6.024151 +L 3.2998,6.024151,3.7902,6.738739 +L 3.7902,6.738739,4.277,7.436515 +L 4.2844,8.504325,5.9866,8.504325 +L 5.9866,8.504325,7.6919,8.504325 +L 7.6919,8.504325,7.6919,8.159772 +L 7.6919,8.159772,7.6919,7.806592 +L 7.6919,7.806592,7.6919,7.436515 +L 7.3942,5.834756,7.6919,5.834756 +L 7.1144,5.834756,7.3942,5.834756 +L 6.8408,5.834756,7.1144,5.834756 +L 6.4135,5.834756,6.1123,6.249928 +L 6.1123,6.249928,6.0006,6.665187 +L 6.0006,6.665187,5.9866,7.436515 +L 2.5997,8.504325,4.2844,8.504325 +L 2.5997,8.159772,2.5997,8.504325 +L 2.5997,7.806592,2.5997,8.159772 +L 2.5997,7.436515,2.5997,7.806592 +L 1.7171,7.970376,0.8901,8.999878 +L 1.2863,5.834669,0.4628,6.902478 +L 1.7171,3.470514,0.4628,0.000022 + +[流] 33 +L 3.7291,7.970288,3.1547,7.970288 +L 3.1547,7.970288,2.5978,7.970288 +L 7.4001,0,7.6939,0 +L 7.1164,0,7.4001,0 +L 6.8393,0,7.1164,0 +L 6.4089,0,6.1318,0.49448 +L 6.1318,0.49448,6.0302,1.463215 +L 6.0302,1.463215,6.0127,3.737182 +L 7.2666,5.03392,5.9567,5.730208 +L 6.5665,7.970288,7.2666,7.970288 +L 5.8625,7.970288,6.5665,7.970288 +L 5.1616,7.970288,5.8625,7.970288 +L 4.7343,7.970288,4.7343,8.340367 +L 4.7343,8.340367,4.7343,8.693588 +L 4.7343,8.693588,4.7343,9.03823 +L 4.3039,7.970288,3.7291,7.970288 +L 4.1564,7.358892,4.3039,7.970288 +L 4.0128,6.738739,4.1564,7.358892 +L 3.8832,6.10173,4.0128,6.738739 +L 4.0934,5.545235,2.5978,5.300895 +L 5.9567,5.730208,4.0934,5.545235 +L 4.7343,2.669459,4.7343,3.737182 +L 4.7343,1.60178,4.7343,2.669459 +L 4.7343,0.533796,4.7343,1.60178 +L 2.2024,0,2.9449,1.291113 +L 2.9449,1.291113,3.3369,2.34465 +L 3.3369,2.34465,3.4528,3.737182 +L 7.6939,0,7.6939,0.533796 +L 7.6939,0.533796,7.6939,1.067788 +L 7.6939,1.067788,7.6939,1.60178 +L 1.7432,7.970376,0.9205,8.999878 +L 1.3194,5.834669,0.4929,6.902478 +L 1.7432,3.470514,0.4929,0.000022 + +[消] 39 +L 7.297,6.024151,7.297,6.368836 +L 7.297,5.670973,7.297,6.024151 +L 7.297,5.300895,7.297,5.670973 +L 7.297,4.42375,7.297,4.766903 +L 7.297,4.080509,7.297,4.42375 +L 7.297,3.737182,7.297,4.080509 +L 7.297,2.135642,7.297,3.203495 +L 7.297,1.067788,7.297,2.135642 +L 7.297,0,7.297,1.067788 +L 6.8732,0,7.297,0 +L 6.442,0,6.8732,0 +L 6.0147,0,6.442,0 +L 7.297,3.203495,6.1723,3.203495 +L 7.297,4.766903,6.1723,4.766903 +L 6.1723,4.766903,5.0411,4.766903 +L 5.0411,4.766903,3.9098,4.766903 +L 3.4825,2.134241,3.4825,4.259966 +L 3.4825,0,3.4825,2.134241 +L 7.297,6.368836,6.7187,6.368836 +L 6.7187,6.368836,6.1482,6.368836 +L 6.1482,6.368836,5.5874,6.368836 +L 4.5927,6.368836,5.1636,6.368836 +L 4.0323,6.368836,4.5927,6.368836 +L 3.4825,6.368836,4.0323,6.368836 +L 3.4825,4.259966,3.4825,6.368836 +L 5.0411,3.203495,3.9098,3.203495 +L 6.1723,3.203495,5.0411,3.203495 +L 5.1636,6.368836,5.1636,7.2726 +L 5.1636,7.2726,5.1636,8.159772 +L 5.1636,8.159772,5.1636,9.03823 +L 7.146,8.159772,7.297,8.504325 +L 7.0024,7.806592,7.146,8.159772 +L 6.8732,7.436515,7.0024,7.806592 +L 3.9098,7.703533,3.7595,7.970288 +L 3.7595,7.970288,3.6124,8.237307 +L 3.6124,8.237307,3.4825,8.504325 +L 1.7771,7.970376,0.9502,8.999878 +L 1.3463,5.834669,0.5264,6.902478 +L 1.7771,3.470514,0.5264,0.000022 + +[決] 24 +L 4.3916,7.100411,3.089,7.436515 +L 4.5982,6.170948,4.3916,7.100411 +L 5.1905,4.766903,4.5982,6.170948 +L 5.6213,4.766903,6.0451,4.766903 +L 6.0451,4.766903,6.4724,4.766903 +L 6.4724,4.766903,6.8997,4.766903 +L 6.8997,4.766903,6.8997,5.670973 +L 6.8997,5.670973,6.8997,6.558012 +L 6.8997,6.558012,6.8997,7.436515 +L 6.8997,7.436515,5.5439,7.470445 +L 5.5439,7.470445,4.9205,7.860224 +L 4.9205,7.860224,4.7667,9.03823 +L 3.8487,2.822122,4.7667,4.233085 +L 2.9346,1.411116,3.8487,2.822122 +L 2.0173,0,2.9346,1.411116 +L 3.8596,4.747113,2.6617,4.766903 +L 4.406,4.608811,3.8596,4.747113 +L 4.7667,4.233085,4.406,4.608811 +L 5.8941,2.505588,5.1905,3.737182 +L 6.6051,1.257096,5.8941,2.505588 +L 7.3302,0,6.6051,1.257096 +L 1.7756,7.970376,0.9522,8.999878 +L 1.3483,5.834669,0.5249,6.902478 +L 1.7756,3.470514,0.5249,0.000022 + +[旅] 30 +L 4.7932,0,4.7932,1.60038 +L 4.7932,1.60038,4.7932,3.192069 +L 4.7932,3.192069,4.7932,4.766903 +L 4.7932,4.766903,4.4987,4.766903 +L 4.4987,4.766903,4.215,4.766903 +L 4.215,4.766903,3.9421,4.766903 +L 7.7559,0,6.7823,1.823617 +L 6.7823,1.823617,6.2257,3.502912 +L 6.2257,3.502912,6.0471,5.300895 +L 6.0471,5.300895,5.7736,5.300895 +L 5.7736,5.300895,5.4937,5.300895 +L 5.4937,5.300895,5.2237,5.300895 +L 6.8982,3.737182,7.1749,4.080509 +L 7.1749,4.080509,7.4586,4.42375 +L 7.4586,4.42375,7.7559,4.766903 +L 3.5148,5.834756,4.2745,7.021212 +L 4.2745,7.021212,4.6076,7.851775 +L 4.6076,7.851775,4.7932,9.03823 +L 6.6881,5.834756,6.8982,6.024151 +L 6.8982,6.024151,7.1154,6.20479 +L 7.1154,6.20479,7.3287,6.368836 +L 5.2237,7.436515,6.0538,7.436515 +L 6.0538,7.436515,6.9049,7.436515 +L 6.9049,7.436515,7.7559,7.436515 +L 2.2326,6.864302,2.2326,8.999966 +L 1.8372,0,2.6637,0 +L 3.9421,6.864302,0.5588,6.864302 +L 3.5148,4.766771,1.7247,4.766771 +A -17.1885,6.864302,19.026682,338.85229,0 +A -10.2113,4.766771,13.726938,339.68025,0 + +[相] 33 +L 1.8357,0,1.7551,1.60038 +L 1.7551,1.60038,1.6847,3.192069 +L 1.6847,3.192069,1.6252,4.766903 +L 1.6252,4.766903,1.2648,4.07924 +L 1.2648,4.07924,0.9215,3.382908 +L 0.9215,3.382908,0.5849,2.669459 +L 4.3991,0,4.3991,2.84896 +L 4.3991,2.84896,4.3991,5.680911 +L 4.3991,5.680911,4.3991,8.504325 +L 4.3991,8.504325,5.3766,8.504325 +L 5.3766,8.504325,6.3605,8.504325 +L 6.3605,8.504325,7.3625,8.504325 +L 7.3625,8.504325,7.3625,5.680911 +L 7.3625,5.680911,7.3625,2.84896 +L 7.3625,2.84896,7.3625,0 +L 7.3625,0,6.3605,0 +L 6.3605,0,5.3766,0 +L 5.3766,0,4.3991,0 +L 4.7949,3.203495,5.4992,3.203495 +L 5.4992,3.203495,6.2067,3.203495 +L 6.2067,3.203495,6.9317,3.203495 +L 3.1207,4.233085,2.3435,5.043815 +L 2.3435,5.043815,1.8987,5.7359 +L 1.8987,5.7359,1.4119,6.902697 +L 1.4119,6.902697,1.1313,6.902697 +L 1.1313,6.902697,0.862,6.902697 +L 0.862,6.902697,0.5849,6.902697 +L 4.7949,5.834756,5.4992,5.834756 +L 5.4992,5.834756,6.2067,5.834756 +L 6.2067,5.834756,6.9317,5.834756 +L 2.263,6.902697,1.9614,7.337527 +L 1.9614,7.337527,1.8493,7.891265 +L 1.8493,7.891265,1.8357,9.03823 + +[談] 32 +L 3.7605,0,4.8809,1.524114 +L 4.8809,1.524114,5.4977,2.836264 +L 5.4977,2.836264,5.6798,4.766903 +L 7.361,0,6.9337,0.723191 +L 6.9337,0.723191,6.5134,1.437997 +L 6.5134,1.437997,6.1103,2.135642 +L 3.9703,2.669459,4.1037,3.039712 +L 4.1037,3.039712,4.2473,3.392716 +L 4.2473,3.392716,4.4014,3.737182 +L 6.9614,2.669459,7.084,3.039712 +L 7.084,3.039712,7.2174,3.392716 +L 7.2174,3.392716,7.361,3.737182 +L 3.7605,4.766903,4.7829,6.136974 +L 4.7829,6.136974,5.4483,7.363051 +L 5.4483,7.363051,5.6798,9.03823 +L 7.361,4.766903,6.9337,5.49029 +L 6.9337,5.49029,6.5134,6.20479 +L 6.5134,6.20479,6.1103,6.902697 +L 3.9703,7.436515,4.1037,7.806592 +L 4.1037,7.806592,4.2473,8.159772 +L 4.2473,8.159772,4.4014,8.504325 +L 6.9614,7.436515,7.084,7.806592 +L 7.084,7.806592,7.2174,8.159772 +L 7.2174,8.159772,7.361,8.504325 +L 0.5838,6.902522,3.1157,6.902522 +L 1.0142,8.504325,2.6954,8.504325 +L 1.0142,5.300939,2.6954,5.300939 +L 1.0142,4.233041,2.6954,4.233041 +L 1.0142,2.669547,2.6954,2.669547 +L 1.0142,0,1.0142,2.669547 +L 2.6954,0,1.0142,0 +L 2.6954,2.669547,2.6954,0 + +[急] 36 +L 0.6173,0.266996,0.7465,0.904092 +L 0.7465,0.904092,0.8901,1.524114 +L 0.8901,1.524114,1.0446,2.135642 +L 3.1531,0,2.8484,0.43507 +L 2.8484,0.43507,2.7359,0.988808 +L 2.7359,0.988808,2.7223,2.135642 +L 3.5734,0,4.407,0 +L 4.407,0,5.2545,0 +L 5.2545,0,6.1091,0 +L 6.1091,0,6.1091,0.370012 +L 6.1091,0.370012,6.1091,0.723191 +L 6.1091,0.723191,6.1091,1.067788 +L 7.818,0.800814,7.5241,1.257096 +L 7.5241,1.257096,7.2369,1.70484 +L 7.2369,1.70484,6.9634,2.135642 +L 1.4719,3.203495,3.1531,3.203495 +L 3.1531,3.203495,4.8343,3.203495 +L 4.8343,3.203495,6.5361,3.203495 +L 6.5361,3.203495,6.5361,3.735912 +L 6.5361,3.735912,6.5361,4.259966 +L 6.5361,4.259966,6.5361,4.766903 +L 6.5361,4.766903,4.8343,4.766903 +L 4.8343,4.766903,3.1531,4.766903 +L 3.1531,4.766903,1.4719,4.766903 +L 6.5361,5.300895,6.5361,5.670973 +L 6.5361,5.670973,6.5361,6.024151 +L 6.5361,6.024151,6.5361,6.368836 +L 6.5361,6.368836,2.9426,6.388582 +L 2.9426,6.388582,1.4054,6.526797 +L 1.4054,6.526797,0.6173,6.902697 +L 4.8584,6.902697,4.9884,7.169541 +L 4.9884,7.169541,5.132,7.436515 +L 5.132,7.436515,5.2822,7.703533 +L 5.2822,7.703533,3.1531,7.871607 +L 3.1531,7.871607,2.1619,7.80239 +L 2.1619,7.80239,1.4719,7.436515 + +[発] 45 +L 0.8291,0,1.6031,0.904092 +L 1.6031,0.904092,2.3877,1.791 +L 2.3877,1.791,3.1792,2.669459 +L 3.1792,2.669459,2.815,3.04536 +L 2.815,3.04536,2.2619,3.183575 +L 2.2619,3.183575,1.0431,3.203495 +L 5.2842,0,4.549,1.492986 +L 4.549,1.492986,3.6314,3.808062 +L 3.6314,3.808062,3.1792,5.300895 +L 3.1792,5.300895,1.9464,5.28115 +L 1.9464,5.28115,1.2809,5.142716 +L 1.2809,5.142716,0.6158,4.766903 +L 5.7115,0,6.2723,0 +L 6.2723,0,6.8428,0 +L 6.8428,0,7.4211,0 +L 7.4211,0,7.4211,0.370012 +L 7.4211,0.370012,7.4211,0.723191 +L 7.4211,0.723191,7.4211,1.067788 +L 5.2842,3.203495,4.983,3.637011 +L 4.983,3.637011,4.8713,4.180855 +L 4.8713,4.180855,4.8569,5.300895 +L 4.8569,5.300895,4.4331,5.300895 +L 4.4331,5.300895,4.0128,5.300895 +L 4.0128,5.300895,3.61,5.300895 +L 5.7115,3.203495,6.1427,3.203495 +L 6.1427,3.203495,6.5661,3.203495 +L 6.5661,3.203495,6.9938,3.203495 +L 6.9938,4.766903,6.6961,5.137024 +L 6.6961,5.137024,6.4124,5.49029 +L 6.4124,5.49029,6.1427,5.834756 +L 6.1427,5.834756,5.8415,5.670973 +L 5.8415,5.670973,5.5613,5.49029 +L 5.5613,5.49029,5.2842,5.300895 +L 2.3215,6.10173,2.0304,6.558012 +L 2.0304,6.558012,1.7467,7.005669 +L 1.7467,7.005669,1.4704,7.436515 +L 2.7519,6.368836,3.1792,7.005669 +L 3.1792,7.005669,3.61,7.625692 +L 3.61,7.625692,4.0303,8.237307 +L 4.0303,8.237307,3.029,8.340367 +L 3.029,8.340367,2.0304,8.426614 +L 2.0304,8.426614,1.0431,8.504325 +L 5.7115,6.368836,5.2842,6.902697 +L 5.2842,6.902697,4.8569,7.436515 +L 4.8569,7.436515,4.4331,7.970288 + +[局] 33 +L 5.7419,0,7.2056,0.967443 +L 7.2056,0.967443,7.5001,3.113045 +L 7.5001,3.113045,7.4157,5.300895 +L 7.4157,5.300895,5.5909,5.300895 +L 5.5909,5.300895,3.7595,5.300895 +L 3.7595,5.300895,1.9274,5.300895 +L 1.9274,5.300895,1.8048,3.573529 +L 1.8048,3.573529,1.402,2.21055 +L 1.402,2.21055,0.649,0.533796 +L 3.1812,2.135642,3.1812,2.669459 +L 3.1812,2.669459,3.1812,3.203495 +L 3.1812,3.203495,3.1812,3.737182 +L 3.1812,3.737182,4.0323,3.737182 +L 4.0323,3.737182,4.8908,3.737182 +L 4.8908,3.737182,5.7419,3.737182 +L 5.7419,3.737182,5.7419,3.203495 +L 5.7419,3.203495,5.7419,2.669459 +L 5.7419,2.669459,5.7419,2.135642 +L 5.7419,2.135642,4.8908,2.135642 +L 4.8908,2.135642,4.0323,2.135642 +L 4.0323,2.135642,3.1812,2.135642 +L 1.9274,5.834756,1.9274,6.738739 +L 1.9274,6.738739,1.9274,7.625692 +L 1.9274,7.625692,1.9274,8.504325 +L 1.9274,8.504325,3.6085,8.504325 +L 3.6085,8.504325,5.2936,8.504325 +L 5.2936,8.504325,6.9958,8.504325 +L 6.9958,8.504325,6.9958,7.970288 +L 6.9958,7.970288,6.9958,7.436515 +L 6.9958,7.436515,6.9958,6.902697 +L 6.9958,6.902697,5.4372,6.902697 +L 5.4372,6.902697,3.8887,6.902697 +L 3.8887,6.902697,2.3585,6.902697 + +[路] 54 +L 1.1066,0,1.1066,1.60038 +L 1.1066,1.60038,1.1066,3.192069 +L 1.1066,3.192069,1.1066,4.766903 +L 1.5021,0,1.8033,0.572104 +L 1.8033,0.572104,1.9157,2.084812 +L 1.9157,2.084812,1.9332,5.834756 +L 1.9332,5.834756,1.653,5.834756 +L 1.653,5.834756,1.3795,5.834756 +L 1.3795,5.834756,1.1066,5.834756 +L 1.1066,5.834756,1.1066,6.738739 +L 1.1066,6.738739,1.1066,7.625692 +L 1.1066,7.625692,1.1066,8.504325 +L 1.1066,8.504325,1.6565,8.504325 +L 1.6565,8.504325,2.2131,8.504325 +L 2.2131,8.504325,2.7843,8.504325 +L 2.7843,8.504325,2.6334,7.625692 +L 2.6334,7.625692,2.4866,6.738739 +L 2.4866,6.738739,2.3532,5.834756 +L 4.49,0,4.49,1.067788 +L 4.49,1.067788,4.49,2.135642 +L 4.49,2.135642,4.49,3.203495 +L 4.49,3.203495,4.1993,3.392716 +L 4.1993,3.392716,3.9118,3.573529 +L 3.9118,3.573529,3.6389,3.737182 +L 4.917,0,5.6213,0 +L 5.6213,0,6.3214,0 +L 6.3214,0,7.0219,0 +L 7.0219,0,7.0219,1.067788 +L 7.0219,1.067788,7.0219,2.135642 +L 7.0219,2.135642,7.0219,3.203495 +L 7.0219,3.203495,6.3214,3.203495 +L 6.3214,3.203495,5.6213,3.203495 +L 5.6213,3.203495,4.917,3.203495 +L 2.3532,0.533796,2.6334,0.723191 +L 2.6334,0.723191,2.9136,0.904092 +L 2.9136,0.904092,3.2081,1.067788 +L 7.4527,3.737182,6.8752,4.269817 +L 6.8752,4.269817,6.3043,4.793915 +L 6.3043,4.793915,5.7439,5.300895 +L 5.7439,5.300895,5.3166,4.956254 +L 5.3166,4.956254,4.8994,4.60325 +L 4.8994,4.60325,4.49,4.233085 +L 5.3166,6.10173,5.0991,6.368836 +L 5.0991,6.368836,4.8994,6.63568 +L 4.8994,6.63568,4.7072,6.902697 +L 4.7072,6.902697,4.49,6.738739 +L 4.49,6.738739,4.276,6.558012 +L 4.276,6.558012,4.0627,6.368836 +L 6.1712,5.834756,6.444,6.471808 +L 6.444,6.471808,6.7242,7.091917 +L 6.7242,7.091917,7.0219,7.703533 +L 7.0219,7.703533,6.3214,7.625692 +L 6.3214,7.625692,5.6213,7.53953 +L 5.6213,7.53953,4.917,7.436515 + +[注] 29 +L 0.6813,0.266996,1.1016,1.437997 +L 1.1016,1.437997,1.5324,2.59188 +L 1.5324,2.59188,1.9597,3.737182 +L 2.814,0.533796,3.6476,0.533796 +L 3.6476,0.533796,4.4917,0.533796 +L 4.4917,0.533796,5.3463,0.533796 +L 5.3463,0.533796,5.3151,2.669459 +L 5.3151,2.669459,4.9049,3.559344 +L 4.9049,3.559344,3.6686,3.737182 +L 5.7736,0.533796,6.4744,0.533796 +L 6.4744,0.533796,7.8785,0.533796 +L 5.7736,3.737182,5.4723,4.185102 +L 5.4723,4.185102,5.3606,5.005682 +L 5.3606,5.005682,5.3463,6.902697 +L 5.3463,6.902697,4.6461,6.902697 +L 4.6461,6.902697,3.9421,6.902697 +L 3.9421,6.902697,3.2413,6.902697 +L 6.2009,3.737182,7.0558,3.737182 +L 1.5324,5.834756,1.2379,6.20479 +L 1.2379,6.20479,0.9542,6.558012 +L 0.9542,6.558012,0.6813,6.902697 +L 5.7736,6.902697,6.3308,6.902697 +L 6.3308,6.902697,7.4796,6.902697 +L 1.9597,7.970288,1.6617,8.340367 +L 1.6617,8.340367,1.3815,8.693588 +L 1.3815,8.693588,1.1016,9.03823 +L 5.7736,7.970288,5.4762,8.340367 +L 5.4762,8.340367,5.1925,8.693588 +L 5.1925,8.693588,4.9225,9.03823 + +[意] 32 +L 0.7075,0,0.9846,0.533796 +L 0.9846,0.533796,1.2682,1.067788 +L 1.2682,1.067788,1.5656,1.60178 +L 3.2398,0,2.9421,0.43507 +L 2.9421,0.43507,2.8303,0.988808 +L 2.8303,0.988808,2.8125,2.135642 +L 3.6706,0,5.8039,0 +L 5.8039,0,5.8039,1.067788 +L 7.4851,0.800814,7.3306,1.067788 +L 7.3306,1.067788,7.187,1.334806 +L 7.187,1.334806,7.0543,1.60178 +L 1.9894,3.203495,1.9894,5.300895 +L 1.9894,5.300895,6.1958,5.300895 +L 6.1958,5.300895,6.1958,3.203495 +L 6.1958,3.203495,1.9894,3.203495 +L 2.3855,4.233085,5.8039,4.233085 +L 0.7075,6.368836,1.4118,6.471808 +L 1.4118,6.471808,2.112,6.558012 +L 2.112,6.558012,2.8125,6.63568 +L 2.8125,6.63568,2.4836,7.397112 +L 2.4836,7.397112,2.1614,7.742979 +L 2.1614,7.742979,1.5656,7.970288 +L 3.2398,6.368836,3.9441,6.471808 +L 3.9441,6.471808,4.6548,6.558012 +L 4.6548,6.558012,5.3801,6.63568 +L 5.3801,6.63568,5.5094,7.005669 +L 5.5094,7.005669,5.6495,7.358892 +L 5.6495,7.358892,5.8039,7.703533 +L 5.8039,7.703533,4.7984,7.806592 +L 4.7984,7.806592,3.8005,7.892841 +L 3.8005,7.892841,2.8125,7.970288 +L 5.8039,6.368836,7.4851,6.368836 + +[由] 17 +L 1.1333,0,1.1333,6.902697 +L 1.1333,6.902697,2.902,6.854582 +L 2.902,6.854582,3.8477,7.281181 +L 3.8477,7.281181,4.1279,9.03823 +L 1.5641,0,4.1279,0 +L 4.1279,0,4.0617,2.782588 +L 4.0617,2.782588,3.4313,3.674969 +L 3.4313,3.674969,1.5641,3.737182 +L 4.5552,0,7.084,0 +L 7.084,0,7.084,3.737182 +L 7.084,3.737182,5.2872,3.755701 +L 5.2872,3.755701,4.5202,3.884241 +L 4.5202,3.884241,4.1279,4.233085 +L 4.1279,4.233085,4.317,6.484461 +L 4.317,6.484461,5.1681,6.990302 +L 5.1681,6.990302,7.084,6.902697 +L 7.084,6.902697,7.084,4.233085 + +[取] 25 +L 3.7026,0,3.7026,2.135642 +L 3.7026,2.135642,2.7012,1.791 +L 2.7012,1.791,1.7171,1.437997 +L 1.7171,1.437997,0.7399,1.067788 +L 4.5537,0,5.1109,0.723191 +L 5.1109,0.723191,5.6818,1.437997 +L 5.6818,1.437997,6.2594,2.135642 +L 6.2594,2.135642,5.5239,3.933625 +L 5.5239,3.933625,5.1071,5.740234 +L 5.1071,5.740234,4.981,7.436515 +L 4.981,7.436515,7.5133,7.436515 +L 7.5133,7.436515,7.4821,5.836201 +L 7.4821,5.836201,7.2681,4.600317 +L 7.2681,4.600317,6.6905,2.669459 +L 7.9371,0,7.5133,0.533796 +L 7.5133,0.533796,7.0933,1.067788 +L 7.0933,1.067788,6.6905,1.60178 +L 1.5945,2.135642,1.5945,8.504325 +L 1.5945,8.504325,0.7399,8.504325 +L 3.7026,2.669459,3.7026,4.233085 +L 3.7026,4.233085,2.0218,4.233085 +L 3.7026,4.766903,3.7026,6.368836 +L 3.7026,6.368836,2.0218,6.368836 +L 3.7026,6.902697,3.7026,8.504325 +L 3.7026,8.504325,2.0218,8.504325 + +[服] 24 +L 0.7695,0.266996,1.0708,1.105921 +L 1.0708,1.105921,1.1793,3.241497 +L 1.1793,3.241497,1.1968,8.504325 +L 1.1968,8.504325,2.8745,8.504325 +L 2.8745,8.504325,2.8745,0 +L 2.8745,0,2.0203,0 +L 4.5841,0,4.5841,8.504325 +L 4.5841,8.504325,7.5436,8.504325 +L 7.5436,8.504325,7.5436,6.368836 +L 7.5436,6.368836,6.6925,6.368836 +L 5.4387,0,5.8449,0.533796 +L 5.8449,0.533796,6.2652,1.067788 +L 6.2652,1.067788,6.6925,1.60178 +L 6.6925,1.60178,6.0901,2.786791 +L 6.0901,2.786791,5.866,3.607372 +L 5.866,3.607372,5.8341,4.766903 +L 5.8341,4.766903,5.0114,4.766903 +L 7.9709,0,7.1163,1.067788 +L 7.1163,2.402616,7.4137,3.024038 +L 7.4137,3.024038,7.5261,3.637011 +L 7.5261,3.637011,7.5436,4.766903 +L 7.5436,4.766903,6.2652,4.766903 +L 1.628,3.737182,2.4507,3.737182 +L 1.628,6.368836,2.4507,6.368836 + +[具] 13 +L 1.4128,0,1.9028,0.370012 +L 1.9028,0.370012,2.3932,0.723191 +L 2.3932,0.723191,2.9084,1.067788 +L 7.1495,0,6.7222,0.370012 +L 6.7222,0.370012,6.2918,0.723191 +L 6.2918,0.723191,5.8645,1.067788 +L 0.768,2.135642,8.0006,2.135642 +L 2.0499,3.737182,2.0499,8.504325 +L 2.0499,8.504325,6.7222,8.504325 +L 6.7222,8.504325,6.7222,3.737182 +L 6.7222,3.737182,2.0499,3.737182 +L 2.4772,5.300895,6.2918,5.300895 +L 2.4772,6.902697,6.2918,6.902697 + +[銀] 44 +L 0.8019,0,2.0835,0 +L 2.0835,0,2.1574,2.286816 +L 2.1574,2.286816,1.9469,4.056518 +L 1.9469,4.056518,0.8019,4.766903 +L 3.7615,0,4.6157,0 +L 4.6157,0,4.6157,8.504325 +L 4.6157,8.504325,7.5718,8.504325 +L 7.5718,8.504325,7.5718,5.300895 +L 7.5718,5.300895,6.3214,5.300895 +L 6.3214,5.300895,6.3389,3.805129 +L 6.3389,3.805129,6.4405,3.122939 +L 6.4405,3.122939,6.7176,2.669459 +L 6.7176,2.669459,7.148,3.201963 +L 7.148,3.201963,7.5718,3.726017 +L 7.5718,3.726017,8.0026,4.233085 +L 5.0395,0,5.4703,0.370012 +L 5.4703,0.370012,5.8976,0.723191 +L 5.8976,0.723191,6.3214,1.067788 +L 8.0026,0,7.5718,0.723191 +L 7.5718,0.723191,7.148,1.437997 +L 7.148,1.437997,6.7176,2.135642 +L 2.6964,0.533796,2.9069,0.723191 +L 2.9069,0.723191,3.1167,0.904092 +L 3.1167,0.904092,3.3342,1.067788 +L 1.2257,1.86858,1.0783,2.324905 +L 1.0783,2.324905,0.9312,2.772738 +L 0.9312,2.772738,0.8019,3.203495 +L 2.9069,2.402616,3.0361,2.858811 +L 3.0361,2.858811,3.1832,3.306555 +L 3.1832,3.306555,3.3342,3.737182 +L 2.5076,4.766903,2.206,5.182206 +L 2.206,5.182206,2.1013,5.59764 +L 2.1013,5.59764,2.0835,6.368836 +L 2.0835,6.368836,1.4635,6.388582 +L 1.4635,6.388582,1.1343,6.526797 +L 1.1343,6.526797,0.8019,6.902697 +L 0.8019,6.902697,1.2257,7.625692 +L 1.2257,7.625692,1.6565,8.340367 +L 1.6565,8.340367,2.0835,9.03823 +L 2.0835,9.03823,2.4866,8.504325 +L 2.4866,8.504325,2.9069,7.970288 +L 2.9069,7.970288,3.3342,7.436515 +L 5.0395,5.300895,5.8976,5.300895 +L 5.0395,6.902697,7.148,6.902697 + +[品] 12 +L 2.5093,8.504325,2.5093,5.834756 +L 2.5093,5.834756,6.3234,5.834756 +L 6.3234,5.834756,6.3234,8.504325 +L 6.3234,8.504325,2.5093,8.504325 +L 1.2589,3.737182,1.2589,0 +L 1.2589,0,3.7912,0 +L 3.7912,0,3.7912,3.737182 +L 3.7912,3.737182,1.2589,3.737182 +L 5.0734,3.737182,5.0734,0 +L 5.0734,0,7.6057,0 +L 7.6057,0,7.6057,3.737182 +L 7.6057,3.737182,5.0734,3.737182 + +[期] 29 +L 0.8301,0,2.1158,1.601693 +L 4.6446,0,4.2208,0.533796 +L 4.2208,0.533796,3.8005,1.067788 +L 3.8005,1.067788,3.3977,1.60178 +L 6.3538,0,7.6353,0 +L 7.6353,0,7.6353,3.203495 +L 7.6353,3.203495,5.5027,3.203495 +L 5.5027,3.203495,5.4848,2.036654 +L 5.4848,2.036654,5.3766,1.344701 +L 5.3766,1.344701,5.0719,0.533796 +L 0.8301,2.669459,1.6885,2.669459 +L 1.6885,2.669459,1.6885,6.902697 +L 1.6885,6.902697,1.1071,7.272512 +L 1.1071,7.2726,0.8301,7.436515 +L 2.1158,2.669459,3.7932,2.669459 +L 3.7932,2.669459,3.7932,4.233085 +L 3.7932,4.233085,2.1158,4.233085 +L 5.5027,3.737182,5.5027,8.504325 +L 5.5027,8.504325,7.6353,8.504325 +L 7.6353,8.504325,7.6353,3.737182 +L 3.7932,4.766903,3.7932,5.834756 +L 3.7932,5.834756,2.1158,5.834756 +L 5.9297,5.834756,7.208,5.834756 +L 3.7932,6.63568,2.8829,7.5042 +L 2.8829,7.5042,2.0489,7.78803 +L 2.0489,7.78803,1.6885,9.03823 +L 4.2208,7.436515,3.9196,7.851775 +L 3.9196,7.851775,3.8072,8.267034 +L 3.8072,8.267034,3.7932,9.03823 + +[感] 45 +L 0.864,0,1.1403,0.533796 +L 1.1403,0.533796,1.4205,1.067788 +L 1.4205,1.067788,1.7151,1.60178 +L 3.3962,0,3.095,0.43507 +L 3.095,0.43507,2.9864,0.988808 +L 2.9864,0.988808,2.9689,2.135642 +L 3.82,0,6.3523,0 +L 6.3523,0,6.3523,1.067788 +L 8.0611,0.800814,7.9109,1.067788 +L 7.9109,1.067788,7.7673,1.334806 +L 7.7673,1.334806,7.6338,1.60178 +L 0.864,2.936477,1.1613,3.656756 +L 1.1613,3.656756,1.2734,4.961945 +L 1.2734,4.961945,1.2878,7.970288 +L 1.2878,7.970288,4.6778,7.970288 +L 4.6778,7.970288,4.8112,8.340367 +L 4.8112,8.340367,4.9513,8.693588 +L 4.9513,8.693588,5.1016,9.03823 +L 7.6338,2.669459,7.126,3.201963 +L 7.126,3.201963,6.6325,3.726017 +L 6.6325,3.726017,6.1422,4.233085 +L 6.1422,4.233085,5.7849,3.889801 +L 5.7849,3.889801,5.4417,3.546736 +L 5.4417,3.546736,5.1016,3.203495 +L 8.0611,2.669459,8.0611,4.233085 +L 2.5416,4.233085,2.5416,5.834756 +L 2.5416,5.834756,4.2505,5.834756 +L 4.2505,5.834756,4.2505,4.233085 +L 4.2505,4.233085,2.5416,4.233085 +L 6.3523,4.766903,5.7604,5.814923 +L 5.7604,5.814923,5.4347,6.74443 +L 5.4347,6.74443,5.1016,7.436515 +L 5.1016,7.436515,4.7096,7.060702 +L 4.7096,7.060702,3.9426,6.922398 +L 3.9426,6.922398,2.1455,6.902697 +L 6.7827,5.56787,6.9127,6.024151 +L 6.9127,6.024151,7.0563,6.471808 +L 7.0563,6.471808,7.21,6.902697 +L 5.5289,7.970288,5.9387,8.07361 +L 5.9387,8.07361,6.3523,8.159772 +L 6.3523,8.159772,6.7827,8.237307 +L 6.7827,8.237307,6.6325,8.504325 +L 6.6325,8.504325,6.485,8.7713 +L 6.485,8.7713,6.3523,9.03823 +L 7.21,7.970288,8.0611,7.970288 + +[悲] 29 +L 0.8625,0.266996,0.985,0.904092 +L 0.985,0.904092,1.1178,1.524114 +L 1.1178,1.524114,1.2579,2.135642 +L 3.3947,0,3.0935,0.454728 +L 3.0935,0.454728,2.9849,1.146856 +L 2.9849,1.146856,2.9674,2.669459 +L 3.8252,0,6.3575,0 +L 6.3575,0,6.3575,1.067788 +L 8.0631,0.800814,7.7658,1.257096 +L 7.7658,1.257096,7.4856,1.70484 +L 7.4856,1.70484,7.2085,2.135642 +L 5.0724,2.402616,4.9288,2.669459 +L 4.9288,2.669459,4.7989,2.936477 +L 4.7989,2.936477,4.6763,3.203495 +L 0.8625,3.203495,1.9342,3.627074 +L 1.9342,3.627074,2.5923,4.10183 +L 2.5923,4.10183,3.3947,5.03392 +L 3.3947,5.03392,2.6378,5.083349 +L 2.6378,5.083349,1.8848,4.895618 +L 1.8848,4.895618,0.8625,4.766903 +L 5.4997,3.737182,5.4997,9.03823 +L 5.927,4.766903,8.0631,4.766903 +L 3.3947,6.10173,2.6729,6.20479 +L 2.6729,6.20479,1.9619,6.29095 +L 1.9619,6.29095,1.2579,6.368836 +L 5.927,6.368836,7.6358,6.368836 +L 3.3947,6.902697,3.3947,7.970288 +L 3.3947,7.970288,0.8625,7.970288 +L 5.927,7.970288,8.0631,7.970288 + +[代] 11 +L 7.6378,0,6.5031,1.826288 +L 6.5031,1.826288,5.5227,3.856002 +L 5.5227,3.856002,5.1056,5.834756 +L 5.1056,5.834756,3.0006,5.834756 +L 8.0616,0,8.0616,1.60178 +L 5.1056,6.368836,5.1056,9.03823 +L 5.5294,6.368836,8.0616,6.368836 +L 7.2389,7.436515,6.6642,8.159772 +L 6.6607,8.159772,6.384,8.504325 +L 1.7156,0,1.7156,6.597502 +A -5.8112,10.627729,8.540417,321.41046,349.01228 + +[曲] 7 +L 1.2903,6.902697,1.2903,0 +L 1.2903,0,7.6363,0 +L 7.6363,0,7.6363,6.902697 +L 7.6363,6.902697,1.2903,6.902697 +L 3.3952,9.03823,3.3952,0 +L 5.5314,9.03823,5.5314,0 +L 7.6363,3.451349,1.2903,3.451349 + +[集] 37 +L 4.2798,0,4.1954,0.723191 +L 4.1954,0.723191,4.1289,1.437997 +L 4.1289,1.437997,4.0662,2.135642 +L 4.0662,2.135642,0.865,0.533883 +L 6.8121,0.533796,4.7383,2.053597 +L 4.7383,2.053597,3.0957,2.522619 +L 3.0957,2.522619,0.865,2.669459 +L 5.1026,2.669459,7.6632,2.669459 +L 4.2798,3.470514,4.1289,3.735912 +L 4.1289,3.735912,3.9821,3.992904 +L 3.9821,3.992904,3.8522,4.233085 +L 3.8522,4.233085,1.716,4.233085 +L 1.716,4.233085,1.6985,6.131414 +L 1.6985,6.131414,1.5935,6.961933 +L 1.5935,6.961933,1.2887,7.436515 +L 1.2887,7.436515,1.1413,7.2726 +L 1.1413,7.2726,0.9942,7.091917 +L 0.9942,7.091917,0.865,6.902697 +L 4.6788,4.233085,3.8035,5.137024 +L 3.8035,5.137024,3.1202,5.337758 +L 3.1202,5.337758,2.1433,5.300895 +L 5.1026,4.233085,7.2429,4.233085 +L 4.6788,5.300895,3.8035,6.20479 +L 3.8035,6.20479,3.1202,6.40535 +L 3.1202,6.40535,2.1433,6.368836 +L 5.1026,5.300895,6.3845,5.300895 +L 4.6788,6.368836,3.4879,7.30942 +L 3.4879,7.30942,2.5216,7.512737 +L 2.5216,7.512737,1.716,7.970288 +L 1.716,7.970288,1.8453,8.340367 +L 1.8453,8.340367,1.9927,8.693588 +L 1.9927,8.693588,2.1433,9.03823 +L 5.1026,6.368836,6.3845,6.368836 +L 4.6788,7.436515,4.4126,7.851775 +L 4.4126,7.851775,4.4126,8.267034 +L 4.4126,8.267034,4.6788,9.03823 +L 5.1026,7.436515,6.8121,7.436515 + +# kan_08 ------------------------------------------------------- +# 重軽苦港階放横向平両橋族配歯実調礼進美反対表全第委界漢岸宮球級去君係血庫湖幸根祭坂皿死詩守州拾助勝昭 + +[重] 37 +L 4.2449,6.864346,6.7768,6.864346 +L 3.8176,3.165056,2.9346,4.069126 +L 3.6631,7.131277,3.523,7.398251 +L 3.523,7.398251,3.3938,7.665115 +L 3.3938,7.665115,2.5353,7.768328 +L 2.5353,7.768328,1.6916,7.854554 +L 1.6916,7.854554,0.8615,7.932024 +L 2.2376,4.269773,1.2534,4.233041 +L 2.9346,4.069126,2.2376,4.269773 +L 3.8176,6.864346,3.6631,7.131277 +L 4.0274,7.932024,4.5317,8.307903 +L 4.5317,8.307903,5.0186,8.446163 +L 5.0186,8.446163,5.9187,8.466083 +L 4.427,5.122927,5.9187,4.766815 +L 3.7685,5.122927,4.427,5.122927 +L 5.9187,4.233041,4.427,4.252786 +L 5.9187,3.165056,5.9187,4.233041 +L 4.2449,3.165056,5.9187,3.165056 +L 4.427,4.252786,3.7685,4.39109 +L 3.7685,4.39109,3.3938,4.766815 +L 3.3938,4.766815,3.7685,5.122927 +L 4.2449,1.563472,5.9187,1.563472 +L 2.9731,1.473087,1.9889,1.692056 +L 1.9889,1.692056,0.8615,1.563472 +L 3.3938,0,2.9731,1.473087 +L 0.0034,0,3.3938,0 +L 2.9626,6.864346,0.0034,6.864346 +L 3.8176,0,6.7768,0 +L 3.8176,1.563472,3.523,2.097465 +L 3.523,2.097465,3.2358,2.631195 +L 3.2358,2.631195,2.9626,3.165056 +L 0.8615,5.300742,2.9626,5.300742 +L 0.8615,3.165056,0.8615,5.300742 +L 2.9626,3.165056,0.8615,3.165056 +L 2.9626,5.300742,3.2502,5.86711 +L 3.2502,5.86711,3.2502,6.27254 +L 3.2502,6.27254,2.9626,6.864346 + +[軽] 31 +L 3.6021,4.233041,4.0928,4.765545 +L 4.7614,2.432124,3.8157,2.631195 +L 4.5898,5.289381,5.0976,5.796557 +L 5.0976,5.796557,4.4987,6.963377 +L 4.4987,6.963377,4.2749,7.655374 +L 4.947,8.38835,5.658,8.302211 +L 4.2465,8.466083,4.947,8.38835 +L 4.2749,7.655374,4.2465,8.466083 +L 2.9926,0,5.0976,0 +L 5.802,6.967624,5.5249,6.330572 +L 5.9557,4.956254,5.5249,5.300742 +L 6.376,8.199195,6.0818,7.58758 +L 6.0818,7.58758,5.802,6.967624 +L 5.658,8.302211,6.376,8.199195 +L 5.5249,2.631195,5.2241,3.046542 +L 5.2241,3.046542,5.1155,3.461801 +L 5.1155,3.461801,5.0976,4.233041 +L 6.376,4.603053,5.9557,4.956254 +L 6.8068,4.233041,6.376,4.603053 +L 5.5249,0,7.2341,0 +L 5.0976,0,5.0696,1.648232 +L 5.0696,1.648232,4.7614,2.432124 +L 4.0928,4.765545,4.5898,5.289381 +L 1.501,8.999944,1.501,0 +L 2.9926,7.932024,0.0019,7.932024 +L 2.9926,1.563472,0.0019,1.563472 +L 0.2187,6.330572,0.2187,3.165056 +L 2.779,6.330572,0.2187,6.330572 +L 2.779,4.766815,0.2187,4.766815 +L 0.2187,3.165056,2.779,3.165056 +L 2.779,6.330572,2.779,3.165056 + +[苦] 9 +L 0.0351,7.932199,7.2361,7.932199 +L 4.7038,9.000075,4.7038,7.169496 +L 2.5989,9.000075,2.5989,7.169496 +L 6.8057,5.300742,0.0351,5.300742 +L 3.4184,6.864346,3.4184,3.165056 +L 1.3135,3.165056,1.3135,0 +L 1.3135,0,5.5549,0 +L 5.5549,0,5.5549,3.165056 +L 5.5549,3.165056,1.3135,3.165056 + +[港] 16 +L 1.3155,7.970333,0.4924,8.999835 +L 0.8882,5.834603,0.0616,6.902391 +L 1.3155,3.470448,0.0616,-0.000022 +L 3.666,8.999944,3.666,5.99994 +L 5.4659,8.999944,5.4659,5.99994 +L 7.2626,5.99994,1.8689,5.99994 +L 3.666,5.99994,1.8689,2.882233 +L 5.4659,5.99994,7.2626,2.882365 +L 3.666,4.499972,5.4659,4.499972 +L 5.4659,4.499972,5.4659,3.000003 +L 5.4659,3.000003,2.7658,3.000003 +L 7.2626,1.499947,7.2626,-0.000022 +L 2.7658,3.000003,2.7658,1.999966 +L 7.2626,-0.000022,3.2663,-0.000022 +L 1.8689,7.499996,7.2626,7.499996 +A 7.014,1.999966,4.249821,180,208.07389 + +[階] 26 +L 0.0639,8.466083,1.7731,8.466083 +L 0.0639,0,0.0639,8.466083 +L 7.2615,5.300742,7.2615,6.330572 +L 6.0146,5.300742,7.2615,5.300742 +L 5.587,5.300742,5.587,8.999944 +L 6.2283,7.398251,6.5641,7.58758 +L 6.5641,7.58758,6.9074,7.768328 +L 6.9074,7.768328,7.2615,7.932024 +L 3.0547,5.300742,3.0547,8.999944 +L 2.2004,5.300742,3.0547,5.300742 +L 1.7731,8.466083,1.3245,6.097396 +L 3.447,7.398251,4.7359,7.398251 +L 4.1159,5.778126,4.7359,5.796557 +L 3.7832,5.649739,4.1159,5.778126 +L 3.447,5.300742,3.7832,5.649739 +L 6.4419,2.097465,3.447,2.097465 +L 6.4419,0,6.4419,2.097465 +L 3.447,0,6.4419,0 +L 3.0547,0,3.0547,3.699136 +L 3.0547,3.699136,3.9517,3.916682 +L 3.9517,3.916682,4.386,4.193485 +L 4.386,4.193485,4.7359,4.766815 +L 6.4419,3.699136,4.7359,3.699136 +L 6.4419,2.631195,6.4419,3.699136 +L 1.3245,6.097396,1.7731,2.631195 +L 1.7731,2.631195,0.0639,1.563604 + +[放] 25 +L 1.7751,6.864346,1.7751,8.999944 +L 4.0444,5.480264,3.9043,5.300742 +L 4.1848,5.642559,4.0444,5.480264 +L 4.3354,5.796557,4.1848,5.642559 +L 4.6682,4.973,4.3354,5.796557 +L 4.9939,3.658048,4.6682,4.973 +L 5.5855,2.097465,4.9939,3.658048 +L 5.0181,1.409605,5.5855,2.097465 +L 4.458,0.713296,5.0181,1.409605 +L 3.9043,0,4.458,0.713296 +L 1.3794,0,2.1989,0 +L 5.0391,6.519683,4.3354,6.330572 +L 5.7396,6.700474,5.0391,6.519683 +L 6.4404,6.864346,5.7396,6.700474 +L 6.3283,4.834762,6.4404,6.864346 +L 6.1213,3.618668,6.3283,4.834762 +L 6.0166,2.631195,6.1213,3.618668 +L 6.4404,1.056405,6.0166,1.563472 +L 6.8674,0.532394,6.4404,1.056405 +L 7.2947,0,6.8674,0.532394 +L 4.7624,7.398251,4.7624,8.999944 +L 3.4843,6.864346,0.094,6.864346 +L 3.0532,4.766815,1.2568,4.766815 +A -17.6533,6.864346,19.026682,338.85229,0 +A -10.6729,4.766815,13.726938,339.68025,0 + +[横] 37 +L 6.4736,6.330572,7.3247,6.330572 +L 6.4736,7.932024,6.3198,8.302211 +L 6.3198,8.302211,6.1762,8.655368 +L 6.1762,8.655368,6.0428,8.999944 +L 5.833,6.330572,5.7661,7.799456 +L 5.7661,7.799456,5.0691,7.861537 +L 5.0691,7.861537,4.3371,6.864346 +L 4.1238,8.655368,4.3371,8.999944 +L 3.9168,8.302211,4.1238,8.655368 +L 3.728,7.932024,3.9168,8.302211 +L 3.5105,4.766815,4.5161,4.841724 +L 4.5161,4.841724,5.0376,5.264076 +L 5.0376,5.264076,5.1882,6.330572 +L 5.1882,6.330572,3.0867,6.330572 +L 3.5105,2.097465,3.5105,4.766815 +L 3.9417,2.097465,5.1882,2.097465 +L 5.1882,2.097465,5.0481,3.292304 +L 5.0481,3.292304,4.6281,3.67359 +L 4.6281,3.67359,3.9417,3.699136 +L 3.9802,0.686349,4.3371,1.029721 +L 3.6331,0.34324,3.9802,0.686349 +L 3.2969,0,3.6331,0.34324 +L 5.5388,3.857294,5.1882,4.233041 +L 5.9836,3.718881,5.5388,3.857294 +L 6.8977,3.699136,5.9836,3.718881 +L 6.8977,2.097465,6.8977,3.699136 +L 5.6193,2.097465,6.8977,2.097465 +L 5.5388,4.588846,5.9836,4.588846 +L 5.9836,4.588846,6.8977,4.233041 +L 7.0273,0.34324,6.7468,0.686349 +L 7.3247,0,7.0273,0.34324 +L 6.7468,0.686349,6.4736,1.029721 +L 5.1882,4.233041,5.5388,4.588846 +L 1.3775,0,1.3775,9.000075 +L 1.3775,5.150093,0.096,3.165209 +L 2.2009,4.500059,1.3775,6.048362 +L 2.2009,6.902697,0.096,6.902697 + +[向] 14 +L 0.5529,0,0.5529,7.398251 +L 0.5529,7.398251,1.3865,7.501376 +L 1.3865,7.501376,2.2341,7.58758 +L 2.2341,7.58758,3.0852,7.665115 +L 3.0852,7.665115,3.3622,8.121463 +L 3.3622,8.121463,3.6421,8.569121 +L 3.6421,8.569121,3.9363,8.999944 +L 6.8994,7.398251,3.5164,7.398251 +L 6.8994,0,6.8994,7.398251 +L 5.6455,0,6.8994,0 +L 5.2217,2.631195,2.2621,2.631195 +L 2.2621,2.631195,2.2621,5.300742 +L 2.2621,5.300742,5.2217,5.300742 +L 5.2217,5.300742,5.2217,2.631195 + +[平] 13 +L 3.5425,0,3.3569,3.043828 +L 3.9733,3.699136,3.669,4.231684 +L 4.3936,3.699136,6.9294,3.699136 +L 3.9733,8.466083,6.5056,8.466083 +L 3.56,5.467502,3.5425,8.466083 +L 3.669,4.231684,3.56,5.467502 +L 5.2202,4.766815,5.4969,5.480264 +L 5.4969,5.480264,5.7809,6.17653 +L 5.7809,6.17653,6.0751,6.864346 +L 3.5425,8.466083,0.583,8.466083 +L 1.8337,5.033855,1.0103,6.864346 +L 3.3569,3.043828,2.4182,3.782385 +L 2.4182,3.782385,0.1592,3.699136 + +[両] 15 +L 3.5725,2.097465,5.2537,2.097465 +L 5.2537,2.097465,5.2537,4.766815 +L 5.2537,0,6.5325,0 +L 6.5325,0,6.5325,6.330572 +L 6.5325,6.330572,4.1123,6.173574 +L 4.1123,6.173574,3.513,5.076212 +L 3.513,5.076212,3.5725,2.097465 +L 2.291,2.097465,3.1421,2.097465 +L 1.8672,2.097465,1.8672,4.766815 +L 0.585,6.330572,2.3467,6.282413 +L 0.585,0,0.585,6.330572 +L 3.5725,8.466083,0.1577,8.466083 +L 3.2959,6.708968,3.5725,8.466083 +L 2.3467,6.282413,3.2959,6.708968 +L 3.9683,8.466083,6.9629,8.466083 + +[橋] 34 +L 2.9966,5.480264,2.7164,5.300742 +L 3.2768,5.642559,2.9966,5.480264 +L 3.5749,5.796557,3.2768,5.642559 +L 3.7041,5.556508,3.5749,5.796557 +L 3.8477,5.299406,3.7041,5.556508 +L 4.0022,5.033855,3.8477,5.299406 +L 5.3223,5.771186,4.0859,6.457602 +L 6.1348,5.033855,5.3223,5.771186 +L 5.5573,4.956254,6.1348,5.033855 +L 4.986,4.870028,5.5573,4.956254 +L 4.426,4.766815,4.986,4.870028 +L 5.4449,6.730202,4.426,6.864346 +L 6.1072,6.426627,5.4449,6.730202 +L 6.9614,5.300742,6.1072,6.426627 +L 6.9614,3.165056,6.9614,0 +L 6.9614,0,6.1348,0 +L 5.711,1.029721,4.426,1.029721 +L 4.426,1.029721,4.426,2.097465 +L 4.426,2.097465,5.711,2.097465 +L 5.711,2.097465,5.711,1.029721 +L 3.1476,3.165056,6.9614,3.165056 +L 3.1476,0,3.1476,3.165056 +L 4.0859,6.457602,3.1476,6.864346 +L 4.426,7.768328,4.0022,7.854554 +L 4.8564,7.665115,4.426,7.768328 +L 5.2802,7.932024,5.613,8.307903 +L 5.613,8.307903,5.939,8.446163 +L 5.939,8.446163,6.531,8.466083 +L 6.531,6.864346,7.3887,6.864346 +L 4.0022,7.854554,3.5749,7.932024 +L 1.4699,0,1.4699,9.000075 +L 1.4699,5.150093,0.1915,3.165209 +L 2.2965,4.500059,1.4699,6.048362 +L 2.2965,6.902697,0.1915,6.902697 + +[族] 28 +L 3.6046,7.131277,3.7345,7.768328 +L 3.7345,7.768328,3.8816,8.38835 +L 3.8816,8.38835,4.0319,8.999944 +L 4.4592,7.398251,7.4191,7.398251 +L 5.7095,5.300742,6.9918,5.300742 +L 5.2857,5.300742,4.386,5.083393 +L 4.386,5.083393,3.9513,4.806524 +L 3.9513,4.806524,3.6046,4.233041 +L 4.3716,3.145574,3.1738,3.165056 +L 4.9215,3.007074,4.3716,3.145574 +L 5.2857,2.631195,4.9215,3.007074 +L 4.6451,1.754225,5.2857,2.631195 +L 4.0144,0.876992,4.6451,1.754225 +L 3.3913,0,4.0144,0.876992 +L 2.109,0.370012,2.323,0.533861 +L 6.5641,0.713296,6.1368,1.409605 +L 6.1368,1.409605,5.7095,2.097465 +L 5.7095,3.165056,5.4083,3.600323 +L 5.4083,3.600323,5.2998,4.153929 +L 5.2998,4.153929,5.2857,5.300742 +L 6.1368,3.165056,7.4191,3.165056 +L 6.9918,0,6.5641,0.713296 +L 1.8957,7.131277,1.8957,9.266896 +L 1.4996,0.26693,2.323,0.26693 +L 3.6046,7.131277,0.2177,7.131277 +L 3.1738,5.033745,1.3844,5.033745 +A -17.5292,7.131277,19.026682,338.85229,0 +A -10.552,5.033745,13.726938,339.68025,0 + +[配] 28 +L 3.2111,0,3.2111,2.097465 +L 3.2111,2.097465,0.647,2.097465 +L 0.9626,4.104435,0.647,3.165056 +L 1.1832,5.391171,0.9626,4.104435 +L 1.5016,6.330572,1.1832,5.391171 +L 1.8028,5.877136,1.5016,6.330572 +L 1.9079,5.194814,1.8028,5.877136 +L 1.9219,3.699136,1.9079,5.194814 +L 3.2111,3.699136,1.9219,3.699136 +L 3.2111,2.631195,3.2111,3.699136 +L 3.2111,4.233041,3.2111,6.330572 +L 3.2111,6.330572,2.3527,6.330572 +L 2.3527,6.330572,2.062,7.053609 +L 2.062,7.053609,1.5016,8.466083 +L 1.0708,8.466083,0.2165,8.466083 +L 0.861,5.940574,1.0708,8.466083 +L 0.4649,3.008387,0.861,5.940574 +L 0.2165,0,0.4649,3.008387 +L 0.647,0,3.2111,0 +L 4.5841,0.552271,4.4717,1.926633 +L 4.4717,1.926633,4.4577,5.300742 +L 4.4577,5.300742,7.0215,5.300742 +L 7.0215,5.300742,7.0215,8.466083 +L 7.0215,8.466083,4.4577,8.466083 +L 2.3527,8.466083,3.6031,8.466083 +L 6.1672,0,7.4176,0 +L 7.4176,0,7.4176,1.563472 +L 4.885,0,4.5841,0.552271 + +[歯] 22 +L 4.0607,7.932024,6.1657,7.932024 +L 4.0607,6.330572,7.02,6.330572 +L 6.5962,0,6.5962,5.300742 +L 1.1047,0,6.5962,0 +L 0.6774,0,0.6774,5.300742 +L 0.2501,6.330572,1.5285,6.330572 +L 1.5285,6.330572,1.5285,8.466083 +L 1.9274,6.330572,3.6369,6.330572 +L 3.6369,6.330572,3.6369,8.999944 +L 4.4912,3.699136,5.7419,3.699136 +L 5.3423,1.563472,4.0782,3.142531 +L 3.6369,4.956254,3.6369,5.300742 +L 3.6369,4.603053,3.6369,4.956254 +L 3.6369,4.233041,3.6369,4.603053 +L 3.486,2.467565,3.4194,3.165056 +L 3.5529,1.752714,3.486,2.467565 +L 3.6369,1.029721,3.5529,1.752714 +L 3.4194,3.165056,2.7823,2.631195 +L 2.7823,2.631195,2.148,2.097465 +L 2.148,2.097465,1.5285,1.563472 +L 3.1046,3.56902,1.5285,3.699136 +L 4.0782,3.142531,3.1046,3.56902 + +[実] 25 +L 3.6631,7.932024,3.6631,8.999944 +L 0.2797,7.932024,3.6631,7.932024 +L 0.2797,6.330572,0.2797,7.932024 +L 1.2569,2.553528,0.2797,2.631195 +L 2.2415,2.467565,1.2569,2.553528 +L 3.2393,2.364352,2.2415,2.467565 +L 2.1364,1.056405,3.2393,2.364352 +L 1.3658,0.443432,2.1364,1.056405 +L 0.2797,0,1.3658,0.443432 +L 7.0538,7.932024,4.0939,7.932024 +L 7.0538,6.330572,7.0538,7.932024 +L 4.4897,2.631195,7.0538,2.631195 +L 4.4897,4.233041,5.7681,4.233041 +L 4.4897,5.796557,6.1989,5.796557 +L 4.0939,5.796557,3.9433,6.166679 +L 3.9433,6.166679,3.793,6.519683 +L 3.793,6.519683,3.6631,6.864346 +L 3.793,4.765545,3.5128,5.289381 +L 4.0939,4.233041,3.793,4.765545 +L 4.6862,1.732904,3.9156,2.83044 +L 6.1989,0,4.6862,1.732904 +L 3.5128,5.289381,3.2393,5.796557 +L 3.2393,5.796557,1.1032,5.796557 +L 3.2393,4.233041,1.534,4.233041 +L 3.9156,2.83044,3.2393,4.233041 + +[調] 41 +L 7.0485,0,6.7788,0 +L 6.7788,0,6.5021,0 +L 6.5021,0,6.2292,0 +L 6.2292,2.286663,6.2292,1.563472 +L 6.2292,3.00136,6.2292,2.286663 +L 6.2292,3.699136,6.2292,3.00136 +L 5.651,3.699136,6.2292,3.699136 +L 5.0766,3.699136,5.651,3.699136 +L 4.5236,3.699136,5.0766,3.699136 +L 4.5236,3.00136,4.5236,3.699136 +L 4.5236,2.286663,4.5236,3.00136 +L 4.5236,1.563472,4.5236,2.286663 +L 5.0766,1.563472,4.5236,1.563472 +L 5.651,1.563472,5.0766,1.563472 +L 6.2292,1.563472,5.651,1.563472 +L 7.0485,5.644047,7.0485,2.822035 +L 7.0485,8.466083,7.0485,5.644047 +L 5.9277,8.466083,7.0485,8.466083 +L 4.7932,8.466083,5.9277,8.466083 +L 3.6651,8.466083,4.7932,8.466083 +L 3.6826,5.620012,3.6651,8.466083 +L 3.5075,3.036735,3.6826,5.620012 +L 2.8105,0.26693,3.5075,3.036735 +L 4.5236,5.300742,4.7932,5.300742 +L 4.7932,5.300742,5.0766,5.300742 +L 5.0766,5.300742,5.3746,5.300742 +L 5.3746,5.300742,5.3746,5.833224 +L 5.3746,5.833224,5.3746,6.357344 +L 5.3746,6.357344,5.3746,6.864346 +L 5.3746,6.864346,5.0766,6.864346 +L 5.0766,6.864346,4.7932,6.864346 +L 4.7932,6.864346,4.5236,6.864346 +L 7.0485,2.822035,7.0485,0 +L 0.2817,6.902522,2.814,6.902522 +L 0.7024,8.504347,2.3836,8.504347 +L 0.7024,5.300983,2.3836,5.300983 +L 0.7024,4.233041,2.3836,4.233041 +L 0.7024,2.669547,2.3836,2.669547 +L 0.7024,0,0.7024,2.669547 +L 2.3836,0,0.7024,0 +L 2.3836,2.669547,2.3836,0 + +[礼] 27 +L 1.5621,0,1.5485,2.622898 +L 1.5485,2.622898,1.443,3.720348 +L 1.443,3.720348,1.1593,4.233041 +L 1.1593,4.233041,0.8686,3.888334 +L 0.8686,3.888334,0.5849,3.535243 +L 0.5849,3.535243,0.3083,3.165056 +L 1.9859,4.233041,1.5621,4.766815 +L 2.4171,3.699136,1.9859,4.233041 +L 2.8405,3.165056,2.4171,3.699136 +L 2.4171,6.357344,2.8405,7.131277 +L 1.9859,5.566424,2.4171,6.357344 +L 1.5621,4.766815,1.9859,5.566424 +L 1.5621,7.932024,1.5621,8.302211 +L 1.5621,8.302211,1.5621,8.655368 +L 1.5621,8.655368,1.5621,8.999944 +L 1.9894,7.234314,1.1422,7.320518 +L 2.8405,7.131277,1.9894,7.234314 +L 1.1422,7.320518,0.3083,7.398251 +L 4.9914,3.022506,4.9805,8.999944 +L 5.0965,0.689326,4.9914,3.022506 +L 5.3766,0,5.0965,0.689326 +L 5.8004,0,6.357,0 +L 6.357,0,6.9317,0 +L 6.9317,0,7.5058,0 +L 7.5058,0,7.5058,0.532394 +L 7.5058,0.532394,7.5058,1.056405 +L 7.5058,1.056405,7.5058,1.563472 + +[進] 60 +L 6.6847,7.398251,7.1124,7.398251 +L 6.2574,7.398251,6.6847,7.398251 +L 5.8336,7.398251,5.5464,7.813685 +L 5.5464,7.813685,5.5464,8.228748 +L 5.5464,8.228748,5.8336,8.999944 +L 5.8336,5.796557,5.5363,6.330572 +L 5.5363,6.330572,5.2561,6.864346 +L 5.2561,6.864346,4.979,7.398251 +L 4.979,7.398251,4.405,7.501376 +L 4.405,7.501376,3.8512,7.58758 +L 3.8512,7.58758,3.2978,7.665115 +L 3.2978,7.665115,3.4313,8.121463 +L 3.4313,8.121463,3.5749,8.569121 +L 3.5749,8.569121,3.7286,8.999944 +L 4.1314,5.796557,3.7286,5.796557 +L 4.5517,5.796557,4.1314,5.796557 +L 4.979,5.796557,4.5517,5.796557 +L 5.2561,5.289381,4.979,5.796557 +L 5.5363,4.765545,5.2561,5.289381 +L 5.8336,4.233041,5.5363,4.765545 +L 6.2574,4.233041,6.5341,4.233041 +L 6.5341,4.233041,6.8147,4.233041 +L 6.8147,4.233041,7.1124,4.233041 +L 6.8147,5.796557,7.1124,5.796557 +L 6.5341,5.796557,6.8147,5.796557 +L 6.2574,5.796557,6.5341,5.796557 +L 7.1124,7.398251,7.5432,7.398251 +L 6.9614,2.097465,7.5432,2.097465 +L 6.394,2.097465,6.9614,2.097465 +L 5.8336,2.097465,6.394,2.097465 +L 4.8354,2.097465,5.4063,2.097465 +L 4.275,2.097465,4.8354,2.097465 +L 3.7286,2.097465,4.275,2.097465 +L 3.2978,2.097465,3.2173,3.697669 +L 3.2173,3.697669,3.1511,5.289381 +L 3.1511,5.289381,3.088,6.864346 +L 3.088,6.864346,2.874,6.700474 +L 2.874,6.700474,2.6569,6.519683 +L 2.6569,6.519683,2.4436,6.330572 +L 1.5925,7.398251,1.2944,7.768328 +L 1.2944,7.768328,1.0142,8.121463 +L 1.0142,8.121463,0.734,8.466083 +L 1.1652,4.766815,0.734,4.766815 +L 1.5925,4.766815,1.1652,4.766815 +L 1.5925,3.535243,1.5925,4.766815 +L 1.5925,2.286663,1.5925,3.535243 +L 1.5925,1.029721,1.5925,2.286663 +L 1.2247,0.686349,1.5925,1.029721 +L 0.8671,0.34324,1.2247,0.686349 +L 0.5239,0,0.8671,0.34324 +L 2.2926,0.370012,2.0198,0.533861 +L 2.5728,0.189198,2.2926,0.370012 +L 2.874,0,2.5728,0.189198 +L 3.2978,0,4.7023,0 +L 4.7023,0,6.1138,0 +L 6.1138,0,7.5432,0 +L 5.4063,2.097465,5.2662,3.718881 +L 5.2662,3.718881,4.7584,4.213296 +L 4.7584,4.213296,3.7286,4.233041 +L 0.734,4.766815,0.3141,4.766815 + +[美] 42 +L 0.3403,0,1.4474,0.443432 +L 1.4474,0.443432,2.2144,1.056405 +L 2.2144,1.056405,3.2963,2.364352 +L 3.2963,2.364352,2.302,2.467565 +L 2.302,2.467565,1.3175,2.553528 +L 1.3175,2.553528,0.3403,2.631195 +L 1.3175,4.233041,0.3403,4.233041 +L 2.302,4.233041,1.3175,4.233041 +L 3.2963,4.233041,2.302,4.233041 +L 3.9797,2.83044,3.2963,4.233041 +L 4.7569,1.732904,3.9797,2.83044 +L 6.2913,0,4.7569,1.732904 +L 5.4157,2.631195,6.2594,2.631195 +L 4.5821,2.631195,5.4157,2.631195 +L 4.5821,4.233041,5.4157,4.233041 +L 5.4157,4.233041,6.2594,4.233041 +L 6.2594,4.233041,7.1179,4.233041 +L 6.2594,2.631195,7.1179,2.631195 +L 5.713,5.796557,6.2913,5.796557 +L 5.1421,5.796557,5.713,5.796557 +L 4.5821,5.796557,5.1421,5.796557 +L 4.1544,5.796557,3.8536,6.211664 +L 3.8536,6.211664,3.7412,6.626967 +L 3.7412,6.626967,3.7271,7.398251 +L 3.7271,7.398251,2.7324,7.398251 +L 2.7324,7.398251,1.7448,7.398251 +L 1.7448,7.398251,0.7711,7.398251 +L 1.8957,5.796557,1.1914,5.796557 +L 2.5958,5.796557,1.8957,5.796557 +L 3.2963,5.796557,2.5958,5.796557 +L 3.5734,5.289381,3.2963,5.796557 +L 3.8571,4.765545,3.5734,5.289381 +L 4.1544,4.233041,3.8571,4.765545 +L 4.3684,7.398251,4.5821,7.932024 +L 4.5821,7.932024,4.7954,8.466083 +L 4.7954,8.466083,5.0094,8.999944 +L 5.0094,7.398251,5.5593,7.398251 +L 5.5593,7.398251,6.1158,7.398251 +L 6.1158,7.398251,6.6867,7.398251 +L 2.8725,8.199195,2.7223,8.466083 +L 2.7223,8.466083,2.5787,8.732948 +L 2.5787,8.732948,2.4452,8.999944 + +[反] 24 +L 1.2179,5.637042,1.1934,8.466083 +L 1.0606,3.045228,1.2179,5.637042 +L 0.3703,0.26693,1.0606,3.045228 +L 1.1934,8.466083,3.1758,8.466083 +L 2.1814,5.796557,1.6207,5.796557 +L 2.752,5.796557,2.1814,5.796557 +L 3.3302,5.796557,2.752,5.796557 +L 3.4108,4.506999,3.3302,5.796557 +L 3.7785,3.488595,3.4108,4.506999 +L 4.6118,2.097465,3.7785,3.488595 +L 3.8206,1.409605,4.6118,2.097465 +L 3.0357,0.713296,3.8206,1.409605 +L 2.262,0,3.0357,0.713296 +L 5.5679,1.056405,5.0079,1.563472 +L 6.1388,0.532394,5.5679,1.056405 +L 6.7167,0,6.1388,0.532394 +L 5.9112,4.172252,6.2404,4.99292 +L 6.2404,4.99292,6.2863,5.796557 +L 6.2863,5.796557,5.4352,5.796557 +L 5.4352,5.796557,4.5911,5.796557 +L 4.5911,5.796557,3.761,5.796557 +L 3.1758,8.466083,5.1651,8.466083 +L 5.1651,8.466083,7.144,8.466083 +L 5.0079,2.631195,5.9112,4.172252 + +[対] 30 +L 6.7433,0,6.8557,4.04798 +L 6.3233,0,6.7433,0 +L 5.8922,0,6.3233,0 +L 5.4649,0,5.8922,0 +L 5.4649,3.165056,5.1671,3.535243 +L 5.1671,3.535243,4.8873,3.888334 +L 4.8873,3.888334,4.6138,4.233041 +L 6.3965,5.892678,4.1833,6.330572 +L 6.8557,4.04798,6.3965,5.892678 +L 7.1744,6.330572,6.8732,6.785191 +L 6.8732,6.785191,6.7608,7.477363 +L 6.7608,7.477363,6.7433,8.999944 +L 0.9292,7.398251,1.5036,7.398251 +L 1.5036,7.398251,2.0783,7.398251 +L 2.0783,7.398251,2.0783,7.932024 +L 2.0783,7.932024,2.0783,8.466083 +L 2.0783,8.466083,2.0783,8.999944 +L 2.5088,7.398251,2.9116,7.398251 +L 2.9116,7.398251,3.3322,7.398251 +L 3.3322,7.398251,3.7595,7.398251 +L 2.7364,4.850217,2.9326,6.330572 +L 2.6384,3.844597,2.7364,4.850217 +L 3.3599,1.830491,2.6384,3.844597 +L 1.574,2.425229,2.0188,3.384113 +L 2.0188,3.384113,2.0783,4.233041 +L 2.0783,4.233041,1.6545,4.765545 +L 1.6545,4.765545,1.2237,5.289381 +L 1.2237,5.289381,0.7999,5.796557 +L 0.3726,7.398251,0.9292,7.398251 +L 0.3726,0.533861,1.574,2.425229 + +[表] 48 +L 6.3215,4.766815,7.1726,4.766815 +L 5.4777,4.766815,6.3215,4.766815 +L 4.6441,4.766815,5.4777,4.766815 +L 4.2165,4.500015,3.586,4.450544 +L 3.586,4.450544,3.1377,4.104435 +L 3.1377,4.104435,2.5073,3.165056 +L 2.2936,2.631195,1.653,2.286663 +L 1.653,2.286663,1.0226,1.933638 +L 1.0226,1.933638,0.4023,1.563472 +L 0.4023,4.766815,1.2324,4.766815 +L 1.2324,4.766815,2.0835,4.766815 +L 2.0835,4.766815,2.9346,4.766815 +L 3.3619,6.330572,2.6617,6.330572 +L 3.4918,6.090304,3.3619,6.330572 +L 3.6354,5.833224,3.4918,6.090304 +L 3.7857,5.56776,3.6354,5.833224 +L 4.2165,6.330572,3.9226,6.864346 +L 4.6441,6.330572,5.194,6.330572 +L 5.194,6.330572,5.7471,6.330572 +L 5.7471,6.330572,6.318,6.330572 +L 5.3443,7.932024,6.0451,7.932024 +L 4.6441,7.932024,5.3443,7.932024 +L 4.2165,7.932024,4.0627,8.302211 +L 4.0627,8.302211,3.9226,8.655368 +L 3.9226,8.655368,3.7857,8.999944 +L 3.9226,6.864346,3.6354,7.398251 +L 3.6354,7.398251,3.3619,7.932024 +L 3.3619,7.932024,2.5073,7.932024 +L 2.5073,7.932024,1.6632,7.932024 +L 1.6632,7.932024,0.8296,7.932024 +L 1.9609,6.330572,1.2569,6.330572 +L 2.6617,6.330572,1.9609,6.330572 +L 2.3532,1.943445,2.2936,2.631195 +L 2.4236,1.24731,2.3532,1.943445 +L 2.5073,0.533861,2.4236,1.24731 +L 2.1784,0.158201,2.5073,0.533861 +L 1.8527,0.019701,2.1784,0.158201 +L 1.2569,0,1.8527,0.019701 +L 6.7491,0,5.5338,1.742842 +L 5.5338,1.742842,4.8784,2.909508 +L 4.8784,2.909508,4.2165,4.500015 +L 3.8522,0.875722,4.2165,1.029721 +L 3.4918,0.713296,3.8522,0.875722 +L 3.1486,0.533861,3.4918,0.713296 +L 6.0451,7.932024,6.7491,7.932024 +L 6.4514,3.354473,6.7491,3.699136 +L 6.1677,3.00136,6.4514,3.354473 +L 5.898,2.631195,6.1677,3.00136 + +[全] 27 +L 2.8105,0,3.8196,0 +L 3.8196,0,3.7355,1.885479 +L 3.7355,1.885479,3.2732,2.550814 +L 3.2732,2.550814,2.11,2.631195 +L 3.8196,5.300742,2.1769,5.410916 +L 3.8336,3.778335,3.8196,5.300742 +L 3.9453,3.086098,3.8336,3.778335 +L 4.2469,2.631195,3.9453,3.086098 +L 4.6461,2.631195,4.919,2.631195 +L 4.919,2.631195,5.1992,2.631195 +L 5.1992,2.631195,5.4972,2.631195 +L 5.4412,5.319108,5.9876,5.447692 +L 5.9876,5.447692,6.355,5.796557 +L 6.355,5.796557,5.4972,6.864346 +L 5.4972,6.864346,4.6528,7.932024 +L 4.6528,7.932024,3.8196,8.999944 +L 3.8196,8.999944,3.0942,8.121463 +L 3.0942,8.121463,2.3867,7.234314 +L 2.3867,7.234314,1.6827,6.330572 +L 2.1769,5.410916,1.2032,5.521134 +L 1.2032,5.521134,0.4288,5.300742 +L 1.8161,0,2.8105,0 +L 0.8281,0,1.8161,0 +L 4.2469,0,5.0801,0 +L 5.0801,0,5.9245,0 +L 5.9245,0,6.7756,0 +L 4.2469,5.300742,5.4412,5.319108 + +[第] 57 +L 6.7776,7.932024,7.2046,7.932024 +L 6.3643,7.932024,6.7776,7.932024 +L 5.9542,7.932024,6.3643,7.932024 +L 5.9542,6.864346,5.6568,7.234314 +L 5.6568,7.234314,5.3766,7.58758 +L 5.3766,7.58758,5.1031,7.932024 +L 4.3746,8.302211,4.6723,8.999944 +L 4.0944,7.58758,4.3746,8.302211 +L 3.818,6.864346,4.0944,7.58758 +L 4.196,6.48862,3.818,6.864346 +L 4.8649,6.350318,4.196,6.48862 +L 6.3815,6.330572,4.8649,6.350318 +L 6.3815,5.82333,6.3815,6.330572 +L 6.3815,5.299406,6.3815,5.82333 +L 6.3815,4.766815,6.3815,5.299406 +L 5.6568,4.766815,6.3815,4.766815 +L 4.9493,4.766815,5.6568,4.766815 +L 4.2453,4.766815,4.9493,4.766815 +L 4.0944,4.500015,4.2453,4.766815 +L 3.9473,4.233041,4.0944,4.500015 +L 3.818,3.966045,3.9473,4.233041 +L 2.6934,4.766815,3.3943,4.766815 +L 1.9894,4.766815,2.6934,4.766815 +L 1.2893,4.766815,1.9894,4.766815 +L 1.2893,4.233041,1.2893,4.766815 +L 1.2893,3.699136,1.2893,4.233041 +L 1.2893,3.165056,1.2893,3.699136 +L 3.1207,3.165056,1.2893,3.165056 +L 4.956,3.165056,3.1207,3.165056 +L 6.8126,3.165056,4.956,3.165056 +L 6.8126,2.467565,6.8126,3.165056 +L 6.8126,1.752714,6.8126,2.467565 +L 6.8126,1.029721,6.8126,1.752714 +L 6.4761,0.680767,6.8126,1.029721 +L 6.1437,0.552271,6.4761,0.680767 +L 5.5234,0.533861,6.1437,0.552271 +L 3.818,0,3.7375,0.876992 +L 3.7375,0.876992,3.6671,1.754225 +L 3.6671,1.754225,3.6076,2.631195 +L 3.6076,2.631195,2.5397,1.943445 +L 2.5397,1.943445,1.4781,1.24731 +L 1.4781,1.24731,0.4347,0.533861 +L 2.6934,6.330572,1.9894,6.330572 +L 3.3943,6.330572,2.6934,6.330572 +L 3.6744,5.764116,3.3943,6.330572 +L 3.6744,5.358751,3.6744,5.764116 +L 3.3943,4.766815,3.6744,5.358751 +L 3.1137,7.932024,3.3943,7.932024 +L 2.8444,7.932024,3.1137,7.932024 +L 2.5673,7.932024,2.8444,7.932024 +L 2.5673,6.864346,2.2731,7.234314 +L 2.2731,7.234314,1.9894,7.58758 +L 1.9894,7.58758,1.7131,7.932024 +L 0.711,7.58758,0.9912,8.302211 +L 0.4347,6.864346,0.711,7.58758 +L 1.9894,6.330572,1.2893,6.330572 +L 0.9912,8.302211,1.2893,8.999944 + +[委] 45 +L 0.8917,0,2.1179,0.038155 +L 2.1179,0.038155,2.8884,0.305107 +L 2.8884,0.305107,3.8512,1.029721 +L 3.8512,1.029721,3.501,1.415188 +L 3.501,1.415188,3.0562,1.622817 +L 3.0562,1.622817,2.142,1.830491 +L 2.142,1.830491,2.2716,2.200525 +L 2.2716,2.200525,2.4152,2.553528 +L 2.4152,2.553528,2.5662,2.898125 +L 2.5662,2.898125,1.8653,3.00136 +L 1.8653,3.00136,1.1617,3.087521 +L 1.1617,3.087521,0.4612,3.165056 +L 1.5084,5.299406,0.4612,4.766815 +L 2.5693,5.82333,1.5084,5.299406 +L 3.6379,6.330572,2.5693,5.82333 +L 3.701,5.82333,3.6379,6.330572 +L 3.7672,5.299406,3.701,5.82333 +L 3.8512,4.766815,3.7672,5.299406 +L 3.5539,4.336057,3.8512,4.766815 +L 3.2737,3.888334,3.5539,4.336057 +L 2.9966,3.43214,3.2737,3.888334 +L 3.8267,3.268247,2.9966,3.43214 +L 4.6778,3.087521,3.8267,3.268247 +L 5.5289,2.898125,4.6778,3.087521 +L 5.2526,2.467565,5.5289,2.898125 +L 4.979,2.019689,5.2526,2.467565 +L 4.7023,1.563472,4.979,2.019689 +L 4.979,0.686349,4.275,1.029721 +L 5.6834,0.34324,4.979,0.686349 +L 6.3835,0,5.6834,0.34324 +L 6.3835,3.165056,6.8073,3.165056 +L 6.8073,3.165056,7.2349,3.165056 +L 5.9527,3.165056,6.3835,3.165056 +L 6.3835,4.766815,4.317,6.259822 +L 4.317,6.259822,2.6499,6.71895 +L 2.6499,6.71895,0.4612,6.864346 +L 2.149,7.854554,1.3154,7.932024 +L 2.9966,7.768328,2.149,7.854554 +L 3.8512,7.665115,2.9966,7.768328 +L 4.489,7.932024,4.986,8.307903 +L 4.986,8.307903,5.4767,8.446163 +L 5.4767,8.446163,6.3835,8.466083 +L 6.3835,6.864346,7.2349,6.864346 +L 5.5363,6.864346,6.3835,6.864346 +L 4.7023,6.864346,5.5363,6.864346 + +[界] 39 +L 6.2633,3.43214,7.2646,2.631195 +L 5.2612,4.233041,6.2633,3.43214 +L 4.277,5.033855,5.2612,4.233041 +L 4.9775,5.136958,4.277,5.033855 +L 5.6885,5.223228,4.9775,5.136958 +L 6.4135,5.300742,5.6885,5.223228 +L 6.4135,6.367326,6.4135,5.300742 +L 6.4135,7.425263,6.4135,6.367326 +L 6.4135,8.466083,6.4135,7.425263 +L 4.7047,8.466083,6.4135,8.466083 +L 3.006,8.466083,4.7047,8.466083 +L 1.3139,8.466083,3.006,8.466083 +L 1.3139,7.425263,1.3139,8.466083 +L 1.3139,6.367326,1.3139,7.425263 +L 1.3139,5.300742,1.3139,6.367326 +L 2.0214,5.223228,1.3139,5.300742 +L 2.7293,5.136958,2.0214,5.223228 +L 3.4543,5.033855,2.7293,5.136958 +L 2.6417,4.054985,3.4543,5.033855 +L 1.9167,3.43214,2.6417,4.054985 +L 0.6804,2.631195,1.9167,3.43214 +L 2.5997,2.097465,2.5997,2.631195 +L 2.5997,1.563472,2.5997,2.097465 +L 2.5997,1.029721,2.5997,1.563472 +L 2.2354,0.686349,2.5997,1.029721 +L 1.8747,0.34324,2.2354,0.686349 +L 1.5314,0,1.8747,0.34324 +L 5.1355,0,5.1355,0.876992 +L 5.1355,0.876992,5.1355,1.754225 +L 5.1355,1.754225,5.1355,2.631195 +L 4.7047,6.864346,5.1355,6.864346 +L 5.1355,6.864346,5.5558,6.864346 +L 5.5558,6.864346,5.9866,6.864346 +L 4.277,6.864346,4.1334,7.234314 +L 4.1334,7.234314,4.0007,7.58758 +L 4.0007,7.58758,3.8816,7.932024 +L 3.8816,5.300742,3.5313,6.706166 +L 3.5313,6.706166,2.7083,6.958933 +L 2.7083,6.958933,1.7447,6.864346 + +[漢] 54 +L 2.5978,7.932024,3.1547,7.932024 +L 3.1547,7.932024,3.7291,7.932024 +L 3.7291,7.932024,4.3039,7.932024 +L 4.3039,7.932024,4.3039,8.302211 +L 4.3039,8.302211,4.3039,8.655368 +L 4.3039,8.655368,4.3039,8.999944 +L 4.7343,7.932024,5.1616,7.932024 +L 5.1616,7.932024,5.5924,7.932024 +L 5.5924,7.932024,6.0127,7.932024 +L 6.0127,7.932024,6.0127,8.302211 +L 6.0127,8.302211,6.0127,8.655368 +L 6.0127,8.655368,6.0127,8.999944 +L 6.4089,7.932024,6.8393,7.932024 +L 6.8393,7.932024,7.2666,7.932024 +L 7.2666,7.932024,7.6939,7.932024 +L 3.4528,5.82333,3.4528,6.330572 +L 3.4528,5.299406,3.4528,5.82333 +L 3.4528,4.766815,3.4528,5.299406 +L 4.3879,4.727237,3.4528,4.766815 +L 4.941,4.450544,4.3879,4.727237 +L 5.5924,3.699136,4.941,4.450544 +L 6.0127,3.699136,6.4225,3.699136 +L 6.4225,3.699136,6.8393,3.699136 +L 6.8393,3.699136,7.2666,3.699136 +L 6.5665,2.097465,7.123,2.097465 +L 6.0127,2.097465,6.5665,2.097465 +L 7.2666,0,6.0548,1.35731 +L 7.123,2.097465,7.6939,2.097465 +L 6.0548,1.35731,5.3967,2.316434 +L 5.3967,2.316434,4.7343,3.699136 +L 4.7343,3.699136,4.1564,3.699136 +L 4.1564,3.699136,3.5855,3.699136 +L 3.5855,3.699136,3.0255,3.699136 +L 4.0128,1.933638,3.3018,2.019689 +L 4.7343,1.830491,4.0128,1.933638 +L 4.0934,1.220342,4.7343,1.830491 +L 3.4528,0.610083,4.0934,1.220342 +L 2.8115,0,3.4528,0.610083 +L 3.3018,2.019689,2.5978,2.097465 +L 3.4528,6.330572,4.5841,6.330572 +L 4.5841,6.330572,5.708,6.330572 +L 5.708,6.330572,6.8393,6.330572 +L 6.8393,6.330572,6.8393,5.82333 +L 6.8393,5.82333,6.8393,5.299406 +L 6.8393,5.299406,6.8393,4.766815 +L 6.8393,4.766815,6.4155,4.766815 +L 6.4155,4.766815,5.9952,4.766815 +L 5.9952,4.766815,5.5924,4.766815 +L 5.5924,4.766815,5.4352,5.110033 +L 5.4352,5.110033,5.2951,5.453339 +L 5.2951,5.453339,5.1616,5.796557 +L 1.7432,7.970333,0.9205,8.999835 +L 1.3194,5.834603,0.4929,6.902391 +L 1.7432,3.470448,0.4929,-0.000022 + +[岸] 36 +L 4.3409,8.466083,4.3409,8.999944 +L 4.3409,7.932024,4.3409,8.466083 +L 4.3409,7.398251,4.3409,7.932024 +L 3.6124,7.398251,4.3409,7.398251 +L 2.9049,7.398251,3.6124,7.398251 +L 2.2009,7.398251,2.9049,7.398251 +L 1.7771,7.398251,1.7771,7.768328 +L 1.7771,7.768328,1.7771,8.121463 +L 1.7771,8.121463,1.7771,8.466083 +L 1.3463,5.796557,3.4614,5.796557 +L 3.4614,5.796557,5.5909,5.796557 +L 5.5909,5.796557,7.7243,5.796557 +L 6.2918,4.233041,6.8732,4.233041 +L 5.7174,4.233041,6.2918,4.233041 +L 5.1636,4.233041,5.7174,4.233041 +L 4.7784,3.086098,4.7609,4.233041 +L 4.8834,2.532426,4.7784,3.086098 +L 5.1636,2.097465,4.8834,2.532426 +L 5.5874,2.097465,6.1482,2.097465 +L 6.1482,2.097465,6.7187,2.097465 +L 6.7187,2.097465,7.297,2.097465 +L 4.446,1.865778,3.5564,2.214622 +L 3.5564,2.214622,2.2009,2.097465 +L 1.2517,1.917921,1.395,3.726017 +L 1.395,3.726017,1.3463,5.796557 +L 0.5264,0,1.2517,1.917921 +L 6.1723,7.398251,6.8732,7.398251 +L 5.4648,7.398251,6.1723,7.398251 +L 4.7609,7.398251,5.4648,7.398251 +L 4.7609,4.233041,4.0432,4.233041 +L 4.0432,4.233041,3.3322,4.233041 +L 3.3322,4.233041,2.6314,4.233041 +L 4.7609,0,4.446,1.865778 +L 6.8732,8.121463,6.8732,8.466083 +L 6.8732,7.768328,6.8732,8.121463 +L 6.8732,7.398251,6.8732,7.768328 + +[宮] 13 +L 3.9156,7.932134,3.9156,8.999944 +L 0.5249,6.368749,0.5249,7.932134 +L 0.5249,7.932134,7.299,7.932134 +L 7.299,6.368749,7.299,7.932134 +L 5.6213,4.233041,5.6213,6.330572 +L 5.6213,6.330572,2.2344,6.330572 +L 2.2344,6.330572,2.2344,4.233041 +L 2.2344,4.233041,5.6213,4.233041 +L 6.4724,0,6.4724,2.631195 +L 6.4724,2.631195,1.3795,2.631195 +L 1.3795,2.631195,1.3795,0 +L 1.3795,0,6.4724,0 +L 3.9258,4.233041,3.4953,2.631195 + +[球] 12 +L 0.5588,8.466083,3.2556,8.466083 +L 0.9826,5.300742,2.8284,5.300742 +L 0.5588,2.097465,3.3008,2.832914 +L 1.9069,8.466083,1.9069,2.459159 +L 3.2556,7.500041,7.7559,7.500041 +L 5.5039,9.000009,5.5039,0 +L 6.8562,9.000009,7.1255,7.999993 +L 5.5039,0,4.6041,0 +L 3.9421,5.796557,5.1466,4.591517 +L 7.7559,1.500012,5.5039,5.39695 +L 3.2556,1.500012,5.5039,3.750097 +L 7.7559,5.796557,6.46,4.500015 + +[級] 63 +L 1.8357,0,1.8357,1.600182 +L 1.8357,1.600182,1.8357,3.192112 +L 1.8357,3.192112,1.8357,4.766815 +L 1.8357,4.766815,1.4119,4.766815 +L 1.4119,4.766815,0.9912,4.766815 +L 0.9912,4.766815,0.5849,4.766815 +L 3.1207,0,3.2506,0.26693 +L 3.2506,0.26693,3.3942,0.533861 +L 3.3942,0.533861,3.541,0.800923 +L 3.541,0.800923,3.2506,1.600182 +L 3.2506,1.600182,2.9669,2.391102 +L 2.9669,2.391102,2.6899,3.165056 +L 4.5812,0,5.0719,0.532394 +L 5.0719,0.532394,5.5689,1.056405 +L 5.5689,1.056405,6.0768,1.563472 +L 6.0768,1.563472,5.4607,2.987241 +L 5.4607,2.987241,5.1276,4.054985 +L 5.1276,4.054985,4.7949,4.766815 +L 4.7949,4.766815,4.5045,3.936252 +L 4.5045,3.936252,4.2874,2.749972 +L 4.2874,2.749972,3.9718,1.563472 +L 7.3625,0,7.0645,0.34324 +L 7.0645,0.34324,6.7808,0.686349 +L 6.7808,0.686349,6.5041,1.029721 +L 0.5849,1.296629,0.711,1.933638 +L 0.711,1.933638,0.841,2.553528 +L 0.841,2.553528,0.9811,3.165056 +L 6.5041,2.097465,7.1065,3.283855 +L 7.1065,3.283855,7.3271,4.114374 +L 7.3271,4.114374,7.3625,5.300742 +L 7.3625,5.300742,6.9317,5.300742 +L 6.9317,5.300742,6.5041,5.300742 +L 6.5041,5.300742,6.0768,5.300742 +L 6.0768,5.300742,6.1892,6.223222 +L 6.1892,6.223222,6.3923,7.162382 +L 6.3923,7.162382,6.5041,8.466083 +L 6.5041,8.466083,5.9265,8.466083 +L 5.9265,8.466083,5.3556,8.466083 +L 5.3556,8.466083,4.7949,8.466083 +L 4.7949,8.466083,4.7949,7.425263 +L 4.7949,7.425263,4.7949,6.367326 +L 4.7949,6.367326,4.7949,5.300742 +L 3.1207,4.500015,2.9669,4.766815 +L 2.9669,4.766815,2.8233,5.033855 +L 2.8233,5.033855,2.6899,5.300742 +L 2.6899,5.300742,2.5396,5.136958 +L 2.5396,5.136958,2.3922,4.956254 +L 2.3922,4.956254,2.263,4.766815 +L 1.4119,5.300742,1.5411,5.566424 +L 1.5411,5.566424,1.6847,5.82333 +L 1.6847,5.82333,1.8357,6.063576 +L 1.8357,6.063576,1.5411,6.433631 +L 1.5411,6.433631,1.2574,6.786744 +L 1.2574,6.786744,0.9811,7.131277 +L 0.9811,7.131277,1.2574,7.768328 +L 1.2574,7.768328,1.5411,8.38835 +L 1.5411,8.38835,1.8357,8.999944 +L 2.263,7.131277,2.3922,7.398251 +L 2.3922,7.398251,2.5396,7.665115 +L 2.5396,7.665115,2.6899,7.932024 +L 3.541,8.466083,3.8215,8.466083 +L 3.8215,8.466083,4.1017,8.466083 +L 4.1017,8.466083,4.3991,8.466083 + +[去] 27 +L 1.0142,0,1.4415,0.102972 +L 1.4415,0.102972,1.8688,0.189198 +L 1.8688,0.189198,2.2926,0.26693 +L 2.2926,0.26693,2.6989,1.600182 +L 2.6989,1.600182,3.1192,2.925138 +L 3.1192,2.925138,3.5465,4.233041 +L 3.5465,4.233041,2.5451,4.233041 +L 2.5451,4.233041,1.5606,4.233041 +L 1.5606,4.233041,0.5838,4.233041 +L 2.9059,0,3.7496,0.403876 +L 3.7496,0.403876,4.9759,0.73998 +L 4.9759,0.73998,6.5344,1.296629 +L 6.5344,1.296629,6.2399,1.752714 +L 6.2399,1.752714,5.9562,2.200525 +L 5.9562,2.200525,5.6798,2.631195 +L 3.9703,4.233041,3.7605,6.389808 +L 3.7605,6.389808,2.99,6.919378 +L 2.99,6.919378,1.4415,6.864346 +L 4.4014,4.233041,5.3751,4.233041 +L 5.3751,4.233041,6.359,4.233041 +L 6.359,4.233041,7.361,4.233041 +L 4.4014,6.864346,4.1002,7.299394 +L 4.1002,7.299394,3.9878,7.853087 +L 3.9878,7.853087,3.9703,8.999944 +L 4.8249,6.864346,5.3853,6.864346 +L 5.3853,6.864346,5.9562,6.864346 +L 5.9562,6.864346,6.5344,6.864346 + +[君] 39 +L 2.7223,0,2.7048,1.87147 +L 2.7048,1.87147,2.5958,2.692094 +L 2.5958,2.692094,2.2946,3.165056 +L 2.2946,3.165056,1.7237,2.631195 +L 1.7237,2.631195,1.1672,2.097465 +L 1.1672,2.097465,0.6173,1.563472 +L 3.1531,0,4.407,0 +L 4.407,0,5.6853,0 +L 5.6853,0,6.9634,0 +L 6.9634,0,6.9634,1.066343 +L 6.9634,1.066343,6.9634,2.124193 +L 6.9634,2.124193,6.9634,3.165056 +L 6.9634,3.165056,4.2634,3.185108 +L 4.2634,3.185108,3.1632,3.323257 +L 3.1632,3.323257,2.7223,3.699136 +L 2.7223,3.699136,3.0231,4.114374 +L 3.0231,4.114374,3.1352,4.529743 +L 3.1352,4.529743,3.1531,5.300742 +L 3.1531,5.300742,2.7223,5.300742 +L 2.7223,5.300742,2.2946,5.300742 +L 2.2946,5.300742,1.8638,5.300742 +L 3.5734,5.300742,3.069,6.790882 +L 3.069,6.790882,1.8992,7.001466 +L 1.8992,7.001466,0.6173,6.864346 +L 4.0042,5.300742,4.8343,5.300742 +L 4.8343,5.300742,5.6853,5.300742 +L 5.6853,5.300742,6.5361,5.300742 +L 6.5361,5.300742,5.7659,6.96885 +L 5.7659,6.96885,4.3439,6.975942 +L 4.3439,6.975942,3.5734,8.466083 +L 3.5734,8.466083,2.9951,8.466083 +L 2.9951,8.466083,2.4246,8.466083 +L 2.4246,8.466083,1.8638,8.466083 +L 6.9634,6.864346,6.6622,7.279649 +L 6.6622,7.279649,6.5505,7.694952 +L 6.5505,7.694952,6.5361,8.466083 +L 6.5361,8.466083,5.6853,8.466083 +L 5.6853,8.466083,4.8343,8.466083 +L 4.8343,8.466083,4.0042,8.466083 + +[係] 45 +L 1.4704,0,1.3863,1.943445 +L 1.3863,1.943445,1.3194,3.878528 +L 1.3194,3.878528,1.2564,5.796557 +L 1.2564,5.796557,1.0431,5.642559 +L 1.0431,5.642559,0.8291,5.480264 +L 0.8291,5.480264,0.6158,5.300742 +L 5.2842,0,5.2842,1.24731 +L 5.2842,1.24731,5.2842,2.477415 +L 5.2842,2.477415,5.2842,3.699136 +L 5.2842,3.699136,4.2864,3.699136 +L 4.2864,3.699136,3.3018,3.699136 +L 3.3018,3.699136,2.3215,3.699136 +L 2.7519,0.533861,3.029,1.24731 +L 3.029,1.24731,3.3127,1.943445 +L 3.3127,1.943445,3.61,2.631195 +L 7.8484,0.533861,7.5503,1.24731 +L 7.5503,1.24731,7.2701,1.943445 +L 7.2701,1.943445,6.9938,2.631195 +L 5.7115,3.699136,6.2477,4.094563 +L 6.2477,4.094563,6.8813,4.371519 +L 6.8813,4.371519,7.4211,4.766815 +L 7.4211,4.766815,7.2701,4.956254 +L 7.2701,4.956254,7.123,5.136958 +L 7.123,5.136958,6.9938,5.300742 +L 4.4331,4.233041,4.5631,4.422305 +L 4.5631,4.422305,4.7028,4.603053 +L 4.7028,4.603053,4.8569,4.766815 +L 4.8569,4.766815,4.2864,5.299406 +L 4.2864,5.299406,3.7291,5.82333 +L 3.7291,5.82333,3.1792,6.330572 +L 5.2842,5.300742,5.7115,5.833224 +L 5.7115,5.833224,6.1427,6.357344 +L 6.1427,6.357344,6.5661,6.864346 +L 1.4704,6.597283,1.7467,7.398251 +L 1.7467,7.398251,2.0304,8.199195 +L 2.0304,8.199195,2.3215,8.999944 +L 4.4331,6.330572,4.7028,6.786744 +L 4.7028,6.786744,4.9865,7.234314 +L 4.9865,7.234314,5.2842,7.665115 +L 5.2842,7.665115,4.5841,7.768328 +L 4.5841,7.768328,3.8801,7.854554 +L 3.8801,7.854554,3.1792,7.932024 +L 5.9255,7.932024,6.4124,8.121463 +L 6.4124,8.121463,6.9094,8.302211 +L 6.9094,8.302211,7.4211,8.466083 + +[血] 33 +L 0.649,0.533861,0.9225,0.533861 +L 0.9225,0.533861,1.2097,0.533861 +L 1.2097,0.533861,1.5001,0.533861 +L 1.5001,0.533861,1.5001,2.658098 +L 1.5001,2.658098,1.5001,4.765545 +L 1.5001,4.765545,1.5001,6.864346 +L 1.5001,6.864346,1.9099,6.864346 +L 1.9099,6.864346,2.3266,6.864346 +L 2.3266,6.864346,2.7504,6.864346 +L 2.7504,6.864346,3.1812,7.58758 +L 3.1812,7.58758,3.605,8.302211 +L 3.605,8.302211,4.0323,8.999944 +L 1.9274,0.533861,2.3301,0.533861 +L 2.3301,0.533861,2.7504,0.533861 +L 2.7504,0.533861,3.1812,0.533861 +L 3.1812,0.533861,3.094,5.022384 +L 3.094,5.022384,3.7626,6.646778 +L 3.7626,6.646778,6.5646,6.864346 +L 6.5646,6.864346,6.5646,4.765545 +L 6.5646,4.765545,6.5646,2.658098 +L 6.5646,2.658098,6.5646,0.533861 +L 6.5646,0.533861,6.9958,0.533861 +L 6.9958,0.533861,7.4157,0.533861 +L 7.4157,0.533861,7.8469,0.533861 +L 3.605,0.533861,4.0323,0.533861 +L 4.0323,0.533861,4.4596,0.533861 +L 4.4596,0.533861,4.8908,0.533861 +L 4.8908,0.533861,4.8908,2.477415 +L 4.8908,2.477415,4.8908,4.41241 +L 4.8908,4.41241,4.8908,6.330572 +L 5.3146,0.533861,5.5909,0.533861 +L 5.5909,0.533861,5.8746,0.533861 +L 5.8746,0.533861,6.1692,0.533861 + +[庫] 54 +L 4.917,0.26693,4.7667,0.532394 +L 4.7667,0.532394,4.6227,0.789431 +L 4.6227,0.789431,4.49,1.029721 +L 4.49,1.029721,3.7682,1.029721 +L 3.7682,1.029721,3.0607,1.029721 +L 3.0607,1.029721,2.3532,1.029721 +L 0.6793,0.800923,1.3238,3.234492 +L 1.3238,3.234492,1.5059,5.447692 +L 1.5059,5.447692,1.5021,7.932024 +L 1.5021,7.932024,2.4866,7.932024 +L 2.4866,7.932024,3.4845,7.932024 +L 3.4845,7.932024,4.49,7.932024 +L 4.49,7.932024,4.49,8.302211 +L 4.49,8.302211,4.49,8.655368 +L 4.49,8.655368,4.49,8.999944 +L 5.3166,1.029721,5.043,1.563472 +L 5.043,1.563472,4.7628,2.097465 +L 4.7628,2.097465,4.49,2.631195 +L 4.49,2.631195,3.9118,2.631195 +L 3.9118,2.631195,3.3409,2.631195 +L 3.3409,2.631195,2.7843,2.631195 +L 2.7843,2.631195,2.7843,3.354473 +L 2.7843,3.354473,2.7843,4.069126 +L 2.7843,4.069126,2.7843,4.766815 +L 2.7843,4.766815,3.9503,4.77406 +L 3.9503,4.77406,4.6686,5.128421 +L 4.6686,5.128421,4.917,6.330572 +L 4.917,6.330572,4.0627,6.330572 +L 4.0627,6.330572,3.2081,6.330572 +L 3.2081,6.330572,2.3532,6.330572 +L 5.7439,1.029721,6.3043,1.029721 +L 6.3043,1.029721,6.8752,1.029721 +L 6.8752,1.029721,7.4527,1.029721 +L 5.3166,2.631195,4.6896,3.382646 +L 4.6896,3.382646,4.1433,3.659602 +L 4.1433,3.659602,3.2081,3.699136 +L 5.7439,2.631195,6.1712,2.631195 +L 6.1712,2.631195,6.5981,2.631195 +L 6.5981,2.631195,7.0219,2.631195 +L 7.0219,2.631195,7.0219,3.00136 +L 7.0219,3.00136,7.0219,3.354473 +L 7.0219,3.354473,7.0219,3.699136 +L 7.0219,3.699136,5.8069,3.718881 +L 5.8069,3.718881,5.2605,3.857294 +L 5.2605,3.857294,4.917,4.233041 +L 4.917,4.233041,5.2605,4.588846 +L 5.2605,4.588846,5.8069,4.588846 +L 5.8069,4.588846,7.0219,4.233041 +L 5.3166,6.330572,6.0167,6.330572 +L 6.0167,6.330572,6.7242,6.330572 +L 6.7242,6.330572,7.4527,6.330572 +L 4.917,7.932024,5.8976,7.932024 +L 5.8976,7.932024,6.8787,7.932024 +L 6.8787,7.932024,7.88,7.932024 + +[湖] 36 +L 0.6813,0.26693,1.1016,1.410853 +L 1.1016,1.410853,1.5324,2.555016 +L 1.5324,2.555016,1.9597,3.699136 +L 4.9225,0,5.7774,2.728782 +L 5.7774,2.728782,5.8716,5.610074 +L 5.8716,5.610074,5.7736,8.466083 +L 5.7736,8.466083,6.3308,8.466083 +L 6.3308,8.466083,7.4796,8.466083 +L 7.4796,8.466083,7.4796,0 +L 7.4796,0,6.6285,0 +L 2.814,1.563472,2.814,2.631195 +L 2.814,2.631195,2.814,3.699136 +L 2.814,3.699136,2.814,4.766815 +L 2.814,4.766815,3.091,4.766815 +L 3.091,4.766815,3.3712,4.766815 +L 3.3712,4.766815,3.6686,4.766815 +L 3.6686,4.766815,3.5845,6.158339 +L 3.5845,6.158339,3.2203,6.744343 +L 3.2203,6.744343,2.3902,6.864346 +L 3.2413,1.563472,3.6476,1.563472 +L 3.6476,1.563472,4.0647,1.563472 +L 4.0647,1.563472,4.4917,1.563472 +L 4.4917,1.563472,4.3414,2.631195 +L 4.3414,2.631195,4.1975,3.699136 +L 4.1975,3.699136,4.0647,4.766815 +L 6.2009,3.699136,7.0558,3.699136 +L 1.5324,5.796557,1.2379,6.166679 +L 1.2379,6.166679,0.9542,6.519683 +L 0.9542,6.519683,0.6813,6.864346 +L 6.2009,6.330572,7.0558,6.330572 +L 4.0647,6.864346,3.7877,7.299394 +L 3.7877,7.299394,3.6826,7.853087 +L 3.6826,7.853087,3.6686,8.999944 +L 1.9597,7.932024,1.6617,8.302211 +L 1.6617,8.302211,1.3815,8.655368 +L 1.3815,8.655368,1.1016,8.999944 + +[幸] 28 +L 4.0944,0,3.797,1.83187 +L 3.797,1.83187,2.9351,2.197569 +L 2.9351,2.197569,1.5656,2.097465 +L 4.5217,2.097465,4.2208,2.532426 +L 4.2208,2.532426,4.1084,3.086098 +L 4.1084,3.086098,4.0944,4.233041 +L 4.0944,4.233041,1.1383,4.233041 +L 4.9493,2.097465,6.6266,2.097465 +L 4.7353,4.233041,5.1871,5.022384 +L 5.1871,5.022384,5.3556,5.566424 +L 5.3556,5.566424,5.3801,6.330572 +L 5.3801,6.330572,4.5217,6.25273 +L 4.5217,6.25273,3.6706,6.166679 +L 3.6706,6.166679,2.8125,6.063576 +L 2.8125,6.063576,2.9459,5.642559 +L 2.9459,5.642559,3.0895,5.21329 +L 3.0895,5.21329,3.2398,4.766815 +L 5.3801,4.233041,7.0543,4.233041 +L 0.7075,6.330572,2.3855,6.330572 +L 5.8039,6.330572,7.4851,6.330572 +L 4.0944,7.131277,3.9441,7.398251 +L 3.9441,7.398251,3.8005,7.665115 +L 3.8005,7.665115,3.6706,7.932024 +L 3.6706,7.932024,1.5656,7.932024 +L 4.5217,7.932024,4.3711,8.302211 +L 4.3711,8.302211,4.2243,8.655368 +L 4.2243,8.655368,4.0944,8.999944 +L 4.9493,7.932024,6.6266,7.932024 + +[根] 33 +L 1.9879,0,1.9073,1.600182 +L 1.9073,1.600182,1.8408,3.192112 +L 1.8408,3.192112,1.7781,4.766815 +L 1.7781,4.766815,1.4205,4.069126 +L 1.4205,4.069126,1.0773,3.354473 +L 1.0773,3.354473,0.7379,2.631195 +L 3.2701,0,4.1279,0 +L 4.1279,0,4.1279,8.466083 +L 4.1279,8.466083,7.084,8.466083 +L 7.084,8.466083,7.084,5.300742 +L 7.084,5.300742,5.8024,5.300742 +L 5.8024,5.300742,5.8024,3.165056 +L 5.8024,3.165056,6.0192,3.00136 +L 6.0192,3.00136,6.2329,2.820634 +L 6.2329,2.820634,6.4469,2.631195 +L 6.4469,2.631195,6.9337,3.165056 +L 6.9337,3.165056,7.4272,3.699136 +L 7.4272,3.699136,7.9421,4.233041 +L 7.9421,0,7.361,0.713296 +L 7.361,0.713296,6.7936,1.409605 +L 6.7936,1.409605,6.2329,2.097465 +L 4.7373,0.533861,5.0841,0.713296 +L 5.0841,0.713296,5.4382,0.875722 +L 5.4382,0.875722,5.8024,1.029721 +L 3.2701,4.233041,2.4996,5.042305 +L 2.4996,5.042305,2.0548,5.724407 +L 2.0548,5.724407,1.5641,6.864346 +L 1.5641,6.864346,0.7379,6.864346 +L 4.5552,5.300742,5.3786,5.300742 +L 2.4191,6.864346,2.1178,7.299394 +L 2.1178,7.299394,2.0054,7.853087 +L 2.0054,7.853087,1.9879,8.999944 +L 4.5552,6.864346,6.6602,6.864346 + +[祭] 40 +L 3.2721,0,4.1267,0 +L 4.1267,0,4.1267,3.165056 +L 4.1267,3.165056,1.1707,3.165056 +L 0.9532,0.533861,1.44,1.066343 +L 1.44,1.066343,1.9377,1.590332 +L 1.9377,1.590332,2.4487,2.097465 +L 7.5133,0.533861,6.9424,1.066343 +L 6.9424,1.066343,6.382,1.590332 +L 6.382,1.590332,5.8356,2.097465 +L 4.5537,3.165056,7.1178,3.165056 +L 0.7399,4.233041,1.1707,4.603053 +L 1.1707,4.603053,1.5945,4.956254 +L 1.5945,4.956254,2.0218,5.300742 +L 2.0218,5.300742,1.5945,5.833224 +L 1.5945,5.833224,1.1707,6.357344 +L 1.1707,6.357344,0.7399,6.864346 +L 0.7399,6.864346,1.4996,7.655374 +L 1.4996,7.655374,1.8288,8.208937 +L 1.8288,8.208937,2.0218,8.999944 +L 2.4487,4.766815,4.8444,4.786625 +L 4.8444,4.786625,5.8356,4.925126 +L 5.8356,4.925126,6.2594,5.300742 +L 6.2594,5.300742,5.6818,6.367326 +L 5.6818,6.367326,5.1109,7.425263 +L 5.1109,7.425263,4.5537,8.466083 +L 2.4487,6.063576,2.2985,6.330572 +L 2.2985,6.330572,2.151,6.597283 +L 2.151,6.597283,2.0218,6.864346 +L 2.876,6.330572,3.1496,6.786744 +L 3.1496,6.786744,3.4259,7.234314 +L 3.4259,7.234314,3.7026,7.665115 +L 3.7026,7.665115,3.2721,7.768328 +L 3.2721,7.768328,2.8519,7.854554 +L 2.8519,7.854554,2.4487,7.932024 +L 6.2594,6.330572,6.5361,6.786744 +L 6.5361,6.786744,6.8198,7.234314 +L 6.8198,7.234314,7.1178,7.665115 +L 7.1178,7.665115,6.6905,7.768328 +L 6.6905,7.768328,6.2594,7.854554 +L 6.2594,7.854554,5.8356,7.932024 + +[坂] 26 +L 2.4507,0,3.7575,2.915222 +L 3.7575,2.915222,4.1463,5.271168 +L 4.1463,5.271168,4.1603,8.466083 +L 4.1603,8.466083,7.9709,8.466083 +L 4.3736,0,4.9904,0.713296 +L 4.9904,0.713296,5.6208,1.409605 +L 5.6208,1.409605,6.2652,2.097465 +L 6.2652,2.097465,5.6838,3.302111 +L 5.6838,3.302111,5.4698,4.26128 +L 5.4698,4.26128,5.4387,5.796557 +L 5.4387,5.796557,4.5841,5.796557 +L 7.9709,0,7.5436,0.532394 +L 7.5436,0.532394,7.1163,1.056405 +L 7.1163,1.056405,6.6925,1.563472 +L 0.7695,2.631195,2.0203,2.631195 +L 2.0203,2.631195,2.0059,4.878543 +L 2.0059,4.878543,1.9043,5.83758 +L 1.9043,5.83758,1.628,6.330572 +L 1.628,6.330572,0.7695,6.330572 +L 6.6925,2.631195,7.2876,3.816468 +L 7.2876,3.816468,7.5118,4.637005 +L 7.5118,4.637005,7.5436,5.796557 +L 7.5436,5.796557,5.8341,5.796557 +L 2.4507,6.330572,2.146,6.785191 +L 2.146,6.785191,2.0378,7.477363 +L 2.0378,7.477363,2.0203,8.999944 + +[皿] 10 +L 0.768,0.533861,1.6261,0.533861 +L 1.6261,0.533861,1.6261,8.466083 +L 1.6261,8.466083,6.7222,8.466083 +L 6.7222,8.466083,6.7222,0.533861 +L 6.7222,0.533861,7.5733,0.533861 +L 2.0499,0.533861,3.3357,0.533861 +L 3.3357,0.533861,3.3357,7.932024 +L 3.7595,0.533861,5.0134,0.533861 +L 5.0134,0.533861,5.0134,7.932024 +L 5.4407,0.533861,6.2918,0.533861 + +[死] 29 +L 1.0152,0,1.7791,0.980249 +L 1.7791,0.980249,2.5493,1.943445 +L 2.5493,1.943445,3.3342,2.898125 +L 3.3342,2.898125,2.6964,3.354473 +L 2.6964,3.354473,2.0628,3.802108 +L 2.0628,3.802108,1.4425,4.233041 +L 1.4425,4.233041,1.2257,4.069126 +L 1.2257,4.069126,1.0152,3.888334 +L 1.0152,3.888334,0.8019,3.699136 +L 5.8976,0,5.5968,0.669384 +L 5.5968,0.669384,5.4843,2.864305 +L 5.4843,2.864305,5.4703,8.466083 +L 5.4703,8.466083,2.5076,8.466083 +L 2.5076,8.466083,2.4933,7.309376 +L 2.4933,7.309376,2.3815,6.686421 +L 2.3815,6.686421,2.0835,6.063576 +L 2.0835,6.063576,2.7843,5.985755 +L 2.7843,5.985755,3.4879,5.899683 +L 3.4879,5.899683,4.1884,5.796557 +L 4.1884,5.796557,4.0343,5.108742 +L 4.0343,5.108742,3.8907,4.41241 +L 3.8907,4.41241,3.7615,3.699136 +L 6.3214,0,8.0026,0 +L 8.0026,0,8.0026,1.563472 +L 6.1113,4.766815,6.5981,5.110033 +L 6.5981,5.110033,7.085,5.453339 +L 7.085,5.453339,7.5718,5.796557 +L 0.8019,8.466083,2.0835,8.466083 +L 5.8976,8.466083,8.0026,8.466083 + +[詩] 15 +L 0.8316,6.902522,3.3639,6.902522 +L 1.2589,8.504347,2.9401,8.504347 +L 1.2589,5.300983,2.9401,5.300983 +L 1.2589,4.233041,2.9401,4.233041 +L 1.2589,2.669547,2.9401,2.669547 +L 1.2589,0,1.2589,2.669547 +L 2.9401,0,1.2589,0 +L 2.9401,2.669547,2.9401,0 +L 4.2188,7.970485,7.6368,7.970485 +L 5.928,0,6.7823,0 +L 4.2188,2.669547,5.0734,1.601671 +L 5.928,8.999944,5.928,5.834756 +L 3.823,5.834756,8.0295,5.834756 +L 3.823,3.73751,8.0295,3.73751 +L 6.7823,0,6.7823,5.334781 + +[守] 15 +L 4.2208,0,5.5027,0 +L 5.5027,0,5.275,4.032372 +L 5.275,4.032372,4.0103,4.929197 +L 4.0103,4.929197,0.8301,4.766815 +L 2.9669,2.097465,2.6724,2.467565 +L 2.6724,2.467565,2.1158,3.165122 +L 5.9297,4.766815,5.6284,5.200659 +L 5.6284,5.200659,5.5167,5.744218 +L 5.5167,5.744218,5.5027,6.864346 +L 6.3538,4.766815,7.6353,4.766815 +L 0.8301,6.330572,0.8301,7.932024 +L 0.8301,7.932024,4.2208,7.932024 +L 4.2208,7.932024,4.2208,8.999944 +L 7.6353,6.330572,7.6353,7.932024 +L 7.6353,7.932024,4.6446,7.932024 + +[州] 12 +L 0.864,0,2.2751,2.951976 +L 2.2751,2.951976,2.5938,5.56498 +L 2.5938,5.56498,2.5416,8.999944 +L 7.6338,0,7.6338,8.999944 +L 5.1016,0.533861,5.1016,8.999944 +L 0.864,3.966045,1.1613,4.587555 +L 1.1613,4.587555,1.2734,5.200659 +L 1.2734,5.200659,1.2878,6.330572 +L 4.2505,3.699136,3.9528,4.576282 +L 3.9528,4.576282,3.6729,5.453339 +L 3.6729,5.453339,3.3962,6.330572 +L 6.7827,3.699136,5.96,6.330572 + +[拾] 19 +L 1.2579,0,2.1163,0 +L 2.1163,0,2.1163,3.699136 +L 2.1163,3.699136,0.8625,3.699136 +L 4.2493,0,4.2493,3.165056 +L 4.2493,3.165056,6.7812,3.165056 +L 6.7812,3.165056,6.7812,0 +L 6.7812,0,4.2493,0 +L 2.1163,4.233041,2.088,5.864286 +L 2.088,5.864286,1.7868,6.656781 +L 1.7868,6.656781,0.8625,6.864346 +L 3.3947,5.300742,4.0143,6.548008 +L 4.0143,6.548008,4.6486,7.778266 +L 4.6486,7.778266,5.2857,8.999944 +L 5.2857,8.999944,7.1245,6.547899 +L 7.1245,6.548008,8.0631,5.300742 +L 4.6763,5.796557,6.3575,5.796557 +L 2.5436,6.864346,2.2424,7.299394 +L 2.2424,7.299394,2.13,7.853087 +L 2.13,7.853087,2.1163,8.999944 + +[助] 17 +L 3.8205,0,4.9518,2.319126 +L 4.9518,2.319126,5.5612,5.028186 +L 5.5612,5.028186,4.2478,6.330572 +L 5.9567,0,6.8151,0 +L 6.8151,0,7.5646,2.090372 +L 7.5646,2.090372,7.6939,4.112951 +L 7.6939,4.112951,7.6378,6.330572 +L 7.6378,6.330572,5.9777,6.522594 +L 5.9777,6.522594,5.5227,7.307887 +L 5.5227,7.307887,5.5294,8.999944 +L 1.2918,0.533861,1.2918,8.466083 +L 1.2918,8.466083,3.3967,8.466083 +L 3.3967,8.466083,3.568,4.511223 +L 3.568,4.511223,3.2741,1.997054 +L 3.2741,1.997054,1.2918,0.533861 +L 1.7156,3.699136,3.0006,3.699136 +L 1.7156,5.796557,3.0006,5.796557 + +[勝] 40 +L 0.8595,0.26693,1.1642,1.098763 +L 1.1642,1.098763,1.2727,3.362967 +L 1.2727,3.362967,1.2903,8.999944 +L 1.2903,8.999944,2.5406,8.999944 +L 2.5406,8.999944,2.5406,0 +L 2.5406,0,1.7176,0 +L 4.0358,0,4.523,0.799325 +L 4.523,0.799325,5.02,1.590332 +L 5.02,1.590332,5.5314,2.364352 +L 5.5314,2.364352,5.1671,2.947707 +L 5.1671,2.947707,4.6141,3.29364 +L 4.6141,3.29364,3.3952,3.699136 +L 5.9275,0,7.0623,0.498596 +L 7.0623,0.498596,7.2759,1.700593 +L 7.2759,1.700593,7.2055,3.165056 +L 7.2055,3.165056,5.9275,3.165056 +L 5.9275,3.165056,5.7839,3.535243 +L 5.7839,3.535243,5.654,3.888334 +L 5.654,3.888334,5.5314,4.233041 +L 7.6363,3.699136,7.339,4.155309 +L 7.339,4.155309,7.0553,4.603053 +L 7.0553,4.603053,6.7852,5.033855 +L 6.7852,5.033855,4.6736,5.033855 +L 4.6736,5.033855,4.523,4.766815 +L 4.523,4.766815,4.3791,4.500015 +L 4.3791,4.500015,4.2495,4.233041 +L 3.3952,5.300742,4.2495,5.300742 +L 7.2055,5.300742,8.0636,5.300742 +L 5.1041,5.796557,5.1041,6.864346 +L 5.1041,6.864346,3.8225,6.864346 +L 6.3548,5.796557,6.3548,6.864346 +L 6.3548,6.864346,5.5314,6.864346 +L 5.5314,6.864346,5.5314,8.999944 +L 6.7852,6.864346,7.6363,6.864346 +L 4.2495,8.199195,4.0954,8.466083 +L 4.0954,8.466083,3.9553,8.732948 +L 3.9553,8.732948,3.8225,8.999944 +L 6.7852,7.932024,6.9117,8.302211 +L 6.9117,8.302211,7.0553,8.655368 +L 7.0553,8.655368,7.2055,8.999944 + +[昭] 18 +L 4.2798,0,4.2798,3.165056 +L 4.2798,3.165056,7.2429,3.165056 +L 7.2429,3.165056,7.2429,0 +L 7.2429,0,4.2798,0 +L 0.865,1.563472,0.865,8.466083 +L 0.865,8.466083,2.5703,8.466083 +L 2.5703,8.466083,2.5703,1.563472 +L 2.5703,1.563472,0.865,1.563472 +L 4.0662,4.766815,4.9313,6.013994 +L 4.9313,6.013994,5.3936,7.066371 +L 5.3936,7.066371,5.5334,8.466083 +L 5.5334,8.466083,3.8522,8.466083 +L 5.9537,4.766815,6.8121,4.766815 +L 6.8121,4.766815,7.4142,5.946462 +L 7.4142,5.946462,7.6348,6.905368 +L 7.6348,6.905368,7.6632,8.466083 +L 7.6632,8.466083,5.9537,8.466083 +L 1.2887,5.300742,2.1433,5.300742 + +# kan_09 ------------------------------------------------------- +# 章植申神身世整昔想息他炭柱丁帳追庭笛登湯等豆童波倍箱板皮鼻筆氷秒負福命役葉陽緑列好象低飯英静便利不児 + +[章] 27 +L 1.4636,1.771168,0.0034,1.601649 +L 0.0034,6.36877,0.8335,6.471764 +L 0.8335,6.471764,1.6846,6.557925 +L 1.6846,4.232975,5.0676,4.232975 +L 1.2534,5.300938,5.4988,5.300938 +L 3.8176,1.601649,3.5125,1.990027 +L 5.4988,3.165231,3.8176,3.165231 +L 5.4988,5.300938,5.4988,3.165231 +L 4.2449,1.601649,6.7768,1.601649 +L 3.2358,7.854466,2.5353,7.932199 +L 3.5125,1.990027,3.4074,2.395567 +L 3.4074,2.395567,3.3938,3.165231 +L 3.3938,3.165231,1.2534,3.165231 +L 1.2534,3.165231,1.2534,5.300938 +L 3.9468,7.768328,3.2358,7.854466 +L 4.6718,7.665268,3.9468,7.768328 +L 4.3216,6.930848,4.6718,7.665268 +L 3.8806,6.594678,4.3216,6.930848 +L 2.9626,6.36877,3.8806,6.594678 +L 1.7546,7.70616,0.8615,7.932199 +L 2.1921,7.370099,1.7546,7.70616 +L 2.5353,6.635613,2.1921,7.370099 +L 1.6846,6.557925,2.5353,6.635613 +L 5.0676,7.932199,5.9187,7.932199 +L 4.6718,6.36877,6.7768,6.36877 +L 3.3938,0,2.8054,1.58475 +L 2.8054,1.58475,1.4636,1.771168 + +[植] 22 +L 3.4199,0,7.2341,0 +L 2.9926,0,2.9926,6.36877 +L 3.9453,8.026853,2.9926,7.932199 +L 4.7579,7.774129,3.9453,8.026853 +L 5.0976,6.36877,4.7579,7.774129 +L 4.2465,6.36877,5.0976,6.36877 +L 4.2465,1.601649,4.2465,6.36877 +L 4.6668,1.601649,6.376,1.601649 +L 6.376,1.601649,6.376,3.165231 +L 6.376,3.165231,4.6668,3.165231 +L 6.376,4.766837,4.6668,4.766837 +L 6.376,3.699092,6.376,4.766837 +L 6.376,5.300938,6.376,6.36877 +L 6.376,6.36877,5.5249,6.36877 +L 5.5249,7.932199,5.3743,8.302342 +L 5.3743,8.302342,5.2272,8.655346 +L 5.2272,8.655346,5.0976,8.999965 +L 5.9557,7.932199,7.2341,7.932199 +L 1.2835,0,1.2835,8.999987 +L 1.2835,5.150027,0.0019,3.165165 +L 2.11,4.500037,1.2835,6.048296 +L 2.11,6.902675,0.0019,6.902675 + +[申] 17 +L 3.2678,8.655346,3.4184,8.999965 +L 3.1242,8.302342,3.2678,8.655346 +L 2.9946,7.932199,3.1242,8.302342 +L 0.4592,7.932199,2.9946,7.932199 +L 3.0262,4.357488,2.788,5.125619 +L 2.788,5.125619,0.8897,5.300938 +L 0.4592,2.631326,0.4592,7.932199 +L 3.8496,2.631326,3.0262,4.357488 +L 6.3815,7.932199,6.3815,5.834668 +L 3.6391,7.250053,6.3815,7.932199 +L 3.5064,5.983063,3.6391,7.250053 +L 6.3815,5.300938,3.5064,5.983063 +L 6.3815,2.631326,6.3815,5.300938 +L 4.2734,2.631326,6.3815,2.631326 +L 3.4184,0,3.1347,2.292354 +L 2.1894,2.754175,0.4592,2.631326 +L 3.1347,2.292354,2.1894,2.754175 + +[神] 11 +L 6.8388,6.864367,3.452,6.864367 +L 5.1296,8.999965,5.1296,0 +L 3.452,4.747814,6.8388,4.747814 +L 1.3155,5.301004,2.5974,3.699092 +L 1.3155,5.300938,1.3155,0 +L 1.3155,8.999965,1.3155,7.398338 +L 0.0616,7.398338,2.1736,7.398338 +L 3.452,6.864367,3.452,2.631326 +L 3.452,2.631326,6.8388,2.631326 +L 6.8388,2.631326,6.8388,6.864367 +A -5.4057,9.262496,7.804447,314.5328,346.18069 + +[身] 24 +L 0.0639,2.631326,1.7731,2.631326 +L 1.7731,2.631326,1.7731,7.932199 +L 1.7731,7.932199,2.9706,8.149767 +L 2.9706,8.149767,3.517,8.426482 +L 3.517,8.426482,3.8781,8.999965 +L 5.587,7.932199,3.8781,7.932199 +L 5.587,6.864367,5.587,7.932199 +L 5.587,6.36877,2.2004,6.36877 +L 5.587,4.766837,2.2004,4.766837 +L 5.587,3.699092,5.587,4.766837 +L 4.3611,3.583336,5.587,3.699092 +L 3.0967,3.230202,4.3611,3.583336 +L 2.2004,2.631326,3.0967,3.230202 +L 2.4211,0.978782,0.9217,0.533883 +L 5.587,0,5.5029,1.066387 +L 5.5029,1.066387,5.4367,2.124346 +L 5.4367,2.124346,5.3733,3.165231 +L 5.3733,3.165231,3.9968,2.008459 +L 3.9968,2.008459,2.4211,0.978782 +L 4.3054,0,5.587,0 +L 5.587,5.300938,5.587,6.36877 +L 6.0146,3.699092,6.417,4.232975 +L 6.417,4.232975,6.8373,4.766837 +L 6.8373,4.766837,7.2615,5.300938 + +[世] 19 +L 3.4843,6.864367,3.4843,8.999965 +L 4.7449,6.190627,3.4843,6.864367 +L 5.4033,5.82195,4.7449,6.190627 +L 5.5855,2.631326,5.4033,5.82195 +L 3.9043,2.631326,5.5855,2.631326 +L 3.4843,2.631326,3.442,5.228744 +L 3.442,5.228744,2.98,6.224448 +L 2.98,6.224448,1.5615,6.635613 +L 1.5615,6.635613,1.4946,7.435092 +L 1.4946,7.435092,1.4389,8.225945 +L 1.4389,8.225945,1.3794,8.999965 +L 6.4404,6.36877,7.2947,6.36877 +L 6.0166,6.36877,5.715,6.796617 +L 5.715,6.796617,5.603,7.478829 +L 5.603,7.478829,5.5855,8.999965 +L 1.7751,0,6.8674,0 +L 1.3794,0,1.4946,2.60033 +L 1.4946,2.60033,1.3335,5.192056 +L 1.3335,5.192056,0.094,6.36877 + +[整] 47 +L 2.6594,7.932199,3.5105,7.932199 +L 2.2321,7.932199,2.0815,8.302342 +L 2.0815,8.302342,1.9348,8.655346 +L 1.9348,8.655346,1.8052,8.999965 +L 1.4724,7.022634,1.8052,7.398338 +L 1.1393,6.884068,1.4724,7.022634 +L 0.5229,6.864367,1.1393,6.884068 +L 0.5229,5.834668,0.5229,6.864367 +L 0.7961,5.757089,0.5229,5.834668 +L 1.0833,5.670907,0.7961,5.757089 +L 1.3775,5.567694,1.0833,5.670907 +L 1.0136,5.137046,1.3775,5.567694 +L 0.6525,4.689323,1.0136,5.137046 +L 0.3093,4.232975,0.6525,4.689323 +L 3.5105,3.165231,0.5229,3.165231 +L 3.5105,0,3.5105,3.165231 +L 2.2321,0,3.5105,0 +L 1.8052,0,1.8052,2.097334 +L 0.1271,0,1.8052,0 +L 3.9417,0,6.8977,0 +L 3.9417,3.165231,6.4736,3.165231 +L 3.9417,1.601649,6.0428,1.601649 +L 6.4736,4.232975,5.6193,5.300938 +L 5.6193,6.36877,5.9167,6.75717 +L 5.9167,6.75717,6.0288,7.16236 +L 6.0288,7.16236,6.0428,7.932199 +L 6.0428,7.932199,4.3371,7.932199 +L 4.6103,6.891314,4.3371,7.398338 +L 4.894,6.36726,4.6103,6.891314 +L 5.1882,5.834668,4.894,6.36726 +L 3.728,4.232975,5.1882,5.834646 +L 4.0639,7.05374,3.9417,6.864367 +L 4.1938,7.234358,4.0639,7.05374 +L 4.3371,7.398338,4.1938,7.234358 +L 3.0867,6.864367,3.0867,5.834668 +L 3.0867,5.834668,2.7925,5.757089 +L 2.7925,5.757089,2.5053,5.670907 +L 2.5053,5.670907,2.2321,5.567694 +L 2.2321,5.567694,2.3621,5.300938 +L 2.3621,5.300938,2.5053,5.033898 +L 2.5053,5.033898,2.6594,4.766837 +L 2.0363,6.631454,3.0867,6.864367 +L 1.7768,5.813544,2.0363,6.631454 +L 1.8052,4.232975,1.7768,5.813544 +L 1.8052,7.398338,1.4546,7.774129 +L 1.4546,7.774129,1.0241,7.912366 +L 1.0241,7.912366,0.1271,7.932199 + +[昔] 18 +L 5.6455,0,1.4114,0 +L 5.6455,3.699092,5.6455,0 +L 1.4114,3.699092,5.6455,3.699092 +L 1.4114,0,1.4114,3.699092 +L 1.8352,2.097334,5.2217,2.097334 +L 5.2217,5.300938,6.8994,5.300938 +L 5.6455,7.398338,6.5004,7.398338 +L 5.2217,7.398338,4.9208,7.813532 +L 4.9208,7.813532,4.8084,8.228944 +L 4.8084,8.228944,4.7944,8.999965 +L 2.6579,5.300938,4.7944,5.300938 +L 2.2621,5.300938,2.1115,6.912416 +L 2.1115,6.912416,1.5792,7.388312 +L 1.5792,7.388312,0.5529,7.398338 +L 4.7944,5.300938,4.1359,7.412326 +L 4.1359,7.412326,2.9206,7.524032 +L 2.9206,7.524032,2.2621,8.999965 +L 0.126,5.300938,2.2621,5.300938 + +[想] 31 +L 6.7756,1.676558,6.5056,2.097334 +L 7.0593,1.247114,6.7756,1.676558 +L 7.3567,0.800857,7.0593,1.247114 +L 6.9294,4.232975,4.3936,4.232975 +L 4.3936,4.232975,4.3936,8.466082 +L 4.3936,8.466082,6.9294,8.466082 +L 6.9294,8.466082,6.9294,4.232975 +L 4.8244,5.834668,6.5056,5.834668 +L 4.8244,6.864367,6.5056,6.864367 +L 5.6475,0,5.6475,1.067854 +L 3.1152,0,5.6475,0 +L 4.0994,2.391277,3.9733,2.631326 +L 4.2434,2.134109,4.0994,2.391277 +L 4.3936,1.868711,4.2434,2.134109 +L 2.6848,7.932199,3.5425,7.932199 +L 2.2641,7.932199,2.1104,8.302342 +L 2.1104,8.302342,1.9668,8.655346 +L 1.9668,8.655346,1.8337,8.999965 +L 3.1152,5.834668,2.082,7.124424 +L 2.082,7.124424,1.2904,7.761258 +L 1.2904,7.761258,0.1592,7.932199 +L 1.6197,6.36877,0.1592,4.766837 +L 1.6862,5.490093,1.6197,6.36877 +L 1.7531,4.603206,1.6862,5.490093 +L 1.8337,3.699092,1.7531,4.603206 +L 2.2781,1.135604,2.2641,2.631326 +L 2.3906,0.45348,2.2781,1.135604 +L 2.6848,0,2.3906,0.45348 +L 0.7129,1.409627,1.0103,2.097334 +L 0.4323,0.71323,0.7129,1.409627 +L 0.1592,0,0.4323,0.71323 + +[息] 26 +L 7.3867,0.800857,7.0929,1.247114 +L 7.0929,1.247114,6.8092,1.676558 +L 6.8092,1.676558,6.5325,2.097334 +L 5.6775,0,5.6775,1.067854 +L 3.1421,0,5.6775,0 +L 2.7214,0,2.4202,0.45348 +L 2.4202,0.45348,2.3082,1.135604 +L 2.3082,1.135604,2.291,2.631326 +L 1.8672,3.699092,5.6775,3.699092 +L 5.6775,3.699092,5.6775,5.300938 +L 5.6775,5.300938,1.8672,5.300938 +L 3.1242,6.29095,1.8672,6.36877 +L 4.3991,6.204746,3.1242,6.29095 +L 5.6775,6.101708,4.3991,6.204746 +L 5.6775,6.864367,5.6775,7.932199 +L 5.6775,7.932199,3.5725,7.932199 +L 3.2083,8.426482,3.5725,8.999965 +L 2.6553,8.149767,3.2083,8.426482 +L 1.436,7.932199,2.6553,8.149767 +L 1.436,3.699092,1.436,7.932199 +L 0.4343,1.487272,0.585,2.097334 +L 0.2876,0.877058,0.4343,1.487272 +L 0.1577,0.26704,0.2876,0.877058 +L 4.3991,1.868711,4.2485,2.134109 +L 4.2485,2.134109,4.0979,2.391277 +L 4.0979,2.391277,3.9683,2.631326 + +[他] 23 +L 5.7009,6.69209,5.2105,6.553744 +L 5.2105,6.553744,4.8564,6.864367 +L 4.8564,6.864367,4.8564,8.999965 +L 4.7272,5.836113,4.426,6.36877 +L 4.426,6.36877,4.0968,5.992935 +L 4.0968,5.992935,3.7672,5.854457 +L 3.7672,5.854457,3.1476,5.834668 +L 3.1476,5.834668,3.1476,7.932199 +L 3.1651,1.926567,3.1476,5.300938 +L 3.2737,0.552227,3.1651,1.926567 +L 3.5749,0,3.2737,0.552227 +L 4.0022,0,7.3887,0 +L 7.3887,0,7.3887,1.601649 +L 6.9614,2.631326,6.8777,4.231771 +L 6.8777,4.231771,6.8073,5.823482 +L 6.8073,5.823482,6.7443,7.398338 +L 6.7443,7.398338,5.7009,6.69209 +L 4.8389,4.600361,4.7272,5.836113 +L 4.8564,1.601649,4.8389,4.600361 +L 6.1348,2.631326,6.9614,2.631326 +L 3.1476,5.300938,2.2965,5.300938 +L 1.0426,0,1.0426,6.597524 +A -6.4876,10.627729,8.540417,321.41046,349.01228 + +[炭] 22 +L 4.0319,7.398338,4.0319,8.999965 +L 1.8957,7.398338,4.0319,7.398338 +L 1.4649,7.398338,1.4649,8.466082 +L 1.0446,5.834668,7.4191,5.834668 +L 4.4592,7.398338,6.5641,7.398338 +L 4.4592,3.165231,4.4592,4.766837 +L 3.5205,2.124346,4.4592,3.165231 +L 2.5997,1.066387,3.5205,2.124346 +L 1.6817,0,2.5997,1.066387 +L 0.2177,0.26704,0.7956,2.049438 +L 0.7956,2.049438,1.0127,3.493039 +L 1.0127,3.493039,1.0446,5.834668 +L 2.323,2.898279,2.4558,3.354407 +L 2.4558,3.354407,2.5997,3.802349 +L 2.5997,3.802349,2.7535,4.232975 +L 5.5558,1.75429,4.8549,2.631326 +L 6.2703,0.877058,5.5558,1.75429 +L 6.9918,0,6.2703,0.877058 +L 6.2703,3.699092,6.5641,4.232975 +L 5.9866,3.165231,6.2703,3.699092 +L 5.7095,2.631326,5.9866,3.165231 +L 6.5641,7.398338,6.5641,8.466082 + +[柱] 16 +L 4.941,3.43492,3.6031,3.699092 +L 5.3161,2.348853,4.941,3.43492 +L 5.3126,0,5.3161,2.348853 +L 3.2111,0,5.3126,0 +L 5.7434,0,7.4176,0 +L 6.1672,3.699092,7.0215,3.699092 +L 5.7434,3.699092,5.4387,4.172339 +L 5.4387,4.172339,5.3298,4.992854 +L 5.3298,4.992854,5.3126,6.864367 +L 5.3126,6.864367,3.6031,6.864367 +L 5.7434,7.932199,4.885,8.999965 +L 5.7434,6.864367,7.0215,6.864367 +L 1.5016,0,1.5016,8.999987 +L 1.5016,5.150027,0.2165,3.165165 +L 2.3247,4.500037,1.5016,6.048296 +L 2.3247,6.902675,0.2165,6.902675 + +[丁] 5 +L 4.0607,7.932199,7.02,7.932199 +L 3.6369,0,3.6369,7.932199 +L 2.355,0,3.6369,0 +L 3.6369,7.932199,2.5056,7.932199 +L 2.5056,7.932199,0.2501,7.932199 + +[帳] 23 +L 1.5406,5.88703,0.2797,7.398338 +L 1.6741,2.731693,1.5406,5.88703 +L 1.534,0,1.6741,2.731693 +L 4.0939,8.466082,7.0538,8.466082 +L 4.42,5.220404,4.0939,8.466082 +L 5.5019,2.813541,4.42,5.220404 +L 7.4811,0,5.5019,2.813541 +L 5.7681,4.232975,7.4811,4.232975 +L 4.4897,5.834668,6.6265,5.834668 +L 4.4897,6.864367,6.6265,6.864367 +L 3.9156,3.678012,2.812,4.232975 +L 2.812,4.232975,2.812,2.631326 +L 2.812,4.766837,2.812,7.398338 +L 2.812,7.398338,1.8562,7.584778 +L 1.8562,7.584778,1.5515,8.127067 +L 1.5515,8.127067,1.534,8.999965 +L 0.2797,7.398338,0.2797,2.631326 +L 3.2393,0,4.0939,0 +L 4.0939,0,4.1464,2.182093 +L 4.1464,2.182093,3.9156,3.678012 +L 5.0504,0.36999,5.3443,0.533883 +L 4.7667,0.189264,5.0504,0.36999 +L 4.4897,0,4.7667,0.189264 + +[追] 30 +L 3.6651,1.601649,3.6651,3.545203 +L 3.6651,3.545203,3.6651,5.480352 +L 3.6651,5.480352,3.6651,7.398338 +L 3.6651,7.398338,4.3029,7.635673 +L 4.3029,7.635673,4.7404,8.050866 +L 4.7404,8.050866,5.3746,8.999965 +L 5.3746,7.398338,4.9473,7.398338 +L 5.8019,7.398338,5.3746,7.398338 +L 6.2292,7.398338,5.8019,7.398338 +L 6.2292,6.710632,6.2292,7.398338 +L 6.2292,6.014147,6.2292,6.710632 +L 6.2292,5.300938,6.2292,6.014147 +L 5.5074,5.300938,6.2292,5.300938 +L 4.7932,5.300938,5.5074,5.300938 +L 4.0924,5.300938,4.7932,5.300938 +L 4.9473,3.699092,4.0924,3.699092 +L 5.8019,3.699092,4.9473,3.699092 +L 6.6562,3.699092,5.8019,3.699092 +L 6.6562,3.011276,6.6562,3.699092 +L 6.6562,2.315011,6.6562,3.011276 +L 6.6562,1.601649,6.6562,2.315011 +L 5.8019,1.601649,6.6562,1.601649 +L 4.9473,1.601649,5.8019,1.601649 +L 4.0924,1.601649,4.9473,1.601649 +L 5.3638,-0.015214,7.4971,-0.015214 +L 1.5426,1.052487,0.4919,0 +L 0.2926,4.75171,1.5426,4.75171 +L 1.5426,1.052487,1.5426,4.75171 +L 0.7199,8.489111,1.5426,7.421257 +A 5.3638,7.347815,7.362973,238.75988,270 + +[庭] 57 +L 5.8106,0,6.655,0 +L 4.9805,0,5.8106,0 +L 4.5501,0,4.1228,0.36999 +L 4.1228,0.36999,3.6955,0.723234 +L 3.6955,0.723234,3.2717,1.067854 +L 3.2717,2.097334,3.2717,2.820634 +L 3.2717,2.820634,3.2717,3.535418 +L 3.2717,3.535418,3.2717,4.232975 +L 3.2717,4.232975,2.6514,4.213274 +L 2.6514,4.213274,2.3225,4.074993 +L 2.3225,4.074993,1.9859,3.699092 +L 2.2661,2.210332,1.9859,2.631326 +L 2.5463,1.781106,2.2661,2.210332 +L 2.8405,1.334719,2.5463,1.781106 +L 2.4766,0.90407,2.8405,1.334719 +L 2.1159,0.456194,2.4766,0.90407 +L 1.7726,0,2.1159,0.456194 +L 4.5501,1.601649,4.956,1.601649 +L 4.956,1.601649,5.3766,1.601649 +L 5.3766,1.601649,5.8004,1.601649 +L 5.8004,1.601649,5.7199,3.470273 +L 5.7199,3.470273,5.2642,4.144101 +L 5.2642,4.144101,4.1228,4.232975 +L 4.956,5.834668,4.5501,5.834668 +L 5.3766,5.834668,4.956,5.834668 +L 5.8004,5.834668,5.3766,5.834668 +L 5.8141,5.063494,5.8004,5.834668 +L 5.9265,4.648257,5.8141,5.063494 +L 6.2277,4.232975,5.9265,4.648257 +L 6.655,4.232975,6.9317,4.232975 +L 6.9317,4.232975,7.2154,4.232975 +L 7.2154,4.232975,7.5058,4.232975 +L 6.7878,6.36877,7.0855,6.36877 +L 6.5041,6.36877,6.7878,6.36877 +L 6.2277,6.36877,6.5041,6.36877 +L 5.5269,7.932199,6.5114,7.932199 +L 4.5501,7.932199,5.5269,7.932199 +L 3.1246,7.932199,4.1228,7.932199 +L 2.1404,7.932199,3.1246,7.932199 +L 1.1593,7.932199,2.1404,7.932199 +L 1.1734,5.343252,1.1593,7.932199 +L 0.9912,2.932209,1.1734,5.343252 +L 0.3083,0.26704,0.9912,2.932209 +L 6.5114,7.932199,7.5058,7.932199 +L 4.1228,7.932199,4.1228,8.302342 +L 4.1228,8.302342,4.1228,8.655346 +L 4.1228,8.655346,4.1228,8.999965 +L 3.2717,6.101708,2.8405,6.204746 +L 2.8405,6.204746,2.4171,6.29095 +L 2.4171,6.29095,1.9859,6.36877 +L 2.4171,4.766837,2.6934,5.223162 +L 2.6934,5.223162,2.9736,5.670907 +L 2.9736,5.670907,3.2717,6.101708 +L 6.2277,1.601649,6.5041,1.601649 +L 6.5041,1.601649,6.7878,1.601649 +L 6.7878,1.601649,7.0855,1.601649 +L 6.655,0,7.5058,0 + +[笛] 48 +L 6.6847,7.932199,7.1124,7.932199 +L 6.2574,7.932199,6.6847,7.932199 +L 5.8336,7.932199,6.2574,7.932199 +L 5.5363,7.322116,5.4063,7.665268 +L 5.6834,6.978854,5.5363,7.322116 +L 5.8336,6.635613,5.6834,6.978854 +L 5.4063,7.665268,4.489,7.635673 +L 4.489,7.635673,4.0544,7.428021 +L 4.0544,7.428021,3.7286,6.864367 +L 3.5749,5.490093,3.7286,5.834668 +L 3.4313,5.137046,3.5749,5.490093 +L 3.2978,4.766837,3.4313,5.137046 +L 2.5728,4.766837,3.2978,4.766837 +L 1.8653,4.766837,2.5728,4.766837 +L 1.1652,4.766837,1.8653,4.766837 +L 1.1652,3.192156,1.1652,4.766837 +L 1.1652,1.600226,1.1652,3.192156 +L 1.1652,0,1.1652,1.600226 +L 1.5925,0,2.2926,0 +L 2.2926,0,3.004,0 +L 3.004,0,3.7286,0 +L 3.7286,0,3.5749,2.07205 +L 3.5749,2.07205,2.9444,2.644022 +L 2.9444,2.644022,1.5925,2.631326 +L 4.7829,2.710525,3.6901,3.264132 +L 6.2574,2.631326,4.7829,2.710525 +L 6.2574,1.75429,6.2574,2.631326 +L 6.2574,0.877058,6.2574,1.75429 +L 6.2574,0,6.2574,0.877058 +L 5.5363,0,6.2574,0 +L 4.8253,0,5.5363,0 +L 4.1248,0,4.8253,0 +L 0.6573,7.428021,0.3141,6.864367 +L 1.0983,7.635673,0.6573,7.428021 +L 2.0198,7.665268,1.0983,7.635673 +L 2.149,7.322116,2.0198,7.665268 +L 2.2926,6.978854,2.149,7.322116 +L 2.4436,6.635613,2.2926,6.978854 +L 2.4436,7.932199,2.7238,7.932199 +L 2.7238,7.932199,3.004,7.932199 +L 3.004,7.932199,3.2978,7.932199 +L 3.6901,3.264132,4.1248,4.766837 +L 4.1248,4.766837,4.8253,4.766837 +L 4.8253,4.766837,5.5363,4.766837 +L 5.5363,4.766837,6.2574,4.766837 +L 6.2574,4.766837,6.2574,4.232975 +L 6.2574,4.232975,6.2574,3.699092 +L 6.2574,3.699092,6.2574,3.165231 + +[登] 51 +L 3.2963,0,3.8571,0.103169 +L 2.1721,0,2.8725,0 +L 1.4719,0,2.1721,0 +L 0.7711,0,1.4719,0 +L 2.8725,0,2.8585,0.771196 +L 2.8585,0.771196,2.7468,1.18639 +L 2.7468,1.18639,2.4452,1.601649 +L 2.0495,2.631326,2.0495,3.165231 +L 2.0495,3.165231,2.0495,3.699092 +L 2.0495,3.699092,2.0495,4.232975 +L 2.0495,4.232975,3.3107,4.232975 +L 3.3107,4.232975,4.5821,4.232975 +L 4.5821,4.232975,5.864,4.232975 +L 5.864,4.232975,5.864,3.699092 +L 5.864,3.699092,5.864,3.165231 +L 5.864,3.165231,5.864,2.631326 +L 5.864,2.631326,4.5821,2.631326 +L 4.5821,2.631326,3.3107,2.631326 +L 3.3107,2.631326,2.0495,2.631326 +L 1.5381,6.024107,2.0495,6.36877 +L 1.0411,5.670907,1.5381,6.024107 +L 0.5543,5.300938,1.0411,5.670907 +L 1.4719,7.055032,1.1914,7.398338 +L 1.7521,6.711836,1.4719,7.055032 +L 2.0495,6.36877,1.7521,6.711836 +L 4.1373,6.283902,2.4452,6.101708 +L 5.4819,6.161009,4.1373,6.283902 +L 7.1179,5.300938,5.4819,6.161009 +L 6.8377,7.587624,7.1179,7.932199 +L 6.5641,7.234358,6.8377,7.587624 +L 6.2913,6.864367,6.5641,7.234358 +L 5.9932,8.121594,6.2913,8.466082 +L 5.713,7.768328,5.9932,8.121594 +L 5.4367,7.398338,5.713,7.768328 +L 5.0094,6.864367,4.7117,7.234358 +L 4.7117,7.234358,4.4311,7.587624 +L 4.4311,7.587624,4.1544,7.932199 +L 3.2963,7.511292,3.7271,8.199173 +L 2.8725,6.815005,3.2963,7.511292 +L 2.4452,6.101708,2.8725,6.815005 +L 3.7271,8.199173,2.7324,8.302342 +L 2.7324,8.302342,1.7448,8.388284 +L 1.7448,8.388284,0.7711,8.466082 +L 5.4367,0,5.9831,0 +L 5.9831,0,6.5431,0 +L 6.5431,0,7.1179,0 +L 4.4311,0.189264,5.0094,0.26704 +L 3.8571,0.103169,4.4311,0.189264 +L 5.0094,0.26704,5.1421,0.723234 +L 5.1421,0.723234,5.2822,1.170848 +L 5.2822,1.170848,5.4367,1.601649 + +[湯] 54 +L 1.0743,8.655346,0.7979,8.999965 +L 1.3443,8.302342,1.0743,8.655346 +L 1.6207,7.932199,1.3443,8.302342 +L 1.1934,5.834668,0.9205,6.177996 +L 0.9205,6.177996,0.6438,6.521171 +L 0.6438,6.521171,0.3703,6.864367 +L 1.1934,2.555038,1.6207,3.699092 +L 0.7804,1.411094,1.1934,2.555038 +L 0.3703,0.26704,0.7804,1.411094 +L 2.262,2.097334,2.6889,2.46739 +L 2.6889,2.46739,3.1197,2.820634 +L 3.1197,2.820634,3.5435,3.165231 +L 3.5435,3.165231,3.6066,3.699092 +L 3.6066,3.699092,3.677,4.232975 +L 3.677,4.232975,3.761,4.766837 +L 3.761,4.766837,3.3302,4.766837 +L 3.3302,4.766837,2.9029,4.766837 +L 2.9029,4.766837,2.4753,4.766837 +L 4.3074,5.834668,3.3302,5.834668 +L 5.2916,5.834668,4.3074,5.834668 +L 6.2863,5.834668,5.2916,5.834668 +L 6.2863,6.711836,6.2863,5.834668 +L 6.2863,7.589046,6.2863,6.711836 +L 6.2863,8.466082,6.2863,7.589046 +L 5.2916,8.466082,6.2863,8.466082 +L 4.3074,8.466082,5.2916,8.466082 +L 3.3302,8.466082,4.3074,8.466082 +L 3.3302,7.589046,3.3302,8.466082 +L 3.3302,6.711836,3.3302,7.589046 +L 3.3302,5.834668,3.3302,6.711836 +L 3.761,7.398338,4.4615,7.398338 +L 4.4615,7.398338,5.1651,7.398338 +L 5.1651,7.398338,5.866,7.398338 +L 4.1848,4.766837,5.3126,4.766837 +L 5.3126,4.766837,6.44,4.766837 +L 6.44,4.766837,7.5748,4.766837 +L 6.7798,0.723234,7.144,1.067854 +L 6.419,0.36999,6.7798,0.723234 +L 6.0758,0,6.419,0.36999 +L 5.2212,1.409627,5.866,2.097334 +L 4.5911,0.71323,5.2212,1.409627 +L 3.9708,0,4.5911,0.71323 +L 4.1529,2.365884,2.9029,1.067854 +L 4.92,2.909662,4.1529,2.365884 +L 5.866,3.165231,4.92,2.909662 +L 5.866,2.820634,5.866,3.165231 +L 5.866,2.46739,5.866,2.820634 +L 5.866,2.097334,5.866,2.46739 +L 6.5665,3.165231,6.2863,3.165231 +L 6.8463,3.165231,6.5665,3.165231 +L 7.144,3.165231,6.8463,3.165231 +L 7.144,2.477393,7.144,3.165231 +L 7.144,1.781106,7.144,2.477393 +L 7.144,1.067854,7.144,1.781106 + +[等] 13 +L 2.7084,6.864258,2.0885,7.932155 +L 6.0918,6.864258,5.4719,7.932155 +L 7.5698,7.932155,4.5441,7.932155 +L 3.9693,7.932155,1.1603,7.932155 +L 1.0518,6.097527,6.8942,6.097527 +L 1.0518,2.042192,2.5088,1.225267 +L 3.9693,6.885097,3.9693,4.463678 +L 0.3726,4.463678,7.5698,4.463678 +L 0.3726,2.859226,7.5698,2.859226 +L 5.4337,0,5.4337,4.081166 +L 5.4337,0,4.4316,0 +A 0.4248,9.51684,4.418749,323.10826,353.27931 +A -2.9652,9.51684,4.418749,319.01823,353.27931 + +[豆] 27 +L 0.8296,8.466082,2.9346,8.466082 +L 2.9346,8.466082,5.0466,8.466082 +L 5.0466,8.466082,7.1726,8.466082 +L 1.6807,6.36877,3.2218,6.36877 +L 1.6807,5.490093,1.6807,6.36877 +L 1.6807,4.603206,1.6807,5.490093 +L 1.6807,3.699092,1.6807,4.603206 +L 3.2218,3.699092,1.6807,3.699092 +L 4.7629,3.699092,3.2218,3.699092 +L 6.318,3.699092,4.7629,3.699092 +L 6.318,4.603206,6.318,3.699092 +L 6.318,5.490093,6.318,4.603206 +L 6.318,6.36877,6.318,5.490093 +L 4.7629,6.36877,6.318,6.36877 +L 3.2218,6.36877,4.7629,6.36877 +L 2.6369,2.210332,2.5073,2.631326 +L 2.7843,1.781106,2.6369,2.210332 +L 2.9346,1.334719,2.7843,1.781106 +L 1.9609,0.103169,3.5128,0.189264 +L 0.4023,0,1.9609,0.103169 +L 6.1989,0,6.9029,0 +L 5.4952,0,6.1989,0 +L 3.5128,0.189264,5.0714,0.26704 +L 5.0714,0.26704,5.3443,1.066387 +L 5.3443,1.066387,5.6178,1.857372 +L 5.6178,1.857372,5.898,2.631326 +L 6.9029,0,7.6037,0 + +[童] 54 +L 5.2202,0,6.2047,0 +L 6.2047,0,7.2061,0 +L 5.7736,1.601649,6.355,1.601649 +L 5.1992,1.601649,5.7736,1.601649 +L 4.6461,1.601649,5.1992,1.601649 +L 4.2469,1.601649,3.9488,2.134109 +L 3.9488,2.134109,3.6686,2.658142 +L 3.6686,2.658142,3.3923,3.165231 +L 3.3923,3.165231,2.8105,3.165231 +L 2.8105,3.165231,2.2431,3.165231 +L 2.2431,3.165231,1.6827,3.165231 +L 1.6827,3.165231,1.6827,3.888487 +L 1.6827,3.888487,1.6827,4.603206 +L 1.6827,4.603206,1.6827,5.300938 +L 1.6827,5.300938,3.0875,5.300938 +L 3.0875,5.300938,4.4987,5.300938 +L 4.4987,5.300938,5.9245,5.300938 +L 5.9245,5.300938,5.9245,4.603206 +L 5.9245,4.603206,5.9245,3.888487 +L 5.9245,3.888487,5.9245,3.165231 +L 5.9245,3.165231,4.3659,3.4421 +L 4.3659,3.4421,3.3254,3.956216 +L 3.3254,3.956216,2.11,4.232975 +L 1.8337,6.557925,2.5412,6.635613 +L 2.5412,6.635613,2.1906,7.370099 +L 2.1906,7.370099,1.7458,7.70616 +L 1.7458,7.70616,0.8281,7.932199 +L 1.1328,6.471764,1.8337,6.557925 +L 0.4288,6.36877,1.1328,6.471764 +L 2.965,6.36877,3.6651,6.471764 +L 3.6651,6.471764,4.3659,6.557925 +L 4.3659,6.557925,5.0661,6.635613 +L 5.0661,6.635613,5.1992,6.978854 +L 5.1992,6.978854,5.3463,7.322116 +L 5.3463,7.322116,5.4972,7.665268 +L 5.4972,7.665268,4.4987,7.768328 +L 4.4987,7.768328,3.5148,7.854466 +L 3.5148,7.854466,2.5412,7.932199 +L 0.4288,0,1.5601,0 +L 1.5601,0,2.6883,0 +L 2.6883,0,3.8196,0 +L 3.8196,0,3.4133,1.499925 +L 3.4133,1.499925,2.4357,1.72881 +L 2.4357,1.72881,1.2554,1.601649 +L 6.6247,6.36877,7.2061,6.36877 +L 6.0573,6.36877,6.6247,6.36877 +L 5.4972,6.36877,6.0573,6.36877 +L 5.1992,4.232975,5.4972,4.232975 +L 4.919,4.232975,5.1992,4.232975 +L 4.6461,4.232975,4.919,4.232975 +L 4.2469,0,5.2202,0 +L 6.4811,7.932199,6.7756,7.932199 +L 6.1974,7.932199,6.4811,7.932199 +L 5.9245,7.932199,6.1974,7.932199 + +[波] 42 +L 4.8649,7.788139,5.1031,8.999965 +L 4.1539,7.415237,4.8649,7.788139 +L 2.9635,7.398338,4.1539,7.415237 +L 2.9705,4.91383,2.9635,7.398338 +L 2.7883,2.700631,2.9705,4.91383 +L 2.1404,0.26704,2.7883,2.700631 +L 3.6076,0,4.2453,0.533883 +L 4.2453,0.533883,4.8898,1.067854 +L 4.8898,1.067854,5.5234,1.601649 +L 5.5234,1.601649,4.6271,3.117291 +L 4.6271,3.117291,4.2905,3.937894 +L 4.2905,3.937894,4.2453,4.766837 +L 4.2453,4.766837,3.9473,4.766837 +L 3.9473,4.766837,3.6671,4.766837 +L 3.6671,4.766837,3.3943,4.766837 +L 5.3766,4.766837,4.6723,4.766837 +L 6.0841,4.766837,5.3766,4.766837 +L 6.8126,4.766837,6.0841,4.766837 +L 6.7776,3.956216,6.8126,4.766837 +L 6.5566,3.264132,6.7776,3.956216 +L 5.9542,2.097334,6.5566,3.264132 +L 6.3643,0.723234,5.9542,1.067854 +L 6.7776,0.36999,6.3643,0.723234 +L 7.2046,0,6.7776,0.36999 +L 5.1031,5.300938,5.1175,6.420869 +L 5.1175,6.420869,5.2292,6.964734 +L 5.2292,6.964734,5.5234,7.398338 +L 5.5234,7.398338,6.0768,7.320671 +L 6.0768,7.320671,6.634,7.234358 +L 6.634,7.234358,7.2046,7.131429 +L 7.2046,7.131429,7.0645,6.891314 +L 7.0645,6.891314,6.9352,6.63419 +L 6.9352,6.63419,6.8126,6.36877 +L 1.1348,8.655346,0.8585,8.999965 +L 1.4185,8.302342,1.1348,8.655346 +L 1.7131,7.932199,1.4185,8.302342 +L 1.2893,5.834668,0.9912,6.177996 +L 0.9912,6.177996,0.711,6.521171 +L 0.711,6.521171,0.4347,6.864367 +L 0.4347,0.26704,0.8585,1.411094 +L 0.8585,1.411094,1.2893,2.555038 +L 1.2893,2.555038,1.7131,3.699092 + +[倍] 42 +L 1.3154,0,1.2349,1.944955 +L 1.2349,1.944955,1.1687,3.88991 +L 1.1687,3.88991,1.1056,5.834668 +L 1.1056,5.834668,0.8917,5.670907 +L 0.8917,5.670907,0.6745,5.490093 +L 0.6745,5.490093,0.4612,5.300938 +L 1.3154,6.635613,1.5925,7.435092 +L 1.5925,7.435092,1.8653,8.225945 +L 1.8653,8.225945,2.142,8.999965 +L 5.6834,0,4.5517,0 +L 6.8073,0,5.6834,0 +L 6.8073,1.066387,6.8073,0 +L 6.8073,2.124346,6.8073,1.066387 +L 6.8073,3.165231,6.8073,2.124346 +L 5.6834,3.165231,6.8073,3.165231 +L 4.5517,3.165231,5.6834,3.165231 +L 3.4239,3.165231,4.5517,3.165231 +L 3.4239,2.124346,3.4239,3.165231 +L 3.4239,1.066387,3.4239,2.124346 +L 3.4239,0,3.4239,1.066387 +L 4.5517,0,3.4239,0 +L 4.7023,5.300938,5.1125,5.300938 +L 5.1125,5.300938,5.5289,5.300938 +L 5.5289,5.300938,5.9527,5.300938 +L 5.9527,5.300938,6.0651,6.220354 +L 6.0651,6.220354,6.2749,7.012762 +L 6.2749,7.012762,6.3835,7.932199 +L 6.3835,7.932199,5.6834,7.932199 +L 5.6834,7.932199,4.979,7.932199 +L 4.979,7.932199,4.275,7.932199 +L 3.9637,7.012762,3.8512,7.932199 +L 4.1664,6.220354,3.9637,7.012762 +L 4.275,5.300938,4.1664,6.220354 +L 3.701,5.300938,4.275,5.300938 +L 3.1227,5.300938,3.701,5.300938 +L 2.5662,5.300938,3.1227,5.300938 +L 3.2737,7.932199,2.9966,7.932199 +L 3.5539,7.932199,3.2737,7.932199 +L 3.8512,7.932199,3.5539,7.932199 +L 6.3835,5.300938,6.8073,5.300938 +L 6.8073,5.300938,7.2349,5.300938 +L 7.2349,5.300938,7.6622,5.300938 + +[箱] 36 +L 5.5558,0,4.7047,0 +L 4.7047,0,4.7047,1.781106 +L 4.7047,1.781106,4.7047,3.545203 +L 4.7047,3.545203,4.7047,5.300938 +L 4.7047,5.300938,5.5558,5.300938 +L 5.5558,5.300938,6.4135,5.300938 +L 6.4135,5.300938,7.2646,5.300938 +L 7.2646,5.300938,7.2646,3.545203 +L 7.2646,3.545203,7.2646,1.781106 +L 7.2646,1.781106,7.2646,0 +L 7.2646,0,6.4135,0 +L 6.4135,0,5.5558,0 +L 5.6885,2.097334,6.2633,2.097334 +L 6.2633,2.097334,6.8408,2.097334 +L 6.2633,3.699092,6.8408,3.699092 +L 5.6885,3.699092,6.2633,3.699092 +L 5.1355,3.699092,5.6885,3.699092 +L 5.1355,2.097334,5.6885,2.097334 +L 3.4543,2.097334,2.4137,3.413796 +L 2.4137,3.413796,1.6257,4.060677 +L 1.6257,4.060677,0.4628,4.232975 +L 2.1896,5.063494,2.172,5.834668 +L 2.2985,4.648257,2.1896,5.063494 +L 2.5997,4.232975,2.2985,4.648257 +L 1.9552,2.631326,1.4509,2.124346 +L 1.4509,2.124346,0.9497,1.600226 +L 0.9497,1.600226,0.4628,1.067854 +L 2.088,0.877058,2.0214,1.75429 +L 2.0214,1.75429,1.9552,2.631326 +L 2.172,0,2.088,0.877058 +L 2.7955,6.864258,2.1794,7.932155 +L 6.1827,6.864258,5.5694,7.932155 +L 7.6607,7.932155,4.6378,7.932155 +L 4.0637,7.932155,1.2544,7.932155 +A 0.5157,9.51684,4.418749,323.10826,353.27931 +A -2.875,9.51684,4.418749,319.01823,353.27931 + +[板] 28 +L 6.8393,1.067854,6.4089,1.601649 +L 6.0127,2.097334,5.4142,3.303819 +L 5.4142,3.303819,5.1935,4.272553 +L 5.1935,4.272553,5.1616,5.834668 +L 5.1616,5.834668,4.8639,5.834668 +L 4.8639,5.834668,4.5841,5.834668 +L 4.5841,5.834668,4.3039,5.834668 +L 3.8976,5.620012,3.8832,8.466082 +L 3.8832,8.466082,5.1375,8.466082 +L 5.1375,8.466082,6.4155,8.466082 +L 6.4155,8.466082,7.6939,8.466082 +L 7.2666,5.834668,6.6961,5.834668 +L 6.6961,5.834668,6.1388,5.834668 +L 6.1388,5.834668,5.5924,5.834668 +L 7.2354,5.014132,7.2666,5.834668 +L 7.0109,4.252983,7.2354,5.014132 +L 6.4089,2.898279,7.0109,4.252983 +L 5.4352,1.409627,6.0127,2.097334 +L 4.8639,0.71323,5.4352,1.409627 +L 4.3039,0,4.8639,0.71323 +L 3.0255,0.26704,3.7221,3.036735 +L 3.7221,3.036735,3.8976,5.620012 +L 7.6939,0,7.2666,0.533883 +L 7.2666,0.533883,6.8393,1.067854 +L 1.7783,0,1.7783,8.999987 +L 1.7783,5.150027,0.4929,3.165165 +L 2.5978,4.500037,1.7783,6.048296 +L 2.5978,6.902675,0.4929,6.902675 + +[皮] 33 +L 1.7771,7.398338,3.0622,7.364452 +L 3.0622,7.364452,3.9868,7.686568 +L 3.9868,7.686568,4.3409,8.999965 +L 4.3546,6.420869,4.467,6.964734 +L 4.3409,5.300938,4.3546,6.420869 +L 4.7433,4.689323,3.9098,4.766837 +L 5.5909,4.603206,4.7433,4.689323 +L 6.442,4.500059,5.5909,4.603206 +L 6.0147,3.62287,6.442,4.500059 +L 5.5874,2.745747,6.0147,3.62287 +L 5.1636,1.868711,5.5874,2.745747 +L 5.8676,1.257052,5.1636,1.868711 +L 6.5755,0.637052,5.8676,1.257052 +L 7.297,0,6.5755,0.637052 +L 4.7609,7.398338,5.6018,7.320671 +L 5.6018,7.320671,6.442,7.234358 +L 6.442,7.234358,7.297,7.131429 +L 7.297,7.131429,7.146,6.891314 +L 7.146,6.891314,7.0024,6.63419 +L 7.0024,6.63419,6.8732,6.36877 +L 4.467,6.964734,4.7609,7.398338 +L 3.4825,4.766837,3.0552,4.766837 +L 3.0552,4.766837,2.6314,4.766837 +L 2.6314,4.766837,2.2009,4.766837 +L 1.458,2.53676,1.7561,4.658195 +L 0.5264,0,1.458,2.53676 +L 2.2009,0,3.2937,0.41515 +L 3.2937,0.41515,3.9591,0.830453 +L 3.9591,0.830453,4.7609,1.601649 +L 4.7609,1.601649,3.8642,3.117291 +L 3.8642,3.117291,3.528,3.937894 +L 3.528,3.937894,3.4825,4.766837 +L 1.7561,4.658195,1.7771,7.398338 + +[鼻] 54 +L 1.7437,1.581992,0.5249,1.601649 +L 2.2936,1.443514,1.7437,1.581992 +L 2.6617,1.067854,2.2936,1.443514 +L 2.2936,0.723234,2.6617,1.067854 +L 1.9399,0.36999,2.2936,0.723234 +L 1.5935,0,1.9399,0.36999 +L 1.3795,2.631326,1.3795,3.354407 +L 1.3795,3.354407,1.3795,4.069192 +L 1.3795,4.069192,1.3795,4.766837 +L 1.3795,4.766837,3.0645,4.766837 +L 3.0645,4.766837,4.7667,4.766837 +L 4.7667,4.766837,6.4724,4.766837 +L 6.4724,4.766837,6.4724,4.069192 +L 6.4724,4.069192,6.4724,3.354407 +L 6.4724,3.354407,6.4724,2.631326 +L 6.4724,2.631326,6.0451,2.553725 +L 6.0451,2.553725,5.6213,2.46739 +L 5.6213,2.46739,5.1905,2.364264 +L 5.1905,2.364264,5.5583,1.827645 +L 5.5583,1.827645,6.1081,1.630019 +L 6.1081,1.630019,7.3302,1.601649 +L 5.6213,3.699092,6.0451,3.699092 +L 5.1905,3.699092,5.6213,3.699092 +L 4.7667,3.699092,5.1905,3.699092 +L 4.6231,5.834668,5.6213,5.834668 +L 5.6213,5.834668,5.6213,6.177996 +L 5.6213,6.177996,5.6213,6.521171 +L 5.6213,6.521171,5.6213,6.864367 +L 5.6213,6.864367,4.6231,6.864367 +L 4.6231,6.864367,3.6389,6.864367 +L 3.6389,6.864367,2.6617,6.864367 +L 2.6617,5.834668,3.6389,5.834668 +L 3.6389,5.834668,4.6231,5.834668 +L 4.469,7.854466,3.9156,7.932199 +L 3.5825,8.426482,3.9156,8.999965 +L 3.1486,8.149767,3.5825,8.426482 +L 2.2344,7.932199,3.1486,8.149767 +L 2.2344,7.244405,2.2344,7.932199 +L 2.2344,6.547943,2.2344,7.244405 +L 2.2344,5.834668,2.2344,6.547943 +L 2.3605,3.699092,1.8033,3.699092 +L 2.9381,3.699092,2.3605,3.699092 +L 3.5128,3.699092,2.9381,3.699092 +L 3.6389,3.432293,3.5128,3.699092 +L 3.7647,3.165231,3.6389,3.432293 +L 3.9156,2.898279,3.7647,3.165231 +L 3.6354,2.820634,3.9156,2.898279 +L 3.3619,2.734386,3.6354,2.820634 +L 3.089,2.631326,3.3619,2.734386 +L 4.469,1.648254,2.896,2.355858 +L 5.1905,0,4.469,1.648254 +L 2.896,2.355858,1.3795,2.631326 +L 5.0431,7.768328,4.469,7.854466 +L 5.6213,7.665268,5.0431,7.768328 + +[筆] 13 +L 2.8879,6.864258,2.2711,7.932155 +L 6.2779,6.864258,5.6583,7.932155 +L 7.7559,7.932155,4.7302,7.932155 +L 4.1554,7.932155,1.3468,7.932155 +L 4.1554,0,4.1554,6.873539 +L 6.2604,3.750009,2.0505,3.750009 +L 6.2604,2.624978,2.0505,2.624978 +L 2.0505,6.000028,6.2604,6.000028 +L 6.2604,3.750009,6.2604,6.000028 +L 0.5588,4.874997,7.7559,4.874997 +L 0.5588,1.499969,7.7559,1.499969 +A 0.6039,9.51684,4.418749,323.10826,353.27931 +A -2.7791,9.51684,4.418749,319.01823,353.27931 + +[氷] 21 +L 2.6899,0,3.1207,0 +L 3.1207,0,3.541,0 +L 3.541,0,3.9718,0 +L 3.9718,0,3.9718,3.011276 +L 3.9718,3.011276,3.9718,6.014147 +L 3.9718,6.014147,3.9718,8.999965 +L 0.5849,0.533883,1.7828,2.642644 +L 1.7828,2.642644,2.3256,3.878549 +L 2.3256,3.878549,2.6899,5.300938 +L 2.6899,5.300938,1.9894,5.300938 +L 1.9894,5.300938,1.2858,5.300938 +L 1.2858,5.300938,0.5849,5.300938 +L 7.3625,1.067854,6.3605,2.667992 +L 6.3605,2.667992,5.3766,4.26001 +L 5.3766,4.26001,4.3991,5.834668 +L 5.653,5.300938,6.0768,5.833464 +L 6.0768,5.833464,6.5041,6.357322 +L 6.5041,6.357322,6.9317,6.864367 +L 2.263,6.864367,1.9649,7.234358 +L 1.9649,7.234358,1.6847,7.587624 +L 1.6847,7.587624,1.4119,7.932199 + +[秒] 36 +L 1.8688,0,1.7848,1.411094 +L 1.7848,1.411094,1.7182,2.822078 +L 1.7182,2.822078,1.6555,4.232975 +L 1.6555,4.232975,1.2913,3.535418 +L 1.2913,3.535418,0.9302,2.820634 +L 0.9302,2.820634,0.5838,2.097334 +L 3.1157,0,4.8883,0.902538 +L 4.8883,0.902538,6.359,2.313566 +L 6.359,2.313566,7.361,4.232975 +L 4.8249,3.165231,5.1051,3.165231 +L 5.1051,3.165231,5.3853,3.165231 +L 5.3853,3.165231,5.6798,3.165231 +L 5.6798,3.165231,5.6798,5.110186 +L 5.6798,5.110186,5.6798,7.055032 +L 5.6798,7.055032,5.6798,8.999965 +L 3.1157,3.699092,2.363,4.50991 +L 2.363,4.50991,1.9284,5.201797 +L 1.9284,5.201797,1.4415,6.36877 +L 1.4415,6.36877,1.1403,6.36877 +L 1.1403,6.36877,0.8605,6.36877 +L 0.8605,6.36877,0.5838,6.36877 +L 3.5465,5.300938,3.8232,6.014147 +L 3.8232,6.014147,4.1037,6.710632 +L 4.1037,6.710632,4.4014,7.398338 +L 7.7848,5.567694,7.5148,6.177996 +L 7.5148,6.177996,7.2349,6.788189 +L 7.2349,6.788189,6.9614,7.398338 +L 2.2926,6.36877,1.9953,6.75717 +L 1.9953,6.75717,1.8828,7.16236 +L 1.8828,7.16236,1.8688,7.932199 +L 1.8688,7.932199,1.4415,7.932199 +L 1.4415,7.932199,1.0142,7.932199 +L 1.0142,7.932199,0.5838,7.932199 +L 2.2926,7.932199,2.5693,8.121594 +L 2.5693,8.121594,2.8429,8.302342 +L 2.8429,8.302342,3.1157,8.466082 + +[負] 42 +L 1.2544,0,1.7482,0.36999 +L 1.7482,0.36999,2.2354,0.723234 +L 2.2354,0.723234,2.7223,1.067854 +L 6.5361,0,6.1091,0.36999 +L 6.1091,0.36999,5.6885,0.723234 +L 5.6885,0.723234,5.2822,1.067854 +L 1.8638,2.097334,1.7868,3.621469 +L 1.7868,3.621469,1.7136,5.137046 +L 1.7136,5.137046,1.654,6.635613 +L 1.654,6.635613,1.4435,6.711836 +L 1.4435,6.711836,1.2334,6.788189 +L 1.2334,6.788189,1.0446,6.864367 +L 2.2946,2.097334,3.5559,2.097334 +L 3.5559,2.097334,4.8272,2.097334 +L 4.8272,2.097334,6.1091,2.097334 +L 6.1091,2.097334,6.1091,2.631326 +L 6.1091,2.631326,6.1091,3.165231 +L 6.1091,3.165231,6.1091,3.699092 +L 6.1091,3.699092,4.8272,3.699092 +L 4.8272,3.699092,3.5559,3.699092 +L 3.5559,3.699092,2.2946,3.699092 +L 6.1091,4.232975,6.1091,4.603206 +L 6.1091,4.603206,6.1091,4.956232 +L 6.1091,4.956232,6.1091,5.300938 +L 6.1091,5.300938,4.8272,5.300938 +L 4.8272,5.300938,3.5559,5.300938 +L 3.5559,5.300938,2.2946,5.300938 +L 6.1091,5.834668,6.1091,6.177996 +L 6.1091,6.177996,6.1091,6.521171 +L 6.1091,6.521171,6.1091,6.864367 +L 6.1091,6.864367,3.4088,6.884068 +L 3.4088,6.884068,2.3121,7.022634 +L 2.3121,7.022634,1.8638,7.398338 +L 1.8638,7.398338,2.144,7.768328 +L 2.144,7.768328,2.4246,8.121594 +L 2.4246,8.121594,2.7223,8.466082 +L 2.7223,8.466082,3.4224,8.388284 +L 3.4224,8.388284,4.1334,8.302342 +L 4.1334,8.302342,4.8584,8.199173 +L 4.8584,8.199173,4.7047,7.932199 +L 4.7047,7.932199,4.5607,7.665268 +L 4.5607,7.665268,4.4311,7.398338 + +[福] 51 +L 1.4704,0,1.4529,2.622898 +L 1.4529,2.622898,1.3443,3.72026 +L 1.3443,3.72026,1.0431,4.232975 +L 1.0431,4.232975,0.8921,4.069192 +L 0.8921,4.069192,0.7454,3.888487 +L 0.7454,3.888487,0.6158,3.699092 +L 4.0303,0,4.0303,1.247114 +L 4.0303,1.247114,4.0303,2.477393 +L 4.0303,2.477393,4.0303,3.699092 +L 4.0303,3.699092,5.1616,3.699092 +L 5.1616,3.699092,6.2898,3.699092 +L 6.2898,3.699092,7.4211,3.699092 +L 7.4211,3.699092,7.4211,2.477393 +L 7.4211,2.477393,7.4211,1.247114 +L 7.4211,1.247114,7.4211,0 +L 7.4211,0,6.2898,0 +L 6.2898,0,5.1616,0 +L 5.1616,0,4.0303,0 +L 5.7115,0.533883,5.5613,1.685029 +L 5.5613,1.685029,5.1305,2.065024 +L 5.1305,2.065024,4.4331,2.097334 +L 6.1427,2.097334,5.9851,2.46739 +L 5.9851,2.46739,5.8415,2.820634 +L 5.8415,2.820634,5.7115,3.165231 +L 2.7519,3.165231,2.3215,3.699092 +L 2.3215,3.699092,1.9008,4.232975 +L 1.9008,4.232975,1.4704,4.766837 +L 1.4704,4.766837,1.9008,5.566402 +L 1.9008,5.566402,2.3215,6.357322 +L 2.3215,6.357322,2.7519,7.131429 +L 2.7519,7.131429,2.0304,7.234358 +L 2.0304,7.234358,1.3194,7.320671 +L 1.3194,7.320671,0.6158,7.398338 +L 4.4331,5.300938,4.4331,5.833464 +L 4.4331,5.833464,4.4331,6.357322 +L 4.4331,6.357322,4.4331,6.864367 +L 4.4331,6.864367,5.2842,6.864367 +L 5.2842,6.864367,6.1427,6.864367 +L 6.1427,6.864367,6.9938,6.864367 +L 6.9938,6.864367,6.9938,6.357322 +L 6.9938,6.357322,6.9938,5.833464 +L 6.9938,5.833464,6.9938,5.300938 +L 6.9938,5.300938,6.1427,5.300938 +L 6.1427,5.300938,5.2842,5.300938 +L 5.2842,5.300938,4.4331,5.300938 +L 1.4704,7.932199,1.4704,8.302342 +L 1.4704,8.302342,1.4704,8.655346 +L 1.4704,8.655346,1.4704,8.999965 +L 3.61,8.466082,5.0114,8.466082 +L 5.0114,8.466082,6.4225,8.466082 +L 6.4225,8.466082,7.8484,8.466082 + +[命] 33 +L 4.8908,0,4.8908,1.411094 +L 4.8908,1.411094,4.8908,2.822078 +L 4.8908,2.822078,4.8908,4.232975 +L 4.8908,4.232975,5.5909,4.232975 +L 5.5909,4.232975,6.2949,4.232975 +L 6.2949,4.232975,6.9958,4.232975 +L 6.9958,4.232975,6.9958,3.192156 +L 6.9958,3.192156,6.9958,2.134109 +L 6.9958,2.134109,6.9958,1.067854 +L 6.9958,1.067854,6.7156,1.067854 +L 6.7156,1.067854,6.442,1.067854 +L 6.442,1.067854,6.1692,1.067854 +L 1.0763,1.067854,1.0763,2.134109 +L 1.0763,2.134109,1.0763,3.192156 +L 1.0763,3.192156,1.0763,4.232975 +L 1.0763,4.232975,1.7771,4.232975 +L 1.7771,4.232975,2.4811,4.232975 +L 2.4811,4.232975,3.1812,4.232975 +L 3.1812,4.232975,3.1812,3.192156 +L 3.1812,3.192156,3.1812,2.134109 +L 3.1812,2.134109,3.1812,1.067854 +L 3.1812,1.067854,2.4811,1.067854 +L 2.4811,1.067854,1.7771,1.067854 +L 1.7771,1.067854,1.0763,1.067854 +L 0.863,5.834668,1.9099,6.901077 +L 1.9099,6.901077,2.9679,7.959015 +L 2.9679,7.959015,4.0323,8.999965 +L 4.0323,8.999965,5.1636,7.959015 +L 5.1636,7.959015,6.2949,6.901077 +L 6.2949,6.901077,7.4157,5.834668 +L 2.7504,6.36877,3.605,6.36877 +L 3.605,6.36877,4.4596,6.36877 +L 4.4596,6.36877,5.3146,6.36877 + +[役] 42 +L 1.5021,0,1.418,1.411094 +L 1.418,1.411094,1.3518,2.822078 +L 1.3518,2.822078,1.2888,4.232975 +L 1.2888,4.232975,1.0748,4.069192 +L 1.0748,4.069192,0.8716,3.888487 +L 0.8716,3.888487,0.6793,3.699092 +L 2.7843,0,3.8732,0.41515 +L 3.8732,0.41515,4.5317,0.830453 +L 4.5317,0.830453,5.3166,1.601649 +L 5.3166,1.601649,4.4024,3.275361 +L 4.4024,3.275361,3.8561,3.957683 +L 3.8561,3.957683,3.2081,4.232975 +L 7.0219,0,6.5981,0.36999 +L 6.5981,0.36999,6.1712,0.723234 +L 6.1712,0.723234,5.7439,1.067854 +L 5.7439,2.097334,6.1712,2.734386 +L 6.1712,2.734386,6.5981,3.354407 +L 6.5981,3.354407,7.0219,3.966067 +L 7.0219,3.966067,6.1712,4.069192 +L 6.1712,4.069192,5.3232,4.155265 +L 5.3232,4.155265,4.49,4.232975 +L 1.5021,4.766837,1.7756,5.480352 +L 1.7756,5.480352,2.0593,6.176508 +L 2.0593,6.176508,2.3532,6.864367 +L 3.2081,5.300938,3.8806,6.333374 +L 3.8806,6.333374,4.0662,7.230286 +L 4.0662,7.230286,4.0627,8.466082 +L 4.0627,8.466082,4.7628,8.466082 +L 4.7628,8.466082,5.4633,8.466082 +L 5.4633,8.466082,6.1712,8.466082 +L 6.1712,8.466082,6.1712,7.589046 +L 6.1712,7.589046,6.1712,6.711836 +L 6.1712,6.711836,6.1712,5.834668 +L 6.1712,5.834668,6.7242,5.834668 +L 6.7242,5.834668,7.299,5.834668 +L 7.299,5.834668,7.88,5.834668 +L 7.88,5.834668,7.88,6.177996 +L 7.88,6.177996,7.88,6.521171 +L 7.88,6.521171,7.88,6.864367 +L 0.6793,6.864367,1.0821,7.587624 +L 1.0821,7.587624,1.5021,8.302342 +L 1.5021,8.302342,1.9332,8.999965 + +[葉] 47 +L 4.0647,0,3.9806,0.71323 +L 3.9806,0.71323,3.9138,1.409627 +L 3.9138,1.409627,3.8507,2.097334 +L 3.8507,2.097334,2.7828,1.590485 +L 2.7828,1.590485,1.7247,1.066387 +L 1.7247,1.066387,0.6813,0.533883 +L 6.6285,0.533883,4.5691,2.026869 +L 4.5691,2.026869,2.898,2.485974 +L 2.898,2.485974,0.6813,2.631326 +L 4.9225,2.631326,5.7736,2.631326 +L 5.7736,2.631326,6.6285,2.631326 +L 6.6285,2.631326,7.4796,2.631326 +L 4.0647,3.432293,3.3639,3.535418 +L 3.3639,3.535418,2.6602,3.621469 +L 2.6602,3.621469,1.9597,3.699092 +L 1.9597,3.699092,1.8757,5.134156 +L 1.8757,5.134156,1.5114,5.721846 +L 1.5114,5.721846,0.6813,5.834668 +L 4.4917,3.699092,5.3463,3.699092 +L 5.3463,3.699092,6.2009,3.699092 +L 6.2009,3.699092,7.0558,3.699092 +L 4.0647,5.033898,3.4378,5.635664 +L 3.4378,5.635664,2.6042,6.110092 +L 2.6042,6.110092,1.9597,6.864367 +L 4.4917,4.766837,5.0524,4.870049 +L 5.0524,4.870049,5.6233,4.956232 +L 5.6233,4.956232,6.2009,5.033898 +L 6.2009,5.033898,5.5494,5.635664 +L 5.5494,5.635664,4.7158,6.110092 +L 4.7158,6.110092,4.0647,6.864367 +L 6.6285,5.834668,6.4744,6.177996 +L 6.4744,6.177996,6.3308,6.521171 +L 6.3308,6.521171,6.2009,6.864367 +L 0.6813,7.932199,1.3815,7.932199 +L 1.3815,7.932199,2.0925,7.932199 +L 2.0925,7.932199,2.814,7.932199 +L 2.814,7.932199,2.814,8.302342 +L 2.814,8.302342,2.814,8.655346 +L 2.814,8.655346,2.814,8.999965 +L 3.2413,7.932199,3.9421,7.932199 +L 3.9421,7.932199,4.6461,7.932199 +L 4.6461,7.932199,5.3463,7.932199 +L 5.3463,7.932199,5.3463,8.302342 +L 5.3463,8.302342,5.3463,8.655346 +L 5.3463,8.655346,5.3463,8.999965 +L 5.7736,7.932199,6.3308,7.932199 +L 6.3308,7.932199,7.4796,7.932199 + +[陽] 30 +L 0.7075,0,0.7075,8.466082 +L 0.7075,8.466082,2.3855,8.466082 +L 2.3855,8.466082,1.9509,6.131392 +L 1.9509,6.131392,2.1715,4.762656 +L 2.1715,4.762656,2.3855,2.631326 +L 2.3855,2.631326,2.112,2.46739 +L 2.112,2.46739,1.8391,2.286772 +L 1.8391,2.286772,1.5656,2.097334 +L 4.3084,0,4.9318,0.71323 +L 4.9318,0.71323,5.5623,1.409627 +L 5.5623,1.409627,6.1958,2.097334 +L 6.1958,2.097334,6.1958,3.165231 +L 6.1958,3.165231,5.2575,2.909662 +L 5.2575,2.909662,4.4905,2.365884 +L 4.4905,2.365884,3.2398,1.067854 +L 6.4134,0,6.7566,0.36999 +L 6.7566,0.36999,7.1208,0.723234 +L 7.1208,0.723234,7.4851,1.067854 +L 7.4851,1.067854,7.4851,3.165231 +L 7.4851,3.165231,6.6266,3.165231 +L 3.2398,2.631326,3.7021,3.066418 +L 3.7021,3.066418,3.9231,3.620112 +L 3.9231,3.620112,4.0944,4.766837 +L 4.0944,4.766837,3.2398,4.766837 +L 4.5217,4.766837,7.9054,4.766837 +L 4.0944,6.36877,4.0944,8.466082 +L 4.0944,8.466082,7.0543,8.466082 +L 7.0543,8.466082,7.0543,6.36877 +L 7.0543,6.36877,4.0944,6.36877 +L 4.5217,7.398338,6.6266,7.398338 + +[緑] 45 +L 1.9879,0,1.9879,4.766837 +L 1.9879,4.766837,0.7379,4.766837 +L 4.9513,0,5.8024,0 +L 5.8024,0,5.7881,1.871404 +L 5.7881,1.871404,5.6763,2.692181 +L 5.6763,2.692181,5.3786,3.165231 +L 5.3786,3.165231,4.8039,2.477393 +L 4.8039,2.477393,4.2505,1.781106 +L 4.2505,1.781106,3.6974,1.067854 +L 0.7379,1.334719,0.8605,1.944955 +L 0.8605,1.944955,0.9932,2.555038 +L 0.9932,2.555038,1.1333,3.165231 +L 7.5113,1.067854,6.5411,2.572003 +L 6.5411,2.572003,5.981,3.72026 +L 5.981,3.72026,5.8024,5.300938 +L 5.8024,5.300938,3.6974,5.300938 +L 3.6974,5.300938,3.5465,4.956232 +L 3.5465,4.956232,3.4029,4.603206 +L 3.4029,4.603206,3.2701,4.232975 +L 2.8428,1.601649,2.8428,3.165231 +L 7.084,3.165231,7.361,3.535418 +L 7.361,3.535418,7.6447,3.888487 +L 7.6447,3.888487,7.9421,4.232975 +L 2.4191,4.766837,2.5483,5.137046 +L 2.5483,5.137046,2.6919,5.490093 +L 2.6919,5.490093,2.8428,5.834668 +L 1.5641,5.300938,1.694,5.567694 +L 1.694,5.567694,1.8408,5.834668 +L 1.8408,5.834668,1.9879,6.101708 +L 1.9879,6.101708,1.694,6.444949 +L 1.694,6.444949,1.4138,6.788189 +L 1.4138,6.788189,1.1333,7.131429 +L 1.1333,7.131429,1.4138,7.768328 +L 1.4138,7.768328,1.694,8.388284 +L 1.694,8.388284,1.9879,8.999965 +L 6.4469,5.300938,6.5064,5.833464 +L 6.5064,5.833464,6.5765,6.357322 +L 6.5765,6.357322,6.6602,6.864367 +L 6.6602,6.864367,4.5552,6.864367 +L 7.084,5.300938,7.9421,5.300938 +L 2.4191,7.131429,2.5483,7.398338 +L 2.5483,7.398338,2.6919,7.665268 +L 2.6919,7.665268,2.8428,7.932199 +L 6.6602,7.398338,6.6602,8.466082 +L 6.6602,8.466082,4.1279,8.466082 + +[列] 20 +L 0.9532,0,2.3195,1.703417 +L 2.3195,1.703417,2.9216,2.593237 +L 2.9216,2.593237,3.2721,3.432293 +L 3.2721,3.432293,2.7012,3.888487 +L 2.7012,3.888487,2.144,4.336188 +L 2.144,4.336188,1.5945,4.766837 +L 1.5945,4.766837,1.2964,4.422327 +L 1.2964,4.422327,1.0162,4.069192 +L 1.0162,4.069192,0.7399,3.699092 +L 6.2594,0,7.5133,0 +L 7.5133,0,7.5133,8.999965 +L 5.4083,2.097334,5.4083,7.398338 +L 3.7026,4.232975,3.7026,6.36877 +L 3.7026,6.36877,2.0218,6.36877 +L 2.0218,6.36877,1.8712,6.024107 +L 1.8712,6.024107,1.7272,5.670907 +L 1.7272,5.670907,1.5945,5.300938 +L 2.0218,6.864367,2.0218,8.466082 +L 2.0218,8.466082,0.7399,8.466082 +L 2.4487,8.466082,4.5537,8.466082 + +[好] 16 +L 4.5841,0,5.8341,0 +L 5.8341,0,5.8166,2.622898 +L 5.8166,2.622898,5.7189,3.72026 +L 5.7189,3.72026,5.4387,4.232975 +L 5.4387,4.232975,3.7291,4.232975 +L 6.2652,4.232975,5.7644,5.752908 +L 5.7644,5.752908,6.2933,7.111487 +L 6.2933,7.111487,7.1163,8.199173 +L 7.1163,8.199173,6.1216,8.302342 +L 6.1216,8.302342,5.134,8.388284 +L 5.134,8.388284,4.1603,8.466082 +L 6.6925,4.232975,7.9709,4.232975 +L 4.1739,6.330287,0.5699,6.330287 +L 1.4284,3.326519,2.0514,8.999834 +A -3.9623,-3.399567,8.620982,23.224227,51.278884 +A -5.8217,6.330287,9.138971,316.15783,0 + +[象] 50 +L 3.3357,0,3.9658,0.039621 +L 3.9658,0.039621,4.4001,0.316446 +L 4.4001,0.316446,5.0134,1.067854 +L 5.0134,1.067854,4.9293,1.600226 +L 4.9293,1.600226,4.8589,2.124346 +L 4.8589,2.124346,4.7994,2.631326 +L 4.7994,2.631326,3.5,1.663905 +L 3.5,1.663905,2.0958,0.865762 +L 2.0958,0.865762,0.768,0.533883 +L 7.5733,0.533883,6.5051,1.600226 +L 6.5051,1.600226,5.4407,2.658142 +L 5.4407,2.658142,4.3689,3.699092 +L 4.3689,3.699092,3.3038,3.165231 +L 3.3038,3.165231,2.2461,2.631326 +L 2.2461,2.631326,1.1988,2.097334 +L 1.1988,3.699092,1.9414,3.83757 +L 1.9414,3.83757,2.5893,4.094585 +L 2.5893,4.094585,3.3357,4.232975 +L 3.3357,4.232975,3.4649,4.500059 +L 3.4649,4.500059,3.6085,4.766837 +L 3.6085,4.766837,3.7595,5.033898 +L 3.7595,5.033898,3.0376,5.137046 +L 3.0376,5.137046,2.3266,5.223162 +L 2.3266,5.223162,1.6261,5.300938 +L 1.6261,5.300938,1.595,6.070537 +L 1.595,6.070537,1.3708,6.475945 +L 1.3708,6.475945,0.768,6.864367 +L 5.6505,3.699092,6.1408,4.069192 +L 6.1408,4.069192,6.6382,4.422327 +L 6.6382,4.422327,7.1495,4.766837 +L 7.1495,4.766837,6.7506,5.142715 +L 6.7506,5.142715,5.987,5.281062 +L 5.987,5.281062,4.1868,5.300938 +L 4.1868,5.300938,4.1868,6.864367 +L 4.1868,6.864367,2.6699,6.884068 +L 2.6699,6.884068,2.0013,7.022634 +L 2.0013,7.022634,1.6261,7.398338 +L 1.6261,7.398338,1.9028,7.768328 +L 1.9028,7.768328,2.1834,8.121594 +L 2.1834,8.121594,2.4772,8.466082 +L 2.4772,8.466082,3.3112,8.388284 +L 3.3112,8.388284,4.1588,8.302342 +L 4.1588,8.302342,5.0134,8.199173 +L 5.0134,8.199173,4.8589,7.854466 +L 4.8589,7.854466,4.7153,7.501441 +L 4.7153,7.501441,4.5822,7.131429 +L 4.5822,7.131429,5.2862,7.05374 +L 5.2862,7.05374,5.9937,6.967471 +L 5.9937,6.967471,6.7222,6.864367 +L 6.7222,6.864367,6.7222,5.834668 + +[低] 26 +L 1.6565,0,1.576,1.781106 +L 1.576,1.781106,1.5056,3.545203 +L 1.5056,3.545203,1.4425,5.300938 +L 1.4425,5.300938,1.2257,5.137046 +L 1.2257,5.137046,1.0152,4.956232 +L 1.0152,4.956232,0.8019,4.766837 +L 3.3342,0,5.8976,0 +L 7.5718,0,6.395,2.66252 +L 6.395,2.66252,5.9572,4.036707 +L 5.9572,4.036707,5.8976,5.300938 +L 5.8976,5.300938,3.3342,5.300938 +L 3.3342,5.300938,3.3342,1.601649 +L 3.3342,1.601649,4.0343,1.781106 +L 4.0343,1.781106,4.7418,1.943467 +L 4.7418,1.943467,5.4703,2.097334 +L 8.0026,0,8.0026,1.601649 +L 2.5076,1.067854,3.3342,1.067854 +L 6.3214,5.300938,8.0026,5.300938 +L 1.6565,5.834668,1.7682,7.113041 +L 1.7682,7.113041,1.9714,8.052355 +L 1.9714,8.052355,2.0835,8.999965 +L 3.3342,5.834668,3.3342,7.932199 +L 3.3342,7.932199,4.532,7.99717 +L 4.532,7.99717,6.0101,8.299409 +L 6.0101,8.299409,7.148,8.999965 +L 5.4703,5.834668,5.4703,7.398338 + +[飯] 29 +L 4.8629,0,5.3497,0.637052 +L 5.3497,0.637052,5.8366,1.257052 +L 5.8366,1.257052,6.3234,1.868711 +L 6.3234,1.868711,5.7214,3.591764 +L 5.7214,3.591764,5.5042,4.620062 +L 5.5042,4.620062,5.4723,5.834668 +L 5.4723,5.834668,4.6461,5.834668 +L 4.6461,5.834668,4.5372,3.779583 +L 4.5372,3.779583,4.3305,2.56351 +L 4.3305,2.56351,4.2188,1.601649 +L 8.0295,0,7.6057,0.637052 +L 7.6057,0.637052,7.1784,1.257052 +L 7.1784,1.257052,6.7511,1.868711 +L 6.7511,1.868711,7.3496,3.235893 +L 7.3496,3.235893,7.5703,4.264213 +L 7.5703,4.264213,7.6057,5.834668 +L 7.6057,5.834668,5.8961,5.834668 +L 4.6461,6.36877,4.6461,8.466082 +L 4.6461,8.466082,8.0295,8.466082 +L 2.6353,8.999987,0.8316,5.88217 +L 2.6353,8.999987,4.4321,7.200012 +L 1.7356,6.441118,3.9348,6.441118 +L 1.7356,3.000003,3.9348,3.000003 +L 3.9348,6.441118,3.9348,3.000003 +L 1.7356,6.441118,1.7356,0.130028 +L 4.4321,3.000003,4.4321,1.49999 +L 1.7356,4.720582,3.9348,4.720582 +A 0.8316,3.179898,3.179894,270,334.63397 +A 1.7951,0,2.63629,10.933074,71.504943 + +[英] 34 +L 0.8301,0,1.9547,0.45348 +L 1.9547,0.45348,2.8335,1.135604 +L 2.8335,1.135604,4.2208,2.631326 +L 4.2208,2.631326,3.8072,3.007074 +L 3.8072,3.007074,2.9319,3.14553 +L 2.9319,3.14553,0.8301,3.165231 +L 6.7807,0,6.0592,0.71323 +L 6.0592,0.71323,5.3482,1.409627 +L 5.3482,1.409627,4.6446,2.097334 +L 4.6446,3.165231,3.9052,4.772638 +L 3.9052,4.772638,3.7056,5.600267 +L 3.7056,5.600267,2.1158,5.834668 +L 2.1158,5.834668,2.1158,3.699092 +L 5.0719,3.165231,6.3538,3.165231 +L 6.3538,3.165231,6.3538,5.834668 +L 6.3538,5.834668,4.6446,5.834668 +L 4.6446,5.834668,4.4936,6.177996 +L 4.4936,6.177996,4.3536,6.521171 +L 4.3536,6.521171,4.2208,6.864367 +L 6.7807,3.165231,7.6353,3.165231 +L 2.9669,7.131429,2.816,7.398338 +L 2.816,7.398338,2.6724,7.665268 +L 2.6724,7.665268,2.5396,7.932199 +L 2.5396,7.932199,0.8301,7.932199 +L 5.5027,7.131429,5.1384,7.69493 +L 5.1384,7.69493,4.5921,7.902625 +L 4.5921,7.902625,3.3977,7.932199 +L 3.3977,7.932199,3.2468,8.302342 +L 3.2468,8.302342,3.0997,8.655346 +L 3.0997,8.655346,2.9669,8.999965 +L 5.9297,7.932199,5.772,8.302342 +L 5.772,8.302342,5.6284,8.655346 +L 5.6284,8.655346,5.5027,8.999965 +L 6.3538,7.932199,7.6353,7.932199 + +[静] 46 +L 1.2878,0,1.2878,4.232975 +L 1.2878,4.232975,2.9689,4.232975 +L 2.9689,4.232975,2.9689,0 +L 2.9689,0,2.1455,0 +L 5.1016,0,5.96,0 +L 5.96,0,5.96,1.85457 +L 5.96,1.85457,5.6725,2.861503 +L 5.6725,2.861503,4.6778,3.165231 +L 1.7151,2.097334,2.5416,2.097334 +L 1.7151,3.165231,2.5416,3.165231 +L 6.3523,3.165231,5.5289,4.766771 +L 5.5289,4.766837,4.2505,4.766837 +L 6.9967,3.165231,7.0563,3.535418 +L 7.0563,3.535418,7.126,3.888487 +L 7.126,3.888487,7.21,4.232975 +L 7.21,4.232975,5.7916,5.754112 +L 5.7916,5.754112,4.8322,6.436521 +L 4.8322,6.436521,4.2505,6.864367 +L 4.2505,6.864367,4.524,7.587624 +L 4.524,7.587624,4.8112,8.302342 +L 4.8112,8.302342,5.1016,8.999965 +L 7.6338,4.766837,7.3326,5.182249 +L 7.3326,5.182249,7.2276,5.597574 +L 7.2276,5.597574,7.21,6.36877 +L 7.21,6.36877,6.8423,6.471764 +L 6.8423,6.471764,6.485,6.557925 +L 6.485,6.557925,6.1422,6.635613 +L 6.1422,6.635613,6.2052,6.978854 +L 6.2052,6.978854,6.2717,7.322116 +L 6.2717,7.322116,6.3523,7.665268 +L 6.3523,7.665268,6.0826,7.768328 +L 6.0826,7.768328,5.8059,7.854466 +L 5.8059,7.854466,5.5289,7.932199 +L 0.864,5.834668,1.2878,5.937881 +L 1.2878,5.937881,1.7151,6.024107 +L 1.7151,6.024107,2.1455,6.101708 +L 2.1455,6.101708,1.8478,6.36726 +L 1.8478,6.36726,1.5641,6.624427 +L 1.5641,6.624427,1.2878,6.864367 +L 2.5416,5.834668,3.3962,5.834668 +L 2.5416,6.864367,1.9322,7.615906 +L 1.9322,7.615906,1.4944,7.892556 +L 1.4944,7.892556,0.864,7.932199 +L 2.5416,7.932199,2.398,8.302342 +L 2.398,8.302342,2.2681,8.655346 +L 2.2681,8.655346,2.1455,8.999965 + +[便] 40 +L 1.6852,0,1.6046,1.781106 +L 1.6046,1.781106,1.5349,3.545203 +L 1.5349,3.545203,1.4719,5.300938 +L 1.4719,5.300938,1.2614,5.137046 +L 1.2614,5.137046,1.0547,4.956232 +L 1.0547,4.956232,0.8625,4.766837 +L 2.5436,0,3.6154,0.405234 +L 3.6154,0.405234,4.1719,0.751407 +L 4.1719,0.751407,4.6763,1.334719 +L 4.6763,1.334719,4.3824,1.781106 +L 4.3824,1.781106,4.0949,2.210332 +L 4.0949,2.210332,3.8252,2.631326 +L 7.2085,0,6.4874,0.637052 +L 6.4874,0.637052,5.776,1.257052 +L 5.776,1.257052,5.0724,1.868711 +L 5.0724,1.868711,5.3561,2.622898 +L 5.3561,2.622898,5.3561,3.097459 +L 5.3561,3.097459,5.0724,3.699092 +L 5.0724,3.699092,3.3947,3.699092 +L 3.3947,3.699092,3.3947,6.864367 +L 3.3947,6.864367,4.5645,6.88142 +L 4.5645,6.88142,5.2682,7.254234 +L 5.2682,7.254234,5.4997,8.466082 +L 5.4997,8.466082,2.9674,8.466082 +L 5.927,3.699092,5.6324,4.232975 +L 5.6324,4.232975,5.3487,4.766837 +L 5.3487,4.766837,5.0724,5.300938 +L 5.0724,5.300938,3.8252,5.300938 +L 6.3575,3.699092,7.6358,3.699092 +L 7.6358,3.699092,7.6358,5.300938 +L 7.6358,5.300938,5.927,5.300938 +L 5.927,5.300938,5.6433,5.892634 +L 5.6433,5.892634,5.6433,6.298043 +L 5.6433,6.298043,5.927,6.864367 +L 5.927,6.864367,7.6358,6.864367 +L 7.6358,6.864367,7.6358,5.834668 +L 1.6852,5.834668,1.7976,7.113041 +L 1.7976,7.113041,2.0039,8.052355 +L 2.0039,8.052355,2.1163,8.999965 +L 5.927,8.466082,8.0631,8.466082 + +[利] 21 +L 2.5733,0,2.4892,1.411094 +L 2.4892,1.411094,2.4195,2.822078 +L 2.4195,2.822078,2.36,4.232975 +L 2.36,4.232975,1.8448,3.535418 +L 1.8448,3.535418,1.3513,2.820634 +L 1.3513,2.820634,0.8645,2.097334 +L 6.384,0,7.6378,0 +L 7.6378,0,7.6378,8.999965 +L 5.5294,2.097334,5.5294,7.932199 +L 3.8205,3.432293,3.2496,4.422327 +L 3.2496,4.422327,2.6959,5.403845 +L 2.6959,5.403845,2.1428,6.36877 +L 2.1428,6.36877,0.8645,6.36877 +L 3.0006,6.36877,2.6994,6.75717 +L 2.6994,6.75717,2.5877,7.16236 +L 2.5877,7.16236,2.5733,7.932199 +L 2.5733,7.932199,0.8645,7.932199 +L 3.3967,6.36877,4.2478,6.36877 +L 3.1827,7.932199,3.526,8.121594 +L 3.526,8.121594,3.8836,8.302342 +L 3.8836,8.302342,4.2478,8.466082 + +[不] 16 +L 4.2495,0,4.2355,3.749944 +L 4.2355,3.749944,4.1237,5.262718 +L 4.1237,5.262718,3.8225,5.834668 +L 3.8225,5.834668,2.8243,4.956232 +L 2.8243,4.956232,1.8401,4.069192 +L 1.8401,4.069192,0.8595,3.165231 +L 7.6363,2.898279,7.0553,3.699092 +L 7.0553,3.699092,6.4879,4.500059 +L 6.4879,4.500059,5.9275,5.300938 +L 4.2495,6.36877,4.523,6.815005 +L 4.523,6.815005,4.8102,7.244405 +L 4.8102,7.244405,5.1041,7.665268 +L 5.1041,7.665268,3.6789,7.768328 +L 3.6789,7.768328,2.2671,7.854466 +L 2.2671,7.854466,0.8595,7.932199 +L 5.5314,7.932199,7.6363,7.932199 + +[児] 15 +L 1.0783,0,1.5651,0.533883 +L 1.5651,0.533883,2.0593,1.067854 +L 2.0593,1.067854,2.5703,1.601649 +L 2.5703,1.601649,2.5703,3.165231 +L 5.1026,0,4.8049,0.473159 +L 4.8049,0.473159,4.6931,1.293762 +L 4.6931,1.293762,4.6788,3.165231 +L 5.5334,0,7.6632,0 +L 7.6632,0,7.6632,1.601649 +L 1.716,3.699092,1.716,8.999965 +L 3.8522,4.232975,3.8522,8.466082 +L 3.8522,8.466082,7.2429,8.466082 +L 7.2429,8.466082,7.2429,4.232975 +L 7.2429,4.232975,3.8522,4.232975 +L 4.2798,6.36877,6.8121,6.36877 + +# kan_10 ------------------------------------------------------- +# 働府治歴史料借結席欠熱冷選議良試験説果残念折約案連特機関信求願辞器産告泣笑覚伝焼別喜単飛建完成費位置 + +[働] 50 +L 2.6684,0.637074,1.6846,0.533861 +L 2.2972,2.115809,1.6846,2.135576 +L 2.6299,1.977419,2.2972,2.115809 +L 2.9626,1.601759,2.6299,1.977419 +L 3.3938,2.135576,3.0922,2.668102 +L 3.3938,3.699136,2.9626,4.069105 +L 4.5212,0.533861,4.6718,0.800792 +L 4.3745,0.26704,4.5212,0.533861 +L 4.2449,0,4.3745,0.26704 +L 4.6718,0.800792,3.6631,0.723147 +L 3.6631,0.723147,2.6684,0.637074 +L 6.7768,6.368771,5.4529,5.649739 +L 5.4809,7.504396,5.4988,9.000097 +L 5.3688,6.822076,5.4809,7.504396 +L 5.0676,6.368771,5.3688,6.822076 +L 6.7768,0.533861,6.7768,6.368771 +L 6.5631,0.370253,6.7768,0.533861 +L 6.3498,0.189308,6.5631,0.370253 +L 6.1323,0,6.3498,0.189308 +L 2.2972,6.882711,1.6846,6.902632 +L 2.9626,4.069105,2.5353,4.422415 +L 2.5353,4.422415,2.1084,4.766968 +L 1.6846,5.834778,2.2972,5.854676 +L 2.8789,7.631361,2.1084,7.970333 +L 5.3723,3.871566,5.0676,1.601759 +L 5.4529,5.649739,5.3723,3.871566 +L 3.0922,2.668102,2.812,3.19209 +L 3.2989,4.925213,2.9626,5.300939 +L 3.6249,4.786735,3.2989,4.925213 +L 4.2449,4.766968,3.6249,4.786735 +L 4.1605,4.422415,4.2449,4.766968 +L 4.0939,4.069105,4.1605,4.422415 +L 2.812,3.19209,2.5353,3.699136 +L 2.5353,3.699136,1.6846,3.699136 +L 1.6846,3.699136,1.6846,5.834778 +L 4.0274,3.699136,4.0939,4.069105 +L 3.4985,5.696409,4.1328,5.973278 +L 2.9626,5.300939,3.4985,5.696409 +L 2.6299,5.992979,2.9626,6.368771 +L 2.2972,5.854676,2.6299,5.992979 +L 2.6299,6.744452,2.2972,6.882711 +L 2.9626,6.368771,2.6299,6.744452 +L 3.8628,7.063569,2.8789,7.631361 +L 4.6718,6.368771,3.8628,7.063569 +L 4.1328,5.973278,4.6718,6.368771 +L 3.9468,8.312149,4.2449,8.466126 +L 3.6631,8.149855,3.9468,8.312149 +L 3.3938,7.970333,3.6631,8.149855 +L 0.8615,0,0.8615,6.597568 +A -6.6726,10.627795,8.540417,321.41046,349.01228 + +[府] 10 +L 5.5249,0,6.376,0 +L 7.2341,7.970333,0.8562,7.970333 +L 4.0469,8.999835,4.0469,7.970333 +L 0.8562,7.970333,0.8562,4.538061 +L 2.5653,0,2.5653,4.500191 +L 3.8157,5.300939,6.8068,5.300939 +L 6.376,0,6.376,6.902632 +L 4.2465,3.699136,5.0976,2.66959 +A -11.8472,4.538061,12.703326,339.25315,0 +A -4.9614,8.53044,8.540417,321.41046,349.01228 + +[治] 20 +L 5.4113,5.583433,3.5936,5.323573 +L 6.8057,6.368771,5.4113,5.583433 +L 7.11,5.953402,6.8057,6.368771 +L 7.219,5.538164,7.11,5.953402 +L 7.2361,4.766968,7.219,5.538164 +L 3.5936,5.323573,2.14,5.300939 +L 4.1575,7.976133,4.2734,9.000097 +L 3.8601,6.75717,4.1575,7.976133 +L 3.4184,5.834778,3.8601,6.75717 +L 1.2855,7.970485,0.4592,8.999944 +L 0.8582,5.834778,0.0351,6.902544 +L 1.2855,3.73751,0.0351,0.26704 +L 2.9946,3.20343,2.9946,0 +L 2.9946,0,6.8057,0 +L 6.8057,0,6.8057,3.20343 +L 6.8057,3.20343,2.9946,3.20343 +L 2.9946,3.20343,2.9946,0 +L 2.9946,0,6.8057,0 +L 6.8057,0,6.8057,3.20343 +L 6.8057,3.20343,2.9946,3.20343 + +[歴] 15 +L 1.4797,6.402655,3.9458,6.402655 +L 2.7613,3.73302,2.7613,7.50001 +L 1.4797,4.800852,2.7613,6.082353 +L 3.6162,5.334823,2.7613,6.189762 +L 4.1798,6.402655,6.6459,6.402655 +L 5.4613,3.73302,5.4613,7.50001 +L 4.1798,4.800852,5.4613,6.082353 +L 6.7429,4.800852,5.4613,6.082353 +L 7.2612,9.000017,0.9614,9.000017 +L 0.9614,4.500021,0.9614,9.000017 +L 0.9614,0,7.2612,0 +L 6.8812,1.500007,4.1115,1.500007 +L 2.4023,2.645885,2.4023,0 +L 4.1115,3.14993,4.1115,0 +A -10.7379,4.500021,11.699207,337.77149,0 + +[史] 20 +L 0.9217,4.766968,0.9217,7.436493 +L 3.0547,4.766968,0.9217,4.766968 +L 3.3349,4.333321,3.0547,4.766968 +L 3.4365,3.789609,3.3349,4.333321 +L 3.447,2.66959,3.4365,3.789609 +L 6.0146,0,3.447,1.601759 +L 6.0146,4.766968,3.8781,4.766968 +L 3.8781,4.766968,3.2932,6.594635 +L 3.2932,6.594635,4.5432,7.312134 +L 4.5432,7.312134,6.0146,7.436493 +L 6.0146,7.436493,6.0146,4.766968 +L 0.9217,7.436493,2.2004,7.401184 +L 1.9062,3.089009,1.3455,3.699136 +L 2.4736,2.47897,1.9062,3.089009 +L 3.0547,1.868733,2.4736,2.47897 +L 1.9479,0.909718,3.0547,1.868733 +L 1.1704,0.425176,1.9479,0.909718 +L 0.0639,0,1.1704,0.425176 +L 2.2004,7.401184,3.1037,7.71334 +L 3.1037,7.71334,3.447,9.000097 + +[料] 10 +L 1.3794,9.000097,1.3794,0 +L 2.6294,8.466126,2.1989,7.169475 +L 0.094,8.466126,0.5209,7.169475 +L 0.094,5.834778,2.6294,5.834778 +L 0.094,2.135576,1.3794,4.652613 +L 2.6294,3.699136,1.3794,5.234392 +L 3.4843,2.66959,7.2947,3.699136 +L 6.0166,9.000097,6.0166,0 +L 3.9043,8.466126,4.7624,7.436493 +L 3.9043,6.368771,4.7624,5.300939 + +[借] 19 +L 6.4736,3.699136,6.4736,0 +L 3.0867,3.699136,6.4736,3.699136 +L 3.0867,0,3.0867,3.699136 +L 6.4736,0,3.0867,0 +L 3.5105,2.135576,6.0428,2.135576 +L 2.2321,5.300939,3.9417,5.300939 +L 3.493,7.323473,2.6594,7.436493 +L 3.8572,6.735937,3.493,7.323473 +L 3.9417,5.300939,3.8572,6.735937 +L 4.3371,5.300939,5.6193,5.300939 +L 5.6193,5.300939,5.1812,7.251454 +L 5.1812,7.251454,4.376,7.685101 +L 4.376,7.685101,3.9417,9.000097 +L 5.633,8.255717,5.6193,9.000097 +L 5.7451,7.850396,5.633,8.255717 +L 6.0428,7.436493,5.7451,7.850396 +L 6.0428,5.300939,7.3247,5.300939 +L 0.9467,0,0.9467,6.597568 +A -6.5801,10.627795,8.540417,321.41046,349.01228 + +[結] 28 +L 6.5004,0,3.9363,0 +L 6.5004,3.20343,6.5004,0 +L 3.9363,3.20343,6.5004,3.20343 +L 3.9363,0,3.9363,3.20343 +L 4.3286,7.484586,3.0852,7.436493 +L 5.0119,7.057965,4.3286,7.484586 +L 5.2217,5.300939,5.0119,7.057965 +L 3.5164,5.300939,5.2217,5.300939 +L 5.6455,5.300939,6.8994,5.300939 +L 6.0766,7.436493,7.3267,7.436493 +L 5.6455,7.436493,5.3513,7.850396 +L 5.3513,7.850396,5.2392,8.255717 +L 5.2392,8.255717,5.2217,9.000097 +L 1.4114,8.999944,0.5845,7.131385 +L 2.2621,5.301092,2.6894,4.500059 +L 1.4114,4.767012,1.4114,0 +L 0.5845,3.165406,0.1572,1.334959 +L 2.2621,3.165406,2.6894,1.868733 +L 0.1572,4.767012,2.5493,4.767012 +L 0.5845,7.131385,1.3865,6.130691 +L 2.2621,7.932309,0.7175,4.767012 +L 7.3267,7.436493,3.0852,7.436493 +L 6.8994,5.300939,3.5164,5.300939 +L 5.2217,9.000097,5.2217,5.300939 +L 3.9363,3.20343,3.9363,0 +L 3.9363,0,6.5004,0 +L 6.5004,0,6.5004,3.20343 +L 6.5004,3.20343,3.9363,3.20343 + +[席] 29 +L 6.5056,3.20343,5.3081,3.221818 +L 6.5056,0.533861,6.5056,3.20343 +L 5.6475,0.533861,6.5056,0.533861 +L 4.7579,3.35038,4.3936,3.699136 +L 5.665,7.199245,5.6475,7.970333 +L 5.7739,6.784095,5.665,7.199245 +L 6.0751,6.368771,5.7739,6.784095 +L 6.5056,6.368771,7.3567,6.368771 +L 4.3936,0,4.3096,2.339047 +L 4.3096,2.339047,3.7495,3.12712 +L 4.3936,3.699136,4.3936,4.766968 +L 4.3936,4.766968,3.1152,4.766968 +L 3.1152,4.766968,2.8806,6.097615 +L 2.2641,3.20343,2.2641,0.533861 +L 3.7495,3.12712,2.2641,3.20343 +L 2.8806,6.097615,2.2715,6.411128 +L 2.2715,6.411128,1.4099,6.368771 +L 3.2448,7.091764,3.1152,7.436493 +L 3.3923,6.738782,3.2448,7.091764 +L 3.5425,6.368771,3.3923,6.738782 +L 7.3882,7.970333,1.0103,7.970333 +L 4.1975,8.999835,4.1975,7.970333 +L 1.0103,7.970333,1.0103,4.538061 +L 4.5481,6.470298,3.5425,6.368771 +L 5.3323,6.216042,4.5481,6.470298 +L 5.6475,4.766968,5.3323,6.216042 +L 4.8244,4.766968,5.6475,4.766968 +L 5.3081,3.221818,4.7579,3.35038 +A -11.6931,4.538061,12.703326,339.25315,0 + +[欠] 14 +L 1.1523,6.702116,0.1577,5.300939 +L 2.0105,7.230352,1.1523,6.702116 +L 3.5725,7.436493,2.0105,7.230352 +L 3.2363,4.389732,3.5725,7.436493 +L 2.1435,2.309385,3.2363,4.389732 +L 0.1577,0,2.1435,2.309385 +L 6.9629,0,5.1416,2.114386 +L 5.1416,2.114386,4.3644,3.211814 +L 4.3644,3.211814,3.9683,4.233129 +L 4.8229,7.358826,3.9683,7.436493 +L 5.6775,7.272687,4.8229,7.358826 +L 6.5325,7.169475,5.6775,7.272687 +L 5.2537,4.766968,6.5325,7.169475 +L 1.8672,7.970333,1.8672,9.000097 + +[熱] 46 +L 4.8463,7.587624,5.2067,8.086176 +L 5.2067,8.086176,5.2802,9.000097 +L 5.5464,7.255613,5.2771,6.600326 +L 6.531,7.436493,5.5464,7.255613 +L 6.5485,4.788136,6.531,7.436493 +L 6.6567,3.690664,6.5485,4.788136 +L 6.9614,3.20343,6.6567,3.690664 +L 6.8073,1.170913,6.531,1.601759 +L 7.0875,0.723147,6.8073,1.170913 +L 7.3887,0.26704,7.0875,0.723147 +L 5.2802,0.26704,5.1335,0.723147 +L 5.1335,0.723147,4.986,1.170913 +L 4.986,1.170913,4.8564,1.601759 +L 4.8564,4.500059,4.7062,4.766968 +L 4.7062,4.766968,4.5552,5.033898 +L 4.5552,5.033898,4.426,5.300939 +L 4.0022,2.935033,4.426,3.726062 +L 3.5749,2.135576,4.0022,2.935033 +L 2.2965,3.20343,3.1476,3.20343 +L 2.2965,4.233129,2.03,4.865978 +L 2.03,4.865978,2.03,5.557931 +L 2.03,5.557931,2.2965,6.902632 +L 2.2965,6.902632,0.1915,5.300939 +L 0.1915,6.902632,1.0426,6.902632 +L 1.5641,7.812306,1.2314,7.950631 +L 1.8972,7.436493,1.5641,7.812306 +L 2.0793,8.237416,2.0163,8.502924 +L 2.0163,8.502924,1.9568,8.759982 +L 1.9568,8.759982,1.8972,9.000097 +L 1.2314,7.950631,0.6153,7.970333 +L 1.312,4.200644,0.6153,4.233129 +L 1.7463,3.820693,1.312,4.200644 +L 1.8972,2.66959,1.7463,3.820693 +L 0.6153,2.66959,1.8972,2.66959 +L 0.7446,1.067919,1.0426,1.601759 +L 0.4609,0.533861,0.7446,1.067919 +L 0.1915,0,0.4609,0.533861 +L 3.1476,0.26704,2.9966,0.723147 +L 2.9966,0.723147,2.8495,1.170913 +L 2.8495,1.170913,2.7164,1.601759 +L 2.7164,5.834778,3.5749,5.834778 +L 3.5749,5.834778,3.5749,6.902632 +L 3.5749,6.902632,2.7164,6.902632 +L 4.0022,7.436493,4.8463,7.587624 +L 5.2771,6.600326,5.2802,5.300939 +L 4.426,3.726062,4.8564,4.500059 + +[冷] 9 +L 1.0446,7.398338,0.2177,8.466126 +L 1.4649,4.271218,0.2177,0.800792 +L 6.9599,5.834778,4.6451,9.000097 +L 2.323,5.834778,4.6451,9.000097 +L 3.6046,6.000007,5.7095,6.000007 +L 2.7535,3.699136,6.5641,3.699136 +L 6.5641,3.699136,6.5641,1.067919 +L 6.5641,1.067919,5.7095,1.067919 +L 4.4592,3.699136,4.4592,0 + +[選] 34 +L 4.4577,8.466126,2.7803,8.466126 +L 4.4577,7.436493,4.4577,8.466126 +L 2.7803,7.436493,4.4577,7.436493 +L 2.8084,6.563507,2.7803,7.436493 +L 3.1096,6.021218,2.8084,6.563507 +L 4.0339,5.834778,3.1096,6.021218 +L 4.4717,4.471733,4.0339,5.834778 +L 5.2986,4.134097,4.4717,4.471733 +L 5.7434,2.66959,5.2986,4.134097 +L 4.4577,2.66959,5.7434,2.66959 +L 2.3527,2.66959,4.0339,2.66959 +L 3.4703,4.200644,2.7803,4.233129 +L 3.8903,3.820693,3.4703,4.200644 +L 4.0339,2.66959,3.8903,3.820693 +L 3.6735,1.437866,4.0339,1.601759 +L 3.3337,1.257139,3.6735,1.437866 +L 2.9936,1.067919,3.3337,1.257139 +L 6.0127,1.437866,5.7434,1.601759 +L 6.2964,1.257139,6.0127,1.437866 +L 6.5945,1.067919,6.2964,1.257139 +L 6.1672,2.66959,7.4176,2.66959 +L 6.1672,5.834778,7.0215,5.834778 +L 6.1672,4.233129,5.6629,5.249956 +L 5.6629,5.249956,5.3932,6.444992 +L 5.3932,6.444992,5.3126,7.436493 +L 5.3126,7.436493,7.0215,7.436493 +L 7.0215,7.436493,7.0215,8.466126 +L 7.0215,8.466126,5.3126,8.466126 +L 5.3018,-0.015148,7.4347,-0.015148 +L 1.4841,1.05253,0.4298,0 +L 0.2306,4.751733,1.4841,4.751733 +L 1.4841,1.05253,1.4841,4.751733 +L 0.6614,8.489155,1.4841,7.421257 +A 5.3018,7.347837,7.362973,238.75988,270 + +[議] 51 +L 4.0607,1.601759,2.7823,1.601759 +L 4.0607,0,4.0607,1.601759 +L 3.2061,0,4.0607,0 +L 2.7823,3.699136,3.3984,3.728776 +L 3.2061,4.689345,2.7823,4.766968 +L 3.6369,4.603229,3.2061,4.689345 +L 4.0607,4.500059,3.6369,4.603229 +L 3.7276,3.936537,4.0607,4.500059 +L 3.3984,3.728776,3.7276,3.936537 +L 4.4005,3.54389,4.0607,3.20343 +L 4.7784,3.613041,4.4005,3.54389 +L 5.5244,3.47036,4.7784,3.613041 +L 5.7419,2.858767,5.5244,3.47036 +L 5.9517,2.238723,5.7419,2.858767 +L 6.1657,1.601759,5.9517,2.238723 +L 6.2984,0.723147,5.9517,1.067919 +L 6.6525,0.370253,6.2984,0.723147 +L 7.02,0,6.6525,0.370253 +L 7.4473,0,7.4473,1.067919 +L 6.5962,3.699136,7.4473,3.699136 +L 6.1657,3.699136,6.0183,4.069105 +L 6.0183,4.069105,5.8676,4.422415 +L 5.8676,4.422415,5.7419,4.766968 +L 5.7419,6.902632,6.5962,6.902632 +L 6.7257,5.300939,6.5962,5.567847 +L 6.8697,5.033898,6.7257,5.300939 +L 7.02,4.766968,6.8697,5.033898 +L 6.5962,5.567847,5.3146,5.670994 +L 5.3146,5.670994,4.0397,5.757111 +L 4.0397,5.757111,2.7823,5.834778 +L 4.2989,7.752939,2.7823,7.970333 +L 4.9605,7.475983,4.2989,7.752939 +L 5.3423,6.902632,4.9605,7.475983 +L 5.5244,7.970333,6.1657,9.000097 +L 6.1657,7.970333,7.02,7.970333 +L 4.915,6.368771,4.5686,6.744452 +L 4.5686,6.744452,4.1269,6.882711 +L 4.1269,6.882711,3.2061,6.902632 +L 4.0607,3.20343,4.0607,2.135576 +L 4.0607,2.135576,4.915,2.135576 +L 5.2516,0.723147,4.915,0.533861 +L 5.5983,0.903983,5.2516,0.723147 +L 5.9517,1.067919,5.5983,0.903983 +L 0.2504,6.902524,2.7823,6.902524 +L 0.6774,8.504325,2.3554,8.504325 +L 0.6774,5.300971,2.3554,5.300971 +L 0.6774,4.233038,2.3554,4.233038 +L 0.6774,2.669536,2.3554,2.669536 +L 0.6774,0,0.6774,2.669536 +L 2.3554,0,0.6774,0 +L 2.3554,2.669536,2.3554,0 + +[良] 19 +L 1.534,0,1.534,7.970333 +L 0.2797,0,1.534,0 +L 2.1676,0,2.6618,0.189308 +L 2.6618,0.189308,3.1587,0.370253 +L 3.1587,0.370253,3.6631,0.533861 +L 4.3076,2.954887,3.6631,4.766968 +L 5.2501,1.583393,4.3076,2.954887 +L 6.6265,0,5.2501,1.583393 +L 1.534,7.970333,3.6631,7.970333 +L 3.6631,7.970333,3.6631,9.000097 +L 5.7681,6.368771,1.9543,6.368771 +L 3.6631,4.766968,1.9543,4.766968 +L 4.0939,4.766968,5.7681,4.766968 +L 5.7681,4.766968,5.7681,6.368771 +L 5.7681,7.970333,4.0939,7.970333 +L 5.7681,6.902632,5.7681,7.970333 +L 5.905,2.858767,6.1989,3.20343 +L 5.6178,2.505829,5.905,2.858767 +L 5.3443,2.135576,5.6178,2.505829 + +[試] 16 +L 0.2817,6.902544,2.814,6.902544 +L 0.7024,8.504347,2.3836,8.504347 +L 0.7024,5.301026,2.3836,5.301026 +L 0.7024,4.233041,2.3836,4.233041 +L 0.7024,2.66959,2.3836,2.66959 +L 0.7024,0,0.7024,2.66959 +L 2.3836,0,0.7024,0 +L 2.3836,2.66959,2.3836,0 +L 2.9786,6.000007,7.4796,6.000007 +L 7.4796,0,7.4796,1.500034 +L 6.6772,8.466148,7.2691,7.524229 +L 5.9,9.000075,5.9,6.000007 +L 2.9786,4.500059,5.231,4.500059 +L 2.9786,0,5.231,0.602925 +L 4.1064,4.500059,4.1064,0.301495 +A 18.0602,6.000007,12.164898,180,209.55264 + +[験] 59 +L 0.3083,1.067919,0.3083,2.66959 +L 1.1593,1.601759,1.1593,2.66959 +L 1.9859,1.601759,1.9859,2.66959 +L 1.9859,4.500059,1.1593,5.300851 +L 0.7394,3.699136,0.7394,8.466126 +L 1.5695,3.699136,0.7394,3.699136 +L 2.4171,3.699136,1.5695,3.699136 +L 3.2717,3.699136,2.4171,3.699136 +L 3.2892,2.011392,3.2717,3.699136 +L 2.9249,0.594716,3.2892,2.011392 +L 1.5621,0,2.9249,0.594716 +L 7.0855,6.902632,6.655,7.615928 +L 6.655,7.615928,6.2277,8.312149 +L 6.2277,8.312149,5.8004,9.000097 +L 5.8004,9.000097,5.5269,8.493073 +L 5.5269,8.493073,5.2506,7.96904 +L 5.2506,7.96904,4.9805,7.436493 +L 5.0965,6.487329,4.5676,6.605974 +L 4.5676,6.605974,4.1228,6.368771 +L 5.8004,6.368771,5.0965,6.487329 +L 5.7265,5.445043,5.8004,6.368771 +L 5.3766,4.927928,5.7265,5.445043 +L 4.5501,4.766968,5.3766,4.927928 +L 4.5501,4.260054,4.5501,4.766968 +L 4.5501,3.735934,4.5501,4.260054 +L 4.5501,3.20343,4.5501,3.735934 +L 5.1451,3.183728,4.5501,3.20343 +L 5.4709,3.045272,5.1451,3.183728 +L 5.8004,2.66959,5.4709,3.045272 +L 5.2292,1.791066,5.8004,2.66959 +L 4.6758,0.903983,5.2292,1.791066 +L 4.1228,0,4.6758,0.903983 +L 7.5058,0,7.0855,0.723147 +L 7.0855,0.723147,6.655,1.437866 +L 6.655,1.437866,6.2277,2.135576 +L 6.2277,3.20343,5.944,3.769798 +L 5.944,3.769798,5.944,4.175185 +L 5.944,4.175185,6.2277,4.766968 +L 6.2277,4.766968,6.5041,4.766968 +L 6.5041,4.766968,6.7878,4.766968 +L 6.7878,4.766968,7.0855,4.766968 +L 7.0855,4.766968,7.0855,4.260054 +L 7.0855,4.260054,7.0855,3.735934 +L 7.0855,3.735934,7.0855,3.20343 +L 7.0855,3.20343,6.7878,3.20343 +L 6.7878,3.20343,6.5041,3.20343 +L 6.5041,3.20343,6.2277,3.20343 +L 6.441,6.368771,6.655,6.557903 +L 6.655,6.557903,6.8722,6.738782 +L 6.8722,6.738782,7.0855,6.902632 +L 0.7394,8.466126,1.5695,8.466126 +L 1.5695,6.368771,1.1593,6.902632 +L 1.9894,5.834778,1.5695,6.368771 +L 2.4171,5.300939,1.9894,5.834778 +L 2.4171,6.902632,2.2661,7.272687 +L 2.2661,7.272687,2.1159,7.625888 +L 2.1159,7.625888,1.9859,7.970333 +L 1.5695,8.466126,2.4171,8.466126 +L 2.4171,8.466126,3.2717,8.466126 + +[説] 41 +L 3.7286,6.024063,3.7286,6.902632 +L 3.7286,5.136958,3.7286,6.024063 +L 3.7286,4.233129,3.7286,5.136958 +L 4.0022,4.233129,3.7286,4.233129 +L 4.275,4.233129,4.0022,4.233129 +L 4.5486,4.233129,4.275,4.233129 +L 4.4712,2.627123,4.5486,4.233129 +L 4.1104,1.478757,4.4712,2.627123 +L 3.2978,0,4.1104,1.478757 +L 5.8336,0,5.8336,1.411094 +L 5.8336,1.411094,5.8336,2.822079 +L 5.8336,2.822079,5.8336,4.233129 +L 5.8336,4.233129,5.5363,4.233129 +L 5.5363,4.233129,5.2561,4.233129 +L 5.2561,4.233129,4.979,4.233129 +L 5.1335,6.902632,5.8336,6.902632 +L 5.8336,6.902632,5.9636,7.615928 +L 5.9636,7.615928,6.1072,8.312149 +L 6.1072,8.312149,6.2574,9.000097 +L 6.3205,6.024063,6.2574,6.902632 +L 6.394,5.136958,6.3205,6.024063 +L 6.4714,4.233129,6.394,5.136958 +L 7.1124,1.067919,7.1124,1.601759 +L 7.1124,0.533861,7.1124,1.067919 +L 7.1124,0,7.1124,0.533861 +L 6.8147,0,7.1124,0 +L 6.5341,0,6.8147,0 +L 6.2574,0,6.5341,0 +L 4.254,8.759982,4.1248,9.000097 +L 4.3976,8.502924,4.254,8.759982 +L 4.5486,8.237416,4.3976,8.502924 +L 3.7286,6.902632,4.4326,6.902632 +L 4.4326,6.902632,5.1335,6.902632 +L 0.3071,6.902524,2.839,6.902524 +L 0.734,8.504325,2.4121,8.504325 +L 0.734,5.300971,2.4121,5.300971 +L 0.734,4.233038,2.4121,4.233038 +L 0.734,2.669536,2.4121,2.669536 +L 0.734,0,0.734,2.669536 +L 2.4121,0,0.734,0 +L 2.4121,2.669536,2.4121,0 + +[果] 42 +L 1.3879,1.437866,0.3403,0.533861 +L 2.4452,2.324927,1.3879,1.437866 +L 3.5138,3.20343,2.4452,2.324927 +L 3.5734,2.135576,3.5138,3.20343 +L 3.6431,1.067919,3.5734,2.135576 +L 3.7271,0,3.6431,1.067919 +L 4.5782,2.76998,2.9566,3.522657 +L 2.9566,3.522657,0.3403,3.699136 +L 1.1914,5.300939,1.1914,6.367348 +L 1.1914,6.367348,1.1914,7.425285 +L 1.1914,7.425285,1.1914,8.466126 +L 1.1914,8.466126,2.8834,8.466126 +L 2.8834,8.466126,4.5821,8.466126 +L 4.5821,8.466126,6.2913,8.466126 +L 6.2913,8.466126,6.2913,7.425285 +L 6.2913,7.425285,6.2913,6.367348 +L 6.2913,6.367348,6.2913,5.300939 +L 6.2913,5.300939,5.5628,5.300939 +L 5.5628,5.300939,4.8549,5.300939 +L 4.8549,5.300939,4.1544,5.300939 +L 4.1544,5.300939,3.8571,5.834778 +L 3.8571,5.834778,3.5734,6.368771 +L 3.5734,6.368771,3.2963,6.902632 +L 3.2963,6.902632,2.7324,6.902632 +L 2.7324,6.902632,2.1721,6.902632 +L 2.1721,6.902632,1.6222,6.902632 +L 2.5958,5.300939,1.8957,5.300939 +L 3.2963,5.300939,2.5958,5.300939 +L 3.4333,5.033898,3.2963,5.300939 +L 3.5734,4.766968,3.4333,5.033898 +L 3.7271,4.500059,3.5734,4.766968 +L 4.5821,3.699136,5.4157,3.699136 +L 5.4157,3.699136,6.2594,3.699136 +L 6.2594,3.699136,7.1179,3.699136 +L 6.6867,0.533861,4.5782,2.76998 +L 4.5821,6.902632,5.0094,6.902632 +L 5.0094,6.902632,5.4367,6.902632 +L 5.4367,6.902632,5.864,6.902632 +L 4.1544,6.902632,4.0038,7.272687 +L 4.0038,7.272687,3.8571,7.625888 +L 3.8571,7.625888,3.7271,7.970333 +L 1.8957,5.300939,1.1914,5.300939 + +[残] 66 +L 0.6438,8.466126,0.3703,8.466126 +L 0.9205,8.466126,0.6438,8.466126 +L 1.1934,8.466126,0.9205,8.466126 +L 1.1934,7.959059,1.1934,8.466126 +L 1.1934,7.435049,1.1934,7.959059 +L 1.1934,6.902632,1.1934,7.435049 +L 1.1934,6.101774,1.0533,5.670994 +L 1.0533,5.670994,0.9205,5.22314 +L 0.9205,5.22314,0.7979,4.766968 +L 0.9801,4.233129,0.7696,4.069105 +L 1.3268,3.812112,0.9801,4.233129 +L 1.6802,3.38269,1.3268,3.812112 +L 2.0518,2.936434,1.6802,3.38269 +L 1.4806,1.971793,2.0518,2.936434 +L 0.9205,0.990209,1.4806,1.971793 +L 0.3703,0,0.9205,0.990209 +L 0.5664,3.888553,0.3703,3.699136 +L 0.7696,4.069105,0.5664,3.888553 +L 1.6207,6.204921,1.1934,6.101774 +L 2.0518,6.290972,1.6207,6.204921 +L 2.4753,6.368771,2.0518,6.290972 +L 2.4753,5.490268,2.4753,6.368771 +L 2.4753,4.603229,2.4753,5.490268 +L 2.4753,3.699136,2.4753,4.603229 +L 4.0304,3.699136,3.3302,3.699136 +L 4.7343,3.699136,4.0304,3.699136 +L 5.4352,3.699136,4.7343,3.699136 +L 5.4527,2.954887,5.4352,3.699136 +L 5.5613,2.549522,5.4527,2.954887 +L 5.866,2.135576,5.5613,2.549522 +L 6.2863,2.135576,6.5665,2.505829 +L 6.5665,2.505829,6.8463,2.858767 +L 6.8463,2.858767,7.144,3.20343 +L 6.6505,4.213318,7.5748,4.233129 +L 6.2092,4.074993,6.6505,4.213318 +L 5.866,3.699136,6.2092,4.074993 +L 5.866,5.834778,6.2863,5.834778 +L 6.2863,5.834778,6.7167,5.834778 +L 6.7167,5.834778,7.144,5.834778 +L 6.9938,7.436493,7.5748,7.436493 +L 6.419,7.436493,6.9938,7.436493 +L 5.866,7.436493,6.419,7.436493 +L 5.4352,6.902632,5.1375,7.336169 +L 5.1375,7.336169,5.025,7.880034 +L 5.025,7.880034,5.0079,9.000097 +L 4.885,6.368771,4.6118,6.902632 +L 4.6118,6.902632,4.1848,6.902632 +L 4.1848,6.902632,3.761,6.902632 +L 3.761,6.902632,3.3302,6.902632 +L 2.4753,8.466126,2.9029,8.466126 +L 2.0518,8.466126,2.4753,8.466126 +L 1.6207,8.466126,2.0518,8.466126 +L 7.144,0,6.633,0.533861 +L 6.633,0.533861,6.1388,1.067919 +L 6.1388,1.067919,5.652,1.601759 +L 5.652,1.601759,4.5876,0.850286 +L 4.5876,0.850286,3.9848,0.573439 +L 3.9848,0.573439,3.3302,0.533861 +L 4.3736,5.271168,3.761,5.300939 +L 4.6993,5.063516,4.3736,5.271168 +L 5.0079,4.500059,4.6993,5.063516 +L 5.4352,5.300939,5.1651,5.834778 +L 5.1651,5.834778,4.885,6.368771 +L 7.5748,0.533861,7.5748,1.067919 +L 7.5748,1.067919,7.5748,1.601759 +L 7.5748,0,7.5748,0.533861 + +[念] 33 +L 6.4806,6.466248,7.1744,6.368771 +L 5.5948,7.148264,6.4806,6.466248 +L 3.7595,9.000097,5.5948,7.148264 +L 2.3722,7.504396,3.7595,9.000097 +L 1.4934,6.822076,2.3722,7.504396 +L 0.3726,6.368771,1.4934,6.822076 +L 2.9116,4.689345,1.6545,4.766968 +L 4.1833,4.603229,2.9116,4.689345 +L 5.4649,4.500059,4.1833,4.603229 +L 5.1671,4.079043,5.4649,4.500059 +L 4.8873,3.64973,5.1671,4.079043 +L 4.6138,3.20343,4.8873,3.64973 +L 4.1833,1.868733,4.0362,2.135576 +L 4.0362,2.135576,3.8853,2.402594 +L 3.8853,2.402594,3.7595,2.66959 +L 2.5263,1.1469,2.5088,2.66959 +L 2.6349,0.454925,2.5263,1.1469 +L 2.9326,0,2.6349,0.454925 +L 3.3599,0,4.0642,0 +L 4.0642,0,4.7647,0 +L 4.7647,0,5.4649,0 +L 5.4649,0,5.4649,0.370253 +L 5.4649,0.370253,5.4649,0.723147 +L 5.4649,0.723147,5.4649,1.067919 +L 6.5961,1.704906,6.3233,2.135576 +L 6.8798,1.257139,6.5961,1.704906 +L 7.1744,0.800792,6.8798,1.257139 +L 4.1833,6.368771,5.0376,6.368771 +L 3.3389,6.368771,4.1833,6.368771 +L 2.5088,6.368771,3.3389,6.368771 +L 0.6455,1.524004,0.7999,2.135576 +L 0.5022,0.903983,0.6455,1.524004 +L 0.3726,0.26704,0.5022,0.903983 + +[折] 19 +L 6.318,0,6.318,1.781084 +L 6.318,1.781084,6.318,3.545269 +L 6.318,3.545269,6.318,5.300939 +L 6.318,5.300939,5.6178,5.300939 +L 5.6178,5.300939,4.917,5.300939 +L 4.917,5.300939,4.2165,5.300939 +L 3.8452,5.269723,3.7857,7.970333 +L 3.7857,7.970333,5.4108,8.098873 +L 5.4108,8.098873,6.3884,8.337652 +L 6.3884,8.337652,7.1726,8.466126 +L 7.3056,5.300939,7.6037,5.300939 +L 7.0254,5.300939,7.3056,5.300939 +L 6.7491,5.300939,7.0254,5.300939 +L 3.7125,2.840554,3.8452,5.269723 +L 2.9346,0.26704,3.7125,2.840554 +L 1.8821,9.000224,1.8821,0.000083 +L 1.8821,0.000083,1.0583,0.000083 +L 0.4023,3.699278,3.3615,5.548912 +L 0.4023,6.902632,3.3615,6.902632 + +[約] 14 +L 1.6827,8.999943,0.8589,7.131357 +L 2.537,5.30107,2.9643,4.500046 +L 1.6827,4.766979,1.6827,0 +L 0.8589,3.165377,0.432,1.334942 +L 2.537,3.165377,2.9643,1.86871 +L 0.432,4.766979,2.8217,4.766979 +L 0.8589,7.131357,1.6596,6.130658 +L 2.537,7.932282,0.9955,4.766979 +L 3.8217,7.50001,7.632,7.50001 +L 7.632,7.50001,7.632,3.000014 +L 6.7322,0,5.8321,0 +L 4.9319,4.500021,5.8321,3.000014 +A -1.4177,9.000017,5.44975,326.5996,0 +A 2.1825,3.000014,5.44975,326.5996,0 + +[案] 48 +L 7.1384,7.063569,7.2046,7.970333 +L 6.7951,6.538201,7.1384,7.063569 +L 5.9542,6.368771,6.7951,6.538201 +L 5.5234,6.101774,4.6723,6.290972 +L 4.6723,6.290972,3.818,6.47172 +L 3.818,6.47172,2.9635,6.635592 +L 2.9635,6.635592,3.0962,6.902632 +L 3.0962,6.902632,3.2398,7.169475 +L 3.2398,7.169475,3.3943,7.436493 +L 2.6934,7.970333,3.818,7.970333 +L 1.5621,7.970333,2.6934,7.970333 +L 0.4347,7.970333,1.5621,7.970333 +L 0.5884,6.792414,0.4347,7.970333 +L 1.2119,6.402657,0.5884,6.792414 +L 2.5673,6.368771,1.2119,6.402657 +L 2.5673,6.024063,2.5673,6.368771 +L 2.5673,5.670994,2.5673,6.024063 +L 2.5673,5.300939,2.5673,5.670994 +L 3.8005,5.139957,2.5673,5.300939 +L 5.0471,4.622974,3.8005,5.139957 +L 6.3815,3.699136,5.0471,4.622974 +L 5.5059,2.66959,6.3535,2.66959 +L 4.6723,2.66959,5.5059,2.66959 +L 4.308,2.053816,2.6657,2.522685 +L 2.6657,2.522685,0.4347,2.66959 +L 2.1964,3.837592,0.8585,3.699136 +L 3.0542,4.094563,2.1964,3.837592 +L 3.818,4.233129,3.0542,4.094563 +L 3.818,3.889867,3.818,4.233129 +L 3.818,3.546714,3.818,3.889867 +L 3.818,3.20343,3.818,3.546714 +L 3.6671,1.437866,3.6076,2.135576 +L 3.7375,0.723147,3.6671,1.437866 +L 3.818,0,3.7375,0.723147 +L 3.6076,2.135576,2.5397,1.601759 +L 2.5397,1.601759,1.4781,1.067919 +L 1.4781,1.067919,0.4347,0.533861 +L 6.3815,0.533861,4.308,2.053816 +L 6.3535,2.66959,7.2046,2.66959 +L 7.2046,7.970333,6.2102,7.970333 +L 6.2102,7.970333,5.2257,7.970333 +L 5.2257,7.970333,4.2453,7.970333 +L 3.818,7.970333,3.818,8.313704 +L 3.818,8.313704,3.818,8.656813 +L 3.818,8.656813,3.818,9.000097 +L 5.233,5.567847,5.3766,5.834778 +L 5.3766,5.834778,5.5234,6.101774 +L 5.1031,5.300939,5.233,5.567847 + +[連] 69 +L 6.8073,7.970333,7.2349,7.970333 +L 6.3835,7.970333,6.8073,7.970333 +L 5.9527,7.970333,6.3835,7.970333 +L 5.3121,8.237416,5.2526,8.502924 +L 5.2526,8.502924,5.1892,8.759982 +L 5.1892,8.759982,5.13,9.000097 +L 5.13,7.169475,4.979,7.436493 +L 4.979,7.436493,4.8323,7.703489 +L 4.8323,7.703489,4.7023,7.970333 +L 4.7023,7.970333,4.1248,7.970333 +L 4.1248,7.970333,3.5539,7.970333 +L 3.5539,7.970333,2.9966,7.970333 +L 3.4239,6.368771,4.3381,6.398454 +L 4.3381,6.398454,4.7829,6.605974 +L 4.7829,6.605974,5.13,7.169475 +L 5.13,5.834778,5.4557,6.190802 +L 5.4557,6.190802,5.8932,6.190802 +L 5.8932,6.190802,6.8073,5.834778 +L 6.8073,5.300939,5.8932,5.320706 +L 5.8932,5.320706,5.4557,5.459228 +L 5.4557,5.459228,5.13,5.834778 +L 4.916,4.984602,4.482,5.261405 +L 4.482,5.261405,3.8512,5.300939 +L 3.8512,4.233129,3.4239,4.233129 +L 3.4239,4.233129,3.4239,4.95645 +L 3.4239,4.95645,3.4239,5.670994 +L 3.4239,5.670994,3.4239,6.368771 +L 4.275,4.233129,3.8512,4.233129 +L 4.7023,4.233129,4.275,4.233129 +L 4.979,3.726062,4.7023,4.233129 +L 5.2526,3.202072,4.979,3.726062 +L 5.5289,2.66959,5.2526,3.202072 +L 5.9527,2.66959,6.3835,2.66959 +L 6.3835,2.66959,6.8073,2.66959 +L 6.8073,2.66959,7.2349,2.66959 +L 6.8073,4.233129,6.8073,4.603229 +L 6.8073,4.603229,6.8073,4.95645 +L 6.8073,4.95645,6.8073,5.300939 +L 6.5134,4.233129,6.8073,4.233129 +L 6.2297,4.233129,6.5134,4.233129 +L 5.9527,4.233129,6.2297,4.233129 +L 5.5289,4.233129,4.916,4.984602 +L 4.7867,2.517081,3.9703,2.771271 +L 3.9703,2.771271,2.9966,2.66959 +L 2.9966,0,2.6989,0.189308 +L 2.6989,0.189308,2.4152,0.370253 +L 2.4152,0.370253,2.142,0.533861 +L 1.7151,1.067919,1.7151,2.315077 +L 1.7151,2.315077,1.7151,3.545269 +L 1.7151,3.545269,1.7151,4.766968 +L 1.7151,4.766968,1.2878,4.766968 +L 1.2878,4.766968,0.8671,4.766968 +L 0.8671,4.766968,0.4612,4.766968 +L 1.1617,8.122908,0.8917,8.466126 +L 1.4415,7.779777,1.1617,8.122908 +L 1.7151,7.436493,1.4415,7.779777 +L 4.8253,0,6.2364,0 +L 3.4239,0,4.8253,0 +L 1.3575,0.723147,1.7151,1.067919 +L 1.0107,0.370253,1.3575,0.723147 +L 0.6745,0,1.0107,0.370253 +L 6.2364,0,7.6622,0 +L 5.13,1.067919,4.7867,2.517081 +L 5.5464,-0.015148,7.6798,-0.015148 +L 1.7291,1.05253,0.6745,0 +L 0.4752,4.751733,1.7291,4.751733 +L 1.7291,1.05253,1.7291,4.751733 +L 0.906,8.489155,1.7291,7.421257 +A 5.5464,7.347837,7.362973,238.75988,270 + +[特] 11 +L 1.8151,9.000053,1.8151,0 +L 0.4628,3.451316,3.1632,3.451316 +L 2.6838,6.902566,0.943,6.902566 +L 3.8462,7.970485,7.2646,7.970485 +L 5.5558,0,6.4135,0 +L 3.8462,2.66959,4.7047,1.601671 +L 5.5558,8.999944,5.5558,5.834778 +L 3.4543,5.834778,7.6607,5.834778 +L 3.4543,3.73751,7.6607,3.73751 +L 6.4135,0,6.4135,5.334781 +A -4.0868,9.000053,5.44975,326.5996,0 + +[機] 43 +L 4.9483,0,5.4352,0.370253 +L 5.4352,0.370253,5.922,0.723147 +L 5.922,0.723147,6.4089,1.067919 +L 6.4089,1.067919,5.8306,2.233141 +L 5.8306,2.233141,5.6208,2.915353 +L 5.6208,2.915353,5.5924,3.699136 +L 5.5924,3.699136,6.1388,3.802349 +L 6.1388,3.802349,6.6961,3.888553 +L 6.6961,3.888553,7.2666,3.966155 +L 7.2666,3.966155,6.6011,5.677978 +L 6.6011,5.677978,6.4719,7.288208 +L 6.4719,7.288208,6.8393,9.000097 +L 2.5978,0,3.2003,1.204734 +L 3.2003,1.204734,3.4209,2.163902 +L 3.4209,2.163902,3.4528,3.699136 +L 3.4528,3.699136,4.0128,3.699136 +L 4.0128,3.699136,4.5841,3.699136 +L 4.5841,3.699136,5.1616,3.699136 +L 5.1616,3.699136,4.9904,4.846145 +L 4.9904,4.846145,4.7662,5.399774 +L 4.7662,5.399774,4.3039,5.834778 +L 4.3039,5.834778,3.7712,5.439395 +L 3.7712,5.439395,3.1372,5.162395 +L 3.1372,5.162395,2.5978,4.766968 +L 3.4528,5.834778,3.6594,6.723131 +L 3.6594,6.723131,3.6734,7.781178 +L 3.6734,7.781178,3.8832,9.000097 +L 5.1616,7.959059,5.1616,9.000097 +L 5.1616,6.901188,5.1616,7.959059 +L 5.1616,5.834778,5.1616,6.901188 +L 4.7343,1.601759,4.4366,1.791066 +L 4.4366,1.791066,4.1564,1.971793 +L 4.1564,1.971793,3.8832,2.135576 +L 6.9689,1.971793,7.1164,2.324927 +L 7.1164,2.324927,7.2666,2.66959 +L 6.8393,1.601759,6.9689,1.971793 +L 7.6939,0.723147,7.6939,1.067919 +L 7.6939,0.370253,7.6939,0.723147 +L 7.6939,0,7.6939,0.370253 +L 1.7783,0,1.7783,9.000075 +L 1.7783,5.150093,0.4929,3.165209 +L 2.5978,4.500059,1.7783,6.048362 +L 2.5978,6.902719,0.4929,6.902719 + +[関] 29 +L 2.7613,4.233129,2.2009,4.233129 +L 3.3322,4.233129,2.7613,4.233129 +L 3.9098,4.233129,3.3322,4.233129 +L 3.9098,3.889867,3.9098,4.233129 +L 3.9098,3.546714,3.9098,3.889867 +L 3.9098,3.20343,3.9098,3.546714 +L 3.4093,2.175241,1.7771,0.533861 +L 1.7771,2.66959,2.2009,2.66959 +L 2.2009,2.66959,2.6314,2.66959 +L 2.6314,2.66959,3.0552,2.66959 +L 4.5686,2.019776,3.4093,2.175241 +L 6.442,0,4.5686,2.019776 +L 4.9503,4.95645,5.1636,5.300939 +L 4.7433,4.603229,4.9503,4.95645 +L 4.5511,4.233129,4.7433,4.603229 +L 4.7609,2.66959,5.171,2.66959 +L 5.171,2.66959,5.5909,2.66959 +L 5.5909,2.66959,6.0147,2.66959 +L 0.5264,0,0.5264,8.466214 +L 0.5264,8.466214,3.0552,8.466214 +L 3.0552,8.466214,3.0552,5.300917 +L 6.0147,0,7.297,0 +L 7.297,5.300917,4.7332,5.300917 +L 4.7332,5.300917,4.7332,8.466214 +L 4.7332,8.466214,7.297,8.466214 +L 3.0552,5.300917,0.5264,5.300917 +L 0.5264,6.902719,3.0552,6.902719 +L 7.297,0,7.297,8.466214 +L 4.7332,6.902719,7.297,6.902719 + +[信] 26 +L 4.6441,8.466126,5.7716,8.466126 +L 5.7716,8.466126,6.8997,8.466126 +L 5.7716,5.300939,6.8997,5.300939 +L 4.6441,5.300939,5.7716,5.300939 +L 3.5128,5.300939,4.6441,5.300939 +L 3.5128,3.699136,4.6441,3.699136 +L 4.6441,3.699136,5.7716,3.699136 +L 5.7716,3.699136,6.8997,3.699136 +L 6.8997,2.135576,6.8997,1.437866 +L 6.8997,1.437866,6.8997,0.723147 +L 6.8997,0.723147,6.8997,0 +L 6.8997,0,5.7716,0 +L 5.7716,0,4.6441,0 +L 4.6441,0,3.5128,0 +L 3.5128,0,3.5128,0.723147 +L 3.5128,0.723147,3.5128,1.437866 +L 3.5128,1.437866,3.5128,2.135576 +L 3.5128,2.135576,4.6441,2.135576 +L 4.6441,2.135576,5.7716,2.135576 +L 5.7716,2.135576,6.8997,2.135576 +L 2.6617,6.902632,4.3391,6.902632 +L 4.3391,6.902632,6.0276,6.902632 +L 6.0276,6.902632,7.7263,6.902632 +L 3.5128,8.466126,4.6441,8.466126 +L 1.3795,0,1.3795,6.597568 +A -6.1508,10.627795,8.540417,321.41046,349.01228 + +[求] 30 +L 3.5148,0,3.9421,0 +L 3.0837,0,3.5148,0 +L 2.6637,0,3.0837,0 +L 3.9421,0,3.9421,1.067919 +L 3.9421,1.067919,3.9421,2.135576 +L 3.9421,2.135576,3.9421,3.20343 +L 3.9421,3.20343,2.814,2.66959 +L 2.814,2.66959,1.6827,2.135576 +L 1.6827,2.135576,0.5588,1.601759 +L 2.2434,7.077689,0.5588,6.902632 +L 3.4693,6.778383,2.2434,7.077689 +L 3.9421,4.766968,3.4693,6.778383 +L 4.0679,7.336169,3.9561,7.880034 +L 3.9561,7.880034,3.9421,9.000097 +L 1.6827,4.95645,1.4099,5.300939 +L 1.9629,4.603229,1.6827,4.95645 +L 2.2326,4.233129,1.9629,4.603229 +L 6.8982,1.067919,4.961,3.275515 +L 4.961,3.275515,4.1905,3.957683 +L 4.1905,3.957683,3.9421,3.699136 +L 5.651,3.699136,6.0538,4.233129 +L 6.0538,4.233129,6.4744,4.766968 +L 6.4744,4.766968,6.8982,5.300939 +L 4.3726,6.902632,4.0679,7.336169 +L 4.7932,6.902632,5.6265,6.902632 +L 5.6265,6.902632,6.4744,6.902632 +L 6.4744,6.902632,7.3287,6.902632 +L 6.4744,7.970333,6.1974,8.313704 +L 6.1974,8.313704,5.9245,8.656813 +L 5.9245,8.656813,5.651,9.000097 + +[願] 78 +L 0.5849,0.26704,0.8655,1.104651 +L 0.8655,1.104651,0.967,3.230311 +L 0.967,3.230311,0.9811,8.466126 +L 0.9811,8.466126,2.112,8.466126 +L 2.112,8.466126,3.2506,8.466126 +L 3.2506,8.466126,4.3991,8.466126 +L 2.263,0,2.5396,0 +L 2.5396,0,2.8233,0 +L 2.8233,0,3.1207,0 +L 3.1207,0,3.1207,1.247223 +L 3.1207,1.247223,3.1207,2.477415 +L 3.1207,2.477415,3.1207,3.699136 +L 3.1207,3.699136,2.6899,3.699136 +L 2.6899,3.699136,2.263,3.699136 +L 2.263,3.699136,1.8357,3.699136 +L 1.8357,3.699136,1.8357,4.766968 +L 1.8357,4.766968,1.8357,5.834778 +L 1.8357,5.834778,1.8357,6.902632 +L 1.8357,6.902632,2.4517,7.120112 +L 2.4517,7.120112,2.7848,7.397025 +L 2.7848,7.397025,3.1207,7.970333 +L 4.5812,0,4.9283,0.370253 +L 4.9283,0.370253,5.2817,0.723147 +L 5.2817,0.723147,5.653,1.067919 +L 7.7863,0,7.4918,0.370253 +L 7.4918,0.370253,7.2046,0.723147 +L 7.2046,0.723147,6.9317,1.067919 +L 1.8357,1.334719,1.9649,1.791066 +L 1.9649,1.791066,2.112,2.238723 +L 2.112,2.238723,2.263,2.66959 +L 4.3991,1.334719,4.2485,1.791066 +L 4.2485,1.791066,4.1017,2.238723 +L 4.1017,2.238723,3.9718,2.66959 +L 5.2222,2.135576,5.2222,3.735934 +L 5.2222,3.735934,5.2222,5.327733 +L 5.2222,5.327733,5.2222,6.902632 +L 5.2222,6.902632,5.839,7.130116 +L 5.839,7.130116,6.1713,7.475983 +L 6.1713,7.475983,6.5041,8.237416 +L 6.5041,8.237416,6.0768,8.313704 +L 6.0768,8.313704,5.653,8.389904 +L 5.653,8.389904,5.2222,8.466126 +L 5.653,2.135576,6.2067,2.135576 +L 6.2067,2.135576,6.7808,2.135576 +L 6.7808,2.135576,7.3625,2.135576 +L 7.3625,2.135576,7.3625,2.668102 +L 7.3625,2.668102,7.3625,3.19209 +L 7.3625,3.19209,7.3625,3.699136 +L 7.3625,3.699136,6.7808,3.699136 +L 6.7808,3.699136,6.2067,3.699136 +L 6.2067,3.699136,5.653,3.699136 +L 3.7585,3.699136,3.8215,4.233129 +L 3.8215,4.233129,3.8877,4.766968 +L 3.8877,4.766968,3.9718,5.300939 +L 3.9718,5.300939,3.3942,5.300939 +L 3.3942,5.300939,2.8233,5.300939 +L 2.8233,5.300939,2.263,5.300939 +L 7.3625,4.233129,7.3625,4.603229 +L 7.3625,4.603229,7.3625,4.95645 +L 7.3625,4.95645,7.3625,5.300939 +L 7.3625,5.300939,6.7808,5.300939 +L 6.7808,5.300939,6.2067,5.300939 +L 6.2067,5.300939,5.653,5.300939 +L 3.9718,5.834778,3.9718,6.204921 +L 3.9718,6.204921,3.9718,6.557903 +L 3.9718,6.557903,3.9718,6.902632 +L 3.9718,6.902632,3.6744,6.902632 +L 3.6744,6.902632,3.3942,6.902632 +L 3.3942,6.902632,3.1207,6.902632 +L 7.3625,5.834778,7.3625,6.204921 +L 7.3625,6.204921,7.3625,6.557903 +L 7.3625,6.557903,7.3625,6.902632 +L 7.3625,6.902632,7.0645,6.902632 +L 7.0645,6.902632,6.7808,6.902632 +L 6.7808,6.902632,6.5041,6.902632 +L 6.9317,8.466126,7.2046,8.466126 +L 7.2046,8.466126,7.4918,8.466126 +L 7.4918,8.466126,7.7863,8.466126 + +[辞] 54 +L 0.5838,0,0.5838,1.067919 +L 0.5838,1.067919,0.5838,2.135576 +L 0.5838,2.135576,0.5838,3.20343 +L 0.5838,3.20343,1.0142,3.20343 +L 1.0142,3.20343,1.4415,3.20343 +L 1.4415,3.20343,1.8688,3.20343 +L 1.8688,3.20343,1.8408,4.851728 +L 1.8408,4.851728,1.5294,5.635664 +L 1.5294,5.635664,0.5838,5.834778 +L 1.0142,0,1.7151,0 +L 1.7151,0,2.4152,0 +L 2.4152,0,3.1157,0 +L 3.1157,0,3.1157,1.067919 +L 3.1157,1.067919,3.1157,2.135576 +L 3.1157,2.135576,3.1157,3.20343 +L 3.1157,3.20343,2.8429,3.20343 +L 2.8429,3.20343,2.5693,3.20343 +L 2.5693,3.20343,2.2926,3.20343 +L 5.6798,0,5.6028,1.895527 +L 5.6028,1.895527,5.1471,2.579074 +L 5.1471,2.579074,3.9703,2.66959 +L 6.1103,2.66959,5.8059,3.103129 +L 5.8059,3.103129,5.6974,3.646928 +L 5.6974,3.646928,5.6798,4.766968 +L 5.6798,4.766968,4.9548,4.766968 +L 4.9548,4.766968,4.2473,4.766968 +L 4.2473,4.766968,3.5465,4.766968 +L 6.5344,2.66959,6.8111,2.66959 +L 6.8111,2.66959,7.084,2.66959 +L 7.084,2.66959,7.361,2.66959 +L 6.3204,4.766968,6.5344,5.670994 +L 6.5344,5.670994,6.7477,6.557903 +L 6.7477,6.557903,6.9614,7.436493 +L 6.9614,7.436493,6.1103,7.436493 +L 6.1103,7.436493,5.2525,7.436493 +L 5.2525,7.436493,4.4014,7.436493 +L 4.4014,7.436493,4.531,6.738782 +L 4.531,6.738782,4.6743,6.024063 +L 4.6743,6.024063,4.8249,5.300939 +L 6.9614,4.766968,7.2349,4.766968 +L 7.2349,4.766968,7.5148,4.766968 +L 7.5148,4.766968,7.7848,4.766968 +L 2.2926,5.834778,1.9953,6.269783 +L 1.9953,6.269783,1.8828,6.823564 +L 1.8828,6.823564,1.8688,7.970333 +L 1.8688,7.970333,1.4415,7.970333 +L 1.4415,7.970333,1.0142,7.970333 +L 1.0142,7.970333,0.5838,7.970333 +L 2.2926,7.970333,2.5693,8.149855 +L 2.5693,8.149855,2.8429,8.312149 +L 2.8429,8.312149,3.1157,8.466126 +L 5.6798,7.970333,5.6798,8.313704 +L 5.6798,8.313704,5.6798,8.656813 +L 5.6798,8.656813,5.6798,9.000097 + +[器] 60 +L 1.0446,0,1.0446,0.723147 +L 1.0446,0.723147,1.0446,1.437866 +L 1.0446,1.437866,1.0446,2.135576 +L 1.0446,2.135576,1.7482,2.135576 +L 1.7482,2.135576,2.4487,2.135576 +L 2.4487,2.135576,3.1531,2.135576 +L 3.1531,2.135576,3.1531,1.437866 +L 3.1531,1.437866,3.1531,0.723147 +L 3.1531,0.723147,3.1531,0 +L 3.1531,0,2.4487,0 +L 2.4487,0,1.7482,0 +L 1.7482,0,1.0446,0 +L 4.8584,0,4.8584,0.723147 +L 4.8584,0.723147,4.8584,1.437866 +L 4.8584,1.437866,4.8584,2.135576 +L 4.8584,2.135576,5.5628,2.135576 +L 5.5628,2.135576,6.2633,2.135576 +L 6.2633,2.135576,6.9634,2.135576 +L 6.9634,2.135576,6.9634,1.437866 +L 6.9634,1.437866,6.9634,0.723147 +L 6.9634,0.723147,6.9634,0 +L 6.9634,0,6.2633,0 +L 6.2633,0,5.5628,0 +L 5.5628,0,4.8584,0 +L 0.6173,3.20343,1.7027,3.601812 +L 1.7027,3.601812,2.4666,4.076241 +L 2.4666,4.076241,3.5734,5.033898 +L 3.5734,5.033898,2.5787,5.136958 +L 2.5787,5.136958,1.5945,5.22314 +L 1.5945,5.22314,0.6173,5.300939 +L 6.5361,3.20343,4.8938,4.719094 +L 4.8938,4.719094,4.2423,5.539609 +L 4.2423,5.539609,4.0042,6.368771 +L 4.8584,5.300939,5.6885,5.300939 +L 5.6885,5.300939,6.5361,5.300939 +L 6.5361,5.300939,7.3907,5.300939 +L 1.0446,6.902632,1.0446,7.435049 +L 1.0446,7.435049,1.0446,7.959059 +L 1.0446,7.959059,1.0446,8.466126 +L 1.0446,8.466126,1.7482,8.466126 +L 1.7482,8.466126,2.4487,8.466126 +L 2.4487,8.466126,3.1531,8.466126 +L 3.1531,8.466126,3.1531,7.959059 +L 3.1531,7.959059,3.1531,7.435049 +L 3.1531,7.435049,3.1531,6.902632 +L 3.1531,6.902632,2.4487,6.902632 +L 2.4487,6.902632,1.7482,6.902632 +L 1.7482,6.902632,1.0446,6.902632 +L 4.8584,6.902632,4.8584,7.435049 +L 4.8584,7.435049,4.8584,7.959059 +L 4.8584,7.959059,4.8584,8.466126 +L 4.8584,8.466126,5.5628,8.466126 +L 5.5628,8.466126,6.2633,8.466126 +L 6.2633,8.466126,6.9634,8.466126 +L 6.9634,8.466126,6.9634,7.959059 +L 6.9634,7.959059,6.9634,7.435049 +L 6.9634,7.435049,6.9634,6.902632 +L 6.9634,6.902632,6.2633,6.902632 +L 6.2633,6.902632,5.5628,6.902632 +L 5.5628,6.902632,4.8584,6.902632 + +[産] 54 +L 0.6158,0,1.3545,1.987335 +L 1.3545,1.987335,1.5089,3.771243 +L 1.5089,3.771243,1.4704,5.834778 +L 1.4704,5.834778,2.1744,5.834778 +L 2.1744,5.834778,2.8815,5.834778 +L 2.8815,5.834778,3.61,5.834778 +L 3.61,5.834778,3.4563,6.47172 +L 3.4563,6.47172,3.3127,7.091764 +L 3.3127,7.091764,3.1792,7.703489 +L 3.1792,7.703489,2.6017,7.806614 +L 2.6017,7.806614,2.0304,7.892731 +L 2.0304,7.892731,1.4704,7.970333 +L 2.7519,0,3.582,0 +L 3.582,0,4.4331,0 +L 4.4331,0,5.2842,0 +L 5.2842,0,5.1515,1.621548 +L 5.1515,1.621548,4.6363,2.115809 +L 4.6363,2.115809,3.61,2.135576 +L 5.7115,0,6.4124,0 +L 6.4124,0,7.123,0 +L 7.123,0,7.8484,0 +L 2.3215,2.135576,2.9239,3.275515 +L 2.9239,3.275515,3.1481,3.957683 +L 3.1481,3.957683,3.1792,4.766968 +L 5.7115,2.135576,5.4177,2.668102 +L 5.4177,2.668102,5.134,3.19209 +L 5.134,3.19209,4.8569,3.699136 +L 4.8569,3.699136,4.4331,3.699136 +L 4.4331,3.699136,4.0128,3.699136 +L 4.0128,3.699136,3.61,3.699136 +L 6.1427,2.135576,6.4124,2.135576 +L 6.4124,2.135576,6.6961,2.135576 +L 6.6961,2.135576,6.9938,2.135576 +L 5.7115,3.699136,5.5613,4.069105 +L 5.5613,4.069105,5.4177,4.422415 +L 5.4177,4.422415,5.2842,4.766968 +L 6.1427,3.699136,6.5661,3.699136 +L 6.5661,3.699136,6.9938,3.699136 +L 6.9938,3.699136,7.4211,3.699136 +L 4.0303,5.834778,4.4401,5.937882 +L 4.4401,5.937882,4.8604,6.024063 +L 4.8604,6.024063,5.2842,6.101774 +L 5.2842,6.101774,5.4177,6.738782 +L 5.4177,6.738782,5.5613,7.358826 +L 5.5613,7.358826,5.7115,7.970333 +L 5.7115,7.970333,5.0114,7.970333 +L 5.0114,7.970333,4.3105,7.970333 +L 4.3105,7.970333,3.61,7.970333 +L 5.7115,5.834778,6.4124,5.834778 +L 6.4124,5.834778,7.123,5.834778 +L 7.123,5.834778,7.8484,5.834778 +L 6.1427,7.970333,6.5661,7.970333 +L 6.5661,7.970333,6.9938,7.970333 +L 6.9938,7.970333,7.4211,7.970333 + +[告] 33 +L 1.9274,0,1.9274,1.067919 +L 1.9274,1.067919,1.9274,2.135576 +L 1.9274,2.135576,1.9274,3.20343 +L 1.9274,3.20343,3.3322,3.20343 +L 3.3322,3.20343,4.7433,3.20343 +L 4.7433,3.20343,6.1692,3.20343 +L 6.1692,3.20343,6.1692,2.135576 +L 6.1692,2.135576,6.1692,1.067919 +L 6.1692,1.067919,6.1692,0 +L 6.1692,0,4.7433,0 +L 4.7433,0,3.3322,0 +L 3.3322,0,1.9274,0 +L 0.649,5.300939,1.7771,5.300939 +L 1.7771,5.300939,2.9049,5.300939 +L 2.9049,5.300939,4.0323,5.300939 +L 4.0323,5.300939,3.819,7.057965 +L 3.819,7.057965,3.1392,7.484586 +L 3.1392,7.484586,1.9274,7.436493 +L 1.9274,7.436493,1.63,7.091764 +L 1.63,7.091764,1.3498,6.738782 +L 1.3498,6.738782,1.0763,6.368771 +L 4.4596,5.300939,5.4372,5.300939 +L 5.4372,5.300939,6.421,5.300939 +L 6.421,5.300939,7.4157,5.300939 +L 4.4596,7.436493,4.1623,7.850396 +L 4.1623,7.850396,4.0498,8.255717 +L 4.0498,8.255717,4.0323,9.000097 +L 4.8908,7.436493,5.4372,7.436493 +L 5.4372,7.436493,5.9972,7.436493 +L 5.9972,7.436493,6.5646,7.436493 +L 1.9274,7.970333,1.9274,8.313704 +L 1.9274,8.313704,1.9274,8.656813 +L 1.9274,8.656813,1.9274,9.000097 + +[泣] 8 +L 1.9301,7.970416,1.1063,8.999901 +L 1.5031,5.834697,0.6793,6.902482 +L 1.9301,3.470518,0.6793,0.000057 +L 5.1793,9.000097,5.1793,7.500067 +L 3.0708,7.500067,7.3154,7.500067 +L 2.4792,0.000057,7.8793,0.000057 +L 6.0794,0.000057,6.9795,7.500067 +L 4.2792,0.000057,3.379,7.500067 + +[笑] 35 +L 0.6813,0,2.0823,0.696375 +L 2.0823,0.696375,3.2203,1.833402 +L 3.2203,1.833402,3.8507,3.47036 +L 3.8507,3.47036,2.7828,3.546714 +L 2.7828,3.546714,1.7247,3.622914 +L 1.7247,3.622914,0.6813,3.699136 +L 6.6285,0,5.9035,0.903983 +L 5.9035,0.903983,5.1925,1.791066 +L 5.1925,1.791066,4.4917,2.66959 +L 4.4917,3.699136,4.1904,4.114374 +L 4.1904,4.114374,4.0822,4.529743 +L 4.0822,4.529743,4.0647,5.300939 +L 4.0647,5.300939,3.2136,5.300939 +L 3.2136,5.300939,2.3625,5.300939 +L 2.3625,5.300939,1.5324,5.300939 +L 4.9225,3.699136,5.7736,3.699136 +L 5.7736,3.699136,7.4796,3.699136 +L 4.4917,5.834778,5.1925,5.834778 +L 5.1925,5.834778,6.6285,5.834778 +L 0.6813,6.902632,0.9542,7.615928 +L 0.9542,7.615928,1.2379,8.312149 +L 1.2379,8.312149,1.5324,9.000097 +L 2.814,6.902632,2.5163,7.272687 +L 2.5163,7.272687,2.2364,7.625888 +L 2.2364,7.625888,1.9597,7.970333 +L 4.0647,6.902632,4.3414,7.615928 +L 4.3414,7.615928,4.6212,8.312149 +L 4.6212,8.312149,4.9225,9.000097 +L 6.6285,6.902632,6.2954,7.475983 +L 6.2954,7.475983,5.963,7.752939 +L 5.963,7.752939,5.3463,7.970333 +L 2.814,7.970333,3.091,7.970333 +L 3.091,7.970333,3.3712,7.970333 +L 3.3712,7.970333,3.6686,7.970333 +L 6.6285,7.970333,7.4796,7.970333 + +[覚] 25 +L 0.7075,0,1.7793,0.415325 +L 1.7793,0.415325,2.4381,0.830563 +L 2.4381,0.830563,3.2398,1.601759 +L 3.2398,1.601759,3.2398,2.66959 +L 3.2398,2.66959,2.3855,2.66959 +L 2.3855,2.66959,2.3855,5.834778 +L 2.3855,5.834778,6.1958,5.834778 +L 6.1958,5.834778,6.1958,2.66959 +L 6.1958,2.66959,4.9493,2.66959 +L 4.9493,2.66959,5.1066,0.553694 +L 5.1066,0.553694,5.9195,-0.019745 +L 5.9195,-0.019745,7.9054,0 +L 7.9054,0,7.9054,1.601759 +L 3.6706,2.66959,4.5217,2.66959 +L 2.8125,3.699136,5.8039,3.699136 +L 2.8125,4.766968,5.8039,4.766968 +L 0.7075,5.834778,0.7075,7.436493 +L 0.7075,7.436493,2.3995,7.539728 +L 2.3995,7.539728,4.0982,7.625888 +L 4.0982,7.625888,5.8039,7.703489 +L 5.8039,7.703489,6.0803,8.149855 +L 6.0803,8.149855,6.3538,8.579102 +L 6.3538,8.579102,6.6266,9.000097 +L 7.9054,5.834778,7.9054,7.436493 +L 7.9054,7.436493,6.1958,7.436493 + +[伝] 25 +L 1.5641,0,1.48,1.781084 +L 1.48,1.781084,1.4138,3.545269 +L 1.4138,3.545269,1.3473,5.300939 +L 1.3473,5.300939,1.1368,5.136958 +L 1.1368,5.136958,0.9337,4.95645 +L 0.9337,4.95645,0.7379,4.766968 +L 2.4191,0,3.6974,0 +L 3.6974,0,4.1037,1.781084 +L 4.1037,1.781084,4.524,3.545269 +L 4.524,3.545269,4.9513,5.300939 +L 4.9513,5.300939,2.8428,5.300939 +L 4.1279,0,5.1681,0.138544 +L 5.1681,0.138544,6.0266,0.395449 +L 6.0266,0.395449,7.084,0.533861 +L 7.084,0.533861,7.2136,0.800792 +L 7.2136,0.800792,7.361,1.067919 +L 7.361,1.067919,7.5113,1.334719 +L 7.5113,1.334719,7.2136,1.791066 +L 7.2136,1.791066,6.9337,2.238723 +L 6.9337,2.238723,6.6602,2.66959 +L 5.3786,5.300939,7.9421,5.300939 +L 1.5641,5.834778,1.673,7.1385 +L 1.673,7.1385,1.8797,8.077661 +L 1.8797,8.077661,1.9879,9.000097 +L 3.2701,7.970333,7.5113,7.970333 + +[焼] 34 +L 0.7399,0,1.8186,3.045272 +L 1.8186,3.045272,2.0635,5.777032 +L 2.0635,5.777032,2.0218,9.000097 +L 3.2721,0,4.0283,1.272616 +L 4.0283,1.272616,4.4311,2.35032 +L 4.4311,2.35032,4.5537,3.699136 +L 4.5537,3.699136,3.2721,3.699136 +L 6.2594,0,6.2594,3.699136 +L 6.2594,3.699136,4.981,3.699136 +L 6.6905,0,7.9371,0 +L 7.9371,0,7.9371,1.067919 +L 2.876,1.334719,2.7258,1.601759 +L 2.7258,1.601759,2.5783,1.868733 +L 2.5783,1.868733,2.4487,2.135576 +L 6.6905,3.699136,6.0251,5.880004 +L 6.0251,5.880004,4.7922,5.891233 +L 4.7922,5.891233,4.1267,4.233129 +L 0.7399,5.033898,0.8691,5.670994 +L 0.8691,5.670994,1.0162,6.290972 +L 1.0162,6.290972,1.1707,6.902632 +L 3.4854,5.834778,3.7026,6.204921 +L 3.7026,6.204921,3.9127,6.557903 +L 3.9127,6.557903,4.1267,6.902632 +L 7.1178,5.834778,6.8198,6.557903 +L 6.8198,6.557903,6.6905,6.902632 +L 2.4487,6.368771,3.1881,7.377126 +L 3.1881,7.377126,3.8185,7.851797 +L 3.8185,7.851797,4.981,7.970333 +L 4.981,7.970333,5.1109,8.313704 +L 5.1109,8.313704,5.2545,8.656813 +L 5.2545,8.656813,5.4083,9.000097 +L 5.4083,7.169475,5.7515,7.733151 +L 5.7515,7.733151,6.1998,7.940671 +L 6.1998,7.940671,7.1178,7.970333 + +[別] 16 +L 0.7695,0,1.7467,1.961811 +L 1.7467,1.961811,2.283,3.822116 +L 2.283,3.822116,2.4507,5.834778 +L 2.4507,5.834778,1.1968,5.834778 +L 1.1968,5.834778,1.1968,8.466126 +L 1.1968,8.466126,4.1603,8.466126 +L 4.1603,8.466126,4.1603,5.834778 +L 4.1603,5.834778,2.8745,5.834778 +L 2.4507,0,3.3018,0 +L 3.3018,0,3.9046,1.204734 +L 3.9046,1.204734,4.1252,2.163902 +L 4.1252,2.163902,4.1603,3.699136 +L 4.1603,3.699136,2.8745,3.699136 +L 6.6925,0,7.5436,0 +L 7.5436,0,7.5436,9.000097 +L 5.8341,2.135576,5.8341,7.970333 + +[喜] 31 +L 2.0499,0,2.0499,1.601759 +L 2.0499,1.601759,6.2918,1.601759 +L 6.2918,1.601759,6.2918,0 +L 6.2918,0,2.0499,0 +L 0.768,2.66959,1.4724,2.772716 +L 1.4724,2.772716,2.1834,2.858767 +L 2.1834,2.858767,2.9084,2.936434 +L 2.9084,2.936434,2.6103,3.916682 +L 2.6103,3.916682,2.3266,4.880054 +L 2.3266,4.880054,2.0499,5.834778 +L 2.0499,5.834778,6.2918,5.834778 +L 6.2918,5.834778,5.9937,4.880054 +L 5.9937,4.880054,5.7135,3.916682 +L 5.7135,3.916682,5.4407,2.936434 +L 5.4407,2.936434,6.1408,2.858767 +L 6.1408,2.858767,6.8483,2.772716 +L 6.8483,2.772716,7.5733,2.66959 +L 3.3357,2.66959,5.0134,2.66959 +L 2.9084,4.233129,5.4407,4.233129 +L 1.6261,6.902632,2.4772,7.005845 +L 2.4772,7.005845,3.3357,7.091764 +L 3.3357,7.091764,4.1868,7.169475 +L 4.1868,7.169475,4.0358,7.436493 +L 4.0358,7.436493,3.8922,7.703489 +L 3.8922,7.703489,3.7595,7.970333 +L 3.7595,7.970333,0.768,7.970333 +L 4.5822,6.902632,6.7222,6.902632 +L 4.3689,8.237416,4.3125,8.502924 +L 4.3125,8.502924,4.2463,8.759982 +L 4.2463,8.759982,4.1868,9.000097 +L 5.0134,7.970333,7.5733,7.970333 + +[単] 33 +L 4.1884,0,3.7195,2.011392 +L 3.7195,2.011392,2.4933,2.310874 +L 2.4933,2.310874,0.8019,2.135576 +L 4.6157,2.135576,4.3219,2.668102 +L 4.3219,2.668102,4.0343,3.19209 +L 4.0343,3.19209,3.7615,3.699136 +L 3.7615,3.699136,1.6565,3.699136 +L 1.6565,3.699136,1.6565,6.902632 +L 1.6565,6.902632,2.917,7.005845 +L 2.917,7.005845,4.1884,7.091764 +L 4.1884,7.091764,5.4703,7.169475 +L 5.4703,7.169475,5.7439,7.779777 +L 5.7439,7.779777,6.0307,8.389904 +L 6.0307,8.389904,6.3214,9.000097 +L 5.0395,2.135576,7.5718,2.135576 +L 4.6157,3.699136,4.3219,4.233129 +L 4.3219,4.233129,4.0343,4.766968 +L 4.0343,4.766968,3.7615,5.300939 +L 3.7615,5.300939,2.0835,5.300939 +L 5.0395,3.699136,6.7176,3.699136 +L 6.7176,3.699136,6.7176,5.300939 +L 6.7176,5.300939,4.6157,5.300939 +L 4.6157,5.300939,4.462,5.670994 +L 4.462,5.670994,4.3219,6.024063 +L 4.3219,6.024063,4.1884,6.368771 +L 6.7176,5.834778,6.7176,6.902632 +L 6.7176,6.902632,5.8976,6.902632 +L 2.5076,8.237416,2.3605,8.502924 +L 2.3605,8.502924,2.2169,8.759982 +L 2.2169,8.759982,2.0835,9.000097 +L 4.1884,8.237416,4.0343,8.502924 +L 4.0343,8.502924,3.8907,8.759982 +L 3.8907,8.759982,3.7615,9.000097 + +[飛] 29 +L 0.8316,0,1.3815,1.170913 +L 1.3815,1.170913,1.9387,2.324927 +L 1.9387,2.324927,2.5093,3.47036 +L 2.5093,3.47036,2.1594,4.007111 +L 2.1594,4.007111,1.7282,4.204956 +L 1.7282,4.204956,0.8316,4.233129 +L 4.2188,0,3.774,3.444968 +L 3.774,3.444968,2.9541,4.449098 +L 2.9541,4.449098,2.5093,5.834778 +L 2.5093,5.834778,1.2589,5.834778 +L 7.6057,0,6.4148,1.495766 +L 6.4148,1.495766,5.9665,2.533849 +L 5.9665,2.533849,5.8961,4.233129 +L 5.8961,4.233129,4.4044,4.631401 +L 4.4044,4.631401,4.1242,5.741722 +L 4.1242,5.741722,4.2188,7.436493 +L 8.0295,0,8.0295,1.067919 +L 7.1784,1.868733,6.8947,2.47041 +L 6.8947,2.47041,6.8947,2.944949 +L 6.8947,2.944949,7.1784,3.699136 +L 7.6057,4.766968,6.5935,6.005676 +L 6.5935,6.005676,6.0537,6.998664 +L 6.0537,6.998664,5.8961,8.466126 +L 5.8961,8.466126,1.2589,8.466126 +L 8.0295,4.766968,8.0295,5.834778 +L 2.5093,6.368771,3.3639,6.368771 +L 7.1784,6.635592,6.8947,7.237379 +L 6.8947,7.237379,6.8947,7.711851 +L 6.8947,7.711851,7.1784,8.466126 + +[建] 42 +L 1.0476,0,1.3908,0.456238 +L 1.3908,0.456238,1.7477,0.903983 +L 1.7477,0.903983,2.1158,1.334719 +L 2.1158,1.334719,1.5134,2.312231 +L 1.5134,2.312231,1.2893,2.92516 +L 1.2893,2.92516,1.2574,3.699136 +L 3.3977,0,3.0997,0.189308 +L 3.0997,0.189308,2.816,0.370253 +L 2.816,0.370253,2.5396,0.533861 +L 3.7932,0,8.0346,0 +L 5.5027,1.334719,5.1384,1.898395 +L 5.1384,1.898395,4.5921,2.105915 +L 4.5921,2.105915,3.3977,2.135576 +L 2.5396,2.135576,2.5396,5.300939 +L 2.5396,5.300939,1.6216,5.281106 +L 1.6216,5.281106,1.1803,5.142694 +L 1.1803,5.142694,0.8301,4.766968 +L 5.9297,2.135576,5.6284,2.668102 +L 5.6284,2.668102,5.3482,3.19209 +L 5.3482,3.19209,5.0719,3.699136 +L 5.0719,3.699136,3.7932,3.699136 +L 6.3538,2.135576,8.0346,2.135576 +L 5.9297,3.699136,5.6284,4.233129 +L 5.6284,4.233129,5.3482,4.766968 +L 5.3482,4.766968,5.0719,5.300939 +L 5.0719,5.300939,4.2208,5.300939 +L 6.3538,3.699136,7.6353,3.699136 +L 5.9297,5.300939,5.6284,5.834778 +L 5.6284,5.834778,5.3482,6.368771 +L 5.3482,6.368771,5.0719,6.902632 +L 5.0719,6.902632,3.3977,6.902632 +L 6.3538,5.300939,7.208,5.300939 +L 7.208,5.300939,6.669,6.840354 +L 6.669,6.840354,5.4673,7.701957 +L 5.4673,7.701957,4.2208,7.970333 +L 1.2574,5.834778,2.5396,8.237373 +L 2.5396,8.237416,1.9617,8.313704 +L 1.9617,8.313704,1.3908,8.389904 +L 1.3908,8.389904,0.8301,8.466126 +L 7.6353,6.902632,6.9874,7.573505 +L 6.9874,7.573505,6.1507,8.176758 +L 6.1507,8.176758,5.5027,9.000097 + +[完] 18 +L 1.0738,0,1.8408,0.903983 +L 1.8408,0.903983,2.6113,1.791066 +L 2.6113,1.791066,3.3962,2.66959 +L 3.3962,2.66959,3.3962,4.233129 +L 3.3962,4.233129,0.864,4.233129 +L 5.5289,0,5.2315,0.512846 +L 5.2315,0.512846,5.1194,1.610208 +L 5.1194,1.610208,5.1016,4.233129 +L 5.1016,4.233129,3.82,4.233129 +L 5.96,0,7.6338,0 +L 7.6338,0,7.6338,1.601759 +L 5.5289,4.233129,7.6338,4.233129 +L 0.864,6.368771,0.864,7.970333 +L 0.864,7.970333,4.2505,7.970333 +L 4.2505,7.970333,4.2505,9.000097 +L 2.1455,6.368771,6.3523,6.368771 +L 7.6338,6.368771,7.6338,7.970333 +L 7.6338,7.970333,4.6778,7.970333 + +[成] 24 +L 0.8625,0.26704,1.4855,2.735962 +L 1.4855,2.735962,1.675,4.992942 +L 1.675,4.992942,1.6852,7.436493 +L 1.6852,7.436493,3.2301,7.341861 +L 3.2301,7.341861,4.5295,7.594606 +L 4.5295,7.594606,5.0724,9.000097 +L 3.608,0,4.3716,0.800792 +L 4.3716,0.800792,5.1421,1.601759 +L 5.1421,1.601759,5.927,2.402594 +L 5.927,2.402594,5.3242,4.14548 +L 5.3242,4.14548,5.1036,5.312168 +L 5.1036,5.312168,5.0724,6.902632 +L 5.0724,6.902632,5.4678,7.27827 +L 5.4678,7.27827,6.2457,7.416639 +L 6.2457,7.416639,8.0631,7.436493 +L 7.6358,0,6.3575,1.601802 +L 8.0631,0,8.0631,1.601759 +L 2.5436,1.601759,3.6711,2.100333 +L 3.6711,2.100333,3.8917,3.302374 +L 3.8917,3.302374,3.8252,4.766968 +L 3.8252,4.766968,2.1163,4.766968 +L 6.3575,2.66959,6.9532,3.809354 +L 6.9532,3.809354,7.1735,4.491522 +L 7.1735,4.491522,7.2085,5.300939 + +[費] 48 +L 1.2918,0,1.8448,0.189308 +L 1.8448,0.189308,2.4195,0.370253 +L 2.4195,0.370253,3.0006,0.533861 +L 6.8151,0,6.5171,0.189308 +L 6.5171,0.189308,6.2334,0.370253 +L 6.2334,0.370253,5.9567,0.533861 +L 2.1428,1.601759,2.1428,4.766968 +L 2.1428,4.766968,0.8645,4.766968 +L 2.5733,1.601759,6.8151,1.601759 +L 6.8151,1.601759,6.8151,2.66959 +L 6.8151,2.66959,2.5733,2.66959 +L 6.8151,3.47036,5.3858,3.546714 +L 5.3858,3.546714,3.9743,3.622914 +L 3.9743,3.622914,2.5733,3.699136 +L 6.8151,4.500059,5.3858,4.689345 +L 5.3858,4.689345,3.9743,4.870225 +L 3.9743,4.870225,2.5733,5.033898 +L 2.5733,5.033898,2.7032,5.404042 +L 2.7032,5.404042,2.8468,5.757111 +L 2.8468,5.757111,3.0006,6.101774 +L 3.0006,6.101774,2.5733,6.204921 +L 2.5733,6.204921,2.1428,6.290972 +L 2.1428,6.290972,1.7156,6.368771 +L 1.7156,6.368771,1.7156,7.436493 +L 1.7156,7.436493,2.6297,7.46622 +L 2.6297,7.46622,3.0675,7.673828 +L 3.0675,7.673828,3.3967,8.237416 +L 3.3967,8.237416,1.2918,8.466257 +L 5.5294,5.567847,5.1686,6.14122 +L 5.1686,6.14122,4.6152,6.418221 +L 4.6152,6.418221,3.3967,6.635592 +L 3.3967,6.635592,4.0447,7.228907 +L 4.0447,7.228907,4.8849,7.644145 +L 4.8849,7.644145,5.5294,8.237416 +L 5.5294,8.237416,4.9518,8.313704 +L 4.9518,8.313704,4.3809,8.389904 +L 4.3809,8.389904,3.8205,8.466126 +L 7.4245,5.300939,7.4841,5.670994 +L 7.4841,5.670994,7.5538,6.024063 +L 7.5538,6.024063,7.6378,6.368771 +L 7.6378,6.368771,6.44,6.388559 +L 6.44,6.388559,5.8936,6.526819 +L 5.8936,6.526819,5.5294,6.902632 +L 5.5294,6.902632,5.8625,7.27827 +L 5.8625,7.27827,6.1948,7.416639 +L 6.1948,7.416639,6.8151,7.436493 +L 6.8151,7.436493,6.8151,8.466126 +L 6.8151,8.466126,5.9567,8.466126 + +[位] 20 +L 1.7176,0,1.6335,1.944933 +L 1.6335,1.944933,1.5666,3.889867 +L 1.5666,3.889867,1.5036,5.834778 +L 1.5036,5.834778,1.2903,5.670994 +L 1.2903,5.670994,1.0763,5.490268 +L 1.0763,5.490268,0.8595,5.300939 +L 2.5406,0,5.9275,0 +L 5.9275,0,6.1482,2.072094 +L 6.1482,2.072094,6.5611,3.991525 +L 6.5611,3.991525,6.7852,5.834778 +L 6.3548,0,8.0636,0 +L 4.2495,1.067919,4.218,2.668102 +L 4.218,2.668102,3.9976,3.904052 +L 3.9976,3.904052,3.3952,5.834778 +L 1.7176,6.635592,1.9904,7.435049 +L 1.9904,7.435049,2.2639,8.22612 +L 2.2639,8.22612,2.5406,9.000097 +L 2.9644,6.902632,5.1041,6.902632 +L 5.1041,6.902632,5.1041,9.000097 +L 5.5314,6.902632,7.6363,6.902632 + +[置] 30 +L 1.2887,0,1.2887,4.233129 +L 1.716,0,7.6632,0 +L 2.9976,1.601759,2.9976,4.766968 +L 2.9976,4.766968,3.4284,4.870225 +L 3.4284,4.870225,3.8522,4.95645 +L 3.8522,4.95645,4.2798,5.033898 +L 4.2798,5.033898,4.1289,5.300939 +L 4.1289,5.300939,3.9821,5.567847 +L 3.9821,5.567847,3.8522,5.834778 +L 3.8522,5.834778,0.865,5.834778 +L 3.4284,1.601759,6.3845,1.601759 +L 6.3845,1.601759,6.3845,2.66959 +L 6.3845,2.66959,3.4284,2.66959 +L 6.3845,3.47036,5.3863,3.546714 +L 5.3863,3.546714,4.4024,3.622914 +L 4.4024,3.622914,3.4284,3.699136 +L 6.3845,4.500059,5.8069,4.603229 +L 5.8069,4.603229,5.236,4.689345 +L 5.236,4.689345,4.6788,4.766968 +L 4.6788,5.834778,4.5352,6.101774 +L 4.5352,6.101774,4.4024,6.368771 +L 4.4024,6.368771,4.2798,6.635592 +L 4.2798,6.635592,3.4284,6.738782 +L 3.4284,6.738782,2.5703,6.824965 +L 2.5703,6.824965,1.716,6.902632 +L 1.716,6.902632,1.716,8.466126 +L 1.716,8.466126,6.8121,8.466126 +L 6.8121,8.466126,6.8121,6.902632 +L 6.8121,6.902632,4.6788,6.902632 +L 5.1026,5.834778,7.6632,5.834778 + +# kan_11 -------------------------------------------------------,] +# 老民卒必要類得失加変続以共初最無的法課愛囲胃衣印栄塩央億貨芽改害街各官管観希季救給挙漁競協鏡極訓軍郡 + +[老] 24 +L 3.8176,7.970376,4.6718,7.970376 +L 4.4582,5.834756,5.9187,9.038339 +L 5.0676,5.834756,7.2041,5.834756 +L 2.5353,3.737357,3.8176,5.567913 +L 2.9626,2.669612,4.0274,2.819363 +L 4.0274,2.819363,5.2602,3.206297 +L 5.2602,3.206297,6.3498,3.737357 +L 6.7768,0,6.7768,1.601715 +L 3.3938,0,6.7768,0 +L 2.9626,0,2.6614,0.474713 +L 2.6614,0.474713,2.5532,1.30521 +L 2.5532,1.30521,2.5353,3.20343 +L 2.5353,3.20343,1.6846,2.858876 +L 1.6846,2.858876,0.8335,2.505807 +L 0.8335,2.505807,0.0034,2.135663 +L 3.3938,7.970376,3.2358,8.340563 +L 3.2358,8.340563,3.0922,8.693632 +L 3.0922,8.693632,2.9626,9.038339 +L 2.9626,6.368792,2.6474,7.81791 +L 2.6474,7.81791,1.8667,8.072078 +L 1.8667,8.072078,0.8615,7.970376 +L 3.8176,5.567825,2.5353,5.671016 +L 2.5353,5.671016,1.2639,5.757264 +L 1.2639,5.757264,0.0034,5.834756 + +[民] 16 +L 1.2835,6.368792,3.4199,6.368792 +L 1.2835,4.271371,3.4199,4.271371 +L 3.8157,4.271371,7.2341,4.271371 +L 7.2341,0,7.2341,1.601715 +L 6.8068,0,5.2871,1.740171 +L 5.2871,1.740171,4.6213,2.709146 +L 0.8562,0,0.8562,8.504346 +L 0.8562,8.504346,6.376,8.504346 +L 6.376,8.504346,6.376,6.368792 +L 6.376,6.368792,3.8157,6.368792 +L 3.8157,6.368792,3.8157,4.271371 +L 4.6213,2.709146,4.2465,3.737357 +L 0.0019,0,0.8562,0 +L 1.501,0,2.2641,0.370165 +L 2.2641,0.370165,3.0312,0.723278 +L 3.0312,0.723278,3.8157,1.067854 + +[卒] 19 +L 3.8496,7.970376,6.3815,7.970376 +L 3.4184,7.970376,3.4184,9.038339 +L 0.4592,7.970376,3.4184,7.970376 +L 3.4184,0,3.0647,2.438013 +L 3.0647,2.438013,1.9579,2.850361 +L 1.9579,2.850361,0.0351,2.669612 +L 0.8897,4.803743,0.4592,4.271371 +L 1.3135,5.327842,0.8897,4.803743 +L 1.7408,5.834756,1.3135,5.327842 +L 2.4448,4.793871,1.7408,5.834756 +L 3.1453,3.735912,2.4448,4.793871 +L 3.8496,2.669612,3.1453,3.735912 +L 4.2734,2.669612,6.8057,2.669612 +L 6.3815,4.271371,5.5549,5.300895 +L 5.0825,6.093281,5.1245,6.90261 +L 4.7497,5.411178,5.0825,6.093281 +L 3.8496,4.271371,4.7497,5.411178 +L 3.4184,8.008837,3.4184,9.038339 +L 0.0351,8.008837,6.8057,8.008837 + +[必] 20 +L 7.2626,2.936586,6.9684,3.54667 +L 0.8602,3.983185,0.8882,4.767056 +L 0.6465,3.300995,0.8602,3.983185 +L 0.0616,2.135663,0.6465,3.300995 +L 6.9684,3.54667,6.6882,4.156863 +L 6.6882,4.156863,6.4084,4.767056 +L 5.9846,0,5.9846,1.601715 +L 3.0247,0,5.9846,0 +L 2.5974,2.135663,4.377,5.529714 +L 4.377,5.529714,5.0351,7.042467 +L 5.0351,7.042467,5.1296,7.970376 +L 2.0895,4.613188,2.1736,6.368792 +L 2.0163,2.848982,2.0895,4.613188 +L 1.9568,1.067854,2.0163,2.848982 +L 1.3855,0.723278,1.9568,1.067854 +L 0.8286,0.370165,1.3855,0.723278 +L 0.2756,0,0.8286,0.370165 +L 3.3017,8.607384,3.0247,9.038339 +L 3.5816,8.159749,3.3017,8.607384 +L 3.8796,7.703445,3.5816,8.159749 + +[要] 52 +L 2.6309,8.504346,0.0639,8.504346 +L 2.4803,7.394157,2.6309,8.504346 +L 1.9619,6.970404,2.4803,7.394157 +L 0.9217,6.90261,1.9619,6.970404 +L 0.9217,4.767056,0.9217,6.90261 +L 1.6225,4.69079,0.9217,4.767056 +L 2.33,4.614523,1.6225,4.69079 +L 3.0547,4.538302,2.33,4.614523 +L 2.9006,4.193529,3.0547,4.538302 +L 2.7605,3.840526,2.9006,4.193529 +L 2.6309,3.470513,2.7605,3.840526 +L 3.461,3.306664,2.6309,3.470513 +L 4.3054,3.125937,3.461,3.306664 +L 5.1565,2.936586,4.3054,3.125937 +L 4.8623,2.402637,5.1565,2.936586 +L 4.5818,1.868776,4.8623,2.402637 +L 4.3054,1.334871,4.5818,1.868776 +L 4.8623,0.90407,4.3054,1.334871 +L 5.4367,0.456348,4.8623,0.90407 +L 6.0146,0,5.4367,0.456348 +L 5.587,3.20343,6.0146,3.20343 +L 5.1565,4.767056,5.587,4.767056 +L 4.7359,4.767056,5.1565,4.767056 +L 4.0074,4.767056,4.3054,4.767056 +L 3.7275,4.767056,4.0074,4.767056 +L 3.447,4.767056,3.7275,4.767056 +L 4.3054,4.767056,3.8673,6.752989 +L 3.8673,6.752989,3.0617,6.848935 +L 3.0617,6.848935,2.6309,5.300895 +L 2.2004,2.936586,1.4751,3.039734 +L 1.4751,3.039734,0.7676,3.125937 +L 0.7676,3.125937,0.0639,3.20343 +L 0.4909,0,1.7097,0.014031 +L 1.7097,0.014031,2.7258,0.265639 +L 2.7258,0.265639,3.8781,1.067854 +L 3.8781,1.067854,3.517,1.453604 +L 3.517,1.453604,2.9706,1.661147 +L 2.9706,1.661147,1.7731,1.868776 +L 1.7731,1.868776,1.9062,2.238854 +L 1.9062,2.238854,2.0495,2.591989 +L 2.0495,2.591989,2.2004,2.936586 +L 4.3054,8.504346,3.0547,8.504346 +L 4.3996,7.461995,4.3054,8.504346 +L 4.8623,7.0044,4.3996,7.461995 +L 6.0146,6.90261,4.8623,7.0044 +L 6.0146,6.204921,6.0146,6.90261 +L 6.0146,5.490311,6.0146,6.204921 +L 6.0146,4.767056,6.0146,5.490311 +L 5.587,4.767056,6.0146,4.767056 +L 6.0146,3.20343,6.4419,3.20343 +L 6.4419,3.20343,6.8657,3.20343 +L 4.7359,8.504346,6.8657,8.504346 + +[類] 73 +L 1.7751,8.504346,1.7751,9.038339 +L 1.7751,7.970376,1.7751,8.504346 +L 1.7751,7.436493,1.7751,7.970376 +L 1.621,5.834756,1.5615,6.368792 +L 1.6907,5.300895,1.621,5.834756 +L 1.7751,4.767056,1.6907,5.300895 +L 1.9047,3.392715,1.7751,3.737357 +L 2.0483,3.039734,1.9047,3.392715 +L 2.1989,2.669612,2.0483,3.039734 +L 2.6294,2.669612,2.9064,2.669612 +L 2.9064,2.669612,3.1863,2.669612 +L 3.1863,2.669612,3.4843,2.669612 +L 4.3354,2.135663,4.3354,3.735912 +L 4.3354,3.735912,4.3354,5.327842 +L 4.3354,5.327842,4.3354,6.90261 +L 4.3354,6.90261,4.955,7.130006 +L 4.955,7.130006,5.2776,7.476114 +L 5.2776,7.476114,5.5855,8.237284 +L 5.5855,8.237284,5.0181,8.340563 +L 5.0181,8.340563,4.458,8.42668 +L 4.458,8.42668,3.9043,8.504346 +L 2.9064,8.693632,3.0532,9.038339 +L 2.7558,8.340563,2.9064,8.693632 +L 2.6294,7.970376,2.7558,8.340563 +L 2.6294,6.90261,2.9064,6.90261 +L 2.9064,6.90261,3.1863,6.90261 +L 3.1863,6.90261,3.4843,6.90261 +L 3.0532,5.300895,2.0764,6.512831 +L 2.0764,6.512831,1.2739,6.809466 +L 1.2739,6.809466,0.094,6.90261 +L 0.2232,8.771255,0.094,9.038339 +L 0.3738,8.504346,0.2232,8.771255 +L 0.5209,8.237284,0.3738,8.504346 +L 1.0747,6.02402,0.584,5.671016 +L 1.5615,6.368792,1.0747,6.02402 +L 0.584,5.671016,0.094,5.300895 +L 1.0151,2.649911,0.094,2.669612 +L 1.4456,2.511366,1.0151,2.649911 +L 1.7751,2.135663,1.4456,2.511366 +L 1.2844,1.437996,1.7751,2.135663 +L 0.7941,0.723278,1.2844,1.437996 +L 0.3076,0,0.7941,0.723278 +L 2.6294,1.067854,2.1989,1.601715 +L 3.0532,0.534014,2.6294,1.067854 +L 3.4843,0,3.0532,0.534014 +L 3.9043,0,4.1848,0.370165 +L 4.1848,0.370165,4.465,0.723278 +L 4.465,0.723278,4.7624,1.067854 +L 4.7624,2.135663,5.4629,2.135663 +L 5.4629,2.135663,6.1672,2.135663 +L 6.1672,2.135663,6.8674,2.135663 +L 6.8674,2.135663,6.8674,2.669612 +L 6.8674,2.669612,6.8674,3.20343 +L 6.8674,3.20343,6.8674,3.737357 +L 6.8674,3.737357,6.1672,3.737357 +L 6.1672,3.737357,5.4629,3.737357 +L 5.4629,3.737357,4.7624,3.737357 +L 5.4629,5.300895,4.7624,5.300895 +L 6.1672,5.300895,5.4629,5.300895 +L 6.8674,5.300895,6.1672,5.300895 +L 6.8674,4.957633,6.8674,5.300895 +L 6.8674,4.614523,6.8674,4.957633 +L 6.8674,4.271371,6.8674,4.614523 +L 6.8674,5.834756,6.8674,6.204921 +L 6.8674,6.204921,6.8674,6.55799 +L 6.8674,6.55799,6.8674,6.90261 +L 6.8674,6.90261,6.4404,6.90261 +L 6.4404,6.90261,6.0166,6.90261 +L 6.0166,6.90261,5.5855,6.90261 +L 6.0166,8.504346,7.2947,8.504346 +L 6.7167,0.723278,6.4404,1.067854 +L 7.0004,0.370165,6.7167,0.723278 +L 7.2947,0,7.0004,0.370165 + +[得] 28 +L 4.4947,3.390045,2.2321,3.20343 +L 5.6929,2.864392,4.4947,3.390045 +L 6.0428,0,5.6929,2.864392 +L 5.7486,0,6.0428,0 +L 5.4687,0,5.7486,0 +L 5.1882,0,5.4687,0 +L 4.915,4.767056,3.7875,4.767056 +L 3.7875,4.767056,2.6594,4.767056 +L 3.5105,6.368792,3.5105,7.091983 +L 3.5105,7.091983,3.5105,7.806702 +L 3.5105,7.806702,3.5105,8.504346 +L 3.5105,8.504346,6.0428,8.504346 +L 6.0428,8.504346,6.0428,7.806702 +L 6.0428,7.806702,6.0428,7.091983 +L 6.0428,7.091983,6.0428,6.368792 +L 6.0428,6.368792,5.1917,6.368792 +L 5.1917,6.368792,4.3444,6.368792 +L 4.3444,6.368792,3.5105,6.368792 +L 3.9417,7.436493,4.4912,7.436493 +L 4.4912,7.436493,5.0481,7.436493 +L 5.0481,7.436493,5.6193,7.436493 +L 6.0428,4.767056,4.915,4.767056 +L 6.0603,4.022741,6.0428,4.767056 +L 6.1724,3.617419,6.0603,4.022741 +L 6.4736,3.20343,6.1724,3.617419 +L 0.9467,8.999943,-0.3037,6.9025 +L 0.9467,0,0.9467,5.567694 +A -4.7693,8.132955,6.266899,315.462,348.67668 + +[失] 26 +L 0.3393,0,1.3865,1.257249 +L 1.3865,1.257249,2.4478,2.505807 +L 2.4478,2.505807,3.5164,3.737357 +L 3.5164,3.737357,3.1027,4.113213 +L 3.1027,4.113213,2.2271,4.251538 +L 2.2271,4.251538,0.126,4.271371 +L 0.8296,6.204921,0.5529,5.834756 +L 1.1098,6.55799,0.8296,6.204921 +L 1.4114,6.90261,1.1098,6.55799 +L 3.0117,6.635613,1.4114,6.90261 +L 3.2288,5.784014,3.0117,6.635613 +L 3.9363,4.271371,3.2288,5.784014 +L 4.3675,4.271371,5.1972,4.271371 +L 5.1972,4.271371,6.0483,4.271371 +L 6.0483,4.271371,6.8994,4.271371 +L 5.7751,6.90261,6.5004,6.90261 +L 5.0676,6.90261,5.7751,6.90261 +L 4.3675,6.90261,5.0676,6.90261 +L 3.9363,6.90261,3.6421,7.33768 +L 3.6421,7.33768,3.53,7.891352 +L 3.53,7.891352,3.5164,9.038339 +L 1.4114,7.806702,1.4114,8.504346 +L 1.4114,7.436493,1.4114,7.806702 +L 4.7944,2.135663,3.9363,3.20343 +L 5.6455,1.067854,4.7944,2.135663 +L 6.5004,0,5.6455,1.067854 + +[加] 24 +L 1.8403,6.000094,0.1592,7.436493 +L 1.343,2.91115,1.8403,6.000094 +L 0.1592,0,1.343,2.91115 +L 1.8337,0,2.1104,0 +L 2.1104,0,2.3937,0 +L 2.3937,0,2.6848,0 +L 2.6848,0,3.4795,2.419581 +L 3.5425,7.436493,2.3937,7.538305 +L 2.3937,7.538305,1.9282,7.995812 +L 1.9282,7.995812,1.8337,9.038339 +L 6.9294,2.478816,6.9294,0 +L 6.9294,0,6.2293,0 +L 6.2293,0,5.5249,0 +L 5.5249,0,4.8244,0 +L 4.8244,0,4.8244,2.478816 +L 3.4795,2.419581,3.6091,4.839075 +L 3.6091,4.839075,3.5425,7.436493 +L 4.8244,4.957633,4.8244,7.436493 +L 4.8244,2.478816,4.8244,4.957633 +L 6.9294,4.957633,6.9294,2.478816 +L 6.9294,7.436493,6.9294,4.957633 +L 6.2293,7.436493,6.9294,7.436493 +L 5.5249,7.436493,6.2293,7.436493 +L 4.8244,7.436493,5.5249,7.436493 + +[変] 39 +L 2.7214,7.970376,0.1577,7.970376 +L 2.7214,7.272731,2.7214,7.970376 +L 2.7214,6.55799,2.7214,7.272731 +L 2.7214,5.834756,2.7214,6.55799 +L 2.0773,5.327842,2.7214,5.834756 +L 1.436,4.803743,2.0773,5.327842 +L 0.7986,4.271371,1.436,4.803743 +L 0.7145,6.204921,1.0718,6.55799 +L 1.0718,6.55799,1.436,6.90261 +L 0.3682,5.834756,0.7145,6.204921 +L 1.2259,2.505807,0.585,2.135663 +L 1.8672,2.858876,1.2259,2.505807 +L 2.5078,3.20343,1.8672,2.858876 +L 2.9946,2.669612,2.5078,3.20343 +L 3.4815,2.135663,2.9946,2.669612 +L 4.3991,3.573485,3.5515,3.659711 +L 5.2537,3.470513,4.3991,3.573485 +L 4.956,3.039734,5.2537,3.470513 +L 4.6758,2.591989,4.956,3.039734 +L 4.3991,2.135663,4.6758,2.591989 +L 4.3991,5.300895,4.3991,6.204921 +L 4.3991,6.204921,4.3991,7.091983 +L 4.3991,7.091983,4.3991,7.970376 +L 4.3991,7.970376,3.1421,7.970376 +L 4.8229,7.970376,6.9629,7.970376 +L 3.5515,3.659711,2.7214,3.737357 +L 3.1421,4.538302,3.478,5.075052 +L 3.478,5.075052,3.8006,5.272722 +L 3.8006,5.272722,4.3991,5.300895 +L 5.9546,6.472005,5.6775,6.90261 +L 6.2379,6.02402,5.9546,6.472005 +L 6.5325,5.567825,6.2379,6.02402 +L 3.9683,1.601715,3.4815,2.135663 +L 2.1435,0.474713,3.9683,1.601715 +L 1.1523,0.059453,2.1435,0.474713 +L 0.1577,0,1.1523,0.059453 +L 4.956,0.723278,4.3991,1.067854 +L 5.5269,0.370165,4.956,0.723278 +L 6.1052,0,5.5269,0.370165 + +[続] 45 +L 6.1348,7.970376,7.3887,7.970376 +L 5.711,7.970376,5.5573,8.340563 +L 5.5573,8.340563,5.4137,8.693632 +L 5.4137,8.693632,5.2802,9.038339 +L 4.1213,8.072078,3.1476,7.970376 +L 4.937,7.81791,4.1213,8.072078 +L 5.2802,6.368792,4.937,7.81791 +L 4.7062,6.368792,5.2802,6.368792 +L 4.1314,6.368792,4.7062,6.368792 +L 3.5749,6.368792,4.1314,6.368792 +L 3.5749,4.767056,4.8323,4.767056 +L 4.8323,4.767056,6.1072,4.767056 +L 6.1072,4.767056,7.3887,4.767056 +L 7.3887,4.767056,7.3887,4.423902 +L 7.3887,4.423902,7.3887,4.080619 +L 7.3887,4.080619,7.3887,3.737357 +L 6.5341,6.368792,6.9614,6.368792 +L 6.1138,6.368792,6.5341,6.368792 +L 5.711,6.368792,6.1138,6.368792 +L 4.426,2.669612,4.426,3.20343 +L 4.426,2.135663,4.426,2.669612 +L 3.5749,3.737357,3.5749,4.080619 +L 3.5749,4.080619,3.5749,4.423902 +L 3.5749,4.423902,3.5749,4.767056 +L 2.9304,0,3.4239,0.534014 +L 3.4239,0.534014,3.9216,1.067854 +L 3.9216,1.067854,4.426,1.601715 +L 4.426,1.601715,4.426,2.135663 +L 7.3887,0.723278,7.3887,1.067854 +L 7.3887,0.370165,7.3887,0.723278 +L 7.3887,0,7.3887,0.370165 +L 7.0875,0,7.3887,0 +L 6.8073,0,7.0875,0 +L 6.531,0,6.8073,0 +L 6.1348,0,5.8375,0.474713 +L 5.8375,0.474713,5.7286,1.30521 +L 5.7286,1.30521,5.711,3.20343 +L 1.4699,8.999943,0.6461,7.131357 +L 2.3242,5.30107,2.7515,4.500046 +L 1.4699,4.766979,1.4699,0 +L 0.6461,3.165377,0.2192,1.334942 +L 2.3242,3.165377,2.7515,1.86871 +L 0.2192,4.766979,2.6089,4.766979 +L 0.6461,7.131357,1.4468,6.130658 +L 2.3242,7.932282,0.7827,4.766979 + +[以] 21 +L 6.0251,5.505744,6.1368,9.038339 +L 5.822,3.735912,6.0251,5.505744 +L 5.7095,2.669612,5.822,3.735912 +L 3.2403,3.20343,4.0319,3.737357 +L 2.4558,2.669612,3.2403,3.20343 +L 1.6817,2.135663,2.4558,2.669612 +L 1.0446,2.135663,1.0446,4.450631 +L 1.0446,4.450631,1.0446,6.748743 +L 1.0446,6.748743,1.0446,9.038339 +L 3.4543,8.073545,3.1738,8.504346 +L 3.7345,7.625844,3.4543,8.073545 +L 4.0319,7.169628,3.7345,7.625844 +L 0.8306,1.971923,1.0446,2.135663 +L 0.624,1.791219,0.8306,1.971923 +L 0.4313,1.601715,0.624,1.791219 +L 2.964,0,3.8781,0.90407 +L 3.8781,0.90407,4.7922,1.791219 +L 4.7922,1.791219,5.7095,2.669612 +L 6.5641,1.868776,6.1368,2.669612 +L 6.9918,1.067854,6.5641,1.868776 +L 7.4191,0.267018,6.9918,1.067854 + +[共] 27 +L 3.1232,7.034039,2.3527,9.038339 +L 4.5456,6.834815,3.1232,7.034039 +L 5.3126,3.20343,4.5456,6.834815 +L 4.4615,3.20343,5.3126,3.20343 +L 3.6139,3.20343,4.4615,3.20343 +L 2.7803,3.20343,3.6139,3.20343 +L 2.3527,3.20343,2.3565,5.55237 +L 2.3565,5.55237,1.9849,6.638459 +L 1.9849,6.638459,0.647,6.90261 +L 0.924,3.20343,1.6315,3.20343 +L 0.2165,3.20343,0.924,3.20343 +L 1.6315,3.20343,2.3527,3.20343 +L 5.7434,3.20343,6.2898,3.20343 +L 6.2898,3.20343,6.8463,3.20343 +L 6.8463,3.20343,7.4176,3.20343 +L 6.7276,6.90261,7.0215,6.90261 +L 6.4436,6.90261,6.7276,6.90261 +L 6.1672,6.90261,6.4436,6.90261 +L 5.7434,6.90261,5.4387,7.33768 +L 5.4387,7.33768,5.3298,7.891352 +L 5.3298,7.891352,5.3126,9.038339 +L 0.8575,0,1.3478,0.723278 +L 1.3478,0.723278,1.8448,1.437996 +L 1.8448,1.437996,2.3527,2.135663 +L 6.5945,0,6.1672,0.723278 +L 6.1672,0.723278,5.7434,1.437996 +L 5.7434,1.437996,5.3126,2.135663 + +[初] 21 +L 5.8957,7.970376,5.3423,7.970376 +L 4.915,7.970376,4.6208,7.970376 +L 4.6208,7.970376,4.3371,7.970376 +L 4.3371,7.970376,4.0607,7.970376 +L 4.8134,5.014328,4.915,7.970376 +L 4.2285,2.676682,4.8134,5.014328 +L 7.1005,5.217646,7.02,7.970376 +L 6.9849,2.600351,7.1005,5.217646 +L 7.02,7.970376,6.4494,7.970376 +L 6.4494,7.970376,5.8957,7.970376 +L 2.7823,0,4.2285,2.676682 +L 5.3423,0,5.6158,0 +L 5.6158,0,5.8957,0 +L 5.8957,0,6.1657,0 +L 6.1657,0,6.9849,2.600351 +L 0.2473,7.398265,2.81,7.398265 +L 1.5285,8.999745,1.5285,7.398265 +L 2.81,3.165302,1.5285,4.766831 +L 1.5285,4.766831,1.5285,0 +L 2.7823,4.767056,2.0178,4.155286 +A -7.8651,10.968763,11.256282,316.1117,341.50627 + +[最] 57 +L 6.1989,8.504346,6.1989,7.806702 +L 6.1989,7.806702,6.1989,7.091983 +L 6.1989,7.091983,6.1989,6.368792 +L 6.1989,6.368792,4.6441,6.368792 +L 4.6441,6.368792,3.0855,6.368792 +L 3.0855,6.368792,1.534,6.368792 +L 1.534,6.368792,1.534,7.091983 +L 1.534,7.091983,1.534,7.806702 +L 1.534,7.806702,1.534,8.504346 +L 1.534,8.504346,3.0855,8.504346 +L 3.0855,8.504346,4.6441,8.504346 +L 4.6441,8.504346,6.1989,8.504346 +L 4.4897,7.436493,5.7681,7.436493 +L 3.2148,7.436493,4.4897,7.436493 +L 1.9543,7.436493,3.2148,7.436493 +L 2.087,4.767056,1.534,4.767056 +L 1.1032,4.767056,0.8296,4.767056 +L 0.8296,4.767056,0.5529,4.767056 +L 0.5529,4.767056,0.2797,4.767056 +L 1.1032,3.545269,1.1032,4.767056 +L 1.1032,2.315077,1.1032,3.545269 +L 2.087,2.058019,1.534,2.135663 +L 2.6618,1.971923,2.087,2.058019 +L 3.2393,2.936586,2.6618,3.039734 +L 3.2393,3.737357,3.2393,4.080619 +L 3.2393,4.080619,3.2393,4.423902 +L 3.2393,4.423902,3.2393,4.767056 +L 3.2393,4.767056,2.6618,4.767056 +L 2.6618,4.767056,2.087,4.767056 +L 2.6618,3.039734,2.087,3.125937 +L 2.087,3.125937,1.534,3.20343 +L 3.6631,4.767056,4.924,4.767056 +L 4.924,4.767056,6.1989,4.767056 +L 6.1989,4.767056,7.4811,4.767056 +L 7.0538,2.936586,6.7561,2.505807 +L 6.7561,2.505807,6.4756,2.058019 +L 5.6178,3.125937,6.3253,3.039734 +L 4.917,3.20343,5.6178,3.125937 +L 4.9489,2.412554,4.917,3.20343 +L 6.3253,3.039734,7.0538,2.936586 +L 3.2393,0,3.2393,0.370165 +L 3.2393,0.370165,3.2393,0.723278 +L 3.2393,0.723278,3.2393,1.067854 +L 3.2393,1.067854,2.4621,0.929397 +L 2.4621,0.929397,1.6037,0.672383 +L 1.6037,0.672383,0.2797,0.534014 +L 4.276,0,4.7667,0.370165 +L 4.7667,0.370165,5.2602,0.723278 +L 5.2602,0.723278,5.7681,1.067854 +L 5.7681,1.067854,5.1695,1.858882 +L 5.1695,1.858882,4.9489,2.412554 +L 6.4756,2.058019,6.1989,1.601715 +L 7.0538,0,6.7561,0.189263 +L 6.7561,0.189263,6.4756,0.370165 +L 6.4756,0.370165,6.1989,0.534014 +L 1.1032,1.067854,1.1032,2.315077 +L 3.2393,1.868776,2.6618,1.971923 + +[無] 75 +L 0.7024,2.669612,1.1328,2.669612 +L 1.1328,2.669612,1.5601,2.669612 +L 1.5601,2.669612,1.9913,2.669612 +L 1.9913,2.669612,1.9069,4.555266 +L 1.9069,4.555266,1.4449,5.220338 +L 1.4449,5.220338,0.2817,5.300895 +L 0.9826,7.272731,0.7024,6.90261 +L 1.2628,7.625844,0.9826,7.272731 +L 1.5601,7.970376,1.2628,7.625844 +L 1.9699,7.021233,1.5601,7.970376 +L 2.2014,6.046764,1.9699,7.021233 +L 3.2378,4.767056,2.2014,6.046764 +L 3.2378,4.07913,3.2378,4.767056 +L 3.2378,3.38293,3.2378,4.07913 +L 3.2378,2.669612,3.2378,3.38293 +L 2.965,2.669612,3.2378,2.669612 +L 2.6914,2.669612,2.965,2.669612 +L 2.4112,2.669612,2.6914,2.669612 +L 3.6651,2.669612,3.9421,2.669612 +L 3.9421,2.669612,4.2258,2.669612 +L 4.2258,2.669612,4.5236,2.669612 +L 4.5236,2.669612,4.5236,3.38293 +L 4.5236,3.38293,4.5236,4.07913 +L 4.5236,4.07913,4.5236,4.767056 +L 4.5236,4.767056,4.0924,5.137045 +L 4.0924,5.137045,3.6651,5.490311 +L 3.6651,5.490311,3.2378,5.834756 +L 3.2378,5.834756,3.2378,6.55799 +L 3.2378,6.55799,3.2378,7.272731 +L 3.2378,7.272731,3.2378,7.970376 +L 3.2378,7.970376,2.6427,8.00991 +L 2.6427,8.00991,2.317,8.286844 +L 2.317,8.286844,1.9913,9.038339 +L 4.2258,7.970376,3.9421,7.970376 +L 3.9421,7.970376,3.6651,7.970376 +L 4.5236,7.970376,4.2258,7.970376 +L 4.5236,7.272731,4.5236,7.970376 +L 4.5236,6.55799,4.5236,7.272731 +L 4.5236,5.834756,4.5236,6.55799 +L 4.9473,5.490311,4.5236,5.834756 +L 5.3746,5.137045,4.9473,5.490311 +L 5.8019,4.767056,5.3746,5.137045 +L 5.8019,4.07913,5.8019,4.767056 +L 5.8019,3.38293,5.8019,4.07913 +L 5.8019,2.669612,5.8019,3.38293 +L 5.5074,2.669612,5.8019,2.669612 +L 5.2237,2.669612,5.5074,2.669612 +L 4.9473,2.669612,5.2237,2.669612 +L 6.2292,2.669612,6.5021,2.669612 +L 6.5021,2.669612,6.7788,2.669612 +L 6.7788,2.669612,7.0485,2.669612 +L 6.6562,5.300895,6.9332,5.300895 +L 6.9332,5.300895,7.2026,5.300895 +L 7.2026,5.300895,7.4796,5.300895 +L 6.2292,5.300895,5.9277,5.755666 +L 5.9277,5.755666,5.8156,6.447904 +L 5.8156,6.447904,5.8019,7.970376 +L 5.8019,7.970376,5.5074,7.970376 +L 5.5074,7.970376,5.2237,7.970376 +L 5.2237,7.970376,4.9473,7.970376 +L 6.2292,7.970376,6.5021,7.970376 +L 6.5021,7.970376,6.7788,7.970376 +L 6.7788,7.970376,7.0485,7.970376 +L 0.2817,0,0.5553,0.534014 +L 0.5553,0.534014,0.8351,1.067854 +L 0.8351,1.067854,1.1328,1.601715 +L 3.2378,0.267018,3.0875,0.723278 +L 3.0875,0.723278,2.9439,1.171066 +L 2.9439,1.171066,2.8105,1.601715 +L 5.3746,0.267018,5.2237,0.723278 +L 5.2237,0.723278,5.0766,1.171066 +L 5.0766,1.171066,4.9473,1.601715 +L 7.4796,0.267018,7.2026,0.723278 +L 7.2026,0.723278,6.9332,1.171066 +L 6.9332,1.171066,6.6562,1.601715 + +[的] 12 +L 3.0083,7.50001,3.0083,1.067854 +L 3.0083,1.067854,0.3083,1.067854 +L 0.3083,1.067854,0.3083,7.50001 +L 0.3083,7.50001,3.0083,7.50001 +L 3.6979,7.50001,7.5082,7.50001 +L 7.5082,7.50001,7.5082,3.000014 +L 6.6085,0,5.7083,0 +L 4.8082,4.500022,5.7083,3.000014 +L 0.3083,4.252173,3.0083,4.252173 +L 1.2084,9.000017,0.8066,7.50001 +A -1.5414,9.000017,5.44975,326.5996,0 +A 2.0588,3.000014,5.44975,326.5996,0 + +[法] 36 +L 1.1652,2.591989,1.5925,3.737357 +L 3.1437,4.767056,2.4436,4.767056 +L 3.8477,4.767056,3.1437,4.767056 +L 4.5486,4.767056,3.8477,4.767056 +L 4.3381,3.166807,4.5486,4.767056 +L 4.979,4.767056,4.8463,6.848935 +L 4.8463,6.848935,4.2439,7.43936 +L 4.2439,7.43936,2.874,7.436493 +L 1.5925,7.970376,1.2944,8.340563 +L 1.2944,8.340563,1.0142,8.693632 +L 1.0142,8.693632,0.734,9.038339 +L 5.8336,7.436493,6.2574,7.436493 +L 6.2574,7.436493,6.6847,7.436493 +L 6.6847,7.436493,7.1124,7.436493 +L 5.4063,7.436493,5.1051,7.85184 +L 5.1051,7.85184,4.9934,8.267012 +L 4.9934,8.267012,4.979,9.038339 +L 5.4063,4.767056,6.1072,4.767056 +L 6.1072,4.767056,6.8147,4.767056 +L 6.8147,4.767056,7.5432,4.767056 +L 1.1652,5.834756,0.8671,6.204921 +L 0.8671,6.204921,0.5834,6.55799 +L 0.5834,6.55799,0.3141,6.90261 +L 6.5341,2.238854,6.2574,2.669612 +L 0.3141,0.267018,0.734,1.437996 +L 0.734,1.437996,1.1652,2.591989 +L 2.4436,0,2.874,0 +L 2.874,0,3.2978,0 +L 3.2978,0,3.7286,0 +L 3.7286,0,3.9426,1.625816 +L 3.9426,1.625816,4.3381,3.166807 +L 4.1248,0,4.8004,0.405539 +L 4.8004,0.405539,5.8655,0.751406 +L 5.8655,0.751406,7.1124,1.334871 +L 7.1124,1.334871,6.8147,1.791219 +L 6.8147,1.791219,6.5341,2.238854 + +[課] 60 +L 0.7711,5.300895,1.1914,5.300895 +L 1.1914,5.300895,1.6222,5.300895 +L 1.6222,5.300895,2.0495,5.300895 +L 1.6222,3.737357,2.0495,3.737357 +L 1.1914,3.737357,1.6222,3.737357 +L 0.7711,3.737357,1.1914,3.737357 +L 0.7711,2.135663,1.1914,2.135663 +L 1.1914,2.135663,1.6222,2.135663 +L 1.6222,2.135663,2.0495,2.135663 +L 5.0899,2.994487,3.2963,3.20343 +L 6.1543,2.395567,5.0899,2.994487 +L 6.2913,3.20343,6.6972,3.20343 +L 6.6972,3.20343,7.1179,3.20343 +L 7.1179,3.20343,7.5382,3.20343 +L 7.1179,5.300895,6.6867,5.300895 +L 6.6867,5.300895,6.2668,5.300895 +L 6.2668,5.300895,5.864,5.300895 +L 5.864,5.300895,5.5628,5.834756 +L 5.5628,5.834756,5.2822,6.368792 +L 5.2822,6.368792,5.0094,6.90261 +L 5.0094,6.90261,4.7117,6.90261 +L 4.7117,6.90261,4.4311,6.90261 +L 4.4311,6.90261,4.1544,6.90261 +L 3.7271,6.368792,3.7271,7.436493 +L 3.7271,7.436493,3.7271,8.504346 +L 3.7271,8.504346,4.8549,8.504346 +L 4.8549,8.504346,5.9831,8.504346 +L 5.9831,8.504346,7.1179,8.504346 +L 7.1179,8.504346,7.1179,7.436493 +L 7.1179,7.436493,7.1179,6.368792 +L 7.1179,6.368792,7.1179,5.300895 +L 5.2052,5.024157,4.5891,5.336379 +L 4.5891,5.336379,3.7271,5.300895 +L 3.7271,5.300895,3.7271,6.368792 +L 1.7448,6.90261,2.4452,6.90261 +L 1.0411,6.90261,1.7448,6.90261 +L 0.3403,6.90261,1.0411,6.90261 +L 0.7711,8.504346,1.1914,8.504346 +L 1.1914,8.504346,1.6222,8.504346 +L 1.6222,8.504346,2.0495,8.504346 +L 5.2192,2.669612,4.5821,1.971923 +L 5.4367,3.737357,5.2052,5.024157 +L 5.864,6.90261,5.713,7.272731 +L 5.713,7.272731,5.5628,7.625844 +L 5.5628,7.625844,5.4367,7.970376 +L 0.7711,0,0.7711,0.723278 +L 0.7711,0.723278,0.7711,1.437996 +L 0.7711,1.437996,0.7711,2.135663 +L 2.0495,2.135663,2.0495,1.437996 +L 2.0495,1.437996,2.0495,0.723278 +L 2.0495,0.723278,2.0495,0 +L 2.0495,0,1.6222,0 +L 1.6222,0,1.1914,0 +L 1.1914,0,0.7711,0 +L 5.4367,0,5.3526,0.90407 +L 5.3526,0.90407,5.2822,1.791219 +L 5.2822,1.791219,5.2192,2.669612 +L 4.5821,1.971923,3.9376,1.257249 +L 3.9376,1.257249,3.2963,0.534014 +L 7.5382,0.534014,6.1543,2.395567 + +[愛] 60 +L 4.507,8.098806,3.761,7.970376 +L 5.2531,8.286844,4.507,8.098806 +L 6.2863,8.237284,5.2531,8.286844 +L 5.9952,7.806702,6.2863,8.237284 +L 5.7115,7.358913,5.9952,7.806702 +L 5.4352,6.90261,5.7115,7.358913 +L 7.5748,6.368792,5.155,6.690777 +L 6.419,5.060933,6.2863,5.300895 +L 6.5665,4.803743,6.419,5.060933 +L 6.7167,4.538302,6.5665,4.803743 +L 4.8639,4.271371,5.4352,4.271371 +L 4.3074,4.271371,4.8639,4.271371 +L 3.761,4.271371,4.3074,4.271371 +L 3.3302,4.00444,3.0357,4.450631 +L 3.0357,4.450631,2.752,4.880119 +L 2.752,4.880119,2.4753,5.300895 +L 1.4736,4.957633,1.6207,5.300895 +L 1.3268,4.614523,1.4736,4.957633 +L 1.1934,4.271371,1.3268,4.614523 +L 0.3703,5.300895,0.3703,5.671016 +L 0.3703,5.671016,0.3703,6.02402 +L 0.3703,6.02402,0.3703,6.368792 +L 0.3703,6.368792,0.9205,6.472005 +L 0.9205,6.472005,1.4806,6.55799 +L 1.4806,6.55799,2.0518,6.635613 +L 2.0518,6.635613,1.7187,7.397046 +L 1.7187,7.397046,1.393,7.743001 +L 1.393,7.743001,0.7979,7.970376 +L 3.6945,7.368742,2.0518,7.970376 +L 5.155,6.690777,3.6945,7.368742 +L 4.1848,5.300895,3.5544,6.05239 +L 3.5544,6.05239,3.1096,6.329171 +L 3.1096,6.329171,2.4753,6.368792 +L 3.1793,3.737357,3.3302,4.00444 +L 3.0357,3.470513,3.1793,3.737357 +L 2.9029,3.20343,3.0357,3.470513 +L 3.2843,2.817876,2.9029,3.20343 +L 3.9361,2.610311,3.2843,2.817876 +L 5.4352,2.402637,3.9361,2.610311 +L 5.2842,2.135663,5.4352,2.402637 +L 2.9029,2.135663,2.4753,2.669612 +L 2.4753,2.669612,1.9044,2.324993 +L 1.9044,2.324993,1.3513,1.971923 +L 7.5748,6.02402,7.5748,6.368792 +L 7.5748,5.671016,7.5748,6.02402 +L 7.5748,5.300895,7.5748,5.671016 +L 7.2775,0,7.5748,0 +L 0.3703,0,1.4319,0.08211 +L 1.4319,0.08211,2.7379,0.401206 +L 2.7379,0.401206,3.761,1.067854 +L 3.761,1.067854,3.3302,1.601715 +L 3.3302,1.601715,2.9029,2.135663 +L 1.3513,1.971923,0.7979,1.601715 +L 6.2863,0,5.5854,0.370165 +L 5.5854,0.370165,4.885,0.723278 +L 4.885,0.723278,4.1848,1.067854 +L 6.7167,0,6.9938,0 +L 6.9938,0,7.2775,0 +L 5.0079,1.601715,5.1375,1.868776 +L 5.1375,1.868776,5.2842,2.135663 + +[囲] 30 +L 7.1744,8.504346,7.1744,5.680888 +L 7.1744,5.680888,7.1744,2.848982 +L 7.1744,2.848982,7.1744,0 +L 7.1744,0,5.0411,0 +L 5.0411,0,2.9116,0 +L 2.9116,0,0.7999,0 +L 0.7999,0,0.7999,2.848982 +L 0.7999,2.848982,0.7999,5.680888 +L 0.7999,5.680888,0.7999,8.504346 +L 0.7999,8.504346,2.9116,8.504346 +L 2.9116,8.504346,5.0411,8.504346 +L 5.0411,8.504346,7.1744,8.504346 +L 4.6281,6.665297,4.6138,7.436493 +L 4.7398,6.250081,4.6281,6.665297 +L 5.0376,5.834756,4.7398,6.250081 +L 4.1514,4.950606,3.3112,6.350382 +L 3.3112,6.350382,2.9326,7.436493 +L 3.1007,4.793871,2.0783,5.834756 +L 4.1378,3.024082,3.1007,4.793871 +L 4.6138,1.067854,4.1378,3.024082 +L 2.0783,1.067854,2.3547,1.704905 +L 2.3547,1.704905,2.6384,2.324993 +L 2.6384,2.324993,2.9326,2.936586 +L 2.9326,2.936586,2.6037,3.500175 +L 2.6037,3.500175,2.2706,3.707739 +L 2.2706,3.707739,1.6545,3.737357 +L 5.0376,3.737357,4.1514,4.950606 +L 5.4649,3.737357,5.7419,3.737357 +L 5.7419,3.737357,6.0256,3.737357 +L 6.0256,3.737357,6.3233,3.737357 + +[胃] 42 +L 0.8296,7.436493,0.8296,8.504346 +L 0.8296,6.368792,0.8296,7.436493 +L 0.8296,5.300895,0.8296,6.368792 +L 2.791,5.300895,0.8296,5.300895 +L 4.7629,5.300895,2.791,5.300895 +L 6.7491,5.300895,4.7629,5.300895 +L 6.7491,6.368792,6.7491,5.300895 +L 6.7491,7.436493,6.7491,6.368792 +L 6.7491,8.504346,6.7491,7.436493 +L 4.7629,8.504346,6.7491,8.504346 +L 2.791,8.504346,4.7629,8.504346 +L 0.8296,8.504346,2.791,8.504346 +L 1.9609,6.90261,1.2569,6.90261 +L 2.6617,6.90261,1.9609,6.90261 +L 3.3619,6.90261,2.6617,6.90261 +L 3.4918,6.635613,3.3619,6.90261 +L 3.6354,6.368792,3.4918,6.635613 +L 3.7857,6.101752,3.6354,6.368792 +L 4.2165,6.90261,4.0627,7.272731 +L 4.0627,7.272731,3.9226,7.625844 +L 3.9226,7.625844,3.7857,7.970376 +L 4.6441,6.90261,5.194,6.90261 +L 5.194,6.90261,5.7471,6.90261 +L 5.7471,6.90261,6.318,6.90261 +L 1.2569,4.271371,2.9346,4.271371 +L 2.9346,4.271371,4.6231,4.271371 +L 4.6231,4.271371,6.318,4.271371 +L 6.318,4.271371,6.318,2.858876 +L 6.318,2.858876,6.318,1.437996 +L 6.318,1.437996,6.318,0 +L 6.318,0,5.898,0 +L 5.898,0,5.4777,0 +L 5.4777,0,5.0714,0 +L 4.4865,2.135663,5.898,2.135663 +L 4.4865,3.20343,5.898,3.20343 +L 3.0855,3.20343,4.4865,3.20343 +L 1.6807,3.20343,3.0855,3.20343 +L 1.2569,2.858876,1.2569,4.271371 +L 1.2569,1.437996,1.2569,2.858876 +L 1.2569,0,1.2569,1.437996 +L 1.6807,2.135663,3.0855,2.135663 +L 3.0855,2.135663,4.4865,2.135663 + +[衣] 33 +L 7.2061,0,5.6895,2.470498 +L 5.6895,2.470498,4.6388,4.788245 +L 4.6388,4.788245,4.2469,7.436493 +L 4.2469,7.436493,3.9488,7.436493 +L 3.9488,7.436493,3.6686,7.436493 +L 3.6686,7.436493,3.3923,7.436493 +L 3.3923,7.436493,3.0942,6.55799 +L 3.0942,6.55799,2.8105,5.671016 +L 2.8105,5.671016,2.5412,4.767056 +L 2.324,4.271371,1.6827,3.737357 +L 1.6827,3.737357,1.0523,3.20343 +L 1.0523,3.20343,0.4288,2.669612 +L 2.324,3.039734,2.324,4.271371 +L 2.324,1.791219,2.324,3.039734 +L 2.324,0.534014,2.324,1.791219 +L 1.8161,0.370165,2.324,0.534014 +L 1.3185,0.189263,1.8161,0.370165 +L 0.8281,0,1.3185,0.189263 +L 2.965,0.534014,3.6651,0.723278 +L 3.6651,0.723278,4.3659,0.90407 +L 4.3659,0.90407,5.0661,1.067854 +L 5.4972,4.271371,5.9245,4.803743 +L 5.9245,4.803743,6.355,5.327842 +L 6.355,5.327842,6.7756,5.834756 +L 6.355,7.436493,7.2061,7.436493 +L 5.4972,7.436493,6.355,7.436493 +L 4.6461,7.436493,5.4972,7.436493 +L 3.8196,7.970376,3.8196,8.340563 +L 3.8196,8.340563,3.8196,8.693632 +L 3.8196,8.693632,3.8196,9.038339 +L 2.11,7.436493,2.965,7.436493 +L 1.2698,7.436493,2.11,7.436493 +L 0.4288,7.436493,1.2698,7.436493 + +[印] 24 +L 0.4347,7.970376,1.6637,7.990208 +L 1.6637,7.990208,2.3225,8.128533 +L 2.3225,8.128533,2.9635,8.504346 +L 4.2453,5.327842,4.2453,7.970376 +L 4.2453,2.668211,4.2453,5.327842 +L 4.2453,0,4.2453,2.668211 +L 2.263,1.601715,2.9635,1.601715 +L 1.5621,1.601715,2.263,1.601715 +L 0.8585,1.601715,1.5621,1.601715 +L 0.4347,1.601715,0.4347,3.735912 +L 0.4347,3.735912,0.4347,5.861703 +L 0.4347,5.861703,0.4347,7.970376 +L 0.8585,4.767056,1.5621,4.767056 +L 1.5621,4.767056,2.263,4.767056 +L 2.263,4.767056,2.9635,4.767056 +L 4.2453,7.970376,5.2257,7.970376 +L 5.2257,7.970376,6.2102,7.970376 +L 6.2102,7.970376,7.2046,7.970376 +L 7.2046,7.970376,7.2046,5.861703 +L 7.2046,5.861703,7.2046,3.735912 +L 7.2046,3.735912,7.2046,1.601715 +L 7.2046,1.601715,6.7776,1.601715 +L 6.7776,1.601715,6.3643,1.601715 +L 6.3643,1.601715,5.9542,1.601715 + +[栄] 36 +L 1.5084,1.971923,0.4612,1.067854 +L 2.5693,2.858876,1.5084,1.971923 +L 3.6379,3.737357,2.5693,2.858876 +L 3.701,2.505807,3.6379,3.737357 +L 3.7672,1.257249,3.701,2.505807 +L 3.8512,0,3.7672,1.257249 +L 6.8073,1.067854,4.9268,3.161181 +L 4.9268,3.161181,3.5504,3.957705 +L 3.5504,3.957705,1.3154,4.271371 +L 0.4612,5.300895,0.4612,5.834756 +L 0.4612,5.834756,0.4612,6.368792 +L 0.4612,6.368792,0.4612,6.90261 +L 0.4612,6.90261,2.0198,7.005822 +L 2.0198,7.005822,3.5714,7.091983 +L 3.5714,7.091983,5.13,7.169628 +L 5.13,7.169628,5.5363,7.806702 +L 5.5363,7.806702,5.9527,8.42668 +L 5.9527,8.42668,6.3835,9.038339 +L 3.5539,8.771255,3.4239,9.038339 +L 3.701,8.504346,3.5539,8.771255 +L 3.8512,8.237284,3.701,8.504346 +L 2.142,8.237284,1.9879,8.504346 +L 1.9879,8.504346,1.8443,8.771255 +L 1.8443,8.771255,1.7151,9.038339 +L 3.8512,4.767056,3.8512,5.137045 +L 3.8512,5.137045,3.8512,5.490311 +L 3.8512,5.490311,3.8512,5.834756 +L 4.7023,4.271371,5.2526,4.271371 +L 5.2526,4.271371,5.8126,4.271371 +L 5.8126,4.271371,6.3835,4.271371 +L 7.2349,5.300895,7.2349,5.834756 +L 7.2349,5.834756,7.2349,6.368792 +L 7.2349,6.368792,7.2349,6.90261 +L 7.2349,6.90261,6.6567,6.90261 +L 6.6567,6.90261,6.0861,6.90261 +L 6.0861,6.90261,5.5289,6.90261 + +[塩] 51 +L 7.3942,0,7.6919,0 +L 7.1144,0,7.3942,0 +L 6.8408,0,7.1144,0 +L 6.8408,1.067854,6.8408,0 +L 6.8408,2.135663,6.8408,1.067854 +L 6.8408,3.20343,6.8408,2.135663 +L 5.7095,3.20343,6.8408,3.20343 +L 4.5817,3.20343,5.7095,3.20343 +L 3.4543,3.20343,4.5817,3.20343 +L 3.4543,2.135663,3.4543,3.20343 +L 3.4543,1.067854,3.4543,2.135663 +L 3.4543,0,3.4543,1.067854 +L 3.1597,0,3.4543,0 +L 2.8725,0,3.1597,0 +L 2.5997,0,2.8725,0 +L 3.8816,0,4.1544,0 +L 4.1544,0,4.4311,0 +L 4.4311,0,4.7047,0 +L 4.7047,0,4.7047,0.90407 +L 4.7047,0.90407,4.7047,1.791219 +L 4.7047,1.791219,4.7047,2.669612 +L 5.4787,1.791219,5.5558,2.669612 +L 5.4048,0.90407,5.4787,1.791219 +L 5.3453,0,5.4048,0.90407 +L 6.4135,5.300895,6.4135,4.767056 +L 6.4135,5.834756,6.4135,5.300895 +L 6.4135,6.368792,6.4135,5.834756 +L 5.5593,6.368792,6.4135,6.368792 +L 4.7148,6.368792,5.5593,6.368792 +L 3.8816,6.368792,4.7148,6.368792 +L 3.8816,5.834756,3.8816,6.368792 +L 3.8816,5.300895,3.8816,5.834756 +L 3.8816,4.767056,3.8816,5.300895 +L 4.7148,4.767056,3.8816,4.767056 +L 5.5593,4.767056,4.7148,4.767056 +L 6.4135,4.767056,5.5593,4.767056 +L 5.4048,7.970376,6.5431,7.970376 +L 4.277,7.970376,5.4048,7.970376 +L 3.3562,7.535415,3.6925,8.227412 +L 2.5997,6.368792,3.3562,7.535415 +L 2.172,6.368792,1.8712,6.823586 +L 1.8712,6.823586,1.7588,7.515648 +L 1.7588,7.515648,1.7447,9.038339 +L 6.5431,7.970376,7.6919,7.970376 +L 3.6925,8.227412,3.8816,9.038339 +L 1.57,5.813719,0.4628,6.368792 +L 1.8008,4.3178,1.57,5.813719 +L 1.7447,2.135663,1.8008,4.3178 +L 1.3139,2.135663,1.7447,2.135663 +L 0.8901,2.135663,1.3139,2.135663 +L 0.4628,2.135663,0.8901,2.135663 + +[央] 27 +L 0.7065,0,1.7541,1.257249 +L 1.7541,1.257249,2.815,2.505807 +L 2.815,2.505807,3.8832,3.737357 +L 3.8832,3.737357,3.4703,4.113213 +L 3.4703,4.113213,2.5943,4.251538 +L 2.5943,4.251538,0.4929,4.271371 +L 1.7783,5.671016,1.7783,4.767056 +L 1.7783,6.55799,1.7783,5.671016 +L 1.7783,7.436493,1.7783,6.55799 +L 3.4913,7.014141,1.7783,7.436493 +L 3.6734,5.888519,3.4913,7.014141 +L 4.3039,4.271371,3.6734,5.888519 +L 4.7343,4.271371,5.1616,4.271371 +L 5.1616,4.271371,5.5924,4.271371 +L 5.5924,4.271371,6.0127,4.271371 +L 6.0127,4.271371,6.0127,5.337692 +L 6.0127,5.337692,6.0127,6.395608 +L 6.0127,6.395608,6.0127,7.436493 +L 6.0127,7.436493,4.6646,7.47051 +L 4.6646,7.47051,4.0338,7.860268 +L 4.0338,7.860268,3.8832,9.038339 +L 6.8393,0,5.9851,1.067854 +L 5.9851,1.067854,5.1375,2.135663 +L 5.1375,2.135663,4.3039,3.20343 +L 6.4089,4.271371,6.6852,4.271371 +L 6.6852,4.271371,6.9689,4.271371 +L 6.9689,4.271371,7.2666,4.271371 + +[億] 56 +L 6.0147,7.703445,5.3146,7.806702 +L 5.3146,7.806702,4.6138,7.892775 +L 4.6138,7.892775,3.9098,7.970376 +L 3.2481,7.743001,2.6314,7.970376 +L 3.5774,7.397046,3.2481,7.743001 +L 3.9098,6.635613,3.5774,7.397046 +L 3.3322,6.55799,3.9098,6.635613 +L 2.7613,6.472005,3.3322,6.55799 +L 2.2009,6.368792,2.7613,6.472005 +L 2.2009,0.267018,2.3337,0.723278 +L 2.3337,0.723278,2.4776,1.171066 +L 2.4776,1.171066,2.6314,1.601715 +L 3.5,0.830606,3.4825,1.601715 +L 3.6124,0.415347,3.5,0.830606 +L 3.9098,0,3.6124,0.415347 +L 4.3409,0,5.0411,0 +L 5.0411,0,5.7419,0 +L 5.7419,0,6.442,0 +L 6.442,0,6.442,0.370165 +L 6.442,0.370165,6.442,0.723278 +L 6.442,0.723278,6.442,1.067854 +L 7.7243,0.800923,7.5733,1.067854 +L 7.5733,1.067854,7.4262,1.334871 +L 7.4262,1.334871,7.297,1.601715 +L 6.8732,3.916792,6.8732,3.20343 +L 6.8732,4.613188,6.8732,3.916792 +L 6.8732,5.300895,6.8732,4.613188 +L 5.5909,5.300895,6.8732,5.300895 +L 4.3125,5.300895,5.5909,5.300895 +L 3.0552,5.300895,4.3125,5.300895 +L 3.0552,4.613188,3.0552,5.300895 +L 3.0552,3.916792,3.0552,4.613188 +L 3.0552,3.20343,3.0552,3.916792 +L 4.3125,3.20343,3.0552,3.20343 +L 5.5909,3.20343,4.3125,3.20343 +L 6.8732,3.20343,5.5909,3.20343 +L 5.4473,4.271371,6.442,4.271371 +L 4.4635,4.271371,5.4473,4.271371 +L 3.4825,4.271371,4.4635,4.271371 +L 4.3409,6.368792,4.7433,6.472005 +L 4.7433,6.472005,5.1636,6.55799 +L 5.1636,6.55799,5.5874,6.635613 +L 5.5874,6.635613,5.7174,7.005822 +L 5.7174,7.005822,5.8676,7.358913 +L 5.8676,7.358913,6.0147,7.703445 +L 6.442,7.970376,6.7187,7.970376 +L 6.7187,7.970376,7.0024,7.970376 +L 7.0024,7.970376,7.297,7.970376 +L 7.146,6.368792,7.7243,6.368792 +L 6.5755,6.368792,7.146,6.368792 +L 6.0147,6.368792,6.5755,6.368792 +L 1.3463,0,1.3463,6.597514 +L 4.9941,0.800923,4.8432,1.067854 +L 4.8432,1.067854,4.6961,1.334871 +L 4.6961,1.334871,4.5668,1.601715 +A -6.1833,10.627756,8.540418,321.41046,349.01228 + +[貨] 42 +L 0.8681,7.272731,0.5249,6.90261 +L 1.2257,7.625844,0.8681,7.272731 +L 1.5935,7.970376,1.2257,7.625844 +L 1.653,7.436493,1.5935,7.970376 +L 1.7262,6.90261,1.653,7.436493 +L 1.8033,6.368792,1.7262,6.90261 +L 1.8033,5.300895,3.3619,5.300895 +L 3.3619,5.300895,4.9205,5.300895 +L 4.9205,5.300895,6.4724,5.300895 +L 6.4724,5.300895,6.4724,4.26001 +L 6.4724,4.26001,6.4724,3.202116 +L 6.4724,3.202116,6.4724,2.135663 +L 6.4724,2.135663,4.9205,2.135663 +L 4.9205,2.135663,3.3619,2.135663 +L 3.3619,2.135663,1.8033,2.135663 +L 1.8033,2.135663,1.8033,3.202116 +L 1.8033,3.202116,1.8033,4.26001 +L 1.8033,4.26001,1.8033,5.300895 +L 2.2344,4.271371,3.4953,4.271371 +L 3.4953,4.271371,4.7667,4.271371 +L 4.7667,4.271371,6.0451,4.271371 +L 4.7667,3.20343,6.0451,3.20343 +L 3.4953,3.20343,4.7667,3.20343 +L 2.2344,3.20343,3.4953,3.20343 +L 1.653,0.370165,2.15,0.723278 +L 1.1662,0,1.653,0.370165 +L 2.15,0.723278,2.6617,1.067854 +L 6.0451,0.723278,5.6213,1.067854 +L 6.4724,0.370165,6.0451,0.723278 +L 6.8997,0,6.4724,0.370165 +L 6.2584,8.693632,6.8997,9.038339 +L 5.6213,8.340563,6.2584,8.693632 +L 4.98,7.970376,5.6213,8.340563 +L 4.462,6.823586,4.3531,7.515648 +L 4.7667,6.368792,4.462,6.823586 +L 5.1905,6.368792,5.8941,6.368792 +L 5.8941,6.368792,6.6051,6.368792 +L 6.6051,6.368792,7.3302,6.368792 +L 7.3302,6.368792,7.3302,6.73887 +L 7.3302,6.73887,7.3302,7.091983 +L 7.3302,7.091983,7.3302,7.436493 +L 4.3531,7.515648,4.3356,9.038339 + +[芽] 48 +L 1.2589,7.970376,0.5588,7.970376 +L 1.9629,7.970376,1.2589,7.970376 +L 2.6637,7.970376,1.9629,7.970376 +L 2.793,7.703445,2.6637,7.970376 +L 2.9366,7.436493,2.793,7.703445 +L 3.0837,7.169628,2.9366,7.436493 +L 3.7355,8.257139,3.0837,9.038339 +L 2.2326,5.834756,1.8126,5.834756 +L 1.8126,5.834756,1.4099,5.834756 +L 2.6637,5.834756,2.2326,5.834756 +L 2.6637,5.146983,2.6637,5.834756 +L 2.6637,4.450631,2.6637,5.146983 +L 2.6637,3.737357,2.6637,4.450631 +L 1.9629,3.737357,2.6637,3.737357 +L 1.2589,3.737357,1.9629,3.737357 +L 0.5588,3.737357,1.2589,3.737357 +L 3.0837,3.737357,3.7912,3.737357 +L 3.7912,5.834756,3.0837,5.834756 +L 2.4431,1.700702,1.2908,1.147053 +L 1.2908,1.147053,0.5588,1.067854 +L 3.9421,0,4.3726,0 +L 4.3726,0,4.7932,0 +L 4.7932,0,5.2237,0 +L 5.2237,0,5.1396,1.067854 +L 5.1396,1.067854,5.0734,2.135663 +L 5.0734,2.135663,5.0065,3.20343 +L 5.0065,3.20343,2.4431,1.700702 +L 3.7912,3.737357,4.4987,3.737357 +L 4.4987,3.737357,5.2237,3.737357 +L 5.2237,3.737357,5.2237,4.450631 +L 5.2237,4.450631,5.2237,5.146983 +L 5.2237,5.146983,5.2237,5.834756 +L 5.2237,5.834756,4.4987,5.834756 +L 4.4987,5.834756,3.7912,5.834756 +L 5.651,3.737357,6.3518,3.737357 +L 6.3518,3.737357,7.0523,3.737357 +L 7.0523,3.737357,7.7559,3.737357 +L 5.651,5.834756,6.2009,5.834756 +L 6.2009,5.834756,6.7546,5.834756 +L 6.7546,5.834756,7.3287,5.834756 +L 5.2237,7.169628,4.5757,7.772684 +L 4.5757,7.772684,3.7355,8.257139 +L 5.651,7.970376,5.5007,8.340563 +L 5.5007,8.340563,5.3536,8.693632 +L 5.3536,8.693632,5.2237,9.038339 +L 6.0471,7.970376,6.6036,7.970376 +L 6.6036,7.970376,7.1749,7.970376 +L 7.1749,7.970376,7.7559,7.970376 + +[改] 39 +L 3.7585,0,4.3819,0.723278 +L 4.3819,0.723278,5.0124,1.437996 +L 5.0124,1.437996,5.653,2.135663 +L 5.653,2.135663,5.026,3.004337 +L 5.026,3.004337,4.6481,4.101743 +L 4.6481,4.101743,4.1858,6.368792 +L 4.1858,6.368792,3.9718,6.204921 +L 3.9718,6.204921,3.7585,6.02402 +L 3.7585,6.02402,3.541,5.834756 +L 7.3625,0,6.9317,0.534014 +L 6.9317,0.534014,6.5041,1.067854 +L 6.5041,1.067854,6.0768,1.601715 +L 0.9811,1.601715,0.7009,2.094684 +L 0.7009,2.094684,0.6028,3.053787 +L 0.6028,3.053787,0.5849,5.300895 +L 0.5849,5.300895,1.2858,5.300895 +L 1.2858,5.300895,1.9894,5.300895 +L 1.9894,5.300895,2.6899,5.300895 +L 2.6899,5.300895,2.6899,6.204921 +L 2.6899,6.204921,2.6899,7.091983 +L 2.6899,7.091983,2.6899,7.970376 +L 2.6899,7.970376,1.9894,7.970376 +L 1.9894,7.970376,1.2858,7.970376 +L 1.2858,7.970376,0.5849,7.970376 +L 1.4119,1.601715,1.9649,1.601715 +L 1.9649,1.601715,2.5396,1.601715 +L 2.5396,1.601715,3.1207,1.601715 +L 3.1207,1.601715,3.1207,2.135663 +L 3.1207,2.135663,3.1207,2.669612 +L 3.1207,2.669612,3.1207,3.20343 +L 6.0768,2.936586,6.6792,4.679647 +L 6.6792,4.679647,6.9034,5.846183 +L 6.9034,5.846183,6.9317,7.436493 +L 6.9317,7.436493,6.0806,7.272731 +L 6.0806,7.272731,5.233,7.091983 +L 5.233,7.091983,4.3991,6.90261 +L 4.7949,7.970376,4.7949,8.340563 +L 4.7949,8.340563,4.7949,8.693632 +L 4.7949,8.693632,4.7949,9.038339 + +[害] 48 +L 1.8688,0,1.8688,0.723278 +L 1.8688,0.723278,1.8688,1.437996 +L 1.8688,1.437996,1.8688,2.135663 +L 1.8688,2.135663,3.2702,2.135663 +L 3.2702,2.135663,4.6851,2.135663 +L 4.6851,2.135663,6.1103,2.135663 +L 6.1103,2.135663,6.1103,1.437996 +L 6.1103,1.437996,6.1103,0.723278 +L 6.1103,0.723278,6.1103,0 +L 6.1103,0,4.6851,0 +L 4.6851,0,3.2702,0 +L 3.2702,0,1.8688,0 +L 0.5838,3.737357,1.7151,3.737357 +L 1.7151,3.737357,2.8429,3.737357 +L 2.8429,3.737357,3.9703,3.737357 +L 3.9703,3.737357,3.6271,5.142715 +L 3.6271,5.142715,2.8218,5.395614 +L 2.8218,5.395614,1.8688,5.300895 +L 4.4014,3.737357,5.3751,3.737357 +L 5.3751,3.737357,6.359,3.737357 +L 6.359,3.737357,7.361,3.737357 +L 4.4014,5.300895,4.2473,5.567825 +L 4.2473,5.567825,4.1037,5.834756 +L 4.1037,5.834756,3.9703,6.101752 +L 3.9703,6.101752,3.1192,6.204921 +L 3.1192,6.204921,2.2755,6.291082 +L 2.2755,6.291082,1.4415,6.368792 +L 4.8249,5.300895,5.2525,5.300895 +L 5.2525,5.300895,5.6798,5.300895 +L 5.6798,5.300895,6.1103,5.300895 +L 0.5838,6.368792,0.5838,6.90261 +L 0.5838,6.90261,0.5838,7.436493 +L 0.5838,7.436493,0.5838,7.970376 +L 0.5838,7.970376,1.7151,7.970376 +L 1.7151,7.970376,2.8429,7.970376 +L 2.8429,7.970376,3.9703,7.970376 +L 3.9703,7.970376,3.9703,8.340563 +L 3.9703,8.340563,3.9703,8.693632 +L 3.9703,8.693632,3.9703,9.038339 +L 4.4014,6.368792,5.1051,6.368792 +L 5.1051,6.368792,5.8126,6.368792 +L 5.8126,6.368792,6.5344,6.368792 +L 7.361,6.368792,7.361,6.90261 +L 7.361,6.90261,7.361,7.436493 +L 7.361,7.436493,7.361,7.970376 +L 7.361,7.970376,6.359,7.970376 +L 6.359,7.970376,5.3751,7.970376 +L 5.3751,7.970376,4.4014,7.970376 + +[街] 39 +L 6.1091,0,6.3858,0 +L 6.3858,0,6.6657,0 +L 6.6657,0,6.9634,0 +L 6.9634,0,6.9634,1.781216 +L 6.9634,1.781216,6.9634,3.545269 +L 6.9634,3.545269,6.9634,5.300895 +L 6.9634,5.300895,6.6657,5.300895 +L 6.6657,5.300895,6.3858,5.300895 +L 6.3858,5.300895,6.1091,5.300895 +L 2.2946,0.534014,2.8515,0.534014 +L 2.8515,0.534014,3.4224,0.534014 +L 3.4224,0.534014,4.0042,0.534014 +L 4.0042,0.534014,3.9762,2.226136 +L 3.9762,2.226136,3.6641,3.011452 +L 3.6641,3.011452,2.7223,3.20343 +L 4.4311,1.067854,4.7047,1.067854 +L 4.7047,1.067854,4.9884,1.067854 +L 4.9884,1.067854,5.2822,1.067854 +L 4.4311,3.20343,4.2809,3.573485 +L 4.2809,3.573485,4.1334,3.926576 +L 4.1334,3.926576,4.0042,4.271371 +L 2.2946,5.300895,2.8515,5.300895 +L 2.8515,5.300895,3.4224,5.300895 +L 3.4224,5.300895,4.0042,5.300895 +L 4.0042,5.300895,3.9236,6.735915 +L 3.9236,6.735915,3.5559,7.32356 +L 3.5559,7.32356,2.7223,7.436493 +L 4.4311,5.300895,4.7047,5.300895 +L 4.7047,5.300895,4.9884,5.300895 +L 4.9884,5.300895,5.2822,5.300895 +L 4.4311,7.436493,4.1299,7.85184 +L 4.1299,7.85184,4.0182,8.267012 +L 4.0182,8.267012,4.0042,9.038339 +L 6.1091,7.970376,6.6657,7.970376 +L 6.6657,7.970376,7.2369,7.970376 +L 7.2369,7.970376,7.818,7.970376 +L 1.4719,8.999943,0.2212,6.902524 +L 1.4719,0,1.4719,5.567732 +A -4.2459,8.132972,6.2669,315.462,348.67668 + +[各] 30 +L 2.3215,0,2.2441,1.257249 +L 2.2441,1.257249,2.1744,2.505807 +L 2.1744,2.505807,2.111,3.737357 +L 2.111,3.737357,1.6031,3.573485 +L 1.6031,3.573485,1.1061,3.392715 +L 1.1061,3.392715,0.6158,3.20343 +L 2.7519,0,3.8801,0 +L 3.8801,0,5.0114,0 +L 5.0114,0,6.1427,0 +L 6.1427,0,6.1427,1.067854 +L 6.1427,1.067854,6.1427,2.135663 +L 6.1427,2.135663,6.1427,3.20343 +L 6.1427,3.20343,5.0114,3.20343 +L 5.0114,3.20343,3.8801,3.20343 +L 3.8801,3.20343,2.7519,3.20343 +L 6.9938,3.20343,5.9917,3.916792 +L 5.9917,3.916792,5.0114,4.613188 +L 5.0114,4.613188,4.0303,5.300895 +L 4.0303,5.300895,3.61,4.957633 +L 3.61,4.957633,3.1792,4.614523 +L 3.1792,4.614523,2.7519,4.271371 +L 1.2564,5.834756,2.2164,6.733178 +L 2.2164,6.733178,2.7488,7.656841 +L 2.7488,7.656841,3.1792,9.038339 +L 4.4331,5.834756,4.8569,6.472005 +L 4.8569,6.472005,5.2842,7.091983 +L 5.2842,7.091983,5.7115,7.703445 +L 5.7115,7.703445,5.0114,7.806702 +L 5.0114,7.806702,4.3105,7.892775 +L 4.3105,7.892775,3.61,7.970376 + +[官] 36 +L 1.9274,0,1.9274,2.134262 +L 1.9274,2.134262,1.9274,4.26001 +L 1.9274,4.26001,1.9274,6.368792 +L 1.9274,6.368792,3.3322,6.368792 +L 3.3322,6.368792,4.7433,6.368792 +L 4.7433,6.368792,6.1692,6.368792 +L 6.1692,6.368792,6.1692,5.680888 +L 6.1692,5.680888,6.1692,4.984666 +L 6.1692,4.984666,6.1692,4.271371 +L 6.1692,4.271371,4.8908,4.271371 +L 4.8908,4.271371,3.6194,4.271371 +L 3.6194,4.271371,2.3585,4.271371 +L 2.3585,0,3.7595,0 +L 3.7595,0,5.1636,0 +L 5.1636,0,6.5646,0 +L 6.5646,0,6.5646,0.90407 +L 6.5646,0.90407,6.5646,1.791219 +L 6.5646,1.791219,6.5646,2.669612 +L 6.5646,2.669612,5.1636,2.669612 +L 5.1636,2.669612,3.7595,2.669612 +L 3.7595,2.669612,2.3585,2.669612 +L 0.649,6.368792,0.649,6.90261 +L 0.649,6.90261,0.649,7.436493 +L 0.649,7.436493,0.649,7.970376 +L 0.649,7.970376,1.7771,7.970376 +L 1.7771,7.970376,2.9049,7.970376 +L 2.9049,7.970376,4.0323,7.970376 +L 4.0323,7.970376,4.0323,8.340563 +L 4.0323,8.340563,4.0323,8.693632 +L 4.0323,8.693632,4.0323,9.038339 +L 7.4157,6.368792,7.4157,6.90261 +L 7.4157,6.90261,7.4157,7.436493 +L 7.4157,7.436493,7.4157,7.970376 +L 7.4157,7.970376,6.421,7.970376 +L 6.421,7.970376,5.4372,7.970376 +L 5.4372,7.970376,4.4596,7.970376 + +[管] 40 +L 2.3532,0,2.3532,1.600358 +L 2.3532,1.600358,2.3532,3.192177 +L 2.3532,3.192177,2.3532,4.767056 +L 2.3532,4.767056,3.6144,4.767056 +L 3.6144,4.767056,4.8893,4.767056 +L 4.8893,4.767056,6.1712,4.767056 +L 6.1712,4.767056,6.1712,4.26001 +L 6.1712,4.26001,6.1712,3.735912 +L 6.1712,3.735912,6.1712,3.20343 +L 6.1712,3.20343,5.043,3.20343 +L 5.043,3.20343,3.9118,3.20343 +L 3.9118,3.20343,2.7843,3.20343 +L 2.7843,0,4.0452,0 +L 4.0452,0,5.3166,0 +L 5.3166,0,6.5981,0 +L 6.5981,0,6.5981,0.723278 +L 6.5981,0.723278,6.5981,1.437996 +L 6.5981,1.437996,6.5981,2.135663 +L 6.5981,2.135663,5.3166,2.135663 +L 5.3166,2.135663,4.0452,2.135663 +L 4.0452,2.135663,2.7843,2.135663 +L 1.1066,4.271371,1.1066,4.803743 +L 1.1066,4.803743,1.1066,5.327842 +L 1.1066,5.327842,1.1066,5.834756 +L 1.1066,5.834756,2.0803,5.834756 +L 2.0803,5.834756,3.068,5.834756 +L 3.068,5.834756,4.0627,5.834756 +L 4.0627,5.834756,4.3429,6.90261 +L 7.0219,4.271371,7.0219,4.803743 +L 7.0219,4.803743,7.0219,5.327842 +L 7.0219,5.327842,7.0219,5.834756 +L 7.0219,5.834756,6.1712,5.834756 +L 6.1712,5.834756,5.3232,5.834756 +L 5.3232,5.834756,4.49,5.834756 +L 3.013,6.864274,2.3966,7.932158 +L 6.3999,6.864274,5.7831,7.932158 +L 7.8793,7.932158,4.8546,7.932158 +L 4.2795,7.932158,1.4684,7.932158 +A 0.7298,9.516865,4.41875,323.10826,353.27931 +A -2.6564,9.516865,4.41875,319.01823,353.27931 + +[観] 59 +L 1.5324,0,1.5149,3.024082 +L 1.5149,3.024082,1.4063,4.26001 +L 1.4063,4.26001,1.1016,4.767056 +L 1.1016,4.767056,0.9542,4.613188 +L 0.9542,4.613188,0.8106,4.450631 +L 0.8106,4.450631,0.6813,4.271371 +L 1.9597,0,2.2364,0 +L 2.2364,0,2.5163,0 +L 2.5163,0,2.814,0 +L 2.814,0,2.7828,0.771349 +L 2.7828,0.771349,2.5622,1.186542 +L 2.5622,1.186542,1.9597,1.601715 +L 3.2413,0,3.6476,0 +L 3.6476,0,4.0647,0 +L 4.0647,0,4.4917,0 +L 4.4917,0,5.2482,1.265698 +L 5.2482,1.265698,5.651,2.34476 +L 5.651,2.34476,5.7736,3.737357 +L 5.7736,3.737357,5.1925,3.737357 +L 5.1925,3.737357,4.9225,3.737357 +L 4.9225,3.737357,4.9225,5.337692 +L 4.9225,5.337692,4.9225,6.929491 +L 4.9225,6.929491,4.9225,8.504346 +L 4.9225,8.504346,5.7736,8.504346 +L 5.7736,8.504346,7.4796,8.504346 +L 7.4796,8.504346,7.4796,3.737357 +L 7.4796,3.737357,6.6285,3.737357 +L 6.6285,3.737357,6.6285,0 +L 6.6285,0,7.8785,0 +L 7.8785,0,7.8785,1.067854 +L 3.2413,1.601715,2.814,2.135663 +L 2.814,2.135663,2.3902,2.669612 +L 2.3902,2.669612,1.9597,3.20343 +L 3.2413,3.20343,2.6602,3.916792 +L 2.6602,3.916792,2.0925,4.613188 +L 2.0925,4.613188,1.5324,5.300895 +L 1.5324,5.300895,1.6617,5.567825 +L 1.6617,5.567825,1.8088,5.834756 +L 1.8088,5.834756,1.9597,6.101752 +L 1.9597,6.101752,1.5324,6.204921 +L 1.5324,6.204921,1.1016,6.291082 +L 1.1016,6.291082,0.6813,6.368792 +L 3.2413,4.767056,2.9541,5.17242 +L 2.9541,5.17242,2.9541,5.518506 +L 2.9541,5.518506,3.2413,6.101752 +L 3.2413,6.101752,2.9474,6.204921 +L 2.9474,6.204921,2.6602,6.291082 +L 2.6602,6.291082,2.3902,6.368792 +L 2.3902,6.368792,2.3902,6.90261 +L 2.3902,6.90261,2.3902,7.436493 +L 2.3902,7.436493,2.3902,7.970376 +L 2.3902,7.970376,1.4659,7.950565 +L 1.4659,7.950565,1.0281,7.812262 +L 1.0281,7.812262,0.6813,7.436493 +L 5.3463,5.300895,7.0558,5.300895 +L 5.3463,6.90261,7.0558,6.90261 +L 2.814,7.970376,3.2203,7.970376 +L 3.2203,7.970376,3.6409,7.970376 +L 3.6409,7.970376,4.0647,7.970376 + +[希] 22 +L 4.5217,0,3.9683,3.395626 +L 3.9683,3.395626,2.9421,3.723325 +L 2.9421,3.723325,2.3855,1.067854 +L 5.8039,1.067854,6.6266,1.067854 +L 6.6266,1.067854,6.6266,3.737357 +L 6.6266,3.737357,5.1315,3.840526 +L 5.1315,3.840526,4.5952,4.409762 +L 4.5952,4.409762,4.5217,5.834756 +L 4.5217,5.834756,2.9736,5.20913 +L 2.9736,5.20913,1.8668,4.108814 +L 1.8668,4.108814,0.7075,2.669612 +L 0.7075,5.834756,2.8125,5.834756 +L 4.9493,5.834756,7.9054,5.834756 +L 3.6706,6.368792,3.7476,7.083489 +L 3.7476,7.083489,2.5817,7.052427 +L 2.5817,7.052427,1.1383,6.90261 +L 6.1958,6.90261,4.7952,7.625844 +L 4.7952,7.625844,3.3942,8.340563 +L 3.3942,8.340563,1.9894,9.038339 +L 5.5934,8.504346,5.7829,8.693632 +L 5.7829,8.693632,5.9861,8.874468 +L 5.9861,8.874468,6.1958,9.038339 + +[季] 36 +L 2.8428,0,4.1279,0 +L 4.1279,0,3.6554,2.011501 +L 3.6554,2.011501,2.4292,2.310874 +L 2.4292,2.310874,0.7379,2.135663 +L 4.5552,2.135663,4.4014,2.402637 +L 4.4014,2.402637,4.2575,2.669612 +L 4.2575,2.669612,4.1279,2.936586 +L 4.1279,2.936586,4.4014,3.306664 +L 4.4014,3.306664,4.6743,3.659711 +L 4.6743,3.659711,4.9513,4.00444 +L 4.9513,4.00444,2.9616,4.302412 +L 2.9616,4.302412,1.7291,4.481758 +L 1.7291,4.481758,0.7379,4.271371 +L 4.9513,2.135663,7.5113,2.135663 +L 5.5884,4.271371,5.8024,4.450631 +L 5.8024,4.450631,6.0192,4.613188 +L 6.0192,4.613188,6.2329,4.767056 +L 6.2329,4.767056,5.7219,5.300895 +L 5.7219,5.300895,5.2242,5.834756 +L 5.2242,5.834756,4.7373,6.368792 +L 4.7373,6.368792,4.524,6.02402 +L 4.524,6.02402,4.317,5.671016 +L 4.317,5.671016,4.1279,5.300895 +L 2.6324,5.300895,3.0561,5.83469 +L 3.0561,5.834756,3.2701,6.101752 +L 3.2701,6.101752,2.4191,6.204921 +L 2.4191,6.204921,1.5715,6.291082 +L 1.5715,6.291082,0.7379,6.368792 +L 3.6974,6.368792,4.0022,6.783964 +L 4.0022,6.783964,4.1104,7.199224 +L 4.1104,7.199224,4.1279,7.970376 +L 4.1279,7.970376,1.1333,7.970376 +L 5.3786,6.368792,7.5113,6.368792 +L 4.5552,7.970376,4.8953,8.346211 +L 4.8953,8.346211,5.4448,8.484645 +L 5.4448,8.484645,6.6602,8.504346 + +[救] 14 +L 6.9774,5.687464,6.9774,7.169561 +L 4.6836,6.606709,5.2248,4.162312 +L 5.1635,7.169561,7.9399,7.169561 +L 2.5398,9.038339,2.5398,0 +L 4.34,6.90261,0.7399,6.90261 +L 2.5398,0,1.64,0 +L 3.4014,9.000082,4.3246,8.077047 +L 0.7399,2.044479,2.441,3.745864 +L 0.7399,5.925808,1.792,4.873607 +L 4.34,5.353673,3.3534,4.784037 +L 2.5398,5.553606,4.34,2.435261 +A 0.777,9.455802,4.835225,316.4037,354.59011 +A -0.0758,5.687464,7.053305,306.25872,0 +A 12.1113,5.687464,7.053305,192.48774,233.74127 + +[給] 15 +L 2.0203,8.999943,1.1965,7.131357 +L 2.8745,5.30107,3.3018,4.500046 +L 2.0203,4.766979,2.0203,0 +L 1.1965,3.165377,0.7695,1.334942 +L 2.8745,3.165377,3.3018,1.86871 +L 0.7695,4.766979,3.1593,4.766979 +L 1.1965,7.131357,1.9972,6.130658 +L 2.8745,7.932282,1.3331,4.766979 +L 5.7196,9.000017,3.4696,5.102821 +L 5.7196,9.000017,7.9695,5.102821 +L 4.3697,5.300895,7.0698,5.300895 +L 4.3697,0,4.3697,3.000014 +L 4.3697,3.000014,7.0698,3.000014 +L 7.0698,3.000014,7.0698,0 +L 7.0698,0,4.3697,0 + +[挙] 40 +L 2.9084,0,4.1868,0 +L 4.1868,0,3.7907,1.960584 +L 3.7907,1.960584,2.7329,2.28548 +L 2.7329,2.28548,1.1988,2.135663 +L 4.5822,2.135663,3.7595,3.737335 +L 3.7595,3.737357,2.0499,3.737357 +L 5.0134,2.135663,7.1495,2.135663 +L 4.5822,3.737357,4.3059,4.151215 +L 4.3059,4.151215,4.2043,4.55669 +L 4.2043,4.55669,4.1868,5.300895 +L 4.1868,5.300895,3.2726,5.320836 +L 3.2726,5.320836,2.8278,5.45914 +L 2.8278,5.45914,2.4772,5.834756 +L 2.4772,5.834756,1.9028,5.327842 +L 1.9028,5.327842,1.3288,4.803743 +L 1.3288,4.803743,0.768,4.271371 +L 5.0134,3.737357,6.2918,3.737357 +L 7.1495,4.271371,6.5685,4.984666 +L 6.5685,4.984666,5.9937,5.680888 +L 5.9937,5.680888,5.4407,6.368792 +L 5.4407,6.368792,5.1426,6.204921 +L 5.1426,6.204921,4.8589,6.02402 +L 4.8589,6.02402,4.5822,5.834756 +L 2.9084,6.368792,3.0376,6.635613 +L 3.0376,6.635613,3.1812,6.90261 +L 3.1812,6.90261,3.3357,7.169628 +L 3.3357,7.169628,2.4772,7.272731 +L 2.4772,7.272731,1.6261,7.358913 +L 1.6261,7.358913,0.768,7.436493 +L 5.0134,7.169628,4.5822,7.272731 +L 4.5822,7.272731,4.1689,7.358913 +L 4.1689,7.358913,3.7595,7.436493 +L 5.6505,7.436493,6.2918,9.038339 +L 6.2918,7.436493,7.5733,7.436493 +L 2.4772,8.237284,2.3266,8.504346 +L 2.3266,8.504346,2.1834,8.771255 +L 2.1834,8.771255,2.0499,9.038339 +L 4.1868,8.237284,4.0358,8.504346 +L 4.0358,8.504346,3.8922,8.771255 +L 3.8922,8.771255,3.7595,9.038339 + +[漁] 42 +L 2.5076,0,2.6298,0.370165 +L 2.6298,0.370165,2.7633,0.723278 +L 2.7633,0.723278,2.9069,1.067854 +L 4.6157,0.267018,4.462,0.534014 +L 4.462,0.534014,4.3219,0.800923 +L 4.3219,0.800923,4.1884,1.067854 +L 6.3214,0.267018,6.1712,0.534014 +L 6.1712,0.534014,6.0307,0.800923 +L 6.0307,0.800923,5.8976,1.067854 +L 8.0026,0.267018,7.8524,0.534014 +L 7.8524,0.534014,7.7052,0.800923 +L 7.7052,0.800923,7.5718,1.067854 +L 3.7615,2.669612,3.7471,5.292445 +L 3.7471,5.292445,3.6354,6.38996 +L 3.6354,6.38996,3.3342,6.90261 +L 3.3342,6.90261,3.1832,6.73887 +L 3.1832,6.73887,3.0361,6.55799 +L 3.0361,6.55799,2.9069,6.368792 +L 4.1884,2.669612,5.4703,2.669612 +L 5.4703,2.669612,5.3828,4.111681 +L 5.3828,4.111681,5.0084,4.672446 +L 5.0084,4.672446,4.1884,4.767056 +L 5.8976,2.669612,7.148,2.669612 +L 7.148,2.669612,7.148,4.767056 +L 7.148,4.767056,5.8976,4.767056 +L 5.8976,4.767056,5.6003,5.300895 +L 5.6003,5.300895,5.3166,5.834756 +L 5.3166,5.834756,5.0395,6.368792 +L 5.0395,6.368792,4.1884,6.368792 +L 7.148,5.300895,7.148,6.368792 +L 7.148,6.368792,6.2517,6.388515 +L 6.2517,6.388515,5.8136,6.526818 +L 5.8136,6.526818,5.4703,6.90261 +L 5.4703,6.90261,5.6003,7.169628 +L 5.6003,7.169628,5.7439,7.436493 +L 5.7439,7.436493,5.8976,7.703445 +L 5.8976,7.703445,5.173,7.625844 +L 5.173,7.625844,4.462,7.539684 +L 4.462,7.539684,3.7615,7.436493 +L 2.0526,7.970394,1.2289,8.999879 +L 1.6257,5.834675,0.8019,6.90246 +L 2.0526,3.470496,0.8019,0.000035 + +[競] 54 +L 0.8316,0,1.4729,1.659724 +L 1.4729,1.659724,1.5149,3.031284 +L 1.5149,3.031284,1.2589,4.767056 +L 1.2589,4.767056,3.3639,4.767056 +L 3.3639,4.767056,3.2833,3.545269 +L 3.2833,3.545269,3.2101,2.315077 +L 3.2101,2.315077,3.1541,1.067854 +L 3.1541,1.067854,3.3639,1.257249 +L 3.3639,1.257249,3.5744,1.437996 +L 3.5744,1.437996,3.7912,1.601715 +L 4.0052,0,4.492,0.723278 +L 4.492,0.723278,4.9785,1.437996 +L 4.9785,1.437996,5.4723,2.135663 +L 5.4723,2.135663,5.3252,3.012874 +L 5.3252,3.012874,5.1995,3.890019 +L 5.1995,3.890019,5.0734,4.767056 +L 5.0734,4.767056,7.1784,4.767056 +L 7.1784,4.767056,7.0239,3.192177 +L 7.0239,3.192177,6.8807,1.600358 +L 6.8807,1.600358,6.7511,0 +L 6.7511,0,8.0295,0 +L 8.0295,0,8.0295,1.067854 +L 0.8316,6.368792,1.1086,6.472005 +L 1.1086,6.472005,1.3815,6.55799 +L 1.3815,6.55799,1.655,6.635613 +L 1.655,6.635613,1.5114,7.005822 +L 1.5114,7.005822,1.3815,7.358913 +L 1.3815,7.358913,1.2589,7.703445 +L 1.2589,7.703445,1.5359,7.806702 +L 1.5359,7.806702,1.8088,7.892775 +L 1.8088,7.892775,2.0823,7.970376 +L 2.0823,7.970376,2.0823,9.038339 +L 2.0823,6.368792,2.7022,6.596101 +L 2.7022,6.596101,3.0346,6.942253 +L 3.0346,6.942253,3.3639,7.703445 +L 3.3639,7.703445,3.07,7.806702 +L 3.07,7.806702,2.7898,7.892775 +L 2.7898,7.892775,2.5093,7.970376 +L 4.6461,6.368792,4.9189,6.472005 +L 4.9189,6.472005,5.1925,6.55799 +L 5.1925,6.55799,5.4723,6.635613 +L 5.4723,6.635613,5.3252,7.005822 +L 5.3252,7.005822,5.1995,7.358913 +L 5.1995,7.358913,5.0734,7.703445 +L 5.0734,7.703445,5.3497,7.806702 +L 5.3497,7.806702,5.6198,7.892775 +L 5.6198,7.892775,5.8961,7.970376 +L 5.8961,7.970376,5.8961,9.038339 +L 5.8961,6.368792,6.5164,6.596101 +L 6.5164,6.596101,6.8453,6.942253 +L 6.8453,6.942253,7.1784,7.703445 +L 7.1784,7.703445,6.8807,7.806702 +L 6.8807,7.806702,6.6001,7.892775 +L 6.6001,7.892775,6.3234,7.970376 + +[協] 41 +L 2.5396,0,3.1417,1.166841 +L 3.1417,1.166841,3.3624,1.858882 +L 3.3624,1.858882,3.3977,2.669612 +L 3.3977,2.669612,3.0997,2.858876 +L 3.0997,2.858876,2.816,3.039734 +L 2.816,3.039734,2.5396,3.20343 +L 4.0037,0,4.2208,0.189263 +L 4.2208,0.189263,4.431,0.370165 +L 4.431,0.370165,4.6446,0.534014 +L 4.6446,0.534014,4.6446,3.20343 +L 4.6446,3.20343,4.0313,3.242985 +L 4.0313,3.242985,3.7056,3.51992 +L 3.7056,3.51992,3.3977,4.271371 +L 5.5027,0,6.1051,1.166841 +L 6.1051,1.166841,6.3219,1.858882 +L 6.3219,1.858882,6.3538,2.669612 +L 6.3538,2.669612,6.0592,2.858876 +L 6.0592,2.858876,5.772,3.039734 +L 5.772,3.039734,5.5027,3.20343 +L 6.9947,0,7.208,0.189263 +L 7.208,0.189263,7.422,0.370165 +L 7.422,0.370165,7.6353,0.534014 +L 7.6353,0.534014,7.6353,3.20343 +L 7.6353,3.20343,7.0193,3.242985 +L 7.0193,3.242985,6.6862,3.51992 +L 6.6862,3.51992,6.3538,4.271371 +L 3.5799,5.300895,4.0667,6.02402 +L 4.0667,6.02402,4.564,6.73887 +L 4.564,6.73887,5.0719,7.436493 +L 5.0719,7.436493,4.7287,7.812262 +L 4.7287,7.812262,4.2905,7.950565 +L 4.2905,7.950565,3.3977,7.970376 +L 5.9297,5.300895,7.0049,5.671016 +L 7.0049,5.671016,7.2501,6.634322 +L 7.2501,6.634322,7.208,7.970376 +L 7.208,7.970376,5.5027,7.970376 +L 5.5027,7.970376,5.3482,8.340563 +L 5.3482,8.340563,5.2046,8.693632 +L 5.2046,8.693632,5.0719,9.038339 +L 1.7302,0,1.7302,9.038339 +L 0.8301,6.000003,2.63,6.000003 + +[鏡] 83 +L 0.864,0,1.7151,0 +L 1.7151,0,2.1455,0 +L 2.1455,0,2.2194,2.286772 +L 2.2194,2.286772,2.0089,4.056714 +L 2.0089,4.056714,0.864,4.767056 +L 4.0372,0,4.524,0.534014 +L 4.524,0.534014,5.021,1.067854 +L 5.021,1.067854,5.5289,1.601715 +L 5.5289,1.601715,5.5289,1.971923 +L 5.5289,1.971923,5.5289,2.324993 +L 5.5289,2.324993,5.5289,2.669612 +L 5.5289,2.669612,5.235,2.669612 +L 5.235,2.669612,4.9513,2.669612 +L 4.9513,2.669612,4.6778,2.669612 +L 4.6778,2.669612,4.6778,3.38293 +L 4.6778,3.38293,4.6778,4.07913 +L 4.6778,4.07913,4.6778,4.767056 +L 4.6778,4.767056,5.6515,4.767056 +L 5.6515,4.767056,6.6391,4.767056 +L 6.6391,4.767056,7.6338,4.767056 +L 7.6338,4.767056,7.6338,4.07913 +L 7.6338,4.07913,7.6338,3.38293 +L 7.6338,3.38293,7.6338,2.669612 +L 7.6338,2.669612,7.3435,2.669612 +L 7.3435,2.669612,7.0563,2.669612 +L 7.0563,2.669612,6.7827,2.669612 +L 6.7827,2.669612,6.7827,1.791219 +L 6.7827,1.791219,6.7827,0.90407 +L 6.7827,0.90407,6.7827,0 +L 6.7827,0,7.21,0 +L 7.21,0,7.6338,0 +L 7.6338,0,8.0611,0 +L 8.0611,0,8.0611,0.370165 +L 8.0611,0.370165,8.0611,0.723278 +L 8.0611,0.723278,8.0611,1.067854 +L 2.7549,0.534014,2.9689,0.723278 +L 2.9689,0.723278,3.1857,0.90407 +L 3.1857,0.90407,3.3962,1.067854 +L 1.2878,1.868776,1.1403,2.324993 +L 1.1403,2.324993,0.9967,2.772649 +L 0.9967,2.772649,0.864,3.20343 +L 2.9689,2.402637,3.1017,2.858876 +L 3.1017,2.858876,3.2418,3.306664 +L 3.2418,3.306664,3.3962,3.737357 +L 5.1016,3.737357,5.8059,3.737357 +L 5.8059,3.737357,6.5064,3.737357 +L 6.5064,3.737357,7.21,3.737357 +L 2.5416,4.767056,2.2614,5.182227 +L 2.2614,5.182227,2.1634,5.597596 +L 2.1634,5.597596,2.1455,6.368792 +L 2.1455,6.368792,1.5256,6.388515 +L 1.5256,6.388515,1.1928,6.526818 +L 1.1928,6.526818,0.864,6.90261 +L 0.864,6.90261,1.2878,7.625844 +L 1.2878,7.625844,1.7151,8.340563 +L 1.7151,8.340563,2.1455,9.038339 +L 2.1455,9.038339,2.5486,8.504346 +L 2.5486,8.504346,2.9689,7.970376 +L 2.9689,7.970376,3.3962,7.436493 +L 4.2505,5.834756,4.6778,5.834756 +L 4.6778,5.834756,5.1016,5.834756 +L 5.1016,5.834756,5.5289,5.834756 +L 5.5289,5.834756,5.3786,6.472005 +L 5.3786,6.472005,5.235,7.091983 +L 5.235,7.091983,5.1016,7.703445 +L 5.1016,7.703445,5.3786,7.806702 +L 5.3786,7.806702,5.6623,7.892775 +L 5.6623,7.892775,5.96,7.970376 +L 5.96,7.970376,5.96,8.340563 +L 5.96,8.340563,5.96,8.693632 +L 5.96,8.693632,5.96,9.038339 +L 5.96,5.834756,6.2297,5.937903 +L 6.2297,5.937903,6.5064,6.02402 +L 6.5064,6.02402,6.7827,6.101752 +L 6.7827,6.101752,6.9127,6.73887 +L 6.9127,6.73887,7.0563,7.358913 +L 7.0563,7.358913,7.21,7.970376 +L 7.21,7.970376,6.9127,7.970376 +L 6.9127,7.970376,6.6325,7.970376 +L 6.6325,7.970376,6.3523,7.970376 +L 7.21,5.834756,7.4836,5.834756 +L 7.4836,5.834756,7.7673,5.834756 +L 7.7673,5.834756,8.0611,5.834756 + +[極] 49 +L 2.9674,0,4.6553,0 +L 4.6553,0,6.3575,0 +L 6.3575,0,8.0631,0 +L 4.8584,1.067854,5.0724,1.257249 +L 5.0724,1.257249,5.2857,1.437996 +L 5.2857,1.437996,5.4997,1.601715 +L 5.4997,1.601715,5.4997,3.202116 +L 5.4997,3.202116,5.4997,4.793871 +L 5.4997,4.793871,5.4997,6.368792 +L 5.4997,6.368792,4.9288,6.472005 +L 4.9288,6.472005,4.3716,6.55799 +L 4.3716,6.55799,3.8252,6.635613 +L 3.8252,6.635613,3.9513,7.272731 +L 3.9513,7.272731,4.0949,7.892775 +L 4.0949,7.892775,4.2493,8.504346 +L 4.2493,8.504346,3.9513,8.504346 +L 3.9513,8.504346,3.6711,8.504346 +L 3.6711,8.504346,3.3947,8.504346 +L 6.3575,1.601715,6.6271,2.058019 +L 6.6271,2.058019,6.9108,2.505807 +L 6.9108,2.505807,7.2085,2.936586 +L 7.2085,2.936586,6.9108,3.54667 +L 6.9108,3.54667,6.6271,4.156863 +L 6.6271,4.156863,6.3575,4.767056 +L 3.3947,2.669612,3.3947,3.38293 +L 3.3947,3.38293,3.3947,4.07913 +L 3.3947,4.07913,3.3947,4.767056 +L 3.3947,4.767056,3.8252,4.767056 +L 3.8252,4.767056,4.2493,4.767056 +L 4.2493,4.767056,4.6763,4.767056 +L 4.6763,4.767056,4.6763,4.07913 +L 4.6763,4.07913,4.6763,3.38293 +L 4.6763,3.38293,4.6763,2.669612 +L 4.6763,2.669612,4.2493,2.669612 +L 4.2493,2.669612,3.8252,2.669612 +L 3.8252,2.669612,3.3947,2.669612 +L 7.6358,3.737357,7.6358,4.614523 +L 7.6358,4.614523,7.6358,5.491647 +L 7.6358,5.491647,7.6358,6.368792 +L 7.6358,6.368792,7.2085,6.368792 +L 7.2085,6.368792,6.7812,6.368792 +L 6.7812,6.368792,6.3575,6.368792 +L 4.6763,8.504346,5.8044,8.504346 +L 5.8044,8.504346,6.9357,8.504346 +L 6.9357,8.504346,8.0631,8.504346 +L 1.6852,0,1.6852,9.000042 +L 1.6852,5.150051,0.4036,3.165203 +L 2.509,4.500046,1.6852,6.048336 +L 2.509,6.902673,0.4036,6.902673 + +[訓] 17 +L 3.8205,0,4.6681,2.789724 +L 4.6681,2.789724,4.7697,5.638553 +L 4.7697,5.638553,4.6748,8.504346 +L 7.6378,0,7.6378,2.848982 +L 7.6378,2.848982,7.6378,5.680888 +L 7.6378,5.680888,7.6378,8.504346 +L 5.9567,1.067854,5.9567,3.38293 +L 5.9567,3.38293,5.9567,5.680888 +L 5.9567,5.680888,5.9567,7.970376 +L 0.8645,6.9025,3.3967,6.9025 +L 1.2918,8.504324,2.9694,8.504324 +L 1.2918,5.30096,2.9694,5.30096 +L 1.2918,4.23304,2.9694,4.23304 +L 1.2918,2.669525,2.9694,2.669525 +L 1.2918,0,1.2918,2.669525 +L 2.9694,0,1.2918,0 +L 2.9694,2.669525,2.9694,0 + +[軍] 54 +L 4.2495,0,3.6614,1.584968 +L 3.6614,1.584968,2.3235,1.771234 +L 2.3235,1.771234,0.8595,1.601715 +L 4.6736,1.601715,4.3791,2.135663 +L 4.3791,2.135663,4.0954,2.669612 +L 4.0954,2.669612,3.8225,3.20343 +L 3.8225,3.20343,3.2408,3.20343 +L 3.2408,3.20343,2.6734,3.20343 +L 2.6734,3.20343,2.113,3.20343 +L 2.113,3.20343,2.113,3.916792 +L 2.113,3.916792,2.113,4.613188 +L 2.113,4.613188,2.113,5.300895 +L 2.113,5.300895,2.6734,5.300895 +L 2.6734,5.300895,3.2408,5.300895 +L 3.2408,5.300895,3.8225,5.300895 +L 3.8225,5.300895,4.1094,5.894101 +L 4.1094,5.894101,4.1094,6.309448 +L 4.1094,6.309448,3.8225,6.90261 +L 3.8225,6.90261,3.1217,6.90261 +L 3.1217,6.90261,2.418,6.90261 +L 2.418,6.90261,1.7176,6.90261 +L 5.1041,1.601715,5.9342,1.601715 +L 5.9342,1.601715,6.7852,1.601715 +L 6.7852,1.601715,7.6363,1.601715 +L 4.6736,3.20343,4.0288,3.954924 +L 4.0288,3.954924,3.4758,4.231662 +L 3.4758,4.231662,2.5406,4.271371 +L 5.1041,3.20343,5.5104,3.20343 +L 5.5104,3.20343,5.9275,3.20343 +L 5.9275,3.20343,6.3548,3.20343 +L 6.3548,3.20343,6.3548,3.573485 +L 6.3548,3.573485,6.3548,3.926576 +L 6.3548,3.926576,6.3548,4.271371 +L 6.3548,4.271371,5.1605,4.289628 +L 5.1605,4.289628,4.6141,4.418124 +L 4.6141,4.418124,4.2495,4.767056 +L 4.2495,4.767056,4.6141,5.122926 +L 4.6141,5.122926,5.1605,5.122926 +L 5.1605,5.122926,6.3548,4.767056 +L 0.8595,6.90261,0.8595,7.436493 +L 0.8595,7.436493,0.8595,7.970376 +L 0.8595,7.970376,0.8595,8.504346 +L 0.8595,8.504346,3.1217,8.504346 +L 3.1217,8.504346,5.3776,8.504346 +L 5.3776,8.504346,7.6363,8.504346 +L 7.6363,8.504346,7.6363,7.970376 +L 7.6363,7.970376,7.6363,7.436493 +L 7.6363,7.436493,7.6363,6.90261 +L 4.6736,6.90261,4.523,7.272731 +L 4.523,7.272731,4.3791,7.625844 +L 4.3791,7.625844,4.2495,7.970376 +L 5.1041,6.90261,5.654,6.90261 +L 5.654,6.90261,6.2112,6.90261 +L 6.2112,6.90261,6.7852,6.90261 + +[郡] 44 +L 1.716,0,1.6355,0.90407 +L 1.6355,0.90407,1.5651,1.791219 +L 1.5651,1.791219,1.5056,2.669612 +L 1.5056,2.669612,1.2887,2.324993 +L 1.2887,2.324993,1.0783,1.971923 +L 1.0783,1.971923,0.865,1.601715 +L 2.1433,0,2.7037,0 +L 2.7037,0,3.2746,0 +L 3.2746,0,3.8522,0 +L 3.8522,0,3.8522,1.067854 +L 3.8522,1.067854,3.8522,2.135663 +L 3.8522,2.135663,3.8522,3.20343 +L 3.8522,3.20343,3.131,3.20343 +L 3.131,3.20343,2.4235,3.20343 +L 2.4235,3.20343,1.716,3.20343 +L 1.716,3.20343,1.716,3.916792 +L 1.716,3.916792,1.716,4.613188 +L 1.716,4.613188,1.716,5.300895 +L 1.716,5.300895,1.4215,5.300895 +L 1.4215,5.300895,1.1413,5.300895 +L 1.1413,5.300895,0.865,5.300895 +L 2.1433,5.300895,1.9962,6.495866 +L 1.9962,6.495866,1.5616,6.877326 +L 1.5616,6.877326,0.865,6.90261 +L 2.5703,5.300895,2.9976,5.300895 +L 2.9976,5.300895,3.4284,5.300895 +L 3.4284,5.300895,3.8522,5.300895 +L 3.8522,5.300895,3.4112,6.792458 +L 3.4112,6.792458,2.5882,7.139966 +L 2.5882,7.139966,2.1433,8.504346 +L 2.1433,8.504346,1.716,8.504346 +L 1.716,8.504346,1.2887,8.504346 +L 1.2887,8.504346,0.865,8.504346 +L 4.2798,6.90261,3.9786,7.317957 +L 3.9786,7.317957,3.8662,7.73315 +L 3.8662,7.73315,3.8522,8.504346 +L 3.8522,8.504346,3.4284,8.504346 +L 3.4284,8.504346,2.9976,8.504346 +L 2.9976,8.504346,2.5703,8.504346 +L 5.3649,8.4661,8.0649,8.4661 +L 5.3649,0,5.3649,8.4661 +L 8.0649,8.4661,7.6173,6.097388 +L 7.6173,6.097388,8.0649,2.631212 +L 8.0649,2.631212,5.3649,1.5636 + +# kan_12 ------------------------------------------------------- +# 型径景芸健固候功康航差菜材昨刷察札殺参散司士氏周祝順唱松照省賞臣清積節戦浅然倉巣争側束孫帯隊達仲貯兆 + +[型] 26 +L 0.0034,0,3.3938,0 +L 3.3938,0,3.0922,1.831979 +L 3.0922,1.831979,2.2341,2.197832 +L 2.2341,2.197832,0.8615,2.097443 +L 3.8176,0,6.7768,0 +L 3.8176,2.097443,3.6631,2.467521 +L 3.6631,2.467521,3.523,2.820568 +L 3.523,2.820568,3.3938,3.165319 +L 4.2449,2.097443,5.9187,2.097443 +L 0.0034,3.69907,0.3393,4.499994 +L 0.3393,4.499994,0.6825,5.300829 +L 0.6825,5.300829,1.0433,6.101686 +L 1.0433,6.101686,0.6825,6.17793 +L 0.6825,6.17793,0.3393,6.254306 +L 0.3393,6.254306,0.0034,6.330485 +L 2.5353,4.233063,2.5353,5.83469 +L 2.5353,5.83469,1.2534,6.864346 +L 1.2534,6.864346,1.2534,8.466192 +L 1.2534,8.466192,0.4304,8.466192 +L 5.4988,4.233063,6.3498,4.233063 +L 6.3498,4.233063,6.3498,8.999966 +L 4.6718,5.300829,4.6718,8.466192 +L 2.9626,6.330485,2.6614,6.765554 +L 2.6614,6.765554,2.5532,7.319204 +L 2.5532,7.319204,2.5353,8.466192 +L 2.5353,8.466192,1.6846,8.466192 + +[径] 28 +L 2.1416,0,4.6668,0 +L 4.6668,0,4.5271,1.611609 +L 4.5271,1.611609,4.0122,2.087636 +L 4.0122,2.087636,2.9926,2.097443 +L 5.0976,0,7.2341,0 +L 5.0976,2.097443,4.7964,2.512768 +L 4.7964,2.512768,4.6843,2.927918 +L 4.6843,2.927918,4.6668,3.69907 +L 5.5249,2.097443,6.376,2.097443 +L 2.1416,4.233063,3.2101,4.648388 +L 3.2101,4.648388,3.8648,5.063538 +L 3.8648,5.063538,4.6668,5.83469 +L 4.6668,5.83469,3.7881,6.974585 +L 3.7881,6.974585,3.469,7.656775 +L 3.469,7.656775,3.4199,8.466192 +L 3.4199,8.466192,2.5653,8.466192 +L 6.376,4.233063,5.9557,4.603075 +L 5.9557,4.603075,5.5249,4.956101 +L 5.5249,4.956101,5.0976,5.300829 +L 5.0976,6.330485,5.5249,6.967668 +L 5.5249,6.967668,5.9557,7.587602 +L 5.9557,7.587602,6.376,8.19913 +L 6.376,8.19913,5.5249,8.302321 +L 5.5249,8.302321,4.6668,8.388547 +L 4.6668,8.388547,3.8157,8.466192 +L 0.8562,8.999966,-0.3904,6.902544 +L 0.8562,0,0.8562,5.56776 +A -4.8598,8.133,6.266899,315.462,348.67668 + +[景] 22 +L 2.5673,0,3.4184,0 +L 3.4184,0,3.4184,2.631436 +L 3.4184,2.631436,1.3135,2.631436 +L 1.3135,2.631436,1.3135,4.233063 +L 1.3135,4.233063,5.5549,4.233063 +L 5.5549,4.233063,5.5549,2.631436 +L 5.5549,2.631436,3.8496,2.631436 +L 0.2487,0.533949,0.7356,0.877189 +L 0.7356,0.877189,1.2329,1.220364 +L 1.2329,1.220364,1.7408,1.563713 +L 6.1644,0.800792,5.8106,1.066365 +L 5.8106,1.066365,5.4639,1.323511 +L 5.4639,1.323511,5.1245,1.563713 +L 0.0351,5.300829,3.4184,5.300829 +L 3.4184,5.300829,3.4184,6.330485 +L 3.4184,6.330485,1.3135,6.330485 +L 1.3135,6.330485,1.3135,8.466192 +L 1.3135,8.466192,5.5549,8.466192 +L 5.5549,8.466192,5.5549,6.330485 +L 5.5549,6.330485,3.8496,6.330485 +L 3.8496,5.300829,6.8057,5.300829 +L 1.7408,7.398404,5.1245,7.398404 + +[芸] 8 +L 0.0616,7.932374,7.2626,7.932374 +L 4.7307,9.000184,4.7307,7.16965 +L 2.6257,9.000184,2.6257,7.16965 +L 5.9846,5.83469,1.3155,5.83469 +L 7.2626,3.69907,0.0616,3.69907 +L 3.0247,3.69907,2.1736,0 +L 5.1296,2.097443,6.8042,0 +A 1.7288,8.653661,8.653625,261.78459,299.45251 + +[健] 52 +L 1.7731,0,2.0495,0.446387 +L 2.0495,0.446387,2.33,0.875744 +L 2.33,0.875744,2.6309,1.296608 +L 2.6309,1.296608,2.3262,1.919562 +L 2.3262,1.919562,2.2141,2.542342 +L 2.2141,2.542342,2.2004,3.69907 +L 3.8781,0,3.6049,0.18922 +L 3.6049,0.18922,3.3317,0.370144 +L 3.3317,0.370144,3.0547,0.533949 +L 4.3054,0,5.2822,0 +L 5.2822,0,6.2668,0 +L 6.2668,0,7.2615,0 +L 5.1565,1.296608,4.8308,1.860196 +L 4.8308,1.860196,4.498,2.067957 +L 4.498,2.067957,3.8781,2.097443 +L 3.0547,2.097443,3.0547,5.300829 +L 3.0547,5.300829,2.4383,5.281128 +L 2.4383,5.281128,2.1055,5.142716 +L 2.1055,5.142716,1.7731,4.767034 +L 5.587,2.097443,5.2893,2.631436 +L 5.2893,2.631436,5.0056,3.165319 +L 5.0056,3.165319,4.7359,3.69907 +L 4.7359,3.69907,4.4382,3.69907 +L 4.4382,3.69907,4.1545,3.69907 +L 4.1545,3.69907,3.8781,3.69907 +L 6.0146,2.097443,6.2878,2.097443 +L 6.2878,2.097443,6.5715,2.097443 +L 6.5715,2.097443,6.8657,2.097443 +L 5.587,3.69907,5.2893,4.233063 +L 5.2893,4.233063,5.0056,4.767034 +L 5.0056,4.767034,4.7359,5.300829 +L 4.7359,5.300829,4.4382,5.300829 +L 4.4382,5.300829,4.1545,5.300829 +L 4.1545,5.300829,3.8781,5.300829 +L 5.587,5.300829,4.5712,6.582026 +L 4.5712,6.582026,3.787,6.879997 +L 3.787,6.879997,3.0547,7.398404 +L 3.0547,7.398404,2.7605,6.89138 +L 2.7605,6.89138,2.4736,6.36726 +L 2.4736,6.36726,2.2004,5.83469 +L 6.2283,5.300829,6.2878,5.644069 +L 6.2878,5.644069,6.361,5.987266 +L 6.361,5.987266,6.4419,6.330485 +L 6.4419,6.330485,5.2055,7.457639 +L 5.2055,7.457639,4.5432,7.872833 +L 4.5432,7.872833,3.8781,7.932374 +L 6.8657,6.864346,6.333,7.536707 +L 6.333,7.536707,5.699,8.149679 +L 5.699,8.149679,5.1565,8.999966 +L 2.2004,7.932374,3.0547,7.932374 +L 0.9217,0,0.9217,6.597546 +A -6.6121,10.627773,8.540417,321.41046,349.01228 + +[固] 10 +L 0.094,8.466192,0.094,0 +L 0.094,0,6.8674,0 +L 6.8674,0,6.8674,8.466192 +L 6.8674,8.466192,0.094,8.466192 +L 1.7751,4.233063,1.7751,1.563713 +L 1.7751,1.563713,5.1932,1.563713 +L 5.1932,1.563713,5.1932,4.233063 +L 5.1932,4.233063,1.7751,4.233063 +L 5.5855,6.330485,1.3794,6.330485 +L 3.4843,7.398404,3.4843,4.233063 + +[候] 38 +L 3.2969,0,3.9168,0.877189 +L 3.9168,0.877189,4.5507,1.754334 +L 4.5507,1.754334,5.1882,2.631436 +L 5.1882,2.631436,4.8274,3.00703 +L 4.8274,3.00703,4.281,3.145552 +L 4.281,3.145552,3.0867,3.165319 +L 6.8977,0,6.4736,0.713384 +L 6.4736,0.713384,6.0428,1.409627 +L 6.0428,1.409627,5.6193,2.097443 +L 2.2321,1.563713,2.2321,3.508537 +L 2.2321,3.508537,2.2321,5.453426 +L 2.2321,5.453426,2.2321,7.398404 +L 5.6193,3.165319,5.3143,3.580403 +L 5.3143,3.580403,5.2022,3.995772 +L 5.2022,3.995772,5.1882,4.767034 +L 5.1882,4.767034,3.9938,4.747245 +L 3.9938,4.747245,3.451,4.608876 +L 3.451,4.608876,3.0867,4.233063 +L 6.0428,3.165319,6.4736,3.165319 +L 6.4736,3.165319,6.8977,3.165319 +L 6.8977,3.165319,7.3247,3.165319 +L 5.6193,4.767034,6.0428,4.767034 +L 6.0428,4.767034,6.4736,4.767034 +L 6.4736,4.767034,6.8977,4.767034 +L 3.0867,6.864346,4.0639,6.864346 +L 4.0639,6.864346,5.0481,6.864346 +L 5.0481,6.864346,6.0428,6.864346 +L 6.0428,6.864346,6.0428,7.398404 +L 6.0428,7.398404,6.0428,7.932374 +L 6.0428,7.932374,6.0428,8.466192 +L 6.0428,8.466192,5.1917,8.466192 +L 5.1917,8.466192,4.3444,8.466192 +L 4.3444,8.466192,3.5105,8.466192 +L 6.4736,6.864346,6.7468,6.864346 +L 6.7468,6.864346,7.0273,6.864346 +L 7.0273,6.864346,7.3247,6.864346 +L 0.9467,0,0.9467,6.597546 +A -6.5801,10.627773,8.540417,321.41046,349.01228 + +[功] 24 +L 2.4443,0,4.5107,3.629941 +L 4.5107,3.629941,4.4827,6.336154 +L 4.4827,6.336154,1.4114,7.398404 +L 1.4114,7.398404,1.4114,5.823395 +L 1.4114,5.823395,1.4114,4.23164 +L 1.4114,4.23164,1.4114,2.631436 +L 1.4114,2.631436,1.8142,2.631436 +L 1.8142,2.631436,2.2341,2.631436 +L 2.2341,2.631436,2.6579,2.631436 +L 5.2217,0,5.4949,0 +L 5.4949,0,5.7751,0 +L 5.7751,0,6.0766,0 +L 6.0766,0,6.8608,2.24575 +L 6.8608,2.24575,6.9694,4.466042 +L 6.9694,4.466042,6.8994,6.864346 +L 6.8994,6.864346,5.3898,6.969004 +L 5.3898,6.969004,4.8574,7.54809 +L 4.8574,7.54809,4.7944,8.999966 +L 0.126,2.097443,0.5529,2.097443 +L 0.5529,2.097443,0.9802,2.097443 +L 0.9802,2.097443,1.4114,2.097443 +L 0.126,7.398404,0.4023,7.398404 +L 0.4023,7.398404,0.686,7.398404 +L 0.686,7.398404,0.9802,7.398404 + +[康] 48 +L 0.1592,0.26693,0.8386,2.932187 +L 0.8386,2.932187,1.0173,5.343187 +L 1.0173,5.343187,1.0103,7.932374 +L 1.0103,7.932374,1.8442,7.932374 +L 1.8442,7.932374,2.6914,7.932374 +L 2.6914,7.932374,3.5425,7.932374 +L 3.5425,7.932374,3.676,8.302321 +L 3.676,8.302321,3.8196,8.655302 +L 3.8196,8.655302,3.9733,8.999966 +L 3.1152,0,3.3923,0 +L 3.3923,0,3.676,0 +L 3.676,0,3.9733,0 +L 3.9733,0,3.9733,0.532416 +L 3.9733,0.532416,3.9733,1.056602 +L 3.9733,1.056602,3.9733,1.563713 +L 3.9733,1.563713,3.1152,1.220364 +L 3.1152,1.220364,2.2641,0.877189 +L 2.2641,0.877189,1.4099,0.533949 +L 6.9294,0.533949,4.989,1.990224 +L 4.989,1.990224,4.2223,2.395502 +L 4.2223,2.395502,3.9733,2.097443 +L 5.6475,2.097443,5.9245,2.467521 +L 5.9245,2.467521,6.2082,2.820568 +L 6.2082,2.820568,6.5056,3.165319 +L 3.9733,3.432359,3.8196,3.69907 +L 3.8196,3.69907,3.676,3.966132 +L 3.676,3.966132,3.5425,4.233063 +L 3.5425,4.233063,2.9646,4.233063 +L 2.9646,4.233063,2.3937,4.233063 +L 2.3937,4.233063,1.8337,4.233063 +L 4.3936,4.233063,3.3709,5.204906 +L 3.3709,5.204906,2.5163,5.371491 +L 2.5163,5.371491,1.4099,5.300829 +L 4.8244,4.233063,5.2346,4.336123 +L 5.2346,4.336123,5.6475,4.422305 +L 5.6475,4.422305,6.0751,4.499994 +L 6.0751,4.499994,4.8735,5.618764 +L 4.8735,5.618764,3.2378,6.17793 +L 3.2378,6.17793,1.8337,6.330485 +L 6.5056,5.300829,5.7529,5.953402 +L 5.7529,5.953402,4.7197,6.478769 +L 4.7197,6.478769,3.9733,7.131342 +L 3.9733,7.131342,4.0994,7.398404 +L 4.0994,7.398404,4.2434,7.665334 +L 4.2434,7.665334,4.3936,7.932374 +L 4.3936,7.932374,5.3743,7.932374 +L 5.3743,7.932374,6.355,7.932374 +L 6.355,7.932374,7.3567,7.932374 + +[航] 48 +L 0.1577,0.26693,0.585,2.69216 +L 0.585,2.69216,1.0123,6.549409 +L 1.0123,6.549409,1.436,8.999966 +L 1.8672,0,2.1435,0 +L 2.1435,0,2.4241,0 +L 2.4241,0,2.7214,0 +L 2.7214,0,2.7214,1.60027 +L 2.7214,1.60027,2.7214,3.192047 +L 2.7214,3.192047,2.7214,4.767034 +L 2.7214,4.767034,2.1435,4.603075 +L 2.1435,4.603075,1.573,4.422305 +L 1.573,4.422305,1.0123,4.233063 +L 3.5725,0,4.3186,1.953405 +L 4.3186,1.953405,4.4485,3.779714 +L 4.4485,3.779714,4.3991,5.83469 +L 4.3991,5.83469,4.956,5.83469 +L 4.956,5.83469,5.5269,5.83469 +L 5.5269,5.83469,6.1052,5.83469 +L 6.1052,5.83469,6.1052,3.889888 +L 6.1052,3.889888,6.1052,1.944868 +L 6.1052,1.944868,6.1052,0 +L 6.1052,0,6.5325,0 +L 6.5325,0,6.9629,0 +L 6.9629,0,7.3867,0 +L 7.3867,0,7.3867,0.532416 +L 7.3867,0.532416,7.3867,1.056602 +L 7.3867,1.056602,7.3867,1.563713 +L 1.436,1.563713,1.436,2.097443 +L 1.436,2.097443,1.436,2.631436 +L 1.436,2.631436,1.436,3.165319 +L 2.7214,5.300829,2.7214,6.17793 +L 2.7214,6.17793,2.7214,7.05523 +L 2.7214,7.05523,2.7214,7.932374 +L 2.7214,7.932374,2.291,7.932374 +L 2.291,7.932374,1.8672,7.932374 +L 1.8672,7.932374,1.436,7.932374 +L 1.436,5.83469,1.436,6.17793 +L 1.436,6.17793,1.436,6.521236 +L 1.436,6.521236,1.436,6.864346 +L 3.5725,7.398404,4.1228,7.398404 +L 4.1228,7.398404,4.6828,7.398404 +L 4.6828,7.398404,5.2537,7.398404 +L 5.2537,7.398404,5.2537,7.932374 +L 5.2537,7.932374,5.2537,8.466192 +L 5.2537,8.466192,5.2537,8.999966 +L 5.6775,7.398404,6.1052,7.398404 +L 6.1052,7.398404,6.5325,7.398404 +L 6.5325,7.398404,6.9629,7.398404 + +[差] 45 +L 0.1915,0,1.4069,2.108738 +L 1.4069,2.108738,1.9494,3.344666 +L 1.9494,3.344666,2.2965,4.767034 +L 2.2965,4.767034,1.5925,4.767034 +L 1.5925,4.767034,0.8917,4.767034 +L 0.8917,4.767034,0.1915,4.767034 +L 1.8972,0,2.7305,0 +L 2.7305,0,3.5749,0 +L 3.5749,0,4.426,0 +L 4.426,0,4.426,0.877189 +L 4.426,0.877189,4.426,1.754334 +L 4.426,1.754334,4.426,2.631436 +L 4.426,2.631436,3.7041,2.631436 +L 3.7041,2.631436,2.9966,2.631436 +L 2.9966,2.631436,2.2965,2.631436 +L 4.8564,0,5.5573,0 +L 5.5573,0,6.2574,0 +L 6.2574,0,6.9614,0 +L 4.8564,2.631436,5.4063,2.631436 +L 5.4063,2.631436,5.9667,2.631436 +L 5.9667,2.631436,6.531,2.631436 +L 2.7164,4.767034,2.9966,4.767034 +L 2.9966,4.767034,3.2768,4.767034 +L 3.2768,4.767034,3.5749,4.767034 +L 3.5749,4.767034,3.1543,6.240187 +L 3.1543,6.240187,2.1701,6.459046 +L 2.1701,6.459046,1.0426,6.330485 +L 4.0022,4.767034,4.9755,4.767034 +L 4.9755,4.767034,5.9667,4.767034 +L 5.9667,4.767034,6.9614,4.767034 +L 4.0022,6.330485,3.7006,6.745809 +L 3.7006,6.745809,3.5886,7.161069 +L 3.5886,7.161069,3.5749,7.932374 +L 3.5749,7.932374,2.5763,7.932374 +L 2.5763,7.932374,1.5925,7.932374 +L 1.5925,7.932374,0.6153,7.932374 +L 4.426,6.330485,4.986,6.330485 +L 4.986,6.330485,5.5573,6.330485 +L 5.5573,6.330485,6.1348,6.330485 +L 4.0022,7.932374,4.6183,8.149679 +L 4.6183,8.149679,4.9514,8.426548 +L 4.9514,8.426548,5.2802,8.999966 +L 5.2802,7.932374,5.6865,7.932374 +L 5.6865,7.932374,6.1072,7.932374 +L 6.1072,7.932374,6.531,7.932374 + +[菜] 33 +L 3.6046,0,3.5205,0.877189 +L 3.5205,0.877189,3.4543,1.754334 +L 3.4543,1.754334,3.3913,2.631436 +L 3.3913,2.631436,2.323,1.943467 +L 2.323,1.943467,1.2653,1.247114 +L 1.2653,1.247114,0.2177,0.533949 +L 6.5641,0.533949,4.3506,2.343184 +L 4.3506,2.343184,2.6554,2.957645 +L 2.6554,2.957645,0.2177,3.165319 +L 4.4592,3.165319,5.2931,3.165319 +L 5.2931,3.165319,6.1368,3.165319 +L 6.1368,3.165319,6.9918,3.165319 +L 5.2857,4.767034,5.5558,5.13709 +L 5.5558,5.13709,5.8395,5.490203 +L 5.8395,5.490203,6.1368,5.83469 +L 3.6046,5.300829,3.4543,5.567782 +L 3.4543,5.567782,3.3072,5.83469 +L 3.3072,5.83469,3.1738,6.101686 +L 3.1738,6.101686,2.323,6.17793 +L 2.323,6.17793,1.4786,6.254306 +L 1.4786,6.254306,0.6485,6.330485 +L 3.6046,6.330485,4.5015,6.350273 +L 4.5015,6.350273,4.9355,6.488774 +L 4.9355,6.488774,5.2857,6.864346 +L 5.2857,6.864346,3.6925,7.98883 +L 3.6925,7.98883,1.9899,8.079106 +L 1.9899,8.079106,0.2177,7.932374 +L 5.2857,7.932374,5.132,8.302321 +L 5.132,8.302321,4.9884,8.655302 +L 4.9884,8.655302,4.8549,8.999966 +L 5.7095,7.932374,6.1368,7.932374 +L 6.1368,7.932374,6.5641,7.932374 +L 6.5641,7.932374,6.9918,7.932374 + +[材] 22 +L 5.3126,0,5.589,0 +L 5.589,0,5.8727,0 +L 5.8727,0,6.1672,0 +L 6.1672,0,6.0867,1.781084 +L 6.0867,1.781084,6.0127,3.545226 +L 6.0127,3.545226,5.9532,5.300829 +L 5.9532,5.300829,5.0391,4.069214 +L 5.0391,4.069214,4.1249,2.820568 +L 4.1249,2.820568,3.2111,1.563713 +L 6.1672,6.101686,6.0127,6.36726 +L 6.0127,6.36726,5.8727,6.624362 +L 5.8727,6.624362,5.7434,6.864346 +L 5.7434,6.864346,5.0181,6.864346 +L 5.0181,6.864346,4.3071,6.864346 +L 4.3071,6.864346,3.6031,6.864346 +L 6.5945,6.864346,6.2929,7.299328 +L 6.2929,7.299328,6.1812,7.853109 +L 6.1812,7.853109,6.1672,8.999966 +L 1.5016,0,1.5016,9.000042 +L 1.5016,5.150051,0.22,3.165203 +L 2.3254,4.500046,1.5016,6.048336 +L 2.3254,6.902673,0.22,6.902673 + +[昨] 36 +L 4.915,0,4.915,2.47735 +L 4.915,2.47735,4.915,4.946425 +L 4.915,4.946425,4.915,7.398404 +L 4.915,7.398404,4.4912,7.320605 +L 4.4912,7.320605,4.0607,7.234511 +L 4.0607,7.234511,3.6369,7.131342 +L 3.6369,7.131342,3.3354,6.521236 +L 3.3354,6.521236,3.0552,5.911066 +L 3.0552,5.911066,2.7823,5.300829 +L 0.2501,2.097443,0.2501,4.23164 +L 0.2501,4.23164,0.2501,6.357366 +L 0.2501,6.357366,0.2501,8.466192 +L 0.2501,8.466192,0.7999,8.466192 +L 0.7999,8.466192,1.3565,8.466192 +L 1.3565,8.466192,1.9274,8.466192 +L 1.9274,8.466192,1.9274,6.357366 +L 1.9274,6.357366,1.9274,4.23164 +L 1.9274,4.23164,1.9274,2.097443 +L 1.9274,2.097443,1.3565,2.097443 +L 1.3565,2.097443,0.7999,2.097443 +L 0.7999,2.097443,0.2501,2.097443 +L 5.3423,2.631436,5.8957,2.631436 +L 5.8957,2.631436,6.4494,2.631436 +L 6.4494,2.631436,7.02,2.631436 +L 5.3423,4.767034,5.8957,4.767034 +L 5.8957,4.767034,6.4494,4.767034 +L 6.4494,4.767034,7.02,4.767034 +L 0.6774,5.300829,0.9502,5.300829 +L 0.9502,5.300829,1.2304,5.300829 +L 1.2304,5.300829,1.5285,5.300829 +L 5.3423,7.398404,6.0466,7.398404 +L 6.0466,7.398404,6.7468,7.398404 +L 6.7468,7.398404,7.4473,7.398404 +L 4.0607,7.932374,4.0607,8.302321 +L 4.0607,8.302321,4.0607,8.655302 +L 4.0607,8.655302,4.0607,8.999966 + +[刷] 33 +L 2.812,0,2.8649,2.182224 +L 2.8649,2.182224,2.6334,3.677968 +L 2.6334,3.677968,1.534,4.233063 +L 1.534,4.233063,1.534,3.165319 +L 1.534,3.165319,1.534,2.097443 +L 1.534,2.097443,1.534,1.029589 +L 6.1989,0,6.4756,0 +L 6.4756,0,6.7561,0 +L 6.7561,0,7.0538,0 +L 7.0538,0,7.0538,3.011342 +L 7.0538,3.011342,7.0538,6.01406 +L 7.0538,6.01406,7.0538,8.999966 +L 0.2797,0.800792,0.5568,1.593178 +L 0.5568,1.593178,0.6619,3.580403 +L 0.6619,3.580403,0.6759,8.466192 +L 0.6759,8.466192,1.8033,8.466192 +L 1.8033,8.466192,2.9416,8.466192 +L 2.9416,8.466192,4.0939,8.466192 +L 4.0939,8.466192,4.0939,7.932374 +L 4.0939,7.932374,4.0939,7.398404 +L 4.0939,7.398404,4.0939,6.864346 +L 4.0939,6.864346,3.0855,6.864346 +L 3.0855,6.864346,2.087,6.864346 +L 2.087,6.864346,1.1032,6.864346 +L 4.0939,1.029589,4.0939,2.097443 +L 4.0939,2.097443,4.0939,3.165319 +L 4.0939,3.165319,4.0939,4.233063 +L 4.0939,4.233063,3.1377,4.419416 +L 3.1377,4.419416,2.833,4.961901 +L 2.833,4.961901,2.812,5.83469 +L 5.3443,2.097443,5.3443,4.042377 +L 5.3443,4.042377,5.3443,5.987266 +L 5.3443,5.987266,5.3443,7.932374 + +[察] 63 +L 2.8105,0,3.0875,0 +L 3.0875,0,3.3677,0 +L 3.3677,0,3.6651,0 +L 3.6651,0,3.6651,0.877189 +L 3.6651,0.877189,3.6651,1.754334 +L 3.6651,1.754334,3.6651,2.631436 +L 3.6651,2.631436,2.814,2.631436 +L 2.814,2.631436,1.9629,2.631436 +L 1.9629,2.631436,1.1328,2.631436 +L 0.4919,0.533949,0.9826,0.877189 +L 0.9826,0.877189,1.4761,1.220364 +L 1.4761,1.220364,1.9913,1.563713 +L 6.8383,0.800792,6.3483,1.066365 +L 6.3483,1.066365,5.8615,1.323511 +L 5.8615,1.323511,5.3746,1.563713 +L 4.0924,2.631436,4.7932,2.631436 +L 4.7932,2.631436,5.5074,2.631436 +L 5.5074,2.631436,6.2292,2.631436 +L 0.4919,3.69907,0.7024,3.966132 +L 0.7024,3.966132,0.9195,4.233063 +L 0.9195,4.233063,1.1328,4.499994 +L 1.1328,4.499994,0.9826,4.869984 +L 0.9826,4.869984,0.8351,5.223228 +L 0.8351,5.223228,0.7024,5.567782 +L 0.7024,5.567782,1.3048,6.519727 +L 1.3048,6.519727,1.529,7.132918 +L 1.529,7.132918,1.5601,7.932374 +L 1.5601,7.932374,1.1328,7.932374 +L 1.1328,7.932374,0.7024,7.932374 +L 0.7024,7.932374,0.2817,7.932374 +L 0.2817,7.932374,0.2817,7.587602 +L 0.2817,7.587602,0.2817,7.234511 +L 0.2817,7.234511,0.2817,6.864346 +L 6.6562,3.69907,4.7897,4.425216 +L 4.7897,4.425216,3.1222,4.396934 +L 3.1222,4.396934,1.9913,4.767034 +L 1.9913,4.767034,1.8372,4.603075 +L 1.8372,4.603075,1.6936,4.422305 +L 1.6936,4.422305,1.5601,4.233063 +L 1.9913,5.300829,1.7037,5.694965 +L 1.7037,5.694965,1.7037,5.961939 +L 1.7037,5.961939,1.9913,6.330485 +L 1.9913,6.330485,2.261,6.254306 +L 2.261,6.254306,2.5377,6.17793 +L 2.5377,6.17793,2.8105,6.101686 +L 2.8105,6.101686,2.5377,5.83469 +L 2.5377,5.83469,2.261,5.567782 +L 2.261,5.567782,1.9913,5.300829 +L 4.9473,5.300829,4.6528,5.833421 +L 4.6528,5.833421,4.3691,6.357366 +L 4.3691,6.357366,4.0924,6.864346 +L 5.8019,5.300829,5.9312,5.567782 +L 5.9312,5.567782,6.0748,5.83469 +L 6.0748,5.83469,6.2292,6.101686 +L 6.2292,6.101686,5.8019,6.17793 +L 5.8019,6.17793,5.3746,6.254306 +L 5.3746,6.254306,4.9473,6.330485 +L 7.0485,6.864346,7.0485,7.234511 +L 7.0485,7.234511,7.0485,7.587602 +L 7.0485,7.587602,7.0485,7.932374 +L 7.0485,7.932374,5.3536,7.932374 +L 5.3536,7.932374,3.6651,7.932374 +L 3.6651,7.932374,1.9913,7.932374 + +[札] 8 +L 1.5873,0,1.5873,9.000042 +L 1.5873,5.150051,0.3058,3.165203 +L 2.4111,4.500046,1.5873,6.048336 +L 2.4111,6.902673,0.3058,6.902673 +L 7.5058,0,7.5058,1.500007 +L 3.906,9.000017,3.906,2.000009 +L 4.4061,0,7.5058,0 +A 8.1558,2.000009,4.249822,180,208.07434 + +[殺] 54 +L 1.5925,0,1.5084,0.877189 +L 1.5084,0.877189,1.4415,1.754334 +L 1.4415,1.754334,1.3785,2.631436 +L 1.3785,2.631436,1.0142,2.097443 +L 1.0142,2.097443,0.6573,1.563713 +L 0.6573,1.563713,0.3141,1.029589 +L 3.5153,0,4.1314,0.532416 +L 4.1314,0.532416,4.7692,1.056602 +L 4.7692,1.056602,5.4063,1.563713 +L 5.4063,1.563713,4.979,2.364374 +L 4.979,2.364374,4.5486,3.165319 +L 4.5486,3.165319,4.1248,3.966132 +L 4.1248,3.966132,4.979,3.966132 +L 4.979,3.966132,5.8336,3.966132 +L 5.8336,3.966132,6.6847,3.966132 +L 6.6847,3.966132,6.394,3.35456 +L 6.394,3.35456,6.1072,2.73443 +L 6.1072,2.73443,5.8336,2.097443 +L 7.1124,0,6.6847,0.343196 +L 6.6847,0.343196,6.2574,0.686371 +L 6.2574,0.686371,5.8336,1.029589 +L 2.874,2.097443,1.6412,3.600279 +L 1.6412,3.600279,0.9722,4.153995 +L 0.9722,4.153995,0.3141,4.233063 +L 2.0198,4.233063,1.7182,4.648388 +L 1.7182,4.648388,1.6065,5.063538 +L 1.6065,5.063538,1.5925,5.83469 +L 3.2978,5.300829,3.8796,6.460447 +L 3.8796,6.460447,4.0929,7.281028 +L 4.0929,7.281028,4.1248,8.466192 +L 4.1248,8.466192,4.6852,8.466192 +L 4.6852,8.466192,5.2561,8.466192 +L 5.2561,8.466192,5.8336,8.466192 +L 5.8336,8.466192,5.8336,7.589024 +L 5.8336,7.589024,5.8336,6.711901 +L 5.8336,6.711901,5.8336,5.83469 +L 5.8336,5.83469,6.2574,5.83469 +L 6.2574,5.83469,6.6847,5.83469 +L 6.6847,5.83469,7.1124,5.83469 +L 7.1124,5.83469,7.1124,6.17793 +L 7.1124,6.17793,7.1124,6.521236 +L 7.1124,6.521236,7.1124,6.864346 +L 0.3141,6.330485,0.734,6.786832 +L 0.734,6.786832,1.1652,7.234511 +L 1.1652,7.234511,1.5925,7.665334 +L 1.5925,7.665334,1.2944,7.932374 +L 1.2944,7.932374,1.0142,8.19913 +L 1.0142,8.19913,0.734,8.466192 +L 2.874,6.864346,2.5728,7.234511 +L 2.5728,7.234511,2.2926,7.587602 +L 2.2926,7.587602,2.0198,7.932374 +L 2.0198,7.932374,2.149,8.302321 +L 2.149,8.302321,2.2926,8.655302 +L 2.2926,8.655302,2.4436,8.999966 + +[参] 36 +L 1.1914,0,2.855,0.264041 +L 2.855,0.264041,4.2875,0.994302 +L 4.2875,0.994302,5.864,2.097443 +L 1.6222,1.563713,2.876,1.707642 +L 2.876,1.707642,3.9933,2.207617 +L 3.9933,2.207617,5.0094,3.165319 +L 1.6222,2.631436,2.6904,3.046674 +L 2.6904,3.046674,3.3492,3.461867 +L 3.3492,3.461867,4.1544,4.233063 +L 0.5543,3.165319,1.3175,3.966132 +L 1.3175,3.966132,2.088,4.767034 +L 2.088,4.767034,2.8725,5.567782 +L 2.8725,5.567782,2.0214,5.670885 +L 2.0214,5.670885,1.1739,5.75698 +L 1.1739,5.75698,0.3403,5.83469 +L 7.1179,3.165319,5.7726,4.663777 +L 5.7726,4.663777,4.7008,5.518419 +L 4.7008,5.518419,3.2963,6.101686 +L 3.2963,6.101686,3.4333,6.444927 +L 3.4333,6.444927,3.5734,6.788167 +L 3.5734,6.788167,3.7271,7.131342 +L 3.7271,7.131342,2.7324,7.234511 +L 2.7324,7.234511,1.7448,7.320605 +L 1.7448,7.320605,0.7711,7.398404 +L 5.4367,5.83469,6.1368,5.83469 +L 6.1368,5.83469,6.8377,5.83469 +L 6.8377,5.83469,7.5382,5.83469 +L 4.1544,7.398404,5.0724,7.418106 +L 5.0724,7.418106,5.5137,7.556539 +L 5.5137,7.556539,5.864,7.932374 +L 5.864,7.932374,5.5628,8.121507 +L 5.5628,8.121507,5.2822,8.302321 +L 5.2822,8.302321,5.0094,8.466192 +L 2.4452,7.932374,2.7223,8.302321 +L 2.7223,8.302321,3.006,8.655302 +L 3.006,8.655302,3.2963,8.999966 + +[散] 48 +L 7.5748,0,7.2775,0.532416 +L 1.1934,0,1.1934,1.411028 +L 1.1934,1.411028,1.1934,2.8221 +L 1.1934,2.8221,1.1934,4.233063 +L 1.1934,4.233063,1.8977,4.233063 +L 1.8977,4.233063,2.6052,4.233063 +L 2.6052,4.233063,3.3302,4.233063 +L 3.3302,4.233063,3.3302,2.8221 +L 3.3302,2.8221,3.3302,1.411028 +L 3.3302,1.411028,3.3302,0 +L 3.3302,0,3.0357,0 +L 3.0357,0,2.752,0 +L 2.752,0,2.4753,0 +L 4.6118,0,5.1651,0.799435 +L 5.1651,0.799435,5.7189,1.590463 +L 5.7189,1.590463,6.2863,2.364374 +L 6.2863,2.364374,5.6839,3.738692 +L 5.6839,3.738692,5.4033,4.638384 +L 5.4033,4.638384,5.2212,5.83469 +L 5.2212,5.83469,4.5382,5.597552 +L 4.5382,5.597552,3.1901,5.716176 +L 3.1901,5.716176,0.3703,5.83469 +L 7.2775,0.532416,6.9938,1.056602 +L 6.9938,1.056602,6.7167,1.563713 +L 1.6207,2.097443,2.0518,2.097443 +L 2.0518,2.097443,2.4753,2.097443 +L 2.4753,2.097443,2.9029,2.097443 +L 1.6207,3.165319,2.0518,3.165319 +L 2.0518,3.165319,2.4753,3.165319 +L 2.4753,3.165319,2.9029,3.165319 +L 6.7167,3.165319,6.8292,4.132849 +L 6.8292,4.132849,7.0323,5.210466 +L 7.0323,5.210466,7.144,6.864346 +L 7.144,6.864346,6.5665,6.700584 +L 6.5665,6.700584,5.9952,6.519727 +L 5.9952,6.519727,5.4352,6.330485 +L 1.6207,6.597502,1.3443,6.864346 +L 1.3443,6.864346,1.0743,7.131342 +L 1.0743,7.131342,0.7979,7.398404 +L 2.9029,6.597502,2.0024,7.576416 +L 2.0024,7.576416,1.6701,8.19913 +L 1.6701,8.19913,1.6207,8.999966 +L 3.3302,7.398404,3.029,7.81351 +L 3.029,7.81351,2.9201,8.228814 +L 2.9201,8.228814,2.9029,8.999966 +L 5.4352,7.398404,5.7399,7.81351 +L 5.7399,7.81351,5.8481,8.228814 +L 5.8481,8.228814,5.866,8.999966 + +[司] 24 +L 2.6314,8.466192,0.3726,8.466192 +L 4.8943,8.466192,2.6314,8.466192 +L 7.1744,8.466192,4.8943,8.466192 +L 7.1744,5.644069,7.1744,8.466192 +L 7.1744,2.8221,7.1744,5.644069 +L 7.1744,0,7.1744,2.8221 +L 6.7433,0,7.1744,0 +L 6.3233,0,6.7433,0 +L 5.8922,0,6.3233,0 +L 4.6138,2.467521,4.6138,1.563713 +L 4.6138,3.35456,4.6138,2.467521 +L 4.6138,4.233063,4.6138,3.35456 +L 3.6159,4.233063,4.6138,4.233063 +L 2.6314,4.233063,3.6159,4.233063 +L 1.6545,4.233063,2.6314,4.233063 +L 1.6545,3.35456,1.6545,4.233063 +L 1.6545,2.467521,1.6545,3.35456 +L 1.6545,1.563713,1.6545,2.467521 +L 2.6314,1.563713,1.6545,1.563713 +L 3.6159,1.563713,2.6314,1.563713 +L 4.6138,1.563713,3.6159,1.563713 +L 3.7595,6.330485,5.0376,6.330485 +L 2.4846,6.330485,3.7595,6.330485 +L 1.2237,6.330485,2.4846,6.330485 + +[士] 15 +L 3.8032,7.103191,3.7857,8.999966 +L 3.9118,6.28261,3.8032,7.103191 +L 4.2165,5.83469,3.9118,6.28261 +L 4.6441,5.83469,5.4777,5.83469 +L 5.4777,5.83469,6.3215,5.83469 +L 6.3215,5.83469,7.1726,5.83469 +L 3.7612,4.484451,2.991,5.748486 +L 3.7857,0.533949,3.7612,4.484451 +L 2.791,0.533949,3.7857,0.533949 +L 1.8068,0.533949,2.791,0.533949 +L 0.8296,0.533949,1.8068,0.533949 +L 4.2165,0.533949,5.0466,0.533949 +L 5.0466,0.533949,5.898,0.533949 +L 5.898,0.533949,6.7491,0.533949 +L 2.991,5.748486,0.4023,5.83469 + +[氏] 27 +L 0.4288,0,0.709,0 +L 0.709,0,0.9826,0 +L 0.9826,0,1.2554,0 +L 1.2554,0,1.2554,2.658229 +L 1.2554,2.658229,1.2554,5.299406 +L 1.2554,5.299406,1.2554,7.932374 +L 1.2554,7.932374,4.0997,8.070612 +L 4.0997,8.070612,5.6233,8.327735 +L 5.6233,8.327735,6.7756,8.466192 +L 2.5412,5.300829,1.6827,5.300829 +L 3.3923,5.300829,2.5412,5.300829 +L 4.2469,5.300829,3.3923,5.300829 +L 5.2202,3.545226,4.2469,5.300829 +L 6.2047,1.781084,5.2202,3.545226 +L 7.2061,0,6.2047,1.781084 +L 7.6334,0,7.6334,0.532416 +L 7.6334,0.532416,7.6334,1.056602 +L 7.6334,1.056602,7.6334,1.563713 +L 3.7281,0.686371,4.6461,1.029589 +L 2.8105,0.343196,3.7281,0.686371 +L 1.8999,0,2.8105,0.343196 +L 5.0661,5.300829,4.7722,5.734389 +L 4.7722,5.734389,4.6598,6.278232 +L 4.6598,6.278232,4.6461,7.398404 +L 5.4972,5.300829,6.1974,5.300829 +L 6.1974,5.300829,6.9084,5.300829 +L 6.9084,5.300829,7.6334,5.300829 + +[周] 39 +L 0.4347,0.26693,1.1282,3.036713 +L 1.1282,3.036713,1.3068,5.6201 +L 1.3068,5.6201,1.2893,8.466192 +L 1.2893,8.466192,3.2472,8.466192 +L 3.2472,8.466192,5.2257,8.466192 +L 5.2257,8.466192,7.2046,8.466192 +L 7.2046,8.466192,7.2046,5.644069 +L 7.2046,5.644069,7.2046,2.8221 +L 7.2046,2.8221,7.2046,0 +L 7.2046,0,6.9279,0 +L 6.9279,0,6.655,0 +L 6.655,0,6.3815,0 +L 5.5234,1.752868,5.5234,1.029589 +L 5.5234,2.467521,5.5234,1.752868 +L 5.5234,3.165319,5.5234,2.467521 +L 4.6723,3.165319,5.5234,3.165319 +L 3.818,3.165319,4.6723,3.165319 +L 2.9635,3.165319,3.818,3.165319 +L 2.9635,2.467521,2.9635,3.165319 +L 2.9635,1.752868,2.9635,2.467521 +L 2.9635,1.029589,2.9635,1.752868 +L 3.818,1.029589,2.9635,1.029589 +L 4.6723,1.029589,3.818,1.029589 +L 5.5234,1.029589,4.6723,1.029589 +L 5.8039,4.767034,6.3815,4.767034 +L 5.233,4.767034,5.8039,4.767034 +L 4.6723,4.767034,5.233,4.767034 +L 3.5445,4.767034,4.2453,4.767034 +L 2.8444,4.767034,3.5445,4.767034 +L 2.1404,4.767034,2.8444,4.767034 +L 3.4083,6.365815,2.5673,6.330485 +L 4.0138,6.053747,3.4083,6.365815 +L 4.2453,4.767034,4.0138,6.053747 +L 4.6723,6.330485,4.522,6.700584 +L 4.522,6.700584,4.3746,7.05374 +L 4.3746,7.05374,4.2453,7.398404 +L 5.1031,6.330485,5.3766,6.330485 +L 5.3766,6.330485,5.6568,6.330485 +L 5.6568,6.330485,5.9542,6.330485 + +[祝] 42 +L 2.7795,0,4.0509,1.747198 +L 4.0509,1.747198,4.5937,3.09608 +L 4.5937,3.09608,4.7023,5.300829 +L 4.7023,5.300829,4.4116,5.300829 +L 4.4116,5.300829,4.1248,5.300829 +L 4.1248,5.300829,3.8512,5.300829 +L 3.8512,5.300829,3.8512,6.36726 +L 3.8512,6.36726,3.8512,7.425176 +L 3.8512,7.425176,3.8512,8.466192 +L 3.8512,8.466192,4.979,8.466192 +L 4.979,8.466192,6.1072,8.466192 +L 6.1072,8.466192,7.2349,8.466192 +L 7.2349,8.466192,7.2349,7.425176 +L 7.2349,7.425176,7.2349,6.36726 +L 7.2349,6.36726,7.2349,5.300829 +L 7.2349,5.300829,6.8073,5.300829 +L 6.8073,5.300829,6.3835,5.300829 +L 6.3835,5.300829,5.9527,5.300829 +L 5.9527,5.300829,5.7989,2.672327 +L 5.7989,2.672327,6.0266,0.747248 +L 6.0266,0.747248,7.6622,0 +L 7.6622,0,7.6622,0.532416 +L 7.6622,0.532416,7.6622,1.056602 +L 7.6622,1.056602,7.6622,1.563713 +L 1.2944,7.320605,0.4612,7.398404 +L 2.142,7.234511,1.2944,7.320605 +L 2.9966,7.131342,2.142,7.234511 +L 2.6989,6.521236,2.9966,7.131342 +L 2.4152,5.911066,2.6989,6.521236 +L 2.142,5.300829,2.4152,5.911066 +L 2.142,4.422305,1.7151,4.767034 +L 1.4976,4.233063,1.1442,3.888509 +L 1.1442,3.888509,0.7974,3.535287 +L 0.7974,3.535287,0.4612,3.165319 +L 1.631,1.411028,1.5641,2.8221 +L 1.7151,0,1.631,1.411028 +L 1.5641,2.8221,1.4976,4.233063 +L 2.5662,4.069214,2.142,4.422305 +L 2.9966,3.69907,2.5662,4.069214 +L 1.7151,7.932374,1.7151,8.302321 +L 1.7151,8.302321,1.7151,8.655302 +L 1.7151,8.655302,1.7151,8.999966 + +[順] 48 +L 0.4628,0.800792,0.7644,1.613098 +L 0.7644,1.613098,0.8761,3.738692 +L 0.8761,3.738692,0.8901,8.999966 +L 2.172,5.987266,2.172,7.932374 +L 2.172,4.042377,2.172,5.987266 +L 2.172,2.097443,2.172,4.042377 +L 3.4543,1.029589,3.4543,3.697888 +L 3.4543,3.697888,3.4543,6.357366 +L 3.4543,6.357366,3.4543,8.999966 +L 4.8343,8.388547,4.277,8.466192 +L 5.4048,8.302321,4.8343,8.388547 +L 5.9866,8.19913,5.4048,8.302321 +L 5.6535,7.437938,5.9866,8.19913 +L 5.3176,7.09183,5.6535,7.437938 +L 4.7047,6.864346,5.3176,7.09183 +L 4.7047,5.2896,4.7047,6.864346 +L 4.7047,3.697888,4.7047,5.2896 +L 4.7047,2.097443,4.7047,3.697888 +L 5.1355,2.097443,5.8356,2.097443 +L 5.8356,2.097443,6.5431,2.097443 +L 6.5431,2.097443,7.2646,2.097443 +L 7.2646,2.097443,7.2646,2.631436 +L 7.2646,2.631436,7.2646,3.165319 +L 7.2646,3.165319,7.2646,3.69907 +L 7.2646,3.69907,6.5431,3.69907 +L 6.5431,3.69907,5.8356,3.69907 +L 5.8356,3.69907,5.1355,3.69907 +L 5.8356,5.300829,5.1355,5.300829 +L 6.5431,5.300829,5.8356,5.300829 +L 7.2646,5.300829,6.5431,5.300829 +L 7.2646,4.956101,7.2646,5.300829 +L 7.2646,4.603075,7.2646,4.956101 +L 7.2646,4.233063,7.2646,4.603075 +L 7.2646,5.83469,7.2646,6.17793 +L 7.2646,6.17793,7.2646,6.521236 +L 7.2646,6.521236,7.2646,6.864346 +L 7.2646,6.864346,6.8408,6.864346 +L 6.8408,6.864346,6.4135,6.864346 +L 6.4135,6.864346,5.9866,6.864346 +L 6.4135,8.466192,6.8408,8.466192 +L 6.8408,8.466192,7.2646,8.466192 +L 7.2646,8.466192,7.6919,8.466192 +L 7.6919,0,7.3942,0.343196 +L 7.3942,0.343196,7.1144,0.686371 +L 7.1144,0.686371,6.8408,1.029589 +L 4.7677,0.686371,5.1355,1.029589 +L 4.407,0.343196,4.7677,0.686371 +L 4.0637,0,4.407,0.343196 + +[唱] 42 +L 7.2666,3.69907,7.2666,2.47735 +L 5.9851,3.69907,7.2666,3.69907 +L 4.7133,3.69907,5.9851,3.69907 +L 3.4528,3.69907,4.7133,3.69907 +L 3.4528,2.47735,3.4528,3.69907 +L 3.4528,1.247114,3.4528,2.47735 +L 3.4528,0,3.4528,1.247114 +L 4.7133,0,3.4528,0 +L 5.9851,0,4.7133,0 +L 7.2666,0,5.9851,0 +L 7.2666,1.247114,7.2666,0 +L 7.2666,2.47735,7.2666,1.247114 +L 5.845,2.097443,6.8393,2.097443 +L 4.8569,2.097443,5.845,2.097443 +L 3.8832,2.097443,4.8569,2.097443 +L 2.2024,4.765502,2.2024,3.165319 +L 2.2024,6.357366,2.2024,4.765502 +L 2.2024,7.932374,2.2024,6.357366 +L 1.6242,7.932374,2.2024,7.932374 +L 1.0533,7.932374,1.6242,7.932374 +L 0.4929,7.932374,1.0533,7.932374 +L 0.4929,6.357366,0.4929,7.932374 +L 0.4929,4.765502,0.4929,6.357366 +L 0.4929,3.165319,0.4929,4.765502 +L 1.0533,3.165319,0.4929,3.165319 +L 1.6242,3.165319,1.0533,3.165319 +L 2.2024,3.165319,1.6242,3.165319 +L 3.8832,5.300829,3.8832,6.36726 +L 3.8832,6.36726,3.8832,7.425176 +L 3.8832,7.425176,3.8832,8.466192 +L 3.8832,8.466192,4.8569,8.466192 +L 4.8569,8.466192,5.845,8.466192 +L 5.845,8.466192,6.8393,8.466192 +L 6.8393,8.466192,6.8393,7.425176 +L 6.8393,7.425176,6.8393,6.36726 +L 6.8393,6.36726,6.8393,5.300829 +L 6.8393,5.300829,5.845,5.300829 +L 5.845,5.300829,4.8569,5.300829 +L 4.8569,5.300829,3.8832,5.300829 +L 4.3039,6.864346,5.0079,6.864346 +L 5.0079,6.864346,5.708,6.864346 +L 5.708,6.864346,6.4089,6.864346 + +[松] 36 +L 7.7243,0.686371,7.7243,1.029589 +L 7.7243,0.343196,7.7243,0.686371 +L 7.7243,0,7.7243,0.343196 +L 6.0322,0.423775,6.6417,0.898379 +L 4.9503,0,6.0322,0.423775 +L 3.9098,0,4.3409,0 +L 3.4825,0,3.9098,0 +L 3.0552,0,3.4825,0 +L 1.7771,0,1.6931,1.60027 +L 1.6931,1.60027,1.6227,3.192047 +L 1.6227,3.192047,1.5596,4.767034 +L 1.5596,4.767034,1.2027,4.069214 +L 1.2027,4.069214,0.863,3.35456 +L 0.863,3.35456,0.5264,2.631436 +L 0.7999,6.864346,0.5264,6.864346 +L 1.0728,6.864346,0.7999,6.864346 +L 1.3463,6.864346,1.0728,6.864346 +L 1.8223,5.744415,1.3463,6.864346 +L 2.1554,5.200528,1.8223,5.744415 +L 2.6314,4.767034,2.1554,5.200528 +L 3.4825,5.033877,4.0852,6.381379 +L 4.0852,6.381379,4.309,7.271177 +L 4.309,7.271177,4.3409,8.466192 +L 6.5401,7.589024,6.442,8.999966 +L 6.9187,6.152582,6.5401,7.589024 +L 7.7243,4.767034,6.9187,6.152582 +L 4.9503,3.285212,5.1636,4.767034 +L 4.5511,1.735859,4.9503,3.285212 +L 4.3409,0,4.5511,1.735859 +L 6.6417,0.898379,7.297,1.830447 +L 7.297,1.830447,7.146,2.097443 +L 7.146,2.097443,7.0024,2.364374 +L 7.0024,2.364374,6.8732,2.631436 +L 2.2009,6.864346,1.9029,7.299328 +L 1.9029,7.299328,1.7911,7.853109 +L 1.7911,7.853109,1.7771,8.999966 + +[照] 51 +L 7.3302,8.466192,6.7491,8.466192 +L 7.32,7.319204,7.3302,8.466192 +L 7.0254,6.587564,7.32,7.319204 +L 6.0451,6.330485,7.0254,6.587564 +L 5.1905,5.300829,6.0451,5.300829 +L 4.3356,5.300829,5.1905,5.300829 +L 4.3356,4.603075,4.3356,5.300829 +L 4.3356,3.888509,4.3356,4.603075 +L 4.3356,3.165319,4.3356,3.888509 +L 5.1905,3.165319,4.3356,3.165319 +L 6.0451,3.165319,5.1905,3.165319 +L 6.8997,3.165319,6.0451,3.165319 +L 6.8997,3.888509,6.8997,3.165319 +L 6.8997,4.603075,6.8997,3.888509 +L 6.8997,5.300829,6.8997,4.603075 +L 6.0451,5.300829,6.8997,5.300829 +L 4.1258,6.330485,4.8753,7.121447 +L 4.8753,7.121447,5.152,7.675185 +L 5.152,7.675185,5.1905,8.466192 +L 5.1905,8.466192,4.7667,8.466192 +L 4.7667,8.466192,4.3356,8.466192 +L 4.3356,8.466192,3.9156,8.466192 +L 2.0803,8.466192,2.6617,8.466192 +L 1.5094,8.466192,2.0803,8.466192 +L 0.9522,8.466192,1.5094,8.466192 +L 0.9522,6.710478,0.9522,8.466192 +L 0.9522,4.946425,0.9522,6.710478 +L 0.9522,3.165319,0.9522,4.946425 +L 1.5094,3.165319,0.9522,3.165319 +L 2.0803,3.165319,1.5094,3.165319 +L 2.6617,3.165319,2.0803,3.165319 +L 2.6617,4.946425,2.6617,3.165319 +L 2.6617,6.710478,2.6617,4.946425 +L 2.6617,8.466192,2.6617,6.710478 +L 6.1743,8.466192,5.6213,8.466192 +L 6.7491,8.466192,6.1743,8.466192 +L 7.1764,1.142653,6.8997,1.563713 +L 7.4461,0.713384,7.1764,1.142653 +L 7.7263,0.26693,7.4461,0.713384 +L 5.6213,0.26693,5.4668,0.713384 +L 5.4668,0.713384,5.3232,1.142653 +L 5.3232,1.142653,5.1905,1.563713 +L 3.2183,1.142653,3.089,1.563713 +L 3.3619,0.713384,3.2183,1.142653 +L 3.5128,0.26693,3.3619,0.713384 +L 0.5249,0,0.8019,0.532416 +L 0.8019,0.532416,1.0856,1.056602 +L 1.0856,1.056602,1.3795,1.563713 +L 1.3795,5.83469,1.653,5.83469 +L 1.653,5.83469,1.9399,5.83469 +L 1.9399,5.83469,2.2344,5.83469 + +[省] 42 +L 1.4099,7.932374,1.8372,8.466192 +L 0.9826,7.398404,1.4099,7.932374 +L 0.5588,6.864346,0.9826,7.398404 +L 2.6637,6.864346,3.0837,6.864346 +L 3.0837,6.864346,3.5148,6.864346 +L 3.5148,6.864346,3.9421,6.864346 +L 3.9421,6.864346,3.9421,7.587602 +L 3.9421,7.587602,3.9421,8.302321 +L 3.9421,8.302321,3.9421,8.999966 +L 3.4938,4.767034,2.2326,4.767034 +L 2.2326,2.8221,2.2326,4.233063 +L 2.2326,1.411028,2.2326,2.8221 +L 2.2326,0,2.2326,1.411028 +L 2.6637,0,3.7877,0 +L 3.7877,1.563713,2.6637,1.563713 +L 3.7877,3.165319,2.6637,3.165319 +L 2.2326,4.233063,1.6617,4.233063 +L 1.6617,4.233063,1.1051,4.233063 +L 1.1051,4.233063,0.5588,4.233063 +L 3.7877,0,4.919,0 +L 4.919,0,6.0471,0 +L 6.0471,0,6.0471,0.532416 +L 6.0471,0.532416,6.0471,1.056602 +L 6.0471,1.056602,6.0471,1.563713 +L 6.0471,1.563713,4.919,1.563713 +L 4.919,1.563713,3.7877,1.563713 +L 6.0471,2.097443,6.0471,2.467521 +L 6.0471,2.467521,6.0471,2.820568 +L 6.0471,2.820568,6.0471,3.165319 +L 6.0471,3.165319,4.919,3.165319 +L 4.919,3.165319,3.7877,3.165319 +L 6.0471,3.69907,6.0471,4.069214 +L 6.0471,4.069214,6.0471,4.422305 +L 6.0471,4.422305,6.0471,4.767034 +L 6.0471,4.767034,4.7652,4.767034 +L 4.7652,4.767034,3.4938,4.767034 +L 3.9421,5.300829,4.6423,6.01406 +L 4.6423,6.01406,5.3463,6.710478 +L 5.3463,6.710478,6.0471,7.398404 +L 7.3287,7.131342,7.0348,7.587602 +L 7.0348,7.587602,6.7472,8.035259 +L 6.7472,8.035259,6.4744,8.466192 + +[賞] 51 +L 0.5849,0,1.1383,0.18922 +L 1.1383,0.18922,1.6921,0.370144 +L 1.6921,0.370144,2.263,0.533949 +L 6.5041,0,6.2067,0.18922 +L 6.2067,0.18922,5.9265,0.370144 +L 5.9265,0.370144,5.653,0.533949 +L 1.8357,1.563713,1.8357,2.631436 +L 1.8357,2.631436,1.8357,3.69907 +L 1.8357,3.69907,1.8357,4.767034 +L 1.8357,4.767034,3.2433,4.767034 +L 3.2433,4.767034,4.6516,4.767034 +L 4.6516,4.767034,6.0768,4.767034 +L 6.0768,4.767034,6.0768,3.69907 +L 6.0768,3.69907,6.0768,2.631436 +L 6.0768,2.631436,6.0768,1.563713 +L 6.0768,1.563713,4.6516,1.563713 +L 4.6516,1.563713,3.2433,1.563713 +L 3.2433,1.563713,1.8357,1.563713 +L 2.263,2.631436,3.3942,2.631436 +L 3.3942,2.631436,4.522,2.631436 +L 4.522,2.631436,5.653,2.631436 +L 2.263,3.69907,3.3942,3.69907 +L 3.3942,3.69907,4.522,3.69907 +L 4.522,3.69907,5.653,3.69907 +L 2.263,5.83469,2.263,6.17793 +L 2.263,6.17793,2.263,6.521236 +L 2.263,6.521236,2.263,6.864346 +L 2.263,6.864346,3.3942,6.864346 +L 3.3942,6.864346,4.522,6.864346 +L 4.522,6.864346,5.653,6.864346 +L 5.653,6.864346,5.653,6.521236 +L 5.653,6.521236,5.653,6.17793 +L 5.653,6.17793,5.653,5.83469 +L 5.653,5.83469,4.522,5.83469 +L 4.522,5.83469,3.3942,5.83469 +L 3.3942,5.83469,2.263,5.83469 +L 0.5849,6.330485,0.5849,6.864346 +L 0.5849,6.864346,0.5849,7.398404 +L 0.5849,7.398404,0.5849,7.932374 +L 0.5849,7.932374,1.2858,8.035259 +L 1.2858,8.035259,1.9894,8.121507 +L 1.9894,8.121507,2.6899,8.19913 +L 2.6899,8.19913,2.5396,8.466192 +L 2.5396,8.466192,2.3922,8.733122 +L 2.3922,8.733122,2.263,8.999966 +L 7.3625,6.330485,7.3625,6.864346 +L 7.3625,6.864346,7.3625,7.398404 +L 7.3625,7.398404,7.3625,7.932374 +L 7.3625,7.932374,5.9332,7.932374 +L 5.9332,7.932374,4.522,7.932374 +L 4.522,7.932374,3.1207,7.932374 + +[臣] 30 +L 1.0142,0,1.0142,2.8221 +L 1.0142,2.8221,1.0142,5.644069 +L 1.0142,5.644069,1.0142,8.466192 +L 1.0142,8.466192,2.9966,8.466192 +L 2.9966,8.466192,4.979,8.466192 +L 4.979,8.466192,6.9614,8.466192 +L 1.4415,0,2.2755,0 +L 2.2755,0,3.1192,0 +L 3.1192,0,3.9703,0 +L 3.9703,0,3.9703,1.066365 +L 3.9703,1.066365,3.9703,2.124281 +L 3.9703,2.124281,3.9703,3.165319 +L 3.9703,3.165319,3.1192,3.165319 +L 3.1192,3.165319,2.2755,3.165319 +L 2.2755,3.165319,1.4415,3.165319 +L 4.4014,0,5.3751,0 +L 5.3751,0,6.359,0 +L 6.359,0,7.361,0 +L 4.4014,3.165319,5.1051,3.165319 +L 5.1051,3.165319,5.8126,3.165319 +L 5.8126,3.165319,6.5344,3.165319 +L 6.5344,3.165319,6.5344,4.069214 +L 6.5344,4.069214,6.5344,4.956101 +L 6.5344,4.956101,6.5344,5.83469 +L 6.5344,5.83469,4.8287,5.83469 +L 4.8287,5.83469,3.1301,5.83469 +L 3.1301,5.83469,1.4415,5.83469 +L 3.9703,6.330485,3.9703,6.864346 +L 3.9703,6.864346,3.9703,7.398404 +L 3.9703,7.398404,3.9703,7.932374 + +[清] 48 +L 0.6173,0.26693,1.0236,1.411028 +L 1.0236,1.411028,1.4435,2.55517 +L 1.4435,2.55517,1.8638,3.69907 +L 3.5734,0,3.5734,1.411028 +L 3.5734,1.411028,3.5734,2.8221 +L 3.5734,2.8221,3.5734,4.233063 +L 3.5734,4.233063,4.7047,4.233063 +L 4.7047,4.233063,5.8321,4.233063 +L 5.8321,4.233063,6.9634,4.233063 +L 6.9634,4.233063,6.9634,2.8221 +L 6.9634,2.8221,6.9634,1.411028 +L 6.9634,1.411028,6.9634,0 +L 6.9634,0,6.5361,0 +L 6.5361,0,6.1091,0 +L 6.1091,0,5.6783,0 +L 4.0042,2.097443,4.8343,2.097443 +L 4.8343,2.097443,5.6853,2.097443 +L 5.6853,2.097443,6.5361,2.097443 +L 4.0042,3.165319,4.8343,3.165319 +L 4.8343,3.165319,5.6853,3.165319 +L 5.6853,3.165319,6.5361,3.165319 +L 1.4719,5.83469,1.1773,6.17793 +L 1.1773,6.17793,0.8901,6.521236 +L 0.8901,6.521236,0.6173,6.864346 +L 2.7223,5.83469,3.5734,5.937947 +L 3.5734,5.937947,4.4311,6.023998 +L 4.4311,6.023998,5.2822,6.101686 +L 5.2822,6.101686,4.939,6.638481 +L 4.939,6.638481,4.4942,6.836217 +L 4.4942,6.836217,3.5734,6.864346 +L 5.6783,5.83469,6.3858,5.83469 +L 6.3858,5.83469,7.0933,5.83469 +L 7.0933,5.83469,7.818,5.83469 +L 5.6783,6.864346,4.8062,7.768416 +L 4.8062,7.768416,4.1268,7.968954 +L 4.1268,7.968954,3.1531,7.932374 +L 6.1091,6.864346,6.3858,6.864346 +L 6.3858,6.864346,6.6657,6.864346 +L 6.6657,6.864346,6.9634,6.864346 +L 1.8638,7.932374,1.5945,8.302321 +L 1.5945,8.302321,1.3174,8.655302 +L 1.3174,8.655302,1.0446,8.999966 +L 5.6783,7.932374,5.5347,8.302321 +L 5.5347,8.302321,5.4083,8.655302 +L 5.4083,8.655302,5.2822,8.999966 +L 6.1091,7.932374,6.5361,7.932374 +L 6.5361,7.932374,6.9634,7.932374 +L 6.9634,7.932374,7.3907,7.932374 + +[積] 63 +L 1.9008,0,1.8171,1.411028 +L 1.8171,1.411028,1.7467,2.8221 +L 1.7467,2.8221,1.6872,4.233063 +L 1.6872,4.233063,1.3194,3.535287 +L 1.3194,3.535287,0.9625,2.820568 +L 0.9625,2.820568,0.6158,2.097443 +L 3.8205,0,4.1564,0.446387 +L 4.1564,0.446387,4.4997,0.875744 +L 4.4997,0.875744,4.8569,1.296608 +L 4.8569,1.296608,4.7028,2.467521 +L 4.7028,2.467521,4.5631,3.621404 +L 4.5631,3.621404,4.4331,4.767034 +L 4.4331,4.767034,5.2842,4.767034 +L 5.2842,4.767034,6.1427,4.767034 +L 6.1427,4.767034,6.9938,4.767034 +L 6.9938,4.767034,6.8428,3.621404 +L 6.8428,3.621404,6.6961,2.467521 +L 6.6961,2.467521,6.5661,1.296608 +L 6.5661,1.296608,6.8428,0.875744 +L 6.8428,0.875744,7.123,0.446387 +L 7.123,0.446387,7.4211,0 +L 5.2842,1.563713,5.5613,1.563713 +L 5.5613,1.563713,5.8415,1.563713 +L 5.8415,1.563713,6.1427,1.563713 +L 4.8569,2.631436,5.4177,2.631436 +L 5.4177,2.631436,5.9851,2.631436 +L 5.9851,2.631436,6.5661,2.631436 +L 3.1792,3.69907,2.4055,4.508553 +L 2.4055,4.508553,1.9639,5.190524 +L 1.9639,5.190524,1.4704,6.330485 +L 1.4704,6.330485,1.1723,6.330485 +L 1.1723,6.330485,0.8921,6.330485 +L 0.8921,6.330485,0.6158,6.330485 +L 4.8569,3.69907,5.4177,3.69907 +L 5.4177,3.69907,5.9851,3.69907 +L 5.9851,3.69907,6.5661,3.69907 +L 3.61,5.83469,2.7134,6.44635 +L 2.7134,6.44635,2.1183,6.735893 +L 2.1183,6.735893,1.9008,7.932374 +L 1.9008,7.932374,1.4704,7.932374 +L 1.4704,7.932374,1.0431,7.932374 +L 1.0431,7.932374,0.6158,7.932374 +L 4.0303,5.83469,4.5841,5.937947 +L 4.5841,5.937947,5.1406,6.023998 +L 5.1406,6.023998,5.7115,6.101686 +L 5.7115,6.101686,5.3791,6.638481 +L 5.3791,6.638481,5.046,6.836217 +L 5.046,6.836217,4.4331,6.864346 +L 6.1427,5.83469,6.6961,5.83469 +L 6.6961,5.83469,7.2701,5.83469 +L 7.2701,5.83469,7.8484,5.83469 +L 6.1427,6.864346,5.4909,7.61584 +L 5.4909,7.61584,4.9483,7.892644 +L 4.9483,7.892644,4.0303,7.932374 +L 2.3215,7.932374,2.6017,8.121507 +L 2.6017,8.121507,2.8815,8.302321 +L 2.8815,8.302321,3.1792,8.466192 +L 6.1427,7.932374,5.9851,8.302321 +L 5.9851,8.302321,5.8415,8.655302 +L 5.8415,8.655302,5.7115,8.999966 +L 6.5661,7.932374,6.8428,7.932374 +L 6.8428,7.932374,7.123,7.932374 +L 7.123,7.932374,7.4211,7.932374 + +[節] 39 +L 1.0763,0,1.0763,1.781084 +L 1.0763,1.781084,1.0763,3.545226 +L 1.0763,3.545226,1.0763,5.300829 +L 1.0763,5.300829,1.9099,5.300829 +L 1.9099,5.300829,2.7504,5.300829 +L 2.7504,5.300829,3.605,5.300829 +L 3.605,5.300829,3.605,4.603075 +L 3.605,4.603075,3.605,3.888509 +L 3.605,3.888509,3.605,3.165319 +L 3.605,3.165319,2.9049,3.165319 +L 2.9049,3.165319,2.2041,3.165319 +L 2.2041,3.165319,1.5001,3.165319 +L 1.5001,0,2.2041,0.446387 +L 2.2041,0.446387,2.9049,0.875744 +L 2.9049,0.875744,3.605,1.296608 +L 3.605,1.296608,3.4548,1.563713 +L 3.4548,1.563713,3.3112,1.830447 +L 3.3112,1.830447,3.1812,2.097443 +L 5.3146,0,5.3146,1.781084 +L 5.3146,1.781084,5.3146,3.545226 +L 5.3146,3.545226,5.3146,5.300829 +L 5.3146,5.300829,6.0147,5.300829 +L 6.0147,5.300829,6.7156,5.300829 +L 6.7156,5.300829,7.4157,5.300829 +L 7.4157,5.300829,7.4157,3.888509 +L 7.4157,3.888509,7.4157,2.467521 +L 7.4157,2.467521,7.4157,1.029589 +L 7.4157,1.029589,7.125,1.029589 +L 7.125,1.029589,6.8413,1.029589 +L 6.8413,1.029589,6.5646,1.029589 +L 1.5001,4.233063,2.0499,4.233063 +L 2.0499,4.233063,2.6103,4.233063 +L 2.6103,4.233063,3.1812,4.233063 +L 2.9827,6.864274,2.3662,7.932158 +L 6.3695,6.864274,5.7527,7.932158 +L 7.849,7.932158,4.8242,7.932158 +L 4.2491,7.932158,1.4381,7.932158 +A 0.6994,9.516865,4.41875,323.10826,353.27931 +A -2.6868,9.516865,4.41875,319.01823,353.27931 + +[戦] 66 +L 2.3532,0,2.2131,1.611609 +L 2.2131,1.611609,1.695,2.087636 +L 1.695,2.087636,0.6793,2.097443 +L 7.4527,0,7.0219,0.713384 +L 7.0219,0.713384,6.5981,1.409627 +L 6.5981,1.409627,6.1712,2.097443 +L 6.1712,2.097443,5.4633,1.590463 +L 5.4633,1.590463,4.7628,1.066365 +L 4.7628,1.066365,4.0627,0.533949 +L 7.88,0,7.88,0.532416 +L 7.88,0.532416,7.88,1.056602 +L 7.88,1.056602,7.88,1.563713 +L 2.7843,2.097443,2.4866,2.631436 +L 2.4866,2.631436,2.2029,3.165319 +L 2.2029,3.165319,1.9332,3.69907 +L 1.9332,3.69907,1.653,3.69907 +L 1.653,3.69907,1.3795,3.69907 +L 1.3795,3.69907,1.1066,3.69907 +L 1.1066,3.69907,1.1066,4.765502 +L 1.1066,4.765502,1.1066,5.823395 +L 1.1066,5.823395,1.1066,6.864346 +L 1.1066,6.864346,1.8068,6.864346 +L 1.8068,6.864346,2.5076,6.864346 +L 2.5076,6.864346,3.2081,6.864346 +L 3.2081,6.864346,3.3409,7.587602 +L 3.3409,7.587602,3.4845,8.302321 +L 3.4845,8.302321,3.6389,8.999966 +L 3.2081,2.097443,3.4845,2.097443 +L 3.4845,2.097443,3.7682,2.097443 +L 3.7682,2.097443,4.0627,2.097443 +L 6.1712,2.631436,5.8696,3.124362 +L 5.8696,3.124362,5.7579,4.083311 +L 5.7579,4.083311,5.7439,6.330485 +L 5.7439,6.330485,5.3166,6.330485 +L 5.3166,6.330485,4.8994,6.330485 +L 4.8994,6.330485,4.49,6.330485 +L 6.5981,2.631436,7.2009,3.798103 +L 7.2009,3.798103,7.4216,4.490121 +L 7.4216,4.490121,7.4527,5.300829 +L 2.7843,3.69907,2.3532,4.233063 +L 2.3532,4.233063,1.9332,4.767034 +L 1.9332,4.767034,1.5021,5.300829 +L 3.4249,3.69907,3.4845,4.233063 +L 3.4845,4.233063,3.5584,4.767034 +L 3.5584,4.767034,3.6389,5.300829 +L 3.6389,5.300829,3.0221,5.339006 +L 3.0221,5.339006,2.6897,5.605915 +L 2.6897,5.605915,2.3532,6.330485 +L 3.6389,5.83469,3.6389,6.17793 +L 3.6389,6.17793,3.6389,6.521236 +L 3.6389,6.521236,3.6389,6.864346 +L 5.7439,6.864346,5.7439,7.587602 +L 5.7439,7.587602,5.7439,8.302321 +L 5.7439,8.302321,5.7439,8.999966 +L 6.1712,6.864346,6.7242,6.864346 +L 6.7242,6.864346,7.299,6.864346 +L 7.299,6.864346,7.88,6.864346 +L 1.1066,8.19913,0.9557,8.466192 +L 0.9557,8.466192,0.8086,8.733122 +L 0.8086,8.733122,0.6793,8.999966 +L 2.3532,8.19913,2.2029,8.466192 +L 2.2029,8.466192,2.0593,8.733122 +L 2.0593,8.733122,1.9332,8.999966 +L 7.88,7.932374,7.5827,8.302321 +L 7.5827,8.302321,7.299,8.655302 +L 7.299,8.655302,7.0219,8.999966 + +[浅] 42 +L 7.4796,0,6.9717,0.713384 +L 6.9717,0.713384,6.4744,1.409627 +L 6.4744,1.409627,5.9876,2.097443 +L 5.9876,2.097443,5.1575,1.327823 +L 5.1575,1.327823,4.334,0.922327 +L 4.334,0.922327,2.814,0.533949 +L 7.8785,0,7.8785,1.563713 +L 5.7736,2.631436,5.4723,3.046674 +L 5.4723,3.046674,5.3606,3.461867 +L 5.3606,3.461867,5.3463,4.233063 +L 5.3463,4.233063,4.4917,4.233063 +L 4.4917,4.233063,3.6476,4.233063 +L 3.6476,4.233063,2.814,4.233063 +L 6.6285,2.631436,6.9013,3.001426 +L 6.9013,3.001426,7.1819,3.35456 +L 7.1819,3.35456,7.4796,3.69907 +L 4.9225,4.767034,4.9225,5.13709 +L 4.9225,5.13709,4.9225,5.490203 +L 4.9225,5.490203,4.9225,5.83469 +L 4.9225,5.83469,4.3516,5.83469 +L 4.3516,5.83469,3.7912,5.83469 +L 3.7912,5.83469,3.2413,5.83469 +L 5.3463,4.767034,7.8785,4.767034 +L 4.9225,6.330485,4.9225,6.700584 +L 4.9225,6.700584,4.9225,7.05374 +L 4.9225,7.05374,4.9225,7.398404 +L 4.9225,7.398404,4.2188,7.398404 +L 4.2188,7.398404,3.5183,7.398404 +L 3.5183,7.398404,2.814,7.398404 +L 5.3463,6.330485,7.0558,6.330485 +L 4.9225,7.932374,4.9225,8.302321 +L 4.9225,8.302321,4.9225,8.655302 +L 4.9225,8.655302,4.9225,8.999966 +L 5.3463,7.932374,5.7736,8.035259 +L 5.7736,8.035259,6.2009,8.121507 +L 6.2009,8.121507,6.6285,8.19913 +L 6.6285,8.19913,6.4744,8.466192 +L 6.4744,8.466192,6.3308,8.733122 +L 6.3308,8.733122,6.2009,8.999966 +L 1.9321,7.970306,1.1083,8.999792 +L 1.5051,5.834588,0.6813,6.902372 +L 1.9321,3.470409,0.6813,-0.000053 + +[然] 49 +L 0.7075,0,0.9846,0.532416 +L 0.9846,0.532416,1.2682,1.056602 +L 1.2682,1.056602,1.5656,1.563713 +L 3.6706,0.26693,3.5168,0.713384 +L 3.5168,0.713384,3.3732,1.142653 +L 3.3732,1.142653,3.2398,1.563713 +L 5.8039,0.26693,5.6495,0.713384 +L 5.6495,0.713384,5.5094,1.142653 +L 5.5094,1.142653,5.3801,1.563713 +L 7.9054,0.26693,7.6108,0.713384 +L 7.6108,0.713384,7.3306,1.142653 +L 7.3306,1.142653,7.0543,1.563713 +L 0.925,3.165319,1.4118,3.621404 +L 1.4118,3.621404,1.8987,4.069214 +L 1.8987,4.069214,2.3855,4.499994 +L 2.3855,4.499994,1.9614,5.110208 +L 1.9614,5.110208,1.5411,5.72027 +L 1.5411,5.72027,1.1383,6.330485 +L 1.1383,6.330485,0.9846,6.176595 +L 0.9846,6.176595,0.8409,6.01406 +L 0.8409,6.01406,0.7075,5.83469 +L 4.0944,3.165319,4.6548,4.23164 +L 4.6548,4.23164,5.2222,5.2896 +L 5.2222,5.2896,5.8039,6.330485 +L 5.8039,6.330485,5.4397,6.696359 +L 5.4397,6.696359,4.8859,6.765554 +L 4.8859,6.765554,3.6706,6.597502 +L 3.6706,6.597502,3.3732,5.987266 +L 3.3732,5.987266,3.0895,5.377095 +L 3.0895,5.377095,2.8125,4.767034 +L 7.9054,3.165319,7.3306,4.069214 +L 7.3306,4.069214,6.7566,4.956101 +L 6.7566,4.956101,6.1958,5.83469 +L 2.8125,5.83469,2.3887,6.281165 +L 2.3887,6.281165,1.9684,6.710478 +L 1.9684,6.710478,1.5656,7.131342 +L 1.5656,7.131342,1.6955,7.768416 +L 1.6955,7.768416,1.8391,8.388547 +L 1.8391,8.388547,1.9894,8.999966 +L 6.1958,6.864346,5.9195,7.299328 +L 5.9195,7.299328,5.8179,7.853109 +L 5.8179,7.853109,5.8039,8.999966 +L 6.6266,6.864346,7.9054,6.864346 +L 3.6706,7.665334,3.2398,7.768416 +L 3.2398,7.768416,2.8125,7.854554 +L 2.8125,7.854554,2.3855,7.932374 +L 7.9054,7.932374,7.6108,8.302321 +L 7.6108,8.302321,7.3306,8.655302 +L 7.3306,8.655302,7.0543,8.999966 + +[倉] 28 +L 2.8428,0,2.8428,2.097443 +L 2.8428,2.097443,6.2329,2.097443 +L 6.2329,2.097443,6.2329,0 +L 6.2329,0,2.8428,0 +L 0.7379,0.533949,1.8408,2.331954 +L 1.8408,2.331954,2.3136,3.731753 +L 2.3136,3.731753,2.4191,5.83469 +L 2.4191,5.83469,1.9284,6.165234 +L 1.9284,6.165234,1.4976,6.165234 +L 1.4976,6.165234,0.7379,5.83469 +L 2.8428,3.69907,6.2329,3.69907 +L 6.2329,3.69907,6.2329,4.767034 +L 6.2329,4.767034,2.8428,4.767034 +L 6.2329,5.567782,5.1016,5.670885 +L 5.1016,5.670885,3.9738,5.75698 +L 3.9738,5.75698,2.8428,5.83469 +L 7.084,5.83469,5.3292,6.791013 +L 5.3292,6.791013,3.7671,7.077667 +L 3.7671,7.077667,2.8428,7.398404 +L 2.8428,7.398404,2.6919,7.234511 +L 2.6919,7.234511,2.5483,7.05374 +L 2.5483,7.05374,2.4191,6.864346 +L 3.2701,7.932374,3.5465,8.302321 +L 3.5465,8.302321,3.8302,8.655302 +L 3.8302,8.655302,4.1279,8.999966 +L 4.1279,8.999966,4.4014,8.655302 +L 4.4014,8.655302,4.6743,8.302321 +L 4.6743,8.302321,4.9513,7.932374 + +[巣] 33 +L 4.1267,0,4.0462,0.713384 +L 4.0462,0.713384,3.9723,1.409627 +L 3.9723,1.409627,3.9127,2.097443 +L 3.9127,2.097443,2.8449,1.590463 +L 2.8449,1.590463,1.7868,1.066365 +L 1.7868,1.066365,0.7399,0.533949 +L 6.6905,0.533949,4.6311,2.026716 +L 4.6311,2.026716,2.9601,2.485821 +L 2.9601,2.485821,0.7399,2.631436 +L 4.981,2.631436,7.5133,2.631436 +L 4.1267,3.432359,3.9723,3.69907 +L 3.9723,3.69907,3.8322,3.966132 +L 3.8322,3.966132,3.7026,4.233063 +L 3.7026,4.233063,1.5945,4.233063 +L 1.5945,4.233063,1.5945,7.398404 +L 1.5945,7.398404,2.8519,7.501464 +L 2.8519,7.501464,4.1267,7.587602 +L 4.1267,7.587602,5.4083,7.665334 +L 5.4083,7.665334,5.6818,8.121507 +L 5.6818,8.121507,5.962,8.569273 +L 5.962,8.569273,6.2594,8.999966 +L 4.5537,4.233063,4.256,4.767034 +L 4.256,4.767034,3.9723,5.300829 +L 3.9723,5.300829,3.7026,5.83469 +L 3.7026,5.83469,2.0218,5.83469 +L 4.981,4.233063,6.6905,4.233063 +L 6.6905,4.233063,6.6905,5.83469 +L 6.6905,5.83469,4.5537,5.83469 +L 4.5537,5.83469,4.4034,6.17793 +L 4.4034,6.17793,4.256,6.521236 +L 4.256,6.521236,4.1267,6.864346 +L 6.6905,6.330485,6.6905,7.398404 +L 6.6905,7.398404,5.8356,7.398404 + +[争] 28 +L 2.8745,0,4.1603,0 +L 4.1603,0,4.0167,2.515548 +L 4.0167,2.515548,3.3092,3.192047 +L 3.3092,3.192047,1.628,3.165319 +L 4.5841,3.165319,4.2895,3.69907 +L 4.2895,3.69907,4.0093,4.233063 +L 4.0093,4.233063,3.7291,4.767034 +L 3.7291,4.767034,0.7695,4.767034 +L 5.0114,3.165319,6.2652,3.165319 +L 6.2652,3.165319,5.7189,4.748536 +L 5.7189,4.748536,4.6993,4.95054 +L 4.6993,4.95054,4.1603,6.330485 +L 4.1603,6.330485,2.5211,6.449108 +L 2.5211,6.449108,1.5544,6.567797 +L 1.5544,6.567797,0.7695,6.330485 +L 6.6925,4.767034,6.3913,5.180804 +L 6.3913,5.180804,6.2789,5.586104 +L 6.2789,5.586104,6.2652,6.330485 +L 6.2652,6.330485,5.6905,6.433698 +L 5.6905,6.433698,5.134,6.519727 +L 5.134,6.519727,4.5841,6.597502 +L 4.5841,6.597502,4.7168,6.967668 +L 4.7168,6.967668,4.8604,7.320605 +L 4.8604,7.320605,5.0114,7.665334 +L 5.0114,7.665334,3.1901,7.833408 +L 3.1901,7.833408,2.4196,7.764148 +L 2.4196,7.764148,2.0203,7.398404 +L 7.1163,4.767034,7.9709,4.767034 + +[側] 17 +L 5.4407,0,5.1678,0.343196 +L 5.1678,0.343196,4.8841,0.686371 +L 4.8841,0.686371,4.5896,1.029589 +L 6.7222,0,7.5733,0 +L 7.5733,0,7.5733,8.999966 +L 3.3357,2.097443,3.3357,8.466192 +L 3.3357,8.466192,5.0134,8.466192 +L 5.0134,8.466192,5.0134,2.097443 +L 5.0134,2.097443,3.3357,2.097443 +L 6.2918,2.097443,6.2918,7.932374 +L 3.7595,4.233063,4.5822,4.233063 +L 3.7595,6.330485,4.5822,6.330485 +L 1.6261,0,1.6261,6.597514 +L 2.9084,0,3.1812,0.343196 +L 3.1812,0.343196,3.4649,0.686371 +L 3.4649,0.686371,3.7595,1.029589 +A -5.9034,10.627756,8.540418,321.41046,349.01228 + +[束] 24 +L 4.1884,0,4.1744,1.871491 +L 4.1744,1.871491,4.0627,2.69216 +L 4.0627,2.69216,3.7615,3.165319 +L 3.7615,3.165319,2.7633,2.288064 +L 2.7633,2.288064,1.7791,1.411028 +L 1.7791,1.411028,0.8019,0.533949 +L 7.148,0.533949,5.2956,2.628568 +L 5.2956,2.628568,3.7927,3.841839 +L 3.7927,3.841839,1.6565,4.233063 +L 1.6565,4.233063,1.6565,6.330485 +L 1.6565,6.330485,3.7615,6.330485 +L 3.7615,6.330485,4.0452,6.923778 +L 4.0452,6.923778,4.0452,7.339037 +L 4.0452,7.339037,3.7615,7.932374 +L 3.7615,7.932374,0.8019,7.932374 +L 4.6157,4.233063,4.1678,5.776812 +L 4.1678,5.776812,5.3828,6.286792 +L 5.3828,6.286792,6.7176,6.330485 +L 6.7176,6.330485,6.7176,4.233063 +L 6.7176,4.233063,4.6157,4.233063 +L 4.6157,7.932374,4.462,8.302321 +L 4.462,8.302321,4.3219,8.655302 +L 4.3219,8.655302,4.1884,8.999966 +L 5.0395,7.932374,7.5718,7.932374 + +[孫] 45 +L 1.2589,0,2.0823,0 +L 2.0823,0,2.0644,2.998514 +L 2.0644,2.998514,1.9562,4.234442 +L 1.9562,4.234442,1.655,4.767034 +L 1.655,4.767034,1.3815,4.603075 +L 1.3815,4.603075,1.1086,4.422305 +L 1.1086,4.422305,0.8316,4.233063 +L 5.8961,0,5.8961,3.69907 +L 5.8961,3.69907,3.3639,3.69907 +L 3.7912,1.029589,4.0679,1.563713 +L 4.0679,1.563713,4.3484,2.097443 +L 4.3484,2.097443,4.6461,2.631436 +L 8.0295,1.029589,7.7349,1.563713 +L 7.7349,1.563713,7.4547,2.097443 +L 7.4547,2.097443,7.1784,2.631436 +L 8.0295,3.966132,7.882,4.233063 +L 7.882,4.233063,7.7349,4.499994 +L 7.7349,4.499994,7.6057,4.767034 +L 7.6057,4.767034,7.2726,4.391308 +L 7.2726,4.391308,6.9402,4.252852 +L 6.9402,4.252852,6.3234,4.233063 +L 5.0734,4.233063,5.1995,4.499994 +L 5.1995,4.499994,5.3252,4.767034 +L 5.3252,4.767034,5.4723,5.033877 +L 5.4723,5.033877,5.045,5.480221 +L 5.045,5.480221,4.6251,5.909708 +L 4.6251,5.909708,4.2188,6.330485 +L 2.5093,4.767034,2.0753,6.12292 +L 2.0753,6.12292,2.6007,7.275555 +L 2.6007,7.275555,3.3639,8.19913 +L 3.3639,8.19913,2.5093,8.302321 +L 2.5093,8.302321,1.6652,8.388547 +L 1.6652,8.388547,0.8316,8.466192 +L 5.8961,5.300829,6.3234,5.833421 +L 6.3234,5.833421,6.7511,6.357366 +L 6.7511,6.357366,7.1784,6.864346 +L 5.0734,6.864346,5.1995,7.131342 +L 5.1995,7.131342,5.3252,7.398404 +L 5.3252,7.398404,5.4723,7.665334 +L 5.4723,7.665334,5.045,7.768416 +L 5.045,7.768416,4.6251,7.854554 +L 4.6251,7.854554,4.2188,7.932374 +L 6.1101,7.932374,6.6001,8.121507 +L 6.6001,8.121507,7.0978,8.302321 +L 7.0978,8.302321,7.6057,8.466192 + +[帯] 27 +L 4.2208,0,4.1438,2.312253 +L 4.1438,2.312253,3.5939,3.090454 +L 3.5939,3.090454,2.1158,3.165319 +L 2.1158,3.165319,2.1158,0.533949 +L 5.5027,0.533949,6.3538,0.533949 +L 6.3538,0.533949,6.3538,3.165319 +L 6.3538,3.165319,5.0015,3.19914 +L 5.0015,3.19914,4.3711,3.58905 +L 4.3711,3.58905,4.2208,4.767034 +L 4.2208,4.767034,0.8301,4.767034 +L 0.8301,4.767034,0.8301,3.165319 +L 7.6353,3.165319,7.6353,4.767034 +L 7.6353,4.767034,4.6446,4.767034 +L 2.5396,6.330485,2.3081,7.661 +L 2.3081,7.661,1.6955,7.974623 +L 1.6955,7.974623,0.8301,7.932374 +L 2.9669,6.330485,4.2208,6.330485 +L 4.2208,6.330485,3.9196,7.759857 +L 3.9196,7.759857,3.2468,8.155349 +L 3.2468,8.155349,2.5396,8.999966 +L 4.6446,6.330485,5.9297,6.330485 +L 5.9297,6.330485,5.6284,7.768416 +L 5.6284,7.768416,4.9455,8.146921 +L 4.9455,8.146921,4.2208,8.999966 +L 6.3538,7.932374,6.0592,8.655346 +L 6.0592,8.655302,5.9297,8.999966 +L 6.7807,7.932374,7.6353,7.932374 + +[隊] 38 +L 4.6778,0,5.2907,0.019811 +L 5.2907,0.019811,5.6238,0.158179 +L 5.6238,0.158179,5.96,0.533949 +L 5.96,0.533949,5.8756,1.411028 +L 5.8756,1.411028,5.8059,2.288064 +L 5.8059,2.288064,5.7429,3.165319 +L 5.7429,3.165319,4.8112,2.467521 +L 4.8112,2.467521,3.8862,1.752868 +L 3.8862,1.752868,2.9689,1.029589 +L 8.0611,1.029589,6.6955,2.96754 +L 6.6955,2.96754,6.0928,4.074862 +L 6.0928,4.074862,5.7429,5.300829 +L 5.7429,5.300829,4.9513,4.603075 +L 4.9513,4.603075,4.1668,3.888509 +L 4.1668,3.888509,3.3962,3.165319 +L 6.7827,4.233063,7.21,4.767034 +L 7.21,4.767034,7.6338,5.300829 +L 7.6338,5.300829,8.0611,5.83469 +L 3.606,5.300829,4.0964,5.911066 +L 4.0964,5.911066,4.5937,6.521236 +L 4.5937,6.521236,5.1016,7.131342 +L 5.1016,7.131342,4.524,7.234511 +L 4.524,7.234511,3.9528,7.320605 +L 3.9528,7.320605,3.3962,7.398404 +L 5.5289,7.398404,6.1246,7.635652 +L 6.1246,7.635652,6.4504,8.05091 +L 6.4504,8.05091,6.7827,8.999966 +L 6.7827,7.398404,7.21,7.398404 +L 7.21,7.398404,7.6338,7.398404 +L 7.6338,7.398404,8.0611,7.398404 +L 4.6778,8.19913,4.524,8.466192 +L 4.524,8.466192,4.3801,8.733122 +L 4.3801,8.733122,4.2505,8.999966 +L 0.864,8.4661,2.5725,8.4661 +L 0.864,0,0.864,8.4661 +L 2.5725,8.4661,2.1248,6.097388 +L 2.1248,6.097388,2.5725,2.631212 +L 2.5725,2.631212,0.864,1.5636 + +[達] 54 +L 5.4997,1.296608,5.3487,1.563713 +L 5.3487,1.563713,5.2016,1.830447 +L 5.2016,1.830447,5.0724,2.097443 +L 5.0724,2.097443,4.3716,2.097443 +L 4.3716,2.097443,3.6711,2.097443 +L 3.6711,2.097443,2.9674,2.097443 +L 5.927,2.097443,5.6324,2.631436 +L 5.6324,2.631436,5.3487,3.165319 +L 5.3487,3.165319,5.0724,3.69907 +L 5.0724,3.69907,4.6486,3.69907 +L 4.6486,3.69907,4.2283,3.69907 +L 4.2283,3.69907,3.8252,3.69907 +L 6.3575,2.097443,6.9108,2.097443 +L 6.9108,2.097443,7.4856,2.097443 +L 7.4856,2.097443,8.0631,2.097443 +L 5.927,3.69907,5.5484,4.272575 +L 5.5484,4.272575,4.8938,4.549641 +L 4.8938,4.549641,3.3947,4.767034 +L 6.3575,3.69907,6.6271,3.69907 +L 6.6271,3.69907,6.9108,3.69907 +L 6.9108,3.69907,7.2085,3.69907 +L 6.1403,4.767034,6.3575,5.223228 +L 6.3575,5.223228,6.5679,5.670885 +L 6.5679,5.670885,6.7812,6.101686 +L 6.7812,6.101686,5.927,6.101686 +L 5.927,6.101686,5.0861,6.101686 +L 5.0861,6.101686,4.2493,6.101686 +L 4.2493,6.101686,4.3824,5.83469 +L 4.3824,5.83469,4.526,5.567782 +L 4.526,5.567782,4.6763,5.300829 +L 6.7812,4.767034,7.0583,4.767034 +L 7.0583,4.767034,7.3385,4.767034 +L 7.3385,4.767034,7.6358,4.767034 +L 2.9674,6.330485,3.2438,6.330485 +L 3.2438,6.330485,3.5275,6.330485 +L 3.5275,6.330485,3.8252,6.330485 +L 7.2085,6.330485,7.4856,6.330485 +L 7.4856,6.330485,7.7658,6.330485 +L 7.7658,6.330485,8.0631,6.330485 +L 5.4997,7.131342,5.1389,7.69493 +L 5.1389,7.69493,4.5926,7.902669 +L 4.5926,7.902669,3.3947,7.932374 +L 5.927,7.932374,5.776,8.302321 +L 5.776,8.302321,5.6324,8.655302 +L 5.6324,8.655302,5.4997,8.999966 +L 6.3575,7.932374,6.7812,7.932374 +L 6.7812,7.932374,7.2085,7.932374 +L 7.2085,7.932374,7.6358,7.932374 +L 5.9158,-0.015161,8.0463,-0.015161 +L 2.0971,1.052475,1.0446,0 +L 0.846,4.751744,2.0971,4.751744 +L 2.0971,1.052475,2.0971,4.751744 +L 1.2733,8.489114,2.0971,7.42123 +A 5.9158,7.347803,7.362973,238.75988,270 + +[仲] 7 +L 1.7156,0,1.7156,6.597546 +L 5.5294,8.999966,5.5294,0 +L 7.6378,3.165319,7.6378,6.864346 +L 7.6378,6.864346,3.3967,6.864346 +L 3.3967,6.864346,3.3967,3.165319 +L 3.3967,3.165319,7.6378,3.165319 +A -5.8112,10.627773,8.540417,321.41046,349.01228 + +[貯] 48 +L 0.8595,0,1.1393,0.343196 +L 1.1393,0.343196,1.4195,0.686371 +L 1.4195,0.686371,1.7176,1.029589 +L 4.6736,0,5.0831,0 +L 5.0831,0,5.5037,0 +L 5.5037,0,5.9275,0 +L 5.9275,0,5.9275,1.60027 +L 5.9275,1.60027,5.9275,3.192047 +L 5.9275,3.192047,5.9275,4.767034 +L 5.9275,4.767034,5.2267,4.767034 +L 5.2267,4.767034,4.523,4.767034 +L 4.523,4.767034,3.8225,4.767034 +L 1.2903,2.097443,1.2903,4.23164 +L 1.2903,4.23164,1.2903,6.357366 +L 1.2903,6.357366,1.2903,8.466192 +L 1.2903,8.466192,1.8401,8.466192 +L 1.8401,8.466192,2.3967,8.466192 +L 2.3967,8.466192,2.9644,8.466192 +L 2.9644,8.466192,2.9644,6.357366 +L 2.9644,6.357366,2.9644,4.23164 +L 2.9644,4.23164,2.9644,2.097443 +L 2.9644,2.097443,2.3967,2.097443 +L 2.3967,2.097443,1.8401,2.097443 +L 1.8401,2.097443,1.2903,2.097443 +L 1.7176,4.233063,1.9904,4.233063 +L 1.9904,4.233063,2.2639,4.233063 +L 2.2639,4.233063,2.5406,4.233063 +L 6.3548,4.767034,6.9117,4.767034 +L 6.9117,4.767034,7.4861,4.767034 +L 7.4861,4.767034,8.0636,4.767034 +L 1.7176,6.330485,1.9904,6.330485 +L 1.9904,6.330485,2.2639,6.330485 +L 2.2639,6.330485,2.5406,6.330485 +L 3.8225,6.330485,3.8225,6.700584 +L 3.8225,6.700584,3.8225,7.05374 +L 3.8225,7.05374,3.8225,7.398404 +L 3.8225,7.398404,4.523,7.398404 +L 4.523,7.398404,5.2267,7.398404 +L 5.2267,7.398404,5.9275,7.398404 +L 5.9275,7.398404,5.9275,7.932374 +L 5.9275,7.932374,5.9275,8.466192 +L 5.9275,8.466192,5.9275,8.999966 +L 8.0636,6.330485,8.0636,6.700584 +L 8.0636,6.700584,8.0636,7.05374 +L 8.0636,7.05374,8.0636,7.398404 +L 8.0636,7.398404,7.4861,7.398404 +L 7.4861,7.398404,6.9117,7.398404 +L 6.9117,7.398404,6.3548,7.398404 + +[兆] 27 +L 1.0783,0,2.7314,2.266962 +L 2.7314,2.266962,3.3408,3.364346 +L 3.3408,3.364346,3.4284,4.233063 +L 3.4284,4.233063,2.5703,3.888509 +L 2.5703,3.888509,1.716,3.535287 +L 1.716,3.535287,0.865,3.165319 +L 5.5334,0,5.2325,0.689195 +L 5.2325,0.689195,5.1201,3.022484 +L 5.1201,3.022484,5.1026,8.999966 +L 5.9537,0,6.6612,0 +L 6.6612,0,7.3687,0 +L 7.3687,0,8.094,0 +L 8.094,0,8.094,0.532416 +L 8.094,0.532416,8.094,1.056602 +L 8.094,1.056602,8.094,1.563713 +L 7.6632,3.165319,6.7351,3.916704 +L 6.7351,3.916704,6.1778,4.193529 +L 6.1778,4.193529,5.5334,4.233063 +L 3.4284,4.767034,3.4284,6.17793 +L 3.4284,6.17793,3.4284,7.589024 +L 3.4284,7.589024,3.4284,8.999966 +L 5.5334,5.83469,6.0871,6.54814 +L 6.0871,6.54814,6.6612,7.244405 +L 6.6612,7.244405,7.2429,7.932374 +L 2.1433,6.597502,1.8453,7.05374 +L 1.8453,7.05374,1.5651,7.501464 +L 1.5651,7.501464,1.2887,7.932374 + + +# kan_13 ------------------------------------------------------- +# 腸停底典徒努灯堂毒敗梅博標票付副粉兵辺包牧末満未脈勇養浴陸量輪令例労録械旗紀種妻禁留質政経貸適接格 + +[腸] 32 +L 0.4304,9.000028,2.1084,9.000028 +L 2.1084,9.000028,2.1084,-0.000003 +L 2.1084,-0.000003,1.2534,-0.000003 +L 4.0274,-0.000003,4.6477,0.800898 +L 4.6477,0.800898,5.2813,1.601712 +L 5.2813,1.601712,5.9187,2.40246 +L 5.9187,2.40246,4.994,2.353097 +L 4.994,2.353097,4.3391,2.007011 +L 4.3391,2.007011,3.3938,1.067785 +L 5.7085,-0.000003,6.0518,0.370075 +L 6.0518,0.370075,6.4125,0.723166 +L 6.4125,0.723166,6.7768,1.067785 +L 6.7768,1.067785,6.6262,1.600245 +L 6.6262,1.600245,6.4794,2.124343 +L 6.4794,2.124343,6.3498,2.631345 +L 3.1763,2.135551,3.4533,2.314942 +L 3.4533,2.314942,3.7332,2.477456 +L 3.7332,2.477456,4.0274,2.631345 +L 4.0274,2.631345,4.0939,3.165162 +L 4.0939,3.165162,4.1605,3.699221 +L 4.1605,3.699221,4.2449,4.233148 +L 4.2449,4.233148,3.3938,4.233148 +L 4.6718,4.233148,7.2041,4.233148 +L 3.8176,5.834862,3.8176,8.466188 +L 3.8176,8.466188,6.3498,8.466188 +L 6.3498,8.466188,6.3498,5.834862 +L 6.3498,5.834862,3.8176,5.834862 +L 4.2449,7.398313,5.9187,7.398313 +L 0.4128,3.661131,2.1084,3.661131 +L 0.4233,6.330569,2.1084,6.330569 +L 0.4304,9.000028,0.4304,3.000044 +A -10.3187,3.000044,10.748776,343.79333,0 + +[停] 16 +L 3.8157,-0.000003,4.6668,-0.000003 +L 4.6668,-0.000003,4.6668,2.631345 +L 4.6668,2.631345,2.9926,2.631345 +L 5.0976,2.631345,6.376,2.631345 +L 2.1416,3.165162,2.1416,4.233148 +L 2.1416,4.233148,7.2341,4.233148 +L 7.2341,4.233148,7.2341,3.165162 +L 2.9926,5.834862,2.9926,6.902519 +L 2.9926,6.902519,6.376,6.902519 +L 6.376,6.902519,6.376,5.834862 +L 6.376,5.834862,2.9926,5.834862 +L 2.1416,7.932174,4.6668,7.932174 +L 4.6668,7.932174,4.6668,8.999962 +L 5.0976,7.932174,7.2341,7.932174 +L 0.8562,-0.000003,0.8562,6.597522 +A -6.6706,10.62777,8.540417,321.41046,349.01228 + +[底] 24 +L 2.14,-0.000003,4.7038,-0.000003 +L 6.8057,-0.000003,5.9546,1.411025 +L 5.9546,1.411025,5.1066,2.821988 +L 5.1066,2.821988,4.2734,4.233148 +L 4.2734,4.233148,2.14,4.233148 +L 2.14,4.233148,2.14,1.601712 +L 2.14,1.601712,3.0752,1.621544 +L 3.0752,1.621544,3.6254,1.759957 +L 3.6254,1.759957,4.2734,2.135551 +L 7.2361,-0.000003,7.2361,1.601712 +L 1.3135,1.067785,2.14,1.067785 +L 5.1245,4.233148,4.8303,4.668108 +L 4.8303,4.668108,4.7182,5.221956 +L 4.7182,5.221956,4.7038,6.368658 +L 4.7038,6.368658,2.14,6.368658 +L 2.14,6.368658,2.14,4.766965 +L 5.5549,4.233148,7.2361,4.233148 +L 5.1245,6.368658,5.4604,6.744405 +L 5.4604,6.744405,5.7829,6.882774 +L 5.7829,6.882774,6.3815,6.902519 +L 7.2641,7.932174,0.8897,7.932174 +L 4.0769,8.961698,4.0769,7.932174 +L 0.8897,7.932174,0.8897,4.499925 +A -11.8137,4.499925,12.703326,339.25315,0 + +[典] 24 +L 0.2756,-0.000003,0.7624,0.370075 +L 0.7624,0.370075,1.2559,0.723166 +L 1.2559,0.723166,1.7431,1.067785 +L 6.4084,-0.000003,5.9846,0.370075 +L 5.9846,0.370075,5.5569,0.723166 +L 5.5569,0.723166,5.1296,1.067785 +L 0.0616,2.135551,0.8882,2.135551 +L 0.8882,2.135551,0.8882,7.398313 +L 0.8882,7.398313,1.9284,7.466063 +L 1.9284,7.466063,2.4541,7.889838 +L 2.4541,7.889838,2.5974,8.999962 +L 1.3155,2.135551,2.5974,2.135551 +L 2.5974,2.135551,2.5693,3.783849 +L 2.5693,3.783849,2.2615,4.567851 +L 2.2615,4.567851,1.3155,4.766965 +L 3.0247,2.135551,4.3066,2.135551 +L 4.3066,2.135551,4.1139,4.320534 +L 4.1139,4.320534,3.543,4.692166 +L 3.543,4.692166,2.5974,5.300892 +L 2.5974,5.300892,3.039,7.234355 +L 3.039,7.234355,3.8653,7.625731 +L 3.8653,7.625731,4.3066,8.999962 +L 4.6992,2.135551,5.9846,2.135551 +L 5.9846,2.135551,5.9846,4.766965 +L 5.9846,4.766965,5.0634,4.786666 +L 5.0634,4.786666,4.6323,4.925166 +L 4.6323,4.925166,4.3066,5.300892 +L 4.3066,5.300892,4.3665,5.9379 +L 4.3665,5.9379,4.426,6.557965 +L 4.426,6.557965,4.4887,7.169515 +L 4.4887,7.169515,4.979,7.245738 +L 4.979,7.245738,5.4729,7.322026 +L 5.4729,7.322026,5.9846,7.398313 +L 5.9846,7.398313,5.9846,5.300892 + +[徒] 30 +L 1.7731,-0.000003,2.6768,1.20484 +L 2.6768,1.20484,3.0057,2.16379 +L 3.0057,2.16379,3.0547,3.699221 +L 4.7359,0.267037,4.3054,0.533946 +L 4.3054,0.533946,3.8781,0.800898 +L 3.8781,0.800898,3.447,1.067785 +L 5.1565,-0.000003,5.8602,-0.000003 +L 5.8602,-0.000003,6.561,-0.000003 +L 6.561,-0.000003,7.2615,-0.000003 +L 4.7359,1.067785,4.7082,4.131423 +L 4.7082,4.131423,4.1194,5.186471 +L 4.1194,5.186471,2.2004,5.300892 +L 5.1565,3.165162,5.7166,3.165162 +L 5.7166,3.165162,6.2878,3.165162 +L 6.2878,3.165162,6.8657,3.165162 +L 5.1565,5.300892,4.3926,6.692087 +L 4.3926,6.692087,4.0844,7.278244 +L 4.0844,7.278244,2.6309,7.398313 +L 5.587,5.300892,6.1372,5.300892 +L 6.1372,5.300892,6.6972,5.300892 +L 6.6972,5.300892,7.2615,5.300892 +L 5.1565,7.398313,4.8623,7.81366 +L 4.8623,7.81366,4.7502,8.228788 +L 4.7502,8.228788,4.7359,8.999962 +L 5.587,7.398313,6.0146,7.398313 +L 6.0146,7.398313,6.4419,7.398313 +L 6.4419,7.398313,6.8657,7.398313 +L 0.9217,8.999962,-0.3318,6.902519 +L 0.9217,-0.000003,0.9217,5.567735 +A -4.7978,8.132952,6.266899,315.462,348.67668 + +[努] 54 +L 0.7381,-0.000003,1.5019,0.723166 +L 1.5019,0.723166,2.269,1.437885 +L 2.269,1.437885,3.0532,2.135551 +L 3.0532,2.135551,3.0532,2.478923 +L 3.0532,2.478923,3.0532,2.821988 +L 3.0532,2.821988,3.0532,3.165162 +L 3.0532,3.165162,2.353,3.165162 +L 2.353,3.165162,1.6526,3.165162 +L 1.6526,3.165162,0.9482,3.165162 +L 4.3354,-0.000003,5.6135,0.524051 +L 5.6135,0.524051,5.9987,1.751442 +L 5.9987,1.751442,6.0166,3.165162 +L 6.0166,3.165162,5.1582,3.165162 +L 5.1582,3.165162,4.3144,3.165162 +L 4.3144,3.165162,3.4843,3.165162 +L 3.4843,3.165162,3.4843,3.535284 +L 3.4843,3.535284,3.4843,3.888397 +L 3.4843,3.888397,3.4843,4.233148 +L 3.4843,4.233148,2.9726,4.766965 +L 2.9726,4.766965,2.4753,5.300892 +L 2.4753,5.300892,1.9884,5.834862 +L 1.9884,5.834862,1.3478,5.300892 +L 1.3478,5.300892,0.717,4.766965 +L 0.717,4.766965,0.094,4.233148 +L 4.1218,4.766965,4.465,5.223225 +L 4.465,5.223225,4.8289,5.671036 +L 4.8289,5.671036,5.1932,6.101706 +L 5.1932,6.101706,4.5908,7.053737 +L 4.5908,7.053737,4.367,7.666622 +L 4.367,7.666622,4.3354,8.466188 +L 4.3354,8.466188,5.1655,8.388434 +L 5.1655,8.388434,6.0166,8.30234 +L 6.0166,8.30234,6.8674,8.199126 +L 6.8674,8.199126,6.4404,7.511354 +L 6.4404,7.511354,6.0166,6.815023 +L 6.0166,6.815023,5.5855,6.101706 +L 5.5855,6.101706,6.2162,5.162436 +L 6.2162,5.162436,6.6646,4.816415 +L 6.6646,4.816415,7.2947,4.766965 +L 0.9482,6.368658,0.9482,6.901162 +L 0.9482,6.901162,0.9482,7.425084 +L 0.9482,7.425084,0.9482,7.932174 +L 0.9482,7.932174,0.654,7.932174 +L 0.654,7.932174,0.3738,7.932174 +L 0.3738,7.932174,0.094,7.932174 +L 2.6294,6.368658,2.6294,6.901162 +L 2.6294,6.901162,2.6294,7.425084 +L 2.6294,7.425084,2.6294,7.932174 +L 2.6294,7.932174,2.2021,7.932174 +L 2.2021,7.932174,1.7818,7.932174 +L 1.7818,7.932174,1.3794,7.932174 +L 1.3794,7.932174,1.3794,8.30234 +L 1.3794,8.30234,1.3794,8.655431 +L 1.3794,8.655431,1.3794,8.999962 + +[灯] 7 +L 0.1271,6.902519,0.1271,5.033961 +L 2.6594,7.398313,1.8052,6.368658 +L 1.8052,2.135551,2.2321,1.334759 +L 3.0867,8.466188,7.3247,8.466188 +L 5.6193,8.466188,5.6193,-0.000003 +L 5.6193,-0.000003,4.3371,-0.000003 +A -31.6257,8.999962,33.002728,344.17481,0 + +[堂] 51 +L 0.126,-0.000003,1.2534,-0.000003 +L 1.2534,-0.000003,2.3847,-0.000003 +L 2.3847,-0.000003,3.5164,-0.000003 +L 3.5164,-0.000003,3.2222,1.841849 +L 3.2222,1.841849,2.3672,2.226002 +L 2.3672,2.226002,0.9802,2.135551 +L 3.9363,-0.000003,4.917,-0.000003 +L 4.917,-0.000003,5.8977,-0.000003 +L 5.8977,-0.000003,6.8994,-0.000003 +L 3.9363,2.135551,3.6421,2.543696 +L 3.6421,2.543696,3.53,3.087517 +L 3.53,3.087517,3.5164,4.233148 +L 3.5164,4.233148,2.9416,4.233148 +L 2.9416,4.233148,2.3847,4.233148 +L 2.3847,4.233148,1.8352,4.233148 +L 1.8352,4.233148,1.8352,4.766965 +L 1.8352,4.766965,1.8352,5.300892 +L 1.8352,5.300892,1.8352,5.834862 +L 1.8352,5.834862,2.9626,5.834862 +L 2.9626,5.834862,4.0908,5.834862 +L 4.0908,5.834862,5.2217,5.834862 +L 5.2217,5.834862,5.2217,5.300892 +L 5.2217,5.300892,5.2217,4.766965 +L 5.2217,4.766965,5.2217,4.233148 +L 5.2217,4.233148,4.7944,4.233148 +L 4.7944,4.233148,4.3675,4.233148 +L 4.3675,4.233148,3.9363,4.233148 +L 4.3675,2.135551,4.924,2.135551 +L 4.924,2.135551,5.4949,2.135551 +L 5.4949,2.135551,6.0766,2.135551 +L 0.126,5.834862,0.126,6.3673 +L 0.126,6.3673,0.126,6.891311 +L 0.126,6.891311,0.126,7.398313 +L 0.126,7.398313,0.8296,7.501482 +L 0.8296,7.501482,1.541,7.587599 +L 1.541,7.587599,2.2621,7.665243 +L 2.2621,7.665243,1.9644,8.121438 +L 1.9644,8.121438,1.6807,8.569227 +L 1.6807,8.569227,1.4114,8.999962 +L 6.8994,5.834862,6.8994,6.3673 +L 6.8994,6.3673,6.8994,6.891311 +L 6.8994,6.891311,6.8994,7.398313 +L 6.8994,7.398313,5.4777,7.398313 +L 5.4777,7.398313,4.0627,7.398313 +L 4.0627,7.398313,2.6579,7.398313 +L 3.5164,7.932174,3.5164,8.30234 +L 3.5164,8.30234,3.5164,8.655431 +L 3.5164,8.655431,3.5164,8.999962 +L 4.7944,7.932174,5.0676,8.30234 +L 5.0676,8.30234,5.3513,8.655431 +L 5.3513,8.655431,5.6455,8.999962 + +[毒] 60 +L 4.3936,-0.000003,4.996,0.029592 +L 4.996,0.029592,5.3186,0.237397 +L 5.3186,0.237397,5.6475,0.800898 +L 5.6475,0.800898,5.4969,1.067785 +L 5.4969,1.067785,5.3498,1.334759 +L 5.3498,1.334759,5.2202,1.601712 +L 5.2202,1.601712,3.9383,1.601712 +L 3.9383,1.601712,2.6669,1.601712 +L 2.6669,1.601712,1.4099,1.601712 +L 1.4099,1.601712,1.392,2.346005 +L 1.392,2.346005,1.2904,2.751326 +L 1.2904,2.751326,1.0103,3.165162 +L 1.0103,3.165162,0.7129,3.165162 +L 0.7129,3.165162,0.4323,3.165162 +L 0.4323,3.165162,0.1592,3.165162 +L 6.0751,1.601712,5.7809,2.134194 +L 5.7809,2.134194,5.4969,2.658161 +L 5.4969,2.658161,5.2202,3.165162 +L 5.2202,3.165162,4.7964,3.165162 +L 4.7964,3.165162,4.3765,3.165162 +L 4.3765,3.165162,3.9733,3.165162 +L 3.9733,3.165162,3.8196,2.821988 +L 3.8196,2.821988,3.676,2.478923 +L 3.676,2.478923,3.5425,2.135551 +L 1.8337,3.165162,1.5356,3.5804 +L 1.5356,3.5804,1.4235,3.995791 +L 1.4235,3.995791,1.4099,4.766965 +L 1.4099,4.766965,2.814,4.766965 +L 2.814,4.766965,4.2259,4.766965 +L 4.2259,4.766965,5.6475,4.766965 +L 5.6475,4.766965,5.6965,3.792496 +L 5.6965,3.792496,6.0293,3.300839 +L 6.0293,3.300839,6.9294,3.165162 +L 2.2641,3.165162,2.8774,3.20485 +L 2.8774,3.20485,3.2101,3.481718 +L 3.2101,3.481718,3.5425,4.233148 +L 0.1592,5.834862,1.2834,5.9379 +L 1.2834,5.9379,2.4147,6.024126 +L 2.4147,6.024126,3.5425,6.101706 +L 3.5425,6.101706,3.3923,6.368658 +L 3.3923,6.368658,3.2448,6.63561 +L 3.2448,6.63561,3.1152,6.902519 +L 3.1152,6.902519,2.5373,6.902519 +L 2.5373,6.902519,1.9668,6.902519 +L 1.9668,6.902519,1.4099,6.902519 +L 3.9733,5.834862,4.947,5.834862 +L 4.947,5.834862,5.935,5.834862 +L 5.935,5.834862,6.9294,5.834862 +L 3.9733,6.902519,2.863,7.864576 +L 2.863,7.864576,1.8337,8.012731 +L 1.8337,8.012731,0.583,7.932174 +L 4.3936,6.902519,4.8034,6.902519 +L 4.8034,6.902519,5.2237,6.902519 +L 5.2237,6.902519,5.6475,6.902519 +L 3.9733,7.932174,3.8196,8.30234 +L 3.8196,8.30234,3.676,8.655431 +L 3.676,8.655431,3.5425,8.999962 +L 4.3936,7.932174,5.0976,7.932174 +L 5.0976,7.932174,5.802,7.932174 +L 5.802,7.932174,6.5056,7.932174 + +[敗] 42 +L 0.1577,-0.000003,0.4343,0.370075 +L 0.4343,0.370075,0.7145,0.723166 +L 0.7145,0.723166,1.0123,1.067785 +L 3.7547,-0.000003,4.3991,0.800898 +L 4.3991,0.800898,5.0401,1.601712 +L 5.0401,1.601712,5.6775,2.40246 +L 5.6775,2.40246,5.0716,3.789584 +L 5.0716,3.789584,4.7949,4.956294 +L 4.7949,4.956294,4.6128,6.902519 +L 4.6128,6.902519,4.2559,6.368658 +L 4.2559,6.368658,3.9123,5.834862 +L 3.9123,5.834862,3.5725,5.300892 +L 7.3867,-0.000003,6.9629,0.533946 +L 6.9629,0.533946,6.5325,1.067785 +L 6.5325,1.067785,6.1052,1.601712 +L 0.585,2.135551,0.585,4.259876 +L 0.585,4.259876,0.585,6.3673 +L 0.585,6.3673,0.585,8.466188 +L 0.585,8.466188,1.2854,8.466188 +L 1.2854,8.466188,1.9929,8.466188 +L 1.9929,8.466188,2.7214,8.466188 +L 2.7214,8.466188,2.7214,6.3673 +L 2.7214,6.3673,2.7214,4.259876 +L 2.7214,4.259876,2.7214,2.135551 +L 2.7214,2.135551,1.9929,2.135551 +L 1.9929,2.135551,1.2854,2.135551 +L 1.2854,2.135551,0.585,2.135551 +L 6.1052,3.43229,6.4064,4.094648 +L 6.4064,4.094648,6.5181,4.994296 +L 6.5181,4.994296,6.5325,6.902519 +L 6.5325,6.902519,6.1052,6.902519 +L 6.1052,6.902519,5.6775,6.902519 +L 5.6775,6.902519,5.2537,6.902519 +L 1.0123,4.233148,1.436,4.233148 +L 1.436,4.233148,1.8672,4.233148 +L 1.8672,4.233148,2.291,4.233148 +L 1.0123,6.368658,1.436,6.368658 +L 1.436,6.368658,1.8672,6.368658 +L 1.8672,6.368658,2.291,6.368658 +L 4.3991,7.398313,4.6968,7.81366 +L 4.6968,7.81366,4.8089,8.228788 +L 4.8089,8.228788,4.8229,8.999962 + +[梅] 47 +L 5.2802,-0.000003,5.8967,0.029592 +L 5.8967,0.029592,6.2227,0.237397 +L 6.2227,0.237397,6.531,0.800898 +L 6.531,0.800898,6.3874,1.067785 +L 6.3874,1.067785,6.2574,1.334759 +L 6.2574,1.334759,6.1348,1.601712 +L 6.1348,1.601712,5.2802,1.601712 +L 5.2802,1.601712,4.426,1.601712 +L 4.426,1.601712,3.5749,1.601712 +L 3.5749,1.601712,3.1402,4.00991 +L 3.1402,4.00991,2.1455,5.206326 +L 6.9614,1.601712,6.6465,2.40246 +L 6.6465,2.40246,6.4325,3.43229 +L 6.4325,3.43229,6.1348,4.233148 +L 6.1348,4.233148,5.1261,4.062184 +L 5.1261,4.062184,4.8463,3.425154 +L 4.8463,3.425154,4.8564,2.135551 +L 4.0022,4.233148,3.6831,5.043746 +L 3.6831,5.043746,3.4625,6.091832 +L 3.4625,6.091832,3.1476,6.902519 +L 3.1476,6.902519,2.9966,6.738692 +L 2.9966,6.738692,2.8495,6.557965 +L 2.8495,6.557965,2.7164,6.368658 +L 2.7164,6.368658,2.2965,6.711855 +L 2.2965,6.711855,1.8762,7.055095 +L 4.426,4.233148,4.7272,4.668108 +L 4.7272,4.668108,4.8389,5.221956 +L 4.8389,5.221956,4.8564,6.368658 +L 4.8564,6.368658,4.5552,6.368658 +L 4.5552,6.368658,4.275,6.368658 +L 4.275,6.368658,4.0022,6.368658 +L 6.9614,4.233148,6.6567,4.668108 +L 6.6567,4.668108,6.5485,5.221956 +L 6.5485,5.221956,6.531,6.368658 +L 6.531,6.368658,6.1072,6.368658 +L 6.1072,6.368658,5.6865,6.368658 +L 5.6865,6.368658,5.2802,6.368658 +L 3.1476,7.398313,3.445,7.81366 +L 3.445,7.81366,3.5574,8.228788 +L 3.5574,8.228788,3.5749,8.999962 +L 4.0022,7.932174,5.1261,7.932174 +L 5.1261,7.932174,6.2574,7.932174 +L 6.2574,7.932174,7.3887,7.932174 +L 1.4699,-0.000003,1.4699,9.000028 +L 1.4699,5.150046,0.1915,3.165228 +L 2.2965,4.500056,1.4699,6.048336 +L 2.2965,6.902672,0.1915,6.902672 + +[博] 63 +L 1.0446,-0.000003,1.0446,1.944886 +L 1.0446,1.944886,1.0446,3.889886 +L 1.0446,3.889886,1.0446,5.834862 +L 1.0446,5.834862,0.7644,6.024126 +L 0.7644,6.024126,0.4909,6.204852 +L 0.4909,6.204852,0.2177,6.368658 +L 5.2857,-0.000003,5.5558,-0.000003 +L 5.5558,-0.000003,5.8395,-0.000003 +L 5.8395,-0.000003,6.1368,-0.000003 +L 6.1368,-0.000003,5.6675,2.461826 +L 5.6675,2.461826,4.3576,2.838997 +L 4.3576,2.838997,2.323,2.631345 +L 6.5641,2.631345,6.4135,2.898276 +L 6.4135,2.898276,6.2703,3.165162 +L 6.2703,3.165162,6.1368,3.43229 +L 6.1368,3.43229,5.1355,3.535284 +L 5.1355,3.535284,4.1544,3.621466 +L 4.1544,3.621466,3.1738,3.699221 +L 3.1738,3.699221,3.1738,4.766965 +L 3.1738,4.766965,3.1738,5.834862 +L 3.1738,5.834862,3.1738,6.902519 +L 3.1738,6.902519,3.6676,7.005753 +L 3.6676,7.005753,4.1544,7.091848 +L 4.1544,7.091848,4.6451,7.169515 +L 4.6451,7.169515,4.5782,7.435044 +L 4.5782,7.435044,4.5187,7.692256 +L 4.5187,7.692256,4.4592,7.932174 +L 4.4592,7.932174,3.7345,7.932174 +L 3.7345,7.932174,3.0235,7.932174 +L 3.0235,7.932174,2.323,7.932174 +L 6.5641,3.699221,6.5641,4.233148 +L 6.5641,4.233148,6.5641,4.766965 +L 6.5641,4.766965,6.5641,5.300892 +L 6.5641,5.300892,6.1368,5.300892 +L 6.1368,5.300892,5.7095,5.300892 +L 5.7095,5.300892,5.2857,5.300892 +L 5.2857,5.300892,5.132,4.956294 +L 5.132,4.956294,4.9884,4.603204 +L 4.9884,4.603204,4.8549,4.233148 +L 3.6046,5.300892,3.8816,5.300892 +L 3.8816,5.300892,4.1618,5.300892 +L 4.1618,5.300892,4.4592,5.300892 +L 4.4592,5.300892,4.7324,5.834862 +L 4.7324,5.834862,5.0094,6.368658 +L 5.0094,6.368658,5.2857,6.902519 +L 5.2857,6.902519,5.7095,6.902519 +L 5.7095,6.902519,6.1368,6.902519 +L 6.1368,6.902519,6.5641,6.902519 +L 6.5641,6.902519,6.5641,6.557965 +L 6.5641,6.557965,6.5641,6.204852 +L 6.5641,6.204852,6.5641,5.834862 +L 1.4649,6.368658,1.1704,6.822094 +L 1.1704,6.822094,1.0583,7.504262 +L 1.0583,7.504262,1.0446,8.999962 +L 5.2857,7.932174,5.132,8.30234 +L 5.132,8.30234,4.9884,8.655431 +L 4.9884,8.655431,4.8549,8.999962 +L 5.7095,7.932174,6.1368,8.035321 +L 6.1368,8.035321,6.5641,8.121438 +L 6.5641,8.121438,6.9918,8.199126 +L 6.9918,8.199126,6.8373,8.466188 +L 6.8373,8.466188,6.6941,8.733031 +L 6.6941,8.733031,6.5641,8.999962 + +[標] 78 +L 1.5016,-0.000003,1.4175,1.600245 +L 1.4175,1.600245,1.3478,3.192109 +L 1.3478,3.192109,1.2883,4.766965 +L 1.2883,4.766965,0.924,4.069255 +L 0.924,4.069255,0.5629,3.354536 +L 0.5629,3.354536,0.2165,2.631345 +L 4.0339,-0.000003,4.3071,-0.000003 +L 4.3071,-0.000003,4.5876,-0.000003 +L 4.5876,-0.000003,4.885,-0.000003 +L 4.885,-0.000003,4.885,0.877142 +L 4.885,0.877142,4.885,1.7542 +L 4.885,1.7542,4.885,2.631345 +L 4.885,2.631345,4.1848,2.631345 +L 4.1848,2.631345,3.4805,2.631345 +L 3.4805,2.631345,2.7803,2.631345 +L 2.7803,0.533946,3.0567,0.903914 +L 3.0567,0.903914,3.3337,1.257005 +L 3.3337,1.257005,3.6031,1.601712 +L 7.0215,0.533946,6.7276,0.903914 +L 6.7276,0.903914,6.4436,1.257005 +L 6.4436,1.257005,6.1672,1.601712 +L 5.3126,2.631345,6.0127,2.631345 +L 6.0127,2.631345,6.7167,2.631345 +L 6.7167,2.631345,7.4176,2.631345 +L 3.6031,4.233148,4.5876,4.233148 +L 4.5876,4.233148,5.589,4.233148 +L 5.589,4.233148,6.5945,4.233148 +L 2.3527,4.766965,1.8767,5.202035 +L 1.8767,5.202035,1.5475,5.755641 +L 1.5475,5.755641,1.0708,6.902519 +L 1.0708,6.902519,0.7731,6.902519 +L 0.7731,6.902519,0.4932,6.902519 +L 0.4932,6.902519,0.2165,6.902519 +L 3.2111,5.300892,3.2111,5.834862 +L 3.2111,5.834862,3.2111,6.368658 +L 3.2111,6.368658,3.2111,6.902519 +L 3.2111,6.902519,3.8027,6.920863 +L 3.8027,6.920863,4.1284,7.049556 +L 4.1284,7.049556,4.4577,7.398313 +L 4.4577,7.398313,4.4577,7.768457 +L 4.4577,7.768457,4.4577,8.121438 +L 4.4577,8.121438,4.4577,8.466188 +L 4.4577,8.466188,3.8868,8.466188 +L 3.8868,8.466188,3.3337,8.466188 +L 3.3337,8.466188,2.7803,8.466188 +L 3.6031,5.300892,3.8801,5.300892 +L 3.8801,5.300892,4.1638,5.300892 +L 4.1638,5.300892,4.4577,5.300892 +L 4.4577,5.300892,4.4577,5.671036 +L 4.4577,5.671036,4.4577,6.024126 +L 4.4577,6.024126,4.4577,6.368658 +L 4.4577,6.368658,4.885,6.711855 +L 4.885,6.711855,5.3126,7.055095 +L 5.3126,7.055095,5.7434,7.398313 +L 5.7434,7.398313,5.7434,7.768457 +L 5.7434,7.768457,5.7434,8.121438 +L 5.7434,8.121438,5.7434,8.466188 +L 5.7434,8.466188,5.4454,8.466188 +L 5.4454,8.466188,5.1617,8.466188 +L 5.1617,8.466188,4.885,8.466188 +L 4.885,5.300892,5.1617,5.300892 +L 5.1617,5.300892,5.4454,5.300892 +L 5.4454,5.300892,5.7434,5.300892 +L 5.7434,5.300892,5.8205,6.427893 +L 5.8205,6.427893,6.1847,6.843153 +L 6.1847,6.843153,7.0215,6.902519 +L 7.0215,6.902519,7.0215,6.368658 +L 7.0215,6.368658,7.0215,5.834862 +L 7.0215,5.834862,7.0215,5.300892 +L 7.0215,5.300892,6.7276,5.300892 +L 6.7276,5.300892,6.4436,5.300892 +L 6.4436,5.300892,6.1672,5.300892 +L 1.9219,6.902519,1.628,7.310861 +L 1.628,7.310861,1.5156,7.854595 +L 1.5156,7.854595,1.5016,8.999962 +L 6.1672,8.466188,6.5735,8.466188 +L 6.5735,8.466188,6.9899,8.466188 +L 6.9899,8.466188,7.4176,8.466188 + +[票] 60 +L 2.7823,-0.000003,3.0552,-0.000003 +L 3.0552,-0.000003,3.3354,-0.000003 +L 3.3354,-0.000003,3.6369,-0.000003 +L 3.6369,-0.000003,3.6369,0.877142 +L 3.6369,0.877142,3.6369,1.7542 +L 3.6369,1.7542,3.6369,2.631345 +L 3.6369,2.631345,2.5056,2.631345 +L 2.5056,2.631345,1.381,2.631345 +L 1.381,2.631345,0.2501,2.631345 +L 0.4634,0.533946,0.9502,0.903914 +L 0.9502,0.903914,1.4405,1.257005 +L 1.4405,1.257005,1.9274,1.601712 +L 6.5962,0.533946,6.1657,0.903914 +L 6.1657,0.903914,5.7486,1.257005 +L 5.7486,1.257005,5.3423,1.601712 +L 4.0607,2.631345,5.0376,2.631345 +L 5.0376,2.631345,6.0256,2.631345 +L 6.0256,2.631345,7.02,2.631345 +L 1.5285,4.233148,2.9326,4.233148 +L 2.9326,4.233148,4.3371,4.233148 +L 4.3371,4.233148,5.7419,4.233148 +L 1.1047,5.300892,1.1047,5.834862 +L 1.1047,5.834862,1.1047,6.368658 +L 1.1047,6.368658,1.1047,6.902519 +L 1.1047,6.902519,1.9978,6.920863 +L 1.9978,6.920863,2.4352,7.049556 +L 2.4352,7.049556,2.7823,7.398313 +L 2.7823,7.398313,2.7823,7.768457 +L 2.7823,7.768457,2.7823,8.121438 +L 2.7823,8.121438,2.7823,8.466188 +L 2.7823,8.466188,1.9274,8.466188 +L 1.9274,8.466188,1.0836,8.466188 +L 1.0836,8.466188,0.2501,8.466188 +L 1.5285,5.300892,1.9347,5.300892 +L 1.9347,5.300892,2.355,5.300892 +L 2.355,5.300892,2.7823,5.300892 +L 2.7823,5.300892,3.01,6.709074 +L 3.01,6.709074,3.6124,6.90543 +L 3.6124,6.90543,4.4912,7.398313 +L 4.4912,7.398313,4.4912,7.768457 +L 4.4912,7.768457,4.4912,8.121438 +L 4.4912,8.121438,4.4912,8.466188 +L 4.4912,8.466188,4.0607,8.466188 +L 4.0607,8.466188,3.6369,8.466188 +L 3.6369,8.466188,3.2061,8.466188 +L 3.2061,5.300892,3.6369,5.300892 +L 3.6369,5.300892,4.0607,5.300892 +L 4.0607,5.300892,4.4912,5.300892 +L 4.4912,5.300892,4.6246,6.563504 +L 4.6246,6.563504,5.1391,6.9111 +L 5.1391,6.9111,6.1657,6.902519 +L 6.1657,6.902519,6.1657,6.368658 +L 6.1657,6.368658,6.1657,5.834862 +L 6.1657,5.834862,6.1657,5.300892 +L 6.1657,5.300892,5.7419,5.300892 +L 5.7419,5.300892,5.3213,5.300892 +L 5.3213,5.300892,4.915,5.300892 +L 4.915,8.466188,5.6158,8.466188 +L 5.6158,8.466188,6.316,8.466188 +L 6.316,8.466188,7.02,8.466188 + +[付] 21 +L 1.1032,-0.000003,1.0191,1.944886 +L 1.0191,1.944886,0.9522,3.889886 +L 0.9522,3.889886,0.8892,5.834862 +L 0.8892,5.834862,0.6759,5.671036 +L 0.6759,5.671036,0.4727,5.490134 +L 0.4727,5.490134,0.2797,5.300892 +L 4.917,-0.000003,5.3443,-0.000003 +L 5.3443,-0.000003,5.7681,-0.000003 +L 5.7681,-0.000003,6.1989,-0.000003 +L 6.1989,-0.000003,6.2759,4.823508 +L 6.2759,4.823508,5.6035,6.629962 +L 5.6035,6.629962,2.812,6.902519 +L 4.0939,3.699221,3.793,4.069255 +L 3.793,4.069255,3.5128,4.422477 +L 3.5128,4.422477,3.2393,4.766965 +L 1.1032,6.63561,1.3795,7.435044 +L 1.3795,7.435044,1.6597,8.226008 +L 1.6597,8.226008,1.9543,8.999962 +L 6.6265,6.902519,6.3253,7.310861 +L 6.3253,7.310861,6.2129,7.854595 +L 6.2129,7.854595,6.1989,8.999962 + +[副] 42 +L 0.7024,-0.000003,0.7024,1.24711 +L 0.7024,1.24711,0.7024,2.477456 +L 0.7024,2.477456,0.7024,3.699221 +L 0.7024,3.699221,1.8372,3.699221 +L 1.8372,3.699221,2.965,3.699221 +L 2.965,3.699221,4.0924,3.699221 +L 4.0924,3.699221,4.0924,2.477456 +L 4.0924,2.477456,4.0924,1.24711 +L 4.0924,1.24711,4.0924,-0.000003 +L 4.0924,-0.000003,2.965,-0.000003 +L 2.965,-0.000003,1.8372,-0.000003 +L 1.8372,-0.000003,0.7024,-0.000003 +L 6.2292,-0.000003,6.5021,-0.000003 +L 6.5021,-0.000003,6.7788,-0.000003 +L 6.7788,-0.000003,7.0485,-0.000003 +L 7.0485,-0.000003,7.0485,3.011295 +L 7.0485,3.011295,7.0485,6.014078 +L 7.0485,6.014078,7.0485,8.999962 +L 2.4112,0.533946,2.2676,1.728785 +L 2.2676,1.728785,1.8302,2.110224 +L 1.8302,2.110224,1.1328,2.135551 +L 2.6007,2.40246,2.5377,2.668099 +L 2.5377,2.668099,2.4781,2.925201 +L 2.4781,2.925201,2.4112,3.165162 +L 5.3746,2.135551,5.3746,4.079259 +L 5.3746,4.079259,5.3746,6.014078 +L 5.3746,6.014078,5.3746,7.932174 +L 1.1328,5.300892,1.1328,5.834862 +L 1.1328,5.834862,1.1328,6.368658 +L 1.1328,6.368658,1.1328,6.902519 +L 1.1328,6.902519,1.9629,6.902519 +L 1.9629,6.902519,2.814,6.902519 +L 2.814,6.902519,3.6651,6.902519 +L 3.6651,6.902519,3.6651,6.368658 +L 3.6651,6.368658,3.6651,5.834862 +L 3.6651,5.834862,3.6651,5.300892 +L 3.6651,5.300892,2.814,5.300892 +L 2.814,5.300892,1.9629,5.300892 +L 1.9629,5.300892,1.1328,5.300892 +L 0.2817,8.466188,1.6827,8.466188 +L 1.6827,8.466188,3.0942,8.466188 +L 3.0942,8.466188,4.5236,8.466188 + +[粉] 42 +L 1.5621,-0.000003,1.5485,2.622873 +L 1.5485,2.622873,1.443,3.72041 +L 1.443,3.72041,1.1593,4.233148 +L 1.1593,4.233148,0.8686,3.545156 +L 0.8686,3.545156,0.5849,2.848913 +L 0.5849,2.848913,0.3083,2.135551 +L 2.8405,-0.000003,3.8702,1.642712 +L 3.8702,1.642712,4.3991,2.92102 +L 4.3991,2.92102,4.5501,4.766965 +L 4.5501,4.766965,3.8216,4.885501 +L 3.8216,4.885501,3.2892,5.004322 +L 3.2892,5.004322,2.8405,4.766965 +L 4.9805,-0.000003,5.2506,-0.000003 +L 5.2506,-0.000003,5.5269,-0.000003 +L 5.5269,-0.000003,5.8004,-0.000003 +L 5.8004,-0.000003,6.4551,1.642712 +L 6.4551,1.642712,6.6515,3.048005 +L 6.6515,3.048005,6.655,4.766965 +L 6.655,4.766965,6.0841,4.766965 +L 6.0841,4.766965,5.5269,4.766965 +L 5.5269,4.766965,4.9805,4.766965 +L 2.8405,3.165162,2.2731,4.069255 +L 2.2731,4.069255,1.7131,4.956294 +L 1.7131,4.956294,1.1593,5.834862 +L 1.1593,5.834862,0.8686,5.834862 +L 0.8686,5.834862,0.5849,5.834862 +L 0.5849,5.834862,0.3083,5.834862 +L 7.5058,4.766965,6.5952,6.525437 +L 6.5952,6.525437,6.1472,7.622864 +L 6.1472,7.622864,5.8004,8.999962 +L 1.9859,5.834862,1.6847,6.307912 +L 1.6847,6.307912,1.5796,7.128646 +L 1.5796,7.128646,1.5621,8.999962 +L 3.6955,6.101706,3.9967,6.723172 +L 3.9967,6.723172,4.1084,7.336145 +L 4.1084,7.336145,4.1228,8.466188 +L 0.7394,7.169515,0.5849,7.615881 +L 0.5849,7.615881,0.4413,8.045237 +L 0.4413,8.045237,0.3083,8.466188 +L 2.4171,7.169515,2.5463,7.615881 +L 2.5463,7.615881,2.6934,8.045237 +L 2.6934,8.045237,2.8405,8.466188 + +[兵] 30 +L 0.5239,-0.000003,1.1652,0.533946 +L 1.1652,0.533946,1.8058,1.067785 +L 1.8058,1.067785,2.4436,1.601712 +L 7.1124,-0.000003,6.5341,0.533946 +L 6.5341,0.533946,5.9636,1.067785 +L 5.9636,1.067785,5.4063,1.601712 +L 0.3141,2.631345,0.8671,2.631345 +L 0.8671,2.631345,1.4415,2.631345 +L 1.4415,2.631345,2.0198,2.631345 +L 2.0198,2.631345,2.0198,4.412495 +L 2.0198,4.412495,2.0198,6.176504 +L 2.0198,6.176504,2.0198,7.932174 +L 2.0198,7.932174,4.2439,8.070718 +L 4.2439,8.070718,5.4382,8.327622 +L 5.4382,8.327622,6.2574,8.466188 +L 2.4436,2.631345,3.4239,2.631345 +L 3.4239,2.631345,4.405,2.631345 +L 4.405,2.631345,5.4063,2.631345 +L 5.4063,2.631345,5.4063,3.699221 +L 5.4063,3.699221,5.4063,4.766965 +L 5.4063,4.766965,5.4063,5.834862 +L 5.4063,5.834862,4.405,5.834862 +L 4.405,5.834862,3.4239,5.834862 +L 3.4239,5.834862,2.4436,5.834862 +L 5.8336,2.631345,6.394,2.631345 +L 6.394,2.631345,6.9614,2.631345 +L 6.9614,2.631345,7.5432,2.631345 +L 5.8336,5.834862,6.2574,5.834862 +L 6.2574,5.834862,6.6847,5.834862 +L 6.6847,5.834862,7.1124,5.834862 + +[辺] 36 +L 0.5543,-0.000003,0.8972,0.370075 +L 0.8972,0.370075,1.2579,0.723166 +L 1.2579,0.723166,1.6222,1.067785 +L 1.6222,1.067785,1.6222,2.314942 +L 1.6222,2.314942,1.6222,3.545156 +L 1.6222,3.545156,1.6222,4.766965 +L 1.6222,4.766965,1.1914,4.766965 +L 1.1914,4.766965,0.7711,4.766965 +L 0.7711,4.766965,0.3403,4.766965 +L 2.8725,-0.000003,2.5958,0.189348 +L 2.5958,0.189348,2.323,0.370075 +L 2.323,0.370075,2.0495,0.533946 +L 3.2963,-0.000003,4.7047,-0.000003 +L 4.7047,-0.000003,6.1158,-0.000003 +L 6.1158,-0.000003,7.5382,-0.000003 +L 2.8725,1.601712,4.0357,3.932156 +L 4.0357,3.932156,4.4977,6.008452 +L 4.4977,6.008452,4.5821,8.466188 +L 4.5821,8.466188,4.0038,8.466188 +L 4.0038,8.466188,3.4333,8.466188 +L 3.4333,8.466188,2.8725,8.466188 +L 5.4367,1.601712,7.0229,2.906747 +L 7.0229,2.906747,7.2545,5.737363 +L 7.2545,5.737363,7.1179,8.466188 +L 7.1179,8.466188,6.4135,8.466188 +L 6.4135,8.466188,5.713,8.466188 +L 5.713,8.466188,5.0094,8.466188 +L 1.6222,7.398313,1.3248,7.768457 +L 1.3248,7.768457,1.0411,8.121438 +L 1.0411,8.121438,0.7711,8.466188 +L 5.4258,-0.015173,7.5553,-0.015173 +L 1.6047,1.052484,0.5543,-0.000003 +L 0.3581,4.751729,1.6047,4.751729 +L 1.6047,1.052484,1.6047,4.751729 +L 0.7819,8.48913,1.6047,7.421254 +A 5.4258,7.347834,7.362973,238.75988,270 + +[包] 30 +L 7.144,-0.000003,7.144,0.533946 +L 7.144,0.533946,7.144,1.067785 +L 7.144,1.067785,7.144,1.601712 +L 2.0518,-0.000003,1.7506,0.492945 +L 1.7506,0.492945,1.6382,1.451872 +L 1.6382,1.451872,1.6207,3.699221 +L 1.6207,3.699221,2.4753,3.699221 +L 2.4753,3.699221,3.3302,3.699221 +L 3.3302,3.699221,4.1848,3.699221 +L 4.1848,3.699221,4.1848,4.422477 +L 4.1848,4.422477,4.1848,5.136999 +L 4.1848,5.136999,4.1848,5.834862 +L 4.1848,5.834862,3.3302,5.834862 +L 3.3302,5.834862,2.4753,5.834862 +L 2.4753,5.834862,1.6207,5.834862 +L 2.4753,-0.000003,4.0304,-0.000003 +L 4.0304,-0.000003,5.5854,-0.000003 +L 5.5854,-0.000003,7.144,-0.000003 +L 5.0079,2.135551,5.2842,2.135551 +L 5.2842,2.135551,5.5679,2.135551 +L 5.5679,2.135551,5.866,2.135551 +L 5.866,2.135551,6.612,4.087577 +L 6.612,4.087577,6.7623,5.878446 +L 6.7623,5.878446,6.7167,7.932174 +L 6.7167,7.932174,5.0079,7.932174 +L 5.0079,7.932174,3.3053,7.932174 +L 3.3053,7.932174,1.6207,7.932174 +L 1.6207,7.932174,1.1934,7.24438 +L 1.1934,7.24438,0.7804,6.548071 +L 0.7804,6.548071,0.3703,5.834862 + +[望] 51 +L 1.9312,1.601712,1.2237,1.601712 +L 2.6384,1.601712,1.9312,1.601712 +L 3.3599,1.601712,2.6384,1.601712 +L 3.6436,1.186452,3.3599,1.601712 +L 3.7416,0.771193,3.6436,1.186452 +L 3.7595,-0.000003,3.7416,0.771193 +L 2.6279,-0.000003,3.7595,-0.000003 +L 1.5036,-0.000003,2.6279,-0.000003 +L 0.3726,-0.000003,1.5036,-0.000003 +L 1.7736,3.165162,0.7999,3.165162 +L 2.7575,3.165162,1.7736,3.165162 +L 3.7595,3.165162,2.7575,3.165162 +L 3.7735,2.420848,3.7595,3.165162 +L 3.8853,2.015504,3.7735,2.420848 +L 4.1833,1.601712,3.8853,2.015504 +L 4.6138,1.601712,5.1671,1.601712 +L 5.1671,1.601712,5.7419,1.601712 +L 5.7419,1.601712,6.3233,1.601712 +L 5.1671,-0.000003,6.1692,-0.000003 +L 4.1833,-0.000003,5.1671,-0.000003 +L 6.1692,-0.000003,7.1744,-0.000003 +L 5.8922,3.165162,6.7433,3.165162 +L 5.0376,3.165162,5.8922,3.165162 +L 4.1833,3.165162,5.0376,3.165162 +L 3.3599,4.766965,2.0044,5.579074 +L 2.0044,5.579074,1.1183,5.798086 +L 1.1183,5.798086,0.7999,7.932174 +L 0.7999,7.932174,1.0728,7.932174 +L 1.0728,7.932174,1.353,7.932174 +L 1.353,7.932174,1.6545,7.932174 +L 1.6545,7.932174,1.6545,8.30234 +L 1.6545,8.30234,1.6545,8.655431 +L 1.6545,8.655431,1.6545,8.999962 +L 2.0783,7.932174,2.5088,7.932174 +L 2.5088,7.932174,2.9326,7.932174 +L 2.9326,7.932174,3.3599,7.932174 +L 4.6138,8.199126,5.3146,8.121438 +L 5.3146,8.121438,6.0256,8.035321 +L 6.0256,8.035321,6.7433,7.932174 +L 6.7433,7.055095,6.7433,7.398313 +L 6.7433,6.711855,6.7433,7.055095 +L 6.7433,6.368658,6.7433,6.711855 +L 6.2463,5.444908,6.3233,6.368658 +L 5.8855,4.927859,6.2463,5.444908 +L 5.0376,4.766965,5.8855,4.927859 +L 6.3233,6.368658,4.8029,6.15109 +L 6.7433,7.398313,6.0256,7.24438 +L 6.0256,7.24438,5.3146,7.081954 +L 5.3146,7.081954,4.6138,6.902519 +L 4.8029,6.15109,4.1378,5.874264 +L 4.1378,5.874264,3.7595,5.300892 + +[牧] 39 +L 0.735,6.052342,0.4023,5.300892 +L 1.0681,6.329255,0.735,6.052342 +L 1.6807,6.368658,1.0681,6.329255 +L 1.9788,5.55784,1.6807,6.368658 +L 2.1921,4.509907,1.9788,5.55784 +L 2.5073,3.699221,2.1921,4.509907 +L 1.9609,3.20625,1.6807,3.699221 +L 2.066,2.247236,1.9609,3.20625 +L 2.0768,-0.000003,2.066,2.247236 +L 3.5759,-0.000003,4.2165,0.800898 +L 4.2165,0.800898,4.8574,1.601712 +L 4.8574,1.601712,5.4952,2.40246 +L 5.4952,2.40246,4.8893,3.769729 +L 4.8893,3.769729,4.6091,4.798027 +L 4.6091,4.798027,4.427,6.368658 +L 4.427,6.368658,4.0627,6.024126 +L 4.0627,6.024126,3.7086,5.671036 +L 3.7086,5.671036,3.3619,5.300892 +L 2.5073,6.368658,2.2061,6.822094 +L 2.2061,6.822094,2.0943,7.504262 +L 2.0943,7.504262,2.0768,8.999962 +L 0.8296,7.588956,0.8296,7.932174 +L 0.8296,7.245738,0.8296,7.588956 +L 0.8296,6.902519,0.8296,7.245738 +L 5.3443,6.902519,4.6441,6.902519 +L 6.0451,6.902519,5.3443,6.902519 +L 6.7491,6.902519,6.0451,6.902519 +L 6.6857,5.747147,6.7491,6.902519 +L 6.444,4.346036,6.6857,5.747147 +L 5.898,3.165162,6.444,4.346036 +L 6.318,1.067785,5.898,1.601712 +L 6.7491,0.533946,6.318,1.067785 +L 7.1726,-0.000003,6.7491,0.533946 +L 4.6441,8.312234,4.6441,8.999962 +L 4.6441,7.615881,4.6441,8.312234 +L 4.6441,6.902519,4.6441,7.615881 +L 1.6807,3.699221,1.3518,3.323495 +L 1.3518,3.323495,1.0226,3.185083 +L 1.0226,3.185083,0.4023,3.165162 + +[末] 21 +L 1.4796,2.134194,0.4288,1.067785 +L 2.5412,3.192109,1.4796,2.134194 +L 3.6056,4.233148,2.5412,3.192109 +L 3.6686,2.821988,3.6056,4.233148 +L 3.7355,1.411025,3.6686,2.821988 +L 3.8196,-0.000003,3.7355,1.411025 +L 6.7756,1.067785,4.9543,3.509891 +L 4.9543,3.509891,3.5919,4.434976 +L 3.5919,4.434976,1.2554,4.766965 +L 3.8196,5.300892,3.3464,7.285249 +L 3.3464,7.285249,2.124,7.574946 +L 2.124,7.574946,0.4288,7.398313 +L 5.7736,4.766965,6.355,4.766965 +L 5.1992,4.766965,5.7736,4.766965 +L 4.6461,4.766965,5.1992,4.766965 +L 4.6461,7.398313,5.4972,7.398313 +L 5.4972,7.398313,6.355,7.398313 +L 6.355,7.398313,7.2061,7.398313 +L 4.2469,7.398313,3.9453,7.81366 +L 3.9453,7.81366,3.8336,8.228788 +L 3.8336,8.228788,3.8196,8.999962 + +[満] 54 +L 6.9279,-0.000003,7.2046,-0.000003 +L 6.655,-0.000003,6.9279,-0.000003 +L 6.3815,-0.000003,6.655,-0.000003 +L 7.2046,-0.000003,7.2046,1.600245 +L 7.2046,1.600245,7.2046,3.192109 +L 7.2046,3.192109,7.2046,4.766965 +L 7.2046,4.766965,5.4957,4.607319 +L 5.4957,4.607319,5.0611,3.744337 +L 5.0611,3.744337,5.1031,1.601712 +L 5.1031,1.601712,5.5234,1.601712 +L 5.5234,1.601712,5.9542,1.601712 +L 5.9542,1.601712,6.3815,1.601712 +L 6.3815,1.601712,6.3815,2.314942 +L 6.3815,2.314942,6.3815,3.011295 +L 6.3815,3.011295,6.3815,3.699221 +L 3.818,3.011295,3.818,3.699221 +L 3.818,2.314942,3.818,3.011295 +L 3.818,1.601712,3.818,2.314942 +L 2.9635,-0.000003,2.9635,1.600245 +L 2.9635,1.600245,2.9635,3.192109 +L 2.9635,3.192109,2.9635,4.766965 +L 2.9635,4.766965,4.1539,4.783952 +L 4.1539,4.783952,4.8649,5.156897 +L 4.8649,5.156897,5.1031,6.368658 +L 5.1031,6.368658,4.3746,6.368658 +L 4.3746,6.368658,3.6671,6.368658 +L 3.6671,6.368658,2.9635,6.368658 +L 2.5673,7.932174,2.9736,7.932174 +L 2.9736,7.932174,3.3943,7.932174 +L 3.3943,7.932174,3.818,7.932174 +L 3.818,7.932174,3.9473,8.30234 +L 3.9473,8.30234,4.0944,8.655431 +L 4.0944,8.655431,4.2453,8.999962 +L 6.0841,8.655431,5.9542,8.999962 +L 6.2312,8.30234,6.0841,8.655431 +L 6.3815,7.932174,6.2312,8.30234 +L 6.8126,7.932174,7.082,7.932174 +L 7.082,7.932174,7.359,7.932174 +L 7.359,7.932174,7.6284,7.932174 +L 6.9279,6.368658,7.2046,6.368658 +L 6.655,6.368658,6.9279,6.368658 +L 6.3815,6.368658,6.655,6.368658 +L 5.7409,6.368658,5.674,7.812193 +L 5.674,7.812193,4.9669,7.849034 +L 4.9669,7.849034,4.2453,6.902519 +L 1.7131,7.932174,1.4185,8.30234 +L 1.4185,8.30234,1.1348,8.655431 +L 1.1348,8.655431,0.8585,8.999962 +L 0.711,6.557965,0.4347,6.902519 +L 0.9912,6.204852,0.711,6.557965 +L 1.2893,5.834862,0.9912,6.204852 +L 1.2893,2.555058,1.7131,3.699221 +L 0.8585,1.411025,1.2893,2.555058 +L 0.4347,0.267037,0.8585,1.411025 + +[未] 24 +L 1.5084,2.314942,0.4612,1.067785 +L 2.5693,3.545156,1.5084,2.314942 +L 3.6379,4.766965,2.5693,3.545156 +L 3.701,3.192109,3.6379,4.766965 +L 3.7672,1.600245,3.701,3.192109 +L 3.8512,-0.000003,3.7672,1.600245 +L 6.8073,1.067785,5.9527,2.401147 +L 5.9527,2.401147,5.1125,3.726058 +L 5.1125,3.726058,4.275,5.033961 +L 4.275,5.033961,2.9966,5.136999 +L 2.9966,5.136999,1.7217,5.223225 +L 1.7217,5.223225,0.4612,5.300892 +L 2.6919,8.032497,1.3154,7.932174 +L 3.5539,7.666622,2.6919,8.032497 +L 3.8512,5.834862,3.5539,7.666622 +L 4.7023,5.300892,5.5363,5.300892 +L 5.5363,5.300892,6.3835,5.300892 +L 6.3835,5.300892,7.2349,5.300892 +L 5.8126,7.932174,6.3835,7.932174 +L 5.2526,7.932174,5.8126,7.932174 +L 4.7023,7.932174,5.2526,7.932174 +L 4.275,7.932174,4.1248,8.30234 +L 4.1248,8.30234,3.9812,8.655431 +L 3.9812,8.655431,3.8512,8.999962 + +[脈] 36 +L 0.8901,8.466188,1.4509,8.466188 +L 1.4509,8.466188,2.0214,8.466188 +L 2.0214,8.466188,2.5997,8.466188 +L 2.5997,8.466188,2.5997,5.644001 +L 2.5997,5.644001,2.5997,2.821988 +L 2.5997,2.821988,2.5997,-0.000003 +L 2.5997,-0.000003,2.3051,-0.000003 +L 2.3051,-0.000003,2.0214,-0.000003 +L 2.0214,-0.000003,1.7447,-0.000003 +L 0.4628,0.267037,0.7644,1.104495 +L 0.7644,1.104495,0.8761,3.230177 +L 0.8761,3.230177,0.8901,8.466188 +L 1.3139,6.368658,1.591,6.368658 +L 1.591,6.368658,1.8747,6.368658 +L 1.8747,6.368658,2.172,6.368658 +L 1.8747,3.699221,2.172,3.699221 +L 1.591,3.699221,1.8747,3.699221 +L 1.3139,3.699221,1.591,3.699221 +L 3.8637,3.071975,3.8816,7.932174 +L 3.8816,7.932174,5.5064,8.070718 +L 5.5064,8.070718,6.4766,8.327622 +L 6.4766,8.327622,7.2646,8.466188 +L 7.0299,5.99291,7.6919,6.368658 +L 6.3683,5.854608,7.0299,5.99291 +L 5.1355,5.834862,6.3683,5.854608 +L 5.1355,3.889886,5.1355,5.834862 +L 5.1355,1.944886,5.1355,3.889886 +L 5.1355,-0.000003,5.1355,1.944886 +L 3.4543,0.267037,3.7517,1.084794 +L 3.7517,1.084794,3.8637,3.071975 +L 6.5084,3.494458,6.4135,5.300892 +L 7.3942,4.422477,7.6919,4.766965 +L 7.1144,4.069255,7.3942,4.422477 +L 6.8408,3.699221,7.1144,4.069255 +L 6.8863,1.831845,6.5084,3.494458 +L 7.6919,-0.000003,6.8863,1.831845 + +[勇] 45 +L 0.4929,-0.000003,1.5996,0.444918 +L 1.5996,0.444918,2.3702,1.067785 +L 2.3702,1.067785,3.4528,2.40246 +L 3.4528,2.40246,2.6017,2.478923 +L 2.6017,2.478923,1.7541,2.555058 +L 1.7541,2.555058,0.9205,2.631345 +L 2.5068,4.351771,1.3478,4.233148 +L 3.4738,4.114327,2.5068,4.351771 +L 3.8832,2.631345,3.4738,4.114327 +L 4.8569,2.631345,3.8832,2.631345 +L 5.845,2.631345,4.8569,2.631345 +L 6.8393,2.631345,5.845,2.631345 +L 6.7521,1.338962,6.8393,2.631345 +L 6.2898,0.377167,6.7521,1.338962 +L 5.1616,-0.000003,6.2898,0.377167 +L 5.845,4.233148,6.4089,4.233148 +L 5.2842,4.233148,5.845,4.233148 +L 4.7343,4.233148,5.2842,4.233148 +L 4.3039,4.233148,3.4353,5.136999 +L 3.4353,5.136999,2.752,5.337514 +L 2.752,5.337514,1.7783,5.300892 +L 1.3478,4.956294,1.3478,5.671036 +L 1.3478,5.671036,1.3478,6.368658 +L 1.3478,6.368658,2.1814,6.471783 +L 2.1814,6.471783,3.0255,6.557965 +L 3.0255,6.557965,3.8832,6.63561 +L 3.8832,6.63561,2.815,7.8051 +L 2.815,7.8051,2.0655,8.23726 +L 2.0655,8.23726,0.9205,8.466188 +L 3.8832,8.388434,3.0255,8.466188 +L 4.7343,8.30234,3.8832,8.388434 +L 5.5924,8.199126,4.7343,8.30234 +L 5.0114,7.425084,5.5924,8.199126 +L 4.4366,6.634231,5.0114,7.425084 +L 3.8832,5.834862,4.4366,6.634231 +L 4.258,5.459049,3.8832,5.834862 +L 4.9165,5.32068,4.258,5.459049 +L 6.4089,5.300892,4.9165,5.32068 +L 6.4089,4.956294,6.4089,5.300892 +L 6.4089,4.603204,6.4089,4.956294 +L 6.4089,4.233148,6.4089,4.603204 +L 6.4089,6.101706,5.845,6.204852 +L 5.845,6.204852,5.2842,6.291034 +L 5.2842,6.291034,4.7343,6.368658 +L 1.3478,4.233148,1.3478,4.956294 + +[養] 63 +L 4.9503,8.655431,5.1636,8.999962 +L 4.7433,8.30234,4.9503,8.655431 +L 4.5511,7.932174,4.7433,8.30234 +L 5.1636,7.932174,5.7174,7.932174 +L 5.7174,7.932174,6.2918,7.932174 +L 6.2918,7.932174,6.8732,7.932174 +L 5.5909,6.902519,6.0147,6.902519 +L 5.171,6.902519,5.5909,6.902519 +L 4.7609,6.902519,5.171,6.902519 +L 4.3409,6.902519,4.1868,7.168005 +L 4.1868,7.168005,4.0432,7.425084 +L 4.0432,7.425084,3.9098,7.665243 +L 3.9098,7.665243,2.9116,7.768457 +L 2.9116,7.768457,1.9312,7.854595 +L 1.9312,7.854595,0.9502,7.932174 +L 2.9925,6.882774,1.7771,6.902519 +L 3.5455,6.744405,2.9925,6.882774 +L 3.9098,6.368658,3.5455,6.744405 +L 5.5069,5.083368,4.523,5.594704 +L 6.8732,3.699221,5.5069,5.083368 +L 5.5874,3.699221,4.6173,4.094648 +L 4.6173,4.094648,3.1746,4.371538 +L 3.1746,4.371538,2.2009,4.766965 +L 2.2009,4.766965,2.3337,5.033961 +L 2.3337,5.033961,2.4776,5.300892 +L 2.4776,5.300892,2.6314,5.567823 +L 2.6314,5.567823,1.9312,5.671036 +L 1.9312,5.671036,1.2272,5.757151 +L 1.2272,5.757151,0.5264,5.834862 +L 1.2794,4.05507,0.5264,3.699221 +L 1.7106,4.05507,1.2794,4.05507 +L 2.2009,3.699221,1.7106,4.05507 +L 2.2009,2.477456,2.2009,3.699221 +L 2.2009,1.24711,2.2009,2.477456 +L 2.2009,-0.000003,2.2009,1.24711 +L 1.7771,-0.000003,2.2009,-0.000003 +L 1.3565,-0.000003,1.7771,-0.000003 +L 0.9502,-0.000003,1.3565,-0.000003 +L 2.6314,-0.000003,2.9606,0.375657 +L 2.9606,0.375657,3.2937,0.514113 +L 3.2937,0.514113,3.9098,0.533946 +L 4.8067,1.273992,3.9206,1.827751 +L 6.0147,-0.000003,4.8067,1.273992 +L 6.442,-0.000003,6.7187,-0.000003 +L 6.7187,-0.000003,7.0024,-0.000003 +L 7.0024,-0.000003,7.297,-0.000003 +L 6.0147,1.067785,6.2918,1.437885 +L 6.2918,1.437885,6.5755,1.790997 +L 6.5755,1.790997,6.8732,2.135551 +L 5.3146,2.135551,5.5874,2.135551 +L 5.0411,2.135551,5.3146,2.135551 +L 4.7609,2.135551,5.0411,2.135551 +L 5.5874,2.135551,5.5874,2.478923 +L 5.5874,2.478923,5.5874,2.821988 +L 5.5874,2.821988,5.5874,3.165162 +L 5.5874,3.165162,4.5927,3.165162 +L 4.5927,3.165162,3.605,3.165162 +L 3.605,3.165162,2.6314,3.165162 +L 3.9206,1.827751,2.6314,2.135551 +L 4.523,5.594704,3.0552,5.834862 +L 5.5874,5.834862,6.1482,5.834862 +L 6.1482,5.834862,6.7187,5.834862 +L 6.7187,5.834862,7.297,5.834862 + +[浴] 36 +L 1.3795,5.834862,1.0856,6.204852 +L 1.0856,6.204852,0.8019,6.557965 +L 0.8019,6.557965,0.5249,6.902519 +L 2.6617,6.902519,3.0645,7.435044 +L 3.0645,7.435044,3.4845,7.959099 +L 3.4845,7.959099,3.9156,8.466188 +L 5.7505,6.176504,4.98,7.398313 +L 6.5351,4.946356,5.7505,6.176504 +L 7.3302,3.699221,6.5351,4.946356 +L 6.4724,2.477456,6.4724,3.699221 +L 6.4724,1.24711,6.4724,2.477456 +L 6.4724,-0.000003,6.4724,1.24711 +L 5.6213,-0.000003,6.4724,-0.000003 +L 4.7667,-0.000003,5.6213,-0.000003 +L 3.9156,-0.000003,4.7667,-0.000003 +L 3.5128,-0.000003,3.4953,2.622873 +L 3.4953,2.622873,3.3902,3.72041 +L 3.3902,3.72041,3.089,4.233148 +L 3.089,4.233148,2.9381,4.069255 +L 2.9381,4.069255,2.791,3.888397 +L 2.791,3.888397,2.6617,3.699221 +L 1.3795,2.555058,1.8033,3.699221 +L 0.9522,1.411025,1.3795,2.555058 +L 0.5249,0.267037,0.9522,1.411025 +L 7.3302,6.902519,6.8997,7.435044 +L 6.8997,7.435044,6.4724,7.959099 +L 6.4724,7.959099,6.0451,8.466188 +L 4.98,7.398313,4.49,6.521167 +L 4.49,6.521167,4.0032,5.644001 +L 4.0032,5.644001,3.5128,4.766965 +L 4.7667,3.699221,3.9156,3.699221 +L 5.6213,3.699221,4.7667,3.699221 +L 6.4724,3.699221,5.6213,3.699221 +L 1.8033,7.932174,1.5094,8.30234 +L 1.5094,8.30234,1.2257,8.655431 +L 1.2257,8.655431,0.9522,8.999962 + +[陸] 57 +L 0.5588,-0.000003,0.5588,2.821988 +L 0.5588,2.821988,0.5588,5.644001 +L 0.5588,5.644001,0.5588,8.466188 +L 0.5588,8.466188,1.1051,8.466188 +L 1.1051,8.466188,1.6617,8.466188 +L 1.6617,8.466188,2.2326,8.466188 +L 2.2326,8.466188,1.8792,6.080537 +L 1.8792,6.080537,2.068,4.432174 +L 2.068,4.432174,2.0193,2.40246 +L 2.0193,2.40246,1.8053,2.324749 +L 1.8053,2.324749,1.5986,2.238611 +L 1.5986,2.238611,1.4099,2.135551 +L 3.0837,3.699221,3.9908,4.865931 +L 3.9421,6.368658,3.5148,6.368658 +L 3.5148,6.368658,3.0837,6.368658 +L 2.6637,-0.000003,3.5148,-0.000003 +L 3.5148,-0.000003,4.3726,-0.000003 +L 4.3726,-0.000003,5.2237,-0.000003 +L 5.2237,-0.000003,5.0836,1.621544 +L 5.0836,1.621544,4.5691,2.115806 +L 4.5691,2.115806,3.5148,2.135551 +L 5.651,-0.000003,6.3518,-0.000003 +L 6.3518,-0.000003,7.0523,-0.000003 +L 7.0523,-0.000003,7.7559,-0.000003 +L 5.651,2.135551,5.3498,2.523995 +L 5.3498,2.523995,5.238,2.929382 +L 5.238,2.929382,5.2237,3.699221 +L 6.0471,2.135551,6.3238,2.135551 +L 6.3238,2.135551,6.6036,2.135551 +L 6.6036,2.135551,6.8982,2.135551 +L 3.9908,4.865931,4.3239,5.55784 +L 4.3239,5.55784,4.3726,6.368658 +L 4.3726,6.368658,3.9421,6.368658 +L 6.0471,4.233148,6.0471,4.956294 +L 6.0471,4.956294,6.0471,5.671036 +L 6.0471,5.671036,6.0471,6.368658 +L 6.0471,6.368658,5.6198,6.368658 +L 5.6198,6.368658,5.2027,6.368658 +L 5.2027,6.368658,4.7932,6.368658 +L 6.4744,4.233148,6.8982,4.233148 +L 6.8982,4.233148,7.3287,4.233148 +L 7.3287,4.233148,7.7559,4.233148 +L 7.7559,4.233148,7.7559,4.603204 +L 7.7559,4.603204,7.7559,4.956294 +L 7.7559,4.956294,7.7559,5.300892 +L 6.4744,6.368658,6.7472,6.368658 +L 6.7472,6.368658,7.0348,6.368658 +L 7.0348,6.368658,7.3287,6.368658 +L 5.2237,7.169515,4.8738,7.706266 +L 4.8738,7.706266,4.4321,7.904045 +L 4.4321,7.904045,3.5148,7.932174 +L 5.651,7.932174,5.5007,8.30234 +L 5.5007,8.30234,5.3536,8.655431 +L 5.3536,8.655431,5.2237,8.999962 +L 6.0471,7.932174,6.3238,7.932174 +L 6.3238,7.932174,6.6036,7.932174 +L 6.6036,7.932174,6.8982,7.932174 + +[量] 48 +L 0.5849,-0.000003,1.7166,-0.000003 +L 1.7166,-0.000003,2.8405,-0.000003 +L 2.8405,-0.000003,3.9718,-0.000003 +L 3.9718,-0.000003,3.6286,1.449114 +L 3.6286,1.449114,2.8125,1.70348 +L 2.8125,1.70348,1.8357,1.601712 +L 4.3991,-0.000003,5.3766,-0.000003 +L 5.3766,-0.000003,6.3605,-0.000003 +L 6.3605,-0.000003,7.3625,-0.000003 +L 4.3991,1.601712,3.541,2.461826 +L 3.541,2.461826,2.816,2.661094 +L 2.816,2.661094,1.8357,2.631345 +L 1.8357,2.631345,1.8357,3.354536 +L 1.8357,3.354536,1.8357,4.069255 +L 1.8357,4.069255,1.8357,4.766965 +L 1.8357,4.766965,3.2433,4.766965 +L 3.2433,4.766965,4.6516,4.766965 +L 4.6516,4.766965,6.0768,4.766965 +L 6.0768,4.766965,6.0768,4.069255 +L 6.0768,4.069255,6.0768,3.354536 +L 6.0768,3.354536,6.0768,2.631345 +L 6.0768,2.631345,4.5182,2.908104 +L 4.5182,2.908104,3.4748,3.422264 +L 3.4748,3.422264,2.263,3.699221 +L 4.7949,1.601712,5.2222,1.601712 +L 5.2222,1.601712,5.653,1.601712 +L 5.653,1.601712,6.0768,1.601712 +L 4.7949,3.699221,5.0719,3.699221 +L 5.0719,3.699221,5.3556,3.699221 +L 5.3556,3.699221,5.653,3.699221 +L 0.5849,5.834862,2.8405,5.834862 +L 2.8405,5.834862,5.0996,5.834862 +L 5.0996,5.834862,7.3625,5.834862 +L 1.8357,6.902519,1.8357,7.615881 +L 1.8357,7.615881,1.8357,8.312234 +L 1.8357,8.312234,1.8357,8.999962 +L 1.8357,8.999962,3.2433,8.999962 +L 3.2433,8.999962,4.6516,8.999962 +L 4.6516,8.999962,6.0768,8.999962 +L 6.0768,8.999962,6.0768,8.312234 +L 6.0768,8.312234,6.0768,7.615881 +L 6.0768,7.615881,6.0768,6.902519 +L 6.0768,6.902519,4.6516,6.902519 +L 4.6516,6.902519,3.2433,6.902519 +L 3.2433,6.902519,1.8357,6.902519 +L 2.263,7.932174,3.3942,7.932174 +L 3.3942,7.932174,4.522,7.932174 +L 4.522,7.932174,5.653,7.932174 + +[輪] 60 +L 1.8688,-0.000003,1.7182,1.195012 +L 1.7182,1.195012,1.2843,1.576319 +L 1.2843,1.576319,0.5838,1.601712 +L 3.9703,-0.000003,3.9703,1.600245 +L 3.9703,1.600245,3.9703,3.192109 +L 3.9703,3.192109,3.9703,4.766965 +L 3.9703,4.766965,5.1051,4.766965 +L 5.1051,4.766965,6.2262,4.766965 +L 6.2262,4.766965,7.361,4.766965 +L 7.361,4.766965,7.361,3.192109 +L 7.361,3.192109,7.361,1.600245 +L 7.361,1.600245,7.361,-0.000003 +L 5.2525,-0.000003,5.2525,0.723166 +L 5.2525,0.723166,5.2525,1.437885 +L 5.2525,1.437885,5.2525,2.135551 +L 5.2525,2.135551,4.9548,2.314942 +L 4.9548,2.314942,4.6743,2.477456 +L 4.6743,2.477456,4.4014,2.631345 +L 6.1103,-0.000003,5.8896,1.792442 +L 5.8896,1.792442,5.4767,3.025568 +L 5.4767,3.025568,5.2525,4.233148 +L 2.2926,1.601712,1.9988,2.134194 +L 1.9988,2.134194,1.7182,2.658161 +L 1.7182,2.658161,1.4415,3.165162 +L 1.4415,3.165162,1.1403,3.165162 +L 1.1403,3.165162,0.8605,3.165162 +L 0.8605,3.165162,0.5838,3.165162 +L 0.5838,3.165162,0.5838,4.233148 +L 0.5838,4.233148,0.5838,5.300892 +L 0.5838,5.300892,0.5838,6.368658 +L 0.5838,6.368658,1.2037,6.398319 +L 1.2037,6.398319,1.5329,6.606058 +L 1.5329,6.606058,1.8688,7.169515 +L 1.8688,7.169515,1.5329,7.706266 +L 1.5329,7.706266,1.2037,7.904045 +L 1.2037,7.904045,0.5838,7.932174 +L 6.5344,2.631345,6.2364,3.046539 +L 6.2364,3.046539,6.1282,3.461951 +L 6.1282,3.461951,6.1103,4.233148 +L 2.2926,3.165162,1.8688,3.699221 +L 1.8688,3.699221,1.4415,4.233148 +L 1.4415,4.233148,1.0142,4.766965 +L 2.9059,3.165162,2.9654,3.699221 +L 2.9654,3.699221,3.032,4.233148 +L 3.032,4.233148,3.1157,4.766965 +L 3.1157,4.766965,2.5241,4.796626 +L 2.5241,4.796626,2.1984,5.004322 +L 2.1984,5.004322,1.8688,5.567823 +L 1.8688,5.567823,2.6184,6.347468 +L 2.6184,6.347468,3.9318,7.355933 +L 3.9318,7.355933,5.6798,8.999962 +L 5.6798,8.999962,6.3835,8.312234 +L 6.3835,8.312234,7.084,7.615881 +L 7.084,7.615881,7.7848,6.902519 +L 4.8249,6.368658,5.3853,6.368658 +L 5.3853,6.368658,5.9562,6.368658 +L 5.9562,6.368658,6.5344,6.368658 +L 2.2926,7.932174,2.1424,8.30234 +L 2.1424,8.30234,1.9988,8.655431 +L 1.9988,8.655431,1.8688,8.999962 + +[令] 24 +L 4.0042,-0.000003,4.0042,1.24711 +L 4.0042,1.24711,4.0042,2.477456 +L 4.0042,2.477456,4.0042,3.699221 +L 4.0042,3.699221,3.1531,3.699221 +L 3.1531,3.699221,2.302,3.699221 +L 2.302,3.699221,1.4719,3.699221 +L 5.2822,1.067785,5.6885,1.067785 +L 5.6885,1.067785,6.1091,1.067785 +L 6.1091,1.067785,6.5361,1.067785 +L 6.5361,1.067785,6.5361,1.944886 +L 6.5361,1.944886,6.5361,2.821988 +L 6.5361,2.821988,6.5361,3.699221 +L 6.5361,3.699221,5.8321,3.699221 +L 5.8321,3.699221,5.132,3.699221 +L 5.132,3.699221,4.4311,3.699221 +L 0.8306,5.834862,1.8782,6.901162 +L 1.8782,6.901162,2.9356,7.959099 +L 2.9356,7.959099,4.0042,8.999962 +L 4.0042,8.999962,5.132,7.959099 +L 5.132,7.959099,6.2633,6.901162 +L 6.2633,6.901162,7.3907,5.834862 +L 2.7223,5.834862,3.5734,5.834862 +L 3.5734,5.834862,4.4311,5.834862 +L 4.4311,5.834862,5.2822,5.834862 + +[例] 45 +L 1.4704,-0.000003,1.3863,1.781147 +L 1.3863,1.781147,1.3194,3.545156 +L 1.3194,3.545156,1.2564,5.300892 +L 1.2564,5.300892,1.0431,5.136999 +L 1.0431,5.136999,0.8291,4.956294 +L 0.8291,4.956294,0.6158,4.766965 +L 2.7519,-0.000003,3.3018,0.980245 +L 3.3018,0.980245,3.8626,1.943398 +L 3.8626,1.943398,4.4331,2.898276 +L 4.4331,2.898276,3.9396,3.535284 +L 3.9396,3.535284,3.4528,4.155371 +L 3.4528,4.155371,2.9659,4.766965 +L 2.9659,4.766965,2.7519,4.422477 +L 2.7519,4.422477,2.5386,4.069255 +L 2.5386,4.069255,2.3215,3.699221 +L 6.5661,-0.000003,6.8428,-0.000003 +L 6.8428,-0.000003,7.123,-0.000003 +L 7.123,-0.000003,7.4211,-0.000003 +L 7.4211,-0.000003,7.4211,3.011295 +L 7.4211,3.011295,7.4211,6.014078 +L 7.4211,6.014078,7.4211,8.999962 +L 6.1427,2.135551,6.1427,3.889886 +L 6.1427,3.889886,6.1427,5.644001 +L 6.1427,5.644001,6.1427,7.398313 +L 4.8569,3.699221,4.8569,4.603204 +L 4.8569,4.603204,4.8569,5.490134 +L 4.8569,5.490134,4.8569,6.368658 +L 4.8569,6.368658,4.2864,6.368658 +L 4.2864,6.368658,3.7291,6.368658 +L 3.7291,6.368658,3.1792,6.368658 +L 3.1792,6.368658,3.1792,6.024126 +L 3.1792,6.024126,3.1792,5.671036 +L 3.1792,5.671036,3.1792,5.300892 +L 1.4704,5.834862,1.5821,7.11306 +L 1.5821,7.11306,1.7888,8.052242 +L 1.7888,8.052242,1.9008,8.999962 +L 3.61,6.902519,3.61,7.435044 +L 3.61,7.435044,3.61,7.959099 +L 3.61,7.959099,3.61,8.466188 +L 3.61,8.466188,3.3127,8.466188 +L 3.3127,8.466188,3.029,8.466188 +L 3.029,8.466188,2.7519,8.466188 +L 4.0303,8.466188,4.4401,8.466188 +L 4.4401,8.466188,4.8604,8.466188 +L 4.8604,8.466188,5.2842,8.466188 + +[労] 39 +L 0.863,-0.000003,2.5088,1.728785 +L 2.5088,1.728785,3.2198,2.618627 +L 3.2198,2.618627,3.605,3.43229 +L 3.605,3.43229,3.4548,3.699221 +L 3.4548,3.699221,3.3112,3.96613 +L 3.3112,3.96613,3.1812,4.233148 +L 3.1812,4.233148,2.4811,4.233148 +L 2.4811,4.233148,1.7771,4.233148 +L 1.7771,4.233148,1.0763,4.233148 +L 4.4596,-0.000003,4.7363,-0.000003 +L 4.7363,-0.000003,5.02,-0.000003 +L 5.02,-0.000003,5.3146,-0.000003 +L 5.3146,-0.000003,5.945,1.444868 +L 5.945,1.444868,6.1513,2.661094 +L 6.1513,2.661094,6.1692,4.233148 +L 6.1692,4.233148,4.6803,4.233148 +L 4.6803,4.233148,3.8576,4.588931 +L 3.8576,4.588931,3.605,5.834862 +L 0.649,5.300892,0.649,5.834862 +L 0.649,5.834862,0.649,6.368658 +L 0.649,6.368658,0.649,6.902519 +L 0.649,6.902519,2.3301,7.005753 +L 2.3301,7.005753,4.0323,7.091848 +L 4.0323,7.091848,5.7419,7.169515 +L 5.7419,7.169515,6.0147,7.779708 +L 6.0147,7.779708,6.2949,8.389901 +L 6.2949,8.389901,6.5646,8.999962 +L 7.4157,5.300892,7.4157,5.834862 +L 7.4157,5.834862,7.4157,6.368658 +L 7.4157,6.368658,7.4157,6.902519 +L 7.4157,6.902519,6.9958,6.902519 +L 6.9958,6.902519,6.5755,6.902519 +L 6.5755,6.902519,6.1692,6.902519 +L 1.9274,8.199126,1.7771,8.466188 +L 1.7771,8.466188,1.63,8.733031 +L 1.63,8.733031,1.5001,8.999962 +L 4.0323,8.199126,3.8852,8.466188 +L 3.8852,8.466188,3.735,8.733031 +L 3.735,8.733031,3.605,8.999962 + +[録] 63 +L 0.6793,-0.000003,1.0821,-0.000003 +L 1.0821,-0.000003,1.5021,-0.000003 +L 1.5021,-0.000003,1.9332,-0.000003 +L 1.9332,-0.000003,2.0029,2.269804 +L 2.0029,2.269804,1.8033,4.048065 +L 1.8033,4.048065,0.6793,4.766965 +L 4.917,-0.000003,5.194,-0.000003 +L 5.194,-0.000003,5.4633,-0.000003 +L 5.4633,-0.000003,5.7439,-0.000003 +L 5.7439,-0.000003,5.7439,0.723166 +L 5.7439,0.723166,5.7439,1.437885 +L 5.7439,1.437885,5.7439,2.135551 +L 5.7439,2.135551,5.173,1.971811 +L 5.173,1.971811,4.6126,1.790997 +L 4.6126,1.790997,4.0627,1.601712 +L 7.88,1.067785,6.5144,2.523995 +L 6.5144,2.523995,5.968,2.929382 +L 5.968,2.929382,5.7439,2.631345 +L 1.1066,1.86862,0.9557,2.314942 +L 0.9557,2.314942,0.8086,2.744387 +L 0.8086,2.744387,0.6793,3.165162 +L 2.7843,2.135551,2.7843,2.478923 +L 2.7843,2.478923,2.7843,2.821988 +L 2.7843,2.821988,2.7843,3.165162 +L 4.49,3.43229,4.3429,3.699221 +L 4.3429,3.699221,4.1993,3.96613 +L 4.1993,3.96613,4.0627,4.233148 +L 7.0219,3.165162,7.299,3.535284 +L 7.299,3.535284,7.5827,3.888397 +L 7.5827,3.888397,7.88,4.233148 +L 5.7439,3.699221,5.7439,4.233148 +L 5.7439,4.233148,5.7439,4.766965 +L 5.7439,4.766965,5.7439,5.300892 +L 5.7439,5.300892,5.043,5.300892 +L 5.043,5.300892,4.3429,5.300892 +L 4.3429,5.300892,3.6389,5.300892 +L 2.3532,4.766965,2.0593,5.18229 +L 2.0593,5.18229,1.9469,5.59755 +L 1.9469,5.59755,1.9332,6.368658 +L 1.9332,6.368658,1.3308,6.388469 +L 1.3308,6.388469,1.0086,6.526815 +L 1.0086,6.526815,0.6793,6.902519 +L 0.6793,6.902519,1.0821,7.615881 +L 1.0821,7.615881,1.5021,8.312234 +L 1.5021,8.312234,1.9332,8.999962 +L 1.9332,8.999962,2.2029,8.655431 +L 2.2029,8.655431,2.4866,8.30234 +L 2.4866,8.30234,2.7843,7.932174 +L 6.1712,5.300892,6.444,5.300892 +L 6.444,5.300892,6.7242,5.300892 +L 6.7242,5.300892,7.0219,5.300892 +L 7.0219,5.300892,7.0219,5.834862 +L 7.0219,5.834862,7.0219,6.368658 +L 7.0219,6.368658,7.0219,6.902519 +L 7.0219,6.902519,6.0241,6.902519 +L 6.0241,6.902519,5.043,6.902519 +L 5.043,6.902519,4.0627,6.902519 +L 7.0219,7.398313,7.0219,7.768457 +L 7.0219,7.768457,7.0219,8.121438 +L 7.0219,8.121438,7.0219,8.466188 +L 7.0219,8.466188,6.0241,8.466188 +L 6.0241,8.466188,5.043,8.466188 +L 5.043,8.466188,4.0627,8.466188 + +[械] 39 +L 1.5324,-0.000003,1.4484,1.600245 +L 1.4484,1.600245,1.3815,3.192109 +L 1.3815,3.192109,1.3184,4.766965 +L 1.3184,4.766965,1.1016,4.422477 +L 1.1016,4.422477,0.8911,4.069255 +L 0.8911,4.069255,0.6813,3.699221 +L 4.7057,-0.000003,5.3463,0.637136 +L 5.3463,0.637136,5.9876,1.257005 +L 5.9876,1.257005,6.6285,1.86862 +L 6.6285,1.86862,5.921,4.766965 +L 5.921,4.766965,5.7809,6.394072 +L 5.7809,6.394072,3.2413,6.902519 +L 7.4796,-0.000003,6.6285,1.067697 +L 7.8785,-0.000003,7.8785,1.601712 +L 2.814,1.067785,3.4973,2.685064 +L 3.4973,2.685064,3.6759,4.115815 +L 3.6759,4.115815,3.6686,5.834862 +L 4.9225,1.601712,4.9225,2.478923 +L 4.9225,2.478923,4.9225,3.356046 +L 4.9225,3.356046,4.9225,4.233148 +L 4.9225,4.233148,4.6212,4.233148 +L 4.6212,4.233148,4.3414,4.233148 +L 4.3414,4.233148,4.0647,4.233148 +L 7.0558,2.898276,7.1819,3.535284 +L 7.1819,3.535284,7.3321,4.155371 +L 7.3321,4.155371,7.4796,4.766965 +L 2.3902,4.766965,1.8473,5.439305 +L 1.8473,5.439305,1.357,6.230202 +L 1.357,6.230202,0.6813,6.902519 +L 4.9225,4.766965,4.9225,5.136999 +L 4.9225,5.136999,4.9225,5.490134 +L 4.9225,5.490134,4.9225,5.834862 +L 1.9597,6.902519,1.6582,7.310861 +L 1.6582,7.310861,1.5499,7.854595 +L 1.5499,7.854595,1.5324,8.999962 +L 6.6285,6.902519,6.3273,7.310861 +L 6.3273,7.310861,6.2149,7.854595 +L 6.2149,7.854595,6.2009,8.999962 +L 7.0558,6.902519,7.8785,6.902519 + +[旗] 39 +L 0.7075,0.267037,1.3625,2.725911 +L 1.3625,2.725911,1.5586,4.939307 +L 1.5586,4.939307,1.5656,7.398313 +L 1.5656,7.398313,0.7075,7.398313 +L 1.9894,-0.000003,3.2398,0.98447 +L 3.2398,0.98447,3.3767,3.146928 +L 3.3767,3.146928,3.2398,5.300892 +L 3.2398,5.300892,1.9894,5.300892 +L 4.3084,-0.000003,4.6548,0.370075 +L 4.6548,0.370075,5.0124,0.723166 +L 5.0124,0.723166,5.3801,1.067785 +L 7.9054,-0.000003,7.6108,0.370075 +L 7.6108,0.370075,7.0543,1.067697 +L 4.0944,2.135551,4.9493,2.135551 +L 4.9493,2.135551,4.9493,5.300892 +L 4.9493,5.300892,4.6548,5.490134 +L 4.6548,5.490134,4.3711,5.671036 +L 4.3711,5.671036,4.0944,5.834862 +L 5.3801,2.135551,7.0543,2.135551 +L 7.0543,2.135551,7.0543,3.699221 +L 7.0543,3.699221,5.3801,3.699221 +L 7.0543,4.500144,6.483,4.603204 +L 6.483,4.603204,5.9265,4.689233 +L 5.9265,4.689233,5.3801,4.766965 +L 7.0543,5.300892,6.7072,5.676573 +L 6.7072,5.676573,6.2729,5.815007 +L 6.2729,5.815007,5.3801,5.834862 +L 5.3801,5.834862,5.0821,6.558009 +L 5.0821,6.557965,4.9493,6.902519 +L 7.4851,5.834862,7.187,6.558009 +L 7.187,6.557965,7.0543,6.902519 +L 3.6706,6.902519,3.3203,7.251407 +L 3.3203,7.251407,2.8864,7.379947 +L 2.8864,7.379947,1.9894,7.398313 +L 1.9894,7.398313,1.9894,8.999962 +L 4.0944,7.398313,4.3956,7.81366 +L 4.3956,7.81366,4.5045,8.228788 +L 4.5045,8.228788,4.5217,8.999962 +L 4.9493,7.932174,7.9054,7.932174 + +[紀] 33 +L 1.9879,-0.000003,1.9879,4.766965 +L 1.9879,4.766965,0.7379,4.766965 +L 4.9513,-0.000003,4.6711,0.532588 +L 4.6711,0.532588,4.5661,1.768407 +L 4.5661,1.768407,4.5552,4.766965 +L 4.5552,4.766965,7.084,4.766965 +L 7.084,4.766965,7.084,8.466188 +L 7.084,8.466188,4.5552,8.466188 +L 5.3786,-0.000003,7.5113,-0.000003 +L 7.5113,-0.000003,7.5113,1.601712 +L 0.7379,1.334759,0.8605,1.944886 +L 0.8605,1.944886,0.9932,2.555058 +L 0.9932,2.555058,1.1333,3.165162 +L 3.2701,1.86862,3.1227,2.314942 +L 3.1227,2.314942,2.9791,2.744387 +L 2.9791,2.744387,2.8428,3.165162 +L 3.2701,4.500144,3.1227,4.766965 +L 3.1227,4.766965,2.9791,5.033961 +L 2.9791,5.033961,2.8428,5.300892 +L 2.8428,5.300892,2.6919,5.136999 +L 2.6919,5.136999,2.5483,4.956294 +L 2.5483,4.956294,2.4191,4.766965 +L 1.5641,5.300892,1.694,5.567823 +L 1.694,5.567823,1.8408,5.834862 +L 1.8408,5.834862,1.9879,6.101706 +L 1.9879,6.101706,1.694,6.471783 +L 1.694,6.471783,1.1333,7.169559 +L 1.1333,7.169515,1.4138,7.779708 +L 1.4138,7.779708,1.694,8.389901 +L 1.694,8.389901,1.9879,8.999962 +L 2.4191,7.169515,2.5483,7.435044 +L 2.5483,7.435044,2.6919,7.692256 +L 2.6919,7.692256,2.8428,7.932174 + +[種] 51 +L 2.0218,-0.000003,1.9377,1.411025 +L 1.9377,1.411025,1.8712,2.821988 +L 1.8712,2.821988,1.8043,4.233148 +L 1.8043,4.233148,1.44,3.545156 +L 1.44,3.545156,1.0866,2.848913 +L 1.0866,2.848913,0.7399,2.135551 +L 3.7026,-0.000003,5.8356,-0.000003 +L 5.8356,-0.000003,5.6048,1.330534 +L 5.6048,1.330534,4.9884,1.64407 +L 4.9884,1.64407,4.1267,1.601712 +L 6.2594,-0.000003,7.9371,-0.000003 +L 6.2594,1.601712,5.962,2.134194 +L 5.962,2.134194,5.6818,2.658161 +L 5.6818,2.658161,5.4083,3.165162 +L 5.4083,3.165162,4.1267,3.165162 +L 4.1267,3.165162,4.1267,5.300892 +L 4.1267,5.300892,5.044,5.330509 +L 5.044,5.330509,5.4889,5.538161 +L 5.4889,5.538161,5.8356,6.101706 +L 5.8356,6.101706,5.6818,6.368658 +L 5.6818,6.368658,5.5417,6.63561 +L 5.5417,6.63561,5.4083,6.902519 +L 5.4083,6.902519,3.2161,6.682236 +L 3.2161,6.682236,2.13,5.749993 +L 2.13,5.749993,3.2721,3.699221 +L 6.6905,1.601712,7.5133,1.601712 +L 6.2594,3.165162,5.6289,3.916679 +L 5.6289,3.916679,5.1876,4.193461 +L 5.1876,4.193461,4.5537,4.233148 +L 6.6905,3.165162,7.5133,3.165162 +L 7.5133,3.165162,7.5133,4.233148 +L 7.5133,4.233148,6.6201,4.252915 +L 6.6201,4.252915,6.1827,4.391239 +L 6.1827,4.391239,5.8356,4.766965 +L 5.8356,4.766965,6.1827,5.122924 +L 6.1827,5.122924,6.6201,5.122924 +L 6.6201,5.122924,7.5133,4.766965 +L 0.7399,6.368658,1.591,6.519811 +L 1.591,6.519811,1.9444,7.018318 +L 1.9444,7.018318,2.0218,7.932174 +L 2.0218,7.932174,0.7399,7.932174 +L 6.2594,6.902519,5.8951,7.449121 +L 5.8951,7.449121,5.3453,7.716117 +L 5.3453,7.716117,4.1267,7.932174 +L 6.6905,6.902519,7.9371,6.902519 +L 2.4487,7.932174,2.7223,8.121438 +L 2.7223,8.121438,2.9986,8.30234 +L 2.9986,8.30234,3.2721,8.466188 +L 6.2594,7.932174,6.5925,8.307921 +L 6.5925,8.307921,6.9147,8.446377 +L 6.9147,8.446377,7.5133,8.466188 + +[妻] 37 +L 1.1968,-0.000003,3.092,0.272597 +L 3.092,0.272597,4.3596,0.960347 +L 4.3596,0.960347,2.8745,1.86862 +L 2.8745,1.86862,3.008,2.211839 +L 3.008,2.211839,3.1516,2.555058 +L 3.1516,2.555058,3.3018,2.898276 +L 3.3018,2.898276,2.4507,3.001423 +L 2.4507,3.001423,1.5996,3.087517 +L 1.5996,3.087517,0.7695,3.165162 +L 6.6925,-0.000003,6.1216,0.456125 +L 6.1216,0.456125,5.5613,0.903914 +L 5.5613,0.903914,5.0114,1.334759 +L 5.0114,1.334759,5.2877,1.867263 +L 5.2877,1.867263,5.5613,2.39134 +L 5.5613,2.39134,5.8341,2.898276 +L 5.8341,2.898276,5.134,3.087517 +L 5.134,3.087517,4.43,3.268441 +L 4.43,3.268441,3.7291,3.43229 +L 3.7291,3.43229,3.782,4.659571 +L 3.782,4.659571,2.6504,4.861619 +L 2.6504,4.861619,1.628,4.766965 +L 6.2652,3.165162,7.5436,3.165162 +L 4.5841,4.766965,3.3582,5.806448 +L 3.3582,5.806448,2.2024,5.939389 +L 2.2024,5.939389,0.7695,5.834862 +L 5.0114,4.766965,5.5613,4.87009 +L 5.5613,4.87009,6.1216,4.956294 +L 6.1216,4.956294,6.6925,5.033961 +L 6.6925,5.033961,5.2702,6.179328 +L 5.2702,6.179328,3.2531,6.748674 +L 3.2531,6.748674,1.628,6.902519 +L 7.1163,5.834862,5.3473,7.208939 +L 5.3473,7.208939,2.8433,7.803721 +L 2.8433,7.803721,0.7695,7.932174 +L 4.5841,7.932174,4.2895,8.655496 +L 4.2895,8.655431,4.1603,8.999962 +L 5.0114,7.932174,7.5436,7.932174 + +[禁] 26 +L 2.9084,-0.000003,4.1868,-0.000003 +L 4.1868,-0.000003,4.1868,3.165162 +L 4.1868,3.165162,0.768,3.165162 +L 0.9855,0.533946,1.4724,1.067785 +L 1.4724,1.067785,1.9694,1.601712 +L 1.9694,1.601712,2.4772,2.135551 +L 7.1495,0.533946,5.8645,2.135551 +L 4.5822,3.165162,7.5733,3.165162 +L 2.0499,4.766965,6.2918,4.766965 +L 0.768,5.834862,2.0499,7.665221 +L 2.0499,7.665243,1.6261,7.768457 +L 1.6261,7.768457,1.1988,7.854595 +L 1.1988,7.854595,0.768,7.932174 +L 2.4772,5.834862,2.4772,8.999962 +L 4.1868,5.834862,4.5931,6.444924 +L 4.5931,6.444924,5.0134,7.055095 +L 5.0134,7.055095,5.4407,7.665243 +L 5.4407,7.665243,5.1426,7.768457 +L 5.1426,7.768457,4.8589,7.854595 +L 4.8589,7.854595,4.5822,7.932174 +L 5.8645,5.834862,5.8645,8.999962 +L 7.5733,5.834862,6.2918,7.665243 +L 6.2918,7.665243,6.7222,7.768457 +L 6.7222,7.768457,7.1495,7.854595 +L 7.1495,7.854595,7.5733,7.932174 +L 2.9084,7.932174,3.7595,7.932174 + +[留] 26 +L 1.6565,-0.000003,1.6565,3.699221 +L 1.6565,3.699221,6.7176,3.699221 +L 6.7176,3.699221,6.7176,-0.000003 +L 6.7176,-0.000003,1.6565,-0.000003 +L 4.1884,0.533946,3.8732,1.983085 +L 3.8732,1.983085,3.089,2.237254 +L 3.089,2.237254,2.0835,2.135551 +L 4.6157,2.135551,4.462,2.478923 +L 4.462,2.478923,4.3219,2.821988 +L 4.3219,2.821988,4.1884,3.165162 +L 5.0395,2.135551,6.3214,2.135551 +L 4.1884,4.766965,3.1275,5.752796 +L 3.1275,5.752796,1.9854,5.586079 +L 1.9854,5.586079,0.8019,5.300892 +L 4.6157,5.300892,5.2185,6.485771 +L 5.2185,6.485771,5.4392,7.306483 +L 5.4392,7.306483,5.4703,8.466188 +L 5.4703,8.466188,4.6157,8.466188 +L 5.8976,5.300892,6.9978,5.799509 +L 6.9978,5.799509,7.2076,7.001397 +L 7.2076,7.001397,7.148,8.466188 +L 7.148,8.466188,5.8976,8.466188 +L 1.6565,5.834862,1.6565,8.466188 +L 1.6565,8.466188,2.5703,8.48589 +L 2.5703,8.48589,3.1167,8.624324 +L 3.1167,8.624324,3.7615,8.999962 + +[質] 29 +L 0.8316,-0.000003,1.3815,0.189348 +L 1.3815,0.189348,1.9387,0.370075 +L 1.9387,0.370075,2.5093,0.533946 +L 6.7511,-0.000003,6.1728,0.370075 +L 6.1728,0.370075,5.8961,0.533946 +L 2.0823,1.601712,2.0823,4.766965 +L 2.0823,4.766965,6.7511,4.766965 +L 6.7511,4.766965,6.7511,1.601712 +L 6.7511,1.601712,2.0823,1.601712 +L 2.5093,2.631345,6.3234,2.631345 +L 2.5093,3.699221,6.3234,3.699221 +L 0.8316,5.834862,1.1296,6.268356 +L 1.1296,6.268356,1.2414,6.812244 +L 1.2414,6.812244,1.2589,7.932174 +L 1.2589,7.932174,2.282,8.070718 +L 2.282,8.070718,3.0346,8.327622 +L 3.0346,8.327622,3.7912,8.466188 +L 2.9401,5.834862,2.9401,6.902519 +L 2.9401,6.902519,1.655,6.902519 +L 4.6461,5.834862,4.947,6.268356 +L 4.947,6.268356,5.059,6.812244 +L 5.059,6.812244,5.0734,7.932174 +L 5.0734,7.932174,6.0958,8.070718 +L 6.0958,8.070718,6.8453,8.327622 +L 6.8453,8.327622,7.6057,8.466188 +L 6.7511,5.834862,6.7511,6.902519 +L 6.7511,6.902519,5.4723,6.902519 +L 3.3639,6.902519,4.2188,6.902519 +L 7.1784,6.902519,8.0295,6.902519 + +[政] 18 +L 4.0037,-0.000003,4.6446,0.723166 +L 4.6446,0.723166,5.2852,1.437885 +L 5.2852,1.437885,5.9297,2.135551 +L 5.9297,2.135551,5.1104,4.322022 +L 5.1104,4.322022,5.2575,6.813556 +L 5.2575,6.813556,5.5027,8.999962 +L 7.6353,-0.000003,6.3538,1.601712 +L 1.2574,1.067785,1.2574,5.834862 +L 1.6885,1.067785,2.5396,1.067785 +L 2.5396,1.067785,2.5396,8.466188 +L 2.5396,8.466188,0.8301,8.466188 +L 2.9669,1.601712,3.7932,1.601712 +L 6.3538,2.631345,6.9454,3.950588 +L 6.9454,3.950588,7.1695,5.532579 +L 7.1695,5.532579,7.208,6.902519 +L 7.208,6.902519,5.5027,6.902519 +L 2.9669,5.300892,4.2208,5.300892 +L 2.9669,8.466188,4.2208,8.466188 + +[経] 58 +L 2.1455,-0.000003,2.1455,1.600245 +L 2.1455,1.600245,2.1455,3.192109 +L 2.1455,3.192109,2.1455,4.766965 +L 2.1455,4.766965,1.7151,4.766965 +L 1.7151,4.766965,0.864,4.766965 +L 3.82,-0.000003,4.524,-0.000003 +L 4.524,-0.000003,5.235,-0.000003 +L 5.235,-0.000003,5.96,-0.000003 +L 5.96,-0.000003,5.8756,1.885629 +L 5.8756,1.885629,5.4136,2.550767 +L 5.4136,2.550767,4.2505,2.631345 +L 6.3523,-0.000003,6.9127,-0.000003 +L 6.9127,-0.000003,7.4836,-0.000003 +L 7.4836,-0.000003,8.0611,-0.000003 +L 0.864,1.334759,0.9967,1.944886 +L 0.9967,1.944886,1.1403,2.555058 +L 1.1403,2.555058,1.2878,3.165162 +L 3.3962,1.86862,3.2418,2.314942 +L 3.2418,2.314942,3.1017,2.744387 +L 3.1017,2.744387,2.9689,3.165162 +L 6.3523,2.631345,6.0753,3.046539 +L 6.0753,3.046539,5.9737,3.461951 +L 5.9737,3.461951,5.96,4.233148 +L 6.7827,2.631345,7.0563,2.631345 +L 7.0563,2.631345,7.3435,2.631345 +L 7.3435,2.631345,7.6338,2.631345 +L 3.3962,4.500144,3.2418,4.766965 +L 3.2418,4.766965,3.1017,5.033961 +L 3.1017,5.033961,2.9689,5.300892 +L 2.9689,5.300892,2.8145,5.136999 +L 2.8145,5.136999,2.6709,4.956294 +L 2.6709,4.956294,2.5416,4.766965 +L 4.4645,4.233148,4.9513,4.766965 +L 4.9513,4.766965,5.4448,5.300892 +L 5.4448,5.300892,5.96,5.834862 +L 5.96,5.834862,5.0529,6.974713 +L 5.0529,6.974713,4.7272,7.656794 +L 4.7272,7.656794,4.6778,8.466188 +L 4.6778,8.466188,5.5114,8.466188 +L 5.5114,8.466188,6.3523,8.466188 +L 6.3523,8.466188,7.21,8.466188 +L 7.21,8.466188,7.1789,7.676626 +L 7.1789,7.676626,6.9547,7.132849 +L 6.9547,7.132849,6.3523,6.368658 +L 7.6338,4.233148,7.21,4.603204 +L 7.21,4.603204,6.7827,4.956294 +L 6.7827,4.956294,6.3523,5.300892 +L 1.7151,5.300892,1.8478,5.567823 +L 1.8478,5.567823,1.9952,5.834862 +L 1.9952,5.834862,2.1455,6.101706 +L 2.1455,6.101706,1.8478,6.471783 +L 1.8478,6.471783,1.2878,7.169515 +L 1.2878,7.169515,1.5641,7.779708 +L 1.5641,7.779708,1.8478,8.389901 +L 1.8478,8.389901,2.1455,8.999962 +L 2.5416,6.902519,2.6709,7.245738 +L 2.6709,7.245738,2.8145,7.588956 +L 2.8145,7.588956,2.9689,7.932174 + +[貸] 48 +L 1.2579,-0.000003,1.8186,0.189348 +L 1.8186,0.189348,2.3892,0.370075 +L 2.3892,0.370075,2.9674,0.533946 +L 6.3575,-0.000003,6.0597,0.189348 +L 6.0597,0.189348,5.776,0.370075 +L 5.776,0.370075,5.4997,0.533946 +L 2.1163,1.601712,2.1163,2.848913 +L 2.1163,2.848913,2.1163,4.079259 +L 2.1163,4.079259,2.1163,5.300892 +L 2.1163,5.300892,3.5173,5.300892 +L 3.5173,5.300892,4.9288,5.300892 +L 4.9288,5.300892,6.3575,5.300892 +L 6.3575,5.300892,6.3575,4.079259 +L 6.3575,4.079259,6.3575,2.848913 +L 6.3575,2.848913,6.3575,1.601712 +L 6.3575,1.601712,4.9288,1.601712 +L 4.9288,1.601712,3.5173,1.601712 +L 3.5173,1.601712,2.1163,1.601712 +L 2.5436,3.165162,3.6711,3.165162 +L 3.6711,3.165162,4.7989,3.165162 +L 4.7989,3.165162,5.927,3.165162 +L 2.5436,4.233148,3.6711,4.233148 +L 3.6711,4.233148,4.7989,4.233148 +L 4.7989,4.233148,5.927,4.233148 +L 7.2085,5.834862,5.6608,6.867276 +L 5.6608,6.867276,4.5152,7.306483 +L 4.5152,7.306483,2.9674,7.398313 +L 7.8498,5.834862,7.9094,6.204852 +L 7.9094,6.204852,7.9826,6.557965 +L 7.9826,6.557965,8.0631,6.902519 +L 2.1163,6.368658,2.0319,6.901162 +L 2.0319,6.901162,1.9619,7.425084 +L 1.9619,7.425084,1.9023,7.932174 +L 1.9023,7.932174,1.5416,7.588956 +L 1.5416,7.588956,1.1983,7.245738 +L 1.1983,7.245738,0.8625,6.902519 +L 5.0724,7.932174,4.9288,8.30234 +L 4.9288,8.30234,4.7989,8.655431 +L 4.7989,8.655431,4.6763,8.999962 +L 5.4997,7.932174,5.927,8.035321 +L 5.927,8.035321,6.3575,8.121438 +L 6.3575,8.121438,6.7812,8.199126 +L 6.7812,8.199126,6.6271,8.466188 +L 6.6271,8.466188,6.4874,8.733031 +L 6.4874,8.733031,6.3575,8.999962 +L 7.2085,7.932174,7.4856,7.932174 +L 7.4856,7.932174,7.7658,7.932174 +L 7.7658,7.932174,8.0631,7.932174 + +[適] 48 +L 3.3967,1.601712,3.3967,3.201938 +L 3.3967,3.201938,3.3967,4.793759 +L 3.3967,4.793759,3.3967,6.368658 +L 3.3967,6.368658,3.8205,6.471783 +L 3.8205,6.471783,4.2478,6.557965 +L 4.2478,6.557965,4.6748,6.63561 +L 4.6748,6.63561,4.3284,7.370162 +L 4.3284,7.370162,3.8976,7.706266 +L 3.8976,7.706266,3.0006,7.932174 +L 6.8151,1.601712,6.4509,1.977372 +L 6.4509,1.977372,5.8936,2.115806 +L 5.8936,2.115806,4.6748,2.135551 +L 4.6748,2.135551,4.6748,2.668099 +L 4.6748,2.668099,4.6748,3.192109 +L 4.6748,3.192109,4.6748,3.699221 +L 4.6748,3.699221,4.9518,3.802259 +L 4.9518,3.802259,5.2355,3.888397 +L 5.2355,3.888397,5.5294,3.96613 +L 5.5294,3.96613,5.2005,4.529652 +L 5.2005,4.529652,4.8678,4.737303 +L 4.8678,4.737303,4.2478,4.766965 +L 7.4245,1.601712,7.4841,3.201938 +L 7.4841,3.201938,7.5538,4.793759 +L 7.5538,4.793759,7.6378,6.368658 +L 7.6378,6.368658,6.9304,6.368658 +L 6.9304,6.368658,6.2302,6.368658 +L 6.2302,6.368658,5.5294,6.368658 +L 5.5294,6.368658,5.5753,5.394123 +L 5.5753,5.394123,5.908,4.90262 +L 5.908,4.90262,6.8151,4.766965 +L 6.384,2.631345,6.2334,3.001423 +L 6.2334,3.001423,6.0901,3.354536 +L 6.0901,3.354536,5.9567,3.699221 +L 6.384,6.902519,6.5171,7.168005 +L 6.5171,7.168005,6.6607,7.425084 +L 6.6607,7.425084,6.8151,7.665243 +L 6.8151,7.665243,6.0901,7.768457 +L 6.0901,7.768457,5.3791,7.854595 +L 5.3791,7.854595,4.6748,7.932174 +L 7.2389,7.932174,7.5153,7.932174 +L 7.5153,7.932174,7.7888,7.932174 +L 7.7888,7.932174,8.0616,7.932174 +L 5.95,-0.015173,8.0792,-0.015173 +L 2.1285,1.052484,1.0778,-0.000003 +L 0.8781,4.751729,2.1285,4.751729 +L 2.1285,1.052484,2.1285,4.751729 +L 1.3019,8.48913,2.1285,7.421254 +A 5.95,7.347834,7.362973,238.75988,270 + +[接] 64 +L 0.8595,-0.000003,1.1393,-0.000003 +L 1.1393,-0.000003,1.4195,-0.000003 +L 1.4195,-0.000003,1.7176,-0.000003 +L 1.7176,-0.000003,1.7176,1.24711 +L 1.7176,1.24711,1.7176,2.477456 +L 1.7176,2.477456,1.7176,3.699221 +L 1.7176,3.699221,1.4195,3.699221 +L 1.4195,3.699221,1.1393,3.699221 +L 1.1393,3.699221,0.8595,3.699221 +L 2.9644,-0.000003,3.9171,0.039509 +L 3.9171,0.039509,4.5787,0.316378 +L 4.5787,0.316378,5.5314,1.067785 +L 5.5314,1.067785,5.1041,1.524067 +L 5.1041,1.524067,4.6736,1.971811 +L 4.6736,1.971811,4.2495,2.40246 +L 4.2495,2.40246,4.1658,3.690706 +L 4.1658,3.690706,2.8555,4.165266 +L 2.8555,4.165266,1.7176,4.233148 +L 1.7176,4.233148,1.7176,4.956294 +L 1.7176,4.956294,1.7176,5.671036 +L 1.7176,5.671036,1.7176,6.368658 +L 1.7176,6.368658,1.4195,6.557965 +L 1.4195,6.557965,1.1393,6.738692 +L 1.1393,6.738692,0.8595,6.902519 +L 7.6363,-0.000003,7.0553,0.456125 +L 7.0553,0.456125,6.4879,0.903914 +L 6.4879,0.903914,5.9275,1.334759 +L 5.9275,1.334759,6.5299,2.286682 +L 6.5299,2.286682,6.7506,2.899808 +L 6.7506,2.899808,6.7852,3.699221 +L 6.7852,3.699221,5.5874,3.718944 +L 5.5874,3.718944,5.0379,3.857334 +L 5.0379,3.857334,4.6736,4.233148 +L 4.6736,4.233148,4.9783,4.64832 +L 4.9783,4.64832,5.0866,5.063667 +L 5.0866,5.063667,5.1041,5.834862 +L 5.1041,5.834862,4.3791,5.834862 +L 4.3791,5.834862,3.6716,5.834862 +L 3.6716,5.834862,2.9644,5.834862 +L 7.2055,3.699221,7.4861,3.699221 +L 7.4861,3.699221,7.7663,3.699221 +L 7.7663,3.699221,8.0636,3.699221 +L 5.5314,5.834862,5.8049,5.9379 +L 5.8049,5.9379,6.0816,6.024126 +L 6.0816,6.024126,6.3548,6.101706 +L 6.3548,6.101706,6.4879,6.711855 +L 6.4879,6.711855,6.6315,7.322026 +L 6.6315,7.322026,6.7852,7.932174 +L 6.7852,7.932174,5.9275,7.854595 +L 5.9275,7.854595,5.0831,7.768457 +L 5.0831,7.768457,4.2495,7.665243 +L 4.2495,7.665243,4.3791,7.24438 +L 4.3791,7.24438,4.523,6.815023 +L 4.523,6.815023,4.6736,6.368658 +L 6.7852,5.834862,7.2055,5.834862 +L 7.2055,5.834862,7.6363,5.834862 +L 7.6363,5.834862,8.0636,5.834862 +L 1.8997,7.169515,1.8401,7.779708 +L 1.8401,7.779708,1.7771,8.389901 +L 1.7771,8.389901,1.7176,8.999962 +L 1.6857,9.000181,1.6857,-0.000003 +L 1.6857,-0.000003,0.8595,-0.000003 +L 0.2076,3.699221,3.1637,5.548865 +L 0.2076,6.902562,3.1637,6.902562 + +[格] 42 +L 2.1433,-0.000003,2.0593,1.600245 +L 2.0593,1.600245,1.9927,3.192109 +L 1.9927,3.192109,1.9293,4.766965 +L 1.9293,4.766965,1.5651,4.069255 +L 1.5651,4.069255,1.2082,3.354536 +L 1.2082,3.354536,0.865,2.631345 +L 4.6788,-0.000003,4.6788,1.066428 +L 4.6788,1.066428,4.6788,2.124343 +L 4.6788,2.124343,4.6788,3.165162 +L 4.6788,3.165162,6.4965,3.185083 +L 6.4965,3.185083,7.2706,3.323495 +L 7.2706,3.323495,7.6632,3.699221 +L 7.6632,3.699221,7.0885,4.422477 +L 7.0885,4.422477,6.5144,5.136999 +L 6.5144,5.136999,5.9537,5.834862 +L 5.9537,5.834862,5.1026,5.136999 +L 5.1026,5.136999,4.2585,4.422477 +L 4.2585,4.422477,3.4284,3.699221 +L 5.1026,-0.000003,5.8069,-0.000003 +L 5.8069,-0.000003,6.5144,-0.000003 +L 6.5144,-0.000003,7.2429,-0.000003 +L 7.2429,-0.000003,7.2429,0.877142 +L 7.2429,0.877142,7.2429,1.7542 +L 7.2429,1.7542,7.2429,2.631345 +L 2.9976,4.766965,2.5216,5.202035 +L 2.5216,5.202035,2.192,5.755641 +L 2.192,5.755641,1.716,6.902519 +L 1.716,6.902519,1.4215,6.902519 +L 1.4215,6.902519,1.1413,6.902519 +L 1.1413,6.902519,0.865,6.902519 +L 3.8522,6.368658,4.5881,7.508443 +L 4.5881,7.508443,4.9138,8.190809 +L 4.9138,8.190809,5.1026,8.999962 +L 6.3845,6.368658,6.6612,6.815023 +L 6.6612,6.815023,6.9449,7.24438 +L 6.9449,7.24438,7.2429,7.665243 +L 7.2429,7.665243,6.6612,7.768457 +L 6.6612,7.768457,6.0871,7.854595 +L 6.0871,7.854595,5.5334,7.932174 +L 2.5703,6.902519,2.2691,7.310861 +L 2.2691,7.310861,2.1574,7.854595 +L 2.1574,7.854595,2.1433,8.999962 + + +# kan_14 ------------------------------------------------------- +# 準備故営雑資個価報情設術退効増減移過比賛現非性制圧易因永衛液益演往応恩仮可河賀解快確額刊幹慣眼基寄規 + +[準] 31 +L 3.3938,0,2.9206,2.011283 +L 2.9206,2.011283,1.6947,2.310742 +L 1.6947,2.310742,0.0034,2.135488 +L 3.8176,2.135488,3.5125,2.549413 +L 3.5125,2.549413,3.4074,2.954712 +L 3.4074,2.954712,3.3938,3.699092 +L 3.3938,3.699092,2.5353,3.699092 +L 2.5353,3.699092,2.4516,4.956166 +L 2.4516,4.956166,2.3847,6.204768 +L 2.3847,6.204768,2.322,7.436383 +L 2.322,7.436383,2.1084,7.2726 +L 2.1084,7.2726,1.8947,7.091874 +L 1.8947,7.091874,1.6846,6.902544 +L 4.2449,2.135488,6.7768,2.135488 +L 0.0034,3.470339,0.2797,4.269685 +L 0.2797,4.269685,0.5634,5.06067 +L 0.5634,5.06067,0.8615,5.834734 +L 3.8176,3.699092,4.6718,3.699092 +L 4.6718,3.699092,4.4375,5.02963 +L 4.4375,5.02963,3.8281,5.343143 +L 3.8281,5.343143,2.9626,5.300764 +L 5.0676,3.699092,6.7768,3.699092 +L 5.0676,5.300764,4.4407,6.052193 +L 4.4407,6.052193,3.8943,6.328952 +L 3.8943,6.328952,2.9626,6.368617 +L 5.4988,5.300764,6.3498,5.300764 +L 5.0676,6.368617,4.2449,7.970288 +L 4.2449,7.970288,2.5353,7.970288 +L 5.4988,6.368617,6.3498,6.368617 +L 5.0676,7.970288,5.0676,8.999922 +L 5.4988,7.970288,6.7768,7.970288 + +[備] 32 +L 3.4199,0,3.4199,4.766815 +L 3.4199,4.766815,6.8068,4.766815 +L 6.8068,4.766815,6.8068,0 +L 6.8068,0,5.9557,0 +L 5.0976,0,4.9509,1.194883 +L 4.9509,1.194883,4.5127,1.576103 +L 4.5127,1.576103,3.8157,1.601649 +L 1.7107,0.800814,2.3132,2.608692 +L 2.3132,2.608692,2.5342,4.052293 +L 2.5342,4.052293,2.5653,6.368617 +L 2.5653,6.368617,4.2465,6.368617 +L 4.2465,6.368617,4.0122,7.699023 +L 4.0122,7.699023,3.4094,8.012712 +L 3.4094,8.012712,2.5653,7.970288 +L 5.5249,1.601649,5.2272,2.135488 +L 5.2272,2.135488,4.947,2.66959 +L 4.947,2.66959,4.6668,3.203386 +L 4.6668,3.203386,3.8157,3.203386 +L 5.5249,3.203386,5.3743,3.546539 +L 5.3743,3.546539,5.2272,3.889845 +L 5.2272,3.889845,5.0976,4.232932 +L 4.6668,6.368617,5.5249,6.368617 +L 5.5249,6.368617,5.4797,7.17799 +L 5.4797,7.17799,5.1435,7.86018 +L 5.1435,7.86018,4.2465,8.999922 +L 5.9557,6.368617,7.2341,6.368617 +L 5.9557,7.970288,5.802,8.313463 +L 5.802,8.313463,5.658,8.656681 +L 5.658,8.656681,5.5249,8.999922 +L 6.376,7.970288,7.2341,7.970288 +L 0.8562,0,0.8562,6.597502 +A -6.6706,10.627729,8.540417,321.41046,349.01228 + +[故] 31 +L 3.2083,0,5.1245,2.402485 +L 5.1245,2.402485,4.7602,3.735868 +L 4.7602,3.735868,4.4065,5.06067 +L 4.4065,5.06067,4.0594,6.368617 +L 4.0594,6.368617,3.8496,6.204768 +L 3.8496,6.204768,3.6321,6.023954 +L 3.6321,6.023954,3.4184,5.834734 +L 6.8057,0,6.3815,0.533752 +L 6.3815,0.533752,5.9651,1.067766 +L 5.9651,1.067766,5.5549,1.601649 +L 0.0351,1.067766,0.0351,4.232932 +L 0.0351,4.232932,1.3135,4.232932 +L 1.3135,4.232932,1.2893,5.925054 +L 1.2893,5.925054,0.9772,6.710434 +L 0.9772,6.710434,0.0351,6.902544 +L 0.4592,1.067766,2.5673,1.067766 +L 2.5673,1.067766,2.5673,4.232932 +L 2.5673,4.232932,1.7408,4.232932 +L 5.5549,3.203386,6.0947,4.357356 +L 6.0947,4.357356,6.3293,5.773967 +L 6.3293,5.773967,6.3815,6.902544 +L 6.3815,6.902544,5.6775,7.005626 +L 5.6775,7.005626,4.977,7.091874 +L 4.977,7.091874,4.2734,7.169453 +L 4.2734,7.169453,4.4065,7.779602 +L 4.4065,7.779602,4.5497,8.389883 +L 4.5497,8.389883,4.7038,8.999922 +L 1.7408,6.902544,1.4399,7.336061 +L 1.4399,7.336061,1.3278,7.879926 +L 1.3278,7.879926,1.3135,8.999922 +L 2.14,6.902544,2.9946,6.902544 + +[営] 15 +L 7.4798,5.87302,7.4798,7.436383 +L 0.706,7.436383,7.4798,7.436383 +L 0.706,5.87302,0.706,7.436383 +L 5.3748,7.703424,6.2263,9.038077 +L 4.0894,7.970223,4.0894,9.038032 +L 2.8079,7.703424,1.9568,9.038077 +L 2.1841,6.000007,2.1841,3.864365 +L 2.1841,3.864365,5.9982,3.864365 +L 5.9982,3.864365,5.9982,6.000007 +L 5.9982,6.000007,2.1841,6.000007 +L 2.1841,0,5.9982,0 +L 4.0894,3.864365,3.0947,2.135598 +L 2.1841,2.135598,2.1841,0 +L 5.9982,2.135598,2.1841,2.135598 +L 5.9982,0,5.9982,2.135598 + +[雑] 54 +L 1.7731,0,1.6887,0.723125 +L 1.6887,0.723125,1.6225,1.437778 +L 1.6225,1.437778,1.5591,2.135488 +L 1.5591,2.135488,1.0513,1.601649 +L 1.0513,1.601649,0.5508,1.067766 +L 0.5508,1.067766,0.0639,0.533752 +L 4.3054,0,4.2876,4.87712 +L 4.2876,4.87712,4.179,6.80511 +L 4.179,6.80511,3.8781,7.436383 +L 3.8781,7.436383,3.7275,7.2726 +L 3.7275,7.2726,3.5801,7.091874 +L 3.5801,7.091874,3.447,6.902544 +L 4.7359,0,5.1565,0 +L 5.1565,0,5.587,0 +L 5.587,0,6.0146,0 +L 6.0146,0,5.9866,1.692078 +L 5.9866,1.692078,5.6745,2.477328 +L 5.6745,2.477328,4.7359,2.66959 +L 6.4419,0,6.7151,0 +L 6.7151,0,6.9914,0 +L 6.9914,0,7.2615,0 +L 3.0547,1.601649,2.0215,2.89123 +L 2.0215,2.89123,1.2194,3.528238 +L 1.2194,3.528238,0.0639,3.699092 +L 6.4419,2.66959,5.9407,3.738736 +L 5.9407,3.738736,5.699,4.48583 +L 5.699,4.48583,4.7359,4.766815 +L 2.2004,3.699092,2.0495,4.069148 +L 2.0495,4.069148,1.9062,4.422239 +L 1.9062,4.422239,1.7731,4.766815 +L 2.6309,3.699092,3.1773,3.699092 +L 3.1773,3.699092,3.447,3.699092 +L 6.4419,4.766815,6.1228,5.577633 +L 6.1228,5.577633,5.9025,6.625697 +L 5.9025,6.625697,5.587,7.436383 +L 5.587,7.436383,4.9744,7.456238 +L 4.9744,7.456238,4.6381,7.594563 +L 4.6381,7.594563,4.3054,7.970288 +L 4.3054,7.970288,4.4382,8.313463 +L 4.4382,8.313463,4.5818,8.656681 +L 4.5818,8.656681,4.7359,8.999922 +L 0.0639,5.300764,0.4909,5.937838 +L 0.4909,5.937838,0.9217,6.557903 +L 0.9217,6.557903,1.3455,7.169453 +L 1.3455,7.169453,1.0166,7.732954 +L 1.0166,7.732954,0.6835,7.940649 +L 0.6835,7.940649,0.0639,7.970288 +L 2.6309,5.300764,2.6309,7.970288 +L 2.6309,7.970288,2.011,8.008531 +L 2.011,8.008531,1.6782,8.275374 +L 1.6782,8.275374,1.3455,8.999922 +L 6.4419,7.436383,6.1582,7.850264 +L 6.1582,7.850264,6.1582,8.255585 +L 6.1582,8.255585,6.4419,8.999922 + +[資] 39 +L 0.5209,0,1.6526,0.775333 +L 1.6526,0.775333,1.6736,2.491491 +L 1.6736,2.491491,1.3794,4.232932 +L 1.3794,4.232932,2.7835,4.232932 +L 2.7835,4.232932,4.1848,4.232932 +L 4.1848,4.232932,5.5855,4.232932 +L 5.5855,4.232932,5.3193,1.788089 +L 5.3193,1.788089,5.3193,0.690705 +L 5.3193,0.690705,5.5855,0 +L 5.5855,0,5.8625,0 +L 5.8625,0,6.1462,0 +L 6.1462,0,6.4404,0 +L 2.1989,1.067766,3.0532,1.067766 +L 3.0532,1.067766,3.9043,1.067766 +L 3.9043,1.067766,4.7624,1.067766 +L 1.7751,2.135488,2.9064,2.135488 +L 2.9064,2.135488,4.0444,2.135488 +L 4.0444,2.135488,5.1932,2.135488 +L 1.7751,3.203386,2.9064,3.203386 +L 2.9064,3.203386,4.0444,3.203386 +L 4.0444,3.203386,5.1932,3.203386 +L 0.094,4.766815,0.5209,5.300764 +L 0.5209,5.300764,0.9482,5.834734 +L 0.9482,5.834734,1.3794,6.368617 +L 1.9884,5.300764,2.7558,6.101686 +L 2.7558,6.101686,3.54,6.902544 +L 3.54,6.902544,4.3354,7.703292 +L 4.3354,7.703292,3.1201,7.871497 +L 3.1201,7.871497,2.5632,7.802214 +L 2.5632,7.802214,2.1989,7.436383 +L 6.4404,5.300764,5.8692,5.834734 +L 5.8692,5.834734,5.3161,6.368617 +L 5.3161,6.368617,4.7624,6.902544 +L 6.0166,6.902544,6.1462,7.169453 +L 6.1462,7.169453,6.2898,7.436383 +L 6.2898,7.436383,6.4404,7.703292 +L 6.4404,7.703292,5.8692,7.806374 +L 5.8692,7.806374,5.3161,7.892556 +L 5.3161,7.892556,4.7624,7.970288 + +[個] 39 +L 0.9467,0,0.8697,1.781062 +L 0.8697,1.781062,0.7961,3.545204 +L 0.7961,3.545204,0.7366,5.300764 +L 0.7366,5.300764,0.5229,5.13698 +L 0.5229,5.13698,0.3166,4.956166 +L 0.3166,4.956166,0.1271,4.766815 +L 2.6594,0,2.6594,2.848872 +L 2.6594,2.848872,2.6594,5.680824 +L 2.6594,5.680824,2.6594,8.504347 +L 2.6594,8.504347,4.0639,8.504347 +L 4.0639,8.504347,5.4754,8.504347 +L 5.4754,8.504347,6.8977,8.504347 +L 6.8977,8.504347,6.8977,5.680824 +L 6.8977,5.680824,6.8977,2.848872 +L 6.8977,2.848872,6.8977,0 +L 6.8977,0,5.4754,0 +L 5.4754,0,4.0639,0 +L 4.0639,0,2.6594,0 +L 3.9417,1.601649,3.9417,2.478707 +L 3.9417,2.478707,3.9417,3.355896 +L 3.9417,3.355896,3.9417,4.232932 +L 3.9417,4.232932,4.2148,4.232932 +L 4.2148,4.232932,4.488,4.232932 +L 4.488,4.232932,4.7644,4.232932 +L 4.7644,4.232932,4.6838,5.651053 +L 4.6838,5.651053,4.3234,6.247126 +L 4.3234,6.247126,3.5105,6.368617 +L 4.3371,1.601649,4.7644,1.601649 +L 4.7644,1.601649,5.1882,1.601649 +L 5.1882,1.601649,5.6193,1.601649 +L 5.6193,1.601649,5.4687,2.478707 +L 5.4687,2.478707,5.3181,3.355896 +L 5.3181,3.355896,5.1882,4.232932 +L 0.9467,5.834734,1.0588,7.138369 +L 1.0588,7.138369,1.2654,8.077705 +L 1.2654,8.077705,1.3775,8.999922 +L 5.1882,6.368617,5.0376,6.738739 +L 5.0376,6.738739,4.894,7.091874 +L 4.894,7.091874,4.7644,7.436383 + +[価] 48 +L 0.9802,0,0.8962,1.781062 +L 0.8962,1.781062,0.8296,3.545204 +L 0.8296,3.545204,0.7666,5.300764 +L 0.7666,5.300764,0.5529,5.13698 +L 0.5529,5.13698,0.3393,4.956166 +L 0.3393,4.956166,0.126,4.766815 +L 2.2621,0,2.2621,1.944824 +L 2.2621,1.944824,2.2621,3.889845 +L 2.2621,3.889845,2.2621,5.834734 +L 2.2621,5.834734,3.5654,6.103044 +L 3.5654,6.103044,3.9363,6.964691 +L 3.9363,6.964691,3.9363,8.504347 +L 3.9363,8.504347,3.3654,8.504347 +L 3.3654,8.504347,2.812,8.504347 +L 2.812,8.504347,2.2621,8.504347 +L 2.6579,0,3.0852,0 +L 3.0852,0,3.5164,0 +L 3.5164,0,3.9363,0 +L 3.9363,0,3.9363,1.781062 +L 3.9363,1.781062,3.9363,3.545204 +L 3.9363,3.545204,3.9363,5.300764 +L 3.9363,5.300764,4.3675,5.670863 +L 4.3675,5.670863,4.7944,6.023954 +L 4.7944,6.023954,5.2217,6.368617 +L 5.2217,6.368617,5.2217,7.091874 +L 5.2217,7.091874,5.2217,7.806374 +L 5.2217,7.806374,5.2217,8.504347 +L 5.2217,8.504347,4.924,8.504347 +L 4.924,8.504347,4.6438,8.504347 +L 4.6438,8.504347,4.3675,8.504347 +L 4.3675,0,4.6438,0 +L 4.6438,0,4.924,0 +L 4.924,0,5.2217,0 +L 5.2217,0,5.0571,2.936368 +L 5.0571,2.936368,5.2676,5.033768 +L 5.2676,5.033768,6.8994,5.834734 +L 6.8994,5.834734,6.8994,3.889845 +L 6.8994,3.889845,6.8994,1.944824 +L 6.8994,1.944824,6.8994,0 +L 6.8994,0,6.4724,0 +L 6.4724,0,6.0556,0 +L 6.0556,0,5.6455,0 +L 0.9802,5.834734,1.0923,7.138369 +L 1.0923,7.138369,1.2993,8.077705 +L 1.2993,8.077705,1.4114,8.999922 +L 5.6455,8.504347,6.1954,8.504347 +L 6.1954,8.504347,6.7561,8.504347 +L 6.7561,8.504347,7.3267,8.504347 + +[報] 51 +L 1.8337,0,1.7563,1.418011 +L 1.7563,1.418011,1.3955,2.013976 +L 1.3955,2.013976,0.583,2.135488 +L 4.3936,0,4.3936,2.848872 +L 4.3936,2.848872,4.3936,5.680824 +L 4.3936,5.680824,4.3936,8.504347 +L 4.3936,8.504347,5.2346,8.504347 +L 5.2346,8.504347,6.0751,8.504347 +L 6.0751,8.504347,6.9294,8.504347 +L 6.9294,8.504347,6.8772,7.204718 +L 6.8772,7.204718,6.5371,6.549431 +L 6.5371,6.549431,5.6475,6.368617 +L 4.8244,0,5.2346,0.533752 +L 5.2346,0.533752,5.6475,1.067766 +L 5.6475,1.067766,6.0751,1.601649 +L 6.0751,1.601649,5.6475,2.667993 +L 5.6475,2.667993,5.2346,3.725908 +L 5.2346,3.725908,4.8244,4.766815 +L 7.3567,0,7.0593,0.369946 +L 7.0593,0.369946,6.7756,0.723125 +L 6.7756,0.723125,6.5056,1.067766 +L 2.2641,2.135488,1.9629,2.569114 +L 1.9629,2.569114,1.8508,3.112979 +L 1.8508,3.112979,1.8337,4.232932 +L 1.8337,4.232932,1.2659,4.232932 +L 1.2659,4.232932,0.7055,4.232932 +L 0.7055,4.232932,0.1592,4.232932 +L 6.5056,2.402485,6.8037,3.023995 +L 6.8037,3.023995,6.9119,3.636858 +L 6.9119,3.636858,6.9294,4.766815 +L 6.9294,4.766815,6.5056,4.766815 +L 6.5056,4.766815,6.0751,4.766815 +L 6.0751,4.766815,5.6475,4.766815 +L 2.2641,4.500059,2.3937,5.13698 +L 2.3937,5.13698,2.5373,5.757002 +L 2.5373,5.757002,2.6848,6.368617 +L 2.6848,6.368617,2.1174,6.290841 +L 2.1174,6.290841,1.5636,6.204768 +L 1.5636,6.204768,1.0103,6.101686 +L 1.0103,6.101686,1.1328,5.670863 +L 1.1328,5.670863,1.2659,5.223184 +L 1.2659,5.223184,1.4099,4.766815 +L 2.6848,4.232932,2.9646,4.232932 +L 2.9646,4.232932,3.2448,4.232932 +L 3.2448,4.232932,3.5425,4.232932 +L 1.8337,7.169453,1.5009,7.732954 +L 1.5009,7.732954,1.1819,7.940649 +L 1.1819,7.940649,0.583,7.970288 +L 2.2641,7.970288,2.1104,8.313463 +L 2.1104,8.313463,1.9668,8.656681 +L 1.9668,8.656681,1.8337,8.999922 + +[情] 45 +L 1.436,0,1.436,3.011211 +L 1.436,3.011211,1.436,6.014147 +L 1.436,6.014147,1.436,8.999922 +L 3.9683,0,3.9683,1.411028 +L 3.9683,1.411028,3.9683,2.821969 +L 3.9683,2.821969,3.9683,4.232932 +L 3.9683,4.232932,4.8229,4.232932 +L 4.8229,4.232932,5.6775,4.232932 +L 5.6775,4.232932,6.5325,4.232932 +L 6.5325,4.232932,6.5325,2.821969 +L 6.5325,2.821969,6.5325,1.411028 +L 6.5325,1.411028,6.5325,0 +L 6.5325,0,6.2379,0 +L 6.2379,0,5.9546,0 +L 5.9546,0,5.6775,0 +L 4.3991,2.135488,4.956,2.135488 +L 4.956,2.135488,5.5269,2.135488 +L 5.5269,2.135488,6.1052,2.135488 +L 4.3991,3.203386,4.956,3.203386 +L 4.956,3.203386,5.5269,3.203386 +L 5.5269,3.203386,6.1052,3.203386 +L 0.1577,5.033768,0.4554,5.656744 +L 0.4554,5.656744,0.5674,6.279611 +L 0.5674,6.279611,0.585,7.436383 +L 3.1421,5.834734,3.8496,5.937838 +L 3.8496,5.937838,4.5532,6.023954 +L 4.5532,6.023954,5.2537,6.101686 +L 5.2537,6.101686,4.9213,6.665232 +L 4.9213,6.665232,4.5848,6.872883 +L 4.5848,6.872883,3.9683,6.902544 +L 5.6775,5.834734,6.2379,5.834734 +L 6.2379,5.834734,6.8092,5.834734 +L 6.8092,5.834734,7.3867,5.834734 +L 2.291,6.63557,2.1435,6.902544 +L 2.1435,6.902544,1.9929,7.169453 +L 1.9929,7.169453,1.8672,7.436383 +L 5.6775,6.902544,5.0334,7.653842 +L 5.0334,7.653842,4.487,7.930842 +L 4.487,7.930842,3.5725,7.970288 +L 5.6775,7.970288,5.5269,8.313463 +L 5.5269,8.313463,5.3833,8.656681 +L 5.3833,8.656681,5.2537,8.999922 +L 6.1052,7.970288,6.3815,7.970288 +L 6.3815,7.970288,6.6652,7.970288 +L 6.6652,7.970288,6.9629,7.970288 + +[設] 38 +L 3.3609,0,3.8477,0.45626 +L 3.8477,0.45626,4.3454,0.904026 +L 4.3454,0.904026,4.8564,1.334806 +L 4.8564,1.334806,4.254,2.687781 +L 4.254,2.687781,4.0334,3.439188 +L 4.0334,3.439188,4.0022,4.232932 +L 4.0022,4.232932,4.8323,4.155287 +L 4.8323,4.155287,5.6799,4.069148 +L 5.6799,4.069148,6.531,3.966067 +L 6.531,3.966067,6.1072,3.192112 +L 6.1072,3.192112,5.6865,2.40104 +L 5.6865,2.40104,5.2802,1.601649 +L 5.2802,1.601649,5.9846,1.067766 +L 5.9846,1.067766,6.6847,0.533752 +L 6.6847,0.533752,7.3887,0 +L 3.1476,5.300764,3.7497,6.487219 +L 3.7497,6.487219,3.9703,7.317716 +L 3.9703,7.317716,4.0022,8.504347 +L 4.0022,8.504347,4.5552,8.504347 +L 4.5552,8.504347,5.1335,8.504347 +L 5.1335,8.504347,5.711,8.504347 +L 5.711,8.504347,5.711,7.625713 +L 5.711,7.625713,5.711,6.738739 +L 5.711,6.738739,5.711,5.834734 +L 5.711,5.834734,6.1138,5.834734 +L 6.1138,5.834734,6.5341,5.834734 +L 6.5341,5.834734,6.9614,5.834734 +L 6.9614,5.834734,6.9614,6.204768 +L 6.9614,6.204768,6.9614,6.557903 +L 6.9614,6.557903,6.9614,6.902544 +L 0.1915,6.902522,2.7164,6.902522 +L 0.6153,8.504325,2.2965,8.504325 +L 0.6153,5.300961,2.2965,5.300961 +L 0.6153,4.233041,2.2965,4.233041 +L 0.6153,2.669525,2.2965,2.669525 +L 0.6153,0,0.6153,2.669525 +L 2.2965,0,0.6153,0 +L 2.2965,2.669525,2.2965,0 + +[術] 36 +L 1.0446,0,0.9606,1.411028 +L 0.9606,1.411028,0.8902,2.821969 +L 0.8902,2.821969,0.8306,4.232932 +L 0.8306,4.232932,0.6135,4.069148 +L 0.6135,4.069148,0.4103,3.8884 +L 0.4103,3.8884,0.2177,3.699092 +L 3.6046,0,3.738,2.670904 +L 3.738,2.670904,3.5944,5.553728 +L 3.5944,5.553728,2.323,6.902544 +L 5.7095,0,5.9866,0 +L 5.9866,0,6.2703,0 +L 6.2703,0,6.5641,0 +L 6.5641,0,6.5641,1.944824 +L 6.5641,1.944824,6.5641,3.889845 +L 6.5641,3.889845,6.5641,5.834734 +L 6.5641,5.834734,6.1368,5.834734 +L 6.1368,5.834734,5.7095,5.834734 +L 5.7095,5.834734,5.2857,5.834734 +L 1.8957,1.868624,2.1969,2.529602 +L 2.1969,2.529602,2.3052,3.419443 +L 2.3052,3.419443,2.323,5.300764 +L 4.8549,2.66959,4.7148,3.546539 +L 4.7148,3.546539,4.5821,4.423662 +L 4.5821,4.423662,4.4592,5.300764 +L 1.0446,5.033768,1.1739,5.490181 +L 1.1739,5.490181,1.3175,5.937838 +L 1.3175,5.937838,1.4649,6.368617 +L 4.0319,6.902544,3.7307,7.336061 +L 3.7307,7.336061,3.6221,7.879926 +L 3.6221,7.879926,3.6046,8.999922 +L 0.2177,7.436383,0.624,7.968932 +L 0.624,7.968932,1.0446,8.492877 +L 1.0446,8.492877,1.4649,8.999922 +L 5.7095,8.504347,6.1368,8.504347 +L 6.1368,8.504347,6.5641,8.504347 +L 6.5641,8.504347,6.9918,8.504347 + +[退] 54 +L 0.4298,0,0.7731,0.369946 +L 0.7731,0.369946,1.1373,0.723125 +L 1.1373,0.723125,1.5016,1.067766 +L 1.5016,1.067766,1.5016,2.314836 +L 1.5016,2.314836,1.5016,3.545204 +L 1.5016,3.545204,1.5016,4.766815 +L 1.5016,4.766815,1.0708,4.766815 +L 1.0708,4.766815,0.647,4.766815 +L 0.647,4.766815,0.2165,4.766815 +L 2.7803,0,2.4826,0.189242 +L 2.4826,0.189242,2.2021,0.369946 +L 2.2021,0.369946,1.9219,0.533752 +L 3.2111,0,4.6118,0 +L 4.6118,0,6.0127,0 +L 6.0127,0,7.4176,0 +L 2.7803,1.601649,3.0567,1.601649 +L 3.0567,1.601649,3.3337,1.601649 +L 3.3337,1.601649,3.6031,1.601649 +L 3.6031,1.601649,3.6031,3.916616 +L 3.6031,3.916616,3.6031,6.214684 +L 3.6031,6.214684,3.6031,8.504347 +L 3.6031,8.504347,4.5876,8.504347 +L 4.5876,8.504347,5.589,8.504347 +L 5.589,8.504347,6.5945,8.504347 +L 6.5945,8.504347,6.612,6.230161 +L 6.612,6.230161,6.7202,5.261405 +L 6.7202,5.261405,7.0215,4.766815 +L 7.0215,4.766815,6.5945,4.346127 +L 6.5945,4.346127,6.1672,3.916616 +L 6.1672,3.916616,5.7434,3.470339 +L 5.7434,3.470339,6.2898,2.858614 +L 6.2898,2.858614,6.8463,2.238701 +L 6.8463,2.238701,7.4176,1.601649 +L 4.0339,1.601649,4.3599,1.977419 +L 4.3599,1.977419,4.6958,2.115853 +L 4.6958,2.115853,5.3126,2.135488 +L 5.3126,4.232932,5.3126,4.603163 +L 5.3126,4.603163,5.3126,4.956166 +L 5.3126,4.956166,5.3126,5.300764 +L 5.3126,5.300764,4.885,5.300764 +L 4.885,5.300764,4.4577,5.300764 +L 4.4577,5.300764,4.0339,5.300764 +L 4.0339,6.902544,4.7344,6.902544 +L 4.7344,6.902544,5.4454,6.902544 +L 5.4454,6.902544,6.1672,6.902544 +L 1.5016,7.436383,1.2042,7.806374 +L 1.2042,7.806374,0.924,8.159618 +L 0.924,8.159618,0.647,8.504347 +L 5.3018,-0.015214,7.4347,-0.015214 +L 1.4841,1.052465,0.4298,0 +L 0.2306,4.751688,1.4841,4.751688 +L 1.4841,1.052465,1.4841,4.751688 +L 0.6614,8.489133,1.4841,7.421257 +A 5.3018,7.347793,7.362973,238.75988,270 + +[効] 27 +L 0.2501,0,0.9502,0.990121 +L 0.9502,0.990121,1.651,1.971618 +L 1.651,1.971618,2.355,2.936368 +L 2.355,2.936368,1.9274,3.201963 +L 1.9274,3.201963,1.5109,3.458978 +L 1.5109,3.458978,1.1047,3.699092 +L 3.2061,0,5.3808,4.656794 +L 5.3808,4.656794,4.2989,6.872883 +L 4.2989,6.872883,0.2501,7.436383 +L 5.3423,0,5.6158,0 +L 5.6158,0,5.8957,0 +L 5.8957,0,6.1657,0 +L 6.1657,0,6.9464,2.289574 +L 6.9464,2.289574,7.0798,4.460328 +L 7.0798,4.460328,7.02,6.902544 +L 7.02,6.902544,5.7311,7.07342 +L 5.7311,7.07342,5.3493,7.710495 +L 5.3493,7.710495,5.3423,8.999922 +L 0.2501,4.766815,0.5229,5.300764 +L 0.5229,5.300764,0.8101,5.834734 +L 0.8101,5.834734,1.1047,6.368617 +L 3.6369,5.300764,3.3354,5.670863 +L 3.3354,5.670863,3.0552,6.023954 +L 3.0552,6.023954,2.7823,6.368617 +L 1.9274,7.970288,1.9274,8.313463 +L 1.9274,8.313463,1.9274,8.656681 +L 1.9274,8.656681,1.9274,8.999922 + +[増] 57 +L 3.6631,0,3.6631,1.067766 +L 3.6631,1.067766,3.6631,2.135488 +L 3.6631,2.135488,3.6631,3.203386 +L 3.6631,3.203386,4.6441,3.203386 +L 4.6441,3.203386,5.6245,3.203386 +L 5.6245,3.203386,6.6265,3.203386 +L 6.6265,3.203386,6.6265,2.135488 +L 6.6265,2.135488,6.6265,1.067766 +L 6.6265,1.067766,6.6265,0 +L 6.6265,0,5.6245,0 +L 5.6245,0,4.6441,0 +L 4.6441,0,3.6631,0 +L 4.0939,1.601649,4.7944,1.601649 +L 4.7944,1.601649,5.4952,1.601649 +L 5.4952,1.601649,6.1989,1.601649 +L 0.2797,2.135488,0.6829,2.135488 +L 0.6829,2.135488,1.1032,2.135488 +L 1.1032,2.135488,1.534,2.135488 +L 1.534,2.135488,1.59,4.249962 +L 1.59,4.249962,1.362,5.779637 +L 1.362,5.779637,0.2797,6.368617 +L 3.2393,4.766815,3.2393,5.670863 +L 3.2393,5.670863,3.2393,6.557903 +L 3.2393,6.557903,3.2393,7.436383 +L 3.2393,7.436383,3.5128,7.436383 +L 3.5128,7.436383,3.793,7.436383 +L 3.793,7.436383,4.0939,7.436383 +L 4.0939,7.436383,4.0767,8.206113 +L 4.0767,8.206113,3.9643,8.61161 +L 3.9643,8.61161,3.6631,8.999922 +L 3.6631,4.766815,4.0729,4.766815 +L 4.0729,4.766815,4.4897,4.766815 +L 4.4897,4.766815,4.917,4.766815 +L 4.917,4.766815,4.7734,5.96172 +L 4.7734,5.96172,4.3566,6.343225 +L 4.3566,6.343225,3.6631,6.368617 +L 5.3443,4.766815,5.905,4.766815 +L 5.905,4.766815,6.4756,4.766815 +L 6.4756,4.766815,7.0538,4.766815 +L 7.0538,4.766815,7.0538,5.300764 +L 7.0538,5.300764,7.0538,5.834734 +L 7.0538,5.834734,7.0538,6.368617 +L 7.0538,6.368617,6.4756,6.368617 +L 6.4756,6.368617,5.905,6.368617 +L 5.905,6.368617,5.3443,6.368617 +L 5.3443,6.368617,5.0504,6.738739 +L 5.0504,6.738739,4.7667,7.091874 +L 4.7667,7.091874,4.4897,7.436383 +L 1.9543,6.368617,1.6597,6.821988 +L 1.6597,6.821988,1.548,7.504178 +L 1.548,7.504178,1.534,8.999922 +L 7.0538,7.169453,6.4756,7.2726 +L 6.4756,7.2726,5.905,7.358673 +L 5.905,7.358673,5.3443,7.436383 +L 5.7681,7.970288,5.905,8.313463 +L 5.905,8.313463,6.0451,8.656681 +L 6.0451,8.656681,6.1989,8.999922 + +[減] 48 +L 0.2817,0.26693,0.7024,1.411028 +L 0.7024,1.411028,1.1328,2.555039 +L 1.1328,2.555039,1.5601,3.699092 +L 1.5601,0,2.338,2.232966 +L 2.338,2.232966,2.4708,5.076212 +L 2.4708,5.076212,2.4112,7.436383 +L 2.4112,7.436383,3.8052,7.358673 +L 3.8052,7.358673,4.919,7.628427 +L 4.919,7.628427,5.3746,8.999922 +L 4.3064,0,4.9473,0.636943 +L 4.9473,0.636943,5.5879,1.257117 +L 5.5879,1.257117,6.2292,1.868624 +L 6.2292,1.868624,5.6265,3.631342 +L 5.6265,3.631342,5.4058,4.936355 +L 5.4058,4.936355,5.3746,6.902544 +L 5.3746,6.902544,5.7389,7.278182 +L 5.7389,7.278182,6.2814,7.416661 +L 6.2814,7.416661,7.4796,7.436383 +L 7.0485,0,6.9084,0.369946 +L 6.9084,0.369946,6.7788,0.723125 +L 6.7788,0.723125,6.6562,1.067766 +L 7.4796,0,7.4796,0.533752 +L 7.4796,0.533752,7.4796,1.067766 +L 7.4796,1.067766,7.4796,1.601649 +L 3.2378,2.135488,3.2378,2.848872 +L 3.2378,2.848872,3.2378,3.545204 +L 3.2378,3.545204,3.2378,4.232932 +L 3.2378,4.232932,3.6651,4.232932 +L 3.6651,4.232932,4.0924,4.232932 +L 4.0924,4.232932,4.5236,4.232932 +L 4.5236,4.232932,4.5236,3.545204 +L 4.5236,3.545204,4.5236,2.848872 +L 4.5236,2.848872,4.5236,2.135488 +L 4.5236,2.135488,4.0924,2.135488 +L 4.0924,2.135488,3.6651,2.135488 +L 3.6651,2.135488,3.2378,2.135488 +L 6.6562,2.936368,6.7788,3.735868 +L 6.7788,3.735868,6.9084,4.526809 +L 6.9084,4.526809,7.0485,5.300764 +L 1.1328,5.834734,0.8351,6.204768 +L 0.8351,6.204768,0.5553,6.557903 +L 0.5553,6.557903,0.2817,6.902544 +L 3.2378,5.834734,3.6651,5.834734 +L 3.6651,5.834734,4.0924,5.834734 +L 4.0924,5.834734,4.5236,5.834734 +L 1.5601,7.970288,1.2628,8.313463 +L 1.2628,8.313463,0.9826,8.656681 +L 0.9826,8.656681,0.7024,8.999922 + +[移] 54 +L 1.5621,0,1.4816,1.411028 +L 1.4816,1.411028,1.4084,2.821969 +L 1.4084,2.821969,1.3488,4.232932 +L 1.3488,4.232932,0.9912,3.545204 +L 0.9912,3.545204,0.648,2.848872 +L 0.648,2.848872,0.3083,2.135488 +L 2.8405,0,3.6745,0.45626 +L 3.6745,0.45626,4.5221,0.904026 +L 4.5221,0.904026,5.3766,1.334806 +L 5.3766,1.334806,4.9455,1.971618 +L 4.9455,1.971618,4.5291,2.591814 +L 4.5291,2.591814,4.1228,3.203386 +L 4.1228,3.203386,3.6955,2.858614 +L 3.6955,2.858614,3.2717,2.505588 +L 3.2717,2.505588,2.8405,2.135488 +L 5.8004,1.601649,6.2277,2.238701 +L 6.2277,2.238701,6.655,2.858614 +L 6.655,2.858614,7.0855,3.470339 +L 7.0855,3.470339,5.2677,3.651065 +L 5.2677,3.651065,4.3921,3.848822 +L 4.3921,3.848822,3.6955,4.232932 +L 2.8405,3.699092,2.07,4.509713 +L 2.07,4.509713,1.6357,5.201885 +L 1.6357,5.201885,1.1593,6.368617 +L 1.1593,6.368617,0.8686,6.368617 +L 0.8686,6.368617,0.5849,6.368617 +L 0.5849,6.368617,0.3083,6.368617 +L 4.9805,4.232932,4.8268,4.422239 +L 4.8268,4.422239,4.6832,4.603163 +L 4.6832,4.603163,4.5501,4.766815 +L 4.5501,4.766815,4.8268,5.13698 +L 4.8268,5.13698,5.0965,5.490181 +L 5.0965,5.490181,5.3766,5.834734 +L 5.3766,5.834734,5.019,6.204768 +L 5.019,6.204768,4.6758,6.557903 +L 4.6758,6.557903,4.3399,6.902544 +L 4.3399,6.902544,3.9718,6.557903 +L 3.9718,6.557903,3.6149,6.204768 +L 3.6149,6.204768,3.2717,5.834734 +L 3.2717,5.834734,2.3786,6.49013 +L 2.3786,6.49013,1.7793,6.781118 +L 1.7793,6.781118,1.5621,7.970288 +L 1.5621,7.970288,1.1348,7.970288 +L 1.1348,7.970288,0.7145,7.970288 +L 0.7145,7.970288,0.3083,7.970288 +L 5.8004,6.368617,6.0768,6.824855 +L 6.0768,6.824855,6.357,7.2726 +L 6.357,7.2726,6.655,7.703292 +L 6.655,7.703292,5.9542,7.625713 +L 5.9542,7.625713,5.2506,7.539421 +L 5.2506,7.539421,4.5501,7.436383 +L 1.9859,7.970288,2.2661,8.159618 +L 2.2661,8.159618,2.5463,8.340367 +L 2.5463,8.340367,2.8405,8.504347 + +[過] 69 +L 0.5239,0,0.8671,0.369946 +L 0.8671,0.369946,1.2247,0.723125 +L 1.2247,0.723125,1.5925,1.067766 +L 1.5925,1.067766,1.5925,2.314836 +L 1.5925,2.314836,1.5925,3.545204 +L 1.5925,3.545204,1.5925,4.766815 +L 1.5925,4.766815,1.1652,4.766815 +L 1.1652,4.766815,0.734,4.766815 +L 0.734,4.766815,0.3141,4.766815 +L 2.874,0,2.5728,0.189242 +L 2.5728,0.189242,2.2926,0.369946 +L 2.2926,0.369946,2.0198,0.533752 +L 3.2978,0,4.7023,0 +L 4.7023,0,6.1138,0 +L 6.1138,0,7.5432,0 +L 2.874,1.067766,2.874,2.478707 +L 2.874,2.478707,2.874,3.889845 +L 2.874,3.889845,2.874,5.300764 +L 2.874,5.300764,3.1511,5.300764 +L 3.1511,5.300764,3.4313,5.300764 +L 3.4313,5.300764,3.7286,5.300764 +L 3.7286,5.300764,3.7286,6.368617 +L 3.7286,6.368617,3.7286,7.436383 +L 3.7286,7.436383,3.7286,8.504347 +L 3.7286,8.504347,4.5587,8.504347 +L 4.5587,8.504347,5.4063,8.504347 +L 5.4063,8.504347,6.2574,8.504347 +L 6.2574,8.504347,6.2574,7.436383 +L 6.2574,7.436383,6.2574,6.368617 +L 6.2574,6.368617,6.2574,5.300764 +L 6.2574,5.300764,6.5341,5.300764 +L 6.5341,5.300764,6.8147,5.300764 +L 6.8147,5.300764,7.1124,5.300764 +L 7.1124,5.300764,7.1124,3.889845 +L 7.1124,3.889845,7.1124,2.478707 +L 7.1124,2.478707,7.1124,1.067766 +L 7.1124,1.067766,6.8147,1.067766 +L 6.8147,1.067766,6.5341,1.067766 +L 6.5341,1.067766,6.2574,1.067766 +L 4.1248,2.135488,4.1248,2.667993 +L 4.1248,2.667993,4.1248,3.192112 +L 4.1248,3.192112,4.1248,3.699092 +L 4.1248,3.699092,4.6852,3.699092 +L 4.6852,3.699092,5.2561,3.699092 +L 5.2561,3.699092,5.8336,3.699092 +L 5.8336,3.699092,5.8336,3.192112 +L 5.8336,3.192112,5.8336,2.667993 +L 5.8336,2.667993,5.8336,2.135488 +L 5.8336,2.135488,5.2561,2.135488 +L 5.2561,2.135488,4.6852,2.135488 +L 4.6852,2.135488,4.1248,2.135488 +L 4.1248,5.300764,4.3976,5.300764 +L 4.3976,5.300764,4.6852,5.300764 +L 4.6852,5.300764,4.979,5.300764 +L 4.979,5.300764,4.979,5.834734 +L 4.979,5.834734,4.979,6.368617 +L 4.979,6.368617,4.979,6.902544 +L 4.979,6.902544,5.2561,6.902544 +L 5.2561,6.902544,5.5363,6.902544 +L 5.5363,6.902544,5.8336,6.902544 +L 1.5925,7.436383,1.2944,7.806374 +L 1.2944,7.806374,1.0142,8.159618 +L 1.0142,8.159618,0.734,8.504347 +L 5.3927,-0.015214,7.5257,-0.015214 +L 1.5746,1.052465,0.5239,0 +L 0.3243,4.751688,1.5746,4.751688 +L 1.5746,1.052465,1.5746,4.751688 +L 0.7516,8.489133,1.5746,7.421257 +A 5.3927,7.347793,7.362973,238.75988,270 + +[比] 24 +L 0.3403,0,0.7711,0 +L 0.7711,0,1.1914,0 +L 1.1914,0,1.6222,0 +L 1.6222,0,1.6222,3.011211 +L 1.6222,3.011211,1.6222,6.014147 +L 1.6222,6.014147,1.6222,8.999922 +L 5.0094,0,4.7082,0.689129 +L 4.7082,0.689129,4.5957,3.02255 +L 4.5957,3.02255,4.5821,8.999922 +L 5.4367,0,6.1368,0 +L 6.1368,0,6.8377,0 +L 6.8377,0,7.5382,0 +L 7.5382,0,7.5382,0.533752 +L 7.5382,0.533752,7.5382,1.067766 +L 7.5382,1.067766,7.5382,1.601649 +L 2.0495,0.533752,2.5997,0.723125 +L 2.5997,0.723125,3.1531,0.904026 +L 3.1531,0.904026,3.7271,1.067766 +L 2.0495,5.300764,2.5997,5.300764 +L 2.5997,5.300764,3.1531,5.300764 +L 3.1531,5.300764,3.7271,5.300764 +L 5.0094,5.300764,5.713,5.670863 +L 5.713,5.670863,6.4135,6.023954 +L 6.4135,6.023954,7.1179,6.368617 + +[賛] 63 +L 7.2775,6.902544,7.5748,6.902544 +L 0.7979,0,1.6946,0.029618 +L 1.6946,0.029618,2.1285,0.237225 +L 2.1285,0.237225,2.4753,0.800814 +L 2.4753,0.800814,2.1814,0.904026 +L 2.1814,0.904026,1.8977,0.990121 +L 1.8977,0.990121,1.6207,1.067766 +L 1.6207,1.067766,1.6207,2.134153 +L 1.6207,2.134153,1.6207,3.192112 +L 1.6207,3.192112,1.6207,4.232932 +L 1.6207,4.232932,3.1758,4.232932 +L 3.1758,4.232932,4.7343,4.232932 +L 4.7343,4.232932,6.2863,4.232932 +L 6.2863,4.232932,6.2863,3.192112 +L 6.2863,3.192112,6.2863,2.134153 +L 6.2863,2.134153,6.2863,1.067766 +L 6.2863,1.067766,5.9952,0.990121 +L 5.9952,0.990121,5.7115,0.904026 +L 5.7115,0.904026,5.4352,0.800814 +L 5.4352,0.800814,5.7854,0.237225 +L 5.7854,0.237225,6.2267,0.029618 +L 6.2267,0.029618,7.144,0 +L 2.9029,1.067766,3.6066,1.067766 +L 3.6066,1.067766,4.3074,1.067766 +L 4.3074,1.067766,5.0079,1.067766 +L 2.0518,2.135488,3.3053,2.135488 +L 3.3053,2.135488,4.5841,2.135488 +L 4.5841,2.135488,5.866,2.135488 +L 2.0518,3.203386,3.3053,3.203386 +L 3.3053,3.203386,4.5841,3.203386 +L 4.5841,3.203386,5.866,3.203386 +L 0.5839,5.300764,1.0743,5.670863 +L 1.0743,5.670863,1.5611,6.023954 +L 1.5611,6.023954,2.0518,6.368617 +L 2.0518,6.368617,1.7047,6.744255 +L 1.7047,6.744255,1.2673,6.882689 +L 1.2673,6.882689,0.3703,6.902544 +L 3.3302,5.300764,3.0357,5.490181 +L 3.0357,5.490181,2.752,5.670863 +L 2.752,5.670863,2.4753,5.834734 +L 4.3981,5.300764,4.885,5.670863 +L 4.885,5.670863,5.3756,6.023954 +L 5.3756,6.023954,5.866,6.368617 +L 5.866,6.368617,5.5157,6.744255 +L 5.5157,6.744255,5.0811,6.882689 +L 5.0811,6.882689,4.1848,6.902544 +L 7.144,5.300764,6.8463,5.490181 +L 6.8463,5.490181,6.5665,5.670863 +L 6.5665,5.670863,6.2863,5.834734 +L 2.4753,6.902544,1.8448,7.653842 +L 1.8448,7.653842,1.4109,7.930842 +L 1.4109,7.930842,0.7979,7.970288 +L 6.2863,6.902544,5.6558,7.653842 +L 5.6558,7.653842,5.2212,7.930842 +L 5.2212,7.930842,4.6118,7.970288 +L 6.7167,6.902544,6.9938,6.902544 +L 6.9938,6.902544,7.2775,6.902544 +L 2.4753,7.970288,2.3247,8.313463 +L 2.3247,8.313463,2.1814,8.656681 +L 2.1814,8.656681,2.0518,8.999922 +L 6.2863,7.970288,6.1388,8.313463 +L 6.1388,8.313463,5.9952,8.656681 +L 5.9952,8.656681,5.866,8.999922 + +[現] 51 +L 2.2955,0,3.3953,1.111656 +L 3.3953,1.111656,4.0954,2.129928 +L 4.0954,2.129928,4.6138,3.699092 +L 4.6138,3.699092,4.3161,3.699092 +L 4.3161,3.699092,4.0362,3.699092 +L 4.0362,3.699092,3.7595,3.699092 +L 3.7595,3.699092,3.7595,5.300764 +L 3.7595,5.300764,3.7595,6.902544 +L 3.7595,6.902544,3.7595,8.504347 +L 3.7595,8.504347,4.7434,8.504347 +L 4.7434,8.504347,5.7419,8.504347 +L 5.7419,8.504347,6.7433,8.504347 +L 6.7433,8.504347,6.7433,6.902544 +L 6.7433,6.902544,6.7433,5.300764 +L 6.7433,5.300764,6.7433,3.699092 +L 6.7433,3.699092,6.4529,3.699092 +L 6.4529,3.699092,6.1692,3.699092 +L 6.1692,3.699092,5.8922,3.699092 +L 5.8922,3.699092,5.819,1.604561 +L 5.819,1.604561,6.1198,0.391158 +L 6.1198,0.391158,7.5698,0 +L 7.5698,0,7.5698,0.533752 +L 7.5698,0.533752,7.5698,1.067766 +L 7.5698,1.067766,7.5698,1.601649 +L 0.3726,1.601649,0.7999,1.601649 +L 0.7999,1.601649,1.2237,1.601649 +L 1.2237,1.601649,1.6545,1.601649 +L 1.6545,1.601649,1.6545,2.667993 +L 1.6545,2.667993,1.6545,3.725908 +L 1.6545,3.725908,1.6545,4.766815 +L 1.6545,4.766815,1.353,4.956166 +L 1.353,4.956166,1.0728,5.13698 +L 1.0728,5.13698,0.7999,5.300764 +L 2.0783,5.300764,1.7803,5.775302 +L 1.7803,5.775302,1.6685,6.605931 +L 1.6685,6.605931,1.6545,8.504347 +L 1.6545,8.504347,1.2237,8.504347 +L 1.2237,8.504347,0.7999,8.504347 +L 0.7999,8.504347,0.3726,8.504347 +L 2.0783,8.504347,2.3547,8.504347 +L 2.3547,8.504347,2.6384,8.504347 +L 2.6384,8.504347,2.9326,8.504347 +L 4.1833,6.902544,4.8873,6.902544 +L 4.8873,6.902544,5.5948,6.902544 +L 5.5948,6.902544,6.3233,6.902544 +L 5.5948,5.300764,6.3233,5.300764 +L 4.8873,5.300764,5.5948,5.300764 +L 4.1833,5.300764,4.8873,5.300764 +L 2.6384,2.135488,2.9326,2.135488 +L 2.3547,2.135488,2.6384,2.135488 +L 2.0783,2.135488,2.3547,2.135488 + +[非] 36 +L 1.4425,2.807872,0.4023,2.66959 +L 2.1819,3.064864,1.4425,2.807872 +L 2.9346,3.203386,2.1819,3.064864 +L 2.9346,2.66959,2.9346,3.203386 +L 2.9346,2.135488,2.9346,2.66959 +L 2.9346,1.601649,2.9346,2.135488 +L 2.2975,1.067766,2.9346,1.601649 +L 1.6632,0.533752,2.2975,1.067766 +L 1.0436,0,1.6632,0.533752 +L 1.2324,7.436383,0.4023,7.436383 +L 2.0835,7.436383,1.2324,7.436383 +L 2.9346,7.436383,2.0835,7.436383 +L 2.9346,6.902544,2.9346,7.436383 +L 2.9346,6.368617,2.9346,6.902544 +L 2.9346,5.834734,2.9346,6.368617 +L 2.9346,4.766815,2.9346,5.300764 +L 2.9346,4.232932,2.9346,4.766815 +L 2.9346,3.699092,2.9346,4.232932 +L 2.9346,5.300764,2.2306,5.300764 +L 2.2306,5.300764,1.5305,5.300764 +L 1.5305,5.300764,0.8296,5.300764 +L 5.4952,5.300764,6.0451,5.300764 +L 6.0451,5.300764,6.6052,5.300764 +L 6.6052,5.300764,7.1726,5.300764 +L 6.1989,7.436383,6.9029,7.436383 +L 5.4952,7.436383,6.1989,7.436383 +L 6.9029,7.436383,7.6037,7.436383 +L 6.9029,2.66959,7.6037,2.66959 +L 6.1989,2.66959,6.9029,2.66959 +L 5.4952,2.66959,6.1989,2.66959 +L 5.0714,0,5.0714,3.011211 +L 5.0714,3.011211,5.0714,6.014147 +L 5.0714,6.014147,5.0714,8.999922 +L 2.9346,8.656681,2.9346,8.999922 +L 2.9346,8.313463,2.9346,8.656681 +L 2.9346,7.970288,2.9346,8.313463 + +[性] 36 +L 3.8196,8.159618,3.8196,8.504347 +L 3.8196,7.806374,3.8196,8.159618 +L 3.8196,7.436383,3.8196,7.806374 +L 5.0661,6.902544,3.9453,6.518456 +L 5.3848,5.953445,5.0661,6.902544 +L 5.609,4.648345,5.3848,5.953445 +L 5.9245,3.699092,5.609,4.648345 +L 6.355,3.699092,6.6247,3.699092 +L 6.6247,3.699092,6.9084,3.699092 +L 6.9084,3.699092,7.2061,3.699092 +L 5.5074,2.331932,5.1505,3.426448 +L 5.4972,0,5.5074,2.331932 +L 4.7964,0,5.4972,0 +L 4.0924,0,4.7964,0 +L 3.3923,0,4.0924,0 +L 1.6827,0,1.6827,3.011211 +L 1.6827,3.011211,1.6827,6.014147 +L 1.6827,6.014147,1.6827,8.999922 +L 2.2431,7.169453,2.11,7.436383 +L 2.3867,6.902544,2.2431,7.169453 +L 2.5412,6.63557,2.3867,6.902544 +L 3.9453,6.518456,3.4553,5.989958 +L 3.4553,5.989958,2.965,4.766815 +L 5.1505,3.426448,3.8196,3.699092 +L 5.9245,0,6.4811,0 +L 6.4811,0,7.0558,0 +L 7.0558,0,7.6334,0 +L 0.8141,6.279611,0.8281,7.436383 +L 0.7125,5.656744,0.8141,6.279611 +L 0.4288,5.033768,0.7125,5.656744 +L 5.6233,7.336061,5.5147,7.879926 +L 5.9245,6.902544,5.6233,7.336061 +L 6.355,6.902544,6.6247,6.902544 +L 6.6247,6.902544,6.9084,6.902544 +L 6.9084,6.902544,7.2061,6.902544 +L 5.5147,7.879926,5.4972,8.999922 + +[制] 45 +L 0.8585,2.134153,0.8585,1.067766 +L 0.8585,3.192112,0.8585,2.134153 +L 0.8585,4.232932,0.8585,3.192112 +L 2.2805,3.872792,0.8585,4.232932 +L 2.6129,2.572047,2.2805,3.872792 +L 2.5673,0,2.6129,2.572047 +L 3.3943,1.067766,3.6671,1.067766 +L 3.6671,1.067766,3.9473,1.067766 +L 3.9473,1.067766,4.2453,1.067766 +L 4.2453,1.067766,4.2453,2.134153 +L 4.2453,2.134153,4.2453,3.192112 +L 4.2453,3.192112,4.2453,4.232932 +L 4.2453,4.232932,3.818,4.232932 +L 3.818,4.232932,3.3943,4.232932 +L 3.3943,4.232932,2.9635,4.232932 +L 2.9635,4.232932,2.6934,4.766815 +L 2.6934,4.766815,2.4132,5.300764 +L 2.4132,5.300764,2.1404,5.834734 +L 2.1404,5.834734,1.5621,5.834734 +L 1.5621,5.834734,0.9912,5.834734 +L 0.9912,5.834734,0.4347,5.834734 +L 0.7814,7.278182,0.4347,6.902544 +L 1.2227,7.416661,0.7814,7.278182 +L 2.1404,7.436383,1.2227,7.416661 +L 2.4132,6.902544,2.1404,7.436383 +L 2.6934,6.368617,2.4132,6.902544 +L 2.9635,5.834734,2.6934,6.368617 +L 3.3943,5.834734,3.818,5.834734 +L 3.818,5.834734,4.2453,5.834734 +L 4.2453,5.834734,4.6723,5.834734 +L 5.5234,4.450587,5.5234,6.214684 +L 5.5234,2.66959,5.5234,4.450587 +L 7.2046,0,7.2046,3.011211 +L 6.9279,0,7.2046,0 +L 6.655,0,6.9279,0 +L 6.3815,0,6.655,0 +L 7.2046,3.011211,7.2046,6.014147 +L 7.2046,6.014147,7.2046,8.999922 +L 2.5852,8.255585,2.5673,8.999922 +L 2.6833,7.850264,2.5852,8.255585 +L 2.9635,7.436383,2.6833,7.850264 +L 3.3943,7.436383,3.6671,7.436383 +L 3.6671,7.436383,3.9473,7.436383 +L 3.9473,7.436383,4.2453,7.436383 +L 5.5234,6.214684,5.5234,7.970288 + +[圧] 21 +L 6.6567,4.766815,7.2349,4.766815 +L 6.0861,4.766815,6.6567,4.766815 +L 5.5289,4.766815,6.0861,4.766815 +L 5.13,4.766815,4.8323,5.221739 +L 4.8323,5.221739,4.7198,5.913736 +L 4.7198,5.913736,4.7023,7.436383 +L 3.4239,8.504347,5.5363,8.504347 +L 1.3154,8.504347,3.4239,8.504347 +L 1.3438,5.690565,1.3154,8.504347 +L 1.1718,3.131367,1.3438,5.690565 +L 0.4612,0.26693,1.1718,3.131367 +L 1.7151,0,2.6989,0 +L 2.6989,0,3.701,0 +L 3.701,0,4.7023,0 +L 4.7023,0,4.6922,3.371438 +L 4.6922,3.371438,4.1069,4.598806 +L 4.1069,4.598806,2.142,4.766815 +L 5.5363,8.504347,7.6622,8.504347 +L 5.13,0,5.9636,0 +L 5.9636,0,6.8111,0 +L 6.8111,0,7.6622,0 + +[易] 36 +L 5.5558,0,6.9249,0.594607 +L 6.9249,0.594607,7.2856,2.011283 +L 7.2856,2.011283,7.2646,3.699092 +L 7.2646,3.699092,6.6867,3.699092 +L 6.6867,3.699092,6.1158,3.699092 +L 6.1158,3.699092,5.5558,3.699092 +L 5.1355,3.355896,5.1355,3.699092 +L 5.1355,3.012656,5.1355,3.355896 +L 5.1355,2.66959,5.1355,3.012656 +L 3.4434,1.14679,5.1355,2.66959 +L 2.4596,0.454728,3.4434,1.14679 +L 1.3139,0,2.4596,0.454728 +L 2.1409,2.086213,0.8901,1.601649 +L 3.4543,3.036691,2.1409,2.086213 +L 5.1355,3.699092,3.4543,3.036691 +L 6.4135,5.300764,5.2822,5.300764 +L 6.4135,6.368617,6.4135,5.300764 +L 6.4135,7.436383,6.4135,6.368617 +L 6.4135,8.504347,6.4135,7.436383 +L 4.8549,8.504347,6.4135,8.504347 +L 3.2998,8.504347,4.8549,8.504347 +L 1.7447,8.504347,3.2998,8.504347 +L 1.7447,7.436383,1.7447,8.504347 +L 1.7447,6.368617,1.7447,7.436383 +L 1.7447,5.300764,1.7447,6.368617 +L 2.0214,5.223184,1.7447,5.300764 +L 2.3051,5.13698,2.0214,5.223184 +L 2.5997,5.033768,2.3051,5.13698 +L 2.2424,4.254275,2.5997,5.033768 +L 1.7447,3.779758,2.2424,4.254275 +L 0.6804,3.203386,1.7447,3.779758 +L 3.4333,6.902544,4.7047,6.902544 +L 4.7047,6.902544,5.9866,6.902544 +L 5.2822,5.300764,4.1544,5.300764 +L 4.1544,5.300764,3.0231,5.300764 +L 2.172,6.902544,3.4333,6.902544 + +[因] 27 +L 2.752,8.504347,5.0079,8.504347 +L 0.4929,8.504347,2.752,8.504347 +L 0.4929,5.680824,0.4929,8.504347 +L 0.4929,2.848872,0.4929,5.680824 +L 0.4929,0,0.4929,2.848872 +L 2.752,0,0.4929,0 +L 5.0079,0,2.752,0 +L 7.2666,0,5.0079,0 +L 7.2666,2.848872,7.2666,0 +L 7.2666,5.680824,7.2666,2.848872 +L 7.2666,8.504347,7.2666,5.680824 +L 5.0079,8.504347,7.2666,8.504347 +L 3.8976,6.665232,3.8832,7.436383 +L 4.0093,6.249928,3.8976,6.665232 +L 4.3039,5.834734,4.0093,6.249928 +L 4.7343,5.834734,5.1616,5.834734 +L 5.1616,5.834734,5.5924,5.834734 +L 5.5924,5.834734,6.0127,5.834734 +L 3.8832,5.033768,3.519,5.597421 +L 3.0987,3.889845,3.8832,5.033768 +L 2.3247,2.745725,3.0987,3.889845 +L 1.5611,1.601649,2.3247,2.745725 +L 2.9726,5.805029,1.7783,5.834734 +L 3.519,5.597421,2.9726,5.805029 +L 4.8639,3.355896,4.3039,4.232932 +L 5.4352,2.478707,4.8639,3.355896 +L 6.0127,1.601649,5.4352,2.478707 + +[永] 21 +L 0.7369,1.067766,1.5001,2.21182 +L 1.5001,2.21182,2.2741,3.355896 +L 2.2741,3.355896,3.0552,4.500059 +L 3.0552,4.500059,2.3512,4.603163 +L 2.3512,4.603163,1.651,4.689279 +L 1.651,4.689279,0.9502,4.766815 +L 2.4776,6.902544,1.7771,6.902544 +L 3.1848,6.902544,2.4776,6.902544 +L 3.9098,6.902544,3.1848,6.902544 +L 3.9098,4.612926,3.9098,6.902544 +L 3.9098,2.314836,3.9098,4.612926 +L 3.9098,0,3.9098,2.314836 +L 3.4825,0,3.9098,0 +L 3.0552,0,3.4825,0 +L 2.6314,0,3.0552,0 +L 6.442,5.300764,6.8732,5.834734 +L 6.0147,4.766815,6.442,5.300764 +L 5.5874,4.232932,6.0147,4.766815 +L 6.0147,2.314836,5.171,3.545204 +L 6.8732,1.067766,6.0147,2.314836 +L 5.171,3.545204,4.3409,4.766815 + +[衛] 57 +L 1.0856,8.492877,1.3795,8.999922 +L 0.8019,7.968932,1.0856,8.492877 +L 0.5249,7.436383,0.8019,7.968932 +L 4.6301,6.230161,1.8033,6.368617 +L 6.0486,5.973082,4.6301,6.230161 +L 6.8997,5.834734,6.0486,5.973082 +L 6.8997,3.889845,6.8997,5.834734 +L 6.8997,1.944824,6.8997,3.889845 +L 6.8997,0,6.8997,1.944824 +L 6.6051,0,6.8997,0 +L 6.3253,0,6.6051,0 +L 6.0451,0,6.3253,0 +L 4.3356,0,4.0242,1.449117 +L 4.0242,1.449117,3.2393,1.703352 +L 3.2393,1.703352,2.2344,1.601649 +L 1.3795,0,1.2954,1.600292 +L 1.2954,1.600292,1.2257,3.192112 +L 1.2257,3.192112,1.1662,4.766815 +L 1.1662,4.766815,0.9522,4.603163 +L 0.9522,4.603163,0.735,4.422239 +L 0.735,4.422239,0.5249,4.232932 +L 1.5094,5.670863,1.3795,5.300764 +L 1.653,6.023954,1.5094,5.670863 +L 1.8033,6.368617,1.653,6.023954 +L 3.089,4.956166,3.089,5.300764 +L 3.089,4.603163,3.089,4.956166 +L 3.089,4.232932,3.089,4.603163 +L 3.9853,4.016853,3.089,4.232932 +L 4.4196,3.749965,3.9853,4.016853 +L 4.7667,3.203386,4.4196,3.749965 +L 4.1853,2.66959,3.9156,3.203386 +L 4.469,2.135488,4.1853,2.66959 +L 4.7667,1.601649,4.469,2.135488 +L 3.089,2.505588,3.089,2.135488 +L 3.089,2.858614,3.089,2.505588 +L 3.089,3.203386,3.089,2.858614 +L 3.3619,3.203386,3.089,3.203386 +L 3.6354,3.203386,3.3619,3.203386 +L 3.9156,3.203386,3.6354,3.203386 +L 4.8959,4.603163,4.7667,4.232932 +L 5.0431,4.956166,4.8959,4.603163 +L 5.1905,5.300764,5.0431,4.956166 +L 4.49,5.300764,5.1905,5.300764 +L 3.7892,5.300764,4.49,5.300764 +L 3.089,5.300764,3.7892,5.300764 +L 3.5128,7.169453,3.2183,7.436383 +L 3.2183,7.436383,2.9381,7.703292 +L 2.9381,7.703292,2.6617,7.970288 +L 4.1499,8.008531,3.8242,8.275374 +L 4.7667,7.970288,4.1499,8.008531 +L 4.7667,7.625713,4.7667,7.970288 +L 4.7667,7.2726,4.7667,7.625713 +L 4.7667,6.902544,4.7667,7.2726 +L 3.8242,8.275374,3.5128,8.999922 +L 6.0451,8.504347,6.595,8.504347 +L 6.595,8.504347,7.1554,8.504347 +L 7.1554,8.504347,7.7263,8.504347 + +[液] 48 +L 3.0837,0,3.007,1.411028 +L 3.007,1.411028,2.9366,2.821969 +L 2.9366,2.821969,2.8735,4.232932 +L 2.8735,4.232932,2.6637,4.069148 +L 2.6637,4.069148,2.4497,3.8884 +L 2.4497,3.8884,2.2326,3.699092 +L 1.1892,2.957667,1.4099,4.232932 +L 0.7756,1.555023,1.1892,2.957667 +L 0.5588,0,0.7756,1.555023 +L 3.0837,5.033768,3.2168,5.670863 +L 3.2168,5.670863,3.3639,6.290841 +L 3.3639,6.290841,3.5148,6.902544 +L 2.6637,7.970288,3.5148,7.970288 +L 4.1554,0,4.7754,0.533752 +L 4.7754,0.533752,5.4093,1.067766 +L 5.4093,1.067766,6.0471,1.601649 +L 6.0471,1.601649,5.5603,2.314836 +L 5.5603,2.314836,5.0734,3.011211 +L 5.0734,3.011211,4.5831,3.699092 +L 4.5831,3.699092,4.3726,3.545204 +L 4.3726,3.545204,4.1554,3.382712 +L 4.1554,3.382712,3.9421,3.203386 +L 7.3287,0,7.0348,0.369946 +L 7.0348,0.369946,6.7472,0.723125 +L 6.7472,0.723125,6.4744,1.067766 +L 6.4744,2.135488,6.6036,2.402485 +L 6.6036,2.402485,6.7472,2.66959 +L 6.7472,2.66959,6.8982,2.936368 +L 6.8982,2.936368,6.4114,3.546539 +L 6.4114,3.546539,5.9245,4.156819 +L 5.9245,4.156819,5.4377,4.766815 +L 5.4377,4.766815,5.2237,4.603163 +L 5.2237,4.603163,5.0065,4.422239 +L 5.0065,4.422239,4.7932,4.232932 +L 7.3287,3.699092,7.3287,4.422239 +L 7.3287,4.422239,7.3287,5.13698 +L 7.3287,5.13698,7.3287,5.834734 +L 7.3287,5.834734,6.1308,5.814945 +L 6.1308,5.814945,5.5879,5.676577 +L 5.5879,5.676577,5.2237,5.300764 +L 3.5148,7.970288,4.3726,7.970288 +L 4.3726,7.970288,5.2237,7.970288 +L 5.2237,7.970288,5.2237,8.313463 +L 5.2237,8.313463,5.2237,8.656681 +L 5.2237,8.656681,5.2237,8.999922 +L 5.651,7.970288,6.3518,7.970288 +L 6.3518,7.970288,7.0523,7.970288 +L 7.0523,7.970288,7.7559,7.970288 + +[益] 54 +L 0.5849,0,0.9912,0 +L 0.9912,0,1.4119,0 +L 1.4119,0,1.8357,0 +L 1.8357,0,1.8357,1.067766 +L 1.8357,1.067766,1.8357,2.135488 +L 1.8357,2.135488,1.8357,3.203386 +L 1.8357,3.203386,3.3942,3.203386 +L 3.3942,3.203386,4.9528,3.203386 +L 4.9528,3.203386,6.5041,3.203386 +L 6.5041,3.203386,6.5041,2.135488 +L 6.5041,2.135488,6.5041,1.067766 +L 6.5041,1.067766,6.5041,0 +L 6.5041,0,6.9317,0 +L 6.9317,0,7.3625,0 +L 7.3625,0,7.7863,0 +L 2.263,0,2.6899,0 +L 2.6899,0,3.1207,0 +L 3.1207,0,3.541,0 +L 3.541,0,3.541,0.904026 +L 3.541,0.904026,3.541,1.790957 +L 3.541,1.790957,3.541,2.66959 +L 3.9718,0,4.2453,0 +L 4.2453,0,4.522,0 +L 4.522,0,4.7949,0 +L 4.7949,0,4.7949,0.904026 +L 4.7949,0.904026,4.7949,1.790957 +L 4.7949,1.790957,4.7949,2.66959 +L 5.2222,0,5.4992,0 +L 5.4992,0,5.7829,0 +L 5.7829,0,6.0768,0 +L 0.7671,3.699092,1.5411,4.689279 +L 1.5411,4.689279,2.3256,5.670863 +L 2.3256,5.670863,3.1207,6.63557 +L 3.1207,6.63557,2.9669,6.902544 +L 2.9669,6.902544,2.8233,7.169453 +L 2.8233,7.169453,2.6899,7.436383 +L 2.6899,7.436383,1.9894,7.436383 +L 1.9894,7.436383,1.2858,7.436383 +L 1.2858,7.436383,0.5849,7.436383 +L 7.3625,3.699092,6.5041,4.956166 +L 6.5041,4.956166,5.653,6.204768 +L 5.653,6.204768,4.7949,7.436383 +L 4.7949,7.436383,3.604,7.596051 +L 3.604,7.596051,2.9494,8.103141 +L 2.9494,8.103141,2.263,8.999922 +L 5.653,7.436383,5.4992,7.625713 +L 5.4992,7.625713,5.3556,7.806374 +L 5.3556,7.806374,5.2222,7.970288 +L 5.2222,7.970288,5.4992,8.313463 +L 5.4992,8.313463,5.7829,8.656681 +L 5.7829,8.656681,6.0768,8.999922 +L 6.0768,7.436383,6.6372,7.436383 +L 6.6372,7.436383,7.2046,7.436383 +L 7.2046,7.436383,7.7863,7.436383 + +[演] 60 +L 0.5838,0.26693,1.0142,1.411028 +L 1.0142,1.411028,1.4415,2.555039 +L 1.4415,2.555039,1.8688,3.699092 +L 3.3297,0,3.6764,0.369946 +L 3.6764,0.369946,4.0333,0.723125 +L 4.0333,0.723125,4.4014,1.067766 +L 7.361,0,7.084,0.369946 +L 7.084,0.369946,6.8111,0.723125 +L 6.8111,0.723125,6.5344,1.067766 +L 3.5465,2.135488,3.5465,3.012656 +L 3.5465,3.012656,3.5465,3.889845 +L 3.5465,3.889845,3.5465,4.766815 +L 3.5465,4.766815,4.5836,4.834784 +L 4.5836,4.834784,5.1089,5.258494 +L 5.1089,5.258494,5.2525,6.368617 +L 5.2525,6.368617,4.6743,6.368617 +L 4.6743,6.368617,4.1037,6.368617 +L 4.1037,6.368617,3.5465,6.368617 +L 3.9703,2.135488,4.4014,2.135488 +L 4.4014,2.135488,4.8249,2.135488 +L 4.8249,2.135488,5.2525,2.135488 +L 5.2525,2.135488,5.1051,3.286613 +L 5.1051,3.286613,4.6711,3.666607 +L 4.6711,3.666607,3.9703,3.699092 +L 5.6798,2.135488,6.1103,2.135488 +L 6.1103,2.135488,6.5344,2.135488 +L 6.5344,2.135488,6.9614,2.135488 +L 6.9614,2.135488,6.9614,2.667993 +L 6.9614,2.667993,6.9614,3.192112 +L 6.9614,3.192112,6.9614,3.699092 +L 6.9614,3.699092,6.0441,3.718881 +L 6.0441,3.718881,5.6028,3.857404 +L 5.6028,3.857404,5.2525,4.232932 +L 5.2525,4.232932,5.6028,4.588934 +L 5.6028,4.588934,6.0441,4.588934 +L 6.0441,4.588934,6.9614,4.232932 +L 1.4415,5.834734,1.1403,6.204768 +L 1.1403,6.204768,0.8605,6.557903 +L 0.8605,6.557903,0.5838,6.902544 +L 2.7203,6.368617,2.7203,6.902544 +L 2.7203,6.902544,2.7203,7.436383 +L 2.7203,7.436383,2.7203,7.970288 +L 2.7203,7.970288,3.5539,7.970288 +L 3.5539,7.970288,4.4014,7.970288 +L 4.4014,7.970288,5.2525,7.970288 +L 5.2525,7.970288,5.2525,8.313463 +L 5.2525,8.313463,5.2525,8.656681 +L 5.2525,8.656681,5.2525,8.999922 +L 5.6798,6.368617,6.1103,6.368617 +L 6.1103,6.368617,6.5344,6.368617 +L 6.5344,6.368617,6.9614,6.368617 +L 7.7848,6.368617,7.7848,6.902544 +L 7.7848,6.902544,7.7848,7.436383 +L 7.7848,7.436383,7.7848,7.970288 +L 7.7848,7.970288,7.084,7.970288 +L 7.084,7.970288,6.3835,7.970288 +L 6.3835,7.970288,5.6798,7.970288 +L 1.8688,7.970288,1.5715,8.313463 +L 1.5715,8.313463,1.2913,8.656681 +L 1.2913,8.656681,1.0142,8.999922 + +[往] 36 +L 1.4719,0,1.3878,1.411028 +L 1.3878,1.411028,1.3174,2.821969 +L 1.3174,2.821969,1.2544,4.232932 +L 1.2544,4.232932,1.0446,4.069148 +L 1.0446,4.069148,0.8306,3.8884 +L 0.8306,3.8884,0.6173,3.699092 +L 2.7223,0,3.5734,0 +L 3.5734,0,4.4311,0 +L 4.4311,0,5.2822,0 +L 5.2822,0,5.2892,2.382827 +L 5.2892,2.382827,4.9148,3.451951 +L 4.9148,3.451951,3.5734,3.699092 +L 5.6783,0,6.3858,0 +L 6.3858,0,7.0933,0 +L 7.0933,0,7.818,0 +L 5.6783,3.699092,5.4016,4.173697 +L 5.4016,4.173697,5.2966,5.004106 +L 5.2966,5.004106,5.2822,6.902544 +L 5.2822,6.902544,4.5607,6.902544 +L 4.5607,6.902544,3.8532,6.902544 +L 3.8532,6.902544,3.1531,6.902544 +L 6.1091,3.699092,6.3858,3.699092 +L 6.3858,3.699092,6.6657,3.699092 +L 6.6657,3.699092,6.9634,3.699092 +L 1.4719,4.766815,1.7482,5.490181 +L 1.7482,5.490181,2.0183,6.204768 +L 2.0183,6.204768,2.2946,6.902544 +L 0.6173,6.902544,1.0236,7.61584 +L 1.0236,7.61584,1.4435,8.312149 +L 1.4435,8.312149,1.8638,8.999922 +L 5.6783,6.902544,6.2384,6.902544 +L 6.2384,6.902544,6.8131,6.902544 +L 6.8131,6.902544,7.3907,6.902544 +L 5.2822,7.970288,4.9884,8.313463 +L 4.9884,8.313463,4.7047,8.656681 +L 4.7047,8.656681,4.4311,8.999922 + +[応] 30 +L 0.6158,0,1.421,2.396946 +L 1.421,2.396946,1.5436,5.471727 +L 1.5436,5.471727,1.4704,7.970288 +L 1.4704,7.970288,2.4507,7.970288 +L 2.4507,7.970288,3.4318,7.970288 +L 3.4318,7.970288,4.4331,7.970288 +L 4.4331,7.970288,4.4331,8.313463 +L 4.4331,8.313463,4.4331,8.656681 +L 4.4331,8.656681,4.4331,8.999922 +L 4.4331,0,4.1494,0.552162 +L 4.1494,0.552162,4.0478,1.926523 +L 4.0478,1.926523,4.0303,5.300764 +L 4.8569,0,5.4177,0 +L 5.4177,0,5.9851,0 +L 5.9851,0,6.5661,0 +L 6.5661,0,6.5661,0.533752 +L 6.5661,0.533752,6.5661,1.067766 +L 6.5661,1.067766,6.5661,1.601649 +L 1.9008,0.533752,2.5001,1.738726 +L 2.5001,1.738726,2.7208,2.697698 +L 2.7208,2.697698,2.7519,4.232932 +L 7.8484,2.402485,7.4211,3.201963 +L 7.4211,3.201963,6.9938,3.99297 +L 6.9938,3.99297,6.5661,4.766815 +L 5.2842,6.101686,5.134,6.368617 +L 5.134,6.368617,4.9865,6.63557 +L 4.9865,6.63557,4.8569,6.902544 +L 4.8569,7.970288,5.8415,7.970288 +L 5.8415,7.970288,6.8428,7.970288 +L 6.8428,7.970288,7.8484,7.970288 + +[恩] 45 +L 0.649,0,0.9225,0.533752 +L 0.9225,0.533752,1.2097,1.067766 +L 1.2097,1.067766,1.5001,1.601649 +L 3.1812,0,2.88,0.434961 +L 2.88,0.434961,2.7683,0.988567 +L 2.7683,0.988567,2.7504,2.135488 +L 3.605,0,4.309,0 +L 4.309,0,5.02,0 +L 5.02,0,5.7419,0 +L 5.7419,0,5.7419,0.369946 +L 5.7419,0.369946,5.7419,0.723125 +L 5.7419,0.723125,5.7419,1.067766 +L 7.4157,0.800814,7.125,1.257117 +L 7.125,1.257117,6.8413,1.704687 +L 6.8413,1.704687,6.5646,2.135488 +L 4.8908,1.601649,4.5927,1.971618 +L 4.5927,1.971618,4.309,2.324818 +L 4.309,2.324818,4.0323,2.66959 +L 1.5001,3.699092,1.5001,5.300764 +L 1.5001,5.300764,1.5001,6.902544 +L 1.5001,6.902544,1.5001,8.504347 +L 1.5001,8.504347,3.1812,8.504347 +L 3.1812,8.504347,4.8663,8.504347 +L 4.8663,8.504347,6.5646,8.504347 +L 6.5646,8.504347,6.5646,6.902544 +L 6.5646,6.902544,6.5646,5.300764 +L 6.5646,5.300764,6.5646,3.699092 +L 6.5646,3.699092,4.8663,3.699092 +L 4.8663,3.699092,3.1812,3.699092 +L 3.1812,3.699092,1.5001,3.699092 +L 2.5406,4.766815,3.0275,5.300764 +L 3.0275,5.300764,3.5245,5.834734 +L 3.5245,5.834734,4.0323,6.368617 +L 4.0323,6.368617,3.6891,6.744255 +L 3.6891,6.744255,3.2551,6.882689 +L 3.2551,6.882689,2.3585,6.902544 +L 5.3146,4.766815,5.02,5.13698 +L 5.02,5.13698,4.7363,5.490181 +L 4.7363,5.490181,4.4596,5.834734 +L 4.4596,6.902544,4.309,7.2726 +L 4.309,7.2726,4.1658,7.625713 +L 4.1658,7.625713,4.0323,7.970288 +L 4.8908,6.902544,5.1636,6.902544 +L 5.1636,6.902544,5.4438,6.902544 +L 5.4438,6.902544,5.7419,6.902544 + +[仮] 33 +L 1.5021,0,1.418,1.781062 +L 1.418,1.781062,1.3518,3.545204 +L 1.3518,3.545204,1.2888,5.300764 +L 1.2888,5.300764,1.0748,5.13698 +L 1.0748,5.13698,0.8716,4.956166 +L 0.8716,4.956166,0.6793,4.766815 +L 2.3532,0,3.3654,2.789571 +L 3.3654,2.789571,3.6421,5.562178 +L 3.6421,5.562178,3.6389,8.504347 +L 3.6389,8.504347,5.043,8.504347 +L 5.043,8.504347,6.4549,8.504347 +L 6.4549,8.504347,7.88,8.504347 +L 3.8522,0,4.469,0.723125 +L 4.469,0.723125,5.0991,1.437778 +L 5.0991,1.437778,5.7439,2.135488 +L 5.7439,2.135488,5.2812,3.162451 +L 5.2812,3.162451,5.0714,4.121357 +L 5.0714,4.121357,4.917,5.834734 +L 4.917,5.834734,4.6227,5.834734 +L 4.6227,5.834734,4.3429,5.834734 +L 4.3429,5.834734,4.0627,5.834734 +L 7.4527,0,7.0219,0.533752 +L 7.0219,0.533752,6.5981,1.067766 +L 6.5981,1.067766,6.1712,1.601649 +L 6.1712,2.66959,6.7701,3.829077 +L 6.7701,3.829077,6.9904,4.649724 +L 6.9904,4.649724,7.0219,5.834734 +L 7.0219,5.834734,6.444,5.834734 +L 6.444,5.834734,5.8731,5.834734 +L 5.8731,5.834734,5.3166,5.834734 +L 1.5021,5.834734,1.7756,6.901099 +L 1.7756,6.901099,2.0593,7.959037 +L 2.0593,7.959037,2.3532,8.999922 + +[可] 18 +L 5.3463,0,6.6285,0 +L 6.6285,0,6.6285,8.504347 +L 6.6285,8.504347,4.6461,8.504347 +L 4.6461,8.504347,2.6602,8.504347 +L 2.6602,8.504347,0.6813,8.504347 +L 1.9597,2.66959,1.9597,3.916616 +L 1.9597,3.916616,1.9597,5.146853 +L 1.9597,5.146853,1.9597,6.368617 +L 1.9597,6.368617,2.793,6.368617 +L 2.793,6.368617,3.6409,6.368617 +L 3.6409,6.368617,4.4917,6.368617 +L 4.4917,6.368617,4.4917,5.146853 +L 4.4917,5.146853,4.4917,3.916616 +L 4.4917,3.916616,4.4917,2.66959 +L 4.4917,2.66959,3.6409,2.66959 +L 3.6409,2.66959,2.793,2.66959 +L 2.793,2.66959,1.9597,2.66959 +L 7.0558,8.504347,7.8785,8.504347 + +[河] 15 +L 0.7075,0.26693,1.1383,1.411028 +L 1.1383,1.411028,1.5656,2.555039 +L 1.5656,2.555039,1.9894,3.699092 +L 5.8039,0,7.0543,0 +L 7.0543,0,7.0543,8.504347 +L 7.0543,8.504347,2.8125,8.504347 +L 3.6706,3.203386,3.6706,6.368617 +L 3.6706,6.368617,5.3801,6.368617 +L 5.3801,6.368617,5.3801,3.203386 +L 5.3801,3.203386,3.6706,3.203386 +L 1.5656,5.834734,1.2682,6.204768 +L 1.2682,6.204768,0.7075,6.902544 +L 1.9894,7.970288,1.6955,8.313463 +L 1.6955,8.313463,1.4118,8.656681 +L 1.4118,8.656681,1.1383,8.999922 + +[賀] 29 +L 0.7379,0,1.2878,0.189242 +L 1.2878,0.189242,1.8478,0.369946 +L 1.8478,0.369946,2.4191,0.533752 +L 7.084,0,6.7936,0.189242 +L 6.7936,0.189242,6.5064,0.369946 +L 6.5064,0.369946,6.2329,0.533752 +L 1.9879,1.601649,1.9879,4.766815 +L 1.9879,4.766815,6.6602,4.766815 +L 6.6602,4.766815,6.6602,1.601649 +L 6.6602,1.601649,1.9879,1.601649 +L 2.4191,2.66959,6.2329,2.66959 +L 2.4191,3.699092,6.2329,3.699092 +L 0.9235,5.834734,1.2667,6.290841 +L 1.2667,6.290841,1.6236,6.738739 +L 1.6236,6.738739,1.9879,7.169453 +L 1.9879,7.169453,1.6587,7.732954 +L 1.6587,7.732954,1.3364,7.940649 +L 1.3364,7.940649,0.7379,7.970288 +L 3.0561,5.834734,3.508,6.269805 +L 3.508,6.269805,3.6764,6.823389 +L 3.6764,6.823389,3.6974,7.970288 +L 3.6974,7.970288,2.4191,7.970288 +L 2.4191,7.970288,2.2649,8.313463 +L 2.2649,8.313463,2.1213,8.656681 +L 2.1213,8.656681,1.9879,8.999922 +L 4.9513,5.834734,4.9513,7.970288 +L 4.9513,7.970288,7.5113,7.970288 +L 7.5113,7.970288,7.5113,5.834734 +L 7.5113,5.834734,4.9513,5.834734 + +[解] 44 +L 0.7399,0.26693,1.1707,2.793709 +L 1.1707,2.793709,1.0793,5.913736 +L 1.0793,5.913736,1.5945,8.999922 +L 2.876,0,3.7026,0 +L 3.7026,0,3.7026,2.66959 +L 3.7026,2.66959,1.5945,2.66959 +L 6.2594,0,6.1862,1.895549 +L 6.1862,1.895549,5.7305,2.579052 +L 5.7305,2.579052,4.5537,2.66959 +L 6.6905,2.66959,6.3928,3.201963 +L 6.3928,3.201963,6.1123,3.725908 +L 6.1123,3.725908,5.8356,4.232932 +L 5.8356,4.232932,5.2195,4.213252 +L 5.2195,4.213252,4.8868,4.074862 +L 4.8868,4.074862,4.5537,3.699092 +L 7.1178,2.66959,7.9371,2.66959 +L 2.4487,3.203386,2.4176,3.947701 +L 2.4176,3.947701,2.193,4.353175 +L 2.193,4.353175,1.5945,4.766815 +L 3.7026,3.203386,3.7026,4.766815 +L 3.7026,4.766815,3.0725,4.826225 +L 3.0725,4.826225,2.5293,5.241441 +L 2.5293,5.241441,1.5945,6.368617 +L 6.6905,4.232932,6.5361,4.603163 +L 6.5361,4.603163,6.3928,4.956166 +L 6.3928,4.956166,6.2594,5.300764 +L 3.7026,5.300764,3.7026,6.368617 +L 3.7026,6.368617,3.1037,6.388406 +L 3.1037,6.388406,2.7818,6.526797 +L 2.7818,6.526797,2.4487,6.902544 +L 2.4487,6.902544,2.5783,7.169453 +L 2.5783,7.169453,2.7258,7.436383 +L 2.7258,7.436383,2.876,7.703292 +L 2.876,7.703292,2.5783,7.806374 +L 2.5783,7.806374,2.2985,7.892556 +L 2.2985,7.892556,2.0218,7.970288 +L 4.981,6.368617,5.5838,7.159646 +L 5.5838,7.159646,5.8009,7.71323 +L 5.8009,7.71323,5.8356,8.504347 +L 5.8356,8.504347,4.5537,8.504347 +L 6.9038,6.368617,7.3311,6.803578 +L 7.3311,6.803578,7.4888,7.357294 +L 7.4888,7.357294,7.5133,8.504347 +L 7.5133,8.504347,6.2594,8.504347 + +[快] 24 +L 2.0203,0,2.0203,8.999922 +L 3.0885,0,4.4576,2.165194 +L 4.4576,2.165194,5.0671,3.491463 +L 5.0671,3.491463,5.4387,4.232932 +L 5.4387,4.232932,5.0744,4.608745 +L 5.0744,4.608745,4.5172,4.747026 +L 4.5172,4.747026,3.3018,4.766815 +L 7.5436,0,6.3419,1.916585 +L 6.3419,1.916585,5.901,2.875688 +L 5.901,2.875688,5.8341,3.699092 +L 0.7695,5.033768,1.0708,5.656744 +L 1.0708,5.656744,1.1793,6.279611 +L 1.1793,6.279611,1.1968,7.436383 +L 5.8341,4.766815,5.2492,6.204768 +L 5.2492,6.204768,5.0324,7.117222 +L 5.0324,7.117222,3.7291,7.436383 +L 6.2652,4.766815,7.1163,4.766815 +L 7.1163,4.766815,7.1163,7.436383 +L 7.1163,7.436383,6.0061,7.536685 +L 6.0061,7.536685,5.5329,7.984386 +L 5.5329,7.984386,5.4387,8.999922 +L 2.8745,6.63557,2.7208,6.902544 +L 2.7208,6.902544,2.5807,7.169453 +L 2.5807,7.169453,2.4507,7.436383 + +[確] 43 +L 4.1868,0,4.1027,1.411028 +L 4.1027,1.411028,4.0358,2.821969 +L 4.0358,2.821969,3.9728,4.232932 +L 3.9728,4.232932,3.7595,4.069148 +L 3.7595,4.069148,3.5455,3.8884 +L 3.5455,3.8884,3.3357,3.699092 +L 4.5822,0,5.8645,0 +L 5.8645,0,5.7839,1.434998 +L 5.7839,1.434998,5.4161,2.022513 +L 5.4161,2.022513,4.5822,2.135488 +L 6.2918,0,8.0006,0 +L 1.1988,1.067766,1.3113,4.995766 +L 1.3113,4.995766,1.5144,7.042314 +L 1.5144,7.042314,1.6261,8.504347 +L 1.6261,8.504347,0.768,8.504347 +L 1.6261,1.067766,2.4772,1.067766 +L 2.4772,1.067766,2.4772,5.300764 +L 2.4772,5.300764,1.6261,5.300764 +L 6.2918,2.135488,5.9937,2.667993 +L 5.9937,2.667993,5.7135,3.192112 +L 5.7135,3.192112,5.4407,3.699092 +L 5.4407,3.699092,4.5822,3.699092 +L 6.7222,2.135488,7.5733,2.135488 +L 6.2918,3.699092,5.9937,4.232932 +L 5.9937,4.232932,5.7135,4.766815 +L 5.7135,4.766815,5.4407,5.300764 +L 5.4407,5.300764,5.0134,5.13698 +L 5.0134,5.13698,4.5931,4.956166 +L 4.5931,4.956166,4.1868,4.766815 +L 6.7222,3.699092,7.5733,3.699092 +L 6.2918,5.300764,6.0081,5.716089 +L 6.0081,5.716089,6.0081,6.13126 +L 6.0081,6.13126,6.2918,6.902544 +L 6.7222,5.300764,7.5733,5.300764 +L 4.5822,6.101686,4.7153,6.738739 +L 4.7153,6.738739,4.8589,7.358673 +L 4.8589,7.358673,5.0134,7.970288 +L 5.0134,7.970288,3.3357,7.970288 +L 3.3357,7.970288,3.3357,6.902544 +L 8.0006,6.902544,8.0006,7.970288 +L 8.0006,7.970288,5.4407,7.970288 +L 5.4407,7.970288,5.4407,8.999922 +L 2.0499,8.504347,2.9084,8.504347 + +[額] 43 +L 1.6565,0,1.6565,3.203386 +L 1.6565,3.203386,1.9294,3.546539 +L 1.9294,3.546539,2.2169,3.889845 +L 2.2169,3.889845,2.5076,4.232932 +L 2.5076,4.232932,2.1434,4.603163 +L 2.1434,4.603163,1.7858,4.956166 +L 1.7858,4.956166,1.4425,5.300764 +L 1.4425,5.300764,1.2257,5.13698 +L 1.2257,5.13698,1.0152,4.956166 +L 1.0152,4.956166,0.8019,4.766815 +L 2.0835,0,3.3342,0 +L 3.3342,0,3.3342,2.66959 +L 3.3342,2.66959,2.0835,2.66959 +L 4.6157,0,4.8928,0.369946 +L 4.8928,0.369946,5.173,0.723125 +L 5.173,0.723125,5.4703,1.067766 +L 8.0026,0,7.7052,0.369946 +L 7.7052,0.369946,7.148,1.067788 +L 5.0395,2.135488,5.0395,6.902544 +L 5.0395,6.902544,5.6598,7.129962 +L 5.6598,7.129962,5.9922,7.475962 +L 5.9922,7.475962,6.3214,8.237285 +L 6.3214,8.237285,5.0255,8.450562 +L 5.0255,8.450562,4.3674,8.214673 +L 4.3674,8.214673,4.1884,6.902544 +L 5.4703,2.135488,7.5718,2.135488 +L 7.5718,2.135488,7.5718,3.699092 +L 7.5718,3.699092,5.4703,3.699092 +L 7.5718,4.232932,7.5718,5.300764 +L 7.5718,5.300764,5.4703,5.300764 +L 2.9069,4.766815,3.0361,5.033768 +L 3.0361,5.033768,3.1832,5.300764 +L 3.1832,5.300764,3.3342,5.567651 +L 3.3342,5.567651,2.7633,5.670863 +L 2.7633,5.670863,2.206,5.757002 +L 2.206,5.757002,1.6565,5.834734 +L 7.5718,5.834734,7.5718,6.902544 +L 7.5718,6.902544,6.3214,6.902544 +L 0.8019,6.902544,0.8019,7.970288 +L 0.8019,7.970288,2.5076,7.970288 +L 2.5076,7.970288,2.5076,8.999922 +L 2.9069,7.970288,3.7615,7.970288 +L 6.7176,8.504347,8.0026,8.504347 + +[刊] 12 +L 2.5093,0,2.5898,2.933478 +L 2.5898,2.933478,2.296,4.706157 +L 2.296,4.706157,0.8316,5.300764 +L 6.3234,0,7.6057,0 +L 7.6057,0,7.6057,8.999922 +L 5.4723,2.135488,5.4723,7.970288 +L 2.9401,5.300764,2.6353,5.775302 +L 2.6353,5.775302,2.5236,6.605931 +L 2.5236,6.605931,2.5093,8.504347 +L 2.5093,8.504347,1.2589,8.504347 +L 3.3639,5.300764,4.2188,5.300764 +L 2.9401,8.504347,3.7912,8.504347 + +[幹] 41 +L 2.5396,0,2.3081,1.33045 +L 2.3081,1.33045,1.6955,1.644073 +L 1.6955,1.644073,0.8301,1.601649 +L 6.3538,0,6.3258,2.118742 +L 6.3258,2.118742,5.9156,3.016903 +L 5.9156,3.016903,4.6446,3.203386 +L 2.9669,1.601649,2.6657,2.016952 +L 2.6657,2.016952,2.5568,2.432168 +L 2.5568,2.432168,2.5396,3.203386 +L 2.5396,3.203386,1.2574,3.203386 +L 1.2574,3.203386,1.2574,6.368617 +L 1.2574,6.368617,2.5396,6.368617 +L 2.5396,6.368617,2.3081,7.699023 +L 2.3081,7.699023,1.6955,8.012712 +L 1.6955,8.012712,0.8301,7.970288 +L 3.3977,1.601649,4.2208,1.601649 +L 2.9669,3.203386,3.7932,3.203386 +L 3.7932,3.203386,3.7932,4.766815 +L 3.7932,4.766815,1.6885,4.766815 +L 6.7807,3.203386,6.4795,3.611488 +L 6.4795,3.611488,6.3713,4.155287 +L 6.3713,4.155287,6.3538,5.300764 +L 6.3538,5.300764,5.4362,5.320553 +L 5.4362,5.320553,4.9948,5.458965 +L 4.9948,5.458965,4.6446,5.834734 +L 4.6446,5.834734,5.1384,6.901099 +L 5.1384,6.901099,5.6284,7.959037 +L 5.6284,7.959037,6.1437,8.999922 +L 6.1437,8.999922,6.7632,7.959037 +L 6.7632,7.959037,7.3937,6.901099 +L 7.3937,6.901099,8.0346,5.834734 +L 8.0346,5.834734,7.7194,5.458965 +L 7.7194,5.458965,7.3937,5.320553 +L 7.3937,5.320553,6.7807,5.300764 +L 7.208,3.203386,8.0346,3.203386 +L 3.7932,5.300764,3.7932,6.368617 +L 3.7932,6.368617,2.9669,6.368617 +L 2.9669,7.970288,2.816,8.313463 +L 2.816,8.313463,2.6724,8.656681 +L 2.6724,8.656681,2.5396,8.999922 +L 3.3977,7.970288,4.2208,7.970288 + +[慣] 48 +L 2.1455,0,2.1455,3.011211 +L 2.1455,3.011211,2.1455,6.014147 +L 2.1455,6.014147,2.1455,8.999922 +L 4.0372,0,4.3801,0.189242 +L 4.3801,0.189242,4.7373,0.369946 +L 4.7373,0.369946,5.1016,0.533752 +L 7.6338,0,7.3435,0.189242 +L 7.3435,0.189242,7.0563,0.369946 +L 7.0563,0.369946,6.7827,0.533752 +L 4.2505,1.601649,4.2505,2.667993 +L 4.2505,2.667993,4.2505,3.725908 +L 4.2505,3.725908,4.2505,4.766815 +L 4.2505,4.766815,5.3786,4.766815 +L 5.3786,4.766815,6.5064,4.766815 +L 6.5064,4.766815,7.6338,4.766815 +L 7.6338,4.766815,7.6338,3.725908 +L 7.6338,3.725908,7.6338,2.667993 +L 7.6338,2.667993,7.6338,1.601649 +L 7.6338,1.601649,6.5064,1.601649 +L 6.5064,1.601649,5.3786,1.601649 +L 5.3786,1.601649,4.2505,1.601649 +L 4.6778,2.66959,5.5114,2.66959 +L 5.5114,2.66959,6.3523,2.66959 +L 6.3523,2.66959,7.21,2.66959 +L 4.6778,3.699092,5.5114,3.699092 +L 5.5114,3.699092,6.3523,3.699092 +L 6.3523,3.699092,7.21,3.699092 +L 0.864,5.033768,1.1613,5.656744 +L 1.1613,5.656744,1.2734,6.279611 +L 1.2734,6.279611,1.2878,7.436383 +L 2.9689,6.63557,2.8145,6.902544 +L 2.8145,6.902544,2.6709,7.169453 +L 2.6709,7.169453,2.5416,7.436383 +L 4.2505,6.368617,4.2505,7.091874 +L 4.2505,7.091874,4.2505,7.806374 +L 4.2505,7.806374,4.2505,8.504347 +L 4.2505,8.504347,5.3786,8.504347 +L 5.3786,8.504347,6.5064,8.504347 +L 6.5064,8.504347,7.6338,8.504347 +L 7.6338,8.504347,7.6338,7.806374 +L 7.6338,7.806374,7.6338,7.091874 +L 7.6338,7.091874,7.6338,6.368617 +L 7.6338,6.368617,6.5064,6.368617 +L 6.5064,6.368617,5.3786,6.368617 +L 5.3786,6.368617,4.2505,6.368617 +L 5.96,6.902544,5.6238,7.278182 +L 5.6238,7.278182,5.2907,7.416661 +L 5.2907,7.416661,4.6778,7.436383 + +[眼] 45 +L 3.3947,0,4.7848,1.764097 +L 4.7848,1.764097,4.8763,5.417943 +L 4.8763,5.417943,4.6763,8.504347 +L 4.6763,8.504347,5.6535,8.504347 +L 5.6535,8.504347,6.638,8.504347 +L 6.638,8.504347,7.6358,8.504347 +L 7.6358,8.504347,7.6358,7.2726 +L 7.6358,7.2726,7.6358,6.023954 +L 7.6358,6.023954,7.6358,4.766815 +L 7.6358,4.766815,7.0583,4.766815 +L 7.0583,4.766815,6.4874,4.766815 +L 6.4874,4.766815,5.927,4.766815 +L 5.927,4.766815,5.9512,3.646884 +L 5.9512,3.646884,6.1193,3.103129 +L 6.1193,3.103129,6.5679,2.66959 +L 6.5679,2.66959,6.9108,3.012656 +L 6.9108,3.012656,7.2716,3.355896 +L 7.2716,3.355896,7.6358,3.699092 +L 8.0631,0,7.4856,0.723125 +L 7.4856,0.723125,6.9108,1.437778 +L 6.9108,1.437778,6.3575,2.135488 +L 5.0724,0.533752,5.3487,0.723125 +L 5.3487,0.723125,5.6324,0.904026 +L 5.6324,0.904026,5.927,1.067766 +L 0.8625,1.601649,0.8625,3.916616 +L 0.8625,3.916616,0.8625,6.214684 +L 0.8625,6.214684,0.8625,8.504347 +L 0.8625,8.504347,1.5626,8.504347 +L 1.5626,8.504347,2.2666,8.504347 +L 2.2666,8.504347,2.9674,8.504347 +L 2.9674,8.504347,2.9674,6.214684 +L 2.9674,6.214684,2.9674,3.916616 +L 2.9674,3.916616,2.9674,1.601649 +L 2.9674,1.601649,2.2666,1.601649 +L 2.2666,1.601649,1.5626,1.601649 +L 1.5626,1.601649,0.8625,1.601649 +L 1.2579,4.232932,1.6852,4.232932 +L 1.6852,4.232932,2.1163,4.232932 +L 2.1163,4.232932,2.5436,4.232932 +L 1.2579,6.368617,1.6852,6.368617 +L 1.6852,6.368617,2.1163,6.368617 +L 2.1163,6.368617,2.5436,6.368617 +L 5.0724,6.902544,5.776,6.902544 +L 5.776,6.902544,6.4874,6.902544 +L 6.4874,6.902544,7.2085,6.902544 + +[基] 45 +L 1.7156,0,2.5491,0 +L 2.5491,0,3.3967,0 +L 3.3967,0,4.2478,0 +L 4.2478,0,4.0167,1.33045 +L 4.0167,1.33045,3.4142,1.644073 +L 3.4142,1.644073,2.5733,1.601649 +L 4.6748,0,5.3791,0 +L 5.3791,0,6.0901,0 +L 6.0901,0,6.8151,0 +L 1.0778,1.601649,1.7156,2.314836 +L 1.7156,2.314836,2.36,3.011211 +L 2.36,3.011211,3.0006,3.699092 +L 3.0006,3.699092,2.6363,4.074862 +L 2.6363,4.074862,2.0833,4.213252 +L 2.0833,4.213252,0.8645,4.232932 +L 4.6748,1.601649,4.3771,2.016952 +L 4.3771,2.016952,4.2653,2.432168 +L 4.2653,2.432168,4.2478,3.203386 +L 5.1056,1.601649,5.3791,1.601649 +L 5.3791,1.601649,5.6593,1.601649 +L 5.6593,1.601649,5.9567,1.601649 +L 7.2389,1.601649,6.5171,2.478707 +L 6.5171,2.478707,5.8064,3.355896 +L 5.8064,3.355896,5.1056,4.232932 +L 5.1056,4.232932,3.008,5.06356 +L 3.008,5.06356,2.8535,6.605931 +L 2.8535,6.605931,1.2918,7.436383 +L 5.9567,4.232932,5.5753,4.806436 +L 5.5753,4.806436,4.9133,5.083305 +L 4.9133,5.083305,3.3967,5.300764 +L 6.384,4.232932,6.7906,4.232932 +L 6.7906,4.232932,7.2105,4.232932 +L 7.2105,4.232932,7.6378,4.232932 +L 5.5294,6.101686,4.8082,6.204768 +L 4.8082,6.204768,4.1007,6.290841 +L 4.1007,6.290841,3.3967,6.368617 +L 5.5294,6.902544,4.3879,7.548068 +L 4.3879,7.548068,3.4142,7.744358 +L 3.4142,7.744358,3.0006,8.999922 +L 5.9567,7.436383,5.6555,7.850264 +L 5.6555,7.850264,5.5437,8.255585 +L 5.5437,8.255585,5.5294,8.999922 +L 6.384,7.436383,6.6607,7.436383 +L 6.6607,7.436383,6.9444,7.436383 +L 6.9444,7.436383,7.2389,7.436383 + +[寄] 51 +L 5.1041,0,5.5104,0 +L 5.5104,0,5.9275,0 +L 5.9275,0,6.3548,0 +L 6.3548,0,6.3548,1.247245 +L 6.3548,1.247245,6.3548,2.477328 +L 6.3548,2.477328,6.3548,3.699092 +L 6.3548,3.699092,4.523,3.699092 +L 4.523,3.699092,2.6944,3.699092 +L 2.6944,3.699092,0.8595,3.699092 +L 2.5406,1.067766,2.5406,1.601649 +L 2.5406,1.601649,2.5406,2.135488 +L 2.5406,2.135488,2.5406,2.66959 +L 2.5406,2.66959,3.0972,2.66959 +L 3.0972,2.66959,3.6716,2.66959 +L 3.6716,2.66959,4.2495,2.66959 +L 4.2495,2.66959,4.2495,2.135488 +L 4.2495,2.135488,4.2495,1.601649 +L 4.2495,1.601649,4.2495,1.067766 +L 4.2495,1.067766,3.6716,1.067766 +L 3.6716,1.067766,3.0972,1.067766 +L 3.0972,1.067766,2.5406,1.067766 +L 6.7852,3.699092,7.0553,3.699092 +L 7.0553,3.699092,7.339,3.699092 +L 7.339,3.699092,7.6363,3.699092 +L 2.3301,4.766815,2.817,5.223184 +L 2.817,5.223184,3.3112,5.670863 +L 3.3112,5.670863,3.8225,6.101686 +L 3.8225,6.101686,3.2408,6.204768 +L 3.2408,6.204768,2.6734,6.290841 +L 2.6734,6.290841,2.113,6.368617 +L 5.9275,4.766815,5.3566,5.300764 +L 5.3566,5.300764,4.7962,5.834734 +L 4.7962,5.834734,4.2495,6.368617 +L 5.1041,6.368617,5.5104,6.368617 +L 5.5104,6.368617,5.9275,6.368617 +L 5.9275,6.368617,6.3548,6.368617 +L 0.8595,6.902544,0.8595,7.2726 +L 0.8595,7.2726,0.8595,7.625713 +L 0.8595,7.625713,0.8595,7.970288 +L 0.8595,7.970288,1.9904,7.970288 +L 1.9904,7.970288,3.1217,7.970288 +L 3.1217,7.970288,4.2495,7.970288 +L 4.2495,7.970288,4.2495,8.313463 +L 4.2495,8.313463,4.2495,8.656681 +L 4.2495,8.656681,4.2495,8.999922 +L 7.6363,6.902544,7.6363,7.2726 +L 7.6363,7.2726,7.6363,7.625713 +L 7.6363,7.625713,7.6363,7.970288 +L 7.6363,7.970288,6.635,7.970288 +L 6.635,7.970288,5.654,7.970288 +L 5.654,7.970288,4.6736,7.970288 + +[規] 48 +L 3.6389,0,4.6686,1.542348 +L 4.6686,1.542348,5.0465,2.372845 +L 5.0465,2.372845,5.1026,3.203386 +L 5.1026,3.203386,4.8332,3.203386 +L 4.8332,3.203386,4.553,3.203386 +L 4.553,3.203386,4.2798,3.203386 +L 4.2798,3.203386,4.2798,4.984449 +L 4.2798,4.984449,4.2798,6.748655 +L 4.2798,6.748655,4.2798,8.504347 +L 4.2798,8.504347,5.257,8.504347 +L 5.257,8.504347,6.2409,8.504347 +L 6.2409,8.504347,7.2429,8.504347 +L 7.2429,8.504347,7.2429,6.748655 +L 7.2429,6.748655,7.2429,4.984449 +L 7.2429,4.984449,7.2429,3.203386 +L 7.2429,3.203386,6.9449,3.203386 +L 6.9449,3.203386,6.6612,3.203386 +L 6.6612,3.203386,6.3845,3.203386 +L 6.3845,3.203386,6.3845,2.135488 +L 6.3845,2.135488,6.3845,1.067766 +L 6.3845,1.067766,6.3845,0 +L 6.3845,0,6.9449,0 +L 6.9449,0,7.5123,0 +L 7.5123,0,8.094,0 +L 8.094,0,8.094,0.533752 +L 8.094,0.533752,8.094,1.067766 +L 8.094,1.067766,8.094,1.601649 +L 0.865,0.533752,1.2887,1.678046 +L 1.2887,1.678046,1.716,2.821969 +L 1.716,2.821969,2.1433,3.966067 +L 2.1433,3.966067,1.8106,4.529567 +L 1.8106,4.529567,1.481,4.737219 +L 1.481,4.737219,0.865,4.766815 +L 3.4284,1.868624,3.131,2.324818 +L 3.131,2.324818,2.8473,2.772584 +L 2.8473,2.772584,2.5703,3.203386 +L 2.5703,4.766815,2.0484,5.87985 +L 2.0484,5.87985,1.8141,6.628455 +L 1.8141,6.628455,0.865,6.902544 +L 4.6788,5.300764,5.3796,5.300764 +L 5.3796,5.300764,6.0871,5.300764 +L 6.0871,5.300764,6.8121,5.300764 +L 2.5703,6.902544,2.2691,7.336061 +L 2.2691,7.336061,2.1574,7.879926 +L 2.1574,7.879926,2.1433,8.999922 +L 4.6788,6.902544,5.3796,6.902544 +L 5.3796,6.902544,6.0871,6.902544 +L 6.0871,6.902544,6.8121,6.902544 + + +# kan_15 ------------------------------------------------------- +# 技義逆久旧居許境興均群潔件券検険限護厚構耕講鉱混査再採災際在罪財桜酸師志支枝飼似示識舎謝授修述序承招 + +[技] 9 +L 1.4814,8.962026,1.4814,-0.038092 +L 1.4814,-0.038092,0.6619,-0.038092 +L 0.0034,3.661066,2.9626,5.51071 +L 0.0034,6.86443,2.9626,6.86443 +L 2.9626,7.398422,7.2041,7.398422 +L 5.0676,9.000093,5.0676,5.262781 +L 3.8176,5.262781,6.3183,5.262781 +A -1.489,6.518059,7.907044,303.98956,350.86544 +A 11.6242,6.518059,7.907044,195.07148,236.01043 + +[義] 45 +L 0.8562,-0.000003,2.1416,-0.000003 +L 2.1416,-0.000003,2.1174,1.120146 +L 2.1174,1.120146,1.9489,1.66388 +L 1.9489,1.66388,1.501,2.097506 +L 1.501,2.097506,0.9861,1.933613 +L 0.9861,1.933613,0.4919,1.752755 +L 0.4919,1.752755,0.0019,1.563513 +L 6.376,-0.000003,5.9557,0.532479 +L 5.9557,0.532479,5.5249,1.056468 +L 5.5249,1.056468,5.0976,1.563513 +L 5.0976,1.563513,4.5271,1.218959 +L 4.5271,1.218959,3.9702,0.865869 +L 3.9702,0.865869,3.4199,0.495813 +L 6.8068,-0.000003,6.8068,1.563513 +L 2.5653,2.097506,2.2715,2.631345 +L 2.2715,2.631345,1.9878,3.16525 +L 1.9878,3.16525,1.7107,3.699177 +L 1.7107,3.699177,0.0019,3.699177 +L 4.6668,2.36448,3.4094,3.716076 +L 3.4094,3.716076,1.9773,4.432174 +L 1.9773,4.432174,0.4324,4.76703 +L 4.6668,3.699177,4.3765,4.422346 +L 4.3765,4.422346,4.2465,4.76703 +L 5.0976,3.699177,6.8068,3.699177 +L 5.9557,4.76703,5.802,5.032495 +L 5.802,5.032495,5.658,5.28964 +L 5.658,5.28964,5.5249,5.529689 +L 5.5249,5.529689,3.6721,5.63275 +L 3.6721,5.63275,1.8368,5.718866 +L 1.8368,5.718866,0.0019,5.796554 +L 5.9557,5.796554,6.8068,5.796554 +L 3.4199,6.330459,3.0417,6.706141 +L 3.0417,6.706141,2.3727,6.844706 +L 2.3727,6.844706,0.8562,6.86443 +L 3.8157,6.86443,3.6721,7.131426 +L 3.6721,7.131426,3.5464,7.398422 +L 3.5464,7.398422,3.4199,7.665309 +L 3.4199,7.665309,2.4147,7.768259 +L 2.4147,7.768259,1.4165,7.854595 +L 1.4165,7.854595,0.4324,7.932239 +L 4.2465,6.86443,5.9557,6.86443 +L 3.8157,7.932239,4.436,8.149764 +L 4.436,8.149764,4.7649,8.426677 +L 4.7649,8.426677,5.0976,9.000093 +L 5.0976,7.932239,6.376,7.932239 + +[逆] 24 +L 3.2083,1.029718,3.6951,1.66677 +L 3.6951,1.66677,4.1928,2.286813 +L 4.1928,2.286813,4.7038,2.898407 +L 4.7038,2.898407,4.3539,3.461886 +L 4.3539,3.461886,3.9091,3.669603 +L 3.9091,3.669603,2.9946,3.699177 +L 2.9946,3.699177,2.9946,5.796554 +L 5.1245,3.699177,4.8303,4.192213 +L 4.8303,4.192213,4.7182,5.151118 +L 4.7182,5.151118,4.7038,7.398422 +L 4.7038,7.398422,2.14,7.398422 +L 5.5549,3.699177,6.3815,3.699177 +L 6.3815,3.699177,6.3815,5.796554 +L 5.3413,7.398422,5.9822,9.000093 +L 5.9822,7.398422,7.2361,7.398422 +L 3.8496,8.199214,3.6951,8.466122 +L 3.6951,8.466122,3.5554,8.733207 +L 3.5554,8.733207,3.4184,9.000093 +L 5.1206,-0.015195,7.2466,-0.015195 +L 1.2998,1.052462,0.2487,-0.000003 +L 0.0491,4.751729,1.2998,4.751729 +L 1.2998,1.052462,1.2998,4.751729 +L 0.4764,8.48913,1.2998,7.421254 +A 5.1206,7.347812,7.362973,238.75988,270 + +[久] 9 +L 0.2756,-0.000003,1.7183,1.603069 +L 1.7183,1.603069,3.6901,4.4605 +L 3.6901,4.4605,5.1296,7.131426 +L 5.1296,7.131426,1.7431,7.131426 +L 1.7431,7.131426,1.1719,6.176679 +L 1.1719,6.176679,0.615,5.213308 +L 0.615,5.213308,0.0616,4.233148 +L 6.8388,-0.000003,4.3066,3.16525 +L 2.1736,7.932239,2.1736,9.000093 + +[旧] 14 +L 0.4909,-0.000003,0.4909,8.466122 +L 3.0547,-0.000003,3.0547,8.466122 +L 3.0547,8.466122,4.3159,8.466122 +L 4.3159,8.466122,5.587,8.466122 +L 5.587,8.466122,6.8657,8.466122 +L 6.8657,8.466122,6.8657,5.644089 +L 6.8657,5.644089,6.8657,2.82201 +L 6.8657,2.82201,6.8657,-0.000003 +L 6.8657,-0.000003,5.587,-0.000003 +L 5.587,-0.000003,4.3159,-0.000003 +L 4.3159,-0.000003,3.0547,-0.000003 +L 3.447,4.233148,4.4382,4.233148 +L 4.4382,4.233148,5.4367,4.233148 +L 5.4367,4.233148,6.4419,4.233148 + +[居] 36 +L 0.094,0.266971,0.7941,3.03682 +L 0.7941,3.03682,0.9661,5.620184 +L 0.9661,5.620184,0.9482,8.466122 +L 0.9482,8.466122,2.7835,8.466122 +L 2.7835,8.466122,4.6086,8.466122 +L 4.6086,8.466122,6.4404,8.466122 +L 6.4404,8.466122,6.4404,7.932239 +L 6.4404,7.932239,6.4404,7.398422 +L 6.4404,7.398422,6.4404,6.86443 +L 6.4404,6.86443,5.7396,6.86443 +L 5.7396,6.86443,5.0391,6.86443 +L 5.0391,6.86443,4.3354,6.86443 +L 4.3354,6.86443,4.5176,5.185004 +L 4.5176,5.185004,5.2632,4.743017 +L 5.2632,4.743017,6.8674,4.76703 +L 2.1989,-0.000003,2.1989,0.877142 +L 2.1989,0.877142,2.1989,1.754287 +L 2.1989,1.754287,2.1989,2.631345 +L 2.1989,2.631345,2.9064,2.631345 +L 2.9064,2.631345,3.6136,2.631345 +L 3.6136,2.631345,4.3354,2.631345 +L 4.3354,2.631345,4.0444,4.473131 +L 4.0444,4.473131,3.1828,4.857372 +L 3.1828,4.857372,1.7751,4.76703 +L 2.6294,-0.000003,3.8868,-0.000003 +L 3.8868,-0.000003,5.1582,-0.000003 +L 5.1582,-0.000003,6.4404,-0.000003 +L 6.4404,-0.000003,6.4404,0.877142 +L 6.4404,0.877142,6.4404,1.754287 +L 6.4404,1.754287,6.4404,2.631345 +L 6.4404,2.631345,5.8692,2.631345 +L 5.8692,2.631345,5.3161,2.631345 +L 5.3161,2.631345,4.7624,2.631345 +L 1.3794,6.86443,2.2094,6.86443 +L 2.2094,6.86443,3.0532,6.86443 +L 3.0532,6.86443,3.9043,6.86443 + +[許] 53 +L 0.5229,-0.000003,0.5229,0.713249 +L 0.5229,0.713249,0.5229,1.409646 +L 0.5229,1.409646,0.5229,2.097506 +L 0.5229,2.097506,1.0833,2.097506 +L 1.0833,2.097506,1.6546,2.097506 +L 1.6546,2.097506,2.2321,2.097506 +L 2.2321,2.097506,2.2321,1.409646 +L 2.2321,1.409646,2.2321,0.713249 +L 2.2321,0.713249,2.2321,-0.000003 +L 2.2321,-0.000003,1.6546,-0.000003 +L 1.6546,-0.000003,1.0833,-0.000003 +L 1.0833,-0.000003,0.5229,-0.000003 +L 5.1882,-0.000003,5.1812,2.877152 +L 5.1812,2.877152,4.7013,4.025409 +L 4.7013,4.025409,3.0867,4.233148 +L 0.5229,3.699177,1.0833,3.699177 +L 1.0833,3.699177,1.6546,3.699177 +L 1.6546,3.699177,2.2321,3.699177 +L 5.6193,4.233148,5.3143,4.706263 +L 5.3143,4.706263,5.2022,5.526866 +L 5.2022,5.526866,5.1882,7.398422 +L 5.1882,7.398422,4.6176,7.398422 +L 4.6176,7.398422,4.0639,7.398422 +L 4.0639,7.398422,3.5105,7.398422 +L 3.5105,7.398422,3.4968,6.627116 +L 3.4968,6.627116,3.3848,6.211835 +L 3.3848,6.211835,3.0867,5.796554 +L 6.0428,4.233148,6.4736,4.233148 +L 6.4736,4.233148,6.8977,4.233148 +L 6.8977,4.233148,7.3247,4.233148 +L 0.5229,5.262781,1.0833,5.262781 +L 1.0833,5.262781,1.6546,5.262781 +L 1.6546,5.262781,2.2321,5.262781 +L 0.1271,6.86443,0.9572,6.86443 +L 0.9572,6.86443,1.8052,6.86443 +L 1.8052,6.86443,2.6594,6.86443 +L 5.6193,7.398422,6.0428,7.398422 +L 6.0428,7.398422,6.4736,7.398422 +L 6.4736,7.398422,6.8977,7.398422 +L 3.9417,7.932239,3.9417,8.302362 +L 3.9417,8.302362,3.9417,8.655431 +L 3.9417,8.655431,3.9417,9.000093 +L 0.5229,8.466122,1.0833,8.466122 +L 1.0833,8.466122,1.6546,8.466122 +L 1.6546,8.466122,2.2321,8.466122 +L 0.096,6.902519,2.6279,6.902519 +L 0.5229,8.504299,2.2009,8.504299 +L 0.5229,5.300957,2.2009,5.300957 +L 0.5229,4.233038,2.2009,4.233038 +L 0.5229,2.669522,2.2009,2.669522 +L 0.5229,-0.000003,0.5229,2.669522 +L 2.2009,-0.000003,0.5229,-0.000003 +L 2.2009,2.669522,2.2009,-0.000003 + +[境] 60 +L 2.4443,-0.000003,2.9346,0.532479 +L 2.9346,0.532479,3.4319,1.056468 +L 3.4319,1.056468,3.9363,1.563513 +L 3.9363,1.563513,3.9363,1.933613 +L 3.9363,1.933613,3.9363,2.286813 +L 3.9363,2.286813,3.9363,2.631345 +L 3.9363,2.631345,3.6421,2.631345 +L 3.6421,2.631345,3.3622,2.631345 +L 3.3622,2.631345,3.0852,2.631345 +L 3.0852,2.631345,3.0852,3.354514 +L 3.0852,3.354514,3.0852,4.069211 +L 3.0852,4.069211,3.0852,4.76703 +L 3.0852,4.76703,4.2165,4.76703 +L 4.2165,4.76703,5.3513,4.76703 +L 5.3513,4.76703,6.5004,4.76703 +L 6.5004,4.76703,6.5004,4.069211 +L 6.5004,4.069211,6.5004,3.354514 +L 6.5004,3.354514,6.5004,2.631345 +L 6.5004,2.631345,6.0766,2.631345 +L 6.0766,2.631345,5.6455,2.631345 +L 5.6455,2.631345,5.2217,2.631345 +L 5.2217,2.631345,5.2676,0.779643 +L 5.2676,0.779643,5.7891,0.097518 +L 5.7891,0.097518,7.3267,-0.000003 +L 7.3267,-0.000003,7.3267,0.343259 +L 7.3267,0.343259,7.3267,0.686477 +L 7.3267,0.686477,7.3267,1.029718 +L 0.126,2.097506,0.4023,2.097506 +L 0.4023,2.097506,0.686,2.097506 +L 0.686,2.097506,0.9802,2.097506 +L 0.9802,2.097506,0.9802,3.344685 +L 0.9802,3.344685,0.9802,4.574921 +L 0.9802,4.574921,0.9802,5.796554 +L 0.9802,5.796554,0.686,5.98584 +L 0.686,5.98584,0.4023,6.166829 +L 0.4023,6.166829,0.126,6.330459 +L 3.5164,3.699177,4.3675,3.699177 +L 4.3675,3.699177,5.2217,3.699177 +L 5.2217,3.699177,6.0766,3.699177 +L 1.4114,6.330459,1.1067,6.78534 +L 1.1067,6.78534,0.9946,7.477534 +L 0.9946,7.477534,0.9802,9.000093 +L 2.6579,6.330459,3.0852,6.433585 +L 3.0852,6.433585,3.5164,6.519832 +L 3.5164,6.519832,3.9363,6.597522 +L 3.9363,6.597522,3.6106,7.358867 +L 3.6106,7.358867,3.2778,7.704734 +L 3.2778,7.704734,2.6579,7.932239 +L 4.3675,6.330459,4.7944,6.433585 +L 4.7944,6.433585,5.2217,6.519832 +L 5.2217,6.519832,5.6455,6.597522 +L 5.6455,6.597522,5.7751,6.967468 +L 5.7751,6.967468,5.926,7.320777 +L 5.926,7.320777,6.0766,7.665309 +L 6.0766,7.665309,5.3513,7.768259 +L 5.3513,7.768259,4.6438,7.854595 +L 4.6438,7.854595,3.9363,7.932239 +L 6.0766,6.330459,6.4826,6.330459 +L 6.4826,6.330459,6.8994,6.330459 +L 6.8994,6.330459,7.3267,6.330459 + +[興] 63 +L 0.3693,-0.000003,0.9892,0.532479 +L 0.9892,0.532479,1.6197,1.056468 +L 1.6197,1.056468,2.2641,1.563513 +L 6.5056,-0.000003,5.935,0.532479 +L 5.935,0.532479,5.3743,1.056468 +L 5.3743,1.056468,4.8244,1.563513 +L 0.583,2.631345,0.646,4.412342 +L 0.646,4.412342,0.7129,6.176679 +L 0.7129,6.176679,0.7966,7.932239 +L 0.7966,7.932239,1.1328,8.302362 +L 1.1328,8.302362,1.4799,8.655431 +L 1.4799,8.655431,1.8337,9.000093 +L 1.0103,2.631345,1.413,2.631345 +L 1.413,2.631345,1.8337,2.631345 +L 1.8337,2.631345,2.2641,2.631345 +L 2.2641,2.631345,2.2641,4.412342 +L 2.2641,4.412342,2.2641,6.176679 +L 2.2641,6.176679,2.2641,7.932239 +L 2.2641,7.932239,3.1152,7.932239 +L 3.1152,7.932239,3.9733,7.932239 +L 3.9733,7.932239,4.8244,7.932239 +L 4.8244,7.932239,4.8244,6.176679 +L 4.8244,6.176679,4.8244,4.412342 +L 4.8244,4.412342,4.8244,2.631345 +L 4.8244,2.631345,5.3743,2.631345 +L 5.3743,2.631345,5.935,2.631345 +L 5.935,2.631345,6.5056,2.631345 +L 6.5056,2.631345,6.5056,3.354514 +L 6.5056,3.354514,6.5056,4.069211 +L 6.5056,4.069211,6.5056,4.76703 +L 6.5056,4.76703,6.2082,4.76703 +L 6.2082,4.76703,5.9245,4.76703 +L 5.9245,4.76703,5.6475,4.76703 +L 2.6848,2.631345,3.2448,2.631345 +L 3.2448,2.631345,3.8196,2.631345 +L 3.8196,2.631345,4.3936,2.631345 +L 3.1152,3.699177,3.1152,4.231681 +L 3.1152,4.231681,3.1152,4.75567 +L 3.1152,4.75567,3.1152,5.262781 +L 3.1152,5.262781,3.3923,5.262781 +L 3.3923,5.262781,3.676,5.262781 +L 3.676,5.262781,3.9733,5.262781 +L 3.9733,5.262781,3.9733,4.75567 +L 3.9733,4.75567,3.9733,4.231681 +L 3.9733,4.231681,3.9733,3.699177 +L 3.9733,3.699177,3.676,3.699177 +L 3.676,3.699177,3.3923,3.699177 +L 3.3923,3.699177,3.1152,3.699177 +L 6.5056,5.262781,6.5056,5.63275 +L 6.5056,5.63275,6.5056,5.98584 +L 6.5056,5.98584,6.5056,6.330459 +L 6.5056,6.330459,6.2082,6.330459 +L 6.2082,6.330459,5.9245,6.330459 +L 5.9245,6.330459,5.6475,6.330459 +L 3.1152,6.330459,3.3923,6.330459 +L 3.3923,6.330459,3.676,6.330459 +L 3.676,6.330459,3.9733,6.330459 +L 6.5056,6.86443,6.5056,7.23442 +L 6.5056,7.23442,6.5056,7.587643 +L 6.5056,7.587643,6.5056,7.932239 +L 6.5056,7.932239,6.2082,7.932239 +L 6.2082,7.932239,5.9245,7.932239 +L 5.9245,7.932239,5.6475,7.932239 + +[均] +L 5.2537,-0.000003,6.9034,1.452004 +L 6.9034,1.452004,7.1205,4.54804 +L 7.1205,4.54804,6.9629,7.398422 +L 6.9629,7.398422,5.6814,7.320777 +L 5.6814,7.320777,4.4026,7.23442 +L 4.4026,7.23442,3.1421,7.131426 +L 3.1421,7.131426,2.851,6.519832 +L 2.851,6.519832,2.5673,5.899724 +L 2.5673,5.899724,2.291,5.262781 +L 0.1577,2.097506,0.4343,2.097506 +L 0.4343,2.097506,0.7145,2.097506 +L 0.7145,2.097506,1.0123,2.097506 +L 1.0123,2.097506,1.0123,3.344685 +L 1.0123,3.344685,1.0123,4.574921 +L 1.0123,4.574921,1.0123,5.796554 +L 1.0123,5.796554,0.7145,5.98584 +L 0.7145,5.98584,0.4343,6.166829 +L 0.4343,6.166829,0.1577,6.330459 +L 3.1421,2.097506,4.1648,2.235874 +L 4.1648,2.235874,4.9213,2.492932 +L 4.9213,2.492932,5.6775,2.631345 +L 4.8229,4.76703,4.4902,5.115875 +L 4.4902,5.115875,4.1648,5.244327 +L 4.1648,5.244327,3.5725,5.262781 +L 1.436,6.330459,1.1387,6.78534 +L 1.1387,6.78534,1.0266,7.477534 +L 1.0266,7.477534,1.0123,9.000093 +L 3.5725,7.932239,3.5725,8.302362 +L 3.5725,8.302362,3.5725,8.655431 +L 3.5725,8.655431,3.5725,9.000093 + +[群] 69 +L 5.711,-0.000003,5.627,1.885651 +L 5.627,1.885651,5.1647,2.550898 +L 5.1647,2.550898,4.0022,2.631345 +L 1.0426,0.495813,0.9586,1.218959 +L 0.9586,1.218959,0.8917,1.933613 +L 0.8917,1.933613,0.8251,2.631345 +L 0.8251,2.631345,0.6153,2.286813 +L 0.6153,2.286813,0.4013,1.933613 +L 0.4013,1.933613,0.1915,1.563513 +L 1.4699,0.495813,1.8762,0.495813 +L 1.8762,0.495813,2.2965,0.495813 +L 2.2965,0.495813,2.7164,0.495813 +L 2.7164,0.495813,2.7164,1.563513 +L 2.7164,1.563513,2.7164,2.631345 +L 2.7164,2.631345,2.7164,3.699177 +L 2.7164,3.699177,2.1455,3.535437 +L 2.1455,3.535437,1.5925,3.354514 +L 1.5925,3.354514,1.0426,3.16525 +L 6.1348,2.631345,5.613,3.744315 +L 5.613,3.744315,5.3787,4.492986 +L 5.3787,4.492986,4.426,4.76703 +L 6.531,2.631345,6.8073,2.631345 +L 6.8073,2.631345,7.0875,2.631345 +L 7.0875,2.631345,7.3887,2.631345 +L 1.0426,4.233148,1.0426,4.576279 +L 1.0426,4.576279,1.0426,4.919431 +L 1.0426,4.919431,1.0426,5.262781 +L 1.0426,5.262781,0.7446,5.262781 +L 0.7446,5.262781,0.4609,5.262781 +L 0.4609,5.262781,0.1915,5.262781 +L 6.1348,4.76703,5.8375,5.175132 +L 5.8375,5.175132,5.7286,5.718866 +L 5.7286,5.718866,5.711,6.86443 +L 5.711,6.86443,5.2802,6.86443 +L 5.2802,6.86443,4.8564,6.86443 +L 4.8564,6.86443,4.426,6.86443 +L 1.4699,5.262781,1.319,6.457642 +L 1.319,6.457642,0.8882,6.83895 +L 0.8882,6.83895,0.1915,6.86443 +L 1.8972,5.262781,2.1701,5.262781 +L 2.1701,5.262781,2.4436,5.262781 +L 2.4436,5.262781,2.7164,5.262781 +L 2.7164,5.262781,2.7164,5.63275 +L 2.7164,5.63275,2.7164,5.98584 +L 2.7164,5.98584,2.7164,6.330459 +L 2.7164,6.330459,2.2965,6.700602 +L 2.2965,6.700602,1.8762,7.053715 +L 1.8762,7.053715,1.4699,7.398422 +L 1.4699,7.398422,1.4699,7.768259 +L 1.4699,7.768259,1.4699,8.121416 +L 1.4699,8.121416,1.4699,8.466122 +L 1.4699,8.466122,1.0426,8.466122 +L 1.0426,8.466122,0.6153,8.466122 +L 0.6153,8.466122,0.1915,8.466122 +L 3.1476,6.86443,2.8429,7.27969 +L 2.8429,7.27969,2.734,7.694927 +L 2.734,7.694927,2.7164,8.466122 +L 2.7164,8.466122,2.4436,8.466122 +L 2.4436,8.466122,2.1701,8.466122 +L 2.1701,8.466122,1.8972,8.466122 +L 6.1348,6.86443,6.2574,7.587643 +L 6.2574,7.587643,6.3874,8.302362 +L 6.3874,8.302362,6.531,9.000093 +L 6.531,6.86443,6.8073,6.86443 +L 6.8073,6.86443,7.0875,6.86443 +L 7.0875,6.86443,7.3887,6.86443 +L 4.8564,8.199214,4.7062,8.466122 +L 4.7062,8.466122,4.5552,8.733207 +L 4.5552,8.733207,4.426,9.000093 + +[潔] 42 +L 0.2177,-0.000003,0.4313,1.546658 +L 0.4313,1.546658,0.8306,2.915262 +L 0.8306,2.915262,1.0446,4.233148 +L 2.109,-0.000003,2.4558,0.343259 +L 2.4558,0.343259,2.8095,0.686477 +L 2.8095,0.686477,3.1738,1.029718 +L 4.4592,-0.000003,4.1408,1.865862 +L 4.1408,1.865862,3.2512,2.21475 +L 3.2512,2.21475,1.8957,2.097506 +L 6.5641,-0.000003,6.2703,0.343259 +L 6.2703,0.343259,5.9866,0.686477 +L 5.9866,0.686477,5.7095,1.029718 +L 7.4191,1.563513,6.2524,2.340401 +L 6.2524,2.340401,4.7922,2.89694 +L 4.7922,2.89694,3.1738,4.233148 +L 4.8549,3.16525,5.132,3.535437 +L 5.132,3.535437,5.4157,3.888397 +L 5.4157,3.888397,5.7095,4.233148 +L 4.0319,4.233148,4.925,5.627233 +L 4.925,5.627233,5.5064,6.84324 +L 5.5064,6.84324,5.7095,8.466122 +L 5.7095,8.466122,6.1368,8.466122 +L 6.1368,8.466122,6.5641,8.466122 +L 6.5641,8.466122,6.9918,8.466122 +L 6.9918,8.466122,6.9918,7.587643 +L 6.9918,7.587643,6.9918,6.700602 +L 6.9918,6.700602,6.9918,5.796554 +L 6.9918,5.796554,6.6941,5.63275 +L 6.6941,5.63275,6.4135,5.451935 +L 6.4135,5.451935,6.1368,5.262781 +L 1.8957,5.262781,2.323,5.262781 +L 2.323,5.262781,2.7535,5.262781 +L 2.7535,5.262781,3.1738,5.262781 +L 3.1738,5.262781,3.1461,6.033954 +L 3.1461,6.033954,2.9254,6.449149 +L 2.9254,6.449149,2.323,6.86443 +L 3.6046,6.86443,2.9741,7.615925 +L 2.9741,7.615925,2.5293,7.892706 +L 2.5293,7.892706,1.8957,7.932239 +L 3.6046,7.932239,3.4543,8.302362 +L 3.4543,8.302362,3.3072,8.655431 +L 3.3072,8.655431,3.1738,9.000093 + +[件] 30 +L 1.0708,-0.000003,0.9902,1.943529 +L 0.9902,1.943529,0.924,3.878503 +L 0.924,3.878503,0.8575,5.796554 +L 0.8575,5.796554,0.647,5.63275 +L 0.647,5.63275,0.4298,5.451935 +L 0.4298,5.451935,0.2165,5.262781 +L 4.885,-0.000003,4.8258,2.738695 +L 4.8258,2.738695,4.2058,3.630091 +L 4.2058,3.630091,2.3527,3.699177 +L 5.3126,3.699177,4.6647,5.384206 +L 4.6647,5.384206,4.4892,6.47603 +L 4.4892,6.47603,2.7803,6.86443 +L 2.7803,6.86443,2.7628,6.093277 +L 2.7628,6.093277,2.6539,5.678018 +L 2.6539,5.678018,2.3527,5.262781 +L 5.7434,3.699177,6.2898,3.699177 +L 6.2898,3.699177,6.8463,3.699177 +L 6.8463,3.699177,7.4176,3.699177 +L 1.0708,6.597522,1.3478,7.398422 +L 1.3478,7.398422,1.6315,8.199214 +L 1.6315,8.199214,1.9219,9.000093 +L 5.3126,6.86443,5.0114,7.299434 +L 5.0114,7.299434,4.9025,7.853281 +L 4.9025,7.853281,4.885,9.000093 +L 5.7434,6.86443,6.1672,6.86443 +L 6.1672,6.86443,6.5945,6.86443 +L 6.5945,6.86443,7.0215,6.86443 +L 3.2111,7.398422,3.2111,7.768259 +L 3.2111,7.768259,3.2111,8.121416 +L 3.2111,8.121416,3.2111,8.466122 + +[券] 51 +L 1.3145,-0.000003,2.3127,0.939245 +L 2.3127,0.939245,2.838,1.819214 +L 2.838,1.819214,3.2061,3.16525 +L 3.2061,3.16525,2.2916,3.185039 +L 2.2916,3.185039,1.8542,3.323429 +L 1.8542,3.323429,1.5285,3.699177 +L 1.5285,3.699177,1.1047,3.354514 +L 1.1047,3.354514,0.6774,3.001488 +L 0.6774,3.001488,0.2501,2.631345 +L 4.0607,-0.000003,4.5507,0.1031 +L 4.5507,0.1031,5.0376,0.189282 +L 5.0376,0.189282,5.5244,0.266971 +L 5.5244,0.266971,5.5874,1.247198 +L 5.5874,1.247198,5.6578,2.210482 +L 5.6578,2.210482,5.7419,3.16525 +L 5.7419,3.16525,5.0376,3.16525 +L 5.0376,3.16525,4.3371,3.16525 +L 4.3371,3.16525,3.6369,3.16525 +L 7.02,2.631345,6.4494,3.432224 +L 6.4494,3.432224,5.8957,4.233148 +L 5.8957,4.233148,5.3423,5.034005 +L 5.3423,5.034005,4.3371,5.034005 +L 4.3371,5.034005,3.3354,5.034005 +L 3.3354,5.034005,2.355,5.034005 +L 2.355,5.034005,2.2041,4.76703 +L 2.2041,4.76703,2.0573,4.500013 +L 2.0573,4.500013,1.9274,4.233148 +L 0.2501,5.262781,0.7999,5.262781 +L 0.7999,5.262781,1.3565,5.262781 +L 1.3565,5.262781,1.9274,5.262781 +L 5.7419,5.262781,6.2984,5.262781 +L 6.2984,5.262781,6.8697,5.262781 +L 6.8697,5.262781,7.4473,5.262781 +L 2.7823,5.796554,2.9116,6.734576 +L 2.9116,6.734576,1.8717,6.918126 +L 1.8717,6.918126,1.1047,6.86443 +L 4.915,5.796554,4.5686,6.389848 +L 4.5686,6.389848,4.1269,6.805151 +L 4.1269,6.805151,3.2061,7.398422 +L 3.2061,7.398422,3.507,7.813594 +L 3.507,7.813594,3.6191,8.228919 +L 3.6191,8.228919,3.6369,9.000093 +L 4.915,6.86443,5.4649,6.86443 +L 5.4649,6.86443,6.0256,6.86443 +L 6.0256,6.86443,6.5962,6.86443 +L 1.9274,8.199214,1.7838,8.466122 +L 1.7838,8.466122,1.651,8.733207 +L 1.651,8.733207,1.5285,9.000093 +L 5.3423,7.932239,5.4649,8.302362 +L 5.4649,8.302362,5.5983,8.655431 +L 5.5983,8.655431,5.7419,9.000093 + +[検] 54 +L 1.1032,-0.000003,1.0191,1.600289 +L 1.0191,1.600289,0.9522,3.192022 +L 0.9522,3.192022,0.8892,4.76703 +L 0.8892,4.76703,0.6759,4.422346 +L 0.6759,4.422346,0.4727,4.069211 +L 0.4727,4.069211,0.2797,3.699177 +L 3.026,-0.000003,3.6456,0.877142 +L 3.6456,0.877142,4.2799,1.754287 +L 4.2799,1.754287,4.917,2.631345 +L 4.917,2.631345,4.5671,3.007114 +L 4.5671,3.007114,4.1359,3.145439 +L 4.1359,3.145439,3.2393,3.16525 +L 3.2393,3.16525,3.2393,3.699177 +L 3.2393,3.699177,3.2393,4.233148 +L 3.2393,4.233148,3.2393,4.76703 +L 3.2393,4.76703,4.1359,4.785287 +L 4.1359,4.785287,4.5671,4.913915 +L 4.5671,4.913915,4.917,5.262781 +L 4.917,5.262781,4.917,5.63275 +L 4.917,5.63275,4.917,5.98584 +L 4.917,5.98584,4.917,6.330459 +L 4.917,6.330459,3.4845,6.474607 +L 3.4845,6.474607,2.1255,6.618667 +L 2.1255,6.618667,1.1032,6.330459 +L 1.1032,6.330459,1.2779,5.56073 +L 1.2779,5.56073,1.4986,5.15543 +L 1.4986,5.15543,1.9543,4.76703 +L 6.6265,-0.000003,6.1989,0.713249 +L 6.1989,0.713249,5.7681,1.409646 +L 5.7681,1.409646,5.3443,2.097506 +L 5.3443,3.16525,5.0606,3.758412 +L 5.0606,3.758412,5.0606,4.173715 +L 5.0606,4.173715,5.3443,4.76703 +L 5.3443,4.76703,5.7681,4.76703 +L 5.7681,4.76703,6.1989,4.76703 +L 6.1989,4.76703,6.6265,4.76703 +L 6.6265,4.76703,6.6265,4.233148 +L 6.6265,4.233148,6.6265,3.699177 +L 6.6265,3.699177,6.6265,3.16525 +L 6.6265,3.16525,6.1989,3.16525 +L 6.1989,3.16525,5.7681,3.16525 +L 5.7681,3.16525,5.3443,3.16525 +L 5.3443,6.330459,5.9611,6.350357 +L 5.9611,6.350357,6.2934,6.488726 +L 6.2934,6.488726,6.6265,6.86443 +L 6.6265,6.86443,6.0451,7.587643 +L 6.0451,7.587643,5.4742,8.302362 +L 5.4742,8.302362,4.917,9.000093 +L 4.917,9.000093,4.4897,8.466122 +L 4.4897,8.466122,4.0729,7.932239 +L 4.0729,7.932239,3.6631,7.398422 +L 0.4619,6.86443,0.9137,7.299434 +L 0.9137,7.299434,1.0783,7.853281 +L 1.0783,7.853281,1.1032,9.000093 + +[険] 54 +L 0.2817,-0.000003,0.2817,2.82201 +L 0.2817,2.82201,0.2817,5.644089 +L 0.2817,5.644089,0.2817,8.466122 +L 0.2817,8.466122,0.8351,8.466122 +L 0.8351,8.466122,1.4099,8.466122 +L 1.4099,8.466122,1.9913,8.466122 +L 1.9913,8.466122,1.5426,6.097524 +L 1.5426,6.097524,1.7633,4.79667 +L 1.7633,4.79667,1.9913,2.631345 +L 1.9913,2.631345,1.6936,2.467605 +L 1.6936,2.467605,1.4099,2.286813 +L 1.4099,2.286813,1.1328,2.097506 +L 2.6007,-0.000003,3.3677,0.877142 +L 3.3677,0.877142,4.1519,1.754287 +L 4.1519,1.754287,4.9473,2.631345 +L 4.9473,2.631345,4.5968,3.007114 +L 4.5968,3.007114,4.1593,3.145439 +L 4.1593,3.145439,3.2378,3.16525 +L 3.2378,3.16525,3.2378,3.699177 +L 3.2378,3.699177,3.2378,4.233148 +L 3.2378,4.233148,3.2378,4.76703 +L 3.2378,4.76703,4.1593,4.785287 +L 4.1593,4.785287,4.5968,4.913915 +L 4.5968,4.913915,4.9473,5.262781 +L 4.9473,5.262781,4.9473,5.63275 +L 4.9473,5.63275,4.9473,5.98584 +L 4.9473,5.98584,4.9473,6.330459 +L 4.9473,6.330459,3.9033,6.449149 +L 3.9033,6.449149,3.1537,6.567859 +L 3.1537,6.567859,2.4112,6.330459 +L 6.8383,0.266971,6.3483,0.877142 +L 6.3483,0.877142,5.8615,1.487335 +L 5.8615,1.487335,5.3746,2.097506 +L 5.3746,3.16525,5.0871,3.758412 +L 5.0871,3.758412,5.0871,4.173715 +L 5.0871,4.173715,5.3746,4.76703 +L 5.3746,4.76703,5.8019,4.76703 +L 5.8019,4.76703,6.2292,4.76703 +L 6.2292,4.76703,6.6562,4.76703 +L 6.6562,4.76703,6.6562,4.233148 +L 6.6562,4.233148,6.6562,3.699177 +L 6.6562,3.699177,6.6562,3.16525 +L 6.6562,3.16525,6.2292,3.16525 +L 6.2292,3.16525,5.8019,3.16525 +L 5.8019,3.16525,5.3746,3.16525 +L 5.3746,6.330459,5.9942,6.350357 +L 5.9942,6.350357,6.32,6.488726 +L 6.32,6.488726,6.6562,6.86443 +L 6.6562,6.86443,6.0748,7.587643 +L 6.0748,7.587643,5.5074,8.302362 +L 5.5074,8.302362,4.9473,9.000093 +L 4.9473,9.000093,4.5236,8.466122 +L 4.5236,8.466122,4.0924,7.932239 +L 4.0924,7.932239,3.6651,7.398422 + +[限] 45 +L 0.3083,-0.000003,0.3083,2.82201 +L 0.3083,2.82201,0.3083,5.644089 +L 0.3083,5.644089,0.3083,8.466122 +L 0.3083,8.466122,0.862,8.466122 +L 0.862,8.466122,1.415,8.466122 +L 1.415,8.466122,1.9859,8.466122 +L 1.9859,8.466122,1.5551,6.131366 +L 1.5551,6.131366,1.7726,4.762806 +L 1.7726,4.762806,1.9859,2.631345 +L 1.9859,2.631345,1.7131,2.467605 +L 1.7131,2.467605,1.4395,2.286813 +L 1.4395,2.286813,1.1593,2.097506 +L 2.4171,-0.000003,2.6934,-0.000003 +L 2.6934,-0.000003,2.9736,-0.000003 +L 2.9736,-0.000003,3.2717,-0.000003 +L 3.2717,-0.000003,3.2717,2.82201 +L 3.2717,2.82201,3.2717,5.644089 +L 3.2717,5.644089,3.2717,8.466122 +L 3.2717,8.466122,4.3956,8.466122 +L 4.3956,8.466122,5.5269,8.466122 +L 5.5269,8.466122,6.655,8.466122 +L 6.655,8.466122,6.655,7.398422 +L 6.655,7.398422,6.655,6.330459 +L 6.655,6.330459,6.655,5.262781 +L 6.655,5.262781,6.0841,5.262781 +L 6.0841,5.262781,5.5269,5.262781 +L 5.5269,5.262781,4.9805,5.262781 +L 4.9805,5.262781,5.0089,4.103053 +L 5.0089,4.103053,5.2222,3.282517 +L 5.2222,3.282517,5.8004,2.097506 +L 5.8004,2.097506,6.2277,2.631345 +L 6.2277,2.631345,6.655,3.16525 +L 6.655,3.16525,7.0855,3.699177 +L 7.5058,-0.000003,7.0855,0.532479 +L 7.0855,0.532479,6.655,1.056468 +L 6.655,1.056468,6.2277,1.563513 +L 3.9088,0.495813,4.2555,0.685054 +L 4.2555,0.685054,4.6163,0.865869 +L 4.6163,0.865869,4.9805,1.029718 +L 3.6955,5.262781,3.9718,5.262781 +L 3.9718,5.262781,4.2555,5.262781 +L 4.2555,5.262781,4.5501,5.262781 +L 3.6955,6.86443,4.5291,6.86443 +L 4.5291,6.86443,5.3766,6.86443 +L 5.3766,6.86443,6.2277,6.86443 + +[護] 98 +L 0.734,-0.000003,0.734,0.713249 +L 0.734,0.713249,0.734,1.409646 +L 0.734,1.409646,0.734,2.097506 +L 0.734,2.097506,1.1652,2.097506 +L 1.1652,2.097506,1.5925,2.097506 +L 1.5925,2.097506,2.0198,2.097506 +L 2.0198,2.097506,2.0198,1.409646 +L 2.0198,1.409646,2.0198,0.713249 +L 2.0198,0.713249,2.0198,-0.000003 +L 2.0198,-0.000003,1.5925,-0.000003 +L 1.5925,-0.000003,1.1652,-0.000003 +L 1.1652,-0.000003,0.734,-0.000003 +L 2.874,-0.000003,4.0684,0.018385 +L 4.0684,0.018385,4.6148,0.146815 +L 4.6148,0.146815,4.979,0.495813 +L 4.979,0.495813,4.3486,1.444868 +L 4.3486,1.444868,3.9108,1.860215 +L 3.9108,1.860215,3.2978,2.097506 +L 5.8336,-0.000003,5.6834,0.179344 +L 5.6834,0.179344,5.5363,0.341858 +L 5.5363,0.341858,5.4063,0.495813 +L 5.4063,0.495813,5.6834,0.952051 +L 5.6834,0.952051,5.9636,1.399686 +L 5.9636,1.399686,6.2574,1.830575 +L 6.2574,1.830575,5.6834,1.933613 +L 5.6834,1.933613,5.1051,2.019729 +L 5.1051,2.019729,4.5486,2.097506 +L 6.2574,-0.000003,6.6847,-0.000003 +L 6.6847,-0.000003,7.1124,-0.000003 +L 7.1124,-0.000003,7.5432,-0.000003 +L 3.7286,3.16525,3.6446,4.042505 +L 3.6446,4.042505,3.5749,4.919431 +L 3.5749,4.919431,3.5153,5.796554 +L 3.5153,5.796554,3.2978,5.63275 +L 3.2978,5.63275,3.088,5.451935 +L 3.088,5.451935,2.874,5.262781 +L 4.1248,3.16525,4.5486,3.268419 +L 4.5486,3.268419,4.979,3.354514 +L 4.979,3.354514,5.4063,3.432224 +L 5.4063,3.432224,5.0739,3.995879 +L 5.0739,3.995879,4.7409,4.203377 +L 4.7409,4.203377,4.1248,4.233148 +L 5.8336,3.16525,6.394,3.16525 +L 6.394,3.16525,6.9614,3.16525 +L 6.9614,3.16525,7.5432,3.16525 +L 0.734,3.699177,1.1652,3.699177 +L 1.1652,3.699177,1.5925,3.699177 +L 1.5925,3.699177,2.0198,3.699177 +L 5.8336,4.233148,5.1997,4.957695 +L 5.1997,4.957695,4.7549,5.22467 +L 4.7549,5.22467,4.1248,5.262781 +L 6.2574,4.233148,6.5341,4.233148 +L 6.5341,4.233148,6.8147,4.233148 +L 6.8147,4.233148,7.1124,4.233148 +L 0.734,5.262781,1.1652,5.262781 +L 1.1652,5.262781,1.5925,5.262781 +L 1.5925,5.262781,2.0198,5.262781 +L 5.8336,5.262781,5.4694,5.84607 +L 5.4694,5.84607,4.923,6.192046 +L 4.923,6.192046,3.7286,6.597522 +L 3.7286,6.597522,3.9878,7.180745 +L 3.9878,7.180745,3.9878,7.526831 +L 3.9878,7.526831,3.7286,7.932239 +L 3.7286,7.932239,3.4313,7.932239 +L 3.4313,7.932239,3.1511,7.932239 +L 3.1511,7.932239,2.874,7.932239 +L 6.2574,5.262781,6.5341,5.262781 +L 6.5341,5.262781,6.8147,5.262781 +L 6.8147,5.262781,7.1124,5.262781 +L 5.8336,6.330459,6.394,6.330459 +L 6.394,6.330459,6.9614,6.330459 +L 6.9614,6.330459,7.5432,6.330459 +L 0.3141,6.86443,1.0142,6.86443 +L 1.0142,6.86443,1.7217,6.86443 +L 1.7217,6.86443,2.4436,6.86443 +L 4.5486,7.932239,4.3976,8.302362 +L 4.3976,8.302362,4.254,8.655431 +L 4.254,8.655431,4.1248,9.000093 +L 4.979,7.932239,5.4063,7.932239 +L 5.4063,7.932239,5.8336,7.932239 +L 5.8336,7.932239,6.2574,7.932239 +L 6.2574,7.932239,6.2574,8.302362 +L 6.2574,8.302362,6.2574,8.655431 +L 6.2574,8.655431,6.2574,9.000093 +L 6.6847,7.932239,6.9614,7.932239 +L 6.9614,7.932239,7.2451,7.932239 +L 7.2451,7.932239,7.5432,7.932239 +L 0.734,8.466122,1.1652,8.466122 +L 1.1652,8.466122,1.5925,8.466122 +L 1.5925,8.466122,2.0198,8.466122 +L 0.3141,6.902519,2.839,6.902519 +L 0.734,8.504299,2.4152,8.504299 +L 0.734,5.300957,2.4152,5.300957 +L 0.734,4.233038,2.4152,4.233038 +L 0.734,2.669522,2.4152,2.669522 +L 0.734,-0.000003,0.734,2.669522 +L 2.4152,-0.000003,0.734,-0.000003 +L 2.4152,2.669522,2.4152,-0.000003 + +[厚] 39 +L 0.3403,0.266971,1.0373,3.03682 +L 1.0373,3.03682,1.2092,5.620184 +L 1.2092,5.620184,1.1914,8.466122 +L 1.1914,8.466122,3.3033,8.466122 +L 3.3033,8.466122,5.4157,8.466122 +L 5.4157,8.466122,7.5382,8.466122 +L 3.2963,-0.000003,3.7271,-0.000003 +L 3.7271,-0.000003,4.1544,-0.000003 +L 4.1544,-0.000003,4.5821,-0.000003 +L 4.5821,-0.000003,4.186,1.916648 +L 4.186,1.916648,3.1352,2.240056 +L 3.1352,2.240056,1.6222,2.097506 +L 5.0094,2.097506,4.8549,2.286813 +L 4.8549,2.286813,4.7117,2.467605 +L 4.7117,2.467605,4.5821,2.631345 +L 4.5821,2.631345,5.0094,3.087605 +L 5.0094,3.087605,5.4367,3.535437 +L 5.4367,3.535437,5.864,3.966086 +L 5.864,3.966086,4.5821,4.069211 +L 4.5821,4.069211,3.3107,4.155481 +L 3.3107,4.155481,2.0495,4.233148 +L 5.4367,2.097506,6.1368,2.097506 +L 6.1368,2.097506,6.8377,2.097506 +L 6.8377,2.097506,7.5382,2.097506 +L 2.4452,5.262781,2.4452,5.98584 +L 2.4452,5.98584,2.4452,6.700602 +L 2.4452,6.700602,2.4452,7.398422 +L 2.4452,7.398422,3.8497,7.398422 +L 3.8497,7.398422,5.2612,7.398422 +L 5.2612,7.398422,6.6867,7.398422 +L 6.6867,7.398422,6.6867,6.700602 +L 6.6867,6.700602,6.6867,5.98584 +L 6.6867,5.98584,6.6867,5.262781 +L 6.6867,5.262781,5.2612,5.262781 +L 5.2612,5.262781,3.8497,5.262781 +L 3.8497,5.262781,2.4452,5.262781 +L 2.8725,6.330459,4.0038,6.330459 +L 4.0038,6.330459,5.1421,6.330459 +L 5.1421,6.330459,6.2913,6.330459 + +[構] 51 +L 7.144,5.796554,7.5748,5.796554 +L 1.1934,-0.000003,1.1128,1.600289 +L 1.1128,1.600289,1.0466,3.192022 +L 1.0466,3.192022,0.9801,4.76703 +L 0.9801,4.76703,0.7696,4.422346 +L 0.7696,4.422346,0.5664,4.069211 +L 0.5664,4.069211,0.3703,3.699177 +L 3.3302,-0.000003,3.3302,0.532479 +L 3.3302,0.532479,3.3302,1.056468 +L 3.3302,1.056468,3.3302,1.563513 +L 3.3302,1.563513,3.0357,1.752755 +L 3.0357,1.752755,2.752,1.933613 +L 2.752,1.933613,2.4753,2.097506 +L 5.866,-0.000003,6.1388,-0.000003 +L 6.1388,-0.000003,6.419,-0.000003 +L 6.419,-0.000003,6.7167,-0.000003 +L 6.7167,-0.000003,5.838,2.224601 +L 5.838,2.224601,4.209,2.186512 +L 4.209,2.186512,3.3302,4.233148 +L 3.3302,4.233148,4.3526,4.307925 +L 4.3526,4.307925,4.8639,4.730277 +L 4.8639,4.730277,5.0079,5.796554 +L 5.0079,5.796554,4.1564,5.796554 +L 4.1564,5.796554,3.3053,5.796554 +L 3.3053,5.796554,2.4753,5.796554 +L 7.144,2.097506,6.1704,2.967471 +L 6.1704,2.967471,4.9133,3.185039 +L 4.9133,3.185039,3.761,3.16525 +L 5.0079,3.699177,5.3581,4.055091 +L 5.3581,4.055091,5.7994,4.055091 +L 5.7994,4.055091,6.7167,3.699177 +L 2.0518,4.76703,1.5124,5.412423 +L 1.5124,5.412423,1.0288,6.193491 +L 1.0288,6.193491,0.3703,6.86443 +L 5.652,5.796554,5.7854,6.014166 +L 5.7854,6.014166,5.729,6.291056 +L 5.729,6.291056,5.4352,6.86443 +L 5.4352,6.86443,4.7168,6.745762 +L 4.7168,6.745762,4.0724,6.627116 +L 4.0724,6.627116,3.3302,6.86443 +L 6.2863,5.796554,6.7167,5.796554 +L 6.7167,5.796554,7.144,5.796554 +L 1.6207,6.86443,1.3233,7.299434 +L 1.3233,7.299434,1.2109,7.853281 +L 1.2109,7.853281,1.1934,9.000093 +L 6.2863,6.86443,5.1935,7.751404 +L 5.1935,7.751404,4.0797,7.960522 +L 4.0797,7.960522,2.9029,7.932239 +L 6.2863,7.932239,6.1388,8.302362 +L 6.1388,8.302362,5.9952,8.655431 +L 5.9952,8.655431,5.866,9.000093 + +[耕] 42 +L 3.3599,-0.000003,4.2393,1.515573 +L 4.2393,1.515573,4.5651,2.336176 +L 4.5651,2.336176,4.6138,3.16525 +L 4.6138,3.16525,3.5564,4.039528 +L 3.5564,4.039528,2.4878,4.159618 +L 2.4878,4.159618,1.6545,3.432224 +L 1.6545,3.432224,2.0783,2.820718 +L 2.0783,2.820718,2.5088,2.200522 +L 2.5088,2.200522,2.9326,1.563513 +L 1.6545,-0.000003,1.6367,1.495763 +L 1.6367,1.495763,1.5246,2.177931 +L 1.5246,2.177931,1.2237,2.631345 +L 1.2237,2.631345,0.9292,2.097506 +L 0.9292,2.097506,0.6455,1.563513 +L 0.6455,1.563513,0.3726,1.029718 +L 0.3726,4.233148,0.9856,4.262699 +L 0.9856,4.262699,1.3215,4.470351 +L 1.3215,4.470351,1.6545,5.034005 +L 1.6545,5.034005,1.353,5.299425 +L 1.353,5.299425,1.0728,5.556527 +L 1.0728,5.556527,0.7999,5.796554 +L 2.0783,5.796554,1.7838,6.330459 +L 1.7838,6.330459,1.5036,6.86443 +L 1.5036,6.86443,1.2237,7.398422 +L 1.2237,7.398422,0.9292,7.398422 +L 0.9292,7.398422,0.6455,7.398422 +L 0.6455,7.398422,0.3726,7.398422 +L 2.0783,7.398422,1.7803,7.813594 +L 1.7803,7.813594,1.6685,8.228919 +L 1.6685,8.228919,1.6545,9.000093 +L 6.7433,6.86443,6.4494,7.299434 +L 6.4494,7.299434,6.337,7.853281 +L 6.337,7.853281,6.3233,9.000093 +L 5.0656,7.464794,4.6138,9.000093 +L 5.9871,5.183648,5.0656,7.464794 +L 6.7433,3.699177,5.9871,5.183648 +L 6.3233,-0.000003,5.8785,3.10735 +L 5.8785,3.10735,5.0519,4.087621 +L 5.0519,4.087621,4.6138,6.330459 +L 4.6138,6.330459,4.3161,6.519832 +L 4.3161,6.519832,4.0362,6.700602 +L 4.0362,6.700602,3.7595,6.86443 + +[講] 80 +L 0.8296,8.466122,1.2324,8.466122 +L 1.2324,8.466122,1.653,8.466122 +L 1.653,8.466122,2.0768,8.466122 +L 3.6354,7.768259,3.3619,7.932239 +L 3.9226,7.587643,3.6354,7.768259 +L 4.2165,7.398422,3.9226,7.587643 +L 5.5373,7.912407,4.6441,7.932239 +L 5.9747,7.774038,5.5373,7.912407 +L 6.318,7.398422,5.9747,7.774038 +L 6.318,6.519832,6.318,6.86443 +L 6.318,6.166829,6.318,6.519832 +L 6.318,5.796554,6.318,6.166829 +L 6.0451,5.796554,6.318,5.796554 +L 5.7716,5.796554,6.0451,5.796554 +L 5.4952,5.796554,5.7716,5.796554 +L 4.9944,4.882786,5.0714,5.796554 +L 4.6368,4.384169,4.9944,4.882786 +L 3.7857,4.233148,4.6368,4.384169 +L 4.5527,2.211839,3.7857,4.233148 +L 5.9782,2.199142,4.5527,2.211839 +L 6.7491,-0.000003,5.9782,2.199142 +L 6.4514,-0.000003,6.7491,-0.000003 +L 6.1677,-0.000003,6.4514,-0.000003 +L 5.898,-0.000003,6.1677,-0.000003 +L 3.7857,-0.000003,3.7857,0.532479 +L 3.7857,0.532479,3.7857,1.056468 +L 3.7857,1.056468,3.7857,1.563513 +L 3.7857,1.563513,3.4918,1.752755 +L 3.4918,1.752755,3.2116,1.933613 +L 3.2116,1.933613,2.9346,2.097506 +L 1.653,2.097506,2.0768,2.097506 +L 1.2324,2.097506,1.653,2.097506 +L 0.8296,2.097506,1.2324,2.097506 +L 0.8296,1.409646,0.8296,2.097506 +L 0.8296,0.713249,0.8296,1.409646 +L 0.8296,-0.000003,0.8296,0.713249 +L 1.2324,-0.000003,0.8296,-0.000003 +L 1.653,-0.000003,1.2324,-0.000003 +L 2.0768,-0.000003,1.653,-0.000003 +L 2.0768,0.713249,2.0768,-0.000003 +L 2.0768,1.409646,2.0768,0.713249 +L 2.0768,2.097506,2.0768,1.409646 +L 1.653,3.699177,2.0768,3.699177 +L 1.2324,3.699177,1.653,3.699177 +L 0.8296,3.699177,1.2324,3.699177 +L 0.8296,5.262781,1.2324,5.262781 +L 1.2324,5.262781,1.653,5.262781 +L 1.653,5.262781,2.0768,5.262781 +L 3.6354,5.796554,2.9346,5.796554 +L 4.3429,5.796554,3.6354,5.796554 +L 5.0714,5.796554,4.3429,5.796554 +L 5.6178,6.700602,4.917,6.519832 +L 6.318,6.86443,5.6178,6.700602 +L 6.7491,7.932239,6.5981,8.302362 +L 6.5981,8.302362,6.4514,8.655431 +L 6.4514,8.655431,6.318,9.000093 +L 4.3429,8.655431,4.2165,9.000093 +L 4.4932,8.302362,4.3429,8.655431 +L 4.6441,7.932239,4.4932,8.302362 +L 4.917,6.519832,4.2165,6.330459 +L 1.8068,6.86443,2.5073,6.86443 +L 1.1032,6.86443,1.8068,6.86443 +L 0.4023,6.86443,1.1032,6.86443 +L 7.1726,2.097506,6.1954,3.07758 +L 6.1954,3.07758,5.2325,3.024145 +L 5.2325,3.024145,4.2165,3.16525 +L 5.0714,3.699177,5.4147,4.055091 +L 5.4147,4.055091,5.8521,4.055091 +L 5.8521,4.055091,6.7491,3.699177 +L 6.7491,5.796554,7.0254,5.796554 +L 7.0254,5.796554,7.3056,5.796554 +L 7.3056,5.796554,7.6037,5.796554 +L 0.4023,6.902519,2.9346,6.902519 +L 0.8296,8.504299,2.5073,8.504299 +L 0.8296,5.300957,2.5073,5.300957 +L 0.8296,4.233038,2.5073,4.233038 +L 0.8296,2.669522,2.5073,2.669522 +L 0.8296,-0.000003,0.8296,2.669522 +L 2.5073,-0.000003,0.8296,-0.000003 +L 2.5073,2.669522,2.5073,-0.000003 + +[鉱] 54 +L 7.2061,7.398422,7.6334,7.398422 +L 6.7756,7.398422,7.2061,7.398422 +L 6.355,7.398422,6.7756,7.398422 +L 5.3536,7.398422,5.9245,7.398422 +L 4.7964,7.398422,5.3536,7.398422 +L 4.2469,7.398422,4.7964,7.398422 +L 4.1383,3.86585,4.2469,7.398422 +L 3.9313,2.096148,4.1383,3.86585 +L 3.8196,1.029718,3.9313,2.096148 +L 3.0942,0.789581,2.965,1.029718 +L 3.2413,0.532479,3.0942,0.789581 +L 3.3923,0.266971,3.2413,0.532479 +L 4.2469,-0.000003,4.5197,-0.000003 +L 4.5197,-0.000003,4.7964,-0.000003 +L 4.7964,-0.000003,5.0661,-0.000003 +L 5.0661,-0.000003,5.2902,2.045275 +L 5.2902,2.045275,5.7039,3.9549 +L 5.7039,3.9549,5.9245,5.796554 +L 5.9245,7.398422,5.9245,7.932239 +L 5.9245,7.932239,5.9245,8.466122 +L 5.9245,8.466122,5.9245,9.000093 +L 1.2589,8.302362,1.6827,9.000093 +L 0.839,7.587643,1.2589,8.302362 +L 0.4288,6.86443,0.839,7.587643 +L 0.7444,6.488726,0.4288,6.86443 +L 1.0698,6.350357,0.7444,6.488726 +L 1.6827,6.330459,1.0698,6.350357 +L 1.7002,5.56073,1.6827,6.330459 +L 1.8091,5.15543,1.7002,5.56073 +L 2.11,4.76703,1.8091,5.15543 +L 1.5566,4.048087,0.4288,4.76703 +L 0.5553,2.734471,0.4288,3.16525 +L 0.6845,2.286813,0.5553,2.734471 +L 0.8281,1.830575,0.6845,2.286813 +L 1.6827,-0.000003,1.7598,2.269826 +L 1.2589,-0.000003,1.6827,-0.000003 +L 0.839,-0.000003,1.2589,-0.000003 +L 0.4288,-0.000003,0.839,-0.000003 +L 2.3867,0.685054,2.11,0.495813 +L 2.6704,0.865869,2.3867,0.685054 +L 2.965,1.029718,2.6704,0.865869 +L 2.5412,2.36448,2.6704,2.820718 +L 2.6704,2.820718,2.8105,3.268419 +L 2.8105,3.268419,2.965,3.699177 +L 1.7598,2.269826,1.5566,4.048087 +L 2.5412,7.932239,2.965,7.398422 +L 2.11,8.466122,2.5412,7.932239 +L 1.6827,9.000093,2.11,8.466122 +L 5.7105,-0.000003,6.1974,0.446362 +L 6.1974,0.446362,6.6982,0.875654 +L 6.6982,0.875654,7.2061,1.296495 +L 7.2061,1.296495,7.0558,1.563513 +L 7.0558,1.563513,6.9084,1.830575 +L 6.9084,1.830575,6.7756,2.097506 + +[混] 48 +L 5.5234,8.466122,6.8126,8.466122 +L 4.2453,8.466122,5.5234,8.466122 +L 2.9635,8.466122,4.2453,8.466122 +L 2.9635,7.398422,2.9635,8.466122 +L 2.9635,6.330459,2.9635,7.398422 +L 2.9635,5.262781,2.9635,6.330459 +L 4.2453,5.262781,2.9635,5.262781 +L 5.5234,5.262781,4.2453,5.262781 +L 6.8126,5.262781,5.5234,5.262781 +L 6.8126,6.330459,6.8126,5.262781 +L 6.8126,7.398422,6.8126,6.330459 +L 6.8126,8.466122,6.8126,7.398422 +L 5.3766,6.86443,6.3815,6.86443 +L 4.3746,6.86443,5.3766,6.86443 +L 3.3943,6.86443,4.3746,6.86443 +L 1.7131,7.932239,1.4185,8.302362 +L 1.4185,8.302362,1.1348,8.655431 +L 1.1348,8.655431,0.8585,9.000093 +L 0.711,6.519832,0.4347,6.86443 +L 0.9912,6.166829,0.711,6.519832 +L 1.2893,5.796554,0.9912,6.166829 +L 1.2893,2.555058,1.7131,3.699177 +L 0.8585,1.411069,1.2893,2.555058 +L 0.4347,0.266971,0.8585,1.411069 +L 2.1404,-0.000003,2.4132,-0.000003 +L 2.4132,-0.000003,2.6934,-0.000003 +L 2.6934,-0.000003,2.9635,-0.000003 +L 2.9635,-0.000003,2.9635,1.411069 +L 2.9635,1.411069,2.9635,2.82201 +L 2.9635,2.82201,2.9635,4.233148 +L 3.3943,2.631345,3.818,2.631345 +L 3.818,2.631345,4.2453,2.631345 +L 4.2453,2.631345,4.6723,2.631345 +L 6.1682,2.631345,6.5041,2.820718 +L 6.5041,2.820718,6.8512,3.001488 +L 6.8512,3.001488,7.2046,3.16525 +L 7.6284,0.686477,7.6284,1.029718 +L 7.6284,0.343259,7.6284,0.686477 +L 7.6284,-0.000003,7.6284,0.343259 +L 7.2046,-0.000003,7.6284,-0.000003 +L 6.7843,-0.000003,7.2046,-0.000003 +L 6.3815,-0.000003,6.7843,-0.000003 +L 5.9542,-0.000003,5.653,0.487385 +L 5.653,0.487385,5.5413,1.584747 +L 5.5413,1.584747,5.5234,4.233148 +L 4.0524,0.47749,4.6723,0.495813 +L 3.7231,0.348819,4.0524,0.47749 +L 3.3943,-0.000003,3.7231,0.348819 + +[査] 42 +L 6.6567,-0.000003,7.2349,-0.000003 +L 6.0861,-0.000003,6.6567,-0.000003 +L 5.5289,-0.000003,6.0861,-0.000003 +L 5.5289,1.600289,5.5289,-0.000003 +L 5.5289,3.192022,5.5289,1.600289 +L 5.5289,4.76703,5.5289,3.192022 +L 4.3976,4.76703,5.5289,4.76703 +L 3.2667,4.76703,4.3976,4.76703 +L 2.142,4.76703,3.2667,4.76703 +L 2.142,3.192022,2.142,4.76703 +L 2.142,1.600289,2.142,3.192022 +L 2.142,-0.000003,2.142,1.600289 +L 1.5715,-0.000003,2.142,-0.000003 +L 1.0107,-0.000003,1.5715,-0.000003 +L 0.4612,-0.000003,1.0107,-0.000003 +L 2.5662,-0.000003,3.4239,-0.000003 +L 3.4239,-0.000003,4.275,-0.000003 +L 4.275,-0.000003,5.13,-0.000003 +L 4.275,1.563513,5.13,1.563513 +L 3.4239,1.563513,4.275,1.563513 +L 2.5662,1.563513,3.4239,1.563513 +L 2.5662,3.16525,3.4239,3.16525 +L 3.4239,3.16525,4.275,3.16525 +L 4.275,3.16525,5.13,3.16525 +L 6.8073,5.262781,5.8932,5.98584 +L 5.8932,5.98584,4.979,6.700602 +L 4.979,6.700602,4.0652,7.398422 +L 4.0652,7.398422,3.9812,6.86443 +L 3.9812,6.86443,3.9108,6.330459 +L 3.9108,6.330459,3.8512,5.796554 +L 1.8972,6.063616,2.6114,6.686396 +L 0.6745,5.262781,1.8972,6.063616 +L 1.4415,7.854595,0.4612,7.932239 +L 2.4226,7.768259,1.4415,7.854595 +L 3.4239,7.665309,2.4226,7.768259 +L 2.6114,6.686396,3.4239,7.665309 +L 3.8512,7.932239,3.8512,8.302362 +L 3.8512,8.302362,3.8512,8.655431 +L 3.8512,8.655431,3.8512,9.000093 +L 4.275,7.932239,5.2526,7.932239 +L 5.2526,7.932239,6.2364,7.932239 +L 6.2364,7.932239,7.2349,7.932239 + +[再] 44 +L 1.591,8.466122,0.4628,8.466122 +L 2.7293,8.466122,1.591,8.466122 +L 3.8816,8.466122,2.7293,8.466122 +L 3.6641,6.810732,3.8816,8.466122 +L 2.8795,6.333458,3.6641,6.810732 +L 1.3139,6.330459,2.8795,6.333458 +L 1.8463,3.65868,1.3139,6.330459 +L 3.1111,3.2235,1.8463,3.65868 +L 4.6168,3.491481,3.1111,3.2235 +L 5.8815,2.928266,4.6168,3.491481 +L 6.4135,-0.000003,5.8815,2.928266 +L 5.9866,-0.000003,6.4135,-0.000003 +L 5.5558,-0.000003,5.9866,-0.000003 +L 5.1355,-0.000003,5.5558,-0.000003 +L 5.6885,6.330459,6.4135,6.330459 +L 4.9775,6.330459,5.6885,6.330459 +L 4.277,6.330459,4.9775,6.330459 +L 4.0007,5.823545,4.277,6.330459 +L 3.7306,5.299425,4.0007,5.823545 +L 3.4543,4.76703,3.7306,5.299425 +L 2.8725,4.76703,3.4543,4.76703 +L 2.3051,4.76703,2.8725,4.76703 +L 1.7447,4.76703,2.3051,4.76703 +L 4.9775,4.76703,4.277,4.76703 +L 5.6885,4.76703,4.9775,4.76703 +L 6.4135,4.76703,5.6885,4.76703 +L 6.4279,3.995879,6.4135,4.76703 +L 6.5396,3.580575,6.4279,3.995879 +L 6.8408,3.16525,6.5396,3.580575 +L 6.4135,5.63275,6.4135,5.262781 +L 6.4135,5.98584,6.4135,5.63275 +L 6.4135,6.330459,6.4135,5.98584 +L 5.2612,8.466122,6.2633,8.466122 +L 4.277,8.466122,5.2612,8.466122 +L 6.2633,8.466122,7.2646,8.466122 +L 0.7399,3.001488,0.4628,3.16525 +L 1.0236,2.820718,0.7399,3.001488 +L 1.3139,2.631345,1.0236,2.820718 +L 1.3139,1.754287,1.3139,2.631345 +L 1.3139,0.877142,1.3139,1.754287 +L 1.3139,-0.000003,1.3139,0.877142 +L 4.0007,4.069211,3.8816,3.699177 +L 4.1334,4.422346,4.0007,4.069211 +L 4.277,4.76703,4.1334,4.422346 + +[採] 45 +L 7.6939,0.495813,7.123,1.485912 +L 7.123,1.485912,6.5665,2.467605 +L 6.5665,2.467605,6.0127,3.432224 +L 6.0127,3.432224,5.1616,3.535437 +L 5.1616,3.535437,4.3039,3.621532 +L 4.3039,3.621532,3.4528,3.699177 +L 1.3478,2.477544,1.3478,3.699177 +L 1.3478,1.247198,1.3478,2.477544 +L 1.3478,-0.000003,1.3478,1.247198 +L 1.0533,-0.000003,1.3478,-0.000003 +L 0.7696,-0.000003,1.0533,-0.000003 +L 0.4929,-0.000003,0.7696,-0.000003 +L 4.0934,1.399686,3.4528,0.495813 +L 4.7343,2.286813,4.0934,1.399686 +L 5.3756,3.16525,4.7343,2.286813 +L 5.4352,2.124234,5.3756,3.16525 +L 5.5084,1.066494,5.4352,2.124234 +L 5.5924,-0.000003,5.5084,1.066494 +L 6.4089,3.699177,6.8393,3.699177 +L 6.8393,3.699177,7.2666,3.699177 +L 7.2666,3.699177,7.6939,3.699177 +L 6.8393,5.796554,7.1164,6.330459 +L 7.1164,6.330459,7.4001,6.86443 +L 7.4001,6.86443,7.6939,7.398422 +L 6.5945,8.32771,7.6939,8.466122 +L 5.4103,8.07063,6.5945,8.32771 +L 3.4528,7.932239,5.4103,8.07063 +L 3.5855,6.597522,3.4528,6.86443 +L 3.7291,6.330459,3.5855,6.597522 +L 3.8832,6.063616,3.7291,6.330459 +L 5.5924,6.063616,5.4352,6.330459 +L 5.4352,6.330459,5.2951,6.597522 +L 5.2951,6.597522,5.1616,6.86443 +L 1.7783,6.86443,1.4739,7.299434 +L 1.4739,7.299434,1.3653,7.853281 +L 1.3653,7.853281,1.3478,9.000093 +L 1.3478,5.642643,1.3478,6.330459 +L 1.3478,4.946334,1.3478,5.642643 +L 1.3478,4.233148,1.3478,4.946334 +L 1.3478,3.699177,1.0533,3.699177 +L 1.0533,3.699177,0.7696,3.699177 +L 0.7696,3.699177,0.4929,3.699177 +L 0.7696,6.700602,0.4929,6.86443 +L 1.0533,6.519832,0.7696,6.700602 +L 1.3478,6.330459,1.0533,6.519832 + +[災] 30 +L 6.442,-0.000003,5.7419,0.877142 +L 5.7419,0.877142,5.0411,1.754287 +L 5.0411,1.754287,4.3409,2.631345 +L 2.2706,0.964703,3.4685,2.582026 +L 0.5264,-0.000003,2.2706,0.964703 +L 1.9029,8.466122,2.2009,9.000093 +L 1.6227,7.932239,1.9029,8.466122 +L 1.3463,7.398422,1.6227,7.932239 +L 1.6227,6.967468,1.3463,7.398422 +L 1.9029,6.519832,1.6227,6.967468 +L 2.2009,6.063616,1.9029,6.519832 +L 1.9029,3.699177,2.2009,4.233148 +L 1.6227,3.16525,1.9029,3.699177 +L 1.3463,2.631345,1.6227,3.16525 +L 3.4685,2.582026,3.9098,4.76703 +L 4.3409,6.063616,4.0432,6.519832 +L 4.0432,6.519832,3.7595,6.967468 +L 3.7595,6.967468,3.4825,7.398422 +L 3.4825,7.398422,3.7595,7.932239 +L 3.7595,7.932239,4.0432,8.466122 +L 4.0432,8.466122,4.3409,9.000093 +L 6.1482,8.466122,6.442,9.000093 +L 5.8676,7.932239,6.1482,8.466122 +L 5.5874,7.398422,5.8676,7.932239 +L 5.8676,6.967468,5.5874,7.398422 +L 6.1482,6.519832,5.8676,6.967468 +L 6.442,6.063616,6.1482,6.519832 +L 6.1482,3.699177,6.442,4.233148 +L 5.8676,3.16525,6.1482,3.699177 +L 5.5874,2.631345,5.8676,3.16525 + +[際] 63 +L 0.5249,-0.000003,0.5249,2.82201 +L 2.6617,0.495813,2.9381,1.029718 +L 2.9381,1.029718,3.2183,1.563513 +L 3.2183,1.563513,3.5128,2.097506 +L 3.7892,3.16525,3.089,3.16525 +L 4.49,3.16525,3.7892,3.16525 +L 5.1905,3.16525,4.49,3.16525 +L 5.1905,2.124234,5.1905,3.16525 +L 5.1905,1.066494,5.1905,2.124234 +L 5.1905,-0.000003,5.1905,1.066494 +L 4.8959,-0.000003,5.1905,-0.000003 +L 4.6158,-0.000003,4.8959,-0.000003 +L 4.3356,-0.000003,4.6158,-0.000003 +L 0.5249,2.82201,0.5249,5.644089 +L 0.5249,5.644089,0.5249,8.466122 +L 0.5249,8.466122,1.0856,8.466122 +L 1.0856,8.466122,1.653,8.466122 +L 1.653,8.466122,2.2344,8.466122 +L 2.2344,8.466122,1.7858,6.097524 +L 1.7858,6.097524,2.0099,4.79667 +L 2.0099,4.79667,2.2344,2.631345 +L 2.2344,2.631345,1.9399,2.467605 +L 1.9399,2.467605,1.653,2.286813 +L 1.653,2.286813,1.3795,2.097506 +L 2.875,4.76703,3.2116,5.110184 +L 3.2116,5.110184,3.5514,5.453423 +L 3.5514,5.453423,3.9156,5.796554 +L 3.9156,5.796554,3.6354,6.166829 +L 3.6354,6.166829,3.3619,6.519832 +L 3.3619,6.519832,3.089,6.86443 +L 3.089,6.86443,2.9381,6.700602 +L 2.9381,6.700602,2.791,6.519832 +L 2.791,6.519832,2.6617,6.330459 +L 3.2183,7.587643,3.089,7.398422 +L 3.3619,7.768259,3.2183,7.587643 +L 3.5128,7.932239,3.3619,7.768259 +L 3.7892,7.501504,3.5128,7.932239 +L 4.0627,7.053715,3.7892,7.501504 +L 4.3356,6.597522,4.0627,7.053715 +L 4.7667,7.398422,4.7667,7.768259 +L 4.7667,7.768259,4.7667,8.121416 +L 4.7667,8.121416,4.7667,8.466122 +L 4.7667,8.466122,4.3391,8.466122 +L 4.3391,8.466122,3.9191,8.466122 +L 3.9191,8.466122,3.5128,8.466122 +L 6.2409,7.033904,5.6945,8.131355 +L 7.7263,4.76703,6.2409,7.033904 +L 5.6213,4.76703,6.4724,4.76703 +L 4.7667,4.76703,5.6213,4.76703 +L 3.9156,4.76703,4.7667,4.76703 +L 5.6213,3.16525,6.1743,3.16525 +L 6.1743,3.16525,6.7491,3.16525 +L 6.7491,3.16525,7.3302,3.16525 +L 7.1764,1.66677,6.8997,2.097506 +L 7.4461,1.218959,7.1764,1.66677 +L 7.7263,0.7627,7.4461,1.218959 +L 7.0328,7.501504,7.1764,7.854595 +L 7.1764,7.854595,7.3302,8.199214 +L 7.3302,8.199214,7.0328,8.302362 +L 7.0328,8.302362,6.7491,8.388478 +L 6.7491,8.388478,6.4724,8.466122 +L 5.6945,8.131355,5.6213,9.000093 +L 6.8997,7.131426,7.0328,7.501504 + +[在] 33 +L 1.7531,1.411069,1.6862,2.82201 +L 1.6862,2.82201,1.6232,4.233148 +L 1.6232,4.233148,1.2589,3.888397 +L 1.2589,3.888397,0.8985,3.535437 +L 0.8985,3.535437,0.5588,3.16525 +L 1.8372,-0.000003,1.7531,1.411069 +L 2.6637,-0.000003,3.5148,-0.000003 +L 1.8372,5.034005,2.2434,5.747191 +L 2.2434,5.747191,2.6637,6.44361 +L 2.6637,6.44361,3.0837,7.131426 +L 3.0837,7.131426,2.2326,7.23442 +L 2.2326,7.23442,1.3888,7.320777 +L 1.3888,7.320777,0.5588,7.398422 +L 3.5148,7.398422,3.5148,7.932239 +L 3.5148,7.932239,3.5148,8.466122 +L 3.5148,8.466122,3.5148,9.000093 +L 3.5148,-0.000003,4.3726,-0.000003 +L 4.3726,-0.000003,5.2237,-0.000003 +L 5.2237,-0.000003,5.2272,2.34896 +L 5.2272,2.34896,4.8528,3.435026 +L 4.8528,3.435026,3.5148,3.699177 +L 5.651,-0.000003,6.3518,-0.000003 +L 6.3518,-0.000003,7.0523,-0.000003 +L 7.0523,-0.000003,7.7559,-0.000003 +L 5.651,3.699177,5.3498,4.13278 +L 5.3498,4.13278,5.238,4.67669 +L 5.238,4.67669,5.2237,5.796554 +L 6.0471,3.699177,6.3238,3.699177 +L 6.3238,3.699177,6.6036,3.699177 +L 6.6036,3.699177,6.8982,3.699177 +L 3.9421,7.398422,5.2027,7.398422 +L 5.2027,7.398422,6.4744,7.398422 +L 6.4744,7.398422,7.7559,7.398422 + +[罪] 45 +L 0.9811,-0.000003,1.6325,0.067769 +L 1.6325,0.067769,2.1824,0.542373 +L 2.1824,0.542373,3.1207,1.830575 +L 3.1207,1.830575,2.3575,1.879982 +L 2.3575,1.879982,1.608,1.692119 +L 1.608,1.692119,0.5849,1.563513 +L 5.2222,-0.000003,4.6758,5.605955 +L 4.6758,5.605955,3.6636,6.86443 +L 3.6636,6.86443,3.1207,2.631345 +L 5.653,1.563513,6.3535,1.563513 +L 6.3535,1.563513,7.0645,1.563513 +L 7.0645,1.563513,7.7863,1.563513 +L 1.4119,3.16525,1.8357,3.16525 +L 1.8357,3.16525,2.263,3.16525 +L 2.263,3.16525,2.6899,3.16525 +L 5.653,3.16525,6.0768,3.16525 +L 6.0768,3.16525,6.5041,3.16525 +L 6.5041,3.16525,6.9317,3.16525 +L 0.9811,4.76703,1.5411,4.76703 +L 1.5411,4.76703,2.112,4.76703 +L 2.112,4.76703,2.6899,4.76703 +L 5.653,4.76703,6.2067,4.76703 +L 6.2067,4.76703,6.7808,4.76703 +L 6.7808,4.76703,7.3625,4.76703 +L 0.9811,6.86443,0.9811,7.398422 +L 0.9811,7.398422,0.9811,7.932239 +L 0.9811,7.932239,0.9811,8.466122 +L 0.9811,8.466122,3.093,8.466122 +L 3.093,8.466122,5.2222,8.466122 +L 5.2222,8.466122,7.3625,8.466122 +L 7.3625,8.466122,7.3625,7.932239 +L 7.3625,7.932239,7.3625,7.398422 +L 7.3625,7.398422,7.3625,6.86443 +L 7.3625,6.86443,6.7808,6.86443 +L 6.7808,6.86443,6.2067,6.86443 +L 6.2067,6.86443,5.653,6.86443 +L 5.653,6.86443,5.4992,7.23442 +L 5.4992,7.23442,5.3556,7.587643 +L 5.3556,7.587643,5.2222,7.932239 +L 1.4119,6.86443,1.8357,6.86443 +L 1.8357,6.86443,2.263,6.86443 +L 2.263,6.86443,2.6899,6.86443 +L 2.6899,6.86443,2.8233,7.23442 +L 2.8233,7.23442,2.9669,7.587643 +L 2.9669,7.587643,3.1207,7.932239 + +[財] 39 +L 0.5838,-0.000003,0.8605,0.343259 +L 0.8605,0.343259,1.1403,0.686477 +L 1.1403,0.686477,1.4415,1.029718 +L 5.2525,-0.000003,5.6798,-0.000003 +L 5.6798,-0.000003,6.1103,-0.000003 +L 6.1103,-0.000003,6.5344,-0.000003 +L 6.5344,-0.000003,6.4539,1.754287 +L 6.4539,1.754287,6.3835,3.508578 +L 6.3835,3.508578,6.3204,5.262781 +L 6.3204,5.262781,5.6798,4.221765 +L 5.6798,4.221765,5.0385,3.163849 +L 5.0385,3.163849,4.4014,2.097506 +L 1.0142,2.097506,1.0142,4.231681 +L 1.0142,4.231681,1.0142,6.357384 +L 1.0142,6.357384,1.0142,8.466122 +L 1.0142,8.466122,1.7151,8.466122 +L 1.7151,8.466122,2.4152,8.466122 +L 2.4152,8.466122,3.1157,8.466122 +L 3.1157,8.466122,3.1157,6.357384 +L 3.1157,6.357384,3.1157,4.231681 +L 3.1157,4.231681,3.1157,2.097506 +L 3.1157,2.097506,2.4152,2.097506 +L 2.4152,2.097506,1.7151,2.097506 +L 1.7151,2.097506,1.0142,2.097506 +L 1.4415,4.233148,1.8688,4.233148 +L 1.8688,4.233148,2.2926,4.233148 +L 2.2926,4.233148,2.7203,4.233148 +L 6.1103,6.063616,5.5289,6.166829 +L 5.5289,6.166829,4.9548,6.252858 +L 4.9548,6.252858,4.4014,6.330459 +L 1.4415,6.330459,1.8688,6.330459 +L 1.8688,6.330459,2.2926,6.330459 +L 2.2926,6.330459,2.7203,6.330459 +L 6.5344,6.330459,6.5344,7.23442 +L 6.5344,7.23442,6.5344,8.121416 +L 6.5344,8.121416,6.5344,9.000093 +L 6.9614,6.330459,7.2349,6.330459 +L 7.2349,6.330459,7.5148,6.330459 +L 7.5148,6.330459,7.7848,6.330459 + +[桜] 42 +L 1.8638,-0.000003,1.7868,1.600289 +L 1.7868,1.600289,1.7136,3.192022 +L 1.7136,3.192022,1.654,4.76703 +L 1.654,4.76703,1.2964,4.069211 +L 1.2964,4.069211,0.9532,3.354514 +L 0.9532,3.354514,0.6173,2.631345 +L 4.0042,-0.000003,4.7047,0.343259 +L 4.7047,0.343259,5.4083,0.686477 +L 5.4083,0.686477,6.1091,1.029718 +L 6.1091,1.029718,5.6853,1.399686 +L 5.6853,1.399686,5.2647,1.752755 +L 5.2647,1.752755,4.8584,2.097506 +L 4.8584,2.097506,4.8584,2.631345 +L 4.8584,2.631345,4.8584,3.16525 +L 4.8584,3.16525,4.8584,3.699177 +L 4.8584,3.699177,3.1983,4.104498 +L 3.1983,4.104498,2.1895,5.213308 +L 2.1895,5.213308,1.4719,6.86443 +L 1.4719,6.86443,1.1773,6.86443 +L 1.1773,6.86443,0.8901,6.86443 +L 0.8901,6.86443,0.6173,6.86443 +L 7.3907,-0.000003,6.5571,1.442066 +L 6.5571,1.442066,6.7116,2.409508 +L 6.7116,2.409508,6.9634,3.699177 +L 6.9634,3.699177,6.3928,3.699177 +L 6.3928,3.699177,5.8321,3.699177 +L 5.8321,3.699177,5.2822,3.699177 +L 5.2822,3.699177,5.2822,4.231681 +L 5.2822,4.231681,5.2822,4.75567 +L 5.2822,4.75567,5.2822,5.262781 +L 6.9634,6.330459,7.2369,7.053715 +L 7.2369,7.053715,7.5241,7.768259 +L 7.5241,7.768259,7.818,8.466122 +L 2.2946,6.86443,1.9938,7.299434 +L 1.9938,7.299434,1.8813,7.853281 +L 1.8813,7.853281,1.8638,9.000093 +L 4.4311,6.86443,4.4136,7.635582 +L 4.4136,7.635582,4.3019,8.050863 +L 4.3019,8.050863,4.0042,8.466122 +L 5.6783,7.398422,5.6675,8.169465 +L 5.6675,8.169465,5.5628,8.584746 +L 5.5628,8.584746,5.2822,9.000093 + +[酸] 75 +L 1.0431,-0.000003,1.2918,3.008494 +L 1.2918,3.008494,1.691,5.940746 +L 1.691,5.940746,1.9008,8.466122 +L 1.9008,8.466122,1.4704,8.466122 +L 1.4704,8.466122,1.0431,8.466122 +L 1.0431,8.466122,0.6158,8.466122 +L 1.4704,-0.000003,2.1744,-0.000003 +L 2.1744,-0.000003,2.8815,-0.000003 +L 2.8815,-0.000003,3.61,-0.000003 +L 3.61,-0.000003,3.61,0.713249 +L 3.61,0.713249,3.61,1.409646 +L 3.61,1.409646,3.61,2.097506 +L 3.61,2.097506,2.8815,2.097506 +L 2.8815,2.097506,2.1744,2.097506 +L 2.1744,2.097506,1.4704,2.097506 +L 4.6436,-0.000003,5.134,0.446362 +L 5.134,0.446362,5.6275,0.875654 +L 5.6275,0.875654,6.1427,1.296495 +L 6.1427,1.296495,5.7711,1.752755 +L 5.7711,1.752755,5.4177,2.200522 +L 5.4177,2.200522,5.0709,2.631345 +L 5.0709,2.631345,4.8569,2.467605 +L 4.8569,2.467605,4.6436,2.286813 +L 4.6436,2.286813,4.4331,2.097506 +L 7.4211,-0.000003,7.123,0.446362 +L 7.123,0.446362,6.8428,0.875654 +L 6.8428,0.875654,6.5661,1.296495 +L 6.5661,1.296495,6.8428,2.019729 +L 6.8428,2.019729,7.123,2.734471 +L 7.123,2.734471,7.4211,3.432224 +L 7.4211,3.432224,6.2022,3.600298 +L 6.2022,3.600298,5.6485,3.531016 +L 5.6485,3.531016,5.2842,3.16525 +L 3.61,2.631345,3.61,3.001488 +L 3.61,3.001488,3.61,3.354514 +L 3.61,3.354514,3.61,3.699177 +L 3.61,3.699177,3.3127,3.699177 +L 3.3127,3.699177,3.029,3.699177 +L 3.029,3.699177,2.7519,3.699177 +L 2.7519,3.699177,2.7344,5.194855 +L 2.7344,5.194855,2.6262,5.877176 +L 2.6262,5.877176,2.3215,6.330459 +L 2.3215,6.330459,2.0133,5.391299 +L 2.0133,5.391299,1.7888,4.104498 +L 1.7888,4.104498,1.4704,3.16525 +L 3.61,4.233148,3.2742,5.906816 +L 3.2742,5.906816,2.7975,7.122911 +L 2.7975,7.122911,2.3215,8.466122 +L 4.4331,4.76703,4.7028,5.213308 +L 4.7028,5.213308,4.9865,5.642643 +L 4.9865,5.642643,5.2842,6.063616 +L 5.2842,6.063616,4.9553,6.627116 +L 4.9553,6.627116,4.6328,6.834812 +L 4.6328,6.834812,4.0303,6.86443 +L 6.5661,5.262781,6.5661,5.796554 +L 6.5661,5.796554,6.5661,6.330459 +L 6.5661,6.330459,6.5661,6.86443 +L 6.5661,6.86443,5.9497,6.894135 +L 5.9497,6.894135,5.6173,7.101764 +L 5.6173,7.101764,5.2842,7.665309 +L 5.2842,7.665309,5.4177,8.121416 +L 5.4177,8.121416,5.5613,8.569336 +L 5.5613,8.569336,5.7115,9.000093 +L 6.9938,5.262781,7.2701,5.262781 +L 7.2701,5.262781,7.5503,5.262781 +L 7.5503,5.262781,7.8484,5.262781 +L 6.5661,7.398422,6.8428,7.501504 +L 6.8428,7.501504,7.123,7.587643 +L 7.123,7.587643,7.4211,7.665309 +L 7.4211,7.665309,7.2701,7.932239 +L 7.2701,7.932239,7.123,8.199214 +L 7.123,8.199214,6.9938,8.466122 +L 3.1792,8.466122,3.4563,8.466122 +L 3.4563,8.466122,3.7365,8.466122 +L 3.7365,8.466122,4.0303,8.466122 + +[師] 42 +L 5.7419,-0.000003,5.8746,3.217546 +L 5.8746,3.217546,5.6295,5.477415 +L 5.6295,5.477415,4.0323,6.330459 +L 4.0323,6.330459,4.0323,4.75567 +L 4.0323,4.75567,4.0323,3.163849 +L 4.0323,3.163849,4.0323,1.563513 +L 0.649,1.029718,0.9645,5.748505 +L 0.9645,5.748505,1.1813,7.815082 +L 1.1813,7.815082,1.5001,9.000093 +L 1.0763,1.029718,1.6227,1.029718 +L 1.6227,1.029718,2.1834,1.029718 +L 2.1834,1.029718,2.7504,1.029718 +L 2.7504,1.029718,2.7504,1.752755 +L 2.7504,1.752755,2.7504,2.467605 +L 2.7504,2.467605,2.7504,3.16525 +L 2.7504,3.16525,2.1834,3.16525 +L 2.1834,3.16525,1.6227,3.16525 +L 1.6227,3.16525,1.0763,3.16525 +L 6.5646,1.563513,6.8413,1.563513 +L 6.8413,1.563513,7.125,1.563513 +L 7.125,1.563513,7.4157,1.563513 +L 7.4157,1.563513,7.4157,3.163849 +L 7.4157,3.163849,7.4157,4.75567 +L 7.4157,4.75567,7.4157,6.330459 +L 7.4157,6.330459,6.1307,6.519832 +L 6.1307,6.519832,5.7485,7.183656 +L 5.7485,7.183656,5.7419,8.466122 +L 5.7419,8.466122,5.02,8.466122 +L 5.02,8.466122,4.309,8.466122 +L 4.309,8.466122,3.605,8.466122 +L 1.0763,5.262781,1.6227,5.262781 +L 1.6227,5.262781,2.1834,5.262781 +L 2.1834,5.262781,2.7504,5.262781 +L 2.7504,5.262781,2.7504,5.98584 +L 2.7504,5.98584,2.7504,6.700602 +L 2.7504,6.700602,2.7504,7.398422 +L 2.7504,7.398422,2.3266,7.398422 +L 2.3266,7.398422,1.9099,7.398422 +L 1.9099,7.398422,1.5001,7.398422 +L 6.1692,8.466122,6.7187,8.466122 +L 6.7187,8.466122,7.276,8.466122 +L 7.276,8.466122,7.8469,8.466122 + +[志] 33 +L 3.2081,-0.000003,2.9104,0.447851 +L 2.9104,0.447851,2.798,1.268322 +L 2.798,1.268322,2.7843,3.16525 +L 3.6389,-0.000003,4.3429,-0.000003 +L 4.3429,-0.000003,5.043,-0.000003 +L 5.043,-0.000003,5.7439,-0.000003 +L 5.7439,-0.000003,5.7439,0.343259 +L 5.7439,0.343259,5.7439,0.686477 +L 5.7439,0.686477,5.7439,1.029718 +L 0.6793,0.495813,0.9522,1.218959 +L 0.9522,1.218959,1.2292,1.933613 +L 1.2292,1.933613,1.5021,2.631345 +L 7.4527,1.296495,7.1554,1.752755 +L 7.1554,1.752755,6.8752,2.200522 +L 6.8752,2.200522,6.5981,2.631345 +L 4.917,2.097506,4.6227,2.467605 +L 4.6227,2.467605,4.3429,2.820718 +L 4.3429,2.820718,4.0627,3.16525 +L 1.5021,4.76703,2.3532,4.76703 +L 2.3532,4.76703,3.2081,4.76703 +L 3.2081,4.76703,4.0627,4.76703 +L 4.0627,4.76703,3.6949,7.161 +L 3.6949,7.161,2.5738,7.572187 +L 2.5738,7.572187,0.6793,7.398422 +L 4.49,4.76703,5.194,4.76703 +L 5.194,4.76703,5.8941,4.76703 +L 5.8941,4.76703,6.5981,4.76703 +L 4.49,7.398422,4.1884,7.813594 +L 4.1884,7.813594,4.0767,8.228919 +L 4.0767,8.228919,4.0627,9.000093 +L 4.917,7.398422,5.7505,7.398422 +L 5.7505,7.398422,6.5981,7.398422 +L 6.5981,7.398422,7.4527,7.398422 + +[支] 27 +L 0.6813,-0.000003,1.8018,0.408186 +L 1.8018,0.408186,2.6774,0.952051 +L 2.6774,0.952051,4.0647,2.097506 +L 4.0647,2.097506,2.8525,4.172292 +L 2.8525,4.172292,2.1979,4.992939 +L 2.1979,4.992939,1.5324,5.262781 +L 6.6285,-0.000003,5.9035,0.610146 +L 5.9035,0.610146,5.1925,1.220317 +L 5.1925,1.220317,4.4917,1.830575 +L 4.4917,1.830575,5.0524,2.898407 +L 5.0524,2.898407,5.6233,3.966086 +L 5.6233,3.966086,6.2009,5.034005 +L 6.2009,5.034005,5.0699,5.110184 +L 5.0699,5.110184,3.9421,5.186471 +L 3.9421,5.186471,2.814,5.262781 +L 4.0647,5.796554,4.0468,6.567859 +L 4.0468,6.567859,3.9453,6.983119 +L 3.9453,6.983119,3.6686,7.398422 +L 3.6686,7.398422,2.6602,7.398422 +L 2.6602,7.398422,1.6617,7.398422 +L 1.6617,7.398422,0.6813,7.398422 +L 4.4917,7.398422,4.1904,7.813594 +L 4.1904,7.813594,4.0822,8.228919 +L 4.0822,8.228919,4.0647,9.000093 +L 4.9225,7.398422,5.7736,7.398422 +L 5.7736,7.398422,6.6285,7.398422 +L 6.6285,7.398422,7.4796,7.398422 + +[枝] 33 +L 1.9894,-0.000003,1.9088,1.600289 +L 1.9088,1.600289,1.8391,3.192022 +L 1.8391,3.192022,1.7761,4.76703 +L 1.7761,4.76703,1.4118,4.069211 +L 1.4118,4.069211,1.0542,3.354514 +L 1.0542,3.354514,0.7075,2.631345 +L 3.4573,-0.000003,4.2243,0.713249 +L 4.2243,0.713249,5.0124,1.409646 +L 5.0124,1.409646,5.8039,2.097506 +L 5.8039,2.097506,4.9034,3.638387 +L 4.9034,3.638387,4.5711,4.459056 +L 4.5711,4.459056,4.5217,5.262781 +L 4.5217,5.262781,5.8039,5.262781 +L 5.8039,5.262781,5.667,6.884263 +L 5.667,6.884263,5.1486,7.378546 +L 5.1486,7.378546,4.0944,7.398422 +L 7.4851,-0.000003,7.0543,0.532479 +L 7.0543,0.532479,6.6266,1.056468 +L 6.6266,1.056468,6.1958,1.563513 +L 6.1958,2.631345,7.4851,5.034005 +L 7.4851,5.034005,6.6266,5.186383 +L 6.6266,5.186471,6.1958,5.262781 +L 3.2398,4.233148,2.4692,5.016974 +L 2.4692,5.016974,2.0353,5.699143 +L 2.0353,5.699143,1.5656,6.86443 +L 1.5656,6.86443,0.7075,6.86443 +L 2.3855,6.86443,2.1085,7.299434 +L 2.1085,7.299434,2.0069,7.853281 +L 2.0069,7.853281,1.9894,9.000093 +L 6.1958,7.398422,5.9195,7.813594 +L 5.9195,7.813594,5.8179,8.228919 +L 5.8179,8.228919,5.8039,9.000093 +L 6.6266,7.398422,7.9054,7.398422 + +[飼] 25 +L 6.2329,-0.000003,7.5113,-0.000003 +L 7.5113,-0.000003,7.5113,8.466122 +L 7.5113,8.466122,4.1279,8.466122 +L 1.1333,0.495813,1.1231,4.621591 +L 1.1231,4.621591,1.0216,6.272646 +L 1.0216,6.272646,0.7379,6.86443 +L 0.7379,6.86443,1.2317,7.587643 +L 1.2317,7.587643,1.7182,8.302362 +L 1.7182,8.302362,2.2051,9.000093 +L 2.2051,9.000093,2.6919,8.466122 +L 2.6919,8.466122,3.1896,7.932239 +L 3.1896,7.932239,3.6974,7.398422 +L 1.7781,0.495813,2.2649,1.029718 +L 2.2649,1.029718,2.7623,1.563513 +L 2.7623,1.563513,3.2701,2.097506 +L 4.9513,2.097506,4.9513,4.76703 +L 4.9513,4.76703,6.2329,4.76703 +L 6.2329,4.76703,6.2329,2.097506 +L 6.2329,2.097506,4.9513,2.097506 +L 1.5641,3.16525,3.2701,3.16525 +L 3.2701,3.16525,3.2701,4.76703 +L 3.2701,4.76703,1.5641,4.76703 +L 3.2701,5.262781,3.2701,6.330459 +L 3.2701,6.330459,1.5641,6.330459 +L 4.5552,6.330459,6.6602,6.330459 + +[似] 20 +L 1.5945,-0.000003,1.5139,1.754287 +L 1.5139,1.754287,1.44,3.508578 +L 1.44,3.508578,1.3805,5.262781 +L 1.3805,5.262781,1.1707,5.108673 +L 1.1707,5.108673,0.9532,4.946334 +L 0.9532,4.946334,0.7399,4.76703 +L 4.7677,-0.000003,6.5154,2.423694 +L 6.5154,2.423694,7.0793,4.898394 +L 7.0793,4.898394,7.1178,8.466122 +L 7.9371,0.266971,7.1178,2.09755 +L 2.4487,1.029718,3.7625,2.412507 +L 3.7625,2.412507,3.8707,5.329196 +L 3.8707,5.329196,3.7026,7.932239 +L 4.1267,1.563513,4.5537,1.933613 +L 4.5537,1.933613,4.981,2.286813 +L 4.981,2.286813,5.4083,2.631345 +L 1.5945,5.796554,1.7027,7.101764 +L 1.7027,7.101764,1.9093,8.050863 +L 1.9093,8.050863,2.0218,9.000093 +L 5.8356,6.330459,4.981,7.39851 + +[示] 11 +L 2.8745,-0.000003,4.1603,-0.000003 +L 4.1603,-0.000003,4.1603,5.796554 +L 4.1603,5.796554,0.7695,5.796554 +L 0.7695,1.563513,1.1793,2.467605 +L 1.1793,2.467605,1.593,3.354514 +L 1.593,3.354514,2.0203,4.233148 +L 7.5436,1.563513,7.1163,2.467605 +L 7.1163,2.467605,6.6925,3.354514 +L 6.6925,3.354514,6.2652,4.233148 +L 4.5841,5.796554,7.5436,5.796554 +L 1.628,8.466122,6.6925,8.466122 + +[識] 48 +L 5.2232,-0.000003,5.4407,0.179344 +L 5.4407,0.179344,5.6505,0.341858 +L 5.6505,0.341858,5.8645,0.495813 +L 5.8645,0.495813,5.5037,0.87145 +L 5.5037,0.87145,4.9573,1.009863 +L 4.9573,1.009863,3.7595,1.029718 +L 3.7595,1.029718,3.7595,3.699177 +L 3.7595,3.699177,5.4407,3.699177 +L 5.4407,3.699177,5.4407,1.563513 +L 7.5733,0.495813,7.2795,0.865869 +L 7.2795,0.865869,6.9923,1.218959 +L 6.9923,1.218959,6.7222,1.563513 +L 6.7222,1.563513,6.5685,1.399686 +L 6.5685,1.399686,6.4245,1.218959 +L 6.4245,1.218959,6.2918,1.029718 +L 8.0006,0.495813,8.0006,0.865869 +L 8.0006,0.865869,8.0006,1.563513 +L 6.7222,2.097506,6.4669,4.816372 +L 6.4669,4.816372,5.4617,5.391299 +L 5.4617,5.391299,3.3357,5.262781 +L 7.1495,2.097506,7.4231,2.820718 +L 7.4231,2.820718,7.7032,3.535437 +L 7.7032,3.535437,8.0006,4.233148 +L 4.1868,2.631345,5.0134,2.631345 +L 7.1495,5.262781,6.8483,5.757043 +L 6.8483,5.757043,6.7366,6.72604 +L 6.7366,6.72604,6.7222,9.000093 +L 4.1868,5.796554,4.0358,6.433585 +L 4.0358,6.433585,3.8922,7.053715 +L 3.8922,7.053715,3.7595,7.665309 +L 3.7595,7.665309,4.0358,7.768259 +L 4.0358,7.768259,4.3125,7.854595 +L 4.3125,7.854595,4.5822,7.932239 +L 4.5822,7.932239,4.5822,9.000093 +L 5.0134,5.796554,5.2971,6.231668 +L 5.2971,6.231668,5.2971,6.78534 +L 5.2971,6.78534,5.0134,7.932239 +L 8.0006,7.131426,7.8504,7.398422 +L 7.8504,7.398422,7.7032,7.665309 +L 7.7032,7.665309,7.5733,7.932239 +L 0.768,6.902519,3.3038,6.902519 +L 1.1988,8.504299,2.8765,8.504299 +L 1.1988,5.300957,2.8765,5.300957 +L 1.1988,4.233038,2.8765,4.233038 +L 1.1988,2.669522,2.8765,2.669522 +L 1.1988,-0.000003,1.1988,2.669522 +L 2.8765,-0.000003,1.1988,-0.000003 +L 2.8765,2.669522,2.8765,-0.000003 + +[舎] 23 +L 2.0835,-0.000003,2.0835,0.877142 +L 2.0835,0.877142,2.0835,2.631345 +L 2.0835,2.631345,6.3214,2.631345 +L 6.3214,2.631345,6.3214,0.877142 +L 6.3214,0.877142,6.3214,-0.000003 +L 6.3214,-0.000003,4.8963,-0.000003 +L 4.8963,-0.000003,3.4879,-0.000003 +L 3.4879,-0.000003,2.0835,-0.000003 +L 1.2257,4.233148,4.1884,4.233148 +L 4.1884,4.233148,3.5373,5.833308 +L 3.5373,5.833308,2.1399,6.153913 +L 2.1399,6.153913,0.8019,5.796554 +L 4.6157,4.233148,7.148,4.233148 +L 4.6157,5.796554,4.3145,6.211835 +L 4.3145,6.211835,4.2063,6.627116 +L 4.2063,6.627116,4.1884,7.398422 +L 5.0395,5.796554,5.6598,5.816408 +L 5.6598,5.816408,5.9922,5.954843 +L 5.9922,5.954843,6.3214,6.330459 +L 6.3214,6.330459,4.1884,8.999984 +L 4.1884,9.000093,3.6214,8.302362 +L 3.6214,8.302362,3.0606,7.587643 +L 3.0606,7.587643,2.5076,6.86443 + +[謝] 44 +L 1.2589,-0.000003,1.2589,0.713249 +L 1.2589,0.713249,1.2589,2.097506 +L 1.2589,2.097506,2.5093,2.097506 +L 2.5093,2.097506,2.5093,0.713249 +L 2.5093,0.713249,2.5093,-0.000003 +L 2.5093,-0.000003,2.0823,-0.000003 +L 2.0823,-0.000003,1.6652,-0.000003 +L 1.6652,-0.000003,1.2589,-0.000003 +L 4.2188,-0.000003,4.4987,-0.000003 +L 4.4987,-0.000003,4.7788,-0.000003 +L 4.7788,-0.000003,5.0734,-0.000003 +L 5.0734,-0.000003,4.9893,0.877142 +L 4.9893,0.877142,4.9189,1.754287 +L 4.9189,1.754287,4.8629,2.631345 +L 4.8629,2.631345,4.3484,2.097506 +L 4.3484,2.097506,3.8546,1.563513 +L 3.8546,1.563513,3.3639,1.029718 +L 6.3234,-0.000003,6.6001,-0.000003 +L 6.6001,-0.000003,6.8807,-0.000003 +L 6.8807,-0.000003,7.1784,-0.000003 +L 7.1784,-0.000003,7.301,2.573533 +L 7.301,2.573533,7.1363,5.15543 +L 7.1363,5.15543,5.8961,6.330459 +L 3.7912,2.631345,4.1067,6.579133 +L 4.1067,6.579133,4.3305,8.230342 +L 4.3305,8.230342,4.6461,9.000093 +L 4.2188,3.16525,5.0734,3.16525 +L 5.0734,3.16525,5.0734,4.76703 +L 5.0734,4.76703,4.2188,4.76703 +L 1.2589,3.699177,2.5093,3.699177 +L 6.3234,3.966086,6.1728,4.233148 +L 6.1728,4.233148,6.0261,4.500013 +L 6.0261,4.500013,5.8961,4.76703 +L 1.2589,5.262781,2.5093,5.262781 +L 5.0734,5.262781,5.0734,6.330459 +L 5.0734,6.330459,4.2188,6.330459 +L 7.6057,6.330459,7.301,6.78534 +L 7.301,6.78534,7.1959,7.477534 +L 7.1959,7.477534,7.1784,9.000093 +L 0.8316,6.86443,2.9401,6.86443 +L 5.0734,6.86443,4.9189,7.23442 +L 4.9189,7.23442,4.7788,7.587643 +L 4.7788,7.587643,4.6461,7.932239 +L 1.2589,8.466122,2.5093,8.466122 + +[授] 39 +L 0.8301,-0.000003,1.1071,-0.000003 +L 1.1071,-0.000003,1.3908,-0.000003 +L 1.3908,-0.000003,1.6885,-0.000003 +L 1.6885,-0.000003,1.6885,1.411069 +L 1.6885,1.411069,1.6885,4.233148 +L 1.6885,4.233148,0.8301,4.233148 +L 4.0037,-0.000003,4.6446,0.532479 +L 4.6446,0.532479,5.2852,1.056468 +L 5.2852,1.056468,5.9297,1.563513 +L 5.9297,1.563513,5.3272,2.35452 +L 5.3272,2.35452,5.1031,2.90817 +L 5.1031,2.90817,5.0719,3.699177 +L 5.0719,3.699177,5.772,3.621532 +L 5.772,3.621532,6.483,3.535437 +L 6.483,3.535437,7.208,3.432224 +L 7.208,3.432224,6.9103,3.001488 +L 6.9103,3.001488,6.6305,2.553722 +L 6.6305,2.553722,6.3538,2.097506 +L 7.6353,-0.000003,7.208,0.343259 +L 7.208,0.343259,6.7807,0.686477 +L 6.7807,0.686477,6.3538,1.029718 +L 3.3977,4.233148,3.3977,5.262781 +L 3.3977,5.262781,4.5255,5.365884 +L 4.5255,5.365884,5.653,5.451935 +L 5.653,5.451935,6.7807,5.529689 +L 6.7807,5.529689,7.0578,6.166829 +L 7.0578,6.166829,7.338,6.786698 +L 7.338,6.786698,7.6353,7.398422 +L 8.0346,4.233148,8.0346,5.262781 +L 8.0346,5.262781,7.208,5.262781 +L 1.6885,4.76703,1.6885,6.330459 +L 1.6885,6.330459,1.1071,6.700515 +L 1.1071,6.700602,0.8301,6.86443 +L 2.1158,6.86443,1.8146,7.299434 +L 1.8146,7.299434,1.7057,7.853281 +L 1.7057,7.853281,1.6885,9.000093 +L 3.7932,7.932239,5.4537,8.07063 +L 5.4537,8.07063,6.5426,8.32771 +L 6.5426,8.32771,7.6353,8.466122 + +[修] 36 +L 1.7151,-0.000003,1.631,1.754287 +L 1.631,1.754287,1.5641,3.508578 +L 1.5641,3.508578,1.5046,5.262781 +L 1.5046,5.262781,1.2878,5.108673 +L 1.2878,5.108673,1.0738,4.946334 +L 1.0738,4.946334,0.864,4.76703 +L 3.82,-0.000003,5.3432,0.221746 +L 5.3432,0.221746,6.6041,0.909693 +L 6.6041,0.909693,8.0611,2.097506 +L 2.9689,1.029718,2.9689,3.163849 +L 2.9689,3.163849,2.9689,5.28964 +L 2.9689,5.28964,2.9689,7.398422 +L 4.2505,1.563513,5.2315,2.097506 +L 5.2315,2.097506,6.2122,2.631345 +L 6.2122,2.631345,7.21,3.16525 +L 4.2505,3.16525,5.3401,3.580575 +L 5.3401,3.580575,5.9982,3.995879 +L 5.9982,3.995879,6.7827,4.76703 +L 6.7827,4.76703,6.5064,5.110184 +L 6.5064,5.110184,6.2297,5.453423 +L 6.2297,5.453423,5.96,5.796554 +L 5.96,5.796554,5.235,5.28964 +L 5.235,5.28964,4.524,4.765586 +L 4.524,4.765586,3.82,4.233148 +L 1.7151,5.796554,1.8268,7.101764 +L 1.8268,7.101764,2.0338,8.050863 +L 2.0338,8.050863,2.1455,9.000093 +L 3.82,6.330459,4.5836,7.497323 +L 4.5836,7.497323,4.9163,8.189166 +L 4.9163,8.189166,5.1016,9.000093 +L 6.3523,6.330459,6.6325,6.786698 +L 6.6325,6.786698,6.9127,7.23442 +L 6.9127,7.23442,7.21,7.665309 +L 7.21,7.665309,6.6391,7.768259 +L 6.6391,7.768259,6.0826,7.854595 +L 6.0826,7.854595,5.5289,7.932239 + +[述] 11 +L 5.9161,-0.015195,8.0495,-0.015195 +L 2.0988,1.052462,1.0446,-0.000003 +L 0.8449,4.751729,2.0988,4.751729 +L 2.0988,1.052462,2.0988,4.751729 +L 1.2754,8.48913,2.0988,7.421254 +L 8.0631,7.398422,2.9674,7.398422 +L 5.4997,9.000093,5.4997,1.029718 +L 4.2493,5.796554,3.3352,2.380788 +L 6.7536,5.796554,7.6677,2.380788 +L 7.3455,8.999984,8.2453,8.100072 +A 5.9161,7.347812,7.362973,238.75988,270 + +[序] 30 +L 0.8645,0.266971,1.5474,2.932228 +L 1.5474,2.932228,1.7296,5.343315 +L 1.7296,5.343315,1.7156,7.932239 +L 1.7156,7.932239,2.6959,7.932239 +L 2.6959,7.932239,3.6804,7.932239 +L 3.6804,7.932239,4.6748,7.932239 +L 4.6748,7.932239,4.6748,8.302362 +L 4.6748,8.302362,4.6748,8.655431 +L 4.6748,8.655431,4.6748,9.000093 +L 3.8205,-0.000003,4.2478,-0.000003 +L 4.2478,-0.000003,4.6748,-0.000003 +L 4.6748,-0.000003,5.1056,-0.000003 +L 5.1056,-0.000003,5.046,2.738695 +L 5.046,2.738695,4.4191,3.630091 +L 4.4191,3.630091,2.5733,3.699177 +L 6.8151,2.097506,7.0845,2.553722 +L 7.0845,2.553722,7.3615,3.001488 +L 7.3615,3.001488,7.6378,3.432224 +L 7.6378,3.432224,6.0722,3.711851 +L 6.0722,3.711851,4.983,4.271258 +L 4.983,4.271258,3.8205,5.262781 +L 5.5294,4.76703,5.8064,5.213308 +L 5.8064,5.213308,6.0901,5.642643 +L 6.0901,5.642643,6.384,6.063616 +L 6.384,6.063616,5.1056,6.166829 +L 5.1056,6.166829,3.8345,6.252858 +L 3.8345,6.252858,2.5733,6.330459 +L 5.1056,7.932239,6.0793,7.932239 +L 6.0793,7.932239,7.0669,7.932239 +L 7.0669,7.932239,8.0616,7.932239 + +[承] 42 +L 2.9644,-0.000003,3.3952,-0.000003 +L 3.3952,-0.000003,3.8225,-0.000003 +L 3.8225,-0.000003,4.2495,-0.000003 +L 4.2495,-0.000003,4.0954,1.611672 +L 4.0954,1.611672,3.5665,2.087655 +L 3.5665,2.087655,2.5406,2.097506 +L 0.8595,1.029718,1.5666,2.638503 +L 1.5666,2.638503,1.9802,4.23862 +L 1.9802,4.23862,2.113,5.796554 +L 2.113,5.796554,1.6857,5.796554 +L 1.6857,5.796554,1.2692,5.796554 +L 1.2692,5.796554,0.8595,5.796554 +L 8.0636,1.029718,7.1428,2.601727 +L 7.1428,2.601727,6.7012,3.639898 +L 6.7012,3.639898,6.3548,5.034005 +L 6.3548,5.034005,5.7839,5.110184 +L 5.7839,5.110184,5.2267,5.186471 +L 5.2267,5.186471,4.6736,5.262781 +L 4.6736,5.262781,4.3931,4.696347 +L 4.3931,4.696347,4.3931,4.290938 +L 4.3931,4.290938,4.6736,3.699177 +L 4.6736,3.699177,4.9503,3.699177 +L 4.9503,3.699177,5.234,3.699177 +L 5.234,3.699177,5.5314,3.699177 +L 4.6736,2.097506,4.3791,2.631345 +L 4.3791,2.631345,4.0954,3.16525 +L 4.0954,3.16525,3.8225,3.699177 +L 3.8225,3.699177,3.5245,3.699177 +L 3.5245,3.699177,3.2408,3.699177 +L 3.2408,3.699177,2.9644,3.699177 +L 5.1041,2.097506,5.3776,2.097506 +L 5.3776,2.097506,5.654,2.097506 +L 5.654,2.097506,5.9275,2.097506 +L 2.5406,5.262781,2.9644,5.262781 +L 2.9644,5.262781,3.3952,5.262781 +L 3.3952,5.262781,3.8225,5.262781 +L 3.8225,5.262781,4.3269,6.439254 +L 4.3269,6.439254,4.8733,7.2006 +L 4.8733,7.2006,5.9275,8.199214 +L 5.9275,8.199214,4.523,8.302362 +L 4.523,8.302362,3.1217,8.388478 +L 3.1217,8.388478,1.7176,8.466122 + +[招] 42 +L 1.2887,-0.000003,1.5651,-0.000003 +L 1.5651,-0.000003,1.8453,-0.000003 +L 1.8453,-0.000003,2.1433,-0.000003 +L 2.1433,-0.000003,2.129,2.622939 +L 2.129,2.622939,2.0173,3.720454 +L 2.0173,3.720454,1.716,4.233148 +L 1.716,4.233148,1.4215,4.069211 +L 1.4215,4.069211,1.1413,3.888397 +L 1.1413,3.888397,0.865,3.699177 +L 4.2798,-0.000003,4.2798,1.066494 +L 4.2798,1.066494,4.2798,2.124234 +L 4.2798,2.124234,4.2798,3.16525 +L 4.2798,3.16525,5.257,3.16525 +L 5.257,3.16525,6.2409,3.16525 +L 6.2409,3.16525,7.2429,3.16525 +L 7.2429,3.16525,7.2429,2.124234 +L 7.2429,2.124234,7.2429,1.066494 +L 7.2429,1.066494,7.2429,-0.000003 +L 7.2429,-0.000003,6.2409,-0.000003 +L 6.2409,-0.000003,5.257,-0.000003 +L 5.257,-0.000003,4.2798,-0.000003 +L 2.5703,4.233148,2.0309,5.508412 +L 2.0309,5.508412,1.8243,6.478788 +L 1.8243,6.478788,0.865,6.86443 +L 3.8522,4.76703,5.0329,6.658266 +L 5.0329,6.658266,5.4668,7.617282 +L 5.4668,7.617282,5.5334,8.466122 +L 5.5334,8.466122,4.959,8.466122 +L 4.959,8.466122,4.4024,8.466122 +L 4.4024,8.466122,3.8522,8.466122 +L 5.9537,4.76703,6.2339,4.76703 +L 6.2339,4.76703,6.5144,4.76703 +L 6.5144,4.76703,6.8121,4.76703 +L 6.8121,4.76703,7.4142,5.946284 +L 7.4142,5.946284,7.6348,6.905321 +L 7.6348,6.905321,7.6632,8.466122 +L 7.6632,8.466122,7.0885,8.466122 +L 7.0885,8.466122,6.5144,8.466122 +L 6.5144,8.466122,5.9537,8.466122 +L 2.5703,6.86443,2.2691,7.299434 +L 2.2691,7.299434,2.1574,7.853281 +L 2.1574,7.853281,2.1433,9.000093 + + +# kan_16 ------------------------------------------------------- +# 証常条状織職勢精税績責絶舌銭祖素総像造則測属損態団断築張提程敵統導銅徳独任燃能破判版犯肥俵]貧婦富布 + +[証] 13 +L 0.0034,6.902541,2.5353,6.902541 +L 0.4304,8.504343,2.1084,8.504343 +L 0.4304,5.300979,2.1084,5.300979 +L 0.4304,4.233038,2.1084,4.233038 +L 0.4304,2.669544,2.1084,2.669544 +L 0.4304,-0.000003,0.4304,2.669544 +L 2.1084,-0.000003,0.4304,-0.000003 +L 2.1084,2.669544,2.1084,-0.000003 +L 3.3938,8.466166,6.7768,8.466166 +L 5.0676,8.466166,5.0676,-0.000003 +L 7.2041,-0.000003,2.9626,-0.000003 +L 3.8176,5.834818,3.8176,-0.000003 +L 6.7768,4.23306,5.0676,4.23306 + +[常] 15 +L 6.8068,5.83495,6.8068,7.398356 +L 0.0366,7.398356,6.8068,7.398356 +L 0.0366,5.83495,0.0366,7.398356 +L 4.7018,7.665374,5.5564,9.000028 +L 3.4199,7.932174,3.4199,8.999962 +L 2.1416,7.665374,1.2835,9.000028 +L 1.7107,5.834818,1.7107,4.23306 +L 1.7107,4.23306,5.0976,4.23306 +L 5.0976,4.23306,5.0976,5.834818 +L 5.0976,5.834818,1.7107,5.834818 +L 5.0976,0.533989,5.9557,0.533989 +L 5.9557,0.533989,5.9557,2.631411 +L 5.9557,2.631411,0.8562,2.631411 +L 0.8562,0.533989,0.8562,2.631411 +L 3.4059,4.23306,3.4059,-0.000003 + +[条] 27 +L 3.4184,-0.000003,3.3379,0.877164 +L 3.3379,0.877164,3.2678,1.7542 +L 3.2678,1.7542,3.2083,2.631411 +L 3.2083,2.631411,2.14,1.943442 +L 2.14,1.943442,1.0788,1.247176 +L 1.0788,1.247176,0.0351,0.533989 +L 6.3815,0.533989,4.2734,2.300779 +L 4.2734,2.300779,2.7285,2.923844 +L 2.7285,2.923844,0.4592,3.165294 +L 4.2734,3.165294,6.3815,3.165294 +L 0.0351,4.23306,0.7251,4.292427 +L 0.7251,4.292427,1.6077,4.707642 +L 1.6077,4.707642,3.4184,5.834818 +L 3.4184,5.834818,1.7408,7.93213 +L 1.7408,7.932174,1.1629,7.398356 +L 1.1629,7.398356,0.592,6.864386 +L 0.592,6.864386,0.0351,6.330459 +L 5.9822,4.23306,5.2646,4.76703 +L 5.2646,4.76703,4.5497,5.30087 +L 4.5497,5.30087,3.8496,5.834818 +L 3.8496,5.834818,5.1245,7.665199 +L 5.1245,7.665199,4.2734,7.768412 +L 4.2734,7.768412,3.4184,7.854508 +L 3.4184,7.854508,2.5673,7.932174 +L 2.5673,7.932174,2.4167,8.302318 +L 2.4167,8.302318,2.27,8.655387 +L 2.27,8.655387,2.14,8.999962 + +[状] 22 +L 1.7431,-0.000003,1.6587,1.411025 +L 1.6587,1.411025,1.5925,2.822054 +L 1.5925,2.822054,1.5291,4.23306 +L 1.5291,4.23306,0.0616,2.631411 +L 3.0247,-0.000003,3.9563,1.604448 +L 3.9563,1.604448,4.5027,3.048005 +L 4.5027,3.048005,5.1296,5.567888 +L 5.1296,5.567888,4.7692,6.104463 +L 4.7692,6.104463,4.2229,6.302199 +L 4.2229,6.302199,3.0247,6.330459 +L 7.2626,-0.000003,6.4189,1.574918 +L 6.4189,1.574918,5.7951,3.192154 +L 5.7951,3.192154,5.5569,4.76703 +L 1.7431,4.76703,1.7431,8.999962 +L 0.8882,6.597411,0.7446,6.864386 +L 0.7446,6.864386,0.615,7.131405 +L 0.615,7.131405,0.4924,7.398356 +L 5.5569,6.330459,5.2561,6.785384 +L 5.2561,6.785384,5.1472,7.477425 +L 5.1472,7.477425,5.1296,8.999962 +L 5.9846,6.330459,7.2626,6.330459 +L 7.2626,7.398356,6.4084,8.466166 + +[織] 72 +L 1.3455,-0.000003,1.3455,1.600267 +L 1.3455,1.600267,1.3455,4.76703 +L 1.3455,4.76703,0.0639,4.76703 +L 4.7359,-0.000003,4.8623,0.937866 +L 4.8623,0.937866,3.8217,1.121394 +L 3.8217,1.121394,3.0547,1.067829 +L 3.0547,1.067829,3.0547,2.134194 +L 3.0547,2.134194,3.0547,4.23306 +L 3.0547,4.23306,3.6049,4.23306 +L 3.6049,4.23306,4.1618,4.23306 +L 4.1618,4.23306,4.7359,4.23306 +L 4.7359,4.23306,4.7359,3.354558 +L 4.7359,3.354558,4.7359,2.46743 +L 4.7359,2.46743,4.7359,1.563535 +L 6.8657,-0.000003,6.5715,0.532566 +L 6.5715,0.532566,6.2878,1.056511 +L 6.2878,1.056511,6.0146,1.563535 +L 6.0146,1.563535,5.864,1.409602 +L 5.864,1.409602,5.7166,1.247176 +L 5.7166,1.247176,5.587,1.067829 +L 7.2615,-0.000003,7.2615,0.532566 +L 7.2615,0.532566,7.2615,1.056511 +L 7.2615,1.056511,7.2615,1.563535 +L 0.0639,1.334738,0.197,1.94493 +L 0.197,1.94493,0.3403,2.555123 +L 0.3403,2.555123,0.4909,3.165294 +L 2.2004,2.097418,2.2004,3.165294 +L 6.0146,2.097418,5.1772,4.286647 +L 5.1772,4.286647,5.0511,5.475992 +L 5.0511,5.475992,2.6309,5.834818 +L 2.6309,5.834818,2.33,5.490134 +L 2.33,5.490134,2.0495,5.137021 +L 2.0495,5.137021,1.7731,4.76703 +L 3.447,2.631411,3.7275,2.631411 +L 3.7275,2.631411,4.0074,2.631411 +L 4.0074,2.631411,4.3054,2.631411 +L 6.4419,2.898298,6.5715,3.535372 +L 6.5715,3.535372,6.7151,4.155415 +L 6.7151,4.155415,6.8657,4.76703 +L 0.9217,5.30087,1.0513,5.567888 +L 1.0513,5.567888,1.1914,5.834818 +L 1.1914,5.834818,1.3455,6.101727 +L 1.3455,6.101727,1.0513,6.444924 +L 1.0513,6.444924,0.7676,6.788164 +L 0.7676,6.788164,0.4909,7.131405 +L 0.4909,7.131405,0.7676,7.768412 +L 0.7676,7.768412,1.0513,8.388499 +L 1.0513,8.388499,1.3455,8.999962 +L 6.0146,5.834818,5.713,6.28241 +L 5.713,6.28241,5.6045,7.103144 +L 5.6045,7.103144,5.587,8.999962 +L 6.4419,5.834818,6.7151,5.834818 +L 6.7151,5.834818,6.9914,5.834818 +L 6.9914,5.834818,7.2615,5.834818 +L 3.447,6.597411,3.3069,6.967446 +L 3.3069,6.967446,3.1773,7.320668 +L 3.1773,7.320668,3.0547,7.665199 +L 3.0547,7.665199,3.3317,7.768412 +L 3.3317,7.768412,3.6049,7.854508 +L 3.6049,7.854508,3.8781,7.932174 +L 3.8781,7.932174,3.8781,8.302318 +L 3.8781,8.302318,3.8781,8.655387 +L 3.8781,8.655387,3.8781,8.999962 +L 4.3054,6.330459,4.5923,6.745806 +L 4.5923,6.745806,4.5923,7.160978 +L 4.5923,7.160978,4.3054,7.932174 +L 1.7731,7.131405,1.9062,7.398356 +L 1.9062,7.398356,2.0495,7.665199 +L 2.0495,7.665199,2.2004,7.932174 +L 7.2615,7.398356,6.9914,7.768412 +L 6.9914,7.768412,6.7151,8.121504 +L 6.7151,8.121504,6.4419,8.466166 + +[職] 75 +L 1.7751,-0.000003,1.7751,0.713293 +L 1.7751,0.713293,1.7751,1.409602 +L 1.7751,1.409602,1.7751,2.097418 +L 1.7751,2.097418,1.3478,2.097418 +L 1.3478,2.097418,0.9272,2.097418 +L 0.9272,2.097418,0.5209,2.097418 +L 0.5209,2.097418,0.5209,4.231637 +L 0.5209,4.231637,0.5209,6.357297 +L 0.5209,6.357297,0.5209,8.466166 +L 0.5209,8.466166,0.9272,8.466166 +L 0.9272,8.466166,1.3478,8.466166 +L 1.3478,8.466166,1.7751,8.466166 +L 1.7751,8.466166,1.7751,7.58889 +L 1.7751,7.58889,1.7751,6.711833 +L 1.7751,6.711833,1.7751,5.834818 +L 1.7751,5.834818,2.3352,5.834818 +L 2.3352,5.834818,2.9064,5.834818 +L 2.9064,5.834818,3.4843,5.834818 +L 3.4843,5.834818,3.3299,6.444924 +L 3.3299,6.444924,3.1863,7.055117 +L 3.1863,7.055117,3.0532,7.665199 +L 3.0532,7.665199,3.3299,7.768412 +L 3.3299,7.768412,3.6136,7.854508 +L 3.6136,7.854508,3.9043,7.932174 +L 3.9043,7.932174,3.9043,8.302318 +L 3.9043,8.302318,3.9043,8.655387 +L 3.9043,8.655387,3.9043,8.999962 +L 4.7624,-0.000003,4.8745,0.937866 +L 4.8745,0.937866,3.8167,1.121394 +L 3.8167,1.121394,3.0532,1.067829 +L 3.0532,1.067829,3.0532,2.134194 +L 3.0532,2.134194,3.0532,3.192154 +L 3.0532,3.192154,3.0532,4.23306 +L 3.0532,4.23306,3.6136,4.23306 +L 3.6136,4.23306,4.1848,4.23306 +L 4.1848,4.23306,4.7624,4.23306 +L 4.7624,4.23306,4.7624,3.354558 +L 4.7624,3.354558,4.7624,2.46743 +L 4.7624,2.46743,4.7624,1.563535 +L 6.8674,-0.000003,6.4404,0.369987 +L 6.4404,0.369987,6.0166,0.723209 +L 6.0166,0.723209,5.5855,1.067829 +L 7.2947,-0.000003,7.2947,0.532566 +L 7.2947,0.532566,7.2947,1.056511 +L 7.2947,1.056511,7.2947,1.563535 +L 6.0166,1.563535,5.6975,2.789524 +L 5.6975,2.789524,5.4839,4.608742 +L 5.4839,4.608742,5.1932,5.834818 +L 5.1932,5.834818,4.7624,5.834818 +L 4.7624,5.834818,4.3354,5.834818 +L 4.3354,5.834818,3.9043,5.834818 +L 6.4404,2.364327,6.5696,3.001466 +L 6.5696,3.001466,6.7167,3.621444 +L 6.7167,3.621444,6.8674,4.23306 +L 1.7751,2.631411,1.7751,3.165294 +L 1.7751,3.165294,1.7751,3.699221 +L 1.7751,3.699221,1.7751,4.23306 +L 1.7751,4.23306,1.4946,4.23306 +L 1.4946,4.23306,1.2249,4.23306 +L 1.2249,4.23306,0.9482,4.23306 +L 3.4843,2.631411,3.7575,2.631411 +L 3.7575,2.631411,4.0444,2.631411 +L 4.0444,2.631411,4.3354,2.631411 +L 6.0166,5.834818,5.715,6.28241 +L 5.715,6.28241,5.603,7.103144 +L 5.603,7.103144,5.5855,8.999962 +L 6.4404,5.834818,6.7167,5.834818 +L 6.7167,5.834818,7.0004,5.834818 +L 7.0004,5.834818,7.2947,5.834818 +L 4.3354,6.330459,4.6191,6.745806 +L 4.6191,6.745806,4.6191,7.160978 +L 4.6191,7.160978,4.3354,7.932174 +L 7.2947,7.398356,7.0004,7.768412 +L 7.0004,7.768412,6.7167,8.121504 +L 6.7167,8.121504,6.4404,8.466166 + +[勢] 51 +L 0.5229,-0.000003,1.6472,0.142678 +L 1.6472,0.142678,2.4846,0.632715 +L 2.4846,0.632715,3.5105,1.563535 +L 3.5105,1.563535,3.1147,1.939239 +L 3.1147,1.939239,2.3442,2.077695 +L 2.3442,2.077695,0.5229,2.097418 +L 5.1882,-0.000003,6.1724,0.272663 +L 6.1724,0.272663,6.4631,1.011242 +L 6.4631,1.011242,6.4736,2.097418 +L 6.4736,2.097418,5.6193,2.097418 +L 5.6193,2.097418,4.7717,2.097418 +L 4.7717,2.097418,3.9417,2.097418 +L 3.9417,2.097418,3.6436,2.631411 +L 3.6436,2.631411,3.3638,3.165294 +L 3.3638,3.165294,3.0867,3.699221 +L 3.0867,3.699221,2.092,3.535372 +L 2.092,3.535372,1.1008,3.354558 +L 1.1008,3.354558,0.1271,3.165294 +L 1.8052,4.23306,1.4724,4.608742 +L 1.4724,4.608742,1.1393,4.747154 +L 1.1393,4.747154,0.5229,4.76703 +L 3.9417,4.23306,4.3444,5.03256 +L 4.3444,5.03256,4.7644,5.823348 +L 4.7644,5.823348,5.1882,6.597411 +L 5.1882,6.597411,4.894,6.864386 +L 4.894,6.864386,4.6103,7.131405 +L 4.6103,7.131405,4.3371,7.398356 +L 6.8977,4.23306,6.5997,4.706285 +L 6.5997,4.706285,6.4914,5.526887 +L 6.4914,5.526887,6.4736,7.398356 +L 6.4736,7.398356,5.5139,7.584666 +L 5.5139,7.584666,5.2092,8.127086 +L 5.2092,8.127086,5.1882,8.999962 +L 2.2321,4.76703,2.043,5.319236 +L 2.043,5.319236,2.134,5.981659 +L 2.134,5.981659,2.2321,6.864386 +L 2.2321,6.864386,1.3005,6.648285 +L 1.3005,6.648285,0.7541,6.38142 +L 0.7541,6.38142,0.1271,5.834818 +L 2.6594,5.834818,2.9326,5.834818 +L 2.9326,5.834818,3.2131,5.834818 +L 3.2131,5.834818,3.5105,5.834818 +L 2.6594,6.864386,2.9326,6.864386 +L 2.9326,6.864386,3.2131,6.864386 +L 3.2131,6.864386,3.5105,6.864386 +L 1.8052,7.398356,1.4724,7.773994 +L 1.4724,7.773994,1.1393,7.912516 +L 1.1393,7.912516,0.5229,7.932174 +L 2.2321,7.932174,2.0815,8.302318 +L 2.0815,8.302318,1.9348,8.655387 +L 1.9348,8.655387,1.8052,8.999962 + +[精] 54 +L 1.4114,-0.000003,1.327,1.411025 +L 1.327,1.411025,1.2534,2.822054 +L 1.2534,2.822054,1.1939,4.23306 +L 1.1939,4.23306,0.8296,3.535372 +L 0.8296,3.535372,0.4692,2.820609 +L 0.4692,2.820609,0.126,2.097418 +L 3.9363,-0.000003,3.9363,1.411025 +L 3.9363,1.411025,3.9363,2.822054 +L 3.9363,2.822054,3.9363,4.23306 +L 3.9363,4.23306,4.7944,4.23306 +L 4.7944,4.23306,5.6455,4.23306 +L 5.6455,4.23306,6.5004,4.23306 +L 6.5004,4.23306,6.5004,2.822054 +L 6.5004,2.822054,6.5004,1.411025 +L 6.5004,1.411025,6.5004,-0.000003 +L 6.5004,-0.000003,6.2062,-0.000003 +L 6.2062,-0.000003,5.926,-0.000003 +L 5.926,-0.000003,5.6455,-0.000003 +L 4.3675,2.097418,4.924,2.097418 +L 4.924,2.097418,5.4949,2.097418 +L 5.4949,2.097418,6.0766,2.097418 +L 4.3675,3.165294,4.924,3.165294 +L 4.924,3.165294,5.4949,3.165294 +L 5.4949,3.165294,6.0766,3.165294 +L 2.2621,4.23306,1.3308,5.360105 +L 1.3308,5.360105,0.7739,5.775342 +L 0.7739,5.775342,0.126,5.834818 +L 1.8352,5.834818,1.5305,6.28241 +L 1.5305,6.28241,1.425,7.103144 +L 1.425,7.103144,1.4114,8.999962 +L 3.0852,5.834818,3.7857,5.937856 +L 3.7857,5.937856,4.497,6.024104 +L 4.497,6.024104,5.2217,6.101727 +L 5.2217,6.101727,4.889,6.6385 +L 4.889,6.6385,4.5566,6.836126 +L 4.5566,6.836126,3.9363,6.864386 +L 5.6455,5.834818,6.1954,5.834818 +L 6.1954,5.834818,6.7561,5.834818 +L 6.7561,5.834818,7.3267,5.834818 +L 0.5529,7.131405,0.4023,7.587599 +L 0.4023,7.587599,0.2556,8.035255 +L 0.2556,8.035255,0.126,8.466166 +L 2.2621,7.131405,2.3847,7.587599 +L 2.3847,7.587599,2.5147,8.035255 +L 2.5147,8.035255,2.6579,8.466166 +L 5.6455,6.864386,5.001,7.615837 +L 5.001,7.615837,4.4442,7.89275 +L 4.4442,7.89275,3.5164,7.932174 +L 5.6455,7.932174,5.4949,8.302318 +L 5.4949,8.302318,5.3513,8.655387 +L 5.3513,8.655387,5.2217,8.999962 +L 6.0766,7.932174,6.346,7.932174 +L 6.346,7.932174,6.6262,7.932174 +L 6.6262,7.932174,6.8994,7.932174 + +[税] 57 +L 1.4099,-0.000003,1.3255,1.411025 +L 1.3255,1.411025,1.2554,2.822054 +L 1.2554,2.822054,1.1924,4.23306 +L 1.1924,4.23306,0.8351,3.535372 +L 0.8351,3.535372,0.4954,2.820609 +L 0.4954,2.820609,0.1592,2.097418 +L 2.9016,-0.000003,3.8896,1.436396 +L 3.8896,1.436396,4.3096,2.542317 +L 4.3096,2.542317,4.3936,4.23306 +L 4.3936,4.23306,4.0994,4.23306 +L 4.0994,4.23306,3.8196,4.23306 +L 3.8196,4.23306,3.5425,4.23306 +L 3.5425,4.23306,3.5425,5.110162 +L 3.5425,5.110162,3.5425,5.987306 +L 3.5425,5.987306,3.5425,6.864386 +L 3.5425,6.864386,4.2434,6.864386 +L 4.2434,6.864386,4.947,6.864386 +L 4.947,6.864386,5.6475,6.864386 +L 5.6475,6.864386,5.7809,7.587599 +L 5.7809,7.587599,5.9245,8.302318 +L 5.9245,8.302318,6.0751,8.999962 +L 5.6475,-0.000003,5.6475,1.411025 +L 5.6475,1.411025,5.6475,2.822054 +L 5.6475,2.822054,5.6475,4.23306 +L 5.6475,4.23306,5.3743,4.23306 +L 5.3743,4.23306,5.0976,4.23306 +L 5.0976,4.23306,4.8244,4.23306 +L 6.0751,-0.000003,6.5056,-0.000003 +L 6.5056,-0.000003,6.9294,-0.000003 +L 6.9294,-0.000003,7.3567,-0.000003 +L 7.3567,-0.000003,7.3567,0.532566 +L 7.3567,0.532566,7.3567,1.056511 +L 7.3567,1.056511,7.3567,1.563535 +L 2.6848,3.699221,1.7107,4.94918 +L 1.7107,4.94918,1.1328,5.84318 +L 1.1328,5.84318,0.1592,6.330459 +L 6.0751,4.23306,6.3515,4.23306 +L 6.3515,4.23306,6.6352,4.23306 +L 6.6352,4.23306,6.9294,4.23306 +L 6.9294,4.23306,6.9294,5.110162 +L 6.9294,5.110162,6.9294,5.987306 +L 6.9294,5.987306,6.9294,6.864386 +L 6.9294,6.864386,6.6352,6.864386 +L 6.6352,6.864386,6.3515,6.864386 +L 6.3515,6.864386,6.0751,6.864386 +L 1.8337,6.330459,1.5356,6.745806 +L 1.5356,6.745806,1.4235,7.160978 +L 1.4235,7.160978,1.4099,7.932174 +L 1.4099,7.932174,0.9822,7.932174 +L 0.9822,7.932174,0.5619,7.932174 +L 0.5619,7.932174,0.1592,7.932174 +L 1.8337,7.932174,2.1104,8.121504 +L 2.1104,8.121504,2.3937,8.302318 +L 2.3937,8.302318,2.6848,8.466166 +L 4.3936,8.199104,4.2434,8.466166 +L 4.2434,8.466166,4.0994,8.733031 +L 4.0994,8.733031,3.9733,8.999962 + +[績] 72 +L 1.436,-0.000003,1.436,1.600267 +L 1.436,1.600267,1.436,3.192154 +L 1.436,3.192154,1.436,4.76703 +L 1.436,4.76703,1.0123,4.76703 +L 1.0123,4.76703,0.585,4.76703 +L 0.585,4.76703,0.1577,4.76703 +L 3.3589,-0.000003,3.6951,0.456169 +L 3.6951,0.456169,4.0384,0.903958 +L 4.0384,0.903958,4.3991,1.334738 +L 4.3991,1.334738,4.2485,2.478748 +L 4.2485,2.478748,4.0979,3.622867 +L 4.0979,3.622867,3.9683,4.76703 +L 3.9683,4.76703,4.8229,4.76703 +L 4.8229,4.76703,5.6775,4.76703 +L 5.6775,4.76703,6.5325,4.76703 +L 6.5325,4.76703,6.3815,3.622867 +L 6.3815,3.622867,6.2379,2.478748 +L 6.2379,2.478748,6.1052,1.334738 +L 6.1052,1.334738,6.3815,0.903958 +L 6.3815,0.903958,6.6652,0.456169 +L 6.6652,0.456169,6.9629,-0.000003 +L 0.1577,1.334738,0.2876,1.94493 +L 0.2876,1.94493,0.4343,2.555123 +L 0.4343,2.555123,0.585,3.165294 +L 2.7214,1.830553,2.5673,2.28666 +L 2.5673,2.28666,2.4241,2.73458 +L 2.4241,2.73458,2.291,3.165294 +L 4.8229,1.563535,5.0996,1.563535 +L 5.0996,1.563535,5.3833,1.563535 +L 5.3833,1.563535,5.6775,1.563535 +L 4.3991,2.631411,4.956,2.631411 +L 4.956,2.631411,5.5269,2.631411 +L 5.5269,2.631411,6.1052,2.631411 +L 4.3991,3.699221,4.956,3.699221 +L 4.956,3.699221,5.5269,3.699221 +L 5.5269,3.699221,6.1052,3.699221 +L 2.7214,4.499969,2.5673,4.76703 +L 2.5673,4.76703,2.4241,5.03394 +L 2.4241,5.03394,2.291,5.30087 +L 2.291,5.30087,2.1435,5.137021 +L 2.1435,5.137021,1.9929,4.956272 +L 1.9929,4.956272,1.8672,4.76703 +L 1.0123,5.30087,1.1418,5.567888 +L 1.1418,5.567888,1.2854,5.834818 +L 1.2854,5.834818,1.436,6.101727 +L 1.436,6.101727,1.1418,6.444924 +L 1.1418,6.444924,0.862,6.788164 +L 0.862,6.788164,0.585,7.131405 +L 0.585,7.131405,0.862,7.768412 +L 0.862,7.768412,1.1418,8.388499 +L 1.1418,8.388499,1.436,8.999962 +L 3.1421,5.834818,3.8496,5.937856 +L 3.8496,5.937856,4.5532,6.024104 +L 4.5532,6.024104,5.2537,6.101727 +L 5.2537,6.101727,4.9213,6.6385 +L 4.9213,6.6385,4.5848,6.836126 +L 4.5848,6.836126,3.9683,6.864386 +L 5.6775,5.834818,6.2379,5.834818 +L 6.2379,5.834818,6.8092,5.834818 +L 6.8092,5.834818,7.3867,5.834818 +L 1.8672,6.864386,1.9929,7.234485 +L 1.9929,7.234485,2.1435,7.587599 +L 2.1435,7.587599,2.291,7.932174 +L 5.6775,6.864386,5.0334,7.615837 +L 5.0334,7.615837,4.487,7.89275 +L 4.487,7.89275,3.5725,7.932174 +L 5.6775,7.932174,5.5269,8.302318 +L 5.5269,8.302318,5.3833,8.655387 +L 5.3833,8.655387,5.2537,8.999962 +L 6.1052,7.932174,6.3815,7.932174 +L 6.3815,7.932174,6.6652,7.932174 +L 6.6652,7.932174,6.9629,7.932174 + +[責] 48 +L 0.1915,-0.000003,0.7446,0.189239 +L 0.7446,0.189239,1.319,0.369987 +L 1.319,0.369987,1.8972,0.533989 +L 6.1348,-0.000003,5.841,0.189239 +L 5.841,0.189239,5.5573,0.369987 +L 5.5573,0.369987,5.2802,0.533989 +L 1.4699,1.563535,1.4699,2.631411 +L 1.4699,2.631411,1.4699,3.699221 +L 1.4699,3.699221,1.4699,4.76703 +L 1.4699,4.76703,2.8706,4.76703 +L 2.8706,4.76703,4.2859,4.76703 +L 4.2859,4.76703,5.711,4.76703 +L 5.711,4.76703,5.711,3.699221 +L 5.711,3.699221,5.711,2.631411 +L 5.711,2.631411,5.711,1.563535 +L 5.711,1.563535,4.2859,1.563535 +L 4.2859,1.563535,2.8706,1.563535 +L 2.8706,1.563535,1.4699,1.563535 +L 1.8972,2.631411,3.025,2.631411 +L 3.025,2.631411,4.1524,2.631411 +L 4.1524,2.631411,5.2802,2.631411 +L 1.8972,3.699221,3.025,3.699221 +L 3.025,3.699221,4.1524,3.699221 +L 4.1524,3.699221,5.2802,3.699221 +L 0.1915,5.834818,1.3155,5.937856 +L 1.3155,5.937856,2.4436,6.024104 +L 2.4436,6.024104,3.5749,6.101727 +L 3.5749,6.101727,3.4239,6.367278 +L 3.4239,6.367278,3.2768,6.624315 +L 3.2768,6.624315,3.1476,6.864386 +L 3.1476,6.864386,2.4436,6.864386 +L 2.4436,6.864386,1.7428,6.864386 +L 1.7428,6.864386,1.0426,6.864386 +L 4.0022,5.834818,4.9755,5.834818 +L 4.9755,5.834818,5.9667,5.834818 +L 5.9667,5.834818,6.9614,5.834818 +L 4.0022,6.864386,2.8916,7.853237 +L 2.8916,7.853237,1.8864,8.011286 +L 1.8864,8.011286,0.6153,7.932174 +L 4.426,6.864386,4.986,6.864386 +L 4.986,6.864386,5.5573,6.864386 +L 5.5573,6.864386,6.1348,6.864386 +L 4.0022,7.932174,3.8477,8.302318 +L 3.8477,8.302318,3.7041,8.655387 +L 3.7041,8.655387,3.5749,8.999962 +L 4.426,7.932174,5.1261,7.932174 +L 5.1261,7.932174,5.8301,7.932174 +L 5.8301,7.932174,6.531,7.932174 + +[絶] 60 +L 1.4649,-0.000003,1.4649,1.600267 +L 1.4649,1.600267,1.4649,3.192154 +L 1.4649,3.192154,1.4649,4.76703 +L 1.4649,4.76703,1.0446,4.76703 +L 1.0446,4.76703,0.624,4.76703 +L 0.624,4.76703,0.2177,4.76703 +L 4.0319,-0.000003,3.1808,3.002824 +L 3.1808,3.002824,3.7482,6.353094 +L 3.7482,6.353094,4.4592,8.999962 +L 4.4592,-0.000003,5.2931,-0.000003 +L 5.2931,-0.000003,6.1368,-0.000003 +L 6.1368,-0.000003,6.9918,-0.000003 +L 6.9918,-0.000003,6.9918,0.532566 +L 6.9918,0.532566,6.9918,1.056511 +L 6.9918,1.056511,6.9918,1.563535 +L 0.2177,1.334738,0.3473,1.94493 +L 0.3473,1.94493,0.4909,2.555123 +L 0.4909,2.555123,0.6485,3.165294 +L 2.7535,1.830553,2.5997,2.28666 +L 2.5997,2.28666,2.4558,2.73458 +L 2.4558,2.73458,2.323,3.165294 +L 4.0319,3.699221,4.4346,3.699221 +L 4.4346,3.699221,4.8549,3.699221 +L 4.8549,3.699221,5.2857,3.699221 +L 5.2857,3.699221,5.2017,5.117276 +L 5.2017,5.117276,4.8444,5.71335 +L 4.8444,5.71335,4.0319,5.834818 +L 5.7095,3.699221,6.1368,3.699221 +L 6.1368,3.699221,6.5641,3.699221 +L 6.5641,3.699221,6.9918,3.699221 +L 6.9918,3.699221,6.9918,4.422302 +L 6.9918,4.422302,6.9918,5.137021 +L 6.9918,5.137021,6.9918,5.834818 +L 6.9918,5.834818,6.0738,5.853118 +L 6.0738,5.853118,5.629,5.981659 +L 5.629,5.981659,5.2857,6.330459 +L 5.2857,6.330459,5.5558,6.786675 +L 5.5558,6.786675,5.8395,7.234485 +L 5.8395,7.234485,6.1368,7.665199 +L 6.1368,7.665199,5.7095,7.768412 +L 5.7095,7.768412,5.2857,7.854508 +L 5.2857,7.854508,4.8549,7.932174 +L 2.7535,4.499969,2.5997,4.76703 +L 2.5997,4.76703,2.4558,5.03394 +L 2.4558,5.03394,2.323,5.30087 +L 2.323,5.30087,2.1721,5.137021 +L 2.1721,5.137021,2.025,4.956272 +L 2.025,4.956272,1.8957,4.76703 +L 1.0446,5.30087,1.1739,5.567888 +L 1.1739,5.567888,1.3175,5.834818 +L 1.3175,5.834818,1.4649,6.101727 +L 1.4649,6.101727,1.1949,6.444924 +L 1.1949,6.444924,0.9185,6.788164 +L 0.9185,6.788164,0.6485,7.131405 +L 0.6485,7.131405,0.9185,7.768412 +L 0.9185,7.768412,1.1949,8.388499 +L 1.1949,8.388499,1.4649,8.999962 +L 1.8957,7.131405,2.025,7.398356 +L 2.025,7.398356,2.1721,7.665199 +L 2.1721,7.665199,2.323,7.932174 + +[舌] 33 +L 1.5016,-0.000003,1.5016,1.066362 +L 1.5016,1.066362,1.5016,2.124321 +L 1.5016,2.124321,1.5016,3.165294 +L 1.5016,3.165294,2.2021,3.165294 +L 2.2021,3.165294,2.9029,3.165294 +L 2.9029,3.165294,3.6031,3.165294 +L 3.6031,3.165294,3.5891,4.687854 +L 3.5891,4.687854,3.4875,5.379938 +L 3.4875,5.379938,3.2111,5.834818 +L 3.2111,5.834818,2.2021,5.834818 +L 2.2021,5.834818,1.2042,5.834818 +L 1.2042,5.834818,0.2165,5.834818 +L 1.9219,-0.000003,3.1828,-0.000003 +L 3.1828,-0.000003,4.4615,-0.000003 +L 4.4615,-0.000003,5.7434,-0.000003 +L 5.7434,-0.000003,5.7434,1.066362 +L 5.7434,1.066362,5.7434,2.124321 +L 5.7434,2.124321,5.7434,3.165294 +L 5.7434,3.165294,5.1617,3.165294 +L 5.1617,3.165294,4.5876,3.165294 +L 4.5876,3.165294,4.0339,3.165294 +L 4.0339,5.834818,3.733,6.242942 +L 3.733,6.242942,3.6206,6.786675 +L 3.6206,6.786675,3.6031,7.932174 +L 3.6031,7.932174,2.752,7.932174 +L 2.752,7.932174,1.9044,7.932174 +L 1.9044,7.932174,1.0708,7.932174 +L 4.4577,5.834818,5.3126,5.834818 +L 5.3126,5.834818,6.1672,5.834818 +L 6.1672,5.834818,7.0215,5.834818 +L 4.0339,7.932174,4.7764,8.070652 +L 4.7764,8.070652,5.4243,8.327622 +L 5.4243,8.327622,6.1672,8.466166 + +[銭] 63 +L 0.2501,-0.000003,0.6774,-0.000003 +L 0.6774,-0.000003,1.1047,-0.000003 +L 1.1047,-0.000003,1.5285,-0.000003 +L 1.5285,-0.000003,1.6052,2.28666 +L 1.6052,2.28666,1.395,4.056449 +L 1.395,4.056449,0.2501,4.76703 +L 3.4194,-0.000003,4.1865,0.61019 +L 4.1865,0.61019,4.957,1.22036 +L 4.957,1.22036,5.7419,1.830553 +L 5.7419,1.830553,5.4649,2.46743 +L 5.4649,2.46743,5.192,3.087605 +L 5.192,3.087605,4.915,3.699221 +L 4.915,3.699221,4.3371,3.699221 +L 4.3371,3.699221,3.7662,3.699221 +L 3.7662,3.699221,3.2061,3.699221 +L 3.2061,3.699221,2.9116,3.165294 +L 2.9116,3.165294,2.6279,2.631411 +L 2.6279,2.631411,2.355,2.097418 +L 7.02,-0.000003,6.7257,0.369987 +L 6.7257,0.369987,6.442,0.723209 +L 6.442,0.723209,6.1657,1.067829 +L 7.4473,-0.000003,7.4473,0.532566 +L 7.4473,0.532566,7.4473,1.056511 +L 7.4473,1.056511,7.4473,1.563535 +L 2.141,0.533989,2.355,0.723209 +L 2.355,0.723209,2.5683,0.903958 +L 2.5683,0.903958,2.7823,1.067829 +L 0.6774,1.830553,0.5229,2.28666 +L 0.5229,2.28666,0.3797,2.73458 +L 0.3797,2.73458,0.2501,3.165294 +L 6.1657,2.097418,6.442,2.46743 +L 6.442,2.46743,6.7257,2.820609 +L 6.7257,2.820609,7.02,3.165294 +L 4.915,4.23306,4.915,4.603072 +L 4.915,4.603072,4.915,4.956272 +L 4.915,4.956272,4.915,5.30087 +L 4.915,5.30087,4.4912,5.30087 +L 4.4912,5.30087,4.0607,5.30087 +L 4.0607,5.30087,3.6369,5.30087 +L 5.3423,4.23306,6.0466,4.23306 +L 6.0466,4.23306,6.7468,4.23306 +L 6.7468,4.23306,7.4473,4.23306 +L 1.9274,4.76703,1.651,5.180867 +L 1.651,5.180867,1.546,5.586144 +L 1.546,5.586144,1.5285,6.330459 +L 1.5285,6.330459,0.9117,6.350402 +L 0.9117,6.350402,0.5824,6.488748 +L 0.5824,6.488748,0.2501,6.864386 +L 0.2501,6.864386,0.6774,7.587599 +L 0.6774,7.587599,1.1047,8.302318 +L 1.1047,8.302318,1.5285,8.999962 +L 1.5285,8.999962,2.4776,7.734483 +L 2.4776,7.734483,3.3214,7.062077 +L 3.3214,7.062077,4.915,6.864386 +L 4.915,6.864386,4.915,7.587599 +L 4.915,7.587599,4.915,8.302318 +L 4.915,8.302318,4.915,8.999962 +L 5.3423,5.834818,5.7486,5.834818 +L 5.7486,5.834818,6.1657,5.834818 +L 6.1657,5.834818,6.5962,5.834818 +L 5.3423,7.398356,5.8957,7.398356 +L 5.8957,7.398356,6.4494,7.398356 +L 6.4494,7.398356,7.02,7.398356 + +[祖] 42 +L 1.534,-0.000003,1.5161,2.622873 +L 1.5161,2.622873,1.4044,3.720345 +L 1.4044,3.720345,1.1032,4.23306 +L 1.1032,4.23306,0.8296,3.888463 +L 0.8296,3.888463,0.5529,3.535372 +L 0.5529,3.535372,0.2797,3.165294 +L 3.2393,-0.000003,3.5128,-0.000003 +L 3.5128,-0.000003,3.793,-0.000003 +L 3.793,-0.000003,4.0939,-0.000003 +L 4.0939,-0.000003,4.0939,2.822054 +L 4.0939,2.822054,4.0939,5.644111 +L 4.0939,5.644111,4.0939,8.466166 +L 4.0939,8.466166,4.924,8.466166 +L 4.924,8.466166,5.7716,8.466166 +L 5.7716,8.466166,6.6265,8.466166 +L 6.6265,8.466166,6.6265,5.644111 +L 6.6265,5.644111,6.6265,2.822054 +L 6.6265,2.822054,6.6265,-0.000003 +L 6.6265,-0.000003,6.9029,-0.000003 +L 6.9029,-0.000003,7.1831,-0.000003 +L 7.1831,-0.000003,7.4811,-0.000003 +L 4.4897,-0.000003,5.0504,-0.000003 +L 5.0504,-0.000003,5.6178,-0.000003 +L 5.6178,-0.000003,6.1989,-0.000003 +L 2.812,3.165294,2.3847,3.699221 +L 2.3847,3.699221,1.9543,4.23306 +L 1.9543,4.23306,1.534,4.76703 +L 1.534,4.76703,1.9543,5.566356 +L 1.9543,5.566356,2.3847,6.357297 +L 2.3847,6.357297,2.812,7.131405 +L 2.812,7.131405,1.9609,7.234485 +L 1.9609,7.234485,1.1133,7.320668 +L 1.1133,7.320668,0.2797,7.398356 +L 4.4897,3.165294,5.0504,3.165294 +L 5.0504,3.165294,5.6178,3.165294 +L 5.6178,3.165294,6.1989,3.165294 +L 4.4897,5.834818,5.0504,5.834818 +L 5.0504,5.834818,5.6178,5.834818 +L 5.6178,5.834818,6.1989,5.834818 +L 1.534,7.932174,1.534,8.302318 +L 1.534,8.302318,1.534,8.655387 +L 1.534,8.655387,1.534,8.999962 + +[素] 48 +L 0.4919,-0.000003,0.9826,0.369987 +L 0.9826,0.369987,1.4761,0.723209 +L 1.4761,0.723209,1.9913,1.067829 +L 3.6651,-0.000003,3.6651,0.713293 +L 3.6651,0.713293,3.6651,1.409602 +L 3.6651,1.409602,3.6651,2.097418 +L 3.6651,2.097418,2.5377,2.097418 +L 2.5377,2.097418,1.4064,2.097418 +L 1.4064,2.097418,0.2817,2.097418 +L 6.6562,-0.000003,6.2292,0.369987 +L 6.2292,0.369987,5.8019,0.723209 +L 5.8019,0.723209,5.3746,1.067829 +L 4.0924,2.097418,4.8493,2.245769 +L 4.8493,2.245769,5.6125,2.571978 +L 5.6125,2.571978,6.6562,2.898298 +L 6.6562,2.898298,6.5021,3.165294 +L 6.5021,3.165294,6.362,3.432159 +L 6.362,3.432159,6.2292,3.699221 +L 3.2378,2.898298,2.814,3.354558 +L 2.814,3.354558,2.3937,3.802259 +L 2.3937,3.802259,1.9913,4.23306 +L 3.6651,3.165294,3.9421,3.535372 +L 3.9421,3.535372,4.2258,3.888463 +L 4.2258,3.888463,4.5236,4.23306 +L 2.8105,4.23306,2.9439,4.499969 +L 2.9439,4.499969,3.0875,4.76703 +L 3.0875,4.76703,3.2378,5.03394 +L 3.2378,5.03394,2.2431,5.137021 +L 2.2431,5.137021,1.2554,5.223138 +L 1.2554,5.223138,0.2817,5.30087 +L 3.6651,5.30087,3.2448,6.774044 +L 3.2448,6.774044,2.2676,6.992882 +L 2.2676,6.992882,1.1328,6.864386 +L 4.0924,5.30087,5.0699,5.30087 +L 5.0699,5.30087,6.0538,5.30087 +L 6.0538,5.30087,7.0485,5.30087 +L 4.0924,6.864386,2.986,7.853237 +L 2.986,7.853237,1.9773,8.011286 +L 1.9773,8.011286,0.7024,7.932174 +L 4.5236,6.864386,5.0766,6.864386 +L 5.0766,6.864386,5.651,6.864386 +L 5.651,6.864386,6.2292,6.864386 +L 4.0924,7.932174,3.9421,8.302318 +L 3.9421,8.302318,3.7985,8.655387 +L 3.7985,8.655387,3.6651,8.999962 +L 4.5236,7.932174,5.2237,7.932174 +L 5.2237,7.932174,5.9312,7.932174 +L 5.9312,7.932174,6.6562,7.932174 + +[総] 63 +L 1.5621,-0.000003,1.5621,1.600267 +L 1.5621,1.600267,1.5621,3.192154 +L 1.5621,3.192154,1.5621,4.76703 +L 1.5621,4.76703,1.1348,4.76703 +L 1.1348,4.76703,0.7145,4.76703 +L 0.7145,4.76703,0.3083,4.76703 +L 4.9805,-0.000003,4.6758,0.433556 +L 4.6758,0.433556,4.5676,0.977378 +L 4.5676,0.977378,4.5501,2.097418 +L 5.3766,-0.000003,5.6495,-0.000003 +L 5.6495,-0.000003,5.9297,-0.000003 +L 5.9297,-0.000003,6.2277,-0.000003 +L 6.2277,-0.000003,6.2277,0.369987 +L 6.2277,0.369987,6.2277,0.723209 +L 6.2277,0.723209,6.2277,1.067829 +L 3.2717,0.533989,3.4009,0.877164 +L 3.4009,0.877164,3.5445,1.22036 +L 3.5445,1.22036,3.6955,1.563535 +L 0.3083,1.334738,0.4413,1.94493 +L 0.4413,1.94493,0.5849,2.555123 +L 0.5849,2.555123,0.7394,3.165294 +L 7.5058,1.334738,7.359,1.600267 +L 7.359,1.600267,7.2154,1.857259 +L 7.2154,1.857259,7.0855,2.097418 +L 2.8405,1.830553,2.6934,2.28666 +L 2.6934,2.28666,2.5463,2.73458 +L 2.5463,2.73458,2.4171,3.165294 +L 2.8405,4.499969,2.6934,4.76703 +L 2.6934,4.76703,2.5463,5.03394 +L 2.5463,5.03394,2.4171,5.30087 +L 2.4171,5.30087,2.2661,5.137021 +L 2.2661,5.137021,2.1159,4.956272 +L 2.1159,4.956272,1.9859,4.76703 +L 3.6955,4.23306,3.9718,4.23306 +L 3.9718,4.23306,4.2555,4.23306 +L 4.2555,4.23306,4.5501,4.23306 +L 4.5501,4.23306,4.6618,5.161035 +L 4.6618,5.161035,4.8688,5.961913 +L 4.8688,5.961913,4.9805,6.864386 +L 5.1626,4.23306,5.5059,4.499969 +L 5.5059,4.499969,5.8635,4.76703 +L 5.8635,4.76703,6.2277,5.03394 +L 6.2277,5.03394,6.0768,5.30087 +L 6.0768,5.30087,5.9297,5.567888 +L 5.9297,5.567888,5.8004,5.834818 +L 1.1593,5.30087,1.2893,5.567888 +L 1.2893,5.567888,1.415,5.834818 +L 1.415,5.834818,1.5621,6.101727 +L 1.5621,6.101727,1.2858,6.444924 +L 1.2858,6.444924,1.0122,6.788164 +L 1.0122,6.788164,0.7394,7.131405 +L 0.7394,7.131405,1.0122,7.768412 +L 1.0122,7.768412,1.2858,8.388499 +L 1.2858,8.388499,1.5621,8.999962 +L 3.2717,5.834818,3.8702,6.974582 +L 3.8702,6.974582,4.0909,7.656881 +L 4.0909,7.656881,4.1228,8.466166 +L 7.5058,5.834818,6.9317,6.901096 +L 6.9317,6.901096,6.357,7.95899 +L 6.357,7.95899,5.8004,8.999962 +L 1.9859,6.864386,2.1159,7.234485 +L 2.1159,7.234485,2.2661,7.587599 +L 2.2661,7.587599,2.4171,7.932174 + +[像] 54 +L 1.1652,-0.000003,1.0811,1.94493 +L 1.0811,1.94493,1.0142,3.889776 +L 1.0142,3.889776,0.9477,5.834818 +L 0.9477,5.834818,0.734,5.670926 +L 0.734,5.670926,0.5239,5.490134 +L 0.5239,5.490134,0.3141,5.30087 +L 4.7619,-0.000003,4.979,0.189239 +L 4.979,0.189239,5.1895,0.369987 +L 5.1895,0.369987,5.4063,0.533989 +L 5.4063,0.533989,5.3223,1.066362 +L 5.3223,1.066362,5.2561,1.590329 +L 5.2561,1.590329,5.1895,2.097418 +L 5.1895,2.097418,3.8267,0.997188 +L 3.8267,0.997188,3.1157,0.591867 +L 3.1157,0.591867,2.4436,0.533989 +L 7.1124,0.533989,6.0298,2.029646 +L 6.0298,2.029646,5.4207,2.711814 +L 5.4207,2.711814,4.7619,3.165294 +L 4.7619,3.165294,3.9777,2.631411 +L 3.9777,2.631411,3.2106,2.097418 +L 3.2106,2.097418,2.4436,1.563535 +L 2.6569,3.165294,3.1437,3.621444 +L 3.1437,3.621444,3.6379,4.069189 +L 3.6379,4.069189,4.1248,4.499969 +L 4.1248,4.499969,3.6975,4.603072 +L 3.6975,4.603072,3.2768,4.689298 +L 3.2768,4.689298,2.874,4.76703 +L 2.874,4.76703,2.8565,5.887005 +L 2.8565,5.887005,2.7448,6.430804 +L 2.7448,6.430804,2.4436,6.864386 +L 2.4436,6.864386,3.2033,7.655436 +L 3.2033,7.655436,3.5364,8.209086 +L 3.5364,8.209086,3.7286,8.999962 +L 4.7619,4.76703,4.7409,6.070664 +L 4.7409,6.070664,4.1314,6.374327 +L 4.1314,6.374327,3.2978,6.330459 +L 5.4063,4.76703,5.9636,4.76703 +L 5.9636,4.76703,6.5341,4.76703 +L 6.5341,4.76703,7.1124,4.76703 +L 7.1124,4.76703,7.1124,5.29947 +L 7.1124,5.29947,7.1124,5.823348 +L 7.1124,5.823348,7.1124,6.330459 +L 7.1124,6.330459,5.8967,6.350402 +L 5.8967,6.350402,5.3433,6.488748 +L 5.3433,6.488748,4.979,6.864386 +L 4.979,6.864386,5.1051,7.131405 +L 5.1051,7.131405,5.2561,7.398356 +L 5.2561,7.398356,5.4063,7.665199 +L 5.4063,7.665199,4.979,7.768412 +L 4.979,7.768412,4.5486,7.854508 +L 4.5486,7.854508,4.1248,7.932174 +L 1.1652,6.597411,1.4415,7.398356 +L 1.4415,7.398356,1.7217,8.199104 +L 1.7217,8.199104,2.0198,8.999962 + +[造] 51 +L 0.5543,-0.000003,0.8972,0.369987 +L 0.8972,0.369987,1.2579,0.723209 +L 1.2579,0.723209,1.6222,1.067829 +L 1.6222,1.067829,1.6222,2.314986 +L 1.6222,2.314986,1.6222,3.545222 +L 1.6222,3.545222,1.6222,4.76703 +L 1.6222,4.76703,1.1914,4.76703 +L 1.1914,4.76703,0.7711,4.76703 +L 0.7711,4.76703,0.3403,4.76703 +L 2.8725,-0.000003,2.5958,0.189239 +L 2.5958,0.189239,2.323,0.369987 +L 2.323,0.369987,2.0495,0.533989 +L 3.2963,-0.000003,4.7047,-0.000003 +L 4.7047,-0.000003,6.1158,-0.000003 +L 6.1158,-0.000003,7.5382,-0.000003 +L 3.7271,1.563535,3.7271,2.28666 +L 3.7271,2.28666,3.7271,3.001466 +L 3.7271,3.001466,3.7271,3.699221 +L 3.7271,3.699221,4.5821,3.699221 +L 4.5821,3.699221,5.4367,3.699221 +L 5.4367,3.699221,6.2913,3.699221 +L 6.2913,3.699221,6.2913,3.001466 +L 6.2913,3.001466,6.2913,2.28666 +L 6.2913,2.28666,6.2913,1.563535 +L 6.2913,1.563535,5.4367,1.563535 +L 5.4367,1.563535,4.5821,1.563535 +L 4.5821,1.563535,3.7271,1.563535 +L 2.8725,5.30087,3.5734,5.30087 +L 3.5734,5.30087,4.2875,5.30087 +L 4.2875,5.30087,5.0094,5.30087 +L 5.0094,5.30087,4.9954,6.420866 +L 4.9954,6.420866,4.883,6.964709 +L 4.883,6.964709,4.5821,7.398356 +L 4.5821,7.398356,3.6606,7.180789 +L 3.6606,7.180789,3.2228,6.903942 +L 3.2228,6.903942,2.8725,6.330459 +L 5.4367,5.30087,5.9831,5.30087 +L 5.9831,5.30087,6.5431,5.30087 +L 6.5431,5.30087,7.1179,5.30087 +L 1.6222,7.398356,1.3248,7.768412 +L 1.3248,7.768412,1.0411,8.121504 +L 1.0411,8.121504,0.7711,8.466166 +L 5.4367,7.398356,5.132,7.813507 +L 5.132,7.813507,5.0266,8.228831 +L 5.0266,8.228831,5.0094,8.999962 +L 5.864,7.398356,6.1368,7.398356 +L 6.1368,7.398356,6.4135,7.398356 +L 6.4135,7.398356,6.6867,7.398356 +L 3.7271,7.932174,3.7271,8.302318 +L 3.7271,8.302318,3.7271,8.655387 +L 3.7271,8.655387,3.7271,8.999962 + +[則] 33 +L 0.5839,-0.000003,0.9205,0.369987 +L 0.9205,0.369987,1.2673,0.723209 +L 1.2673,0.723209,1.6207,1.067829 +L 4.1848,-0.000003,3.8903,0.369987 +L 3.8903,0.369987,3.6066,0.723209 +L 3.6066,0.723209,3.3302,1.067829 +L 6.2863,-0.000003,6.5665,-0.000003 +L 6.5665,-0.000003,6.8463,-0.000003 +L 6.8463,-0.000003,7.144,-0.000003 +L 7.144,-0.000003,7.144,3.011273 +L 7.144,3.011273,7.144,6.014122 +L 7.144,6.014122,7.144,8.999962 +L 0.7979,2.097418,0.7979,4.231637 +L 0.7979,4.231637,0.7979,6.357297 +L 0.7979,6.357297,0.7979,8.466166 +L 0.7979,8.466166,1.7751,8.466166 +L 1.7751,8.466166,2.759,8.466166 +L 2.759,8.466166,3.761,8.466166 +L 3.761,8.466166,3.761,6.357297 +L 3.761,6.357297,3.761,4.231637 +L 3.761,4.231637,3.761,2.097418 +L 3.761,2.097418,2.759,2.097418 +L 2.759,2.097418,1.7751,2.097418 +L 1.7751,2.097418,0.7979,2.097418 +L 5.4352,2.097418,5.4352,4.042308 +L 5.4352,4.042308,5.4352,5.987306 +L 5.4352,5.987306,5.4352,7.932174 +L 1.1934,4.23306,1.8977,4.23306 +L 1.8977,4.23306,2.6052,4.23306 +L 2.6052,4.23306,3.3302,4.23306 +L 1.1934,6.330459,1.8977,6.330459 +L 1.8977,6.330459,2.6052,6.330459 +L 2.6052,6.330459,3.3302,6.330459 + +[測] 39 +L 0.6455,6.521167,0.3726,6.864386 +L 1.6545,7.932174,1.353,8.302318 +L 1.353,8.302318,1.0728,8.655387 +L 1.0728,8.655387,0.7999,8.999962 +L 2.9326,8.466166,3.4825,8.466166 +L 3.4825,8.466166,4.0432,8.466166 +L 4.0432,8.466166,4.6138,8.466166 +L 0.3726,0.266971,0.7999,1.411025 +L 0.7999,1.411025,1.2237,2.555123 +L 1.2237,2.555123,1.6545,3.699221 +L 2.5088,-0.000003,2.7823,0.369987 +L 2.7823,0.369987,3.0622,0.723209 +L 3.0622,0.723209,3.3599,1.067829 +L 6.3233,-0.000003,6.5961,-0.000003 +L 6.5961,-0.000003,6.8798,-0.000003 +L 6.8798,-0.000003,7.1744,-0.000003 +L 7.1744,-0.000003,7.1744,3.011273 +L 7.1744,3.011273,7.1744,6.014122 +L 7.1744,6.014122,7.1744,8.999962 +L 2.9326,2.097418,2.9326,4.231637 +L 2.9326,4.231637,2.9326,6.357297 +L 2.9326,6.357297,2.9326,8.466166 +L 4.6138,8.466166,4.6138,6.357297 +L 4.6138,6.357297,4.6138,4.231637 +L 4.6138,4.231637,4.6138,2.097418 +L 4.6138,2.097418,4.0432,2.097418 +L 4.0432,2.097418,3.4825,2.097418 +L 3.4825,2.097418,2.9326,2.097418 +L 5.8922,2.097418,5.8922,4.042308 +L 5.8922,4.042308,5.8922,5.987306 +L 5.8922,5.987306,5.8922,7.932174 +L 3.3599,4.23306,3.6334,4.23306 +L 3.6334,4.23306,3.9133,4.23306 +L 3.9133,4.23306,4.1833,4.23306 +L 1.2237,5.834818,0.9292,6.17808 +L 0.9292,6.17808,0.6455,6.521167 +L 3.3599,6.330459,3.6334,6.330459 +L 3.6334,6.330459,3.9133,6.330459 +L 3.9133,6.330459,4.1833,6.330459 + +[属] 60 +L 7.1726,7.398356,5.3443,7.398356 +L 5.3443,7.398356,3.5128,7.398356 +L 3.5128,7.398356,1.6807,7.398356 +L 1.2569,8.466166,3.2218,8.466166 +L 3.2218,8.466166,5.194,8.466166 +L 5.194,8.466166,7.1726,8.466166 +L 7.1726,8.466166,7.1726,8.121504 +L 7.1726,8.121504,7.1726,7.768412 +L 7.1726,7.768412,7.1726,7.398356 +L 0.4023,0.266971,1.0993,3.03671 +L 1.0993,3.03671,1.2744,5.62001 +L 1.2744,5.62001,1.2569,8.466166 +L 2.0768,-0.000003,2.0768,0.877164 +L 2.0768,0.877164,2.0768,1.7542 +L 2.0768,1.7542,2.0768,2.631411 +L 2.0768,2.631411,3.6,2.651112 +L 3.6,2.651112,4.2624,2.789524 +L 4.2624,2.789524,4.6441,3.165294 +L 4.6441,3.165294,4.276,3.540954 +L 4.276,3.540954,3.7261,3.679344 +L 3.7261,3.679344,2.5073,3.699221 +L 2.5073,3.699221,2.5073,4.069189 +L 2.5073,4.069189,2.5073,4.422302 +L 2.5073,4.422302,2.5073,4.76703 +L 2.5073,4.76703,3.068,4.76703 +L 3.068,4.76703,3.6354,4.76703 +L 3.6354,4.76703,4.2165,4.76703 +L 4.2165,4.76703,4.3429,5.03394 +L 4.3429,5.03394,4.4932,5.30087 +L 4.4932,5.30087,4.6441,5.567888 +L 4.6441,5.567888,3.9226,5.670926 +L 3.9226,5.670926,3.2116,5.757129 +L 3.2116,5.757129,2.5073,5.834818 +L 6.318,-0.000003,6.5981,-0.000003 +L 6.5981,-0.000003,6.8787,-0.000003 +L 6.8787,-0.000003,7.1726,-0.000003 +L 7.1726,-0.000003,7.1726,0.877164 +L 7.1726,0.877164,7.1726,1.7542 +L 7.1726,1.7542,7.1726,2.631411 +L 7.1726,2.631411,6.7491,2.631411 +L 6.7491,2.631411,6.318,2.631411 +L 6.318,2.631411,5.898,2.631411 +L 5.898,2.631411,5.2287,1.293759 +L 5.2287,1.293759,4.1709,1.007061 +L 4.1709,1.007061,2.9346,1.067829 +L 4.6441,1.830553,4.9205,2.097418 +L 4.9205,2.097418,5.2007,2.364327 +L 5.2007,2.364327,5.4952,2.631411 +L 5.0714,3.699221,4.8543,4.620146 +L 4.8543,4.620146,5.7856,4.812103 +L 5.7856,4.812103,6.7491,4.76703 +L 6.7491,4.76703,6.7491,4.422302 +L 6.7491,4.422302,6.7491,4.069189 +L 6.7491,4.069189,6.7491,3.699221 +L 6.7491,3.699221,6.1779,3.699221 +L 6.1779,3.699221,5.6213,3.699221 +L 5.6213,3.699221,5.0714,3.699221 +L 5.0714,5.834818,5.4007,6.183663 +L 5.4007,6.183663,5.726,6.312159 +L 5.726,6.312159,6.318,6.330459 + +[損] 51 +L 1.7002,7.853237,1.6827,8.999962 +L 1.8091,7.299456,1.7002,7.853237 +L 2.11,6.864386,1.8091,7.299456 +L 1.3889,6.461889,0.4288,6.864386 +L 4.2469,7.398356,4.2469,7.932174 +L 4.2469,7.932174,4.2469,8.466166 +L 4.2469,8.466166,5.0801,8.466166 +L 5.0801,8.466166,5.9245,8.466166 +L 5.9245,8.466166,6.7756,8.466166 +L 6.7756,8.466166,6.7756,7.932174 +L 6.7756,7.932174,6.7756,7.398356 +L 6.7756,7.398356,6.7756,6.864386 +L 6.7756,6.864386,5.9245,6.864386 +L 5.9245,6.864386,5.0801,6.864386 +L 5.0801,6.864386,4.2469,6.864386 +L 4.2469,6.864386,4.2469,7.398356 +L 0.8281,-0.000003,1.1052,-0.000003 +L 1.1052,-0.000003,1.3853,-0.000003 +L 1.3853,-0.000003,1.6827,-0.000003 +L 1.6827,-0.000003,1.669,2.622873 +L 1.669,2.622873,1.5566,3.720345 +L 1.5566,3.720345,1.2554,4.23306 +L 1.2554,4.23306,0.9826,4.069189 +L 0.9826,4.069189,0.709,3.888463 +L 0.709,3.888463,0.4288,3.699221 +L 3.6056,-0.000003,3.9453,0.189239 +L 3.9453,0.189239,4.2885,0.369987 +L 4.2885,0.369987,4.6461,0.533989 +L 7.2061,-0.000003,6.9084,0.189239 +L 6.9084,0.189239,6.6247,0.369987 +L 6.6247,0.369987,6.355,0.533989 +L 3.8196,1.563535,3.8196,3.001466 +L 3.8196,3.001466,3.8196,4.422302 +L 3.8196,4.422302,3.8196,5.834818 +L 3.8196,5.834818,4.9508,5.834818 +L 4.9508,5.834818,6.0748,5.834818 +L 6.0748,5.834818,7.2061,5.834818 +L 7.2061,5.834818,7.2061,4.422302 +L 7.2061,4.422302,7.2061,3.001466 +L 7.2061,3.001466,7.2061,1.563535 +L 7.2061,1.563535,6.0748,1.563535 +L 6.0748,1.563535,4.9508,1.563535 +L 4.9508,1.563535,3.8196,1.563535 +L 4.2469,3.165294,5.0801,3.165294 +L 5.0801,3.165294,5.9245,3.165294 +L 5.9245,3.165294,6.7756,3.165294 +L 2.11,4.23306,1.5986,5.474591 +L 1.5986,5.474591,1.3889,6.461889 +L 4.2469,4.23306,5.0801,4.23306 +L 5.0801,4.23306,5.9245,4.23306 +L 5.9245,4.23306,6.7756,4.23306 + +[態] 63 +L 3.0962,8.836157,2.9635,8.999962 +L 3.2398,8.655387,3.0962,8.836157 +L 3.3943,8.466166,3.2398,8.655387 +L 2.9039,8.121504,3.3943,8.466166 +L 2.4132,7.768412,2.9039,8.121504 +L 1.9264,7.398356,2.4132,7.768412 +L 0.4347,7.398356,1.0508,7.635538 +L 1.0508,7.635538,1.3838,8.050841 +L 1.3838,8.050841,1.7131,8.999962 +L 5.1175,7.853237,5.1031,8.999962 +L 5.2292,7.299456,5.1175,7.853237 +L 5.5234,6.864386,5.2292,7.299456 +L 5.9542,6.864386,6.3643,6.864386 +L 6.3643,6.864386,6.7776,6.864386 +L 6.7776,6.864386,7.2046,6.864386 +L 6.1437,7.951984,6.4761,8.090485 +L 5.5234,7.932174,6.1437,7.951984 +L 6.4761,8.090485,6.8126,8.466166 +L 0.4347,0.266971,0.5639,0.877164 +L 0.5639,0.877164,0.711,1.487269 +L 0.711,1.487269,0.8585,2.097418 +L 2.9635,-0.000003,2.6833,0.433556 +L 2.6833,0.433556,2.5852,0.977378 +L 2.5852,0.977378,2.5673,2.097418 +L 3.3943,-0.000003,4.2453,-0.000003 +L 4.2453,-0.000003,5.1031,-0.000003 +L 5.1031,-0.000003,5.9542,-0.000003 +L 5.9542,-0.000003,5.9542,0.369987 +L 5.9542,0.369987,5.9542,0.723209 +L 5.9542,0.723209,5.9542,1.067829 +L 7.6284,0.800832,7.359,1.247176 +L 7.359,1.247176,7.082,1.676533 +L 7.082,1.676533,6.8126,2.097418 +L 4.6723,1.334738,4.522,1.600267 +L 4.522,1.600267,4.3746,1.857259 +L 4.3746,1.857259,4.2453,2.097418 +L 1.2893,3.165294,1.2893,4.231637 +L 1.2893,4.231637,1.2893,5.289553 +L 1.2893,5.289553,1.2893,6.330459 +L 1.2893,6.330459,1.9894,6.330459 +L 1.9894,6.330459,2.6934,6.330459 +L 2.6934,6.330459,3.3943,6.330459 +L 3.3943,6.330459,3.3943,5.289553 +L 3.3943,5.289553,3.3943,4.231637 +L 3.3943,4.231637,3.3943,3.165294 +L 3.3943,3.165294,3.1137,3.165294 +L 3.1137,3.165294,2.8444,3.165294 +L 2.8444,3.165294,2.5673,3.165294 +L 5.5234,3.165294,5.2292,3.620109 +L 5.2292,3.620109,5.1175,4.312084 +L 5.1175,4.312084,5.1031,5.834818 +L 5.9542,3.165294,6.3643,3.165294 +L 6.3643,3.165294,6.7776,3.165294 +L 6.7776,3.165294,7.2046,3.165294 +L 1.7131,4.23306,2.1194,4.23306 +L 2.1194,4.23306,2.5397,4.23306 +L 2.5397,4.23306,2.9635,4.23306 +L 5.5234,4.76703,6.1437,4.786842 +L 6.1437,4.786842,6.4761,4.925122 +L 6.4761,4.925122,6.8126,5.30087 +L 1.7131,5.30087,2.1194,5.30087 +L 2.1194,5.30087,2.5397,5.30087 +L 2.5397,5.30087,2.9635,5.30087 + +[団] 27 +L 0.4612,8.466166,2.7203,8.466166 +L 2.7203,8.466166,4.979,8.466166 +L 4.979,8.466166,7.2349,8.466166 +L 4.7198,6.628496,4.7023,7.398356 +L 0.4612,-0.000003,0.4612,2.822054 +L 0.4612,2.822054,0.4612,5.644111 +L 0.4612,5.644111,0.4612,8.466166 +L 7.2349,8.466166,7.2349,5.644111 +L 7.2349,5.644111,7.2349,2.822054 +L 7.2349,2.822054,7.2349,-0.000003 +L 7.2349,-0.000003,4.979,-0.000003 +L 4.979,-0.000003,2.7203,-0.000003 +L 2.7203,-0.000003,0.4612,-0.000003 +L 3.8512,1.563535,4.1248,1.563535 +L 4.1248,1.563535,4.4116,1.563535 +L 4.4116,1.563535,4.7023,1.563535 +L 4.7023,1.563535,4.5727,4.975974 +L 4.5727,4.975974,3.6866,5.879912 +L 3.6866,5.879912,1.3154,5.834818 +L 2.9966,3.699221,2.6989,4.069189 +L 2.6989,4.069189,2.4152,4.422302 +L 2.4152,4.422302,2.142,4.76703 +L 5.13,5.834818,4.8323,6.223174 +L 4.8323,6.223174,4.7198,6.628496 +L 5.5289,5.834818,5.8059,5.834818 +L 5.8059,5.834818,6.0861,5.834818 +L 6.0861,5.834818,6.3835,5.834818 + +[断] 36 +L 5.1355,7.932174,6.3683,7.951984 +L 6.3683,7.951984,7.0299,8.090485 +L 7.0299,8.090485,7.6919,8.466166 +L 1.4509,7.665199,1.3139,7.932174 +L 1.591,7.398356,1.4509,7.665199 +L 1.7447,7.131405,1.591,7.398356 +L 2.6134,7.103144,2.5997,8.999962 +L 3.7306,7.587599,3.8816,7.932174 +L 3.58,7.234485,3.7306,7.587599 +L 3.4543,6.864386,3.58,7.234485 +L 4.277,-0.000003,5.1071,2.547943 +L 5.1071,2.547943,5.216,5.180867 +L 5.216,5.180867,5.1355,7.932174 +L 6.8408,-0.000003,6.8408,1.94493 +L 6.8408,1.94493,6.8408,3.889776 +L 6.8408,3.889776,6.8408,5.834818 +L 6.8408,5.834818,6.4135,5.834818 +L 6.4135,5.834818,5.9866,5.834818 +L 5.9866,5.834818,5.5558,5.834818 +L 0.4628,1.067829,0.4628,3.545222 +L 0.4628,3.545222,0.4628,6.014122 +L 0.4628,6.014122,0.4628,8.466166 +L 0.8901,1.067829,1.8747,1.067829 +L 1.8747,1.067829,2.8725,1.067829 +L 2.8725,1.067829,3.8816,1.067829 +L 2.5997,2.097418,2.5153,2.820609 +L 2.5153,2.820609,2.4487,3.535372 +L 2.4487,3.535372,2.3857,4.23306 +L 2.3857,4.23306,2.0214,3.888463 +L 2.0214,3.888463,1.6607,3.535372 +L 1.6607,3.535372,1.3139,3.165294 +L 3.8816,3.699221,2.6484,5.202013 +L 2.6484,5.202013,1.9829,5.75562 +L 1.9829,5.75562,1.3139,5.834818 +L 3.0231,5.834818,2.7258,6.28241 +L 2.7258,6.28241,2.6134,7.103144 + +[築] 43 +L 3.8832,-0.000003,3.7995,0.713293 +L 3.7995,0.713293,3.7291,1.409602 +L 3.7291,1.409602,3.6696,2.097418 +L 3.6696,2.097418,2.6017,1.590329 +L 2.6017,1.590329,1.5401,1.066362 +L 1.5401,1.066362,0.4929,0.533989 +L 6.4089,0.533989,4.3491,2.0268 +L 4.3491,2.0268,2.6784,2.48573 +L 2.6784,2.48573,0.4929,2.631411 +L 4.7343,2.631411,5.5644,2.631411 +L 5.5644,2.631411,6.4155,2.631411 +L 6.4155,2.631411,7.2666,2.631411 +L 3.8832,3.432159,3.5855,3.888463 +L 3.5855,3.888463,3.3018,4.336163 +L 3.3018,4.336163,3.0255,4.76703 +L 3.0255,4.76703,2.1744,4.603072 +L 2.1744,4.603072,1.3233,4.422302 +L 1.3233,4.422302,0.4929,4.23306 +L 6.0127,4.23306,6.0127,4.946378 +L 6.0127,4.946378,6.0127,5.642666 +L 6.0127,5.642666,6.0127,6.330459 +L 6.0127,6.330459,5.4352,6.330459 +L 5.4352,6.330459,4.8639,6.330459 +L 4.8639,6.330459,4.3039,6.330459 +L 4.3039,6.330459,4.4825,5.586144 +L 4.4825,5.586144,4.7028,5.180867 +L 4.7028,5.180867,5.1616,4.76703 +L 6.4089,4.23306,6.6852,4.23306 +L 6.6852,4.23306,6.9689,4.23306 +L 6.9689,4.23306,7.2666,4.23306 +L 7.2666,4.23306,7.2666,4.603072 +L 7.2666,4.603072,7.2666,4.956272 +L 7.2666,4.956272,7.2666,5.30087 +L 2.2024,5.30087,2.2024,5.644111 +L 2.2024,5.644111,2.2024,5.987306 +L 2.2024,5.987306,2.2024,6.330459 +L 2.2024,6.330459,1.2848,6.350402 +L 2.8294,6.864276,2.2126,7.932174 +L 6.2124,6.864276,5.5963,7.932174 +L 7.6939,7.932174,4.6681,7.932174 +L 4.0934,7.932174,1.2809,7.932174 +A 0.5454,9.516902,4.418749,323.10826,353.27931 +A -2.8411,9.516902,4.418749,319.01823,353.27931 + +[張] 16 +L 0.9502,6.368592,3.4825,6.368592 +L 3.4825,6.368592,3.4825,8.466166 +L 3.4825,8.466166,0.5264,8.466166 +L 0.9502,4.233126,0.9502,6.368592 +L 3.4825,4.233126,0.9502,4.233126 +L 1.3775,-0.000025,2.6314,-0.000025 +L 4.3756,9.000006,7.4753,9.000006 +L 7.7243,4.499991,3.6261,4.499991 +L 6.9748,7.500015,4.3756,7.500015 +L 6.9748,6.000003,4.3756,6.000003 +L 4.1269,4.000016,7.7243,-0.000003 +L 7.7243,4.000016,5.9377,2.970623 +L 4.1269,4.499991,4.1269,-0.000025 +L 4.3756,9.000006,4.3756,4.499991 +A -7.4312,4.233126,10.915649,337.18205,0 +A 3.6261,3.901597,3.901618,270,306.12168 + +[提] 54 +L 3.9156,7.425194,3.9156,8.466166 +L 4.3356,6.864386,5.0431,6.864386 +L 5.0431,6.864386,5.7505,6.864386 +L 5.7505,6.864386,6.4724,6.864386 +L 6.8997,8.466166,6.8997,7.425194 +L 5.8941,8.466166,6.8997,8.466166 +L 4.8959,8.466166,5.8941,8.466166 +L 3.9156,8.466166,4.8959,8.466166 +L 1.3935,7.853237,1.3795,8.999962 +L 1.5059,7.299456,1.3935,7.853237 +L 1.8033,6.864386,1.5059,7.299456 +L 1.0856,6.519723,0.8019,6.70058 +L 0.8019,6.70058,0.5249,6.864386 +L 0.5249,-0.000003,0.8019,-0.000003 +L 0.8019,-0.000003,1.0856,-0.000003 +L 1.0856,-0.000003,1.3795,-0.000003 +L 1.3795,-0.000003,1.3795,1.247176 +L 1.3795,1.247176,1.3795,2.477434 +L 1.3795,2.477434,1.3795,3.699221 +L 1.3795,3.699221,1.0856,3.699221 +L 1.0856,3.699221,0.8019,3.699221 +L 0.8019,3.699221,0.5249,3.699221 +L 2.6617,-0.000003,3.2638,1.159615 +L 3.2638,1.159615,3.4845,1.980305 +L 3.4845,1.980305,3.5128,3.165294 +L 5.6213,-0.000003,5.0431,0.532566 +L 5.0431,0.532566,4.469,1.056511 +L 4.469,1.056511,3.9156,1.563535 +L 6.0451,-0.000003,6.595,-0.000003 +L 6.595,-0.000003,7.1554,-0.000003 +L 7.1554,-0.000003,7.7263,-0.000003 +L 5.1905,1.067829,5.1905,2.134194 +L 5.1905,2.134194,5.1905,3.192154 +L 5.1905,3.192154,5.1905,4.23306 +L 5.1905,4.23306,4.49,4.23306 +L 4.49,4.23306,3.7892,4.23306 +L 3.7892,4.23306,3.089,4.23306 +L 5.6213,2.097418,6.0451,2.097418 +L 6.0451,2.097418,6.4724,2.097418 +L 6.4724,2.097418,6.8997,2.097418 +L 1.3795,4.23306,1.3795,4.946378 +L 1.3795,4.946378,1.3795,5.642666 +L 1.3795,5.642666,1.3795,6.330459 +L 1.3795,6.330459,1.0856,6.519723 +L 5.6213,4.23306,6.3253,4.23306 +L 6.3253,4.23306,7.0254,4.23306 +L 7.0254,4.23306,7.7263,4.23306 +L 3.9156,5.30087,3.9156,6.367278 +L 3.9156,6.367278,3.9156,7.425194 +L 6.8997,7.425194,6.8997,6.367278 +L 6.8997,6.367278,6.8997,5.30087 +L 6.8997,5.30087,5.8941,5.30087 +L 5.8941,5.30087,4.8959,5.30087 +L 4.8959,5.30087,3.9156,5.30087 + +[程] 51 +L 2.793,8.302318,3.0837,8.466166 +L 2.5093,8.121504,2.793,8.302318 +L 2.2326,7.932174,2.5093,8.121504 +L 1.8512,7.160978,1.8372,7.932174 +L 1.9527,6.745806,1.8512,7.160978 +L 1.8372,7.932174,1.4099,7.932174 +L 1.4099,7.932174,0.9826,7.932174 +L 0.9826,7.932174,0.5588,7.932174 +L 1.8372,-0.000003,1.7531,1.411025 +L 1.7531,1.411025,1.6862,2.822054 +L 1.6862,2.822054,1.6232,4.23306 +L 1.6232,4.23306,1.2589,3.535372 +L 1.2589,3.535372,0.8985,2.820609 +L 0.8985,2.820609,0.5588,2.097418 +L 3.5148,-0.000003,4.215,-0.000003 +L 4.215,-0.000003,4.926,-0.000003 +L 4.926,-0.000003,5.651,-0.000003 +L 5.651,-0.000003,5.5669,1.391236 +L 5.5669,1.391236,5.2027,1.977437 +L 5.2027,1.977437,4.3726,2.097418 +L 6.0471,-0.000003,6.6036,-0.000003 +L 6.6036,-0.000003,7.1749,-0.000003 +L 7.1749,-0.000003,7.7559,-0.000003 +L 6.0471,2.097418,5.7701,2.532532 +L 5.7701,2.532532,5.665,3.086116 +L 5.665,3.086116,5.651,4.23306 +L 5.651,4.23306,5.0734,4.23306 +L 5.0734,4.23306,4.4987,4.23306 +L 4.4987,4.23306,3.9421,4.23306 +L 3.0837,3.699221,2.3131,4.508396 +L 2.3131,4.508396,1.8792,5.190674 +L 1.8792,5.190674,1.4099,6.330459 +L 1.4099,6.330459,1.1118,6.330459 +L 1.1118,6.330459,0.8281,6.330459 +L 0.8281,6.330459,0.5588,6.330459 +L 6.0471,4.23306,6.4744,4.23306 +L 6.4744,4.23306,6.8982,4.23306 +L 6.8982,4.23306,7.3287,4.23306 +L 2.2326,6.330459,1.9527,6.745806 +L 4.3726,6.330459,4.3726,7.053584 +L 4.3726,7.053584,4.3726,7.768412 +L 4.3726,7.768412,4.3726,8.466166 +L 4.3726,8.466166,5.2027,8.466166 +L 5.2027,8.466166,6.0471,8.466166 +L 6.0471,8.466166,6.8982,8.466166 +L 6.8982,8.466166,6.8982,7.768412 +L 6.8982,7.768412,6.8982,7.053584 +L 6.8982,7.053584,6.8982,6.330459 +L 6.8982,6.330459,6.0471,6.330459 +L 6.0471,6.330459,5.2027,6.330459 +L 5.2027,6.330459,4.3726,6.330459 + +[敵] 66 +L 0.5849,-0.000003,0.5849,1.94493 +L 0.5849,1.94493,0.5849,3.889776 +L 0.5849,3.889776,0.5849,5.834818 +L 0.5849,5.834818,0.862,5.834818 +L 0.862,5.834818,1.1313,5.834818 +L 1.1313,5.834818,1.4119,5.834818 +L 1.4119,5.834818,1.2574,6.444924 +L 1.2574,6.444924,1.1138,7.055117 +L 1.1138,7.055117,0.9811,7.665199 +L 0.9811,7.665199,1.4119,7.768412 +L 1.4119,7.768412,1.8357,7.854508 +L 1.8357,7.854508,2.263,7.932174 +L 2.263,7.932174,2.263,8.302318 +L 2.263,8.302318,2.263,8.655387 +L 2.263,8.655387,2.263,8.999962 +L 3.1207,-0.000003,3.3942,-0.000003 +L 3.3942,-0.000003,3.6744,-0.000003 +L 3.6744,-0.000003,3.9718,-0.000003 +L 3.9718,-0.000003,3.9718,1.94493 +L 3.9718,1.94493,3.9718,3.889776 +L 3.9718,3.889776,3.9718,5.834818 +L 3.9718,5.834818,3.3942,5.834818 +L 3.3942,5.834818,2.8233,5.834818 +L 2.8233,5.834818,2.263,5.834818 +L 2.263,5.834818,2.2941,5.063535 +L 2.2941,5.063535,2.5186,4.648276 +L 2.5186,4.648276,3.1207,4.23306 +L 5.2222,-0.000003,5.653,0.61019 +L 5.653,0.61019,6.0768,1.22036 +L 6.0768,1.22036,6.5041,1.830553 +L 6.5041,1.830553,5.8946,3.242917 +L 5.8946,3.242917,5.6218,4.409671 +L 5.6218,4.409671,5.4397,6.330459 +L 5.4397,6.330459,5.2222,6.176549 +L 5.2222,6.176549,5.0124,6.014122 +L 5.0124,6.014122,4.7949,5.834818 +L 7.7863,-0.000003,7.4918,0.369987 +L 7.4918,0.369987,7.2046,0.723209 +L 7.2046,0.723209,6.9317,1.067829 +L 1.4119,1.563535,1.4119,2.097418 +L 1.4119,2.097418,1.4119,2.631411 +L 1.4119,2.631411,1.4119,3.165294 +L 1.4119,3.165294,1.6847,3.268332 +L 1.6847,3.268332,1.9649,3.354558 +L 1.9649,3.354558,2.263,3.432159 +L 2.263,3.432159,1.9649,3.699221 +L 1.9649,3.699221,1.6847,3.966064 +L 1.6847,3.966064,1.4119,4.23306 +L 1.8357,1.563535,2.263,1.563535 +L 2.263,1.563535,2.6899,1.563535 +L 2.6899,1.563535,3.1207,1.563535 +L 3.1207,1.563535,2.9669,2.097418 +L 2.9669,2.097418,2.8233,2.631411 +L 2.8233,2.631411,2.6899,3.165294 +L 6.9317,2.898298,7.2326,3.579043 +L 7.2326,3.579043,7.345,4.607275 +L 7.345,4.607275,7.3625,6.864386 +L 7.3625,6.864386,6.7808,6.967446 +L 6.7808,6.967446,6.2067,7.053584 +L 6.2067,7.053584,5.653,7.131405 +L 5.653,7.131405,5.7829,7.768412 +L 5.7829,7.768412,5.9265,8.388499 +L 5.9265,8.388499,6.0768,8.999962 +L 2.6899,6.330459,2.9771,6.745806 +L 2.9771,6.745806,2.9771,7.160978 +L 2.9771,7.160978,2.6899,7.932174 + +[統] 63 +L 1.8688,-0.000003,1.8688,1.600267 +L 1.8688,1.600267,1.8688,3.192154 +L 1.8688,3.192154,1.8688,4.76703 +L 1.8688,4.76703,1.4415,4.76703 +L 1.4415,4.76703,1.0142,4.76703 +L 1.0142,4.76703,0.5838,4.76703 +L 3.3297,-0.000003,3.8232,0.713293 +L 3.8232,0.713293,4.3209,1.409602 +L 4.3209,1.409602,4.8249,2.097418 +L 4.8249,2.097418,4.5727,4.122908 +L 4.5727,4.122908,4.6358,5.410979 +L 4.6358,5.410979,5.2525,7.131405 +L 5.2525,7.131405,4.6743,7.234485 +L 4.6743,7.234485,4.1037,7.320668 +L 4.1037,7.320668,3.5465,7.398356 +L 6.1103,-0.000003,6.1103,1.600267 +L 6.1103,1.600267,6.1103,3.192154 +L 6.1103,3.192154,6.1103,4.76703 +L 6.1103,4.76703,5.8126,4.76703 +L 5.8126,4.76703,5.5289,4.76703 +L 5.5289,4.76703,5.2525,4.76703 +L 6.5344,-0.000003,6.9404,-0.000003 +L 6.9404,-0.000003,7.361,-0.000003 +L 7.361,-0.000003,7.7848,-0.000003 +L 7.7848,-0.000003,7.7848,0.532566 +L 7.7848,0.532566,7.7848,1.056511 +L 7.7848,1.056511,7.7848,1.563535 +L 0.5838,1.334738,0.7204,1.94493 +L 0.7204,1.94493,0.8605,2.555123 +L 0.8605,2.555123,1.0142,3.165294 +L 3.1157,1.830553,2.9756,2.28666 +L 2.9756,2.28666,2.8429,2.73458 +L 2.8429,2.73458,2.7203,3.165294 +L 3.1157,4.499969,2.9756,4.76703 +L 2.9756,4.76703,2.8429,5.03394 +L 2.8429,5.03394,2.7203,5.30087 +L 2.7203,5.30087,2.5693,5.137021 +L 2.5693,5.137021,2.4292,4.956272 +L 2.4292,4.956272,2.2926,4.76703 +L 7.361,5.03394,7.2174,5.30087 +L 7.2174,5.30087,7.084,5.567888 +L 7.084,5.567888,6.9614,5.834818 +L 6.9614,5.834818,6.6637,5.670926 +L 6.6637,5.670926,6.3835,5.490134 +L 6.3835,5.490134,6.1103,5.30087 +L 1.4415,5.30087,1.5715,5.567888 +L 1.5715,5.567888,1.7182,5.834818 +L 1.7182,5.834818,1.8688,6.101727 +L 1.8688,6.101727,1.5715,6.444924 +L 1.5715,6.444924,1.2913,6.788164 +L 1.2913,6.788164,1.0142,7.131405 +L 1.0142,7.131405,1.2913,7.768412 +L 1.2913,7.768412,1.5715,8.388499 +L 1.5715,8.388499,1.8688,8.999962 +L 2.2926,7.131405,2.4292,7.398356 +L 2.4292,7.398356,2.5693,7.665199 +L 2.5693,7.665199,2.7203,7.932174 +L 5.6798,7.398356,5.6798,7.932174 +L 5.6798,7.932174,5.6798,8.466166 +L 5.6798,8.466166,5.6798,8.999962 +L 6.1103,7.398356,6.657,7.398356 +L 6.657,7.398356,7.2174,7.398356 +L 7.2174,7.398356,7.7848,7.398356 + +[導] 69 +L 5.2822,-0.000003,5.5628,-0.000003 +L 5.5628,-0.000003,5.8321,-0.000003 +L 5.8321,-0.000003,6.1091,-0.000003 +L 6.1091,-0.000003,6.0913,0.769748 +L 6.0913,0.769748,5.9831,1.175157 +L 5.9831,1.175157,5.6783,1.563535 +L 5.6783,1.563535,4.6833,1.487269 +L 4.6833,1.487269,3.6995,1.411025 +L 3.6995,1.411025,2.7223,1.334738 +L 2.7223,1.334738,2.8515,1.067829 +L 2.8515,1.067829,2.9951,0.800832 +L 2.9951,0.800832,3.1531,0.533989 +L 0.6173,1.563535,1.1672,1.563535 +L 1.1672,1.563535,1.7237,1.563535 +L 1.7237,1.563535,2.2946,1.563535 +L 6.5361,1.563535,6.2349,1.978773 +L 6.2349,1.978773,6.1232,2.394098 +L 6.1232,2.394098,6.1091,3.165294 +L 6.1091,3.165294,4.407,3.170898 +L 4.407,3.170898,3.1247,3.413814 +L 3.1247,3.413814,1.8638,4.23306 +L 1.8638,4.23306,1.4435,3.888463 +L 1.4435,3.888463,1.0236,3.535372 +L 1.0236,3.535372,0.6173,3.165294 +L 6.9634,1.563535,7.2369,1.563535 +L 7.2369,1.563535,7.5241,1.563535 +L 7.5241,1.563535,7.818,1.563535 +L 6.5361,3.165294,6.9634,3.165294 +L 6.9634,3.165294,7.3907,3.165294 +L 7.3907,3.165294,7.818,3.165294 +L 3.5734,4.23306,3.5734,5.29947 +L 3.5734,5.29947,3.5734,6.357297 +L 3.5734,6.357297,3.5734,7.398356 +L 3.5734,7.398356,4.0042,7.398356 +L 4.0042,7.398356,4.4311,7.398356 +L 4.4311,7.398356,4.8584,7.398356 +L 4.8584,7.398356,4.8584,7.768412 +L 4.8584,7.768412,4.8584,8.121504 +L 4.8584,8.121504,4.8584,8.466166 +L 4.8584,8.466166,4.1334,8.466166 +L 4.1334,8.466166,3.4224,8.466166 +L 3.4224,8.466166,2.7223,8.466166 +L 4.0042,4.23306,4.981,4.23306 +L 4.981,4.23306,5.9655,4.23306 +L 5.9655,4.23306,6.9634,4.23306 +L 6.9634,4.23306,6.9634,4.603072 +L 6.9634,4.603072,6.9634,4.956272 +L 6.9634,4.956272,6.9634,5.30087 +L 6.9634,5.30087,5.9655,5.30087 +L 5.9655,5.30087,4.981,5.30087 +L 4.981,5.30087,4.0042,5.30087 +L 1.8638,4.76703,1.8638,5.29947 +L 1.8638,5.29947,1.8638,5.823348 +L 1.8638,5.823348,1.8638,6.330459 +L 1.8638,6.330459,1.4435,6.330459 +L 1.4435,6.330459,1.0236,6.330459 +L 1.0236,6.330459,0.6173,6.330459 +L 6.9634,6.101727,5.9655,6.17808 +L 5.9655,6.17808,4.981,6.254171 +L 4.981,6.254171,4.0042,6.330459 +L 6.9634,7.131405,6.3928,7.234485 +L 6.3928,7.234485,5.8321,7.320668 +L 5.8321,7.320668,5.2822,7.398356 +L 1.4719,8.199104,1.3174,8.466166 +L 1.3174,8.466166,1.1773,8.733031 +L 1.1773,8.733031,1.0446,8.999962 +L 5.2822,8.466166,6.1193,8.466166 +L 6.1193,8.466166,6.9634,8.466166 +L 6.9634,8.466166,7.818,8.466166 + +[銅] 54 +L 0.6158,-0.000003,1.0431,-0.000003 +L 1.0431,-0.000003,1.4704,-0.000003 +L 1.4704,-0.000003,1.9008,-0.000003 +L 1.9008,-0.000003,1.9747,2.28666 +L 1.9747,2.28666,1.7607,4.056449 +L 1.7607,4.056449,0.6158,4.76703 +L 4.0303,-0.000003,4.0303,2.822054 +L 4.0303,2.822054,4.0303,5.644111 +L 4.0303,5.644111,4.0303,8.466166 +L 4.0303,8.466166,5.1616,8.466166 +L 5.1616,8.466166,6.2898,8.466166 +L 6.2898,8.466166,7.4211,8.466166 +L 7.4211,8.466166,7.4211,5.644111 +L 7.4211,5.644111,7.4211,2.822054 +L 7.4211,2.822054,7.4211,-0.000003 +L 7.4211,-0.000003,7.123,-0.000003 +L 7.123,-0.000003,6.8428,-0.000003 +L 6.8428,-0.000003,6.5661,-0.000003 +L 2.5386,0.533989,2.7519,0.723209 +L 2.7519,0.723209,2.9659,0.903958 +L 2.9659,0.903958,3.1792,1.067829 +L 1.0431,1.830553,0.8921,2.28666 +L 0.8921,2.28666,0.7454,2.73458 +L 0.7454,2.73458,0.6158,3.165294 +L 2.7519,2.364327,2.8815,2.820609 +L 2.8815,2.820609,3.029,3.268332 +L 3.029,3.268332,3.1792,3.699221 +L 4.8569,2.097418,4.8569,3.001466 +L 4.8569,3.001466,4.8569,3.888463 +L 4.8569,3.888463,4.8569,4.76703 +L 4.8569,4.76703,5.4177,4.76703 +L 5.4177,4.76703,5.9851,4.76703 +L 5.9851,4.76703,6.5661,4.76703 +L 6.5661,4.76703,6.5661,3.888463 +L 6.5661,3.888463,6.5661,3.001466 +L 6.5661,3.001466,6.5661,2.097418 +L 6.5661,2.097418,5.9851,2.097418 +L 5.9851,2.097418,5.4177,2.097418 +L 5.4177,2.097418,4.8569,2.097418 +L 2.3215,4.76703,2.0269,5.180867 +L 2.0269,5.180867,1.9152,5.586144 +L 1.9152,5.586144,1.9008,6.330459 +L 1.9008,6.330459,1.2809,6.350402 +L 1.2809,6.350402,0.9485,6.488748 +L 0.9485,6.488748,0.6158,6.864386 +L 0.6158,6.864386,1.0431,7.587599 +L 1.0431,7.587599,1.4704,8.302318 +L 1.4704,8.302318,1.9008,8.999962 +L 1.9008,8.999962,2.3215,8.466166 +L 2.3215,8.466166,2.7519,7.932174 +L 2.7519,7.932174,3.1792,7.398356 +L 4.8569,6.864386,5.4177,6.864386 +L 5.4177,6.864386,5.9851,6.864386 +L 5.9851,6.864386,6.5661,6.864386 + +[徳] 66 +L 1.5001,-0.000003,1.4195,1.411025 +L 1.4195,1.411025,1.3498,2.822054 +L 1.3498,2.822054,1.2868,4.23306 +L 1.2868,4.23306,1.0763,4.069189 +L 1.0763,4.069189,0.863,3.888463 +L 0.863,3.888463,0.649,3.699221 +L 2.7504,0.266971,2.8839,0.877164 +L 2.8839,0.877164,3.0275,1.487269 +L 3.0275,1.487269,3.1812,2.097418 +L 4.8908,-0.000003,4.5861,0.433556 +L 4.5861,0.433556,4.4771,0.977378 +L 4.4771,0.977378,4.4596,2.097418 +L 5.3146,-0.000003,5.7209,-0.000003 +L 5.7209,-0.000003,6.1408,-0.000003 +L 6.1408,-0.000003,6.5646,-0.000003 +L 6.5646,-0.000003,6.5646,0.369987 +L 6.5646,0.369987,6.5646,0.723209 +L 6.5646,0.723209,6.5646,1.067829 +L 7.8469,1.334738,7.5558,1.781015 +L 7.5558,1.781015,7.2686,2.210482 +L 7.2686,2.210482,6.9958,2.631411 +L 5.7419,2.364327,5.5909,2.631411 +L 5.5909,2.631411,5.4438,2.898298 +L 5.4438,2.898298,5.3146,3.165294 +L 3.605,4.23306,3.605,4.946378 +L 3.605,4.946378,3.605,5.642666 +L 3.605,5.642666,3.605,6.330459 +L 3.605,6.330459,4.1658,6.330459 +L 4.1658,6.330459,4.7363,6.330459 +L 4.7363,6.330459,5.3146,6.330459 +L 5.3146,6.330459,4.9748,7.779686 +L 4.9748,7.779686,4.1514,8.033876 +L 4.1514,8.033876,3.1812,7.932174 +L 4.0323,4.23306,4.309,4.23306 +L 4.309,4.23306,4.5927,4.23306 +L 4.5927,4.23306,4.8908,4.23306 +L 4.8908,4.23306,4.8908,4.76703 +L 4.8908,4.76703,4.8908,5.30087 +L 4.8908,5.30087,4.8908,5.834818 +L 5.3146,4.23306,5.5909,4.23306 +L 5.5909,4.23306,5.8746,4.23306 +L 5.8746,4.23306,6.1692,4.23306 +L 6.1692,4.23306,6.0182,4.946378 +L 6.0182,4.946378,5.8746,5.642666 +L 5.8746,5.642666,5.7419,6.330459 +L 6.5646,4.23306,6.8413,4.23306 +L 6.8413,4.23306,7.125,4.23306 +L 7.125,4.23306,7.4157,4.23306 +L 7.4157,4.23306,7.4157,4.946378 +L 7.4157,4.946378,7.4157,5.642666 +L 7.4157,5.642666,7.4157,6.330459 +L 7.4157,6.330459,7.125,6.330459 +L 7.125,6.330459,6.8413,6.330459 +L 6.8413,6.330459,6.5646,6.330459 +L 1.5001,4.76703,1.7771,5.48013 +L 1.7771,5.48013,2.0608,6.176549 +L 2.0608,6.176549,2.3585,6.864386 +L 0.649,6.864386,1.0763,7.587599 +L 1.0763,7.587599,1.5001,8.302318 +L 1.5001,8.302318,1.9274,8.999962 +L 5.7419,7.932174,5.5909,8.302318 +L 5.5909,8.302318,5.4438,8.655387 +L 5.4438,8.655387,5.3146,8.999962 +L 6.1692,7.932174,6.7187,7.932174 +L 6.7187,7.932174,7.276,7.932174 +L 7.276,7.932174,7.8469,7.932174 + +[独] 51 +L 0.6793,-0.000003,1.2888,0.039596 +L 1.2888,0.039596,1.7227,0.316334 +L 1.7227,0.316334,2.3532,1.067829 +L 2.3532,1.067829,2.2765,2.478748 +L 2.2765,2.478748,2.2029,3.889776 +L 2.2029,3.889776,2.143,5.30087 +L 2.143,5.30087,1.653,4.603072 +L 1.653,4.603072,1.1662,3.888463 +L 1.1662,3.888463,0.6793,3.165294 +L 3.2081,-0.000003,3.9118,-0.000003 +L 3.9118,-0.000003,4.6126,-0.000003 +L 4.6126,-0.000003,5.3166,-0.000003 +L 5.3166,-0.000003,5.2991,2.247126 +L 5.2991,2.247126,5.1975,3.206272 +L 5.1975,3.206272,4.917,3.699221 +L 4.917,3.699221,4.49,3.699221 +L 4.49,3.699221,4.0627,3.699221 +L 4.0627,3.699221,3.6389,3.699221 +L 3.6389,3.699221,3.6389,4.76552 +L 3.6389,4.76552,3.6389,5.823348 +L 3.6389,5.823348,3.6389,6.864386 +L 3.6389,6.864386,4.8434,7.028279 +L 4.8434,7.028279,5.2672,7.666644 +L 5.2672,7.666644,5.3166,8.999962 +L 7.88,0.266971,7.7263,0.533989 +L 7.7263,0.533989,7.5827,0.800832 +L 7.5827,0.800832,7.4527,1.067829 +L 7.4527,1.067829,7.1025,0.692125 +L 7.1025,0.692125,6.6577,0.553647 +L 6.6577,0.553647,5.7439,0.533989 +L 5.7439,3.699221,5.1271,5.282439 +L 5.1271,5.282439,5.7085,6.425113 +L 5.7085,6.425113,7.0219,6.864386 +L 7.0219,6.864386,7.0219,5.823348 +L 7.0219,5.823348,7.0219,4.76552 +L 7.0219,4.76552,7.0219,3.699221 +L 7.0219,3.699221,6.5981,3.699221 +L 6.5981,3.699221,6.1712,3.699221 +L 6.1712,3.699221,5.7439,3.699221 +L 1.9332,5.834818,1.9157,6.579045 +L 1.9157,6.579045,1.8033,6.98452 +L 1.8033,6.98452,1.5021,7.398356 +L 1.5021,7.398356,1.2292,7.053584 +L 1.2292,7.053584,0.9522,6.70058 +L 0.9522,6.70058,0.6793,6.330459 +L 1.5021,7.932174,1.2292,8.302318 +L 1.2292,8.302318,0.9522,8.655387 +L 0.9522,8.655387,0.6793,8.999962 +L 1.9332,7.932174,2.2029,8.302318 +L 2.2029,8.302318,2.4866,8.655387 +L 2.4866,8.655387,2.7843,8.999962 + +[任] 30 +L 1.5324,-0.000003,1.4484,1.781015 +L 1.4484,1.781015,1.3815,3.545222 +L 1.3815,3.545222,1.3184,5.30087 +L 1.3184,5.30087,1.1016,5.137021 +L 1.1016,5.137021,0.8911,4.956272 +L 0.8911,4.956272,0.6813,4.76703 +L 3.2413,-0.000003,3.9421,-0.000003 +L 3.9421,-0.000003,4.6461,-0.000003 +L 4.6461,-0.000003,5.3463,-0.000003 +L 5.3463,-0.000003,5.3186,3.063526 +L 5.3186,3.063526,4.7302,4.118639 +L 4.7302,4.118639,2.814,4.23306 +L 5.7736,-0.000003,6.3308,-0.000003 +L 6.3308,-0.000003,6.9013,-0.000003 +L 6.9013,-0.000003,7.4796,-0.000003 +L 5.7736,4.23306,5.4723,4.725877 +L 5.4723,4.725877,5.3606,5.685002 +L 5.3606,5.685002,5.3463,7.932174 +L 5.3463,7.932174,4.6461,7.932174 +L 4.6461,7.932174,3.9421,7.932174 +L 3.9421,7.932174,3.2413,7.932174 +L 6.2009,4.23306,6.7511,4.23306 +L 6.7511,4.23306,7.3076,4.23306 +L 7.3076,4.23306,7.8785,4.23306 +L 1.5324,5.834818,1.6442,7.113038 +L 1.6442,7.113038,1.8473,8.052308 +L 1.8473,8.052308,1.9597,8.999962 +L 5.7736,7.932174,6.1203,8.307921 +L 6.1203,8.307921,6.5651,8.446246 +L 6.5651,8.446246,7.4796,8.466166 + +[燃] 60 +L 0.7075,-0.000003,1.5695,2.697739 +L 1.5695,2.697739,1.6602,6.200518 +L 1.6602,6.200518,1.5656,8.999962 +L 2.8125,-0.000003,3.114,0.413811 +L 3.114,0.413811,3.2258,0.819155 +L 3.2258,0.819155,3.2398,1.563535 +L 4.9493,0.266971,4.7984,0.713293 +L 4.7984,0.713293,4.6548,1.142715 +L 4.6548,1.142715,4.5217,1.563535 +L 6.1958,0.266971,6.0557,0.713293 +L 6.0557,0.713293,5.9265,1.142715 +L 5.9265,1.142715,5.8039,1.563535 +L 7.9054,0.266971,7.6108,0.713293 +L 7.6108,0.713293,7.3306,1.142715 +L 7.3306,1.142715,7.0543,1.563535 +L 2.3855,1.334738,2.2451,1.600267 +L 2.2451,1.600267,2.112,1.857259 +L 2.112,1.857259,1.9894,2.097418 +L 2.8125,2.631411,3.2398,3.268332 +L 3.2398,3.268332,3.6706,3.888463 +L 3.6706,3.888463,4.0944,4.499969 +L 4.0944,4.499969,3.8005,4.956272 +L 3.8005,4.956272,3.5168,5.403929 +L 3.5168,5.403929,3.2398,5.834818 +L 3.2398,5.834818,3.0895,5.670926 +L 3.0895,5.670926,2.9459,5.490134 +L 2.9459,5.490134,2.8125,5.30087 +L 4.5217,2.631411,5.0089,3.802259 +L 5.0089,3.802259,5.4957,4.956272 +L 5.4957,4.956272,5.9861,6.101727 +L 5.9861,6.101727,5.632,6.17808 +L 5.632,6.17808,5.2852,6.254171 +L 5.2852,6.254171,4.9493,6.330459 +L 4.9493,6.330459,4.7984,5.987306 +L 4.7984,5.987306,4.6548,5.644111 +L 4.6548,5.644111,4.5217,5.30087 +L 7.9054,2.631411,7.4851,3.535372 +L 7.4851,3.535372,7.0543,4.422302 +L 7.0543,4.422302,6.6266,5.30087 +L 0.7075,4.76703,0.7075,5.48013 +L 0.7075,5.48013,0.7075,6.176549 +L 0.7075,6.176549,0.7075,6.864386 +L 1.9894,6.330459,2.2661,6.70058 +L 2.2661,6.70058,2.5396,7.053584 +L 2.5396,7.053584,2.8125,7.398356 +L 3.2398,6.330459,3.5445,6.785384 +L 3.5445,6.785384,3.6534,7.477425 +L 3.6534,7.477425,3.6706,8.999962 +L 6.6266,6.330459,6.3258,6.785384 +L 6.3258,6.785384,6.2134,7.477425 +L 6.2134,7.477425,6.1958,8.999962 +L 7.0543,6.330459,7.3306,6.330459 +L 7.3306,6.330459,7.6108,6.330459 +L 7.6108,6.330459,7.9054,6.330459 +L 4.9493,6.864386,4.9493,7.234485 +L 4.9493,7.234485,4.9493,7.587599 +L 4.9493,7.587599,4.9493,7.932174 +L 4.9493,7.932174,4.6548,7.932174 +L 4.6548,7.932174,4.3711,7.932174 +L 4.3711,7.932174,4.0944,7.932174 + +[能] 54 +L 1.1333,-0.000003,1.1333,1.781015 +L 1.1333,1.781015,1.1333,3.545222 +L 1.1333,3.545222,1.1333,5.30087 +L 1.1333,5.30087,1.9879,5.30087 +L 1.9879,5.30087,2.8428,5.30087 +L 2.8428,5.30087,3.6974,5.30087 +L 3.6974,5.30087,3.6974,3.545222 +L 3.6974,3.545222,3.6974,1.781015 +L 3.6974,1.781015,3.6974,-0.000003 +L 3.6974,-0.000003,3.4029,-0.000003 +L 3.4029,-0.000003,3.1227,-0.000003 +L 3.1227,-0.000003,2.8428,-0.000003 +L 5.8024,-0.000003,5.5044,0.512712 +L 5.5044,0.512712,5.3926,1.610227 +L 5.3926,1.610227,5.3786,4.23306 +L 6.2329,-0.000003,6.7936,-0.000003 +L 6.7936,-0.000003,7.361,-0.000003 +L 7.361,-0.000003,7.9421,-0.000003 +L 7.9421,-0.000003,7.9421,0.369987 +L 7.9421,0.369987,7.9421,0.723209 +L 7.9421,0.723209,7.9421,1.067829 +L 1.5641,2.097418,2.1213,2.097418 +L 2.1213,2.097418,2.6919,2.097418 +L 2.6919,2.097418,3.2701,2.097418 +L 5.8024,2.631411,6.3625,2.820609 +L 6.3625,2.820609,6.9337,3.001466 +L 6.9337,3.001466,7.5113,3.165294 +L 1.5641,3.699221,2.1213,3.699221 +L 2.1213,3.699221,2.6919,3.699221 +L 2.6919,3.699221,3.2701,3.699221 +L 5.8024,5.30087,5.5044,5.793752 +L 5.5044,5.793752,5.3926,6.752833 +L 5.3926,6.752833,5.3786,8.999962 +L 6.2329,5.30087,6.7936,5.30087 +L 6.7936,5.30087,7.361,5.30087 +L 7.361,5.30087,7.9421,5.30087 +L 7.9421,5.30087,7.9421,5.644111 +L 7.9421,5.644111,7.9421,5.987306 +L 7.9421,5.987306,7.9421,6.330459 +L 0.7379,6.864386,1.0142,6.864386 +L 1.0142,6.864386,1.2878,6.864386 +L 1.2878,6.864386,1.5641,6.864386 +L 1.5641,6.864386,1.694,7.587599 +L 1.694,7.587599,1.8408,8.302318 +L 1.8408,8.302318,1.9879,8.999962 +L 2.2051,6.864386,2.6919,7.131405 +L 2.6919,7.131405,3.1896,7.398356 +L 3.1896,7.398356,3.6974,7.665199 +L 3.6974,7.665199,3.5465,7.932174 +L 3.5465,7.932174,3.4029,8.199104 +L 3.4029,8.199104,3.2701,8.466166 +L 5.8024,7.398356,6.3625,7.587599 +L 6.3625,7.587599,6.9337,7.768412 +L 6.9337,7.768412,7.5113,7.932174 + +[破] 48 +L 2.876,-0.000003,3.9166,2.434989 +L 3.9166,2.434989,4.1618,4.632734 +L 4.1618,4.632734,4.1267,7.398356 +L 4.1267,7.398356,5.1666,7.46613 +L 5.1666,7.46613,5.692,7.889816 +L 5.692,7.889816,5.8356,8.999962 +L 4.7677,-0.000003,5.2545,0.532566 +L 5.2545,0.532566,5.7515,1.056511 +L 5.7515,1.056511,6.2594,1.563535 +L 6.2594,1.563535,5.6818,2.631411 +L 5.6818,2.631411,5.1109,3.699221 +L 5.1109,3.699221,4.5537,4.76703 +L 7.5133,-0.000003,7.2369,0.369987 +L 7.2369,0.369987,6.9634,0.723209 +L 6.9634,0.723209,6.6905,1.067829 +L 1.1707,1.563535,1.2789,5.115809 +L 1.2789,5.115809,1.4859,7.024032 +L 1.4859,7.024032,1.5945,8.466166 +L 1.5945,8.466166,1.2964,8.466166 +L 1.2964,8.466166,1.0162,8.466166 +L 1.0162,8.466166,0.7399,8.466166 +L 1.5945,1.563535,1.8712,1.563535 +L 1.8712,1.563535,2.151,1.563535 +L 2.151,1.563535,2.4487,1.563535 +L 2.4487,1.563535,2.4487,2.820609 +L 2.4487,2.820609,2.4487,4.069189 +L 2.4487,4.069189,2.4487,5.30087 +L 2.4487,5.30087,2.151,5.30087 +L 2.151,5.30087,1.8712,5.30087 +L 1.8712,5.30087,1.5945,5.30087 +L 6.6905,2.364327,6.9634,3.087605 +L 6.9634,3.087605,7.2369,3.802259 +L 7.2369,3.802259,7.5133,4.499969 +L 7.5133,4.499969,6.8131,4.603072 +L 6.8131,4.603072,6.1123,4.689298 +L 6.1123,4.689298,5.4083,4.76703 +L 5.8356,5.30087,5.8496,6.420866 +L 5.8496,6.420866,5.962,6.964709 +L 5.962,6.964709,6.2594,7.398356 +L 6.2594,7.398356,6.6657,7.320668 +L 6.6657,7.320668,7.086,7.234485 +L 7.086,7.234485,7.5133,7.131405 +L 7.5133,7.131405,7.3662,6.864386 +L 7.3662,6.864386,7.2404,6.597411 +L 7.2404,6.597411,7.1178,6.330459 +L 2.0218,8.466166,2.2985,8.466166 +L 2.2985,8.466166,2.5783,8.466166 +L 2.5783,8.466166,2.876,8.466166 + +[判] 30 +L 2.8745,-0.000003,2.7975,2.312075 +L 2.7975,2.312075,2.2511,3.090363 +L 2.2511,3.090363,0.7695,3.165294 +L 6.6925,-0.000003,6.9654,-0.000003 +L 6.9654,-0.000003,7.2456,-0.000003 +L 7.2456,-0.000003,7.5436,-0.000003 +L 7.5436,-0.000003,7.5436,3.011273 +L 7.5436,3.011273,7.5436,6.014122 +L 7.5436,6.014122,7.5436,8.999962 +L 5.8341,2.097418,5.8341,4.042308 +L 5.8341,4.042308,5.8341,5.987306 +L 5.8341,5.987306,5.8341,7.932174 +L 3.3018,3.165294,2.6402,4.44776 +L 2.6402,4.44776,2.3845,5.111606 +L 2.3845,5.111606,1.1968,5.30087 +L 3.7291,3.165294,4.1603,3.165294 +L 4.1603,3.165294,4.5841,3.165294 +L 4.5841,3.165294,5.0114,3.165294 +L 3.3018,5.30087,3.0006,5.793752 +L 3.0006,5.793752,2.8889,6.752833 +L 2.8889,6.752833,2.8745,8.999962 +L 3.7291,5.30087,4.0093,5.30087 +L 4.0093,5.30087,4.2895,5.30087 +L 4.2895,5.30087,4.5841,5.30087 +L 1.628,7.131405,1.4739,7.587599 +L 1.4739,7.587599,1.3303,8.035255 +L 1.3303,8.035255,1.1968,8.466166 +L 4.1603,7.131405,4.2895,7.587599 +L 4.2895,7.587599,4.43,8.035255 +L 4.43,8.035255,4.5841,8.466166 + +[版] 36 +L 0.768,-0.000003,0.8805,1.15528 +L 0.8805,1.15528,1.0906,3.59881 +L 1.0906,3.59881,1.1988,8.999962 +L 2.9084,-0.000003,2.9084,1.411025 +L 2.9084,1.411025,2.9084,2.822054 +L 2.9084,2.822054,2.9084,4.23306 +L 2.9084,4.23306,2.4772,4.23306 +L 2.4772,4.23306,2.0499,4.23306 +L 2.0499,4.23306,1.6261,4.23306 +L 3.7595,0.266971,4.4495,3.04516 +L 4.4495,3.04516,4.6071,5.637018 +L 4.6071,5.637018,4.5822,8.466166 +L 4.5822,8.466166,5.7135,8.466166 +L 5.7135,8.466166,6.8483,8.466166 +L 6.8483,8.466166,8.0006,8.466166 +L 4.7994,-0.000003,5.2862,0.61019 +L 5.2862,0.61019,5.7839,1.22036 +L 5.7839,1.22036,6.2918,1.830553 +L 6.2918,1.830553,5.8645,3.165294 +L 5.8645,3.165294,5.4407,4.499969 +L 5.4407,4.499969,5.0134,5.834818 +L 8.0006,-0.000003,7.5733,0.61019 +L 7.5733,0.61019,7.1495,1.22036 +L 7.1495,1.22036,6.7222,1.830553 +L 6.7222,1.830553,7.325,3.224617 +L 7.325,3.224617,7.5421,4.262743 +L 7.5421,4.262743,7.5733,5.834818 +L 7.5733,5.834818,6.9923,5.834818 +L 6.9923,5.834818,6.4245,5.834818 +L 6.4245,5.834818,5.8645,5.834818 +L 1.6261,6.330459,1.9028,6.330459 +L 1.9028,6.330459,2.1834,6.330459 +L 2.1834,6.330459,2.4772,6.330459 +L 2.4772,6.330459,2.4772,7.234485 +L 2.4772,7.234485,2.4772,8.121504 +L 2.4772,8.121504,2.4772,8.999962 + +[犯] 39 +L 1.2257,-0.000003,1.8562,0.039596 +L 1.8562,0.039596,2.2936,0.316334 +L 2.2936,0.316334,2.9069,1.067829 +L 2.9069,1.067829,2.8263,2.478748 +L 2.8263,2.478748,2.7524,3.889776 +L 2.7524,3.889776,2.6964,5.30087 +L 2.6964,5.30087,2.0519,4.422302 +L 2.0519,4.422302,1.4215,3.535372 +L 1.4215,3.535372,0.8019,2.631411 +L 4.6157,-0.000003,4.3145,0.669512 +L 4.3145,0.669512,4.2063,2.864368 +L 4.2063,2.864368,4.1884,8.466166 +L 4.1884,8.466166,5.1621,8.466166 +L 5.1621,8.466166,6.1502,8.466166 +L 6.1502,8.466166,7.148,8.466166 +L 7.148,8.466166,7.148,6.891311 +L 7.148,6.891311,7.148,5.29947 +L 7.148,5.29947,7.148,3.699221 +L 7.148,3.699221,6.7207,3.699221 +L 6.7207,3.699221,6.3004,3.699221 +L 6.3004,3.699221,5.8976,3.699221 +L 5.0395,-0.000003,5.8731,-0.000003 +L 5.8731,-0.000003,6.7207,-0.000003 +L 6.7207,-0.000003,7.5718,-0.000003 +L 7.5718,-0.000003,7.5718,0.532566 +L 7.5718,0.532566,7.5718,1.056511 +L 7.5718,1.056511,7.5718,1.563535 +L 0.8019,5.834818,1.2257,6.444924 +L 1.2257,6.444924,1.6565,7.055117 +L 1.6565,7.055117,2.0835,7.665199 +L 2.0835,7.665199,1.7858,8.121504 +L 1.7858,8.121504,1.5056,8.56927 +L 1.5056,8.56927,1.2257,8.999962 +L 2.5076,5.834818,2.5076,6.17808 +L 2.5076,6.17808,2.5076,6.521167 +L 2.5076,6.521167,2.5076,6.864386 +L 2.5076,7.932174,2.7843,8.302318 +L 2.7843,8.302318,3.0606,8.655387 +L 3.0606,8.655387,3.3342,8.999962 + +[肥] 39 +L 0.8316,0.266971,1.1296,1.104582 +L 1.1296,1.104582,1.2414,3.230264 +L 1.2414,3.230264,1.2589,8.466166 +L 1.2589,8.466166,1.8088,8.466166 +L 1.8088,8.466166,2.3692,8.466166 +L 2.3692,8.466166,2.9401,8.466166 +L 2.9401,8.466166,2.9401,5.644111 +L 2.9401,5.644111,2.9401,2.822054 +L 2.9401,2.822054,2.9401,-0.000003 +L 2.9401,-0.000003,2.6389,-0.000003 +L 2.6389,-0.000003,2.359,-0.000003 +L 2.359,-0.000003,2.0823,-0.000003 +L 4.6461,-0.000003,4.3449,0.669512 +L 4.3449,0.669512,4.2325,2.864368 +L 4.2325,2.864368,4.2188,8.466166 +L 4.2188,8.466166,5.3497,8.466166 +L 5.3497,8.466166,6.4775,8.466166 +L 6.4775,8.466166,7.6057,8.466166 +L 7.6057,8.466166,7.6057,7.244358 +L 7.6057,7.244358,7.6057,6.014122 +L 7.6057,6.014122,7.6057,4.76703 +L 7.6057,4.76703,6.611,4.76703 +L 6.611,4.76703,5.6198,4.76703 +L 5.6198,4.76703,4.6461,4.76703 +L 5.0734,-0.000003,6.0506,-0.000003 +L 6.0506,-0.000003,7.0348,-0.000003 +L 7.0348,-0.000003,8.0295,-0.000003 +L 8.0295,-0.000003,8.0295,0.532566 +L 8.0295,0.532566,8.0295,1.056511 +L 8.0295,1.056511,8.0295,1.563535 +L 1.655,3.699221,1.9317,3.699221 +L 1.9317,3.699221,2.2154,3.699221 +L 2.2154,3.699221,2.5093,3.699221 +L 5.8961,5.30087,5.8961,6.17808 +L 5.8961,6.17808,5.8961,7.055117 +L 5.8961,7.055117,5.8961,7.932174 +L 1.655,6.330459,1.9317,6.330459 +L 1.9317,6.330459,2.2154,6.330459 +L 2.2154,6.330459,2.5093,6.330459 + +[俵] 51 +L 1.6885,-0.000003,1.6041,1.94493 +L 1.6041,1.94493,1.5376,3.889776 +L 1.5376,3.889776,1.4749,5.834818 +L 1.4749,5.834818,1.2574,5.670926 +L 1.2574,5.670926,1.0476,5.490134 +L 1.0476,5.490134,0.8301,5.30087 +L 2.9669,-0.000003,4.0278,0.385573 +L 4.0278,0.385573,4.2593,1.355971 +L 4.2593,1.355971,4.2208,2.631411 +L 4.2208,2.631411,3.6496,2.46743 +L 3.6496,2.46743,3.093,2.28666 +L 3.093,2.28666,2.5396,2.097418 +L 7.6353,-0.000003,6.8438,1.411025 +L 6.8438,1.411025,6.0592,2.822054 +L 6.0592,2.822054,5.2852,4.23306 +L 5.2852,4.23306,4.9209,3.888463 +L 4.9209,3.888463,4.564,3.535372 +L 4.564,3.535372,4.2208,3.165294 +L 4.8579,0.533989,5.0719,0.723209 +L 5.0719,0.723209,5.2852,0.903958 +L 5.2852,0.903958,5.5027,1.067829 +L 6.7807,2.097418,7.1839,2.631411 +L 7.1839,2.631411,7.6042,3.165294 +L 7.6042,3.165294,8.0346,3.699221 +L 2.9669,4.76703,3.8005,4.76703 +L 3.8005,4.76703,4.6481,4.76703 +L 4.6481,4.76703,5.5027,4.76703 +L 5.5027,4.76703,5.2642,6.053744 +L 5.2642,6.053744,4.6548,6.365899 +L 4.6548,6.365899,3.7932,6.330459 +L 5.9297,4.76703,6.6305,4.76703 +L 6.6305,4.76703,7.3306,4.76703 +L 7.3306,4.76703,8.0346,4.76703 +L 1.6885,6.597411,1.9617,7.398356 +L 1.9617,7.398356,2.2451,8.199104 +L 2.2451,8.199104,2.5396,8.999962 +L 5.9297,6.330459,5.6284,6.864386 +L 5.6284,6.864386,5.3482,7.398356 +L 5.3482,7.398356,5.0719,7.932174 +L 5.0719,7.932174,4.5007,7.932174 +L 4.5007,7.932174,3.9473,7.932174 +L 3.9473,7.932174,3.3977,7.932174 +L 6.3538,6.330459,6.6305,6.330459 +L 6.6305,6.330459,6.9103,6.330459 +L 6.9103,6.330459,7.208,6.330459 +L 5.9297,7.932174,5.772,8.302318 +L 5.772,8.302318,5.6284,8.655387 +L 5.6284,8.655387,5.5027,8.999962 +L 6.3538,7.932174,6.7807,7.932174 +L 6.7807,7.932174,7.208,7.932174 +L 7.208,7.932174,7.6353,7.932174 + +[評] 45 +L 1.2878,-0.000003,1.2878,0.713293 +L 1.2878,0.713293,1.2878,1.409602 +L 1.2878,1.409602,1.2878,2.097418 +L 1.2878,2.097418,1.8408,2.097418 +L 1.8408,2.097418,2.398,2.097418 +L 2.398,2.097418,2.9689,2.097418 +L 2.9689,2.097418,2.9689,1.409602 +L 2.9689,1.409602,2.9689,0.713293 +L 2.9689,0.713293,2.9689,-0.000003 +L 2.9689,-0.000003,2.398,-0.000003 +L 2.398,-0.000003,1.8408,-0.000003 +L 1.8408,-0.000003,1.2878,-0.000003 +L 5.96,-0.000003,5.904,2.637036 +L 5.904,2.637036,5.3786,3.579043 +L 5.3786,3.579043,3.82,3.699221 +L 1.2878,3.699221,1.8408,3.699221 +L 1.8408,3.699221,2.398,3.699221 +L 2.398,3.699221,2.9689,3.699221 +L 6.3523,3.699221,6.0753,4.231637 +L 6.0753,4.231637,5.9737,5.467455 +L 5.9737,5.467455,5.96,8.466166 +L 5.96,8.466166,5.3786,8.466166 +L 5.3786,8.466166,4.8112,8.466166 +L 4.8112,8.466166,4.2505,8.466166 +L 6.7827,3.699221,7.21,3.699221 +L 7.21,3.699221,7.6338,3.699221 +L 7.6338,3.699221,8.0611,3.699221 +L 1.2878,5.30087,1.8408,5.30087 +L 1.8408,5.30087,2.398,5.30087 +L 2.398,5.30087,2.9689,5.30087 +L 4.6778,5.567888,4.524,6.014122 +L 4.524,6.014122,4.3801,6.443413 +L 4.3801,6.443413,4.2505,6.864386 +L 7.21,5.567888,7.3435,6.014122 +L 7.3435,6.014122,7.4836,6.443413 +L 7.4836,6.443413,7.6338,6.864386 +L 0.864,6.864386,1.6975,6.864386 +L 1.6975,6.864386,2.5416,6.864386 +L 2.5416,6.864386,3.3962,6.864386 +L 1.2878,8.466166,1.8408,8.466166 +L 1.8408,8.466166,2.398,8.466166 +L 2.398,8.466166,2.9689,8.466166 +L 6.3523,8.466166,6.7827,8.466166 +L 6.7827,8.466166,7.21,8.466166 +L 7.21,8.466166,7.6338,8.466166 + +[貧] 42 +L 1.2579,-0.000003,1.8186,0.189239 +L 1.8186,0.189239,2.3892,0.369987 +L 2.3892,0.369987,2.9674,0.533989 +L 6.7812,-0.000003,6.4874,0.189239 +L 6.4874,0.189239,6.1998,0.369987 +L 6.1998,0.369987,5.927,0.533989 +L 2.5436,1.563535,2.5646,3.617242 +L 2.5646,3.617242,2.2985,4.874293 +L 2.2985,4.874293,1.2579,5.30087 +L 2.9674,1.563535,4.0949,1.563535 +L 4.0949,1.563535,5.2262,1.563535 +L 5.2262,1.563535,6.3575,1.563535 +L 6.3575,1.563535,6.3575,1.933657 +L 6.3575,1.933657,6.3575,2.28666 +L 6.3575,2.28666,6.3575,2.631411 +L 6.3575,2.631411,5.2262,2.631411 +L 5.2262,2.631411,4.0949,2.631411 +L 4.0949,2.631411,2.9674,2.631411 +L 6.3575,3.432159,5.2262,3.535372 +L 5.2262,3.535372,4.0949,3.621444 +L 4.0949,3.621444,2.9674,3.699221 +L 6.3575,4.499969,5.2262,4.603072 +L 5.2262,4.603072,4.0949,4.689298 +L 4.0949,4.689298,2.9674,4.76703 +L 2.7534,5.834818,3.0967,6.281074 +L 3.0967,6.281074,3.4609,6.710497 +L 3.4609,6.710497,3.8252,7.131405 +L 3.8252,7.131405,3.3947,7.398356 +L 3.3947,7.398356,2.9674,7.665199 +L 2.9674,7.665199,2.5436,7.932174 +L 2.5436,7.932174,1.9727,7.587599 +L 1.9727,7.587599,1.4155,7.234485 +L 1.4155,7.234485,0.8625,6.864386 +L 5.0724,5.834818,5.6885,5.863013 +L 5.6885,5.863013,6.0251,6.060748 +L 6.0251,6.060748,6.3575,6.597411 +L 6.3575,6.597411,5.9932,7.160978 +L 5.9932,7.160978,5.4437,7.368673 +L 5.4437,7.368673,4.2493,7.398356 +L 7.6358,6.864386,6.9108,7.587599 +L 6.9108,7.587599,6.1998,8.302318 +L 6.1998,8.302318,5.4997,8.999962 + +[婦] 15 +L 4.2653,6.330328,0.668,6.330328 +L 1.5226,3.326538,2.1428,8.99994 +L 7.4487,6.330459,7.4487,8.466166 +L 7.4487,8.466166,4.465,8.466166 +L 4.465,7.398356,7.4487,7.398356 +L 3.8205,3.699221,3.8205,4.76703 +L 3.8205,4.76703,8.0616,4.76703 +L 8.0616,4.76703,8.0616,3.699221 +L 4.6748,0.533989,4.6748,3.165294 +L 4.6748,3.165294,7.2389,3.165294 +L 7.2389,3.165294,7.2389,0.533989 +L 5.9567,4.76703,5.9567,-0.000003 +L 4.465,6.330459,7.4487,6.330459 +A -3.8709,-3.39957,8.620982,23.224227,51.278884 +A -5.7275,6.330328,9.138971,316.15783,0 + +[富] 51 +L 1.7176,-0.000003,1.7176,1.066362 +L 1.7176,1.066362,1.7176,2.124321 +L 1.7176,2.124321,1.7176,3.165294 +L 1.7176,3.165294,3.3952,3.165294 +L 3.3952,3.165294,5.0831,3.165294 +L 5.0831,3.165294,6.7852,3.165294 +L 6.7852,3.165294,6.7852,2.124321 +L 6.7852,2.124321,6.7852,1.066362 +L 6.7852,1.066362,6.7852,-0.000003 +L 6.7852,-0.000003,5.0831,-0.000003 +L 5.0831,-0.000003,3.3952,-0.000003 +L 3.3952,-0.000003,1.7176,-0.000003 +L 4.2495,0.800832,3.8852,1.337496 +L 3.8852,1.337496,3.3322,1.535296 +L 3.3322,1.535296,2.113,1.563535 +L 4.6736,1.563535,4.523,1.933657 +L 4.523,1.933657,4.3791,2.28666 +L 4.3791,2.28666,4.2495,2.631411 +L 5.1041,1.563535,5.5104,1.563535 +L 5.5104,1.563535,5.9275,1.563535 +L 5.9275,1.563535,6.3548,1.563535 +L 2.5406,4.76703,2.5406,5.137021 +L 2.5406,5.137021,2.5406,5.490134 +L 2.5406,5.490134,2.5406,5.834818 +L 2.5406,5.834818,3.6681,5.834818 +L 3.6681,5.834818,4.7962,5.834818 +L 4.7962,5.834818,5.9275,5.834818 +L 5.9275,5.834818,5.9275,5.490134 +L 5.9275,5.490134,5.9275,5.137021 +L 5.9275,5.137021,5.9275,4.76703 +L 5.9275,4.76703,4.7962,4.76703 +L 4.7962,4.76703,3.6681,4.76703 +L 3.6681,4.76703,2.5406,4.76703 +L 0.8595,6.330459,0.8595,6.864386 +L 0.8595,6.864386,0.8595,7.398356 +L 0.8595,7.398356,0.8595,7.932174 +L 0.8595,7.932174,1.9904,7.932174 +L 1.9904,7.932174,3.1217,7.932174 +L 3.1217,7.932174,4.2495,7.932174 +L 4.2495,7.932174,4.2495,8.302318 +L 4.2495,8.302318,4.2495,8.655387 +L 4.2495,8.655387,4.2495,8.999962 +L 7.6363,6.330459,7.6363,6.864386 +L 7.6363,6.864386,7.6363,7.398356 +L 7.6363,7.398356,7.6363,7.932174 +L 7.6363,7.932174,6.635,7.932174 +L 6.635,7.932174,5.654,7.932174 +L 5.654,7.932174,4.6736,7.932174 +L 2.113,6.864386,3.5178,6.864386 +L 3.5178,6.864386,4.9293,6.864386 +L 4.9293,6.864386,6.3548,6.864386 + +[布] 27 +L 4.6788,-0.000003,4.6613,2.998511 +L 4.6613,2.998511,4.5562,4.234549 +L 4.5562,4.234549,4.2798,4.76703 +L 4.2798,4.76703,2.833,4.504172 +L 2.833,4.504172,2.5108,3.52968 +L 2.5108,3.52968,2.5703,1.563535 +L 5.9537,1.563535,6.2339,1.563535 +L 6.2339,1.563535,6.5144,1.563535 +L 6.5144,1.563535,6.8121,1.563535 +L 6.8121,1.563535,6.8121,2.631411 +L 6.8121,2.631411,6.8121,3.699221 +L 6.8121,3.699221,6.8121,4.76703 +L 6.8121,4.76703,5.4843,4.799363 +L 5.4843,4.799363,4.8434,5.179357 +L 4.8434,5.179357,4.6788,6.330459 +L 1.0783,3.699221,1.8453,4.843187 +L 1.8453,4.843187,2.6333,5.987306 +L 2.6333,5.987306,3.4284,7.131405 +L 3.4284,7.131405,2.5703,7.234485 +L 2.5703,7.234485,1.716,7.320668 +L 1.716,7.320668,0.865,7.398356 +L 3.8522,7.398356,3.8522,7.932174 +L 3.8522,7.932174,3.8522,8.466166 +L 3.8522,8.466166,3.8522,8.999962 +L 4.2798,7.398356,5.5407,7.398356 +L 5.5407,7.398356,6.8121,7.398356 +L 6.8121,7.398356,8.094,7.398356 + + +# kan_17 ------------------------------------------------------- +# 武復複仏編保墓L暴貿防務夢迷綿預容率略領句製弁私晩宅痛困閉若降済映座暖難洗割誌窓忘呼並簡訪論異遺 + +[武] 10 +L 0.0034,6.015173,7.2041,6.015173 +L 7.2041,0.015189,7.2041,1.515157 +L 5.9187,8.481292,6.8647,7.539374 +L 0.5004,7.515163,3.6036,7.515163 +L 0.0034,0.015189,4.227,1.146896 +L 2.5353,5.316084,2.5353,0.693679 +L 0.8615,4.248317,0.8615,0.244074 +L 4.6718,9.015198,4.6718,6.015173 +L 4.227,3.714325,2.5353,3.714325 +A 13.05,6.015173,8.374544,180,225.76263 + +[復] 14 +L 0.8562,9.01511,-0.3904,6.917689 +L 0.8562,0.015189,0.8562,5.582905 +L 6.376,4.515183,6.376,6.650802 +L 6.376,6.650802,3.4199,6.650802 +L 3.4199,6.650802,3.4199,4.515183 +L 3.4199,4.515183,6.376,4.515183 +L 6.376,5.59571,3.4199,5.59571 +L 6.8068,7.515163,2.9961,7.515163 +L 6.1098,3.765198,3.9768,3.765198 +A -4.8598,8.148122,6.266899,315.462,348.67668 +A -2.2432,9.015198,5.44975,326.5996,0 +A 7.6089,4.635032,4.688563,205.8058,260.17837 +A -0.2751,5.172921,4.475452,305.1853,348.07661 +A 1.5076,4.635032,4.688563,279.82162,349.30825 + +[複] 17 +L -0.3957,7.413461,2.1684,7.413461 +L 0.8897,9.014936,0.8897,7.413461 +L 2.1684,3.180464,0.8897,4.782026 +L 0.8897,4.782026,0.8897,0.015189 +L 6.3815,4.515183,6.3815,6.650802 +L 6.3815,6.650802,3.4184,6.650802 +L 3.4184,6.650802,3.4184,4.515183 +L 3.4184,4.515183,6.3815,4.515183 +L 6.3815,5.59571,3.4184,5.59571 +L 6.8057,7.515163,2.9985,7.515163 +L 6.1157,3.765198,3.9753,3.765198 +L 2.3295,4.621942,1.5271,3.981256 +A -8.5039,10.983969,11.256284,316.1117,341.50627 +A -2.2415,9.015198,5.44975,326.5996,0 +A 7.6074,4.635032,4.688563,205.8058,260.17837 +A -0.2693,5.172921,4.475452,305.1853,348.07661 +A 1.51,4.635032,4.688563,279.82162,349.30825 + +[仏] 24 +L 0.8882,0.015189,0.8041,1.960188 +L 0.8041,1.960188,0.7341,3.905077 +L 0.7341,3.905077,0.6745,5.850032 +L 0.6745,5.850032,0.4644,5.68614 +L 0.4644,5.68614,0.2577,5.505304 +L 0.2577,5.505304,0.0616,5.316084 +L 1.7431,0.015189,2.1736,0.015189 +L 2.1736,0.015189,2.5974,0.015189 +L 2.5974,0.015189,3.0247,0.015189 +L 3.0247,0.015189,3.459,2.975658 +L 3.459,2.975658,4.268,6.003943 +L 4.268,6.003943,4.6992,9.015198 +L 3.452,0.015189,4.3349,0.54627 +L 4.3349,0.54627,5.6655,0.933247 +L 5.6655,0.933247,6.8388,1.082999 +L 6.8388,1.082999,6.5376,2.149386 +L 6.5376,2.149386,6.2578,3.207301 +L 6.2578,3.207301,5.9846,4.248317 +L 7.2626,0.015189,7.2626,0.385376 +L 7.2626,0.385376,7.2626,0.738445 +L 7.2626,0.738445,7.2626,1.082999 +L 0.8882,6.650802,1.1649,7.450259 +L 1.1649,7.450259,1.4489,8.241243 +L 1.4489,8.241243,1.7431,9.015198 + +[編] 75 +L 1.3455,0.015189,1.3455,1.615437 +L 1.3455,1.615437,1.3455,3.207301 +L 1.3455,3.207301,1.3455,4.782091 +L 1.3455,4.782091,0.9217,4.782091 +L 0.9217,4.782091,0.4909,4.782091 +L 0.4909,4.782091,0.0639,4.782091 +L 3.447,0.015189,3.3699,0.738445 +L 3.3699,0.738445,3.2999,1.453076 +L 3.2999,1.453076,3.2368,2.150809 +L 3.2368,2.150809,2.8796,1.616969 +L 2.8796,1.616969,2.5363,1.082999 +L 2.5363,1.082999,2.2004,0.549159 +L 4.7359,0.015189,4.7082,1.663508 +L 4.7082,1.663508,4.3926,2.447445 +L 4.3926,2.447445,3.447,2.646559 +L 3.447,2.646559,3.447,4.248317 +L 3.447,4.248317,3.447,5.850032 +L 3.447,5.850032,3.447,7.451704 +L 3.447,7.451704,4.5818,7.451704 +L 4.5818,7.451704,5.7166,7.451704 +L 5.7166,7.451704,6.8657,7.451704 +L 6.8657,7.451704,6.8657,6.917754 +L 6.8657,6.917754,6.8657,6.383893 +L 6.8657,6.383893,6.8657,5.850032 +L 6.8657,5.850032,5.864,5.850032 +L 5.864,5.850032,4.8623,5.850032 +L 4.8623,5.850032,3.8781,5.850032 +L 5.587,0.015189,5.3667,1.807612 +L 5.3667,1.807612,4.9565,3.040672 +L 4.9565,3.040672,4.7359,4.248317 +L 4.7359,4.248317,4.4382,4.248317 +L 4.4382,4.248317,4.1545,4.248317 +L 4.1545,4.248317,3.8781,4.248317 +L 6.8657,0.015189,6.8657,0.892334 +L 6.8657,0.892334,6.8657,1.769501 +L 6.8657,1.769501,6.8657,2.646559 +L 6.8657,2.646559,6.5715,2.646559 +L 6.5715,2.646559,6.2878,2.646559 +L 6.2878,2.646559,6.0146,2.646559 +L 6.0146,2.646559,5.7166,3.180442 +L 5.7166,3.180442,5.4367,3.714325 +L 5.4367,3.714325,5.1565,4.248317 +L 0.0639,1.349951,0.197,1.960188 +L 0.197,1.960188,0.3403,2.570337 +L 0.3403,2.570337,0.4909,3.180442 +L 2.2004,2.150809,2.2004,2.494049 +L 2.2004,2.494049,2.2004,2.837224 +L 2.2004,2.837224,2.2004,3.180442 +L 6.8657,3.180442,6.8657,3.55052 +L 6.8657,3.55052,6.8657,3.903589 +L 6.8657,3.903589,6.8657,4.248317 +L 6.8657,4.248317,6.5715,4.248317 +L 6.5715,4.248317,6.2878,4.248317 +L 6.2878,4.248317,6.0146,4.248317 +L 2.6309,4.515183,2.4736,4.782091 +L 2.4736,4.782091,2.33,5.049087 +L 2.33,5.049087,2.2004,5.316084 +L 2.2004,5.316084,2.0495,5.152191 +L 2.0495,5.152191,1.9062,4.971486 +L 1.9062,4.971486,1.7731,4.782091 +L 0.9217,5.316084,1.0513,5.583058 +L 1.0513,5.583058,1.1914,5.850032 +L 1.1914,5.850032,1.3455,6.117007 +L 1.3455,6.117007,1.0513,6.486843 +L 1.0513,6.486843,0.7676,6.840175 +L 0.7676,6.840175,0.4909,7.184707 +L 0.4909,7.184707,0.7676,7.794834 +L 0.7676,7.794834,1.0513,8.404984 +L 1.0513,8.404984,1.3455,9.015198 +L 1.7731,7.184707,1.9062,7.450259 +L 1.9062,7.450259,2.0495,7.707338 +L 2.0495,7.707338,2.2004,7.947388 +L 3.0547,8.481292,4.456,8.481292 +L 4.456,8.481292,5.8602,8.481292 +L 5.8602,8.481292,7.2615,8.481292 + +[保] 39 +L 0.9482,0.015189,0.8645,1.960188 +L 0.8645,1.960188,0.7976,3.905077 +L 0.7976,3.905077,0.7381,5.850032 +L 0.7381,5.850032,0.5209,5.68614 +L 0.5209,5.68614,0.3076,5.505304 +L 0.3076,5.505304,0.094,5.316084 +L 4.7624,0.015189,4.6787,1.081685 +L 4.6787,1.081685,4.6118,2.139491 +L 4.6118,2.139491,4.5491,3.180442 +L 4.5491,3.180442,3.7575,2.492626 +L 3.7575,2.492626,2.9726,1.796295 +L 2.9726,1.796295,2.1989,1.082999 +L 6.8674,1.082999,5.3371,2.98564 +L 5.3371,2.98564,4.1775,3.540647 +L 4.1775,3.540647,2.1989,3.714325 +L 5.5855,3.714325,6.1462,3.714325 +L 6.1462,3.714325,6.7167,3.714325 +L 6.7167,3.714325,7.2947,3.714325 +L 4.7624,4.248317,4.7624,4.782091 +L 4.7624,4.782091,4.7624,5.316084 +L 4.7624,5.316084,4.7624,5.850032 +L 4.7624,5.850032,4.1848,5.850032 +L 4.1848,5.850032,3.6136,5.850032 +L 3.6136,5.850032,3.0532,5.850032 +L 3.0532,5.850032,3.0532,6.727112 +L 3.0532,6.727112,3.0532,7.604192 +L 3.0532,7.604192,3.0532,8.481292 +L 3.0532,8.481292,4.1848,8.481292 +L 4.1848,8.481292,5.3161,8.481292 +L 5.3161,8.481292,6.4404,8.481292 +L 6.4404,8.481292,6.4404,7.604192 +L 6.4404,7.604192,6.4404,6.727112 +L 6.4404,6.727112,6.4404,5.850032 +L 6.4404,5.850032,6.0166,5.850032 +L 6.0166,5.850032,5.596,5.850032 +L 5.596,5.850032,5.1932,5.850032 +L 0.9482,6.650802,1.2249,7.450259 +L 1.2249,7.450259,1.4946,8.241243 +L 1.4946,8.241243,1.7751,9.015198 + +[墓] 63 +L 0.9467,0.015189,1.8052,0.015189 +L 1.8052,0.015189,2.6594,0.015189 +L 2.6594,0.015189,3.5105,0.015189 +L 3.5105,0.015189,3.3638,1.210072 +L 3.3638,1.210072,2.9294,1.591401 +L 2.9294,1.591401,2.2321,1.616969 +L 3.9417,0.015189,4.6418,0.015189 +L 4.6418,0.015189,5.3423,0.015189 +L 5.3423,0.015189,6.0428,0.015189 +L 0.3093,1.616969,0.9467,2.227053 +L 0.9467,2.227053,1.5877,2.837224 +L 1.5877,2.837224,2.2321,3.447395 +L 2.2321,3.447395,1.532,3.55052 +L 1.532,3.55052,0.8315,3.636636 +L 0.8315,3.636636,0.1271,3.714325 +L 3.9417,1.616969,3.7875,1.960188 +L 3.7875,1.960188,3.6436,2.303384 +L 3.6436,2.303384,3.5105,2.646559 +L 6.4736,1.616969,5.1321,2.957248 +L 5.1321,2.957248,4.1238,3.467183 +L 4.1238,3.467183,2.6594,3.714325 +L 2.6594,3.714325,2.6594,4.084491 +L 2.6594,4.084491,2.6594,4.43745 +L 2.6594,4.43745,2.6594,4.782091 +L 2.6594,4.782091,2.2321,4.782091 +L 2.2321,4.782091,1.8052,4.782091 +L 1.8052,4.782091,1.3775,4.782091 +L 1.3775,4.782091,1.3775,5.505304 +L 1.3775,5.505304,1.3775,6.220001 +L 1.3775,6.220001,1.3775,6.917754 +L 1.3775,6.917754,1.6546,7.020967 +L 1.6546,7.020967,1.9348,7.107062 +L 1.9348,7.107062,2.2321,7.184707 +L 2.2321,7.184707,1.8679,7.721458 +L 1.8679,7.721458,1.3215,7.91915 +L 1.3215,7.91915,0.1271,7.947388 +L 5.1882,3.714325,5.7486,3.714325 +L 5.7486,3.714325,6.3198,3.714325 +L 6.3198,3.714325,6.8977,3.714325 +L 3.0867,4.782091,3.9168,4.782091 +L 3.9168,4.782091,4.7644,4.782091 +L 4.7644,4.782091,5.6193,4.782091 +L 5.6193,4.782091,5.6193,5.152191 +L 5.6193,5.152191,5.6193,5.505304 +L 5.6193,5.505304,5.6193,5.850032 +L 5.6193,5.850032,4.3371,5.850032 +L 4.3371,5.850032,3.0657,5.850032 +L 3.0657,5.850032,1.8052,5.850032 +L 5.6193,6.650802,4.6176,6.753928 +L 4.6176,6.753928,3.6331,6.840175 +L 3.6331,6.840175,2.6594,6.917754 +L 4.7644,7.451704,4.4001,7.800592 +L 4.4001,7.800592,3.8537,7.929 +L 3.8537,7.929,2.6594,7.947388 +L 2.6594,7.947388,2.5053,8.317554 +L 2.5053,8.317554,2.3621,8.670513 +L 2.3621,8.670513,2.2321,9.015198 +L 5.1882,7.947388,5.0376,8.317554 +L 5.0376,8.317554,4.894,8.670513 +L 4.894,8.670513,4.7644,9.015198 +L 5.6193,7.947388,6.0428,7.947388 +L 6.0428,7.947388,6.4736,7.947388 +L 6.4736,7.947388,6.8977,7.947388 + +[豊] 72 +L 0.126,0.015189,0.9561,0.015189 +L 0.9561,0.015189,1.8068,0.015189 +L 1.8068,0.015189,2.6579,0.015189 +L 2.6579,0.015189,2.5147,0.652175 +L 2.5147,0.652175,2.3847,1.272262 +L 2.3847,1.272262,2.2621,1.883812 +L 2.2621,1.883812,1.9644,1.986981 +L 1.9644,1.986981,1.6807,2.073142 +L 1.6807,2.073142,1.4114,2.150809 +L 1.4114,2.150809,1.4114,2.683225 +L 1.4114,2.683225,1.4114,3.207301 +L 1.4114,3.207301,1.4114,3.714325 +L 1.4114,3.714325,2.812,3.714325 +L 2.812,3.714325,4.2239,3.714325 +L 4.2239,3.714325,5.6455,3.714325 +L 5.6455,3.714325,5.6455,3.207301 +L 5.6455,3.207301,5.6455,2.683225 +L 5.6455,2.683225,5.6455,2.150809 +L 5.6455,2.150809,5.3513,2.150809 +L 5.3513,2.150809,5.0676,2.150809 +L 5.0676,2.150809,4.7944,2.150809 +L 4.7944,2.150809,4.6438,1.539324 +L 4.6438,1.539324,4.497,0.919106 +L 4.497,0.919106,4.3675,0.282054 +L 4.3675,0.282054,5.1972,0.204518 +L 5.1972,0.204518,6.0483,0.118292 +L 6.0483,0.118292,6.8994,0.015189 +L 3.0852,0.015189,3.3622,0.015189 +L 3.3622,0.015189,3.6421,0.015189 +L 3.6421,0.015189,3.9363,0.015189 +L 2.6579,2.150809,3.2183,2.150809 +L 3.2183,2.150809,3.7857,2.150809 +L 3.7857,2.150809,4.3675,2.150809 +L 0.126,4.782091,2.3847,4.782091 +L 2.3847,4.782091,4.6371,4.782091 +L 4.6371,4.782091,6.8994,4.782091 +L 0.9802,5.850032,0.9802,6.563241 +L 0.9802,6.563241,0.9802,7.259506 +L 0.9802,7.259506,0.9802,7.947388 +L 0.9802,7.947388,1.4114,7.947388 +L 1.4114,7.947388,1.8352,7.947388 +L 1.8352,7.947388,2.2621,7.947388 +L 2.2621,7.947388,2.3847,8.317554 +L 2.3847,8.317554,2.5147,8.670513 +L 2.5147,8.670513,2.6579,9.015198 +L 1.4114,5.850032,1.8142,5.953048 +L 1.8142,5.953048,2.2341,6.03923 +L 2.2341,6.03923,2.6579,6.117007 +L 2.6579,6.117007,2.35,6.68042 +L 2.35,6.68042,2.024,6.888072 +L 2.024,6.888072,1.4114,6.917754 +L 3.0852,5.850032,3.5164,5.953048 +L 3.5164,5.953048,3.9363,6.03923 +L 3.9363,6.03923,4.3675,6.117007 +L 4.3675,6.117007,3.8242,6.700275 +L 3.8242,6.700275,3.1973,7.046294 +L 3.1973,7.046294,2.6579,7.451704 +L 2.6579,7.451704,3.1973,7.840103 +L 3.1973,7.840103,3.8242,8.245424 +L 3.8242,8.245424,4.3675,9.015198 +L 4.7944,5.850032,5.2217,5.850032 +L 5.2217,5.850032,5.6455,5.850032 +L 5.6455,5.850032,6.0766,5.850032 +L 6.0766,5.850032,6.0766,6.220001 +L 6.0766,6.220001,6.0766,6.573113 +L 6.0766,6.573113,6.0766,6.917754 +L 6.0766,6.917754,5.1587,6.937565 +L 5.1587,6.937565,4.7138,7.075847 +L 4.7138,7.075847,4.3675,7.451704 +L 4.3675,7.451704,4.7138,7.78216 +L 4.7138,7.78216,5.1587,7.78216 +L 5.1587,7.78216,6.0766,7.451704 + +[暴] 60 +L 2.6848,0.015189,2.9646,0.015189 +L 2.9646,0.015189,3.2448,0.015189 +L 3.2448,0.015189,3.5425,0.015189 +L 3.5425,0.015189,3.5215,0.786319 +L 3.5215,0.786319,3.3537,1.201644 +L 3.3537,1.201644,2.9016,1.616969 +L 2.9016,1.616969,2.2641,1.272262 +L 2.2641,1.272262,1.6302,0.919106 +L 1.6302,0.919106,1.0103,0.549159 +L 5.6475,0.549159,4.947,1.262412 +L 4.947,1.262412,4.2434,1.958721 +L 4.2434,1.958721,3.5425,2.646559 +L 0.3693,2.150809,0.8596,2.59713 +L 0.8596,2.59713,1.3465,3.026465 +L 1.3465,3.026465,1.8337,3.447395 +L 1.8337,3.447395,1.2659,3.55052 +L 1.2659,3.55052,0.7055,3.636636 +L 0.7055,3.636636,0.1592,3.714325 +L 4.3936,2.150809,4.6738,2.59713 +L 4.6738,2.59713,4.947,3.026465 +L 4.947,3.026465,5.2202,3.447395 +L 5.2202,3.447395,4.2259,3.55052 +L 4.2259,3.55052,3.2378,3.636636 +L 3.2378,3.636636,2.2641,3.714325 +L 6.5056,2.150809,6.2082,2.3302 +L 6.2082,2.3302,5.9245,2.492626 +L 5.9245,2.492626,5.6475,2.646559 +L 5.6475,3.714325,6.0751,3.714325 +L 6.0751,3.714325,6.5056,3.714325 +L 6.5056,3.714325,6.9294,3.714325 +L 2.6848,4.248317,2.3415,4.623977 +L 2.3415,4.623977,1.9072,4.762324 +L 1.9072,4.762324,1.0103,4.782091 +L 4.3936,4.248317,3.5075,4.903626 +L 3.5075,4.903626,2.9089,5.194505 +L 2.9089,5.194505,2.6848,6.383893 +L 2.6848,6.383893,2.2641,6.383893 +L 2.2641,6.383893,1.8337,6.383893 +L 1.8337,6.383893,1.4099,6.383893 +L 1.4099,6.383893,1.4099,7.097124 +L 1.4099,7.097124,1.4099,7.793477 +L 1.4099,7.793477,1.4099,8.481292 +L 1.4099,8.481292,2.814,8.481292 +L 2.814,8.481292,4.2259,8.481292 +L 4.2259,8.481292,5.6475,8.481292 +L 5.6475,8.481292,5.6475,7.793477 +L 5.6475,7.793477,5.6475,7.097124 +L 5.6475,7.097124,5.6475,6.383893 +L 5.6475,6.383893,5.2237,6.383893 +L 5.2237,6.383893,4.8034,6.383893 +L 4.8034,6.383893,4.3936,6.383893 +L 4.3936,6.383893,4.5197,5.256651 +L 4.5197,5.256651,5.0171,4.841392 +L 5.0171,4.841392,6.0751,4.782091 +L 3.1152,6.383893,3.3923,6.383893 +L 3.3923,6.383893,3.676,6.383893 +L 3.676,6.383893,3.9733,6.383893 +L 1.8337,7.451704,2.9646,7.451704 +L 2.9646,7.451704,4.0889,7.451704 +L 4.0889,7.451704,5.2202,7.451704 + +[貿] 48 +L 0.1577,0.015189,0.7145,0.204518 +L 0.7145,0.204518,1.2854,0.385376 +L 1.2854,0.385376,1.8672,0.549159 +L 6.1052,0.015189,5.8071,0.204518 +L 5.8071,0.204518,5.5269,0.385376 +L 5.5269,0.385376,5.2537,0.549159 +L 1.436,1.616969,1.436,2.683225 +L 1.436,2.683225,1.436,3.741272 +L 1.436,3.741272,1.436,4.782091 +L 1.436,4.782091,2.9946,4.782091 +L 2.9946,4.782091,4.5532,4.782091 +L 4.5532,4.782091,6.1052,4.782091 +L 6.1052,4.782091,6.1052,3.741272 +L 6.1052,3.741272,6.1052,2.683225 +L 6.1052,2.683225,6.1052,1.616969 +L 6.1052,1.616969,4.5532,1.616969 +L 4.5532,1.616969,2.9946,1.616969 +L 2.9946,1.616969,1.436,1.616969 +L 1.8672,2.646559,3.1242,2.646559 +L 3.1242,2.646559,4.3991,2.646559 +L 4.3991,2.646559,5.6775,2.646559 +L 1.8672,3.714325,3.1242,3.714325 +L 3.1242,3.714325,4.3991,3.714325 +L 4.3991,3.714325,5.6775,3.714325 +L 0.1577,6.383893,0.4343,6.383893 +L 0.4343,6.383893,0.7145,6.383893 +L 0.7145,6.383893,1.0123,6.383893 +L 1.0123,6.383893,1.0123,7.097124 +L 1.0123,7.097124,1.0123,7.793477 +L 1.0123,7.793477,1.0123,8.481292 +L 1.0123,8.481292,1.9439,8.501125 +L 1.9439,8.501125,2.4973,8.639538 +L 2.4973,8.639538,3.1421,9.015198 +L 1.436,6.383893,1.7831,6.759509 +L 1.7831,6.759509,2.2315,6.897834 +L 2.2315,6.897834,3.1421,6.917754 +L 4.3991,6.383893,5.0019,7.173324 +L 5.0019,7.173324,5.2222,7.717189 +L 5.2222,7.717189,5.2537,8.481292 +L 5.2537,8.481292,4.956,8.481292 +L 4.956,8.481292,4.6758,8.481292 +L 4.6758,8.481292,4.3991,8.481292 +L 5.6775,6.383893,6.6582,6.656384 +L 6.6582,6.656384,6.9528,7.395138 +L 6.9528,7.395138,6.9629,8.481292 +L 6.9629,8.481292,6.5325,8.481292 +L 6.5325,8.481292,6.1052,8.481292 +L 6.1052,8.481292,5.6775,8.481292 + +[防] 30 +L 0.1915,0.015189,0.1915,2.837224 +L 0.1915,2.837224,0.1915,5.65928 +L 0.1915,5.65928,0.1915,8.481292 +L 0.1915,8.481292,0.7446,8.403669 +L 0.7446,8.403669,1.319,8.317554 +L 1.319,8.317554,1.8972,8.21434 +L 1.8972,8.21434,1.3683,6.15225 +L 1.3683,6.15225,1.631,4.861247 +L 1.631,4.861247,1.8972,2.646559 +L 1.8972,2.646559,1.5992,2.492626 +L 1.5992,2.492626,1.319,2.3302 +L 1.319,2.3302,1.0426,2.150809 +L 2.5063,0.015189,3.8863,2.494049 +L 3.8863,2.494049,4.3696,4.48979 +L 4.3696,4.48979,4.426,7.451704 +L 4.426,7.451704,3.8477,7.451704 +L 3.8477,7.451704,3.2768,7.451704 +L 3.2768,7.451704,2.7164,7.451704 +L 4.8564,0.015189,6.2823,0.852712 +L 6.2823,0.852712,6.5972,2.749618 +L 6.5972,2.749618,6.531,4.782091 +L 6.531,4.782091,5.9667,4.782091 +L 5.9667,4.782091,5.4063,4.782091 +L 5.4063,4.782091,4.8564,4.782091 +L 4.8564,7.451704,4.8564,7.984033 +L 4.8564,7.984033,4.8564,8.508196 +L 4.8564,8.508196,4.8564,9.015198 +L 5.2802,7.451704,5.9846,7.451704 +L 5.9846,7.451704,6.6847,7.451704 +L 6.6847,7.451704,7.3887,7.451704 + +[務] 63 +L 1.0446,0.015189,1.3175,0.015189 +L 1.3175,0.015189,1.5977,0.015189 +L 1.5977,0.015189,1.8957,0.015189 +L 1.8957,0.015189,1.8117,1.615437 +L 1.8117,1.615437,1.7448,3.207301 +L 1.7448,3.207301,1.6817,4.782091 +L 1.6817,4.782091,1.1949,4.084491 +L 1.1949,4.084491,0.708,3.36964 +L 0.708,3.36964,0.2177,2.646559 +L 3.3913,0.015189,3.8781,0.816046 +L 3.8781,0.816046,4.3681,1.616969 +L 4.3681,1.616969,4.8549,2.417652 +L 4.8549,2.417652,4.5436,2.954468 +L 4.5436,2.954468,4.2248,3.152226 +L 4.2248,3.152226,3.6046,3.180442 +L 5.7095,0.015189,6.8443,0.513763 +L 6.8443,0.513763,7.0583,1.715848 +L 7.0583,1.715848,6.9918,3.180442 +L 6.9918,3.180442,6.4135,3.180442 +L 6.4135,3.180442,5.8395,3.180442 +L 5.8395,3.180442,5.2857,3.180442 +L 5.2857,3.180442,4.8549,3.714325 +L 4.8549,3.714325,4.4346,4.248317 +L 4.4346,4.248317,4.0319,4.782091 +L 2.7535,4.782091,2.8796,5.049087 +L 2.8796,5.049087,3.0235,5.316084 +L 3.0235,5.316084,3.1738,5.583058 +L 3.1738,5.583058,2.5997,5.505304 +L 2.5997,5.505304,2.025,5.419165 +L 2.025,5.419165,1.4649,5.316084 +L 6.9918,4.782091,6.5641,5.152191 +L 6.5641,5.152191,6.1368,5.505304 +L 6.1368,5.505304,5.7095,5.850032 +L 5.7095,5.850032,5.4157,5.68614 +L 5.4157,5.68614,5.132,5.505304 +L 5.132,5.505304,4.8549,5.316084 +L 0.2177,5.850032,0.4909,5.850032 +L 0.4909,5.850032,0.7644,5.850032 +L 0.7644,5.850032,1.0446,5.850032 +L 1.8957,6.650802,1.5977,6.917754 +L 1.5977,6.917754,1.3175,7.184707 +L 1.3175,7.184707,1.0446,7.451704 +L 5.2857,6.383893,4.925,6.753928 +L 4.925,6.753928,4.5821,7.107062 +L 4.5821,7.107062,4.2459,7.451704 +L 4.2459,7.451704,4.0319,7.28792 +L 4.0319,7.28792,3.8186,7.107062 +L 3.8186,7.107062,3.6046,6.917754 +L 6.1368,6.383893,6.438,6.79773 +L 6.438,6.79773,6.5505,7.203073 +L 6.5505,7.203073,6.5641,7.947388 +L 6.5641,7.947388,5.864,7.947388 +L 5.864,7.947388,5.1632,7.947388 +L 5.1632,7.947388,4.4592,7.947388 +L 4.4592,7.947388,4.4592,8.317554 +L 4.4592,8.317554,4.4592,8.670513 +L 4.4592,8.670513,4.4592,9.015198 +L 2.323,7.451704,2.4558,7.717189 +L 2.4558,7.717189,2.5997,7.974269 +L 2.5997,7.974269,2.7535,8.21434 +L 2.7535,8.21434,1.8957,8.317554 +L 1.8957,8.317554,1.0513,8.403669 +L 1.0513,8.403669,0.2177,8.481292 + +[夢] 51 +L 0.647,0.015189,1.8942,0.05481 +L 1.8942,0.05481,2.6648,0.33157 +L 2.6648,0.33157,3.6031,1.082999 +L 3.6031,1.082999,3.1162,1.615437 +L 3.1162,1.615437,2.6262,2.139491 +L 2.6262,2.139491,2.1394,2.646559 +L 2.1394,2.646559,1.7751,2.492626 +L 1.7751,2.492626,1.4175,2.3302 +L 1.4175,2.3302,1.0708,2.150809 +L 4.0339,1.082999,4.4577,1.693148 +L 4.4577,1.693148,4.885,2.303384 +L 4.885,2.303384,5.3126,2.913467 +L 5.3126,2.913467,4.4615,3.01668 +L 4.4615,3.01668,3.6139,3.102732 +L 3.6139,3.102732,2.7803,3.180442 +L 0.2165,3.714325,0.2165,4.084491 +L 0.2165,4.084491,0.2165,4.43745 +L 0.2165,4.43745,0.2165,4.782091 +L 0.2165,4.782091,2.4753,4.782091 +L 2.4753,4.782091,4.7414,4.782091 +L 4.7414,4.782091,7.0215,4.782091 +L 7.0215,4.782091,7.0215,4.43745 +L 7.0215,4.43745,7.0215,4.084491 +L 7.0215,4.084491,7.0215,3.714325 +L 1.0708,5.850032,1.0708,6.220001 +L 1.0708,6.220001,1.0708,6.573113 +L 1.0708,6.573113,1.0708,6.917754 +L 1.0708,6.917754,1.9884,6.937565 +L 1.9884,6.937565,2.4332,7.075847 +L 2.4332,7.075847,2.7803,7.451704 +L 2.7803,7.451704,2.3986,7.800592 +L 2.3986,7.800592,1.7398,7.929 +L 1.7398,7.929,0.2165,7.947388 +L 1.5016,5.850032,4.0797,6.848515 +L 4.0797,6.848515,3.7256,7.889488 +L 3.7256,7.889488,2.7803,9.015198 +L 3.2111,5.850032,4.2475,6.245393 +L 4.2475,6.245393,5.1056,6.700275 +L 5.1056,6.700275,6.1672,6.917754 +L 6.1672,6.917754,6.1672,6.573113 +L 6.1672,6.573113,6.1672,6.220001 +L 6.1672,6.220001,6.1672,5.850032 +L 6.1672,5.850032,5.7434,5.850032 +L 5.7434,5.850032,5.3126,5.850032 +L 5.3126,5.850032,4.885,5.850032 +L 4.885,7.947388,4.7344,8.317554 +L 4.7344,8.317554,4.5876,8.670513 +L 4.5876,8.670513,4.4577,9.015198 +L 5.3126,7.947388,5.8727,7.947388 +L 5.8727,7.947388,6.4436,7.947388 +L 6.4436,7.947388,7.0215,7.947388 + +[迷] 48 +L 0.4634,0.015189,0.8101,0.385376 +L 0.8101,0.385376,1.1642,0.738445 +L 1.1642,0.738445,1.5285,1.082999 +L 1.5285,1.082999,1.5285,2.3302 +L 1.5285,2.3302,1.5285,3.560392 +L 1.5285,3.560392,1.5285,4.782091 +L 1.5285,4.782091,1.1047,4.782091 +L 1.1047,4.782091,0.6774,4.782091 +L 0.6774,4.782091,0.2501,4.782091 +L 2.7823,0.015189,2.4846,0.204518 +L 2.4846,0.204518,2.2041,0.385376 +L 2.2041,0.385376,1.9274,0.549159 +L 3.2061,0.015189,4.6138,0.015189 +L 4.6138,0.015189,6.0256,0.015189 +L 6.0256,0.015189,7.4473,0.015189 +L 4.915,1.082999,4.8344,2.494049 +L 4.8344,2.494049,4.7647,3.905077 +L 4.7647,3.905077,4.7013,5.316084 +L 4.7013,5.316084,3.9133,4.275067 +L 3.9133,4.275067,3.1256,3.217152 +L 3.1256,3.217152,2.355,2.150809 +L 7.4473,2.150809,6.7468,3.294907 +L 6.7468,3.294907,6.0466,4.438916 +L 6.0466,4.438916,5.3423,5.583058 +L 5.3423,5.583058,4.3371,5.68614 +L 4.3371,5.68614,3.3354,5.772256 +L 3.3354,5.772256,2.355,5.850032 +L 5.7419,5.850032,6.2984,5.850032 +L 6.2984,5.850032,6.8697,5.850032 +L 6.8697,5.850032,7.4473,5.850032 +L 4.915,6.383893,4.915,7.260951 +L 4.915,7.260951,4.915,8.138227 +L 4.915,8.138227,4.915,9.015198 +L 3.6369,7.184707,3.486,7.630941 +L 3.486,7.630941,3.3354,8.060452 +L 3.3354,8.060452,3.2061,8.481292 +L 6.1657,7.184707,6.2984,7.630941 +L 6.2984,7.630941,6.442,8.060452 +L 6.442,8.060452,6.5962,8.481292 +L 1.5285,7.451704,1.2304,7.794834 +L 1.2304,7.794834,0.9502,8.138227 +L 0.9502,8.138227,0.6774,8.481292 +L 5.3356,-0.000003,7.4651,-0.000003 +L 1.5141,1.067654,0.4634,0.015189 +L 0.2637,4.766921,1.5141,4.766921 +L 1.5141,1.067654,1.5141,4.766921 +L 0.6875,8.504299,1.5141,7.436446 +A 5.3356,7.363004,7.362973,238.75988,270 + +[綿] 69 +L 1.534,0.015189,1.534,1.615437 +L 1.534,1.615437,1.534,3.207301 +L 1.534,3.207301,1.534,4.782091 +L 1.534,4.782091,1.1032,4.782091 +L 1.1032,4.782091,0.6829,4.782091 +L 0.6829,4.782091,0.2797,4.782091 +L 5.3443,0.015189,5.3093,2.107028 +L 5.3093,2.107028,4.8995,2.995403 +L 4.8995,2.995403,3.6631,3.180442 +L 3.6631,3.180442,3.6631,2.303384 +L 3.6631,2.303384,3.6631,1.426239 +L 3.6631,1.426239,3.6631,0.549159 +L 6.1989,0.549159,6.4756,0.549159 +L 6.4756,0.549159,6.7561,0.549159 +L 6.7561,0.549159,7.0538,0.549159 +L 7.0538,0.549159,7.0538,1.426239 +L 7.0538,1.426239,7.0538,2.303384 +L 7.0538,2.303384,7.0538,3.180442 +L 7.0538,3.180442,5.905,3.282122 +L 5.905,3.282122,5.4357,3.739718 +L 5.4357,3.739718,5.3443,4.782091 +L 5.3443,4.782091,4.917,4.782091 +L 4.917,4.782091,4.4967,4.782091 +L 4.4967,4.782091,4.0939,4.782091 +L 4.0939,4.782091,4.0939,5.848522 +L 4.0939,5.848522,4.0939,6.906482 +L 4.0939,6.906482,4.0939,7.947388 +L 4.0939,7.947388,4.6862,8.164956 +L 4.6862,8.164956,5.0119,8.441759 +L 5.0119,8.441759,5.3443,9.015198 +L 0.2797,1.349951,0.4023,1.960188 +L 0.4023,1.960188,0.5319,2.570337 +L 0.5319,2.570337,0.6759,3.180442 +L 2.812,1.883812,2.6618,2.3302 +L 2.6618,2.3302,2.5143,2.759578 +L 2.5143,2.759578,2.3847,3.180442 +L 2.812,4.515183,2.6618,4.782091 +L 2.6618,4.782091,2.5143,5.049087 +L 2.5143,5.049087,2.3847,5.316084 +L 2.3847,5.316084,2.2345,5.152191 +L 2.2345,5.152191,2.087,4.971486 +L 2.087,4.971486,1.9543,4.782091 +L 5.7681,4.782091,6.0451,4.782091 +L 6.0451,4.782091,6.3253,4.782091 +L 6.3253,4.782091,6.6265,4.782091 +L 6.6265,4.782091,6.6265,5.316084 +L 6.6265,5.316084,6.6265,5.850032 +L 6.6265,5.850032,6.6265,6.383893 +L 6.6265,6.383893,5.905,6.383893 +L 5.905,6.383893,5.194,6.383893 +L 5.194,6.383893,4.4897,6.383893 +L 1.1032,5.316084,1.2359,5.583058 +L 1.2359,5.583058,1.3795,5.850032 +L 1.3795,5.850032,1.534,6.117007 +L 1.534,6.117007,1.2359,6.486843 +L 1.2359,6.486843,0.9522,6.840175 +L 0.9522,6.840175,0.6759,7.184707 +L 0.6759,7.184707,0.9522,7.794834 +L 0.9522,7.794834,1.2359,8.404984 +L 1.2359,8.404984,1.534,9.015198 +L 1.9543,7.184707,2.087,7.450259 +L 2.087,7.450259,2.2345,7.707338 +L 2.2345,7.707338,2.3847,7.947388 +L 6.6265,6.917754,6.6265,7.260951 +L 6.6265,7.260951,6.6265,7.604192 +L 6.6265,7.604192,6.6265,7.947388 +L 6.6265,7.947388,6.1989,7.947388 +L 6.1989,7.947388,5.7681,7.947388 +L 5.7681,7.947388,5.3443,7.947388 + +[輸] 57 +L 1.5601,0.015189,1.4099,1.210072 +L 1.4099,1.210072,0.9791,1.591401 +L 0.9791,1.591401,0.2817,1.616969 +L 3.6651,0.015189,3.6651,1.615437 +L 3.6651,1.615437,3.6651,3.207301 +L 3.6651,3.207301,3.6651,4.782091 +L 3.6651,4.782091,4.0924,4.782091 +L 4.0924,4.782091,4.5236,4.782091 +L 4.5236,4.782091,4.9473,4.782091 +L 4.9473,4.782091,4.9473,3.207301 +L 4.9473,3.207301,4.9473,1.615437 +L 4.9473,1.615437,4.9473,0.015189 +L 6.2292,0.015189,6.5021,0.015189 +L 6.5021,0.015189,6.7788,0.015189 +L 6.7788,0.015189,7.0485,0.015189 +L 7.0485,0.015189,7.0485,1.796295 +L 7.0485,1.796295,7.0485,3.560392 +L 7.0485,3.560392,7.0485,5.316084 +L 1.9913,1.616969,1.6936,2.149386 +L 1.6936,2.149386,1.4099,2.673331 +L 1.4099,2.673331,1.1328,3.180442 +L 1.1328,3.180442,0.8351,3.180442 +L 0.8351,3.180442,0.5553,3.180442 +L 0.5553,3.180442,0.2817,3.180442 +L 0.2817,3.180442,0.2817,4.248317 +L 0.2817,4.248317,0.2817,5.316084 +L 0.2817,5.316084,0.2817,6.383893 +L 0.2817,6.383893,0.8947,6.413511 +L 0.8947,6.413511,1.2277,6.621097 +L 1.2277,6.621097,1.5601,7.184707 +L 1.5601,7.184707,1.2277,7.721458 +L 1.2277,7.721458,0.8947,7.91915 +L 0.8947,7.91915,0.2817,7.947388 +L 5.8019,1.616969,5.8019,2.683225 +L 5.8019,2.683225,5.8019,3.741272 +L 5.8019,3.741272,5.8019,4.782091 +L 1.9913,3.180442,1.5601,3.714325 +L 1.5601,3.714325,1.1328,4.248317 +L 1.1328,4.248317,0.7024,4.782091 +L 2.6007,3.180442,2.6602,3.714325 +L 2.6602,3.714325,2.7299,4.248317 +L 2.7299,4.248317,2.8105,4.782091 +L 2.8105,4.782091,2.2154,4.811774 +L 2.2154,4.811774,1.8897,5.019426 +L 1.8897,5.019426,1.5601,5.583058 +L 1.5601,5.583058,2.2676,6.244058 +L 2.2676,6.244058,3.5324,7.133899 +L 3.5324,7.133899,5.3746,9.015198 +L 5.3746,9.015198,6.0748,8.138227 +L 6.0748,8.138227,6.7788,7.260951 +L 6.7788,7.260951,7.4796,6.383893 +L 4.5236,6.383893,5.0766,6.383893 +L 5.0766,6.383893,5.651,6.383893 +L 5.651,6.383893,6.2292,6.383893 +L 1.9913,7.947388,1.8372,8.317554 +L 1.8372,8.317554,1.6936,8.670513 +L 1.6936,8.670513,1.5601,9.015198 + +[余] 30 +L 2.8405,0.015189,3.1172,0.015189 +L 3.1172,0.015189,3.4009,0.015189 +L 3.4009,0.015189,3.6955,0.015189 +L 3.6955,0.015189,3.569,2.957248 +L 3.569,2.957248,2.7813,3.746854 +L 2.7813,3.746854,0.7394,3.714325 +L 0.7394,0.549159,1.0122,1.082999 +L 1.0122,1.082999,1.2858,1.616969 +L 1.2858,1.616969,1.5621,2.150809 +L 6.655,0.549159,6.357,1.082999 +L 6.357,1.082999,6.0768,1.616969 +L 6.0768,1.616969,5.8004,2.150809 +L 4.1228,3.714325,3.8216,4.149373 +L 3.8216,4.149373,3.7091,4.703111 +L 3.7091,4.703111,3.6955,5.850032 +L 3.6955,5.850032,3.2717,5.850032 +L 3.2717,5.850032,2.8405,5.850032 +L 2.8405,5.850032,2.4171,5.850032 +L 4.5501,3.714325,5.2506,3.714325 +L 5.2506,3.714325,5.9542,3.714325 +L 5.9542,3.714325,6.655,3.714325 +L 0.5254,5.316084,1.5695,6.563241 +L 1.5695,6.563241,2.6304,7.793477 +L 2.6304,7.793477,3.6955,9.015198 +L 3.6955,9.015198,4.8268,7.793477 +L 4.8268,7.793477,5.9542,6.563241 +L 5.9542,6.563241,7.0855,5.316084 +L 4.1228,5.850032,4.3991,5.850032 +L 4.3991,5.850032,4.6832,5.850032 +L 4.6832,5.850032,4.9805,5.850032 + +[預] 60 +L 0.734,0.015189,1.0142,0.015189 +L 1.0142,0.015189,1.2944,0.015189 +L 1.2944,0.015189,1.5925,0.015189 +L 1.5925,0.015189,1.5925,1.796295 +L 1.5925,1.796295,1.5925,3.560392 +L 1.5925,3.560392,1.5925,5.316084 +L 1.5925,5.316084,1.1652,5.316084 +L 1.1652,5.316084,0.734,5.316084 +L 0.734,5.316084,0.3141,5.316084 +L 3.9108,0.015189,4.254,0.385376 +L 4.254,0.385376,4.6148,0.738445 +L 4.6148,0.738445,4.979,1.082999 +L 7.5432,0.015189,7.2451,0.385376 +L 7.2451,0.385376,6.9614,0.738445 +L 6.9614,0.738445,6.6847,1.082999 +L 4.5486,2.150809,4.5486,3.751101 +L 4.5486,3.751101,4.5486,5.3429 +L 4.5486,5.3429,4.5486,6.917754 +L 4.5486,6.917754,5.1682,7.143816 +L 5.1682,7.143816,5.4977,7.47992 +L 5.4977,7.47992,5.8336,8.21434 +L 5.8336,8.21434,5.2561,8.317554 +L 5.2561,8.317554,4.6852,8.403669 +L 4.6852,8.403669,4.1248,8.481292 +L 4.979,2.150809,5.6834,2.150809 +L 5.6834,2.150809,6.394,2.150809 +L 6.394,2.150809,7.1124,2.150809 +L 7.1124,2.150809,7.1124,2.683225 +L 7.1124,2.683225,7.1124,3.207301 +L 7.1124,3.207301,7.1124,3.714325 +L 7.1124,3.714325,6.394,3.714325 +L 6.394,3.714325,5.6834,3.714325 +L 5.6834,3.714325,4.979,3.714325 +L 2.874,4.248317,3.004,4.515183 +L 3.004,4.515183,3.1511,4.782091 +L 3.1511,4.782091,3.2978,5.049087 +L 3.2978,5.049087,2.3487,5.494008 +L 2.3487,5.494008,1.6867,6.117007 +L 1.6867,6.117007,0.734,7.451704 +L 7.1124,4.248317,7.1124,4.618352 +L 7.1124,4.618352,7.1124,4.971486 +L 7.1124,4.971486,7.1124,5.316084 +L 7.1124,5.316084,6.394,5.316084 +L 6.394,5.316084,5.6834,5.316084 +L 5.6834,5.316084,4.979,5.316084 +L 7.1124,5.850032,7.1124,6.220001 +L 7.1124,6.220001,7.1124,6.573113 +L 7.1124,6.573113,7.1124,6.917754 +L 7.1124,6.917754,6.6847,6.917754 +L 6.6847,6.917754,6.2574,6.917754 +L 6.2574,6.917754,5.8336,6.917754 +L 2.0198,6.917754,2.2926,7.364186 +L 2.2926,7.364186,2.5728,7.793477 +L 2.5728,7.793477,2.874,8.21434 +L 2.874,8.21434,2.0198,8.317554 +L 2.0198,8.317554,1.1652,8.403669 +L 1.1652,8.403669,0.3141,8.481292 +L 6.2574,8.481292,6.6847,8.481292 +L 6.6847,8.481292,7.1124,8.481292 +L 7.1124,8.481292,7.5432,8.481292 + +[容] 42 +L 1.6222,0.015189,1.5381,1.262412 +L 1.5381,1.262412,1.4719,2.492626 +L 1.4719,2.492626,1.4089,3.714325 +L 1.4089,3.714325,1.0411,3.55052 +L 1.0411,3.55052,0.687,3.36964 +L 0.687,3.36964,0.3403,3.180442 +L 2.0495,0.015189,3.3107,0.015189 +L 3.3107,0.015189,4.5821,0.015189 +L 4.5821,0.015189,5.864,0.015189 +L 5.864,0.015189,5.864,1.081685 +L 5.864,1.081685,5.864,2.139491 +L 5.864,2.139491,5.864,3.180442 +L 5.864,3.180442,4.5821,3.180442 +L 4.5821,3.180442,3.3107,3.180442 +L 3.3107,3.180442,2.0495,3.180442 +L 6.6867,3.180442,5.6885,4.248317 +L 5.6885,4.248317,4.7047,5.316084 +L 4.7047,5.316084,3.7271,6.383893 +L 3.7271,6.383893,3.1531,5.68614 +L 3.1531,5.68614,2.5997,4.971486 +L 2.5997,4.971486,2.0495,4.248317 +L 0.9816,5.316084,1.4719,5.850032 +L 1.4719,5.850032,1.9588,6.383893 +L 1.9588,6.383893,2.4452,6.917754 +L 6.2913,5.316084,5.864,5.850032 +L 5.864,5.850032,5.4367,6.383893 +L 5.4367,6.383893,5.0094,6.917754 +L 0.3403,6.917754,0.3403,7.260951 +L 0.3403,7.260951,0.3403,7.604192 +L 0.3403,7.604192,0.3403,7.947388 +L 0.3403,7.947388,1.4719,7.947388 +L 1.4719,7.947388,2.5958,7.947388 +L 2.5958,7.947388,3.7271,7.947388 +L 3.7271,7.947388,3.7271,8.317554 +L 3.7271,8.317554,3.7271,8.670513 +L 3.7271,8.670513,3.7271,9.015198 +L 7.1179,6.917754,7.1179,7.260951 +L 7.1179,7.260951,7.1179,7.604192 +L 7.1179,7.604192,7.1179,7.947388 +L 7.1179,7.947388,6.1158,7.947388 +L 6.1158,7.947388,5.132,7.947388 +L 5.132,7.947388,4.1544,7.947388 + +[率] 42 +L 3.761,0.015189,3.2882,2.026494 +L 3.2882,2.026494,2.062,2.325931 +L 2.062,2.325931,0.3703,2.150809 +L 4.1848,2.150809,3.8832,2.558998 +L 3.8832,2.558998,3.775,3.102732 +L 3.775,3.102732,3.761,4.248317 +L 3.761,4.248317,3.463,4.351355 +L 3.463,4.351355,3.1793,4.43745 +L 3.1793,4.43745,2.9029,4.515183 +L 2.9029,4.515183,3.1096,5.583058 +L 3.1096,5.583058,3.1232,6.650802 +L 3.1232,6.650802,3.3302,7.718612 +L 3.3302,7.718612,2.3317,7.794834 +L 2.3317,7.794834,1.3513,7.871187 +L 1.3513,7.871187,0.3703,7.947388 +L 4.6118,2.150809,5.4453,2.150809 +L 5.4453,2.150809,6.2929,2.150809 +L 6.2929,2.150809,7.144,2.150809 +L 0.7979,3.714325,1.0743,4.084491 +L 1.0743,4.084491,1.3443,4.43745 +L 1.3443,4.43745,1.6207,4.782091 +L 7.144,3.714325,6.7167,4.084491 +L 6.7167,4.084491,6.2863,4.43745 +L 6.2863,4.43745,5.866,4.782091 +L 4.1848,4.248317,4.4997,4.604167 +L 4.4997,4.604167,4.7168,4.604167 +L 4.7168,4.604167,5.0079,4.248317 +L 1.6207,5.850032,1.3443,6.220001 +L 1.3443,6.220001,1.0743,6.573113 +L 1.0743,6.573113,0.7979,6.917754 +L 3.761,5.850032,4.0304,6.220001 +L 4.0304,6.220001,4.3141,6.573113 +L 4.3141,6.573113,4.6118,6.917754 +L 5.866,5.850032,6.1388,6.220001 +L 6.1388,6.220001,6.419,6.573113 +L 6.419,6.573113,6.7167,6.917754 +L 3.761,7.947388,3.761,8.317554 +L 3.761,8.317554,3.761,8.670513 +L 3.761,8.670513,3.761,9.015198 +L 4.1848,7.947388,5.1651,7.947388 +L 5.1651,7.947388,6.1462,7.947388 +L 6.1462,7.947388,7.144,7.947388 + +[略] 57 +L 4.6138,0.015189,4.6138,1.081685 +L 4.6138,1.081685,4.6138,2.139491 +L 4.6138,2.139491,4.6138,3.180442 +L 4.6138,3.180442,4.3161,3.36964 +L 4.3161,3.36964,4.0362,3.55052 +L 4.0362,3.55052,3.7595,3.714325 +L 5.0376,0.015189,5.5948,0.015189 +L 5.5948,0.015189,6.1692,0.015189 +L 6.1692,0.015189,6.7433,0.015189 +L 6.7433,0.015189,6.7433,1.081685 +L 6.7433,1.081685,6.7433,2.139491 +L 6.7433,2.139491,6.7433,3.180442 +L 6.7433,3.180442,6.1692,3.180442 +L 6.1692,3.180442,5.5948,3.180442 +L 5.5948,3.180442,5.0376,3.180442 +L 0.3726,2.150809,0.3726,4.275067 +L 0.3726,4.275067,0.3726,6.382426 +L 0.3726,6.382426,0.3726,8.481292 +L 0.3726,8.481292,1.2237,8.481292 +L 1.2237,8.481292,2.0783,8.481292 +L 2.0783,8.481292,2.9326,8.481292 +L 2.9326,8.481292,2.9326,6.382426 +L 2.9326,6.382426,2.9326,4.275067 +L 2.9326,4.275067,2.9326,2.150809 +L 2.9326,2.150809,2.0783,2.150809 +L 2.0783,2.150809,1.2237,2.150809 +L 1.2237,2.150809,0.3726,2.150809 +L 1.6545,2.646559,1.6545,3.36964 +L 1.6545,3.36964,1.6545,4.084491 +L 1.6545,4.084491,1.6545,4.782091 +L 1.6545,4.782091,1.353,4.971486 +L 1.353,4.971486,1.0728,5.152191 +L 1.0728,5.152191,0.7999,5.316084 +L 7.1744,3.714325,6.7433,4.248317 +L 6.7433,4.248317,6.3233,4.782091 +L 6.3233,4.782091,5.8922,5.316084 +L 5.8922,5.316084,5.4649,4.971486 +L 5.4649,4.971486,5.0376,4.618352 +L 5.0376,4.618352,4.6138,4.248317 +L 2.0783,5.316084,1.7803,5.769498 +L 1.7803,5.769498,1.6685,6.451644 +L 1.6685,6.451644,1.6545,7.947388 +L 5.4649,5.850032,5.1671,6.383893 +L 5.1671,6.383893,4.8873,6.917754 +L 4.8873,6.917754,4.6138,7.451704 +L 4.6138,7.451704,4.3161,7.107062 +L 4.3161,7.107062,4.0362,6.753928 +L 4.0362,6.753928,3.7595,6.383893 +L 6.3233,5.850032,6.5961,6.486843 +L 6.5961,6.486843,6.8798,7.107062 +L 6.8798,7.107062,7.1744,7.718612 +L 7.1744,7.718612,6.4529,7.794834 +L 6.4529,7.794834,5.7419,7.871187 +L 5.7419,7.871187,5.0376,7.947388 +L 5.0376,7.947388,5.0376,8.317554 +L 5.0376,8.317554,5.0376,8.670513 +L 5.0376,8.670513,5.0376,9.015198 + +[領] 63 +L 1.6807,0.015189,1.6807,1.426239 +L 1.6807,1.426239,1.6807,2.837224 +L 1.6807,2.837224,1.6807,4.248317 +L 1.6807,4.248317,1.2569,4.248317 +L 1.2569,4.248317,0.8296,4.248317 +L 0.8296,4.248317,0.4023,4.248317 +L 3.9997,0.015189,4.3429,0.385376 +L 4.3429,0.385376,4.7072,0.738445 +L 4.7072,0.738445,5.0714,1.082999 +L 7.6037,0.015189,7.3056,0.385376 +L 7.3056,0.385376,7.0254,0.738445 +L 7.0254,0.738445,6.7491,1.082999 +L 2.5073,1.616969,2.7843,1.616969 +L 2.7843,1.616969,3.068,1.616969 +L 3.068,1.616969,3.3619,1.616969 +L 3.3619,1.616969,3.3619,2.494049 +L 3.3619,2.494049,3.3619,3.371172 +L 3.3619,3.371172,3.3619,4.248317 +L 3.3619,4.248317,2.9346,4.248317 +L 2.9346,4.248317,2.5073,4.248317 +L 2.5073,4.248317,2.0768,4.248317 +L 4.6441,2.150809,4.6441,3.751101 +L 4.6441,3.751101,4.6441,5.3429 +L 4.6441,5.3429,4.6441,6.917754 +L 4.6441,6.917754,5.2571,7.143816 +L 5.2571,7.143816,5.5828,7.47992 +L 5.5828,7.47992,5.898,8.21434 +L 5.898,8.21434,5.3233,8.317554 +L 5.3233,8.317554,4.7629,8.403669 +L 4.7629,8.403669,4.2165,8.481292 +L 5.0714,2.150809,5.7716,2.150809 +L 5.7716,2.150809,6.4724,2.150809 +L 6.4724,2.150809,7.1726,2.150809 +L 7.1726,2.150809,7.1726,2.683225 +L 7.1726,2.683225,7.1726,3.207301 +L 7.1726,3.207301,7.1726,3.714325 +L 7.1726,3.714325,6.4724,3.714325 +L 6.4724,3.714325,5.7716,3.714325 +L 5.7716,3.714325,5.0714,3.714325 +L 7.1726,4.248317,7.1726,4.618352 +L 7.1726,4.618352,7.1726,4.971486 +L 7.1726,4.971486,7.1726,5.316084 +L 7.1726,5.316084,6.4724,5.316084 +L 6.4724,5.316084,5.7716,5.316084 +L 5.7716,5.316084,5.0714,5.316084 +L 1.2569,5.850032,1.8068,5.850032 +L 1.8068,5.850032,2.364,5.850032 +L 2.364,5.850032,2.9346,5.850032 +L 7.1726,5.850032,7.1726,6.220001 +L 7.1726,6.220001,7.1726,6.573113 +L 7.1726,6.573113,7.1726,6.917754 +L 7.1726,6.917754,6.7491,6.917754 +L 6.7491,6.917754,6.318,6.917754 +L 6.318,6.917754,5.898,6.917754 +L 0.4023,6.383893,0.8892,7.260951 +L 0.8892,7.260951,1.376,8.138227 +L 1.376,8.138227,1.8663,9.015198 +L 1.8663,9.015198,2.3532,8.508196 +L 2.3532,8.508196,2.8505,7.984033 +L 2.8505,7.984033,3.3619,7.451704 +L 6.318,8.481292,6.7491,8.481292 +L 6.7491,8.481292,7.1726,8.481292 +L 7.1726,8.481292,7.6037,8.481292 + +[句] 27 +L 5.0661,0.015189,5.4972,0.015189 +L 5.4972,0.015189,5.9245,0.015189 +L 5.9245,0.015189,6.355,0.015189 +L 6.355,0.015189,7.1399,2.43466 +L 7.1399,2.43466,7.2656,4.854242 +L 7.2656,4.854242,7.2061,7.451704 +L 7.2061,7.451704,5.2202,7.374058 +L 5.2202,7.374058,3.2413,7.28792 +L 3.2413,7.28792,1.2554,7.184707 +L 1.2554,7.184707,0.9826,6.573113 +L 0.9826,6.573113,0.709,5.953048 +L 0.709,5.953048,0.4288,5.316084 +L 2.11,2.150809,2.11,3.217152 +L 2.11,3.217152,2.11,4.275067 +L 2.11,4.275067,2.11,5.316084 +L 2.11,5.316084,2.8105,5.316084 +L 2.8105,5.316084,3.525,5.316084 +L 3.525,5.316084,4.2469,5.316084 +L 4.2469,5.316084,4.2469,4.275067 +L 4.2469,4.275067,4.2469,3.217152 +L 4.2469,3.217152,4.2469,2.150809 +L 4.2469,2.150809,3.525,2.150809 +L 3.525,2.150809,2.8105,2.150809 +L 2.8105,2.150809,2.11,2.150809 +L 1.6827,7.947388,1.6827,8.317554 +L 1.6827,8.317554,1.6827,8.670513 +L 1.6827,8.670513,1.6827,9.015198 + +[製] 63 +L 1.2893,0.015189,1.7131,0.015189 +L 1.7131,0.015189,2.1404,0.015189 +L 2.1404,0.015189,2.5673,0.015189 +L 2.5673,0.015189,2.5673,0.738445 +L 2.5673,0.738445,2.5673,1.453076 +L 2.5673,1.453076,2.5673,2.150809 +L 2.5673,2.150809,1.8248,2.012396 +L 1.8248,2.012396,1.1769,1.755316 +L 1.1769,1.755316,0.4347,1.616969 +L 2.9635,0.015189,3.2958,0.390849 +L 3.2958,0.390849,3.6286,0.529283 +L 3.6286,0.529283,4.2453,0.549159 +L 6.8126,0.015189,5.9542,0.995481 +L 5.9542,0.995481,5.1031,1.958721 +L 5.1031,1.958721,4.2453,2.913467 +L 4.2453,2.913467,3.818,2.835801 +L 3.818,2.835801,3.3943,2.749618 +L 3.3943,2.749618,2.9635,2.646559 +L 5.9542,2.150809,6.0841,2.41636 +L 6.0841,2.41636,6.2312,2.673331 +L 6.2312,2.673331,6.3815,2.913467 +L 6.3815,2.913467,5.8039,3.01668 +L 5.8039,3.01668,5.233,3.102732 +L 5.233,3.102732,4.6723,3.180442 +L 0.4347,3.180442,1.1348,3.180442 +L 1.1348,3.180442,1.8423,3.180442 +L 1.8423,3.180442,2.5673,3.180442 +L 3.818,3.714325,3.9473,4.43745 +L 3.9473,4.43745,4.0944,5.152191 +L 4.0944,5.152191,4.2453,5.850032 +L 4.2453,5.850032,3.1592,5.824508 +L 3.1592,5.824508,2.6759,5.443179 +L 2.6759,5.443179,2.5673,4.248317 +L 5.9542,4.248317,6.2312,4.248317 +L 6.2312,4.248317,6.5146,4.248317 +L 6.5146,4.248317,6.8126,4.248317 +L 6.8126,4.248317,6.8126,5.848522 +L 6.8126,5.848522,6.8126,7.440276 +L 6.8126,7.440276,6.8126,9.015198 +L 0.8585,4.782091,0.8585,5.152191 +L 0.8585,5.152191,0.8585,5.505304 +L 0.8585,5.505304,0.8585,5.850032 +L 0.8585,5.850032,1.7761,5.869865 +L 1.7761,5.869865,2.2209,6.008125 +L 2.2209,6.008125,2.5673,6.383893 +L 2.5673,6.383893,2.2209,6.759509 +L 2.2209,6.759509,1.7761,6.897834 +L 1.7761,6.897834,0.8585,6.917754 +L 0.8585,6.917754,0.9912,7.630941 +L 0.9912,7.630941,1.1348,8.32736 +L 1.1348,8.32736,1.2893,9.015198 +L 5.1031,5.850032,5.1031,6.727112 +L 5.1031,6.727112,5.1031,7.604192 +L 5.1031,7.604192,5.1031,8.481292 +L 2.9635,6.917754,2.5397,7.260951 +L 2.5397,7.260951,2.1194,7.604192 +L 2.1194,7.604192,1.7131,7.947388 +L 3.3943,6.917754,3.6671,6.917754 +L 3.6671,6.917754,3.9473,6.917754 +L 3.9473,6.917754,4.2453,6.917754 +L 2.9635,7.947388,2.8234,8.317554 +L 2.8234,8.317554,2.6934,8.670513 +L 2.6934,8.670513,2.5673,9.015198 + +[弁] 27 +L 1.4976,0.015189,2.5483,1.55607 +L 2.5483,1.55607,2.9406,2.376782 +L 2.9406,2.376782,2.9966,3.180442 +L 2.9966,3.180442,2.6187,3.556167 +L 2.6187,3.556167,1.9599,3.694624 +L 1.9599,3.694624,0.4612,3.714325 +L 5.13,0.015189,4.5762,3.364036 +L 4.5762,3.364036,3.5504,3.924932 +L 3.5504,3.924932,2.9966,5.316084 +L 5.5289,3.714325,5.2526,4.129585 +L 5.2526,4.129585,5.1471,4.544888 +L 5.1471,4.544888,5.13,5.316084 +L 5.9527,3.714325,6.5134,3.714325 +L 6.5134,3.714325,7.0875,3.714325 +L 7.0875,3.714325,7.6622,3.714325 +L 7.2349,6.117007,7.0875,6.383893 +L 7.0875,6.383893,6.9372,6.650802 +L 6.9372,6.650802,6.8073,6.917754 +L 6.8073,6.917754,5.0914,6.779298 +L 5.0914,6.779298,3.4624,6.522306 +L 3.4624,6.522306,0.8917,6.383893 +L 2.5662,6.917754,2.8429,7.630941 +L 2.8429,7.630941,3.1227,8.32736 +L 3.1227,8.32736,3.4239,9.015198 +L 6.3835,7.451704,6.0861,7.794834 +L 6.0861,7.794834,5.8059,8.138227 +L 5.8059,8.138227,5.5289,8.481292 + +[私] 8 +L 0.4947,5.849944,3.8816,5.849944 +L 0.4947,1.616969,2.172,5.14685 +L 2.172,0.015189,2.172,8.066887 +L 3.4543,2.451385,2.172,5.14685 +L 5.8916,9.015198,4.1057,0.074949 +A 1.2404,12.746972,4.772112,266.17535,297.6407 +A 1.1707,0.015123,6.525323,0,43.601058 +A 3.1948,7.001047,6.985887,270,308.2537 + +[晩] 57 +L 2.8115,0.015189,3.7712,1.409318 +L 3.7712,1.409318,4.2058,2.549016 +L 4.2058,2.549016,4.3039,4.248317 +L 4.3039,4.248317,4.0128,4.248317 +L 4.0128,4.248317,3.7291,4.248317 +L 3.7291,4.248317,3.4528,4.248317 +L 3.4528,4.248317,3.4353,5.770833 +L 3.4353,5.770833,3.3264,6.463005 +L 3.3264,6.463005,3.0255,6.917754 +L 3.0255,6.917754,2.8115,6.753928 +L 2.8115,6.753928,2.5978,6.573113 +L 2.5978,6.573113,2.3845,6.383893 +L 2.3845,6.383893,2.3247,4.972843 +L 2.3247,4.972843,2.2651,3.561837 +L 2.2651,3.561837,2.2024,2.150809 +L 2.2024,2.150809,1.6242,2.150809 +L 1.6242,2.150809,1.0533,2.150809 +L 1.0533,2.150809,0.4929,2.150809 +L 0.4929,2.150809,0.4929,4.094297 +L 0.4929,4.094297,0.4929,6.029314 +L 0.4929,6.029314,0.4929,7.947388 +L 0.4929,7.947388,1.0533,7.947388 +L 1.0533,7.947388,1.6242,7.947388 +L 1.6242,7.947388,2.2024,7.947388 +L 2.2024,7.947388,2.2024,7.604192 +L 2.2024,7.604192,2.2024,7.260951 +L 2.2024,7.260951,2.2024,6.917754 +L 6.0127,0.015189,5.7189,0.527882 +L 5.7189,0.527882,5.6064,1.625419 +L 5.6064,1.625419,5.5924,4.248317 +L 5.5924,4.248317,5.2951,4.248317 +L 5.2951,4.248317,5.0114,4.248317 +L 5.0114,4.248317,4.7343,4.248317 +L 6.4089,0.015189,6.6852,0.015189 +L 6.6852,0.015189,6.9689,0.015189 +L 6.9689,0.015189,7.2666,0.015189 +L 7.2666,0.015189,7.2666,0.549159 +L 7.2666,0.549159,7.2666,1.082999 +L 7.2666,1.082999,7.2666,1.616969 +L 6.0127,4.248317,6.2929,4.248317 +L 6.2929,4.248317,6.5665,4.248317 +L 6.5665,4.248317,6.8393,4.248317 +L 6.8393,4.248317,6.8393,4.971486 +L 6.8393,4.971486,6.8393,5.68614 +L 6.8393,5.68614,6.8393,6.383893 +L 6.8393,6.383893,5.7536,6.358457 +L 5.7536,6.358457,5.2702,5.977018 +L 5.2702,5.977018,5.1616,4.782091 +L 0.9205,5.316084,1.1969,5.316084 +L 1.1969,5.316084,1.4806,5.316084 +L 1.4806,5.316084,1.7783,5.316084 +L 3.8832,6.383893,4.5137,6.433278 +L 4.5137,6.433278,4.9553,6.779298 +L 4.9553,6.779298,5.5924,7.718612 +L 5.5924,7.718612,4.3701,7.861249 +L 4.3701,7.861249,3.817,7.79201 +L 3.817,7.79201,3.4528,7.451704 + +[宅] 36 +L 3.9098,0.015189,2.8664,2.10416 +L 2.8664,2.10416,2.7504,2.667705 +L 2.7504,2.667705,0.5264,2.646559 +L 4.3409,0.015189,5.3146,0.015189 +L 5.3146,0.015189,6.3019,0.015189 +L 6.3019,0.015189,7.297,0.015189 +L 7.297,0.015189,7.297,0.549159 +L 7.297,0.549159,7.297,1.082999 +L 7.297,1.082999,7.297,1.616969 +L 3.9098,3.180442,3.6124,3.615556 +L 3.6124,3.615556,3.5,4.169294 +L 3.5,4.169294,3.4825,5.316084 +L 3.4825,5.316084,2.7613,5.316084 +L 2.7613,5.316084,2.0538,5.316084 +L 2.0538,5.316084,1.3463,5.316084 +L 4.3409,3.180442,5.0764,3.318877 +L 5.0764,3.318877,5.826,3.575869 +L 5.826,3.575869,6.8732,3.714325 +L 3.4825,5.850032,4.4141,5.869865 +L 4.4141,5.869865,4.9605,6.008125 +L 4.9605,6.008125,5.5874,6.383893 +L 0.5264,6.383893,0.5264,6.916266 +L 0.5264,6.916266,0.5264,7.440276 +L 0.5264,7.440276,0.5264,7.947388 +L 0.5264,7.947388,1.651,7.947388 +L 1.651,7.947388,2.7823,7.947388 +L 2.7823,7.947388,3.9098,7.947388 +L 3.9098,7.947388,3.9098,8.317554 +L 3.9098,8.317554,3.9098,8.670513 +L 3.9098,8.670513,3.9098,9.015198 +L 7.297,6.383893,7.297,6.916266 +L 7.297,6.916266,7.297,7.440276 +L 7.297,7.440276,7.297,7.947388 +L 7.297,7.947388,6.3019,7.947388 +L 6.3019,7.947388,5.3146,7.947388 +L 5.3146,7.947388,4.3409,7.947388 + +[痛] 69 +L 0.5249,0.015189,1.2324,1.468619 +L 1.2324,1.468619,1.632,2.718556 +L 1.632,2.718556,1.5935,4.248317 +L 1.5935,4.248317,1.2257,3.903589 +L 1.2257,3.903589,0.8681,3.55052 +L 0.8681,3.55052,0.5249,3.180442 +L 3.089,0.015189,3.089,1.615437 +L 3.089,1.615437,3.089,3.207301 +L 3.089,3.207301,3.089,4.782091 +L 3.089,4.782091,4.2869,4.801858 +L 4.2869,4.801858,4.8262,4.940402 +L 4.8262,4.940402,5.1905,5.316084 +L 5.1905,5.316084,4.8959,5.505304 +L 4.8959,5.505304,4.6158,5.68614 +L 4.6158,5.68614,4.3356,5.850032 +L 5.1905,0.015189,4.959,1.345792 +L 4.959,1.345792,4.3566,1.659283 +L 4.3566,1.659283,3.5128,1.616969 +L 6.4724,0.015189,6.7491,0.015189 +L 6.7491,0.015189,7.0328,0.015189 +L 7.0328,0.015189,7.3302,0.015189 +L 7.3302,0.015189,7.3302,0.549159 +L 7.3302,0.549159,7.3302,1.082999 +L 7.3302,1.082999,7.3302,1.616969 +L 7.3302,1.616969,6.7491,1.616969 +L 6.7491,1.616969,6.1743,1.616969 +L 6.1743,1.616969,5.6213,1.616969 +L 5.6213,1.616969,5.3232,2.149386 +L 5.3232,2.149386,5.0431,2.673331 +L 5.0431,2.673331,4.7667,3.180442 +L 4.7667,3.180442,4.3391,3.180442 +L 4.3391,3.180442,3.9191,3.180442 +L 3.9191,3.180442,3.5128,3.180442 +L 7.3302,2.150809,7.3302,2.494049 +L 7.3302,2.494049,7.3302,2.837224 +L 7.3302,2.837224,7.3302,3.180442 +L 7.3302,3.180442,6.7491,3.180442 +L 6.7491,3.180442,6.1743,3.180442 +L 6.1743,3.180442,5.6213,3.180442 +L 5.6213,3.180442,5.3341,3.773735 +L 5.3341,3.773735,5.3341,4.188841 +L 5.3341,4.188841,5.6213,4.782091 +L 5.6213,4.782091,6.1743,4.782091 +L 6.1743,4.782091,6.7491,4.782091 +L 6.7491,4.782091,7.3302,4.782091 +L 7.3302,4.782091,7.3302,4.43745 +L 7.3302,4.43745,7.3302,4.084491 +L 7.3302,4.084491,7.3302,3.714325 +L 1.8033,4.782091,1.8033,5.848522 +L 1.8033,5.848522,1.8033,6.906482 +L 1.8033,6.906482,1.8033,7.947388 +L 1.8033,7.947388,2.7808,7.947388 +L 2.7808,7.947388,3.7647,7.947388 +L 3.7647,7.947388,4.7667,7.947388 +L 4.7667,7.947388,4.7667,8.317554 +L 4.7667,8.317554,4.7667,8.670513 +L 4.7667,8.670513,4.7667,9.015198 +L 0.9522,6.117007,0.8019,6.383893 +L 0.8019,6.383893,0.6545,6.650802 +L 0.6545,6.650802,0.5249,6.917754 +L 5.8311,5.850032,6.0451,6.117007 +L 6.0451,6.117007,6.2584,6.383893 +L 6.2584,6.383893,6.4724,6.650802 +L 6.4724,6.650802,5.3443,6.753928 +L 5.3443,6.753928,4.2165,6.840175 +L 4.2165,6.840175,3.089,6.917754 +L 5.1905,7.947388,6.0276,7.947388 +L 6.0276,7.947388,6.8717,7.947388 +L 6.8717,7.947388,7.7263,7.947388 + +[困] 30 +L 0.5588,0.015189,0.5588,2.837224 +L 0.5588,2.837224,0.5588,5.65928 +L 0.5588,5.65928,0.5588,8.481292 +L 0.5588,8.481292,2.814,8.481292 +L 2.814,8.481292,5.0734,8.481292 +L 5.0734,8.481292,7.3287,8.481292 +L 7.3287,8.481292,7.3287,5.65928 +L 7.3287,5.65928,7.3287,2.837224 +L 7.3287,2.837224,7.3287,0.015189 +L 7.3287,0.015189,5.0734,0.015189 +L 5.0734,0.015189,2.814,0.015189 +L 2.814,0.015189,0.5588,0.015189 +L 3.9421,1.082999,3.8581,2.494049 +L 3.8581,2.494049,3.7912,3.905077 +L 3.7912,3.905077,3.7281,5.316084 +L 3.7281,5.316084,2.9439,4.275067 +L 2.9439,4.275067,2.173,3.217152 +L 2.173,3.217152,1.4099,2.150809 +L 6.4744,2.150809,5.7736,3.294907 +L 5.7736,3.294907,5.0734,4.438916 +L 5.0734,4.438916,4.3726,5.583058 +L 4.3726,5.583058,3.5148,5.68614 +L 3.5148,5.68614,2.6704,5.772256 +L 2.6704,5.772256,1.8372,5.850032 +L 4.7932,5.850032,5.2027,5.850032 +L 5.2027,5.850032,5.6198,5.850032 +L 5.6198,5.850032,6.0471,5.850032 +L 3.9421,6.383893,3.9421,6.753928 +L 3.9421,6.753928,3.9421,7.107062 +L 3.9421,7.107062,3.9421,7.451704 + +[閉] 54 +L 0.5849,0.015189,0.5849,2.837224 +L 0.5849,2.837224,0.5849,5.65928 +L 0.5849,5.65928,0.5849,8.481292 +L 0.5849,8.481292,1.4185,8.481292 +L 1.4185,8.481292,2.263,8.481292 +L 2.263,8.481292,3.1207,8.481292 +L 3.1207,8.481292,3.1207,7.793477 +L 3.1207,7.793477,3.1207,7.097124 +L 3.1207,7.097124,3.1207,6.383893 +L 3.1207,6.383893,2.3922,6.383893 +L 2.3922,6.383893,1.6847,6.383893 +L 1.6847,6.383893,0.9811,6.383893 +L 6.0768,0.015189,6.5041,0.015189 +L 6.5041,0.015189,6.9317,0.015189 +L 6.9317,0.015189,7.3625,0.015189 +L 7.3625,0.015189,7.3625,2.149386 +L 7.3625,2.149386,7.3625,4.275067 +L 7.3625,4.275067,7.3625,6.383893 +L 7.3625,6.383893,6.5041,6.383893 +L 6.5041,6.383893,5.653,6.383893 +L 5.653,6.383893,4.7949,6.383893 +L 4.7949,6.383893,4.7949,7.097124 +L 4.7949,7.097124,4.7949,7.793477 +L 4.7949,7.793477,4.7949,8.481292 +L 4.7949,8.481292,5.653,8.481292 +L 5.653,8.481292,6.5041,8.481292 +L 6.5041,8.481292,7.3625,8.481292 +L 7.3625,8.481292,7.3625,7.974269 +L 7.3625,7.974269,7.3625,7.450259 +L 7.3625,7.450259,7.3625,6.917754 +L 3.541,0.549159,3.8215,0.549159 +L 3.8215,0.549159,4.1017,0.549159 +L 4.1017,0.549159,4.3991,0.549159 +L 4.3991,0.549159,4.315,1.426239 +L 4.315,1.426239,4.2485,2.303384 +L 4.2485,2.303384,4.1858,3.180442 +L 4.1858,3.180442,3.3942,2.673331 +L 3.3942,2.673331,2.6062,2.149386 +L 2.6062,2.149386,1.8357,1.616969 +L 4.3991,3.714325,4.0177,4.09005 +L 4.0177,4.09005,3.3589,4.228463 +L 3.3589,4.228463,1.8357,4.248317 +L 4.7949,4.248317,4.6516,4.618352 +L 4.6516,4.618352,4.522,4.971486 +L 4.522,4.971486,4.3991,5.316084 +L 5.2222,4.248317,5.4992,4.248317 +L 5.4992,4.248317,5.7829,4.248317 +L 5.7829,4.248317,6.0768,4.248317 +L 0.9811,7.451704,1.5411,7.451704 +L 1.5411,7.451704,2.112,7.451704 +L 2.112,7.451704,2.6899,7.451704 +L 5.2222,7.451704,5.7829,7.451704 +L 5.7829,7.451704,6.3535,7.451704 +L 6.3535,7.451704,6.9317,7.451704 + +[若] 45 +L 2.7203,0.015189,2.7063,1.886636 +L 2.7063,1.886636,2.5938,2.707326 +L 2.5938,2.707326,2.2926,3.180442 +L 2.2926,3.180442,1.7182,2.673331 +L 1.7182,2.673331,1.1403,2.149386 +L 1.1403,2.149386,0.5838,1.616969 +L 3.1157,0.015189,4.2473,0.015189 +L 4.2473,0.015189,5.3853,0.015189 +L 5.3853,0.015189,6.5344,0.015189 +L 6.5344,0.015189,6.5344,1.081685 +L 6.5344,1.081685,6.5344,2.139491 +L 6.5344,2.139491,6.5344,3.180442 +L 6.5344,3.180442,4.1139,3.200209 +L 4.1139,3.200209,3.1301,3.3386 +L 3.1301,3.3386,2.7203,3.714325 +L 2.7203,3.714325,2.9966,4.170563 +L 2.9966,4.170563,3.2702,4.618352 +L 3.2702,4.618352,3.5465,5.049087 +L 3.5465,5.049087,2.5451,5.152191 +L 2.5451,5.152191,1.5606,5.238329 +L 1.5606,5.238329,0.5838,5.316084 +L 3.9703,5.316084,3.9703,5.850032 +L 3.9703,5.850032,3.9703,6.383893 +L 3.9703,6.383893,3.9703,6.917754 +L 4.4014,5.316084,5.5254,5.316084 +L 5.5254,5.316084,6.657,5.316084 +L 6.657,5.316084,7.7848,5.316084 +L 2.7203,7.184707,2.356,7.721458 +L 2.356,7.721458,1.8058,7.91915 +L 1.8058,7.91915,0.5838,7.947388 +L 5.6798,7.184707,5.5289,7.450259 +L 5.5289,7.450259,5.3853,7.707338 +L 5.3853,7.707338,5.2525,7.947388 +L 5.2525,7.947388,4.531,7.947388 +L 4.531,7.947388,3.8232,7.947388 +L 3.8232,7.947388,3.1157,7.947388 +L 3.1157,7.947388,2.9756,8.317554 +L 2.9756,8.317554,2.8429,8.670513 +L 2.8429,8.670513,2.7203,9.015198 +L 6.1103,7.947388,5.9562,8.317554 +L 5.9562,8.317554,5.8126,8.670513 +L 5.8126,8.670513,5.6798,9.015198 +L 6.5344,7.947388,6.9404,7.947388 +L 6.9404,7.947388,7.361,7.947388 +L 7.361,7.947388,7.7848,7.947388 + +[降] 54 +L 0.6173,0.015189,0.6173,2.837224 +L 0.6173,2.837224,0.6173,5.65928 +L 0.6173,5.65928,0.6173,8.481292 +L 0.6173,8.481292,1.1672,8.481292 +L 1.1672,8.481292,1.7237,8.481292 +L 1.7237,8.481292,2.2946,8.481292 +L 2.2946,8.481292,1.8638,6.146559 +L 1.8638,6.146559,2.0743,4.777888 +L 2.0743,4.777888,2.2946,2.646559 +L 2.2946,2.646559,2.0183,2.492626 +L 2.0183,2.492626,1.7482,2.3302 +L 1.7482,2.3302,1.4719,2.150809 +L 5.6783,0.015189,5.6675,0.786319 +L 5.6675,0.786319,5.5628,1.201644 +L 5.5628,1.201644,5.2822,1.616969 +L 5.2822,1.616969,4.5607,1.616969 +L 4.5607,1.616969,3.8532,1.616969 +L 3.8532,1.616969,3.1531,1.616969 +L 6.1091,1.616969,5.7936,2.279305 +L 5.7936,2.279305,5.5803,3.052011 +L 5.5803,3.052011,5.2822,3.714325 +L 5.2822,3.714325,4.8584,3.714325 +L 4.8584,3.714325,4.4311,3.714325 +L 4.4311,3.714325,4.0042,3.714325 +L 4.0042,3.714325,4.0042,3.207301 +L 4.0042,3.207301,4.0042,2.683225 +L 4.0042,2.683225,4.0042,2.150809 +L 6.5361,1.616969,6.9634,1.616969 +L 6.9634,1.616969,7.3907,1.616969 +L 7.3907,1.616969,7.818,1.616969 +L 6.1091,3.714325,5.9547,4.084491 +L 5.9547,4.084491,5.8146,4.43745 +L 5.8146,4.43745,5.6783,4.782091 +L 6.5361,3.714325,6.8131,3.714325 +L 6.8131,3.714325,7.0933,3.714325 +L 7.0933,3.714325,7.3907,3.714325 +L 3.3629,4.782091,4.0042,5.316084 +L 4.0042,5.316084,4.6451,5.850032 +L 4.6451,5.850032,5.2822,6.383893 +L 5.2822,6.383893,4.918,6.753928 +L 4.918,6.753928,4.5607,7.107062 +L 4.5607,7.107062,4.2175,7.451704 +L 4.2175,7.451704,3.8532,7.28792 +L 3.8532,7.28792,3.4963,7.107062 +L 3.4963,7.107062,3.1531,6.917754 +L 7.3907,4.782091,6.8131,5.316084 +L 6.8131,5.316084,6.2384,5.850032 +L 6.2384,5.850032,5.6783,6.383893 +L 5.6783,6.383893,5.9547,6.840175 +L 5.9547,6.840175,6.2384,7.28792 +L 6.2384,7.28792,6.5361,7.718612 +L 6.5361,7.718612,5.8321,7.794834 +L 5.8321,7.794834,5.132,7.871187 +L 5.132,7.871187,4.4311,7.947388 + +[済] 45 +L 0.6158,0.282054,1.0431,1.426239 +L 1.0431,1.426239,1.4704,2.570337 +L 1.4704,2.570337,1.9008,3.714325 +L 2.3215,0.015189,3.2286,1.632424 +L 3.2286,1.632424,3.561,2.936124 +L 3.561,2.936124,3.61,4.782091 +L 3.61,4.782091,3.3127,4.782091 +L 3.3127,4.782091,3.029,4.782091 +L 3.029,4.782091,2.7519,4.782091 +L 6.9938,0.015189,6.9938,0.738445 +L 6.9938,0.738445,6.9938,1.453076 +L 6.9938,1.453076,6.9938,2.150809 +L 6.9938,2.150809,5.9917,2.150809 +L 5.9917,2.150809,5.0114,2.150809 +L 5.0114,2.150809,4.0303,2.150809 +L 6.9938,2.646559,6.9938,3.01668 +L 6.9938,3.01668,6.9938,3.36964 +L 6.9938,3.36964,6.9938,3.714325 +L 6.9938,3.714325,5.9917,3.714325 +L 5.9917,3.714325,5.0114,3.714325 +L 5.0114,3.714325,4.0303,3.714325 +L 6.9938,4.515183,6.4544,5.098538 +L 6.4544,5.098538,5.8239,5.44447 +L 5.8239,5.44447,5.2842,5.850032 +L 5.2842,5.850032,4.9553,5.474197 +L 4.9553,5.474197,4.6328,5.335785 +L 4.6328,5.335785,4.0303,5.316084 +L 1.4704,5.850032,1.1723,6.220001 +L 1.1723,6.220001,0.8921,6.573113 +L 0.8921,6.573113,0.6158,6.917754 +L 4.8569,6.383893,4.1564,7.390826 +L 4.1564,7.390826,3.6139,7.779314 +L 3.6139,7.779314,2.7519,7.947388 +L 5.7115,6.383893,5.9851,6.840175 +L 5.9851,6.840175,6.2723,7.28792 +L 6.2723,7.28792,6.5661,7.718612 +L 6.5661,7.718612,5.8415,7.794834 +L 5.8415,7.794834,5.134,7.871187 +L 5.134,7.871187,4.4331,7.947388 +L 1.9008,7.947388,1.6031,8.317554 +L 1.6031,8.317554,1.3194,8.670513 +L 1.3194,8.670513,1.0431,9.015198 +L 6.9938,7.947388,7.2701,7.947388 +L 7.2701,7.947388,7.5503,7.947388 +L 7.5503,7.947388,7.8484,7.947388 + +[映] 45 +L 2.9679,0.015189,3.735,1.262412 +L 3.735,1.262412,4.5265,2.492626 +L 4.5265,2.492626,5.3146,3.714325 +L 5.3146,3.714325,4.922,4.09005 +L 4.922,4.09005,4.1514,4.228463 +L 4.1514,4.228463,2.3585,4.248317 +L 2.3585,4.248317,2.3585,3.371172 +L 2.3585,3.371172,2.3585,2.494049 +L 2.3585,2.494049,2.3585,1.616969 +L 2.3585,1.616969,1.7771,1.616969 +L 1.7771,1.616969,1.2097,1.616969 +L 1.2097,1.616969,0.649,1.616969 +L 0.649,1.616969,0.649,3.741272 +L 0.649,3.741272,0.649,5.848522 +L 0.649,5.848522,0.649,7.947388 +L 0.649,7.947388,1.2097,7.947388 +L 1.2097,7.947388,1.7771,7.947388 +L 1.7771,7.947388,2.3585,7.947388 +L 2.3585,7.947388,2.3585,6.906482 +L 2.3585,6.906482,2.3585,5.848522 +L 2.3585,5.848522,2.3585,4.782091 +L 7.4157,0.015189,6.8522,1.081685 +L 6.8522,1.081685,6.2949,2.139491 +L 6.2949,2.139491,5.7419,3.180442 +L 5.7419,4.248317,5.157,5.841495 +L 5.157,5.841495,5.006,7.00247 +L 5.006,7.00247,3.605,7.451704 +L 3.605,7.451704,3.605,6.573113 +L 3.605,6.573113,3.605,5.68614 +L 3.605,5.68614,3.605,4.782091 +L 6.1692,4.248317,6.442,4.248317 +L 6.442,4.248317,6.7156,4.248317 +L 6.7156,4.248317,6.9958,4.248317 +L 6.9958,4.248317,6.9958,5.316084 +L 6.9958,5.316084,6.9958,6.383893 +L 6.9958,6.383893,6.9958,7.451704 +L 6.9958,7.451704,6.0988,7.46996 +L 6.0988,7.46996,5.6648,7.5985 +L 5.6648,7.5985,5.3146,7.947388 +L 5.3146,7.947388,5.3146,8.317554 +L 5.3146,8.317554,5.3146,8.670513 +L 5.3146,8.670513,5.3146,9.015198 +L 1.0763,5.316084,1.3498,5.316084 +L 1.3498,5.316084,1.63,5.316084 +L 1.63,5.316084,1.9274,5.316084 + +[座] 39 +L 0.6793,0.282054,1.1133,1.989915 +L 1.1133,1.989915,1.3308,3.97714 +L 1.3308,3.97714,1.5021,7.947388 +L 1.5021,7.947388,2.4866,7.947388 +L 2.4866,7.947388,3.4845,7.947388 +L 3.4845,7.947388,4.49,7.947388 +L 4.49,7.947388,4.49,8.317554 +L 4.49,8.317554,4.49,8.670513 +L 4.49,8.670513,4.49,9.015198 +L 1.9332,0.015189,2.9136,0.015189 +L 2.9136,0.015189,3.9118,0.015189 +L 3.9118,0.015189,4.917,0.015189 +L 4.917,0.015189,4.7138,1.772303 +L 4.7138,1.772303,4.0273,2.198814 +L 4.0273,2.198814,2.7843,2.150809 +L 5.3166,0.015189,6.1712,0.015189 +L 6.1712,0.015189,7.0219,0.015189 +L 7.0219,0.015189,7.88,0.015189 +L 5.0991,2.417652,5.043,3.751101 +L 5.043,3.751101,4.9768,5.075991 +L 4.9768,5.075991,4.917,6.383893 +L 5.7439,2.150809,6.1712,2.150809 +L 6.1712,2.150809,6.5981,2.150809 +L 6.5981,2.150809,7.0219,2.150809 +L 2.3532,3.714325,2.9556,4.881014 +L 2.9556,4.881014,3.1797,5.573054 +L 3.1797,5.573054,3.2081,6.383893 +L 4.0627,3.981387,3.9118,4.248317 +L 3.9118,4.248317,3.7682,4.515183 +L 3.7682,4.515183,3.6389,4.782091 +L 5.7439,3.714325,6.3425,4.881014 +L 6.3425,4.881014,6.5631,5.573054 +L 6.5631,5.573054,6.5981,6.383893 +L 7.4527,3.981387,7.299,4.248317 +L 7.299,4.248317,7.1554,4.515183 +L 7.1554,4.515183,7.0219,4.782091 +L 4.917,7.947388,5.8976,7.947388 +L 5.8976,7.947388,6.8787,7.947388 +L 6.8787,7.947388,7.88,7.947388 + +[暖] 57 +L 4.0647,0.015189,4.7652,0.385376 +L 4.7652,0.385376,5.4762,0.738445 +L 5.4762,0.738445,6.2009,1.082999 +L 6.2009,1.082999,5.5669,2.02229 +L 5.5669,2.02229,5.1221,2.368333 +L 5.1221,2.368333,4.4917,2.417652 +L 4.4917,2.417652,4.0647,1.806233 +L 4.0647,1.806233,3.6476,1.186102 +L 3.6476,1.186102,3.2413,0.549159 +L 7.4796,0.015189,7.1819,0.204518 +L 7.1819,0.204518,6.9013,0.385376 +L 6.9013,0.385376,6.6285,0.549159 +L 6.6285,1.616969,6.7612,1.883812 +L 6.7612,1.883812,6.9013,2.150809 +L 6.9013,2.150809,7.0558,2.417652 +L 7.0558,2.417652,6.6285,2.494049 +L 6.6285,2.494049,6.2009,2.570337 +L 6.2009,2.570337,5.7736,2.646559 +L 0.6813,2.150809,0.6813,4.094297 +L 0.6813,4.094297,0.6813,6.029314 +L 0.6813,6.029314,0.6813,7.947388 +L 0.6813,7.947388,1.2379,7.947388 +L 1.2379,7.947388,1.8088,7.947388 +L 1.8088,7.947388,2.3902,7.947388 +L 2.3902,7.947388,2.3902,6.029314 +L 2.3902,6.029314,2.3902,4.094297 +L 2.3902,4.094297,2.3902,2.150809 +L 2.3902,2.150809,1.8088,2.150809 +L 1.8088,2.150809,1.2379,2.150809 +L 1.2379,2.150809,0.6813,2.150809 +L 4.9225,3.180442,4.9225,3.55052 +L 4.9225,3.55052,4.9225,3.903589 +L 4.9225,3.903589,4.9225,4.248317 +L 4.9225,4.248317,4.3516,4.248317 +L 4.3516,4.248317,3.7912,4.248317 +L 3.7912,4.248317,3.2413,4.248317 +L 5.3463,4.248317,5.3463,4.782091 +L 5.3463,4.782091,5.3463,5.316084 +L 5.3463,5.316084,5.3463,5.850032 +L 5.3463,5.850032,4.7722,5.850032 +L 4.7722,5.850032,4.2188,5.850032 +L 4.2188,5.850032,3.6686,5.850032 +L 5.7736,4.248317,6.4744,4.248317 +L 6.4744,4.248317,7.1749,4.248317 +L 7.1749,4.248317,7.8785,4.248317 +L 1.1016,5.316084,1.3815,5.316084 +L 1.3815,5.316084,1.6617,5.316084 +L 1.6617,5.316084,1.9597,5.316084 +L 5.7736,5.850032,6.4078,6.087258 +L 6.4078,6.087258,6.8453,6.502539 +L 6.8453,6.502539,7.4796,7.451704 +L 4.0647,6.917754,3.9211,7.184707 +L 3.9211,7.184707,3.7912,7.451704 +L 3.7912,7.451704,3.6686,7.718612 +L 3.6686,7.718612,5.5914,8.01805 +L 5.5914,8.01805,6.6775,8.334321 +L 6.6775,8.334321,7.4796,8.481292 + +[難] 66 +L 0.925,0.015189,1.4118,0.652175 +L 1.4118,0.652175,1.8987,1.272262 +L 1.8987,1.272262,2.3855,1.883812 +L 2.3855,1.883812,1.8146,1.986981 +L 1.8146,1.986981,1.2609,2.073142 +L 1.2609,2.073142,0.7075,2.150809 +L 4.9493,0.015189,4.963,5.636733 +L 4.963,5.636733,5.0754,7.970022 +L 5.0754,7.970022,5.3801,9.015198 +L 5.3801,0.015189,5.7829,0.015189 +L 5.7829,0.015189,6.2032,0.015189 +L 6.2032,0.015189,6.6266,0.015189 +L 6.6266,0.015189,6.6021,1.646521 +L 6.6021,1.646521,6.2974,2.438995 +L 6.2974,2.438995,5.3801,2.646559 +L 7.0543,0.015189,7.3306,0.015189 +L 7.3306,0.015189,7.6108,0.015189 +L 7.6108,0.015189,7.9054,0.015189 +L 3.6706,0.549159,3.0997,1.426239 +L 3.0997,1.426239,2.5396,2.303384 +L 2.5396,2.303384,1.9894,3.180442 +L 1.9894,3.180442,1.6955,3.180442 +L 1.6955,3.180442,1.4118,3.180442 +L 1.4118,3.180442,1.1383,3.180442 +L 3.2398,2.150809,3.5168,2.150809 +L 3.5168,2.150809,3.8005,2.150809 +L 3.8005,2.150809,4.0944,2.150809 +L 7.0543,2.646559,6.5324,3.759528 +L 6.5324,3.759528,6.3083,4.508156 +L 6.3083,4.508156,5.3801,4.782091 +L 2.8125,3.180442,2.5396,3.714325 +L 2.5396,3.714325,2.2661,4.248317 +L 2.2661,4.248317,1.9894,4.782091 +L 1.9894,4.782091,1.6955,4.782091 +L 1.6955,4.782091,1.4118,4.782091 +L 1.4118,4.782091,1.1383,4.782091 +L 1.1383,4.782091,1.1383,5.316084 +L 1.1383,5.316084,1.1383,5.850032 +L 1.1383,5.850032,1.1383,6.383893 +L 1.1383,6.383893,1.9684,6.383893 +L 1.9684,6.383893,2.8125,6.383893 +L 2.8125,6.383893,3.6706,6.383893 +L 3.6706,6.383893,3.6706,5.850032 +L 3.6706,5.850032,3.6706,5.316084 +L 3.6706,5.316084,3.6706,4.782091 +L 3.6706,4.782091,3.051,4.821669 +L 3.051,4.821669,2.7179,5.098538 +L 2.7179,5.098538,2.3855,5.850032 +L 7.0543,4.782091,6.5464,6.033649 +L 6.5464,6.033649,6.3359,7.03918 +L 6.3359,7.03918,5.3801,7.451704 +L 7.0543,7.451704,6.7706,7.840103 +L 6.7706,7.840103,6.7706,8.245424 +L 6.7706,8.245424,7.0543,9.015198 +L 0.7075,7.947388,0.9846,7.947388 +L 0.9846,7.947388,1.2682,7.947388 +L 1.2682,7.947388,1.5656,7.947388 +L 1.5656,7.947388,1.5656,8.317554 +L 1.5656,8.317554,1.5656,8.670513 +L 1.5656,8.670513,1.5656,9.015198 +L 1.9894,7.947388,2.3995,7.947388 +L 2.3995,7.947388,2.8125,7.947388 +L 2.8125,7.947388,3.2398,7.947388 +L 3.2398,7.947388,3.2398,8.317554 +L 3.2398,8.317554,3.2398,8.670513 +L 3.2398,8.670513,3.2398,9.015198 + +[洗] 48 +L 0.7379,0.282054,1.1477,1.426239 +L 1.1477,1.426239,1.5641,2.570337 +L 1.5641,2.570337,1.9879,3.714325 +L 2.6324,0.015189,3.6831,1.615437 +L 3.6831,1.615437,4.0719,2.87667 +L 4.0719,2.87667,4.1279,4.782091 +L 4.1279,4.782091,3.5465,4.782091 +L 3.5465,4.782091,2.9791,4.782091 +L 2.9791,4.782091,2.4191,4.782091 +L 6.2329,0.015189,5.9317,0.547693 +L 5.9317,0.547693,5.8199,1.783511 +L 5.8199,1.783511,5.8024,4.782091 +L 5.8024,4.782091,5.3786,4.782091 +L 5.3786,4.782091,4.958,4.782091 +L 4.958,4.782091,4.5552,4.782091 +L 6.6602,0.015189,6.9337,0.015189 +L 6.9337,0.015189,7.2136,0.015189 +L 7.2136,0.015189,7.5113,0.015189 +L 7.5113,0.015189,7.5113,0.549159 +L 7.5113,0.549159,7.5113,1.082999 +L 7.5113,1.082999,7.5113,1.616969 +L 6.2329,4.782091,6.6602,4.782091 +L 6.6602,4.782091,7.084,4.782091 +L 7.084,4.782091,7.5113,4.782091 +L 4.9513,5.316084,4.937,6.463005 +L 4.937,6.463005,4.8322,7.01659 +L 4.8322,7.01659,4.5552,7.451704 +L 4.5552,7.451704,4.1279,7.451704 +L 4.1279,7.451704,3.6974,7.451704 +L 3.6974,7.451704,3.2701,7.451704 +L 3.2701,7.451704,3.1227,7.107062 +L 3.1227,7.107062,2.9791,6.753928 +L 2.9791,6.753928,2.8428,6.383893 +L 1.5641,5.850032,1.2878,6.220001 +L 1.2878,6.220001,1.0142,6.573113 +L 1.0142,6.573113,0.7379,6.917754 +L 5.3786,7.451704,5.0739,7.840103 +L 5.0739,7.840103,4.9688,8.245424 +L 4.9688,8.245424,4.9513,9.015198 +L 5.8024,7.451704,6.2329,7.451704 +L 6.2329,7.451704,6.6602,7.451704 +L 6.6602,7.451704,7.084,7.451704 +L 1.9879,7.947388,1.694,8.317554 +L 1.694,8.317554,1.4138,8.670513 +L 1.4138,8.670513,1.1333,9.015198 +L 3.2701,7.947388,3.2701,8.317554 +L 3.2701,8.317554,3.2701,8.670513 +L 3.2701,8.670513,3.2701,9.015198 + +[割] 45 +L 1.5945,0.015189,1.5945,0.738445 +L 1.5945,0.738445,1.5945,1.453076 +L 1.5945,1.453076,1.5945,2.150809 +L 1.5945,2.150809,2.4277,2.150809 +L 2.4277,2.150809,3.2721,2.150809 +L 3.2721,2.150809,4.1267,2.150809 +L 4.1267,2.150809,4.1267,1.453076 +L 4.1267,1.453076,4.1267,0.738445 +L 4.1267,0.738445,4.1267,0.015189 +L 4.1267,0.015189,3.2721,0.015189 +L 3.2721,0.015189,2.4277,0.015189 +L 2.4277,0.015189,1.5945,0.015189 +L 6.2594,0.015189,6.6657,0.015189 +L 6.6657,0.015189,7.086,0.015189 +L 7.086,0.015189,7.5133,0.015189 +L 7.5133,0.015189,7.5133,3.026465 +L 7.5133,3.026465,7.5133,6.029314 +L 7.5133,6.029314,7.5133,9.015198 +L 5.8356,2.646559,5.8356,4.427687 +L 5.8356,4.427687,5.8356,6.191762 +L 5.8356,6.191762,5.8356,7.947388 +L 0.7399,3.714325,1.44,3.714325 +L 1.44,3.714325,2.151,3.714325 +L 2.151,3.714325,2.876,3.714325 +L 2.876,3.714325,2.7258,4.90934 +L 2.7258,4.90934,2.2911,5.290647 +L 2.2911,5.290647,1.5945,5.316084 +L 3.2721,3.714325,3.8322,3.714325 +L 3.8322,3.714325,4.4034,3.714325 +L 4.4034,3.714325,4.981,3.714325 +L 3.2721,5.316084,2.2214,6.286394 +L 2.2214,6.286394,1.1983,6.646555 +L 1.1983,6.646555,0.7399,7.947388 +L 0.7399,7.947388,1.44,7.947388 +L 1.44,7.947388,2.151,7.947388 +L 2.151,7.947388,2.876,7.947388 +L 2.876,7.947388,2.876,8.317554 +L 2.876,8.317554,2.876,8.670513 +L 2.876,8.670513,2.876,9.015198 +L 3.2721,6.383893,4.2809,6.450221 +L 4.2809,6.450221,4.8234,6.864014 +L 4.8234,6.864014,4.981,7.947388 +L 4.981,7.947388,4.4034,7.947388 +L 4.4034,7.947388,3.8322,7.947388 +L 3.8322,7.947388,3.2721,7.947388 + +[誌] 60 +L 1.1968,0.015189,1.1968,0.738445 +L 1.1968,0.738445,1.1968,1.453076 +L 1.1968,1.453076,1.1968,2.150809 +L 1.1968,2.150809,1.5996,2.150809 +L 1.5996,2.150809,2.0203,2.150809 +L 2.0203,2.150809,2.4507,2.150809 +L 2.4507,2.150809,2.4507,1.453076 +L 2.4507,1.453076,2.4507,0.738445 +L 2.4507,0.738445,2.4507,0.015189 +L 2.4507,0.015189,2.0203,0.015189 +L 2.0203,0.015189,1.5996,0.015189 +L 1.5996,0.015189,1.1968,0.015189 +L 5.4387,0.015189,5.1375,0.488392 +L 5.1375,0.488392,5.025,1.308907 +L 5.025,1.308907,5.0114,3.180442 +L 5.8341,0.015189,6.2652,0.015189 +L 6.2652,0.015189,6.6925,0.015189 +L 6.6925,0.015189,7.1163,0.015189 +L 7.1163,0.015189,7.1163,0.385376 +L 7.1163,0.385376,7.1163,0.738445 +L 7.1163,0.738445,7.1163,1.082999 +L 3.3018,0.549159,3.603,0.964353 +L 3.603,0.964353,3.7155,1.379547 +L 3.7155,1.379547,3.7291,2.150809 +L 7.9709,1.883812,7.82,2.149386 +L 7.82,2.149386,7.6729,2.406378 +L 7.6729,2.406378,7.5436,2.646559 +L 6.2652,3.447395,6.1111,3.714325 +L 6.1111,3.714325,5.9675,3.981387 +L 5.9675,3.981387,5.8341,4.248317 +L 1.1968,3.714325,1.5996,3.714325 +L 1.5996,3.714325,2.0203,3.714325 +L 2.0203,3.714325,2.4507,3.714325 +L 1.1968,5.316084,1.5996,5.316084 +L 1.5996,5.316084,2.0203,5.316084 +L 2.0203,5.316084,2.4507,5.316084 +L 4.1603,5.316084,4.7102,5.316084 +L 4.7102,5.316084,5.2632,5.316084 +L 5.2632,5.316084,5.8341,5.316084 +L 5.8341,5.316084,5.8166,6.463005 +L 5.8166,6.463005,5.7189,7.01659 +L 5.7189,7.01659,5.4387,7.451704 +L 5.4387,7.451704,4.8604,7.451704 +L 4.8604,7.451704,4.2895,7.451704 +L 4.2895,7.451704,3.7291,7.451704 +L 6.2652,5.316084,6.6925,5.316084 +L 6.6925,5.316084,7.1163,5.316084 +L 7.1163,5.316084,7.5436,5.316084 +L 0.7695,6.917754,1.4704,6.917754 +L 1.4704,6.917754,2.1744,6.917754 +L 2.1744,6.917754,2.8745,6.917754 +L 6.2652,7.451704,5.9605,7.840103 +L 5.9605,7.840103,5.8516,8.245424 +L 5.8516,8.245424,5.8341,9.015198 +L 6.6925,7.451704,7.1163,7.451704 +L 7.1163,7.451704,7.5436,7.451704 +L 7.5436,7.451704,7.9709,7.451704 +L 1.1968,8.481292,1.5996,8.481292 +L 1.5996,8.481292,2.0203,8.481292 +L 2.0203,8.481292,2.4507,8.481292 + +[窓] 54 +L 0.768,0.015189,1.0486,0.738445 +L 1.0486,0.738445,1.3288,1.453076 +L 1.3288,1.453076,1.6261,2.150809 +L 3.3357,0.015189,3.0345,0.450149 +L 3.0345,0.450149,2.9259,1.003865 +L 2.9259,1.003865,2.9084,2.150809 +L 3.7595,0.015189,4.4596,0.015189 +L 4.4596,0.015189,5.1636,0.015189 +L 5.1636,0.015189,5.8645,0.015189 +L 5.8645,0.015189,5.8645,0.385376 +L 5.8645,0.385376,5.8645,0.738445 +L 5.8645,0.738445,5.8645,1.082999 +L 7.5733,0.816046,7.2795,1.272262 +L 7.2795,1.272262,6.9923,1.71992 +L 6.9923,1.71992,6.7222,2.150809 +L 4.5822,1.883812,4.4386,2.149386 +L 4.4386,2.149386,4.3125,2.406378 +L 4.3125,2.406378,4.1868,2.646559 +L 1.1988,3.714325,1.7592,3.817472 +L 1.7592,3.817472,2.3266,3.903589 +L 2.3266,3.903589,2.9084,3.981387 +L 2.9084,3.981387,3.1812,4.618352 +L 3.1812,4.618352,3.4649,5.238329 +L 3.4649,5.238329,3.7595,5.850032 +L 3.3357,3.714325,4.4176,3.832971 +L 4.4176,3.832971,5.7765,4.307596 +L 5.7765,4.307596,5.8645,5.316084 +L 1.8366,5.850032,2.3266,6.220001 +L 2.3266,6.220001,2.8243,6.573113 +L 2.8243,6.573113,3.3357,6.917754 +L 3.3357,6.917754,3.3357,7.260951 +L 3.3357,7.260951,3.3357,7.604192 +L 3.3357,7.604192,3.3357,7.947388 +L 3.3357,7.947388,2.4772,7.947388 +L 2.4772,7.947388,1.6261,7.947388 +L 1.6261,7.947388,0.768,7.947388 +L 0.768,7.947388,0.768,7.604192 +L 0.768,7.604192,0.768,7.260951 +L 0.768,7.260951,0.768,6.917754 +L 5.4407,6.383893,5.1395,6.79773 +L 5.1395,6.79773,5.027,7.203073 +L 5.027,7.203073,5.0134,7.947388 +L 5.0134,7.947388,4.5822,7.947388 +L 4.5822,7.947388,4.1689,7.947388 +L 4.1689,7.947388,3.7595,7.947388 +L 5.8645,6.383893,6.1408,6.383893 +L 6.1408,6.383893,6.4245,6.383893 +L 6.4245,6.383893,6.7222,6.383893 +L 7.5733,6.917754,7.5733,7.260951 +L 7.5733,7.260951,7.5733,7.604192 +L 7.5733,7.604192,7.5733,7.947388 +L 7.5733,7.947388,6.8483,7.947388 +L 6.8483,7.947388,6.1408,7.947388 +L 6.1408,7.947388,5.4407,7.947388 + +[忘] 36 +L 0.8019,0.282054,0.9312,0.919106 +L 0.9312,0.919106,1.0783,1.539324 +L 1.0783,1.539324,1.2257,2.150809 +L 3.3342,0.015189,3.033,0.468581 +L 3.033,0.468581,2.9205,1.150749 +L 2.9205,1.150749,2.9069,2.646559 +L 3.7615,0.015189,4.462,0.015189 +L 4.462,0.015189,5.173,0.015189 +L 5.173,0.015189,5.8976,0.015189 +L 5.8976,0.015189,5.8976,0.385376 +L 5.8976,0.385376,5.8976,0.738445 +L 5.8976,0.738445,5.8976,1.082999 +L 7.5718,0.816046,7.2779,1.272262 +L 7.2779,1.272262,6.9978,1.71992 +L 6.9978,1.71992,6.7176,2.150809 +L 4.6157,2.417652,4.462,2.683225 +L 4.462,2.683225,4.3219,2.940305 +L 4.3219,2.940305,4.1884,3.180442 +L 2.5076,4.782091,2.206,5.236972 +L 2.206,5.236972,2.1013,5.929013 +L 2.1013,5.929013,2.0835,7.451704 +L 2.0835,7.451704,1.6565,7.451704 +L 1.6565,7.451704,1.2257,7.451704 +L 1.2257,7.451704,0.8019,7.451704 +L 2.9069,4.782091,4.311,4.782091 +L 4.311,4.782091,5.7229,4.782091 +L 5.7229,4.782091,7.148,4.782091 +L 2.5076,7.451704,3.0606,7.451704 +L 3.0606,7.451704,3.6214,7.451704 +L 3.6214,7.451704,4.1884,7.451704 +L 4.1884,7.451704,4.1884,7.984033 +L 4.1884,7.984033,4.1884,8.508196 +L 4.1884,8.508196,4.1884,9.015198 +L 4.6157,7.451704,5.5929,7.451704 +L 5.5929,7.451704,6.5771,7.451704 +L 6.5771,7.451704,7.5718,7.451704 + +[呼] 39 +L 4.2188,0.015189,4.6251,0.015189 +L 4.6251,0.015189,5.045,0.015189 +L 5.045,0.015189,5.4723,0.015189 +L 5.4723,0.015189,5.4552,2.638197 +L 5.4552,2.638197,5.3536,3.735515 +L 5.3536,3.735515,5.0734,4.248317 +L 5.0734,4.248317,4.3484,4.248317 +L 4.3484,4.248317,3.6409,4.248317 +L 3.6409,4.248317,2.9401,4.248317 +L 0.8316,3.180442,0.8316,4.780821 +L 0.8316,4.780821,0.8316,6.372576 +L 0.8316,6.372576,0.8316,7.947388 +L 0.8316,7.947388,1.2379,7.947388 +L 1.2379,7.947388,1.6582,7.947388 +L 1.6582,7.947388,2.0823,7.947388 +L 2.0823,7.947388,2.0823,6.372576 +L 2.0823,6.372576,2.0823,4.780821 +L 2.0823,4.780821,2.0823,3.180442 +L 2.0823,3.180442,1.6582,3.180442 +L 1.6582,3.180442,1.2379,3.180442 +L 1.2379,3.180442,0.8316,3.180442 +L 5.8961,4.248317,5.5914,4.741244 +L 5.5914,4.741244,5.4863,5.700237 +L 5.4863,5.700237,5.4723,7.947388 +L 5.4723,7.947388,4.7687,7.947388 +L 4.7687,7.947388,4.0679,7.947388 +L 4.0679,7.947388,3.3639,7.947388 +L 6.3234,4.248317,6.8807,4.248317 +L 6.8807,4.248317,7.4547,4.248317 +L 7.4547,4.248317,8.0295,4.248317 +L 4.2188,5.583058,4.0679,6.03923 +L 4.0679,6.03923,3.9211,6.486843 +L 3.9211,6.486843,3.7912,6.917754 +L 6.7511,5.583058,6.8807,6.03923 +L 6.8807,6.03923,7.0239,6.486843 +L 7.0239,6.486843,7.1784,6.917754 +L 5.8961,8.481292,6.4534,8.670513 +L 6.4534,8.670513,7.0239,8.851437 +L 7.0239,8.851437,7.6057,9.015198 + +[並] 36 +L 0.8301,0.549159,1.6885,0.549159 +L 1.6885,0.549159,2.5396,0.549159 +L 2.5396,0.549159,3.3977,0.549159 +L 3.3977,0.549159,3.3977,2.683225 +L 3.3977,2.683225,3.3977,4.80906 +L 3.3977,4.80906,3.3977,6.917754 +L 3.3977,6.917754,2.6724,6.917754 +L 2.6724,6.917754,1.9617,6.917754 +L 1.9617,6.917754,1.2574,6.917754 +L 3.7932,0.549159,4.2208,0.549159 +L 4.2208,0.549159,4.6446,0.549159 +L 4.6446,0.549159,5.0719,0.549159 +L 5.0719,0.549159,5.0719,2.683225 +L 5.0719,2.683225,5.0719,4.80906 +L 5.0719,4.80906,5.0719,6.917754 +L 5.0719,6.917754,4.6446,6.917754 +L 4.6446,6.917754,4.2208,6.917754 +L 4.2208,6.917754,3.7932,6.917754 +L 5.5027,0.549159,6.2032,0.549159 +L 6.2032,0.549159,6.9103,0.549159 +L 6.9103,0.549159,7.6353,0.549159 +L 2.1158,2.646559,1.9617,3.36964 +L 1.9617,3.36964,1.8181,4.084491 +L 1.8181,4.084491,1.6885,4.782091 +L 6.3538,2.913467,6.483,3.55052 +L 6.483,3.55052,6.6305,4.170563 +L 6.6305,4.170563,6.7807,4.782091 +L 5.5027,6.917754,5.6284,7.630941 +L 5.6284,7.630941,5.772,8.32736 +L 5.772,8.32736,5.9297,9.015198 +L 5.9297,6.917754,6.3538,6.917754 +L 6.3538,6.917754,6.7807,6.917754 +L 6.7807,6.917754,7.208,6.917754 +L 3.3977,8.21434,3.2468,8.481292 +L 3.2468,8.481292,3.0997,8.748223 +L 3.0997,8.748223,2.9669,9.015198 + +[簡] 63 +L 1.2878,0.015189,1.1403,3.484039 +L 1.1403,3.484039,1.0773,6.309006 +L 1.0773,6.309006,1.7151,9.015198 +L 6.7827,0.015189,7.0563,0.015189 +L 7.0563,0.015189,7.3435,0.015189 +L 7.3435,0.015189,7.6338,0.015189 +L 7.6338,0.015189,7.6338,1.426239 +L 7.6338,1.426239,7.6338,2.837224 +L 7.6338,2.837224,7.6338,4.248317 +L 7.6338,4.248317,6.7827,4.248317 +L 6.7827,4.248317,5.9387,4.248317 +L 5.9387,4.248317,5.1016,4.248317 +L 5.1016,4.248317,5.1016,4.971486 +L 5.1016,4.971486,5.1016,5.68614 +L 5.1016,5.68614,5.1016,6.383893 +L 5.1016,6.383893,5.6515,6.486843 +L 5.6515,6.486843,6.2122,6.573113 +L 6.2122,6.573113,6.7827,6.650802 +L 6.7827,6.650802,6.6325,7.020967 +L 6.6325,7.020967,6.485,7.374058 +L 6.485,7.374058,6.3523,7.718612 +L 6.3523,7.718612,5.7849,7.718612 +L 5.7849,7.718612,5.2315,7.718612 +L 5.2315,7.718612,4.6778,7.718612 +L 4.6778,7.718612,4.0372,6.65785 +L 4.0372,6.65785,3.8337,5.766652 +L 3.8337,5.766652,3.82,4.248317 +L 3.82,4.248317,3.1192,4.248317 +L 3.1192,4.248317,2.419,4.248317 +L 2.419,4.248317,1.7151,4.248317 +L 2.9689,1.082999,2.9689,1.796295 +L 2.9689,1.796295,2.9689,2.492626 +L 2.9689,2.492626,2.9689,3.180442 +L 2.9689,3.180442,3.9528,3.180442 +L 3.9528,3.180442,4.9513,3.180442 +L 4.9513,3.180442,5.96,3.180442 +L 5.96,3.180442,5.96,2.492626 +L 5.96,2.492626,5.96,1.796295 +L 5.96,1.796295,5.96,1.082999 +L 5.96,1.082999,4.9513,1.082999 +L 4.9513,1.082999,3.9528,1.082999 +L 3.9528,1.082999,2.9689,1.082999 +L 3.3962,2.150809,4.0964,2.150809 +L 4.0964,2.150809,4.8112,2.150809 +L 4.8112,2.150809,5.5289,2.150809 +L 7.6338,5.049087,6.9337,5.152191 +L 6.9337,5.152191,6.2297,5.238329 +L 6.2297,5.238329,5.5289,5.316084 +L 1.7151,5.316084,2.2681,5.316084 +L 2.2681,5.316084,2.8253,5.316084 +L 2.8253,5.316084,3.3962,5.316084 +L 1.7151,6.383893,2.1213,6.486843 +L 2.1213,6.486843,2.5416,6.573113 +L 2.5416,6.573113,2.9689,6.650802 +L 2.9689,6.650802,2.6919,7.097124 +L 2.6919,7.097124,2.419,7.526524 +L 2.419,7.526524,2.1455,7.947388 +L 2.9689,7.947388,3.2418,7.947388 +L 3.2418,7.947388,3.529,7.947388 +L 3.529,7.947388,3.82,7.947388 +L 6.7827,7.947388,7.21,7.947388 +L 7.21,7.947388,7.6338,7.947388 +L 7.6338,7.947388,8.0611,7.947388 + +[訪] 26 +L 3.8252,0.015189,4.96,2.37258 +L 4.96,2.37258,5.4156,4.458706 +L 5.4156,4.458706,5.4997,6.917754 +L 5.4997,6.917754,5.0759,6.917754 +L 5.0759,6.917754,4.6553,6.917754 +L 4.6553,6.917754,4.2493,6.917754 +L 5.927,0.015189,7.384,0.86125 +L 7.384,0.86125,7.6989,2.766584 +L 7.6989,2.766584,7.6358,4.782091 +L 7.6358,4.782091,7.0583,4.782091 +L 7.0583,4.782091,6.4874,4.782091 +L 6.4874,4.782091,5.927,4.782091 +L 5.927,6.917754,5.927,7.630941 +L 5.927,7.630941,5.927,8.32736 +L 5.927,8.32736,5.927,9.015198 +L 6.3575,6.917754,6.9108,6.917754 +L 6.9108,6.917754,7.4856,6.917754 +L 7.4856,6.917754,8.0631,6.917754 +L 0.8341,6.917689,3.3629,6.917689 +L 1.2579,8.519469,2.9391,8.519469 +L 1.2579,5.316149,2.9391,5.316149 +L 1.2579,4.24823,2.9391,4.24823 +L 1.2579,2.684714,2.9391,2.684714 +L 1.2579,0.015189,1.2579,2.684714 +L 2.9391,0.015189,1.2579,0.015189 +L 2.9391,2.684714,2.9391,0.015189 + +[論] 38 +L 4.2478,0.015189,4.2478,1.615437 +L 4.2478,1.615437,4.2478,3.207301 +L 4.2478,3.207301,4.2478,4.782091 +L 4.2478,4.782091,5.3791,4.782091 +L 5.3791,4.782091,6.5104,4.782091 +L 6.5104,4.782091,7.6378,4.782091 +L 7.6378,4.782091,7.6378,3.207301 +L 7.6378,3.207301,7.6378,1.615437 +L 7.6378,1.615437,7.6378,0.015189 +L 5.5294,0.015189,5.5294,0.738445 +L 5.5294,0.738445,5.5294,1.453076 +L 5.5294,1.453076,5.5294,2.150809 +L 5.5294,2.150809,5.2355,2.3302 +L 5.2355,2.3302,4.9518,2.492626 +L 4.9518,2.492626,4.6748,2.646559 +L 6.384,0.015189,6.1637,1.807612 +L 6.1637,1.807612,5.7535,3.040672 +L 5.7535,3.040672,5.5294,4.248317 +L 6.8151,2.646559,6.5104,3.061796 +L 6.5104,3.061796,6.4015,3.476968 +L 6.4015,3.476968,6.384,4.248317 +L 5.1056,6.383893,5.6593,6.383893 +L 5.6593,6.383893,6.2334,6.383893 +L 6.2334,6.383893,6.8151,6.383893 +L 8.0616,6.383893,7.3615,7.260951 +L 7.3615,7.260951,6.6607,8.138227 +L 6.6607,8.138227,5.9567,9.015198 +L 5.9567,9.015198,5.3791,8.32736 +L 5.3791,8.32736,4.8082,7.630941 +L 4.8082,7.630941,4.2478,6.917754 +L 0.8645,6.917689,3.3967,6.917689 +L 1.2918,8.519469,2.9694,8.519469 +L 1.2918,5.316149,2.9694,5.316149 +L 1.2918,4.24823,2.9694,4.24823 +L 1.2918,2.684714,2.9694,2.684714 +L 1.2918,0.015189,1.2918,2.684714 +L 2.9694,0.015189,1.2918,0.015189 +L 2.9694,2.684714,2.9694,0.015189 + +[異] 54 +L 0.8595,0.015189,1.5631,0.385376 +L 1.5631,0.385376,2.2639,0.738445 +L 2.2639,0.738445,2.9644,1.082999 +L 6.7852,0.015189,6.3548,0.385376 +L 6.3548,0.385376,5.9342,0.738445 +L 5.9342,0.738445,5.5314,1.082999 +L 0.8595,2.150809,1.5631,2.150809 +L 1.5631,2.150809,2.2639,2.150809 +L 2.2639,2.150809,2.9644,2.150809 +L 2.9644,2.150809,2.7364,3.437544 +L 2.7364,3.437544,2.1305,3.7497 +L 2.1305,3.7497,1.2903,3.714325 +L 3.3952,2.150809,4.0954,2.150809 +L 4.0954,2.150809,4.8102,2.150809 +L 4.8102,2.150809,5.5314,2.150809 +L 5.5314,2.150809,4.8659,3.767956 +L 4.8659,3.767956,3.6334,3.851446 +L 3.6334,3.851446,2.9644,5.316084 +L 2.9644,5.316084,2.5406,5.316084 +L 2.5406,5.316084,2.1203,5.316084 +L 2.1203,5.316084,1.7176,5.316084 +L 1.7176,5.316084,1.7176,6.382426 +L 1.7176,6.382426,1.7176,7.440276 +L 1.7176,7.440276,1.7176,8.481292 +L 1.7176,8.481292,3.3952,8.481292 +L 3.3952,8.481292,5.0831,8.481292 +L 5.0831,8.481292,6.7852,8.481292 +L 6.7852,8.481292,6.7852,7.440276 +L 6.7852,7.440276,6.7852,6.382426 +L 6.7852,6.382426,6.7852,5.316084 +L 6.7852,5.316084,6.3548,5.316084 +L 6.3548,5.316084,5.9342,5.316084 +L 5.9342,5.316084,5.5314,5.316084 +L 5.5314,5.316084,5.5454,4.544888 +L 5.5454,4.544888,5.6505,4.129585 +L 5.6505,4.129585,5.9275,3.714325 +L 5.9275,3.714325,6.3548,3.714325 +L 6.3548,3.714325,6.7852,3.714325 +L 6.7852,3.714325,7.2055,3.714325 +L 5.9275,2.150809,6.4879,2.150809 +L 6.4879,2.150809,7.0553,2.150809 +L 7.0553,2.150809,7.6363,2.150809 +L 3.3952,5.316084,3.6716,5.316084 +L 3.6716,5.316084,3.9553,5.316084 +L 3.9553,5.316084,4.2495,5.316084 +L 4.2495,5.316084,3.9062,6.765201 +L 3.9062,6.765201,3.087,7.019436 +L 3.087,7.019436,2.113,6.917754 +L 4.6736,6.917754,4.523,7.260951 +L 4.523,7.260951,4.3791,7.604192 +L 4.3791,7.604192,4.2495,7.947388 +L 5.1041,6.917754,5.5104,6.917754 +L 5.5104,6.917754,5.9275,6.917754 +L 5.9275,6.917754,6.3548,6.917754 + +[遺] 54 +L 4.0662,1.082999,4.2585,1.349951 +L 4.2585,1.349951,4.469,1.616969 +L 4.469,1.616969,4.6788,1.883812 +L 4.6788,1.883812,4.4024,1.986981 +L 4.4024,1.986981,4.1289,2.073142 +L 4.1289,2.073142,3.8522,2.150809 +L 3.8522,2.150809,3.8522,3.217152 +L 3.8522,3.217152,3.8522,4.275067 +L 3.8522,4.275067,3.8522,5.316084 +L 3.8522,5.316084,4.98,5.316084 +L 4.98,5.316084,6.1116,5.316084 +L 6.1116,5.316084,7.2429,5.316084 +L 7.2429,5.316084,7.0885,4.171964 +L 7.0885,4.171964,6.9449,3.027867 +L 6.9449,3.027867,6.8121,1.883812 +L 6.8121,1.883812,7.0885,1.616969 +L 7.0885,1.616969,7.3687,1.349951 +L 7.3687,1.349951,7.6632,1.082999 +L 5.1026,2.150809,5.5334,2.150809 +L 5.5334,2.150809,5.9537,2.150809 +L 5.9537,2.150809,6.3845,2.150809 +L 4.2798,3.180442,5.1134,3.180442 +L 5.1134,3.180442,5.961,3.180442 +L 5.961,3.180442,6.8121,3.180442 +L 4.2798,4.248317,5.1134,4.248317 +L 5.1134,4.248317,5.961,4.248317 +L 5.961,4.248317,6.8121,4.248317 +L 2.9976,6.383893,3.8312,6.486843 +L 3.8312,6.486843,4.6788,6.573113 +L 4.6788,6.573113,5.5334,6.650802 +L 5.5334,6.650802,5.1831,7.21439 +L 5.1831,7.21439,4.7492,7.421998 +L 4.7492,7.421998,3.8522,7.451704 +L 3.8522,7.451704,3.8522,7.794834 +L 3.8522,7.794834,3.8522,8.138227 +L 3.8522,8.138227,3.8522,8.481292 +L 3.8522,8.481292,4.98,8.481292 +L 4.98,8.481292,6.1116,8.481292 +L 6.1116,8.481292,7.2429,8.481292 +L 7.2429,8.481292,7.2429,8.138227 +L 7.2429,8.138227,7.2429,7.794834 +L 7.2429,7.794834,7.2429,7.451704 +L 7.2429,7.451704,6.3214,7.46996 +L 6.3214,7.46996,5.8766,7.5985 +L 5.8766,7.5985,5.5334,7.947388 +L 5.9537,6.383893,6.6612,6.383893 +L 6.6612,6.383893,7.3687,6.383893 +L 7.3687,6.383893,8.094,6.383893 +L 5.9502,-0.000003,8.0762,-0.000003 +L 2.129,1.067654,1.0783,0.015189 +L 0.879,4.766921,2.129,4.766921 +L 2.129,1.067654,2.129,4.766921 +L 1.3063,8.504299,2.129,7.436446 +A 5.9502,7.363004,7.362973,238.75988,270 + + +# kan_18 ------------------------------------------------------- +# 域宇延沿我灰拡閣革株巻干看危揮机貴疑吸供胸郷勤筋敬系警劇激穴憲権絹厳源己誤后孝皇紅鋼刻骨砂裁策冊蚕姿 + +[域] 54 +L 3.6036,-0.000003,4.3671,0.636962 +L 4.3671,0.636962,5.1376,1.257005 +L 5.1376,1.257005,5.9187,1.868533 +L 5.9187,1.868533,5.3061,4.105812 +L 5.3061,4.105812,4.98,5.885517 +L 4.98,5.885517,4.6718,6.902606 +L 4.6718,6.902606,3.9468,6.902606 +L 3.9468,6.902606,3.2358,6.902606 +L 3.2358,6.902606,2.5353,6.902606 +L 6.7768,-0.000003,6.6262,0.370096 +L 6.6262,0.370096,6.4794,0.723122 +L 6.4794,0.723122,6.3498,1.067697 +L 7.2041,-0.000003,7.2041,0.533924 +L 7.2041,0.533924,7.2041,1.067697 +L 7.2041,1.067697,7.2041,1.60169 +L 1.6846,1.067697,2.5353,1.437841 +L 2.5353,1.437841,3.3938,1.790954 +L 3.3938,1.790954,4.2449,2.135551 +L 0.0034,1.60169,0.2797,1.60169 +L 0.2797,1.60169,0.5634,1.60169 +L 0.5634,1.60169,0.8615,1.60169 +L 0.8615,1.60169,0.8615,3.012718 +L 0.8615,3.012718,0.8615,4.423747 +L 0.8615,4.423747,0.8615,5.834731 +L 0.8615,5.834731,0.5634,6.023951 +L 0.5634,6.023951,0.2797,6.204808 +L 0.2797,6.204808,0.0034,6.368614 +L 6.3498,2.669478,6.9519,3.809307 +L 6.9519,3.809307,7.1726,4.491519 +L 7.1726,4.491519,7.2041,5.300804 +L 2.5353,3.203295,2.5353,3.916635 +L 2.5353,3.916635,2.5353,4.612967 +L 2.5353,4.612967,2.5353,5.300804 +L 2.5353,5.300804,2.9626,5.300804 +L 2.9626,5.300804,3.3938,5.300804 +L 3.3938,5.300804,3.8176,5.300804 +L 3.8176,5.300804,3.8176,4.612967 +L 3.8176,4.612967,3.8176,3.916635 +L 3.8176,3.916635,3.8176,3.203295 +L 3.8176,3.203295,3.3938,3.203295 +L 3.3938,3.203295,2.9626,3.203295 +L 2.9626,3.203295,2.5353,3.203295 +L 1.2534,6.368614,0.9736,6.821984 +L 0.9736,6.821984,0.872,7.504174 +L 0.872,7.504174,0.8615,9.000006 +L 5.4988,6.902606,5.194,7.3361 +L 5.194,7.3361,5.0855,7.879922 +L 5.0855,7.879922,5.0676,9.000006 +L 5.9187,6.902606,6.3498,6.902606 +L 6.3498,6.902606,6.7768,6.902606 +L 6.7768,6.902606,7.2041,6.902606 +L 7.2041,7.970264,6.9067,8.313459 +L 6.9067,8.313459,6.6262,8.65681 +L 6.6262,8.65681,6.3498,9.000006 + +[宇] 8 +L 3.4199,7.932174,3.4199,9.000006 +L 0.0296,6.368833,0.0296,7.932174 +L 0.0296,7.932174,6.8068,7.932174 +L 6.8068,6.368833,6.8068,7.932174 +L 1.2835,5.834731,5.5249,5.834731 +L 6.8068,3.737266,0.0019,3.737266 +L 3.4199,5.834731,3.4199,-0.000003 +L 3.4199,-0.000003,2.1416,-0.000003 + +[延] 12 +L 0.0351,8.504234,1.7408,8.504234 +L 1.7408,5.300804,0.0351,5.300804 +L 0.0351,5.300804,1.7408,8.504234 +L 5.1035,-0.000003,7.2361,-0.000003 +L 5.1245,5.300804,6.8057,5.300804 +L 3.4184,2.135551,3.4184,6.368614 +L 2.5673,2.135551,7.2361,2.135551 +L 5.1245,2.135551,5.1245,8.135491 +A 2.8269,3.421432,2.811613,173.55015,240.00015 +A 5.1035,7.363004,7.362973,239.99993,270 +A -7.3337,5.300804,9.077544,324.27137,0 +A 2.9946,21.855317,13.885041,270,285.94128 + +[沿] 27 +L 0.0616,0.266906,0.4714,1.437841 +L 0.4714,1.437841,0.892,2.591702 +L 0.892,2.591702,1.3155,3.737266 +L 3.0247,-0.000003,3.0247,1.257005 +L 3.0247,1.257005,3.0247,2.505629 +L 3.0247,2.505629,3.0247,3.737266 +L 3.0247,3.737266,4.1528,3.737266 +L 4.1528,3.737266,5.2837,3.737266 +L 5.2837,3.737266,6.4084,3.737266 +L 6.4084,3.737266,6.4084,2.505629 +L 6.4084,2.505629,6.4084,1.257005 +L 6.4084,1.257005,6.4084,-0.000003 +L 6.4084,-0.000003,5.2837,-0.000003 +L 5.2837,-0.000003,4.1528,-0.000003 +L 4.1528,-0.000003,3.0247,-0.000003 +L 2.1736,4.766921,2.9196,6.032422 +L 2.9196,6.032422,3.3294,7.111572 +L 3.3294,7.111572,3.452,8.504234 +L 7.2626,4.766921,6.345,6.52537 +L 6.345,6.52537,5.904,7.622864 +L 5.904,7.622864,5.5569,9.000006 +L 0.8882,5.834731,0.615,6.204808 +L 0.615,6.204808,0.3418,6.557921 +L 0.3418,6.557921,0.0616,6.902606 +L 1.3155,7.970264,1.0423,8.313459 +L 1.0423,8.313459,0.7624,8.65681 +L 0.7624,8.65681,0.4924,9.000006 + +[我] 48 +L 0.9217,-0.000003,1.3455,-0.000003 +L 1.3455,-0.000003,1.7731,-0.000003 +L 1.7731,-0.000003,2.2004,-0.000003 +L 2.2004,-0.000003,2.2004,1.067697 +L 2.2004,1.067697,2.2004,2.135551 +L 2.2004,2.135551,2.2004,3.203295 +L 2.2004,3.203295,1.6957,3.559232 +L 1.6957,3.559232,1.1388,3.559232 +L 1.1388,3.559232,0.0639,3.203295 +L 6.8657,-0.000003,6.2283,0.723122 +L 6.2283,0.723122,5.587,1.437841 +L 5.587,1.437841,4.946,2.135551 +L 4.946,2.135551,4.4382,1.60169 +L 4.4382,1.60169,3.9412,1.067697 +L 3.9412,1.067697,3.447,0.533924 +L 7.2615,-0.000003,7.2615,0.533924 +L 7.2615,0.533924,7.2615,1.067697 +L 7.2615,1.067697,7.2615,1.60169 +L 5.1565,2.669478,4.7359,3.735865 +L 4.7359,3.735865,4.3054,4.79378 +L 4.3054,4.79378,3.8781,5.834731 +L 3.8781,5.834731,2.7079,5.655209 +L 2.7079,5.655209,2.0495,5.009773 +L 2.0495,5.009773,2.6309,3.737266 +L 2.6309,3.737266,2.9006,3.916635 +L 2.9006,3.916635,3.1773,4.07904 +L 3.1773,4.07904,3.447,4.232994 +L 5.587,3.203295,5.864,3.735865 +L 5.864,3.735865,6.1438,4.25981 +L 6.1438,4.25981,6.4419,4.766921 +L 0.0639,5.834731,1.4576,5.896878 +L 1.4576,5.896878,2.0673,6.433518 +L 2.0673,6.433518,2.2004,7.970264 +L 2.2004,7.970264,1.6225,7.970264 +L 1.6225,7.970264,1.0513,7.970264 +L 1.0513,7.970264,0.4909,7.970264 +L 4.7359,5.834731,4.4312,6.307869 +L 4.4312,6.307869,4.3226,7.128449 +L 4.3226,7.128449,4.3054,9.000006 +L 5.1565,5.834731,5.8602,5.834731 +L 5.8602,5.834731,6.561,5.834731 +L 6.561,5.834731,7.2615,5.834731 +L 6.8657,7.436424,6.5715,7.806393 +L 6.5715,7.806393,6.2878,8.159615 +L 6.2878,8.159615,6.0146,8.504234 +L 2.2004,8.504234,2.6064,8.683515 +L 2.6064,8.683515,3.0267,8.846029 +L 3.0267,8.846029,3.447,9.000006 + +[灰] 18 +L 0.094,0.266906,0.8046,3.131364 +L 0.8046,3.131364,0.9766,5.690561 +L 0.9766,5.690561,0.9482,8.504234 +L 0.9482,8.504234,3.0532,8.504234 +L 3.0532,8.504234,5.1655,8.504234 +L 5.1655,8.504234,7.2947,8.504234 +L 1.5615,-0.000003,3.2322,2.478813 +L 3.2322,2.478813,4.0899,4.652566 +L 4.0899,4.652566,4.3354,7.436424 +L 6.8674,-0.000003,6.1672,1.410982 +L 6.1672,1.410982,5.4629,2.821944 +L 5.4629,2.821944,4.7624,4.232994 +L 1.7751,3.737266,2.3737,4.50137 +L 2.3737,4.50137,2.5947,5.045147 +L 2.5947,5.045147,2.6294,5.834731 +L 5.5855,4.232994,5.8625,4.766921 +L 5.8625,4.766921,6.1462,5.300804 +L 6.1462,5.300804,6.4404,5.834731 + +[拡] 42 +L 0.5229,-0.000003,0.7961,-0.000003 +L 0.7961,-0.000003,1.0833,-0.000003 +L 1.0833,-0.000003,1.3775,-0.000003 +L 1.3775,-0.000003,1.3603,2.648266 +L 1.3603,2.648266,1.2514,3.74565 +L 1.2514,3.74565,0.9467,4.232994 +L 0.9467,4.232994,0.6735,4.07904 +L 0.6735,4.07904,0.4003,3.916635 +L 0.4003,3.916635,0.1271,3.737266 +L 2.2321,0.266906,2.8874,2.761242 +L 2.8874,2.761242,3.0801,4.967436 +L 3.0801,4.967436,3.0867,7.436424 +L 3.0867,7.436424,3.7875,7.436424 +L 3.7875,7.436424,4.488,7.436424 +L 4.488,7.436424,5.1882,7.436424 +L 5.1882,7.436424,5.1882,7.968841 +L 5.1882,7.968841,5.1882,8.492938 +L 5.1882,8.492938,5.1882,9.000006 +L 3.5105,-0.000003,3.7875,-0.000003 +L 3.7875,-0.000003,4.0639,-0.000003 +L 4.0639,-0.000003,4.3371,-0.000003 +L 4.3371,-0.000003,4.5581,2.071982 +L 4.5581,2.071982,4.9675,3.991544 +L 4.9675,3.991544,5.1882,5.834731 +L 4.9745,-0.000003,5.6193,0.636962 +L 5.6193,0.636962,6.2599,1.257005 +L 6.2599,1.257005,6.8977,1.868533 +L 6.8977,1.868533,6.7468,2.135551 +L 6.7468,2.135551,6.6035,2.402482 +L 6.6035,2.402482,6.4736,2.669478 +L 7.3247,-0.000003,7.3247,0.370096 +L 7.3247,0.370096,7.3247,0.723122 +L 7.3247,0.723122,7.3247,1.067697 +L 1.8052,4.232994,1.2935,5.484464 +L 1.2935,5.484464,1.0833,6.490149 +L 1.0833,6.490149,0.1271,6.902606 +L 1.8052,6.902606,1.5036,7.3361 +L 1.5036,7.3361,1.3915,7.879922 +L 1.3915,7.879922,1.3775,9.000006 +L 5.6193,7.436424,6.1762,7.436424 +L 6.1762,7.436424,6.7468,7.436424 +L 6.7468,7.436424,7.3247,7.436424 + +[閣] 60 +L 0.126,-0.000003,0.126,2.848825 +L 0.126,2.848825,0.126,5.680754 +L 0.126,5.680754,0.126,8.504234 +L 0.126,8.504234,0.9561,8.504234 +L 0.9561,8.504234,1.8068,8.504234 +L 1.8068,8.504234,2.6579,8.504234 +L 2.6579,8.504234,2.6758,6.740114 +L 2.6758,6.740114,3.0677,5.7811 +L 3.0677,5.7811,4.3675,5.033918 +L 4.3675,5.033918,4.0694,4.612967 +L 4.0694,4.612967,3.7857,4.183522 +L 3.7857,4.183522,3.5164,3.737266 +L 3.5164,3.737266,4.4442,2.985815 +L 4.4442,2.985815,5.001,2.709034 +L 5.001,2.709034,5.6455,2.669478 +L 6.0766,-0.000003,6.346,-0.000003 +L 6.346,-0.000003,6.6262,-0.000003 +L 6.6262,-0.000003,6.8994,-0.000003 +L 6.8994,-0.000003,6.8994,2.134172 +L 6.8994,2.134172,6.8994,4.25981 +L 6.8994,4.25981,6.8994,6.368614 +L 6.8994,6.368614,6.0483,6.368614 +L 6.0483,6.368614,5.1972,6.368614 +L 5.1972,6.368614,4.3675,6.368614 +L 4.3675,6.368614,4.3675,7.09176 +L 4.3675,7.09176,4.3675,7.806393 +L 4.3675,7.806393,4.3675,8.504234 +L 4.3675,8.504234,5.1972,8.504234 +L 5.1972,8.504234,6.0483,8.504234 +L 6.0483,8.504234,6.8994,8.504234 +L 6.8994,8.504234,6.8994,7.970264 +L 6.8994,7.970264,6.8994,7.436424 +L 6.8994,7.436424,6.8994,6.902606 +L 2.2621,0.533924,2.2621,1.257005 +L 2.2621,1.257005,2.2621,1.971658 +L 2.2621,1.971658,2.2621,2.669478 +L 2.2621,2.669478,1.9644,2.669478 +L 1.9644,2.669478,1.6807,2.669478 +L 1.6807,2.669478,1.4114,2.669478 +L 2.6579,0.533924,3.3622,0.533924 +L 3.3622,0.533924,4.0694,0.533924 +L 4.0694,0.533924,4.7944,0.533924 +L 4.7944,0.533924,4.7944,1.067697 +L 4.7944,1.067697,4.7944,1.60169 +L 4.7944,1.60169,4.7944,2.135551 +L 4.7944,2.135551,4.0694,2.135551 +L 4.0694,2.135551,3.3622,2.135551 +L 3.3622,2.135551,2.6579,2.135551 +L 1.6215,4.232994,1.9578,4.60316 +L 1.9578,4.60316,2.301,4.956141 +L 2.301,4.956141,2.6579,5.300804 +L 0.5529,6.368614,1.1098,6.368614 +L 1.1098,6.368614,1.6807,6.368614 +L 1.6807,6.368614,2.2621,6.368614 +L 0.5529,7.436424,1.1098,7.436424 +L 1.1098,7.436424,1.6807,7.436424 +L 1.6807,7.436424,2.2621,7.436424 +L 4.7944,7.436424,5.3513,7.436424 +L 5.3513,7.436424,5.926,7.436424 +L 5.926,7.436424,6.5004,7.436424 + +[革] 51 +L 3.5425,-0.000003,2.958,1.584725 +L 2.958,1.584725,1.6162,1.771012 +L 1.6162,1.771012,0.1592,1.60169 +L 3.9733,1.60169,3.676,2.135551 +L 3.676,2.135551,3.3923,2.669478 +L 3.3923,2.669478,3.1152,3.203295 +L 3.1152,3.203295,2.4147,3.203295 +L 2.4147,3.203295,1.7107,3.203295 +L 1.7107,3.203295,1.0103,3.203295 +L 1.0103,3.203295,1.0103,3.735865 +L 1.0103,3.735865,1.0103,4.25981 +L 1.0103,4.25981,1.0103,4.766921 +L 1.0103,4.766921,2.3205,4.75 +L 2.3205,4.75,3.2101,5.08884 +L 3.2101,5.08884,3.5425,6.368614 +L 3.5425,6.368614,3.1152,6.368614 +L 3.1152,6.368614,2.6848,6.368614 +L 2.6848,6.368614,2.2641,6.368614 +L 2.2641,6.368614,1.9458,7.81771 +L 1.9458,7.81771,1.1644,8.072009 +L 1.1644,8.072009,0.1592,7.970264 +L 4.3936,1.60169,5.2346,1.60169 +L 5.2346,1.60169,6.0751,1.60169 +L 6.0751,1.60169,6.9294,1.60169 +L 3.9733,3.203295,3.6865,3.795188 +L 3.6865,3.795188,3.6865,4.200509 +L 3.6865,4.200509,3.9733,4.766921 +L 3.9733,4.766921,4.6738,4.766921 +L 4.6738,4.766921,5.3743,4.766921 +L 5.3743,4.766921,6.0751,4.766921 +L 6.0751,4.766921,6.0751,4.25981 +L 6.0751,4.25981,6.0751,3.735865 +L 6.0751,3.735865,6.0751,3.203295 +L 6.0751,3.203295,5.3743,3.203295 +L 5.3743,3.203295,4.6738,3.203295 +L 4.6738,3.203295,3.9733,3.203295 +L 3.9733,6.368614,4.2434,6.368614 +L 4.2434,6.368614,4.5302,6.368614 +L 4.5302,6.368614,4.8244,6.368614 +L 4.8244,6.368614,4.4812,7.81771 +L 4.4812,7.81771,3.6616,8.072009 +L 3.6616,8.072009,2.6848,7.970264 +L 2.6848,7.970264,2.5373,8.313459 +L 2.5373,8.313459,2.3937,8.65681 +L 2.3937,8.65681,2.2641,9.000006 +L 5.2202,7.970264,5.0766,8.313459 +L 5.0766,8.313459,4.947,8.65681 +L 4.947,8.65681,4.8244,9.000006 +L 5.6475,7.970264,6.0751,7.970264 +L 6.0751,7.970264,6.5056,7.970264 +L 6.5056,7.970264,6.9294,7.970264 + +[株] 45 +L 1.436,-0.000003,1.3555,1.600201 +L 1.3555,1.600201,1.2854,3.192022 +L 1.2854,3.192022,1.2259,4.766921 +L 1.2259,4.766921,0.862,4.07904 +L 0.862,4.07904,0.5012,3.382686 +L 0.5012,3.382686,0.1577,2.669478 +L 5.2537,-0.000003,5.2366,2.273986 +L 5.2366,2.273986,5.1276,3.242895 +L 5.1276,3.242895,4.8229,3.737266 +L 4.8229,3.737266,4.2559,2.858807 +L 4.2559,2.858807,3.6951,1.971658 +L 3.6951,1.971658,3.1421,1.067697 +L 7.3867,1.067697,6.5325,2.314855 +L 6.5325,2.314855,5.6775,3.545113 +L 5.6775,3.545113,4.8229,4.766921 +L 4.8229,4.766921,3.6286,4.747154 +L 3.6286,4.747154,3.0822,4.608807 +L 3.0822,4.608807,2.7214,4.232994 +L 2.7214,4.232994,1.9439,5.043702 +L 1.9439,5.043702,1.4991,5.735874 +L 1.4991,5.735874,1.0123,6.902606 +L 1.0123,6.902606,0.7145,6.902606 +L 0.7145,6.902606,0.4343,6.902606 +L 0.4343,6.902606,0.1577,6.902606 +L 5.6775,4.766921,5.3661,5.43937 +L 5.3661,5.43937,5.1416,6.23018 +L 5.1416,6.23018,4.8229,6.902606 +L 4.8229,6.902606,3.9301,6.684951 +L 3.9301,6.684951,3.492,6.408148 +L 3.492,6.408148,3.1421,5.834731 +L 6.1052,4.766921,6.5325,4.766921 +L 6.5325,4.766921,6.9629,4.766921 +L 6.9629,4.766921,7.3867,4.766921 +L 1.8672,6.902606,1.5625,7.3361 +L 1.5625,7.3361,1.4504,7.879922 +L 1.4504,7.879922,1.436,9.000006 +L 5.6775,6.902606,5.3798,7.3361 +L 5.3798,7.3361,5.2712,7.879922 +L 5.2712,7.879922,5.2537,9.000006 +L 6.1052,6.902606,6.3815,6.902606 +L 6.3815,6.902606,6.6652,6.902606 +L 6.6652,6.902606,6.9629,6.902606 +L 3.9683,7.436424,3.9683,7.806393 +L 3.9683,7.806393,3.9683,8.159615 +L 3.9683,8.159615,3.9683,8.504234 + +[巻] 48 +L 2.2965,-0.000003,2.0128,0.454746 +L 2.0128,0.454746,1.9074,1.146896 +L 1.9074,1.146896,1.8972,2.669478 +L 1.8972,2.669478,3.025,2.669478 +L 3.025,2.669478,4.1524,2.669478 +L 4.1524,2.669478,5.2802,2.669478 +L 5.2802,2.669478,4.2018,4.418077 +L 4.2018,4.418077,1.9809,4.149636 +L 1.9809,4.149636,0.1915,3.203295 +L 2.7164,-0.000003,3.8477,-0.000003 +L 3.8477,-0.000003,4.986,-0.000003 +L 4.986,-0.000003,6.1348,-0.000003 +L 6.1348,-0.000003,6.1348,0.370096 +L 6.1348,0.370096,6.1348,0.723122 +L 6.1348,0.723122,6.1348,1.067697 +L 6.531,3.203295,5.9667,4.002861 +L 5.9667,4.002861,5.4063,4.79378 +L 5.4063,4.79378,4.8564,5.567669 +L 4.8564,5.567669,4.0022,5.567669 +L 4.0022,5.567669,3.1476,5.567669 +L 3.1476,5.567669,2.2965,5.567669 +L 2.2965,5.567669,2.1455,5.300804 +L 2.1455,5.300804,2.0195,5.033918 +L 2.0195,5.033918,1.8972,4.766921 +L 0.1915,5.834731,0.7446,5.834731 +L 0.7446,5.834731,1.319,5.834731 +L 1.319,5.834731,1.8972,5.834731 +L 5.2802,5.834731,5.8336,5.834731 +L 5.8336,5.834731,6.3874,5.834731 +L 6.3874,5.834731,6.9614,5.834731 +L 2.7164,6.368614,2.8495,6.635567 +L 2.8495,6.635567,2.9966,6.902606 +L 2.9966,6.902606,3.1476,7.169515 +L 3.1476,7.169515,2.2965,7.272575 +L 2.2965,7.272575,1.4454,7.358757 +L 1.4454,7.358757,0.6153,7.436424 +L 4.426,6.368614,3.9703,7.177986 +L 3.9703,7.177986,3.7497,7.860112 +L 3.7497,7.860112,3.5749,9.000006 +L 4.6393,7.436424,4.8564,7.968841 +L 4.8564,7.968841,5.0704,8.492938 +L 5.0704,8.492938,5.2802,9.000006 +L 5.2802,7.436424,5.6865,7.436424 +L 5.6865,7.436424,6.1072,7.436424 +L 6.1072,7.436424,6.531,7.436424 +L 2.2965,8.237282,2.1455,8.502833 +L 2.1455,8.502833,2.0195,8.759804 +L 2.0195,8.759804,1.8972,9.000006 + +[干] 15 +L 3.6046,-0.000003,3.5485,3.659578 +L 3.5485,3.659578,2.736,4.74293 +L 2.736,4.74293,0.2177,4.766921 +L 4.0319,4.766921,3.7307,5.261226 +L 3.7307,5.261226,3.6221,6.23018 +L 3.6221,6.23018,3.6046,8.504234 +L 3.6046,8.504234,2.6032,8.504234 +L 2.6032,8.504234,1.6222,8.504234 +L 1.6222,8.504234,0.6485,8.504234 +L 4.4592,4.766921,5.2931,4.766921 +L 5.2931,4.766921,6.1368,4.766921 +L 6.1368,4.766921,6.9918,4.766921 +L 4.0319,8.504234,4.8658,8.504234 +L 4.8658,8.504234,5.7095,8.504234 +L 5.7095,8.504234,6.5641,8.504234 + +[看] 45 +L 2.3527,-0.000003,2.339,2.648266 +L 2.339,2.648266,2.2266,3.74565 +L 2.2266,3.74565,1.9219,4.232994 +L 1.9219,4.232994,1.3478,3.545113 +L 1.3478,3.545113,0.7731,2.848825 +L 0.7731,2.848825,0.2165,2.135551 +L 2.7803,-0.000003,3.9113,-0.000003 +L 3.9113,-0.000003,5.0391,-0.000003 +L 5.0391,-0.000003,6.1672,-0.000003 +L 6.1672,-0.000003,6.1672,0.533924 +L 6.1672,0.533924,6.1672,1.067697 +L 6.1672,1.067697,6.1672,1.60169 +L 6.1672,1.60169,5.0391,1.60169 +L 5.0391,1.60169,3.9113,1.60169 +L 3.9113,1.60169,2.7803,1.60169 +L 6.1672,2.402482,5.0391,2.505629 +L 5.0391,2.505629,3.9113,2.591702 +L 3.9113,2.591702,2.7803,2.669478 +L 6.1672,3.470357,5.0391,3.573439 +L 5.0391,3.573439,3.9113,3.659578 +L 3.9113,3.659578,2.7803,3.737266 +L 2.3527,5.033918,1.6315,5.136977 +L 1.6315,5.136977,0.924,5.223138 +L 0.924,5.223138,0.2165,5.300804 +L 2.7803,5.567669,2.9131,5.9379 +L 2.9131,5.9379,3.0567,6.290991 +L 3.0567,6.290991,3.2111,6.635567 +L 3.2111,6.635567,2.4826,6.73878 +L 2.4826,6.73878,1.7751,6.824852 +L 1.7751,6.824852,1.0708,6.902606 +L 3.2111,5.300804,4.6118,5.300804 +L 4.6118,5.300804,6.0127,5.300804 +L 6.0127,5.300804,7.4176,5.300804 +L 3.6031,6.902606,3.6031,7.272575 +L 3.6031,7.272575,3.6031,7.625644 +L 3.6031,7.625644,3.6031,7.970264 +L 3.6031,7.970264,2.6084,7.970264 +L 2.6084,7.970264,1.6242,7.970264 +L 1.6242,7.970264,0.647,7.970264 +L 4.0339,6.902606,4.885,6.902606 +L 4.885,6.902606,5.7434,6.902606 +L 5.7434,6.902606,6.5945,6.902606 +L 4.0339,7.970264,4.7907,8.10872 +L 4.7907,8.10872,5.5504,8.365712 +L 5.5504,8.365712,6.5945,8.504234 + +[危] 36 +L 0.2501,0.266906,0.8486,2.07474 +L 0.8486,2.07474,1.0693,3.518276 +L 1.0693,3.518276,1.1047,5.834731 +L 1.1047,5.834731,2.0815,5.9379 +L 2.0815,5.9379,3.066,6.023951 +L 3.066,6.023951,4.0607,6.101662 +L 4.0607,6.101662,4.3371,6.635567 +L 4.3371,6.635567,4.6208,7.169515 +L 4.6208,7.169515,4.915,7.703289 +L 4.915,7.703289,3.7907,7.806393 +L 3.7907,7.806393,2.6598,7.892618 +L 2.6598,7.892618,1.5285,7.970264 +L 1.5285,7.970264,1.1047,7.436424 +L 1.1047,7.436424,0.6774,6.902606 +L 0.6774,6.902606,0.2501,6.368614 +L 3.2061,-0.000003,2.9049,0.512646 +L 2.9049,0.512646,2.7995,1.610096 +L 2.7995,1.610096,2.7823,4.232994 +L 2.7823,4.232994,3.756,4.232994 +L 3.756,4.232994,4.7399,4.232994 +L 4.7399,4.232994,5.7419,4.232994 +L 5.7419,4.232994,5.7419,3.545113 +L 5.7419,3.545113,5.7419,2.848825 +L 5.7419,2.848825,5.7419,2.135551 +L 5.7419,2.135551,5.3146,2.135551 +L 5.3146,2.135551,4.8943,2.135551 +L 4.8943,2.135551,4.4912,2.135551 +L 3.6369,-0.000003,4.7647,-0.000003 +L 4.7647,-0.000003,5.8957,-0.000003 +L 5.8957,-0.000003,7.02,-0.000003 +L 7.02,-0.000003,7.02,0.533924 +L 7.02,0.533924,7.02,1.067697 +L 7.02,1.067697,7.02,1.60169 +L 4.4912,5.834731,5.3213,5.834731 +L 5.3213,5.834731,6.1657,5.834731 +L 6.1657,5.834731,7.02,5.834731 + +[揮] 60 +L 0.2797,-0.000003,0.5529,-0.000003 +L 0.5529,-0.000003,0.8296,-0.000003 +L 0.8296,-0.000003,1.1032,-0.000003 +L 1.1032,-0.000003,1.1032,1.410982 +L 1.1032,1.410982,1.1032,2.821944 +L 1.1032,2.821944,1.1032,4.232994 +L 1.1032,4.232994,0.8296,4.232994 +L 0.8296,4.232994,0.5529,4.232994 +L 0.5529,4.232994,0.2797,4.232994 +L 4.917,-0.000003,4.5142,1.483022 +L 4.5142,1.483022,3.5405,1.720226 +L 3.5405,1.720226,2.3847,1.60169 +L 5.3443,1.60169,5.0504,2.135551 +L 5.0504,2.135551,4.7667,2.669478 +L 4.7667,2.669478,4.4897,3.203295 +L 4.4897,3.203295,4.0659,3.203295 +L 4.0659,3.203295,3.6456,3.203295 +L 3.6456,3.203295,3.2393,3.203295 +L 3.2393,3.203295,3.2393,3.916635 +L 3.2393,3.916635,3.2393,4.612967 +L 3.2393,4.612967,3.2393,5.300804 +L 3.2393,5.300804,4.2414,5.368665 +L 4.2414,5.368665,4.7667,5.792395 +L 4.7667,5.792395,4.917,6.902606 +L 4.917,6.902606,3.5969,6.936361 +L 3.5969,6.936361,2.97,7.326206 +L 2.97,7.326206,2.812,8.504234 +L 2.812,8.504234,4.213,8.504234 +L 4.213,8.504234,5.6245,8.504234 +L 5.6245,8.504234,7.0538,8.504234 +L 7.0538,8.504234,6.8468,7.275355 +L 6.8468,7.275355,6.2584,6.911013 +L 6.2584,6.911013,5.3443,6.902606 +L 5.7681,1.60169,6.3253,1.60169 +L 6.3253,1.60169,6.9029,1.60169 +L 6.9029,1.60169,7.4811,1.60169 +L 5.3443,3.203295,4.7107,3.927974 +L 4.7107,3.927974,4.2799,4.194862 +L 4.2799,4.194862,3.6631,4.232994 +L 5.7681,3.203295,6.0451,3.203295 +L 6.0451,3.203295,6.3253,3.203295 +L 6.3253,3.203295,6.6265,3.203295 +L 6.6265,3.203295,6.6265,3.546645 +L 6.6265,3.546645,6.6265,3.889776 +L 6.6265,3.889776,6.6265,4.232994 +L 6.6265,4.232994,5.7085,4.252718 +L 5.7085,4.252718,5.2637,4.391174 +L 5.2637,4.391174,4.917,4.766921 +L 4.917,4.766921,5.2637,5.122792 +L 5.2637,5.122792,5.7085,5.122792 +L 5.7085,5.122792,6.6265,4.766921 +L 1.1032,4.766921,1.1032,5.300804 +L 1.1032,5.300804,1.1032,5.834731 +L 1.1032,5.834731,1.1032,6.368614 +L 1.1032,6.368614,0.8296,6.557921 +L 0.8296,6.557921,0.5529,6.73878 +L 0.5529,6.73878,0.2797,6.902606 +L 1.534,6.902606,1.2292,7.3361 +L 1.2292,7.3361,1.1207,7.879922 +L 1.1207,7.879922,1.1032,9.000006 + +[机] 30 +L 1.5601,-0.000003,1.4761,1.600201 +L 1.4761,1.600201,1.4099,3.192022 +L 1.4099,3.192022,1.3468,4.766921 +L 1.3468,4.766921,0.9826,4.07904 +L 0.9826,4.07904,0.625,3.382686 +L 0.625,3.382686,0.2817,2.669478 +L 2.8105,-0.000003,3.9698,2.763979 +L 3.9698,2.763979,4.173,5.40949 +L 4.173,5.40949,4.0924,8.504234 +L 4.0924,8.504234,4.7932,8.504234 +L 4.7932,8.504234,5.5074,8.504234 +L 5.5074,8.504234,6.2292,8.504234 +L 6.2292,8.504234,6.2292,5.680754 +L 6.2292,5.680754,6.2292,2.848825 +L 6.2292,2.848825,6.2292,-0.000003 +L 6.2292,-0.000003,6.6352,-0.000003 +L 6.6352,-0.000003,7.0558,-0.000003 +L 7.0558,-0.000003,7.4796,-0.000003 +L 7.4796,-0.000003,7.4796,0.533924 +L 7.4796,0.533924,7.4796,1.067697 +L 7.4796,1.067697,7.4796,1.60169 +L 2.8105,4.232994,2.0578,5.043702 +L 2.0578,5.043702,1.627,5.735874 +L 1.627,5.735874,1.1328,6.902606 +L 1.1328,6.902606,0.8351,6.902606 +L 0.8351,6.902606,0.5553,6.902606 +L 0.5553,6.902606,0.2817,6.902606 +L 1.9913,6.902606,1.6862,7.3361 +L 1.6862,7.3361,1.5776,7.879922 +L 1.5776,7.879922,1.5601,9.000006 + +[貴] 54 +L 0.3083,-0.000003,0.862,0.189195 +L 0.862,0.189195,1.415,0.370096 +L 1.415,0.370096,1.9859,0.533924 +L 6.2277,-0.000003,5.9297,0.189195 +L 5.9297,0.189195,5.6495,0.370096 +L 5.6495,0.370096,5.3766,0.533924 +L 1.5621,1.60169,1.5621,2.668055 +L 1.5621,2.668055,1.5621,3.725949 +L 1.5621,3.725949,1.5621,4.766921 +L 1.5621,4.766921,2.967,4.766921 +L 2.967,4.766921,4.3781,4.766921 +L 4.3781,4.766921,5.8004,4.766921 +L 5.8004,4.766921,5.8004,3.725949 +L 5.8004,3.725949,5.8004,2.668055 +L 5.8004,2.668055,5.8004,1.60169 +L 5.8004,1.60169,4.3781,1.60169 +L 4.3781,1.60169,2.967,1.60169 +L 2.967,1.60169,1.5621,1.60169 +L 1.9859,2.669478,3.1172,2.669478 +L 3.1172,2.669478,4.2454,2.669478 +L 4.2454,2.669478,5.3766,2.669478 +L 1.9859,3.737266,3.1172,3.737266 +L 3.1172,3.737266,4.2454,3.737266 +L 4.2454,3.737266,5.3766,3.737266 +L 0.3083,5.834731,1.4395,5.9379 +L 1.4395,5.9379,2.5708,6.023951 +L 2.5708,6.023951,3.6955,6.101662 +L 3.6955,6.101662,3.5445,6.368614 +L 3.5445,6.368614,3.4009,6.635567 +L 3.4009,6.635567,3.2717,6.902606 +L 3.2717,6.902606,2.6934,6.902606 +L 2.6934,6.902606,2.1159,6.902606 +L 2.1159,6.902606,1.5621,6.902606 +L 1.5621,6.902606,1.5621,7.272575 +L 1.5621,7.272575,1.5621,7.625644 +L 1.5621,7.625644,1.5621,7.970264 +L 1.5621,7.970264,2.1159,7.970264 +L 2.1159,7.970264,2.6934,7.970264 +L 2.6934,7.970264,3.2717,7.970264 +L 3.2717,7.970264,3.4009,8.313459 +L 3.4009,8.313459,3.5445,8.65681 +L 3.5445,8.65681,3.6955,9.000006 +L 4.1228,5.834731,5.1031,5.834731 +L 5.1031,5.834731,6.0841,5.834731 +L 6.0841,5.834731,7.0855,5.834731 +L 4.1228,6.902606,3.9088,7.823466 +L 3.9088,7.823466,4.8369,8.015423 +L 4.8369,8.015423,5.8004,7.970264 +L 5.8004,7.970264,5.8004,7.625644 +L 5.8004,7.625644,5.8004,7.272575 +L 5.8004,7.272575,5.8004,6.902606 +L 5.8004,6.902606,5.2292,6.902606 +L 5.2292,6.902606,4.6758,6.902606 +L 4.6758,6.902606,4.1228,6.902606 + +[疑] 72 +L 0.3141,-0.000003,0.734,0.80081 +L 0.734,0.80081,1.1652,1.60169 +L 1.1652,1.60169,1.5925,2.402482 +L 1.5925,2.402482,1.2594,2.966026 +L 1.2594,2.966026,0.927,3.173722 +L 0.927,3.173722,0.3141,3.203295 +L 2.874,-0.000003,3.004,0.189195 +L 3.004,0.189195,3.1511,0.370096 +L 3.1511,0.370096,3.2978,0.533924 +L 3.2978,0.533924,2.874,1.067697 +L 2.874,1.067697,2.4436,1.60169 +L 2.4436,1.60169,2.0198,2.135551 +L 5.8336,-0.000003,5.2561,0.533924 +L 5.2561,0.533924,4.6852,1.067697 +L 4.6852,1.067697,4.1248,1.60169 +L 4.1248,1.60169,3.9777,1.437841 +L 3.9777,1.437841,3.8512,1.257005 +L 3.8512,1.257005,3.7286,1.067697 +L 6.2574,-0.000003,6.6847,-0.000003 +L 6.6847,-0.000003,7.1124,-0.000003 +L 7.1124,-0.000003,7.5432,-0.000003 +L 5.4063,1.067697,5.4063,2.668055 +L 5.4063,2.668055,5.4063,4.25981 +L 5.4063,4.25981,5.4063,5.834731 +L 5.4063,5.834731,4.979,5.834731 +L 4.979,5.834731,4.5486,5.834731 +L 4.5486,5.834731,4.1248,5.834731 +L 4.1248,2.135551,4.1248,2.848825 +L 4.1248,2.848825,4.1248,3.545113 +L 4.1248,3.545113,4.1248,4.232994 +L 2.0198,3.203295,1.7182,3.617264 +L 1.7182,3.617264,1.6065,4.022431 +L 1.6065,4.022431,1.5925,4.766921 +L 1.5925,4.766921,0.9722,4.747154 +L 0.9722,4.747154,0.6398,4.608807 +L 0.6398,4.608807,0.3141,4.232994 +L 2.4436,3.203295,2.7238,3.203295 +L 2.7238,3.203295,3.004,3.203295 +L 3.004,3.203295,3.2978,3.203295 +L 5.8336,3.203295,6.2574,3.203295 +L 6.2574,3.203295,6.6847,3.203295 +L 6.6847,3.203295,7.1124,3.203295 +L 2.0198,4.766921,2.2926,4.766921 +L 2.2926,4.766921,2.5728,4.766921 +L 2.5728,4.766921,2.874,4.766921 +L 7.1124,4.766921,7.2451,5.033918 +L 7.2451,5.033918,7.3887,5.300804 +L 7.3887,5.300804,7.5432,5.567669 +L 7.5432,5.567669,6.9614,5.67097 +L 6.9614,5.67097,6.394,5.756999 +L 6.394,5.756999,5.8336,5.834731 +L 5.8336,5.834731,5.6588,6.605927 +L 5.6588,6.605927,5.4382,7.021186 +L 5.4382,7.021186,4.979,7.436424 +L 1.1652,5.300804,1.0528,6.268268 +L 1.0528,6.268268,0.8461,7.346017 +L 0.8461,7.346017,0.734,9.000006 +L 1.5925,6.368614,2.149,6.368614 +L 2.149,6.368614,2.7238,6.368614 +L 2.7238,6.368614,3.2978,6.368614 +L 3.2978,6.368614,3.2978,6.73878 +L 3.2978,6.73878,3.2978,7.09176 +L 3.2978,7.09176,3.2978,7.436424 +L 6.2574,7.436424,6.394,7.703289 +L 6.394,7.703289,6.5341,7.970264 +L 6.5341,7.970264,6.6847,8.237282 +L 6.6847,8.237282,5.8336,8.340276 +L 5.8336,8.340276,4.979,8.426523 +L 4.979,8.426523,4.1248,8.504234 +L 1.1652,7.970264,1.7217,8.159615 +L 1.7217,8.159615,2.2926,8.340276 +L 2.2926,8.340276,2.874,8.504234 + +[吸] 39 +L 3.9376,-0.000003,4.5821,0.533924 +L 4.5821,0.533924,5.2192,1.067697 +L 5.2192,1.067697,5.864,1.60169 +L 5.864,1.60169,5.3526,2.668055 +L 5.3526,2.668055,4.8549,3.725949 +L 4.8549,3.725949,4.3684,4.766921 +L 4.3684,4.766921,3.7555,3.847396 +L 3.7555,3.847396,3.0655,2.343093 +L 3.0655,2.343093,2.0495,0.533924 +L 7.1179,-0.000003,6.8377,0.370096 +L 6.8377,0.370096,6.5641,0.723122 +L 6.5641,0.723122,6.2913,1.067697 +L 6.2913,2.135551,6.8688,3.32054 +L 6.8688,3.32054,7.0825,4.141208 +L 7.0825,4.141208,7.1179,5.300804 +L 7.1179,5.300804,6.6867,5.300804 +L 6.6867,5.300804,6.2668,5.300804 +L 6.2668,5.300804,5.864,5.300804 +L 5.864,5.300804,5.9722,6.250056 +L 5.9722,6.250056,6.1789,7.199132 +L 6.1789,7.199132,6.2913,8.504234 +L 6.2913,8.504234,5.5628,8.504234 +L 5.5628,8.504234,4.8549,8.504234 +L 4.8549,8.504234,4.1544,8.504234 +L 4.1544,8.504234,4.1544,7.436424 +L 4.1544,7.436424,4.1544,6.368614 +L 4.1544,6.368614,4.1544,5.300804 +L 0.3403,2.669478,0.3403,4.450518 +L 0.3403,4.450518,0.3403,6.214725 +L 0.3403,6.214725,0.3403,7.970264 +L 0.3403,7.970264,0.8972,7.970264 +L 0.8972,7.970264,1.4719,7.970264 +L 1.4719,7.970264,2.0495,7.970264 +L 2.0495,7.970264,2.0495,6.214725 +L 2.0495,6.214725,2.0495,4.450518 +L 2.0495,4.450518,2.0495,2.669478 +L 2.0495,2.669478,1.4719,2.669478 +L 1.4719,2.669478,0.8972,2.669478 +L 0.8972,2.669478,0.3403,2.669478 + +[供] 33 +L 1.1934,-0.000003,1.1128,1.944886 +L 1.1128,1.944886,1.0466,3.889776 +L 1.0466,3.889776,0.9801,5.834731 +L 0.9801,5.834731,0.7696,5.67097 +L 0.7696,5.67097,0.5664,5.490024 +L 0.5664,5.490024,0.3703,5.300804 +L 2.4753,-0.000003,2.9029,0.723122 +L 2.9029,0.723122,3.3302,1.437841 +L 3.3302,1.437841,3.761,2.135551 +L 7.144,-0.000003,6.7167,0.723122 +L 6.7167,0.723122,6.2863,1.437841 +L 6.2863,1.437841,5.866,2.135551 +L 2.0518,3.203295,2.6052,3.203295 +L 2.6052,3.203295,3.1793,3.203295 +L 3.1793,3.203295,3.761,3.203295 +L 3.761,3.203295,3.7785,5.213243 +L 3.7785,5.213243,3.5123,6.468828 +L 3.5123,6.468828,2.4753,6.902606 +L 4.1848,3.203295,4.7343,3.203295 +L 4.7343,3.203295,5.2916,3.203295 +L 5.2916,3.203295,5.866,3.203295 +L 5.866,3.203295,5.3196,6.562081 +L 5.3196,6.562081,4.3039,7.141123 +L 4.3039,7.141123,3.761,9.000006 +L 6.2863,3.203295,6.7167,3.203295 +L 6.7167,3.203295,7.144,3.203295 +L 7.144,3.203295,7.5748,3.203295 +L 1.1934,6.635567,1.4736,7.434979 +L 1.4736,7.434979,1.7541,8.225943 +L 1.7541,8.225943,2.0518,9.000006 +L 6.2863,6.902606,5.9917,7.3361 +L 5.9917,7.3361,5.88,7.879922 +L 5.88,7.879922,5.866,9.000006 + +[胸] 48 +L 0.3726,0.266906,0.6735,1.105874 +L 0.6735,1.105874,0.7856,3.241472 +L 0.7856,3.241472,0.7999,8.504234 +L 0.7999,8.504234,1.2237,8.504234 +L 1.2237,8.504234,1.6545,8.504234 +L 1.6545,8.504234,2.0783,8.504234 +L 2.0783,8.504234,2.1445,7.625644 +L 2.1445,7.625644,2.2111,6.73878 +L 2.2111,6.73878,2.2955,5.834731 +L 2.2955,5.834731,2.9116,6.901096 +L 2.9116,6.901096,3.549,7.959055 +L 3.549,7.959055,4.1833,9.000006 +L 2.0783,-0.000003,2.0783,1.257005 +L 2.0783,1.257005,2.0783,2.505629 +L 2.0783,2.505629,2.0783,3.737266 +L 2.0783,3.737266,1.7838,3.737266 +L 1.7838,3.737266,1.5036,3.737266 +L 1.5036,3.737266,1.2237,3.737266 +L 5.4649,-0.000003,7.104,1.461723 +L 7.104,1.461723,7.3282,4.576234 +L 7.3282,4.576234,7.1744,7.436424 +L 7.1744,7.436424,6.1692,7.436424 +L 6.1692,7.436424,5.1671,7.436424 +L 5.1671,7.436424,4.1833,7.436424 +L 3.3599,1.60169,3.4194,3.012718 +L 3.4194,3.012718,3.4825,4.423747 +L 3.4825,4.423747,3.542,5.834731 +L 3.542,5.834731,3.8853,5.490024 +L 3.8853,5.490024,4.2495,5.136977 +L 4.2495,5.136977,4.6138,4.766921 +L 4.6138,4.766921,4.9083,5.182093 +L 4.9083,5.182093,5.02,5.597418 +L 5.02,5.597418,5.0376,6.368614 +L 3.7595,1.60169,4.4597,1.60169 +L 4.4597,1.60169,5.1671,1.60169 +L 5.1671,1.60169,5.8922,1.60169 +L 5.8922,1.60169,5.8922,3.012718 +L 5.8922,3.012718,5.8922,4.423747 +L 5.8922,4.423747,5.8922,5.834731 +L 3.7595,3.203295,4.0362,3.546645 +L 4.0362,3.546645,4.3161,3.889776 +L 4.3161,3.889776,4.6138,4.232994 +L 4.6138,4.232994,4.7434,3.889776 +L 4.7434,3.889776,4.8873,3.546645 +L 4.8873,3.546645,5.0376,3.203295 +L 2.0783,4.232994,2.0783,4.60316 +L 2.0783,4.60316,2.0783,4.956141 +L 2.0783,4.956141,2.0783,5.300804 + +[郷] 57 +L 0.4023,-0.000003,0.9522,0.903914 +L 0.9522,0.903914,1.5094,1.790954 +L 1.5094,1.790954,2.0768,2.669478 +L 2.0768,2.669478,1.9998,3.03949 +L 1.9998,3.03949,1.9294,3.392559 +L 1.9294,3.392559,1.8663,3.737266 +L 1.8663,3.737266,1.59,3.573439 +L 1.59,3.573439,1.3165,3.392559 +L 1.3165,3.392559,1.0436,3.203295 +L 1.0436,3.203295,1.0051,4.105812 +L 1.0051,4.105812,1.1553,4.906866 +L 1.1553,4.906866,1.2569,5.834731 +L 1.2569,5.834731,0.9596,6.204808 +L 0.9596,6.204808,0.6794,6.557921 +L 0.6794,6.557921,0.4023,6.902606 +L 0.4023,6.902606,0.8296,7.615815 +L 0.8296,7.615815,1.2569,8.312168 +L 1.2569,8.312168,1.6807,9.000006 +L 5.898,-0.000003,5.898,2.848825 +L 5.898,2.848825,5.898,5.680754 +L 5.898,5.680754,5.898,8.504234 +L 5.898,8.504234,6.4514,8.504234 +L 6.4514,8.504234,7.0254,8.504234 +L 7.0254,8.504234,7.6037,8.504234 +L 7.6037,8.504234,7.1414,6.005542 +L 7.1414,6.005542,7.3687,4.532476 +L 7.3687,4.532476,7.6037,2.135551 +L 7.6037,2.135551,7.3056,1.971658 +L 7.3056,1.971658,7.0254,1.790954 +L 7.0254,1.790954,6.7491,1.60169 +L 2.0768,1.067697,2.3532,1.067697 +L 2.3532,1.067697,2.6369,1.067697 +L 2.6369,1.067697,2.9346,1.067697 +L 2.9346,1.067697,2.9346,3.546645 +L 2.9346,3.546645,2.9346,6.025374 +L 2.9346,6.025374,2.9346,8.504234 +L 2.9346,8.504234,3.4918,8.504234 +L 3.4918,8.504234,4.0627,8.504234 +L 4.0627,8.504234,4.6441,8.504234 +L 4.6441,8.504234,4.6441,7.09176 +L 4.6441,7.09176,4.6441,5.67097 +L 4.6441,5.67097,4.6441,4.232994 +L 4.6441,4.232994,4.2165,4.232994 +L 4.2165,4.232994,3.7857,4.232994 +L 3.7857,4.232994,3.3619,4.232994 +L 3.3619,1.067697,3.7857,1.523892 +L 3.7857,1.523892,4.2165,1.971658 +L 4.2165,1.971658,4.6441,2.402482 +L 4.6441,2.402482,4.4932,2.669478 +L 4.4932,2.669478,4.3429,2.936365 +L 4.3429,2.936365,4.2165,3.203295 +L 1.6807,6.101662,1.8068,6.557921 +L 1.8068,6.557921,1.9332,7.005666 +L 1.9332,7.005666,2.0768,7.436424 +L 3.3619,6.368614,3.6354,6.368614 +L 3.6354,6.368614,3.9226,6.368614 +L 3.9226,6.368614,4.2165,6.368614 + +[勤] 51 +L 0.4288,-0.000003,0.9826,-0.000003 +L 0.9826,-0.000003,1.5391,-0.000003 +L 1.5391,-0.000003,2.11,-0.000003 +L 2.11,-0.000003,2.0259,1.434995 +L 2.0259,1.434995,1.6617,2.022509 +L 1.6617,2.022509,0.8281,2.135551 +L 3.8196,-0.000003,3.4865,0.375722 +L 3.4865,0.375722,3.1541,0.514047 +L 3.1541,0.514047,2.5412,0.533924 +L 5.9245,-0.000003,7.2344,1.218916 +L 7.2344,1.218916,7.3605,3.852978 +L 7.3605,3.852978,7.2061,6.368614 +L 7.2061,6.368614,5.5428,5.516884 +L 5.5428,5.516884,4.9543,3.368567 +L 4.9543,3.368567,4.2469,0.533924 +L 2.5412,2.135551,1.9034,2.887046 +L 1.9034,2.887046,1.4621,3.163784 +L 1.4621,3.163784,0.8281,3.203295 +L 2.5412,3.203295,2.2431,3.735865 +L 2.2431,3.735865,1.9598,4.25981 +L 1.9598,4.25981,1.6827,4.766921 +L 1.6827,4.766921,1.3853,4.766921 +L 1.3853,4.766921,1.1052,4.766921 +L 1.1052,4.766921,0.8281,4.766921 +L 0.8281,4.766921,0.8281,5.300804 +L 0.8281,5.300804,0.8281,5.834731 +L 0.8281,5.834731,0.8281,6.368614 +L 0.8281,6.368614,1.6827,6.368614 +L 1.6827,6.368614,2.5412,6.368614 +L 2.5412,6.368614,3.3923,6.368614 +L 3.3923,6.368614,3.3923,5.834731 +L 3.3923,5.834731,3.3923,5.300804 +L 3.3923,5.300804,3.3923,4.766921 +L 3.3923,4.766921,2.772,4.806455 +L 2.772,4.806455,2.4462,5.083258 +L 2.4462,5.083258,2.11,5.834731 +L 4.8559,6.368614,5.3042,6.821984 +L 5.3042,6.821984,5.4724,7.504174 +L 5.4724,7.504174,5.4972,9.000006 +L 0.4288,7.970264,0.709,7.970264 +L 0.709,7.970264,0.9826,7.970264 +L 0.9826,7.970264,1.2554,7.970264 +L 1.2554,7.970264,1.2554,8.313459 +L 1.2554,8.313459,1.2554,8.65681 +L 1.2554,8.65681,1.2554,9.000006 +L 1.6827,7.970264,2.11,7.970264 +L 2.11,7.970264,2.5412,7.970264 +L 2.5412,7.970264,2.965,7.970264 +L 2.965,7.970264,2.965,8.313459 +L 2.965,8.313459,2.965,8.65681 +L 2.965,8.65681,2.965,9.000006 + +[筋] 45 +L 0.4347,-0.000003,1.1702,1.987222 +L 1.1702,1.987222,1.3243,3.771218 +L 1.3243,3.771218,1.2893,5.834731 +L 1.2893,5.834731,1.8357,5.834731 +L 1.8357,5.834731,2.3961,5.834731 +L 2.3961,5.834731,2.9635,5.834731 +L 2.9635,5.834731,2.9635,3.889776 +L 2.9635,3.889776,2.9635,1.944886 +L 2.9635,1.944886,2.9635,-0.000003 +L 2.9635,-0.000003,2.6934,-0.000003 +L 2.6934,-0.000003,2.4132,-0.000003 +L 2.4132,-0.000003,2.1404,-0.000003 +L 3.818,-0.000003,4.9108,1.812165 +L 4.9108,1.812165,5.5514,3.819158 +L 5.5514,3.819158,4.2453,4.766921 +L 5.9542,-0.000003,7.1769,0.862979 +L 7.1769,0.862979,7.3307,2.785256 +L 7.3307,2.785256,7.2046,4.766921 +L 7.2046,4.766921,6.0943,4.86858 +L 6.0943,4.86858,5.625,5.326219 +L 5.625,5.326219,5.5234,6.368614 +L 1.7131,2.669478,1.9894,2.669478 +L 1.9894,2.669478,2.2731,2.669478 +L 2.2731,2.669478,2.5673,2.669478 +L 1.7131,4.232994,1.9894,4.232994 +L 1.9894,4.232994,2.2731,4.232994 +L 2.2731,4.232994,2.5673,4.232994 +L 0.4347,6.902606,0.711,7.615815 +L 0.711,7.615815,0.9912,8.312168 +L 0.9912,8.312168,1.2893,9.000006 +L 2.5673,6.902606,2.2731,7.272575 +L 2.2731,7.272575,1.9894,7.625644 +L 1.9894,7.625644,1.7131,7.970264 +L 3.818,6.902606,4.0944,7.615815 +L 4.0944,7.615815,4.3746,8.312168 +L 4.3746,8.312168,4.6723,9.000006 +L 6.3815,6.902606,6.0488,7.475958 +L 6.0488,7.475958,5.7164,7.752739 +L 5.7164,7.752739,5.1031,7.970264 +L 2.5673,7.970264,2.8444,7.970264 +L 2.8444,7.970264,3.1137,7.970264 +L 3.1137,7.970264,3.3943,7.970264 +L 6.3815,7.970264,6.7843,7.970264 +L 6.7843,7.970264,7.2046,7.970264 +L 7.2046,7.970264,7.6284,7.970264 + +[敬] 54 +L 2.142,-0.000003,3.6271,0.950453 +L 3.6271,0.950453,3.9318,3.079046 +L 3.9318,3.079046,3.8512,5.300804 +L 3.8512,5.300804,2.853,5.223138 +L 2.853,5.223138,1.8688,5.136977 +L 1.8688,5.136977,0.8917,5.033918 +L 0.8917,5.033918,0.7414,4.766921 +L 0.7414,4.766921,0.5904,4.499947 +L 0.5904,4.499947,0.4612,4.232994 +L 4.275,-0.000003,4.8253,0.80081 +L 4.8253,0.80081,5.3853,1.60169 +L 5.3853,1.60169,5.9527,2.402482 +L 5.9527,2.402482,5.5993,3.735865 +L 5.5993,3.735865,5.2526,5.060689 +L 5.2526,5.060689,4.916,6.368614 +L 4.916,6.368614,4.7023,6.204808 +L 4.7023,6.204808,4.489,6.023951 +L 4.489,6.023951,4.275,5.834731 +L 7.6622,-0.000003,7.2349,0.533924 +L 7.2349,0.533924,6.8073,1.067697 +L 6.8073,1.067697,6.3835,1.60169 +L 1.3154,1.60169,1.3154,2.324837 +L 1.3154,2.324837,1.3154,3.03949 +L 1.3154,3.03949,1.3154,3.737266 +L 1.3154,3.737266,1.7217,3.737266 +L 1.7217,3.737266,2.142,3.737266 +L 2.142,3.737266,2.5662,3.737266 +L 2.5662,3.737266,2.5662,3.03949 +L 2.5662,3.03949,2.5662,2.324837 +L 2.5662,2.324837,2.5662,1.60169 +L 2.5662,1.60169,2.142,1.60169 +L 2.142,1.60169,1.7217,1.60169 +L 1.7217,1.60169,1.3154,1.60169 +L 6.3835,3.470357,6.6812,4.105812 +L 6.6812,4.105812,6.7936,4.995784 +L 6.7936,4.995784,6.8073,6.902606 +L 6.8073,6.902606,6.2364,7.005666 +L 6.2364,7.005666,5.6834,7.09176 +L 5.6834,7.09176,5.13,7.169515 +L 5.13,7.169515,5.2526,7.77962 +L 5.2526,7.77962,5.3853,8.389857 +L 5.3853,8.389857,5.5289,9.000006 +L 1.3154,6.101662,1.5816,6.882555 +L 1.5816,6.882555,1.5816,7.367206 +L 1.5816,7.367206,1.3154,7.970264 +L 1.3154,7.970264,1.0216,7.970264 +L 1.0216,7.970264,0.7414,7.970264 +L 0.7414,7.970264,0.4612,7.970264 +L 2.9966,7.169515,2.5662,7.77962 +L 2.5662,7.77962,2.142,8.389857 +L 2.142,8.389857,1.7151,9.000006 +L 3.4239,7.970264,3.2737,8.313459 +L 3.2737,8.313459,3.1227,8.65681 +L 3.1227,8.65681,2.9966,9.000006 + +[系] 36 +L 0.4628,-0.000003,1.0236,0.903914 +L 1.0236,0.903914,1.591,1.790954 +L 1.591,1.790954,2.172,2.669478 +L 3.8816,-0.000003,3.8816,1.257005 +L 3.8816,1.257005,3.8816,2.505629 +L 3.8816,2.505629,3.8816,3.737266 +L 3.8816,3.737266,2.7293,3.737266 +L 2.7293,3.737266,1.591,3.737266 +L 1.591,3.737266,0.4628,3.737266 +L 7.2646,-0.000003,6.6867,0.903914 +L 6.6867,0.903914,6.1158,1.790954 +L 6.1158,1.790954,5.5558,2.669478 +L 4.277,3.737266,5.0371,4.105812 +L 5.0371,4.105812,6.0811,4.372873 +L 6.0811,4.372873,6.8408,4.766921 +L 6.8408,4.766921,6.5431,5.136977 +L 6.5431,5.136977,6.2633,5.490024 +L 6.2633,5.490024,5.9866,5.834731 +L 3.0231,4.232994,3.1597,4.42228 +L 3.1597,4.42228,3.2998,4.60316 +L 3.2998,4.60316,3.4543,4.766921 +L 3.4543,4.766921,2.8725,5.300804 +L 2.8725,5.300804,2.3051,5.834731 +L 2.3051,5.834731,1.7447,6.368614 +L 3.8816,5.300804,4.2844,5.834731 +L 4.2844,5.834731,4.7047,6.368614 +L 4.7047,6.368614,5.1355,6.902606 +L 2.5997,6.902606,2.7293,7.169515 +L 2.7293,7.169515,2.8725,7.436424 +L 2.8725,7.436424,3.0231,7.703289 +L 3.0231,7.703289,2.3051,7.806393 +L 2.3051,7.806393,1.591,7.892618 +L 1.591,7.892618,0.8901,7.970264 +L 3.4543,7.970264,4.207,8.10872 +L 4.207,8.10872,5.0689,8.365712 +L 5.0689,8.365712,6.4135,8.504234 + +[警] 66 +L 1.7783,-0.000003,1.7783,0.533924 +L 1.7783,0.533924,1.7783,1.067697 +L 1.7783,1.067697,1.7783,1.60169 +L 1.7783,1.60169,3.3092,1.60169 +L 3.3092,1.60169,4.8569,1.60169 +L 4.8569,1.60169,6.4089,1.60169 +L 6.4089,1.60169,6.4089,1.067697 +L 6.4089,1.067697,6.4089,0.533924 +L 6.4089,0.533924,6.4089,-0.000003 +L 6.4089,-0.000003,4.8569,-0.000003 +L 4.8569,-0.000003,3.3092,-0.000003 +L 3.3092,-0.000003,1.7783,-0.000003 +L 2.2024,2.669478,3.4629,2.669478 +L 3.4629,2.669478,4.7343,2.669478 +L 4.7343,2.669478,6.0127,2.669478 +L 0.4929,3.737266,2.8815,3.737266 +L 2.8815,3.737266,5.2842,3.737266 +L 5.2842,3.737266,7.6939,3.737266 +L 2.2024,4.766921,3.3968,5.230186 +L 3.3968,5.230186,3.8272,6.057947 +L 3.8272,6.057947,3.8832,7.436424 +L 3.8832,7.436424,3.4528,7.436424 +L 3.4528,7.436424,3.0255,7.436424 +L 3.0255,7.436424,2.5978,7.436424 +L 2.5978,7.436424,2.5978,6.902606 +L 2.5978,6.902606,2.5978,6.368614 +L 2.5978,6.368614,2.5978,5.834731 +L 2.5978,5.834731,2.1744,5.834731 +L 2.1744,5.834731,1.7541,5.834731 +L 1.7541,5.834731,1.3478,5.834731 +L 1.3478,5.834731,1.2638,6.204808 +L 1.2638,6.204808,1.1969,6.557921 +L 1.1969,6.557921,1.1373,6.902606 +L 1.1373,6.902606,0.9205,6.73878 +L 0.9205,6.73878,0.7065,6.557921 +L 0.7065,6.557921,0.4929,6.368614 +L 3.8832,4.766921,4.8117,5.004147 +L 4.8117,5.004147,5.3683,5.41945 +L 5.3683,5.41945,6.0127,6.368614 +L 6.0127,6.368614,5.7189,6.902606 +L 5.7189,6.902606,5.4352,7.436424 +L 5.4352,7.436424,5.1616,7.970264 +L 5.1616,7.970264,5.0114,7.806393 +L 5.0114,7.806393,4.8639,7.625644 +L 4.8639,7.625644,4.7343,7.436424 +L 7.2666,5.300804,6.9689,5.67097 +L 6.9689,5.67097,6.6852,6.023951 +L 6.6852,6.023951,6.4089,6.368614 +L 6.4089,6.368614,6.7136,6.783807 +L 6.7136,6.783807,6.8253,7.199132 +L 6.8253,7.199132,6.8393,7.970264 +L 6.8393,7.970264,6.2442,8.008418 +L 6.2442,8.008418,5.9185,8.275371 +L 5.9185,8.275371,5.5924,9.000006 +L 1.5611,7.436424,1.6242,7.806393 +L 1.6242,7.806393,1.6946,8.159615 +L 1.6946,8.159615,1.7783,8.504234 +L 1.7783,8.504234,1.3478,8.504234 +L 1.3478,8.504234,0.9205,8.504234 +L 0.9205,8.504234,0.4929,8.504234 +L 3.0255,8.237282,2.752,8.340276 +L 2.752,8.340276,2.4791,8.426523 +L 2.4791,8.426523,2.2024,8.504234 +L 3.4528,8.504234,3.7291,8.504234 +L 3.7291,8.504234,4.0128,8.504234 +L 4.0128,8.504234,4.3039,8.504234 + +[劇] 54 +L 0.5264,0.266906,0.8244,1.066428 +L 0.8244,1.066428,0.9362,2.925135 +L 0.9362,2.925135,0.9502,7.436424 +L 0.9502,7.436424,2.0044,7.65397 +L 2.0044,7.65397,2.9816,8.10872 +L 2.9816,8.10872,4.3409,8.504234 +L 2.8454,-0.000003,3.2863,0.415322 +L 3.2863,0.415322,3.3952,0.830494 +L 3.3952,0.830494,3.2692,1.60169 +L 3.2692,1.60169,2.6314,1.257005 +L 2.6314,1.257005,1.9869,0.903914 +L 1.9869,0.903914,1.3463,0.533924 +L 6.442,-0.000003,6.7187,-0.000003 +L 6.7187,-0.000003,7.0024,-0.000003 +L 7.0024,-0.000003,7.297,-0.000003 +L 7.297,-0.000003,7.297,3.011295 +L 7.297,3.011295,7.297,6.0141 +L 7.297,6.0141,7.297,9.000006 +L 5.1636,0.533924,4.523,1.257005 +L 4.523,1.257005,3.8922,1.971658 +L 3.8922,1.971658,3.2692,2.669478 +L 3.2692,2.669478,2.7613,2.324837 +L 2.7613,2.324837,2.2671,1.971658 +L 2.2671,1.971658,1.7771,1.60169 +L 6.0147,2.135551,6.0147,4.080419 +L 6.0147,4.080419,6.0147,6.025374 +L 6.0147,6.025374,6.0147,7.970264 +L 1.7771,2.669478,2.1095,3.045138 +L 2.1095,3.045138,2.4391,3.183507 +L 2.4391,3.183507,3.0552,3.203295 +L 3.0552,3.203295,3.0552,3.546645 +L 3.0552,3.546645,3.0552,3.889776 +L 3.0552,3.889776,3.0552,4.232994 +L 3.0552,4.232994,2.4776,4.232994 +L 2.4776,4.232994,1.9029,4.232994 +L 1.9029,4.232994,1.3463,4.232994 +L 3.4825,4.232994,3.9098,4.232994 +L 3.9098,4.232994,4.3409,4.232994 +L 4.3409,4.232994,4.7609,4.232994 +L 2.6314,5.567669,2.2009,5.67097 +L 2.2009,5.67097,1.7771,5.756999 +L 1.7771,5.756999,1.3463,5.834731 +L 3.0552,5.300804,3.4825,5.403995 +L 3.4825,5.403995,3.9098,5.490024 +L 3.9098,5.490024,4.3409,5.567669 +L 4.3409,5.567669,3.9903,6.141261 +L 3.9903,6.141261,3.5455,6.41802 +L 3.5455,6.41802,2.6314,6.635567 +L 2.6314,6.635567,2.7613,6.902606 +L 2.7613,6.902606,2.9049,7.169515 +L 2.9049,7.169515,3.0552,7.436424 +L 3.0552,7.436424,3.6124,7.436424 +L 3.6124,7.436424,4.1868,7.436424 +L 4.1868,7.436424,4.7609,7.436424 + +[激] 57 +L 0.5249,-0.000003,0.7455,1.55502 +L 0.7455,1.55502,1.1553,2.957664 +L 1.1553,2.957664,1.3795,4.232994 +L 2.2344,-0.000003,2.8365,1.206176 +L 2.8365,1.206176,3.0572,2.175085 +L 3.0572,2.175085,3.089,3.737266 +L 3.089,3.737266,2.791,3.737266 +L 2.791,3.737266,2.5108,3.737266 +L 2.5108,3.737266,2.2344,3.737266 +L 3.6985,-0.000003,4.1464,0.434892 +L 4.1464,0.434892,4.311,0.988717 +L 4.311,0.988717,4.3356,2.135551 +L 4.3356,2.135551,4.0627,2.135551 +L 4.0627,2.135551,3.7892,2.135551 +L 3.7892,2.135551,3.5128,2.135551 +L 5.1905,-0.000003,5.6213,0.80081 +L 5.6213,0.80081,6.0451,1.60169 +L 6.0451,1.60169,6.4724,2.402482 +L 6.4724,2.402482,5.712,4.425082 +L 5.712,4.425082,5.3131,5.185004 +L 5.3131,5.185004,3.5128,5.300804 +L 3.5128,5.300804,3.5128,4.79378 +L 3.5128,4.79378,3.5128,4.269726 +L 3.5128,4.269726,3.5128,3.737266 +L 3.5128,3.737266,4.0627,3.737266 +L 4.0627,3.737266,4.6231,3.737266 +L 4.6231,3.737266,5.1905,3.737266 +L 7.7263,-0.000003,7.4461,0.533924 +L 7.4461,0.533924,7.1764,1.067697 +L 7.1764,1.067697,6.8997,1.60169 +L 6.8997,3.470357,7.2041,4.105812 +L 7.2041,4.105812,7.3126,4.995784 +L 7.3126,4.995784,7.3302,6.902606 +L 7.3302,6.902606,6.8997,6.902606 +L 6.8997,6.902606,6.4724,6.902606 +L 6.4724,6.902606,6.0451,6.902606 +L 6.0451,6.902606,5.8941,6.557921 +L 5.8941,6.557921,5.7505,6.204808 +L 5.7505,6.204808,5.6213,5.834731 +L 2.6617,5.300804,2.6617,6.204808 +L 2.6617,6.204808,2.6617,7.09176 +L 2.6617,7.09176,2.6617,7.970264 +L 2.6617,7.970264,3.2747,8.186386 +L 3.2747,8.186386,3.6,8.453339 +L 3.6,8.453339,3.9156,9.000006 +L 4.7667,5.834731,4.7667,6.204808 +L 4.7667,6.204808,4.7667,6.557921 +L 4.7667,6.557921,4.7667,6.902606 +L 4.7667,6.902606,4.1955,6.902606 +L 4.1955,6.902606,3.6389,6.902606 +L 3.6389,6.902606,3.089,6.902606 +L 4.7667,7.703289,4.469,7.806393 +L 4.469,7.806393,4.1853,7.892618 +L 4.1853,7.892618,3.9156,7.970264 +L 6.0451,7.436424,6.0451,7.968841 +L 6.0451,7.968841,6.0451,8.492938 +L 6.0451,8.492938,6.0451,9.000006 + +[穴] 21 +L 0.7686,-0.000003,1.6971,1.523892 +L 1.6971,1.523892,2.3867,2.963246 +L 2.3867,2.963246,2.6637,4.766921 +L 7.3287,-0.000003,6.2678,1.81488 +L 6.2678,1.81488,5.5109,3.434983 +L 5.5109,3.434983,5.2237,5.300804 +L 0.5588,5.834731,0.5588,6.368614 +L 0.5588,6.368614,0.5588,6.902606 +L 0.5588,6.902606,0.5588,7.436424 +L 0.5588,7.436424,1.6827,7.436424 +L 1.6827,7.436424,2.814,7.436424 +L 2.814,7.436424,3.9421,7.436424 +L 3.9421,7.436424,3.9421,7.968841 +L 3.9421,7.968841,3.9421,8.492938 +L 3.9421,8.492938,3.9421,9.000006 +L 7.3287,5.834731,7.3287,6.368614 +L 7.3287,6.368614,7.3287,6.902606 +L 7.3287,6.902606,7.3287,7.436424 +L 7.3287,7.436424,6.334,7.436424 +L 6.334,7.436424,5.3463,7.436424 +L 5.3463,7.436424,4.3726,7.436424 + +[憲] 63 +L 0.5849,-0.000003,0.711,0.370096 +L 0.711,0.370096,0.841,0.723122 +L 0.841,0.723122,0.9811,1.067697 +L 2.6899,-0.000003,2.3922,0.415322 +L 2.3922,0.415322,2.2805,0.830494 +L 2.2805,0.830494,2.263,1.60169 +L 3.1207,-0.000003,3.9508,-0.000003 +L 3.9508,-0.000003,4.7949,-0.000003 +L 4.7949,-0.000003,5.653,-0.000003 +L 5.653,-0.000003,5.653,0.370096 +L 5.653,0.370096,5.653,0.723122 +L 5.653,0.723122,5.653,1.067697 +L 7.3625,0.266906,7.2046,0.533924 +L 7.2046,0.533924,7.0645,0.80081 +L 7.0645,0.80081,6.9317,1.067697 +L 1.4119,2.669478,1.4119,3.03949 +L 1.4119,3.03949,1.4119,3.392559 +L 1.4119,3.392559,1.4119,3.737266 +L 1.4119,3.737266,3.093,3.737266 +L 3.093,3.737266,4.7949,3.737266 +L 4.7949,3.737266,6.5041,3.737266 +L 6.5041,3.737266,6.5041,3.392559 +L 6.5041,3.392559,6.5041,3.03949 +L 6.5041,3.03949,6.5041,2.669478 +L 6.5041,2.669478,4.7949,2.669478 +L 4.7949,2.669478,3.093,2.669478 +L 3.093,2.669478,1.4119,2.669478 +L 0.5849,4.766921,1.7166,4.870046 +L 1.7166,4.870046,2.8405,4.956141 +L 2.8405,4.956141,3.9718,5.033918 +L 3.9718,5.033918,3.8215,5.300804 +L 3.8215,5.300804,3.6744,5.567669 +L 3.6744,5.567669,3.541,5.834731 +L 3.541,5.834731,2.9669,5.834731 +L 2.9669,5.834731,2.3922,5.834731 +L 2.3922,5.834731,1.8357,5.834731 +L 4.3991,4.766921,5.3766,4.766921 +L 5.3766,4.766921,6.3605,4.766921 +L 6.3605,4.766921,7.3625,4.766921 +L 4.3991,5.834731,3.3732,6.806376 +L 3.3732,6.806376,2.5186,6.973027 +L 2.5186,6.973027,1.4119,6.902606 +L 4.7949,5.834731,5.2222,5.834731 +L 5.2222,5.834731,5.653,5.834731 +L 5.653,5.834731,6.0768,5.834731 +L 0.5849,6.902606,0.5849,7.272575 +L 0.5849,7.272575,0.5849,7.625644 +L 0.5849,7.625644,0.5849,7.970264 +L 0.5849,7.970264,1.5621,7.970264 +L 1.5621,7.970264,2.5467,7.970264 +L 2.5467,7.970264,3.541,7.970264 +L 3.541,7.970264,3.6744,8.313459 +L 3.6744,8.313459,3.8215,8.65681 +L 3.8215,8.65681,3.9718,9.000006 +L 4.3991,6.902606,4.4376,7.908182 +L 4.4376,7.908182,6.0001,8.05789 +L 6.0001,8.05789,7.3625,7.970264 +L 7.3625,7.970264,7.3625,7.625644 +L 7.3625,7.625644,7.3625,7.272575 +L 7.3625,7.272575,7.3625,6.902606 +L 4.7949,6.902606,5.3556,6.902606 +L 5.3556,6.902606,5.9265,6.902606 +L 5.9265,6.902606,6.5041,6.902606 + +[権] 72 +L 1.8688,-0.000003,1.7848,1.600201 +L 1.7848,1.600201,1.7182,3.192022 +L 1.7182,3.192022,1.6555,4.766921 +L 1.6555,4.766921,1.2913,4.07904 +L 1.2913,4.07904,0.9302,3.382686 +L 0.9302,3.382686,0.5838,2.669478 +L 3.9703,-0.000003,3.9566,2.99849 +L 3.9566,2.99849,3.8442,4.234417 +L 3.8442,4.234417,3.5465,4.766921 +L 3.5465,4.766921,3.3962,4.60316 +L 3.3962,4.60316,3.2491,4.42228 +L 3.2491,4.42228,3.1157,4.232994 +L 3.1157,4.232994,2.363,5.043702 +L 2.363,5.043702,1.9284,5.735874 +L 1.9284,5.735874,1.4415,6.902606 +L 1.4415,6.902606,1.1403,6.902606 +L 1.1403,6.902606,0.8605,6.902606 +L 0.8605,6.902606,0.5838,6.902606 +L 4.4014,-0.000003,4.8249,-0.000003 +L 4.8249,-0.000003,5.2525,-0.000003 +L 5.2525,-0.000003,5.6798,-0.000003 +L 5.6798,-0.000003,5.5289,1.194836 +L 5.5289,1.194836,5.0981,1.576253 +L 5.0981,1.576253,4.4014,1.60169 +L 6.1103,-0.000003,6.657,-0.000003 +L 6.657,-0.000003,7.2174,-0.000003 +L 7.2174,-0.000003,7.7848,-0.000003 +L 6.1103,1.60169,5.8126,2.135551 +L 5.8126,2.135551,5.5289,2.669478 +L 5.5289,2.669478,5.2525,3.203295 +L 5.2525,3.203295,4.9548,3.203295 +L 4.9548,3.203295,4.6743,3.203295 +L 4.6743,3.203295,4.4014,3.203295 +L 6.5344,1.60169,6.8111,1.60169 +L 6.8111,1.60169,7.084,1.60169 +L 7.084,1.60169,7.361,1.60169 +L 6.1103,3.203295,5.2487,4.399602 +L 5.2487,4.399602,4.5871,4.816262 +L 4.5871,4.816262,3.9703,5.300804 +L 3.9703,5.300804,4.1037,5.567669 +L 4.1037,5.567669,4.2473,5.834731 +L 4.2473,5.834731,4.4014,6.101662 +L 4.4014,6.101662,3.5465,6.557921 +L 3.5465,6.557921,2.6989,7.005666 +L 2.6989,7.005666,1.8688,7.436424 +L 1.8688,7.436424,1.8688,7.968841 +L 1.8688,7.968841,1.8688,8.492938 +L 1.8688,8.492938,1.8688,9.000006 +L 6.5344,3.203295,6.8111,3.203295 +L 6.8111,3.203295,7.084,3.203295 +L 7.084,3.203295,7.361,3.203295 +L 6.1103,4.766921,5.8234,5.172308 +L 5.8234,5.172308,5.8234,5.518306 +L 5.8234,5.518306,6.1103,6.101662 +L 6.1103,6.101662,5.6798,6.204808 +L 5.6798,6.204808,5.2525,6.290991 +L 5.2525,6.290991,4.8249,6.368614 +L 4.8249,6.368614,4.8249,6.902606 +L 4.8249,6.902606,4.8249,7.436424 +L 4.8249,7.436424,4.8249,7.970264 +L 4.8249,7.970264,4.2085,7.95054 +L 4.2085,7.95054,3.8796,7.812084 +L 3.8796,7.812084,3.5465,7.436424 +L 6.5344,4.766921,6.9404,4.766921 +L 6.9404,4.766921,7.361,4.766921 +L 7.361,4.766921,7.7848,4.766921 +L 6.5344,6.368614,6.9404,6.368614 +L 6.9404,6.368614,7.361,6.368614 +L 7.361,6.368614,7.7848,6.368614 +L 5.2525,7.970264,5.9562,7.970264 +L 5.9562,7.970264,6.657,7.970264 +L 6.657,7.970264,7.361,7.970264 + +[絹] 60 +L 1.8638,-0.000003,1.8638,1.600201 +L 1.8638,1.600201,1.8638,3.192022 +L 1.8638,3.192022,1.8638,4.766921 +L 1.8638,4.766921,1.4435,4.766921 +L 1.4435,4.766921,1.0236,4.766921 +L 1.0236,4.766921,0.6173,4.766921 +L 4.4311,-0.000003,4.4311,1.781059 +L 4.4311,1.781059,4.4311,3.545113 +L 4.4311,3.545113,4.4311,5.300804 +L 4.4311,5.300804,5.4083,5.300804 +L 5.4083,5.300804,6.3928,5.300804 +L 6.3928,5.300804,7.3907,5.300804 +L 7.3907,5.300804,7.3907,3.545113 +L 7.3907,3.545113,7.3907,1.781059 +L 7.3907,1.781059,7.3907,-0.000003 +L 7.3907,-0.000003,7.0933,-0.000003 +L 7.0933,-0.000003,6.8131,-0.000003 +L 6.8131,-0.000003,6.5361,-0.000003 +L 0.6173,1.334715,0.7465,1.971658 +L 0.7465,1.971658,0.8901,2.591702 +L 0.8901,2.591702,1.0446,3.203295 +L 3.1531,1.868533,2.9951,2.324837 +L 2.9951,2.324837,2.8515,2.772604 +L 2.8515,2.772604,2.7223,3.203295 +L 4.8584,2.135551,5.5628,2.135551 +L 5.5628,2.135551,6.2633,2.135551 +L 6.2633,2.135551,6.9634,2.135551 +L 4.8584,3.737266,5.5628,3.737266 +L 5.5628,3.737266,6.2633,3.737266 +L 6.2633,3.737266,6.9634,3.737266 +L 3.1531,4.499947,2.9951,4.766921 +L 2.9951,4.766921,2.8515,5.033918 +L 2.8515,5.033918,2.7223,5.300804 +L 2.7223,5.300804,2.5713,5.136977 +L 2.5713,5.136977,2.4246,4.956141 +L 2.4246,4.956141,2.2946,4.766921 +L 1.4719,5.300804,1.5945,5.567669 +L 1.5945,5.567669,1.7237,5.834731 +L 1.7237,5.834731,1.8638,6.101662 +L 1.8638,6.101662,1.5945,6.471717 +L 1.5945,6.471717,1.3174,6.824852 +L 1.3174,6.824852,1.0446,7.169515 +L 1.0446,7.169515,1.3174,7.77962 +L 1.3174,7.77962,1.5945,8.389857 +L 1.5945,8.389857,1.8638,9.000006 +L 2.2946,7.169515,2.4246,7.436424 +L 2.4246,7.436424,2.5713,7.703289 +L 2.5713,7.703289,2.7223,7.970264 +L 4.8584,6.902606,4.8584,7.436424 +L 4.8584,7.436424,4.8584,7.970264 +L 4.8584,7.970264,4.8584,8.504234 +L 4.8584,8.504234,5.5628,8.504234 +L 5.5628,8.504234,6.2633,8.504234 +L 6.2633,8.504234,6.9634,8.504234 +L 6.9634,8.504234,6.9634,7.970264 +L 6.9634,7.970264,6.9634,7.436424 +L 6.9634,7.436424,6.9634,6.902606 +L 6.9634,6.902606,6.2633,6.902606 +L 6.2633,6.902606,5.5628,6.902606 +L 5.5628,6.902606,4.8584,6.902606 + +[厳] 57 +L 0.6158,0.266906,0.9167,1.066428 +L 0.9167,1.066428,1.0291,2.925135 +L 1.0291,2.925135,1.0431,7.436424 +L 1.0431,7.436424,2.7309,7.539527 +L 2.7309,7.539527,4.4331,7.625644 +L 4.4331,7.625644,6.1427,7.703289 +L 6.1427,7.703289,6.4124,8.149699 +L 6.4124,8.149699,6.6961,8.579098 +L 6.6961,8.579098,6.9938,9.000006 +L 4.0303,-0.000003,4.0303,0.533924 +L 4.0303,0.533924,4.0303,1.067697 +L 4.0303,1.067697,4.0303,1.60169 +L 4.0303,1.60169,3.526,1.437841 +L 3.526,1.437841,3.029,1.257005 +L 3.029,1.257005,2.5386,1.067697 +L 2.5386,1.067697,2.4581,2.314855 +L 2.4581,2.314855,2.3877,3.545113 +L 2.3877,3.545113,2.3215,4.766921 +L 2.3215,4.766921,2.6017,4.766921 +L 2.6017,4.766921,2.8815,4.766921 +L 2.8815,4.766921,3.1792,4.766921 +L 3.1792,4.766921,3.1792,5.300804 +L 3.1792,5.300804,3.1792,5.834731 +L 3.1792,5.834731,3.1792,6.368614 +L 3.1792,6.368614,2.8815,6.368614 +L 2.8815,6.368614,2.6017,6.368614 +L 2.6017,6.368614,2.3215,6.368614 +L 5.2842,-0.000003,5.7115,0.636962 +L 5.7115,0.636962,6.1427,1.257005 +L 6.1427,1.257005,6.5661,1.868533 +L 6.5661,1.868533,5.9497,2.7274 +L 5.9497,2.7274,5.6173,3.577554 +L 5.6173,3.577554,5.2842,4.232994 +L 5.2842,4.232994,5.134,4.07904 +L 5.134,4.07904,4.9865,3.916635 +L 4.9865,3.916635,4.8569,3.737266 +L 7.8484,-0.000003,7.5503,0.370096 +L 7.5503,0.370096,7.2701,0.723122 +L 7.2701,0.723122,6.9938,1.067697 +L 4.0303,2.402482,3.61,2.505629 +L 3.61,2.505629,3.1792,2.591702 +L 3.1792,2.591702,2.7519,2.669478 +L 6.9938,2.669478,6.9938,3.382686 +L 6.9938,3.382686,6.9938,4.07904 +L 6.9938,4.07904,6.9938,4.766921 +L 6.9938,4.766921,6.4124,4.766921 +L 6.4124,4.766921,5.8415,4.766921 +L 5.8415,4.766921,5.2842,4.766921 +L 4.0303,3.470357,3.61,3.573439 +L 3.61,3.573439,3.1792,3.659578 +L 3.1792,3.659578,2.7519,3.737266 +L 5.7115,5.300804,5.7115,5.67097 +L 5.7115,5.67097,5.7115,6.023951 +L 5.7115,6.023951,5.7115,6.368614 +L 6.5661,7.436424,6.9938,7.436424 +L 6.9938,7.436424,7.4211,7.436424 +L 7.4211,7.436424,7.8484,7.436424 + +[源] 51 +L 0.649,0.266906,1.0763,1.437841 +L 1.0763,1.437841,1.5001,2.591702 +L 1.5001,2.591702,1.9274,3.737266 +L 1.9274,0.266906,2.6979,2.995841 +L 2.6979,2.995841,2.817,5.699098 +L 2.817,5.699098,2.7504,8.504234 +L 2.7504,8.504234,4.4386,8.504234 +L 4.4386,8.504234,6.1408,8.504234 +L 6.1408,8.504234,7.8469,8.504234 +L 4.8908,-0.000003,5.1636,-0.000003 +L 5.1636,-0.000003,5.4438,-0.000003 +L 5.4438,-0.000003,5.7419,-0.000003 +L 5.7419,-0.000003,5.7419,1.257005 +L 5.7419,1.257005,5.7419,2.505629 +L 5.7419,2.505629,5.7419,3.737266 +L 5.7419,3.737266,5.1636,3.737266 +L 5.1636,3.737266,4.5927,3.737266 +L 4.5927,3.737266,4.0323,3.737266 +L 4.0323,3.737266,4.0323,4.803675 +L 4.0323,4.803675,4.0323,5.861524 +L 4.0323,5.861524,4.0323,6.902606 +L 4.0323,6.902606,4.9538,7.12 +L 4.9538,7.12,5.3951,7.396824 +L 5.3951,7.396824,5.7419,7.970264 +L 3.1812,0.533924,3.4548,1.067697 +L 3.4548,1.067697,3.735,1.60169 +L 3.735,1.60169,4.0323,2.135551 +L 7.8469,0.533924,7.5558,1.067697 +L 7.5558,1.067697,7.2686,1.60169 +L 7.2686,1.60169,6.9958,2.135551 +L 6.1692,3.737266,6.5755,3.737266 +L 6.5755,3.737266,6.9958,3.737266 +L 6.9958,3.737266,7.4157,3.737266 +L 7.4157,3.737266,7.4157,4.269726 +L 7.4157,4.269726,7.4157,4.79378 +L 7.4157,4.79378,7.4157,5.300804 +L 7.4157,5.300804,6.421,5.300804 +L 6.421,5.300804,5.4372,5.300804 +L 5.4372,5.300804,4.4596,5.300804 +L 1.5001,5.834731,1.2097,6.204808 +L 1.2097,6.204808,0.9225,6.557921 +L 0.9225,6.557921,0.649,6.902606 +L 7.4157,5.834731,7.4157,6.204808 +L 7.4157,6.204808,7.4157,6.557921 +L 7.4157,6.557921,7.4157,6.902606 +L 7.4157,6.902606,6.8522,6.902606 +L 6.8522,6.902606,6.2949,6.902606 +L 6.2949,6.902606,5.7419,6.902606 +L 1.9274,7.970264,1.63,8.313459 +L 1.63,8.313459,1.3498,8.65681 +L 1.3498,8.65681,1.0763,9.000006 + +[己] 18 +L 1.5021,0.533924,1.2184,1.066428 +L 1.2184,1.066428,1.1203,2.30218 +L 1.1203,2.30218,1.1066,5.300804 +L 1.1066,5.300804,2.9381,5.300804 +L 2.9381,5.300804,4.7628,5.300804 +L 4.7628,5.300804,6.5981,5.300804 +L 6.5981,5.300804,6.5981,6.368614 +L 6.5981,6.368614,6.5981,7.436424 +L 6.5981,7.436424,6.5981,8.504234 +L 6.5981,8.504234,4.7628,8.504234 +L 4.7628,8.504234,2.9381,8.504234 +L 2.9381,8.504234,1.1066,8.504234 +L 1.9332,0.533924,3.7615,0.533924 +L 3.7615,0.533924,5.6038,0.533924 +L 5.6038,0.533924,7.4527,0.533924 +L 7.4527,0.533924,7.4527,1.257005 +L 7.4527,1.257005,7.4527,1.971658 +L 7.4527,1.971658,7.4527,2.669478 + +[誤] 38 +L 3.6686,-0.000003,4.0714,0.723122 +L 4.0714,0.723122,4.4917,1.437841 +L 4.4917,1.437841,4.9225,2.135551 +L 7.8785,-0.000003,7.4547,0.723122 +L 7.4547,0.723122,7.0348,1.437841 +L 7.0348,1.437841,6.6285,2.135551 +L 3.2413,3.203295,4.5025,3.203295 +L 4.5025,3.203295,5.7736,3.203295 +L 5.7736,3.203295,7.0558,3.203295 +L 7.0558,3.203295,7.0558,3.735865 +L 7.0558,3.735865,7.0558,4.25981 +L 7.0558,4.25981,7.0558,4.766921 +L 7.0558,4.766921,6.0502,4.766921 +L 6.0502,4.766921,5.0524,4.766921 +L 5.0524,4.766921,4.0647,4.766921 +L 4.0647,4.766921,4.0647,5.834731 +L 4.0647,5.834731,4.0647,6.902606 +L 4.0647,6.902606,4.0647,7.970264 +L 5.3463,6.368614,5.3463,7.09176 +L 5.3463,7.09176,5.3463,7.806393 +L 5.3463,7.806393,5.3463,8.504234 +L 5.3463,8.504234,5.9035,8.504234 +L 5.9035,8.504234,6.4744,8.504234 +L 6.4744,8.504234,7.0558,8.504234 +L 7.0558,8.504234,7.0558,7.806393 +L 7.0558,7.806393,7.0558,7.09176 +L 7.0558,7.09176,7.0558,6.368614 +L 7.0558,6.368614,6.4744,6.368614 +L 6.4744,6.368614,5.9035,6.368614 +L 5.9035,6.368614,5.3463,6.368614 +L 0.6813,6.902519,3.2136,6.902519 +L 1.1016,8.504343,2.7828,8.504343 +L 1.1016,5.300979,2.7828,5.300979 +L 1.1016,4.233038,2.7828,4.233038 +L 1.1016,2.669544,2.7828,2.669544 +L 1.1016,-0.000003,1.1016,2.669544 +L 2.7828,-0.000003,1.1016,-0.000003 +L 2.7828,2.669544,2.7828,-0.000003 + +[后] 21 +L 0.7075,0.266906,1.3765,2.91651 +L 1.3765,2.91651,1.5656,5.295069 +L 1.5656,5.295069,1.5656,7.970264 +L 1.5656,7.970264,4.1329,8.127064 +L 4.1329,8.127064,5.7619,8.512706 +L 5.7619,8.512706,7.4851,9.000006 +L 3.2398,-0.000003,3.2398,1.257005 +L 3.2398,1.257005,3.2398,2.505629 +L 3.2398,2.505629,3.2398,3.737266 +L 3.2398,3.737266,4.5007,3.737266 +L 4.5007,3.737266,5.7756,3.737266 +L 5.7756,3.737266,7.0543,3.737266 +L 7.0543,3.737266,7.0543,2.505629 +L 7.0543,2.505629,7.0543,1.257005 +L 7.0543,1.257005,7.0543,-0.000003 +L 7.0543,-0.000003,5.7756,-0.000003 +L 5.7756,-0.000003,4.5007,-0.000003 +L 4.5007,-0.000003,3.2398,-0.000003 +L 1.9894,5.834731,3.9508,5.834731 +L 3.9508,5.834731,5.9265,5.834731 +L 5.9265,5.834731,7.9054,5.834731 + +[孝] 45 +L 3.2701,-0.000003,3.6974,-0.000003 +L 3.6974,-0.000003,4.1279,-0.000003 +L 4.1279,-0.000003,4.5552,-0.000003 +L 4.5552,-0.000003,4.0792,2.011214 +L 4.0792,2.011214,2.8499,2.310674 +L 2.8499,2.310674,1.1333,2.135551 +L 4.9513,2.135551,4.8673,2.505629 +L 4.8673,2.505629,4.7969,2.858807 +L 4.7969,2.858807,4.7373,3.203295 +L 4.7373,3.203295,5.0841,3.64977 +L 5.0841,3.64977,5.4382,4.07904 +L 5.4382,4.07904,5.8024,4.499947 +L 5.8024,4.499947,3.8057,4.163755 +L 3.8057,4.163755,2.17,3.539531 +L 2.17,3.539531,0.7379,3.203295 +L 5.3786,2.135551,6.2329,2.135551 +L 6.2329,2.135551,7.084,2.135551 +L 7.084,2.135551,7.9421,2.135551 +L 4.1279,5.300804,4.2575,5.567669 +L 4.2575,5.567669,4.4014,5.834731 +L 4.4014,5.834731,4.5552,6.101662 +L 4.5552,6.101662,3.2772,6.204808 +L 3.2772,6.204808,1.9988,6.290991 +L 1.9988,6.290991,0.7379,6.368614 +L 5.1611,6.368614,5.3786,6.73878 +L 5.3786,6.73878,5.5884,7.09176 +L 5.5884,7.09176,5.8024,7.436424 +L 5.8024,7.436424,5.4592,7.812084 +L 5.4592,7.812084,5.0245,7.95054 +L 5.0245,7.95054,4.1279,7.970264 +L 4.1279,7.970264,3.9776,7.625644 +L 3.9776,7.625644,3.8302,7.272575 +L 3.8302,7.272575,3.6974,6.902606 +L 5.8024,6.368614,6.5064,6.368614 +L 6.5064,6.368614,7.2136,6.368614 +L 7.2136,6.368614,7.9421,6.368614 +L 1.5641,7.970264,2.1213,7.970264 +L 2.1213,7.970264,2.6919,7.970264 +L 2.6919,7.970264,3.2701,7.970264 +L 3.2701,7.970264,3.4029,8.313459 +L 3.4029,8.313459,3.5465,8.65681 +L 3.5465,8.65681,3.6974,9.000006 +L 6.2329,7.970264,6.5064,8.313459 +L 6.5064,8.313459,6.7936,8.65681 +L 6.7936,8.65681,7.084,9.000006 + +[皇] 42 +L 0.7399,-0.000003,1.8712,-0.000003 +L 1.8712,-0.000003,2.9986,-0.000003 +L 2.9986,-0.000003,4.1267,-0.000003 +L 4.1267,-0.000003,3.7205,1.483022 +L 3.7205,1.483022,2.7534,1.720226 +L 2.7534,1.720226,1.5945,1.60169 +L 4.5537,-0.000003,5.5309,-0.000003 +L 5.5309,-0.000003,6.5154,-0.000003 +L 6.5154,-0.000003,7.5133,-0.000003 +L 4.5537,1.60169,4.2525,2.016862 +L 4.2525,2.016862,4.1408,2.4321 +L 4.1408,2.4321,4.1267,3.203295 +L 4.1267,3.203295,3.1321,3.203295 +L 3.1321,3.203295,2.144,3.203295 +L 2.144,3.203295,1.1707,3.203295 +L 4.981,1.60169,5.5417,1.60169 +L 5.5417,1.60169,6.1123,1.60169 +L 6.1123,1.60169,6.6905,1.60169 +L 4.5537,3.203295,5.4083,3.203295 +L 5.4083,3.203295,6.2594,3.203295 +L 6.2594,3.203295,7.1178,3.203295 +L 1.5945,4.766921,1.5945,5.834731 +L 1.5945,5.834731,1.5945,6.902606 +L 1.5945,6.902606,1.5945,7.970264 +L 1.5945,7.970264,3.09,8.186386 +L 3.09,8.186386,3.7481,8.453339 +L 3.7481,8.453339,4.1267,9.000006 +L 2.0218,4.766921,3.5804,4.766921 +L 3.5804,4.766921,5.132,4.766921 +L 5.132,4.766921,6.6905,4.766921 +L 6.6905,4.766921,6.6905,5.300804 +L 6.6905,5.300804,6.6905,5.834731 +L 6.6905,5.834731,6.6905,6.368614 +L 6.6905,6.368614,5.132,6.368614 +L 5.132,6.368614,3.5804,6.368614 +L 3.5804,6.368614,2.0218,6.368614 +L 6.6905,6.902606,6.6905,7.272575 +L 6.6905,7.272575,6.6905,7.625644 +L 6.6905,7.625644,6.6905,7.970264 +L 6.6905,7.970264,5.8356,7.970264 +L 5.8356,7.970264,4.981,7.970264 +L 4.981,7.970264,4.1267,7.970264 + +[紅] 45 +L 2.0203,-0.000003,2.0203,1.600201 +L 2.0203,1.600201,2.0203,3.192022 +L 2.0203,3.192022,2.0203,4.766921 +L 2.0203,4.766921,1.593,4.766921 +L 1.593,4.766921,1.1793,4.766921 +L 1.1793,4.766921,0.7695,4.766921 +L 3.7291,-0.000003,4.43,-0.000003 +L 4.43,-0.000003,5.134,-0.000003 +L 5.134,-0.000003,5.8341,-0.000003 +L 5.8341,-0.000003,5.8341,2.668055 +L 5.8341,2.668055,5.8341,5.327642 +L 5.8341,5.327642,5.8341,7.970264 +L 5.8341,7.970264,5.2632,7.970264 +L 5.2632,7.970264,4.7102,7.970264 +L 4.7102,7.970264,4.1603,7.970264 +L 6.2652,-0.000003,6.8218,-0.000003 +L 6.8218,-0.000003,7.3927,-0.000003 +L 7.3927,-0.000003,7.9709,-0.000003 +L 0.7695,1.334715,0.8995,1.971658 +L 0.8995,1.971658,1.0466,2.591702 +L 1.0466,2.591702,1.1968,3.203295 +L 3.3018,1.868533,3.1516,2.324837 +L 3.1516,2.324837,3.008,2.772604 +L 3.008,2.772604,2.8745,3.203295 +L 3.3018,4.499947,3.1516,4.766921 +L 3.1516,4.766921,3.008,5.033918 +L 3.008,5.033918,2.8745,5.300804 +L 2.8745,5.300804,2.7208,5.136977 +L 2.7208,5.136977,2.5807,4.956141 +L 2.5807,4.956141,2.4507,4.766921 +L 1.628,5.300804,1.7467,5.567669 +L 1.7467,5.567669,1.8802,5.834731 +L 1.8802,5.834731,2.0203,6.101662 +L 2.0203,6.101662,1.7467,6.471717 +L 1.7467,6.471717,1.4704,6.824852 +L 1.4704,6.824852,1.1968,7.169515 +L 1.1968,7.169515,1.4704,7.77962 +L 1.4704,7.77962,1.7467,8.389857 +L 1.7467,8.389857,2.0203,9.000006 +L 2.4507,6.902606,2.5807,7.272575 +L 2.5807,7.272575,2.7208,7.625644 +L 2.7208,7.625644,2.8745,7.970264 +L 6.2652,7.970264,6.6925,7.970264 +L 6.6925,7.970264,7.1163,7.970264 +L 7.1163,7.970264,7.5436,7.970264 + +[鋼] 54 +L 0.768,-0.000003,1.1988,-0.000003 +L 1.1988,-0.000003,1.6261,-0.000003 +L 1.6261,-0.000003,2.0499,-0.000003 +L 2.0499,-0.000003,2.127,2.286682 +L 2.127,2.286682,1.9172,4.056427 +L 1.9172,4.056427,0.768,4.766921 +L 4.1868,-0.000003,4.1868,2.848825 +L 4.1868,2.848825,4.1868,5.680754 +L 4.1868,5.680754,4.1868,8.504234 +L 4.1868,8.504234,5.3181,8.504234 +L 5.3181,8.504234,6.4459,8.504234 +L 6.4459,8.504234,7.5733,8.504234 +L 7.5733,8.504234,7.5733,5.680754 +L 7.5733,5.680754,7.5733,2.848825 +L 7.5733,2.848825,7.5733,-0.000003 +L 7.5733,-0.000003,7.2795,-0.000003 +L 7.2795,-0.000003,6.9923,-0.000003 +L 6.9923,-0.000003,6.7222,-0.000003 +L 2.6944,0.533924,2.9084,0.723122 +L 2.9084,0.723122,3.1217,0.903914 +L 3.1217,0.903914,3.3357,1.067697 +L 1.1988,1.868533,1.0486,2.324837 +L 1.0486,2.324837,0.9015,2.772604 +L 0.9015,2.772604,0.768,3.203295 +L 5.0134,1.60169,5.0134,2.478813 +L 5.0134,2.478813,5.0134,3.355893 +L 5.0134,3.355893,5.0134,4.232994 +L 5.6505,1.60169,5.7135,3.012718 +L 5.7135,3.012718,5.7839,4.423747 +L 5.7839,4.423747,5.8645,5.834731 +L 5.8645,5.834731,5.5734,5.834731 +L 5.5734,5.834731,5.2862,5.834731 +L 5.2862,5.834731,5.0134,5.834731 +L 6.5051,1.60169,6.5685,2.478813 +L 6.5685,2.478813,6.6382,3.355893 +L 6.6382,3.355893,6.7222,4.232994 +L 2.9084,2.402482,3.0376,2.858807 +L 3.0376,2.858807,3.1812,3.306465 +L 3.1812,3.306465,3.3357,3.737266 +L 2.4772,4.766921,2.1799,5.182093 +L 2.1799,5.182093,2.0675,5.597418 +L 2.0675,5.597418,2.0499,6.368614 +L 2.0499,6.368614,1.437,6.388402 +L 1.437,6.388402,1.1046,6.526837 +L 1.1046,6.526837,0.768,6.902606 +L 0.768,6.902606,1.1988,7.615815 +L 1.1988,7.615815,1.6261,8.312168 +L 1.6261,8.312168,2.0499,9.000006 +L 2.0499,9.000006,2.4772,8.492938 +L 2.4772,8.492938,2.9084,7.968841 +L 2.9084,7.968841,3.3357,7.436424 +L 6.2918,6.101662,6.4245,6.557921 +L 6.4245,6.557921,6.5685,7.005666 +L 6.5685,7.005666,6.7222,7.436424 + +[刻] 36 +L 0.8019,-0.000003,2.4866,1.580456 +L 2.4866,1.580456,3.4778,2.677994 +L 3.4778,2.677994,4.6157,4.232994 +L 4.6157,0.266906,4.3219,0.723122 +L 4.3219,0.723122,4.0343,1.17091 +L 4.0343,1.17091,3.7615,1.60169 +L 6.3214,-0.000003,6.7316,-0.000003 +L 6.7316,-0.000003,7.1515,-0.000003 +L 7.1515,-0.000003,7.5718,-0.000003 +L 7.5718,-0.000003,7.5718,3.011295 +L 7.5718,3.011295,7.5718,6.0141 +L 7.5718,6.0141,7.5718,9.000006 +L 5.8976,2.135551,5.8976,4.080419 +L 5.8976,4.080419,5.8976,6.025374 +L 5.8976,6.025374,5.8976,7.970264 +L 0.8019,2.669478,1.5021,3.382686 +L 1.5021,3.382686,2.2029,4.07904 +L 2.2029,4.07904,2.9069,4.766921 +L 2.9069,4.766921,2.2936,5.716085 +L 2.2936,5.716085,1.8562,6.131411 +L 1.8562,6.131411,1.2257,6.368614 +L 3.3342,5.300804,3.6105,5.67097 +L 3.6105,5.67097,3.8907,6.023951 +L 3.8907,6.023951,4.1884,6.368614 +L 2.5076,6.902606,2.5076,7.272575 +L 2.5076,7.272575,2.5076,7.625644 +L 2.5076,7.625644,2.5076,7.970264 +L 2.5076,7.970264,1.9294,7.970264 +L 1.9294,7.970264,1.3585,7.970264 +L 1.3585,7.970264,0.8019,7.970264 +L 2.9069,7.970264,2.9069,8.313459 +L 2.9069,8.313459,2.9069,8.65681 +L 2.9069,8.65681,2.9069,9.000006 +L 3.3342,7.970264,3.8907,7.970264 +L 3.8907,7.970264,4.462,7.970264 +L 4.462,7.970264,5.0395,7.970264 + +[骨] 51 +L 2.5093,-0.000003,2.5093,1.410982 +L 2.5093,1.410982,2.5093,2.821944 +L 2.5093,2.821944,2.5093,4.232994 +L 2.5093,4.232994,3.6409,4.232994 +L 3.6409,4.232994,4.7687,4.232994 +L 4.7687,4.232994,5.8961,4.232994 +L 5.8961,4.232994,5.8961,2.821944 +L 5.8961,2.821944,5.8961,1.410982 +L 5.8961,1.410982,5.8961,-0.000003 +L 5.8961,-0.000003,5.4723,-0.000003 +L 5.4723,-0.000003,5.0524,-0.000003 +L 5.0524,-0.000003,4.6461,-0.000003 +L 2.9401,2.135551,3.7701,2.135551 +L 3.7701,2.135551,4.6142,2.135551 +L 4.6142,2.135551,5.4723,2.135551 +L 2.9401,3.203295,3.7701,3.203295 +L 3.7701,3.203295,4.6142,3.203295 +L 4.6142,3.203295,5.4723,3.203295 +L 0.8316,4.232994,0.8316,4.766921 +L 0.8316,4.766921,0.8316,5.300804 +L 0.8316,5.300804,0.8316,5.834731 +L 0.8316,5.834731,1.3815,5.834731 +L 1.3815,5.834731,1.9387,5.834731 +L 1.9387,5.834731,2.5093,5.834731 +L 2.5093,5.834731,2.5093,6.73878 +L 2.5093,6.73878,2.5093,7.625644 +L 2.5093,7.625644,2.5093,8.504234 +L 2.5093,8.504234,3.6409,8.504234 +L 3.6409,8.504234,4.7687,8.504234 +L 4.7687,8.504234,5.8961,8.504234 +L 5.8961,8.504234,5.8961,7.625644 +L 5.8961,7.625644,5.8961,6.73878 +L 5.8961,6.73878,5.8961,5.834731 +L 5.8961,5.834731,6.4534,5.834731 +L 6.4534,5.834731,7.0239,5.834731 +L 7.0239,5.834731,7.6057,5.834731 +L 7.6057,5.834731,7.6057,5.300804 +L 7.6057,5.300804,7.6057,4.766921 +L 7.6057,4.766921,7.6057,4.232994 +L 2.9401,5.834731,3.3639,5.834731 +L 3.3639,5.834731,3.7912,5.834731 +L 3.7912,5.834731,4.2188,5.834731 +L 4.2188,5.834731,4.2188,6.368614 +L 4.2188,6.368614,4.2188,6.902606 +L 4.2188,6.902606,4.2188,7.436424 +L 4.2188,7.436424,4.6251,7.436424 +L 4.6251,7.436424,5.045,7.436424 +L 5.045,7.436424,5.4723,7.436424 +L 4.6461,5.834731,4.9189,5.834731 +L 4.9189,5.834731,5.1925,5.834731 +L 5.1925,5.834731,5.4723,5.834731 + +[砂] 33 +L 3.7932,-0.000003,5.3868,0.936399 +L 5.3868,0.936399,6.5324,2.406707 +L 6.5324,2.406707,7.6353,4.232994 +L 1.2574,1.60169,1.3698,5.15392 +L 1.3698,5.15392,1.5765,7.062121 +L 1.5765,7.062121,1.6885,8.504234 +L 1.6885,8.504234,1.3908,8.504234 +L 1.3908,8.504234,1.1071,8.504234 +L 1.1071,8.504234,0.8301,8.504234 +L 1.6885,1.60169,2.1158,1.60169 +L 2.1158,1.60169,2.5396,1.60169 +L 2.5396,1.60169,2.9669,1.60169 +L 2.9669,1.60169,2.9669,2.848825 +L 2.9669,2.848825,2.9669,4.07904 +L 2.9669,4.07904,2.9669,5.300804 +L 2.9669,5.300804,2.5396,5.300804 +L 2.5396,5.300804,2.1158,5.300804 +L 2.1158,5.300804,1.6885,5.300804 +L 5.0719,3.203295,5.3482,3.203295 +L 5.3482,3.203295,5.6284,3.203295 +L 5.6284,3.203295,5.9297,3.203295 +L 5.9297,3.203295,5.9297,5.146915 +L 5.9297,5.146915,5.9297,7.08191 +L 5.9297,7.08191,5.9297,9.000006 +L 3.7932,4.766921,4.3956,5.933544 +L 4.3956,5.933544,4.6131,6.625716 +L 4.6131,6.625716,4.6446,7.436424 +L 8.0346,5.567669,7.7579,6.204808 +L 7.7579,6.204808,7.4816,6.824852 +L 7.4816,6.824852,7.208,7.436424 +L 2.1158,8.504234,2.5396,8.504234 +L 2.5396,8.504234,2.9669,8.504234 +L 2.9669,8.504234,3.3977,8.504234 + +[裁] 60 +L 1.2878,-0.000003,1.5641,-0.000003 +L 1.5641,-0.000003,1.8478,-0.000003 +L 1.8478,-0.000003,2.1455,-0.000003 +L 2.1455,-0.000003,2.0618,0.903914 +L 2.0618,0.903914,1.9952,1.790954 +L 1.9952,1.790954,1.9322,2.669478 +L 1.9322,2.669478,1.5641,2.505629 +L 1.5641,2.505629,1.2107,2.324837 +L 1.2107,2.324837,0.864,2.135551 +L 7.6338,-0.000003,7.21,0.533924 +L 7.21,0.533924,6.7827,1.067697 +L 6.7827,1.067697,6.3523,1.60169 +L 6.3523,1.60169,5.9982,1.257005 +L 5.9982,1.257005,5.6515,0.903914 +L 5.6515,0.903914,5.3156,0.533924 +L 5.3156,0.533924,4.9513,0.903914 +L 4.9513,0.903914,4.5937,1.257005 +L 4.5937,1.257005,4.2505,1.60169 +L 4.2505,1.60169,3.6729,1.257005 +L 3.6729,1.257005,3.1017,0.903914 +L 3.1017,0.903914,2.5416,0.533924 +L 8.0611,-0.000003,8.0611,0.533924 +L 8.0611,0.533924,8.0611,1.067697 +L 8.0611,1.067697,8.0611,1.60169 +L 3.82,2.135551,3.3962,2.505629 +L 3.3962,2.505629,2.9689,2.858807 +L 2.9689,2.858807,2.5416,3.203295 +L 2.5416,3.203295,2.7374,4.063498 +L 2.7374,4.063498,1.9459,4.262721 +L 1.9459,4.262721,1.2878,4.232994 +L 6.3523,2.135551,5.6515,4.399602 +L 5.6515,4.399602,4.8287,6.646884 +L 4.8287,6.646884,2.9689,5.834731 +L 2.9689,5.834731,3.1017,4.707576 +L 3.1017,4.707576,3.6095,4.292427 +L 3.6095,4.292427,4.6778,4.232994 +L 6.7827,2.669478,7.0563,3.382686 +L 7.0563,3.382686,7.3435,4.07904 +L 7.3435,4.07904,7.6338,4.766921 +L 0.864,6.368614,2.0583,6.398297 +L 2.0583,6.398297,2.6047,6.605927 +L 2.6047,6.605927,2.9689,7.169515 +L 2.9689,7.169515,2.6222,7.732994 +L 2.6222,7.732994,2.1844,7.940645 +L 2.1844,7.940645,1.2878,7.970264 +L 5.96,6.368614,5.655,6.821984 +L 5.655,6.821984,5.5464,7.504174 +L 5.5464,7.504174,5.5289,9.000006 +L 6.3523,6.368614,6.9127,6.368614 +L 6.9127,6.368614,7.4836,6.368614 +L 7.4836,6.368614,8.0611,6.368614 +L 7.6338,7.436424,7.3435,7.806393 +L 7.3435,7.806393,7.0563,8.159615 +L 7.0563,8.159615,6.7827,8.504234 +L 3.3962,7.970264,3.2418,8.313459 +L 3.2418,8.313459,3.1017,8.65681 +L 3.1017,8.65681,2.9689,9.000006 +L 3.82,7.970264,4.0964,7.970264 +L 4.0964,7.970264,4.3801,7.970264 +L 4.3801,7.970264,4.6778,7.970264 + +[策] 51 +L 4.2493,-0.000003,4.235,1.522578 +L 4.235,1.522578,4.1232,2.214619 +L 4.1232,2.214619,3.8252,2.669478 +L 3.8252,2.669478,2.2876,1.166707 +L 2.2876,1.166707,1.5206,0.612992 +L 1.5206,0.612992,0.8625,0.533924 +L 6.7812,0.533924,5.1001,2.71328 +L 5.1001,2.71328,3.7516,3.884106 +L 3.7516,3.884106,1.6852,4.232994 +L 1.6852,4.232994,1.6852,3.725949 +L 1.6852,3.725949,1.6852,3.20196 +L 1.6852,3.20196,1.6852,2.669478 +L 5.927,2.669478,6.1998,2.669478 +L 6.1998,2.669478,6.4874,2.669478 +L 6.4874,2.669478,6.7812,2.669478 +L 6.7812,2.669478,6.7812,3.20196 +L 6.7812,3.20196,6.7812,3.725949 +L 6.7812,3.725949,6.7812,4.232994 +L 6.7812,4.232994,6.0808,4.232994 +L 6.0808,4.232994,5.3771,4.232994 +L 5.3771,4.232994,4.6763,4.232994 +L 4.6763,4.232994,4.3824,4.766921 +L 4.3824,4.766921,4.0949,5.300804 +L 4.0949,5.300804,3.8252,5.834731 +L 3.8252,5.834731,2.8238,5.834731 +L 2.8238,5.834731,1.8396,5.834731 +L 1.8396,5.834731,0.8625,5.834731 +L 4.6763,5.834731,4.526,6.101662 +L 4.526,6.101662,4.3824,6.368614 +L 4.3824,6.368614,4.2493,6.635567 +L 4.2493,6.635567,4.526,7.434979 +L 4.526,7.434979,4.7989,8.225943 +L 4.7989,8.225943,5.0724,9.000006 +L 5.0724,5.834731,5.927,5.834731 +L 5.927,5.834731,6.7812,5.834731 +L 6.7812,5.834731,7.6358,5.834731 +L 0.8625,6.902606,1.1353,7.615815 +L 1.1353,7.615815,1.4155,8.312168 +L 1.4155,8.312168,1.6852,9.000006 +L 2.9674,6.902606,2.6729,7.272575 +L 2.6729,7.272575,2.3892,7.625644 +L 2.3892,7.625644,2.1163,7.970264 +L 6.3575,6.902606,6.0597,7.272575 +L 6.0597,7.272575,5.776,7.625644 +L 5.776,7.625644,5.4997,7.970264 +L 2.9674,7.970264,3.2438,7.970264 +L 3.2438,7.970264,3.5275,7.970264 +L 3.5275,7.970264,3.8252,7.970264 +L 6.3575,7.970264,6.7812,7.970264 +L 6.7812,7.970264,7.2085,7.970264 +L 7.2085,7.970264,7.6358,7.970264 + +[冊] 7 +L 6.8151,8.504234,1.7156,8.504234 +L 1.7156,8.504234,1.7156,-0.000003 +L 0.8645,4.766921,7.6378,4.766921 +L 3.3967,8.504234,3.3967,-0.000003 +L 5.1056,8.504234,5.1056,-0.000003 +L 6.8151,8.504234,6.8151,-0.000003 +L 6.8151,-0.000003,5.9567,-0.000003 + +[蚕] 48 +L 1.2903,-0.000003,2.2671,-0.000003 +L 2.2671,-0.000003,3.2516,-0.000003 +L 3.2516,-0.000003,4.2495,-0.000003 +L 4.2495,-0.000003,4.0397,1.75698 +L 4.0397,1.75698,3.3599,2.183535 +L 3.3599,2.183535,2.113,2.135551 +L 2.113,2.135551,2.0328,2.772604 +L 2.0328,2.772604,1.9659,3.392559 +L 1.9659,3.392559,1.8997,4.004197 +L 1.8997,4.004197,1.5456,4.080419 +L 1.5456,4.080419,1.1988,4.156706 +L 1.1988,4.156706,0.8595,4.232994 +L 4.6736,-0.000003,5.3146,0.395446 +L 5.3146,0.395446,6.1408,0.672314 +L 6.1408,0.672314,6.7852,1.067697 +L 6.7852,1.067697,5.8645,2.064867 +L 5.8645,2.064867,4.8624,2.587608 +L 4.8624,2.587608,3.8225,3.737266 +L 3.8225,3.737266,3.3952,3.737266 +L 3.3952,3.737266,2.9644,3.737266 +L 2.9644,3.737266,2.5406,3.737266 +L 6.3548,2.669478,6.3548,3.03949 +L 6.3548,3.03949,6.3548,3.392559 +L 6.3548,3.392559,6.3548,3.737266 +L 6.3548,3.737266,5.7839,3.737266 +L 5.7839,3.737266,5.2267,3.737266 +L 5.2267,3.737266,4.6736,3.737266 +L 4.6736,3.737266,4.523,4.080419 +L 4.523,4.080419,4.3791,4.423747 +L 4.3791,4.423747,4.2495,4.766921 +L 6.7852,4.232994,4.9083,6.252726 +L 4.9083,6.252726,3.7451,6.408148 +L 3.7451,6.408148,2.113,4.766921 +L 1.2903,6.902606,1.9904,6.902606 +L 1.9904,6.902606,2.6944,6.902606 +L 2.6944,6.902606,3.3952,6.902606 +L 5.1041,6.902606,5.8049,6.902606 +L 5.8049,6.902606,6.5051,6.902606 +L 6.5051,6.902606,7.2055,6.902606 +L 4.2495,7.436424,4.2495,7.806393 +L 4.2495,7.806393,4.2495,8.159615 +L 4.2495,8.159615,4.2495,8.504234 +L 4.2495,8.504234,3.1217,8.504234 +L 3.1217,8.504234,1.9904,8.504234 +L 1.9904,8.504234,0.8595,8.504234 +L 4.6736,8.504234,5.654,8.504234 +L 5.654,8.504234,6.635,8.504234 +L 6.635,8.504234,7.6363,8.504234 + +[姿] 48 +L 1.2887,-0.000003,3.2291,0.280915 +L 3.2291,0.280915,4.4546,0.977246 +L 4.4546,0.977246,2.9976,1.868533 +L 2.9976,1.868533,3.131,2.238742 +L 3.131,2.238742,3.2746,2.591702 +L 3.2746,2.591702,3.4284,2.936365 +L 3.4284,2.936365,2.5703,3.03949 +L 2.5703,3.03949,1.716,3.125672 +L 1.716,3.125672,0.865,3.203295 +L 6.8121,-0.000003,6.2339,0.370096 +L 6.2339,0.370096,5.6633,0.723122 +L 5.6633,0.723122,5.1026,1.067697 +L 5.5334,1.60169,5.8279,2.016862 +L 5.8279,2.016862,5.94,2.4321 +L 5.94,2.4321,5.9537,3.203295 +L 5.9537,3.203295,5.2535,3.203295 +L 5.2535,3.203295,4.553,3.203295 +L 4.553,3.203295,3.8522,3.203295 +L 3.8522,3.203295,3.8522,3.546645 +L 3.8522,3.546645,3.8522,3.889776 +L 3.8522,3.889776,3.8522,4.232994 +L 6.3845,3.203295,6.9449,3.203295 +L 6.9449,3.203295,7.5123,3.203295 +L 7.5123,3.203295,8.094,3.203295 +L 0.865,4.232994,1.2887,4.766921 +L 1.2887,4.766921,1.716,5.300804 +L 1.716,5.300804,2.1433,5.834731 +L 2.7878,4.766921,3.5513,5.490024 +L 3.5513,5.490024,4.318,6.204808 +L 4.318,6.204808,5.1026,6.902606 +L 5.1026,6.902606,5.1026,7.272575 +L 5.1026,7.272575,5.1026,7.625644 +L 5.1026,7.625644,5.1026,7.970264 +L 5.1026,7.970264,4.1919,7.930707 +L 4.1919,7.930707,3.6455,7.65397 +L 3.6455,7.65397,2.9976,6.902606 +L 7.2429,4.766921,6.6612,5.300804 +L 6.6612,5.300804,6.0871,5.834731 +L 6.0871,5.834731,5.5334,6.368614 +L 6.8121,6.902606,6.9449,7.169515 +L 6.9449,7.169515,7.0885,7.436424 +L 7.0885,7.436424,7.2429,7.703289 +L 7.2429,7.703289,6.6612,7.806393 +L 6.6612,7.806393,6.0871,7.892618 +L 6.0871,7.892618,5.5334,7.970264 +L 2.1433,7.970264,1.8453,8.313459 +L 1.8453,8.313459,1.5651,8.65681 +L 1.5651,8.65681,1.2887,9.000006 + + +# kan_19 ------------------------------------------------------- +# 至視詞磁射捨尺樹収宗衆縦縮熟純処署諸除傷将障城蒸針仁垂推寸盛聖誠宣専泉染善創奏層操装臓蔵存尊担探 + +[至] 36 +L 0.0034,-0.000003,1.1308,-0.000003 +L 1.1308,-0.000003,2.2621,-0.000003 +L 2.2621,-0.000003,3.3938,-0.000003 +L 3.3938,-0.000003,3.1833,2.156763 +L 3.1833,2.156763,2.4092,2.6864 +L 2.4092,2.6864,0.8615,2.631345 +L 3.8176,-0.000003,4.7944,-0.000003 +L 4.7944,-0.000003,5.7786,-0.000003 +L 5.7786,-0.000003,6.7768,-0.000003 +L 3.8176,2.631345,3.5125,3.084759 +L 3.5125,3.084759,3.4074,3.766971 +L 3.4074,3.766971,3.3938,5.262737 +L 3.3938,5.262737,2.3921,5.262737 +L 2.3921,5.262737,1.4075,5.262737 +L 1.4075,5.262737,0.4304,5.262737 +L 4.2449,2.631345,4.7944,2.631345 +L 4.7944,2.631345,5.3481,2.631345 +L 5.3481,2.631345,5.9187,2.631345 +L 6.3498,5.033874,6.1989,5.299403 +L 6.1989,5.299403,6.0518,5.556527 +L 6.0518,5.556527,5.9187,5.796751 +L 5.9187,5.796751,5.2182,5.796751 +L 5.2182,5.796751,4.5181,5.796751 +L 4.5181,5.796751,3.8176,5.796751 +L 2.1084,6.063594,2.3847,6.786675 +L 2.3847,6.786675,2.6684,7.501548 +L 2.6684,7.501548,2.9626,8.199192 +L 2.9626,8.199192,1.9648,8.302318 +L 1.9648,8.302318,0.9802,8.388456 +L 0.9802,8.388456,0.0034,8.466122 +L 5.4988,6.330481,5.2182,6.700602 +L 5.2182,6.700602,4.945,7.053694 +L 4.945,7.053694,4.6718,7.398313 +L 3.3938,8.466122,4.5181,8.466122 +L 4.5181,8.466122,5.6455,8.466122 +L 5.6455,8.466122,6.7768,8.466122 + +[視] 48 +L 0.8562,-0.000003,0.8425,2.622939 +L 0.8425,2.622939,0.7304,3.720367 +L 0.7304,3.720367,0.4324,4.233038 +L 0.4324,4.233038,0.2782,4.069167 +L 0.2782,4.069167,0.135,3.888397 +L 0.135,3.888397,0.0019,3.699155 +L 2.352,-0.000003,3.6826,1.891299 +L 3.6826,1.891299,4.1765,2.850336 +L 4.1765,2.850336,4.2465,3.699155 +L 4.2465,3.699155,3.9663,3.699155 +L 3.9663,3.699155,3.6931,3.699155 +L 3.6931,3.699155,3.4199,3.699155 +L 3.4199,3.699155,3.4199,5.299403 +L 3.4199,5.299403,3.4199,6.891377 +L 3.4199,6.891377,3.4199,8.466122 +L 3.4199,8.466122,4.3971,8.466122 +L 4.3971,8.466122,5.3813,8.466122 +L 5.3813,8.466122,6.376,8.466122 +L 6.376,8.466122,6.376,6.891377 +L 6.376,6.891377,6.376,5.299403 +L 6.376,5.299403,6.376,3.699155 +L 6.376,3.699155,6.0818,3.699155 +L 6.0818,3.699155,5.802,3.699155 +L 5.802,3.699155,5.5249,3.699155 +L 5.5249,3.699155,5.4482,1.57054 +L 5.4482,1.57054,5.7456,0.374299 +L 5.7456,0.374299,7.2341,-0.000003 +L 7.2341,-0.000003,7.2341,0.532501 +L 7.2341,0.532501,7.2341,1.056555 +L 7.2341,1.056555,7.2341,1.563601 +L 2.1416,3.165294,1.7107,3.699155 +L 1.7107,3.699155,1.2835,4.233038 +L 1.2835,4.233038,0.8562,4.767009 +L 0.8562,4.767009,1.2835,5.566378 +L 1.2835,5.566378,1.7107,6.357362 +L 1.7107,6.357362,2.1416,7.131405 +L 2.1416,7.131405,1.4165,7.234507 +L 1.4165,7.234507,0.7055,7.320646 +L 0.7055,7.320646,0.0019,7.398313 +L 3.8157,5.262737,4.5197,5.262737 +L 4.5197,5.262737,5.2272,5.262737 +L 5.2272,5.262737,5.9557,5.262737 +L 3.8157,6.864452,4.5197,6.864452 +L 4.5197,6.864452,5.2272,6.864452 +L 5.2272,6.864452,5.9557,6.864452 +L 0.8562,7.932174,0.8562,8.302318 +L 0.8562,8.302318,0.8562,8.655343 +L 0.8562,8.655343,0.8562,9.000006 + +[詞] 16 +L 0.0351,6.902498,2.5673,6.902498 +L 0.4592,8.504343,2.14,8.504343 +L 0.4592,5.300957,2.14,5.300957 +L 0.4592,4.233038,2.14,4.233038 +L 0.4592,2.669522,2.14,2.669522 +L 0.4592,-0.000003,0.4592,2.669522 +L 2.14,-0.000003,0.4592,-0.000003 +L 2.14,2.669522,2.14,-0.000003 +L 2.9946,8.466122,6.8057,8.466122 +L 6.8057,8.466122,6.8057,-0.000003 +L 6.8057,-0.000003,5.5549,-0.000003 +L 3.4184,6.330481,5.5549,6.330481 +L 3.8496,4.767009,3.8496,2.09744 +L 3.8496,2.09744,5.1245,2.09744 +L 5.1245,2.09744,5.1245,4.767009 +L 5.1245,4.767009,3.8496,4.767009 + +[磁] 63 +L 2.1736,-0.000003,2.4436,-0.000003 +L 2.4436,-0.000003,2.7273,-0.000003 +L 2.7273,-0.000003,3.0247,-0.000003 +L 3.0247,-0.000003,3.3017,0.980245 +L 3.3017,0.980245,3.5816,1.943507 +L 3.5816,1.943507,3.8796,2.898363 +L 3.8796,2.898363,3.5816,3.268441 +L 3.5816,3.268441,3.3017,3.62151 +L 3.3017,3.62151,3.0247,3.966064 +L 3.0247,3.966064,3.6274,5.313522 +L 3.6274,5.313522,3.8481,6.203474 +L 3.8481,6.203474,3.8796,7.398313 +L 3.8796,7.398313,3.452,7.398313 +L 3.452,7.398313,3.0247,7.398313 +L 3.0247,7.398313,2.5974,7.398313 +L 3.452,-0.000003,3.7252,0.532501 +L 3.7252,0.532501,4.0127,1.056555 +L 4.0127,1.056555,4.3066,1.563601 +L 5.3433,-0.000003,5.6865,0.980245 +L 5.6865,0.980245,6.0441,1.943507 +L 6.0441,1.943507,6.4084,2.898363 +L 6.4084,2.898363,6.1138,3.268441 +L 6.1138,3.268441,5.8301,3.62151 +L 5.8301,3.62151,5.5569,3.966064 +L 5.5569,3.966064,6.1594,5.669547 +L 6.1594,5.669547,6.3765,6.559257 +L 6.3765,6.559257,6.4084,7.398313 +L 6.4084,7.398313,5.7075,7.398313 +L 5.7075,7.398313,5.0071,7.398313 +L 5.0071,7.398313,4.3066,7.398313 +L 4.3066,7.398313,4.2891,8.169465 +L 4.2891,8.169465,4.177,8.584702 +L 4.177,8.584702,3.8796,9.000006 +L 5.9846,-0.000003,6.2578,0.532501 +L 6.2578,0.532501,6.5376,1.056555 +L 6.5376,1.056555,6.8388,1.563601 +L 0.4924,1.029696,0.594,4.95763 +L 0.594,4.95763,0.7834,7.004331 +L 0.7834,7.004331,0.8882,8.466122 +L 0.8882,8.466122,0.615,8.466122 +L 0.615,8.466122,0.3418,8.466122 +L 0.3418,8.466122,0.0616,8.466122 +L 0.8882,1.029696,1.1649,1.029696 +L 1.1649,1.029696,1.4489,1.029696 +L 1.4489,1.029696,1.7431,1.029696 +L 1.7431,1.029696,1.7431,2.440636 +L 1.7431,2.440636,1.7431,3.85173 +L 1.7431,3.85173,1.7431,5.262737 +L 1.7431,5.262737,1.4489,5.262737 +L 1.4489,5.262737,1.1649,5.262737 +L 1.1649,5.262737,0.8882,5.262737 +L 4.3066,3.699155,4.3066,4.069167 +L 4.3066,4.069167,4.3066,4.42228 +L 4.3066,4.42228,4.3066,4.767009 +L 6.8388,3.699155,6.8388,4.069167 +L 6.8388,4.069167,6.8388,4.42228 +L 6.8388,4.42228,6.8388,4.767009 +L 5.5569,7.932174,5.6865,8.302318 +L 5.6865,8.302318,5.8301,8.655343 +L 5.8301,8.655343,5.9846,9.000006 +L 1.3155,8.466122,1.5925,8.466122 +L 1.5925,8.466122,1.8724,8.466122 +L 1.8724,8.466122,2.1736,8.466122 + +[射] 48 +L 1.7731,-0.000003,2.2004,-0.000003 +L 2.2004,-0.000003,2.6309,-0.000003 +L 2.6309,-0.000003,3.0547,-0.000003 +L 3.0547,-0.000003,2.9741,0.87712 +L 2.9741,0.87712,2.9006,1.754287 +L 2.9006,1.754287,2.841,2.631345 +L 2.841,2.631345,1.9062,1.933657 +L 1.9062,1.933657,0.9812,1.219025 +L 0.9812,1.219025,0.0639,0.495703 +L 5.1565,-0.000003,5.587,-0.000003 +L 5.587,-0.000003,6.0146,-0.000003 +L 6.0146,-0.000003,6.4419,-0.000003 +L 6.4419,-0.000003,6.5536,3.759857 +L 6.5536,3.759857,6.1894,5.748636 +L 6.1894,5.748636,4.3054,6.330481 +L 0.0639,2.631345,0.3403,2.631345 +L 0.3403,2.631345,0.624,2.631345 +L 0.624,2.631345,0.9217,2.631345 +L 0.9217,2.631345,1.2334,6.579133 +L 1.2334,6.579133,1.4576,8.230232 +L 1.4576,8.230232,1.7731,9.000006 +L 1.3455,2.631345,1.6957,3.007049 +L 1.6957,3.007049,2.1374,3.145439 +L 2.1374,3.145439,3.0547,3.165294 +L 3.0547,3.165294,3.0547,3.699155 +L 3.0547,3.699155,3.0547,4.233038 +L 3.0547,4.233038,3.0547,4.767009 +L 3.0547,4.767009,2.4736,4.767009 +L 2.4736,4.767009,1.9062,4.767009 +L 1.9062,4.767009,1.3455,4.767009 +L 5.1565,3.966064,5.0056,4.233038 +L 5.0056,4.233038,4.8623,4.500078 +L 4.8623,4.500078,4.7359,4.767009 +L 3.0547,5.262737,3.0547,5.632858 +L 3.0547,5.632858,3.0547,5.98595 +L 3.0547,5.98595,3.0547,6.330481 +L 3.0547,6.330481,2.4736,6.330481 +L 2.4736,6.330481,1.9062,6.330481 +L 1.9062,6.330481,1.3455,6.330481 +L 6.8657,6.330481,6.5715,6.785319 +L 6.5715,6.785319,6.4594,7.477402 +L 6.4594,7.477402,6.4419,9.000006 +L 3.0547,6.864452,3.0547,7.234507 +L 3.0547,7.234507,3.0547,7.587599 +L 3.0547,7.587599,3.0547,7.932174 +L 3.0547,7.932174,2.6309,7.932174 +L 2.6309,7.932174,2.2004,7.932174 +L 2.2004,7.932174,1.7731,7.932174 + +[捨] 48 +L 0.5209,-0.000003,0.7976,-0.000003 +L 0.7976,-0.000003,1.0813,-0.000003 +L 1.0813,-0.000003,1.3794,-0.000003 +L 1.3794,-0.000003,1.3615,2.622939 +L 1.3615,2.622939,1.2529,3.720367 +L 1.2529,3.720367,0.9482,4.233038 +L 0.9482,4.233038,0.654,4.069167 +L 0.654,4.069167,0.3738,3.888397 +L 0.3738,3.888397,0.094,3.699155 +L 3.4843,-0.000003,3.4843,0.87712 +L 3.4843,0.87712,3.4843,1.754287 +L 3.4843,1.754287,3.4843,2.631345 +L 3.4843,2.631345,4.3144,2.631345 +L 4.3144,2.631345,5.1582,2.631345 +L 5.1582,2.631345,6.0166,2.631345 +L 6.0166,2.631345,6.0166,1.754287 +L 6.0166,1.754287,6.0166,0.87712 +L 6.0166,0.87712,6.0166,-0.000003 +L 6.0166,-0.000003,5.1582,-0.000003 +L 5.1582,-0.000003,4.3144,-0.000003 +L 4.3144,-0.000003,3.4843,-0.000003 +L 1.7751,4.233038,1.2704,5.525464 +L 1.2704,5.525464,1.0638,6.487281 +L 1.0638,6.487281,0.094,6.864452 +L 3.0532,4.233038,3.6136,4.233038 +L 3.6136,4.233038,4.1848,4.233038 +L 4.1848,4.233038,4.7624,4.233038 +L 4.7624,4.233038,4.3386,5.629969 +L 4.3386,5.629969,3.442,6.128587 +L 3.442,6.128587,2.6294,5.796751 +L 5.1932,4.233038,5.7396,4.233038 +L 5.7396,4.233038,6.2965,4.233038 +L 6.2965,4.233038,6.8674,4.233038 +L 5.1932,5.796751,5.0391,6.166807 +L 5.0391,6.166807,4.8955,6.519789 +L 4.8955,6.519789,4.7624,6.864452 +L 5.803,5.796751,6.0166,5.98595 +L 6.0166,5.98595,6.2268,6.166807 +L 6.2268,6.166807,6.4404,6.330481 +L 6.4404,6.330481,5.803,7.234507 +L 5.803,7.234507,5.1655,8.121569 +L 5.1655,8.121569,4.5491,9.000006 +L 4.5491,9.000006,4.1848,8.302318 +L 4.1848,8.302318,3.8276,7.587599 +L 3.8276,7.587599,3.4843,6.864452 +L 1.7751,6.864452,1.4946,7.2995 +L 1.4946,7.2995,1.3899,7.853172 +L 1.3899,7.853172,1.3794,9.000006 + +[尺] 21 +L 0.3093,0.266949,1.1954,2.994352 +L 1.1954,2.994352,1.4055,5.713284 +L 1.4055,5.713284,1.3775,8.466122 +L 1.3775,8.466122,3.0657,8.466122 +L 3.0657,8.466122,4.7644,8.466122 +L 4.7644,8.466122,6.4736,8.466122 +L 6.4736,8.466122,6.4736,7.398313 +L 6.4736,7.398313,6.4736,6.330481 +L 6.4736,6.330481,6.4736,5.262737 +L 6.4736,5.262737,5.6193,5.262737 +L 5.6193,5.262737,4.7717,5.262737 +L 4.7717,5.262737,3.9417,5.262737 +L 3.9417,5.262737,3.9417,4.755648 +L 3.9417,4.755648,3.9417,4.231659 +L 3.9417,4.231659,3.9417,3.699155 +L 3.9417,3.699155,4.915,2.477368 +L 4.915,2.477368,5.903,1.24722 +L 5.903,1.24722,6.8977,-0.000003 +L 1.8052,5.262737,2.3621,5.262737 +L 2.3621,5.262737,2.9326,5.262737 +L 2.9326,5.262737,3.5105,5.262737 + +[樹] 57 +L 0.9802,-0.000003,0.8962,1.411091 +L 0.8962,1.411091,0.8296,2.822054 +L 0.8296,2.822054,0.7666,4.233038 +L 0.7666,4.233038,0.5529,3.888397 +L 0.5529,3.888397,0.3393,3.535284 +L 0.3393,3.535284,0.126,3.165294 +L 6.0766,-0.000003,6.346,-0.000003 +L 6.346,-0.000003,6.6262,-0.000003 +L 6.6262,-0.000003,6.8994,-0.000003 +L 6.8994,-0.000003,6.8994,2.124256 +L 6.8994,2.124256,6.8994,4.231659 +L 6.8994,4.231659,6.8994,6.330481 +L 6.8994,6.330481,6.4724,6.330481 +L 6.4724,6.330481,6.0556,6.330481 +L 6.0556,6.330481,5.6455,6.330481 +L 2.2621,0.495703,2.5353,0.495703 +L 2.5353,0.495703,2.812,0.495703 +L 2.812,0.495703,3.0852,0.495703 +L 3.0852,0.495703,3.0677,1.266899 +L 3.0677,1.266899,2.9595,1.682224 +L 2.9595,1.682224,2.6579,2.09744 +L 3.5164,0.495703,3.7857,1.029696 +L 3.7857,1.029696,4.0694,1.563601 +L 4.0694,1.563601,4.3675,2.09744 +L 2.6579,3.165294,2.6579,3.699155 +L 2.6579,3.699155,2.6579,4.233038 +L 2.6579,4.233038,2.6579,4.767009 +L 2.6579,4.767009,3.2183,4.767009 +L 3.2183,4.767009,3.7857,4.767009 +L 3.7857,4.767009,4.3675,4.767009 +L 4.3675,4.767009,4.3675,4.233038 +L 4.3675,4.233038,4.3675,3.699155 +L 4.3675,3.699155,4.3675,3.165294 +L 4.3675,3.165294,3.7857,3.165294 +L 3.7857,3.165294,3.2183,3.165294 +L 3.2183,3.165294,2.6579,3.165294 +L 6.0766,3.966064,5.926,4.233038 +L 5.926,4.233038,5.7751,4.500078 +L 5.7751,4.500078,5.6455,4.767009 +L 1.8352,4.233038,1.2993,5.033874 +L 1.2993,5.033874,0.8086,6.063594 +L 0.8086,6.063594,0.126,6.864452 +L 2.6579,6.330481,2.9346,6.330481 +L 2.9346,6.330481,3.2183,6.330481 +L 3.2183,6.330481,3.5164,6.330481 +L 3.5164,6.330481,3.3728,7.525452 +L 3.3728,7.525452,2.9521,7.906759 +L 2.9521,7.906759,2.2621,7.932174 +L 1.4114,6.864452,1.1067,7.2995 +L 1.1067,7.2995,0.9946,7.853172 +L 0.9946,7.853172,0.9802,9.000006 +L 6.8994,6.864452,6.8994,7.587599 +L 6.8994,7.587599,6.8994,8.302318 +L 6.8994,8.302318,6.8994,9.000006 +L 3.9363,7.932174,3.7857,8.302318 +L 3.7857,8.302318,3.6421,8.655343 +L 3.6421,8.655343,3.5164,9.000006 + +[収] 27 +L 2.2641,-0.000003,2.2641,1.066494 +L 2.2641,1.066494,2.2641,2.124256 +L 2.2641,2.124256,2.2641,3.165294 +L 2.2641,3.165294,1.7741,3.001466 +L 1.7741,3.001466,1.2834,2.820565 +L 1.2834,2.820565,0.7966,2.631345 +L 0.7966,2.631345,0.7129,4.412517 +L 0.7129,4.412517,0.646,6.176658 +L 0.646,6.176658,0.583,7.932174 +L 3.3289,-0.000003,3.9453,0.87712 +L 3.9453,0.87712,4.5828,1.754287 +L 4.5828,1.754287,5.2202,2.631345 +L 5.2202,2.631345,4.3796,4.652566 +L 4.3796,4.652566,4.0402,6.470316 +L 4.0402,6.470316,3.9733,8.466122 +L 3.9733,8.466122,4.8034,8.466122 +L 4.8034,8.466122,5.6475,8.466122 +L 5.6475,8.466122,6.5056,8.466122 +L 6.5056,8.466122,6.4709,6.490149 +L 6.4709,6.490149,6.2499,5.115765 +L 6.2499,5.115765,5.6475,3.165294 +L 6.9294,-0.000003,6.5056,0.713293 +L 6.5056,0.713293,6.0751,1.409602 +L 6.0751,1.409602,5.6475,2.09744 +L 2.2641,3.699155,2.2641,5.480327 +L 2.2641,5.480327,2.2641,7.244424 +L 2.2641,7.244424,2.2641,9.000006 + +[宗] 36 +L 2.291,-0.000003,2.7214,-0.000003 +L 2.7214,-0.000003,3.1421,-0.000003 +L 3.1421,-0.000003,3.5725,-0.000003 +L 3.5725,-0.000003,3.5725,1.24722 +L 3.5725,1.24722,3.5725,2.477368 +L 3.5725,2.477368,3.5725,3.699155 +L 3.5725,3.699155,2.5673,3.699155 +L 2.5673,3.699155,1.573,3.699155 +L 1.573,3.699155,0.585,3.699155 +L 0.1577,0.495703,0.585,1.219025 +L 0.585,1.219025,1.0123,1.933657 +L 1.0123,1.933657,1.436,2.631345 +L 6.5325,0.495703,6.1052,1.219025 +L 6.1052,1.219025,5.6775,1.933657 +L 5.6775,1.933657,5.2537,2.631345 +L 3.9683,3.699155,4.8229,3.699155 +L 4.8229,3.699155,5.6775,3.699155 +L 5.6775,3.699155,6.5325,3.699155 +L 1.436,5.796751,2.844,5.796751 +L 2.844,5.796751,4.2559,5.796751 +L 4.2559,5.796751,5.6775,5.796751 +L 0.1577,6.330481,0.1577,6.864452 +L 0.1577,6.864452,0.1577,7.398313 +L 0.1577,7.398313,0.1577,7.932174 +L 0.1577,7.932174,1.2854,7.932174 +L 1.2854,7.932174,2.4241,7.932174 +L 2.4241,7.932174,3.5725,7.932174 +L 3.5725,7.932174,3.5725,8.302318 +L 3.5725,8.302318,3.5725,8.655343 +L 3.5725,8.655343,3.5725,9.000006 +L 6.9629,6.330481,6.9629,6.864452 +L 6.9629,6.864452,6.9629,7.398313 +L 6.9629,7.398313,6.9629,7.932174 +L 6.9629,7.932174,5.9546,7.932174 +L 5.9546,7.932174,4.956,7.932174 +L 4.956,7.932174,3.9683,7.932174 + +[就] 57 +L 1.0426,-0.000003,1.319,-0.000003 +L 1.319,-0.000003,1.5992,-0.000003 +L 1.5992,-0.000003,1.8972,-0.000003 +L 1.8972,-0.000003,1.8972,1.600289 +L 1.8972,1.600289,1.8972,3.192219 +L 1.8972,3.192219,1.8972,4.767009 +L 1.8972,4.767009,1.4699,4.767009 +L 1.4699,4.767009,1.0426,4.767009 +L 1.0426,4.767009,0.6153,4.767009 +L 0.6153,4.767009,0.6153,5.299403 +L 0.6153,5.299403,0.6153,5.82337 +L 0.6153,5.82337,0.6153,6.330481 +L 0.6153,6.330481,1.4454,6.330481 +L 1.4454,6.330481,2.2965,6.330481 +L 2.2965,6.330481,3.1476,6.330481 +L 3.1476,6.330481,3.1476,5.82337 +L 3.1476,5.82337,3.1476,5.299403 +L 3.1476,5.299403,3.1476,4.767009 +L 3.1476,4.767009,2.8495,4.767009 +L 2.8495,4.767009,2.5658,4.767009 +L 2.5658,4.767009,2.2965,4.767009 +L 3.1476,-0.000003,4.1875,2.039496 +L 4.1875,2.039496,4.9724,4.087489 +L 4.9724,4.087489,5.2802,6.330481 +L 5.2802,6.330481,4.9514,6.706272 +L 4.9514,6.706272,4.6183,6.844553 +L 4.6183,6.844553,4.0022,6.864452 +L 5.711,-0.000003,5.711,1.600289 +L 5.711,1.600289,5.711,3.192219 +L 5.711,3.192219,5.711,4.767009 +L 6.1348,-0.000003,6.5411,-0.000003 +L 6.5411,-0.000003,6.9614,-0.000003 +L 6.9614,-0.000003,7.3887,-0.000003 +L 7.3887,-0.000003,7.3887,0.532501 +L 7.3887,0.532501,7.3887,1.056555 +L 7.3887,1.056555,7.3887,1.563601 +L 0.1915,1.830553,0.3208,2.286704 +L 0.3208,2.286704,0.4609,2.734514 +L 0.4609,2.734514,0.6153,3.165294 +L 3.1476,1.830553,2.9966,2.286704 +L 2.9966,2.286704,2.8495,2.734514 +L 2.8495,2.734514,2.7164,3.165294 +L 5.711,6.864452,5.4098,7.2995 +L 5.4098,7.2995,5.2981,7.853172 +L 5.2981,7.853172,5.2802,9.000006 +L 6.1348,6.864452,6.5411,6.864452 +L 6.5411,6.864452,6.9614,6.864452 +L 6.9614,6.864452,7.3887,6.864452 +L 0.1915,7.932174,0.7446,7.932174 +L 0.7446,7.932174,1.319,7.932174 +L 1.319,7.932174,1.8972,7.932174 +L 1.8972,7.932174,1.8972,8.302318 +L 1.8972,8.302318,1.8972,8.655343 +L 1.8972,8.655343,1.8972,9.000006 +L 2.2965,7.932174,2.7164,7.932174 +L 2.7164,7.932174,3.1476,7.932174 +L 3.1476,7.932174,3.5749,7.932174 + +[衆] 54 +L 3.6046,-0.000003,3.6046,1.24722 +L 3.6046,1.24722,3.6046,2.477368 +L 3.6046,2.477368,3.6046,3.699155 +L 3.6046,3.699155,2.3892,3.718988 +L 2.3892,3.718988,1.8327,3.8574 +L 1.8327,3.8574,1.4649,4.233038 +L 1.4649,4.233038,1.0446,3.888397 +L 1.0446,3.888397,0.624,3.535284 +L 0.624,3.535284,0.2177,3.165294 +L 0.4313,0.495703,1.0513,1.219025 +L 1.0513,1.219025,1.6852,1.933657 +L 1.6852,1.933657,2.323,2.631345 +L 6.5641,0.495703,5.7095,1.399686 +L 5.7095,1.399686,4.8658,2.286704 +L 4.8658,2.286704,4.0319,3.165294 +L 5.4962,2.631345,5.8395,3.001466 +L 5.8395,3.001466,6.1999,3.354558 +L 6.1999,3.354558,6.5641,3.699155 +L 3.6046,4.233038,4.1544,4.42228 +L 4.1544,4.42228,4.7148,4.603116 +L 4.7148,4.603116,5.2857,4.767009 +L 0.2177,5.796751,0.4909,5.796751 +L 0.4909,5.796751,0.7644,5.796751 +L 0.7644,5.796751,1.0446,5.796751 +L 1.0446,5.796751,1.0446,6.519789 +L 1.0446,6.519789,1.0446,7.234507 +L 1.0446,7.234507,1.0446,7.932174 +L 1.0446,7.932174,2.5612,8.149808 +L 2.5612,8.149808,3.2228,8.426545 +L 3.2228,8.426545,3.6046,9.000006 +L 1.4649,5.796751,1.8957,5.796751 +L 1.8957,5.796751,2.323,5.796751 +L 2.323,5.796751,2.7535,5.796751 +L 2.7535,5.796751,2.7535,6.330481 +L 2.7535,6.330481,2.7535,6.864452 +L 2.7535,6.864452,2.7535,7.398313 +L 3.1738,5.796751,3.6046,5.796751 +L 3.6046,5.796751,4.0319,5.796751 +L 4.0319,5.796751,4.4592,5.796751 +L 4.4592,5.796751,4.4592,6.519789 +L 4.4592,6.519789,4.4592,7.234507 +L 4.4592,7.234507,4.4592,7.932174 +L 4.4592,7.932174,4.1618,7.932174 +L 4.1618,7.932174,3.8816,7.932174 +L 3.8816,7.932174,3.6046,7.932174 +L 4.8549,5.796751,5.2857,5.796751 +L 5.2857,5.796751,5.7095,5.796751 +L 5.7095,5.796751,6.1368,5.796751 +L 6.1368,5.796751,6.1368,6.519789 +L 6.1368,6.519789,6.1368,7.234507 +L 6.1368,7.234507,6.1368,7.932174 +L 6.1368,7.932174,5.7095,7.932174 +L 5.7095,7.932174,5.2857,7.932174 +L 5.2857,7.932174,4.8549,7.932174 + +[従] 39 +L 1.0708,-0.000003,0.9902,1.411091 +L 0.9902,1.411091,0.924,2.822054 +L 0.924,2.822054,0.8575,4.233038 +L 0.8575,4.233038,0.647,4.069167 +L 0.647,4.069167,0.4298,3.888397 +L 0.4298,3.888397,0.2165,3.699155 +L 2.3527,-0.000003,2.9835,1.419453 +L 2.9835,1.419453,3.1901,2.660963 +L 3.1901,2.660963,3.2111,4.233038 +L 4.885,0.266949,4.4577,0.713293 +L 4.4577,0.713293,4.0339,1.142672 +L 4.0339,1.142672,3.6031,1.563601 +L 5.3126,-0.000003,6.0127,-0.000003 +L 6.0127,-0.000003,6.7167,-0.000003 +L 6.7167,-0.000003,7.4176,-0.000003 +L 4.885,1.029696,4.885,2.974629 +L 4.885,2.974629,4.885,4.919584 +L 4.885,4.919584,4.885,6.864452 +L 4.885,6.864452,4.1848,6.864452 +L 4.1848,6.864452,3.4805,6.864452 +L 3.4805,6.864452,2.7803,6.864452 +L 5.3126,3.699155,5.8727,3.699155 +L 5.8727,3.699155,6.4436,3.699155 +L 6.4436,3.699155,7.0215,3.699155 +L 1.0708,5.033874,1.2042,5.480327 +L 1.2042,5.480327,1.3478,5.909596 +L 1.3478,5.909596,1.5016,6.330481 +L 0.2165,6.864452,0.647,7.587599 +L 0.647,7.587599,1.0708,8.302318 +L 1.0708,8.302318,1.5016,9.000006 +L 5.5259,6.864452,5.7434,7.587599 +L 5.7434,7.587599,5.9532,8.302318 +L 5.9532,8.302318,6.1672,9.000006 +L 6.1672,6.864452,6.5735,6.864452 +L 6.5735,6.864452,6.9899,6.864452 +L 6.9899,6.864452,7.4176,6.864452 +L 4.0339,7.932174,3.7575,8.302318 +L 3.7575,8.302318,3.4805,8.655343 +L 3.4805,8.655343,3.2111,9.000006 + +[縦] 63 +L 1.5285,-0.000003,1.5285,1.600289 +L 1.5285,1.600289,1.5285,3.192219 +L 1.5285,3.192219,1.5285,4.767009 +L 1.5285,4.767009,1.1047,4.767009 +L 1.1047,4.767009,0.6774,4.767009 +L 0.6774,4.767009,0.2501,4.767009 +L 3.6369,-0.000003,3.5529,1.411091 +L 3.5529,1.411091,3.486,2.822054 +L 3.486,2.822054,3.4194,4.233038 +L 3.4194,4.233038,3.0552,3.802302 +L 3.0552,3.802302,2.7018,3.354558 +L 2.7018,3.354558,2.355,2.898363 +L 2.355,2.898363,2.4846,2.467518 +L 2.4846,2.467518,2.6279,2.019773 +L 2.6279,2.019773,2.7823,1.563601 +L 4.4912,0.266949,4.7892,0.92228 +L 4.7892,0.92228,4.901,1.950534 +L 4.901,1.950534,4.915,4.233038 +L 6.1657,0.266949,5.8957,0.532501 +L 5.8957,0.532501,5.6158,0.789581 +L 5.6158,0.789581,5.3423,1.029696 +L 6.5962,-0.000003,6.8697,-0.000003 +L 6.8697,-0.000003,7.1569,-0.000003 +L 7.1569,-0.000003,7.4473,-0.000003 +L 0.2501,1.296648,0.3797,1.933657 +L 0.3797,1.933657,0.5229,2.5537 +L 0.5229,2.5537,0.6774,3.165294 +L 6.1657,1.029696,6.1657,2.974629 +L 6.1657,2.974629,6.1657,4.919584 +L 6.1657,4.919584,6.1657,6.864452 +L 6.1657,6.864452,5.7419,6.864452 +L 5.7419,6.864452,5.3213,6.864452 +L 5.3213,6.864452,4.915,6.864452 +L 6.5962,3.699155,6.8697,3.699155 +L 6.8697,3.699155,7.1569,3.699155 +L 7.1569,3.699155,7.4473,3.699155 +L 1.9274,4.767009,2.0573,5.110205 +L 2.0573,5.110205,2.2041,5.453336 +L 2.2041,5.453336,2.355,5.796751 +L 3.6369,5.033874,3.7662,5.480327 +L 3.7662,5.480327,3.9133,5.909596 +L 3.9133,5.909596,4.0607,6.330481 +L 1.1047,5.262737,1.2304,5.529667 +L 1.2304,5.529667,1.381,5.796751 +L 1.381,5.796751,1.5285,6.063594 +L 1.5285,6.063594,1.2304,6.433737 +L 1.2304,6.433737,0.9502,6.786675 +L 0.9502,6.786675,0.6774,7.131405 +L 0.6774,7.131405,0.9502,7.768412 +L 0.9502,7.768412,1.2304,8.388456 +L 1.2304,8.388456,1.5285,9.000006 +L 1.9274,7.131405,2.0573,7.398313 +L 2.0573,7.398313,2.2041,7.665309 +L 2.2041,7.665309,2.355,7.932174 +L 2.7823,6.864452,3.2061,7.587599 +L 3.2061,7.587599,3.6369,8.302318 +L 3.6369,8.302318,4.0607,9.000006 +L 6.5962,6.864452,6.7257,7.587599 +L 6.7257,7.587599,6.8697,8.302318 +L 6.8697,8.302318,7.02,9.000006 +L 5.3423,8.199192,5.192,8.466122 +L 5.192,8.466122,5.0446,8.733119 +L 5.0446,8.733119,4.915,9.000006 + +[縮] 75 +L 1.534,-0.000003,1.534,1.600289 +L 1.534,1.600289,1.534,3.192219 +L 1.534,3.192219,1.534,4.767009 +L 1.534,4.767009,1.1032,4.767009 +L 1.1032,4.767009,0.6829,4.767009 +L 0.6829,4.767009,0.2797,4.767009 +L 3.6631,-0.000003,3.6631,1.411091 +L 3.6631,1.411091,3.6631,2.822054 +L 3.6631,2.822054,3.6631,4.233038 +L 3.6631,4.233038,2.9381,4.60027 +L 2.9381,4.60027,2.4026,4.908223 +L 2.4026,4.908223,1.9543,4.767009 +L 4.917,-0.000003,4.917,1.411091 +L 4.917,1.411091,4.917,2.822054 +L 4.917,2.822054,4.917,4.233038 +L 4.917,4.233038,5.5373,4.459144 +L 5.5373,4.459144,5.863,4.795247 +L 5.863,4.795247,6.1989,5.529667 +L 6.1989,5.529667,5.7681,5.632858 +L 5.7681,5.632858,5.3443,5.718976 +L 5.3443,5.718976,4.917,5.796751 +L 5.3443,-0.000003,5.905,-0.000003 +L 5.905,-0.000003,6.4756,-0.000003 +L 6.4756,-0.000003,7.0538,-0.000003 +L 7.0538,-0.000003,7.0538,0.713293 +L 7.0538,0.713293,7.0538,1.409602 +L 7.0538,1.409602,7.0538,2.09744 +L 7.0538,2.09744,6.4756,2.09744 +L 6.4756,2.09744,5.905,2.09744 +L 5.905,2.09744,5.3443,2.09744 +L 0.2797,1.296648,0.4023,1.933657 +L 0.4023,1.933657,0.5319,2.5537 +L 0.5319,2.5537,0.6759,3.165294 +L 2.812,1.830553,2.6618,2.286704 +L 2.6618,2.286704,2.5143,2.734514 +L 2.5143,2.734514,2.3847,3.165294 +L 7.0538,2.631345,7.0538,3.165294 +L 7.0538,3.165294,7.0538,3.699155 +L 7.0538,3.699155,7.0538,4.233038 +L 7.0538,4.233038,6.7561,4.233038 +L 6.7561,4.233038,6.4756,4.233038 +L 6.4756,4.233038,6.1989,4.233038 +L 3.6631,4.767009,3.9643,5.155365 +L 3.9643,5.155365,4.0767,5.560752 +L 4.0767,5.560752,4.0939,6.330481 +L 1.1032,5.262737,1.2359,5.529667 +L 1.2359,5.529667,1.3795,5.796751 +L 1.3795,5.796751,1.534,6.063594 +L 1.534,6.063594,1.2359,6.433737 +L 1.2359,6.433737,0.9522,6.786675 +L 0.9522,6.786675,0.6759,7.131405 +L 0.6759,7.131405,0.9522,7.768412 +L 0.9522,7.768412,1.2359,8.388456 +L 1.2359,8.388456,1.534,9.000006 +L 6.6265,5.796751,6.9029,5.796751 +L 6.9029,5.796751,7.1831,5.796751 +L 7.1831,5.796751,7.4811,5.796751 +L 1.9543,7.131405,2.087,7.398313 +L 2.087,7.398313,2.2345,7.665309 +L 2.2345,7.665309,2.3847,7.932174 +L 3.2393,6.864452,3.2393,7.234507 +L 3.2393,7.234507,3.2393,7.587599 +L 3.2393,7.587599,3.2393,7.932174 +L 3.2393,7.932174,3.9433,7.932174 +L 3.9433,7.932174,4.6441,7.932174 +L 4.6441,7.932174,5.3443,7.932174 +L 5.3443,7.932174,5.3443,8.302318 +L 5.3443,8.302318,5.3443,8.655343 +L 5.3443,8.655343,5.3443,9.000006 +L 7.4811,6.864452,7.4811,7.234507 +L 7.4811,7.234507,7.4811,7.587599 +L 7.4811,7.587599,7.4811,7.932174 +L 7.4811,7.932174,6.9029,7.932174 +L 6.9029,7.932174,6.3253,7.932174 +L 6.3253,7.932174,5.7681,7.932174 + +[熟] 66 +L 0.2817,-0.000003,0.5553,0.532501 +L 0.5553,0.532501,0.8351,1.056555 +L 0.8351,1.056555,1.1328,1.563601 +L 3.2378,0.266949,3.0875,0.713293 +L 3.0875,0.713293,2.9439,1.142672 +L 2.9439,1.142672,2.8105,1.563601 +L 5.3746,0.266949,5.2237,0.713293 +L 5.2237,0.713293,5.0766,1.142672 +L 5.0766,1.142672,4.9473,1.563601 +L 7.4796,0.266949,7.2026,0.713293 +L 7.2026,0.713293,6.9332,1.142672 +L 6.9332,1.142672,6.6562,1.563601 +L 1.1328,2.631345,1.4099,2.631345 +L 1.4099,2.631345,1.6936,2.631345 +L 1.6936,2.631345,1.9913,2.631345 +L 1.9913,2.631345,1.9913,3.001466 +L 1.9913,3.001466,1.9913,3.354558 +L 1.9913,3.354558,1.9913,3.699155 +L 1.9913,3.699155,1.4099,3.699155 +L 1.4099,3.699155,0.8351,3.699155 +L 0.8351,3.699155,0.2817,3.699155 +L 4.0924,2.631345,4.9929,4.172205 +L 4.9929,4.172205,5.3253,4.992939 +L 5.3253,4.992939,5.3746,5.796751 +L 5.3746,5.796751,5.0766,5.796751 +L 5.0766,5.796751,4.7932,5.796751 +L 4.7932,5.796751,4.5236,5.796751 +L 7.0485,3.165294,6.6002,4.310727 +L 6.6002,4.310727,6.2744,4.854592 +L 6.2744,4.854592,5.8019,5.262737 +L 7.4796,3.165294,7.4796,3.535284 +L 7.4796,3.535284,7.4796,3.888397 +L 7.4796,3.888397,7.4796,4.233038 +L 2.4112,3.966064,2.5377,4.336207 +L 2.5377,4.336207,2.6673,4.689298 +L 2.6673,4.689298,2.8105,5.033874 +L 2.8105,5.033874,2.1065,5.110205 +L 2.1065,5.110205,1.4064,5.186449 +L 1.4064,5.186449,0.7024,5.262737 +L 2.8105,3.699155,3.0875,3.699155 +L 3.0875,3.699155,3.3677,3.699155 +L 3.3677,3.699155,3.6651,3.699155 +L 6.6562,5.262737,6.6562,5.98595 +L 6.6562,5.98595,6.6562,6.700602 +L 6.6562,6.700602,6.6562,7.398313 +L 6.6562,7.398313,6.0401,7.358735 +L 6.0401,7.358735,5.707,7.081976 +L 5.707,7.081976,5.3746,6.330481 +L 0.7024,6.330481,0.7024,6.700602 +L 0.7024,6.700602,0.7024,7.053694 +L 0.7024,7.053694,0.7024,7.398313 +L 0.7024,7.398313,1.5391,7.398313 +L 1.5391,7.398313,2.3836,7.398313 +L 2.3836,7.398313,3.2378,7.398313 +L 3.2378,7.398313,3.2378,7.053694 +L 3.2378,7.053694,3.2378,6.700602 +L 3.2378,6.700602,3.2378,6.330481 +L 3.2378,6.330481,2.3836,6.330481 +L 2.3836,6.330481,1.5391,6.330481 +L 1.5391,6.330481,0.7024,6.330481 +L 4.0924,7.398313,4.9435,7.55936 +L 4.9435,7.55936,5.2976,8.076256 +L 5.2976,8.076256,5.3746,9.000006 +L 0.2817,8.466122,1.4064,8.466122 +L 1.4064,8.466122,2.5377,8.466122 +L 2.5377,8.466122,3.6651,8.466122 + +[純] 60 +L 1.5621,-0.000003,1.5621,1.600289 +L 1.5621,1.600289,1.5621,3.192219 +L 1.5621,3.192219,1.5621,4.767009 +L 1.5621,4.767009,1.1348,4.767009 +L 1.1348,4.767009,0.7145,4.767009 +L 0.7145,4.767009,0.3083,4.767009 +L 5.8004,-0.000003,5.4884,0.92228 +L 5.4884,0.92228,5.2716,2.217486 +L 5.2716,2.217486,4.9805,3.165294 +L 4.9805,3.165294,4.5501,3.165294 +L 4.5501,3.165294,4.1228,3.165294 +L 4.1228,3.165294,3.6955,3.165294 +L 3.6955,3.165294,3.6955,4.042373 +L 3.6955,4.042373,3.6955,4.919584 +L 3.6955,4.919584,3.6955,5.796751 +L 6.2277,-0.000003,6.655,-0.000003 +L 6.655,-0.000003,7.0855,-0.000003 +L 7.0855,-0.000003,7.5058,-0.000003 +L 7.5058,-0.000003,7.5058,0.532501 +L 7.5058,0.532501,7.5058,1.056555 +L 7.5058,1.056555,7.5058,1.563601 +L 0.3083,1.296648,0.4413,1.933657 +L 0.4413,1.933657,0.5849,2.5537 +L 0.5849,2.5537,0.7394,3.165294 +L 2.8405,1.830553,2.6934,2.286704 +L 2.6934,2.286704,2.5463,2.734514 +L 2.5463,2.734514,2.4171,3.165294 +L 5.8004,3.165294,5.5024,3.677987 +L 5.5024,3.677987,5.3903,4.775393 +L 5.3903,4.775393,5.3766,7.398313 +L 5.3766,7.398313,4.6758,7.398313 +L 4.6758,7.398313,3.9718,7.398313 +L 3.9718,7.398313,3.2717,7.398313 +L 6.2277,3.165294,6.5041,3.165294 +L 6.5041,3.165294,6.7878,3.165294 +L 6.7878,3.165294,7.0855,3.165294 +L 7.0855,3.165294,7.0855,4.042373 +L 7.0855,4.042373,7.0855,4.919584 +L 7.0855,4.919584,7.0855,5.796751 +L 2.8405,4.500078,2.5257,5.018441 +L 2.5257,5.018441,2.3046,5.087571 +L 2.3046,5.087571,1.9859,4.767009 +L 1.1593,5.262737,1.2893,5.529667 +L 1.2893,5.529667,1.415,5.796751 +L 1.415,5.796751,1.5621,6.063594 +L 1.5621,6.063594,1.2858,6.433737 +L 1.2858,6.433737,1.0122,6.786675 +L 1.0122,6.786675,0.7394,7.131405 +L 0.7394,7.131405,1.0122,7.768412 +L 1.0122,7.768412,1.2858,8.388456 +L 1.2858,8.388456,1.5621,9.000006 +L 1.9859,7.131405,2.1159,7.398313 +L 2.1159,7.398313,2.2661,7.665309 +L 2.2661,7.665309,2.4171,7.932174 +L 5.3766,7.932174,5.3766,8.302318 +L 5.3766,8.302318,5.3766,8.655343 +L 5.3766,8.655343,5.3766,9.000006 +L 5.8004,7.932174,6.357,7.932174 +L 6.357,7.932174,6.9317,7.932174 +L 6.9317,7.932174,7.5058,7.932174 + +[処] 39 +L 0.3141,-0.000003,0.8671,0.79941 +L 0.8671,0.79941,1.4415,1.59046 +L 1.4415,1.59046,2.0198,2.364371 +L 2.0198,2.364371,1.6555,3.165294 +L 1.6555,3.165294,1.2944,3.966064 +L 1.2944,3.966064,0.9477,4.767009 +L 0.9477,4.767009,0.734,4.603116 +L 0.734,4.603116,0.5239,4.42228 +L 0.5239,4.42228,0.3141,4.233038 +L 4.5486,-0.000003,3.8477,0.713293 +L 3.8477,0.713293,3.1437,1.409602 +L 3.1437,1.409602,2.4436,2.09744 +L 4.979,-0.000003,5.8336,-0.000003 +L 5.8336,-0.000003,6.6847,-0.000003 +L 6.6847,-0.000003,7.5432,-0.000003 +L 3.7286,2.09744,4.4712,4.214628 +L 4.4712,4.214628,4.6008,6.196293 +L 4.6008,6.196293,4.5486,8.466122 +L 4.5486,8.466122,5.1051,8.466122 +L 5.1051,8.466122,5.6834,8.466122 +L 5.6834,8.466122,6.2574,8.466122 +L 6.2574,8.466122,6.2574,6.357362 +L 6.2574,6.357362,6.2574,4.231659 +L 6.2574,4.231659,6.2574,2.09744 +L 6.2574,2.09744,6.6847,2.09744 +L 6.6847,2.09744,7.1124,2.09744 +L 7.1124,2.09744,7.5432,2.09744 +L 7.5432,2.09744,7.5432,2.631345 +L 7.5432,2.631345,7.5432,3.165294 +L 7.5432,3.165294,7.5432,3.699155 +L 2.4436,3.43229,3.046,5.155365 +L 3.046,5.155365,3.2702,6.183597 +L 3.2702,6.183597,3.2978,7.398313 +L 3.2978,7.398313,1.547,7.209093 +L 1.547,7.209093,1.2944,6.545291 +L 1.2944,6.545291,0.734,5.262737 +L 1.5925,7.932174,1.5925,8.302318 +L 1.5925,8.302318,1.5925,8.655343 +L 1.5925,8.655343,1.5925,9.000006 + +[署] 51 +L 2.4452,-0.000003,2.4452,0.87712 +L 2.4452,0.87712,2.4452,1.754287 +L 2.4452,1.754287,2.4452,2.631345 +L 2.4452,2.631345,1.7237,2.492954 +L 1.7237,2.492954,1.0831,2.235918 +L 1.0831,2.235918,0.3403,2.09744 +L 2.8725,-0.000003,4.0038,-0.000003 +L 4.0038,-0.000003,5.1421,-0.000003 +L 5.1421,-0.000003,6.2913,-0.000003 +L 6.2913,-0.000003,6.2913,0.532501 +L 6.2913,0.532501,6.2913,1.056555 +L 6.2913,1.056555,6.2913,1.563601 +L 6.2913,1.563601,5.1421,1.563601 +L 5.1421,1.563601,4.0038,1.563601 +L 4.0038,1.563601,2.8725,1.563601 +L 6.2913,2.364371,5.1421,2.467518 +L 5.1421,2.467518,4.0038,2.5537 +L 4.0038,2.5537,2.8725,2.631345 +L 3.2963,3.165294,3.4333,3.43229 +L 3.4333,3.43229,3.5734,3.699155 +L 3.5734,3.699155,3.7271,3.966064 +L 3.7271,3.966064,2.5958,4.069167 +L 2.5958,4.069167,1.4719,4.155393 +L 1.4719,4.155393,0.3403,4.233038 +L 4.1544,4.233038,4.4311,4.336207 +L 4.4311,4.336207,4.7117,4.42228 +L 4.7117,4.42228,5.0094,4.500078 +L 5.0094,4.500078,3.9376,5.206216 +L 3.9376,5.206216,2.4522,5.319104 +L 2.4522,5.319104,1.1914,5.262737 +L 5.4367,4.233038,6.1368,4.233038 +L 6.1368,4.233038,6.8377,4.233038 +L 6.8377,4.233038,7.5382,4.233038 +L 3.2963,5.796751,3.2963,6.166807 +L 3.2963,6.166807,3.2963,6.519789 +L 3.2963,6.519789,3.2963,6.864452 +L 3.2963,6.864452,2.4452,6.864452 +L 2.4452,6.864452,1.6012,6.864452 +L 1.6012,6.864452,0.7711,6.864452 +L 0.7711,6.864452,0.7711,7.398313 +L 0.7711,7.398313,0.7711,7.932174 +L 0.7711,7.932174,0.7711,8.466122 +L 0.7711,8.466122,2.7324,8.466122 +L 2.7324,8.466122,4.7047,8.466122 +L 4.7047,8.466122,6.6867,8.466122 +L 6.6867,8.466122,6.6867,7.932174 +L 6.6867,7.932174,6.6867,7.398313 +L 6.6867,7.398313,6.6867,6.864452 +L 6.6867,6.864452,5.6885,6.864452 +L 5.6885,6.864452,4.7047,6.864452 +L 4.7047,6.864452,3.7271,6.864452 + +[諸] 74 +L 0.7979,-0.000003,0.7979,0.713293 +L 0.7979,0.713293,0.7979,1.409602 +L 0.7979,1.409602,0.7979,2.09744 +L 0.7979,2.09744,1.3513,2.09744 +L 1.3513,2.09744,1.9044,2.09744 +L 1.9044,2.09744,2.4753,2.09744 +L 2.4753,2.09744,2.4753,1.409602 +L 2.4753,1.409602,2.4753,0.713293 +L 2.4753,0.713293,2.4753,-0.000003 +L 2.4753,-0.000003,1.9044,-0.000003 +L 1.9044,-0.000003,1.3513,-0.000003 +L 1.3513,-0.000003,0.7979,-0.000003 +L 4.6118,-0.000003,4.5942,2.247214 +L 4.5942,2.247214,4.486,3.206229 +L 4.486,3.206229,4.1848,3.699155 +L 4.1848,3.699155,3.8903,3.535284 +L 3.8903,3.535284,3.6066,3.354558 +L 3.6066,3.354558,3.3302,3.165294 +L 5.0079,-0.000003,5.7115,-0.000003 +L 5.7115,-0.000003,6.419,-0.000003 +L 6.419,-0.000003,7.144,-0.000003 +L 7.144,-0.000003,7.144,0.713293 +L 7.144,0.713293,7.144,1.409602 +L 7.144,1.409602,7.144,2.09744 +L 7.144,2.09744,6.419,2.09744 +L 6.419,2.09744,5.7115,2.09744 +L 5.7115,2.09744,5.0079,2.09744 +L 7.144,2.631345,7.144,3.001466 +L 7.144,3.001466,7.144,3.354558 +L 7.144,3.354558,7.144,3.699155 +L 7.144,3.699155,5.6275,3.718988 +L 5.6275,3.718988,4.9694,3.8574 +L 4.9694,3.8574,4.6118,4.233038 +L 4.6118,4.233038,4.885,4.679469 +L 4.885,4.679469,5.1651,5.108782 +L 5.1651,5.108782,5.4352,5.529667 +L 5.4352,5.529667,4.7343,5.632858 +L 4.7343,5.632858,4.0304,5.718976 +L 4.0304,5.718976,3.3302,5.796751 +L 0.7979,3.699155,1.3513,3.699155 +L 1.3513,3.699155,1.9044,3.699155 +L 1.9044,3.699155,2.4753,3.699155 +L 0.7979,5.262737,1.3513,5.262737 +L 1.3513,5.262737,1.9044,5.262737 +L 1.9044,5.262737,2.4753,5.262737 +L 5.866,6.063594,6.2863,6.864452 +L 6.2863,6.864452,6.7167,7.665309 +L 6.7167,7.665309,7.144,8.466122 +L 6.2863,5.796751,6.7167,5.796751 +L 6.7167,5.796751,7.144,5.796751 +L 7.144,5.796751,7.5748,5.796751 +L 5.0079,6.330481,4.9939,7.101677 +L 4.9939,7.101677,4.8888,7.517002 +L 4.8888,7.517002,4.6118,7.932174 +L 4.6118,7.932174,4.3141,7.932174 +L 4.3141,7.932174,4.0304,7.932174 +L 4.0304,7.932174,3.761,7.932174 +L 0.3703,6.864452,1.2004,6.864452 +L 1.2004,6.864452,2.0518,6.864452 +L 2.0518,6.864452,2.9029,6.864452 +L 5.4352,7.932174,5.2842,8.302318 +L 5.2842,8.302318,5.1375,8.655343 +L 5.1375,8.655343,5.0079,9.000006 +L 0.7979,8.466122,1.3513,8.466122 +L 1.3513,8.466122,1.9044,8.466122 +L 1.9044,8.466122,2.4753,8.466122 +L 0.3703,6.902498,2.9029,6.902498 +L 0.7979,8.504343,2.4753,8.504343 +L 0.7979,5.300957,2.4753,5.300957 +L 0.7979,4.233038,2.4753,4.233038 +L 0.7979,2.669522,2.4753,2.669522 +L 0.7979,-0.000003,0.7979,2.669522 +L 2.4753,-0.000003,0.7979,-0.000003 +L 2.4753,2.669522,2.4753,-0.000003 + +[除] 48 +L 0.3726,-0.000003,0.3726,2.822054 +L 0.3726,2.822054,0.3726,5.644089 +L 0.3726,5.644089,0.3726,8.466122 +L 0.3726,8.466122,0.9292,8.466122 +L 0.9292,8.466122,1.5036,8.466122 +L 1.5036,8.466122,2.0783,8.466122 +L 2.0783,8.466122,1.63,6.097502 +L 1.63,6.097502,1.8542,4.796626 +L 1.8542,4.796626,2.0783,2.631345 +L 2.0783,2.631345,1.7838,2.467518 +L 1.7838,2.467518,1.5036,2.286704 +L 1.5036,2.286704,1.2237,2.09744 +L 4.1833,-0.000003,4.4597,-0.000003 +L 4.4597,-0.000003,4.7434,-0.000003 +L 4.7434,-0.000003,5.0376,-0.000003 +L 5.0376,-0.000003,5.0764,2.572066 +L 5.0764,2.572066,4.7434,3.872942 +L 4.7434,3.872942,3.3599,4.233038 +L 2.5088,1.029696,2.7823,1.563601 +L 2.7823,1.563601,3.0622,2.09744 +L 3.0622,2.09744,3.3599,2.631345 +L 7.1744,1.029696,6.8798,1.563601 +L 6.8798,1.563601,6.5961,2.09744 +L 6.5961,2.09744,6.3233,2.631345 +L 5.4649,4.233038,5.1636,4.666598 +L 5.1636,4.666598,5.0519,5.210529 +L 5.0519,5.210529,5.0376,6.330481 +L 5.0376,6.330481,4.4215,6.350357 +L 4.4215,6.350357,4.0919,6.488704 +L 4.0919,6.488704,3.7595,6.864452 +L 3.7595,6.864452,3.3322,6.519789 +L 3.3322,6.519789,2.9116,6.166807 +L 2.9116,6.166807,2.5088,5.796751 +L 5.8922,4.233038,6.1692,4.233038 +L 6.1692,4.233038,6.4529,4.233038 +L 6.4529,4.233038,6.7433,4.233038 +L 7.1744,5.796751,6.8798,6.166807 +L 6.8798,6.166807,6.5961,6.519789 +L 6.5961,6.519789,6.3233,6.864452 +L 6.3233,6.864452,6.0256,6.700602 +L 6.0256,6.700602,5.7419,6.519789 +L 5.7419,6.519789,5.4649,6.330481 +L 4.1833,7.398313,4.4597,7.932174 +L 4.4597,7.932174,4.7434,8.466122 +L 4.7434,8.466122,5.0376,9.000006 +L 5.0376,9.000006,5.3146,8.466122 +L 5.3146,8.466122,5.5948,7.932174 +L 5.5948,7.932174,5.8922,7.398313 + +[傷] 54 +L 1.2569,-0.000003,1.1764,1.943507 +L 1.1764,1.943507,1.1032,3.878524 +L 1.1032,3.878524,1.0436,5.796751 +L 1.0436,5.796751,0.8296,5.632858 +L 0.8296,5.632858,0.6163,5.451979 +L 0.6163,5.451979,0.4023,5.262737 +L 2.9346,-0.000003,4.2725,0.290963 +L 4.2725,0.290963,5.2462,1.107341 +L 5.2462,1.107341,6.318,2.364371 +L 6.318,2.364371,5.0749,2.018416 +L 5.0749,2.018416,3.9118,1.375782 +L 3.9118,1.375782,2.9346,1.029696 +L 5.898,-0.000003,6.5109,0.018341 +L 6.5109,0.018341,6.8433,0.146859 +L 6.8433,0.146859,7.1726,0.495703 +L 7.1726,0.495703,7.0254,1.219025 +L 7.0254,1.219025,6.8787,1.933657 +L 6.8787,1.933657,6.7491,2.631345 +L 3.1486,2.09744,3.7545,2.512699 +L 3.7545,2.512699,4.0344,2.928024 +L 4.0344,2.928024,4.2165,3.699155 +L 4.2165,3.699155,3.6354,3.699155 +L 3.6354,3.699155,3.068,3.699155 +L 3.068,3.699155,2.5073,3.699155 +L 4.6441,3.699155,5.6213,3.699155 +L 5.6213,3.699155,6.6052,3.699155 +L 6.6052,3.699155,7.6037,3.699155 +L 3.7857,4.767009,3.7682,6.262686 +L 3.7682,6.262686,3.6631,6.944876 +L 3.6631,6.944876,3.3619,7.398313 +L 3.3619,7.398313,3.2116,7.234507 +L 3.2116,7.234507,3.068,7.053694 +L 3.068,7.053694,2.9346,6.864452 +L 4.2165,4.767009,5.0466,4.767009 +L 5.0466,4.767009,5.898,4.767009 +L 5.898,4.767009,6.7491,4.767009 +L 6.7491,4.767009,6.7491,5.110205 +L 6.7491,5.110205,6.7491,5.453336 +L 6.7491,5.453336,6.7491,5.796751 +L 6.7491,5.796751,5.898,5.796751 +L 5.898,5.796751,5.0466,5.796751 +L 5.0466,5.796751,4.2165,5.796751 +L 1.2569,6.5975,1.5305,7.398313 +L 1.5305,7.398313,1.8068,8.199192 +L 1.8068,8.199192,2.0768,9.000006 +L 6.7491,6.5975,5.898,6.700602 +L 5.898,6.700602,5.0466,6.786675 +L 5.0466,6.786675,4.2165,6.864452 +L 3.7857,7.932174,3.7857,8.302318 +L 3.7857,8.302318,3.7857,8.655343 +L 3.7857,8.655343,3.7857,9.000006 +L 4.2165,7.932174,5.3443,7.932174 +L 5.3443,7.932174,6.4724,7.932174 +L 6.4724,7.932174,7.6037,7.932174 + +[将] 33 +L 1.6827,-0.000003,1.5986,1.24722 +L 1.5986,1.24722,1.5325,2.477368 +L 1.5325,2.477368,1.4694,3.699155 +L 1.4694,3.699155,1.1118,3.354558 +L 1.1118,3.354558,0.7654,3.001466 +L 0.7654,3.001466,0.4288,2.631345 +L 5.0661,-0.000003,5.4972,-0.000003 +L 5.4972,-0.000003,5.9245,-0.000003 +L 5.9245,-0.000003,6.355,-0.000003 +L 6.355,-0.000003,6.1728,3.487213 +L 6.1728,3.487213,5.1396,4.330604 +L 5.1396,4.330604,2.5412,4.233038 +L 4.2469,2.364371,4.0924,2.631345 +L 4.0924,2.631345,3.9488,2.898363 +L 3.9488,2.898363,3.8196,3.165294 +L 1.6827,4.233038,1.6827,5.833417 +L 1.6827,5.833417,1.6827,7.425172 +L 1.6827,7.425172,1.6827,9.000006 +L 6.7756,4.233038,6.6247,4.576256 +L 6.6247,4.576256,6.4811,4.919584 +L 6.4811,4.919584,6.355,5.262737 +L 3.3923,6.063594,3.2413,6.330481 +L 3.2413,6.330481,3.0942,6.5975 +L 3.0942,6.5975,2.965,6.864452 +L 5.0661,6.063594,4.919,6.330481 +L 4.919,6.330481,4.7754,6.5975 +L 4.7754,6.5975,4.6461,6.864452 +L 6.355,6.330481,6.6247,6.700602 +L 6.6247,6.700602,6.9084,7.053694 +L 6.9084,7.053694,7.2061,7.398313 +L 2.965,7.932174,4.905,8.070718 +L 4.905,8.070718,6.0993,8.32771 +L 6.0993,8.32771,7.2061,8.466122 + +[障] 63 +L 0.4347,-0.000003,0.4347,2.822054 +L 0.4347,2.822054,0.4347,5.644089 +L 0.4347,5.644089,0.4347,8.466122 +L 0.4347,8.466122,0.9912,8.466122 +L 0.9912,8.466122,1.5621,8.466122 +L 1.5621,8.466122,2.1404,8.466122 +L 2.1404,8.466122,1.6921,6.097502 +L 1.6921,6.097502,1.9194,4.796626 +L 1.9194,4.796626,2.1404,2.631345 +L 2.1404,2.631345,1.8423,2.467518 +L 1.8423,2.467518,1.5621,2.286704 +L 1.5621,2.286704,1.2893,2.09744 +L 5.1031,-0.000003,4.6828,1.473216 +L 4.6828,1.473216,3.699,1.691988 +L 3.699,1.691988,2.5673,1.563601 +L 5.5234,1.563601,5.2292,1.97886 +L 5.2292,1.97886,5.1175,2.394098 +L 5.1175,2.394098,5.1031,3.165294 +L 5.1031,3.165294,4.522,3.165294 +L 4.522,3.165294,3.9473,3.165294 +L 3.9473,3.165294,3.3943,3.165294 +L 3.3943,3.165294,3.3943,3.878524 +L 3.3943,3.878524,3.3943,4.5749 +L 3.3943,4.5749,3.3943,5.262737 +L 3.3943,5.262737,4.522,5.262737 +L 4.522,5.262737,5.6568,5.262737 +L 5.6568,5.262737,6.8126,5.262737 +L 6.8126,5.262737,6.8126,4.5749 +L 6.8126,4.5749,6.8126,3.878524 +L 6.8126,3.878524,6.8126,3.165294 +L 6.8126,3.165294,6.3815,3.165294 +L 6.3815,3.165294,5.9542,3.165294 +L 5.9542,3.165294,5.5234,3.165294 +L 5.9542,1.563601,6.5041,1.563601 +L 6.5041,1.563601,7.0645,1.563601 +L 7.0645,1.563601,7.6284,1.563601 +L 3.818,4.233038,4.6723,4.233038 +L 4.6723,4.233038,5.5234,4.233038 +L 5.5234,4.233038,6.3815,4.233038 +L 2.5673,6.330481,3.1207,6.433737 +L 3.1207,6.433737,3.6744,6.519789 +L 3.6744,6.519789,4.2453,6.5975 +L 4.2453,6.5975,4.0944,6.967555 +L 4.0944,6.967555,3.9473,7.320646 +L 3.9473,7.320646,3.818,7.665309 +L 3.818,7.665309,4.2453,7.768412 +L 4.2453,7.768412,4.6723,7.854595 +L 4.6723,7.854595,5.1031,7.932174 +L 5.1031,7.932174,5.1031,8.302318 +L 5.1031,8.302318,5.1031,8.655343 +L 5.1031,8.655343,5.1031,9.000006 +L 4.6723,6.330481,5.1031,6.433737 +L 5.1031,6.433737,5.5234,6.519789 +L 5.5234,6.519789,5.9542,6.5975 +L 5.9542,6.5975,6.0841,6.967555 +L 6.0841,6.967555,6.2312,7.320646 +L 6.2312,7.320646,6.3815,7.665309 +L 6.3815,7.665309,6.0841,7.768412 +L 6.0841,7.768412,5.8039,7.854595 +L 5.8039,7.854595,5.5234,7.932174 +L 6.3815,6.330481,6.7843,6.330481 +L 6.7843,6.330481,7.2046,6.330481 +L 7.2046,6.330481,7.6284,6.330481 + +[城] 42 +L 1.7151,-0.000003,2.7658,2.245813 +L 2.7658,2.245813,3.025,4.262678 +L 3.025,4.262678,2.9966,6.864452 +L 2.9966,6.864452,4.7272,6.816402 +L 4.7272,6.816402,5.6725,7.242979 +L 5.6725,7.242979,5.9527,9.000006 +L 4.489,-0.000003,5.1125,0.610168 +L 5.1125,0.610168,5.7429,1.22036 +L 5.7429,1.22036,6.3835,1.830553 +L 6.3835,1.830553,5.7706,4.033968 +L 5.7706,4.033968,6.1593,6.00854 +L 6.1593,6.00854,7.6622,6.864452 +L 7.2349,-0.000003,7.0875,0.343215 +L 7.0875,0.343215,6.9372,0.686477 +L 6.9372,0.686477,6.8073,1.029696 +L 7.6622,-0.000003,7.6622,0.532501 +L 7.6622,0.532501,7.6622,1.056555 +L 7.6622,1.056555,7.6622,1.563601 +L 3.8512,1.563601,4.1248,1.563601 +L 4.1248,1.563601,4.4116,1.563601 +L 4.4116,1.563601,4.7023,1.563601 +L 4.7023,1.563601,4.7023,2.631345 +L 4.7023,2.631345,4.7023,3.699155 +L 4.7023,3.699155,4.7023,4.767009 +L 4.7023,4.767009,4.275,4.767009 +L 4.275,4.767009,3.8512,4.767009 +L 3.8512,4.767009,3.4239,4.767009 +L 0.4612,2.09744,0.7414,2.09744 +L 0.7414,2.09744,1.0216,2.09744 +L 1.0216,2.09744,1.3154,2.09744 +L 1.3154,2.09744,1.3154,3.344663 +L 1.3154,3.344663,1.3154,4.5749 +L 1.3154,4.5749,1.3154,5.796751 +L 1.3154,5.796751,1.0216,5.98595 +L 1.0216,5.98595,0.7414,6.166807 +L 0.7414,6.166807,0.4612,6.330481 +L 6.8073,2.898363,6.9372,3.535284 +L 6.9372,3.535284,7.0875,4.155393 +L 7.0875,4.155393,7.2349,4.767009 +L 1.7151,6.330481,1.438,6.785319 +L 1.438,6.785319,1.333,7.477402 +L 1.333,7.477402,1.3154,9.000006 + +[蒸] 51 +L 0.4628,-0.000003,0.5963,0.343215 +L 0.5963,0.343215,0.7399,0.686477 +L 0.7399,0.686477,0.8901,1.029696 +L 3.0231,0.266949,2.8725,0.532501 +L 2.8725,0.532501,2.7293,0.789581 +L 2.7293,0.789581,2.5997,1.029696 +L 5.1355,0.266949,4.9775,0.532501 +L 4.9775,0.532501,4.8343,0.789581 +L 4.8343,0.789581,4.7047,1.029696 +L 7.2646,0.266949,7.1144,0.532501 +L 7.1144,0.532501,6.9704,0.789581 +L 6.9704,0.789581,6.8408,1.029696 +L 1.7447,2.09744,3.1496,2.09744 +L 3.1496,2.09744,4.5607,2.09744 +L 4.5607,2.09744,5.9866,2.09744 +L 0.6804,2.631345,1.3139,3.268441 +L 1.3139,3.268441,1.9552,3.888397 +L 1.9552,3.888397,2.5997,4.500078 +L 2.5997,4.500078,2.0214,4.603116 +L 2.0214,4.603116,1.4509,4.689298 +L 1.4509,4.689298,0.8901,4.767009 +L 6.8408,2.631345,6.1999,3.508403 +L 6.1999,3.508403,5.5558,4.385592 +L 5.5558,4.385592,4.918,5.262737 +L 4.918,5.262737,4.6203,5.108782 +L 4.6203,5.108782,4.3404,4.946313 +L 4.3404,4.946313,4.0637,4.767009 +L 4.0637,4.767009,4.0007,4.233038 +L 4.0007,4.233038,3.9411,3.699155 +L 3.9411,3.699155,3.8816,3.165294 +L 3.8816,3.165294,3.58,3.165294 +L 3.58,3.165294,3.2998,3.165294 +L 3.2998,3.165294,3.0231,3.165294 +L 5.5558,6.063594,4.1334,6.166807 +L 4.1334,6.166807,2.7223,6.252923 +L 2.7223,6.252923,1.3139,6.330481 +L 0.4628,7.932174,1.1672,7.932174 +L 1.1672,7.932174,1.8747,7.932174 +L 1.8747,7.932174,2.5997,7.932174 +L 2.5997,7.932174,2.5997,8.302318 +L 2.5997,8.302318,2.5997,8.655343 +L 2.5997,8.655343,2.5997,9.000006 +L 3.0231,7.932174,3.7306,7.932174 +L 3.7306,7.932174,4.4311,7.932174 +L 4.4311,7.932174,5.1355,7.932174 +L 5.1355,7.932174,5.1355,8.302318 +L 5.1355,8.302318,5.1355,8.655343 +L 5.1355,8.655343,5.1355,9.000006 +L 5.5558,7.932174,6.1158,7.932174 +L 6.1158,7.932174,6.6867,7.932174 +L 6.6867,7.932174,7.2646,7.932174 + +[針] 36 +L 0.4929,-0.000003,0.9205,-0.000003 +L 0.9205,-0.000003,1.3478,-0.000003 +L 1.3478,-0.000003,1.7783,-0.000003 +L 1.7783,-0.000003,1.8483,2.286704 +L 1.8483,2.286704,1.6382,4.056492 +L 1.6382,4.056492,0.4929,4.767009 +L 6.0127,-0.000003,6.0933,2.940721 +L 6.0933,2.940721,5.7956,4.686474 +L 5.7956,4.686474,4.3039,5.262737 +L 2.3845,0.495703,2.5978,0.685033 +L 2.5978,0.685033,2.8115,0.865847 +L 2.8115,0.865847,3.0255,1.029696 +L 0.9205,1.830553,0.7696,2.286704 +L 0.7696,2.286704,0.6228,2.734514 +L 0.6228,2.734514,0.4929,3.165294 +L 2.5978,2.364371,2.7278,2.820565 +L 2.7278,2.820565,2.8745,3.268441 +L 2.8745,3.268441,3.0255,3.699155 +L 2.2024,4.767009,1.9009,5.155365 +L 1.9009,5.155365,1.7926,5.560752 +L 1.7926,5.560752,1.7783,6.330481 +L 1.7783,6.330481,1.1583,6.350357 +L 1.1583,6.350357,0.826,6.488704 +L 0.826,6.488704,0.4929,6.864452 +L 0.4929,6.864452,0.9205,7.587599 +L 0.9205,7.587599,1.3478,8.302318 +L 1.3478,8.302318,1.7783,9.000006 +L 1.7783,9.000006,2.1814,8.466122 +L 2.1814,8.466122,2.6017,7.932174 +L 2.6017,7.932174,3.0255,7.398313 +L 6.4089,5.262737,6.1318,5.757151 +L 6.1318,5.757151,6.0302,6.726018 +L 6.0302,6.726018,6.0127,9.000006 +L 6.8393,5.262737,7.1164,5.262737 +L 7.1164,5.262737,7.4001,5.262737 +L 7.4001,5.262737,7.6939,5.262737 + +[仁] 15 +L 1.3463,-0.000003,1.2693,1.754287 +L 1.2693,1.754287,1.1954,3.508403 +L 1.1954,3.508403,1.1358,5.262737 +L 1.1358,5.262737,0.9225,5.108782 +L 0.9225,5.108782,0.7155,4.946313 +L 0.7155,4.946313,0.5264,4.767009 +L 2.6314,0.495703,4.3125,0.495703 +L 4.3125,0.495703,6.0147,0.495703 +L 6.0147,0.495703,7.7243,0.495703 +L 1.3463,5.796751,1.458,7.101677 +L 1.458,7.101677,1.6647,8.050929 +L 1.6647,8.050929,1.7771,9.000006 +L 3.0552,7.398313,4.4635,7.398313 +L 4.4635,7.398313,5.8711,7.398313 +L 5.8711,7.398313,7.297,7.398313 + +[垂] 54 +L 0.5249,-0.000003,1.653,-0.000003 +L 1.653,-0.000003,2.7808,-0.000003 +L 2.7808,-0.000003,3.9156,-0.000003 +L 3.9156,-0.000003,3.8981,1.119993 +L 3.8981,1.119993,3.793,1.66388 +L 3.793,1.66388,3.5128,2.09744 +L 3.5128,2.09744,2.6617,2.09744 +L 2.6617,2.09744,1.8033,2.09744 +L 1.8033,2.09744,0.9522,2.09744 +L 4.3356,-0.000003,5.3232,-0.000003 +L 5.3232,-0.000003,6.3253,-0.000003 +L 6.3253,-0.000003,7.3302,-0.000003 +L 4.3356,2.09744,4.0242,2.769823 +L 4.0242,2.769823,3.8102,3.560677 +L 3.8102,3.560677,3.5128,4.233038 +L 3.5128,4.233038,2.6123,4.131336 +L 2.6123,4.131336,2.28,3.673741 +L 2.28,3.673741,2.2344,2.631345 +L 4.7667,2.09744,5.0431,2.09744 +L 5.0431,2.09744,5.3232,2.09744 +L 5.3232,2.09744,5.6213,2.09744 +L 5.6213,2.09744,5.1796,3.59325 +L 5.1796,3.59325,4.2799,5.216067 +L 4.2799,5.216067,3.5128,6.330481 +L 3.5128,6.330481,3.089,6.330481 +L 3.089,6.330481,2.6617,6.330481 +L 2.6617,6.330481,2.2344,6.330481 +L 2.2344,6.330481,2.1189,4.871469 +L 2.1189,4.871469,1.6177,4.319154 +L 1.6177,4.319154,0.5249,4.233038 +L 6.0451,2.09744,6.3253,2.09744 +L 6.3253,2.09744,6.6051,2.09744 +L 6.6051,2.09744,6.8997,2.09744 +L 6.0451,4.233038,5.7439,4.666598 +L 5.7439,4.666598,5.6388,5.210529 +L 5.6388,5.210529,5.6213,6.330481 +L 5.6213,6.330481,4.4722,6.432293 +L 4.4722,6.432293,3.9997,6.889976 +L 3.9997,6.889976,3.9156,7.932174 +L 3.9156,7.932174,3.0572,7.932174 +L 3.0572,7.932174,2.2131,7.932174 +L 2.2131,7.932174,1.3795,7.932174 +L 6.4724,4.233038,6.7491,4.233038 +L 6.7491,4.233038,7.0328,4.233038 +L 7.0328,4.233038,7.3302,4.233038 +L 0.9522,6.330481,1.2257,6.330481 +L 1.2257,6.330481,1.5094,6.330481 +L 1.5094,6.330481,1.8033,6.330481 +L 6.0451,6.330481,6.3253,6.330481 +L 6.3253,6.330481,6.6051,6.330481 +L 6.6051,6.330481,6.8997,6.330481 +L 4.5496,7.932174,5.0504,8.307943 +L 5.0504,8.307943,5.5509,8.446377 +L 5.5509,8.446377,6.4724,8.466122 + +[推] 57 +L 0.5588,-0.000003,0.8281,-0.000003 +L 0.8281,-0.000003,1.1118,-0.000003 +L 1.1118,-0.000003,1.4099,-0.000003 +L 1.4099,-0.000003,1.4099,1.24722 +L 1.4099,1.24722,1.4099,2.477368 +L 1.4099,2.477368,1.4099,3.699155 +L 1.4099,3.699155,1.1118,3.699155 +L 1.1118,3.699155,0.8281,3.699155 +L 0.8281,3.699155,0.5588,3.699155 +L 3.5148,-0.000003,3.4308,2.124256 +L 3.4308,2.124256,3.3639,4.231659 +L 3.3639,4.231659,3.3008,6.330481 +L 3.3008,6.330481,3.0837,6.166807 +L 3.0837,6.166807,2.8735,5.98595 +L 2.8735,5.98595,2.6637,5.796751 +L 3.9421,-0.000003,4.4987,-0.000003 +L 4.4987,-0.000003,5.0734,-0.000003 +L 5.0734,-0.000003,5.651,-0.000003 +L 5.651,-0.000003,5.5669,1.885542 +L 5.5669,1.885542,5.1011,2.55092 +L 5.1011,2.55092,3.9421,2.631345 +L 6.0471,-0.000003,6.6036,-0.000003 +L 6.6036,-0.000003,7.1749,-0.000003 +L 7.1749,-0.000003,7.7559,-0.000003 +L 6.0471,2.631345,5.3848,3.981606 +L 5.3848,3.981606,5.1295,4.611588 +L 5.1295,4.611588,3.9421,4.767009 +L 6.4744,2.631345,6.7472,2.631345 +L 6.7472,2.631345,7.0348,2.631345 +L 7.0348,2.631345,7.3287,2.631345 +L 1.4099,4.233038,1.4099,4.946313 +L 1.4099,4.946313,1.4099,5.642643 +L 1.4099,5.642643,1.4099,6.330481 +L 1.4099,6.330481,1.1118,6.519789 +L 1.1118,6.519789,0.8281,6.700602 +L 0.8281,6.700602,0.5588,6.864452 +L 5.8331,5.033874,5.6198,5.644089 +L 5.6198,5.644089,5.4167,6.254303 +L 5.4167,6.254303,5.2237,6.864452 +L 5.2237,6.864452,4.6423,6.967555 +L 4.6423,6.967555,4.0749,7.053694 +L 4.0749,7.053694,3.5148,7.131405 +L 3.5148,7.131405,3.6441,7.768412 +L 3.6441,7.768412,3.7912,8.388456 +L 3.7912,8.388456,3.9421,9.000006 +L 6.4744,4.767009,6.7472,4.767009 +L 6.7472,4.767009,7.0348,4.767009 +L 7.0348,4.767009,7.3287,4.767009 +L 1.8372,6.864452,1.5356,7.2995 +L 1.5356,7.2995,1.4274,7.853172 +L 1.4274,7.853172,1.4099,9.000006 +L 6.0471,6.864452,5.7809,7.477402 +L 5.7809,7.477402,5.7809,8.031141 +L 5.7809,8.031141,6.0471,9.000006 +L 6.4744,6.864452,6.8982,6.864452 +L 6.8982,6.864452,7.3287,6.864452 +L 7.3287,6.864452,7.7559,6.864452 + +[寸] 15 +L 4.3991,-0.000003,4.8019,-0.000003 +L 4.8019,-0.000003,5.2222,-0.000003 +L 5.2222,-0.000003,5.653,-0.000003 +L 5.653,-0.000003,5.5864,5.440728 +L 5.5864,5.440728,4.3956,6.915238 +L 4.3956,6.915238,0.5849,6.864452 +L 3.1207,3.966064,2.8233,4.412517 +L 2.8233,4.412517,2.5396,4.841808 +L 2.5396,4.841808,2.263,5.262737 +L 6.0768,6.864452,5.7756,7.2995 +L 5.7756,7.2995,5.6705,7.853172 +L 5.6705,7.853172,5.653,9.000006 +L 6.5041,6.864452,6.9317,6.864452 +L 6.9317,6.864452,7.3625,6.864452 +L 7.3625,6.864452,7.7863,6.864452 + +[盛] 69 +L 0.5838,-0.000003,1.0142,-0.000003 +L 1.0142,-0.000003,1.4415,-0.000003 +L 1.4415,-0.000003,1.8688,-0.000003 +L 1.8688,-0.000003,1.8688,0.87712 +L 1.8688,0.87712,1.8688,1.754287 +L 1.8688,1.754287,1.8688,2.631345 +L 1.8688,2.631345,3.4239,2.631345 +L 3.4239,2.631345,4.979,2.631345 +L 4.979,2.631345,6.5344,2.631345 +L 6.5344,2.631345,6.5344,1.754287 +L 6.5344,1.754287,6.5344,0.87712 +L 6.5344,0.87712,6.5344,-0.000003 +L 6.5344,-0.000003,6.9404,-0.000003 +L 6.9404,-0.000003,7.361,-0.000003 +L 7.361,-0.000003,7.7848,-0.000003 +L 2.2926,-0.000003,2.6989,-0.000003 +L 2.6989,-0.000003,3.1192,-0.000003 +L 3.1192,-0.000003,3.5465,-0.000003 +L 3.5465,-0.000003,3.5465,0.713293 +L 3.5465,0.713293,3.5465,1.409602 +L 3.5465,1.409602,3.5465,2.09744 +L 3.9703,-0.000003,4.2473,-0.000003 +L 4.2473,-0.000003,4.531,-0.000003 +L 4.531,-0.000003,4.8249,-0.000003 +L 4.8249,-0.000003,4.8249,0.713293 +L 4.8249,0.713293,4.8249,1.409602 +L 4.8249,1.409602,4.8249,2.09744 +L 5.2525,-0.000003,5.5289,-0.000003 +L 5.5289,-0.000003,5.8126,-0.000003 +L 5.8126,-0.000003,6.1103,-0.000003 +L 0.5838,3.699155,1.2139,5.118589 +L 1.2139,5.118589,1.4205,6.36023 +L 1.4205,6.36023,1.4415,7.932174 +L 1.4415,7.932174,2.2755,7.932174 +L 2.2755,7.932174,3.1192,7.932174 +L 3.1192,7.932174,3.9703,7.932174 +L 3.9703,7.932174,4.1037,8.302318 +L 4.1037,8.302318,4.2473,8.655343 +L 4.2473,8.655343,4.4014,9.000006 +L 7.361,3.699155,6.7863,4.231659 +L 6.7863,4.231659,6.2329,4.755648 +L 6.2329,4.755648,5.6798,5.262737 +L 5.6798,5.262737,5.1051,4.919584 +L 5.1051,4.919584,4.531,4.576256 +L 4.531,4.576256,3.9703,4.233038 +L 7.7848,3.699155,7.7848,4.231659 +L 7.7848,4.231659,7.7848,4.755648 +L 7.7848,4.755648,7.7848,5.262737 +L 2.5066,4.233038,2.9371,4.666598 +L 2.9371,4.666598,3.0982,5.210529 +L 3.0982,5.210529,3.1157,6.330481 +L 3.1157,6.330481,2.6954,6.330481 +L 2.6954,6.330481,2.2755,6.330481 +L 2.2755,6.330481,1.8688,6.330481 +L 5.2525,5.796751,4.9548,6.330481 +L 4.9548,6.330481,4.6743,6.864452 +L 4.6743,6.864452,4.4014,7.398313 +L 4.4014,7.398313,4.7619,7.783954 +L 4.7619,7.783954,5.3156,7.991585 +L 5.3156,7.991585,6.5344,8.199192 +L 6.5344,8.199192,6.3835,8.466122 +L 6.3835,8.466122,6.2399,8.733119 +L 6.2399,8.733119,6.1103,9.000006 +L 6.1103,5.796751,6.3835,6.166807 +L 6.3835,6.166807,6.6637,6.519789 +L 6.6637,6.519789,6.9614,6.864452 +L 6.9614,7.932174,7.2349,7.932174 +L 7.2349,7.932174,7.5148,7.932174 +L 7.5148,7.932174,7.7848,7.932174 + +[聖] 54 +L 0.6173,-0.000003,1.7482,-0.000003 +L 1.7482,-0.000003,2.8725,-0.000003 +L 2.8725,-0.000003,4.0042,-0.000003 +L 4.0042,-0.000003,3.5835,1.473216 +L 3.5835,1.473216,2.6032,1.691988 +L 2.6032,1.691988,1.4719,1.563601 +L 4.4311,-0.000003,5.4083,-0.000003 +L 5.4083,-0.000003,6.3928,-0.000003 +L 6.3928,-0.000003,7.3907,-0.000003 +L 4.4311,1.563601,4.1299,1.97886 +L 4.1299,1.97886,4.0182,2.394098 +L 4.0182,2.394098,4.0042,3.165294 +L 4.0042,3.165294,3.0021,3.165294 +L 3.0021,3.165294,2.0183,3.165294 +L 2.0183,3.165294,1.0446,3.165294 +L 4.8584,1.563601,5.4083,1.563601 +L 5.4083,1.563601,5.9655,1.563601 +L 5.9655,1.563601,6.5361,1.563601 +L 4.4311,3.165294,5.2647,3.165294 +L 5.2647,3.165294,6.1091,3.165294 +L 6.1091,3.165294,6.9634,3.165294 +L 3.5734,4.233038,3.5734,4.576256 +L 3.5734,4.576256,3.5734,4.919584 +L 3.5734,4.919584,3.5734,5.262737 +L 3.5734,5.262737,2.5153,5.134197 +L 2.5153,5.134197,1.654,4.895505 +L 1.654,4.895505,0.6173,4.767009 +L 5.2822,4.767009,5.2822,5.833417 +L 5.2822,5.833417,5.2822,6.891377 +L 5.2822,6.891377,5.2822,7.932174 +L 5.2822,7.932174,5.8321,7.932174 +L 5.8321,7.932174,6.3928,7.932174 +L 6.3928,7.932174,6.9634,7.932174 +L 6.9634,7.932174,6.9634,6.891377 +L 6.9634,6.891377,6.9634,5.833417 +L 6.9634,5.833417,6.9634,4.767009 +L 6.9634,4.767009,6.3928,4.767009 +L 6.3928,4.767009,5.8321,4.767009 +L 5.8321,4.767009,5.2822,4.767009 +L 1.4719,5.262737,1.4719,6.330481 +L 1.4719,6.330481,1.4719,7.398313 +L 1.4719,7.398313,1.4719,8.466122 +L 1.4719,8.466122,1.1773,8.466122 +L 1.1773,8.466122,0.8901,8.466122 +L 0.8901,8.466122,0.6173,8.466122 +L 3.5734,6.063594,2.9951,6.166807 +L 2.9951,6.166807,2.4246,6.252923 +L 2.4246,6.252923,1.8638,6.330481 +L 3.5734,7.131405,2.9951,7.234507 +L 2.9951,7.234507,2.4246,7.320646 +L 2.4246,7.320646,1.8638,7.398313 +L 3.5734,8.199192,2.9951,8.302318 +L 2.9951,8.302318,2.4246,8.388456 +L 2.4246,8.388456,1.8638,8.466122 + +[誠] 59 +L 1.0431,-0.000003,1.0431,0.713293 +L 1.0431,0.713293,1.0431,1.409602 +L 1.0431,1.409602,1.0431,2.09744 +L 1.0431,2.09744,1.4704,2.09744 +L 1.4704,2.09744,1.9008,2.09744 +L 1.9008,2.09744,2.3215,2.09744 +L 2.3215,2.09744,2.3215,1.409602 +L 2.3215,1.409602,2.3215,0.713293 +L 2.3215,0.713293,2.3215,-0.000003 +L 2.3215,-0.000003,1.9008,-0.000003 +L 1.9008,-0.000003,1.4704,-0.000003 +L 1.4704,-0.000003,1.0431,-0.000003 +L 3.1792,0.266949,3.4805,1.019823 +L 3.4805,1.019823,3.5929,2.730267 +L 3.5929,2.730267,3.61,6.864452 +L 3.61,6.864452,5.1861,6.875637 +L 5.1861,6.875637,5.943,7.361669 +L 5.943,7.361669,6.1427,9.000006 +L 5.0709,-0.000003,5.5613,0.610168 +L 5.5613,0.610168,6.0583,1.22036 +L 6.0583,1.22036,6.5661,1.830553 +L 6.5661,1.830553,5.9532,4.033968 +L 5.9532,4.033968,6.342,6.00854 +L 6.342,6.00854,7.8484,6.864452 +L 7.4211,-0.000003,7.2701,0.343215 +L 7.2701,0.343215,7.123,0.686477 +L 7.123,0.686477,6.9938,1.029696 +L 7.8484,-0.000003,7.8484,0.532501 +L 7.8484,0.532501,7.8484,1.056555 +L 7.8484,1.056555,7.8484,1.563601 +L 4.8569,1.563601,4.8569,2.631345 +L 4.8569,2.631345,4.8569,3.699155 +L 4.8569,3.699155,4.8569,4.767009 +L 4.8569,4.767009,4.5841,4.767009 +L 4.5841,4.767009,4.3105,4.767009 +L 4.3105,4.767009,4.0303,4.767009 +L 6.9938,2.898363,7.2946,3.519742 +L 7.2946,3.519742,7.4067,4.132758 +L 7.4067,4.132758,7.4211,5.262737 +L 1.0431,3.699155,1.4704,3.699155 +L 1.4704,3.699155,1.9008,3.699155 +L 1.9008,3.699155,2.3215,3.699155 +L 1.0431,5.262737,1.4704,5.262737 +L 1.4704,5.262737,1.9008,5.262737 +L 1.9008,5.262737,2.3215,5.262737 +L 0.6158,6.864452,1.3194,6.864452 +L 1.3194,6.864452,2.0304,6.864452 +L 2.0304,6.864452,2.7519,6.864452 +L 1.0431,8.466122,1.4704,8.466122 +L 1.4704,8.466122,1.9008,8.466122 +L 1.9008,8.466122,2.3215,8.466122 +L 0.6158,6.902498,3.1481,6.902498 +L 1.0431,8.504343,2.7243,8.504343 +L 1.0431,5.300957,2.7243,5.300957 +L 1.0431,4.233038,2.7243,4.233038 +L 1.0431,2.669522,2.7243,2.669522 +L 1.0431,-0.000003,1.0431,2.669522 +L 2.7243,-0.000003,1.0431,-0.000003 +L 2.7243,2.669522,2.7243,-0.000003 + +[宣] 36 +L 0.649,-0.000003,2.9049,-0.000003 +L 2.9049,-0.000003,5.1636,-0.000003 +L 5.1636,-0.000003,7.4157,-0.000003 +L 2.3585,1.563601,2.3585,2.631345 +L 2.3585,2.631345,2.3585,3.699155 +L 2.3585,3.699155,2.3585,4.767009 +L 2.3585,4.767009,3.486,4.767009 +L 3.486,4.767009,4.6137,4.767009 +L 4.6137,4.767009,5.7419,4.767009 +L 5.7419,4.767009,5.7419,3.699155 +L 5.7419,3.699155,5.7419,2.631345 +L 5.7419,2.631345,5.7419,1.563601 +L 5.7419,1.563601,4.6137,1.563601 +L 4.6137,1.563601,3.486,1.563601 +L 3.486,1.563601,2.3585,1.563601 +L 2.7504,3.165294,3.605,3.165294 +L 3.605,3.165294,4.4596,3.165294 +L 4.4596,3.165294,5.3146,3.165294 +L 1.9274,6.330481,3.3322,6.330481 +L 3.3322,6.330481,4.7433,6.330481 +L 4.7433,6.330481,6.1692,6.330481 +L 0.649,6.864452,0.649,7.234507 +L 0.649,7.234507,0.649,7.587599 +L 0.649,7.587599,0.649,7.932174 +L 0.649,7.932174,1.7771,7.932174 +L 1.7771,7.932174,2.9049,7.932174 +L 2.9049,7.932174,4.0323,7.932174 +L 4.0323,7.932174,4.0323,8.302318 +L 4.0323,8.302318,4.0323,8.655343 +L 4.0323,8.655343,4.0323,9.000006 +L 7.4157,6.864452,7.4157,7.234507 +L 7.4157,7.234507,7.4157,7.587599 +L 7.4157,7.587599,7.4157,7.932174 +L 7.4157,7.932174,6.421,7.932174 +L 6.421,7.932174,5.4372,7.932174 +L 5.4372,7.932174,4.4596,7.932174 + +[専] 51 +L 4.49,-0.000003,4.8994,-0.000003 +L 4.8994,-0.000003,5.3166,-0.000003 +L 5.3166,-0.000003,5.7439,-0.000003 +L 5.7439,-0.000003,5.7295,1.495784 +L 5.7295,1.495784,5.6178,2.177953 +L 5.6178,2.177953,5.3166,2.631345 +L 5.3166,2.631345,4.3145,2.5537 +L 4.3145,2.5537,3.3342,2.467518 +L 3.3342,2.467518,2.3532,2.364371 +L 2.3532,2.364371,2.6334,1.933657 +L 2.6334,1.933657,2.9136,1.485912 +L 2.9136,1.485912,3.2081,1.029696 +L 0.6793,2.631345,1.0821,2.631345 +L 1.0821,2.631345,1.5021,2.631345 +L 1.5021,2.631345,1.9332,2.631345 +L 6.1712,2.631345,5.8696,3.046648 +L 5.8696,3.046648,5.7579,3.46193 +L 5.7579,3.46193,5.7439,4.233038 +L 5.7439,4.233038,4.3145,4.233038 +L 4.3145,4.233038,2.9069,4.233038 +L 2.9069,4.233038,1.5021,4.233038 +L 1.5021,4.233038,1.5021,4.946313 +L 1.5021,4.946313,1.5021,5.642643 +L 1.5021,5.642643,1.5021,6.330481 +L 1.5021,6.330481,2.2029,6.330481 +L 2.2029,6.330481,2.9136,6.330481 +L 2.9136,6.330481,3.6389,6.330481 +L 3.6389,6.330481,3.9226,6.923665 +L 3.9226,6.923665,3.9226,7.338837 +L 3.9226,7.338837,3.6389,7.932174 +L 3.6389,7.932174,2.6407,7.932174 +L 2.6407,7.932174,1.6565,7.932174 +L 1.6565,7.932174,0.6793,7.932174 +L 6.5981,2.631345,6.8752,2.631345 +L 6.8752,2.631345,7.1554,2.631345 +L 7.1554,2.631345,7.4527,2.631345 +L 6.381,4.233038,6.444,4.576256 +L 6.444,4.576256,6.5144,4.919584 +L 6.5144,4.919584,6.5981,5.262737 +L 6.5981,5.262737,5.043,5.262737 +L 5.043,5.262737,3.4845,5.262737 +L 3.4845,5.262737,1.9332,5.262737 +L 4.0627,5.796751,4.4406,6.152512 +L 4.4406,6.152512,5.0991,6.152512 +L 5.0991,6.152512,6.5981,5.796751 +L 4.49,7.932174,4.3429,8.302318 +L 4.3429,8.302318,4.1993,8.655343 +L 4.1993,8.655343,4.0627,9.000006 +L 4.917,7.932174,5.7505,7.932174 +L 5.7505,7.932174,6.5981,7.932174 +L 6.5981,7.932174,7.4527,7.932174 + +[泉] 42 +L 2.814,-0.000003,3.2203,-0.000003 +L 3.2203,-0.000003,3.6409,-0.000003 +L 3.6409,-0.000003,4.0647,-0.000003 +L 4.0647,-0.000003,4.0647,1.600289 +L 4.0647,1.600289,4.0647,3.192219 +L 4.0647,3.192219,4.0647,4.767009 +L 4.0647,4.767009,3.3639,4.767009 +L 3.3639,4.767009,2.6602,4.767009 +L 2.6602,4.767009,1.9597,4.767009 +L 1.9597,4.767009,1.9597,5.833417 +L 1.9597,5.833417,1.9597,6.891377 +L 1.9597,6.891377,1.9597,7.932174 +L 1.9597,7.932174,3.1751,8.149808 +L 3.1751,8.149808,3.7215,8.426545 +L 3.7215,8.426545,4.0647,9.000006 +L 0.8911,0.495703,1.5324,1.296648 +L 1.5324,1.296648,2.173,2.09744 +L 2.173,2.09744,2.814,2.898363 +L 2.814,2.898363,2.0925,3.001466 +L 2.0925,3.001466,1.3815,3.087627 +L 1.3815,3.087627,0.6813,3.165294 +L 7.0558,0.495703,6.2009,1.399686 +L 6.2009,1.399686,5.3463,2.286704 +L 5.3463,2.286704,4.4917,3.165294 +L 6.2009,2.631345,6.4744,3.001466 +L 6.4744,3.001466,6.7612,3.354558 +L 6.7612,3.354558,7.0558,3.699155 +L 4.4917,4.767009,5.0524,4.767009 +L 5.0524,4.767009,5.6233,4.767009 +L 5.6233,4.767009,6.2009,4.767009 +L 6.2009,4.767009,6.2009,5.299403 +L 6.2009,5.299403,6.2009,5.82337 +L 6.2009,5.82337,6.2009,6.330481 +L 6.2009,6.330481,4.9225,6.330481 +L 4.9225,6.330481,3.6476,6.330481 +L 3.6476,6.330481,2.3902,6.330481 +L 6.2009,6.864452,6.2009,7.234507 +L 6.2009,7.234507,6.2009,7.587599 +L 6.2009,7.587599,6.2009,7.932174 +L 6.2009,7.932174,5.4762,7.932174 +L 5.4762,7.932174,4.7652,7.932174 +L 4.7652,7.932174,4.0647,7.932174 + +[染] 36 +L 4.0944,-0.000003,4.0138,0.87712 +L 4.0138,0.87712,3.9441,1.754287 +L 3.9441,1.754287,3.8842,2.631345 +L 3.8842,2.631345,2.8125,1.933657 +L 2.8125,1.933657,1.7551,1.219025 +L 1.7551,1.219025,0.7075,0.495703 +L 7.0543,0.495703,4.8369,2.365881 +L 4.8369,2.365881,3.1281,2.97325 +L 3.1281,2.97325,0.7075,3.165294 +L 4.9493,3.165294,5.7829,3.165294 +L 5.7829,3.165294,6.6305,3.165294 +L 6.6305,3.165294,7.4851,3.165294 +L 0.7075,4.233038,1.1383,4.765476 +L 1.1383,4.765476,1.5656,5.289618 +L 1.5656,5.289618,1.9894,5.796751 +L 2.8125,4.767009,3.2398,5.566378 +L 3.2398,5.566378,3.6706,6.357362 +L 3.6706,6.357362,4.0944,7.131405 +L 4.0944,7.131405,3.7651,7.694883 +L 3.7651,7.694883,3.4328,7.9026 +L 3.4328,7.9026,2.8125,7.932174 +L 5.8039,5.262737,5.8039,6.166807 +L 5.8039,6.166807,5.8039,7.053694 +L 5.8039,7.053694,5.8039,7.932174 +L 5.8039,7.932174,5.3801,7.932174 +L 5.3801,7.932174,4.9493,7.932174 +L 4.9493,7.932174,4.5217,7.932174 +L 4.5217,7.932174,4.3711,8.302318 +L 4.3711,8.302318,4.2243,8.655343 +L 4.2243,8.655343,4.0944,9.000006 +L 6.1958,5.262737,6.476,5.262737 +L 6.476,5.262737,6.7566,5.262737 +L 6.7566,5.262737,7.0543,5.262737 +L 7.0543,5.262737,7.0543,5.632858 +L 7.0543,5.632858,7.0543,5.98595 +L 7.0543,5.98595,7.0543,6.330481 + +[善] 57 +L 1.9879,-0.000003,1.9879,0.713293 +L 1.9879,0.713293,1.9879,1.409602 +L 1.9879,1.409602,1.9879,2.09744 +L 1.9879,2.09744,3.3927,2.09744 +L 3.3927,2.09744,4.8039,2.09744 +L 4.8039,2.09744,6.2329,2.09744 +L 6.2329,2.09744,6.2329,1.409602 +L 6.2329,1.409602,6.2329,0.713293 +L 6.2329,0.713293,6.2329,-0.000003 +L 6.2329,-0.000003,4.8039,-0.000003 +L 4.8039,-0.000003,3.3927,-0.000003 +L 3.3927,-0.000003,1.9879,-0.000003 +L 0.7379,3.699155,1.4415,3.699155 +L 1.4415,3.699155,2.1424,3.699155 +L 2.1424,3.699155,2.8428,3.699155 +L 2.8428,3.699155,2.6919,4.309304 +L 2.6919,4.309304,2.5483,4.919584 +L 2.5483,4.919584,2.4191,5.529667 +L 2.4191,5.529667,1.8478,5.632858 +L 1.8478,5.632858,1.2878,5.718976 +L 1.2878,5.718976,0.7379,5.796751 +L 3.2701,3.699155,3.5465,3.699155 +L 3.5465,3.699155,3.8302,3.699155 +L 3.8302,3.699155,4.1279,3.699155 +L 4.1279,3.699155,4.0442,5.090329 +L 4.0442,5.090329,3.6799,5.676508 +L 3.6799,5.676508,2.8428,5.796751 +L 4.5552,3.699155,4.8287,3.802302 +L 4.8287,3.802302,5.1016,3.888397 +L 5.1016,3.888397,5.3786,3.966064 +L 5.3786,3.966064,5.5044,4.576256 +L 5.5044,4.576256,5.655,5.186449 +L 5.655,5.186449,5.8024,5.796751 +L 5.8024,5.796751,4.6358,6.073379 +L 4.6358,6.073379,3.4593,6.587561 +L 3.4593,6.587561,1.9879,6.864452 +L 5.8024,3.699155,6.3625,3.699155 +L 6.3625,3.699155,6.9337,3.699155 +L 6.9337,3.699155,7.5113,3.699155 +L 6.2329,5.796751,6.6602,5.796751 +L 6.6602,5.796751,7.084,5.796751 +L 7.084,5.796751,7.5113,5.796751 +L 4.5552,6.864452,4.4014,7.131405 +L 4.4014,7.131405,4.2575,7.398313 +L 4.2575,7.398313,4.1279,7.665309 +L 4.1279,7.665309,3.1227,7.768412 +L 3.1227,7.768412,2.1213,7.854595 +L 2.1213,7.854595,1.1333,7.932174 +L 4.9513,6.864452,5.3786,6.864452 +L 5.3786,6.864452,5.8024,6.864452 +L 5.8024,6.864452,6.2329,6.864452 +L 4.7373,7.932174,4.9513,8.302318 +L 4.9513,8.302318,5.1611,8.655343 +L 5.1611,8.655343,5.3786,9.000006 +L 5.3786,7.932174,5.9352,7.932174 +L 5.9352,7.932174,6.5064,7.932174 +L 6.5064,7.932174,7.084,7.932174 + +[創] 48 +L 2.0218,-0.000003,1.9377,0.713293 +L 1.9377,0.713293,1.8712,1.409602 +L 1.8712,1.409602,1.8043,2.09744 +L 1.8043,2.09744,1.44,1.563601 +L 1.44,1.563601,1.0866,1.029696 +L 1.0866,1.029696,0.7399,0.495703 +L 2.4487,-0.000003,2.9986,-0.000003 +L 2.9986,-0.000003,3.5523,-0.000003 +L 3.5523,-0.000003,4.1267,-0.000003 +L 4.1267,-0.000003,4.1267,0.713293 +L 4.1267,0.713293,4.1267,1.409602 +L 4.1267,1.409602,4.1267,2.09744 +L 4.1267,2.09744,3.5523,2.09744 +L 3.5523,2.09744,2.9986,2.09744 +L 2.9986,2.09744,2.4487,2.09744 +L 6.2594,-0.000003,6.6657,-0.000003 +L 6.6657,-0.000003,7.086,-0.000003 +L 7.086,-0.000003,7.5133,-0.000003 +L 7.5133,-0.000003,7.5133,3.011339 +L 7.5133,3.011339,7.5133,6.014144 +L 7.5133,6.014144,7.5133,9.000006 +L 1.5945,2.631345,1.5945,3.697798 +L 1.5945,3.697798,1.5945,4.755648 +L 1.5945,4.755648,1.5945,5.796751 +L 1.5945,5.796751,2.4277,5.796751 +L 2.4277,5.796751,3.2721,5.796751 +L 3.2721,5.796751,4.1267,5.796751 +L 4.1267,5.796751,4.1267,5.108782 +L 4.1267,5.108782,4.1267,4.412517 +L 4.1267,4.412517,4.1267,3.699155 +L 4.1267,3.699155,3.4259,3.699155 +L 3.4259,3.699155,2.7223,3.699155 +L 2.7223,3.699155,2.0218,3.699155 +L 5.8356,2.631345,5.8356,4.412517 +L 5.8356,4.412517,5.8356,6.176658 +L 5.8356,6.176658,5.8356,7.932174 +L 2.0218,4.767009,2.5713,4.767009 +L 2.5713,4.767009,3.1321,4.767009 +L 3.1321,4.767009,3.7026,4.767009 +L 0.7399,6.330481,1.5069,7.234507 +L 1.5069,7.234507,2.2736,8.121569 +L 2.2736,8.121569,3.0581,9.000006 +L 3.0581,9.000006,3.545,8.466122 +L 3.545,8.466122,4.0462,7.932174 +L 4.0462,7.932174,4.5537,7.398313 +L 2.4487,7.398313,2.8519,7.398313 +L 2.8519,7.398313,3.2721,7.398313 +L 3.2721,7.398313,3.7026,7.398313 + +[奏] 60 +L 1.1968,-0.000003,2.1429,0.057984 +L 2.1429,0.057984,2.9099,0.463284 +L 2.9099,0.463284,4.1603,1.563601 +L 4.1603,1.563601,3.7785,1.939282 +L 3.7785,1.939282,3.1232,2.077629 +L 3.1232,2.077629,1.628,2.09744 +L 5.6208,0.266949,5.2632,0.532501 +L 5.2632,0.532501,4.92,0.789581 +L 4.92,0.789581,4.5841,1.029696 +L 6.2652,-0.000003,6.5349,-0.000003 +L 6.5349,-0.000003,6.8218,-0.000003 +L 6.8218,-0.000003,7.1163,-0.000003 +L 4.5841,2.09744,4.2864,2.512699 +L 4.2864,2.512699,4.1739,2.928024 +L 4.1739,2.928024,4.1603,3.699155 +L 4.1603,3.699155,3.7291,3.699155 +L 3.7291,3.699155,3.3018,3.699155 +L 3.3018,3.699155,2.8745,3.699155 +L 5.0114,2.09744,5.5613,2.09744 +L 5.5613,2.09744,6.1216,2.09744 +L 6.1216,2.09744,6.6925,2.09744 +L 0.9835,3.165294,1.4704,3.802302 +L 1.4704,3.802302,1.9639,4.42228 +L 1.9639,4.42228,2.4507,5.033874 +L 2.4507,5.033874,1.8802,5.110205 +L 1.8802,5.110205,1.3194,5.186449 +L 1.3194,5.186449,0.7695,5.262737 +L 7.1163,3.165294,5.771,4.78671 +L 5.771,4.78671,4.6261,5.281016 +L 4.6261,5.281016,2.8745,5.529667 +L 2.8745,5.529667,3.008,5.899745 +L 3.008,5.899745,3.1516,6.252923 +L 3.1516,6.252923,3.3018,6.5975 +L 3.3018,6.5975,2.8745,6.700602 +L 2.8745,6.700602,2.4507,6.786675 +L 2.4507,6.786675,2.0203,6.864452 +L 4.5841,3.699155,4.8604,3.699155 +L 4.8604,3.699155,5.1406,3.699155 +L 5.1406,3.699155,5.4387,3.699155 +L 6.2652,5.262737,6.6925,5.262737 +L 6.6925,5.262737,7.1163,5.262737 +L 7.1163,5.262737,7.5436,5.262737 +L 5.4387,5.796751,5.0881,6.370037 +L 5.0881,6.370037,4.6471,6.646949 +L 4.6471,6.646949,3.7291,6.864452 +L 3.7291,6.864452,3.7291,7.234507 +L 3.7291,7.234507,3.7291,7.587599 +L 3.7291,7.587599,3.7291,7.932174 +L 3.7291,7.932174,2.878,7.932174 +L 2.878,7.932174,2.0304,7.932174 +L 2.0304,7.932174,1.1968,7.932174 +L 5.4387,6.864452,5.7115,6.864452 +L 5.7115,6.864452,5.9885,6.864452 +L 5.9885,6.864452,6.2652,6.864452 +L 4.1603,7.932174,4.1603,8.302318 +L 4.1603,8.302318,4.1603,8.655343 +L 4.1603,8.655343,4.1603,9.000006 +L 4.5841,7.932174,5.4176,7.932174 +L 5.4176,7.932174,6.2652,7.932174 +L 6.2652,7.932174,7.1163,7.932174 + +[層] 63 +L 3.3357,-0.000003,3.3357,0.87712 +L 3.3357,0.87712,3.3357,1.754287 +L 3.3357,1.754287,3.3357,2.631345 +L 3.3357,2.631345,4.4596,2.631345 +L 4.4596,2.631345,5.5909,2.631345 +L 5.5909,2.631345,6.7222,2.631345 +L 6.7222,2.631345,6.7222,1.754287 +L 6.7222,1.754287,6.7222,0.87712 +L 6.7222,0.87712,6.7222,-0.000003 +L 6.7222,-0.000003,5.5909,-0.000003 +L 5.5909,-0.000003,4.4596,-0.000003 +L 4.4596,-0.000003,3.3357,-0.000003 +L 0.768,0.762678,1.5494,3.336104 +L 1.5494,3.336104,1.6822,5.765667 +L 1.6822,5.765667,1.6261,8.466122 +L 1.6261,8.466122,3.6085,8.466122 +L 3.6085,8.466122,5.5909,8.466122 +L 5.5909,8.466122,7.5733,8.466122 +L 7.5733,8.466122,7.5733,8.121569 +L 7.5733,8.121569,7.5733,7.768412 +L 7.5733,7.768412,7.5733,7.398313 +L 7.5733,7.398313,7.1495,7.320646 +L 7.1495,7.320646,6.7222,7.234507 +L 6.7222,7.234507,6.2918,7.131405 +L 6.2918,7.131405,6.1408,6.786675 +L 6.1408,6.786675,5.9937,6.433737 +L 5.9937,6.433737,5.8645,6.063594 +L 5.8645,6.063594,6.2918,5.98595 +L 6.2918,5.98595,6.7222,5.899745 +L 6.7222,5.899745,7.1495,5.796751 +L 7.1495,5.796751,7.1495,5.108782 +L 7.1495,5.108782,7.1495,4.412517 +L 7.1495,4.412517,7.1495,3.699155 +L 7.1495,3.699155,5.7209,3.699155 +L 5.7209,3.699155,4.3125,3.699155 +L 4.3125,3.699155,2.9084,3.699155 +L 2.9084,3.699155,2.9084,4.412517 +L 2.9084,4.412517,2.9084,5.108782 +L 2.9084,5.108782,2.9084,5.796751 +L 2.9084,5.796751,3.3357,5.899745 +L 3.3357,5.899745,3.7595,5.98595 +L 3.7595,5.98595,4.1868,6.063594 +L 4.1868,6.063594,4.0358,6.433737 +L 4.0358,6.433737,3.8922,6.786675 +L 3.8922,6.786675,3.7595,7.131405 +L 3.7595,7.131405,3.1812,7.234507 +L 3.1812,7.234507,2.6103,7.320646 +L 2.6103,7.320646,2.0499,7.398313 +L 3.7595,1.563601,4.5931,1.563601 +L 4.5931,1.563601,5.4407,1.563601 +L 5.4407,1.563601,6.2918,1.563601 +L 5.0134,4.233038,4.6628,4.608873 +L 4.6628,4.608873,4.2288,4.747132 +L 4.2288,4.747132,3.3357,4.767009 +L 5.4407,4.767009,5.1426,5.110205 +L 5.1426,5.110205,4.8589,5.453336 +L 4.8589,5.453336,4.5822,5.796751 +L 5.8645,4.767009,6.1408,4.767009 +L 6.1408,4.767009,6.4245,4.767009 +L 6.4245,4.767009,6.7222,4.767009 +L 4.1868,7.398313,4.7363,7.398313 +L 4.7363,7.398313,5.2936,7.398313 +L 5.2936,7.398313,5.8645,7.398313 + +[操] 69 +L 0.8019,-0.000003,1.0783,-0.000003 +L 1.0783,-0.000003,1.3585,-0.000003 +L 1.3585,-0.000003,1.6565,-0.000003 +L 1.6565,-0.000003,1.6565,1.24722 +L 1.6565,1.24722,1.6565,2.477368 +L 1.6565,2.477368,1.6565,3.699155 +L 1.6565,3.699155,1.3585,3.699155 +L 1.3585,3.699155,1.0783,3.699155 +L 1.0783,3.699155,0.8019,3.699155 +L 5.4703,-0.000003,5.3863,0.713293 +L 5.3863,0.713293,5.3166,1.409602 +L 5.3166,1.409602,5.257,2.09744 +L 5.257,2.09744,4.462,1.563601 +L 4.462,1.563601,3.6774,1.029696 +L 3.6774,1.029696,2.9069,0.495703 +L 7.5718,0.495703,6.1008,1.964741 +L 6.1008,1.964741,5.0084,2.433719 +L 5.0084,2.433719,3.3342,2.631345 +L 6.3214,2.631345,6.7316,2.631345 +L 6.7316,2.631345,7.1515,2.631345 +L 7.1515,2.631345,7.5718,2.631345 +L 5.4703,3.43229,5.3166,3.699155 +L 5.3166,3.699155,5.173,3.966064 +L 5.173,3.966064,5.0395,4.233038 +L 5.0395,4.233038,4.462,4.233038 +L 4.462,4.233038,3.8907,4.233038 +L 3.8907,4.233038,3.3342,4.233038 +L 3.3342,4.233038,3.3342,4.765476 +L 3.3342,4.765476,3.3342,5.289618 +L 3.3342,5.289618,3.3342,5.796751 +L 3.3342,5.796751,3.8907,5.796751 +L 3.8907,5.796751,4.462,5.796751 +L 4.462,5.796751,5.0395,5.796751 +L 5.0395,5.796751,5.0395,5.453336 +L 5.0395,5.453336,5.0395,5.110205 +L 5.0395,5.110205,5.0395,4.767009 +L 1.6565,4.233038,1.6565,4.946313 +L 1.6565,4.946313,1.6565,5.642643 +L 1.6565,5.642643,1.6565,6.330481 +L 1.6565,6.330481,1.3585,6.519789 +L 1.3585,6.519789,1.0783,6.700602 +L 1.0783,6.700602,0.8019,6.864452 +L 5.8976,4.233038,5.8976,4.765476 +L 5.8976,4.765476,5.8976,5.289618 +L 5.8976,5.289618,5.8976,5.796751 +L 5.8976,5.796751,6.444,5.796751 +L 6.444,5.796751,7.0044,5.796751 +L 7.0044,5.796751,7.5718,5.796751 +L 7.5718,5.796751,7.5718,5.289618 +L 7.5718,5.289618,7.5718,4.765476 +L 7.5718,4.765476,7.5718,4.233038 +L 7.5718,4.233038,7.0044,4.233038 +L 7.0044,4.233038,6.444,4.233038 +L 6.444,4.233038,5.8976,4.233038 +L 2.0835,6.864452,1.7858,7.2995 +L 1.7858,7.2995,1.674,7.853172 +L 1.674,7.853172,1.6565,9.000006 +L 4.1884,6.864452,4.1884,7.398313 +L 4.1884,7.398313,4.1884,7.932174 +L 4.1884,7.932174,4.1884,8.466122 +L 4.1884,8.466122,5.022,8.466122 +L 5.022,8.466122,5.8665,8.466122 +L 5.8665,8.466122,6.7176,8.466122 +L 6.7176,8.466122,6.7176,7.932174 +L 6.7176,7.932174,6.7176,7.398313 +L 6.7176,7.398313,6.7176,6.864452 +L 6.7176,6.864452,5.8665,6.864452 +L 5.8665,6.864452,5.022,6.864452 +L 5.022,6.864452,4.1884,6.864452 + +[装] 57 +L 1.655,-0.000003,2.0823,-0.000003 +L 2.0823,-0.000003,2.5093,-0.000003 +L 2.5093,-0.000003,2.9401,-0.000003 +L 2.9401,-0.000003,2.9401,0.713293 +L 2.9401,0.713293,2.9401,1.409602 +L 2.9401,1.409602,2.9401,2.09744 +L 2.9401,2.09744,2.194,1.959071 +L 2.194,1.959071,1.5569,1.701969 +L 1.5569,1.701969,0.8316,1.563601 +L 3.5744,-0.000003,4.0679,0.179388 +L 4.0679,0.179388,4.5655,0.341814 +L 4.5655,0.341814,5.0734,0.495703 +L 7.1784,-0.000003,6.3234,0.87712 +L 6.3234,0.87712,5.4797,1.754287 +L 5.4797,1.754287,4.6461,2.631345 +L 4.6461,2.631345,4.6461,3.001466 +L 4.6461,3.001466,4.6461,3.354558 +L 4.6461,3.354558,4.6461,3.699155 +L 4.6461,3.699155,4.0679,3.354558 +L 4.0679,3.354558,3.4973,3.001466 +L 3.4973,3.001466,2.9401,2.631345 +L 0.8316,3.699155,1.6652,3.699155 +L 1.6652,3.699155,2.5093,3.699155 +L 2.5093,3.699155,3.3639,3.699155 +L 5.0734,3.699155,5.907,3.699155 +L 5.907,3.699155,6.7511,3.699155 +L 6.7511,3.699155,7.6057,3.699155 +L 2.5093,4.767009,2.4256,5.299403 +L 2.4256,5.299403,2.359,5.82337 +L 2.359,5.82337,2.296,6.330481 +L 2.296,6.330481,1.8088,5.98595 +L 1.8088,5.98595,1.3184,5.632858 +L 1.3184,5.632858,0.8316,5.262737 +L 3.7912,5.796751,4.3414,5.796751 +L 4.3414,5.796751,4.9014,5.796751 +L 4.9014,5.796751,5.4723,5.796751 +L 5.4723,5.796751,5.4552,6.943586 +L 5.4552,6.943586,5.3536,7.497191 +L 5.3536,7.497191,5.0734,7.932174 +L 5.0734,7.932174,4.4987,7.932174 +L 4.4987,7.932174,3.9211,7.932174 +L 3.9211,7.932174,3.3639,7.932174 +L 5.8961,5.796751,6.3234,5.796751 +L 6.3234,5.796751,6.7511,5.796751 +L 6.7511,5.796751,7.1784,5.796751 +L 2.5093,6.864452,2.5093,7.587599 +L 2.5093,7.587599,2.5093,8.302318 +L 2.5093,8.302318,2.5093,9.000006 +L 1.2589,7.665309,1.1086,7.932174 +L 1.1086,7.932174,0.965,8.199192 +L 0.965,8.199192,0.8316,8.466122 +L 5.8961,7.932174,5.7459,8.302318 +L 5.7459,8.302318,5.6023,8.655343 +L 5.6023,8.655343,5.4723,9.000006 +L 6.3234,7.932174,6.7511,7.932174 +L 6.7511,7.932174,7.1784,7.932174 +L 7.1784,7.932174,7.6057,7.932174 + +[臓] 75 +L 0.8301,0.266949,1.1316,1.079058 +L 1.1316,1.079058,1.2437,3.204784 +L 1.2437,3.204784,1.2574,8.466122 +L 1.2574,8.466122,1.6885,8.466122 +L 1.6885,8.466122,2.1158,8.466122 +L 2.1158,8.466122,2.5396,8.466122 +L 2.5396,8.466122,2.6027,5.644089 +L 2.6027,5.644089,2.6724,2.822054 +L 2.6724,2.822054,2.7529,-0.000003 +L 2.7529,-0.000003,2.9669,0.179388 +L 2.9669,0.179388,3.1802,0.341814 +L 3.1802,0.341814,3.3977,0.495703 +L 3.3977,0.495703,3.3977,2.276831 +L 3.3977,2.276831,3.3977,4.040928 +L 3.3977,4.040928,3.3977,5.796751 +L 3.3977,5.796751,4.3711,5.796751 +L 4.3711,5.796751,5.3591,5.796751 +L 5.3591,5.796751,6.3538,5.796751 +L 6.3538,5.796751,6.483,6.063594 +L 6.483,6.063594,6.6305,6.330481 +L 6.6305,6.330481,6.7807,6.5975 +L 6.7807,6.5975,6.483,7.053694 +L 6.483,7.053694,6.2032,7.501548 +L 6.2032,7.501548,5.9297,7.932174 +L 5.9297,7.932174,5.0719,7.932174 +L 5.0719,7.932174,4.2278,7.932174 +L 4.2278,7.932174,3.3977,7.932174 +L 5.5027,-0.000003,5.6284,0.265614 +L 5.6284,0.265614,5.772,0.522628 +L 5.772,0.522628,5.9297,0.762678 +L 5.9297,0.762678,5.3482,0.865847 +L 5.3482,0.865847,4.7742,0.952029 +L 4.7742,0.952029,4.2208,1.029696 +L 4.2208,1.029696,4.2208,2.286704 +L 4.2208,2.286704,4.2208,3.535284 +L 4.2208,3.535284,4.2208,4.767009 +L 4.2208,4.767009,4.7742,4.767009 +L 4.7742,4.767009,5.3482,4.767009 +L 5.3482,4.767009,5.9297,4.767009 +L 7.6353,0.495703,7.422,0.865847 +L 7.422,0.865847,7.208,1.219025 +L 7.208,1.219025,6.9947,1.563601 +L 6.9947,1.563601,6.7807,1.399686 +L 6.7807,1.399686,6.5675,1.219025 +L 6.5675,1.219025,6.3538,1.029696 +L 7.6353,0.495703,7.6353,0.865847 +L 7.6353,0.865847,7.6353,1.219025 +L 7.6353,1.219025,7.6353,1.563601 +L 5.0719,1.563601,4.9209,1.933657 +L 4.9209,1.933657,4.7742,2.286704 +L 4.7742,2.286704,4.6446,2.631345 +L 7.208,2.09744,6.9068,2.570621 +L 6.9068,2.570621,6.7951,3.391333 +L 6.7951,3.391333,6.7807,5.262737 +L 6.7807,5.262737,7.1839,5.529667 +L 7.1839,5.529667,7.6042,5.796751 +L 7.6042,5.796751,8.0346,6.063594 +L 8.0346,6.063594,7.8914,6.330481 +L 7.8914,6.330481,7.7579,6.5975 +L 7.7579,6.5975,7.6353,6.864452 +L 5.7125,2.631345,5.772,3.001466 +L 5.772,3.001466,5.8459,3.354558 +L 5.8459,3.354558,5.9297,3.699155 +L 5.9297,3.699155,5.5027,3.699155 +L 5.5027,3.699155,5.0719,3.699155 +L 5.0719,3.699155,4.6446,3.699155 +L 7.6353,2.898363,7.7579,3.354558 +L 7.7579,3.354558,7.8914,3.802302 +L 7.8914,3.802302,8.0346,4.233038 +L 6.7807,7.932174,6.6305,8.302318 +L 6.6305,8.302318,6.483,8.655343 +L 6.483,8.655343,6.3538,9.000006 +L 7.208,7.932174,7.4816,7.932174 +L 7.4816,7.932174,7.7579,7.932174 +L 7.7579,7.932174,8.0346,7.932174 + +[蔵] 57 +L 0.864,0.266949,1.4625,2.37282 +L 1.4625,2.37282,1.6867,4.22461 +L 1.6867,4.22461,1.7151,6.330481 +L 1.7151,6.330481,4.4186,6.350357 +L 4.4186,6.350357,5.5187,6.488704 +L 5.5187,6.488704,5.96,6.864452 +L 5.96,6.864452,4.4014,7.971708 +L 4.4014,7.971708,2.7097,8.070718 +L 2.7097,8.070718,0.864,7.932174 +L 5.5289,-0.000003,5.1334,0.348797 +L 5.1334,0.348797,4.3629,0.477403 +L 4.3629,0.477403,2.5416,0.495703 +L 2.5416,0.495703,2.5416,1.933657 +L 2.5416,1.933657,2.5416,3.354558 +L 2.5416,3.354558,2.5416,4.767009 +L 2.5416,4.767009,3.3962,4.767009 +L 3.3962,4.767009,4.2505,4.767009 +L 4.2505,4.767009,5.1016,4.767009 +L 7.6338,-0.000003,7.3435,0.532501 +L 7.3435,0.532501,7.0563,1.056555 +L 7.0563,1.056555,6.7827,1.563601 +L 6.7827,1.563601,6.5064,1.219025 +L 6.5064,1.219025,6.2297,0.865847 +L 6.2297,0.865847,5.96,0.495703 +L 8.0611,-0.000003,8.0611,0.532501 +L 8.0611,0.532501,8.0611,1.056555 +L 8.0611,1.056555,8.0611,1.563601 +L 3.82,1.029696,3.82,1.399686 +L 3.82,1.399686,3.82,1.752843 +L 3.82,1.752843,3.82,2.09744 +L 3.82,2.09744,3.529,2.09744 +L 3.529,2.09744,3.2418,2.09744 +L 3.2418,2.09744,2.9689,2.09744 +L 4.2505,2.09744,4.524,2.09744 +L 4.524,2.09744,4.8112,2.09744 +L 4.8112,2.09744,5.1016,2.09744 +L 5.1016,2.09744,5.1016,2.467518 +L 5.1016,2.467518,5.1016,2.820565 +L 5.1016,2.820565,5.1016,3.165294 +L 5.1016,3.165294,4.3801,3.165294 +L 4.3801,3.165294,3.6729,3.165294 +L 3.6729,3.165294,2.9689,3.165294 +L 6.3523,2.09744,6.0476,4.492964 +L 6.0476,4.492964,6.0301,5.854541 +L 6.0301,5.854541,7.6338,6.5975 +L 7.6338,6.5975,7.4836,6.967555 +L 7.4836,6.967555,7.3435,7.320646 +L 7.3435,7.320646,7.21,7.665309 +L 7.21,7.665309,6.7827,7.768412 +L 6.7827,7.768412,6.3625,7.854595 +L 6.3625,7.854595,5.96,7.932174 +L 5.96,7.932174,5.8059,8.302318 +L 5.8059,8.302318,5.6623,8.655343 +L 5.6623,8.655343,5.5289,9.000006 +L 6.7827,2.09744,7.382,3.26415 +L 7.382,3.26415,7.6027,3.956279 +L 7.6027,3.956279,7.6338,4.767009 + +[存] 36 +L 2.1163,-0.000003,2.0319,1.411091 +L 2.0319,1.411091,1.9619,2.822054 +L 1.9619,2.822054,1.9023,4.233038 +L 1.9023,4.233038,1.5416,3.888397 +L 1.5416,3.888397,1.1983,3.535284 +L 1.1983,3.535284,0.8625,3.165294 +L 4.2493,-0.000003,4.6553,-0.000003 +L 4.6553,-0.000003,5.0759,-0.000003 +L 5.0759,-0.000003,5.4997,-0.000003 +L 5.4997,-0.000003,5.3561,2.515611 +L 5.3561,2.515611,4.6553,3.192219 +L 4.6553,3.192219,2.9674,3.165294 +L 5.927,3.165294,5.776,3.43229 +L 5.776,3.43229,5.6324,3.699155 +L 5.6324,3.699155,5.4997,3.966064 +L 5.4997,3.966064,5.927,4.498634 +L 5.927,4.498634,6.3575,5.02271 +L 6.3575,5.02271,6.7812,5.529667 +L 6.7812,5.529667,5.7869,5.632858 +L 5.7869,5.632858,4.7989,5.718976 +L 4.7989,5.718976,3.8252,5.796751 +L 6.3575,3.165294,6.9108,3.165294 +L 6.9108,3.165294,7.4856,3.165294 +L 7.4856,3.165294,8.0631,3.165294 +L 2.1163,4.767009,2.5436,5.566378 +L 2.5436,5.566378,2.9674,6.357362 +L 2.9674,6.357362,3.3947,7.131405 +L 3.3947,7.131405,2.5436,7.234507 +L 2.5436,7.234507,1.696,7.320646 +L 1.696,7.320646,0.8625,7.398313 +L 3.8252,7.398313,3.8252,7.932174 +L 3.8252,7.932174,3.8252,8.466122 +L 3.8252,8.466122,3.8252,9.000006 +L 4.2493,7.398313,5.5064,7.398313 +L 5.5064,7.398313,6.7812,7.398313 +L 6.7812,7.398313,8.0631,7.398313 + +[尊] 60 +L 4.6748,-0.000003,5.1056,-0.000003 +L 5.1056,-0.000003,5.5294,-0.000003 +L 5.5294,-0.000003,5.9567,-0.000003 +L 5.9567,-0.000003,5.9392,1.119993 +L 5.9392,1.119993,5.8306,1.66388 +L 5.8306,1.66388,5.5294,2.09744 +L 5.5294,2.09744,4.5347,2.019773 +L 4.5347,2.019773,3.547,1.933657 +L 3.547,1.933657,2.5733,1.830553 +L 2.5733,1.830553,2.8468,1.399686 +L 2.8468,1.399686,3.1197,0.952029 +L 3.1197,0.952029,3.3967,0.495703 +L 0.8645,2.09744,1.2918,2.09744 +L 1.2918,2.09744,1.7156,2.09744 +L 1.7156,2.09744,2.1428,2.09744 +L 6.384,2.09744,6.0831,2.512699 +L 6.0831,2.512699,5.9742,2.928024 +L 5.9742,2.928024,5.9567,3.699155 +L 5.9567,3.699155,4.6748,3.699155 +L 4.6748,3.699155,3.4034,3.699155 +L 3.4034,3.699155,2.1428,3.699155 +L 2.1428,3.699155,2.1428,4.765476 +L 2.1428,4.765476,2.1428,5.82337 +L 2.1428,5.82337,2.1428,6.864452 +L 2.1428,6.864452,3.0391,6.894113 +L 3.0391,6.894113,3.4773,7.101677 +L 3.4773,7.101677,3.8205,7.665309 +L 3.8205,7.665309,2.9694,7.768412 +L 2.9694,7.768412,2.125,7.854595 +L 2.125,7.854595,1.2918,7.932174 +L 6.8151,2.09744,7.2179,2.09744 +L 7.2179,2.09744,7.6378,2.09744 +L 7.6378,2.09744,8.0616,2.09744 +L 6.5976,3.699155,6.6607,4.069167 +L 6.6607,4.069167,6.7311,4.42228 +L 6.7311,4.42228,6.8151,4.767009 +L 6.8151,4.767009,5.3858,4.767009 +L 5.3858,4.767009,3.9743,4.767009 +L 3.9743,4.767009,2.5733,4.767009 +L 3.0006,5.262737,3.7014,6.063594 +L 3.7014,6.063594,4.4054,6.864452 +L 4.4054,6.864452,5.1056,7.665309 +L 5.1056,7.665309,4.8082,7.768412 +L 4.8082,7.768412,4.5245,7.854595 +L 4.5245,7.854595,4.2478,7.932174 +L 6.8151,5.529667,6.2334,5.718976 +L 6.2334,5.718976,5.6593,5.899745 +L 5.6593,5.899745,5.1056,6.063594 +L 5.1056,6.063594,5.2355,6.330481 +L 5.2355,6.330481,5.3791,6.5975 +L 5.3791,6.5975,5.5294,6.864452 +L 5.5294,6.864452,5.9567,6.700602 +L 5.9567,6.700602,6.384,6.519789 +L 6.384,6.519789,6.8151,6.330481 +L 5.5294,8.199192,5.6593,8.466122 +L 5.6593,8.466122,5.8064,8.733119 +L 5.8064,8.733119,5.9567,9.000006 +L 5.9567,7.932174,6.5104,7.932174 +L 6.5104,7.932174,7.0669,7.932174 +L 7.0669,7.932174,7.6378,7.932174 + +[担] 36 +L 1.2903,-0.000003,1.5631,-0.000003 +L 1.5631,-0.000003,1.8401,-0.000003 +L 1.8401,-0.000003,2.113,-0.000003 +L 2.113,-0.000003,2.0993,2.622939 +L 2.0993,2.622939,1.9942,3.720367 +L 1.9942,3.720367,1.7176,4.233038 +L 1.7176,4.233038,1.4195,4.069167 +L 1.4195,4.069167,1.1393,3.888397 +L 1.1393,3.888397,0.8595,3.699155 +L 3.3952,-0.000003,4.9503,-0.000003 +L 4.9503,-0.000003,6.5051,-0.000003 +L 6.5051,-0.000003,8.0636,-0.000003 +L 4.2495,2.09744,4.2495,4.231659 +L 4.2495,4.231659,4.2495,6.357362 +L 4.2495,6.357362,4.2495,8.466122 +L 4.2495,8.466122,5.2267,8.466122 +L 5.2267,8.466122,6.2112,8.466122 +L 6.2112,8.466122,7.2055,8.466122 +L 7.2055,8.466122,7.2055,6.357362 +L 7.2055,6.357362,7.2055,4.231659 +L 7.2055,4.231659,7.2055,2.09744 +L 7.2055,2.09744,6.2112,2.09744 +L 6.2112,2.09744,5.2267,2.09744 +L 5.2267,2.09744,4.2495,2.09744 +L 2.5406,4.233038,2.2254,5.033874 +L 2.2254,5.033874,2.0114,6.063594 +L 2.0114,6.063594,1.7176,6.864452 +L 1.7176,6.864452,1.4195,6.864452 +L 1.4195,6.864452,1.1393,6.864452 +L 1.1393,6.864452,0.8595,6.864452 +L 4.6736,5.262737,5.3776,5.262737 +L 5.3776,5.262737,6.0816,5.262737 +L 6.0816,5.262737,6.7852,5.262737 +L 2.5406,6.864452,2.2429,7.2995 +L 2.2429,7.2995,2.1305,7.853172 +L 2.1305,7.853172,2.113,9.000006 + +[探] 51 +L 0.865,-0.000003,1.1413,-0.000003 +L 1.1413,-0.000003,1.4215,-0.000003 +L 1.4215,-0.000003,1.716,-0.000003 +L 1.716,-0.000003,1.716,1.24722 +L 1.716,1.24722,1.716,2.477368 +L 1.716,2.477368,1.716,3.699155 +L 1.716,3.699155,1.4215,3.699155 +L 1.4215,3.699155,1.1413,3.699155 +L 1.1413,3.699155,0.865,3.699155 +L 5.5334,-0.000003,5.4493,1.066494 +L 5.4493,1.066494,5.3796,2.124256 +L 5.3796,2.124256,5.3201,3.165294 +L 5.3201,3.165294,4.5352,2.467518 +L 4.5352,2.467518,3.7615,1.752843 +L 3.7615,1.752843,2.9976,1.029696 +L 7.6632,1.029696,6.2969,2.857362 +L 6.2969,2.857362,5.2252,3.473116 +L 5.2252,3.473116,3.4284,3.699155 +L 6.3845,3.699155,6.8121,3.699155 +L 6.8121,3.699155,7.2429,3.699155 +L 7.2429,3.699155,7.6632,3.699155 +L 1.716,4.233038,1.716,4.946313 +L 1.716,4.946313,1.716,5.642643 +L 1.716,5.642643,1.716,6.330481 +L 1.716,6.330481,1.4215,6.519789 +L 1.4215,6.519789,1.1413,6.700602 +L 1.1413,6.700602,0.865,6.864452 +L 5.5334,4.233038,5.5334,4.576256 +L 5.5334,4.576256,5.5334,4.919584 +L 5.5334,4.919584,5.5334,5.262737 +L 3.6389,5.262737,4.1289,5.98595 +L 4.1289,5.98595,4.6157,6.700602 +L 4.6157,6.700602,5.1026,7.398313 +L 6.3845,5.796751,6.3845,6.330481 +L 6.3845,6.330481,6.3845,6.864452 +L 6.3845,6.864452,6.3845,7.398313 +L 6.8121,5.796751,7.0885,5.796751 +L 7.0885,5.796751,7.3687,5.796751 +L 7.3687,5.796751,7.6632,5.796751 +L 7.6632,5.796751,7.7749,6.726018 +L 7.7749,6.726018,7.9816,7.536747 +L 7.9816,7.536747,8.094,8.466122 +L 8.094,8.466122,6.5386,8.466122 +L 6.5386,8.466122,4.98,8.466122 +L 4.98,8.466122,3.4284,8.466122 +L 3.4284,8.466122,3.4284,8.121569 +L 3.4284,8.121569,3.4284,7.768412 +L 3.4284,7.768412,3.4284,7.398313 +L 2.1433,6.864452,1.8418,7.2995 +L 1.8418,7.2995,1.7301,7.853172 +L 1.7301,7.853172,1.716,9.000006 + + +# kan_20 ------------------------------------------------------- +# 誕段値宙忠著庁潮頂賃展党糖討届乳認納派俳拝背肺班否批秘腹奮陛片補暮宝亡棒枚幕密盟模訳優郵幼欲翌乱卵 + +[誕] 50 +L 2.5353,-0.000003,2.812,0.456301 +L 2.812,0.456301,3.0922,0.904045 +L 3.0922,0.904045,3.3938,1.334825 +L 3.3938,1.334825,2.791,2.286748 +L 2.791,2.286748,2.5669,2.89972 +L 2.5669,2.89972,2.5353,3.699221 +L 4.6718,-0.000003,4.3745,0.189195 +L 4.3745,0.189195,4.0939,0.370184 +L 4.0939,0.370184,3.8176,0.533989 +L 5.0676,-0.000003,5.7681,-0.000003 +L 5.7681,-0.000003,6.4794,-0.000003 +L 6.4794,-0.000003,7.2041,-0.000003 +L 3.8176,2.097528,3.8176,3.165359 +L 3.8176,3.165359,3.8176,4.233104 +L 3.8176,4.233104,3.8176,5.300936 +L 3.8176,5.300936,3.523,5.300936 +L 3.523,5.300936,3.2358,5.300936 +L 3.2358,5.300936,2.9626,5.300936 +L 2.9626,5.300936,3.2358,6.281184 +L 3.2358,6.281184,3.523,7.244467 +L 3.523,7.244467,3.8176,8.199302 +L 3.8176,8.199302,3.3938,8.302406 +L 3.3938,8.302406,2.9626,8.388653 +L 2.9626,8.388653,2.5353,8.466188 +L 5.0676,2.097528,5.0676,3.354601 +L 5.0676,3.354601,5.0676,4.603269 +L 5.0676,4.603269,5.0676,5.834884 +L 5.7085,2.097528,5.7681,4.042439 +L 5.7681,4.042439,5.842,5.987329 +L 5.842,5.987329,5.9187,7.932305 +L 5.9187,7.932305,5.4988,7.932305 +L 5.4988,7.932305,5.0781,7.932305 +L 5.0781,7.932305,4.6718,7.932305 +L 6.3498,2.097528,6.6262,2.097528 +L 6.6262,2.097528,6.9067,2.097528 +L 6.9067,2.097528,7.2041,2.097528 +L 6.3498,5.300936,6.6262,5.300936 +L 6.6262,5.300936,6.9067,5.300936 +L 6.9067,5.300936,7.2041,5.300936 +L 6.3498,7.932305,6.6262,8.121526 +L 6.6262,8.121526,6.9067,8.302406 +L 6.9067,8.302406,7.2041,8.466188 +L 0.0034,6.902519,2.5353,6.902519 +L 0.4304,8.504343,2.1084,8.504343 +L 0.4304,5.300957,2.1084,5.300957 +L 0.4304,4.233038,2.1084,4.233038 +L 0.4304,2.669522,2.1084,2.669522 +L 0.4304,-0.000003,0.4304,2.669522 +L 2.1084,-0.000003,0.4304,-0.000003 +L 2.1084,2.669522,2.1084,-0.000003 + +[段] 45 +L 0.4324,-0.000003,0.4324,2.658292 +L 0.4324,2.658292,0.4324,5.29947 +L 0.4324,5.29947,0.4324,7.932305 +L 0.4324,7.932305,1.364,7.952094 +L 1.364,7.952094,1.9209,8.090419 +L 1.9209,8.090419,2.5653,8.466188 +L 3.2063,-0.000003,3.8262,0.533989 +L 3.8262,0.533989,4.457,1.067785 +L 4.457,1.067785,5.0976,1.601777 +L 5.0976,1.601777,4.6668,2.40119 +L 4.6668,2.40119,4.2465,3.192241 +L 4.2465,3.192241,3.8157,3.966195 +L 3.8157,3.966195,4.6668,3.966195 +L 4.6668,3.966195,5.5249,3.966195 +L 5.5249,3.966195,6.376,3.966195 +L 6.376,3.966195,6.0818,3.354601 +L 6.0818,3.354601,5.802,2.734624 +L 5.802,2.734624,5.5249,2.097528 +L 6.8068,-0.000003,6.376,0.370184 +L 6.376,0.370184,5.9557,0.723188 +L 5.9557,0.723188,5.5249,1.067785 +L 1.0698,1.601777,1.4165,1.781125 +L 1.4165,1.781125,1.7773,1.943529 +L 1.7773,1.943529,2.1416,2.097528 +L 0.8562,3.699221,1.2835,3.699221 +L 1.2835,3.699221,1.7107,3.699221 +L 1.7107,3.699221,2.1416,3.699221 +L 2.9926,5.300936,3.6406,6.316515 +L 3.6406,6.316515,3.8227,7.221789 +L 3.8227,7.221789,3.8157,8.466188 +L 3.8157,8.466188,4.3765,8.466188 +L 4.3765,8.466188,4.947,8.466188 +L 4.947,8.466188,5.5249,8.466188 +L 5.5249,8.466188,5.5249,7.589 +L 5.5249,7.589,5.5249,6.712029 +L 5.5249,6.712029,5.5249,5.834884 +L 5.5249,5.834884,5.9557,5.834884 +L 5.9557,5.834884,6.376,5.834884 +L 6.376,5.834884,6.8068,5.834884 +L 6.8068,5.834884,6.8068,6.178058 +L 6.8068,6.178058,6.8068,6.521255 +L 6.8068,6.521255,6.8068,6.864495 +L 0.8562,5.834884,1.2835,5.834884 +L 1.2835,5.834884,1.7107,5.834884 +L 1.7107,5.834884,2.1416,5.834884 + +[値] 51 +L 0.8897,-0.000003,0.8091,1.944996 +L 0.8091,1.944996,0.7356,3.889864 +L 0.7356,3.889864,0.676,5.834884 +L 0.676,5.834884,0.4592,5.671014 +L 0.4592,5.671014,0.2487,5.490221 +L 0.2487,5.490221,0.0351,5.300936 +L 2.5673,-0.000003,2.5673,2.134238 +L 2.5673,2.134238,2.5673,4.259985 +L 2.5673,4.259985,2.5673,6.368723 +L 2.9946,-0.000003,4.396,-0.000003 +L 4.396,-0.000003,5.8106,-0.000003 +L 5.8106,-0.000003,7.2361,-0.000003 +L 3.8496,1.601777,3.8496,3.202048 +L 3.8496,3.202048,3.8496,4.793934 +L 3.8496,4.793934,3.8496,6.368723 +L 3.8496,6.368723,4.2734,6.368723 +L 4.2734,6.368723,4.7038,6.368723 +L 4.7038,6.368723,5.1245,6.368723 +L 5.1245,6.368723,4.7038,7.841964 +L 4.7038,7.841964,3.706,8.060845 +L 3.706,8.060845,2.5673,7.932305 +L 4.2734,1.601777,4.977,1.601777 +L 4.977,1.601777,5.6775,1.601777 +L 5.6775,1.601777,6.3815,1.601777 +L 6.3815,1.601777,6.3815,2.134238 +L 6.3815,2.134238,6.3815,2.658292 +L 6.3815,2.658292,6.3815,3.165359 +L 6.3815,3.165359,5.6775,3.165359 +L 5.6775,3.165359,4.977,3.165359 +L 4.977,3.165359,4.2734,3.165359 +L 6.3815,3.699221,6.3815,4.06932 +L 6.3815,4.06932,6.3815,4.422433 +L 6.3815,4.422433,6.3815,4.767052 +L 6.3815,4.767052,5.6775,4.767052 +L 5.6775,4.767052,4.977,4.767052 +L 4.977,4.767052,4.2734,4.767052 +L 6.3815,5.300936,6.3815,5.671014 +L 6.3815,5.671014,6.3815,6.02406 +L 6.3815,6.02406,6.3815,6.368723 +L 6.3815,6.368723,6.1052,6.368723 +L 6.1052,6.368723,5.832,6.368723 +L 5.832,6.368723,5.5549,6.368723 +L 0.8897,6.635719,1.1629,7.43511 +L 1.1629,7.43511,1.4431,8.226051 +L 1.4431,8.226051,1.7408,9.000116 +L 5.5549,7.932305,5.4043,8.302406 +L 5.4043,8.302406,5.2646,8.655496 +L 5.2646,8.655496,5.1245,9.000116 +L 5.9822,7.932305,6.385,7.932305 +L 6.385,7.932305,6.8057,7.932305 +L 6.8057,7.932305,7.2361,7.932305 + +[宙] 39 +L 0.8882,-0.000003,0.8882,1.600355 +L 0.8882,1.600355,0.8882,3.192241 +L 0.8882,3.192241,0.8882,4.767052 +L 0.8882,4.767052,2.1774,4.733079 +L 2.1774,4.733079,3.1017,5.055173 +L 3.1017,5.055173,3.452,6.368723 +L 1.3155,-0.000003,2.0163,-0.000003 +L 2.0163,-0.000003,2.7273,-0.000003 +L 2.7273,-0.000003,3.452,-0.000003 +L 3.452,-0.000003,3.2979,2.072069 +L 3.2979,2.072069,2.6709,2.644107 +L 2.6709,2.644107,1.3155,2.631367 +L 3.8796,-0.000003,4.5833,-0.000003 +L 4.5833,-0.000003,5.2837,-0.000003 +L 5.2837,-0.000003,5.9846,-0.000003 +L 5.9846,-0.000003,5.9846,0.877164 +L 5.9846,0.877164,5.9846,1.754244 +L 5.9846,1.754244,5.9846,2.631367 +L 5.9846,2.631367,3.5816,3.185148 +L 3.5816,3.185148,3.687,4.213271 +L 3.687,4.213271,5.9846,4.767052 +L 5.9846,4.767052,5.9846,4.233104 +L 5.9846,4.233104,5.9846,3.699221 +L 5.9846,3.699221,5.9846,3.165359 +L 0.0616,6.368723,0.0616,6.901294 +L 0.0616,6.901294,0.0616,7.425282 +L 0.0616,7.425282,0.0616,7.932305 +L 0.0616,7.932305,1.1929,7.932305 +L 1.1929,7.932305,2.321,7.932305 +L 2.321,7.932305,3.452,7.932305 +L 3.452,7.932305,3.452,8.302406 +L 3.452,8.302406,3.452,8.655496 +L 3.452,8.655496,3.452,9.000116 +L 6.8388,6.368723,6.8388,6.901294 +L 6.8388,6.901294,6.8388,7.425282 +L 6.8388,7.425282,6.8388,7.932305 +L 6.8388,7.932305,5.8371,7.932305 +L 5.8371,7.932305,4.8529,7.932305 +L 4.8529,7.932305,3.8796,7.932305 + +[忠] 42 +L 0.0639,0.266993,0.197,0.877164 +L 0.197,0.877164,0.3403,1.487357 +L 0.3403,1.487357,0.4909,2.097528 +L 2.6309,-0.000003,2.3262,0.453499 +L 2.3262,0.453499,2.2141,1.135732 +L 2.2141,1.135732,2.2004,2.631367 +L 3.0547,-0.000003,3.7552,-0.000003 +L 3.7552,-0.000003,4.456,-0.000003 +L 4.456,-0.000003,5.1565,-0.000003 +L 5.1565,-0.000003,5.1565,0.370184 +L 5.1565,0.370184,5.1565,0.723188 +L 5.1565,0.723188,5.1565,1.067785 +L 6.8657,0.80092,6.5715,1.247242 +L 6.5715,1.247242,6.2878,1.676664 +L 6.2878,1.676664,6.0146,2.097528 +L 3.8781,1.868686,3.7275,2.134238 +L 3.7275,2.134238,3.5801,2.391318 +L 3.5801,2.391318,3.447,2.631367 +L 3.447,3.699221,3.4365,4.470417 +L 3.4365,4.470417,3.3349,4.885589 +L 3.3349,4.885589,3.0547,5.300936 +L 3.0547,5.300936,2.33,5.300936 +L 2.33,5.300936,1.6225,5.300936 +L 1.6225,5.300936,0.9217,5.300936 +L 0.9217,5.300936,0.9217,6.178058 +L 0.9217,6.178058,0.9217,7.055247 +L 0.9217,7.055247,0.9217,7.932305 +L 0.9217,7.932305,1.6225,7.932305 +L 1.6225,7.932305,2.33,7.932305 +L 2.33,7.932305,3.0547,7.932305 +L 3.0547,7.932305,3.1773,8.302406 +L 3.1773,8.302406,3.3069,8.655496 +L 3.3069,8.655496,3.447,9.000116 +L 3.8781,5.300936,3.3069,7.101831 +L 3.3069,7.101831,4.5537,7.809435 +L 4.5537,7.809435,6.0146,7.932305 +L 6.0146,7.932305,6.0146,7.055247 +L 6.0146,7.055247,6.0146,6.178058 +L 6.0146,6.178058,6.0146,5.300936 +L 6.0146,5.300936,5.2893,5.300936 +L 5.2893,5.300936,4.5818,5.300936 +L 4.5818,5.300936,3.8781,5.300936 + +[著] 54 +L 2.1989,-0.000003,2.1184,1.066406 +L 2.1184,1.066406,2.0483,2.124321 +L 2.0483,2.124321,1.9884,3.165359 +L 1.9884,3.165359,1.3478,2.82074 +L 1.3478,2.82074,0.717,2.467627 +L 0.717,2.467627,0.094,2.097528 +L 2.6294,-0.000003,3.6069,-0.000003 +L 3.6069,-0.000003,4.5908,-0.000003 +L 4.5908,-0.000003,5.5855,-0.000003 +L 5.5855,-0.000003,5.5855,0.533989 +L 5.5855,0.533989,5.5855,1.067785 +L 5.5855,1.067785,5.5855,1.601777 +L 5.5855,1.601777,4.5908,1.601777 +L 4.5908,1.601777,3.6069,1.601777 +L 3.6069,1.601777,2.6294,1.601777 +L 5.5855,2.097528,5.5855,2.467627 +L 5.5855,2.467627,5.5855,2.82074 +L 5.5855,2.82074,5.5855,3.165359 +L 5.5855,3.165359,4.5908,3.165359 +L 4.5908,3.165359,3.6069,3.165359 +L 3.6069,3.165359,2.6294,3.165359 +L 3.0532,3.699221,2.9306,4.721936 +L 2.9306,4.721936,1.2568,4.863173 +L 1.2568,4.863173,0.094,4.767052 +L 3.9043,4.767052,3.6101,5.182334 +L 3.6101,5.182334,3.498,5.597594 +L 3.498,5.597594,3.4843,6.368723 +L 3.4843,6.368723,2.6294,6.368723 +L 2.6294,6.368723,1.7818,6.368723 +L 1.7818,6.368723,0.9482,6.368723 +L 4.5491,4.767052,4.7624,5.137152 +L 4.7624,5.137152,4.976,5.490221 +L 4.976,5.490221,5.1932,5.834884 +L 5.1932,5.834884,4.8569,6.210609 +L 4.8569,6.210609,4.5242,6.349001 +L 4.5242,6.349001,3.9043,6.368723 +L 5.1932,4.767052,5.7396,4.767052 +L 5.7396,4.767052,6.2965,4.767052 +L 6.2965,4.767052,6.8674,4.767052 +L 0.094,7.932305,0.7941,7.932305 +L 0.7941,7.932305,1.4946,7.932305 +L 1.4946,7.932305,2.1989,7.932305 +L 2.1989,7.932305,2.1989,8.302406 +L 2.1989,8.302406,2.1989,8.655496 +L 2.1989,8.655496,2.1989,9.000116 +L 2.6294,7.932305,3.3299,7.932305 +L 3.3299,7.932305,4.0444,7.932305 +L 4.0444,7.932305,4.7624,7.932305 +L 4.7624,7.932305,4.7624,8.302406 +L 4.7624,8.302406,4.7624,8.655496 +L 4.7624,8.655496,4.7624,9.000116 +L 5.1932,7.932305,5.7396,7.932305 +L 5.7396,7.932305,6.2965,7.932305 +L 6.2965,7.932305,6.8674,7.932305 + +[庁] 24 +L 0.1271,0.266993,0.8035,2.915285 +L 0.8035,2.915285,0.9677,5.334888 +L 0.9677,5.334888,0.9467,7.932305 +L 0.9467,7.932305,1.9348,7.932305 +L 1.9348,7.932305,2.9326,7.932305 +L 2.9326,7.932305,3.9417,7.932305 +L 3.9417,7.932305,3.9417,8.302406 +L 3.9417,8.302406,3.9417,8.655496 +L 3.9417,8.655496,3.9417,9.000116 +L 3.5105,-0.000003,3.9168,-0.000003 +L 3.9168,-0.000003,4.3371,-0.000003 +L 4.3371,-0.000003,4.7644,-0.000003 +L 4.7644,-0.000003,4.7644,1.944996 +L 4.7644,1.944996,4.7644,3.889864 +L 4.7644,3.889864,4.7644,5.834884 +L 4.7644,5.834884,3.9101,5.834884 +L 3.9101,5.834884,3.0657,5.834884 +L 3.0657,5.834884,2.2321,5.834884 +L 5.1882,5.834884,5.8957,5.834884 +L 5.8957,5.834884,6.6035,5.834884 +L 6.6035,5.834884,7.3247,5.834884 +L 4.3371,7.932305,5.3181,7.932305 +L 5.3181,7.932305,6.3198,7.932305 +L 6.3198,7.932305,7.3247,7.932305 + +[潮] 60 +L 0.126,-0.000003,0.3466,1.546658 +L 0.3466,1.546658,0.7596,2.940721 +L 0.7596,2.940721,0.9802,4.233104 +L 3.0852,-0.000003,2.9416,1.194968 +L 2.9416,1.194968,2.5213,1.576341 +L 2.5213,1.576341,1.8352,1.601777 +L 4.3675,-0.000003,4.5948,1.247242 +L 4.5948,1.247242,3.8596,1.714732 +L 3.8596,1.714732,3.0852,2.097528 +L 3.0852,2.097528,3.0852,2.467627 +L 3.0852,2.467627,3.0852,2.82074 +L 3.0852,2.82074,3.0852,3.165359 +L 3.0852,3.165359,2.812,3.165359 +L 2.812,3.165359,2.5353,3.165359 +L 2.5353,3.165359,2.2621,3.165359 +L 2.2621,3.165359,2.2621,4.233104 +L 2.2621,4.233104,2.2621,5.300936 +L 2.2621,5.300936,2.2621,6.368723 +L 2.2621,6.368723,2.5353,6.368723 +L 2.5353,6.368723,2.812,6.368723 +L 2.812,6.368723,3.0852,6.368723 +L 3.0852,6.368723,2.9416,7.519891 +L 2.9416,7.519891,2.5213,7.899777 +L 2.5213,7.899777,1.8352,7.932305 +L 6.0766,-0.000003,6.346,-0.000003 +L 6.346,-0.000003,6.6262,-0.000003 +L 6.6262,-0.000003,6.8994,-0.000003 +L 6.8994,-0.000003,6.8994,1.066406 +L 6.8994,1.066406,6.8994,2.124321 +L 6.8994,2.124321,6.8994,3.165359 +L 6.8994,3.165359,6.3288,3.165359 +L 6.3288,3.165359,5.7719,3.165359 +L 5.7719,3.165359,5.2217,3.165359 +L 5.2217,3.165359,5.2217,2.658292 +L 5.2217,2.658292,5.2217,2.134238 +L 5.2217,2.134238,5.2217,1.601777 +L 3.7265,3.165359,3.7857,3.699221 +L 3.7857,3.699221,3.8596,4.233104 +L 3.8596,4.233104,3.9363,4.767052 +L 3.9363,4.767052,3.5164,4.767052 +L 3.5164,4.767052,3.0852,4.767052 +L 3.0852,4.767052,2.6579,4.767052 +L 5.2217,3.699221,5.2217,5.29947 +L 5.2217,5.29947,5.2217,6.891377 +L 5.2217,6.891377,5.2217,8.466188 +L 5.2217,8.466188,5.7719,8.466188 +L 5.7719,8.466188,6.3288,8.466188 +L 6.3288,8.466188,6.8994,8.466188 +L 6.8994,8.466188,6.8994,6.891377 +L 6.8994,6.891377,6.8994,5.29947 +L 6.8994,5.29947,6.8994,3.699221 +L 3.9363,5.300936,3.7857,5.671014 +L 3.7857,5.671014,3.6421,6.02406 +L 3.6421,6.02406,3.5164,6.368723 +L 5.6455,5.834884,5.926,5.834884 +L 5.926,5.834884,6.2062,5.834884 +L 6.2062,5.834884,6.5004,5.834884 +L 3.5164,7.932305,3.3622,8.302406 +L 3.3622,8.302406,3.2183,8.655496 +L 3.2183,8.655496,3.0852,9.000116 + +[頂] 54 +L 3.3289,-0.000003,3.676,0.370184 +L 3.676,0.370184,4.0294,0.723188 +L 4.0294,0.723188,4.3936,1.067785 +L 7.3567,-0.000003,7.0593,0.370184 +L 7.0593,0.370184,6.7756,0.723188 +L 6.7756,0.723188,6.5056,1.067785 +L 0.1592,0.533989,0.5619,0.533989 +L 0.5619,0.533989,0.9822,0.533989 +L 0.9822,0.533989,1.4099,0.533989 +L 1.4099,0.533989,1.4099,3.011361 +L 1.4099,3.011361,1.4099,5.480415 +L 1.4099,5.480415,1.4099,7.932305 +L 1.4099,7.932305,0.9822,7.932305 +L 0.9822,7.932305,0.5619,7.932305 +L 0.5619,7.932305,0.1592,7.932305 +L 3.9733,2.097528,3.9733,3.697798 +L 3.9733,3.697798,3.9733,5.289553 +L 3.9733,5.289553,3.9733,6.864495 +L 3.9733,6.864495,4.3765,6.967687 +L 4.3765,6.967687,4.7964,7.053715 +L 4.7964,7.053715,5.2202,7.131426 +L 5.2202,7.131426,5.3498,7.501548 +L 5.3498,7.501548,5.4969,7.854638 +L 5.4969,7.854638,5.6475,8.199302 +L 5.6475,8.199302,4.947,8.302406 +L 4.947,8.302406,4.2434,8.388653 +L 4.2434,8.388653,3.5425,8.466188 +L 4.3936,2.097528,5.2346,2.097528 +L 5.2346,2.097528,6.0751,2.097528 +L 6.0751,2.097528,6.9294,2.097528 +L 6.9294,2.097528,6.9294,2.631367 +L 6.9294,2.631367,6.9294,3.165359 +L 6.9294,3.165359,6.9294,3.699221 +L 6.9294,3.699221,6.0751,3.699221 +L 6.0751,3.699221,5.2346,3.699221 +L 5.2346,3.699221,4.3936,3.699221 +L 6.9294,4.233104,6.9294,4.603269 +L 6.9294,4.603269,6.9294,4.956229 +L 6.9294,4.956229,6.9294,5.300936 +L 6.9294,5.300936,6.0751,5.300936 +L 6.0751,5.300936,5.2346,5.300936 +L 5.2346,5.300936,4.3936,5.300936 +L 6.9294,5.834884,6.9294,6.178058 +L 6.9294,6.178058,6.9294,6.521255 +L 6.9294,6.521255,6.9294,6.864495 +L 6.9294,6.864495,6.5056,6.864495 +L 6.5056,6.864495,6.0751,6.864495 +L 6.0751,6.864495,5.6475,6.864495 +L 1.8337,7.932305,2.1104,7.932305 +L 2.1104,7.932305,2.3937,7.932305 +L 2.3937,7.932305,2.6848,7.932305 +L 6.0751,8.466188,6.5056,8.466188 +L 6.5056,8.466188,6.9294,8.466188 +L 6.9294,8.466188,7.3567,8.466188 + +[賃] 48 +L 0.585,-0.000003,1.7408,0.77544 +L 1.7408,0.77544,1.7446,2.491488 +L 1.7446,2.491488,1.436,4.233104 +L 1.436,4.233104,2.9946,4.233104 +L 2.9946,4.233104,4.5532,4.233104 +L 4.5532,4.233104,6.1052,4.233104 +L 6.1052,4.233104,5.8176,1.788217 +L 5.8176,1.788217,5.8176,0.690746 +L 5.8176,0.690746,6.1052,-0.000003 +L 6.1052,-0.000003,6.3815,-0.000003 +L 6.3815,-0.000003,6.6652,-0.000003 +L 6.6652,-0.000003,6.9629,-0.000003 +L 2.291,1.067785,3.2717,1.067785 +L 3.2717,1.067785,4.2559,1.067785 +L 4.2559,1.067785,5.2537,1.067785 +L 1.8672,2.097528,3.1242,2.097528 +L 3.1242,2.097528,4.3991,2.097528 +L 4.3991,2.097528,5.6775,2.097528 +L 1.8672,3.165359,3.1242,3.165359 +L 3.1242,3.165359,4.3991,3.165359 +L 4.3991,3.165359,5.6775,3.165359 +L 1.436,5.300936,1.3555,6.014188 +L 1.3555,6.014188,1.2854,6.710497 +L 1.2854,6.710497,1.2259,7.398335 +L 1.2259,7.398335,0.862,7.234596 +L 0.862,7.234596,0.5012,7.053715 +L 0.5012,7.053715,0.1577,6.864495 +L 2.7214,5.300936,3.4219,5.300936 +L 3.4219,5.300936,4.1228,5.300936 +L 4.1228,5.300936,4.8229,5.300936 +L 4.8229,5.300936,4.4026,6.774132 +L 4.4026,6.774132,3.4219,6.993035 +L 3.4219,6.993035,2.291,6.864495 +L 5.2537,5.300936,5.8071,5.300936 +L 5.8071,5.300936,6.3815,5.300936 +L 6.3815,5.300936,6.9629,5.300936 +L 5.2537,6.864495,4.8723,7.43789 +L 4.8723,7.43789,4.2138,7.71476 +L 4.2138,7.71476,2.7214,7.932305 +L 5.6775,6.864495,6.2379,6.864495 +L 6.2379,6.864495,6.8092,6.864495 +L 6.8092,6.864495,7.3867,6.864495 +L 1.436,7.932305,1.7131,8.302406 +L 1.7131,8.302406,1.9929,8.655496 +L 1.9929,8.655496,2.291,9.000116 +L 5.4639,7.932305,5.9546,8.121526 +L 5.9546,8.121526,6.4484,8.302406 +L 6.4484,8.302406,6.9629,8.466188 + +[展] 48 +L 0.1915,0.266993,0.9656,2.969003 +L 0.9656,2.969003,1.0948,5.611712 +L 1.0948,5.611712,1.0426,8.466188 +L 1.0426,8.466188,2.8706,8.466188 +L 2.8706,8.466188,4.7062,8.466188 +L 4.7062,8.466188,6.531,8.466188 +L 6.531,8.466188,6.531,7.932305 +L 6.531,7.932305,6.531,7.398335 +L 6.531,7.398335,6.531,6.864495 +L 6.531,6.864495,6.1072,6.864495 +L 6.1072,6.864495,5.6865,6.864495 +L 5.6865,6.864495,5.2802,6.864495 +L 5.2802,6.864495,5.3433,5.899854 +L 5.3433,5.899854,5.6799,5.42663 +L 5.6799,5.42663,6.531,5.300936 +L 1.4699,-0.000003,2.6187,0.628534 +L 2.6187,0.628534,2.811,2.07914 +L 2.811,2.07914,2.7164,3.699221 +L 2.7164,3.699221,2.2965,3.699221 +L 2.2965,3.699221,1.8762,3.699221 +L 1.8762,3.699221,1.4699,3.699221 +L 6.9614,-0.000003,6.1072,0.877164 +L 6.1072,0.877164,5.2592,1.754244 +L 5.2592,1.754244,4.426,2.631367 +L 4.426,2.631367,4.426,3.001488 +L 4.426,3.001488,4.426,3.354601 +L 4.426,3.354601,4.426,3.699221 +L 4.426,3.699221,4.0022,3.699221 +L 4.0022,3.699221,3.5749,3.699221 +L 3.5749,3.699221,3.1476,3.699221 +L 3.1476,3.699221,3.004,4.894082 +L 3.004,4.894082,2.5869,5.275477 +L 2.5869,5.275477,1.8972,5.300936 +L 3.3609,0.533989,3.7041,0.723188 +L 3.7041,0.723188,4.0617,0.904045 +L 4.0617,0.904045,4.426,1.067785 +L 5.0704,3.699221,4.8288,5.214797 +L 4.8288,5.214797,3.7707,5.450687 +L 3.7707,5.450687,3.1476,6.864495 +L 3.1476,6.864495,2.5763,6.864495 +L 2.5763,6.864495,2.0195,6.864495 +L 2.0195,6.864495,1.4699,6.864495 +L 5.711,3.699221,6.2574,3.699221 +L 6.2574,3.699221,6.8178,3.699221 +L 6.8178,3.699221,7.3887,3.699221 +L 3.5749,6.864495,4.0022,6.864495 +L 4.0022,6.864495,4.426,6.864495 +L 4.426,6.864495,4.8564,6.864495 + +[党] 51 +L 0.4313,-0.000003,1.5346,1.111609 +L 1.5346,1.111609,2.2355,2.129991 +L 2.2355,2.129991,2.7535,3.699221 +L 2.7535,3.699221,2.4558,3.699221 +L 2.4558,3.699221,2.1721,3.699221 +L 2.1721,3.699221,1.8957,3.699221 +L 1.8957,3.699221,1.8957,4.422433 +L 1.8957,4.422433,1.8957,5.137152 +L 1.8957,5.137152,1.8957,5.834884 +L 1.8957,5.834884,3.0235,5.834884 +L 3.0235,5.834884,4.1544,5.834884 +L 4.1544,5.834884,5.2857,5.834884 +L 5.2857,5.834884,5.2857,5.137152 +L 5.2857,5.137152,5.2857,4.422433 +L 5.2857,4.422433,5.2857,3.699221 +L 5.2857,3.699221,5.0094,3.699221 +L 5.0094,3.699221,4.7324,3.699221 +L 4.7324,3.699221,4.4592,3.699221 +L 4.4592,3.699221,4.4732,1.452026 +L 4.4732,1.452026,4.5747,0.493076 +L 4.5747,0.493076,4.8549,-0.000003 +L 4.8549,-0.000003,5.5558,-0.000003 +L 5.5558,-0.000003,6.2703,-0.000003 +L 6.2703,-0.000003,6.9918,-0.000003 +L 6.9918,-0.000003,6.9918,0.533989 +L 6.9918,0.533989,6.9918,1.067785 +L 6.9918,1.067785,6.9918,1.601777 +L 3.1738,3.699221,3.4543,3.699221 +L 3.4543,3.699221,3.7345,3.699221 +L 3.7345,3.699221,4.0319,3.699221 +L 0.2177,5.834884,0.2177,6.367388 +L 0.2177,6.367388,0.2177,6.891377 +L 0.2177,6.891377,0.2177,7.398335 +L 0.2177,7.398335,0.7676,7.398335 +L 0.7676,7.398335,1.3248,7.398335 +L 1.3248,7.398335,1.8957,7.398335 +L 1.8957,7.398335,1.8814,8.169531 +L 1.8814,8.169531,1.7696,8.58479 +L 1.7696,8.58479,1.4649,9.000116 +L 6.9918,5.834884,6.9918,6.367388 +L 6.9918,6.367388,6.9918,6.891377 +L 6.9918,6.891377,6.9918,7.398335 +L 6.9918,7.398335,5.4332,7.398335 +L 5.4332,7.398335,3.8781,7.398335 +L 3.8781,7.398335,2.323,7.398335 +L 3.6046,7.932305,3.6046,8.302406 +L 3.6046,8.302406,3.6046,8.655496 +L 3.6046,8.655496,3.6046,9.000116 +L 5.2857,7.932305,5.4157,8.302406 +L 5.4157,8.302406,5.5558,8.655496 +L 5.5558,8.655496,5.7095,9.000116 + +[糖] 60 +L 1.5016,-0.000003,1.4175,1.411003 +L 1.4175,1.411003,1.3478,2.822163 +L 1.3478,2.822163,1.2883,4.233104 +L 1.2883,4.233104,0.924,3.535437 +L 0.924,3.535437,0.5629,2.82074 +L 0.5629,2.82074,0.2165,2.097528 +L 2.3527,-0.000003,3.1547,2.370106 +L 3.1547,2.370106,3.2773,5.409753 +L 3.2773,5.409753,3.2111,7.932305 +L 3.2111,7.932305,3.7575,7.932305 +L 3.7575,7.932305,4.3141,7.932305 +L 4.3141,7.932305,4.885,7.932305 +L 4.885,7.932305,5.0181,8.302406 +L 5.0181,8.302406,5.1617,8.655496 +L 5.1617,8.655496,5.3126,9.000116 +L 4.0339,-0.000003,4.0339,0.713381 +L 4.0339,0.713381,4.0339,1.40969 +L 4.0339,1.40969,4.0339,2.097528 +L 4.0339,2.097528,4.885,2.097528 +L 4.885,2.097528,5.7434,2.097528 +L 5.7434,2.097528,6.5945,2.097528 +L 6.5945,2.097528,6.5945,1.40969 +L 6.5945,1.40969,6.5945,0.713381 +L 6.5945,0.713381,6.5945,-0.000003 +L 6.5945,-0.000003,5.7434,-0.000003 +L 5.7434,-0.000003,4.885,-0.000003 +L 4.885,-0.000003,4.0339,-0.000003 +L 4.0339,3.699221,4.4577,3.699221 +L 4.4577,3.699221,4.885,3.699221 +L 4.885,3.699221,5.3126,3.699221 +L 5.3126,3.699221,5.0811,5.02978 +L 5.0811,5.02978,4.4717,5.343315 +L 4.4717,5.343315,3.6031,5.300936 +L 5.7434,3.699221,6.0127,3.699221 +L 6.0127,3.699221,6.2964,3.699221 +L 6.2964,3.699221,6.5945,3.699221 +L 6.5945,3.699221,6.5945,4.06932 +L 6.5945,4.06932,6.5945,4.422433 +L 6.5945,4.422433,6.5945,4.767052 +L 6.5945,4.767052,5.3613,5.894185 +L 5.3613,5.894185,4.6958,6.309335 +L 4.6958,6.309335,4.0339,6.368723 +L 2.3527,4.233104,1.421,5.360193 +L 1.421,5.360193,0.8676,5.775452 +L 0.8676,5.775452,0.2165,5.834884 +L 7.0215,5.300936,6.4821,5.961979 +L 6.4821,5.961979,5.8516,6.495753 +L 5.8516,6.495753,5.3126,7.131426 +L 5.3126,7.131426,5.6769,7.695058 +L 5.6769,7.695058,6.2232,7.902534 +L 6.2232,7.902534,7.4176,7.932305 +L 1.9219,5.834884,1.628,6.307999 +L 1.628,6.307999,1.5156,7.128581 +L 1.5156,7.128581,1.5016,9.000116 +L 0.647,7.131426,0.4932,7.587686 +L 0.4932,7.587686,0.3458,8.035387 +L 0.3458,8.035387,0.2165,8.466188 +L 1.9219,6.864495,2.2266,7.279755 +L 2.2266,7.279755,2.339,7.695058 +L 2.339,7.695058,2.3527,8.466188 + +[討] 41 +L 0.6774,-0.000003,0.6774,0.713381 +L 0.6774,0.713381,0.6774,1.40969 +L 0.6774,1.40969,0.6774,2.097528 +L 0.6774,2.097528,1.381,2.097528 +L 1.381,2.097528,2.0815,2.097528 +L 2.0815,2.097528,2.7823,2.097528 +L 2.7823,2.097528,2.7823,1.40969 +L 2.7823,1.40969,2.7823,0.713381 +L 2.7823,0.713381,2.7823,-0.000003 +L 2.7823,-0.000003,2.0815,-0.000003 +L 2.0815,-0.000003,1.381,-0.000003 +L 1.381,-0.000003,0.6774,-0.000003 +L 5.3423,-0.000003,5.6158,-0.000003 +L 5.6158,-0.000003,5.8957,-0.000003 +L 5.8957,-0.000003,6.1657,-0.000003 +L 6.1657,-0.000003,5.924,5.288283 +L 5.924,5.288283,4.3581,6.839015 +L 4.3581,6.839015,0.2501,6.864495 +L 4.915,3.165359,4.6208,3.535437 +L 4.6208,3.535437,4.3371,3.888572 +L 4.3371,3.888572,4.0607,4.233104 +L 0.6774,3.699221,1.381,3.699221 +L 1.381,3.699221,2.0815,3.699221 +L 2.0815,3.699221,2.7823,3.699221 +L 0.6774,5.300936,1.381,5.300936 +L 1.381,5.300936,2.0815,5.300936 +L 2.0815,5.300936,2.7823,5.300936 +L 6.5962,6.368723,6.2949,6.796723 +L 6.2949,6.796723,6.1832,7.478892 +L 6.1832,7.478892,6.1657,9.000116 +L 0.6774,8.466188,1.381,8.466188 +L 1.381,8.466188,2.0815,8.466188 +L 2.0815,8.466188,2.7823,8.466188 +L 0.2501,6.902519,2.7823,6.902519 +L 0.6774,8.504343,2.355,8.504343 +L 0.6774,5.300957,2.355,5.300957 +L 0.6774,4.233038,2.355,4.233038 +L 0.6774,2.669522,2.355,2.669522 +L 0.6774,-0.000003,0.6774,2.669522 +L 2.355,-0.000003,0.6774,-0.000003 +L 2.355,2.669522,2.355,-0.000003 + +[届] 42 +L 0.2797,0.266993,0.9697,3.045357 +L 0.9697,3.045357,1.1277,5.637105 +L 1.1277,5.637105,1.1032,8.466188 +L 1.1032,8.466188,3.0855,8.466188 +L 3.0855,8.466188,5.0679,8.466188 +L 5.0679,8.466188,7.0538,8.466188 +L 7.0538,8.466188,7.0538,7.77835 +L 7.0538,7.77835,7.0538,7.082129 +L 7.0538,7.082129,7.0538,6.368723 +L 7.0538,6.368723,5.2042,6.368723 +L 5.2042,6.368723,3.3619,6.368723 +L 3.3619,6.368723,1.534,6.368723 +L 2.3847,-0.000003,2.3847,1.411003 +L 2.3847,1.411003,2.3847,2.822163 +L 2.3847,2.822163,2.3847,4.233104 +L 2.3847,4.233104,2.9416,4.233104 +L 2.9416,4.233104,3.5128,4.233104 +L 3.5128,4.233104,4.0939,4.233104 +L 4.0939,4.233104,4.213,4.603269 +L 4.213,4.603269,4.3464,4.956229 +L 4.3464,4.956229,4.4897,5.300936 +L 2.812,-0.000003,3.3619,-0.000003 +L 3.3619,-0.000003,3.9156,-0.000003 +L 3.9156,-0.000003,4.4897,-0.000003 +L 4.4897,-0.000003,4.406,0.637071 +L 4.406,0.637071,4.3356,1.257136 +L 4.3356,1.257136,4.276,1.868686 +L 4.276,1.868686,3.7892,1.944996 +L 3.7892,1.944996,3.2988,2.021196 +L 3.2988,2.021196,2.812,2.097528 +L 4.917,-0.000003,5.6178,-0.000003 +L 5.6178,-0.000003,6.3253,-0.000003 +L 6.3253,-0.000003,7.0538,-0.000003 +L 7.0538,-0.000003,7.0538,0.713381 +L 7.0538,0.713381,7.0538,1.40969 +L 7.0538,1.40969,7.0538,2.097528 +L 7.0538,2.097528,4.6123,2.6512 +L 4.6123,2.6512,4.7138,3.67941 +L 4.7138,3.67941,7.0538,4.233104 +L 7.0538,4.233104,7.0538,3.699221 +L 7.0538,3.699221,7.0538,3.165359 +L 7.0538,3.165359,7.0538,2.631367 + +[乳] 42 +L 1.5601,-0.000003,1.8372,-0.000003 +L 1.8372,-0.000003,2.1174,-0.000003 +L 2.1174,-0.000003,2.4112,-0.000003 +L 2.4112,-0.000003,2.3976,1.495784 +L 2.3976,1.495784,2.2886,2.177996 +L 2.2886,2.177996,1.9913,2.631367 +L 1.9913,2.631367,1.6407,2.255685 +L 1.6407,2.255685,1.1959,2.11736 +L 1.1959,2.11736,0.2817,2.097528 +L 5.8019,-0.000003,5.5007,0.689389 +L 5.5007,0.689389,5.3922,3.022634 +L 5.3922,3.022634,5.3746,9.000116 +L 6.2292,-0.000003,6.6352,-0.000003 +L 6.6352,-0.000003,7.0558,-0.000003 +L 7.0558,-0.000003,7.4796,-0.000003 +L 7.4796,-0.000003,7.4796,0.533989 +L 7.4796,0.533989,7.4796,1.067785 +L 7.4796,1.067785,7.4796,1.601777 +L 2.8105,2.631367,2.7299,3.001488 +L 2.7299,3.001488,2.6602,3.354601 +L 2.6602,3.354601,2.6007,3.699221 +L 2.6007,3.699221,2.9439,4.155393 +L 2.9439,4.155393,3.3008,4.603269 +L 3.3008,4.603269,3.6651,5.033961 +L 3.6651,5.033961,2.6673,5.137152 +L 2.6673,5.137152,1.6827,5.223269 +L 1.6827,5.223269,0.7024,5.300936 +L 3.2378,2.631367,3.5148,2.82074 +L 3.5148,2.82074,3.7985,3.001488 +L 3.7985,3.001488,4.0924,3.165359 +L 1.1328,6.635719,0.9826,6.978916 +L 0.9826,6.978916,0.8351,7.32209 +L 0.8351,7.32209,0.7024,7.665396 +L 0.7024,7.665396,2.3272,7.991629 +L 2.3272,7.991629,3.3043,8.317838 +L 3.3043,8.317838,4.0924,8.466188 +L 2.4112,6.635719,2.261,6.901294 +L 2.261,6.901294,2.1174,7.158308 +L 2.1174,7.158308,1.9913,7.398335 +L 3.2378,6.368723,3.5148,6.712029 +L 3.5148,6.712029,3.7985,7.055247 +L 3.7985,7.055247,4.0924,7.398335 + +[認] 57 +L 0.7394,-0.000003,0.7394,0.713381 +L 0.7394,0.713381,0.7394,1.40969 +L 0.7394,1.40969,0.7394,2.097528 +L 0.7394,2.097528,1.2893,2.097528 +L 1.2893,2.097528,1.8458,2.097528 +L 1.8458,2.097528,2.4171,2.097528 +L 2.4171,2.097528,2.4171,1.40969 +L 2.4171,1.40969,2.4171,0.713381 +L 2.4171,0.713381,2.4171,-0.000003 +L 2.4171,-0.000003,1.8458,-0.000003 +L 1.8458,-0.000003,1.2893,-0.000003 +L 1.2893,-0.000003,0.7394,-0.000003 +L 3.2717,0.266993,3.4009,0.877164 +L 3.4009,0.877164,3.5445,1.487357 +L 3.5445,1.487357,3.6955,2.097528 +L 4.9805,-0.000003,4.6758,0.453499 +L 4.6758,0.453499,4.5676,1.135732 +L 4.5676,1.135732,4.5501,2.631367 +L 5.3766,-0.000003,5.8004,-0.000003 +L 5.8004,-0.000003,6.2277,-0.000003 +L 6.2277,-0.000003,6.655,-0.000003 +L 6.655,-0.000003,6.655,0.370184 +L 6.655,0.370184,6.655,0.723188 +L 6.655,0.723188,6.655,1.067785 +L 7.5058,1.334825,7.359,1.600355 +L 7.359,1.600355,7.2154,1.857413 +L 7.2154,1.857413,7.0855,2.097528 +L 0.7394,3.699221,1.2893,3.699221 +L 1.2893,3.699221,1.8458,3.699221 +L 1.8458,3.699221,2.4171,3.699221 +L 3.2717,4.233104,3.6955,4.870178 +L 3.6955,4.870178,4.1228,5.490221 +L 4.1228,5.490221,4.5501,6.101749 +L 4.5501,6.101749,4.2555,6.367388 +L 4.2555,6.367388,3.9718,6.624358 +L 3.9718,6.624358,3.6955,6.864495 +L 5.3766,4.233104,6.7773,4.949268 +L 6.7773,4.949268,7.1209,6.606058 +L 7.1209,6.606058,7.0855,8.466188 +L 7.0855,8.466188,6.3854,8.466188 +L 6.3854,8.466188,5.6814,8.466188 +L 5.6814,8.466188,4.9805,8.466188 +L 4.9805,8.466188,4.9914,6.970511 +L 4.9914,6.970511,5.0965,6.288145 +L 5.0965,6.288145,5.3766,5.834884 +L 0.7394,5.300936,1.2893,5.300936 +L 1.2893,5.300936,1.8458,5.300936 +L 1.8458,5.300936,2.4171,5.300936 +L 0.3083,6.864495,1.1422,6.864495 +L 1.1422,6.864495,1.9894,6.864495 +L 1.9894,6.864495,2.8405,6.864495 +L 0.7394,8.466188,1.2893,8.466188 +L 1.2893,8.466188,1.8458,8.466188 +L 1.8458,8.466188,2.4171,8.466188 +L 3.2717,8.466188,3.6955,8.466188 +L 3.6955,8.466188,4.1228,8.466188 +L 4.1228,8.466188,4.5501,8.466188 + +[納] 51 +L 1.5925,-0.000003,1.5925,1.600355 +L 1.5925,1.600355,1.5925,3.192241 +L 1.5925,3.192241,1.5925,4.767052 +L 1.5925,4.767052,1.1652,4.767052 +L 1.1652,4.767052,0.734,4.767052 +L 0.734,4.767052,0.3141,4.767052 +L 3.7286,-0.000003,3.7286,2.477522 +L 3.7286,2.477522,3.7286,4.946488 +L 3.7286,4.946488,3.7286,7.398335 +L 3.7286,7.398335,4.7307,7.466238 +L 4.7307,7.466238,5.2561,7.889992 +L 5.2561,7.889992,5.4063,9.000116 +L 6.2574,-0.000003,6.5341,-0.000003 +L 6.5341,-0.000003,6.8147,-0.000003 +L 6.8147,-0.000003,7.1124,-0.000003 +L 7.1124,-0.000003,7.1124,2.477522 +L 7.1124,2.477522,7.1124,4.946488 +L 7.1124,4.946488,7.1124,7.398335 +L 7.1124,7.398335,6.1979,7.378611 +L 6.1979,7.378611,5.7531,7.240199 +L 5.7531,7.240199,5.4063,6.864495 +L 5.4063,6.864495,5.6834,5.642775 +L 5.6834,5.642775,5.9636,4.412605 +L 5.9636,4.412605,6.2574,3.165359 +L 0.3141,1.334825,0.4402,1.944996 +L 0.4402,1.944996,0.5834,2.555167 +L 0.5834,2.555167,0.734,3.165359 +L 2.874,1.868686,2.7238,2.315074 +L 2.7238,2.315074,2.5728,2.744408 +L 2.5728,2.744408,2.4436,3.165359 +L 4.1248,3.165359,4.3976,3.888572 +L 4.3976,3.888572,4.6852,4.603269 +L 4.6852,4.603269,4.979,5.300936 +L 2.874,4.500056,2.7238,4.767052 +L 2.7238,4.767052,2.5728,5.033961 +L 2.5728,5.033961,2.4436,5.300936 +L 2.4436,5.300936,2.2926,5.137152 +L 2.2926,5.137152,2.149,4.956229 +L 2.149,4.956229,2.0198,4.767052 +L 1.1652,5.300936,1.2944,5.567866 +L 1.2944,5.567866,1.4415,5.834884 +L 1.4415,5.834884,1.5925,6.101749 +L 1.5925,6.101749,1.2944,6.444967 +L 1.2944,6.444967,1.0142,6.788251 +L 1.0142,6.788251,0.734,7.131426 +L 0.734,7.131426,1.0142,7.768412 +L 1.0142,7.768412,1.2944,8.388653 +L 1.2944,8.388653,1.5925,9.000116 +L 2.0198,7.131426,2.149,7.398335 +L 2.149,7.398335,2.2926,7.665396 +L 2.2926,7.665396,2.4436,7.932305 + +[脳] 39 +L 0.3403,0.266993,0.6418,1.104582 +L 0.6418,1.104582,0.7536,3.23033 +L 0.7536,3.23033,0.7711,8.466188 +L 0.7711,8.466188,1.1914,8.466188 +L 1.1914,8.466188,1.6222,8.466188 +L 1.6222,8.466188,2.0495,8.466188 +L 2.0495,8.466188,2.0495,5.644133 +L 2.0495,5.644133,2.0495,2.822163 +L 2.0495,2.822163,2.0495,-0.000003 +L 3.2963,-0.000003,3.2963,1.781125 +L 3.2963,1.781125,3.2963,3.545332 +L 3.2963,3.545332,3.2963,5.300936 +L 3.7271,-0.000003,4.8549,-0.000003 +L 4.8549,-0.000003,5.9831,-0.000003 +L 5.9831,-0.000003,7.1179,-0.000003 +L 7.1179,-0.000003,7.1179,1.781125 +L 7.1179,1.781125,7.1179,3.545332 +L 7.1179,3.545332,7.1179,5.300936 +L 4.1544,1.601777,4.5821,2.211948 +L 4.5821,2.211948,5.0094,2.822163 +L 5.0094,2.822163,5.4367,3.432268 +L 5.4367,3.432268,5.1421,3.699221 +L 5.1421,3.699221,4.8549,3.966195 +L 4.8549,3.966195,4.5821,4.233104 +L 6.2913,1.868686,6.1407,2.134238 +L 6.1407,2.134238,5.9932,2.391318 +L 5.9932,2.391318,5.864,2.631367 +L 5.864,4.233104,5.864,4.603269 +L 5.864,4.603269,5.864,4.956229 +L 5.864,4.956229,5.864,5.300936 +L 4.1544,7.131426,3.8571,7.587686 +L 3.8571,7.587686,3.5734,8.035387 +L 3.5734,8.035387,3.2963,8.466188 +L 6.6867,6.864495,6.9599,7.587686 +L 6.9599,7.587686,7.2436,8.302406 +L 7.2436,8.302406,7.5382,9.000116 +L 5.4367,7.665396,5.1421,8.121526 +L 5.1421,8.121526,4.8549,8.56938 +L 4.8549,8.56938,4.5821,9.000116 + +[派] 27 +L 0.3703,0.266993,0.7804,1.411003 +L 0.7804,1.411003,1.1934,2.555167 +L 1.1934,2.555167,1.6207,3.699221 +L 2.0518,0.266993,2.7309,2.932249 +L 2.7309,2.932249,2.9099,5.343315 +L 2.9099,5.343315,2.9029,7.932305 +L 2.9029,7.932305,4.1848,7.971883 +L 4.1848,7.971883,5.1686,8.248621 +L 5.1686,8.248621,6.7167,9.000116 +L 4.1848,-0.000003,4.1848,1.944996 +L 4.1848,1.944996,4.1848,3.889864 +L 4.1848,3.889864,4.1848,5.834884 +L 4.1848,5.834884,5.1266,5.872907 +L 5.1266,5.872907,5.8937,6.139948 +L 5.8937,6.139948,7.144,6.864495 +L 7.5748,-0.000003,6.5031,1.781125 +L 6.5031,1.781125,5.7325,3.392778 +L 5.7325,3.392778,5.4352,5.300936 +L 6.2863,3.165359,6.7167,3.699221 +L 6.7167,3.699221,7.144,4.233104 +L 7.144,4.233104,7.5748,4.767052 +L 1.1934,5.834884,0.9205,6.178058 +L 0.9205,6.178058,0.6438,6.521255 +L 0.6438,6.521255,0.3703,6.864495 +L 1.6207,7.932305,1.3443,8.302406 +L 1.3443,8.302406,1.0743,8.655496 +L 1.0743,8.655496,0.7979,9.000116 + +[俳] 42 +L 1.2237,-0.000003,1.1393,1.781125 +L 1.1393,1.781125,1.0728,3.545332 +L 1.0728,3.545332,1.0097,5.300936 +L 1.0097,5.300936,0.7999,5.137152 +L 0.7999,5.137152,0.5859,4.956229 +L 0.5859,4.956229,0.3726,4.767052 +L 2.7189,-0.000003,3.2096,0.799497 +L 3.2096,0.799497,3.6965,1.590548 +L 3.6965,1.590548,4.1833,2.364414 +L 4.1833,2.364414,3.465,2.413821 +L 3.465,2.413821,2.8205,2.226046 +L 2.8205,2.226046,2.0783,2.097528 +L 5.4649,-0.000003,5.4649,3.011361 +L 5.4649,3.011361,5.4649,6.014188 +L 5.4649,6.014188,5.4649,9.000116 +L 5.8922,2.631367,6.4459,2.631367 +L 6.4459,2.631367,6.9993,2.631367 +L 6.9993,2.631367,7.5698,2.631367 +L 4.1833,3.165359,4.1833,3.699221 +L 4.1833,3.699221,4.1833,4.233104 +L 4.1833,4.233104,4.1833,4.767052 +L 4.1833,4.767052,3.6159,4.767052 +L 3.6159,4.767052,3.0552,4.767052 +L 3.0552,4.767052,2.5088,4.767052 +L 5.8922,4.767052,6.3233,4.767052 +L 6.3233,4.767052,6.7433,4.767052 +L 6.7433,4.767052,7.1744,4.767052 +L 4.1833,5.300936,4.1833,5.833439 +L 4.1833,5.833439,4.1833,6.357516 +L 4.1833,6.357516,4.1833,6.864495 +L 4.1833,6.864495,3.6159,6.864495 +L 3.6159,6.864495,3.0552,6.864495 +L 3.0552,6.864495,2.5088,6.864495 +L 1.2237,5.834884,1.3355,7.113104 +L 1.3355,7.113104,1.5421,8.052308 +L 1.5421,8.052308,1.6545,9.000116 +L 5.8922,6.864495,6.3233,6.864495 +L 6.3233,6.864495,6.7433,6.864495 +L 6.7433,6.864495,7.1744,6.864495 +L 4.1833,7.398335,4.1833,7.932305 +L 4.1833,7.932305,4.1833,8.466188 +L 4.1833,8.466188,4.1833,9.000116 + +[拝] 45 +L 0.8296,-0.000003,1.1032,-0.000003 +L 1.1032,-0.000003,1.3869,-0.000003 +L 1.3869,-0.000003,1.6807,-0.000003 +L 1.6807,-0.000003,1.6667,2.622917 +L 1.6667,2.622917,1.555,3.720432 +L 1.555,3.720432,1.2569,4.233104 +L 1.2569,4.233104,0.9596,4.06932 +L 0.9596,4.06932,0.6794,3.888572 +L 0.6794,3.888572,0.4023,3.699221 +L 5.4952,-0.000003,5.3443,2.072069 +L 5.3443,2.072069,4.7138,2.644107 +L 4.7138,2.644107,3.3619,2.631367 +L 5.898,2.631367,5.2325,3.98165 +L 5.2325,3.98165,4.98,4.611719 +L 4.98,4.611719,3.7857,4.767052 +L 6.318,2.631367,6.7491,2.631367 +L 6.7491,2.631367,7.1726,2.631367 +L 7.1726,2.631367,7.6037,2.631367 +L 2.0768,4.233104,1.5791,5.542473 +L 1.5791,5.542473,1.3935,6.495753 +L 1.3935,6.495753,0.4023,6.864495 +L 5.898,4.767052,5.6178,5.300936 +L 5.6178,5.300936,5.3443,5.834884 +L 5.3443,5.834884,5.0714,6.368723 +L 5.0714,6.368723,4.6441,6.368723 +L 4.6441,6.368723,4.2165,6.368723 +L 4.2165,6.368723,3.7857,6.368723 +L 6.318,4.767052,6.5981,4.767052 +L 6.5981,4.767052,6.8787,4.767052 +L 6.8787,4.767052,7.1726,4.767052 +L 5.6809,6.635719,5.6178,7.245759 +L 5.6178,7.245759,5.5583,7.855974 +L 5.5583,7.855974,5.4952,8.466188 +L 5.4952,8.466188,4.7734,8.466188 +L 4.7734,8.466188,4.0627,8.466188 +L 4.0627,8.466188,3.3619,8.466188 +L 6.318,6.368723,6.5981,6.368723 +L 6.5981,6.368723,6.8787,6.368723 +L 6.8787,6.368723,7.1726,6.368723 +L 2.0768,6.864495,1.7998,7.299456 +L 1.7998,7.299456,1.6951,7.853194 +L 1.6951,7.853194,1.6807,9.000116 +L 5.898,8.466188,6.4514,8.466188 +L 6.4514,8.466188,7.0254,8.466188 +L 7.0254,8.466188,7.6037,8.466188 + +[背] 42 +L 2.11,-0.000003,2.11,1.411003 +L 2.11,1.411003,2.11,2.822163 +L 2.11,2.822163,2.11,4.233104 +L 2.11,4.233104,3.3712,4.233104 +L 3.3712,4.233104,4.6461,4.233104 +L 4.6461,4.233104,5.9245,4.233104 +L 5.9245,4.233104,5.9245,2.822163 +L 5.9245,2.822163,5.9245,1.411003 +L 5.9245,1.411003,5.9245,-0.000003 +L 5.9245,-0.000003,5.4972,-0.000003 +L 5.4972,-0.000003,5.0661,-0.000003 +L 5.0661,-0.000003,4.6461,-0.000003 +L 2.5412,2.097528,3.5148,2.097528 +L 3.5148,2.097528,4.4987,2.097528 +L 4.4987,2.097528,5.4972,2.097528 +L 2.5412,3.165359,3.5148,3.165359 +L 3.5148,3.165359,4.4987,3.165359 +L 4.4987,3.165359,5.4972,3.165359 +L 2.965,5.300936,2.965,5.671014 +L 2.965,5.671014,2.965,6.02406 +L 2.965,6.02406,2.965,6.368723 +L 2.965,6.368723,1.9209,6.230311 +L 1.9209,6.230311,1.1713,5.973318 +L 1.1713,5.973318,0.4288,5.834884 +L 5.4972,5.834884,5.196,6.307999 +L 5.196,6.307999,5.0836,7.128581 +L 5.0836,7.128581,5.0661,9.000116 +L 5.9245,5.834884,6.4811,5.834884 +L 6.4811,5.834884,7.0558,5.834884 +L 7.0558,5.834884,7.6334,5.834884 +L 7.6334,5.834884,7.6334,6.178058 +L 7.6334,6.178058,7.6334,6.521255 +L 7.6334,6.521255,7.6334,6.864495 +L 2.965,6.864495,2.965,7.234596 +L 2.965,7.234596,2.965,7.587686 +L 2.965,7.587686,2.965,7.932305 +L 2.965,7.932305,2.11,7.932305 +L 2.11,7.932305,1.2698,7.932305 +L 1.2698,7.932305,0.4288,7.932305 +L 5.7105,7.398335,6.1974,7.768412 +L 6.1974,7.768412,6.6982,8.121526 +L 6.6982,8.121526,7.2061,8.466188 + +[肺] 39 +L 0.4347,0.266993,0.732,1.104582 +L 0.732,1.104582,0.8445,3.23033 +L 0.8445,3.23033,0.8585,8.466188 +L 0.8585,8.466188,1.4185,8.466188 +L 1.4185,8.466188,1.9894,8.466188 +L 1.9894,8.466188,2.5673,8.466188 +L 2.5673,8.466188,2.5673,5.644133 +L 2.5673,5.644133,2.5673,2.822163 +L 2.5673,2.822163,2.5673,-0.000003 +L 2.5673,-0.000003,2.2731,-0.000003 +L 2.2731,-0.000003,1.9894,-0.000003 +L 1.9894,-0.000003,1.7131,-0.000003 +L 5.5234,-0.000003,5.6075,2.96758 +L 5.6075,2.96758,5.3097,4.723272 +L 5.3097,4.723272,3.818,5.300936 +L 3.818,5.300936,3.818,4.079106 +L 3.818,4.079106,3.818,2.848979 +L 3.818,2.848979,3.818,1.601777 +L 6.3815,1.601777,6.655,1.601777 +L 6.655,1.601777,6.9279,1.601777 +L 6.9279,1.601777,7.2046,1.601777 +L 7.2046,1.601777,7.2046,2.848979 +L 7.2046,2.848979,7.2046,4.079106 +L 7.2046,4.079106,7.2046,5.300936 +L 7.2046,5.300936,5.6779,5.844713 +L 5.6779,5.844713,5.1591,6.854601 +L 5.1591,6.854601,3.3943,7.398335 +L 1.2893,3.699221,1.5621,3.699221 +L 1.5621,3.699221,1.8423,3.699221 +L 1.8423,3.699221,2.1404,3.699221 +L 1.2893,6.368723,1.5621,6.368723 +L 1.5621,6.368723,1.8423,6.368723 +L 1.8423,6.368723,2.1404,6.368723 +L 5.9542,7.398335,5.653,7.813638 +L 5.653,7.813638,5.5413,8.228919 +L 5.5413,8.228919,5.5234,9.000116 +L 6.3815,7.398335,6.7843,7.398335 +L 6.7843,7.398335,7.2046,7.398335 +L 7.2046,7.398335,7.6284,7.398335 + +[班] 42 +L 2.9966,-0.000003,4.4295,2.94361 +L 4.4295,2.94361,4.7549,5.522685 +L 4.7549,5.522685,4.7023,9.000116 +L 5.13,-0.000003,5.5363,-0.000003 +L 5.5363,-0.000003,5.9527,-0.000003 +L 5.9527,-0.000003,6.3835,-0.000003 +L 6.3835,-0.000003,6.3835,1.247242 +L 6.3835,1.247242,6.3835,2.477522 +L 6.3835,2.477522,6.3835,3.699221 +L 6.3835,3.699221,6.0861,3.888572 +L 6.0861,3.888572,5.8059,4.06932 +L 5.8059,4.06932,5.5289,4.233104 +L 6.8073,-0.000003,7.0875,-0.000003 +L 7.0875,-0.000003,7.3677,-0.000003 +L 7.3677,-0.000003,7.6622,-0.000003 +L 0.4612,1.601777,0.8671,1.601777 +L 0.8671,1.601777,1.2878,1.601777 +L 1.2878,1.601777,1.7151,1.601777 +L 1.7151,1.601777,1.6972,3.848994 +L 1.6972,3.848994,1.5956,4.807944 +L 1.5956,4.807944,1.3154,5.300936 +L 1.3154,5.300936,1.0216,5.300936 +L 1.0216,5.300936,0.7414,5.300936 +L 0.7414,5.300936,0.4612,5.300936 +L 2.9966,3.966195,3.2947,4.607494 +L 3.2947,4.607494,3.4064,5.358901 +L 3.4064,5.358901,3.4239,6.864495 +L 6.8073,4.233104,6.5064,4.745775 +L 6.5064,4.745775,6.401,5.843312 +L 6.401,5.843312,6.3835,8.466188 +L 6.3835,8.466188,6.0861,8.466188 +L 6.0861,8.466188,5.8059,8.466188 +L 5.8059,8.466188,5.5289,8.466188 +L 2.142,5.300936,1.8408,5.774008 +L 1.8408,5.774008,1.7291,6.594719 +L 1.7291,6.594719,1.7151,8.466188 +L 1.7151,8.466188,1.2878,8.466188 +L 1.2878,8.466188,0.8671,8.466188 +L 0.8671,8.466188,0.4612,8.466188 +L 2.142,8.466188,2.4152,8.466188 +L 2.4152,8.466188,2.6989,8.466188 +L 2.6989,8.466188,2.9966,8.466188 + +[否] 30 +L 1.3139,-0.000003,1.3139,1.066406 +L 1.3139,1.066406,1.3139,2.124321 +L 1.3139,2.124321,1.3139,3.165359 +L 1.3139,3.165359,3.006,3.165359 +L 3.006,3.165359,4.7047,3.165359 +L 4.7047,3.165359,6.4135,3.165359 +L 6.4135,3.165359,6.4135,2.124321 +L 6.4135,2.124321,6.4135,1.066406 +L 6.4135,1.066406,6.4135,-0.000003 +L 6.4135,-0.000003,4.7047,-0.000003 +L 4.7047,-0.000003,3.006,-0.000003 +L 3.006,-0.000003,1.3139,-0.000003 +L 3.8816,4.233104,3.7975,5.110271 +L 3.7975,5.110271,3.7306,5.987329 +L 3.7306,5.987329,3.6641,6.864495 +L 3.6641,6.864495,2.5997,6.357516 +L 2.5997,6.357516,1.5314,5.833439 +L 1.5314,5.833439,0.4628,5.300936 +L 7.2646,5.300936,6.5431,5.833439 +L 6.5431,5.833439,5.8356,6.357516 +L 5.8356,6.357516,5.1355,6.864495 +L 3.8816,7.398335,4.0007,7.665396 +L 4.0007,7.665396,4.1334,7.932305 +L 4.1334,7.932305,4.277,8.199302 +L 4.277,8.199302,2.9951,8.302406 +L 2.9951,8.302406,1.7237,8.388653 +L 1.7237,8.388653,0.4628,8.466188 +L 4.7047,8.466188,5.5558,8.466188 +L 5.5558,8.466188,6.4135,8.466188 +L 6.4135,8.466188,7.2646,8.466188 + +[批] 39 +L 0.9205,-0.000003,1.1969,-0.000003 +L 1.1969,-0.000003,1.4806,-0.000003 +L 1.4806,-0.000003,1.7783,-0.000003 +L 1.7783,-0.000003,1.7608,2.622917 +L 1.7608,2.622917,1.649,3.720432 +L 1.649,3.720432,1.3478,4.233104 +L 1.3478,4.233104,1.0533,4.06932 +L 1.0533,4.06932,0.7696,3.888572 +L 0.7696,3.888572,0.4929,3.699221 +L 2.5978,-0.000003,2.8745,-0.000003 +L 2.8745,-0.000003,3.1547,-0.000003 +L 3.1547,-0.000003,3.4528,-0.000003 +L 3.4528,-0.000003,3.4528,3.011361 +L 3.4528,3.011361,3.4528,6.014188 +L 3.4528,6.014188,3.4528,9.000116 +L 6.0127,-0.000003,5.7189,0.689389 +L 5.7189,0.689389,5.6064,3.022634 +L 5.6064,3.022634,5.5924,9.000116 +L 6.4089,-0.000003,6.8393,-0.000003 +L 6.8393,-0.000003,7.2666,-0.000003 +L 7.2666,-0.000003,7.6939,-0.000003 +L 7.6939,-0.000003,7.6939,0.533989 +L 7.6939,0.533989,7.6939,1.067785 +L 7.6939,1.067785,7.6939,1.601777 +L 4.0934,0.533989,4.3039,0.723188 +L 4.3039,0.723188,4.5207,0.904045 +L 4.5207,0.904045,4.7343,1.067785 +L 2.2024,4.233104,1.6767,5.508565 +L 1.6767,5.508565,1.4879,6.478942 +L 1.4879,6.478942,0.4929,6.864495 +L 6.1984,5.300936,6.5451,5.671014 +L 6.5451,5.671014,6.9024,6.02406 +L 6.9024,6.02406,7.2666,6.368723 +L 3.8832,5.834884,4.1564,5.834884 +L 4.1564,5.834884,4.4366,5.834884 +L 4.4366,5.834884,4.7343,5.834884 +L 2.2024,6.864495,1.9009,7.299456 +L 1.9009,7.299456,1.7926,7.853194 +L 1.7926,7.853194,1.7783,9.000116 + +[秘] 48 +L 1.7771,-0.000003,1.6931,1.411003 +L 1.6931,1.411003,1.6227,2.822163 +L 1.6227,2.822163,1.5596,4.233104 +L 1.5596,4.233104,1.2027,3.535437 +L 1.2027,3.535437,0.863,2.82074 +L 0.863,2.82074,0.5264,2.097528 +L 3.0552,-0.000003,3.5455,0.533989 +L 3.5455,0.533989,4.0432,1.067785 +L 4.0432,1.067785,4.5511,1.601777 +L 4.5511,1.601777,4.6138,3.355893 +L 4.6138,3.355893,4.6842,5.110271 +L 4.6842,5.110271,4.7609,6.864495 +L 5.1636,-0.000003,5.0169,0.370184 +L 5.0169,0.370184,4.8908,0.723188 +L 4.8908,0.723188,4.7609,1.067785 +L 5.5874,-0.000003,6.0147,-0.000003 +L 6.0147,-0.000003,6.442,-0.000003 +L 6.442,-0.000003,6.8732,-0.000003 +L 6.8732,-0.000003,6.8732,0.533989 +L 6.8732,0.533989,6.8732,1.067785 +L 6.8732,1.067785,6.8732,1.601777 +L 3.0552,2.364414,3.1848,3.001488 +L 3.1848,3.001488,3.3322,3.621532 +L 3.3322,3.621532,3.4825,4.233104 +L 5.1636,2.631367,5.9065,4.406935 +L 5.9065,4.406935,6.5755,6.614508 +L 6.5755,6.614508,6.8732,8.466188 +L 7.7243,2.631367,7.7068,3.402541 +L 7.7068,3.402541,7.5978,3.817866 +L 7.5978,3.817866,7.297,4.233104 +L 2.6314,4.233104,2.1554,4.668152 +L 2.1554,4.668152,1.8223,5.22189 +L 1.8223,5.22189,1.3463,6.368723 +L 1.3463,6.368723,1.0728,6.368723 +L 1.0728,6.368723,0.7999,6.368723 +L 0.7999,6.368723,0.5264,6.368723 +L 2.2009,6.368723,1.9029,6.757145 +L 1.9029,6.757145,1.7911,7.162598 +L 1.7911,7.162598,1.7771,7.932305 +L 1.7771,7.932305,1.3498,7.932305 +L 1.3498,7.932305,0.9292,7.932305 +L 0.9292,7.932305,0.5264,7.932305 +L 2.2009,7.932305,2.4776,8.121526 +L 2.4776,8.121526,2.7613,8.302406 +L 2.7613,8.302406,3.0552,8.466188 +L 5.5874,8.199302,5.4372,8.466188 +L 5.4372,8.466188,5.2936,8.733185 +L 5.2936,8.733185,5.1636,9.000116 + +[腹] 60 +L 0.5249,0.266993,0.8264,1.104582 +L 0.8264,1.104582,0.9347,3.23033 +L 0.9347,3.23033,0.9522,8.466188 +L 0.9522,8.466188,1.5094,8.466188 +L 1.5094,8.466188,2.0803,8.466188 +L 2.0803,8.466188,2.6617,8.466188 +L 2.6617,8.466188,2.6617,5.644133 +L 2.6617,5.644133,2.6617,2.822163 +L 2.6617,2.822163,2.6617,-0.000003 +L 2.6617,-0.000003,2.3605,-0.000003 +L 2.3605,-0.000003,2.0803,-0.000003 +L 2.0803,-0.000003,1.8033,-0.000003 +L 3.5128,-0.000003,4.2165,0.370184 +L 4.2165,0.370184,4.9205,0.723188 +L 4.9205,0.723188,5.6213,1.067785 +L 5.6213,1.067785,5.1905,1.600355 +L 5.1905,1.600355,4.7667,2.124321 +L 4.7667,2.124321,4.3356,2.631367 +L 4.3356,2.631367,4.0627,2.288236 +L 4.0627,2.288236,3.7892,1.944996 +L 3.7892,1.944996,3.5128,1.601777 +L 7.3302,-0.000003,6.8997,0.370184 +L 6.8997,0.370184,6.4724,0.723188 +L 6.4724,0.723188,6.0451,1.067785 +L 6.0451,1.067785,6.3253,1.514238 +L 6.3253,1.514238,6.6051,1.943529 +L 6.6051,1.943529,6.8997,2.364414 +L 6.8997,2.364414,4.8543,3.449102 +L 4.8543,3.449102,4.5772,5.322103 +L 4.5772,5.322103,3.9156,7.398335 +L 3.9156,7.398335,3.7647,7.234596 +L 3.7647,7.234596,3.6389,7.053715 +L 3.6389,7.053715,3.5128,6.864495 +L 1.3795,3.165359,1.653,3.165359 +L 1.653,3.165359,1.9399,3.165359 +L 1.9399,3.165359,2.2344,3.165359 +L 5.1905,3.699221,5.7505,3.699221 +L 5.7505,3.699221,6.3253,3.699221 +L 6.3253,3.699221,6.8997,3.699221 +L 6.8997,3.699221,6.8997,4.233104 +L 6.8997,4.233104,6.8997,4.767052 +L 6.8997,4.767052,6.8997,5.300936 +L 6.8997,5.300936,6.1743,5.300936 +L 6.1743,5.300936,5.4668,5.300936 +L 5.4668,5.300936,4.7667,5.300936 +L 1.3795,5.834884,1.653,5.834884 +L 1.653,5.834884,1.9399,5.834884 +L 1.9399,5.834884,2.2344,5.834884 +L 6.8997,5.834884,6.8997,6.178058 +L 6.8997,6.178058,6.8997,6.521255 +L 6.8997,6.521255,6.8997,6.864495 +L 6.8997,6.864495,6.1743,6.864495 +L 6.1743,6.864495,5.4668,6.864495 +L 5.4668,6.864495,4.7667,6.864495 +L 4.1258,7.932305,4.1853,8.302406 +L 4.1853,8.302406,4.2515,8.655496 +L 4.2515,8.655496,4.3356,9.000116 +L 4.7667,7.932305,5.7439,7.932305 +L 5.7439,7.932305,6.7277,7.932305 +L 6.7277,7.932305,7.7263,7.932305 + +[奮] 54 +L 1.8372,-0.000003,1.8967,1.781125 +L 1.8967,1.781125,1.9629,3.545332 +L 1.9629,3.545332,2.0193,5.300936 +L 2.0193,5.300936,1.6617,5.137152 +L 1.6617,5.137152,1.3184,4.956229 +L 1.3184,4.956229,0.9826,4.767052 +L 2.2326,-0.000003,2.793,-0.000003 +L 2.793,-0.000003,3.3639,-0.000003 +L 3.3639,-0.000003,3.9421,-0.000003 +L 3.9421,-0.000003,3.7071,1.3306 +L 3.7071,1.3306,3.0977,1.644113 +L 3.0977,1.644113,2.2326,1.601777 +L 4.3726,-0.000003,4.919,-0.000003 +L 4.919,-0.000003,5.4762,-0.000003 +L 5.4762,-0.000003,6.0471,-0.000003 +L 6.0471,-0.000003,6.0471,0.533989 +L 6.0471,0.533989,6.0471,1.067785 +L 6.0471,1.067785,6.0471,1.601777 +L 6.0471,1.601777,4.7092,1.809363 +L 4.7092,1.809363,3.7355,2.245747 +L 3.7355,2.245747,2.6637,2.631367 +L 6.0471,2.364414,4.7092,2.947813 +L 4.7092,2.947813,3.7355,3.47178 +L 3.7355,3.47178,2.6637,3.699221 +L 4.7932,3.699221,4.1484,4.450694 +L 4.1484,4.450694,3.5919,4.727519 +L 3.5919,4.727519,2.6637,4.767052 +L 5.2237,3.699221,5.4937,3.699221 +L 5.4937,3.699221,5.7736,3.699221 +L 5.7736,3.699221,6.0471,3.699221 +L 4.7932,4.767052,3.9138,5.671014 +L 3.9138,5.671014,3.2168,5.87155 +L 3.2168,5.87155,2.2326,5.834884 +L 5.2237,4.767052,5.4937,4.767052 +L 5.4937,4.767052,5.7736,4.767052 +L 5.7736,4.767052,6.0471,4.767052 +L 4.7932,5.834884,4.5127,6.228844 +L 4.5127,6.228844,4.5127,6.495753 +L 4.5127,6.495753,4.7932,6.864495 +L 5.2237,5.834884,6.1168,5.854651 +L 6.1168,5.854651,6.555,5.992976 +L 6.555,5.992976,6.8982,6.368723 +L 6.8982,6.368723,5.4829,7.501548 +L 5.4829,7.501548,4.2398,7.727565 +L 4.2398,7.727565,2.6637,7.665396 +L 2.6637,7.665396,2.7058,6.642724 +L 2.7058,6.642724,1.6901,6.450637 +L 1.6901,6.450637,0.5588,6.368723 +L 0.5588,7.932305,1.1051,7.932305 +L 1.1051,7.932305,1.6617,7.932305 +L 1.6617,7.932305,2.2326,7.932305 +L 6.0471,7.932305,6.4744,7.932305 +L 6.4744,7.932305,6.8982,7.932305 +L 6.8982,7.932305,7.3287,7.932305 + +[陛] 51 +L 0.5849,-0.000003,0.5849,2.822163 +L 0.5849,2.822163,0.5849,5.644133 +L 0.5849,5.644133,0.5849,8.466188 +L 0.5849,8.466188,1.1383,8.466188 +L 1.1383,8.466188,1.6921,8.466188 +L 1.6921,8.466188,2.263,8.466188 +L 2.263,8.466188,1.8181,6.097524 +L 1.8181,6.097524,2.0419,4.796692 +L 2.0419,4.796692,2.263,2.631367 +L 2.263,2.631367,1.9649,2.467627 +L 1.9649,2.467627,1.6847,2.286748 +L 1.6847,2.286748,1.4119,2.097528 +L 2.6899,-0.000003,3.5235,-0.000003 +L 3.5235,-0.000003,4.3711,-0.000003 +L 4.3711,-0.000003,5.2222,-0.000003 +L 5.2222,-0.000003,5.0124,1.713352 +L 5.0124,1.713352,4.3259,2.138528 +L 4.3259,2.138528,3.1207,2.097528 +L 5.653,-0.000003,6.3535,-0.000003 +L 6.3535,-0.000003,7.0645,-0.000003 +L 7.0645,-0.000003,7.7863,-0.000003 +L 5.653,2.097528,5.3483,2.512831 +L 5.3483,2.512831,5.2397,2.928068 +L 5.2397,2.928068,5.2222,3.699221 +L 6.0768,2.097528,6.5041,2.097528 +L 6.5041,2.097528,6.9317,2.097528 +L 6.9317,2.097528,7.3625,2.097528 +L 3.1207,4.767052,3.3942,4.767052 +L 3.3942,4.767052,3.6744,4.767052 +L 3.6744,4.767052,3.9718,4.767052 +L 3.9718,4.767052,3.9718,6.178058 +L 3.9718,6.178058,3.9718,7.589 +L 3.9718,7.589,3.9718,9.000116 +L 6.5041,4.767052,6.2032,5.279724 +L 6.2032,5.279724,6.0908,6.377217 +L 6.0908,6.377217,6.0768,9.000116 +L 6.9317,4.767052,7.2046,4.767052 +L 7.2046,4.767052,7.4918,4.767052 +L 7.4918,4.767052,7.7863,4.767052 +L 7.7863,4.767052,7.7863,5.137152 +L 7.7863,5.137152,7.7863,5.490221 +L 7.7863,5.490221,7.7863,5.834884 +L 4.3991,5.300936,4.6726,5.300936 +L 4.6726,5.300936,4.9528,5.300936 +L 4.9528,5.300936,5.2222,5.300936 +L 4.3991,7.398335,4.6726,7.398335 +L 4.6726,7.398335,4.9528,7.398335 +L 4.9528,7.398335,5.2222,7.398335 +L 6.7177,7.398335,6.9317,7.587686 +L 6.9317,7.587686,7.145,7.768412 +L 7.145,7.768412,7.3625,7.932305 + +[片] 18 +L 0.5838,-0.000003,1.6622,3.045357 +L 1.6622,3.045357,1.9074,5.776918 +L 1.9074,5.776918,1.8688,9.000116 +L 5.6798,-0.000003,5.6798,1.411003 +L 5.6798,1.411003,5.6798,2.822163 +L 5.6798,2.822163,5.6798,4.233104 +L 5.6798,4.233104,4.5517,4.233104 +L 4.5517,4.233104,3.4239,4.233104 +L 3.4239,4.233104,2.2926,4.233104 +L 2.2926,6.368723,3.1301,6.368723 +L 3.1301,6.368723,3.9703,6.368723 +L 3.9703,6.368723,4.8249,6.368723 +L 4.8249,6.368723,4.8249,7.245759 +L 4.8249,7.245759,4.8249,8.123014 +L 4.8249,8.123014,4.8249,9.000116 +L 5.2525,6.368723,6.0861,6.368723 +L 6.0861,6.368723,6.9337,6.368723 +L 6.9337,6.368723,7.7848,6.368723 + +[補] 66 +L 1.4719,-0.000003,1.4544,2.622917 +L 1.4544,2.622917,1.3458,3.720432 +L 1.3458,3.720432,1.0446,4.233104 +L 1.0446,4.233104,0.8901,4.06932 +L 0.8901,4.06932,0.7465,3.888572 +L 0.7465,3.888572,0.6173,3.699221 +L 4.0042,-0.000003,4.0042,1.944996 +L 4.0042,1.944996,4.0042,3.889864 +L 4.0042,3.889864,4.0042,5.834884 +L 4.0042,5.834884,4.918,5.864524 +L 4.918,5.864524,5.3526,6.072087 +L 5.3526,6.072087,5.6783,6.635719 +L 5.6783,6.635719,5.3386,7.172426 +L 5.3386,7.172426,4.7922,7.370118 +L 4.7922,7.370118,3.5734,7.398335 +L 5.6783,-0.000003,5.6675,1.495784 +L 5.6675,1.495784,5.5628,2.177996 +L 5.5628,2.177996,5.2822,2.631367 +L 5.2822,2.631367,4.9884,2.631367 +L 4.9884,2.631367,4.7047,2.631367 +L 4.7047,2.631367,4.4311,2.631367 +L 6.5361,-0.000003,6.8131,-0.000003 +L 6.8131,-0.000003,7.0933,-0.000003 +L 7.0933,-0.000003,7.3907,-0.000003 +L 7.3907,-0.000003,7.3907,0.877164 +L 7.3907,0.877164,7.3907,1.754244 +L 7.3907,1.754244,7.3907,2.631367 +L 7.3907,2.631367,6.9634,2.631367 +L 6.9634,2.631367,6.5361,2.631367 +L 6.5361,2.631367,6.1091,2.631367 +L 6.1091,2.631367,5.8321,3.165359 +L 5.8321,3.165359,5.5628,3.699221 +L 5.5628,3.699221,5.2822,4.233104 +L 5.2822,4.233104,4.9884,4.233104 +L 4.9884,4.233104,4.7047,4.233104 +L 4.7047,4.233104,4.4311,4.233104 +L 2.7223,3.165359,2.2946,3.699221 +L 2.2946,3.699221,1.8782,4.233104 +L 1.8782,4.233104,1.4719,4.767052 +L 1.4719,4.767052,1.8782,5.566487 +L 1.8782,5.566487,2.2946,6.357516 +L 2.2946,6.357516,2.7223,7.131426 +L 2.7223,7.131426,2.0183,7.234596 +L 2.0183,7.234596,1.3174,7.320668 +L 1.3174,7.320668,0.6173,7.398335 +L 7.3907,3.165359,7.3907,3.535437 +L 7.3907,3.535437,7.3907,3.888572 +L 7.3907,3.888572,7.3907,4.233104 +L 7.3907,4.233104,6.4734,4.262787 +L 6.4734,4.262787,6.0286,4.470417 +L 6.0286,4.470417,5.6783,5.033961 +L 5.6783,5.033961,6.0286,5.597594 +L 6.0286,5.597594,6.4734,5.805135 +L 6.4734,5.805135,7.3907,5.834884 +L 7.3907,5.834884,7.3907,5.490221 +L 7.3907,5.490221,7.3907,5.137152 +L 7.3907,5.137152,7.3907,4.767052 +L 6.1091,7.398335,5.8044,7.813638 +L 5.8044,7.813638,5.6955,8.228919 +L 5.6955,8.228919,5.6783,9.000116 +L 6.5361,7.398335,6.9634,7.398335 +L 6.9634,7.398335,7.3907,7.398335 +L 7.3907,7.398335,7.818,7.398335 +L 1.4719,7.932305,1.4719,8.302406 +L 1.4719,8.302406,1.4719,8.655496 +L 1.4719,8.655496,1.4719,9.000116 + +[暮] 72 +L 2.3215,-0.000003,2.2441,0.877164 +L 2.2441,0.877164,2.1744,1.754244 +L 2.1744,1.754244,2.111,2.631367 +L 2.111,2.631367,1.6031,2.467627 +L 1.6031,2.467627,1.1061,2.286748 +L 1.1061,2.286748,0.6158,2.097528 +L 2.7519,-0.000003,3.8801,-0.000003 +L 3.8801,-0.000003,5.0114,-0.000003 +L 5.0114,-0.000003,6.1427,-0.000003 +L 6.1427,-0.000003,6.1427,0.533989 +L 6.1427,0.533989,6.1427,1.067785 +L 6.1427,1.067785,6.1427,1.601777 +L 6.1427,1.601777,5.0114,1.601777 +L 5.0114,1.601777,3.8801,1.601777 +L 3.8801,1.601777,2.7519,1.601777 +L 6.1427,2.364414,5.0114,2.467627 +L 5.0114,2.467627,3.8801,2.553831 +L 3.8801,2.553831,2.7519,2.631367 +L 2.7519,2.631367,2.7519,3.001488 +L 2.7519,3.001488,2.7519,3.354601 +L 2.7519,3.354601,2.7519,3.699221 +L 2.7519,3.699221,2.0304,3.699221 +L 2.0304,3.699221,1.3194,3.699221 +L 1.3194,3.699221,0.6158,3.699221 +L 5.7115,3.432268,4.8604,3.535437 +L 4.8604,3.535437,4.0128,3.621532 +L 4.0128,3.621532,3.1792,3.699221 +L 3.1792,3.699221,3.1792,4.06932 +L 3.1792,4.06932,3.1792,4.422433 +L 3.1792,4.422433,3.1792,4.767052 +L 3.1792,4.767052,2.7519,4.767052 +L 2.7519,4.767052,2.3215,4.767052 +L 2.3215,4.767052,1.9008,4.767052 +L 1.9008,4.767052,1.9008,5.480415 +L 1.9008,5.480415,1.9008,6.176658 +L 1.9008,6.176658,1.9008,6.864495 +L 1.9008,6.864495,2.3215,6.967687 +L 2.3215,6.967687,2.7519,7.053715 +L 2.7519,7.053715,3.1792,7.131426 +L 3.1792,7.131426,3.029,7.398335 +L 3.029,7.398335,2.8815,7.665396 +L 2.8815,7.665396,2.7519,7.932305 +L 2.7519,7.932305,2.0304,7.932305 +L 2.0304,7.932305,1.3194,7.932305 +L 1.3194,7.932305,0.6158,7.932305 +L 6.1427,3.699221,6.6961,3.699221 +L 6.6961,3.699221,7.2701,3.699221 +L 7.2701,3.699221,7.8484,3.699221 +L 3.61,4.767052,4.5841,4.767052 +L 4.5841,4.767052,5.5714,4.767052 +L 5.5714,4.767052,6.5661,4.767052 +L 6.5661,4.767052,6.5661,5.137152 +L 6.5661,5.137152,6.5661,5.490221 +L 6.5661,5.490221,6.5661,5.834884 +L 6.5661,5.834884,5.1406,5.834884 +L 5.1406,5.834884,3.7291,5.834884 +L 3.7291,5.834884,2.3215,5.834884 +L 6.5661,6.635719,5.5714,6.712029 +L 5.5714,6.712029,4.5841,6.788251 +L 4.5841,6.788251,3.61,6.864495 +L 5.2842,7.398335,4.941,7.774192 +L 4.941,7.774192,4.5035,7.912539 +L 4.5035,7.912539,3.61,7.932305 +L 3.61,7.932305,3.4563,8.302406 +L 3.4563,8.302406,3.3127,8.655496 +L 3.3127,8.655496,3.1792,9.000116 +L 5.7115,7.932305,5.5613,8.302406 +L 5.5613,8.302406,5.4177,8.655496 +L 5.4177,8.655496,5.2842,9.000116 +L 6.1427,7.932305,6.6961,7.932305 +L 6.6961,7.932305,7.2701,7.932305 +L 7.2701,7.932305,7.8484,7.932305 + +[宝] 33 +L 0.649,0.533989,1.7771,0.533989 +L 1.7771,0.533989,2.9049,0.533989 +L 2.9049,0.533989,4.0323,0.533989 +L 4.0323,0.533989,3.8852,2.589031 +L 3.8852,2.589031,3.2762,3.169585 +L 3.2762,3.169585,1.9274,3.165359 +L 4.4596,0.533989,5.4372,0.533989 +L 5.4372,0.533989,6.421,0.533989 +L 6.421,0.533989,7.4157,0.533989 +L 6.5646,1.601777,5.1636,3.072151 +L 5.1636,3.072151,4.3199,3.72886 +L 4.3199,3.72886,4.0323,5.834884 +L 4.0323,5.834884,3.1812,5.834884 +L 3.1812,5.834884,2.3301,5.834884 +L 2.3301,5.834884,1.5001,5.834884 +L 4.4596,5.834884,5.1636,5.834884 +L 5.1636,5.834884,5.8645,5.834884 +L 5.8645,5.834884,6.5646,5.834884 +L 0.649,6.368723,0.649,6.901294 +L 0.649,6.901294,0.649,7.425282 +L 0.649,7.425282,0.649,7.932305 +L 0.649,7.932305,1.7771,7.932305 +L 1.7771,7.932305,2.9049,7.932305 +L 2.9049,7.932305,4.0323,7.932305 +L 4.0323,7.932305,4.0323,8.302406 +L 4.0323,8.302406,4.0323,8.655496 +L 4.0323,8.655496,4.0323,9.000116 +L 7.4157,6.368723,7.4157,6.901294 +L 7.4157,6.901294,7.4157,7.425282 +L 7.4157,7.425282,7.4157,7.932305 +L 7.4157,7.932305,6.421,7.932305 +L 6.421,7.932305,5.4372,7.932305 +L 5.4372,7.932305,4.4596,7.932305 + +[亡] 18 +L 2.3532,-0.000003,2.0593,0.61019 +L 2.0593,0.61019,1.9469,2.389917 +L 1.9469,2.389917,1.9332,6.864495 +L 1.9332,6.864495,1.5021,6.864495 +L 1.5021,6.864495,1.0821,6.864495 +L 1.0821,6.864495,0.6793,6.864495 +L 2.7843,-0.000003,4.3429,-0.000003 +L 4.3429,-0.000003,5.8941,-0.000003 +L 5.8941,-0.000003,7.4527,-0.000003 +L 2.3532,6.864495,2.9136,6.864495 +L 2.9136,6.864495,3.4845,6.864495 +L 3.4845,6.864495,4.0627,6.864495 +L 4.0627,6.864495,4.0627,7.587686 +L 4.0627,7.587686,4.0627,8.302406 +L 4.0627,8.302406,4.0627,9.000116 +L 4.49,6.864495,5.6213,6.864495 +L 5.6213,6.864495,6.7526,6.864495 +L 6.7526,6.864495,7.88,6.864495 + +[棒] 60 +L 1.9597,-0.000003,1.9419,2.99873 +L 1.9419,2.99873,1.8336,4.234549 +L 1.8336,4.234549,1.5324,4.767052 +L 1.5324,4.767052,1.2379,4.06932 +L 1.2379,4.06932,0.9542,3.354601 +L 0.9542,3.354601,0.6813,2.631367 +L 5.3463,-0.000003,5.1154,1.3306 +L 5.1154,1.3306,4.506,1.644113 +L 4.506,1.644113,3.6686,1.601777 +L 5.7736,1.601777,5.1365,2.326369 +L 5.1365,2.326369,4.6983,2.593256 +L 4.6983,2.593256,4.0647,2.631367 +L 6.2009,1.601777,6.4744,1.601777 +L 6.4744,1.601777,6.7612,1.601777 +L 6.7612,1.601777,7.0558,1.601777 +L 2.814,2.631367,3.2203,3.268397 +L 3.2203,3.268397,3.6409,3.888572 +L 3.6409,3.888572,4.0647,4.500056 +L 4.0647,4.500056,3.4689,4.668152 +L 3.4689,4.668152,3.1471,4.599023 +L 3.1471,4.599023,2.814,4.233104 +L 2.814,4.233104,2.0645,5.593325 +L 2.0645,5.593325,1.648,6.521255 +L 1.648,6.521255,0.6813,6.864495 +L 5.7736,2.631367,5.6233,3.001488 +L 5.6233,3.001488,5.4762,3.354601 +L 5.4762,3.354601,5.3463,3.699221 +L 7.8785,2.631367,6.7721,4.134225 +L 6.7721,4.134225,5.9035,4.586173 +L 5.9035,4.586173,4.4917,4.767052 +L 4.4917,4.767052,4.4917,5.300936 +L 4.4917,5.300936,4.4917,5.834884 +L 4.4917,5.834884,4.4917,6.368723 +L 4.4917,6.368723,4.2188,6.368723 +L 4.2188,6.368723,3.9421,6.368723 +L 3.9421,6.368723,3.6686,6.368723 +L 7.0558,4.767052,7.3321,4.767052 +L 7.3321,4.767052,7.6022,4.767052 +L 7.6022,4.767052,7.8785,4.767052 +L 6.2009,5.300936,6.2009,5.671014 +L 6.2009,5.671014,6.2009,6.02406 +L 6.2009,6.02406,6.2009,6.368723 +L 6.2009,6.368723,5.7736,6.368723 +L 5.7736,6.368723,5.3463,6.368723 +L 5.3463,6.368723,4.9225,6.368723 +L 4.9225,6.368723,4.9225,6.901294 +L 4.9225,6.901294,4.9225,7.425282 +L 4.9225,7.425282,4.9225,7.932305 +L 4.9225,7.932305,4.4917,7.932305 +L 4.4917,7.932305,4.0714,7.932305 +L 4.0714,7.932305,3.6686,7.932305 +L 2.3902,6.864495,2.0855,7.299456 +L 2.0855,7.299456,1.9737,7.853194 +L 1.9737,7.853194,1.9597,9.000116 +L 5.3463,7.932305,5.3463,8.302406 +L 5.3463,8.302406,5.3463,8.655496 +L 5.3463,8.655496,5.3463,9.000116 +L 5.7736,7.932305,6.3308,7.932305 +L 6.3308,7.932305,6.9013,7.932305 +L 6.9013,7.932305,7.4796,7.932305 + +[枚] 36 +L 1.9894,-0.000003,1.9088,1.600355 +L 1.9088,1.600355,1.8391,3.192241 +L 1.8391,3.192241,1.7761,4.767052 +L 1.7761,4.767052,1.4118,4.06932 +L 1.4118,4.06932,1.0542,3.354601 +L 1.0542,3.354601,0.7075,2.631367 +L 3.4573,-0.000003,4.2243,0.799497 +L 4.2243,0.799497,5.0124,1.590548 +L 5.0124,1.590548,5.8039,2.364414 +L 5.8039,2.364414,5.2222,3.535437 +L 5.2222,3.535437,4.6548,4.689298 +L 4.6548,4.689298,4.0944,5.834884 +L 4.0944,5.834884,3.9441,5.671014 +L 3.9441,5.671014,3.8005,5.490221 +L 3.8005,5.490221,3.6706,5.300936 +L 7.4851,-0.000003,7.0543,0.533989 +L 7.0543,0.533989,6.6266,1.067785 +L 6.6266,1.067785,6.1958,1.601777 +L 6.1958,3.432268,6.7986,4.805186 +L 6.7986,4.805186,7.0224,5.695005 +L 7.0224,5.695005,7.0543,6.864495 +L 7.0543,6.864495,5.2575,6.846239 +L 5.2575,6.846239,4.4905,6.717524 +L 4.4905,6.717524,4.0944,6.368723 +L 3.2398,4.233104,2.4692,5.042411 +L 2.4692,5.042411,2.0353,5.724557 +L 2.0353,5.724557,1.5656,6.864495 +L 1.5656,6.864495,1.2682,6.864495 +L 1.2682,6.864495,0.9846,6.864495 +L 0.9846,6.864495,0.7075,6.864495 +L 2.3855,6.864495,2.1085,7.299456 +L 2.1085,7.299456,2.0069,7.853194 +L 2.0069,7.853194,1.9894,9.000116 +L 4.5217,7.398335,4.8229,7.813638 +L 4.8229,7.813638,4.9353,8.228919 +L 4.9353,8.228919,4.9493,9.000116 + +[幕] 66 +L 4.1279,-0.000003,4.1279,0.713381 +L 4.1279,0.713381,4.1279,1.40969 +L 4.1279,1.40969,4.1279,2.097528 +L 4.1279,2.097528,3.5465,2.097528 +L 3.5465,2.097528,2.9791,2.097528 +L 2.9791,2.097528,2.4191,2.097528 +L 2.4191,2.097528,2.4191,1.590548 +L 2.4191,1.590548,2.4191,1.066406 +L 2.4191,1.066406,2.4191,0.533989 +L 4.9513,0.533989,5.2242,0.533989 +L 5.2242,0.533989,5.5044,0.533989 +L 5.5044,0.533989,5.8024,0.533989 +L 5.8024,0.533989,5.8024,1.066406 +L 5.8024,1.066406,5.8024,1.590548 +L 5.8024,1.590548,5.8024,2.097528 +L 5.8024,2.097528,5.3786,2.097528 +L 5.3786,2.097528,4.958,2.097528 +L 4.958,2.097528,4.5552,2.097528 +L 0.9235,2.097528,1.4138,2.553831 +L 1.4138,2.553831,1.9073,3.001488 +L 1.9073,3.001488,2.4191,3.432268 +L 2.4191,3.432268,1.8478,3.535437 +L 1.8478,3.535437,1.2878,3.621532 +L 1.2878,3.621532,0.7379,3.699221 +L 7.084,2.097528,5.634,3.258568 +L 5.634,3.258568,4.4396,3.580663 +L 4.4396,3.580663,2.8428,3.699221 +L 6.2329,3.699221,6.6602,3.699221 +L 6.6602,3.699221,7.084,3.699221 +L 7.084,3.699221,7.5113,3.699221 +L 3.2701,4.500056,2.8428,4.603269 +L 2.8428,4.603269,2.4191,4.689298 +L 2.4191,4.689298,1.9879,4.767052 +L 1.9879,4.767052,1.9879,5.480415 +L 1.9879,5.480415,1.9879,6.176658 +L 1.9879,6.176658,1.9879,6.864495 +L 1.9879,6.864495,2.2649,6.967687 +L 2.2649,6.967687,2.5483,7.053715 +L 2.5483,7.053715,2.8428,7.131426 +L 2.8428,7.131426,2.4821,7.695058 +L 2.4821,7.695058,1.9357,7.902534 +L 1.9357,7.902534,0.7379,7.932305 +L 3.6974,4.767052,4.531,4.767052 +L 4.531,4.767052,5.3786,4.767052 +L 5.3786,4.767052,6.2329,4.767052 +L 6.2329,4.767052,6.2329,5.137152 +L 6.2329,5.137152,6.2329,5.490221 +L 6.2329,5.490221,6.2329,5.834884 +L 6.2329,5.834884,4.9513,5.834884 +L 4.9513,5.834884,3.6799,5.834884 +L 3.6799,5.834884,2.4191,5.834884 +L 6.2329,6.635719,5.235,6.712029 +L 5.235,6.712029,4.2505,6.788251 +L 4.2505,6.788251,3.2701,6.864495 +L 5.3786,7.398335,5.0144,7.774192 +L 5.0144,7.774192,4.468,7.912539 +L 4.468,7.912539,3.2701,7.932305 +L 3.2701,7.932305,3.1227,8.302406 +L 3.1227,8.302406,2.9791,8.655496 +L 2.9791,8.655496,2.8428,9.000116 +L 5.8024,7.932305,5.655,8.302406 +L 5.655,8.302406,5.5044,8.655496 +L 5.5044,8.655496,5.3786,9.000116 +L 6.2329,7.932305,6.6602,7.932305 +L 6.6602,7.932305,7.084,7.932305 +L 7.084,7.932305,7.5113,7.932305 + +[密] 54 +L 1.5945,-0.000003,1.5945,0.713381 +L 1.5945,0.713381,1.5945,1.40969 +L 1.5945,1.40969,1.5945,2.097528 +L 2.0218,-0.000003,2.7223,-0.000003 +L 2.7223,-0.000003,3.4259,-0.000003 +L 3.4259,-0.000003,4.1267,-0.000003 +L 4.1267,-0.000003,4.1267,0.877164 +L 4.1267,0.877164,4.1267,1.754244 +L 4.1267,1.754244,4.1267,2.631367 +L 4.5537,-0.000003,5.2545,-0.000003 +L 5.2545,-0.000003,5.962,-0.000003 +L 5.962,-0.000003,6.6905,-0.000003 +L 6.6905,-0.000003,6.6905,0.713381 +L 6.6905,0.713381,6.6905,1.40969 +L 6.6905,1.40969,6.6905,2.097528 +L 0.7399,3.699221,1.668,3.718988 +L 1.668,3.718988,2.165,3.857356 +L 2.165,3.857356,2.6627,4.233104 +L 2.6627,4.233104,2.7258,4.956229 +L 2.7258,4.956229,2.7955,5.671014 +L 2.7955,5.671014,2.876,6.368723 +L 3.2721,3.966195,4.256,4.946488 +L 4.256,4.946488,5.2545,5.909771 +L 5.2545,5.909771,6.2594,6.864495 +L 3.7026,3.699221,4.5537,3.699221 +L 4.5537,3.699221,5.4083,3.699221 +L 5.4083,3.699221,6.2594,3.699221 +L 6.2594,3.699221,6.2594,4.06932 +L 6.2594,4.06932,6.2594,4.422433 +L 6.2594,4.422433,6.2594,4.767052 +L 1.1707,4.767052,1.2964,5.137152 +L 1.2964,5.137152,1.44,5.490221 +L 1.44,5.490221,1.5945,5.834884 +L 7.5133,5.033961,7.3662,5.300936 +L 7.3662,5.300936,7.2404,5.567866 +L 7.2404,5.567866,7.1178,5.834884 +L 4.1267,6.635719,3.9723,6.978916 +L 3.9723,6.978916,3.8322,7.32209 +L 3.8322,7.32209,3.7026,7.665396 +L 3.7026,7.665396,2.7012,7.768412 +L 2.7012,7.768412,1.7171,7.854638 +L 1.7171,7.854638,0.7399,7.932305 +L 0.7399,7.932305,0.7399,7.587686 +L 0.7399,7.587686,0.7399,7.234596 +L 0.7399,7.234596,0.7399,6.864495 +L 7.5133,6.864495,7.5133,7.234596 +L 7.5133,7.234596,7.5133,7.587686 +L 7.5133,7.587686,7.5133,7.932305 +L 7.5133,7.932305,6.382,7.932305 +L 6.382,7.932305,5.2545,7.932305 +L 5.2545,7.932305,4.1267,7.932305 +L 4.1267,7.932305,4.1267,8.302406 +L 4.1267,8.302406,4.1267,8.655496 +L 4.1267,8.655496,4.1267,9.000116 + +[盟] 63 +L 0.7695,-0.000003,1.0466,-0.000003 +L 1.0466,-0.000003,1.3303,-0.000003 +L 1.3303,-0.000003,1.628,-0.000003 +L 1.628,-0.000003,1.628,0.877164 +L 1.628,0.877164,1.628,1.754244 +L 1.628,1.754244,1.628,2.631367 +L 1.628,2.631367,3.3018,2.631367 +L 3.3018,2.631367,4.9904,2.631367 +L 4.9904,2.631367,6.6925,2.631367 +L 6.6925,2.631367,6.6925,1.754244 +L 6.6925,1.754244,6.6925,0.877164 +L 6.6925,0.877164,6.6925,-0.000003 +L 6.6925,-0.000003,7.1163,-0.000003 +L 7.1163,-0.000003,7.5436,-0.000003 +L 7.5436,-0.000003,7.9709,-0.000003 +L 2.0203,-0.000003,2.4507,-0.000003 +L 2.4507,-0.000003,2.8745,-0.000003 +L 2.8745,-0.000003,3.3018,-0.000003 +L 3.3018,-0.000003,3.3018,0.713381 +L 3.3018,0.713381,3.3018,1.40969 +L 3.3018,1.40969,3.3018,2.097528 +L 3.7291,-0.000003,4.1603,-0.000003 +L 4.1603,-0.000003,4.5841,-0.000003 +L 4.5841,-0.000003,5.0114,-0.000003 +L 5.0114,-0.000003,5.0114,0.713381 +L 5.0114,0.713381,5.0114,1.40969 +L 5.0114,1.40969,5.0114,2.097528 +L 5.4387,-0.000003,5.7115,-0.000003 +L 5.7115,-0.000003,5.9885,-0.000003 +L 5.9885,-0.000003,6.2652,-0.000003 +L 3.7291,4.233104,4.4962,5.601796 +L 4.4962,5.601796,4.6331,6.894223 +L 4.6331,6.894223,4.5841,8.466188 +L 4.5841,8.466188,5.4176,8.466188 +L 5.4176,8.466188,6.2652,8.466188 +L 6.2652,8.466188,7.1163,8.466188 +L 7.1163,8.466188,7.1163,7.055247 +L 7.1163,7.055247,7.1163,5.644133 +L 7.1163,5.644133,7.1163,4.233104 +L 7.1163,4.233104,6.8218,4.233104 +L 6.8218,4.233104,6.5349,4.233104 +L 6.5349,4.233104,6.2652,4.233104 +L 1.1968,5.300936,1.1968,6.367388 +L 1.1968,6.367388,1.1968,7.425282 +L 1.1968,7.425282,1.1968,8.466188 +L 1.1968,8.466188,1.7467,8.466188 +L 1.7467,8.466188,2.304,8.466188 +L 2.304,8.466188,2.8745,8.466188 +L 2.8745,8.466188,2.8745,7.425282 +L 2.8745,7.425282,2.8745,6.367388 +L 2.8745,6.367388,2.8745,5.300936 +L 2.8745,5.300936,2.304,5.300936 +L 2.304,5.300936,1.7467,5.300936 +L 1.7467,5.300936,1.1968,5.300936 +L 5.0114,6.368723,5.5613,6.368723 +L 5.5613,6.368723,6.1216,6.368723 +L 6.1216,6.368723,6.6925,6.368723 +L 1.628,6.864495,1.8977,6.864495 +L 1.8977,6.864495,2.1744,6.864495 +L 2.1744,6.864495,2.4507,6.864495 +L 5.0114,7.398335,5.5613,7.398335 +L 5.5613,7.398335,6.1216,7.398335 +L 6.1216,7.398335,6.6925,7.398335 + +[模] 66 +L 2.0499,-0.000003,1.9694,1.600355 +L 1.9694,1.600355,1.9028,3.192241 +L 1.9028,3.192241,1.8366,4.767052 +L 1.8366,4.767052,1.4724,4.06932 +L 1.4724,4.06932,1.1183,3.354601 +L 1.1183,3.354601,0.768,2.631367 +L 3.1217,-0.000003,3.8821,0.713381 +L 3.8821,0.713381,4.6558,1.40969 +L 4.6558,1.40969,5.4407,2.097528 +L 5.4407,2.097528,5.0585,2.473275 +L 5.0585,2.473275,4.4001,2.611644 +L 4.4001,2.611644,2.9084,2.631367 +L 7.5733,-0.000003,6.9923,0.533989 +L 6.9923,0.533989,6.4245,1.067785 +L 6.4245,1.067785,5.8645,1.601777 +L 5.8645,2.631367,5.5664,3.04667 +L 5.5664,3.04667,5.4582,3.461908 +L 5.4582,3.461908,5.4407,4.233104 +L 5.4407,4.233104,4.8698,4.233104 +L 4.8698,4.233104,4.3125,4.233104 +L 4.3125,4.233104,3.7595,4.233104 +L 3.7595,4.233104,3.7595,4.956229 +L 3.7595,4.956229,3.7595,5.671014 +L 3.7595,5.671014,3.7595,6.368723 +L 3.7595,6.368723,4.0358,6.368723 +L 4.0358,6.368723,4.3125,6.368723 +L 4.3125,6.368723,4.5822,6.368723 +L 4.5822,6.368723,4.5686,7.113104 +L 4.5686,7.113104,4.467,7.518359 +L 4.467,7.518359,4.1868,7.932305 +L 4.1868,7.932305,3.8922,7.932305 +L 3.8922,7.932305,3.6085,7.932305 +L 3.6085,7.932305,3.3357,7.932305 +L 6.2918,2.631367,6.8483,2.631367 +L 6.8483,2.631367,7.4231,2.631367 +L 7.4231,2.631367,8.0006,2.631367 +L 5.8645,4.233104,6.2918,4.233104 +L 6.2918,4.233104,6.7222,4.233104 +L 6.7222,4.233104,7.1495,4.233104 +L 7.1495,4.233104,7.1495,4.603269 +L 7.1495,4.603269,7.1495,4.956229 +L 7.1495,4.956229,7.1495,5.300936 +L 7.1495,5.300936,6.1482,5.300936 +L 6.1482,5.300936,5.1671,5.300936 +L 5.1671,5.300936,4.1868,5.300936 +L 2.9084,4.767052,2.4317,5.200656 +L 2.4317,5.200656,2.0993,5.744433 +L 2.0993,5.744433,1.6261,6.864495 +L 1.6261,6.864495,1.3288,6.864495 +L 1.3288,6.864495,1.0486,6.864495 +L 1.0486,6.864495,0.768,6.864495 +L 7.1495,6.101749,6.4245,6.204962 +L 6.4245,6.204962,5.7135,6.291056 +L 5.7135,6.291056,5.0134,6.368723 +L 2.4772,6.864495,2.1799,7.299456 +L 2.1799,7.299456,2.0675,7.853194 +L 2.0675,7.853194,2.0499,9.000116 +L 6.2918,7.131426,5.7555,7.734636 +L 5.7555,7.734636,5.1251,8.219112 +L 5.1251,8.219112,4.5822,9.000116 +L 6.7222,7.932305,6.5685,8.302406 +L 6.5685,8.302406,6.4245,8.655496 +L 6.4245,8.655496,6.2918,9.000116 +L 7.1495,7.932305,7.4231,7.932305 +L 7.4231,7.932305,7.7032,7.932305 +L 7.7032,7.932305,8.0006,7.932305 + +[訳] 27 +L 3.7615,-0.000003,4.5772,2.508584 +L 4.5772,2.508584,4.6931,5.779786 +L 4.6931,5.779786,4.6157,8.466188 +L 4.6157,8.466188,5.5929,8.466188 +L 5.5929,8.466188,6.5771,8.466188 +L 6.5771,8.466188,7.5718,8.466188 +L 7.5718,8.466188,7.5718,7.425282 +L 7.5718,7.425282,7.5718,6.367388 +L 7.5718,6.367388,7.5718,5.300936 +L 7.5718,5.300936,7.1515,5.300936 +L 7.1515,5.300936,6.7316,5.300936 +L 6.7316,5.300936,6.3214,5.300936 +L 6.3214,5.300936,6.3848,4.036857 +L 6.3848,4.036857,6.8223,2.662495 +L 6.8223,2.662495,8.0026,-0.000003 +L 5.0395,5.300936,5.3166,5.300936 +L 5.3166,5.300936,5.6003,5.300936 +L 5.6003,5.300936,5.8976,5.300936 +L 2.4831,6.864495,3.3342,6.864495 +L 0.8019,6.902519,3.3342,6.902519 +L 1.2257,8.504343,2.9069,8.504343 +L 1.2257,5.300957,2.9069,5.300957 +L 1.2257,4.233038,2.9069,4.233038 +L 1.2257,2.669522,2.9069,2.669522 +L 1.2257,-0.000003,1.2257,2.669522 +L 2.9069,-0.000003,1.2257,-0.000003 +L 2.9069,2.669522,2.9069,-0.000003 + +[優] 69 +L 1.655,-0.000003,1.5745,1.781125 +L 1.5745,1.781125,1.5006,3.545332 +L 1.5006,3.545332,1.4445,5.300936 +L 1.4445,5.300936,1.2312,5.137152 +L 1.2312,5.137152,1.0246,4.956229 +L 1.0246,4.956229,0.8316,4.767052 +L 2.5093,-0.000003,3.4588,0.039553 +L 3.4588,0.039553,4.1242,0.316421 +L 4.1242,0.316421,5.0734,1.067785 +L 5.0734,1.067785,4.7056,1.411003 +L 4.7056,1.411003,4.3484,1.754244 +L 4.3484,1.754244,4.0052,2.097528 +L 4.0052,2.097528,3.6409,1.943529 +L 3.6409,1.943529,3.2833,1.781125 +L 3.2833,1.781125,2.9401,1.601777 +L 6.7511,-0.000003,6.3234,0.370184 +L 6.3234,0.370184,5.8961,0.723188 +L 5.8961,0.723188,5.4723,1.067785 +L 5.4723,1.067785,5.7459,1.514238 +L 5.7459,1.514238,6.0261,1.943529 +L 6.0261,1.943529,6.3234,2.364414 +L 6.3234,2.364414,5.6198,2.553831 +L 5.6198,2.553831,4.9189,2.734624 +L 4.9189,2.734624,4.2188,2.898363 +L 4.2188,2.898363,4.4079,3.639898 +L 4.4079,3.639898,4.313,4.38152 +L 4.313,4.38152,4.2188,5.300936 +L 4.2188,5.300936,3.6409,5.300936 +L 3.6409,5.300936,3.07,5.300936 +L 3.07,5.300936,2.5093,5.300936 +L 7.1784,-0.000003,7.4547,-0.000003 +L 7.4547,-0.000003,7.7349,-0.000003 +L 7.7349,-0.000003,8.0295,-0.000003 +L 2.9401,3.165359,3.07,3.535437 +L 3.07,3.535437,3.2101,3.888572 +L 3.2101,3.888572,3.3639,4.233104 +L 5.0734,3.699221,5.4797,3.699221 +L 5.4797,3.699221,5.9,3.699221 +L 5.9,3.699221,6.3234,3.699221 +L 4.6461,5.300936,5.3497,5.300936 +L 5.3497,5.300936,6.0506,5.300936 +L 6.0506,5.300936,6.7511,5.300936 +L 6.7511,5.300936,6.7511,5.671014 +L 6.7511,5.671014,6.7511,6.02406 +L 6.7511,6.02406,6.7511,6.368723 +L 6.7511,6.368723,5.7525,6.204962 +L 5.7525,6.204962,4.7687,6.02406 +L 4.7687,6.02406,3.7912,5.834884 +L 7.1784,5.300936,7.4547,5.300936 +L 7.4547,5.300936,7.7349,5.300936 +L 7.7349,5.300936,8.0295,5.300936 +L 1.655,5.834884,1.7667,7.113104 +L 1.7667,7.113104,1.9699,8.052308 +L 1.9699,8.052308,2.0823,9.000116 +L 3.7912,7.131426,4.2188,7.234596 +L 4.2188,7.234596,4.6461,7.320668 +L 4.6461,7.320668,5.0734,7.398335 +L 5.0734,7.398335,5.0734,7.768412 +L 5.0734,7.768412,5.0734,8.121526 +L 5.0734,8.121526,5.0734,8.466188 +L 5.0734,8.466188,4.3484,8.466188 +L 4.3484,8.466188,3.6409,8.466188 +L 3.6409,8.466188,2.9401,8.466188 +L 6.7511,7.131426,6.3234,7.234596 +L 6.3234,7.234596,5.8961,7.320668 +L 5.8961,7.320668,5.4723,7.398335 +L 5.4723,8.466188,6.1728,8.466188 +L 6.1728,8.466188,6.8807,8.466188 +L 6.8807,8.466188,7.6057,8.466188 + +[郵] 51 +L 5.9297,-0.000003,5.9297,2.822163 +L 5.9297,2.822163,5.9297,5.644133 +L 5.9297,5.644133,5.9297,8.466188 +L 5.9297,8.466188,6.6305,8.466188 +L 6.6305,8.466188,7.3306,8.466188 +L 7.3306,8.466188,8.0346,8.466188 +L 8.0346,8.466188,7.7579,7.511421 +L 7.7579,7.511421,7.4816,6.548137 +L 7.4816,6.548137,7.208,5.567866 +L 7.208,5.567866,7.6847,4.447848 +L 7.6847,4.447848,7.9124,3.39547 +L 7.9124,3.39547,7.8175,1.868686 +L 7.8175,1.868686,7.4641,1.791019 +L 7.4641,1.791019,7.1173,1.704881 +L 7.1173,1.704881,6.7807,1.601777 +L 0.8301,0.533989,1.5376,0.533989 +L 1.5376,0.533989,2.2451,0.533989 +L 2.2451,0.533989,2.9669,0.533989 +L 2.9669,0.533989,2.7389,2.247279 +L 2.7389,2.247279,2.0353,2.672411 +L 2.0353,2.672411,0.8301,2.631367 +L 3.3977,1.067785,3.8005,1.067785 +L 3.8005,1.067785,4.2208,1.067785 +L 4.2208,1.067785,4.6446,1.067785 +L 3.3977,2.631367,3.072,3.303684 +L 3.072,3.303684,2.795,4.09467 +L 2.795,4.09467,2.326,4.767052 +L 2.326,4.767052,1.8777,4.351815 +L 1.8777,4.351815,1.7095,3.936534 +L 1.7095,3.936534,1.6885,3.165359 +L 4.0037,2.631367,4.0667,3.165359 +L 4.0667,3.165359,4.1364,3.699221 +L 4.1364,3.699221,4.2208,4.233104 +L 4.2208,4.233104,3.1802,5.525531 +L 3.1802,5.525531,2.6447,6.487259 +L 2.6447,6.487259,1.6885,6.864495 +L 1.6885,6.864495,1.6885,6.357516 +L 1.6885,6.357516,1.6885,5.833439 +L 1.6885,5.833439,1.6885,5.300936 +L 1.6885,5.300936,1.3908,5.137152 +L 1.3908,5.137152,1.1071,4.956229 +L 1.1071,4.956229,0.8301,4.767052 +L 4.6446,4.767052,4.3469,5.200656 +L 4.3469,5.200656,4.238,5.744433 +L 4.238,5.744433,4.2208,6.864495 +L 4.2208,6.864495,3.4639,7.082129 +L 3.4639,7.082129,2.6027,7.536791 +L 2.6027,7.536791,1.2574,7.932305 +L 3.3977,8.466188,3.8005,8.466188 +L 3.8005,8.466188,4.2208,8.466188 +L 4.2208,8.466188,4.6446,8.466188 + +[幼] 33 +L 4.2505,-0.000003,4.3801,0.266993 +L 4.3801,0.266993,4.524,0.533989 +L 4.524,0.533989,4.6778,0.80092 +L 4.6778,0.80092,4.3801,1.247242 +L 4.3801,1.247242,4.0964,1.676664 +L 4.0964,1.676664,3.82,2.097528 +L 3.82,2.097528,2.8849,1.457695 +L 2.8849,1.457695,1.7812,1.148276 +L 1.7812,1.148276,0.864,1.067785 +L 5.96,-0.000003,6.2297,-0.000003 +L 6.2297,-0.000003,6.5064,-0.000003 +L 6.5064,-0.000003,6.7827,-0.000003 +L 6.7827,-0.000003,7.5431,2.134238 +L 7.5431,2.134238,7.6867,4.107519 +L 7.6867,4.107519,7.6338,6.368723 +L 7.6338,6.368723,5.9527,5.692094 +L 5.9527,5.692094,5.6238,3.956344 +L 5.6238,3.956344,5.1016,1.601777 +L 1.7151,1.868686,2.4015,3.874409 +L 2.4015,3.874409,2.2506,5.405528 +L 2.2506,5.405528,0.864,6.368723 +L 2.9689,4.767052,3.1017,5.480415 +L 3.1017,5.480415,3.2418,6.176658 +L 3.2418,6.176658,3.3962,6.864495 +L 4.6778,6.368723,5.2907,6.387089 +L 5.2907,6.387089,5.6238,6.515629 +L 5.6238,6.515629,5.96,6.864495 +L 5.96,6.864495,5.96,7.587686 +L 5.96,7.587686,5.96,8.302406 +L 5.96,8.302406,5.96,9.000116 +L 2.1455,6.864495,2.2681,7.587686 +L 2.2681,7.587686,2.398,8.302406 +L 2.398,8.302406,2.5416,9.000116 + +[欲] 45 +L 1.6852,-0.000003,1.6715,2.247279 +L 1.6715,2.247279,1.5591,3.206207 +L 1.5591,3.206207,1.2579,3.699221 +L 1.2579,3.699221,1.1178,3.535437 +L 1.1178,3.535437,0.985,3.354601 +L 0.985,3.354601,0.8625,3.165359 +L 2.1163,-0.000003,2.6729,-0.000003 +L 2.6729,-0.000003,3.2438,-0.000003 +L 3.2438,-0.000003,3.8252,-0.000003 +L 3.8252,-0.000003,3.8252,1.066406 +L 3.8252,1.066406,3.8252,2.124321 +L 3.8252,2.124321,3.8252,3.165359 +L 3.8252,3.165359,3.2438,3.165359 +L 3.2438,3.165359,2.6729,3.165359 +L 2.6729,3.165359,2.1163,3.165359 +L 4.6763,-0.000003,5.8146,2.3221 +L 5.8146,2.3221,6.2737,4.415407 +L 6.2737,4.415407,6.3575,6.864495 +L 6.3575,6.864495,5.4367,6.673831 +L 5.4367,6.673831,5.002,6.406834 +L 5.002,6.406834,4.6763,5.834884 +L 8.0631,-0.000003,7.1599,1.515661 +L 7.1599,1.515661,6.8268,2.336198 +L 6.8268,2.336198,6.7812,3.165359 +L 1.6852,4.233104,2.0319,4.956229 +L 2.0319,4.956229,2.3892,5.671014 +L 2.3892,5.671014,2.7534,6.368723 +L 2.7534,6.368723,3.2438,5.834884 +L 3.2438,5.834884,3.7415,5.300936 +L 3.7415,5.300936,4.2493,4.767052 +L 7.6358,5.834884,7.7658,6.101749 +L 7.7658,6.101749,7.9094,6.368723 +L 7.9094,6.368723,8.0631,6.635719 +L 8.0631,6.635719,7.6358,6.712029 +L 7.6358,6.712029,7.2085,6.788251 +L 7.2085,6.788251,6.7812,6.864495 +L 0.8625,6.864495,1.1353,7.398335 +L 1.1353,7.398335,1.4155,7.932305 +L 1.4155,7.932305,1.6852,8.466188 +L 4.2493,7.398335,3.9513,7.768412 +L 3.9513,7.768412,3.6711,8.121526 +L 3.6711,8.121526,3.3947,8.466188 +L 5.4997,7.398335,5.4997,7.932305 +L 5.4997,7.932305,5.4997,8.466188 +L 5.4997,8.466188,5.4997,9.000116 + +[翌] 48 +L 0.8645,-0.000003,1.5646,-0.000003 +L 1.5646,-0.000003,2.2759,-0.000003 +L 2.2759,-0.000003,3.0006,-0.000003 +L 3.0006,-0.000003,2.8889,1.295269 +L 2.8889,1.295269,2.6857,2.226046 +L 2.6857,2.226046,2.5733,3.165359 +L 2.5733,3.165359,2.1428,3.165359 +L 2.1428,3.165359,1.7156,3.165359 +L 1.7156,3.165359,1.2918,3.165359 +L 3.3967,-0.000003,3.9498,-0.000003 +L 3.9498,-0.000003,4.5245,-0.000003 +L 4.5245,-0.000003,5.1056,-0.000003 +L 5.1056,-0.000003,5.218,0.947804 +L 5.218,0.947804,5.4176,1.887118 +L 5.4176,1.887118,5.5294,3.165359 +L 5.5294,3.165359,4.6748,3.165359 +L 4.6748,3.165359,3.8345,3.165359 +L 3.8345,3.165359,3.0006,3.165359 +L 5.5294,-0.000003,6.2302,-0.000003 +L 6.2302,-0.000003,6.9304,-0.000003 +L 6.9304,-0.000003,7.6378,-0.000003 +L 5.9567,3.165359,6.384,3.165359 +L 6.384,3.165359,6.8151,3.165359 +L 6.8151,3.165359,7.2389,3.165359 +L 3.3967,4.767052,3.3967,6.014188 +L 3.3967,6.014188,3.3967,7.244467 +L 3.3967,7.244467,3.3967,8.466188 +L 3.3967,8.466188,2.6959,8.388653 +L 2.6959,8.388653,1.9957,8.302406 +L 1.9957,8.302406,1.2918,8.199302 +L 1.2918,8.199302,1.4245,7.932305 +L 1.4245,7.932305,1.5646,7.665396 +L 1.5646,7.665396,1.7156,7.398335 +L 7.2389,4.767052,7.2389,6.014188 +L 7.2389,6.014188,7.2389,7.244467 +L 7.2389,7.244467,7.2389,8.466188 +L 7.2389,8.466188,6.5171,8.388653 +L 6.5171,8.388653,5.8064,8.302406 +L 5.8064,8.302406,5.1056,8.199302 +L 5.1056,8.199302,5.2355,7.932305 +L 5.2355,7.932305,5.3791,7.665396 +L 5.3791,7.665396,5.5294,7.398335 +L 0.8645,5.834884,1.4245,6.02406 +L 1.4245,6.02406,1.9957,6.204962 +L 1.9957,6.204962,2.5733,6.368723 +L 4.6748,5.834884,5.2355,6.02406 +L 5.2355,6.02406,5.8064,6.204962 +L 5.8064,6.204962,6.384,6.368723 + +[乱] 39 +L 1.2903,-0.000003,1.2903,1.066406 +L 1.2903,1.066406,1.2903,2.124321 +L 1.2903,2.124321,1.2903,3.165359 +L 1.2903,3.165359,1.693,3.165359 +L 1.693,3.165359,2.113,3.165359 +L 2.113,3.165359,2.5406,3.165359 +L 2.5406,3.165359,2.4562,5.060908 +L 2.4562,5.060908,2.0044,5.744433 +L 2.0044,5.744433,0.8595,5.834884 +L 1.7176,-0.000003,2.418,-0.000003 +L 2.418,-0.000003,3.1217,-0.000003 +L 3.1217,-0.000003,3.8225,-0.000003 +L 3.8225,-0.000003,3.8225,1.066406 +L 3.8225,1.066406,3.8225,2.124321 +L 3.8225,2.124321,3.8225,3.165359 +L 3.8225,3.165359,3.5245,3.165359 +L 3.5245,3.165359,3.2408,3.165359 +L 3.2408,3.165359,2.9644,3.165359 +L 5.9275,-0.000003,5.6505,0.689389 +L 5.6505,0.689389,5.5454,3.022634 +L 5.5454,3.022634,5.5314,9.000116 +L 6.3548,-0.000003,6.9117,-0.000003 +L 6.9117,-0.000003,7.4861,-0.000003 +L 7.4861,-0.000003,8.0636,-0.000003 +L 8.0636,-0.000003,8.0636,0.533989 +L 8.0636,0.533989,8.0636,1.067785 +L 8.0636,1.067785,8.0636,1.601777 +L 2.9644,5.834884,2.6667,6.268422 +L 2.6667,6.268422,2.5578,6.812266 +L 2.5578,6.812266,2.5406,7.932305 +L 2.5406,7.932305,1.9694,7.932305 +L 1.9694,7.932305,1.4128,7.932305 +L 1.4128,7.932305,0.8595,7.932305 +L 3.3952,5.834884,3.6716,5.834884 +L 3.6716,5.834884,3.9553,5.834884 +L 3.9553,5.834884,4.2495,5.834884 +L 2.9644,7.932305,3.2972,8.308075 +L 3.2972,8.308075,3.6334,8.446422 +L 3.6334,8.446422,4.2495,8.466188 + +[卵] 36 +L 1.5056,-0.000003,1.9927,0.637071 +L 1.9927,0.637071,2.4897,1.257136 +L 2.4897,1.257136,2.9976,1.868686 +L 2.9976,1.868686,2.7878,2.134238 +L 2.7878,2.134238,2.5703,2.391318 +L 2.5703,2.391318,2.357,2.631367 +L 2.357,2.631367,2.0593,2.467627 +L 2.0593,2.467627,1.7791,2.286748 +L 1.7791,2.286748,1.5056,2.097528 +L 1.5056,2.097528,1.4215,4.231637 +L 1.4215,4.231637,1.3518,6.357516 +L 1.3518,6.357516,1.2887,8.466188 +L 1.2887,8.466188,2.5216,8.486065 +L 2.5216,8.486065,3.1906,8.624346 +L 3.1906,8.624346,3.8522,9.000116 +L 5.1026,-0.000003,5.1026,2.822163 +L 5.1026,2.822163,5.1026,5.644133 +L 5.1026,5.644133,5.1026,8.466188 +L 5.1026,8.466188,5.9537,8.466188 +L 5.9537,8.466188,6.8121,8.466188 +L 6.8121,8.466188,7.6632,8.466188 +L 7.6632,8.466188,7.6632,6.357516 +L 7.6632,6.357516,7.6632,4.231637 +L 7.6632,4.231637,7.6632,2.097528 +L 7.6632,2.097528,7.2429,2.097528 +L 7.2429,2.097528,6.8121,2.097528 +L 6.8121,2.097528,6.3845,2.097528 +L 3.4284,3.699221,3.4284,4.765608 +L 3.4284,4.765608,3.4284,5.823523 +L 3.4284,5.823523,3.4284,6.864495 +L 6.3845,5.033961,6.2339,5.300936 +L 6.2339,5.300936,6.0871,5.567866 +L 6.0871,5.567866,5.9537,5.834884 +L 2.5703,5.567866,2.4235,5.834884 +L 2.4235,5.834884,2.2726,6.101749 +L 2.2726,6.101749,2.1433,6.368723 + + +# kan_21 ------------------------------------------------------- +# 覧裏律臨朗穀豚疲遅彼奥忙渡寝婚離涼違払絡泊到押脱驚狭眠較嫁殻恐挟巧攻傘煮襲刃怒普符膚齢亜哀握扱依偉 + +[覧] 69 +L 0.0034,0.000019,1.0573,0.405406 +L 1.0573,0.405406,1.6037,0.751426 +L 1.6037,0.751426,2.1084,1.334694 +L 2.1084,1.334694,1.8142,1.437906 +L 1.8142,1.437906,1.5305,1.524045 +L 1.5305,1.524045,1.2534,1.601712 +L 1.2534,1.601712,1.2534,2.668077 +L 1.2534,2.668077,1.2534,3.725992 +L 1.2534,3.725992,1.2534,4.766987 +L 1.2534,4.766987,0.9767,4.766987 +L 0.9767,4.766987,0.7035,4.766987 +L 0.7035,4.766987,0.4304,4.766987 +L 0.4304,4.766987,0.4304,6.014209 +L 0.4304,6.014209,0.4304,7.244358 +L 0.4304,7.244358,0.4304,8.466144 +L 0.4304,8.466144,1.4075,8.466144 +L 1.4075,8.466144,2.3921,8.466144 +L 2.3921,8.466144,3.3938,8.466144 +L 5.0676,0.000019,4.7874,0.415322 +L 4.7874,0.415322,4.6858,0.830603 +L 4.6858,0.830603,4.6718,1.601712 +L 4.6718,1.601712,3.9468,1.601712 +L 3.9468,1.601712,3.2358,1.601712 +L 3.2358,1.601712,2.5353,1.601712 +L 5.4988,0.000019,6.0518,0.000019 +L 6.0518,0.000019,6.6262,0.000019 +L 6.6262,0.000019,7.2041,0.000019 +L 7.2041,0.000019,7.2041,0.37014 +L 7.2041,0.37014,7.2041,0.723209 +L 7.2041,0.723209,7.2041,1.067807 +L 5.0676,1.601712,5.3443,1.601712 +L 5.3443,1.601712,5.6245,1.601712 +L 5.6245,1.601712,5.9187,1.601712 +L 5.9187,1.601712,5.9187,1.97179 +L 5.9187,1.97179,5.9187,2.324815 +L 5.9187,2.324815,5.9187,2.669544 +L 5.9187,2.669544,4.4971,2.669544 +L 4.4971,2.669544,3.0891,2.669544 +L 3.0891,2.669544,1.6846,2.669544 +L 5.9187,3.432246,4.4971,3.535459 +L 4.4971,3.535459,3.0891,3.621466 +L 3.0891,3.621466,1.6846,3.699133 +L 5.9187,4.500056,4.4971,4.603072 +L 4.4971,4.603072,3.0891,4.689298 +L 3.0891,4.689298,1.6846,4.766987 +L 2.1084,5.300848,2.1084,5.670926 +L 2.1084,5.670926,2.1084,6.024016 +L 2.1084,6.024016,2.1084,6.368679 +L 2.1084,6.368679,1.6846,6.368679 +L 1.6846,6.368679,1.2639,6.368679 +L 1.2639,6.368679,0.8615,6.368679 +L 2.5353,6.368679,2.812,6.368679 +L 2.812,6.368679,3.0922,6.368679 +L 3.0922,6.368679,3.3938,6.368679 +L 3.3938,6.368679,3.3938,6.738823 +L 3.3938,6.738823,3.3938,7.091848 +L 3.3938,7.091848,3.3938,7.436446 +L 3.3938,7.436446,2.5353,7.436446 +L 2.5353,7.436446,1.6916,7.436446 +L 1.6916,7.436446,0.8615,7.436446 +L 4.6718,6.368679,5.3723,6.368679 +L 5.3723,6.368679,6.0728,6.368679 +L 6.0728,6.368679,6.7768,6.368679 +L 3.8176,6.902606,4.5527,7.666776 +L 4.5527,7.666776,4.8785,8.210553 +L 4.8785,8.210553,5.0676,8.999962 +L 5.4988,7.932218,6.0518,7.932218 +L 6.0518,7.932218,6.6262,7.932218 +L 6.6262,7.932218,7.2041,7.932218 + +[裏] 51 +L 1.2835,0.000019,1.5605,0.000019 +L 1.5605,0.000019,1.8442,0.000019 +L 1.8442,0.000019,2.1416,0.000019 +L 2.1416,0.000019,2.1416,0.533946 +L 2.1416,0.533946,2.1416,1.067807 +L 2.1416,1.067807,2.1416,1.601712 +L 2.1416,1.601712,1.3955,1.463256 +L 1.3955,1.463256,0.7441,1.206307 +L 0.7441,1.206307,0.0019,1.067807 +L 6.376,0.000019,4.8108,1.884119 +L 4.8108,1.884119,3.6021,2.76851 +L 3.6021,2.76851,2.1416,2.135639 +L 2.5653,0.533946,2.9716,0.533946 +L 2.9716,0.533946,3.3923,0.533946 +L 3.3923,0.533946,3.8157,0.533946 +L 5.5249,2.135639,5.658,2.402504 +L 5.658,2.402504,5.802,2.669544 +L 5.802,2.669544,5.9557,2.936474 +L 5.9557,2.936474,5.3743,3.01274 +L 5.3743,3.01274,4.8003,3.089006 +L 4.8003,3.089006,4.2465,3.16525 +L 0.0019,3.16525,0.8562,3.16525 +L 0.8562,3.16525,1.7107,3.16525 +L 1.7107,3.16525,2.5653,3.16525 +L 3.4199,3.699133,3.0557,4.074837 +L 3.0557,4.074837,2.5027,4.213228 +L 2.5027,4.213228,1.2835,4.233082 +L 3.8157,4.233082,2.9436,5.137043 +L 2.9436,5.137043,2.2571,5.33758 +L 2.2571,5.33758,1.2835,5.300848 +L 1.2835,5.300848,1.2835,6.024016 +L 1.2835,6.024016,1.2835,6.738823 +L 1.2835,6.738823,1.2835,7.436446 +L 1.2835,7.436446,2.6879,7.436446 +L 2.6879,7.436446,4.0994,7.436446 +L 4.0994,7.436446,5.5249,7.436446 +L 5.5249,7.436446,5.5249,6.738823 +L 5.5249,6.738823,5.5249,6.024016 +L 5.5249,6.024016,5.5249,5.300848 +L 5.5249,5.300848,3.9663,5.577782 +L 3.9663,5.577782,2.9265,6.091876 +L 2.9265,6.091876,1.7107,6.368679 +L 4.2465,4.233082,4.6668,4.233082 +L 4.6668,4.233082,5.0976,4.233082 +L 5.0976,4.233082,5.5249,4.233082 +L 4.2465,6.368679,4.5197,6.368679 +L 4.5197,6.368679,4.8003,6.368679 +L 4.8003,6.368679,5.0976,6.368679 +L 0.0019,8.466144,2.2641,8.466144 +L 2.2641,8.466144,4.5271,8.466144 +L 4.5271,8.466144,6.8068,8.466144 + +[律] 63 +L 0.8897,0.000019,0.8091,1.411047 +L 0.8091,1.411047,0.7356,2.822054 +L 0.7356,2.822054,0.676,4.233082 +L 0.676,4.233082,0.4592,4.069233 +L 0.4592,4.069233,0.2487,3.888419 +L 0.2487,3.888419,0.0351,3.699133 +L 4.7038,0.000019,4.2944,1.500009 +L 4.2944,1.500009,3.3169,1.728807 +L 3.3169,1.728807,2.14,1.601712 +L 5.1245,1.601712,4.8334,2.134194 +L 4.8334,2.134194,4.5497,2.65827 +L 4.5497,2.65827,4.2734,3.16525 +L 4.2734,3.16525,3.6951,3.16525 +L 3.6951,3.16525,3.1242,3.16525 +L 3.1242,3.16525,2.5673,3.16525 +L 5.5549,1.601712,6.1052,1.601712 +L 6.1052,1.601712,6.6652,1.601712 +L 6.6652,1.601712,7.2361,1.601712 +L 5.1245,3.16525,4.8334,3.699133 +L 4.8334,3.699133,4.5497,4.233082 +L 4.5497,4.233082,4.2734,4.766987 +L 4.2734,4.766987,3.8496,4.766987 +L 3.8496,4.766987,3.4184,4.766987 +L 3.4184,4.766987,2.9946,4.766987 +L 5.5549,3.16525,5.9651,3.16525 +L 5.9651,3.16525,6.3815,3.16525 +L 6.3815,3.16525,6.8057,3.16525 +L 0.8897,4.766987,1.1629,5.490068 +L 1.1629,5.490068,1.4431,6.20483 +L 1.4431,6.20483,1.7408,6.902606 +L 5.1245,4.766987,4.8334,5.300848 +L 4.8334,5.300848,4.5497,5.834818 +L 4.5497,5.834818,4.2734,6.368679 +L 4.2734,6.368679,3.6951,6.368679 +L 3.6951,6.368679,3.1242,6.368679 +L 3.1242,6.368679,2.5673,6.368679 +L 5.5549,4.766987,5.832,4.766987 +L 5.832,4.766987,6.1052,4.766987 +L 6.1052,4.766987,6.3815,4.766987 +L 6.3815,4.766987,6.364,5.538139 +L 6.364,5.538139,6.2593,5.953486 +L 6.2593,5.953486,5.9822,6.368679 +L 5.9822,6.368679,5.6845,6.368679 +L 5.6845,6.368679,5.4043,6.368679 +L 5.4043,6.368679,5.1245,6.368679 +L 5.1245,6.368679,4.8334,6.901162 +L 4.8334,6.901162,4.5497,7.42526 +L 4.5497,7.42526,4.2734,7.932218 +L 4.2734,7.932218,3.8496,7.932218 +L 3.8496,7.932218,3.4184,7.932218 +L 3.4184,7.932218,2.9946,7.932218 +L 6.8057,6.368679,6.5076,6.782516 +L 6.5076,6.782516,6.3955,7.187947 +L 6.3955,7.187947,6.3815,7.932218 +L 6.3815,7.932218,5.9546,7.932218 +L 5.9546,7.932218,5.5339,7.932218 +L 5.5339,7.932218,5.1245,7.932218 +L 5.1245,7.932218,4.977,8.302273 +L 4.977,8.302273,4.8334,8.655387 +L 4.8334,8.655387,4.7038,8.999962 +L 0.0351,6.902606,0.4592,7.615903 +L 0.4592,7.615903,0.8897,8.31219 +L 0.8897,8.31219,1.3135,8.999962 + +[臨] 72 +L 3.452,0.000019,3.452,1.066428 +L 3.452,1.066428,3.452,2.124299 +L 3.452,2.124299,3.452,3.16525 +L 3.452,3.16525,3.8586,3.16525 +L 3.8586,3.16525,4.2785,3.16525 +L 4.2785,3.16525,4.6992,3.16525 +L 4.6992,3.16525,4.6992,2.124299 +L 4.6992,2.124299,4.6992,1.066428 +L 4.6992,1.066428,4.6992,0.000019 +L 4.6992,0.000019,4.2785,0.000019 +L 4.2785,0.000019,3.8586,0.000019 +L 3.8586,0.000019,3.452,0.000019 +L 5.5569,0.000019,5.5569,1.066428 +L 5.5569,1.066428,5.5569,2.124299 +L 5.5569,2.124299,5.5569,3.16525 +L 5.5569,3.16525,5.9846,3.16525 +L 5.9846,3.16525,6.4084,3.16525 +L 6.4084,3.16525,6.8388,3.16525 +L 6.8388,3.16525,6.8388,2.124299 +L 6.8388,2.124299,6.8388,1.066428 +L 6.8388,1.066428,6.8388,0.000019 +L 6.8388,0.000019,6.4084,0.000019 +L 6.4084,0.000019,5.9846,0.000019 +L 5.9846,0.000019,5.5569,0.000019 +L 0.0616,1.067807,0.0616,3.545244 +L 0.0616,3.545244,0.0616,6.014209 +L 0.0616,6.014209,0.0616,8.466144 +L 0.0616,8.466144,0.8987,8.466144 +L 0.8987,8.466144,1.7431,8.466144 +L 1.7431,8.466144,2.5974,8.466144 +L 0.4924,1.067807,0.7624,1.067807 +L 0.7624,1.067807,1.0423,1.067807 +L 1.0423,1.067807,1.3155,1.067807 +L 1.3155,1.067807,1.3155,1.944908 +L 1.3155,1.944908,1.3155,2.822054 +L 1.3155,2.822054,1.3155,3.699133 +L 1.3155,3.699133,1.0423,3.699133 +L 1.0423,3.699133,0.7624,3.699133 +L 0.7624,3.699133,0.4924,3.699133 +L 1.7431,1.067807,2.0163,1.067807 +L 2.0163,1.067807,2.3032,1.067807 +L 2.3032,1.067807,2.5974,1.067807 +L 1.7431,3.699133,2.0163,3.699133 +L 2.0163,3.699133,2.3032,3.699133 +L 2.3032,3.699133,2.5974,3.699133 +L 2.5974,3.699133,2.5974,4.422324 +L 2.5974,4.422324,2.5974,5.137043 +L 2.5974,5.137043,2.5974,5.834818 +L 2.5974,5.834818,1.8972,5.834818 +L 1.8972,5.834818,1.1929,5.834818 +L 1.1929,5.834818,0.4924,5.834818 +L 3.8796,4.766987,3.8796,5.300848 +L 3.8796,5.300848,3.8796,5.834818 +L 3.8796,5.834818,3.8796,6.368679 +L 3.8796,6.368679,4.7128,6.368679 +L 4.7128,6.368679,5.5569,6.368679 +L 5.5569,6.368679,6.4084,6.368679 +L 6.4084,6.368679,6.4084,5.834818 +L 6.4084,5.834818,6.4084,5.300848 +L 6.4084,5.300848,6.4084,4.766987 +L 6.4084,4.766987,5.5569,4.766987 +L 5.5569,4.766987,4.7128,4.766987 +L 4.7128,4.766987,3.8796,4.766987 +L 1.3155,6.368679,1.3155,6.901162 +L 1.3155,6.901162,1.3155,7.42526 +L 1.3155,7.42526,1.3155,7.932218 +L 2.5974,6.368679,3.3574,7.508465 +L 3.3574,7.508465,3.6901,8.190742 +L 3.6901,8.190742,3.8796,8.999962 +L 4.3066,7.932218,5.2837,7.932218 +L 5.2837,7.932218,6.2683,7.932218 +L 6.2683,7.932218,7.2626,7.932218 + +[朗] 51 +L 0.4909,0.000019,0.4909,2.478857 +L 0.4909,2.478857,0.4909,4.957739 +L 0.4909,4.957739,0.4909,7.436446 +L 0.4909,7.436446,0.9217,7.436446 +L 0.9217,7.436446,1.3455,7.436446 +L 1.3455,7.436446,1.7731,7.436446 +L 1.7731,7.436446,1.7731,7.968928 +L 1.7731,7.968928,1.7731,8.493026 +L 1.7731,8.493026,1.7731,8.999962 +L 0.9217,0.000019,1.9794,0.79096 +L 1.9794,0.79096,2.4242,1.344632 +L 2.4242,1.344632,2.6309,2.135639 +L 2.6309,2.135639,2.4736,2.324815 +L 2.4736,2.324815,2.33,2.505716 +L 2.33,2.505716,2.2004,2.669544 +L 3.0547,0.000019,3.0547,0.37014 +L 3.0547,0.37014,3.0547,0.723209 +L 3.0547,0.723209,3.0547,1.067807 +L 3.8781,0.000019,4.7082,2.737294 +L 4.7082,2.737294,4.8164,5.550901 +L 4.8164,5.550901,4.7359,8.466144 +L 4.7359,8.466144,5.4367,8.466144 +L 5.4367,8.466144,6.1438,8.466144 +L 6.1438,8.466144,6.8657,8.466144 +L 6.8657,8.466144,6.8657,5.644066 +L 6.8657,5.644066,6.8657,2.822054 +L 6.8657,2.822054,6.8657,0.000019 +L 6.8657,0.000019,6.5715,0.000019 +L 6.5715,0.000019,6.2878,0.000019 +L 6.2878,0.000019,6.0146,0.000019 +L 5.1565,3.16525,5.587,3.16525 +L 5.587,3.16525,6.0146,3.16525 +L 6.0146,3.16525,6.4419,3.16525 +L 0.9217,4.233082,1.6225,4.233082 +L 1.6225,4.233082,2.33,4.233082 +L 2.33,4.233082,3.0547,4.233082 +L 3.0547,4.233082,3.0547,4.766987 +L 3.0547,4.766987,3.0547,5.300848 +L 3.0547,5.300848,3.0547,5.834818 +L 3.0547,5.834818,2.33,5.834818 +L 2.33,5.834818,1.6225,5.834818 +L 1.6225,5.834818,0.9217,5.834818 +L 5.1565,5.834818,5.587,5.834818 +L 5.587,5.834818,6.0146,5.834818 +L 6.0146,5.834818,6.4419,5.834818 +L 3.0547,6.368679,3.0547,6.738823 +L 3.0547,6.738823,3.0547,7.091848 +L 3.0547,7.091848,3.0547,7.436446 +L 3.0547,7.436446,2.7605,7.436446 +L 2.7605,7.436446,2.4736,7.436446 +L 2.4736,7.436446,2.2004,7.436446 + +[穀] 66 +L 1.7751,0.000019,1.6907,0.723209 +L 1.6907,0.723209,1.621,1.437906 +L 1.621,1.437906,1.5615,2.135639 +L 1.5615,2.135639,1.0747,1.601712 +L 1.0747,1.601712,0.584,1.067807 +L 0.584,1.067807,0.094,0.533946 +L 4.1218,0.000019,4.6086,0.533946 +L 4.6086,0.533946,5.0986,1.067807 +L 5.0986,1.067807,5.5855,1.601712 +L 5.5855,1.601712,5.0111,2.741497 +L 5.0111,2.741497,4.7939,3.423796 +L 4.7939,3.423796,4.7624,4.233082 +L 4.7624,4.233082,5.3161,4.233082 +L 5.3161,4.233082,5.8692,4.233082 +L 5.8692,4.233082,6.4404,4.233082 +L 6.4404,4.233082,6.2898,3.545244 +L 6.2898,3.545244,6.1462,2.848935 +L 6.1462,2.848935,6.0166,2.135639 +L 6.8674,0.000019,6.5696,0.37014 +L 6.5696,0.37014,6.2898,0.723209 +L 6.2898,0.723209,6.0166,1.067807 +L 3.0532,1.067807,2.0764,2.279633 +L 2.0764,2.279633,1.2739,2.576356 +L 1.2739,2.576356,0.094,2.669544 +L 2.6294,2.669544,2.9064,2.669544 +L 2.9064,2.669544,3.1863,2.669544 +L 3.1863,2.669544,3.4843,2.669544 +L 1.7751,3.432246,0.6435,3.738754 +L 0.6435,3.738754,0.185,4.257052 +L 0.185,4.257052,0.094,5.300848 +L 0.094,5.300848,1.2249,5.300848 +L 1.2249,5.300848,2.353,5.300848 +L 2.353,5.300848,3.4843,5.300848 +L 3.4843,5.300848,3.4843,4.95625 +L 3.4843,4.95625,3.4843,4.603072 +L 3.4843,4.603072,3.4843,4.233082 +L 4.3354,5.567823,4.6363,6.209099 +L 4.6363,6.209099,4.7449,6.960551 +L 4.7449,6.960551,4.7624,8.466144 +L 4.7624,8.466144,5.1655,8.466144 +L 5.1655,8.466144,5.5855,8.466144 +L 5.5855,8.466144,6.0166,8.466144 +L 6.0166,8.466144,6.0166,7.589044 +L 6.0166,7.589044,6.0166,6.711855 +L 6.0166,6.711855,6.0166,5.834818 +L 6.0166,5.834818,6.4404,5.834818 +L 6.4404,5.834818,6.8674,5.834818 +L 6.8674,5.834818,7.2947,5.834818 +L 7.2947,5.834818,7.2947,6.20483 +L 7.2947,6.20483,7.2947,6.557987 +L 7.2947,6.557987,7.2947,6.902606 +L 0.5209,6.902606,1.3965,7.11017 +L 1.3965,7.11017,1.6631,7.317801 +L 1.6631,7.317801,1.5615,7.703464 +L 1.5615,7.703464,1.0747,7.779686 +L 1.0747,7.779686,0.584,7.856018 +L 0.584,7.856018,0.094,7.932218 +L 2.1989,6.902606,2.4753,6.902606 +L 2.4753,6.902606,2.7558,6.902606 +L 2.7558,6.902606,3.0532,6.902606 +L 2.1989,7.932218,2.0483,8.302273 +L 2.0483,8.302273,1.9047,8.655387 +L 1.9047,8.655387,1.7751,8.999962 +L 2.6294,7.932218,2.9064,7.932218 +L 2.9064,7.932218,3.1863,7.932218 +L 3.1863,7.932218,3.4843,7.932218 + +[豚] 48 +L 0.1271,0.267015,0.4038,1.104604 +L 0.4038,1.104604,0.5093,3.230286 +L 0.5093,3.230286,0.5229,8.466144 +L 0.5229,8.466144,1.0833,8.466144 +L 1.0833,8.466144,1.6546,8.466144 +L 1.6546,8.466144,2.2321,8.466144 +L 2.2321,8.466144,2.2321,6.178015 +L 2.2321,6.178015,2.2321,3.889776 +L 2.2321,3.889776,2.2321,1.601712 +L 2.2321,1.601712,3.3532,2.055126 +L 3.3532,2.055126,4.2285,2.737294 +L 4.2285,2.737294,5.6193,4.233082 +L 5.6193,4.233082,5.6018,5.004278 +L 5.6018,5.004278,5.4897,5.419493 +L 5.4897,5.419493,5.1882,5.834818 +L 5.1882,5.834818,4.488,5.137043 +L 4.488,5.137043,3.7875,4.422324 +L 3.7875,4.422324,3.0867,3.699133 +L 1.3775,0.000019,1.6546,0.000019 +L 1.6546,0.000019,1.9348,0.000019 +L 1.9348,0.000019,2.2321,0.000019 +L 2.2321,0.000019,2.2321,0.37014 +L 2.2321,0.37014,2.2321,0.723209 +L 2.2321,0.723209,2.2321,1.067807 +L 4.3371,0.000019,5.5734,0.66242 +L 5.5734,0.66242,5.6403,2.146934 +L 5.6403,2.146934,6.0428,3.699133 +L 6.0428,3.699133,6.4736,3.011295 +L 6.4736,3.011295,6.8977,2.315008 +L 6.8977,2.315008,7.3247,1.601712 +L 0.9467,3.699133,1.2234,3.699133 +L 1.2234,3.699133,1.5071,3.699133 +L 1.5071,3.699133,1.8052,3.699133 +L 6.0428,5.300848,6.4736,5.834818 +L 6.4736,5.834818,6.8977,6.368679 +L 6.8977,6.368679,7.3247,6.902606 +L 3.2969,5.834818,4.1795,6.661091 +L 4.1795,6.661091,4.5542,7.360136 +L 4.5542,7.360136,4.7644,8.466144 +L 4.7644,8.466144,4.1938,8.466144 +L 4.1938,8.466144,3.6331,8.466144 +L 3.6331,8.466144,3.0867,8.466144 +L 0.9467,6.368679,1.2234,6.368679 +L 1.2234,6.368679,1.5071,6.368679 +L 1.5071,6.368679,1.8052,6.368679 +L 5.1882,8.466144,5.7486,8.466144 +L 5.7486,8.466144,6.3198,8.466144 +L 6.3198,8.466144,6.8977,8.466144 + +[猫] 54 +L 0.126,0.000019,0.7596,0.039553 +L 0.7596,0.039553,1.2044,0.316312 +L 1.2044,0.316312,1.8352,1.067807 +L 1.8352,1.067807,1.7508,2.478857 +L 1.7508,2.478857,1.6807,3.889776 +L 1.6807,3.889776,1.6215,5.300848 +L 1.6215,5.300848,1.1098,4.603072 +L 1.1098,4.603072,0.616,3.888419 +L 0.616,3.888419,0.126,3.16525 +L 3.0852,0.000019,3.0852,1.600311 +L 3.0852,1.600311,3.0852,3.192175 +L 3.0852,3.192175,3.0852,4.766987 +L 3.0852,4.766987,4.2165,4.766987 +L 4.2165,4.766987,5.3513,4.766987 +L 5.3513,4.766987,6.5004,4.766987 +L 6.5004,4.766987,6.5004,3.192175 +L 6.5004,3.192175,6.5004,1.600311 +L 6.5004,1.600311,6.5004,0.000019 +L 6.5004,0.000019,5.3513,0.000019 +L 5.3513,0.000019,4.2165,0.000019 +L 4.2165,0.000019,3.0852,0.000019 +L 4.7944,0.533946,4.7107,1.968988 +L 4.7107,1.968988,4.3464,2.55648 +L 4.3464,2.55648,3.5164,2.669544 +L 5.2217,2.669544,4.9208,3.057922 +L 4.9208,3.057922,4.8084,3.463352 +L 4.8084,3.463352,4.7944,4.233082 +L 1.4114,5.834818,1.3935,6.60597 +L 1.3935,6.60597,1.2814,7.021142 +L 1.2814,7.021142,0.9802,7.436446 +L 0.9802,7.436446,0.686,7.091848 +L 0.686,7.091848,0.4023,6.738823 +L 0.4023,6.738823,0.126,6.368679 +L 3.9363,5.834818,3.709,7.16529 +L 3.709,7.16529,3.1027,7.478935 +L 3.1027,7.478935,2.2621,7.436446 +L 5.6455,5.834818,5.3692,7.251472 +L 5.3692,7.251472,4.7068,7.532566 +L 4.7068,7.532566,3.9363,7.932218 +L 3.9363,7.932218,3.9363,8.302273 +L 3.9363,8.302273,3.9363,8.655387 +L 3.9363,8.655387,3.9363,8.999962 +L 6.0766,7.436446,5.7719,7.824889 +L 5.7719,7.824889,5.6599,8.23032 +L 5.6599,8.23032,5.6455,8.999962 +L 6.5004,7.436446,6.7768,7.436446 +L 6.7768,7.436446,7.05,7.436446 +L 7.05,7.436446,7.3267,7.436446 +L 0.9802,7.932218,0.686,8.302273 +L 0.686,8.302273,0.4023,8.655387 +L 0.4023,8.655387,0.126,8.999962 +L 1.4114,7.932218,1.6807,8.302273 +L 1.6807,8.302273,1.9644,8.655387 +L 1.9644,8.655387,2.2621,8.999962 + +[疲] 54 +L 0.1592,0.000019,0.7651,1.224607 +L 0.7651,1.224607,1.0351,2.3221 +L 1.0351,2.3221,1.1924,4.233082 +L 1.1924,4.233082,0.8351,3.888419 +L 0.8351,3.888419,0.4954,3.535459 +L 0.4954,3.535459,0.1592,3.16525 +L 1.8337,0.000019,2.5727,1.987332 +L 2.5727,1.987332,2.7268,3.771218 +L 2.7268,3.771218,2.6848,5.834818 +L 2.6848,5.834818,3.2448,5.834818 +L 3.2448,5.834818,3.8196,5.834818 +L 3.8196,5.834818,4.3936,5.834818 +L 4.3936,5.834818,4.5302,6.20483 +L 4.5302,6.20483,4.6738,6.557987 +L 4.6738,6.557987,4.8244,6.902606 +L 3.1152,0.000019,3.8196,0.37014 +L 3.8196,0.37014,4.5197,0.723209 +L 4.5197,0.723209,5.2202,1.067807 +L 5.2202,1.067807,4.3096,2.741497 +L 4.3096,2.741497,3.7632,3.423796 +L 3.7632,3.423796,3.1152,3.699133 +L 6.5056,0.000019,6.2082,0.189217 +L 6.2082,0.189217,5.9245,0.37014 +L 5.9245,0.37014,5.6475,0.533946 +L 5.6475,1.601712,6.2499,2.391296 +L 6.2499,2.391296,6.4709,2.935051 +L 6.4709,2.935051,6.5056,3.699133 +L 6.5056,3.699133,5.802,3.699133 +L 5.802,3.699133,5.0976,3.699133 +L 5.0976,3.699133,4.3936,3.699133 +L 4.8244,4.233082,4.8423,5.004278 +L 4.8423,5.004278,4.94,5.419493 +L 4.94,5.419493,5.2202,5.834818 +L 5.2202,5.834818,5.7809,5.757151 +L 5.7809,5.757151,6.3515,5.670926 +L 6.3515,5.670926,6.9294,5.567823 +L 6.9294,5.567823,6.7756,5.300848 +L 6.7756,5.300848,6.6352,5.03394 +L 6.6352,5.03394,6.5056,4.766987 +L 1.4099,4.766987,1.4099,5.833483 +L 1.4099,5.833483,1.4099,6.891333 +L 1.4099,6.891333,1.4099,7.932218 +L 1.4099,7.932218,2.3937,7.932218 +L 2.3937,7.932218,3.3923,7.932218 +L 3.3923,7.932218,4.3936,7.932218 +L 4.3936,7.932218,4.3936,8.302273 +L 4.3936,8.302273,4.3936,8.655387 +L 4.3936,8.655387,4.3936,8.999962 +L 0.583,6.101771,0.4323,6.368679 +L 0.4323,6.368679,0.2887,6.635523 +L 0.2887,6.635523,0.1592,6.902606 +L 4.8244,7.932218,5.6545,7.932218 +L 5.6545,7.932218,6.5056,7.932218 +L 6.5056,7.932218,7.3567,7.932218 + +[遅] 60 +L 0.3682,0.000019,0.7145,0.37014 +L 0.7145,0.37014,1.0718,0.723209 +L 1.0718,0.723209,1.436,1.067807 +L 1.436,1.067807,1.436,2.315008 +L 1.436,2.315008,1.436,3.545244 +L 1.436,3.545244,1.436,4.766987 +L 1.436,4.766987,1.0123,4.766987 +L 1.0123,4.766987,0.585,4.766987 +L 0.585,4.766987,0.1577,4.766987 +L 2.7214,0.000019,2.4241,0.189217 +L 2.4241,0.189217,2.1435,0.37014 +L 2.1435,0.37014,1.8672,0.533946 +L 3.1421,0.000019,4.5532,0.000019 +L 4.5532,0.000019,5.9612,0.000019 +L 5.9612,0.000019,7.3867,0.000019 +L 5.2537,1.334694,4.8895,1.898348 +L 4.8895,1.898348,4.3431,2.105977 +L 4.3431,2.105977,3.1421,2.135639 +L 2.291,2.402504,2.5957,3.13561 +L 2.5957,3.13561,2.7043,4.70762 +L 2.7043,4.70762,2.7214,8.466144 +L 2.7214,8.466144,4.1228,8.466144 +L 4.1228,8.466144,5.5374,8.466144 +L 5.5374,8.466144,6.9629,8.466144 +L 6.9629,8.466144,6.6652,7.511267 +L 6.6652,7.511267,6.3815,6.548071 +L 6.3815,6.548071,6.1052,5.567823 +L 6.1052,5.567823,6.3815,5.490068 +L 6.3815,5.490068,6.6652,5.404039 +L 6.6652,5.404039,6.9629,5.300848 +L 5.6775,2.135639,5.3833,2.668077 +L 5.3833,2.668077,5.0996,3.192175 +L 5.0996,3.192175,4.8229,3.699133 +L 4.8229,3.699133,4.5291,3.699133 +L 4.5291,3.699133,4.2485,3.699133 +L 4.2485,3.699133,3.9683,3.699133 +L 6.1052,2.135639,6.5325,2.135639 +L 6.5325,2.135639,6.9629,2.135639 +L 6.9629,2.135639,7.3867,2.135639 +L 5.6775,3.699133,5.3798,4.114458 +L 5.3798,4.114458,5.2712,4.529652 +L 5.2712,4.529652,5.2537,5.300848 +L 5.2537,5.300848,4.6828,5.300848 +L 4.6828,5.300848,4.1228,5.300848 +L 4.1228,5.300848,3.5725,5.300848 +L 4.3991,5.834818,4.0664,6.408191 +L 4.0664,6.408191,3.7442,6.68506 +L 3.7442,6.68506,3.1421,6.902606 +L 4.3991,6.902606,4.956,6.902606 +L 4.956,6.902606,5.5269,6.902606 +L 5.5269,6.902606,6.1052,6.902606 +L 1.436,7.436446,1.1418,7.779686 +L 1.1418,7.779686,0.862,8.122949 +L 0.862,8.122949,0.585,8.466144 +L 5.2432,-0.015151,7.3692,-0.015151 +L 1.4255,1.052484,0.3682,0.000019 +L 0.1717,4.751751,1.4255,4.751751 +L 1.4255,1.052484,1.4255,4.751751 +L 0.5993,8.489151,1.4255,7.421276 +A 5.2432,7.347855,7.362973,238.75988,270 + +[彼] 48 +L 1.0426,0.000019,0.9586,1.411047 +L 0.9586,1.411047,0.8917,2.822054 +L 0.8917,2.822054,0.8251,4.233082 +L 0.8251,4.233082,0.6153,4.069233 +L 0.6153,4.069233,0.4013,3.888419 +L 0.4013,3.888419,0.1915,3.699133 +L 1.8972,0.267015,2.5172,2.735872 +L 2.5172,2.735872,2.7094,4.967546 +L 2.7094,4.967546,2.7164,7.436446 +L 2.7164,7.436446,3.9391,7.454812 +L 3.9391,7.454812,4.489,7.583352 +L 4.489,7.583352,4.8564,7.932218 +L 4.8564,7.932218,4.8564,8.302273 +L 4.8564,8.302273,4.8564,8.655387 +L 4.8564,8.655387,4.8564,8.999962 +L 3.3609,0.000019,4.0022,0.533946 +L 4.0022,0.533946,4.6393,1.067807 +L 4.6393,1.067807,5.2802,1.601712 +L 5.2802,1.601712,4.3805,3.117223 +L 4.3805,3.117223,4.0474,3.937913 +L 4.0474,3.937913,4.0022,4.766987 +L 4.0022,4.766987,3.7041,4.766987 +L 3.7041,4.766987,3.4239,4.766987 +L 3.4239,4.766987,3.1476,4.766987 +L 6.9614,0.000019,6.5341,0.37014 +L 6.5341,0.37014,6.1138,0.723209 +L 6.1138,0.723209,5.711,1.067807 +L 5.711,2.135639,6.2893,3.275468 +L 6.2893,3.275468,6.5026,3.957636 +L 6.5026,3.957636,6.531,4.766987 +L 6.531,4.766987,5.8301,4.766987 +L 5.8301,4.766987,5.1261,4.766987 +L 5.1261,4.766987,4.426,4.766987 +L 1.0426,4.766987,1.319,5.490068 +L 1.319,5.490068,1.5992,6.20483 +L 1.5992,6.20483,1.8972,6.902606 +L 4.8564,5.300848,4.8708,6.447835 +L 4.8708,6.447835,4.9825,7.001464 +L 4.9825,7.001464,5.2802,7.436446 +L 5.2802,7.436446,5.8336,7.3588 +L 5.8336,7.3588,6.3874,7.272684 +L 6.3874,7.272684,6.9614,7.169515 +L 6.9614,7.169515,6.8073,6.902606 +L 6.8073,6.902606,6.6676,6.635523 +L 6.6676,6.635523,6.531,6.368679 +L 0.1915,6.902606,0.6153,7.615903 +L 0.6153,7.615903,1.0426,8.31219 +L 1.0426,8.31219,1.4699,8.999962 + +[奥] 36 +L 0.2177,0.000019,1.3038,0.444983 +L 1.3038,0.444983,2.067,1.067807 +L 2.067,1.067807,3.1738,2.402504 +L 3.1738,2.402504,2.1794,2.505716 +L 2.1794,2.505716,1.1949,2.591877 +L 1.1949,2.591877,0.2177,2.669544 +L 6.1368,0.000019,5.2857,0.904023 +L 5.2857,0.904023,4.4346,1.791019 +L 4.4346,1.791019,3.6046,2.669544 +L 4.4592,2.669544,5.0094,2.669544 +L 5.0094,2.669544,5.5659,2.669544 +L 5.5659,2.669544,6.1368,2.669544 +L 6.1368,2.669544,6.1368,4.423725 +L 6.1368,4.423725,6.1368,6.178015 +L 6.1368,6.178015,6.1368,7.932218 +L 6.1368,7.932218,4.428,7.932218 +L 4.428,7.932218,2.7258,7.932218 +L 2.7258,7.932218,1.0446,7.932218 +L 1.0446,7.932218,1.0446,6.357428 +L 1.0446,6.357428,1.0446,4.765586 +L 1.0446,4.765586,1.0446,3.16525 +L 2.109,4.233082,2.4558,4.689298 +L 2.4558,4.689298,2.8095,5.137043 +L 2.8095,5.137043,3.1738,5.567823 +L 3.1738,5.567823,2.7535,5.670926 +L 2.7535,5.670926,2.323,5.757151 +L 2.323,5.757151,1.8957,5.834818 +L 3.6046,4.233082,3.6046,5.137043 +L 3.6046,5.137043,3.6046,6.024016 +L 3.6046,6.024016,3.6046,6.902606 +L 5.2857,4.233082,4.8549,4.689298 +L 4.8549,4.689298,4.4346,5.137043 +L 4.4346,5.137043,4.0319,5.567823 +L 4.0319,5.567823,4.3054,6.024016 +L 4.3054,6.024016,4.5782,6.471892 +L 4.5782,6.471892,4.8549,6.902606 + +[忙] 27 +L 1.5016,0.000019,1.5016,3.011295 +L 1.5016,3.011295,1.5016,6.014209 +L 1.5016,6.014209,1.5016,8.999962 +L 4.4577,0.000019,4.1568,0.611569 +L 4.1568,0.611569,4.0514,2.401212 +L 4.0514,2.401212,4.0339,6.902606 +L 4.0339,6.902606,3.7575,6.902606 +L 3.7575,6.902606,3.4805,6.902606 +L 3.4805,6.902606,3.2111,6.902606 +L 4.885,0.000019,5.589,0.000019 +L 5.589,0.000019,6.2964,0.000019 +L 6.2964,0.000019,7.0215,0.000019 +L 0.2165,5.03394,0.5178,5.656851 +L 0.5178,5.656851,0.6295,6.279739 +L 0.6295,6.279739,0.647,7.436446 +L 2.3527,6.635523,2.2021,6.902606 +L 2.2021,6.902606,2.062,7.169515 +L 2.062,7.169515,1.9219,7.436446 +L 4.4577,6.902606,4.7344,6.902606 +L 4.7344,6.902606,5.0181,6.902606 +L 5.0181,6.902606,5.3126,6.902606 +L 5.3126,6.902606,5.3126,7.615903 +L 5.3126,7.615903,5.3126,8.31219 +L 5.3126,8.31219,5.3126,8.999962 +L 5.7434,6.902606,6.2898,6.902606 +L 6.2898,6.902606,6.8463,6.902606 +L 6.8463,6.902606,7.4176,6.902606 + +[渡] 48 +L 0.2501,0.000019,0.4742,1.555085 +L 0.4742,1.555085,0.8805,2.957686 +L 0.8805,2.957686,1.1047,4.233082 +L 1.5285,0.267015,2.1939,2.906835 +L 2.1939,2.906835,2.362,5.292486 +L 2.362,5.292486,2.355,7.932218 +L 2.355,7.932218,3.2061,7.932218 +L 3.2061,7.932218,4.0607,7.932218 +L 4.0607,7.932218,4.915,7.932218 +L 4.915,7.932218,4.915,8.302273 +L 4.915,8.302273,4.915,8.655387 +L 4.915,8.655387,4.915,8.999962 +L 3.2061,0.000019,3.9133,0.37014 +L 3.9133,0.37014,4.6208,0.723209 +L 4.6208,0.723209,5.3423,1.067807 +L 5.3423,1.067807,4.4106,2.391296 +L 4.4106,2.391296,3.8576,2.935051 +L 3.8576,2.935051,3.2061,3.16525 +L 6.5962,0.000019,6.2984,0.189217 +L 6.2984,0.189217,6.0183,0.37014 +L 6.0183,0.37014,5.7419,0.533946 +L 5.7419,1.601712,6.0183,2.057884 +L 6.0183,2.057884,6.2984,2.505716 +L 6.2984,2.505716,6.5962,2.936474 +L 6.5962,2.936474,5.8957,3.01274 +L 5.8957,3.01274,5.192,3.089006 +L 5.192,3.089006,4.4912,3.16525 +L 4.0607,4.766987,4.0607,5.300848 +L 4.0607,5.300848,4.0607,5.834818 +L 4.0607,5.834818,4.0607,6.368679 +L 4.0607,6.368679,3.6369,6.368679 +L 3.6369,6.368679,3.2061,6.368679 +L 3.2061,6.368679,2.7823,6.368679 +L 4.4912,4.766987,5.0376,4.766987 +L 5.0376,4.766987,5.5983,4.766987 +L 5.5983,4.766987,6.1657,4.766987 +L 6.1657,4.766987,6.1657,5.300848 +L 6.1657,5.300848,6.1657,5.834818 +L 6.1657,5.834818,6.1657,6.368679 +L 6.1657,6.368679,5.5983,6.368679 +L 5.5983,6.368679,5.0376,6.368679 +L 5.0376,6.368679,4.4912,6.368679 +L 6.5962,6.368679,6.8697,6.368679 +L 6.8697,6.368679,7.1569,6.368679 +L 7.1569,6.368679,7.4473,6.368679 +L 5.3423,7.932218,6.0466,7.932218 +L 6.0466,7.932218,6.7468,7.932218 +L 6.7468,7.932218,7.4473,7.932218 + +[寝] 60 +L 1.534,0.000019,1.4499,0.904023 +L 1.4499,0.904023,1.3795,1.791019 +L 1.3795,1.791019,1.3165,2.669544 +L 1.3165,2.669544,0.9596,2.324815 +L 0.9596,2.324815,0.6163,1.97179 +L 0.6163,1.97179,0.2797,1.601712 +L 2.3847,0.000019,3.0855,0.37014 +L 3.0855,0.37014,3.7892,0.723209 +L 3.7892,0.723209,4.4897,1.067807 +L 4.4897,1.067807,4.213,1.524045 +L 4.213,1.524045,3.9433,1.97179 +L 3.9433,1.97179,3.6631,2.402504 +L 3.6631,2.402504,4.3639,2.402504 +L 4.3639,2.402504,5.0679,2.402504 +L 5.0679,2.402504,5.7681,2.402504 +L 5.7681,2.402504,5.4742,1.97179 +L 5.4742,1.97179,5.194,1.524045 +L 5.194,1.524045,4.917,1.067807 +L 4.917,1.067807,5.8486,0.316312 +L 5.8486,0.316312,6.402,0.039553 +L 6.402,0.039553,7.0538,0.000019 +L 2.3847,2.669544,2.3847,3.01274 +L 2.3847,3.01274,2.3847,3.355915 +L 2.3847,3.355915,2.3847,3.699133 +L 2.3847,3.699133,3.9433,3.699133 +L 3.9433,3.699133,5.4952,3.699133 +L 5.4952,3.699133,7.0538,3.699133 +L 7.0538,3.699133,7.0538,3.355915 +L 7.0538,3.355915,7.0538,3.01274 +L 7.0538,3.01274,7.0538,2.669544 +L 1.534,3.16525,1.534,4.422324 +L 1.534,4.422324,1.534,5.670926 +L 1.534,5.670926,1.534,6.902606 +L 3.2393,4.766987,4.0729,4.766987 +L 4.0729,4.766987,4.917,4.766987 +L 4.917,4.766987,5.7681,4.766987 +L 5.7681,4.766987,5.7681,5.137043 +L 5.7681,5.137043,5.7681,5.490068 +L 5.7681,5.490068,5.7681,5.834818 +L 5.7681,5.834818,4.917,5.834818 +L 4.917,5.834818,4.0729,5.834818 +L 4.0729,5.834818,3.2393,5.834818 +L 5.7681,6.635523,4.917,6.738823 +L 4.917,6.738823,4.0729,6.824984 +L 4.0729,6.824984,3.2393,6.902606 +L 0.2797,6.902606,0.2797,7.245803 +L 0.2797,7.245803,0.2797,7.589044 +L 0.2797,7.589044,0.2797,7.932218 +L 0.2797,7.932218,1.4079,7.932218 +L 1.4079,7.932218,2.5392,7.932218 +L 2.5392,7.932218,3.6631,7.932218 +L 3.6631,7.932218,3.6631,8.302273 +L 3.6631,8.302273,3.6631,8.655387 +L 3.6631,8.655387,3.6631,8.999962 +L 7.0538,6.902606,7.0538,7.245803 +L 7.0538,7.245803,7.0538,7.589044 +L 7.0538,7.589044,7.0538,7.932218 +L 7.0538,7.932218,6.0553,7.932218 +L 6.0553,7.932218,5.0714,7.932218 +L 5.0714,7.932218,4.0939,7.932218 + +[婚] 58 +L 0.2817,0.000019,0.7024,0.637071 +L 0.7024,0.637071,1.1328,1.257092 +L 1.1328,1.257092,1.5601,1.868642 +L 1.5601,1.868642,1.2277,2.442213 +L 1.2277,2.442213,0.8947,2.718972 +L 0.8947,2.718972,0.2817,2.936474 +L 0.2817,2.936474,0.5935,3.918124 +L 0.5935,3.918124,0.8141,5.094663 +L 0.8141,5.094663,1.1328,6.101771 +L 1.1328,6.101771,0.8351,6.368679 +L 0.8351,6.368679,0.5553,6.635523 +L 0.5553,6.635523,0.2817,6.902606 +L 4.0924,0.000019,3.9807,2.878509 +L 3.9807,2.878509,3.7775,5.053728 +L 3.7775,5.053728,3.6651,7.932218 +L 3.6651,7.932218,5.3116,8.070674 +L 5.3116,8.070674,6.2814,8.327754 +L 6.2814,8.327754,7.0485,8.466144 +L 4.5236,0.000019,5.2237,0.000019 +L 5.2237,0.000019,5.9312,0.000019 +L 5.9312,0.000019,6.6562,0.000019 +L 6.6562,0.000019,6.6562,0.723209 +L 6.6562,0.723209,6.6562,1.437906 +L 6.6562,1.437906,6.6562,2.135639 +L 6.6562,2.135639,5.9312,2.135639 +L 5.9312,2.135639,5.2237,2.135639 +L 5.2237,2.135639,4.5236,2.135639 +L 2.8105,1.067807,2.0718,2.936474 +L 2.0718,2.936474,2.2014,4.855949 +L 2.2014,4.855949,2.4112,6.902606 +L 2.4112,6.902606,1.3503,7.19215 +L 1.3503,7.19215,1.1017,7.94776 +L 1.1017,7.94776,1.1328,8.999962 +L 6.6562,2.669544,6.6562,3.01274 +L 6.6562,3.01274,6.6562,3.355915 +L 6.6562,3.355915,6.6562,3.699133 +L 6.6562,3.699133,5.9312,3.699133 +L 5.9312,3.699133,5.2237,3.699133 +L 5.2237,3.699133,4.5236,3.699133 +L 7.0485,4.233082,6.4811,5.137043 +L 6.4811,5.137043,5.9277,6.024016 +L 5.9277,6.024016,5.3746,6.902606 +L 5.3746,6.902606,4.9473,6.902606 +L 4.9473,6.902606,4.5236,6.902606 +L 4.5236,6.902606,4.0924,6.902606 +L 7.4796,4.233082,7.4796,4.603072 +L 7.4796,4.603072,7.4796,4.95625 +L 7.4796,4.95625,7.4796,5.300848 +L 4.3064,4.766987,4.6528,4.95625 +L 4.6528,4.95625,5.0104,5.137043 +L 5.0104,5.137043,5.3746,5.300848 +L 6.6562,6.902606,6.9332,6.902606 +L 6.9332,6.902606,7.2026,6.902606 +L 7.2026,6.902606,7.4796,6.902606 +L 3.6826,6.330306,0.0821,6.330306 +L 0.9405,3.326538,1.5601,8.999896 +A -4.4536,-3.399548,8.620982,23.224227,51.278884 +A -6.3099,6.330306,9.138971,316.15783,0 + +[離] 78 +L 0.3083,0.000019,0.3083,1.247176 +L 0.3083,1.247176,0.3083,2.477325 +L 0.3083,2.477325,0.3083,3.699133 +L 0.3083,3.699133,0.862,3.699133 +L 0.862,3.699133,1.415,3.699133 +L 1.415,3.699133,1.9859,3.699133 +L 1.9859,3.699133,1.9859,4.233082 +L 1.9859,4.233082,1.9859,4.766987 +L 1.9859,4.766987,1.9859,5.300848 +L 1.9859,5.300848,1.5621,5.300848 +L 1.5621,5.300848,1.1422,5.300848 +L 1.1422,5.300848,0.7394,5.300848 +L 0.7394,5.300848,0.7394,5.834818 +L 0.7394,5.834818,0.7394,6.368679 +L 0.7394,6.368679,0.7394,6.902606 +L 2.8405,0.000019,3.1172,0.000019 +L 3.1172,0.000019,3.4009,0.000019 +L 3.4009,0.000019,3.6955,0.000019 +L 3.6955,0.000019,3.1456,1.822082 +L 3.1456,1.822082,2.1999,1.889854 +L 2.1999,1.889854,0.7394,1.601712 +L 4.9805,0.000019,4.8965,2.134194 +L 4.8965,2.134194,4.8268,4.259963 +L 4.8268,4.259963,4.7634,6.368679 +L 4.7634,6.368679,4.5501,6.20483 +L 4.5501,6.20483,4.3399,6.024016 +L 4.3399,6.024016,4.1228,5.834818 +L 5.3766,0.000019,5.6495,0.000019 +L 5.6495,0.000019,5.9297,0.000019 +L 5.9297,0.000019,6.2277,0.000019 +L 6.2277,0.000019,6.2277,0.723209 +L 6.2277,0.723209,6.2277,1.437906 +L 6.2277,1.437906,6.2277,2.135639 +L 6.2277,2.135639,5.9297,2.324815 +L 5.9297,2.324815,5.6495,2.505716 +L 5.6495,2.505716,5.3766,2.669544 +L 6.655,0.000019,6.9317,0.000019 +L 6.9317,0.000019,7.2154,0.000019 +L 7.2154,0.000019,7.5058,0.000019 +L 1.1593,2.135639,1.2893,2.478857 +L 1.2893,2.478857,1.415,2.822054 +L 1.415,2.822054,1.5621,3.16525 +L 3.6955,2.135639,3.6955,2.668077 +L 3.6955,2.668077,3.6955,3.192175 +L 3.6955,3.192175,3.6955,3.699133 +L 3.6955,3.699133,3.2717,3.699133 +L 3.2717,3.699133,2.8405,3.699133 +L 2.8405,3.699133,2.4171,3.699133 +L 6.655,2.669544,6.322,3.314958 +L 6.322,3.314958,5.9927,4.096005 +L 5.9927,4.096005,5.3766,4.766987 +L 6.655,4.766987,6.0841,5.771271 +L 6.0841,5.771271,5.8526,6.419487 +L 5.8526,6.419487,4.9805,7.169515 +L 4.9805,7.169515,5.1031,7.779686 +L 5.1031,7.779686,5.2292,8.389857 +L 5.2292,8.389857,5.3766,8.999962 +L 2.4171,5.567823,2.2661,5.834818 +L 2.2661,5.834818,2.1159,6.101771 +L 2.1159,6.101771,1.9859,6.368679 +L 1.9859,6.368679,1.8357,6.20483 +L 1.8357,6.20483,1.6921,6.024016 +L 1.6921,6.024016,1.5621,5.834818 +L 3.0577,5.300848,3.1172,5.834818 +L 3.1172,5.834818,3.1876,6.368679 +L 3.1876,6.368679,3.2717,6.902606 +L 6.655,6.902606,6.4659,7.446253 +L 6.4659,7.446253,6.5601,8.100313 +L 6.5601,8.100313,6.655,8.999962 +L 0.3083,7.932218,0.862,7.932218 +L 0.862,7.932218,1.415,7.932218 +L 1.415,7.932218,1.9859,7.932218 +L 1.9859,7.932218,1.9859,8.302273 +L 1.9859,8.302273,1.9859,8.655387 +L 1.9859,8.655387,1.9859,8.999962 +L 2.4171,7.932218,2.8405,7.932218 +L 2.8405,7.932218,3.2717,7.932218 +L 3.2717,7.932218,3.6955,7.932218 + +[涼] 45 +L 0.3141,0.267015,0.734,1.411047 +L 0.734,1.411047,1.1652,2.555079 +L 1.1652,2.555079,1.5925,3.699133 +L 4.1248,0.000019,4.3976,0.000019 +L 4.3976,0.000019,4.6852,0.000019 +L 4.6852,0.000019,4.979,0.000019 +L 4.979,0.000019,4.979,1.411047 +L 4.979,1.411047,4.979,2.822054 +L 4.979,2.822054,4.979,4.233082 +L 4.979,4.233082,4.405,4.233082 +L 4.405,4.233082,3.8512,4.233082 +L 3.8512,4.233082,3.2978,4.233082 +L 3.2978,4.233082,3.2978,4.766987 +L 3.2978,4.766987,3.2978,5.300848 +L 3.2978,5.300848,3.2978,5.834818 +L 3.2978,5.834818,4.4326,5.834818 +L 4.4326,5.834818,5.5538,5.834818 +L 5.5538,5.834818,6.6847,5.834818 +L 6.6847,5.834818,6.6847,5.300848 +L 6.6847,5.300848,6.6847,4.766987 +L 6.6847,4.766987,6.6847,4.233082 +L 6.6847,4.233082,6.2574,4.233082 +L 6.2574,4.233082,5.8336,4.233082 +L 5.8336,4.233082,5.4063,4.233082 +L 2.4436,1.067807,2.7238,1.601712 +L 2.7238,1.601712,3.004,2.135639 +L 3.004,2.135639,3.2978,2.669544 +L 7.1124,1.067807,6.8147,1.601712 +L 6.8147,1.601712,6.5341,2.135639 +L 6.5341,2.135639,6.2574,2.669544 +L 1.1652,5.834818,0.8671,6.20483 +L 0.8671,6.20483,0.5834,6.557987 +L 0.5834,6.557987,0.3141,6.902606 +L 2.4436,7.436446,3.2768,7.436446 +L 3.2768,7.436446,4.1248,7.436446 +L 4.1248,7.436446,4.979,7.436446 +L 4.979,7.436446,4.979,7.968928 +L 4.979,7.968928,4.979,8.493026 +L 4.979,8.493026,4.979,8.999962 +L 5.4063,7.436446,6.1072,7.436446 +L 6.1072,7.436446,6.8147,7.436446 +L 6.8147,7.436446,7.5432,7.436446 +L 1.5925,7.932218,1.2944,8.302273 +L 1.2944,8.302273,1.0142,8.655387 +L 1.0142,8.655387,0.734,8.999962 + +[違] 81 +L 0.5543,0.000019,0.8972,0.37014 +L 0.8972,0.37014,1.2579,0.723209 +L 1.2579,0.723209,1.6222,1.067807 +L 1.6222,1.067807,1.6222,2.315008 +L 1.6222,2.315008,1.6222,3.545244 +L 1.6222,3.545244,1.6222,4.766987 +L 1.6222,4.766987,1.1914,4.766987 +L 1.1914,4.766987,0.7711,4.766987 +L 0.7711,4.766987,0.3403,4.766987 +L 2.8725,0.000019,2.5958,0.189217 +L 2.5958,0.189217,2.323,0.37014 +L 2.323,0.37014,2.0495,0.533946 +L 3.2963,0.000019,4.7047,0.000019 +L 4.7047,0.000019,6.1158,0.000019 +L 6.1158,0.000019,7.5382,0.000019 +L 5.4367,1.334694,5.2822,1.601712 +L 5.2822,1.601712,5.1421,1.868642 +L 5.1421,1.868642,5.0094,2.135639 +L 5.0094,2.135639,4.1544,2.135639 +L 4.1544,2.135639,3.2963,2.135639 +L 3.2963,2.135639,2.4452,2.135639 +L 5.864,2.135639,5.5628,2.478857 +L 5.5628,2.478857,5.2822,2.822054 +L 5.2822,2.822054,5.0094,3.16525 +L 5.0094,3.16525,4.4311,3.011295 +L 4.4311,3.011295,3.8571,2.848935 +L 3.8571,2.848935,3.2963,2.669544 +L 6.2913,2.135639,6.6972,2.135639 +L 6.6972,2.135639,7.1179,2.135639 +L 7.1179,2.135639,7.5382,2.135639 +L 5.864,3.16525,5.4819,3.738754 +L 5.4819,3.738754,4.8199,4.015448 +L 4.8199,4.015448,3.2963,4.233082 +L 3.2963,4.233082,3.2963,4.603072 +L 3.2963,4.603072,3.2963,4.95625 +L 3.2963,4.95625,3.2963,5.300848 +L 3.2963,5.300848,4.428,5.300848 +L 4.428,5.300848,5.5593,5.300848 +L 5.5593,5.300848,6.6867,5.300848 +L 6.6867,5.300848,6.6867,4.95625 +L 6.6867,4.95625,6.6867,4.603072 +L 6.6867,4.603072,6.6867,4.233082 +L 6.6867,4.233082,6.4135,4.233082 +L 6.4135,4.233082,6.1368,4.233082 +L 6.1368,4.233082,5.864,4.233082 +L 6.2913,3.16525,6.5641,3.16525 +L 6.5641,3.16525,6.8377,3.16525 +L 6.8377,3.16525,7.1179,3.16525 +L 2.4452,6.368679,3.006,6.368679 +L 3.006,6.368679,3.5734,6.368679 +L 3.5734,6.368679,4.1544,6.368679 +L 4.1544,6.368679,4.1544,6.901162 +L 4.1544,6.901162,4.1544,7.42526 +L 4.1544,7.42526,4.1544,7.932218 +L 4.1544,7.932218,3.7271,7.932218 +L 3.7271,7.932218,3.2963,7.932218 +L 3.2963,7.932218,2.8725,7.932218 +L 4.5821,6.368679,5.1421,6.368679 +L 5.1421,6.368679,5.713,6.368679 +L 5.713,6.368679,6.2913,6.368679 +L 6.2913,6.368679,6.2913,6.901162 +L 6.2913,6.901162,6.2913,7.42526 +L 6.2913,7.42526,6.2913,7.932218 +L 6.2913,7.932218,5.713,7.932218 +L 5.713,7.932218,5.1421,7.932218 +L 5.1421,7.932218,4.5821,7.932218 +L 4.5821,7.932218,4.5821,8.302273 +L 4.5821,8.302273,4.5821,8.655387 +L 4.5821,8.655387,4.5821,8.999962 +L 6.6867,6.368679,6.9599,6.368679 +L 6.9599,6.368679,7.2436,6.368679 +L 7.2436,6.368679,7.5382,6.368679 +L 1.6222,7.436446,1.3248,7.779686 +L 1.3248,7.779686,1.0411,8.122949 +L 1.0411,8.122949,0.7711,8.466144 +L 5.4258,-0.015151,7.5553,-0.015151 +L 1.6047,1.052484,0.5543,0.000019 +L 0.3581,4.751751,1.6047,4.751751 +L 1.6047,1.052484,1.6047,4.751751 +L 0.7819,8.489151,1.6047,7.421276 +A 5.4258,7.347855,7.362973,238.75988,270 + +[払] 30 +L 0.7979,0.000019,1.0743,0.000019 +L 1.0743,0.000019,1.3443,0.000019 +L 1.3443,0.000019,1.6207,0.000019 +L 1.6207,0.000019,1.607,2.622961 +L 1.607,2.622961,1.4946,3.720432 +L 1.4946,3.720432,1.1934,4.233082 +L 1.1934,4.233082,0.9205,4.069233 +L 0.9205,4.069233,0.6438,3.888419 +L 0.6438,3.888419,0.3703,3.699133 +L 2.4753,0.000019,2.9029,0.000019 +L 2.9029,0.000019,3.3302,0.000019 +L 3.3302,0.000019,3.761,0.000019 +L 3.761,0.000019,4.0797,3.070618 +L 4.0797,3.070618,4.6818,6.08196 +L 4.6818,6.08196,5.0079,8.999962 +L 4.1848,0.000019,4.9554,0.5311 +L 4.9554,0.5311,6.0688,0.918055 +L 6.0688,0.918055,7.144,1.067807 +L 7.144,1.067807,6.8463,1.944908 +L 6.8463,1.944908,6.5665,2.822054 +L 6.5665,2.822054,6.2863,3.699133 +L 7.5748,0.000019,7.5748,0.37014 +L 7.5748,0.37014,7.5748,0.723209 +L 7.5748,0.723209,7.5748,1.067807 +L 2.0518,4.233082,1.5401,5.484573 +L 1.5401,5.484573,1.3303,6.490105 +L 1.3303,6.490105,0.3703,6.902606 +L 2.0518,6.902606,1.7506,7.336275 +L 1.7506,7.336275,1.6382,7.880097 +L 1.6382,7.880097,1.6207,8.999962 + +[絡] 57 +L 1.6545,0.000019,1.6545,1.600311 +L 1.6545,1.600311,1.6545,3.192175 +L 1.6545,3.192175,1.6545,4.766987 +L 1.6545,4.766987,1.2237,4.766987 +L 1.2237,4.766987,0.7999,4.766987 +L 0.7999,4.766987,0.3726,4.766987 +L 4.1833,0.000019,4.1304,2.408217 +L 4.1304,2.408217,3.7031,3.731662 +L 3.7031,3.731662,2.5088,5.300848 +L 2.5088,5.300848,2.3547,5.137043 +L 2.3547,5.137043,2.2111,4.95625 +L 2.2111,4.95625,2.0783,4.766987 +L 4.6138,0.000019,5.3146,0.000019 +L 5.3146,0.000019,6.0256,0.000019 +L 6.0256,0.000019,6.7433,0.000019 +L 6.7433,0.000019,6.7433,1.066428 +L 6.7433,1.066428,6.7433,2.124299 +L 6.7433,2.124299,6.7433,3.16525 +L 6.7433,3.16525,6.0256,3.16525 +L 6.0256,3.16525,5.3146,3.16525 +L 5.3146,3.16525,4.6138,3.16525 +L 0.3726,1.334694,0.5022,1.944908 +L 0.5022,1.944908,0.6455,2.555079 +L 0.6455,2.555079,0.7999,3.16525 +L 2.9326,1.868642,2.7823,2.315008 +L 2.7823,2.315008,2.6384,2.744408 +L 2.6384,2.744408,2.5088,3.16525 +L 7.1744,3.699133,6.5961,4.233082 +L 6.5961,4.233082,6.0256,4.766987 +L 6.0256,4.766987,5.4649,5.300848 +L 5.4649,5.300848,5.0376,4.95625 +L 5.0376,4.95625,4.6138,4.603072 +L 4.6138,4.603072,4.1833,4.233082 +L 1.2237,5.300848,1.353,5.567823 +L 1.353,5.567823,1.5036,5.834818 +L 1.5036,5.834818,1.6545,6.101771 +L 1.6545,6.101771,1.353,6.471892 +L 1.353,6.471892,1.0728,6.824984 +L 1.0728,6.824984,0.7999,7.169515 +L 0.7999,7.169515,1.0728,7.779686 +L 1.0728,7.779686,1.353,8.389857 +L 1.353,8.389857,1.6545,8.999962 +L 5.0376,5.834818,4.7434,6.368679 +L 4.7434,6.368679,4.4597,6.902606 +L 4.4597,6.902606,4.1833,7.436446 +L 4.1833,7.436446,3.9133,7.091848 +L 3.9133,7.091848,3.6334,6.738823 +L 3.6334,6.738823,3.3599,6.368679 +L 5.8922,5.834818,6.1692,6.471892 +L 6.1692,6.471892,6.4529,7.091848 +L 6.4529,7.091848,6.7433,7.703464 +L 6.7433,7.703464,5.8922,7.779686 +L 5.8922,7.779686,5.0376,7.856018 +L 5.0376,7.856018,4.1833,7.932218 +L 2.0783,7.169515,2.2111,7.435088 +L 2.2111,7.435088,2.3547,7.69219 +L 2.3547,7.69219,2.5088,7.932218 + +[泊] 33 +L 0.4023,0.267015,0.8296,1.411047 +L 0.8296,1.411047,1.2569,2.555079 +L 1.2569,2.555079,1.6807,3.699133 +L 3.3619,0.000019,3.3619,2.478857 +L 3.3619,2.478857,3.3619,4.957739 +L 3.3619,4.957739,3.3619,7.436446 +L 3.3619,7.436446,3.7857,7.539571 +L 3.7857,7.539571,4.2165,7.625776 +L 4.2165,7.625776,4.6441,7.703464 +L 4.6441,7.703464,4.7734,8.149764 +L 4.7734,8.149764,4.9205,8.57912 +L 4.9205,8.57912,5.0714,8.999962 +L 3.7857,0.000019,4.917,0.000019 +L 4.917,0.000019,6.0451,0.000019 +L 6.0451,0.000019,7.1726,0.000019 +L 7.1726,0.000019,7.1726,1.247176 +L 7.1726,1.247176,7.1726,2.477325 +L 7.1726,2.477325,7.1726,3.699133 +L 7.1726,3.699133,6.0451,3.699133 +L 6.0451,3.699133,4.917,3.699133 +L 4.917,3.699133,3.7857,3.699133 +L 7.1726,4.233082,7.1726,5.300848 +L 7.1726,5.300848,7.1726,6.368679 +L 7.1726,6.368679,7.1726,7.436446 +L 7.1726,7.436446,6.4724,7.436446 +L 6.4724,7.436446,5.7716,7.436446 +L 5.7716,7.436446,5.0714,7.436446 +L 1.2569,5.834818,0.9596,6.20483 +L 0.9596,6.20483,0.6794,6.557987 +L 0.6794,6.557987,0.4023,6.902606 +L 1.6807,7.932218,1.3869,8.302273 +L 1.3869,8.302273,1.1032,8.655387 +L 1.1032,8.655387,0.8296,8.999962 + +[到] 36 +L 5.9245,0.000019,6.355,0.000019 +L 6.355,0.000019,6.7756,0.000019 +L 6.7756,0.000019,7.2061,0.000019 +L 7.2061,0.000019,7.2061,3.011295 +L 7.2061,3.011295,7.2061,6.014209 +L 7.2061,6.014209,7.2061,8.999962 +L 0.4288,0.533946,1.1328,0.533946 +L 1.1328,0.533946,1.8337,0.533946 +L 1.8337,0.533946,2.5412,0.533946 +L 2.5412,0.533946,2.4532,2.419534 +L 2.4532,2.419534,1.9948,3.084715 +L 1.9948,3.084715,0.8281,3.16525 +L 2.965,1.067807,3.3923,1.067807 +L 3.3923,1.067807,3.8196,1.067807 +L 3.8196,1.067807,4.2469,1.067807 +L 5.4972,2.669544,5.4972,4.423725 +L 5.4972,4.423725,5.4972,6.178015 +L 5.4972,6.178015,5.4972,7.932218 +L 2.965,3.16525,2.8105,3.535459 +L 2.8105,3.535459,2.6704,3.888419 +L 2.6704,3.888419,2.5412,4.233082 +L 3.3923,3.16525,3.6686,3.16525 +L 3.6686,3.16525,3.9488,3.16525 +L 3.9488,3.16525,4.2469,3.16525 +L 0.4288,5.300848,1.3815,5.994311 +L 1.3815,5.994311,1.9317,7.13703 +L 1.9317,7.13703,2.11,8.466144 +L 2.11,8.466144,1.5391,8.466144 +L 1.5391,8.466144,0.9826,8.466144 +L 0.9826,8.466144,0.4288,8.466144 +L 1.6827,5.300848,2.6392,5.436568 +L 2.6392,5.436568,3.8017,5.927983 +L 3.8017,5.927983,3.8196,6.902606 +L 2.5412,8.466144,3.2413,8.466144 +L 3.2413,8.466144,3.9453,8.466144 +L 3.9453,8.466144,4.6461,8.466144 + +[押] 33 +L 0.8585,0.000019,1.1348,0.000019 +L 1.1348,0.000019,1.4185,0.000019 +L 1.4185,0.000019,1.7131,0.000019 +L 1.7131,0.000019,1.6987,2.622961 +L 1.6987,2.622961,1.587,3.720432 +L 1.587,3.720432,1.2893,4.233082 +L 1.2893,4.233082,0.9912,4.069233 +L 0.9912,4.069233,0.711,3.888419 +L 0.711,3.888419,0.4347,3.699133 +L 5.5234,0.000019,5.4957,2.125766 +L 5.4957,2.125766,5.0894,2.997264 +L 5.0894,2.997264,3.818,3.16525 +L 3.818,3.16525,3.818,4.9464 +L 3.818,4.9464,3.818,6.710497 +L 3.818,6.710497,3.818,8.466144 +L 3.818,8.466144,4.9493,8.466144 +L 4.9493,8.466144,6.0768,8.466144 +L 6.0768,8.466144,7.2046,8.466144 +L 7.2046,8.466144,7.2046,6.710497 +L 7.2046,6.710497,7.2046,4.9464 +L 7.2046,4.9464,7.2046,3.16525 +L 7.2046,3.16525,5.5864,3.857334 +L 5.5864,3.857334,5.3801,5.142734 +L 5.3801,5.142734,4.2453,5.834818 +L 2.1404,4.233082,1.615,5.518482 +L 1.615,5.518482,1.422,6.507201 +L 1.422,6.507201,0.4347,6.902606 +L 5.9542,5.834818,5.653,6.268444 +L 5.653,6.268444,5.5413,6.812155 +L 5.5413,6.812155,5.5234,7.932218 +L 2.1404,6.902606,1.8388,7.336275 +L 1.8388,7.336275,1.7267,7.880097 +L 1.7267,7.880097,1.7131,8.999962 + +[脱] 54 +L 0.4612,0.267015,0.7624,1.104604 +L 0.7624,1.104604,0.8741,3.230286 +L 0.8741,3.230286,0.8917,8.466144 +L 0.8917,8.466144,1.4415,8.466144 +L 1.4415,8.466144,1.9953,8.466144 +L 1.9953,8.466144,2.5662,8.466144 +L 2.5662,8.466144,2.5662,5.644066 +L 2.5662,5.644066,2.5662,2.822054 +L 2.5662,2.822054,2.5662,0.000019 +L 2.5662,0.000019,2.2716,0.000019 +L 2.2716,0.000019,1.9879,0.000019 +L 1.9879,0.000019,1.7151,0.000019 +L 3.4239,0.000019,4.2715,1.470392 +L 4.2715,1.470392,4.6291,2.635636 +L 4.6291,2.635636,4.7023,4.233082 +L 4.7023,4.233082,4.4116,4.233082 +L 4.4116,4.233082,4.1248,4.233082 +L 4.1248,4.233082,3.8512,4.233082 +L 3.8512,4.233082,3.8512,5.137043 +L 3.8512,5.137043,3.8512,6.024016 +L 3.8512,6.024016,3.8512,6.902606 +L 3.8512,6.902606,4.6813,6.902606 +L 4.6813,6.902606,5.5289,6.902606 +L 5.5289,6.902606,6.3835,6.902606 +L 6.3835,6.902606,6.5134,7.615903 +L 6.5134,7.615903,6.6567,8.31219 +L 6.6567,8.31219,6.8073,8.999962 +L 6.3835,0.000019,6.0826,0.512646 +L 6.0826,0.512646,5.9702,1.610227 +L 5.9702,1.610227,5.9527,4.233082 +L 5.9527,4.233082,5.6834,4.233082 +L 5.6834,4.233082,5.4063,4.233082 +L 5.4063,4.233082,5.13,4.233082 +L 6.8073,0.000019,7.0875,0.000019 +L 7.0875,0.000019,7.3677,0.000019 +L 7.3677,0.000019,7.6622,0.000019 +L 7.6622,0.000019,7.6622,0.533946 +L 7.6622,0.533946,7.6622,1.067807 +L 7.6622,1.067807,7.6622,1.601712 +L 1.3154,3.699133,1.5925,3.699133 +L 1.5925,3.699133,1.8653,3.699133 +L 1.8653,3.699133,2.142,3.699133 +L 6.3835,4.233082,6.6567,4.233082 +L 6.6567,4.233082,6.9372,4.233082 +L 6.9372,4.233082,7.2349,4.233082 +L 7.2349,4.233082,7.0875,5.137043 +L 7.0875,5.137043,6.9372,6.024016 +L 6.9372,6.024016,6.8073,6.902606 +L 1.3154,6.368679,1.5925,6.368679 +L 1.5925,6.368679,1.8653,6.368679 +L 1.8653,6.368679,2.142,6.368679 +L 4.7023,8.199214,4.5517,8.466144 +L 4.5517,8.466144,4.4116,8.733097 +L 4.4116,8.733097,4.275,8.999962 + +[驚] 78 +L 6.6275,0.000019,7.0758,0.415322 +L 7.0758,0.415322,7.2404,0.830603 +L 7.2404,0.830603,7.2646,1.601712 +L 7.2646,1.601712,5.4157,1.601712 +L 5.4157,1.601712,3.5769,1.601712 +L 3.5769,1.601712,1.7447,1.601712 +L 1.7447,1.601712,1.7447,2.668077 +L 1.7447,2.668077,1.7447,3.725992 +L 1.7447,3.725992,1.7447,4.766987 +L 1.7447,4.766987,2.172,4.870156 +L 2.172,4.870156,2.5997,4.95625 +L 2.5997,4.95625,3.0231,5.03394 +L 3.0231,5.03394,2.6803,5.59744 +L 2.6803,5.59744,2.2354,5.805026 +L 2.2354,5.805026,1.3139,5.834818 +L 1.3139,5.834818,1.2369,6.20483 +L 1.2369,6.20483,1.1672,6.557987 +L 1.1672,6.557987,1.1041,6.902606 +L 1.1041,6.902606,0.8901,6.738823 +L 0.8901,6.738823,0.6804,6.557987 +L 0.6804,6.557987,0.4628,6.368679 +L 4.277,2.135639,3.9338,2.511298 +L 3.9338,2.511298,3.3874,2.649711 +L 3.3874,2.649711,2.172,2.669544 +L 4.7047,2.669544,3.8536,3.529768 +L 3.8536,3.529768,3.1461,3.72886 +L 3.1461,3.72886,2.172,3.699133 +L 5.1355,2.669544,5.5558,2.669544 +L 5.5558,2.669544,5.9866,2.669544 +L 5.9866,2.669544,6.4135,2.669544 +L 4.7047,3.699133,4.277,4.155328 +L 4.277,4.155328,3.8606,4.603072 +L 3.8606,4.603072,3.4543,5.03394 +L 3.4543,5.03394,3.7517,5.656851 +L 3.7517,5.656851,3.8637,6.279739 +L 3.8637,6.279739,3.8816,7.436446 +L 3.8816,7.436446,3.4543,7.436446 +L 3.4543,7.436446,3.0231,7.436446 +L 3.0231,7.436446,2.5997,7.436446 +L 2.5997,7.436446,2.5997,7.091848 +L 2.5997,7.091848,2.5997,6.738823 +L 2.5997,6.738823,2.5997,6.368679 +L 5.1355,3.699133,5.5558,3.699133 +L 5.5558,3.699133,5.9866,3.699133 +L 5.9866,3.699133,6.4135,3.699133 +L 4.918,4.766987,5.2612,5.300848 +L 5.2612,5.300848,5.6223,5.834818 +L 5.6223,5.834818,5.9866,6.368679 +L 5.9866,6.368679,5.6885,6.901162 +L 5.6885,6.901162,5.4048,7.42526 +L 5.4048,7.42526,5.1355,7.932218 +L 5.1355,7.932218,4.9775,7.778329 +L 4.9775,7.778329,4.8343,7.615903 +L 4.8343,7.615903,4.7047,7.436446 +L 5.5558,4.766987,6.4766,4.786864 +L 6.4766,4.786864,6.9214,4.925188 +L 6.9214,4.925188,7.2646,5.300848 +L 7.2646,5.300848,6.9704,5.670926 +L 6.9704,5.670926,6.6867,6.024016 +L 6.6867,6.024016,6.4135,6.368679 +L 6.4135,6.368679,6.7151,6.782516 +L 6.7151,6.782516,6.8268,7.187947 +L 6.8268,7.187947,6.8408,7.932218 +L 6.8408,7.932218,6.2247,7.971774 +L 6.2247,7.971774,5.8916,8.248555 +L 5.8916,8.248555,5.5558,8.999962 +L 1.5314,7.436446,1.591,7.779686 +L 1.591,7.779686,1.6607,8.122949 +L 1.6607,8.122949,1.7447,8.466144 +L 1.7447,8.466144,1.3139,8.466144 +L 1.3139,8.466144,0.8901,8.466144 +L 0.8901,8.466144,0.4628,8.466144 +L 3.0231,8.199214,2.7293,8.302273 +L 2.7293,8.302273,2.4487,8.388456 +L 2.4487,8.388456,2.172,8.466144 +L 3.4543,8.466144,3.7306,8.466144 +L 3.7306,8.466144,4.0007,8.466144 +L 4.0007,8.466144,4.277,8.466144 + +[狭] 48 +L 0.4929,0.000019,1.1272,0.039553 +L 1.1272,0.039553,1.572,0.316312 +L 1.572,0.316312,2.2024,1.067807 +L 2.2024,1.067807,2.1184,2.478857 +L 2.1184,2.478857,2.048,3.889776 +L 2.048,3.889776,1.9884,5.300848 +L 1.9884,5.300848,1.4806,4.603072 +L 1.4806,4.603072,0.9836,3.888419 +L 0.9836,3.888419,0.4929,3.16525 +L 2.8115,0.000019,3.5855,1.247176 +L 3.5855,1.247176,4.3701,2.477325 +L 4.3701,2.477325,5.1616,3.699133 +L 5.1616,3.699133,4.7974,4.074837 +L 4.7974,4.074837,4.2443,4.213228 +L 4.2443,4.213228,3.0255,4.233082 +L 7.2666,0.000019,6.6961,1.066428 +L 6.6961,1.066428,6.1388,2.124299 +L 6.1388,2.124299,5.5924,3.16525 +L 5.5924,4.233082,4.9343,5.927983 +L 4.9343,5.927983,4.7522,7.038239 +L 4.7522,7.038239,3.0255,7.436446 +L 6.0127,4.233082,6.5665,4.233082 +L 6.5665,4.233082,7.123,4.233082 +L 7.123,4.233082,7.6939,4.233082 +L 3.8832,5.567823,3.7291,5.834818 +L 3.7291,5.834818,3.5855,6.101771 +L 3.5855,6.101771,3.4528,6.368679 +L 6.4089,5.300848,6.5451,5.670926 +L 6.5451,5.670926,6.6852,6.024016 +L 6.6852,6.024016,6.8393,6.368679 +L 1.7783,5.834818,1.7608,6.60597 +L 1.7608,6.60597,1.649,7.021142 +L 1.649,7.021142,1.3478,7.436446 +L 1.3478,7.436446,1.0533,7.091848 +L 1.0533,7.091848,0.7696,6.738823 +L 0.7696,6.738823,0.4929,6.368679 +L 5.5924,7.436446,5.2877,7.824889 +L 5.2877,7.824889,5.1791,8.23032 +L 5.1791,8.23032,5.1616,8.999962 +L 6.0127,7.436446,6.4225,7.436446 +L 6.4225,7.436446,6.8393,7.436446 +L 6.8393,7.436446,7.2666,7.436446 +L 1.3478,7.932218,1.0533,8.302273 +L 1.0533,8.302273,0.7696,8.655387 +L 0.7696,8.655387,0.4929,8.999962 +L 1.7783,7.932218,2.048,8.302273 +L 2.048,8.302273,2.3247,8.655387 +L 2.3247,8.655387,2.5978,8.999962 + +[眠] 54 +L 3.0552,0.000019,3.3322,0.000019 +L 3.3322,0.000019,3.6124,0.000019 +L 3.6124,0.000019,3.9098,0.000019 +L 3.9098,0.000019,3.9098,2.822054 +L 3.9098,2.822054,3.9098,5.644066 +L 3.9098,5.644066,3.9098,8.466144 +L 3.9098,8.466144,5.0411,8.466144 +L 5.0411,8.466144,6.1723,8.466144 +L 6.1723,8.466144,7.297,8.466144 +L 7.297,8.466144,7.297,7.778329 +L 7.297,7.778329,7.297,7.081976 +L 7.297,7.081976,7.297,6.368679 +L 7.297,6.368679,6.7187,6.368679 +L 6.7187,6.368679,6.1482,6.368679 +L 6.1482,6.368679,5.5874,6.368679 +L 5.5874,6.368679,5.5874,5.670926 +L 5.5874,5.670926,5.5874,4.95625 +L 5.5874,4.95625,5.5874,4.233082 +L 5.5874,4.233082,6.2918,4.233082 +L 6.2918,4.233082,7.0024,4.233082 +L 7.0024,4.233082,7.7243,4.233082 +L 4.3409,0.000019,4.6666,0.3757 +L 4.6666,0.3757,4.9924,0.514091 +L 4.9924,0.514091,5.5874,0.533946 +L 7.297,0.000019,6.8732,1.247176 +L 6.8732,1.247176,6.442,2.477325 +L 6.442,2.477325,6.0147,3.699133 +L 7.7243,0.000019,7.7243,0.533946 +L 7.7243,0.533946,7.7243,1.067807 +L 7.7243,1.067807,7.7243,1.601712 +L 0.5264,1.067807,0.5264,3.545244 +L 0.5264,3.545244,0.5264,6.014209 +L 0.5264,6.014209,0.5264,8.466144 +L 0.5264,8.466144,1.0728,8.466144 +L 1.0728,8.466144,1.6335,8.466144 +L 1.6335,8.466144,2.2009,8.466144 +L 2.2009,8.466144,2.2009,6.014209 +L 2.2009,6.014209,2.2009,3.545244 +L 2.2009,3.545244,2.2009,1.067807 +L 2.2009,1.067807,1.6335,1.067807 +L 1.6335,1.067807,1.0728,1.067807 +L 1.0728,1.067807,0.5264,1.067807 +L 0.9502,3.699133,1.2272,3.699133 +L 1.2272,3.699133,1.5001,3.699133 +L 1.5001,3.699133,1.7771,3.699133 +L 4.3409,4.233082,4.6138,4.233082 +L 4.6138,4.233082,4.8873,4.233082 +L 4.8873,4.233082,5.1636,4.233082 +L 0.9502,5.834818,1.2272,5.834818 +L 1.2272,5.834818,1.5001,5.834818 +L 1.5001,5.834818,1.7771,5.834818 +L 4.3409,6.368679,4.6138,6.368679 +L 4.6138,6.368679,4.8873,6.368679 +L 4.8873,6.368679,5.1636,6.368679 + +[較] 69 +L 1.8033,0.000019,1.6597,1.194836 +L 1.6597,1.194836,1.2222,1.576297 +L 1.2222,1.576297,0.5249,1.601712 +L 3.6985,0.000019,4.3356,0.637071 +L 4.3356,0.637071,4.98,1.257092 +L 4.98,1.257092,5.6213,1.868642 +L 5.6213,1.868642,5.3232,2.668077 +L 5.3232,2.668077,5.0431,3.459128 +L 5.0431,3.459128,4.7667,4.233082 +L 7.3302,0.000019,6.8997,0.637071 +L 6.8997,0.637071,6.4724,1.257092 +L 6.4724,1.257092,6.0451,1.868642 +L 6.0451,1.868642,6.3253,2.668077 +L 6.3253,2.668077,6.6051,3.459128 +L 6.6051,3.459128,6.8997,4.233082 +L 2.2344,1.601712,1.9399,2.134194 +L 1.9399,2.134194,1.653,2.65827 +L 1.653,2.65827,1.3795,3.16525 +L 1.3795,3.16525,1.0856,3.16525 +L 1.0856,3.16525,0.8019,3.16525 +L 0.8019,3.16525,0.5249,3.16525 +L 0.5249,3.16525,0.5249,4.233082 +L 0.5249,4.233082,0.5249,5.300848 +L 0.5249,5.300848,0.5249,6.368679 +L 0.5249,6.368679,1.1417,6.398319 +L 1.1417,6.398319,1.4776,6.60597 +L 1.4776,6.60597,1.8033,7.169515 +L 1.8033,7.169515,1.4776,7.706222 +L 1.4776,7.706222,1.1417,7.903979 +L 1.1417,7.903979,0.5249,7.932218 +L 2.6617,1.601712,2.9381,1.601712 +L 2.9381,1.601712,3.2183,1.601712 +L 3.2183,1.601712,3.5128,1.601712 +L 2.2344,3.16525,1.8033,3.699133 +L 1.8033,3.699133,1.3795,4.233082 +L 1.3795,4.233082,0.9522,4.766987 +L 2.875,3.16525,2.9381,3.699133 +L 2.9381,3.699133,3.005,4.233082 +L 3.005,4.233082,3.089,4.766987 +L 3.089,4.766987,2.4723,4.796648 +L 2.4723,4.796648,2.1364,5.004278 +L 2.1364,5.004278,1.8033,5.567823 +L 1.8033,5.567823,2.1364,6.131433 +L 2.1364,6.131433,2.4723,6.339018 +L 2.4723,6.339018,3.089,6.368679 +L 3.089,6.368679,3.089,6.024016 +L 3.089,6.024016,3.089,5.670926 +L 3.089,5.670926,3.089,5.300848 +L 3.9156,4.766987,4.1853,5.300848 +L 4.1853,5.300848,4.469,5.834818 +L 4.469,5.834818,4.7667,6.368679 +L 7.7263,4.766987,7.4461,5.300848 +L 7.4461,5.300848,7.1764,5.834818 +L 7.1764,5.834818,6.8997,6.368679 +L 3.6985,7.703464,3.2116,7.779686 +L 3.2116,7.779686,2.7213,7.856018 +L 2.7213,7.856018,2.2344,7.932218 +L 2.2344,7.932218,2.0803,8.302273 +L 2.0803,8.302273,1.9399,8.655387 +L 1.9399,8.655387,1.8033,8.999962 +L 4.3356,7.436446,4.7667,7.436446 +L 4.7667,7.436446,5.1905,7.436446 +L 5.1905,7.436446,5.6213,7.436446 +L 5.6213,7.436446,5.6213,7.968928 +L 5.6213,7.968928,5.6213,8.493026 +L 5.6213,8.493026,5.6213,8.999962 +L 6.0451,7.436446,6.595,7.436446 +L 6.595,7.436446,7.1554,7.436446 +L 7.1554,7.436446,7.7263,7.436446 + +[嫁] 64 +L 0.5588,0.000019,0.9826,0.800789 +L 0.9826,0.800789,1.4099,1.601712 +L 1.4099,1.601712,1.8372,2.402504 +L 1.8372,2.402504,1.4099,2.505716 +L 1.4099,2.505716,0.9826,2.591877 +L 0.9826,2.591877,0.5588,2.669544 +L 0.5588,2.669544,0.6638,4.420923 +L 0.6638,4.420923,0.8701,6.180795 +L 0.8701,6.180795,0.9826,8.999962 +L 4.3726,0.000019,5.003,0.039553 +L 5.003,0.039553,5.4377,0.316312 +L 5.4377,0.316312,6.0471,1.067807 +L 6.0471,1.067807,5.963,1.781169 +L 5.963,1.781169,5.8961,2.477325 +L 5.8961,2.477325,5.8331,3.16525 +L 5.8331,3.16525,5.0489,2.65827 +L 5.0489,2.65827,4.278,2.134194 +L 4.278,2.134194,3.5148,1.601712 +L 7.7559,1.067807,7.3287,1.601712 +L 7.3287,1.601712,6.8982,2.135639 +L 6.8982,2.135639,6.4744,2.669544 +L 1.8372,3.16525,2.1174,3.659578 +L 2.1174,3.659578,2.2154,4.628531 +L 2.2154,4.628531,2.2326,6.902606 +L 2.2326,6.902606,1.9629,6.902606 +L 1.9629,6.902606,1.6827,6.902606 +L 1.6827,6.902606,1.4099,6.902606 +L 3.7281,3.16525,4.215,3.621466 +L 4.215,3.621466,4.7158,4.069233 +L 4.7158,4.069233,5.2237,4.500056 +L 5.2237,4.500056,5.0065,4.766987 +L 5.0065,4.766987,4.7932,5.03394 +L 4.7932,5.03394,4.5831,5.300848 +L 4.5831,5.300848,4.215,5.137043 +L 4.215,5.137043,3.8581,4.95625 +L 3.8581,4.95625,3.5148,4.766987 +L 6.6881,4.233082,7.0348,4.603072 +L 7.0348,4.603072,7.3917,4.95625 +L 7.3917,4.95625,7.7559,5.300848 +L 5.2237,6.101771,4.7932,6.20483 +L 4.7932,6.20483,4.3726,6.290991 +L 4.3726,6.290991,3.9421,6.368679 +L 5.651,6.368679,6.0538,6.368679 +L 6.0538,6.368679,6.4744,6.368679 +L 6.4744,6.368679,6.8982,6.368679 +L 3.0837,6.902606,3.0837,7.245803 +L 3.0837,7.245803,3.0837,7.589044 +L 3.0837,7.589044,3.0837,7.932218 +L 3.0837,7.932218,3.7912,7.932218 +L 3.7912,7.932218,4.4987,7.932218 +L 4.4987,7.932218,5.2237,7.932218 +L 5.2237,7.932218,5.2237,8.302273 +L 5.2237,8.302273,5.2237,8.655387 +L 5.2237,8.655387,5.2237,8.999962 +L 7.7559,6.902606,7.7559,7.245803 +L 7.7559,7.245803,7.7559,7.589044 +L 7.7559,7.589044,7.7559,7.932218 +L 7.7559,7.932218,7.0523,7.932218 +L 7.0523,7.932218,6.3518,7.932218 +L 6.3518,7.932218,5.651,7.932218 +L 3.9561,6.330306,0.3556,6.330306 +L 1.2169,3.326538,1.8372,8.999896 +A -4.1801,-3.399548,8.620982,23.224227,51.278884 +A -6.0364,6.330306,9.138971,316.15783,0 + +[殻] 69 +L 0.5849,0.000019,1.1667,1.18503 +L 1.1667,1.18503,1.38,2.005676 +L 1.38,2.005676,1.4119,3.16525 +L 1.4119,3.16525,1.9649,3.16525 +L 1.9649,3.16525,2.5396,3.16525 +L 2.5396,3.16525,3.1207,3.16525 +L 3.1207,3.16525,3.1767,2.288083 +L 3.1767,2.288083,3.2506,1.411047 +L 3.2506,1.411047,3.3312,0.533946 +L 3.3312,0.533946,3.541,0.723209 +L 3.541,0.723209,3.7585,0.904023 +L 3.7585,0.904023,3.9718,1.067807 +L 2.263,0.000019,2.5396,0.000019 +L 2.5396,0.000019,2.8233,0.000019 +L 2.8233,0.000019,3.1207,0.000019 +L 4.5812,0.000019,5.0719,0.533946 +L 5.0719,0.533946,5.5689,1.067807 +L 5.5689,1.067807,6.0768,1.601712 +L 6.0768,1.601712,5.4782,2.741497 +L 5.4782,2.741497,5.254,3.423796 +L 5.254,3.423796,5.2222,4.233082 +L 5.2222,4.233082,5.7829,4.233082 +L 5.7829,4.233082,6.3535,4.233082 +L 6.3535,4.233082,6.9317,4.233082 +L 6.9317,4.233082,6.7808,3.545244 +L 6.7808,3.545244,6.6372,2.848935 +L 6.6372,2.848935,6.5041,2.135639 +L 7.3625,0.000019,7.0645,0.37014 +L 7.0645,0.37014,6.7808,0.723209 +L 6.7808,0.723209,6.5041,1.067807 +L 0.5849,3.699133,0.5849,4.069233 +L 0.5849,4.069233,0.5849,4.422324 +L 0.5849,4.422324,0.5849,4.766987 +L 0.5849,4.766987,1.7166,4.766987 +L 1.7166,4.766987,2.8405,4.766987 +L 2.8405,4.766987,3.9718,4.766987 +L 3.9718,4.766987,3.9718,4.422324 +L 3.9718,4.422324,3.9718,4.069233 +L 3.9718,4.069233,3.9718,3.699133 +L 4.3991,5.834818,4.977,6.64406 +L 4.977,6.64406,5.1945,7.326294 +L 5.1945,7.326294,5.2222,8.466144 +L 5.2222,8.466144,5.653,8.466144 +L 5.653,8.466144,6.0768,8.466144 +L 6.0768,8.466144,6.5041,8.466144 +L 6.5041,8.466144,6.5041,7.589044 +L 6.5041,7.589044,6.5041,6.711855 +L 6.5041,6.711855,6.5041,5.834818 +L 6.5041,5.834818,6.9317,5.834818 +L 6.9317,5.834818,7.3625,5.834818 +L 7.3625,5.834818,7.7863,5.834818 +L 7.7863,5.834818,7.7863,6.20483 +L 7.7863,6.20483,7.7863,6.557987 +L 7.7863,6.557987,7.7863,6.902606 +L 0.9811,6.368679,1.4119,6.368679 +L 1.4119,6.368679,1.8357,6.368679 +L 1.8357,6.368679,2.263,6.368679 +L 2.263,6.368679,2.0314,7.655436 +L 2.0314,7.655436,1.4259,7.967548 +L 1.4259,7.967548,0.5849,7.932218 +L 2.6899,6.368679,2.9669,6.368679 +L 2.9669,6.368679,3.2506,6.368679 +L 3.2506,6.368679,3.541,6.368679 +L 2.6899,7.932218,2.5396,8.302273 +L 2.5396,8.302273,2.3922,8.655387 +L 2.3922,8.655387,2.263,8.999962 +L 3.1207,7.932218,3.3942,7.932218 +L 3.3942,7.932218,3.6744,7.932218 +L 3.6744,7.932218,3.9718,7.932218 + +[恐] 51 +L 0.5838,0.267015,0.7204,0.904023 +L 0.7204,0.904023,0.8605,1.524045 +L 0.8605,1.524045,1.0142,2.135639 +L 3.1157,0.000019,2.839,0.45479 +L 2.839,0.45479,2.7374,1.146831 +L 2.7374,1.146831,2.7203,2.669544 +L 3.5465,0.000019,4.4014,0.000019 +L 4.4014,0.000019,5.2525,0.000019 +L 5.2525,0.000019,6.1103,0.000019 +L 6.1103,0.000019,6.1103,0.37014 +L 6.1103,0.37014,6.1103,0.723209 +L 6.1103,0.723209,6.1103,1.067807 +L 7.7848,0.800789,7.5148,1.257092 +L 7.5148,1.257092,7.2349,1.704771 +L 7.2349,1.704771,6.9614,2.135639 +L 4.8249,2.402504,4.6743,2.668077 +L 4.6743,2.668077,4.531,2.925179 +L 4.531,2.925179,4.4014,3.16525 +L 3.1157,3.699133,4.0197,5.31639 +L 4.0197,5.31639,4.3521,6.620156 +L 4.3521,6.620156,4.4014,8.466144 +L 4.4014,8.466144,5.1051,8.466144 +L 5.1051,8.466144,5.8126,8.466144 +L 5.8126,8.466144,6.5344,8.466144 +L 6.5344,8.466144,6.5344,7.055051 +L 6.5344,7.055051,6.5344,5.644066 +L 6.5344,5.644066,6.5344,4.233082 +L 6.5344,4.233082,6.9404,4.233082 +L 6.9404,4.233082,7.361,4.233082 +L 7.361,4.233082,7.7848,4.233082 +L 7.7848,4.233082,7.7848,4.603072 +L 7.7848,4.603072,7.7848,4.95625 +L 7.7848,4.95625,7.7848,5.300848 +L 0.5838,4.766987,1.0142,4.766987 +L 1.0142,4.766987,1.4415,4.766987 +L 1.4415,4.766987,1.8688,4.766987 +L 1.8688,4.766987,1.8688,6.014209 +L 1.8688,6.014209,1.8688,7.244358 +L 1.8688,7.244358,1.8688,8.466144 +L 1.8688,8.466144,1.4415,8.466144 +L 1.4415,8.466144,1.0142,8.466144 +L 1.0142,8.466144,0.5838,8.466144 +L 2.2926,5.300848,2.5693,5.300848 +L 2.5693,5.300848,2.8429,5.300848 +L 2.8429,5.300848,3.1157,5.300848 +L 5.6798,5.834818,5.3853,6.20483 +L 5.3853,6.20483,5.1051,6.557987 +L 5.1051,6.557987,4.8249,6.902606 +L 2.2926,8.466144,2.5693,8.466144 +L 2.5693,8.466144,2.8429,8.466144 +L 2.8429,8.466144,3.1157,8.466144 + +[挟] 48 +L 1.0446,0.000019,1.3174,0.000019 +L 1.3174,0.000019,1.5945,0.000019 +L 1.5945,0.000019,1.8638,0.000019 +L 1.8638,0.000019,1.8537,2.622961 +L 1.8537,2.622961,1.7521,3.720432 +L 1.7521,3.720432,1.4719,4.233082 +L 1.4719,4.233082,1.1773,4.069233 +L 1.1773,4.069233,0.8901,3.888419 +L 0.8901,3.888419,0.6173,3.699133 +L 3.5734,0.000019,4.2735,1.247176 +L 4.2735,1.247176,4.9775,2.477325 +L 4.9775,2.477325,5.6783,3.699133 +L 5.6783,3.699133,5.3386,4.074837 +L 5.3386,4.074837,4.7922,4.213228 +L 4.7922,4.213228,3.5734,4.233082 +L 7.818,0.000019,7.2369,1.066428 +L 7.2369,1.066428,6.6657,2.124299 +L 6.6657,2.124299,6.1091,3.16525 +L 2.2946,4.233082,1.9798,5.043834 +L 1.9798,5.043834,1.7658,6.091876 +L 1.7658,6.091876,1.4719,6.902606 +L 1.4719,6.902606,1.1773,6.902606 +L 1.1773,6.902606,0.8901,6.902606 +L 0.8901,6.902606,0.6173,6.902606 +L 6.1091,4.233082,5.7936,5.182312 +L 5.7936,5.182312,5.5803,6.487281 +L 5.5803,6.487281,5.2822,7.436446 +L 5.2822,7.436446,4.8584,7.436446 +L 4.8584,7.436446,4.4311,7.436446 +L 4.4311,7.436446,4.0042,7.436446 +L 6.5361,4.233082,6.9634,4.233082 +L 6.9634,4.233082,7.3907,4.233082 +L 7.3907,4.233082,7.818,4.233082 +L 4.4311,5.567823,4.2809,5.834818 +L 4.2809,5.834818,4.1334,6.101771 +L 4.1334,6.101771,4.0042,6.368679 +L 6.9634,5.300848,7.0933,5.670926 +L 7.0933,5.670926,7.2369,6.024016 +L 7.2369,6.024016,7.3907,6.368679 +L 2.2946,6.902606,1.9938,7.336275 +L 1.9938,7.336275,1.8813,7.880097 +L 1.8813,7.880097,1.8638,8.999962 +L 6.1091,7.436446,5.8044,7.824889 +L 5.8044,7.824889,5.6955,8.23032 +L 5.6955,8.23032,5.6783,8.999962 +L 6.5361,7.436446,6.8131,7.436446 +L 6.8131,7.436446,7.0933,7.436446 +L 7.0933,7.436446,7.3907,7.436446 + +[巧] 33 +L 5.2842,0.000019,5.7115,0.000019 +L 5.7115,0.000019,6.1427,0.000019 +L 6.1427,0.000019,6.5661,0.000019 +L 6.5661,0.000019,7.2634,1.823461 +L 7.2634,1.823461,7.4347,3.42662 +L 7.4347,3.42662,7.4211,5.300848 +L 7.4211,5.300848,6.4124,5.300848 +L 6.4124,5.300848,5.4177,5.300848 +L 5.4177,5.300848,4.4331,5.300848 +L 4.4331,5.300848,4.2864,4.95625 +L 4.2864,4.95625,4.1564,4.603072 +L 4.1564,4.603072,4.0303,4.233082 +L 0.6158,2.669544,1.0431,2.669544 +L 1.0431,2.669544,1.4704,2.669544 +L 1.4704,2.669544,1.9008,2.669544 +L 1.9008,2.669544,1.9008,4.423725 +L 1.9008,4.423725,1.9008,6.178015 +L 1.9008,6.178015,1.9008,7.932218 +L 1.9008,7.932218,1.4704,7.932218 +L 1.4704,7.932218,1.0431,7.932218 +L 1.0431,7.932218,0.6158,7.932218 +L 2.3215,3.16525,2.6017,3.16525 +L 2.6017,3.16525,2.8815,3.16525 +L 2.8815,3.16525,3.1792,3.16525 +L 4.4331,6.101771,4.7312,6.723194 +L 4.7312,6.723194,4.8429,7.336275 +L 4.8429,7.336275,4.8569,8.466144 +L 4.8569,8.466144,3.8345,8.327754 +L 3.8345,8.327754,3.085,8.070674 +L 3.085,8.070674,2.3215,7.932218 +L 5.2842,8.466144,6.1427,8.466144 +L 6.1427,8.466144,6.9938,8.466144 +L 6.9938,8.466144,7.8484,8.466144 + +[攻] 36 +L 2.9679,0.000019,3.8852,0.800789 +L 3.8852,0.800789,4.8067,1.601712 +L 4.8067,1.601712,5.7419,2.402504 +L 5.7419,2.402504,5.1184,3.413859 +L 5.1184,3.413859,4.7297,4.442069 +L 4.7297,4.442069,4.2495,6.368679 +L 4.2495,6.368679,3.8852,6.024016 +L 3.8852,6.024016,3.5245,5.670926 +L 3.5245,5.670926,3.1812,5.300848 +L 7.4157,0.000019,6.9958,0.533946 +L 6.9958,0.533946,6.5755,1.067807 +L 6.5755,1.067807,6.1692,1.601712 +L 0.649,2.669544,1.0763,2.669544 +L 1.0763,2.669544,1.5001,2.669544 +L 1.5001,2.669544,1.9274,2.669544 +L 1.9274,2.669544,1.9274,4.423725 +L 1.9274,4.423725,1.9274,6.178015 +L 1.9274,6.178015,1.9274,7.932218 +L 1.9274,7.932218,1.5001,7.932218 +L 1.5001,7.932218,1.0763,7.932218 +L 1.0763,7.932218,0.649,7.932218 +L 2.3585,3.16525,2.6314,3.16525 +L 2.6314,3.16525,2.9049,3.16525 +L 2.9049,3.16525,3.1812,3.16525 +L 6.1692,3.432246,6.7467,4.806412 +L 6.7467,4.806412,6.9639,5.706279 +L 6.9639,5.706279,6.9958,6.902606 +L 6.9958,6.902606,6.1408,7.005732 +L 6.1408,7.005732,5.2936,7.091848 +L 5.2936,7.091848,4.4596,7.169515 +L 4.4596,7.169515,4.5927,7.779686 +L 4.5927,7.779686,4.7363,8.389857 +L 4.7363,8.389857,4.8908,8.999962 +L 2.3585,7.932218,2.6314,7.932218 +L 2.6314,7.932218,2.9049,7.932218 +L 2.9049,7.932218,3.1812,7.932218 + +[傘] 42 +L 4.0627,0.000019,3.4809,1.584812 +L 3.4809,1.584812,2.143,1.77123 +L 2.143,1.77123,0.6793,1.601712 +L 4.49,1.601712,4.1884,2.154005 +L 4.1884,2.154005,4.0767,3.528367 +L 4.0767,3.528367,4.0627,6.902606 +L 4.917,1.601712,5.7505,1.601712 +L 5.7505,1.601712,6.5981,1.601712 +L 6.5981,1.601712,7.4527,1.601712 +L 0.8926,2.669544,1.2292,3.202048 +L 1.2292,3.202048,1.5725,3.725992 +L 1.5725,3.725992,1.9332,4.233082 +L 3.2081,2.669544,2.9136,2.848935 +L 2.9136,2.848935,2.6334,3.011295 +L 2.6334,3.011295,2.3532,3.16525 +L 5.0991,2.669544,5.4458,3.202048 +L 5.4458,3.202048,5.8034,3.725992 +L 5.8034,3.725992,6.1712,4.233082 +L 7.4527,2.669544,7.1554,2.848935 +L 7.1554,2.848935,6.8752,3.011295 +L 6.8752,3.011295,6.5981,3.16525 +L 0.8926,4.766987,1.2292,5.223181 +L 1.2292,5.223181,1.5725,5.670926 +L 1.5725,5.670926,1.9332,6.101771 +L 1.9332,6.101771,1.5966,6.665403 +L 1.5966,6.665403,1.2744,6.872946 +L 1.2744,6.872946,0.6793,6.902606 +L 3.2081,4.766987,2.9136,4.95625 +L 2.9136,4.95625,2.6334,5.137043 +L 2.6334,5.137043,2.3532,5.300848 +L 5.0991,4.766987,5.5929,5.490068 +L 5.5929,5.490068,6.0906,6.20483 +L 6.0906,6.20483,6.5981,6.902606 +L 6.5981,6.902606,5.7439,7.615903 +L 5.7439,7.615903,4.8994,8.31219 +L 4.8994,8.31219,4.0627,8.999962 +L 4.0627,8.999962,3.3409,8.493026 +L 3.3409,8.493026,2.6334,7.968928 +L 2.6334,7.968928,1.9332,7.436446 +L 7.4527,4.766987,7.1554,4.95625 +L 7.1554,4.95625,6.8752,5.137043 +L 6.8752,5.137043,6.5981,5.300848 + +[煮] 54 +L 0.6813,0.000019,0.8106,0.37014 +L 0.8106,0.37014,0.9542,0.723209 +L 0.9542,0.723209,1.1016,1.067807 +L 3.2413,0.267015,3.091,0.533946 +L 3.091,0.533946,2.9474,0.800789 +L 2.9474,0.800789,2.814,1.067807 +L 5.3463,0.267015,5.1925,0.533946 +L 5.1925,0.533946,5.0524,0.800789 +L 5.0524,0.800789,4.9225,1.067807 +L 7.4796,0.267015,7.3321,0.533946 +L 7.3321,0.533946,7.1819,0.800789 +L 7.1819,0.800789,7.0558,1.067807 +L 2.814,2.135639,2.814,2.848935 +L 2.814,2.848935,2.814,3.545244 +L 2.814,3.545244,2.814,4.233082 +L 2.814,4.233082,2.068,4.094691 +L 2.068,4.094691,1.42,3.837633 +L 1.42,3.837633,0.6813,3.699133 +L 3.2413,2.135639,4.3694,2.135639 +L 4.3694,2.135639,5.5007,2.135639 +L 5.5007,2.135639,6.6285,2.135639 +L 6.6285,2.135639,6.6285,2.668077 +L 6.6285,2.668077,6.6285,3.192175 +L 6.6285,3.192175,6.6285,3.699133 +L 6.6285,3.699133,5.5007,3.699133 +L 5.5007,3.699133,4.3694,3.699133 +L 4.3694,3.699133,3.2413,3.699133 +L 6.6285,4.500056,5.3463,4.603072 +L 5.3463,4.603072,4.0714,4.689298 +L 4.0714,4.689298,2.814,4.766987 +L 3.6686,5.300848,3.7912,5.567823 +L 3.7912,5.567823,3.9211,5.834818 +L 3.9211,5.834818,4.0647,6.101771 +L 4.0647,6.101771,2.9366,6.20483 +L 2.9366,6.20483,1.8053,6.290991 +L 1.8053,6.290991,0.6813,6.368679 +L 4.7057,6.368679,5.1365,7.138431 +L 5.1365,7.138431,5.1925,7.543796 +L 5.1925,7.543796,4.9225,7.932218 +L 4.9225,7.932218,4.1593,7.741597 +L 4.1593,7.741597,3.8332,7.474688 +L 3.8332,7.474688,3.6686,6.902606 +L 5.3463,6.368679,6.1763,6.368679 +L 6.1763,6.368679,7.0274,6.368679 +L 7.0274,6.368679,7.8785,6.368679 +L 1.9597,7.932218,2.3902,7.932218 +L 2.3902,7.932218,2.814,7.932218 +L 2.814,7.932218,3.2413,7.932218 +L 3.2413,7.932218,3.3712,8.302273 +L 3.3712,8.302273,3.5183,8.655387 +L 3.5183,8.655387,3.6686,8.999962 +L 5.7736,7.932218,6.0502,8.302273 +L 6.0502,8.302273,6.3308,8.655387 +L 6.3308,8.655387,6.6285,8.999962 + +[襲] 72 +L 1.5656,0.000019,2.1614,0.019764 +L 2.1614,0.019764,2.4836,0.15822 +L 2.4836,0.15822,2.8125,0.533946 +L 2.8125,0.533946,2.7319,1.067807 +L 2.7319,1.067807,2.6657,1.601712 +L 2.6657,1.601712,2.5992,2.135639 +L 2.5992,2.135639,2.1228,1.759869 +L 2.1228,1.759869,1.6325,1.621479 +L 1.6325,1.621479,0.7075,1.601712 +L 7.0543,0.000019,6.2032,0.990052 +L 6.2032,0.990052,5.3556,1.97179 +L 5.3556,1.97179,4.5217,2.936474 +L 4.5217,2.936474,4.0944,2.858785 +L 4.0944,2.858785,3.6706,2.772604 +L 3.6706,2.772604,3.2398,2.669544 +L 3.4573,0.533946,3.8005,0.723209 +L 3.8005,0.723209,4.1578,0.904023 +L 4.1578,0.904023,4.5217,1.067807 +L 6.1958,2.135639,6.3359,2.402504 +L 6.3359,2.402504,6.476,2.669544 +L 6.476,2.669544,6.6266,2.936474 +L 6.6266,2.936474,6.0557,3.01274 +L 6.0557,3.01274,5.4992,3.089006 +L 5.4992,3.089006,4.9493,3.16525 +L 0.7075,3.16525,1.4118,3.16525 +L 1.4118,3.16525,2.112,3.16525 +L 2.112,3.16525,2.8125,3.16525 +L 1.5656,4.233082,1.5656,5.137043 +L 1.5656,5.137043,1.5656,6.024016 +L 1.5656,6.024016,1.5656,6.902606 +L 1.5656,6.902606,1.2682,7.091848 +L 1.2682,7.091848,0.9846,7.272684 +L 0.9846,7.272684,0.7075,7.436446 +L 3.2398,4.233082,3.2398,4.603072 +L 3.2398,4.603072,3.2398,4.95625 +L 3.2398,4.95625,3.2398,5.300848 +L 3.2398,5.300848,2.8125,5.300848 +L 2.8125,5.300848,2.3995,5.300848 +L 2.3995,5.300848,1.9894,5.300848 +L 5.3801,4.233082,5.0754,4.668043 +L 5.0754,4.668043,4.963,5.221737 +L 4.963,5.221737,4.9493,6.368679 +L 4.9493,6.368679,5.6495,6.368679 +L 5.6495,6.368679,6.3538,6.368679 +L 6.3538,6.368679,7.0543,6.368679 +L 7.0543,6.368679,7.0543,6.738823 +L 7.0543,6.738823,7.0543,7.091848 +L 7.0543,7.091848,7.0543,7.436446 +L 7.0543,7.436446,6.3538,7.436446 +L 6.3538,7.436446,5.6495,7.436446 +L 5.6495,7.436446,4.9493,7.436446 +L 4.9493,7.436446,4.9493,7.779686 +L 4.9493,7.779686,4.9493,8.122949 +L 4.9493,8.122949,4.9493,8.466144 +L 4.9493,8.466144,5.6495,8.466144 +L 5.6495,8.466144,6.3538,8.466144 +L 6.3538,8.466144,7.0543,8.466144 +L 5.8039,4.233082,6.3538,4.336163 +L 6.3538,4.336163,6.9103,4.422324 +L 6.9103,4.422324,7.4851,4.500056 +L 7.4851,4.500056,7.1208,5.063623 +L 7.1208,5.063623,6.5745,5.271143 +L 6.5745,5.271143,5.3801,5.300848 +L 3.2398,6.101771,2.8125,6.20483 +L 2.8125,6.20483,2.3995,6.290991 +L 2.3995,6.290991,1.9894,6.368679 +L 3.2398,6.902606,2.7109,7.306592 +L 2.7109,7.306592,2.091,7.642718 +L 2.091,7.642718,1.5656,8.199214 +L 1.5656,8.199214,2.774,8.170844 +L 2.774,8.170844,3.4328,7.973131 +L 3.4328,7.973131,4.0944,7.436446 + +[刃] 27 +L 0.9235,0.000019,1.8408,1.066428 +L 1.8408,1.066428,2.7623,2.124299 +L 2.7623,2.124299,3.6974,3.16525 +L 3.6974,3.16525,3.6134,3.699133 +L 3.6134,3.699133,3.5465,4.233082 +L 3.5465,4.233082,3.487,4.766987 +L 3.487,4.766987,2.9791,5.137043 +L 2.9791,5.137043,2.4786,5.490068 +L 2.4786,5.490068,1.9879,5.834818 +L 5.3786,0.000019,5.8024,0.000019 +L 5.8024,0.000019,6.2329,0.000019 +L 6.2329,0.000019,6.6602,0.000019 +L 6.6602,0.000019,7.4903,2.737294 +L 7.4903,2.737294,7.5953,5.550901 +L 7.5953,5.550901,7.5113,8.466144 +L 7.5113,8.466144,6.3835,8.466144 +L 6.3835,8.466144,5.256,8.466144 +L 5.256,8.466144,4.1279,8.466144 +L 4.1279,8.466144,4.1279,7.42526 +L 4.1279,7.42526,4.1279,6.367213 +L 4.1279,6.367213,4.1279,5.300848 +L 5.3786,2.669544,4.9513,3.202048 +L 4.9513,3.202048,4.531,3.725992 +L 4.531,3.725992,4.1279,4.233082 +L 1.1333,8.466144,1.9879,8.466144 +L 1.9879,8.466144,2.8428,8.466144 +L 2.8428,8.466144,3.6974,8.466144 + +[怒] 51 +L 0.7399,0.267015,0.8691,0.904023 +L 0.8691,0.904023,1.0162,1.524045 +L 1.0162,1.524045,1.1707,2.135639 +L 3.2721,0.000019,2.992,0.45479 +L 2.992,0.45479,2.8904,1.146831 +L 2.8904,1.146831,2.876,2.669544 +L 3.7026,0.000019,4.5537,0.000019 +L 4.5537,0.000019,5.4083,0.000019 +L 5.4083,0.000019,6.2594,0.000019 +L 6.2594,0.000019,6.2594,0.37014 +L 6.2594,0.37014,6.2594,0.723209 +L 6.2594,0.723209,6.2594,1.067807 +L 7.9371,0.800789,7.6642,1.257092 +L 7.6642,1.257092,7.3907,1.704771 +L 7.3907,1.704771,7.1178,2.135639 +L 4.981,1.868642,4.8307,2.135639 +L 4.8307,2.135639,4.6833,2.402504 +L 4.6833,2.402504,4.5537,2.669544 +L 0.9532,3.699133,1.44,4.155328 +L 1.44,4.155328,1.9377,4.603072 +L 1.9377,4.603072,2.4487,5.03394 +L 2.4487,5.03394,1.9864,5.675107 +L 1.9864,5.675107,1.7657,6.426557 +L 1.7657,6.426557,1.5945,7.932218 +L 1.5945,7.932218,1.2964,7.932218 +L 1.2964,7.932218,1.0162,7.932218 +L 1.0162,7.932218,0.7399,7.932218 +L 4.3365,3.699133,4.8307,4.155328 +L 4.8307,4.155328,5.3277,4.603072 +L 5.3277,4.603072,5.8356,5.03394 +L 5.8356,5.03394,5.2335,6.406747 +L 5.2335,6.406747,5.0129,7.296588 +L 5.0129,7.296588,4.981,8.466144 +L 4.981,8.466144,5.8146,8.466144 +L 5.8146,8.466144,6.6587,8.466144 +L 6.6587,8.466144,7.5133,8.466144 +L 7.5133,8.466144,7.2019,7.118729 +L 7.2019,7.118729,6.8797,6.2288 +L 6.8797,6.2288,6.2594,5.03394 +L 6.2594,5.03394,6.8131,4.603072 +L 6.8131,4.603072,7.3662,4.155328 +L 7.3662,4.155328,7.9371,3.699133 +L 3.2721,4.766987,3.2053,5.596149 +L 3.2053,5.596149,3.4963,6.772643 +L 3.4963,6.772643,3.7026,7.932218 +L 3.7026,7.932218,3.1321,7.932218 +L 3.1321,7.932218,2.5713,7.932218 +L 2.5713,7.932218,2.0218,7.932218 +L 2.0218,7.932218,2.0218,8.302273 +L 2.0218,8.302273,2.0218,8.655387 +L 2.0218,8.655387,2.0218,8.999962 + +[普] 51 +L 2.4507,0.000019,2.4507,1.247176 +L 2.4507,1.247176,2.4507,2.477325 +L 2.4507,2.477325,2.4507,3.699133 +L 2.4507,3.699133,3.7116,3.699133 +L 3.7116,3.699133,4.983,3.699133 +L 4.983,3.699133,6.2652,3.699133 +L 6.2652,3.699133,6.2652,2.477325 +L 6.2652,2.477325,6.2652,1.247176 +L 6.2652,1.247176,6.2652,0.000019 +L 6.2652,0.000019,4.983,0.000019 +L 4.983,0.000019,3.7116,0.000019 +L 3.7116,0.000019,2.4507,0.000019 +L 2.8745,2.135639,3.8556,2.135639 +L 3.8556,2.135639,4.8359,2.135639 +L 4.8359,2.135639,5.8341,2.135639 +L 0.7695,5.300848,1.3194,5.300848 +L 1.3194,5.300848,1.8802,5.300848 +L 1.8802,5.300848,2.4507,5.300848 +L 2.4507,5.300848,2.4332,6.072022 +L 2.4332,6.072022,2.325,6.487281 +L 2.325,6.487281,2.0203,6.902606 +L 2.8745,5.300848,3.1516,5.300848 +L 3.1516,5.300848,3.4353,5.300848 +L 3.4353,5.300848,3.7291,5.300848 +L 3.7291,5.300848,3.7291,6.178015 +L 3.7291,6.178015,3.7291,7.055051 +L 3.7291,7.055051,3.7291,7.932218 +L 3.7291,7.932218,2.878,7.932218 +L 2.878,7.932218,2.0304,7.932218 +L 2.0304,7.932218,1.1968,7.932218 +L 4.1603,5.300848,4.43,5.300848 +L 4.43,5.300848,4.7168,5.300848 +L 4.7168,5.300848,5.0114,5.300848 +L 5.0114,5.300848,5.0114,6.178015 +L 5.0114,6.178015,5.0114,7.055051 +L 5.0114,7.055051,5.0114,7.932218 +L 5.0114,7.932218,4.7168,7.932218 +L 4.7168,7.932218,4.43,7.932218 +L 4.43,7.932218,4.1603,7.932218 +L 5.4387,5.300848,6.0337,5.538139 +L 6.0337,5.538139,6.3595,5.953486 +L 6.3595,5.953486,6.6925,6.902606 +L 6.6925,5.300848,7.1163,5.300848 +L 7.1163,5.300848,7.5436,5.300848 +L 7.5436,5.300848,7.9709,5.300848 +L 5.4387,8.199214,5.5613,8.466144 +L 5.5613,8.466144,5.6905,8.733097 +L 5.6905,8.733097,5.8341,8.999962 +L 5.8341,7.932218,6.3913,7.932218 +L 6.3913,7.932218,6.9654,7.932218 +L 6.9654,7.932218,7.5436,7.932218 + +[符] 39 +L 2.0499,0.000019,1.9694,1.247176 +L 1.9694,1.247176,1.9028,2.477325 +L 1.9028,2.477325,1.8366,3.699133 +L 1.8366,3.699133,1.4724,3.355915 +L 1.4724,3.355915,1.1183,3.01274 +L 1.1183,3.01274,0.768,2.669544 +L 5.8645,0.000019,6.1408,0.000019 +L 6.1408,0.000019,6.4245,0.000019 +L 6.4245,0.000019,6.7222,0.000019 +L 6.7222,0.000019,6.6627,3.659578 +L 6.6627,3.659578,5.8536,4.74282 +L 5.8536,4.74282,3.3357,4.766987 +L 5.0134,2.135639,4.7363,2.478857 +L 4.7363,2.478857,4.4596,2.822054 +L 4.4596,2.822054,4.1868,3.16525 +L 2.0499,4.500056,2.1834,4.95625 +L 2.1834,4.95625,2.3266,5.404039 +L 2.3266,5.404039,2.4772,5.834818 +L 7.1495,4.766987,6.9923,5.137043 +L 6.9923,5.137043,6.8483,5.490068 +L 6.8483,5.490068,6.7222,5.834818 +L 0.768,6.902606,1.0486,7.615903 +L 1.0486,7.615903,1.3288,8.31219 +L 1.3288,8.31219,1.6261,8.999962 +L 2.9084,6.902606,2.6103,7.245803 +L 2.6103,7.245803,2.3266,7.589044 +L 2.3266,7.589044,2.0499,7.932218 +L 4.1868,6.902606,4.4596,7.615903 +L 4.4596,7.615903,4.7363,8.31219 +L 4.7363,8.31219,5.0134,8.999962 +L 6.7222,6.902606,6.3863,7.474688 +L 6.3863,7.474688,6.0532,7.741597 +L 6.0532,7.741597,5.4407,7.932218 +L 2.9084,7.932218,3.1812,7.932218 +L 3.1812,7.932218,3.4649,7.932218 +L 3.4649,7.932218,3.7595,7.932218 +L 6.7222,7.932218,7.1495,7.932218 +L 7.1495,7.932218,7.5733,7.932218 +L 7.5733,7.932218,8.0006,7.932218 + +[膚] 48 +L 0.8019,0.267015,1.46,2.761286 +L 1.46,2.761286,1.653,4.967546 +L 1.653,4.967546,1.6565,7.436446 +L 1.6565,7.436446,3.3762,7.652678 +L 3.3762,7.652678,4.8784,8.097468 +L 4.8784,8.097468,6.7176,8.466144 +L 3.3342,0.000019,3.1832,1.781169 +L 3.1832,1.781169,3.0361,3.545244 +L 3.0361,3.545244,2.9069,5.300848 +L 2.9069,5.300848,3.3342,5.404039 +L 3.3342,5.404039,3.7615,5.490068 +L 3.7615,5.490068,4.1884,5.567823 +L 4.1884,5.567823,3.842,6.131433 +L 3.842,6.131433,3.4039,6.339018 +L 3.4039,6.339018,2.5076,6.368679 +L 5.8976,0.000019,6.1712,0.000019 +L 6.1712,0.000019,6.444,0.000019 +L 6.444,0.000019,6.7176,0.000019 +L 6.7176,0.000019,6.7176,0.37014 +L 6.7176,0.37014,6.7176,0.723209 +L 6.7176,0.723209,6.7176,1.067807 +L 6.7176,1.067807,5.7229,1.067807 +L 5.7229,1.067807,4.7348,1.067807 +L 4.7348,1.067807,3.7615,1.067807 +L 6.7176,1.868642,5.7229,1.97179 +L 5.7229,1.97179,4.7348,2.057884 +L 4.7348,2.057884,3.7615,2.135639 +L 6.7176,2.936474,5.7229,3.01274 +L 5.7229,3.01274,4.7348,3.089006 +L 4.7348,3.089006,3.7615,3.16525 +L 7.148,3.16525,7.148,3.535459 +L 7.148,3.535459,7.148,3.888419 +L 7.148,3.888419,7.148,4.233082 +L 7.148,4.233082,5.8665,4.233082 +L 5.8665,4.233082,4.5947,4.233082 +L 4.5947,4.233082,3.3342,4.233082 +L 7.148,5.03394,6.5771,5.137043 +L 6.5771,5.137043,6.0206,5.223181 +L 6.0206,5.223181,5.4703,5.300848 +L 4.6157,6.368679,4.7418,7.40823 +L 4.7418,7.40823,6.5319,7.541081 +L 6.5319,7.541081,8.0026,7.436446 +L 8.0026,7.436446,8.0026,7.091848 +L 8.0026,7.091848,8.0026,6.738823 +L 8.0026,6.738823,8.0026,6.368679 +L 5.0395,6.368679,5.4703,6.368679 +L 5.4703,6.368679,5.8976,6.368679 +L 5.8976,6.368679,6.3214,6.368679 + +[齢] 57 +L 0.8316,0.000019,0.8316,1.781169 +L 0.8316,1.781169,0.8316,3.545244 +L 0.8316,3.545244,0.8316,5.300848 +L 1.2589,0.000019,2.2364,0.000019 +L 2.2364,0.000019,3.2203,0.000019 +L 3.2203,0.000019,4.2188,0.000019 +L 4.2188,0.000019,4.4219,4.481625 +L 4.4219,4.481625,3.9663,6.132878 +L 3.9663,6.132878,1.2589,6.368679 +L 1.2589,6.368679,1.2589,6.901162 +L 1.2589,6.901162,1.2589,7.42526 +L 1.2589,7.42526,1.2589,7.932218 +L 5.8961,0.000019,5.8961,1.411047 +L 5.8961,1.411047,5.8961,2.822054 +L 5.8961,2.822054,5.8961,4.233082 +L 5.8961,4.233082,5.6198,4.233082 +L 5.6198,4.233082,5.3497,4.233082 +L 5.3497,4.233082,5.0734,4.233082 +L 2.5093,1.067807,2.4953,1.839003 +L 2.4953,1.839003,2.3835,2.254218 +L 2.3835,2.254218,2.0823,2.669544 +L 2.0823,2.669544,1.9317,2.505716 +L 1.9317,2.505716,1.7878,2.324815 +L 1.7878,2.324815,1.655,2.135639 +L 6.7511,1.067807,7.0239,1.067807 +L 7.0239,1.067807,7.3111,1.067807 +L 7.3111,1.067807,7.6057,1.067807 +L 7.6057,1.067807,7.6057,2.134194 +L 7.6057,2.134194,7.6057,3.192175 +L 7.6057,3.192175,7.6057,4.233082 +L 7.6057,4.233082,7.1784,4.233082 +L 7.1784,4.233082,6.7511,4.233082 +L 6.7511,4.233082,6.3234,4.233082 +L 3.3639,2.135639,2.7898,2.668077 +L 2.7898,2.668077,2.2154,3.192175 +L 2.2154,3.192175,1.655,3.699133 +L 2.9401,3.699133,2.6353,4.114458 +L 2.6353,4.114458,2.5236,4.529652 +L 2.5236,4.529652,2.5093,5.300848 +L 5.4723,5.834818,5.3252,6.024016 +L 5.3252,6.024016,5.1995,6.20483 +L 5.1995,6.20483,5.0734,6.368679 +L 5.0734,6.368679,5.4093,7.245803 +L 5.4093,7.245803,5.7525,8.122949 +L 5.7525,8.122949,6.1101,8.999962 +L 6.1101,8.999962,6.7511,7.959077 +L 6.7511,7.959077,7.3882,6.901162 +L 7.3882,6.901162,8.0295,5.834818 +L 5.8961,5.834818,6.3234,5.834818 +L 6.3234,5.834818,6.7511,5.834818 +L 6.7511,5.834818,7.1784,5.834818 +L 2.5093,6.902606,2.5093,7.615903 +L 2.5093,7.615903,2.5093,8.31219 +L 2.5093,8.31219,2.5093,8.999962 +L 2.9401,7.932218,3.2101,7.932218 +L 3.2101,7.932218,3.4973,7.932218 +L 3.4973,7.932218,3.7912,7.932218 + +[亜] 42 +L 0.8301,0.000019,1.6885,0.000019 +L 1.6885,0.000019,2.5396,0.000019 +L 2.5396,0.000019,3.3977,0.000019 +L 3.3977,0.000019,3.3624,2.125766 +L 3.3624,2.125766,2.9561,2.997264 +L 2.9561,2.997264,1.6885,3.16525 +L 1.6885,3.16525,1.6885,4.069233 +L 1.6885,4.069233,1.6885,4.95625 +L 1.6885,4.95625,1.6885,5.834818 +L 1.6885,5.834818,3.009,6.093321 +L 3.009,6.093321,3.3907,6.936515 +L 3.3907,6.936515,3.3977,8.466144 +L 3.3977,8.466144,2.5396,8.466144 +L 2.5396,8.466144,1.6885,8.466144 +L 1.6885,8.466144,0.8301,8.466144 +L 3.7932,0.000019,4.3536,0.000019 +L 4.3536,0.000019,4.9209,0.000019 +L 4.9209,0.000019,5.5027,0.000019 +L 5.5027,0.000019,5.2467,2.789546 +L 5.2467,2.789546,4.5255,3.070618 +L 4.5255,3.070618,3.3977,3.699133 +L 3.3977,3.699133,3.9371,5.7232 +L 3.9371,5.7232,4.9563,6.111556 +L 4.9563,6.111556,5.5027,8.466144 +L 5.5027,8.466144,4.9209,8.466144 +L 4.9209,8.466144,4.3536,8.466144 +L 4.3536,8.466144,3.7932,8.466144 +L 5.9297,0.000019,6.6305,0.000019 +L 6.6305,0.000019,7.3306,0.000019 +L 7.3306,0.000019,8.0346,0.000019 +L 5.9297,3.16525,5.3693,4.637046 +L 5.3693,4.637046,6.0347,5.532491 +L 6.0347,5.532491,7.208,5.834818 +L 7.208,5.834818,7.208,4.95625 +L 7.208,4.95625,7.208,4.069233 +L 7.208,4.069233,7.208,3.16525 +L 7.208,3.16525,6.7807,3.16525 +L 6.7807,3.16525,6.3538,3.16525 +L 6.3538,3.16525,5.9297,3.16525 +L 5.9297,8.466144,6.6305,8.466144 +L 6.6305,8.466144,7.3306,8.466144 +L 7.3306,8.466144,8.0346,8.466144 + +[哀] 45 +L 1.7151,0.000019,2.3101,0.019764 +L 2.3101,0.019764,2.6358,0.15822 +L 2.6358,0.15822,2.9689,0.533946 +L 2.9689,0.533946,2.8849,1.257092 +L 2.8849,1.257092,2.8145,1.97179 +L 2.8145,1.97179,2.7549,2.669544 +L 2.7549,2.669544,2.1143,2.324815 +L 2.1143,2.324815,1.4835,1.97179 +L 1.4835,1.97179,0.864,1.601712 +L 7.21,0.000019,5.9495,1.453383 +L 5.9495,1.453383,5.2031,2.627186 +L 5.2031,2.627186,4.6778,4.233082 +L 4.6778,4.233082,4.0582,4.015448 +L 4.0582,4.015448,3.7251,3.738754 +L 3.7251,3.738754,3.3962,3.16525 +L 3.606,0.533946,3.9528,0.723209 +L 3.9528,0.723209,4.3135,0.904023 +L 4.3135,0.904023,4.6778,1.067807 +L 5.96,2.135639,6.3625,2.668077 +L 6.3625,2.668077,6.7827,3.192175 +L 6.7827,3.192175,7.21,3.699133 +L 2.1455,4.233082,2.1455,4.95625 +L 2.1455,4.95625,2.1455,5.670926 +L 2.1455,5.670926,2.1455,6.368679 +L 2.1455,6.368679,3.55,6.368679 +L 3.55,6.368679,4.9513,6.368679 +L 4.9513,6.368679,6.3523,6.368679 +L 6.3523,6.368679,6.3523,5.670926 +L 6.3523,5.670926,6.3523,4.95625 +L 6.3523,4.95625,6.3523,4.233082 +L 6.3523,4.233082,5.9317,4.233082 +L 5.9317,4.233082,5.5114,4.233082 +L 5.5114,4.233082,5.1016,4.233082 +L 2.5416,4.233082,2.8145,4.233082 +L 2.8145,4.233082,3.1017,4.233082 +L 3.1017,4.233082,3.3962,4.233082 +L 0.864,7.932218,1.9914,7.932218 +L 1.9914,7.932218,3.1192,7.932218 +L 3.1192,7.932218,4.2505,7.932218 +L 4.2505,7.932218,4.2505,8.302273 +L 4.2505,8.302273,4.2505,8.655387 +L 4.2505,8.655387,4.2505,8.999962 +L 4.6778,7.932218,5.6515,7.932218 +L 5.6515,7.932218,6.6391,7.932218 +L 6.6391,7.932218,7.6338,7.932218 + +[握] 63 +L 0.8625,0.000019,1.1353,0.000019 +L 1.1353,0.000019,1.4155,0.000019 +L 1.4155,0.000019,1.6852,0.000019 +L 1.6852,0.000019,1.6852,1.411047 +L 1.6852,1.411047,1.6852,2.822054 +L 1.6852,2.822054,1.6852,4.233082 +L 1.6852,4.233082,1.4155,4.233082 +L 1.4155,4.233082,1.1353,4.233082 +L 1.1353,4.233082,0.8625,4.233082 +L 3.8252,0.000019,4.526,0.000019 +L 4.526,0.000019,5.2262,0.000019 +L 5.2262,0.000019,5.927,0.000019 +L 5.927,0.000019,5.7869,1.621479 +L 5.7869,1.621479,5.2822,2.115894 +L 5.2822,2.115894,4.2493,2.135639 +L 6.3575,0.000019,6.9108,0.000019 +L 6.9108,0.000019,7.4856,0.000019 +L 7.4856,0.000019,8.0631,0.000019 +L 2.5436,0.533946,3.3594,3.14128 +L 3.3594,3.14128,3.4718,5.757151 +L 3.4718,5.757151,3.3947,8.466144 +L 3.3947,8.466144,4.7989,8.466144 +L 4.7989,8.466144,6.2072,8.466144 +L 6.2072,8.466144,7.6358,8.466144 +L 7.6358,8.466144,7.6358,7.959077 +L 7.6358,7.959077,7.6358,7.435088 +L 7.6358,7.435088,7.6358,6.902606 +L 7.6358,6.902606,6.3575,6.902606 +L 6.3575,6.902606,5.0861,6.902606 +L 5.0861,6.902606,3.8252,6.902606 +L 6.3575,2.135639,6.0527,2.549388 +L 6.0527,2.549388,5.9445,2.954796 +L 5.9445,2.954796,5.927,3.699133 +L 5.927,3.699133,5.3561,3.699133 +L 5.3561,3.699133,4.7989,3.699133 +L 4.7989,3.699133,4.2493,3.699133 +L 6.7812,2.135639,7.0583,2.135639 +L 7.0583,2.135639,7.3385,2.135639 +L 7.3385,2.135639,7.6358,2.135639 +L 6.5679,3.699133,6.7812,3.888419 +L 6.7812,3.888419,6.9914,4.069233 +L 6.9914,4.069233,7.2085,4.233082 +L 7.2085,4.233082,7.0583,4.422324 +L 7.0583,4.422324,6.9108,4.603072 +L 6.9108,4.603072,6.7812,4.766987 +L 5.0724,4.233082,5.3736,4.648297 +L 5.3736,4.648297,5.4822,5.063623 +L 5.4822,5.063623,5.4997,5.834818 +L 5.4997,5.834818,4.9288,5.834818 +L 4.9288,5.834818,4.3716,5.834818 +L 4.3716,5.834818,3.8252,5.834818 +L 1.6852,4.766987,1.6852,5.300848 +L 1.6852,5.300848,1.6852,5.834818 +L 1.6852,5.834818,1.6852,6.368679 +L 1.6852,6.368679,1.4155,6.557987 +L 1.4155,6.557987,1.1353,6.738823 +L 1.1353,6.738823,0.8625,6.902606 +L 5.927,5.834818,6.4874,5.834818 +L 6.4874,5.834818,7.0583,5.834818 +L 7.0583,5.834818,7.6358,5.834818 +L 2.1163,6.902606,1.8116,7.336275 +L 1.8116,7.336275,1.7027,7.880097 +L 1.7027,7.880097,1.6852,8.999962 + +[扱] 42 +L 1.2918,0.000019,1.5646,0.000019 +L 1.5646,0.000019,1.8448,0.000019 +L 1.8448,0.000019,2.1428,0.000019 +L 2.1428,0.000019,2.1285,2.622961 +L 2.1285,2.622961,2.0168,3.720432 +L 2.0168,3.720432,1.7156,4.233082 +L 1.7156,4.233082,1.4245,4.069233 +L 1.4245,4.069233,1.1373,3.888419 +L 1.1373,3.888419,0.8645,3.699133 +L 3.0006,0.000019,4.1007,2.525418 +L 4.1007,2.525418,4.5732,5.635573 +L 4.5732,5.635573,4.6748,8.466144 +L 4.6748,8.466144,4.3809,8.466144 +L 4.3809,8.466144,4.1007,8.466144 +L 4.1007,8.466144,3.8205,8.466144 +L 4.8923,0.000019,5.3791,0.533946 +L 5.3791,0.533946,5.8726,1.067807 +L 5.8726,1.067807,6.384,1.601712 +L 6.384,1.601712,5.9567,2.668077 +L 5.9567,2.668077,5.5294,3.725992 +L 5.5294,3.725992,5.1056,4.766987 +L 7.6378,0.000019,7.3615,0.37014 +L 7.3615,0.37014,7.0845,0.723209 +L 7.0845,0.723209,6.8151,1.067807 +L 6.8151,2.135639,7.3927,3.295169 +L 7.3927,3.295169,7.6067,4.115881 +L 7.6067,4.115881,7.6378,5.300848 +L 7.6378,5.300848,7.2105,5.404039 +L 7.2105,5.404039,6.7906,5.490068 +L 6.7906,5.490068,6.384,5.567823 +L 6.384,5.567823,6.6852,6.209099 +L 6.6852,6.209099,6.7976,6.960551 +L 6.7976,6.960551,6.8151,8.466144 +L 6.8151,8.466144,6.2334,8.466144 +L 6.2334,8.466144,5.6593,8.466144 +L 5.6593,8.466144,5.1056,8.466144 +L 2.5733,4.233082,2.0479,5.518482 +L 2.0479,5.518482,1.8556,6.507201 +L 1.8556,6.507201,0.8645,6.902606 +L 2.5733,6.902606,2.2721,7.336275 +L 2.2721,7.336275,2.1604,7.880097 +L 2.1604,7.880097,2.1428,8.999962 + +[依] 39 +L 1.7176,0.000019,1.6335,1.944908 +L 1.6335,1.944908,1.5666,3.889776 +L 1.5666,3.889776,1.5036,5.834818 +L 1.5036,5.834818,1.2903,5.670926 +L 1.2903,5.670926,1.0763,5.490068 +L 1.0763,5.490068,0.8595,5.300848 +L 3.3952,0.000019,3.6716,0.000019 +L 3.6716,0.000019,3.9553,0.000019 +L 3.9553,0.000019,4.2495,0.000019 +L 4.2495,0.000019,4.1658,1.247176 +L 4.1658,1.247176,4.0954,2.477325 +L 4.0954,2.477325,4.0358,3.699133 +L 4.0358,3.699133,3.5245,3.192175 +L 3.5245,3.192175,3.031,2.668077 +L 3.031,2.668077,2.5406,2.135639 +L 8.0636,0.000019,6.5369,3.651215 +L 6.5369,3.651215,5.8224,5.539606 +L 5.8224,5.539606,5.3146,6.368679 +L 5.3146,6.368679,4.9503,5.670926 +L 4.9503,5.670926,4.5962,4.95625 +L 4.5962,4.95625,4.2495,4.233082 +L 4.8908,0.533946,5.2267,0.723209 +L 5.2267,0.723209,5.5699,0.904023 +L 5.5699,0.904023,5.9275,1.067807 +L 6.7852,4.233082,7.0553,4.603072 +L 7.0553,4.603072,7.339,4.95625 +L 7.339,4.95625,7.6363,5.300848 +L 1.7176,6.635523,1.9904,7.435088 +L 1.9904,7.435088,2.2639,8.226095 +L 2.2639,8.226095,2.5406,8.999962 +L 5.5314,6.902606,5.1496,7.278266 +L 5.1496,7.278266,4.488,7.416723 +L 4.488,7.416723,2.9644,7.436446 +L 5.7135,7.703464,5.654,8.149764 +L 5.654,8.149764,5.5909,8.57912 +L 5.5909,8.57912,5.5314,8.999962 +L 6.3548,7.436446,6.9117,7.436446 +L 6.9117,7.436446,7.4861,7.436446 +L 7.4861,7.436446,8.0636,7.436446 + +[偉] 62 +L 5.9537,0.267015,5.8069,0.533946 +L 5.8069,0.533946,5.6633,0.800789 +L 5.6633,0.800789,5.5334,1.067807 +L 5.5334,1.067807,4.5352,1.067807 +L 4.5352,1.067807,3.5513,1.067807 +L 3.5513,1.067807,2.5703,1.067807 +L 6.3845,1.067807,6.0871,1.601712 +L 6.0871,1.601712,5.8069,2.135639 +L 5.8069,2.135639,5.5334,2.669544 +L 5.5334,2.669544,4.959,2.669544 +L 4.959,2.669544,4.4024,2.669544 +L 4.4024,2.669544,3.8522,2.669544 +L 3.8522,2.669544,3.8522,2.324815 +L 3.8522,2.324815,3.8522,1.97179 +L 3.8522,1.97179,3.8522,1.601712 +L 6.8121,1.067807,7.2429,1.067807 +L 7.2429,1.067807,7.6632,1.067807 +L 7.6632,1.067807,8.094,1.067807 +L 6.3845,2.669544,6.0101,3.216167 +L 6.0101,3.216167,5.3512,3.483032 +L 5.3512,3.483032,3.8522,3.699133 +L 3.8522,3.699133,3.8522,4.233082 +L 3.8522,4.233082,3.8522,4.766987 +L 3.8522,4.766987,3.8522,5.300848 +L 3.8522,5.300848,4.98,5.300848 +L 4.98,5.300848,6.1116,5.300848 +L 6.1116,5.300848,7.2429,5.300848 +L 7.2429,5.300848,7.2429,4.766987 +L 7.2429,4.766987,7.2429,4.233082 +L 7.2429,4.233082,7.2429,3.699133 +L 7.2429,3.699133,6.9449,3.699133 +L 6.9449,3.699133,6.6612,3.699133 +L 6.6612,3.699133,6.3845,3.699133 +L 6.8121,2.669544,7.0885,2.669544 +L 7.0885,2.669544,7.3687,2.669544 +L 7.3687,2.669544,7.6632,2.669544 +L 2.5703,6.368679,3.2746,6.368679 +L 3.2746,6.368679,3.9748,6.368679 +L 3.9748,6.368679,4.6788,6.368679 +L 4.6788,6.368679,4.6788,6.901162 +L 4.6788,6.901162,4.6788,7.42526 +L 4.6788,7.42526,4.6788,7.932218 +L 4.6788,7.932218,4.2515,7.932218 +L 4.2515,7.932218,3.8312,7.932218 +L 3.8312,7.932218,3.4284,7.932218 +L 5.1026,6.368679,5.6633,6.368679 +L 5.6633,6.368679,6.2339,6.368679 +L 6.2339,6.368679,6.8121,6.368679 +L 6.8121,6.368679,6.8121,6.901162 +L 6.8121,6.901162,6.8121,7.42526 +L 6.8121,7.42526,6.8121,7.932218 +L 6.8121,7.932218,6.2339,7.932218 +L 6.2339,7.932218,5.6633,7.932218 +L 5.6633,7.932218,5.1026,7.932218 +L 5.1026,7.932218,5.1026,8.302273 +L 5.1026,8.302273,5.1026,8.655387 +L 5.1026,8.655387,5.1026,8.999962 +L 7.2429,6.368679,7.5123,6.368679 +L 7.5123,6.368679,7.796,6.368679 +L 7.796,6.368679,8.094,6.368679 +L 1.716,0.000019,1.716,6.597522 +A -5.8142,10.627748,8.540417,321.41046,349.01228 + +# kan_22 ------------------------------------------------------- +# 威尉慰為維緯井壱逸稲芋姻隠韻渦浦影詠鋭疫悦謁越閲宴援炎煙猿縁鉛汚凹欧殴翁沖憶乙卸穏佳寡暇架禍稼箇華 + +[威] 45 +L 0.0034,0.26684,0.3043,1.06634 +L 0.3043,1.06634,0.4128,2.925223 +L 0.4128,2.925223,0.4304,7.43638 +L 0.4304,7.43638,2.1641,7.292429 +L 2.1641,7.292429,3.8911,7.50424 +L 3.8911,7.50424,4.6718,9.038182 +L 1.4671,-0.000025,1.8142,0.456147 +L 1.8142,0.456147,2.1711,0.90398 +L 2.1711,0.90398,2.5353,1.334738 +L 2.5353,1.334738,1.7546,2.858742 +L 1.7546,2.858742,1.8418,3.891177 +L 1.8418,3.891177,0.8615,4.271106 +L 3.6036,-0.000025,4.2239,0.636983 +L 4.2239,0.636983,4.854,1.257071 +L 4.854,1.257071,5.4988,1.868599 +L 5.4988,1.868599,4.5738,4.864399 +L 4.5738,4.864399,4.7454,6.766865 +L 4.7454,6.766865,6.7768,7.703377 +L 6.7768,7.703377,6.4794,8.15957 +L 6.4794,8.15957,6.1989,8.607403 +L 6.1989,8.607403,5.9187,9.038182 +L 6.7768,-0.000025,6.4794,0.370031 +L 6.4794,0.370031,6.1989,0.723144 +L 6.1989,0.723144,5.9187,1.067872 +L 7.2041,-0.000025,7.2041,0.53388 +L 7.2041,0.53388,7.2041,1.067872 +L 7.2041,1.067872,7.2041,1.60169 +L 3.3938,1.067872,3.2011,1.89826 +L 3.2011,1.89826,3.2989,2.906769 +L 3.2989,2.906769,3.3938,4.271106 +L 3.3938,4.271106,2.7735,4.289471 +L 2.7735,4.289471,2.4411,4.418121 +L 2.4411,4.418121,2.1084,4.766899 +L 2.1084,4.766899,2.1084,5.136934 +L 2.1084,5.136934,2.1084,5.490046 +L 2.1084,5.490046,2.1084,5.834731 +L 2.1084,5.834731,1.6846,5.834731 +L 1.6846,5.834731,1.2639,5.834731 +L 1.2639,5.834731,0.8615,5.834731 +L 5.9187,2.936408,6.1989,3.735931 +L 6.1989,3.735931,6.4794,4.52685 +L 6.4794,4.52685,6.7768,5.300738 +L 2.5353,5.834731,2.812,5.834731 +L 2.812,5.834731,3.0922,5.834731 +L 3.0922,5.834731,3.3938,5.834731 + +[尉] 48 +L 1.2835,-0.000025,1.5605,-0.000025 +L 1.5605,-0.000025,1.8442,-0.000025 +L 1.8442,-0.000025,2.1416,-0.000025 +L 2.1416,-0.000025,2.1416,1.257071 +L 2.1416,1.257071,2.1416,2.505629 +L 2.1416,2.505629,2.1416,3.737266 +L 2.1416,3.737266,1.5605,3.737266 +L 1.5605,3.737266,0.9861,3.737266 +L 0.9861,3.737266,0.4324,3.737266 +L 0.4324,3.737266,0.4919,3.03949 +L 0.4919,3.03949,0.5619,2.324902 +L 0.5619,2.324902,0.6425,1.60169 +L 0.6425,1.60169,0.8562,1.971724 +L 0.8562,1.971724,1.0698,2.324902 +L 1.0698,2.324902,1.2835,2.669456 +L 5.5249,-0.000025,5.802,-0.000025 +L 5.802,-0.000025,6.0818,-0.000025 +L 6.0818,-0.000025,6.376,-0.000025 +L 6.376,-0.000025,6.4881,3.752808 +L 6.4881,3.752808,6.1277,5.76825 +L 6.1277,5.76825,4.2465,6.368636 +L 3.4199,1.334738,3.2693,1.79091 +L 3.2693,1.79091,3.1257,2.238676 +L 3.1257,2.238676,2.9926,2.669456 +L 2.5653,3.737266,2.842,3.737266 +L 2.842,3.737266,3.1257,3.737266 +L 3.1257,3.737266,3.4199,3.737266 +L 5.0976,4.004131,4.947,4.26977 +L 4.947,4.26977,4.8003,4.52685 +L 4.8003,4.52685,4.6668,4.766899 +L 0.4324,4.271106,0.4324,5.682265 +L 0.4324,5.682265,0.4324,7.093162 +L 0.4324,7.093162,0.4324,8.504234 +L 0.4324,8.504234,1.4165,8.504234 +L 1.4165,8.504234,2.4147,8.504234 +L 2.4147,8.504234,3.4199,8.504234 +L 3.4199,8.504234,3.4199,7.970351 +L 3.4199,7.970351,3.4199,7.43638 +L 3.4199,7.43638,3.4199,6.902498 +L 3.4199,6.902498,2.5653,6.902498 +L 2.5653,6.902498,1.7107,6.902498 +L 1.7107,6.902498,0.8562,6.902498 +L 1.2835,5.300738,1.8442,5.300738 +L 1.8442,5.300738,2.4147,5.300738 +L 2.4147,5.300738,2.9926,5.300738 +L 6.8068,6.368636,6.5025,6.823451 +L 6.5025,6.823451,6.3935,7.515557 +L 6.3935,7.515557,6.376,9.038182 + +[慰] 51 +L 0.0351,-0.000025,0.3118,0.53388 +L 0.3118,0.53388,0.592,1.067872 +L 0.592,1.067872,0.8897,1.60169 +L 2.5673,-0.000025,2.2661,0.435001 +L 2.2661,0.435001,2.1541,0.988651 +L 2.1541,0.988651,2.14,2.135573 +L 2.9946,-0.000025,3.8496,-0.000025 +L 3.8496,-0.000025,4.7038,-0.000025 +L 4.7038,-0.000025,5.5549,-0.000025 +L 5.5549,-0.000025,5.5549,0.370031 +L 5.5549,0.370031,5.5549,0.723144 +L 5.5549,0.723144,5.5549,1.067872 +L 7.2361,0.800767,7.082,1.067872 +L 7.082,1.067872,6.9384,1.334738 +L 6.9384,1.334738,6.8057,1.60169 +L 0.0351,3.203295,0.7604,4.984423 +L 0.7604,4.984423,0.9177,6.59612 +L 0.9177,6.59612,0.8897,8.504234 +L 0.8897,8.504234,1.8637,8.504234 +L 1.8637,8.504234,2.851,8.504234 +L 2.851,8.504234,3.8496,8.504234 +L 3.8496,8.504234,4.5042,6.846151 +L 4.5042,6.846151,5.7231,6.984411 +L 5.7231,6.984411,6.3815,9.038182 +L 2.5673,3.203295,2.5673,3.916679 +L 2.5673,3.916679,2.5673,4.612967 +L 2.5673,4.612967,2.5673,5.300738 +L 2.5673,5.300738,2.14,5.300738 +L 2.14,5.300738,1.7198,5.300738 +L 1.7198,5.300738,1.3135,5.300738 +L 5.5549,3.203295,5.832,3.203295 +L 5.832,3.203295,6.1052,3.203295 +L 6.1052,3.203295,6.3815,3.203295 +L 6.3815,3.203295,6.3815,4.26977 +L 6.3815,4.26977,6.3815,5.327664 +L 6.3815,5.327664,6.3815,6.368636 +L 6.3815,6.368636,6.6582,6.557877 +L 6.6582,6.557877,6.9384,6.738758 +L 6.9384,6.738758,7.2361,6.902498 +L 5.1245,5.03394,4.977,5.300738 +L 4.977,5.300738,4.8334,5.567713 +L 4.8334,5.567713,4.7038,5.834731 +L 2.9946,5.300738,3.2678,5.300738 +L 3.2678,5.300738,3.5554,5.300738 +L 3.5554,5.300738,3.8496,5.300738 +L 1.7408,6.368636,2.2942,6.368636 +L 2.2942,6.368636,2.851,6.368636 +L 2.851,6.368636,3.4184,6.368636 +L 1.3135,7.43638,2.014,7.43638 +L 2.014,7.43638,2.7148,7.43638 +L 2.7148,7.43638,3.4184,7.43638 + +[為] 45 +L 5.1296,-0.000025,5.4067,-0.000025 +L 5.4067,-0.000025,5.6865,-0.000025 +L 5.6865,-0.000025,5.9846,-0.000025 +L 5.9846,-0.000025,6.5835,1.206219 +L 6.5835,1.206219,6.8042,2.175151 +L 6.8042,2.175151,6.8388,3.737266 +L 6.8388,3.737266,4.986,3.737266 +L 4.986,3.737266,3.1473,3.737266 +L 3.1473,3.737266,1.3155,3.737266 +L 1.3155,3.737266,0.892,3.203295 +L 0.892,3.203295,0.4714,2.669456 +L 0.4714,2.669456,0.0616,2.135573 +L 0.8882,0.53388,1.1894,0.949096 +L 1.1894,0.949096,1.2983,1.364399 +L 1.2983,1.364399,1.3155,2.135573 +L 3.0247,1.334738,2.8741,1.60169 +L 2.8741,1.60169,2.7273,1.868599 +L 2.7273,1.868599,2.5974,2.135573 +L 4.3066,1.334738,4.1528,1.60169 +L 4.1528,1.60169,4.0127,1.868599 +L 4.0127,1.868599,3.8796,2.135573 +L 5.5569,1.868599,5.4067,2.135573 +L 5.4067,2.135573,5.2592,2.40257 +L 5.2592,2.40257,5.1296,2.669456 +L 1.7431,4.271106,2.1736,5.51835 +L 2.1736,5.51835,2.5974,6.74863 +L 2.5974,6.74863,3.0247,7.970351 +L 3.0247,7.970351,2.1736,7.970351 +L 2.1736,7.970351,1.3225,7.970351 +L 1.3225,7.970351,0.4924,7.970351 +L 5.9846,4.271106,5.9846,4.803632 +L 5.9846,4.803632,5.9846,5.327664 +L 5.9846,5.327664,5.9846,5.834731 +L 5.9846,5.834731,4.986,5.834731 +L 4.986,5.834731,4.0022,5.834731 +L 4.0022,5.834731,3.0247,5.834731 +L 5.1296,6.368636,5.1296,6.902498 +L 5.1296,6.902498,5.1296,7.43638 +L 5.1296,7.43638,5.1296,7.970351 +L 5.1296,7.970351,4.5591,7.970351 +L 4.5591,7.970351,4.0022,7.970351 +L 4.0022,7.970351,3.452,7.970351 +L 3.452,7.970351,3.452,8.340363 +L 3.452,8.340363,3.452,8.693498 +L 3.452,8.693498,3.452,9.038182 + +[維] 60 +L 1.3455,-0.000025,1.3455,1.600267 +L 1.3455,1.600267,1.3455,3.192088 +L 1.3455,3.192088,1.3455,4.766899 +L 1.3455,4.766899,0.9217,4.766899 +L 0.9217,4.766899,0.4909,4.766899 +L 0.4909,4.766899,0.0639,4.766899 +L 3.8781,-0.000025,3.8638,4.501436 +L 3.8638,4.501436,3.7517,6.290904 +L 3.7517,6.290904,3.447,6.902498 +L 3.447,6.902498,3.3069,6.738758 +L 3.3069,6.738758,3.1773,6.557877 +L 3.1773,6.557877,3.0547,6.368636 +L 4.3054,-0.000025,4.7359,-0.000025 +L 4.7359,-0.000025,5.1565,-0.000025 +L 5.1565,-0.000025,5.587,-0.000025 +L 5.587,-0.000025,5.5593,1.692031 +L 5.5593,1.692031,5.2507,2.477434 +L 5.2507,2.477434,4.3054,2.669456 +L 6.0146,-0.000025,6.417,-0.000025 +L 6.417,-0.000025,6.8373,-0.000025 +L 6.8373,-0.000025,7.2615,-0.000025 +L 0.0639,1.334738,0.197,1.971724 +L 0.197,1.971724,0.3403,2.591811 +L 0.3403,2.591811,0.4909,3.203295 +L 2.6309,1.868599,2.4736,2.324902 +L 2.4736,2.324902,2.33,2.772625 +L 2.33,2.772625,2.2004,3.203295 +L 6.0146,2.669456,5.4924,3.772597 +L 5.4924,3.772597,5.2546,4.502792 +L 5.2546,4.502792,4.3054,4.766899 +L 2.6309,4.538167,2.4736,4.803632 +L 2.4736,4.803632,2.33,5.060755 +L 2.33,5.060755,2.2004,5.300738 +L 2.2004,5.300738,2.0495,5.136934 +L 2.0495,5.136934,1.9062,4.956185 +L 1.9062,4.956185,1.7731,4.766899 +L 6.0146,4.766899,5.2893,5.757043 +L 5.2893,5.757043,4.5818,6.738758 +L 4.5818,6.738758,3.8781,7.703377 +L 3.8781,7.703377,4.0074,8.15957 +L 4.0074,8.15957,4.1545,8.607403 +L 4.1545,8.607403,4.3054,9.038182 +L 0.9217,5.300738,1.0513,5.567713 +L 1.0513,5.567713,1.1914,5.834731 +L 1.1914,5.834731,1.3455,6.101706 +L 1.3455,6.101706,1.0513,6.471717 +L 1.0513,6.471717,0.7676,6.82483 +L 0.7676,6.82483,0.4909,7.169471 +L 0.4909,7.169471,0.7676,7.806567 +L 0.7676,7.806567,1.0513,8.426523 +L 1.0513,8.426523,1.3455,9.038182 +L 1.7731,7.169471,1.9062,7.43638 +L 1.9062,7.43638,2.0495,7.703377 +L 2.0495,7.703377,2.2004,7.970351 +L 6.0146,6.902498,5.7309,7.515557 +L 5.7309,7.515557,5.7309,8.069207 +L 5.7309,8.069207,6.0146,9.038182 +L 6.4419,6.902498,6.7151,6.902498 +L 6.7151,6.902498,6.9914,6.902498 +L 6.9914,6.902498,7.2615,6.902498 + +[緯] 84 +L 1.3794,-0.000025,1.3794,1.600267 +L 1.3794,1.600267,1.3794,3.192088 +L 1.3794,3.192088,1.3794,4.766899 +L 1.3794,4.766899,0.9482,4.766899 +L 0.9482,4.766899,0.5209,4.766899 +L 0.5209,4.766899,0.094,4.766899 +L 5.5855,0.26684,5.4454,0.53388 +L 5.4454,0.53388,5.3161,0.800767 +L 5.3161,0.800767,5.1932,1.067872 +L 5.1932,1.067872,4.465,1.067872 +L 4.465,1.067872,3.7575,1.067872 +L 3.7575,1.067872,3.0532,1.067872 +L 3.0532,1.067872,2.7558,1.79091 +L 2.7558,1.79091,2.4753,2.505629 +L 2.4753,2.505629,2.1989,3.203295 +L 0.094,1.334738,0.2232,1.971724 +L 0.2232,1.971724,0.3738,2.591811 +L 0.3738,2.591811,0.5209,3.203295 +L 6.0166,1.067872,5.7396,1.60169 +L 5.7396,1.60169,5.4629,2.135573 +L 5.4629,2.135573,5.1932,2.669456 +L 5.1932,2.669456,4.7624,2.669456 +L 4.7624,2.669456,4.3354,2.669456 +L 4.3354,2.669456,3.9043,2.669456 +L 3.9043,2.669456,3.9043,2.324902 +L 3.9043,2.324902,3.9043,1.971724 +L 3.9043,1.971724,3.9043,1.60169 +L 6.4404,1.067872,6.7167,1.067872 +L 6.7167,1.067872,7.0004,1.067872 +L 7.0004,1.067872,7.2947,1.067872 +L 6.0166,2.669456,5.6524,3.242851 +L 5.6524,3.242851,5.106,3.519742 +L 5.106,3.519742,3.9043,3.737266 +L 3.9043,3.737266,3.9043,4.26977 +L 3.9043,4.26977,3.9043,4.79389 +L 3.9043,4.79389,3.9043,5.300738 +L 3.9043,5.300738,4.7449,5.300738 +L 4.7449,5.300738,5.5855,5.300738 +L 5.5855,5.300738,6.4404,5.300738 +L 6.4404,5.300738,6.2898,4.79389 +L 6.2898,4.79389,6.1462,4.26977 +L 6.1462,4.26977,6.0166,3.737266 +L 2.6294,4.538167,2.4753,4.803632 +L 2.4753,4.803632,2.3352,5.060755 +L 2.3352,5.060755,2.1989,5.300738 +L 2.1989,5.300738,2.0483,5.136934 +L 2.0483,5.136934,1.9047,4.956185 +L 1.9047,4.956185,1.7751,4.766899 +L 0.9482,5.300738,1.0813,5.567713 +L 1.0813,5.567713,1.2249,5.834731 +L 1.2249,5.834731,1.3794,6.101706 +L 1.3794,6.101706,1.0813,6.471717 +L 1.0813,6.471717,0.7976,6.82483 +L 0.7976,6.82483,0.5209,7.169471 +L 0.5209,7.169471,0.7976,7.806567 +L 0.7976,7.806567,1.0813,8.426523 +L 1.0813,8.426523,1.3794,9.038182 +L 3.0532,6.368636,3.4843,6.368636 +L 3.4843,6.368636,3.9043,6.368636 +L 3.9043,6.368636,4.3354,6.368636 +L 4.3354,6.368636,4.3354,6.902498 +L 4.3354,6.902498,4.3354,7.43638 +L 4.3354,7.43638,4.3354,7.970351 +L 4.3354,7.970351,4.0444,7.970351 +L 4.0444,7.970351,3.7575,7.970351 +L 3.7575,7.970351,3.4843,7.970351 +L 4.7624,6.368636,5.1655,6.368636 +L 5.1655,6.368636,5.5855,6.368636 +L 5.5855,6.368636,6.0166,6.368636 +L 6.0166,6.368636,6.0166,6.902498 +L 6.0166,6.902498,6.0166,7.43638 +L 6.0166,7.43638,6.0166,7.970351 +L 6.0166,7.970351,5.5855,7.970351 +L 5.5855,7.970351,5.1655,7.970351 +L 5.1655,7.970351,4.7624,7.970351 +L 4.7624,7.970351,4.7624,8.340363 +L 4.7624,8.340363,4.7624,8.693498 +L 4.7624,8.693498,4.7624,9.038182 +L 6.4404,6.368636,6.7167,6.368636 +L 6.7167,6.368636,7.0004,6.368636 +L 7.0004,6.368636,7.2947,6.368636 +L 1.7751,7.169471,1.9047,7.43638 +L 1.9047,7.43638,2.0483,7.703377 +L 2.0483,7.703377,2.1989,7.970351 + +[井] 27 +L 0.5229,-0.000025,1.0833,0.990074 +L 1.0833,0.990074,1.6546,1.971724 +L 1.6546,1.971724,2.2321,2.936408 +L 2.2321,2.936408,1.8679,3.499931 +L 1.8679,3.499931,1.3215,3.707605 +L 1.3215,3.707605,0.1271,3.737266 +L 5.1882,-0.000025,4.8274,3.4294 +L 4.8274,3.4294,3.8152,3.562143 +L 3.8152,3.562143,2.2321,4.271106 +L 2.2321,4.271106,2.1484,6.156825 +L 2.1484,6.156825,1.6857,6.82205 +L 1.6857,6.82205,0.5229,6.902498 +L 5.6193,3.737266,5.3003,4.676558 +L 5.3003,4.676558,5.0761,5.963271 +L 5.0761,5.963271,4.7644,6.902498 +L 4.7644,6.902498,3.0657,6.947722 +L 3.0657,6.947722,2.3687,7.467464 +L 2.3687,7.467464,2.2321,9.038182 +L 6.0428,3.737266,6.4736,3.737266 +L 6.4736,3.737266,6.8977,3.737266 +L 6.8977,3.737266,7.3247,3.737266 +L 5.6193,6.902498,5.3143,7.337523 +L 5.3143,7.337523,5.2022,7.891239 +L 5.2022,7.891239,5.1882,9.038182 +L 6.0428,6.902498,6.3198,6.902498 +L 6.3198,6.902498,6.6035,6.902498 +L 6.6035,6.902498,6.8977,6.902498 + +[壱] 36 +L 2.2621,-0.000025,1.9609,0.474448 +L 1.9609,0.474448,1.8488,1.305076 +L 1.8488,1.305076,1.8352,3.203295 +L 2.6579,-0.000025,3.9363,-0.000025 +L 3.9363,-0.000025,5.2217,-0.000025 +L 5.2217,-0.000025,6.5004,-0.000025 +L 6.5004,-0.000025,6.5004,0.53388 +L 6.5004,0.53388,6.5004,1.067872 +L 6.5004,1.067872,6.5004,1.60169 +L 2.2621,2.135573,3.8873,2.273986 +L 3.8873,2.273986,4.8574,2.531044 +L 4.8574,2.531044,5.6455,2.669456 +L 0.126,3.203295,0.126,3.735931 +L 0.126,3.735931,0.126,4.259897 +L 0.126,4.259897,0.126,4.766899 +L 0.126,4.766899,2.3847,4.766899 +L 2.3847,4.766899,4.6371,4.766899 +L 4.6371,4.766899,6.8994,4.766899 +L 6.8994,4.766899,6.8994,4.259897 +L 6.8994,4.259897,6.8994,3.735931 +L 6.8994,3.735931,6.8994,3.203295 +L 0.9802,6.368636,1.8142,6.368636 +L 1.8142,6.368636,2.6579,6.368636 +L 2.6579,6.368636,3.5164,6.368636 +L 3.5164,6.368636,3.0117,7.919565 +L 3.0117,7.919565,1.8628,8.122883 +L 1.8628,8.122883,0.5529,7.970351 +L 3.9363,6.368636,4.6438,6.368636 +L 4.6438,6.368636,5.3513,6.368636 +L 5.3513,6.368636,6.0766,6.368636 +L 3.9363,7.970351,3.7857,8.340363 +L 3.7857,8.340363,3.6421,8.693498 +L 3.6421,8.693498,3.5164,9.038182 +L 4.3675,7.970351,5.0676,7.970351 +L 5.0676,7.970351,5.7751,7.970351 +L 5.7751,7.970351,6.5004,7.970351 + +[逸] 72 +L 0.3693,-0.000025,0.7055,0.370031 +L 0.7055,0.370031,1.0488,0.723144 +L 1.0488,0.723144,1.4099,1.067872 +L 1.4099,1.067872,1.4099,2.314986 +L 1.4099,2.314986,1.4099,3.545135 +L 1.4099,3.545135,1.4099,4.766899 +L 1.4099,4.766899,0.9822,4.766899 +L 0.9822,4.766899,0.5619,4.766899 +L 0.5619,4.766899,0.1592,4.766899 +L 2.6848,-0.000025,2.3937,0.189282 +L 2.3937,0.189282,2.1104,0.370031 +L 2.1104,0.370031,1.8337,0.53388 +L 3.1152,-0.000025,4.5197,-0.000025 +L 4.5197,-0.000025,5.935,-0.000025 +L 5.935,-0.000025,7.3567,-0.000025 +L 2.4746,1.60169,2.9646,2.135573 +L 2.9646,2.135573,3.4585,2.669456 +L 3.4585,2.669456,3.9733,3.203295 +L 3.9733,3.203295,3.9733,3.573439 +L 3.9733,3.573439,3.9733,3.926464 +L 3.9733,3.926464,3.9733,4.271106 +L 3.9733,4.271106,3.676,4.271106 +L 3.676,4.271106,3.3923,4.271106 +L 3.3923,4.271106,3.1152,4.271106 +L 3.1152,4.271106,3.1152,4.984423 +L 3.1152,4.984423,3.1152,5.680711 +L 3.1152,5.680711,3.1152,6.368636 +L 3.1152,6.368636,2.8179,6.557877 +L 2.8179,6.557877,2.5373,6.738758 +L 2.5373,6.738758,2.2641,6.902498 +L 5.6475,1.60169,5.3466,2.056483 +L 5.3466,2.056483,5.2346,2.748524 +L 5.2346,2.748524,5.2202,4.271106 +L 5.2202,4.271106,4.947,4.271106 +L 4.947,4.271106,4.6738,4.271106 +L 4.6738,4.271106,4.3936,4.271106 +L 6.0751,1.60169,6.5056,1.60169 +L 6.5056,1.60169,6.9294,1.60169 +L 6.9294,1.60169,7.3567,1.60169 +L 7.3567,1.60169,7.3567,1.971724 +L 7.3567,1.971724,7.3567,2.324902 +L 7.3567,2.324902,7.3567,2.669456 +L 5.6475,4.271106,5.9245,4.271106 +L 5.9245,4.271106,6.2082,4.271106 +L 6.2082,4.271106,6.5056,4.271106 +L 6.5056,4.271106,6.5056,4.984423 +L 6.5056,4.984423,6.5056,5.680711 +L 6.5056,5.680711,6.5056,6.368636 +L 6.5056,6.368636,5.935,6.368636 +L 5.935,6.368636,5.3743,6.368636 +L 5.3743,6.368636,4.8244,6.368636 +L 4.8244,6.368636,4.8244,5.834731 +L 4.8244,5.834731,4.8244,5.300738 +L 4.8244,5.300738,4.8244,4.766899 +L 3.5425,6.368636,3.8196,6.368636 +L 3.8196,6.368636,4.0994,6.368636 +L 4.0994,6.368636,4.3936,6.368636 +L 5.2202,6.902498,5.3498,7.169471 +L 5.3498,7.169471,5.4969,7.43638 +L 5.4969,7.43638,5.6475,7.703377 +L 5.6475,7.703377,4.1484,7.871451 +L 4.1484,7.871451,3.497,7.802342 +L 3.497,7.802342,3.1152,7.43638 +L 1.4099,7.43638,1.1328,7.806567 +L 1.1328,7.806567,0.8596,8.15957 +L 0.8596,8.15957,0.583,8.504234 +L 5.2377,-0.015239,7.3742,-0.015239 +L 1.4235,1.05244,0.3693,-0.000025 +L 0.1697,4.751664,1.4235,4.751664 +L 1.4235,1.05244,1.4235,4.751664 +L 0.597,8.489108,1.4235,7.421232 +A 5.2377,7.347812,7.362973,238.75988,270 + +[稲] 51 +L 1.436,-0.000025,1.3555,1.437863 +L 1.3555,1.437863,1.2854,2.858742 +L 1.2854,2.858742,1.2259,4.271106 +L 1.2259,4.271106,0.862,3.573439 +L 0.862,3.573439,0.5012,2.858742 +L 0.5012,2.858742,0.1577,2.135573 +L 3.5725,-0.000025,3.5725,1.600267 +L 3.5725,1.600267,3.5725,3.192088 +L 3.5725,3.192088,3.5725,4.766899 +L 4.8229,-0.000025,4.8229,1.600267 +L 4.8229,1.600267,4.8229,3.192088 +L 4.8229,3.192088,4.8229,4.766899 +L 4.8229,4.766899,5.5269,4.766899 +L 5.5269,4.766899,6.2379,4.766899 +L 6.2379,4.766899,6.9629,4.766899 +L 6.9629,4.766899,6.9629,3.192088 +L 6.9629,3.192088,6.9629,1.600267 +L 6.9629,1.600267,6.9629,-0.000025 +L 6.9629,-0.000025,6.2379,-0.000025 +L 6.2379,-0.000025,5.5269,-0.000025 +L 5.5269,-0.000025,4.8229,-0.000025 +L 5.2537,2.669456,5.6775,2.669456 +L 5.6775,2.669456,6.1052,2.669456 +L 6.1052,2.669456,6.5325,2.669456 +L 2.7214,3.737266,1.9439,4.52129 +L 1.9439,4.52129,1.4991,5.203414 +L 1.4991,5.203414,1.0123,6.368636 +L 1.0123,6.368636,0.7145,6.368636 +L 0.7145,6.368636,0.4343,6.368636 +L 0.4343,6.368636,0.1577,6.368636 +L 3.9683,6.101706,3.8286,6.368636 +L 3.8286,6.368636,3.6951,6.635632 +L 3.6951,6.635632,3.5725,6.902498 +L 5.2537,6.101706,5.0996,6.368636 +L 5.0996,6.368636,4.956,6.635632 +L 4.956,6.635632,4.8229,6.902498 +L 6.5325,6.101706,6.6652,6.557877 +L 6.6652,6.557877,6.8092,7.005644 +L 6.8092,7.005644,6.9629,7.43638 +L 1.8672,6.368636,1.5625,6.783961 +L 1.5625,6.783961,1.4504,7.199199 +L 1.4504,7.199199,1.436,7.970351 +L 1.436,7.970351,1.0123,7.970351 +L 1.0123,7.970351,0.585,7.970351 +L 0.585,7.970351,0.1577,7.970351 +L 1.8672,7.970351,2.1435,8.15957 +L 2.1435,8.15957,2.4241,8.340363 +L 2.4241,8.340363,2.7214,8.504234 +L 3.5725,7.970351,4.9108,8.108786 +L 4.9108,8.108786,5.8877,8.365756 +L 5.8877,8.365756,6.9629,8.504234 + +[芋] 39 +L 2.2965,-0.000025,2.7164,-0.000025 +L 2.7164,-0.000025,3.1476,-0.000025 +L 3.1476,-0.000025,3.5749,-0.000025 +L 3.5749,-0.000025,3.3893,3.087517 +L 3.3893,3.087517,2.4503,3.827629 +L 2.4503,3.827629,0.1915,3.737266 +L 4.0022,3.737266,3.7006,4.170914 +L 3.7006,4.170914,3.5886,4.714757 +L 3.5886,4.714757,3.5749,5.834731 +L 3.5749,5.834731,2.7203,5.834731 +L 2.7203,5.834731,1.8762,5.834731 +L 1.8762,5.834731,1.0426,5.834731 +L 4.426,3.737266,5.2592,3.737266 +L 5.2592,3.737266,6.1072,3.737266 +L 6.1072,3.737266,6.9614,3.737266 +L 4.0022,5.834731,4.7062,5.834731 +L 4.7062,5.834731,5.4137,5.834731 +L 5.4137,5.834731,6.1348,5.834731 +L 2.2965,7.169471,2.1455,7.43638 +L 2.1455,7.43638,2.0195,7.703377 +L 2.0195,7.703377,1.8972,7.970351 +L 1.8972,7.970351,1.319,7.970351 +L 1.319,7.970351,0.7446,7.970351 +L 0.7446,7.970351,0.1915,7.970351 +L 4.8564,7.169471,4.7062,7.43638 +L 4.7062,7.43638,4.5552,7.703377 +L 4.5552,7.703377,4.426,7.970351 +L 4.426,7.970351,3.8477,7.970351 +L 3.8477,7.970351,3.2768,7.970351 +L 3.2768,7.970351,2.7164,7.970351 +L 2.7164,7.970351,2.5658,8.340363 +L 2.5658,8.340363,2.4226,8.693498 +L 2.4226,8.693498,2.2965,9.038182 +L 5.2802,7.970351,5.1335,8.340363 +L 5.1335,8.340363,4.986,8.693498 +L 4.986,8.693498,4.8564,9.038182 +L 5.711,7.970351,6.1138,7.970351 +L 6.1138,7.970351,6.5341,7.970351 +L 6.5341,7.970351,6.9614,7.970351 + +[姻] 40 +L 0.2177,-0.000025,0.624,0.636983 +L 0.624,0.636983,1.0446,1.257071 +L 1.0446,1.257071,1.4649,1.868599 +L 1.4649,1.868599,0.7746,3.279627 +L 0.7746,3.279627,0.6594,4.792292 +L 0.6594,4.792292,1.0446,6.101706 +L 1.0446,6.101706,0.7644,6.368636 +L 0.7644,6.368636,0.4909,6.635632 +L 0.4909,6.635632,0.2177,6.902498 +L 3.6046,-0.000025,3.6046,2.848847 +L 3.6046,2.848847,3.6046,5.680711 +L 3.6046,5.680711,3.6046,8.504234 +L 3.6046,8.504234,4.7324,8.504234 +L 4.7324,8.504234,5.864,8.504234 +L 5.864,8.504234,6.9918,8.504234 +L 6.9918,8.504234,6.9918,5.680711 +L 6.9918,5.680711,6.9918,2.848847 +L 6.9918,2.848847,6.9918,-0.000025 +L 6.9918,-0.000025,5.864,-0.000025 +L 5.864,-0.000025,4.7324,-0.000025 +L 4.7324,-0.000025,3.6046,-0.000025 +L 2.7535,1.067872,1.9728,2.94488 +L 1.9728,2.94488,2.102,4.872849 +L 2.102,4.872849,2.323,6.902498 +L 2.323,6.902498,1.2544,7.193616 +L 1.2544,7.193616,1.0061,7.959034 +L 1.0061,7.959034,1.0446,9.038182 +L 4.4592,2.135573,5.1036,3.476049 +L 5.1036,3.476049,5.1565,4.82493 +L 5.1565,4.82493,4.4592,5.834731 +L 6.1368,2.135573,5.8356,2.55081 +L 5.8356,2.55081,5.7239,2.96607 +L 5.7239,2.96607,5.7095,3.737266 +L 5.7095,5.834731,5.4083,6.249968 +L 5.4083,6.249968,5.2998,6.665206 +L 5.2998,6.665206,5.2857,7.43638 +L 3.6221,6.330262,0.0216,6.330262 +L 0.8762,3.326494,1.4996,8.999853 +A -4.5176,-3.399592,8.620982,23.224227,51.278884 +A -6.3739,6.330262,9.138971,316.15783,0 + +[陰] 48 +L 0.2165,-0.000025,0.2165,2.848847 +L 0.2165,2.848847,0.2165,5.680711 +L 0.2165,5.680711,0.2165,8.504234 +L 0.2165,8.504234,0.7731,8.504234 +L 0.7731,8.504234,1.3478,8.504234 +L 1.3478,8.504234,1.9219,8.504234 +L 1.9219,8.504234,1.4806,6.135547 +L 1.4806,6.135547,1.7012,4.83476 +L 1.7012,4.83476,1.9219,2.669456 +L 1.9219,2.669456,1.6315,2.505629 +L 1.6315,2.505629,1.3478,2.324902 +L 1.3478,2.324902,1.0708,2.135573 +L 2.7803,-0.000025,3.0567,0.103035 +L 3.0567,0.103035,3.3337,0.189282 +L 3.3337,0.189282,3.6031,0.26684 +L 3.6031,0.26684,3.7365,0.90398 +L 3.7365,0.90398,3.8801,1.524045 +L 3.8801,1.524045,4.0339,2.135573 +L 4.0339,2.135573,3.6031,2.135573 +L 3.6031,2.135573,3.1828,2.135573 +L 3.1828,2.135573,2.7803,2.135573 +L 4.0339,-0.000025,5.1725,0.145392 +L 5.1725,0.145392,6.1812,0.706201 +L 6.1812,0.706201,6.1672,1.868599 +L 6.1672,1.868599,5.589,1.971724 +L 5.589,1.971724,5.0181,2.057819 +L 5.0181,2.057819,4.4577,2.135573 +L 6.5945,2.135573,6.8673,2.135573 +L 6.8673,2.135573,7.1475,2.135573 +L 7.1475,2.135573,7.4176,2.135573 +L 3.6031,3.737266,4.3071,3.840391 +L 4.3071,3.840391,5.0181,3.926464 +L 5.0181,3.926464,5.7434,4.004131 +L 5.7434,4.004131,5.8727,4.347459 +L 5.8727,4.347459,6.0127,4.690721 +L 6.0127,4.690721,6.1672,5.03394 +L 6.1672,5.03394,5.1725,5.136934 +L 5.1725,5.136934,4.1848,5.223181 +L 4.1848,5.223181,3.2111,5.300738 +L 2.5663,6.368636,3.3337,7.272596 +L 3.3337,7.272596,4.1008,8.15957 +L 4.1008,8.15957,4.885,9.038182 +L 4.885,9.038182,5.7189,8.15957 +L 5.7189,8.15957,6.5665,7.272596 +L 6.5665,7.272596,7.4176,6.368636 +L 4.0339,6.902498,4.5876,6.902498 +L 4.5876,6.902498,5.1617,6.902498 +L 5.1617,6.902498,5.7434,6.902498 + +[隠] 48 +L 0.2501,-0.000025,0.2501,2.848847 +L 0.2501,2.848847,0.2501,5.680711 +L 0.2501,5.680711,0.2501,8.504234 +L 0.2501,8.504234,0.7999,8.504234 +L 0.7999,8.504234,1.3565,8.504234 +L 1.3565,8.504234,1.9274,8.504234 +L 1.9274,8.504234,1.4966,6.169456 +L 1.4966,6.169456,1.7067,4.800764 +L 1.7067,4.800764,1.9274,2.669456 +L 1.9274,2.669456,1.651,2.505629 +L 1.651,2.505629,1.381,2.324902 +L 1.381,2.324902,1.1047,2.135573 +L 2.355,0.26684,2.4846,0.723144 +L 2.4846,0.723144,2.6279,1.170866 +L 2.6279,1.170866,2.7823,1.60169 +L 4.4912,-0.000025,4.19,0.435001 +L 4.19,0.435001,4.0782,0.988651 +L 4.0782,0.988651,4.0607,2.135573 +L 4.915,-0.000025,5.3213,-0.000025 +L 5.3213,-0.000025,5.7419,-0.000025 +L 5.7419,-0.000025,6.1657,-0.000025 +L 6.1657,-0.000025,6.1657,0.370031 +L 6.1657,0.370031,6.1657,0.723144 +L 6.1657,0.723144,6.1657,1.067872 +L 7.4473,0.800767,7.297,1.067872 +L 7.297,1.067872,7.1569,1.334738 +L 7.1569,1.334738,7.02,1.60169 +L 3.2061,3.203295,4.3371,3.203295 +L 4.3371,3.203295,5.4649,3.203295 +L 5.4649,3.203295,6.5962,3.203295 +L 6.5962,3.203295,6.5962,3.735931 +L 6.5962,3.735931,6.5962,4.259897 +L 6.5962,4.259897,6.5962,4.766899 +L 6.5962,4.766899,5.4649,4.766899 +L 5.4649,4.766899,4.3371,4.766899 +L 4.3371,4.766899,3.2061,4.766899 +L 6.5962,5.567713,5.4649,5.670926 +L 5.4649,5.670926,4.3371,5.757043 +L 4.3371,5.757043,3.2061,5.834731 +L 6.1657,6.368636,6.2984,6.738758 +L 6.2984,6.738758,6.442,7.091826 +L 6.442,7.091826,6.5962,7.43638 +L 3.6369,6.902498,3.486,7.169471 +L 3.486,7.169471,3.3354,7.43638 +L 3.3354,7.43638,3.2061,7.703377 +L 3.2061,7.703377,4.8589,8.029673 +L 4.8589,8.029673,5.938,8.355905 +L 5.938,8.355905,7.02,8.504234 + +[韻] 72 +L 3.8771,-0.000025,4.213,0.370031 +L 4.213,0.370031,4.5597,0.723144 +L 4.5597,0.723144,4.917,1.067872 +L 7.4811,-0.000025,7.1831,0.370031 +L 7.1831,0.370031,6.9029,0.723144 +L 6.9029,0.723144,6.6265,1.067872 +L 0.6759,0.53388,0.6759,1.79091 +L 0.6759,1.79091,0.6759,3.03949 +L 0.6759,3.03949,0.6759,4.271106 +L 0.6759,4.271106,1.3795,4.271106 +L 1.3795,4.271106,2.087,4.271106 +L 2.087,4.271106,2.812,4.271106 +L 2.812,4.271106,2.812,3.03949 +L 2.812,3.03949,2.812,1.79091 +L 2.812,1.79091,2.812,0.53388 +L 2.812,0.53388,2.087,0.53388 +L 2.087,0.53388,1.3795,0.53388 +L 1.3795,0.53388,0.6759,0.53388 +L 4.4897,2.135573,4.4897,3.546602 +L 4.4897,3.546602,4.4897,4.957542 +L 4.4897,4.957542,4.4897,6.368636 +L 4.4897,6.368636,5.3443,6.368636 +L 5.3443,6.368636,6.1989,6.368636 +L 6.1989,6.368636,7.0538,6.368636 +L 7.0538,6.368636,7.0538,4.957542 +L 7.0538,4.957542,7.0538,3.546602 +L 7.0538,3.546602,7.0538,2.135573 +L 7.0538,2.135573,6.1989,2.135573 +L 6.1989,2.135573,5.3443,2.135573 +L 5.3443,2.135573,4.4897,2.135573 +L 1.1032,2.669456,1.534,2.669456 +L 1.534,2.669456,1.9543,2.669456 +L 1.9543,2.669456,2.3847,2.669456 +L 4.917,3.737266,5.4742,3.737266 +L 5.4742,3.737266,6.0451,3.737266 +L 6.0451,3.737266,6.6265,3.737266 +L 4.917,4.766899,5.4742,4.766899 +L 5.4742,4.766899,6.0451,4.766899 +L 6.0451,4.766899,6.6265,4.766899 +L 0.2797,5.834731,0.5529,5.834731 +L 0.5529,5.834731,0.8296,5.834731 +L 0.8296,5.834731,1.1032,5.834731 +L 1.1032,5.834731,0.9522,6.471717 +L 0.9522,6.471717,0.8051,7.091826 +L 0.8051,7.091826,0.6759,7.703377 +L 0.6759,7.703377,0.9522,7.806567 +L 0.9522,7.806567,1.2359,7.892574 +L 1.2359,7.892574,1.534,7.970351 +L 1.534,7.970351,1.534,8.340363 +L 1.534,8.340363,1.534,8.693498 +L 1.534,8.693498,1.534,9.038182 +L 1.534,5.834731,1.8033,5.937878 +L 1.8033,5.937878,2.087,6.023994 +L 2.087,6.023994,2.3847,6.101706 +L 2.3847,6.101706,2.5143,6.738758 +L 2.5143,6.738758,2.6618,7.358823 +L 2.6618,7.358823,2.812,7.970351 +L 2.812,7.970351,2.5143,7.970351 +L 2.5143,7.970351,2.2345,7.970351 +L 2.2345,7.970351,1.9543,7.970351 +L 4.917,7.43638,4.917,7.806567 +L 4.917,7.806567,4.917,8.15957 +L 4.917,8.15957,4.917,8.504234 +L 4.917,8.504234,5.4742,8.504234 +L 5.4742,8.504234,6.0451,8.504234 +L 6.0451,8.504234,6.6265,8.504234 +L 6.6265,8.504234,6.6265,8.15957 +L 6.6265,8.15957,6.6265,7.806567 +L 6.6265,7.806567,6.6265,7.43638 +L 6.6265,7.43638,6.0451,7.43638 +L 6.0451,7.43638,5.4742,7.43638 +L 5.4742,7.43638,4.917,7.43638 + +[渦] 57 +L 0.2817,0.26684,0.7024,1.437863 +L 0.7024,1.437863,1.1328,2.591811 +L 1.1328,2.591811,1.5601,3.737266 +L 2.4112,-0.000025,2.4112,1.600267 +L 2.4112,1.600267,2.4112,3.192088 +L 2.4112,3.192088,2.4112,4.766899 +L 2.4112,4.766899,2.6914,4.766899 +L 2.6914,4.766899,2.965,4.766899 +L 2.965,4.766899,3.2378,4.766899 +L 3.2378,4.766899,3.2378,6.023994 +L 3.2378,6.023994,3.2378,7.272596 +L 3.2378,7.272596,3.2378,8.504234 +L 3.2378,8.504234,4.2258,8.504234 +L 4.2258,8.504234,5.2237,8.504234 +L 5.2237,8.504234,6.2292,8.504234 +L 6.2292,8.504234,6.2292,7.272596 +L 6.2292,7.272596,6.2292,6.023994 +L 6.2292,6.023994,6.2292,4.766899 +L 6.2292,4.766899,6.5021,4.766899 +L 6.5021,4.766899,6.7788,4.766899 +L 6.7788,4.766899,7.0485,4.766899 +L 7.0485,4.766899,7.0485,3.192088 +L 7.0485,3.192088,7.0485,1.600267 +L 7.0485,1.600267,7.0485,-0.000025 +L 7.0485,-0.000025,6.7788,-0.000025 +L 6.7788,-0.000025,6.5021,-0.000025 +L 6.5021,-0.000025,6.2292,-0.000025 +L 3.6651,1.60169,3.6651,2.135573 +L 3.6651,2.135573,3.6651,2.669456 +L 3.6651,2.669456,3.6651,3.203295 +L 3.6651,3.203295,4.3691,3.203295 +L 4.3691,3.203295,5.0766,3.203295 +L 5.0766,3.203295,5.8019,3.203295 +L 5.8019,3.203295,5.8019,2.669456 +L 5.8019,2.669456,5.8019,2.135573 +L 5.8019,2.135573,5.8019,1.60169 +L 5.8019,1.60169,5.0766,1.60169 +L 5.0766,1.60169,4.3691,1.60169 +L 4.3691,1.60169,3.6651,1.60169 +L 3.6651,4.766899,3.9421,4.766899 +L 3.9421,4.766899,4.2258,4.766899 +L 4.2258,4.766899,4.5236,4.766899 +L 4.5236,4.766899,4.5236,5.490046 +L 4.5236,5.490046,4.5236,6.204765 +L 4.5236,6.204765,4.5236,6.902498 +L 4.5236,6.902498,4.9473,6.902498 +L 4.9473,6.902498,5.3746,6.902498 +L 5.3746,6.902498,5.8019,6.902498 +L 4.9473,4.766899,5.2237,4.766899 +L 5.2237,4.766899,5.5074,4.766899 +L 5.5074,4.766899,5.8019,4.766899 +L 1.1328,5.834731,0.8351,6.204765 +L 0.8351,6.204765,0.5553,6.557877 +L 0.5553,6.557877,0.2817,6.902498 +L 1.5601,7.970351,1.2628,8.340363 +L 1.2628,8.340363,0.9826,8.693498 +L 0.9826,8.693498,0.7024,9.038182 + +[浦] 60 +L 0.3083,0.26684,0.7145,1.437863 +L 0.7145,1.437863,1.1348,2.591811 +L 1.1348,2.591811,1.5621,3.737266 +L 2.8405,-0.000025,2.8405,1.944864 +L 2.8405,1.944864,2.8405,3.889776 +L 2.8405,3.889776,2.8405,5.834731 +L 2.8405,5.834731,3.4009,5.834731 +L 3.4009,5.834731,3.9718,5.834731 +L 3.9718,5.834731,4.5501,5.834731 +L 4.5501,5.834731,4.8369,6.428002 +L 4.8369,6.428002,4.8369,6.843283 +L 4.8369,6.843283,4.5501,7.43638 +L 4.5501,7.43638,3.8247,7.43638 +L 3.8247,7.43638,3.1172,7.43638 +L 3.1172,7.43638,2.4171,7.43638 +L 4.9805,-0.000025,4.9,1.89548 +L 4.9,1.89548,4.445,2.579137 +L 4.445,2.579137,3.2717,2.669456 +L 6.2277,-0.000025,6.5041,-0.000025 +L 6.5041,-0.000025,6.7878,-0.000025 +L 6.7878,-0.000025,7.0855,-0.000025 +L 7.0855,-0.000025,7.0855,0.90398 +L 7.0855,0.90398,7.0855,1.79091 +L 7.0855,1.79091,7.0855,2.669456 +L 7.0855,2.669456,6.5041,2.669456 +L 6.5041,2.669456,5.9297,2.669456 +L 5.9297,2.669456,5.3766,2.669456 +L 5.3766,2.669456,5.0965,3.203295 +L 5.0965,3.203295,4.8268,3.737266 +L 4.8268,3.737266,4.5501,4.271106 +L 4.5501,4.271106,4.1228,4.271106 +L 4.1228,4.271106,3.6955,4.271106 +L 3.6955,4.271106,3.2717,4.271106 +L 7.0855,3.203295,7.0855,3.573439 +L 7.0855,3.573439,7.0855,3.926464 +L 7.0855,3.926464,7.0855,4.271106 +L 7.0855,4.271106,5.7265,4.477422 +L 5.7265,4.477422,5.1802,4.675179 +L 5.1802,4.675179,4.9805,5.03394 +L 4.9805,5.03394,5.1031,5.300738 +L 5.1031,5.300738,5.2292,5.567713 +L 5.2292,5.567713,5.3766,5.834731 +L 5.3766,5.834731,5.9297,5.834731 +L 5.9297,5.834731,6.5041,5.834731 +L 6.5041,5.834731,7.0855,5.834731 +L 7.0855,5.834731,7.0855,5.490046 +L 7.0855,5.490046,7.0855,5.136934 +L 7.0855,5.136934,7.0855,4.766899 +L 1.1593,5.834731,0.8686,6.204765 +L 0.8686,6.204765,0.5849,6.557877 +L 0.5849,6.557877,0.3083,6.902498 +L 5.3766,7.43638,5.0965,7.851662 +L 5.0965,7.851662,4.9914,8.266987 +L 4.9914,8.266987,4.9805,9.038182 +L 5.8004,7.43638,6.357,7.43638 +L 6.357,7.43638,6.9317,7.43638 +L 6.9317,7.43638,7.5058,7.43638 +L 1.5621,7.970351,1.2858,8.340363 +L 1.2858,8.340363,1.0122,8.693498 +L 1.0122,8.693498,0.7394,9.038182 + +[影] 63 +L 1.5925,-0.000025,1.8653,-0.000025 +L 1.8653,-0.000025,2.149,-0.000025 +L 2.149,-0.000025,2.4436,-0.000025 +L 2.4436,-0.000025,2.4436,1.067872 +L 2.4436,1.067872,2.4436,2.135573 +L 2.4436,2.135573,2.4436,3.203295 +L 2.4436,3.203295,2.0198,3.203295 +L 2.0198,3.203295,1.5925,3.203295 +L 1.5925,3.203295,1.1652,3.203295 +L 1.1652,3.203295,1.1652,3.573439 +L 1.1652,3.573439,1.1652,3.926464 +L 1.1652,3.926464,1.1652,4.271106 +L 1.1652,4.271106,2.0198,4.271106 +L 2.0198,4.271106,2.874,4.271106 +L 2.874,4.271106,3.7286,4.271106 +L 3.7286,4.271106,3.7286,3.926464 +L 3.7286,3.926464,3.7286,3.573439 +L 3.7286,3.573439,3.7286,3.203295 +L 3.7286,3.203295,3.4313,3.203295 +L 3.4313,3.203295,3.1511,3.203295 +L 3.1511,3.203295,2.874,3.203295 +L 4.5486,-0.000025,5.6588,0.435001 +L 5.6588,0.435001,6.4329,0.988651 +L 6.4329,0.988651,7.5432,2.135573 +L 0.3141,0.53388,0.5834,1.067872 +L 0.5834,1.067872,0.8671,1.60169 +L 0.8671,1.60169,1.1652,2.135573 +L 3.7286,1.334738,3.5749,1.60169 +L 3.5749,1.60169,3.4313,1.868599 +L 3.4313,1.868599,3.2978,2.135573 +L 5.1895,3.737266,5.9636,4.450518 +L 5.9636,4.450518,6.7481,5.14685 +L 6.7481,5.14685,7.5432,5.834731 +L 0.3141,5.300738,1.0142,5.300738 +L 1.0142,5.300738,1.7217,5.300738 +L 1.7217,5.300738,2.4436,5.300738 +L 2.4436,5.300738,2.4436,5.670926 +L 2.4436,5.670926,2.4436,6.023994 +L 2.4436,6.023994,2.4436,6.368636 +L 2.4436,6.368636,2.0198,6.368636 +L 2.0198,6.368636,1.5925,6.368636 +L 1.5925,6.368636,1.1652,6.368636 +L 1.1652,6.368636,1.1652,7.091826 +L 1.1652,7.091826,1.1652,7.806567 +L 1.1652,7.806567,1.1652,8.504234 +L 1.1652,8.504234,2.0198,8.504234 +L 2.0198,8.504234,2.874,8.504234 +L 2.874,8.504234,3.7286,8.504234 +L 3.7286,8.504234,3.7286,7.806567 +L 3.7286,7.806567,3.7286,7.091826 +L 3.7286,7.091826,3.7286,6.368636 +L 3.7286,6.368636,3.4313,6.368636 +L 3.4313,6.368636,3.1511,6.368636 +L 3.1511,6.368636,2.874,6.368636 +L 2.874,5.300738,3.4239,5.300738 +L 3.4239,5.300738,3.9777,5.300738 +L 3.9777,5.300738,4.5486,5.300738 +L 5.1895,6.902498,5.8336,7.43638 +L 5.8336,7.43638,6.4714,7.970351 +L 6.4714,7.970351,7.1124,8.504234 +L 1.5925,7.43638,2.149,7.43638 +L 2.149,7.43638,2.7238,7.43638 +L 2.7238,7.43638,3.2978,7.43638 + +[詠] 53 +L 0.7711,-0.000025,0.7711,0.723144 +L 0.7711,0.723144,0.7711,1.437863 +L 0.7711,1.437863,0.7711,2.135573 +L 0.7711,2.135573,1.3175,2.135573 +L 1.3175,2.135573,1.8747,2.135573 +L 1.8747,2.135573,2.4452,2.135573 +L 2.4452,2.135573,2.4452,1.437863 +L 2.4452,1.437863,2.4452,0.723144 +L 2.4452,0.723144,2.4452,-0.000025 +L 2.4452,-0.000025,1.8747,-0.000025 +L 1.8747,-0.000025,1.3175,-0.000025 +L 1.3175,-0.000025,0.7711,-0.000025 +L 4.5821,-0.000025,4.8549,-0.000025 +L 4.8549,-0.000025,5.1421,-0.000025 +L 5.1421,-0.000025,5.4367,-0.000025 +L 5.4367,-0.000025,5.4367,2.314986 +L 5.4367,2.314986,5.4367,4.612967 +L 5.4367,4.612967,5.4367,6.902498 +L 5.4367,6.902498,4.8549,6.902498 +L 4.8549,6.902498,4.2875,6.902498 +L 4.2875,6.902498,3.7271,6.902498 +L 3.2963,1.067872,4.0494,2.340357 +L 4.0494,2.340357,4.4592,3.418018 +L 4.4592,3.418018,4.5821,4.766899 +L 4.5821,4.766899,4.1544,4.766899 +L 4.1544,4.766899,3.7271,4.766899 +L 3.7271,4.766899,3.2963,4.766899 +L 7.5382,1.067872,6.9669,2.135573 +L 6.9669,2.135573,6.4135,3.203295 +L 6.4135,3.203295,5.864,4.271106 +L 0.7711,3.737266,1.3175,3.737266 +L 1.3175,3.737266,1.8747,3.737266 +L 1.8747,3.737266,2.4452,3.737266 +L 6.6867,4.766899,6.9599,5.136934 +L 6.9599,5.136934,7.2436,5.490046 +L 7.2436,5.490046,7.5382,5.834731 +L 0.7711,5.300738,1.3175,5.300738 +L 1.3175,5.300738,1.8747,5.300738 +L 1.8747,5.300738,2.4452,5.300738 +L 0.3403,6.902498,1.1739,6.902498 +L 1.1739,6.902498,2.0214,6.902498 +L 2.0214,6.902498,2.8725,6.902498 +L 0.7711,8.504234,1.3175,8.504234 +L 1.3175,8.504234,1.8747,8.504234 +L 1.8747,8.504234,2.4452,8.504234 +L 0.3403,6.902498,2.8725,6.902498 +L 0.7711,8.504299,2.4452,8.504299 +L 0.7711,5.300936,2.4452,5.300936 +L 0.7711,4.233016,2.4452,4.233016 +L 0.7711,2.6695,2.4452,2.6695 +L 0.7711,-0.000025,0.7711,2.6695 +L 2.4452,-0.000025,0.7711,-0.000025 +L 2.4452,2.6695,2.4452,-0.000025 + +[鋭] 66 +L 0.3703,-0.000025,0.7804,-0.000025 +L 0.7804,-0.000025,1.1934,-0.000025 +L 1.1934,-0.000025,1.6207,-0.000025 +L 1.6207,-0.000025,1.6977,2.269739 +L 1.6977,2.269739,1.4946,4.047912 +L 1.4946,4.047912,0.3703,4.766899 +L 3.3302,-0.000025,4.1813,1.471771 +L 4.1813,1.471771,4.5347,2.646756 +L 4.5347,2.646756,4.6118,4.271106 +L 4.6118,4.271106,4.3141,4.271106 +L 4.3141,4.271106,4.0304,4.271106 +L 4.0304,4.271106,3.761,4.271106 +L 3.761,4.271106,3.761,5.148295 +L 3.761,5.148295,3.761,6.025439 +L 3.761,6.025439,3.761,6.902498 +L 3.761,6.902498,4.4615,6.902498 +L 4.4615,6.902498,5.1651,6.902498 +L 5.1651,6.902498,5.866,6.902498 +L 5.866,6.902498,5.9952,7.6256 +L 5.9952,7.6256,6.1388,8.340363 +L 6.1388,8.340363,6.2863,9.038182 +L 6.2863,-0.000025,5.9917,0.514135 +L 5.9917,0.514135,5.88,1.621522 +L 5.88,1.621522,5.866,4.271106 +L 5.866,4.271106,5.5679,4.271106 +L 5.5679,4.271106,5.2842,4.271106 +L 5.2842,4.271106,5.0079,4.271106 +L 6.7167,-0.000025,6.9938,-0.000025 +L 6.9938,-0.000025,7.2775,-0.000025 +L 7.2775,-0.000025,7.5748,-0.000025 +L 7.5748,-0.000025,7.5748,0.53388 +L 7.5748,0.53388,7.5748,1.067872 +L 7.5748,1.067872,7.5748,1.60169 +L 2.262,0.53388,2.4753,0.723144 +L 2.4753,0.723144,2.6889,0.90398 +L 2.6889,0.90398,2.9029,1.067872 +L 0.7979,1.868599,0.647,2.324902 +L 0.647,2.324902,0.5002,2.772625 +L 0.5002,2.772625,0.3703,3.203295 +L 2.4753,2.40257,2.6052,2.858742 +L 2.6052,2.858742,2.752,3.306508 +L 2.752,3.306508,2.9029,3.737266 +L 6.2863,4.271106,6.5665,4.271106 +L 6.5665,4.271106,6.8463,4.271106 +L 6.8463,4.271106,7.144,4.271106 +L 7.144,4.271106,7.144,5.148295 +L 7.144,5.148295,7.144,6.025439 +L 7.144,6.025439,7.144,6.902498 +L 7.144,6.902498,6.8463,6.902498 +L 6.8463,6.902498,6.5665,6.902498 +L 6.5665,6.902498,6.2863,6.902498 +L 2.0518,4.766899,1.7506,5.18218 +L 1.7506,5.18218,1.6382,5.597462 +L 1.6382,5.597462,1.6207,6.368636 +L 1.6207,6.368636,1.0288,6.388447 +L 1.0288,6.388447,0.7034,6.526771 +L 0.7034,6.526771,0.3703,6.902498 +L 0.3703,6.902498,0.7804,7.6256 +L 0.7804,7.6256,1.1934,8.340363 +L 1.1934,8.340363,1.6207,9.038182 +L 1.6207,9.038182,2.0518,8.504234 +L 2.0518,8.504234,2.4753,7.970351 +L 2.4753,7.970351,2.9029,7.43638 +L 4.6118,8.237304,4.4615,8.504234 +L 4.4615,8.504234,4.3141,8.771165 +L 4.3141,8.771165,4.1848,9.038182 + +[疫] 48 +L 0.3726,-0.000025,1.0031,1.370068 +L 1.0031,1.370068,1.437,2.875729 +L 1.437,2.875729,1.437,4.271106 +L 1.437,4.271106,1.0728,3.926464 +L 1.0728,3.926464,0.7194,3.573439 +L 0.7194,3.573439,0.3726,3.203295 +L 1.6545,-0.000025,2.5473,0.098875 +L 2.5473,0.098875,3.693,0.435001 +L 3.693,0.435001,4.6138,1.067872 +L 4.6138,1.067872,3.7031,2.392653 +L 3.7031,2.392653,3.1567,2.946347 +L 3.1567,2.946347,2.5088,3.203295 +L 6.7433,-0.000025,6.2109,0.395446 +L 6.2109,0.395446,5.5773,0.672358 +L 5.5773,0.672358,5.0376,1.067872 +L 5.0376,1.067872,5.4649,1.704793 +L 5.4649,1.704793,5.8922,2.324902 +L 5.8922,2.324902,6.3233,2.936408 +L 6.3233,2.936408,5.4649,3.03949 +L 5.4649,3.03949,4.6138,3.125738 +L 4.6138,3.125738,3.7595,3.203295 +L 2.5088,4.271106,3.1081,5.055063 +L 3.1081,5.055063,3.3287,5.737341 +L 3.3287,5.737341,3.3599,6.902498 +L 3.3599,6.902498,4.0642,6.902498 +L 4.0642,6.902498,4.7647,6.902498 +L 4.7647,6.902498,5.4649,6.902498 +L 5.4649,6.902498,5.4719,5.220379 +L 5.4719,5.220379,5.8645,4.453342 +L 5.8645,4.453342,7.1744,4.271106 +L 7.1744,4.271106,7.1744,4.614302 +L 7.1744,4.614302,7.1744,4.957542 +L 7.1744,4.957542,7.1744,5.300738 +L 1.6545,4.766899,1.6545,5.834731 +L 1.6545,5.834731,1.6545,6.902498 +L 1.6545,6.902498,1.6545,7.970351 +L 1.6545,7.970351,2.6314,7.970351 +L 2.6314,7.970351,3.6159,7.970351 +L 3.6159,7.970351,4.6138,7.970351 +L 4.6138,7.970351,4.6138,8.340363 +L 4.6138,8.340363,4.6138,8.693498 +L 4.6138,8.693498,4.6138,9.038182 +L 0.7999,6.101706,0.6455,6.368636 +L 0.6455,6.368636,0.5022,6.635632 +L 0.5022,6.635632,0.3726,6.902498 +L 5.0376,7.970351,5.8746,7.970351 +L 5.8746,7.970351,6.7156,7.970351 +L 6.7156,7.970351,7.5698,7.970351 + +[悦] 48 +L 1.6807,-0.000025,1.6807,3.012674 +L 1.6807,3.012674,1.6807,6.025439 +L 1.6807,6.025439,1.6807,9.038182 +L 2.5073,-0.000025,3.4249,1.403976 +L 3.4249,1.403976,4.0063,2.638438 +L 4.0063,2.638438,4.2165,4.271106 +L 4.2165,4.271106,3.9226,4.271106 +L 3.9226,4.271106,3.6354,4.271106 +L 3.6354,4.271106,3.3619,4.271106 +L 3.3619,4.271106,3.3619,5.148295 +L 3.3619,5.148295,3.3619,6.025439 +L 3.3619,6.025439,3.3619,6.902498 +L 3.3619,6.902498,4.0627,7.005644 +L 4.0627,7.005644,4.7734,7.091826 +L 4.7734,7.091826,5.4952,7.169471 +L 5.4952,7.169471,5.7716,7.806567 +L 5.7716,7.806567,6.0451,8.426523 +L 6.0451,8.426523,6.318,9.038182 +L 5.898,-0.000025,5.614,0.514135 +L 5.614,0.514135,5.5089,1.621522 +L 5.5089,1.621522,5.4952,4.271106 +L 5.4952,4.271106,5.2007,4.271106 +L 5.2007,4.271106,4.9205,4.271106 +L 4.9205,4.271106,4.6441,4.271106 +L 6.318,-0.000025,6.5981,-0.000025 +L 6.5981,-0.000025,6.8787,-0.000025 +L 6.8787,-0.000025,7.1726,-0.000025 +L 7.1726,-0.000025,7.1726,0.53388 +L 7.1726,0.53388,7.1726,1.067872 +L 7.1726,1.067872,7.1726,1.60169 +L 5.898,4.271106,6.1677,4.271106 +L 6.1677,4.271106,6.4514,4.271106 +L 6.4514,4.271106,6.7491,4.271106 +L 6.7491,4.271106,6.7491,5.148295 +L 6.7491,5.148295,6.7491,6.025439 +L 6.7491,6.025439,6.7491,6.902498 +L 6.7491,6.902498,6.4514,6.902498 +L 6.4514,6.902498,6.1677,6.902498 +L 6.1677,6.902498,5.898,6.902498 +L 0.4023,5.03394,0.7004,5.656675 +L 0.7004,5.656675,0.8121,6.279695 +L 0.8121,6.279695,0.8296,7.43638 +L 2.5073,6.635632,2.3532,6.902498 +L 2.3532,6.902498,2.2131,7.169471 +L 2.2131,7.169471,2.0768,7.43638 +L 4.2165,8.237304,4.0627,8.504234 +L 4.0627,8.504234,3.9226,8.771165 +L 3.9226,8.771165,3.7857,9.038182 + +[謁] 65 +L 0.8281,-0.000025,0.8281,0.90398 +L 0.8281,0.90398,0.8281,1.79091 +L 0.8281,1.79091,0.8281,2.669456 +L 0.8281,2.669456,2.1275,2.745766 +L 2.1275,2.745766,2.9366,3.177946 +L 2.9366,3.177946,4.0329,4.271106 +L 4.0329,4.271106,3.9488,5.682265 +L 3.9488,5.682265,3.8791,7.093162 +L 3.8791,7.093162,3.8196,8.504234 +L 3.8196,8.504234,4.7964,8.504234 +L 4.7964,8.504234,5.7809,8.504234 +L 5.7809,8.504234,6.7756,8.504234 +L 6.7756,8.504234,6.7756,7.6256 +L 6.7756,7.6256,6.7756,6.738758 +L 6.7756,6.738758,6.7756,5.834731 +L 6.7756,5.834731,6.0573,5.834731 +L 6.0573,5.834731,5.3463,5.834731 +L 5.3463,5.834731,4.6461,5.834731 +L 1.2554,-0.000025,1.6827,-0.000025 +L 1.6827,-0.000025,2.11,-0.000025 +L 2.11,-0.000025,2.5412,-0.000025 +L 2.5412,-0.000025,2.5412,0.723144 +L 2.5412,0.723144,2.5412,1.437863 +L 2.5412,1.437863,2.5412,2.135573 +L 5.9245,-0.000025,7.1399,0.725968 +L 7.1399,0.725968,7.315,2.401037 +L 7.315,2.401037,7.2061,4.271106 +L 7.2061,4.271106,6.355,4.271106 +L 6.355,4.271106,5.4972,4.271106 +L 5.4972,4.271106,4.6461,4.271106 +L 4.2469,1.067872,3.9453,1.502811 +L 3.9453,1.502811,3.8336,2.056483 +L 3.8336,2.056483,3.8196,3.203295 +L 4.6461,1.067872,5.0661,1.067872 +L 5.0661,1.067872,5.4972,1.067872 +L 5.4972,1.067872,5.9245,1.067872 +L 5.9245,1.067872,5.9245,1.437863 +L 5.9245,1.437863,5.9245,1.79091 +L 5.9245,1.79091,5.9245,2.135573 +L 4.4321,2.669456,4.7754,2.858742 +L 4.7754,2.858742,5.133,3.03949 +L 5.133,3.03949,5.4972,3.203295 +L 0.8281,4.271106,1.3853,4.271106 +L 1.3853,4.271106,1.9598,4.271106 +L 1.9598,4.271106,2.5412,4.271106 +L 0.8281,5.834731,1.3853,5.834731 +L 1.3853,5.834731,1.9598,5.834731 +L 1.9598,5.834731,2.5412,5.834731 +L 0.4288,7.43638,1.2698,7.43638 +L 1.2698,7.43638,2.11,7.43638 +L 2.11,7.43638,2.965,7.43638 +L 4.2469,7.43638,4.9508,7.43638 +L 4.9508,7.43638,5.651,7.43638 +L 5.651,7.43638,6.355,7.43638 +L 0.8281,8.504234,1.3853,8.504234 +L 1.3853,8.504234,1.9598,8.504234 +L 1.9598,8.504234,2.5412,8.504234 +L 0.4012,6.902498,2.9366,6.902498 +L 0.8281,8.504299,2.5061,8.504299 +L 0.8281,5.300936,2.5061,5.300936 +L 0.8281,4.233016,2.5061,4.233016 +L 0.8281,2.6695,2.5061,2.6695 +L 0.8281,-0.000025,0.8281,2.6695 +L 2.5061,-0.000025,0.8281,-0.000025 +L 2.5061,2.6695,2.5061,-0.000025 + +[越] 45 +L 0.4347,0.26684,0.732,0.929307 +L 0.732,0.929307,0.8445,1.829152 +L 0.8445,1.829152,0.8585,3.737266 +L 2.5673,-0.000025,2.1404,0.370031 +L 2.1404,0.370031,1.7131,0.723144 +L 1.7131,0.723144,1.2893,1.067872 +L 2.9635,-0.000025,4.5182,-0.000025 +L 4.5182,-0.000025,6.0768,-0.000025 +L 6.0768,-0.000025,7.6284,-0.000025 +L 2.1404,1.067872,2.1856,3.63981 +L 2.1856,3.63981,1.8532,4.94073 +L 1.8532,4.94073,0.4347,5.300738 +L 5.1031,1.60169,5.5234,2.057819 +L 5.5234,2.057819,5.9542,2.505629 +L 5.9542,2.505629,6.3815,2.936408 +L 6.3815,2.936408,5.8351,5.18785 +L 5.8351,5.18785,5.688,6.812177 +L 5.688,6.812177,4.2453,7.43638 +L 4.2453,7.43638,4.308,5.861546 +L 4.308,5.861546,4.3746,4.26977 +L 4.3746,4.26977,4.4586,2.669456 +L 4.4586,2.669456,4.6723,2.858742 +L 4.6723,2.858742,4.8898,3.03949 +L 4.8898,3.03949,5.1031,3.203295 +L 7.6284,1.60169,7.6284,1.971724 +L 7.6284,1.971724,7.6284,2.324902 +L 7.6284,2.324902,7.6284,2.669456 +L 2.5673,3.203295,2.8444,3.203295 +L 2.8444,3.203295,3.1137,3.203295 +L 3.1137,3.203295,3.3943,3.203295 +L 6.8126,4.004131,6.9352,4.614302 +L 6.9352,4.614302,7.0645,5.224495 +L 7.0645,5.224495,7.2046,5.834731 +L 2.5673,5.300738,2.0455,6.413752 +L 2.0455,6.413752,1.8111,7.16251 +L 1.8111,7.16251,0.8585,7.43638 +L 2.5673,7.43638,2.2661,7.851662 +L 2.2661,7.851662,2.1579,8.266987 +L 2.1579,8.266987,2.1404,9.038182 +L 6.3815,7.43638,6.0806,7.851662 +L 6.0806,7.851662,5.9717,8.266987 +L 5.9717,8.266987,5.9542,9.038182 +L 6.8126,7.43638,7.082,7.43638 +L 7.082,7.43638,7.359,7.43638 +L 7.359,7.43638,7.6284,7.43638 + +[閲] 63 +L 0.4612,-0.000025,0.4612,2.848847 +L 0.4612,2.848847,0.4612,5.680711 +L 0.4612,5.680711,0.4612,8.504234 +L 0.4612,8.504234,1.2944,8.504234 +L 1.2944,8.504234,2.142,8.504234 +L 2.142,8.504234,2.9966,8.504234 +L 2.9966,8.504234,2.9966,7.806567 +L 2.9966,7.806567,2.9966,7.091826 +L 2.9966,7.091826,2.9966,6.368636 +L 2.9966,6.368636,2.2926,6.368636 +L 2.2926,6.368636,1.5925,6.368636 +L 1.5925,6.368636,0.8917,6.368636 +L 6.3835,-0.000025,5.2526,0.768325 +L 5.2526,0.768325,4.5342,1.036766 +L 4.5342,1.036766,4.275,2.669456 +L 4.275,2.669456,3.8512,2.669456 +L 3.8512,2.669456,3.4239,2.669456 +L 3.4239,2.669456,2.9966,2.669456 +L 2.9966,2.669456,2.9966,2.324902 +L 2.9966,2.324902,2.9966,1.971724 +L 2.9966,1.971724,2.9966,1.60169 +L 2.9966,1.60169,2.5662,1.257071 +L 2.5662,1.257071,2.142,0.90398 +L 2.142,0.90398,1.7151,0.53388 +L 7.0209,-0.000025,7.0875,2.134106 +L 7.0875,2.134106,7.1544,4.259897 +L 7.1544,4.259897,7.2349,6.368636 +L 7.2349,6.368636,6.3835,6.368636 +L 6.3835,6.368636,5.5363,6.368636 +L 5.5363,6.368636,4.7023,6.368636 +L 4.7023,6.368636,4.7023,7.091826 +L 4.7023,7.091826,4.7023,7.806567 +L 4.7023,7.806567,4.7023,8.504234 +L 4.7023,8.504234,5.5363,8.504234 +L 5.5363,8.504234,6.3835,8.504234 +L 6.3835,8.504234,7.2349,8.504234 +L 7.2349,8.504234,7.2349,7.970351 +L 7.2349,7.970351,7.2349,7.43638 +L 7.2349,7.43638,7.2349,6.902498 +L 2.142,2.669456,2.142,3.203295 +L 2.142,3.203295,2.142,3.737266 +L 2.142,3.737266,2.142,4.271106 +L 2.142,4.271106,2.4152,4.374252 +L 2.4152,4.374252,2.6989,4.460456 +L 2.6989,4.460456,2.9966,4.538167 +L 2.9966,4.538167,2.8429,4.803632 +L 2.8429,4.803632,2.6989,5.060755 +L 2.6989,5.060755,2.5662,5.300738 +L 4.7023,2.669456,4.979,2.669456 +L 4.979,2.669456,5.2526,2.669456 +L 5.2526,2.669456,5.5289,2.669456 +L 5.5289,2.669456,5.5289,3.203295 +L 5.5289,3.203295,5.5289,3.737266 +L 5.5289,3.737266,5.5289,4.271106 +L 5.5289,4.271106,4.8253,4.271106 +L 4.8253,4.271106,4.1248,4.271106 +L 4.1248,4.271106,3.4239,4.271106 +L 0.8917,7.43638,1.4415,7.43638 +L 1.4415,7.43638,1.9953,7.43638 +L 1.9953,7.43638,2.5662,7.43638 +L 5.13,7.43638,5.6834,7.43638 +L 5.6834,7.43638,6.2364,7.43638 +L 6.2364,7.43638,6.8073,7.43638 + +[宴] 57 +L 0.8901,-0.000025,2.7359,0.306461 +L 2.7359,0.306461,3.6221,1.028295 +L 3.6221,1.028295,2.172,1.868599 +L 2.172,1.868599,2.3051,2.238676 +L 2.3051,2.238676,2.4487,2.591811 +L 2.4487,2.591811,2.5997,2.936408 +L 2.5997,2.936408,1.8747,3.03949 +L 1.8747,3.03949,1.1672,3.125738 +L 1.1672,3.125738,0.4628,3.203295 +L 6.4135,-0.000025,5.6885,0.456147 +L 5.6885,0.456147,4.9775,0.90398 +L 4.9775,0.90398,4.277,1.334738 +L 4.277,1.334738,4.5537,1.868599 +L 4.5537,1.868599,4.8343,2.40257 +L 4.8343,2.40257,5.1355,2.936408 +L 5.1355,2.936408,4.4311,3.125738 +L 4.4311,3.125738,3.7306,3.306508 +L 3.7306,3.306508,3.0231,3.470292 +L 3.0231,3.470292,3.1597,3.840391 +L 3.1597,3.840391,3.2998,4.193461 +L 3.2998,4.193461,3.4543,4.538167 +L 3.4543,4.538167,3.0231,4.614302 +L 3.0231,4.614302,2.5997,4.690721 +L 2.5997,4.690721,2.172,4.766899 +L 2.172,4.766899,2.172,5.490046 +L 2.172,5.490046,2.172,6.204765 +L 2.172,6.204765,2.172,6.902498 +L 2.172,6.902498,3.2998,6.902498 +L 3.2998,6.902498,4.4311,6.902498 +L 4.4311,6.902498,5.5558,6.902498 +L 5.5558,6.902498,5.5558,6.204765 +L 5.5558,6.204765,5.5558,5.490046 +L 5.5558,5.490046,5.5558,4.766899 +L 5.5558,4.766899,4.9845,4.766899 +L 4.9845,4.766899,4.4311,4.766899 +L 4.4311,4.766899,3.8816,4.766899 +L 5.5558,3.203295,6.1158,3.203295 +L 6.1158,3.203295,6.6867,3.203295 +L 6.6867,3.203295,7.2646,3.203295 +L 2.5997,5.834731,3.4333,5.834731 +L 3.4333,5.834731,4.277,5.834731 +L 4.277,5.834731,5.1355,5.834731 +L 0.4628,6.368636,0.4628,6.902498 +L 0.4628,6.902498,0.4628,7.43638 +L 0.4628,7.43638,0.4628,7.970351 +L 0.4628,7.970351,1.591,7.970351 +L 1.591,7.970351,2.7293,7.970351 +L 2.7293,7.970351,3.8816,7.970351 +L 3.8816,7.970351,3.8816,8.340363 +L 3.8816,8.340363,3.8816,8.693498 +L 3.8816,8.693498,3.8816,9.038182 +L 7.2646,6.368636,7.2646,6.902498 +L 7.2646,6.902498,7.2646,7.43638 +L 7.2646,7.43638,7.2646,7.970351 +L 7.2646,7.970351,6.2633,7.970351 +L 6.2633,7.970351,5.2612,7.970351 +L 5.2612,7.970351,4.277,7.970351 + +[援] 63 +L 0.4929,-0.000025,0.7696,-0.000025 +L 0.7696,-0.000025,1.0533,-0.000025 +L 1.0533,-0.000025,1.3478,-0.000025 +L 1.3478,-0.000025,1.3478,1.257071 +L 1.3478,1.257071,1.3478,2.505629 +L 1.3478,2.505629,1.3478,3.737266 +L 1.3478,3.737266,1.0533,3.737266 +L 1.0533,3.737266,0.7696,3.737266 +L 0.7696,3.737266,0.4929,3.737266 +L 3.0255,-0.000025,4.1007,0.405318 +L 4.1007,0.405318,4.6538,0.751382 +L 4.6538,0.751382,5.1616,1.334738 +L 5.1616,1.334738,4.7974,1.79091 +L 4.7974,1.79091,4.4366,2.238676 +L 4.4366,2.238676,4.0934,2.669456 +L 4.0934,2.669456,3.5855,2.324902 +L 3.5855,2.324902,3.0885,1.971724 +L 3.0885,1.971724,2.5978,1.60169 +L 7.2666,-0.000025,6.6961,0.53388 +L 6.6961,0.53388,6.1388,1.067872 +L 6.1388,1.067872,5.5924,1.60169 +L 5.5924,1.60169,5.8625,2.057819 +L 5.8625,2.057819,6.1388,2.505629 +L 6.1388,2.505629,6.4089,2.936408 +L 6.4089,2.936408,5.708,3.125738 +L 5.708,3.125738,5.0079,3.306508 +L 5.0079,3.306508,4.3039,3.470292 +L 4.3039,3.470292,4.4927,4.569208 +L 4.4927,4.569208,3.7785,4.812125 +L 3.7785,4.812125,3.0255,4.766899 +L 1.3478,4.271106,1.3478,4.984423 +L 1.3478,4.984423,1.3478,5.680711 +L 1.3478,5.680711,1.3478,6.368636 +L 1.3478,6.368636,1.0533,6.557877 +L 1.0533,6.557877,0.7696,6.738758 +L 0.7696,6.738758,0.4929,6.902498 +L 5.1616,4.766899,4.8604,5.18218 +L 4.8604,5.18218,4.7522,5.597462 +L 4.7522,5.597462,4.7343,6.368636 +L 4.7343,6.368636,4.3039,6.368636 +L 4.3039,6.368636,3.8832,6.368636 +L 3.8832,6.368636,3.4528,6.368636 +L 5.5924,4.766899,6.2929,4.766899 +L 6.2929,4.766899,6.9938,4.766899 +L 6.9938,4.766899,7.6939,4.766899 +L 5.3756,6.368636,5.5084,6.59612 +L 5.5084,6.59612,5.4562,6.942074 +L 5.4562,6.942074,5.1616,7.703377 +L 5.1616,7.703377,4.7343,7.703377 +L 4.7343,7.703377,4.3039,7.703377 +L 4.3039,7.703377,3.8832,7.703377 +L 3.8832,7.703377,4.0128,7.43638 +L 4.0128,7.43638,4.1564,7.169471 +L 4.1564,7.169471,4.3039,6.902498 +L 6.1984,6.368636,6.5451,7.005644 +L 6.5451,7.005644,6.9024,7.6256 +L 6.9024,7.6256,7.2666,8.237304 +L 7.2666,8.237304,6.6362,8.405378 +L 6.6362,8.405378,6.1984,8.336182 +L 6.1984,8.336182,5.5924,7.970351 +L 1.7783,6.902498,1.4739,7.337523 +L 1.4739,7.337523,1.3653,7.891239 +L 1.3653,7.891239,1.3478,9.038182 + +[炎] 24 +L 0.5264,-0.000025,2.2429,0.947651 +L 2.2429,0.947651,3.4513,2.573401 +L 3.4513,2.573401,3.9098,4.766899 +L 6.442,-0.000025,5.7419,0.90398 +L 5.7419,0.90398,5.0411,1.79091 +L 5.0411,1.79091,4.3409,2.669456 +L 1.3463,2.669456,1.6227,3.03949 +L 1.6227,3.03949,1.9029,3.392603 +L 1.9029,3.392603,2.2009,3.737266 +L 5.5874,2.669456,5.8676,3.03949 +L 5.8676,3.03949,6.1482,3.392603 +L 6.1482,3.392603,6.442,3.737266 +L 0.5264,4.766899,2.0675,5.62859 +L 2.0675,5.62859,3.3634,7.134162 +L 3.3634,7.134162,3.9098,9.038182 +L 6.442,4.766899,5.7419,5.670926 +L 5.7419,5.670926,5.0411,6.557877 +L 5.0411,6.557877,4.3409,7.43638 +L 1.3463,7.43638,1.6227,7.806567 +L 1.6227,7.806567,1.9029,8.15957 +L 1.9029,8.15957,2.2009,8.504234 +L 5.5874,7.43638,5.8676,7.806567 +L 5.8676,7.806567,6.1482,8.15957 +L 6.1482,8.15957,6.442,8.504234 + +[煙] 63 +L 0.5249,-0.000025,1.6036,3.046648 +L 1.6036,3.046648,1.8488,5.788039 +L 1.8488,5.788039,1.8033,9.038182 +L 3.089,-0.000025,3.7892,-0.000025 +L 3.7892,-0.000025,4.49,-0.000025 +L 4.49,-0.000025,5.1905,-0.000025 +L 5.1905,-0.000025,5.0539,1.621522 +L 5.0539,1.621522,4.5461,2.115784 +L 4.5461,2.115784,3.5128,2.135573 +L 5.6213,-0.000025,6.3253,-0.000025 +L 6.3253,-0.000025,7.0254,-0.000025 +L 7.0254,-0.000025,7.7263,-0.000025 +L 2.6617,1.334738,2.5108,1.60169 +L 2.5108,1.60169,2.3605,1.868599 +L 2.3605,1.868599,2.2344,2.135573 +L 5.6213,2.135573,5.3201,2.570643 +L 5.3201,2.570643,5.2077,3.124184 +L 5.2077,3.124184,5.1905,4.271106 +L 5.1905,4.271106,4.6231,4.271106 +L 4.6231,4.271106,4.0627,4.271106 +L 4.0627,4.271106,3.5128,4.271106 +L 3.5128,4.271106,3.4953,6.142706 +L 3.4953,6.142706,3.3902,6.963286 +L 3.3902,6.963286,3.089,7.43638 +L 3.089,7.43638,2.791,7.091826 +L 2.791,7.091826,2.5108,6.738758 +L 2.5108,6.738758,2.2344,6.368636 +L 6.0451,2.135573,6.4724,2.135573 +L 6.4724,2.135573,6.8997,2.135573 +L 6.8997,2.135573,7.3302,2.135573 +L 5.8311,4.271106,5.8941,4.984423 +L 5.8941,4.984423,5.9645,5.680711 +L 5.9645,5.680711,6.0451,6.368636 +L 6.0451,6.368636,5.5719,6.724507 +L 5.5719,6.724507,5.2395,6.724507 +L 5.2395,6.724507,4.7667,6.368636 +L 4.7667,6.368636,4.7667,5.834731 +L 4.7667,5.834731,4.7667,5.300738 +L 4.7667,5.300738,4.7667,4.766899 +L 6.4724,4.271106,6.7491,4.271106 +L 6.7491,4.271106,7.0328,4.271106 +L 7.0328,4.271106,7.3302,4.271106 +L 7.3302,4.271106,7.3302,5.148295 +L 7.3302,5.148295,7.3302,6.025439 +L 7.3302,6.025439,7.3302,6.902498 +L 7.3302,6.902498,6.3708,7.088915 +L 6.3708,7.088915,6.0661,7.631335 +L 6.0661,7.631335,6.0451,8.504234 +L 6.0451,8.504234,5.6213,8.504234 +L 5.6213,8.504234,5.1905,8.504234 +L 5.1905,8.504234,4.7667,8.504234 +L 4.7667,8.504234,4.7317,7.733038 +L 4.7317,7.733038,4.511,7.317822 +L 4.511,7.317822,3.9156,6.902498 +L 0.5249,5.03394,0.6545,5.670926 +L 0.6545,5.670926,0.8019,6.290904 +L 0.8019,6.290904,0.9522,6.902498 +L 3.089,8.504234,3.4953,8.504234 +L 3.4953,8.504234,3.9156,8.504234 +L 3.9156,8.504234,4.3356,8.504234 +L 6.4724,8.504234,6.8787,8.504234 +L 6.8787,8.504234,7.299,8.504234 +L 7.299,8.504234,7.7263,8.504234 + +[猿] 69 +L 0.5588,-0.000025,1.1892,0.039487 +L 1.1892,0.039487,1.6232,0.316356 +L 1.6232,0.316356,2.2326,1.067872 +L 2.2326,1.067872,2.1485,2.478748 +L 2.1485,2.478748,2.082,3.889776 +L 2.082,3.889776,2.0193,5.300738 +L 2.0193,5.300738,1.5324,4.612967 +L 1.5324,4.612967,1.0456,3.916679 +L 1.0456,3.916679,0.5588,3.203295 +L 3.0837,-0.000025,3.5148,-0.000025 +L 3.5148,-0.000025,3.9421,-0.000025 +L 3.9421,-0.000025,4.3726,-0.000025 +L 4.3726,-0.000025,4.2885,0.723144 +L 4.2885,0.723144,4.215,1.437863 +L 4.215,1.437863,4.1554,2.135573 +L 4.1554,2.135573,3.7912,1.971724 +L 3.7912,1.971724,3.4308,1.79091 +L 3.4308,1.79091,3.0837,1.60169 +L 4.7932,-0.000025,5.0734,0.189282 +L 5.0734,0.189282,5.3536,0.370031 +L 5.3536,0.370031,5.651,0.53388 +L 7.3287,-0.000025,6.1452,1.918114 +L 6.1452,1.918114,5.714,2.88698 +L 5.714,2.88698,5.651,3.737266 +L 5.651,3.737266,5.0314,3.519742 +L 5.0314,3.519742,4.6983,3.242851 +L 4.6983,3.242851,4.3726,2.669456 +L 6.4744,2.135573,6.7472,2.505629 +L 6.7472,2.505629,7.0348,2.858742 +L 7.0348,2.858742,7.3287,3.203295 +L 7.3287,3.203295,6.9928,3.579021 +L 6.9928,3.579021,6.6667,3.717499 +L 6.6667,3.717499,6.0471,3.737266 +L 3.5148,3.737266,3.5148,4.26977 +L 3.5148,4.26977,3.5148,4.79389 +L 3.5148,4.79389,3.5148,5.300738 +L 3.5148,5.300738,4.6423,5.300738 +L 4.6423,5.300738,5.7736,5.300738 +L 5.7736,5.300738,6.8982,5.300738 +L 6.8982,5.300738,6.8982,4.957542 +L 6.8982,4.957542,6.8982,4.614302 +L 6.8982,4.614302,6.8982,4.271106 +L 1.8372,5.834731,1.8228,6.605905 +L 1.8228,6.605905,1.7111,7.021164 +L 1.7111,7.021164,1.4099,7.43638 +L 1.4099,7.43638,1.1118,7.091826 +L 1.1118,7.091826,0.8281,6.738758 +L 0.8281,6.738758,0.5588,6.368636 +L 2.6637,6.368636,3.5148,6.368636 +L 3.5148,6.368636,4.3726,6.368636 +L 4.3726,6.368636,5.2237,6.368636 +L 5.2237,6.368636,4.9894,7.69913 +L 4.9894,7.69913,4.3761,8.012687 +L 4.3761,8.012687,3.5148,7.970351 +L 5.651,6.368636,6.3518,6.368636 +L 6.3518,6.368636,7.0523,6.368636 +L 7.0523,6.368636,7.7559,6.368636 +L 1.4099,7.970351,1.1118,8.340363 +L 1.1118,8.340363,0.8281,8.693498 +L 0.8281,8.693498,0.5588,9.038182 +L 1.8372,7.970351,2.11,8.340363 +L 2.11,8.340363,2.3835,8.693498 +L 2.3835,8.693498,2.6637,9.038182 +L 5.651,7.970351,5.5007,8.340363 +L 5.5007,8.340363,5.3536,8.693498 +L 5.3536,8.693498,5.2237,9.038182 +L 6.0471,7.970351,6.3238,7.970351 +L 6.3238,7.970351,6.6036,7.970351 +L 6.6036,7.970351,6.8982,7.970351 + +[縁] 69 +L 1.8357,-0.000025,1.8357,1.600267 +L 1.8357,1.600267,1.8357,3.192088 +L 1.8357,3.192088,1.8357,4.766899 +L 1.8357,4.766899,1.4119,4.766899 +L 1.4119,4.766899,0.9912,4.766899 +L 0.9912,4.766899,0.5849,4.766899 +L 4.7949,-0.000025,5.4152,0.019698 +L 5.4152,0.019698,5.7409,0.158111 +L 5.7409,0.158111,6.0768,0.53388 +L 6.0768,0.53388,5.9927,1.257071 +L 5.9927,1.257071,5.9265,1.971724 +L 5.9265,1.971724,5.8635,2.669456 +L 5.8635,2.669456,5.1591,2.135573 +L 5.1591,2.135573,4.4586,1.60169 +L 4.4586,1.60169,3.7585,1.067872 +L 3.7585,1.067872,3.3942,1.79091 +L 3.3942,1.79091,3.0366,2.505629 +L 3.0366,2.505629,2.6899,3.203295 +L 0.5849,1.334738,0.711,1.971724 +L 0.711,1.971724,0.841,2.591811 +L 0.841,2.591811,0.9811,3.203295 +L 7.7863,1.067872,7.0645,2.135573 +L 7.0645,2.135573,6.3535,3.203295 +L 6.3535,3.203295,5.653,4.271106 +L 5.653,4.271106,5.0821,3.737266 +L 5.0821,3.737266,4.522,3.203295 +L 4.522,3.203295,3.9718,2.669456 +L 6.9317,3.737266,7.2046,4.080441 +L 7.2046,4.080441,7.4918,4.423769 +L 7.4918,4.423769,7.7863,4.766899 +L 3.1207,4.538167,2.9669,4.803632 +L 2.9669,4.803632,2.8233,5.060755 +L 2.8233,5.060755,2.6899,5.300738 +L 2.6899,5.300738,2.5396,5.136934 +L 2.5396,5.136934,2.3922,4.956185 +L 2.3922,4.956185,2.263,4.766899 +L 4.1858,4.271106,4.522,4.717537 +L 4.522,4.717537,4.8688,5.14685 +L 4.8688,5.14685,5.2222,5.567713 +L 5.2222,5.567713,4.6516,5.670926 +L 4.6516,5.670926,4.0944,5.757043 +L 4.0944,5.757043,3.541,5.834731 +L 1.4119,5.300738,1.5411,5.567713 +L 1.5411,5.567713,1.6847,5.834731 +L 1.6847,5.834731,1.8357,6.101706 +L 1.8357,6.101706,1.5411,6.471717 +L 1.5411,6.471717,1.2574,6.82483 +L 1.2574,6.82483,0.9811,7.169471 +L 0.9811,7.169471,1.2574,7.806567 +L 1.2574,7.806567,1.5411,8.426523 +L 1.5411,8.426523,1.8357,9.038182 +L 5.653,5.834731,5.9265,5.834731 +L 5.9265,5.834731,6.2067,5.834731 +L 6.2067,5.834731,6.5041,5.834731 +L 6.5041,5.834731,6.5041,6.368636 +L 6.5041,6.368636,6.5041,6.902498 +L 6.5041,6.902498,6.5041,7.43638 +L 6.5041,7.43638,5.8039,7.43638 +L 5.8039,7.43638,5.0996,7.43638 +L 5.0996,7.43638,4.3991,7.43638 +L 6.9317,5.834731,7.2046,5.834731 +L 7.2046,5.834731,7.4918,5.834731 +L 7.4918,5.834731,7.7863,5.834731 +L 2.263,7.169471,2.3922,7.43638 +L 2.3922,7.43638,2.5396,7.703377 +L 2.5396,7.703377,2.6899,7.970351 +L 6.5041,8.237304,5.8039,8.340363 +L 5.8039,8.340363,5.0996,8.426523 +L 5.0996,8.426523,4.3991,8.504234 + +[鉛] 45 +L 0.5838,-0.000025,1.0142,-0.000025 +L 1.0142,-0.000025,1.4415,-0.000025 +L 1.4415,-0.000025,1.8688,-0.000025 +L 1.8688,-0.000025,1.9424,2.286682 +L 1.9424,2.286682,1.7326,4.056492 +L 1.7326,4.056492,0.5838,4.766899 +L 4.4014,-0.000025,4.4014,1.257071 +L 4.4014,1.257071,4.4014,2.505629 +L 4.4014,2.505629,4.4014,3.737266 +L 4.4014,3.737266,5.3751,3.737266 +L 5.3751,3.737266,6.359,3.737266 +L 6.359,3.737266,7.361,3.737266 +L 7.361,3.737266,7.361,2.505629 +L 7.361,2.505629,7.361,1.257071 +L 7.361,1.257071,7.361,-0.000025 +L 7.361,-0.000025,6.359,-0.000025 +L 6.359,-0.000025,5.3751,-0.000025 +L 5.3751,-0.000025,4.4014,-0.000025 +L 2.5066,0.53388,2.6989,0.723144 +L 2.6989,0.723144,2.9059,0.90398 +L 2.9059,0.90398,3.1157,1.067872 +L 1.0142,1.868599,0.8605,2.324902 +L 0.8605,2.324902,0.7204,2.772625 +L 0.7204,2.772625,0.5838,3.203295 +L 2.7203,2.40257,2.8429,2.858742 +L 2.8429,2.858742,2.9756,3.306508 +L 2.9756,3.306508,3.1157,3.737266 +L 2.2926,4.766899,1.9953,5.18218 +L 1.9953,5.18218,1.8828,5.597462 +L 1.8828,5.597462,1.8688,6.368636 +L 1.8688,6.368636,1.2524,6.388447 +L 1.2524,6.388447,0.9162,6.526771 +L 0.9162,6.526771,0.5838,6.902498 +L 0.5838,6.902498,1.0142,7.6256 +L 1.0142,7.6256,1.4415,8.340363 +L 1.4415,8.340363,1.8688,9.038182 +L 1.8688,9.038182,2.2755,8.504234 +L 2.2755,8.504234,2.6954,7.970351 +L 2.6954,7.970351,3.1157,7.43638 +L 3.9703,5.03394,4.5727,6.764019 +L 4.5727,6.764019,4.7937,7.663798 +L 4.7937,7.663798,4.8249,8.504234 +L 7.7848,4.766899,7.1369,6.230245 +L 7.1369,6.230245,6.6956,7.676517 +L 6.6956,7.676517,6.5344,9.038182 + +[汚] 39 +L 0.6173,0.26684,1.0236,1.437863 +L 1.0236,1.437863,1.4435,2.591811 +L 1.4435,2.591811,1.8638,3.737266 +L 5.6783,-0.000025,5.9547,-0.000025 +L 5.9547,-0.000025,6.2384,-0.000025 +L 6.2384,-0.000025,6.5361,-0.000025 +L 6.5361,-0.000025,7.149,1.45474 +L 7.149,1.45474,7.363,2.689289 +L 7.363,2.689289,7.3907,4.271106 +L 7.3907,4.271106,6.2633,4.271106 +L 6.2633,4.271106,5.132,4.271106 +L 5.132,4.271106,4.0042,4.271106 +L 4.0042,4.271106,4.0042,3.926464 +L 4.0042,3.926464,4.0042,3.573439 +L 4.0042,3.573439,4.0042,3.203295 +L 4.4311,4.766899,4.4311,5.300738 +L 4.4311,5.300738,4.4311,5.834731 +L 4.4311,5.834731,4.4311,6.368636 +L 4.4311,6.368636,3.8532,6.368636 +L 3.8532,6.368636,3.2788,6.368636 +L 3.2788,6.368636,2.7223,6.368636 +L 1.4719,5.834731,1.1773,6.204765 +L 1.1773,6.204765,0.8901,6.557877 +L 0.8901,6.557877,0.6173,6.902498 +L 4.8584,6.368636,4.8584,7.091826 +L 4.8584,7.091826,4.8584,7.806567 +L 4.8584,7.806567,4.8584,8.504234 +L 4.8584,8.504234,4.2809,8.504234 +L 4.2809,8.504234,3.7061,8.504234 +L 3.7061,8.504234,3.1531,8.504234 +L 5.2822,6.368636,6.1193,6.368636 +L 6.1193,6.368636,6.9634,6.368636 +L 6.9634,6.368636,7.818,6.368636 +L 1.8638,7.970351,1.5945,8.340363 +L 1.5945,8.340363,1.3174,8.693498 +L 1.3174,8.693498,1.0446,9.038182 +L 5.2822,8.504234,5.9831,8.504234 +L 5.9831,8.504234,6.6832,8.504234 +L 6.6832,8.504234,7.3907,8.504234 + +[凹] 24 +L 1.0431,-0.000025,1.0431,2.848847 +L 1.0431,2.848847,1.0431,5.680711 +L 1.0431,5.680711,1.0431,8.504234 +L 1.0431,8.504234,1.7467,8.504234 +L 1.7467,8.504234,2.4581,8.504234 +L 2.4581,8.504234,3.1792,8.504234 +L 3.1792,8.504234,3.1792,6.929379 +L 3.1792,6.929379,3.1792,5.337493 +L 3.1792,5.337493,3.1792,3.737266 +L 3.1792,3.737266,3.8801,3.737266 +L 3.8801,3.737266,4.5841,3.737266 +L 4.5841,3.737266,5.2842,3.737266 +L 5.2842,3.737266,5.2842,5.337493 +L 5.2842,5.337493,5.2842,6.929379 +L 5.2842,6.929379,5.2842,8.504234 +L 5.2842,8.504234,5.9851,8.504234 +L 5.9851,8.504234,6.6961,8.504234 +L 6.6961,8.504234,7.4211,8.504234 +L 7.4211,8.504234,7.4211,5.680711 +L 7.4211,5.680711,7.4211,2.848847 +L 7.4211,2.848847,7.4211,-0.000025 +L 7.4211,-0.000025,5.2842,-0.000025 +L 5.2842,-0.000025,3.1617,-0.000025 +L 3.1617,-0.000025,1.0431,-0.000025 + +[欧] 45 +L 3.605,-0.000025,3.4825,1.022538 +L 3.4825,1.022538,1.8121,1.163862 +L 1.8121,1.163862,0.649,1.067872 +L 0.649,1.067872,0.649,3.546602 +L 0.649,3.546602,0.649,6.025439 +L 0.649,6.025439,0.649,8.504234 +L 0.649,8.504234,1.7771,8.504234 +L 1.7771,8.504234,2.9049,8.504234 +L 2.9049,8.504234,4.0323,8.504234 +L 7.8469,-0.000025,7.146,1.437863 +L 7.146,1.437863,6.442,2.858742 +L 6.442,2.858742,5.7419,4.271106 +L 5.7419,4.271106,5.3146,3.203295 +L 5.3146,3.203295,4.8908,2.135573 +L 4.8908,2.135573,4.4596,1.067872 +L 1.5001,2.135573,2.1095,3.518319 +L 2.1095,3.518319,2.3757,4.477422 +L 2.3757,4.477422,2.5406,5.834731 +L 2.5406,5.834731,2.1834,6.204765 +L 2.1834,6.204765,1.8398,6.557877 +L 1.8398,6.557877,1.5001,6.902498 +L 3.605,2.135573,3.4548,2.858742 +L 3.4548,2.858742,3.3112,3.573439 +L 3.3112,3.573439,3.1812,4.271106 +L 5.7419,4.766899,5.7419,5.490046 +L 5.7419,5.490046,5.7419,6.204765 +L 5.7419,6.204765,5.7419,6.902498 +L 5.7419,6.902498,5.4438,6.902498 +L 5.4438,6.902498,5.1636,6.902498 +L 5.1636,6.902498,4.8908,6.902498 +L 4.8908,6.902498,4.5927,6.368636 +L 4.5927,6.368636,4.309,5.834731 +L 4.309,5.834731,4.0323,5.300738 +L 6.9958,5.300738,7.2686,5.757043 +L 7.2686,5.757043,7.5558,6.204765 +L 7.5558,6.204765,7.8469,6.635632 +L 7.8469,6.635632,7.276,6.738758 +L 7.276,6.738758,6.7187,6.82483 +L 6.7187,6.82483,6.1692,6.902498 +L 3.1812,6.368636,3.1812,6.738758 +L 3.1812,6.738758,3.1812,7.091826 +L 3.1812,7.091826,3.1812,7.43638 +L 4.8908,7.43638,5.1881,7.851662 +L 5.1881,7.851662,5.3006,8.266987 +L 5.3006,8.266987,5.3146,9.038182 + +[殴] 51 +L 4.276,-0.000025,4.7628,0.53388 +L 4.7628,0.53388,5.2535,1.067872 +L 5.2535,1.067872,5.7439,1.60169 +L 5.7439,1.60169,5.1656,2.768444 +L 5.1656,2.768444,4.9523,3.460485 +L 4.9523,3.460485,4.917,4.271106 +L 4.917,4.271106,5.6213,4.193461 +L 5.6213,4.193461,6.3214,4.107344 +L 6.3214,4.107344,7.0219,4.004131 +L 7.0219,4.004131,6.7242,3.392603 +L 6.7242,3.392603,6.444,2.772625 +L 6.444,2.772625,6.1712,2.135573 +L 7.4527,-0.000025,7.0219,0.370031 +L 7.0219,0.370031,6.5981,0.723144 +L 6.5981,0.723144,6.1712,1.067872 +L 0.6793,1.067872,0.6793,3.546602 +L 0.6793,3.546602,0.6793,6.025439 +L 0.6793,6.025439,0.6793,8.504234 +L 0.6793,8.504234,1.8068,8.504234 +L 1.8068,8.504234,2.9381,8.504234 +L 2.9381,8.504234,4.0627,8.504234 +L 1.1066,1.067872,2.0803,1.067872 +L 2.0803,1.067872,3.068,1.067872 +L 3.068,1.067872,4.0627,1.067872 +L 1.5021,2.135573,1.9332,3.115756 +L 1.9332,3.115756,2.3532,4.079018 +L 2.3532,4.079018,2.7843,5.03394 +L 2.7843,5.03394,2.3532,5.670926 +L 2.3532,5.670926,1.9332,6.290904 +L 1.9332,6.290904,1.5021,6.902498 +L 3.6389,2.135573,3.4845,2.858742 +L 3.4845,2.858742,3.3409,3.573439 +L 3.3409,3.573439,3.2081,4.271106 +L 4.0627,5.300738,4.7208,6.317719 +L 4.7208,6.317719,4.917,7.233041 +L 4.917,7.233041,4.917,8.504234 +L 4.917,8.504234,5.4703,8.504234 +L 5.4703,8.504234,6.0241,8.504234 +L 6.0241,8.504234,6.5981,8.504234 +L 6.5981,8.504234,6.5981,7.6256 +L 6.5981,7.6256,6.5981,6.738758 +L 6.5981,6.738758,6.5981,5.834731 +L 6.5981,5.834731,7.0219,5.834731 +L 7.0219,5.834731,7.4527,5.834731 +L 7.4527,5.834731,7.88,5.834731 +L 7.88,5.834731,7.88,6.204765 +L 7.88,6.204765,7.88,6.557877 +L 7.88,6.557877,7.88,6.902498 +L 3.2081,5.834731,3.2081,6.368636 +L 3.2081,6.368636,3.2081,6.902498 +L 3.2081,6.902498,3.2081,7.43638 + +[翁] 39 +L 2.814,-0.000025,3.091,-0.000025 +L 3.091,-0.000025,3.3712,-0.000025 +L 3.3712,-0.000025,3.6686,-0.000025 +L 3.6686,-0.000025,3.6686,1.437863 +L 3.6686,1.437863,3.6686,2.858742 +L 3.6686,2.858742,3.6686,4.271106 +L 3.6686,4.271106,2.6602,4.271106 +L 2.6602,4.271106,1.6617,4.271106 +L 1.6617,4.271106,0.6813,4.271106 +L 6.6285,-0.000025,6.9013,-0.000025 +L 6.9013,-0.000025,7.1819,-0.000025 +L 7.1819,-0.000025,7.4796,-0.000025 +L 7.4796,-0.000025,7.4796,1.437863 +L 7.4796,1.437863,7.4796,2.858742 +L 7.4796,2.858742,7.4796,4.271106 +L 7.4796,4.271106,6.4744,4.271106 +L 6.4744,4.271106,5.4762,4.271106 +L 5.4762,4.271106,4.4917,4.271106 +L 0.6813,1.067872,1.3815,1.437863 +L 1.3815,1.437863,2.0925,1.79091 +L 2.0925,1.79091,2.814,2.135573 +L 4.4917,1.067872,5.1925,1.437863 +L 5.1925,1.437863,5.9035,1.79091 +L 5.9035,1.79091,6.6285,2.135573 +L 6.2009,5.567713,5.9035,6.023994 +L 5.9035,6.023994,5.6233,6.471717 +L 5.6233,6.471717,5.3463,6.902498 +L 5.3463,6.902498,4.0328,6.083317 +L 4.0328,6.083317,2.9089,5.840378 +L 2.9089,5.840378,1.5324,5.834731 +L 2.814,6.368636,3.091,6.902498 +L 3.091,6.902498,3.3712,7.43638 +L 3.3712,7.43638,3.6686,7.970351 +L 0.8911,6.902498,1.3815,7.6256 +L 1.3815,7.6256,1.8757,8.340363 +L 1.8757,8.340363,2.3902,9.038182 +L 7.4796,6.902498,6.9013,7.6256 +L 6.9013,7.6256,6.3308,8.340363 +L 6.3308,8.340363,5.7736,9.038182 + +[沖] 27 +L 0.7075,0.26684,1.1383,1.437863 +L 1.1383,1.437863,1.5656,2.591811 +L 1.5656,2.591811,1.9894,3.737266 +L 5.3801,-0.000025,5.2887,2.338868 +L 5.2887,2.338868,4.7322,3.127095 +L 4.7322,3.127095,3.2398,3.203295 +L 3.2398,3.203295,3.2398,4.450518 +L 3.2398,4.450518,3.2398,5.680711 +L 3.2398,5.680711,3.2398,6.902498 +L 3.2398,6.902498,4.6373,6.964687 +L 4.6373,6.964687,5.2432,7.501438 +L 5.2432,7.501438,5.3801,9.038182 +L 5.8039,3.203295,5.0821,5.162414 +L 5.0821,5.162414,5.9297,6.443457 +L 5.9297,6.443457,7.4851,6.902498 +L 7.4851,6.902498,7.4851,5.680711 +L 7.4851,5.680711,7.4851,4.450518 +L 7.4851,4.450518,7.4851,3.203295 +L 7.4851,3.203295,6.9103,3.203295 +L 6.9103,3.203295,6.3538,3.203295 +L 6.3538,3.203295,5.8039,3.203295 +L 1.5656,5.834731,1.2682,6.204765 +L 1.2682,6.204765,0.9846,6.557877 +L 0.9846,6.557877,0.7075,6.902498 +L 1.9894,7.970351,1.6955,8.340363 +L 1.6955,8.340363,1.4118,8.693498 +L 1.4118,8.693498,1.1383,9.038182 + +[憶] 57 +L 1.5641,-0.000025,1.5641,3.012674 +L 1.5641,3.012674,1.5641,6.025439 +L 1.5641,6.025439,1.5641,9.038182 +L 2.8428,0.26684,2.9791,0.723144 +L 2.9791,0.723144,3.1227,1.170866 +L 3.1227,1.170866,3.2701,1.60169 +L 4.5552,-0.000025,4.254,0.415212 +L 4.254,0.415212,4.1458,0.830406 +L 4.1458,0.830406,4.1279,1.60169 +L 4.9513,-0.000025,5.5044,-0.000025 +L 5.5044,-0.000025,6.0788,-0.000025 +L 6.0788,-0.000025,6.6602,-0.000025 +L 6.6602,-0.000025,6.6602,0.370031 +L 6.6602,0.370031,6.6602,0.723144 +L 6.6602,0.723144,6.6602,1.067872 +L 7.9421,0.800767,7.7883,1.067872 +L 7.7883,1.067872,7.6447,1.334738 +L 7.6447,1.334738,7.5113,1.60169 +L 3.6974,3.203295,3.6974,3.916679 +L 3.6974,3.916679,3.6974,4.612967 +L 3.6974,4.612967,3.6974,5.300738 +L 3.6974,5.300738,4.8287,5.300738 +L 4.8287,5.300738,5.96,5.300738 +L 5.96,5.300738,7.084,5.300738 +L 7.084,5.300738,7.084,4.612967 +L 7.084,4.612967,7.084,3.916679 +L 7.084,3.916679,7.084,3.203295 +L 7.084,3.203295,5.96,3.203295 +L 5.96,3.203295,4.8287,3.203295 +L 4.8287,3.203295,3.6974,3.203295 +L 4.1279,4.271106,4.958,4.271106 +L 4.958,4.271106,5.8024,4.271106 +L 5.8024,4.271106,6.6602,4.271106 +L 0.7379,5.300738,0.7379,6.023994 +L 0.7379,6.023994,0.7379,6.738758 +L 0.7379,6.738758,0.7379,7.43638 +L 2.8428,6.368636,2.5483,6.902498 +L 2.5483,6.902498,2.2649,7.43638 +L 2.2649,7.43638,1.9879,7.970351 +L 3.2701,6.368636,3.6974,6.471717 +L 3.6974,6.471717,4.1279,6.557877 +L 4.1279,6.557877,4.5552,6.635632 +L 4.5552,6.635632,4.2228,7.396824 +L 4.2228,7.396824,3.8897,7.742888 +L 3.8897,7.742888,3.2701,7.970351 +L 4.9513,6.368636,5.3786,6.471717 +L 5.3786,6.471717,5.8024,6.557877 +L 5.8024,6.557877,6.2329,6.635632 +L 6.2329,6.635632,6.3625,7.005644 +L 6.3625,7.005644,6.5064,7.358823 +L 6.5064,7.358823,6.6602,7.703377 +L 6.6602,7.703377,5.96,7.806567 +L 5.96,7.806567,5.256,7.892574 +L 5.256,7.892574,4.5552,7.970351 +L 6.6602,6.368636,7.084,6.368636 +L 7.084,6.368636,7.5113,6.368636 +L 7.5113,6.368636,7.9421,6.368636 + +[乙] 12 +L 2.0218,-0.000025,1.7272,0.456147 +L 1.7272,0.456147,1.44,0.90398 +L 1.44,0.90398,1.1707,1.334738 +L 1.1707,1.334738,1.6221,2.28237 +L 1.6221,2.28237,2.8375,3.933601 +L 2.8375,3.933601,5.8356,7.703377 +L 5.8356,7.703377,4.2809,7.806567 +L 4.2809,7.806567,2.7223,7.892574 +L 2.7223,7.892574,1.1707,7.970351 +L 2.4487,-0.000025,4.8868,-0.200628 +L 4.8868,-0.200628,6.7602,0.073461 +L 6.7602,0.073461,7.5133,2.135573 + +[卸] 39 +L 5.4387,-0.000025,5.4387,2.848847 +L 5.4387,2.848847,5.4387,5.680711 +L 5.4387,5.680711,5.4387,8.504234 +L 5.4387,8.504234,6.1388,8.504234 +L 6.1388,8.504234,6.8396,8.504234 +L 6.8396,8.504234,7.5436,8.504234 +L 7.5436,8.504234,7.5436,6.214659 +L 7.5436,6.214659,7.5436,3.916679 +L 7.5436,3.916679,7.5436,1.60169 +L 7.5436,1.60169,7.1163,1.60169 +L 7.1163,1.60169,6.6925,1.60169 +L 6.6925,1.60169,6.2652,1.60169 +L 1.1968,0.53388,1.1968,1.79091 +L 1.1968,1.79091,1.1968,3.03949 +L 1.1968,3.03949,1.1968,4.271106 +L 1.628,0.53388,1.8171,0.723144 +L 1.8171,0.723144,2.0203,0.90398 +L 2.0203,0.90398,2.2336,1.067872 +L 2.2336,1.067872,2.4122,3.896934 +L 2.4122,3.896934,2.1604,5.395502 +L 2.1604,5.395502,0.7695,5.834731 +L 2.8745,1.067872,3.2076,1.44351 +L 3.2076,1.44351,3.5403,1.581814 +L 3.5403,1.581814,4.1603,1.60169 +L 2.8745,3.737266,3.1516,3.737266 +L 3.1516,3.737266,3.4353,3.737266 +L 3.4353,3.737266,3.7291,3.737266 +L 2.8745,5.834731,2.5768,6.269779 +L 2.5768,6.269779,2.4682,6.823451 +L 2.4682,6.823451,2.4507,7.970351 +L 2.4507,7.970351,1.5544,7.752915 +L 1.5544,7.752915,1.1198,7.475914 +L 1.1198,7.475914,0.7695,6.902498 +L 3.3018,5.834731,3.5789,5.834731 +L 3.5789,5.834731,3.8591,5.834731 +L 3.8591,5.834731,4.1603,5.834731 +L 2.8745,7.970351,3.1516,7.970351 +L 3.1516,7.970351,3.4353,7.970351 +L 3.4353,7.970351,3.7291,7.970351 + +[穏] 54 +L 2.0499,-0.000025,1.9694,1.437863 +L 1.9694,1.437863,1.9028,2.858742 +L 1.9028,2.858742,1.8366,4.271106 +L 1.8366,4.271106,1.4724,3.573439 +L 1.4724,3.573439,1.1183,2.858742 +L 1.1183,2.858742,0.768,2.135573 +L 3.3357,0.26684,3.4649,0.723144 +L 3.4649,0.723144,3.6085,1.170866 +L 3.6085,1.170866,3.7595,1.60169 +L 5.0134,-0.000025,4.7122,0.435001 +L 4.7122,0.435001,4.5997,0.988651 +L 4.5997,0.988651,4.5822,2.135573 +L 5.4407,-0.000025,5.8645,-0.000025 +L 5.8645,-0.000025,6.2918,-0.000025 +L 6.2918,-0.000025,6.7222,-0.000025 +L 6.7222,-0.000025,6.7222,0.370031 +L 6.7222,0.370031,6.7222,0.723144 +L 6.7222,0.723144,6.7222,1.067872 +L 8.0006,0.800767,7.8504,1.067872 +L 7.8504,1.067872,7.7032,1.334738 +L 7.7032,1.334738,7.5733,1.60169 +L 4.1868,3.737266,5.3181,3.737266 +L 5.3181,3.737266,6.4459,3.737266 +L 6.4459,3.737266,7.5733,3.737266 +L 7.5733,3.737266,7.5733,4.26977 +L 7.5733,4.26977,7.5733,4.79389 +L 7.5733,4.79389,7.5733,5.300738 +L 7.5733,5.300738,6.4459,5.300738 +L 6.4459,5.300738,5.3181,5.300738 +L 5.3181,5.300738,4.1868,5.300738 +L 2.9084,4.271106,2.4317,4.679425 +L 2.4317,4.679425,2.0993,5.223181 +L 2.0993,5.223181,1.6261,6.368636 +L 1.6261,6.368636,1.3288,6.368636 +L 1.3288,6.368636,1.0486,6.368636 +L 1.0486,6.368636,0.768,6.368636 +L 7.5733,6.101706,6.5685,6.290904 +L 6.5685,6.290904,5.5734,6.471717 +L 5.5734,6.471717,4.5822,6.635632 +L 4.5822,6.635632,4.4386,7.005644 +L 4.4386,7.005644,4.3125,7.358823 +L 4.3125,7.358823,4.1868,7.703377 +L 4.1868,7.703377,5.5104,8.029673 +L 5.5104,8.029673,6.3723,8.355905 +L 6.3723,8.355905,7.1495,8.504234 +L 7.1495,8.504234,7.132,7.733038 +L 7.132,7.733038,7.0203,7.317822 +L 7.0203,7.317822,6.7222,6.902498 +L 2.4772,6.368636,2.1799,6.783961 +L 2.1799,6.783961,2.0675,7.199199 +L 2.0675,7.199199,2.0499,7.970351 +L 2.0499,7.970351,1.6261,7.970351 +L 1.6261,7.970351,1.1988,7.970351 +L 1.1988,7.970351,0.768,7.970351 + +[佳] 39 +L 1.6565,-0.000025,1.576,1.944864 +L 1.576,1.944864,1.5056,3.889776 +L 1.5056,3.889776,1.4425,5.834731 +L 1.4425,5.834731,1.2257,5.670926 +L 1.2257,5.670926,1.0152,5.490046 +L 1.0152,5.490046,0.8019,5.300738 +L 2.9069,-0.000025,3.7615,-0.000025 +L 3.7615,-0.000025,4.6157,-0.000025 +L 4.6157,-0.000025,5.4703,-0.000025 +L 5.4703,-0.000025,5.3166,2.098907 +L 5.3166,2.098907,4.6861,2.680773 +L 4.6861,2.680773,3.3342,2.669456 +L 5.8976,-0.000025,6.5981,-0.000025 +L 6.5981,-0.000025,7.3025,-0.000025 +L 7.3025,-0.000025,8.0026,-0.000025 +L 5.8976,2.669456,5.5968,3.084672 +L 5.5968,3.084672,5.4843,3.499931 +L 5.4843,3.499931,5.4703,4.271106 +L 6.3214,2.669456,6.7316,2.669456 +L 6.7316,2.669456,7.1515,2.669456 +L 7.1515,2.669456,7.5718,2.669456 +L 2.9069,5.300738,3.7615,5.300738 +L 3.7615,5.300738,4.6157,5.300738 +L 4.6157,5.300738,5.4703,5.300738 +L 5.4703,5.300738,5.2605,7.057852 +L 5.2605,7.057852,4.5772,7.484451 +L 4.5772,7.484451,3.3342,7.43638 +L 5.8976,5.300738,6.5981,5.300738 +L 6.5981,5.300738,7.3025,5.300738 +L 7.3025,5.300738,8.0026,5.300738 +L 1.6565,6.635632,1.9294,7.43638 +L 1.9294,7.43638,2.2169,8.237304 +L 2.2169,8.237304,2.5076,9.038182 +L 5.8976,7.43638,5.5968,7.851662 +L 5.5968,7.851662,5.4843,8.266987 +L 5.4843,8.266987,5.4703,9.038182 +L 6.3214,7.43638,6.7316,7.43638 +L 6.7316,7.43638,7.1515,7.43638 +L 7.1515,7.43638,7.5718,7.43638 + +[寡] 57 +L 1.2589,-0.000025,1.9597,0.370031 +L 1.9597,0.370031,2.6637,0.723144 +L 2.6637,0.723144,3.3639,1.067872 +L 3.3639,1.067872,3.3639,1.437863 +L 3.3639,1.437863,3.3639,1.79091 +L 3.3639,1.79091,3.3639,2.135573 +L 3.3639,2.135573,2.131,2.115784 +L 2.131,2.115784,1.476,1.977394 +L 1.476,1.977394,0.8316,1.60169 +L 4.6461,-0.000025,5.8961,0.553691 +L 5.8961,0.553691,5.5109,1.581814 +L 5.5109,1.581814,3.7912,2.135573 +L 7.1784,1.60169,5.5879,2.768444 +L 5.5879,2.768444,4.2608,2.901187 +L 4.2608,2.901187,2.5093,2.669456 +L 0.8316,3.203295,1.2379,3.203295 +L 1.2379,3.203295,1.6582,3.203295 +L 1.6582,3.203295,2.0823,3.203295 +L 2.0823,3.203295,2.0823,4.26977 +L 2.0823,4.26977,2.0823,5.327664 +L 2.0823,5.327664,2.0823,6.368636 +L 2.0823,6.368636,2.7898,6.368636 +L 2.7898,6.368636,3.4973,6.368636 +L 3.4973,6.368636,4.2188,6.368636 +L 4.2188,6.368636,4.2188,6.738758 +L 4.2188,6.738758,4.2188,7.091826 +L 4.2188,7.091826,4.2188,7.43638 +L 4.2188,7.43638,3.3639,7.43638 +L 3.3639,7.43638,2.5093,7.43638 +L 2.5093,7.43638,1.655,7.43638 +L 6.3234,3.203295,6.3234,3.573439 +L 6.3234,3.573439,6.3234,3.926464 +L 6.3234,3.926464,6.3234,4.271106 +L 6.3234,4.271106,5.045,4.271106 +L 5.045,4.271106,3.7701,4.271106 +L 3.7701,4.271106,2.5093,4.271106 +L 6.7511,3.203295,7.0239,3.203295 +L 7.0239,3.203295,7.3111,3.203295 +L 7.3111,3.203295,7.6057,3.203295 +L 6.3234,5.03394,5.045,5.136934 +L 5.045,5.136934,3.7701,5.223181 +L 3.7701,5.223181,2.5093,5.300738 +L 6.3234,6.101706,5.7525,6.204765 +L 5.7525,6.204765,5.1995,6.290904 +L 5.1995,6.290904,4.6461,6.368636 +L 0.8316,7.43638,0.8316,7.806567 +L 0.8316,7.806567,0.8316,8.15957 +L 0.8316,8.15957,0.8316,8.504234 +L 0.8316,8.504234,3.0875,8.504234 +L 3.0875,8.504234,5.3497,8.504234 +L 5.3497,8.504234,7.6057,8.504234 +L 7.6057,8.504234,7.6057,8.15957 +L 7.6057,8.15957,7.6057,7.806567 +L 7.6057,7.806567,7.6057,7.43638 +L 4.6461,7.43638,5.3497,7.43638 +L 5.3497,7.43638,6.0506,7.43638 +L 6.0506,7.43638,6.7511,7.43638 + +[暇] 54 +L 3.3977,-0.000025,3.3977,2.848847 +L 3.3977,2.848847,3.3977,5.680711 +L 3.3977,5.680711,3.3977,8.504234 +L 3.3977,8.504234,3.9473,8.504234 +L 3.9473,8.504234,4.5007,8.504234 +L 4.5007,8.504234,5.0719,8.504234 +L 5.0719,8.504234,5.0719,7.806567 +L 5.0719,7.806567,5.0719,7.091826 +L 5.0719,7.091826,5.0719,6.368636 +L 5.0719,6.368636,4.6446,6.368636 +L 4.6446,6.368636,4.2208,6.368636 +L 4.2208,6.368636,3.7932,6.368636 +L 5.2852,-0.000025,5.772,0.53388 +L 5.772,0.53388,6.2732,1.067872 +L 6.2732,1.067872,6.7807,1.60169 +L 6.7807,1.60169,6.1783,2.768444 +L 6.1783,2.768444,5.9615,3.460485 +L 5.9615,3.460485,5.9297,4.271106 +L 5.9297,4.271106,6.483,4.271106 +L 6.483,4.271106,7.0578,4.271106 +L 7.0578,4.271106,7.6353,4.271106 +L 7.6353,4.271106,7.4816,3.573439 +L 7.4816,3.573439,7.338,2.858742 +L 7.338,2.858742,7.208,2.135573 +L 8.0346,-0.000025,7.7579,0.370031 +L 7.7579,0.370031,7.4816,0.723144 +L 7.4816,0.723144,7.208,1.067872 +L 0.8301,2.135573,0.8301,4.080441 +L 0.8301,4.080441,0.8301,6.025439 +L 0.8301,6.025439,0.8301,7.970351 +L 0.8301,7.970351,1.2574,7.970351 +L 1.2574,7.970351,1.6885,7.970351 +L 1.6885,7.970351,2.1158,7.970351 +L 2.1158,7.970351,2.1158,6.025439 +L 2.1158,6.025439,2.1158,4.080441 +L 2.1158,4.080441,2.1158,2.135573 +L 2.1158,2.135573,1.6885,2.135573 +L 1.6885,2.135573,1.2574,2.135573 +L 1.2574,2.135573,0.8301,2.135573 +L 3.7932,2.135573,4.0667,2.135573 +L 4.0667,2.135573,4.3536,2.135573 +L 4.3536,2.135573,4.6446,2.135573 +L 3.7932,4.271106,4.0667,4.271106 +L 4.0667,4.271106,4.3536,4.271106 +L 4.3536,4.271106,4.6446,4.271106 +L 5.9297,6.368636,6.483,6.368636 +L 6.483,6.368636,7.0578,6.368636 +L 7.0578,6.368636,7.6353,6.368636 +L 7.6353,6.368636,7.6353,7.091826 +L 7.6353,7.091826,7.6353,7.806567 +L 7.6353,7.806567,7.6353,8.504234 +L 7.6353,8.504234,7.0578,8.504234 +L 7.0578,8.504234,6.483,8.504234 +L 6.483,8.504234,5.9297,8.504234 + +[架] 39 +L 4.2505,-0.000025,4.1668,0.90398 +L 4.1668,0.90398,4.0964,1.79091 +L 4.0964,1.79091,4.0372,2.669456 +L 4.0372,2.669456,2.3732,1.166642 +L 2.3732,1.166642,1.5504,0.612904 +L 1.5504,0.612904,0.864,0.53388 +L 6.7827,0.53388,4.8112,2.488686 +L 4.8112,2.488686,3.2418,3.05361 +L 3.2418,3.05361,0.864,3.203295 +L 5.1016,3.203295,5.9387,3.203295 +L 5.9387,3.203295,6.7827,3.203295 +L 6.7827,3.203295,7.6338,3.203295 +L 0.864,4.766899,1.2878,5.567713 +L 1.2878,5.567713,1.7151,6.368636 +L 1.7151,6.368636,2.1455,7.169471 +L 2.1455,7.169471,1.8131,7.733038 +L 1.8131,7.733038,1.4765,7.940689 +L 1.4765,7.940689,0.864,7.970351 +L 2.5416,4.766899,3.6764,5.258512 +L 3.6764,5.258512,3.8862,6.461911 +L 3.8862,6.461911,3.82,7.970351 +L 3.82,7.970351,3.3962,7.970351 +L 3.3962,7.970351,2.9689,7.970351 +L 2.9689,7.970351,2.5416,7.970351 +L 2.5416,7.970351,2.398,8.340363 +L 2.398,8.340363,2.2681,8.693498 +L 2.2681,8.693498,2.1455,9.038182 +L 5.1016,5.300738,5.1016,6.204765 +L 5.1016,6.204765,5.1016,7.091826 +L 5.1016,7.091826,5.1016,7.970351 +L 5.1016,7.970351,5.8059,7.970351 +L 5.8059,7.970351,6.5064,7.970351 +L 6.5064,7.970351,7.21,7.970351 +L 7.21,7.970351,7.21,7.091826 +L 7.21,7.091826,7.21,6.204765 +L 7.21,6.204765,7.21,5.300738 +L 7.21,5.300738,6.5064,5.300738 +L 6.5064,5.300738,5.8059,5.300738 +L 5.8059,5.300738,5.1016,5.300738 + +[禍] 63 +L 1.6852,-0.000025,1.6715,2.649646 +L 1.6715,2.649646,1.5591,3.757055 +L 1.5591,3.757055,1.2579,4.271128 +L 1.2579,4.271128,1.1178,4.107344 +L 1.1178,4.107344,0.985,3.926464 +L 0.985,3.926464,0.8625,3.737266 +L 3.3947,-0.000025,3.3947,1.600311 +L 3.3947,1.600311,3.3947,3.192088 +L 3.3947,3.192088,3.3947,4.766899 +L 3.3947,4.766899,3.6711,4.766899 +L 3.6711,4.766899,3.9513,4.766899 +L 3.9513,4.766899,4.2493,4.766899 +L 4.2493,4.766899,4.2493,6.023994 +L 4.2493,6.023994,4.2493,7.272596 +L 4.2493,7.272596,4.2493,8.504234 +L 4.2493,8.504234,5.0861,8.504234 +L 5.0861,8.504234,5.927,8.504234 +L 5.927,8.504234,6.7812,8.504234 +L 6.7812,8.504234,6.7812,7.272596 +L 6.7812,7.272596,6.7812,6.023994 +L 6.7812,6.023994,6.7812,4.766899 +L 6.7812,4.766899,7.0583,4.766899 +L 7.0583,4.766899,7.3385,4.766899 +L 7.3385,4.766899,7.6358,4.766899 +L 7.6358,4.766899,7.6358,3.192088 +L 7.6358,3.192088,7.6358,1.600311 +L 7.6358,1.600311,7.6358,-0.000025 +L 7.6358,-0.000025,7.3385,-0.000025 +L 7.3385,-0.000025,7.0583,-0.000025 +L 7.0583,-0.000025,6.7812,-0.000025 +L 4.6763,1.067872,4.6763,1.79091 +L 4.6763,1.79091,4.6763,2.505629 +L 4.6763,2.505629,4.6763,3.203295 +L 4.6763,3.203295,5.2262,3.203295 +L 5.2262,3.203295,5.7869,3.203295 +L 5.7869,3.203295,6.3575,3.203295 +L 6.3575,3.203295,6.3575,2.505629 +L 6.3575,2.505629,6.3575,1.79091 +L 6.3575,1.79091,6.3575,1.067872 +L 6.3575,1.067872,5.7869,1.067872 +L 5.7869,1.067872,5.2262,1.067872 +L 5.2262,1.067872,4.6763,1.067872 +L 2.5436,3.737266,2.2456,4.080463 +L 2.2456,4.080463,1.9619,4.423769 +L 1.9619,4.423769,1.6852,4.766899 +L 1.6852,4.766899,2.1163,5.567713 +L 2.1163,5.567713,2.5436,6.368636 +L 2.5436,6.368636,2.9674,7.169471 +L 2.9674,7.169471,2.2666,7.272596 +L 2.2666,7.272596,1.5626,7.358823 +L 1.5626,7.358823,0.8625,7.43638 +L 4.6763,4.766899,4.9533,4.766899 +L 4.9533,4.766899,5.2262,4.766899 +L 5.2262,4.766899,5.4997,4.766899 +L 5.4997,4.766899,5.4997,5.490046 +L 5.4997,5.490046,5.4997,6.204765 +L 5.4997,6.204765,5.4997,6.902498 +L 5.4997,6.902498,5.776,6.902498 +L 5.776,6.902498,6.0597,6.902498 +L 6.0597,6.902498,6.3575,6.902498 +L 1.6852,7.970351,1.6852,8.340363 +L 1.6852,8.340363,1.6852,8.693498 +L 1.6852,8.693498,1.6852,9.038182 + +[稼] 60 +L 2.1428,-0.000025,2.0623,1.437863 +L 2.0623,1.437863,1.9957,2.858742 +L 1.9957,2.858742,1.9288,4.271128 +L 1.9288,4.271128,1.5646,3.573439 +L 1.5646,3.573439,1.2077,2.858742 +L 1.2077,2.858742,0.8645,2.135573 +L 4.6748,-0.000025,5.3126,0.039487 +L 5.3126,0.039487,5.7535,0.316356 +L 5.7535,0.316356,6.384,1.067872 +L 6.384,1.067872,6.2999,1.79091 +L 6.2999,1.79091,6.2334,2.505629 +L 6.2334,2.505629,6.1738,3.203295 +L 6.1738,3.203295,5.2355,2.505629 +L 5.2355,2.505629,4.3105,1.79091 +L 4.3105,1.79091,3.3967,1.067872 +L 8.0616,1.067872,7.6378,1.60169 +L 7.6378,1.60169,7.2179,2.135573 +L 7.2179,2.135573,6.8151,2.669456 +L 4.0338,3.203295,4.5245,3.659621 +L 4.5245,3.659621,5.0215,4.107344 +L 5.0215,4.107344,5.5294,4.538189 +L 5.5294,4.538189,5.3196,4.803632 +L 5.3196,4.803632,5.1056,5.060755 +L 5.1056,5.060755,4.8923,5.300738 +L 4.8923,5.300738,4.5245,5.136934 +L 4.5245,5.136934,4.1673,4.956207 +L 4.1673,4.956207,3.8205,4.766899 +L 6.8151,3.737266,7.2179,4.269792 +L 7.2179,4.269792,7.6378,4.79389 +L 7.6378,4.79389,8.0616,5.300738 +L 3.0006,4.271128,2.5246,4.679425 +L 2.5246,4.679425,2.1915,5.223181 +L 2.1915,5.223181,1.7156,6.368636 +L 1.7156,6.368636,1.4245,6.368636 +L 1.4245,6.368636,1.1373,6.368636 +L 1.1373,6.368636,0.8645,6.368636 +L 5.5294,6.101706,5.1056,6.204765 +L 5.1056,6.204765,4.6748,6.290904 +L 4.6748,6.290904,4.2478,6.368636 +L 2.5733,6.368636,2.2721,6.783961 +L 2.2721,6.783961,2.1604,7.199199 +L 2.1604,7.199199,2.1428,7.970351 +L 2.1428,7.970351,1.7156,7.970351 +L 1.7156,7.970351,1.2918,7.970351 +L 1.2918,7.970351,0.8645,7.970351 +L 3.0006,6.368636,3.2776,6.783961 +L 3.2776,6.783961,3.3824,7.199199 +L 3.3824,7.199199,3.3967,7.970351 +L 3.3967,7.970351,3.1197,8.15957 +L 3.1197,8.15957,2.8468,8.340363 +L 2.8468,8.340363,2.5733,8.504234 +L 5.9567,6.368636,6.384,6.368636 +L 6.384,6.368636,6.8151,6.368636 +L 6.8151,6.368636,7.2389,6.368636 +L 8.0616,6.902498,8.0616,7.272596 +L 8.0616,7.272596,8.0616,7.6256 +L 8.0616,7.6256,8.0616,7.970351 +L 8.0616,7.970351,6.6365,7.970351 +L 6.6365,7.970351,5.2282,7.970351 +L 5.2282,7.970351,3.8205,7.970351 + +[箇] 54 +L 1.2903,-0.000025,1.1358,3.419484 +L 1.1358,3.419484,1.0763,6.279695 +L 1.0763,6.279695,1.7176,9.038182 +L 1.7176,-0.000025,3.549,-0.000025 +L 3.549,-0.000025,5.3776,-0.000025 +L 5.3776,-0.000025,7.2055,-0.000025 +L 7.2055,-0.000025,7.2055,2.134106 +L 7.2055,2.134106,7.2055,4.259897 +L 7.2055,4.259897,7.2055,6.368636 +L 7.2055,6.368636,6.3548,6.368636 +L 6.3548,6.368636,5.5104,6.368636 +L 5.5104,6.368636,4.6736,6.368636 +L 4.6736,6.368636,4.3931,5.775364 +L 4.3931,5.775364,4.3931,5.360236 +L 4.3931,5.360236,4.6736,4.766899 +L 4.6736,4.766899,5.2267,4.766899 +L 5.2267,4.766899,5.7839,4.766899 +L 5.7839,4.766899,6.3548,4.766899 +L 2.9644,1.60169,2.9644,2.135573 +L 2.9644,2.135573,2.9644,2.669456 +L 2.9644,2.669456,2.9644,3.203295 +L 2.9644,3.203295,3.3952,3.203295 +L 3.3952,3.203295,3.8225,3.203295 +L 3.8225,3.203295,4.2495,3.203295 +L 4.2495,3.203295,3.9062,4.608764 +L 3.9062,4.608764,3.087,4.861641 +L 3.087,4.861641,2.113,4.766899 +L 3.3952,1.60169,4.0954,1.60169 +L 4.0954,1.60169,4.8102,1.60169 +L 4.8102,1.60169,5.5314,1.60169 +L 5.5314,1.60169,5.5314,2.135573 +L 5.5314,2.135573,5.5314,2.669456 +L 5.5314,2.669456,5.5314,3.203295 +L 5.5314,3.203295,5.234,3.203295 +L 5.234,3.203295,4.9503,3.203295 +L 4.9503,3.203295,4.6736,3.203295 +L 1.7176,6.368636,2.1203,6.471717 +L 2.1203,6.471717,2.5406,6.557877 +L 2.5406,6.557877,2.9644,6.635632 +L 2.9644,6.635632,2.6734,7.091826 +L 2.6734,7.091826,2.3865,7.539549 +L 2.3865,7.539549,2.113,7.970351 +L 3.6085,6.368636,4.5192,7.535368 +L 4.5192,7.535368,4.9044,8.227452 +L 4.9044,8.227452,5.1041,9.038182 +L 6.3548,6.902498,6.0816,7.272596 +L 6.0816,7.272596,5.8049,7.6256 +L 5.8049,7.6256,5.5314,7.970351 +L 2.9644,7.970351,3.2408,7.970351 +L 3.2408,7.970351,3.5245,7.970351 +L 3.5245,7.970351,3.8225,7.970351 +L 6.3548,7.970351,6.7852,7.970351 +L 6.7852,7.970351,7.2055,7.970351 +L 7.2055,7.970351,7.6363,7.970351 + +[華] 63 +L 4.2798,-0.000025,3.6841,1.584725 +L 3.6841,1.584725,2.3321,1.771055 +L 2.3321,1.771055,0.865,1.60169 +L 4.6788,1.60169,4.4024,2.135573 +L 4.4024,2.135573,4.1289,2.669456 +L 4.1289,2.669456,3.8522,3.203295 +L 3.8522,3.203295,2.9976,3.203295 +L 2.9976,3.203295,2.1433,3.203295 +L 2.1433,3.203295,1.2887,3.203295 +L 5.1026,1.60169,5.9537,1.60169 +L 5.9537,1.60169,6.8121,1.60169 +L 6.8121,1.60169,7.6632,1.60169 +L 4.6788,3.203295,4.4024,3.735931 +L 4.4024,3.735931,4.1289,4.259897 +L 4.1289,4.259897,3.8522,4.766899 +L 3.8522,4.766899,3.2361,4.728766 +L 3.2361,4.728766,2.9034,4.461792 +L 2.9034,4.461792,2.5703,3.737266 +L 5.1026,3.203295,5.3796,3.203295 +L 5.3796,3.203295,5.6633,3.203295 +L 5.6633,3.203295,5.9537,3.203295 +L 5.9537,3.203295,5.5232,4.68503 +L 5.5232,4.68503,4.7173,5.014172 +L 4.7173,5.014172,4.2798,6.368636 +L 4.2798,6.368636,3.7019,6.368636 +L 3.7019,6.368636,3.131,6.368636 +L 3.131,6.368636,2.5703,6.368636 +L 2.5703,6.368636,2.3672,5.139801 +L 2.3672,5.139801,1.7791,4.775415 +L 1.7791,4.775415,0.865,4.766899 +L 6.3845,3.203295,6.6612,3.203295 +L 6.6612,3.203295,6.9449,3.203295 +L 6.9449,3.203295,7.2429,3.203295 +L 6.3845,4.766899,6.0836,5.18218 +L 6.0836,5.18218,5.9712,5.597462 +L 5.9712,5.597462,5.9537,6.368636 +L 5.9537,6.368636,5.5334,6.368636 +L 5.5334,6.368636,5.1026,6.368636 +L 5.1026,6.368636,4.6788,6.368636 +L 6.8121,4.766899,7.0885,4.766899 +L 7.0885,4.766899,7.3687,4.766899 +L 7.3687,4.766899,7.6632,4.766899 +L 1.2887,6.368636,1.5651,6.368636 +L 1.5651,6.368636,1.8453,6.368636 +L 1.8453,6.368636,2.1433,6.368636 +L 6.3845,6.368636,6.6612,6.368636 +L 6.6612,6.368636,6.9449,6.368636 +L 6.9449,6.368636,7.2429,6.368636 +L 0.865,7.970351,1.716,7.970351 +L 1.716,7.970351,2.5703,7.970351 +L 2.5703,7.970351,3.4284,7.970351 +L 3.4284,7.970351,3.4284,8.340363 +L 3.4284,8.340363,3.4284,8.693498 +L 3.4284,8.693498,3.4284,9.038182 +L 3.8522,7.970351,4.2585,7.970351 +L 4.2585,7.970351,4.6788,7.970351 +L 4.6788,7.970351,5.1026,7.970351 +L 5.1026,7.970351,5.1026,8.340363 +L 5.1026,8.340363,5.1026,8.693498 +L 5.1026,8.693498,5.1026,9.038182 +L 5.5334,7.970351,6.2339,7.970351 +L 6.2339,7.970351,6.9449,7.970351 +L 6.9449,7.970351,7.6632,7.970351 + + +# kan_23 ------------------------------------------------------- +# 菓蚊雅餓介塊壊怪悔懐戒拐皆劾慨概涯該垣嚇核獲穫郭隔岳掛潟喝括渇滑褐轄且刈乾冠勘勧喚堪寛患憾換敢棺款歓 + +[菓] 48 +L 3.3938,0,3.3094,0.713428 +L 3.3094,0.713428,3.2358,1.409627 +L 3.2358,1.409627,3.1763,2.097487 +L 3.1763,2.097487,2.1115,1.590376 +L 2.1115,1.590376,1.0503,1.066431 +L 1.0503,1.066431,0.0034,0.533992 +L 5.9187,0.533992,3.8596,2.026803 +L 3.8596,2.026803,2.1921,2.485953 +L 2.1921,2.485953,0.0034,2.631436 +L 4.2449,2.631436,5.0781,2.631436 +L 5.0781,2.631436,5.9257,2.631436 +L 5.9257,2.631436,6.7768,2.631436 +L 3.3938,3.432359,3.2358,3.699114 +L 3.2358,3.699114,3.0922,3.966133 +L 3.0922,3.966133,2.9626,4.233107 +L 2.9626,4.233107,2.3847,4.233107 +L 2.3847,4.233107,1.8142,4.233107 +L 1.8142,4.233107,1.2534,4.233107 +L 1.2534,4.233107,1.2534,4.946381 +L 1.2534,4.946381,1.2534,5.6428 +L 1.2534,5.6428,1.2534,6.330418 +L 1.2534,6.330418,2.6579,6.330418 +L 2.6579,6.330418,4.0694,6.330418 +L 4.0694,6.330418,5.4988,6.330418 +L 5.4988,6.330418,5.4988,5.6428 +L 5.4988,5.6428,5.4988,4.946381 +L 5.4988,4.946381,5.4988,4.233107 +L 5.4988,4.233107,3.9402,4.509976 +L 3.9402,4.509976,2.8926,5.024048 +L 2.8926,5.024048,1.6846,5.300938 +L 4.2449,5.300938,4.5181,5.300938 +L 4.5181,5.300938,4.7944,5.300938 +L 4.7944,5.300938,5.0676,5.300938 +L 0.0034,7.932222,0.8335,7.932222 +L 0.8335,7.932222,1.6846,7.932222 +L 1.6846,7.932222,2.5353,7.932222 +L 2.5353,7.932222,2.5353,8.302299 +L 2.5353,8.302299,2.5353,8.65539 +L 2.5353,8.65539,2.5353,9.000075 +L 2.9626,7.932222,3.3938,7.932222 +L 3.3938,7.932222,3.8176,7.932222 +L 3.8176,7.932222,4.2449,7.932222 +L 4.2449,7.932222,4.2449,8.302299 +L 4.2449,8.302299,4.2449,8.65539 +L 4.2449,8.65539,4.2449,9.000075 +L 4.6718,7.932222,5.3723,7.932222 +L 5.3723,7.932222,6.0728,7.932222 +L 6.0728,7.932222,6.7768,7.932222 + +[蚊] 45 +L 0.0019,0,0.4324,0 +L 0.4324,0,0.8562,0 +L 0.8562,0,1.2835,0 +L 1.2835,0,1.2835,1.854592 +L 1.2835,1.854592,0.9962,2.861634 +L 0.9962,2.861634,0.0019,3.165275 +L 0.0019,3.165275,0.0019,4.412454 +L 0.0019,4.412454,0.0019,5.6428 +L 0.0019,5.6428,0.0019,6.864499 +L 0.0019,6.864499,0.9861,7.121491 +L 0.9861,7.121491,1.2768,7.853109 +L 1.2768,7.853109,1.2835,9.000075 +L 2.9926,0.266996,2.5653,0.3701 +L 2.5653,0.3701,2.1416,0.456282 +L 2.1416,0.456282,1.7107,0.533992 +L 3.4199,0,3.9702,0.799413 +L 3.9702,0.799413,4.5271,1.590376 +L 4.5271,1.590376,5.0976,2.364439 +L 5.0976,2.364439,4.4987,4.152507 +L 4.4987,4.152507,4.2749,5.457608 +L 4.2749,5.457608,4.2465,7.398382 +L 4.2465,7.398382,3.9663,7.398382 +L 3.9663,7.398382,3.6931,7.398382 +L 3.6931,7.398382,3.4199,7.398382 +L 6.8068,0,6.376,0.532526 +L 6.376,0.532526,5.9557,1.056493 +L 5.9557,1.056493,5.5249,1.563626 +L 5.5249,2.898344,6.1277,4.666645 +L 6.1277,4.666645,6.3483,5.833377 +L 6.3483,5.833377,6.376,7.398382 +L 6.376,7.398382,5.802,7.398382 +L 5.802,7.398382,5.2272,7.398382 +L 5.2272,7.398382,4.6668,7.398382 +L 1.7107,3.165275,1.2067,4.615728 +L 1.2067,4.615728,1.4831,6.151224 +L 1.4831,6.151224,2.5653,6.864499 +L 2.5653,6.864499,2.5653,5.6428 +L 2.5653,5.6428,2.5653,4.412454 +L 2.5653,4.412454,2.5653,3.165275 +L 2.5653,3.165275,2.2715,3.165275 +L 2.2715,3.165275,1.9878,3.165275 +L 1.9878,3.165275,1.7107,3.165275 +L 5.0976,7.932222,5.0976,8.302299 +L 5.0976,8.302299,5.0976,8.65539 +L 5.0976,8.65539,5.0976,9.000075 + +[雅] 51 +L 0.8897,0,1.296,0 +L 1.296,0,1.7131,0 +L 1.7131,0,2.14,0 +L 2.14,0,2.0563,1.600358 +L 2.0563,1.600358,1.9863,3.192178 +L 1.9863,3.192178,1.9229,4.767077 +L 1.9229,4.767077,1.2855,3.699114 +L 1.2855,3.699114,0.6519,2.631436 +L 0.6519,2.631436,0.0351,1.563626 +L 3.8496,0,3.8317,4.474623 +L 3.8317,4.474623,3.7197,6.254285 +L 3.7197,6.254285,3.4184,6.864499 +L 3.4184,6.864499,3.2678,6.70054 +L 3.2678,6.70054,3.1242,6.519749 +L 3.1242,6.519749,2.9946,6.330418 +L 4.2734,0,4.7038,0 +L 4.7038,0,5.1245,0 +L 5.1245,0,5.5549,0 +L 5.5549,0,5.5269,1.648363 +L 5.5269,1.648363,5.2187,2.432234 +L 5.2187,2.432234,4.2734,2.631436 +L 5.9822,0,6.385,0 +L 6.385,0,6.8057,0 +L 6.8057,0,7.2361,0 +L 5.9822,2.631436,5.4604,3.744362 +L 5.4604,3.744362,5.2261,4.492989 +L 5.2261,4.492989,4.2734,4.767077 +L 5.9822,4.767077,5.2646,5.747238 +L 5.2646,5.747238,4.5497,6.7105 +L 4.5497,6.7105,3.8496,7.665335 +L 3.8496,7.665335,3.9753,8.121507 +L 3.9753,8.121507,4.1259,8.569164 +L 4.1259,8.569164,4.2734,9.000075 +L 0.4592,5.300938,0.4592,6.367195 +L 0.4592,6.367195,0.4592,7.42522 +L 0.4592,7.42522,0.4592,8.466214 +L 0.4592,8.466214,1.296,8.466214 +L 1.296,8.466214,2.14,8.466214 +L 2.14,8.466214,2.9946,8.466214 +L 0.8897,5.300938,1.296,5.300938 +L 1.296,5.300938,1.7131,5.300938 +L 1.7131,5.300938,2.14,5.300938 +L 2.14,5.300938,2.14,6.177975 +L 2.14,6.177975,2.14,7.055163 +L 2.14,7.055163,2.14,7.932222 +L 5.9822,6.864499,5.6985,7.477428 +L 5.6985,7.477428,5.6985,8.031209 +L 5.6985,8.031209,5.9822,9.000075 +L 6.3815,6.864499,6.6582,6.864499 +L 6.6582,6.864499,6.9384,6.864499 +L 6.9384,6.864499,7.2361,6.864499 + +[餓] 63 +L 3.452,0,3.7252,0 +L 3.7252,0,4.0127,0 +L 4.0127,0,4.3066,0 +L 4.3066,0,4.2229,1.247201 +L 4.2229,1.247201,4.1528,2.477438 +L 4.1528,2.477438,4.0894,3.699114 +L 4.0894,3.699114,3.7252,3.535353 +L 3.7252,3.535353,3.3679,3.354582 +L 3.3679,3.354582,3.0247,3.165275 +L 6.8388,0,6.4714,0.532526 +L 6.4714,0.532526,6.1138,1.056493 +L 6.1138,1.056493,5.7709,1.563626 +L 5.7709,1.563626,5.5569,1.399689 +L 5.5569,1.399689,5.3433,1.218963 +L 5.3433,1.218963,5.1296,1.029721 +L 7.2626,0,7.2626,0.532526 +L 7.2626,0.532526,7.2626,1.056493 +L 7.2626,1.056493,7.2626,1.563626 +L 0.4924,0.533992,0.3313,3.923796 +L 0.3313,3.923796,0.3033,6.449086 +L 0.3033,6.449086,1.1018,9.000075 +L 1.1018,9.000075,1.5925,8.466214 +L 1.5925,8.466214,2.0895,7.932222 +L 2.0895,7.932222,2.5974,7.398382 +L 1.1018,0.533992,1.4489,1.066431 +L 1.4489,1.066431,1.8023,1.590376 +L 1.8023,1.590376,2.1736,2.097487 +L 5.9846,2.364439,5.6585,3.500044 +L 5.6585,3.500044,5.3818,4.86449 +L 5.3818,4.86449,4.9128,5.796667 +L 4.9128,5.796667,4.6113,5.586236 +L 4.6113,5.586236,4.4502,5.180805 +L 4.4502,5.180805,4.3066,4.233107 +L 6.4084,2.898344,6.5376,3.535353 +L 6.5376,3.535353,6.6882,4.155418 +L 6.6882,4.155418,6.8388,4.767077 +L 0.8882,3.165275,1.3155,3.165275 +L 1.3155,3.165275,1.7431,3.165275 +L 1.7431,3.165275,2.1736,3.165275 +L 2.1736,3.165275,2.1736,3.699114 +L 2.1736,3.699114,2.1736,4.233107 +L 2.1736,4.233107,2.1736,4.767077 +L 2.1736,4.767077,1.7431,4.767077 +L 1.7431,4.767077,1.3155,4.767077 +L 1.3155,4.767077,0.8882,4.767077 +L 2.1736,5.300938,2.1736,5.644114 +L 2.1736,5.644114,2.1736,5.987354 +L 2.1736,5.987354,2.1736,6.330418 +L 2.1736,6.330418,1.7431,6.330418 +L 1.7431,6.330418,1.3155,6.330418 +L 1.3155,6.330418,0.8882,6.330418 +L 3.0247,5.796667,4.0999,6.166788 +L 4.0999,6.166788,4.3486,7.130028 +L 4.3486,7.130028,4.3066,8.466214 +L 4.3066,8.466214,4.0127,8.466214 +L 4.0127,8.466214,3.7252,8.466214 +L 3.7252,8.466214,3.452,8.466214 +L 5.9846,5.796667,5.683,6.271205 +L 5.683,6.271205,5.5713,7.101724 +L 5.5713,7.101724,5.5569,9.000075 +L 6.4084,5.796667,6.6882,5.796667 +L 6.6882,5.796667,6.9684,5.796667 +L 6.9684,5.796667,7.2626,5.796667 + +[介] 12 +L 0.4909,0,1.612,1.823573 +L 1.612,1.823573,2.0989,3.197738 +L 2.0989,3.197738,2.2004,5.300938 +L 4.7359,0,4.7359,1.781128 +L 4.7359,1.781128,4.7359,3.545269 +L 4.7359,3.545269,4.7359,5.300938 +L 0.2807,5.300938,1.3245,6.548097 +L 1.3245,6.548097,2.3826,7.778223 +L 2.3826,7.778223,3.447,9.000075 +L 3.447,9.000075,4.5818,7.778223 +L 4.5818,7.778223,5.7166,6.548097 +L 5.7166,6.548097,6.8657,5.300938 + +[塊] 54 +L 1.5615,0,2.7275,1.48169 +L 2.7275,1.48169,3.5786,2.878534 +L 3.5786,2.878534,3.9043,4.767077 +L 3.9043,4.767077,3.6136,4.767077 +L 3.6136,4.767077,3.3299,4.767077 +L 3.3299,4.767077,3.0532,4.767077 +L 3.0532,4.767077,3.0532,5.833377 +L 3.0532,5.833377,3.0532,6.891292 +L 3.0532,6.891292,3.0532,7.932222 +L 3.0532,7.932222,3.9712,8.149745 +L 3.9712,8.149745,4.416,8.426658 +L 4.416,8.426658,4.7624,9.000075 +L 5.1932,0,4.6643,1.963277 +L 4.6643,1.963277,4.5771,4.545176 +L 4.5771,4.545176,4.3354,6.330418 +L 4.3354,6.330418,4.0444,6.330418 +L 4.0444,6.330418,3.7575,6.330418 +L 3.7575,6.330418,3.4843,6.330418 +L 5.5855,0,6.1462,0 +L 6.1462,0,6.7167,0 +L 6.7167,0,7.2947,0 +L 7.2947,0,7.2947,0.343218 +L 7.2947,0.343218,7.2947,0.686524 +L 7.2947,0.686524,7.2947,1.029721 +L 0.094,2.097487,0.5209,2.097487 +L 0.5209,2.097487,0.9482,2.097487 +L 0.9482,2.097487,1.3794,2.097487 +L 1.3794,2.097487,1.428,4.279689 +L 1.428,4.279689,1.2004,5.775456 +L 1.2004,5.775456,0.094,6.330418 +L 5.3753,2.097487,5.5855,2.631436 +L 5.5855,2.631436,5.803,3.165275 +L 5.803,3.165275,6.0166,3.699114 +L 6.2268,2.097487,6.6926,2.453402 +L 6.6926,2.453402,6.9724,2.453402 +L 6.9724,2.453402,7.2947,2.097487 +L 5.1932,4.767077,5.596,4.767077 +L 5.596,4.767077,6.0166,4.767077 +L 6.0166,4.767077,6.4404,4.767077 +L 6.4404,4.767077,6.4404,5.299472 +L 6.4404,5.299472,6.4404,5.823439 +L 6.4404,5.823439,6.4404,6.330418 +L 6.4404,6.330418,5.3298,6.43223 +L 5.3298,6.43223,4.8569,6.889936 +L 4.8569,6.889936,4.7624,7.932222 +L 4.7624,7.932222,5.3161,7.932222 +L 5.3161,7.932222,5.8692,7.932222 +L 5.8692,7.932222,6.4404,7.932222 +L 6.4404,7.932222,6.4404,7.587667 +L 6.4404,7.587667,6.4404,7.234489 +L 6.4404,7.234489,6.4404,6.864499 +L 1.7751,6.330418,1.4946,6.785365 +L 1.4946,6.785365,1.3899,7.477428 +L 1.3899,7.477428,1.3794,9.000075 + +[壊] 69 +L 2.6594,0,3.0867,0 +L 3.0867,0,3.5105,0 +L 3.5105,0,3.9417,0 +L 3.9417,0,3.9417,0.713428 +L 3.9417,0.713428,3.9417,1.409627 +L 3.9417,1.409627,3.9417,2.097487 +L 3.9417,2.097487,3.3638,1.933682 +L 3.3638,1.933682,2.7925,1.752911 +L 2.7925,1.752911,2.2321,1.563626 +L 6.8977,0,5.9836,1.357397 +L 5.9836,1.357397,5.5388,2.316434 +L 5.5388,2.316434,5.1882,3.699114 +L 5.1882,3.699114,4.5717,3.481678 +L 4.5717,3.481678,4.2495,3.204831 +L 4.2495,3.204831,3.9417,2.631436 +L 4.3371,0.533992,4.6103,0.533992 +L 4.6103,0.533992,4.894,0.533992 +L 4.894,0.533992,5.1882,0.533992 +L 0.1271,2.097487,0.4003,2.097487 +L 0.4003,2.097487,0.6735,2.097487 +L 0.6735,2.097487,0.9467,2.097487 +L 0.9467,2.097487,0.9467,3.344644 +L 0.9467,3.344644,0.9467,4.574859 +L 0.9467,4.574859,0.9467,5.796667 +L 0.9467,5.796667,0.6735,5.985909 +L 0.6735,5.985909,0.4003,6.166788 +L 0.4003,6.166788,0.1271,6.330418 +L 2.6594,3.699114,3.0867,3.699114 +L 3.0867,3.699114,3.5105,3.699114 +L 3.5105,3.699114,3.9417,3.699114 +L 5.6193,3.699114,6.1762,3.699114 +L 6.1762,3.699114,6.7468,3.699114 +L 6.7468,3.699114,7.3247,3.699114 +L 4.7644,4.233107,4.7644,4.603097 +L 4.7644,4.603097,4.7644,4.956297 +L 4.7644,4.956297,4.7644,5.300938 +L 4.7644,5.300938,4.1938,5.300938 +L 4.1938,5.300938,3.6331,5.300938 +L 3.6331,5.300938,3.0867,5.300938 +L 3.0867,5.300938,3.0867,5.833377 +L 3.0867,5.833377,3.0867,6.357409 +L 3.0867,6.357409,3.0867,6.864499 +L 3.0867,6.864499,3.6331,6.96758 +L 3.6331,6.96758,4.1938,7.053718 +L 4.1938,7.053718,4.7644,7.131386 +L 4.7644,7.131386,4.4001,7.695018 +L 4.4001,7.695018,3.8537,7.902538 +L 3.8537,7.902538,2.6594,7.932222 +L 5.4018,5.300938,5.3181,5.833377 +L 5.3181,5.833377,5.2512,6.357409 +L 5.2512,6.357409,5.1882,6.864499 +L 6.0428,5.300938,6.3198,5.300938 +L 6.3198,5.300938,6.6035,5.300938 +L 6.6035,5.300938,6.8977,5.300938 +L 6.8977,5.300938,6.8977,5.833377 +L 6.8977,5.833377,6.8977,6.357409 +L 6.8977,6.357409,6.8977,6.864499 +L 6.8977,6.864499,6.6035,6.864499 +L 6.6035,6.864499,6.3198,6.864499 +L 6.3198,6.864499,6.0428,6.864499 +L 1.3775,6.330418,1.0728,6.785365 +L 1.0728,6.785365,0.9646,7.477428 +L 0.9646,7.477428,0.9467,9.000075 +L 5.1882,7.932222,5.0376,8.302299 +L 5.0376,8.302299,4.894,8.65539 +L 4.894,8.65539,4.7644,9.000075 +L 5.6193,7.932222,6.1762,7.932222 +L 6.1762,7.932222,6.7468,7.932222 +L 6.7468,7.932222,7.3247,7.932222 + +[怪] 42 +L 1.4114,0,1.4114,3.011321 +L 1.4114,3.011321,1.4114,6.014191 +L 1.4114,6.014191,1.4114,9.000075 +L 2.2621,0,3.0957,0 +L 3.0957,0,3.9433,0 +L 3.9433,0,4.7944,0 +L 4.7944,0,4.6371,2.072094 +L 4.6371,2.072094,4.0134,2.644089 +L 4.0134,2.644089,2.6579,2.631436 +L 5.2217,0,5.926,0 +L 5.926,0,6.6262,0 +L 6.6262,0,7.3267,0 +L 5.2217,2.631436,4.9208,3.04663 +L 4.9208,3.04663,4.8084,3.461933 +L 4.8084,3.461933,4.7944,4.233107 +L 5.6455,2.631436,6.0556,2.631436 +L 6.0556,2.631436,6.4724,2.631436 +L 6.4724,2.631436,6.8994,2.631436 +L 2.4443,4.233107,3.2183,4.765524 +L 3.2183,4.765524,4.0028,5.289599 +L 4.0028,5.289599,4.7944,5.796667 +L 4.7944,5.796667,3.8911,6.963268 +L 3.8911,6.963268,3.5615,7.655462 +L 3.5615,7.655462,3.5164,8.466214 +L 3.5164,8.466214,3.2183,8.466214 +L 3.2183,8.466214,2.9346,8.466214 +L 2.9346,8.466214,2.6579,8.466214 +L 6.8994,4.233107,6.3288,4.603097 +L 6.3288,4.603097,5.7719,4.956297 +L 5.7719,4.956297,5.2217,5.300938 +L 0.126,5.033943,0.4272,5.630038 +L 0.4272,5.630038,0.5354,6.242967 +L 0.5354,6.242967,0.5529,7.398382 +L 2.2621,6.597503,2.1115,6.864499 +L 2.1115,6.864499,1.9644,7.131386 +L 1.9644,7.131386,1.8352,7.398382 +L 5.2217,6.330418,5.6455,6.96758 +L 5.6455,6.96758,6.0766,7.587667 +L 6.0766,7.587667,6.5004,8.199174 +L 6.5004,8.199174,5.6455,8.302299 +L 5.6455,8.302299,4.7944,8.388415 +L 4.7944,8.388415,3.9363,8.466214 + +[悔] 48 +L 1.4099,0,1.4099,3.011321 +L 1.4099,3.011321,1.4099,6.014191 +L 1.4099,6.014191,1.4099,9.000075 +L 4.8244,0,5.6545,0.151131 +L 5.6545,0.151131,6.0012,0.649748 +L 6.0012,0.649748,6.0751,1.563626 +L 6.0751,1.563626,5.0766,1.563626 +L 5.0766,1.563626,4.0959,1.563626 +L 4.0959,1.563626,3.1152,1.563626 +L 3.1152,1.563626,3.1152,2.467543 +L 3.1152,2.467543,3.1152,3.354582 +L 3.1152,3.354582,3.1152,4.233107 +L 3.1152,4.233107,2.8179,4.233107 +L 2.8179,4.233107,2.5373,4.233107 +L 2.5373,4.233107,2.2641,4.233107 +L 6.5056,1.563626,6.0678,4.032548 +L 6.0678,4.032548,5.2622,4.128668 +L 5.2622,4.128668,4.8244,2.097487 +L 3.5425,4.233107,3.5254,5.728828 +L 3.5254,5.728828,3.4164,6.411084 +L 3.4164,6.411084,3.1152,6.864499 +L 3.1152,6.864499,2.9646,6.70054 +L 2.9646,6.70054,2.8179,6.519749 +L 2.8179,6.519749,2.6848,6.330418 +L 2.6848,6.330418,2.3937,6.864499 +L 2.3937,6.864499,2.1104,7.398382 +L 2.1104,7.398382,1.8337,7.932222 +L 4.1838,4.233107,4.6318,4.666645 +L 4.6318,4.666645,4.8003,5.210466 +L 4.8003,5.210466,4.8244,6.330418 +L 4.8244,6.330418,4.5302,6.330418 +L 4.5302,6.330418,4.2434,6.330418 +L 4.2434,6.330418,3.9733,6.330418 +L 6.9294,4.233107,6.6282,4.666645 +L 6.6282,4.666645,6.52,5.210466 +L 6.52,5.210466,6.5056,6.330418 +L 6.5056,6.330418,6.0751,6.330418 +L 6.0751,6.330418,5.6475,6.330418 +L 5.6475,6.330418,5.2202,6.330418 +L 0.1592,5.033943,0.4572,5.630038 +L 0.4572,5.630038,0.5693,6.242967 +L 0.5693,6.242967,0.583,7.398382 +L 3.5425,7.665335,3.676,8.121507 +L 3.676,8.121507,3.8196,8.569164 +L 3.8196,8.569164,3.9733,9.000075 +L 4.3936,7.932222,5.3743,7.932222 +L 5.3743,7.932222,6.355,7.932222 +L 6.355,7.932222,7.3567,7.932222 + +[懐] 66 +L 1.436,0,1.436,3.011321 +L 1.436,3.011321,1.436,6.014191 +L 1.436,6.014191,1.436,9.000075 +L 2.7214,0,3.1242,0 +L 3.1242,0,3.5449,0 +L 3.5449,0,3.9683,0 +L 3.9683,0,3.9683,0.713428 +L 3.9683,0.713428,3.9683,1.409627 +L 3.9683,1.409627,3.9683,2.097487 +L 3.9683,2.097487,3.3974,1.933682 +L 3.3974,1.933682,2.844,1.752911 +L 2.844,1.752911,2.291,1.563626 +L 4.3991,0,4.6758,0.189242 +L 4.6758,0.189242,4.956,0.3701 +L 4.956,0.3701,5.2537,0.533992 +L 6.9629,0,6.0421,1.357397 +L 6.0421,1.357397,5.597,2.316434 +L 5.597,2.316434,5.2537,3.699114 +L 5.2537,3.699114,4.6338,3.481678 +L 4.6338,3.481678,4.3049,3.204831 +L 4.3049,3.204831,3.9683,2.631436 +L 2.7214,3.699114,3.1242,3.699114 +L 3.1242,3.699114,3.5449,3.699114 +L 3.5449,3.699114,3.9683,3.699114 +L 5.6775,3.699114,6.2379,3.699114 +L 6.2379,3.699114,6.8092,3.699114 +L 6.8092,3.699114,7.3867,3.699114 +L 4.8229,4.233107,4.8229,4.603097 +L 4.8229,4.603097,4.8229,4.956297 +L 4.8229,4.956297,4.8229,5.300938 +L 4.8229,5.300938,4.2559,5.300938 +L 4.2559,5.300938,3.6951,5.300938 +L 3.6951,5.300938,3.1421,5.300938 +L 3.1421,5.300938,3.1421,5.833377 +L 3.1421,5.833377,3.1421,6.357409 +L 3.1421,6.357409,3.1421,6.864499 +L 3.1421,6.864499,3.6951,6.96758 +L 3.6951,6.96758,4.2559,7.053718 +L 4.2559,7.053718,4.8229,7.131386 +L 4.8229,7.131386,4.4587,7.695018 +L 4.4587,7.695018,3.9158,7.902538 +L 3.9158,7.902538,2.7214,7.932222 +L 2.7214,7.932222,2.5673,7.587667 +L 2.5673,7.587667,2.4241,7.234489 +L 2.4241,7.234489,2.291,6.864499 +L 0.1577,5.033943,0.4554,5.630038 +L 0.4554,5.630038,0.5674,6.242967 +L 0.5674,6.242967,0.585,7.398382 +L 5.4639,5.300938,5.3833,5.833377 +L 5.3833,5.833377,5.3133,6.357409 +L 5.3133,6.357409,5.2537,6.864499 +L 6.1052,5.300938,6.3815,5.300938 +L 6.3815,5.300938,6.6652,5.300938 +L 6.6652,5.300938,6.9629,5.300938 +L 6.9629,5.300938,6.9629,5.833377 +L 6.9629,5.833377,6.9629,6.357409 +L 6.9629,6.357409,6.9629,6.864499 +L 6.9629,6.864499,6.6652,6.864499 +L 6.6652,6.864499,6.3815,6.864499 +L 6.3815,6.864499,6.1052,6.864499 +L 5.2537,7.932222,5.0996,8.302299 +L 5.0996,8.302299,4.956,8.65539 +L 4.956,8.65539,4.8229,9.000075 +L 5.6775,7.932222,6.2379,7.932222 +L 6.2379,7.932222,6.8092,7.932222 +L 6.8092,7.932222,7.3867,7.932222 + +[戒] 42 +L 2.9304,0,3.8477,0.799413 +L 3.8477,0.799413,4.7724,1.590376 +L 4.7724,1.590376,5.711,2.364439 +L 5.711,2.364439,4.5903,6.279765 +L 4.5903,6.279765,3.6271,7.398382 +L 3.6271,7.398382,0.1915,7.398382 +L 6.9614,0,6.6847,0.532526 +L 6.6847,0.532526,6.415,1.056493 +L 6.415,1.056493,6.1348,1.563626 +L 7.3887,0,7.3887,0.532526 +L 7.3887,0.532526,7.3887,1.056493 +L 7.3887,1.056493,7.3887,1.563626 +L 0.1915,0.533992,1.0913,2.04946 +L 1.0913,2.04946,1.4205,2.870106 +L 1.4205,2.870106,1.4699,3.699114 +L 1.4699,3.699114,1.1368,4.074884 +L 1.1368,4.074884,0.8045,4.213362 +L 0.8045,4.213362,0.1915,4.233107 +L 2.7164,1.029721,2.7164,1.933682 +L 2.7164,1.933682,2.7164,2.820634 +L 2.7164,2.820634,2.7164,3.699114 +L 2.7164,3.699114,2.2965,4.069346 +L 2.2965,4.069346,1.8762,4.422327 +L 1.8762,4.422327,1.4699,4.767077 +L 1.4699,4.767077,1.4699,5.299472 +L 1.4699,5.299472,1.4699,5.823439 +L 1.4699,5.823439,1.4699,6.330418 +L 6.1348,3.432359,6.415,4.231662 +L 6.415,4.231662,6.6847,5.022712 +L 6.6847,5.022712,6.9614,5.796667 +L 3.1476,4.233107,2.8429,4.666645 +L 2.8429,4.666645,2.734,5.210466 +L 2.734,5.210466,2.7164,6.330418 +L 5.2802,7.398382,4.9825,7.813554 +L 4.9825,7.813554,4.8708,8.228879 +L 4.8708,8.228879,4.8564,9.000075 +L 5.711,7.398382,6.1138,7.501463 +L 6.1138,7.501463,6.5341,7.587667 +L 6.5341,7.587667,6.9614,7.665335 +L 6.9614,7.665335,6.6847,8.121507 +L 6.6847,8.121507,6.415,8.569164 +L 6.415,8.569164,6.1348,9.000075 + +[拐] 42 +L 0.6485,0,0.9185,0 +L 0.9185,0,1.1949,0 +L 1.1949,0,1.4649,0 +L 1.4649,0,1.4509,2.622898 +L 1.4509,2.622898,1.3385,3.720458 +L 1.3385,3.720458,1.0446,4.233107 +L 1.0446,4.233107,0.7644,4.069346 +L 0.7644,4.069346,0.4909,3.888466 +L 0.4909,3.888466,0.2177,3.699114 +L 3.1738,0,4.0704,1.394173 +L 4.0704,1.394173,4.6486,2.610202 +L 4.6486,2.610202,4.8549,4.233107 +L 4.8549,4.233107,4.2844,4.233107 +L 4.2844,4.233107,3.7271,4.233107 +L 3.7271,4.233107,3.1738,4.233107 +L 5.7095,0,5.9866,0 +L 5.9866,0,6.2703,0 +L 6.2703,0,6.5641,0 +L 6.5641,0,7.1911,1.4195 +L 7.1911,1.4195,7.4016,2.661097 +L 7.4016,2.661097,7.4191,4.233107 +L 7.4191,4.233107,6.6941,4.233107 +L 6.6941,4.233107,5.9866,4.233107 +L 5.9866,4.233107,5.2857,4.233107 +L 1.8957,4.233107,1.3879,5.474616 +L 1.3879,5.474616,1.1739,6.461958 +L 1.1739,6.461958,0.2177,6.864499 +L 3.6046,5.796667,3.6046,6.70054 +L 3.6046,6.70054,3.6046,7.587667 +L 3.6046,7.587667,3.6046,8.466214 +L 3.6046,8.466214,4.7324,8.466214 +L 4.7324,8.466214,5.864,8.466214 +L 5.864,8.466214,6.9918,8.466214 +L 6.9918,8.466214,6.9918,7.587667 +L 6.9918,7.587667,6.9918,6.70054 +L 6.9918,6.70054,6.9918,5.796667 +L 6.9918,5.796667,5.864,5.796667 +L 5.864,5.796667,4.7324,5.796667 +L 4.7324,5.796667,3.6046,5.796667 +L 1.8957,6.864499,1.5945,7.299591 +L 1.5945,7.299591,1.4821,7.853109 +L 1.4821,7.853109,1.4649,9.000075 + +[皆] 45 +L 1.5016,0,1.5016,1.247201 +L 1.5016,1.247201,1.5016,2.477438 +L 1.5016,2.477438,1.5016,3.699114 +L 1.5016,3.699114,2.7169,3.91666 +L 2.7169,3.91666,3.2598,4.193551 +L 3.2598,4.193551,3.6031,4.767077 +L 1.9219,0,3.3337,0 +L 3.3337,0,4.7414,0 +L 4.7414,0,6.1672,0 +L 6.1672,0,6.1672,0.713428 +L 6.1672,0.713428,6.1672,1.409627 +L 6.1672,1.409627,6.1672,2.097487 +L 6.1672,2.097487,4.7414,2.097487 +L 4.7414,2.097487,3.3337,2.097487 +L 3.3337,2.097487,1.9219,2.097487 +L 6.1672,2.631436,6.1672,3.001492 +L 6.1672,3.001492,6.1672,3.354582 +L 6.1672,3.354582,6.1672,3.699114 +L 6.1672,3.699114,5.3126,3.699114 +L 5.3126,3.699114,4.4577,3.699114 +L 4.4577,3.699114,3.6031,3.699114 +L 0.2165,5.300938,0.647,5.300938 +L 0.647,5.300938,1.0708,5.300938 +L 1.0708,5.300938,1.5016,5.300938 +L 1.5016,5.300938,1.5016,6.548097 +L 1.5016,6.548097,1.5016,7.778223 +L 1.5016,7.778223,1.5016,9.000075 +L 4.885,5.300938,4.5841,5.768428 +L 4.5841,5.768428,4.4717,6.7274 +L 4.4717,6.7274,4.4577,9.000075 +L 5.3126,5.300938,5.8727,5.300938 +L 5.8727,5.300938,6.4436,5.300938 +L 6.4436,5.300938,7.0215,5.300938 +L 7.0215,5.300938,7.0215,5.644114 +L 7.0215,5.644114,7.0215,5.987354 +L 7.0215,5.987354,7.0215,6.330418 +L 1.9219,5.796667,2.4753,5.985909 +L 2.4753,5.985909,3.0357,6.166788 +L 3.0357,6.166788,3.6031,6.330418 +L 5.1021,7.398382,5.589,7.768438 +L 5.589,7.768438,6.0867,8.121507 +L 6.0867,8.121507,6.5945,8.466214 +L 1.9219,7.932222,2.4753,7.932222 +L 2.4753,7.932222,3.0357,7.932222 +L 3.0357,7.932222,3.6031,7.932222 + +[劾] 39 +L 0.2501,0,1.9172,1.555132 +L 1.9172,1.555132,2.7995,2.652669 +L 2.7995,2.652669,3.6369,4.233107 +L 3.6369,0,3.7662,0.189242 +L 3.7662,0.189242,3.9133,0.3701 +L 3.9133,0.3701,4.0607,0.533992 +L 4.0607,0.533992,3.7662,0.877211 +L 3.7662,0.877211,3.486,1.220386 +L 3.486,1.220386,3.2061,1.563626 +L 5.7419,0,7.0728,1.36438 +L 7.0728,1.36438,7.1881,4.254297 +L 7.1881,4.254297,7.02,6.864499 +L 7.02,6.864499,5.3493,6.038096 +L 5.3493,6.038096,4.9605,3.915259 +L 4.9605,3.915259,4.4912,1.029721 +L 0.4634,2.631436,0.8101,3.08763 +L 0.8101,3.08763,1.1642,3.535353 +L 1.1642,3.535353,1.5285,3.966133 +L 1.5285,3.966133,1.1047,4.576325 +L 1.1047,4.576325,0.6774,5.186496 +L 0.6774,5.186496,0.2501,5.796667 +L 1.9274,4.233107,2.2041,4.765524 +L 2.2041,4.765524,2.4846,5.289599 +L 2.4846,5.289599,2.7823,5.796667 +L 1.1047,5.796667,1.402,6.211882 +L 1.402,6.211882,1.5141,6.627186 +L 1.5141,6.627186,1.5285,7.398382 +L 1.5285,7.398382,1.1047,7.398382 +L 1.1047,7.398382,0.6774,7.398382 +L 0.6774,7.398382,0.2501,7.398382 +L 4.0607,6.864499,3.6965,7.240158 +L 3.6965,7.240158,3.1427,7.378571 +L 3.1427,7.378571,1.9274,7.398382 +L 1.9274,7.398382,1.9274,7.932222 +L 1.9274,7.932222,1.9274,8.466214 +L 1.9274,8.466214,1.9274,9.000075 +L 4.7013,6.864499,5.1535,7.299591 +L 5.1535,7.299591,5.3213,7.853109 +L 5.3213,7.853109,5.3423,9.000075 + +[慨] 54 +L 1.1032,0,1.1032,3.011321 +L 1.1032,3.011321,1.1032,6.014191 +L 1.1032,6.014191,1.1032,9.000075 +L 4.276,0,4.4897,0.189242 +L 4.4897,0.189242,4.6998,0.3701 +L 4.6998,0.3701,4.917,0.533992 +L 4.917,0.533992,4.6998,0.877211 +L 4.6998,0.877211,4.4897,1.220386 +L 4.4897,1.220386,4.276,1.563626 +L 4.276,1.563626,3.4918,1.220386 +L 3.4918,1.220386,2.7213,0.877211 +L 2.7213,0.877211,1.9543,0.533992 +L 6.6265,0,6.5421,1.066431 +L 6.5421,1.066431,6.4756,2.124346 +L 6.4756,2.124346,6.4094,3.165275 +L 6.4094,3.165275,6.0451,2.467543 +L 6.0451,2.467543,5.691,1.752911 +L 5.691,1.752911,5.3443,1.029721 +L 7.2671,0,7.3267,0.532526 +L 7.3267,0.532526,7.3971,1.056493 +L 7.3971,1.056493,7.4811,1.563626 +L 2.812,1.563626,2.812,3.87855 +L 2.812,3.87855,2.812,6.176574 +L 2.812,6.176574,2.812,8.466214 +L 2.812,8.466214,3.2393,8.466214 +L 3.2393,8.466214,3.6631,8.466214 +L 3.6631,8.466214,4.0939,8.466214 +L 4.0939,8.466214,4.0939,7.244383 +L 4.0939,7.244383,4.0939,6.014191 +L 4.0939,6.014191,4.0939,4.767077 +L 4.0939,4.767077,4.4967,4.767077 +L 4.4967,4.767077,4.917,4.767077 +L 4.917,4.767077,5.3443,4.767077 +L 5.3443,4.767077,5.3443,6.014191 +L 5.3443,6.014191,5.3443,7.244383 +L 5.3443,7.244383,5.3443,8.466214 +L 5.3443,8.466214,6.0451,8.466214 +L 6.0451,8.466214,6.7561,8.466214 +L 6.7561,8.466214,7.4811,8.466214 +L 6.1989,3.699114,6.0451,4.069346 +L 6.0451,4.069346,5.905,4.422327 +L 5.905,4.422327,5.7681,4.767077 +L 3.2393,4.233107,3.5128,4.233107 +L 3.5128,4.233107,3.793,4.233107 +L 3.793,4.233107,4.0939,4.233107 +L 0.2797,4.767077,0.2797,5.644114 +L 0.2797,5.644114,0.2797,6.521215 +L 0.2797,6.521215,0.2797,7.398382 +L 6.6265,4.767077,6.6265,5.833377 +L 6.6265,5.833377,6.6265,6.891292 +L 6.6265,6.891292,6.6265,7.932222 +L 1.9543,7.131386,1.8033,7.398382 +L 1.8033,7.398382,1.6597,7.665335 +L 1.6597,7.665335,1.534,7.932222 + +[概] 57 +L 1.1328,0,1.0523,1.600358 +L 1.0523,1.600358,0.9826,3.192178 +L 0.9826,3.192178,0.9195,4.767077 +L 0.9195,4.767077,0.7024,4.422327 +L 0.7024,4.422327,0.4919,4.069346 +L 0.4919,4.069346,0.2817,3.699114 +L 4.3064,0,4.5236,0.189242 +L 4.5236,0.189242,4.7333,0.3701 +L 4.7333,0.3701,4.9473,0.533992 +L 4.9473,0.533992,4.7333,0.877211 +L 4.7333,0.877211,4.5236,1.220386 +L 4.5236,1.220386,4.3064,1.563626 +L 4.3064,1.563626,3.5215,1.220386 +L 3.5215,1.220386,2.7478,0.877211 +L 2.7478,0.877211,1.9913,0.533992 +L 6.6562,0,6.5725,1.066431 +L 6.5725,1.066431,6.5021,2.124346 +L 6.5021,2.124346,6.439,3.165275 +L 6.439,3.165275,6.0748,2.467543 +L 6.0748,2.467543,5.7179,1.752911 +L 5.7179,1.752911,5.3746,1.029721 +L 7.2656,0,7.3287,0.532526 +L 7.3287,0.532526,7.3952,1.056493 +L 7.3952,1.056493,7.4796,1.563626 +L 2.8105,1.563626,2.8105,3.87855 +L 2.8105,3.87855,2.8105,6.176574 +L 2.8105,6.176574,2.8105,8.466214 +L 2.8105,8.466214,3.2378,8.466214 +L 3.2378,8.466214,3.6651,8.466214 +L 3.6651,8.466214,4.0924,8.466214 +L 4.0924,8.466214,4.0924,7.055163 +L 4.0924,7.055163,4.0924,5.644114 +L 4.0924,5.644114,4.0924,4.233107 +L 4.0924,4.233107,3.7985,4.233107 +L 3.7985,4.233107,3.5148,4.233107 +L 3.5148,4.233107,3.2378,4.233107 +L 6.2292,3.699114,6.2292,4.069346 +L 6.2292,4.069346,6.2292,4.422327 +L 6.2292,4.422327,6.2292,4.767077 +L 6.2292,4.767077,5.9312,4.767077 +L 5.9312,4.767077,5.651,4.767077 +L 5.651,4.767077,5.3746,4.767077 +L 5.3746,4.767077,5.3746,6.014191 +L 5.3746,6.014191,5.3746,7.244383 +L 5.3746,7.244383,5.3746,8.466214 +L 5.3746,8.466214,6.0748,8.466214 +L 6.0748,8.466214,6.7788,8.466214 +L 6.7788,8.466214,7.4796,8.466214 +L 1.9913,4.767077,1.4484,5.429435 +L 1.4484,5.429435,0.9577,6.202076 +L 0.9577,6.202076,0.2817,6.864499 +L 6.6562,4.767077,6.6562,5.833377 +L 6.6562,5.833377,6.6562,6.891292 +L 6.6562,6.891292,6.6562,7.932222 +L 1.5601,6.864499,1.2589,7.299591 +L 1.2589,7.299591,1.1503,7.853109 +L 1.1503,7.853109,1.1328,9.000075 + +[涯] 51 +L 0.3083,0.266996,0.7145,1.411028 +L 0.7145,1.411028,1.1348,2.555126 +L 1.1348,2.555126,1.5621,3.699114 +L 1.5621,0.266996,2.256,3.036823 +L 2.256,3.036823,2.4307,5.620121 +L 2.4307,5.620121,2.4171,8.466214 +L 2.4171,8.466214,4.1018,8.466214 +L 4.1018,8.466214,5.8039,8.466214 +L 5.8039,8.466214,7.5058,8.466214 +L 3.2717,0,3.9718,0 +L 3.9718,0,4.6758,0 +L 4.6758,0,5.3766,0 +L 5.3766,0,5.3623,1.120084 +L 5.3623,1.120084,5.2576,1.663927 +L 5.2576,1.663927,4.9805,2.097487 +L 4.9805,2.097487,4.5501,2.097487 +L 4.5501,2.097487,4.1228,2.097487 +L 4.1228,2.097487,3.6955,2.097487 +L 5.8004,0,6.357,0 +L 6.357,0,6.9317,0 +L 6.9317,0,7.5058,0 +L 5.8004,2.097487,5.6495,2.467543 +L 5.6495,2.467543,5.5059,2.820634 +L 5.5059,2.820634,5.3766,3.165275 +L 6.2277,2.097487,6.5041,2.097487 +L 6.5041,2.097487,6.7878,2.097487 +L 6.7878,2.097487,7.0855,2.097487 +L 3.2717,4.233107,3.9718,4.233107 +L 3.9718,4.233107,4.6758,4.233107 +L 4.6758,4.233107,5.3766,4.233107 +L 5.3766,4.233107,5.3623,5.353169 +L 5.3623,5.353169,5.2576,5.896968 +L 5.2576,5.896968,4.9805,6.330418 +L 4.9805,6.330418,4.5501,6.330418 +L 4.5501,6.330418,4.1228,6.330418 +L 4.1228,6.330418,3.6955,6.330418 +L 5.8004,4.233107,6.357,4.233107 +L 6.357,4.233107,6.9317,4.233107 +L 6.9317,4.233107,7.5058,4.233107 +L 1.1593,5.796667,0.8686,6.166788 +L 0.8686,6.166788,0.5849,6.519749 +L 0.5849,6.519749,0.3083,6.864499 +L 5.8004,6.330418,5.6495,6.70054 +L 5.6495,6.70054,5.5059,7.053718 +L 5.5059,7.053718,5.3766,7.398382 +L 6.2277,6.330418,6.5041,6.330418 +L 6.5041,6.330418,6.7878,6.330418 +L 6.7878,6.330418,7.0855,6.330418 +L 1.5621,7.932222,1.2858,8.302299 +L 1.2858,8.302299,1.0122,8.65539 +L 1.0122,8.65539,0.7394,9.000075 + +[該] 59 +L 0.734,0,0.734,0.713428 +L 0.734,0.713428,0.734,1.409627 +L 0.734,1.409627,0.734,2.097487 +L 0.734,2.097487,1.1652,2.097487 +L 1.1652,2.097487,1.5925,2.097487 +L 1.5925,2.097487,2.0198,2.097487 +L 2.0198,2.097487,2.0198,1.409627 +L 2.0198,1.409627,2.0198,0.713428 +L 2.0198,0.713428,2.0198,0 +L 2.0198,0,1.5925,0 +L 1.5925,0,1.1652,0 +L 1.1652,0,0.734,0 +L 3.2978,0,5.116,0.902647 +L 5.116,0.902647,6.2119,2.186449 +L 6.2119,2.186449,7.1124,4.233107 +L 7.1124,0.266996,6.9614,0.532526 +L 6.9614,0.532526,6.8147,0.78954 +L 6.8147,0.78954,6.6847,1.029721 +L 3.5153,2.097487,4.0022,2.553703 +L 4.0022,2.553703,4.489,3.001492 +L 4.489,3.001492,4.979,3.432359 +L 4.979,3.432359,4.405,4.231662 +L 4.405,4.231662,3.8512,5.022712 +L 3.8512,5.022712,3.2978,5.796667 +L 0.734,3.699114,1.1652,3.699114 +L 1.1652,3.699114,1.5925,3.699114 +L 1.5925,3.699114,2.0198,3.699114 +L 5.4063,3.699114,5.6834,4.412454 +L 5.6834,4.412454,5.9636,5.108829 +L 5.9636,5.108829,6.2574,5.796667 +L 0.734,5.300938,1.1652,5.300938 +L 1.1652,5.300938,1.5925,5.300938 +L 1.5925,5.300938,2.0198,5.300938 +L 4.5486,5.796667,4.8498,6.211882 +L 4.8498,6.211882,4.9615,6.627186 +L 4.9615,6.627186,4.979,7.398382 +L 4.979,7.398382,4.405,7.398382 +L 4.405,7.398382,3.8512,7.398382 +L 3.8512,7.398382,3.2978,7.398382 +L 0.3141,6.864499,1.0142,6.864499 +L 1.0142,6.864499,1.7217,6.864499 +L 1.7217,6.864499,2.4436,6.864499 +L 5.4063,7.398382,5.4063,7.932222 +L 5.4063,7.932222,5.4063,8.466214 +L 5.4063,8.466214,5.4063,9.000075 +L 5.8336,7.398382,6.394,7.398382 +L 6.394,7.398382,6.9614,7.398382 +L 6.9614,7.398382,7.5432,7.398382 +L 0.734,8.466214,1.1652,8.466214 +L 1.1652,8.466214,1.5925,8.466214 +L 1.5925,8.466214,2.0198,8.466214 +L 0.3141,6.902522,2.839,6.902522 +L 0.734,8.504325,2.4152,8.504325 +L 0.734,5.30096,2.4152,5.30096 +L 0.734,4.233019,2.4152,4.233019 +L 0.734,2.669525,2.4152,2.669525 +L 0.734,0,0.734,2.669525 +L 2.4152,0,0.734,0 +L 2.4152,2.669525,2.4152,0 + +[垣] 30 +L 2.8725,0,4.428,0 +L 4.428,0,5.9831,0 +L 5.9831,0,7.5382,0 +L 0.3403,1.563626,0.7711,1.563626 +L 0.7711,1.563626,1.1914,1.563626 +L 1.1914,1.563626,1.6222,1.563626 +L 1.6222,1.563626,1.6961,3.850332 +L 1.6961,3.850332,1.4859,5.620121 +L 1.4859,5.620121,0.3403,6.330418 +L 3.7271,2.097487,3.7271,3.508515 +L 3.7271,3.508515,3.7271,4.91961 +L 3.7271,4.91961,3.7271,6.330418 +L 3.7271,6.330418,4.7047,6.330418 +L 4.7047,6.330418,5.6885,6.330418 +L 5.6885,6.330418,6.6867,6.330418 +L 6.6867,6.330418,6.6867,4.91961 +L 6.6867,4.91961,6.6867,3.508515 +L 6.6867,3.508515,6.6867,2.097487 +L 6.6867,2.097487,5.6885,2.097487 +L 5.6885,2.097487,4.7047,2.097487 +L 4.7047,2.097487,3.7271,2.097487 +L 4.1544,4.233107,4.8549,4.233107 +L 4.8549,4.233107,5.5628,4.233107 +L 5.5628,4.233107,6.2913,4.233107 +L 2.0495,6.330418,1.7486,6.785365 +L 1.7486,6.785365,1.6397,7.477428 +L 1.6397,7.477428,1.6222,9.000075 +L 2.8725,8.466214,4.428,8.466214 +L 4.428,8.466214,5.9831,8.466214 +L 5.9831,8.466214,7.5382,8.466214 + +[嚇] 57 +L 1.6207,0,2.6154,1.960585 +L 2.6154,1.960585,2.9029,3.582023 +L 2.9029,3.582023,2.9029,5.796667 +L 2.9029,5.796667,2.4753,5.796667 +L 2.4753,5.796667,2.0518,5.796667 +L 2.0518,5.796667,1.6207,5.796667 +L 1.6207,5.796667,1.9079,3.549472 +L 1.9079,3.549472,1.9079,2.590435 +L 1.9079,2.590435,1.6207,2.097487 +L 2.9029,0,3.1793,0 +L 3.1793,0,3.463,0 +L 3.463,0,3.761,0 +L 3.761,0,3.6066,2.28813 +L 3.6066,2.28813,3.463,4.576325 +L 3.463,4.576325,3.3302,6.864499 +L 3.3302,6.864499,3.0357,7.053718 +L 3.0357,7.053718,2.752,7.234489 +L 2.752,7.234489,2.4753,7.398382 +L 4.6118,0,5.3403,1.91803 +L 5.3403,1.91803,5.4807,3.726017 +L 5.4807,3.726017,5.4352,5.796667 +L 5.4352,5.796667,5.0079,5.796667 +L 5.0079,5.796667,4.5911,5.796667 +L 4.5911,5.796667,4.1848,5.796667 +L 5.4352,0,5.7115,0 +L 5.7115,0,5.9952,0 +L 5.9952,0,6.2863,0 +L 6.2863,0,6.1388,2.28813 +L 6.1388,2.28813,5.9952,4.576325 +L 5.9952,4.576325,5.866,6.864499 +L 5.866,6.864499,5.5679,7.053718 +L 5.5679,7.053718,5.2842,7.234489 +L 5.2842,7.234489,5.0079,7.398382 +L 4.6118,2.097487,4.6118,2.820634 +L 4.6118,2.820634,4.6118,3.535353 +L 4.6118,3.535353,4.6118,4.233107 +L 7.5748,2.097487,7.4176,2.820634 +L 7.4176,2.820634,7.2775,3.535353 +L 7.2775,3.535353,7.144,4.233107 +L 0.3703,3.699114,0.3703,5.110121 +L 0.3703,5.110121,0.3703,6.521215 +L 0.3703,6.521215,0.3703,7.932222 +L 0.3703,7.932222,0.7804,7.932222 +L 0.7804,7.932222,1.1934,7.932222 +L 1.1934,7.932222,1.6207,7.932222 +L 1.6207,7.932222,1.6207,7.398382 +L 1.6207,7.398382,1.6207,6.864499 +L 1.6207,6.864499,1.6207,6.330418 +L 6.7167,5.796667,6.9938,5.796667 +L 6.9938,5.796667,7.2775,5.796667 +L 7.2775,5.796667,7.5748,5.796667 +L 3.761,7.398382,3.4563,7.813554 +L 3.4563,7.813554,3.3477,8.228879 +L 3.3477,8.228879,3.3302,9.000075 +L 6.2863,7.398382,5.9917,7.813554 +L 5.9917,7.813554,5.88,8.228879 +L 5.88,8.228879,5.866,9.000075 + +[核] 42 +L 1.6545,0,1.5705,1.600358 +L 1.5705,1.600358,1.5036,3.192178 +L 1.5036,3.192178,1.437,4.767077 +L 1.437,4.767077,1.0728,4.069346 +L 1.0728,4.069346,0.7194,3.354582 +L 0.7194,3.354582,0.3726,2.631436 +L 3.542,0,4.7434,1.411028 +L 4.7434,1.411028,5.9591,2.822079 +L 5.9591,2.822079,7.1744,4.233107 +L 7.5698,0,7.146,0.532526 +L 7.146,0.532526,6.7257,1.056493 +L 6.7257,1.056493,6.3233,1.563626 +L 3.3599,2.097487,3.9133,2.631436 +L 3.9133,2.631436,4.467,3.165275 +L 4.467,3.165275,5.0376,3.699114 +L 5.0376,3.699114,4.467,4.412454 +L 4.467,4.412454,3.9133,5.108829 +L 3.9133,5.108829,3.3599,5.796667 +L 2.9326,4.233107,2.162,5.04237 +L 2.162,5.04237,1.7141,5.724582 +L 1.7141,5.724582,1.2237,6.864499 +L 1.2237,6.864499,0.9292,6.864499 +L 0.9292,6.864499,0.6455,6.864499 +L 0.6455,6.864499,0.3726,6.864499 +L 5.4649,4.233107,5.7419,4.765524 +L 5.7419,4.765524,6.0256,5.289599 +L 6.0256,5.289599,6.3233,5.796667 +L 4.6138,5.796667,4.9083,6.211882 +L 4.9083,6.211882,5.02,6.627186 +L 5.02,6.627186,5.0376,7.398382 +L 5.0376,7.398382,3.7175,7.259925 +L 3.7175,7.259925,2.852,7.002955 +L 2.852,7.002955,2.0783,6.864499 +L 2.0783,6.864499,1.7803,7.299591 +L 1.7803,7.299591,1.6685,7.853109 +L 1.6685,7.853109,1.6545,9.000075 +L 5.4649,7.398382,5.4649,7.932222 +L 5.4649,7.932222,5.4649,8.466214 +L 5.4649,8.466214,5.4649,9.000075 +L 5.8922,7.398382,6.4459,7.398382 +L 6.4459,7.398382,6.9993,7.398382 +L 6.9993,7.398382,7.5698,7.398382 + +[獲] 72 +L 0.4023,0,1.0328,0.038242 +L 1.0328,0.038242,1.4674,0.305107 +L 1.4674,0.305107,2.0768,1.029721 +L 2.0768,1.029721,1.9998,2.467543 +L 1.9998,2.467543,1.9294,3.888466 +L 1.9294,3.888466,1.8663,5.300938 +L 1.8663,5.300938,1.376,4.603097 +L 1.376,4.603097,0.8892,3.888466 +L 0.8892,3.888466,0.4023,3.165275 +L 2.9346,0,4.1499,0.019811 +L 4.1499,0.019811,4.7072,0.158245 +L 4.7072,0.158245,5.0714,0.533992 +L 5.0714,0.533992,4.4371,1.456276 +L 4.4371,1.456276,3.9923,1.861597 +L 3.9923,1.861597,3.3619,2.097487 +L 6.318,0,6.0451,0.189242 +L 6.0451,0.189242,5.7716,0.3701 +L 5.7716,0.3701,5.4952,0.533992 +L 6.7491,0,7.0254,0 +L 7.0254,0,7.3056,0 +L 7.3056,0,7.6037,0 +L 6.318,1.029721,6.4514,1.296608 +L 6.4514,1.296608,6.5981,1.563626 +L 6.5981,1.563626,6.7491,1.8306 +L 6.7491,1.8306,6.0451,1.933682 +L 6.0451,1.933682,5.3443,2.01982 +L 5.3443,2.01982,4.6441,2.097487 +L 3.7857,3.165275,3.7682,5.036766 +L 3.7682,5.036766,3.6631,5.857413 +L 3.6631,5.857413,3.3619,6.330418 +L 3.3619,6.330418,3.2116,6.166788 +L 3.2116,6.166788,3.068,5.985909 +L 3.068,5.985909,2.9346,5.796667 +L 4.2165,3.165275,4.6441,3.268422 +L 4.6441,3.268422,5.0714,3.354582 +L 5.0714,3.354582,5.4952,3.432359 +L 5.4952,3.432359,5.1656,3.995772 +L 5.1656,3.995772,4.8333,4.203423 +L 4.8333,4.203423,4.2165,4.233107 +L 5.898,3.165275,6.318,3.165275 +L 6.318,3.165275,6.7491,3.165275 +L 6.7491,3.165275,7.1726,3.165275 +L 5.898,4.233107,5.2812,4.984536 +L 5.2812,4.984536,4.8473,5.261317 +L 4.8473,5.261317,4.2165,5.300938 +L 5.898,5.300938,4.8784,6.440615 +L 4.8784,6.440615,3.7612,7.478872 +L 3.7612,7.478872,2.9346,7.932222 +L 1.6807,5.796667,1.6667,6.567863 +L 1.6667,6.567863,1.555,6.983122 +L 1.555,6.983122,1.2569,7.398382 +L 1.2569,7.398382,0.9596,7.053718 +L 0.9596,7.053718,0.6794,6.70054 +L 0.6794,6.70054,0.4023,6.330418 +L 5.898,6.330418,5.3233,7.234489 +L 5.3233,7.234489,4.7629,8.121507 +L 4.7629,8.121507,4.2165,9.000075 +L 6.318,6.330418,6.5981,6.330418 +L 6.5981,6.330418,6.8787,6.330418 +L 6.8787,6.330418,7.1726,6.330418 +L 1.2569,7.932222,0.9596,8.302299 +L 0.9596,8.302299,0.6794,8.65539 +L 0.6794,8.65539,0.4023,9.000075 +L 1.6807,7.932222,1.9609,8.302299 +L 1.9609,8.302299,2.2306,8.65539 +L 2.2306,8.65539,2.5073,9.000075 +L 6.318,7.932222,6.1677,8.302299 +L 6.1677,8.302299,6.0241,8.65539 +L 6.0241,8.65539,5.898,9.000075 +L 6.7491,7.932222,7.0254,7.932222 +L 7.0254,7.932222,7.3056,7.932222 +L 7.3056,7.932222,7.6037,7.932222 + +[穫] 66 +L 1.2554,0,1.1713,1.411028 +L 1.1713,1.411028,1.1052,2.822079 +L 1.1052,2.822079,1.0421,4.233107 +L 1.0421,4.233107,0.8316,3.888466 +L 0.8316,3.888466,0.625,3.535353 +L 0.625,3.535353,0.4288,3.165275 +L 2.5412,0,3.7565,0.019811 +L 3.7565,0.019811,4.2994,0.158245 +L 4.2994,0.158245,4.6461,0.533992 +L 4.6461,0.533992,4.0293,1.456276 +L 4.0293,1.456276,3.5954,1.861597 +L 3.5954,1.861597,2.965,2.097487 +L 5.9245,0,5.6265,0.189242 +L 5.6265,0.189242,5.3463,0.3701 +L 5.3463,0.3701,5.0661,0.533992 +L 6.355,0,6.7756,0 +L 6.7756,0,7.2061,0 +L 7.2061,0,7.6334,0 +L 6.1378,1.029721,6.355,1.296608 +L 6.355,1.296608,6.5651,1.563626 +L 6.5651,1.563626,6.7756,1.8306 +L 6.7756,1.8306,5.9245,1.933682 +L 5.9245,1.933682,5.0801,2.01982 +L 5.0801,2.01982,4.2469,2.097487 +L 3.8196,3.165275,3.8052,5.036766 +L 3.8052,5.036766,3.6935,5.857413 +L 3.6935,5.857413,3.3923,6.330418 +L 3.3923,6.330418,3.0942,5.987354 +L 3.0942,5.987354,2.8105,5.644114 +L 2.8105,5.644114,2.5412,5.300938 +L 4.2469,3.165275,4.6528,3.268422 +L 4.6528,3.268422,5.0734,3.354582 +L 5.0734,3.354582,5.4972,3.432359 +L 5.4972,3.432359,5.1676,3.995772 +L 5.1676,3.995772,4.8419,4.203423 +L 4.8419,4.203423,4.2469,4.233107 +L 5.9245,3.165275,6.355,3.165275 +L 6.355,3.165275,6.7756,3.165275 +L 6.7756,3.165275,7.2061,3.165275 +L 2.11,4.233107,1.5745,4.895464 +L 1.5745,4.895464,1.0908,5.668127 +L 1.0908,5.668127,0.4288,6.330418 +L 5.9245,4.233107,5.2941,4.984536 +L 5.2941,4.984536,4.8559,5.261317 +L 4.8559,5.261317,4.2469,5.300938 +L 5.9245,5.300938,4.8703,6.474633 +L 4.8703,6.474633,3.774,7.495794 +L 3.774,7.495794,2.965,7.932222 +L 1.6827,6.330418,1.3815,6.745787 +L 1.3815,6.745787,1.2698,7.161069 +L 1.2698,7.161069,1.2554,7.932222 +L 1.2554,7.932222,0.9826,7.932222 +L 0.9826,7.932222,0.709,7.932222 +L 0.709,7.932222,0.4288,7.932222 +L 5.9245,6.330418,5.2482,7.192153 +L 5.2482,7.192153,4.6948,8.036769 +L 4.6948,8.036769,4.2469,9.000075 +L 6.355,6.330418,6.6247,6.330418 +L 6.6247,6.330418,6.9084,6.330418 +L 6.9084,6.330418,7.2061,6.330418 +L 6.355,7.932222,6.1974,8.302299 +L 6.1974,8.302299,6.0573,8.65539 +L 6.0573,8.65539,5.9245,9.000075 +L 6.7756,7.932222,7.0558,7.932222 +L 7.0558,7.932222,7.336,7.932222 +L 7.336,7.932222,7.6334,7.932222 + +[郭] 51 +L 1.2893,0,1.7131,0 +L 1.7131,0,2.1404,0 +L 2.1404,0,2.5673,0 +L 2.5673,0,2.5673,0.713428 +L 2.5673,0.713428,2.5673,1.409627 +L 2.5673,1.409627,2.5673,2.097487 +L 2.5673,2.097487,1.8423,2.097487 +L 1.8423,2.097487,1.1348,2.097487 +L 1.1348,2.097487,0.4347,2.097487 +L 5.5234,0,5.5234,2.822079 +L 5.5234,2.822079,5.5234,5.644114 +L 5.5234,5.644114,5.5234,8.466214 +L 5.5234,8.466214,6.0768,8.466214 +L 6.0768,8.466214,6.634,8.466214 +L 6.634,8.466214,7.2046,8.466214 +L 7.2046,8.466214,6.8126,5.789574 +L 6.8126,5.789574,7.2711,4.316422 +L 7.2711,4.316422,7.6284,2.097487 +L 7.6284,2.097487,7.303,1.721805 +L 7.303,1.721805,6.9773,1.583371 +L 6.9773,1.583371,6.3815,1.563626 +L 2.7495,2.631436,2.9635,3.08763 +L 2.9635,3.08763,3.1803,3.535353 +L 3.1803,3.535353,3.3943,3.966133 +L 3.3943,3.966133,2.5397,4.069346 +L 2.5397,4.069346,1.6921,4.155418 +L 1.6921,4.155418,0.8585,4.233107 +L 3.3943,2.631436,3.6671,2.631436 +L 3.6671,2.631436,3.9473,2.631436 +L 3.9473,2.631436,4.2453,2.631436 +L 1.2893,5.796667,1.2893,6.166788 +L 1.2893,6.166788,1.2893,6.519749 +L 1.2893,6.519749,1.2893,6.864499 +L 1.2893,6.864499,2.1194,6.864499 +L 2.1194,6.864499,2.9635,6.864499 +L 2.9635,6.864499,3.818,6.864499 +L 3.818,6.864499,3.818,6.519749 +L 3.818,6.519749,3.818,6.166788 +L 3.818,6.166788,3.818,5.796667 +L 3.818,5.796667,2.9635,5.796667 +L 2.9635,5.796667,2.1194,5.796667 +L 2.1194,5.796667,1.2893,5.796667 +L 0.4347,7.932222,1.1348,7.932222 +L 1.1348,7.932222,1.8423,7.932222 +L 1.8423,7.932222,2.5673,7.932222 +L 2.5673,7.932222,2.5673,8.302299 +L 2.5673,8.302299,2.5673,8.65539 +L 2.5673,8.65539,2.5673,9.000075 +L 2.9635,7.932222,3.5235,7.932222 +L 3.5235,7.932222,4.0944,7.932222 +L 4.0944,7.932222,4.6723,7.932222 + +[隔] 54 +L 0.4612,0,0.4612,2.822079 +L 0.4612,2.822079,0.4612,5.644114 +L 0.4612,5.644114,0.4612,8.466214 +L 0.4612,8.466214,1.0107,8.466214 +L 1.0107,8.466214,1.5715,8.466214 +L 1.5715,8.466214,2.142,8.466214 +L 2.142,8.466214,1.7081,6.131392 +L 1.7081,6.131392,1.9249,4.762765 +L 1.9249,4.762765,2.142,2.631436 +L 2.142,2.631436,1.8653,2.467543 +L 1.8653,2.467543,1.5925,2.286685 +L 1.5925,2.286685,1.3154,2.097487 +L 3.4239,0,3.4239,1.600358 +L 3.4239,1.600358,3.4239,3.192178 +L 3.4239,3.192178,3.4239,4.767077 +L 3.4239,4.767077,4.6813,4.767077 +L 4.6813,4.767077,5.9527,4.767077 +L 5.9527,4.767077,7.2349,4.767077 +L 7.2349,4.767077,7.2349,3.192178 +L 7.2349,3.192178,7.2349,1.600358 +L 7.2349,1.600358,7.2349,0 +L 7.2349,0,6.9372,0 +L 6.9372,0,6.6567,0 +L 6.6567,0,6.3835,0 +L 5.13,0.533992,5.13,1.066431 +L 5.13,1.066431,5.13,1.590376 +L 5.13,1.590376,5.13,2.097487 +L 5.13,2.097487,4.8323,2.097487 +L 4.8323,2.097487,4.5517,2.097487 +L 4.5517,2.097487,4.275,2.097487 +L 5.5289,2.097487,5.8059,2.097487 +L 5.8059,2.097487,6.0861,2.097487 +L 6.0861,2.097487,6.3835,2.097487 +L 4.0652,3.165275,4.275,3.535353 +L 4.275,3.535353,4.489,3.888466 +L 4.489,3.888466,4.7023,4.233107 +L 5.9527,3.165275,5.9527,3.535353 +L 5.9527,3.535353,5.9527,3.888466 +L 5.9527,3.888466,5.9527,4.233107 +L 3.8512,6.330418,3.8512,6.70054 +L 3.8512,6.70054,3.8512,7.053718 +L 3.8512,7.053718,3.8512,7.398382 +L 3.8512,7.398382,4.8253,7.398382 +L 4.8253,7.398382,5.8126,7.398382 +L 5.8126,7.398382,6.8073,7.398382 +L 6.8073,7.398382,6.8073,7.053718 +L 6.8073,7.053718,6.8073,6.70054 +L 6.8073,6.70054,6.8073,6.330418 +L 6.8073,6.330418,5.8126,6.330418 +L 5.8126,6.330418,4.8253,6.330418 +L 4.8253,6.330418,3.8512,6.330418 +L 2.9966,8.466214,4.5517,8.466214 +L 4.5517,8.466214,6.1072,8.466214 +L 6.1072,8.466214,7.6622,8.466214 + +[岳] 42 +L 1.3139,0,1.3139,0.713428 +L 1.3139,0.713428,1.3139,1.409627 +L 1.3139,1.409627,1.3139,2.097487 +L 1.7447,0,2.4487,0 +L 2.4487,0,3.1597,0 +L 3.1597,0,3.8816,0 +L 3.8816,0,3.8816,1.247201 +L 3.8816,1.247201,3.8816,2.477438 +L 3.8816,2.477438,3.8816,3.699114 +L 3.8816,3.699114,2.7293,3.699114 +L 2.7293,3.699114,1.591,3.699114 +L 1.591,3.699114,0.4628,3.699114 +L 4.277,0,4.9775,0 +L 4.9775,0,5.6885,0 +L 5.6885,0,6.4135,0 +L 6.4135,0,6.4135,0.713428 +L 6.4135,0.713428,6.4135,1.409627 +L 6.4135,1.409627,6.4135,2.097487 +L 4.277,3.699114,4.5537,3.699114 +L 4.5537,3.699114,4.8343,3.699114 +L 4.8343,3.699114,5.1355,3.699114 +L 5.1355,3.699114,5.1355,4.576325 +L 5.1355,4.576325,5.1355,5.453361 +L 5.1355,5.453361,5.1355,6.330418 +L 5.1355,6.330418,4.0007,6.330418 +L 4.0007,6.330418,2.8725,6.330418 +L 2.8725,6.330418,1.7447,6.330418 +L 1.7447,6.330418,1.7447,5.6428 +L 1.7447,5.6428,1.7447,4.946381 +L 1.7447,4.946381,1.7447,4.233107 +L 5.5558,3.699114,6.1158,3.699114 +L 6.1158,3.699114,6.6867,3.699114 +L 6.6867,3.699114,7.2646,3.699114 +L 5.5558,6.330418,5.9866,6.330418 +L 5.9866,6.330418,6.4135,6.330418 +L 6.4135,6.330418,6.8408,6.330418 +L 1.7447,6.864499,1.7447,7.234489 +L 1.7447,7.234489,1.7447,7.587667 +L 1.7447,7.587667,1.7447,7.932222 +L 1.7447,7.932222,3.4123,8.070765 +L 3.4123,8.070765,4.6031,8.327714 +L 4.6031,8.327714,5.9866,8.466214 + +[掛] 54 +L 0.4929,0,0.7696,0 +L 0.7696,0,1.0533,0 +L 1.0533,0,1.3478,0 +L 1.3478,0,1.3478,1.247201 +L 1.3478,1.247201,1.3478,2.477438 +L 1.3478,2.477438,1.3478,3.699114 +L 1.3478,3.699114,1.0533,3.699114 +L 1.0533,3.699114,0.7696,3.699114 +L 0.7696,3.699114,0.4929,3.699114 +L 6.4089,0,6.4089,3.011321 +L 6.4089,3.011321,6.4089,6.014191 +L 6.4089,6.014191,6.4089,9.000075 +L 2.5978,0.533992,3.0255,0.533992 +L 3.0255,0.533992,3.4528,0.533992 +L 3.4528,0.533992,3.8832,0.533992 +L 3.8832,0.533992,3.8832,1.066431 +L 3.8832,1.066431,3.8832,1.590376 +L 3.8832,1.590376,3.8832,2.097487 +L 3.8832,2.097487,3.5855,2.286685 +L 3.5855,2.286685,3.3018,2.467543 +L 3.3018,2.467543,3.0255,2.631436 +L 4.3039,0.533992,4.5841,0.713428 +L 4.5841,0.713428,4.8639,0.875722 +L 4.8639,0.875722,5.1616,1.029721 +L 4.3039,2.631436,4.0093,3.04663 +L 4.0093,3.04663,3.8976,3.461933 +L 3.8976,3.461933,3.8832,4.233107 +L 7.6939,3.966133,7.4001,4.576325 +L 7.4001,4.576325,7.1164,5.186496 +L 7.1164,5.186496,6.8393,5.796667 +L 1.3478,4.233107,1.3478,4.946381 +L 1.3478,4.946381,1.3478,5.6428 +L 1.3478,5.6428,1.3478,6.330418 +L 1.3478,6.330418,1.0533,6.519749 +L 1.0533,6.519749,0.7696,6.70054 +L 0.7696,6.70054,0.4929,6.864499 +L 2.5978,5.300938,3.0255,5.300938 +L 3.0255,5.300938,3.4528,5.300938 +L 3.4528,5.300938,3.8832,5.300938 +L 3.8832,5.300938,3.8832,5.833377 +L 3.8832,5.833377,3.8832,6.357409 +L 3.8832,6.357409,3.8832,6.864499 +L 3.8832,6.864499,3.5855,7.053718 +L 3.5855,7.053718,3.3018,7.234489 +L 3.3018,7.234489,3.0255,7.398382 +L 4.3039,5.300938,4.5841,5.300938 +L 4.5841,5.300938,4.8639,5.300938 +L 4.8639,5.300938,5.1616,5.300938 +L 1.7783,6.864499,1.4739,7.299591 +L 1.4739,7.299591,1.3653,7.853109 +L 1.3653,7.853109,1.3478,9.000075 +L 4.3039,7.398382,4.0093,7.813554 +L 4.0093,7.813554,3.8976,8.228879 +L 3.8976,8.228879,3.8832,9.000075 + +[潟] 54 +L 0.5264,0,0.7369,1.546573 +L 0.7369,1.546573,1.1358,2.915309 +L 1.1358,2.915309,1.3463,4.233107 +L 5.5874,0,6.2214,0.038242 +L 6.2214,0.038242,6.6662,0.305107 +L 6.6662,0.305107,7.297,1.029721 +L 7.297,1.029721,7.1219,1.800895 +L 7.1219,1.800895,6.9044,2.216132 +L 6.9044,2.216132,6.442,2.631436 +L 2.6314,0.533992,2.9326,0.922305 +L 2.9326,0.922305,3.0376,1.327714 +L 3.0376,1.327714,3.0552,2.097487 +L 3.0552,2.097487,2.7613,2.286685 +L 2.7613,2.286685,2.4776,2.467543 +L 2.4776,2.467543,2.2009,2.631436 +L 4.3409,1.029721,4.3234,1.800895 +L 4.3234,1.800895,4.2145,2.216132 +L 4.2145,2.216132,3.9098,2.631436 +L 5.5874,1.8306,5.4372,2.097487 +L 5.4372,2.097487,5.2936,2.364439 +L 5.2936,2.364439,5.1636,2.631436 +L 7.297,2.631436,7.297,3.001492 +L 7.297,3.001492,7.297,3.354582 +L 7.297,3.354582,7.297,3.699114 +L 7.297,3.699114,4.5962,3.679413 +L 4.5962,3.679413,3.5,3.541044 +L 3.5,3.541044,3.0552,3.165275 +L 3.9098,4.233107,3.9098,4.603097 +L 3.9098,4.603097,3.9098,4.956297 +L 3.9098,4.956297,3.9098,5.300938 +L 3.9098,5.300938,3.6124,5.300938 +L 3.6124,5.300938,3.3322,5.300938 +L 3.3322,5.300938,3.0552,5.300938 +L 3.0552,5.300938,3.1182,6.177975 +L 3.1182,6.177975,3.1848,7.055163 +L 3.1848,7.055163,3.2692,7.932222 +L 3.2692,7.932222,3.7595,8.302299 +L 3.7595,8.302299,4.2565,8.65539 +L 4.2565,8.65539,4.7609,9.000075 +L 4.3409,5.300938,5.171,5.300938 +L 5.171,5.300938,6.0147,5.300938 +L 6.0147,5.300938,6.8732,5.300938 +L 6.8732,5.300938,6.8732,5.833377 +L 6.8732,5.833377,6.8732,6.357409 +L 6.8732,6.357409,6.8732,6.864499 +L 6.8732,6.864499,6.442,6.864499 +L 6.442,6.864499,6.0147,6.864499 +L 6.0147,6.864499,5.5874,6.864499 +L 3.4825,6.864499,3.7595,6.864499 +L 3.7595,6.864499,4.0432,6.864499 +L 4.0432,6.864499,4.3409,6.864499 +L 6.8732,7.665335,6.442,7.768438 +L 6.442,7.768438,6.0147,7.854554 +L 6.0147,7.854554,5.5874,7.932222 + +[喝] 51 +L 5.6213,0,5.8941,0 +L 5.8941,0,6.1743,0 +L 6.1743,0,6.4724,0 +L 6.4724,0,7.1025,1.4195 +L 7.1025,1.4195,7.3091,2.661097 +L 7.3091,2.661097,7.3302,4.233107 +L 7.3302,4.233107,6.1743,4.233107 +L 6.1743,4.233107,5.0431,4.233107 +L 5.0431,4.233107,3.9156,4.233107 +L 3.9156,4.233107,3.9156,3.699114 +L 3.9156,3.699114,3.9156,3.165275 +L 3.9156,3.165275,3.9156,2.631436 +L 3.9156,2.631436,4.469,2.820634 +L 4.469,2.820634,5.0431,3.001492 +L 5.0431,3.001492,5.6213,3.165275 +L 4.3356,1.029721,4.1853,1.399689 +L 4.1853,1.399689,4.0417,1.752911 +L 4.0417,1.752911,3.9156,2.097487 +L 4.7667,1.029721,5.1905,1.029721 +L 5.1905,1.029721,5.6213,1.029721 +L 5.6213,1.029721,6.0451,1.029721 +L 6.0451,1.029721,6.0451,1.399689 +L 6.0451,1.399689,6.0451,1.752911 +L 6.0451,1.752911,6.0451,2.097487 +L 0.5249,2.631436,0.5249,4.412454 +L 0.5249,4.412454,0.5249,6.176574 +L 0.5249,6.176574,0.5249,7.932222 +L 0.5249,7.932222,1.0856,7.932222 +L 1.0856,7.932222,1.653,7.932222 +L 1.653,7.932222,2.2344,7.932222 +L 2.2344,7.932222,2.2344,6.176574 +L 2.2344,6.176574,2.2344,4.412454 +L 2.2344,4.412454,2.2344,2.631436 +L 2.2344,2.631436,1.653,2.631436 +L 1.653,2.631436,1.0856,2.631436 +L 1.0856,2.631436,0.5249,2.631436 +L 4.3356,4.767077,4.1853,6.014191 +L 4.1853,6.014191,4.0417,7.244383 +L 4.0417,7.244383,3.9156,8.466214 +L 3.9156,8.466214,4.8959,8.466214 +L 4.8959,8.466214,5.8941,8.466214 +L 5.8941,8.466214,6.8997,8.466214 +L 6.8997,8.466214,6.8997,7.587667 +L 6.8997,7.587667,6.8997,6.70054 +L 6.8997,6.70054,6.8997,5.796667 +L 6.8997,5.796667,6.1743,5.796667 +L 6.1743,5.796667,5.4668,5.796667 +L 5.4668,5.796667,4.7667,5.796667 +L 4.3356,7.398382,5.0431,7.398382 +L 5.0431,7.398382,5.7505,7.398382 +L 5.7505,7.398382,6.4724,7.398382 + +[括] 45 +L 0.9826,0,1.2589,0 +L 1.2589,0,1.5426,0 +L 1.5426,0,1.8372,0 +L 1.8372,0,1.8228,2.622898 +L 1.8228,2.622898,1.7111,3.720458 +L 1.7111,3.720458,1.4099,4.233107 +L 1.4099,4.233107,1.1118,4.069346 +L 1.1118,4.069346,0.8281,3.888466 +L 0.8281,3.888466,0.5588,3.699114 +L 3.9421,0,3.9421,1.066431 +L 3.9421,1.066431,3.9421,2.124346 +L 3.9421,2.124346,3.9421,3.165275 +L 3.9421,3.165275,4.4987,3.165275 +L 4.4987,3.165275,5.0734,3.165275 +L 5.0734,3.165275,5.651,3.165275 +L 5.651,3.165275,5.4937,5.237304 +L 5.4937,5.237304,4.8703,5.809341 +L 4.8703,5.809341,3.5148,5.796667 +L 4.3726,0,5.3463,0 +L 5.3463,0,6.334,0 +L 6.334,0,7.3287,0 +L 7.3287,0,7.3287,1.066431 +L 7.3287,1.066431,7.3287,2.124346 +L 7.3287,2.124346,7.3287,3.165275 +L 7.3287,3.165275,6.8982,3.165275 +L 6.8982,3.165275,6.4744,3.165275 +L 6.4744,3.165275,6.0471,3.165275 +L 2.2326,4.233107,1.7286,5.525468 +L 1.7286,5.525468,1.5251,6.487395 +L 1.5251,6.487395,0.5588,6.864499 +L 6.0471,5.796667,5.7701,6.231628 +L 5.7701,6.231628,5.665,6.785365 +L 5.665,6.785365,5.651,7.932222 +L 5.651,7.932222,4.926,7.932222 +L 4.926,7.932222,4.215,7.932222 +L 4.215,7.932222,3.5148,7.932222 +L 6.4744,5.796667,6.8982,5.796667 +L 6.8982,5.796667,7.3287,5.796667 +L 7.3287,5.796667,7.7559,5.796667 +L 2.2326,6.864499,1.9527,7.299591 +L 1.9527,7.299591,1.8512,7.853109 +L 1.8512,7.853109,1.8372,9.000075 +L 6.0471,7.932222,6.3795,8.307968 +L 6.3795,8.307968,6.7126,8.446381 +L 6.7126,8.446381,7.3287,8.466214 + +[渇] 48 +L 0.5849,0.266996,0.9912,1.411028 +L 0.9912,1.411028,1.4119,2.555126 +L 1.4119,2.555126,1.8357,3.699114 +L 5.653,0,5.9265,0 +L 5.9265,0,6.2067,0 +L 6.2067,0,6.5041,0 +L 6.5041,0,7.1349,1.4195 +L 7.1349,1.4195,7.3415,2.661097 +L 7.3415,2.661097,7.3625,4.233107 +L 7.3625,4.233107,6.0806,4.233107 +L 6.0806,4.233107,4.8019,4.233107 +L 4.8019,4.233107,3.541,4.233107 +L 3.541,4.233107,3.541,3.699114 +L 3.541,3.699114,3.541,3.165275 +L 3.541,3.165275,3.541,2.631436 +L 3.541,2.631436,4.0944,2.820634 +L 4.0944,2.820634,4.6516,3.001492 +L 4.6516,3.001492,5.2222,3.165275 +L 3.9718,1.029721,3.8215,1.399689 +L 3.8215,1.399689,3.6744,1.752911 +L 3.6744,1.752911,3.541,2.097487 +L 4.3991,1.029721,4.9528,1.029721 +L 4.9528,1.029721,5.5059,1.029721 +L 5.5059,1.029721,6.0768,1.029721 +L 6.0768,1.029721,6.0768,1.399689 +L 6.0768,1.399689,6.0768,1.752911 +L 6.0768,1.752911,6.0768,2.097487 +L 3.9718,4.767077,3.8215,6.014191 +L 3.8215,6.014191,3.6744,7.244383 +L 3.6744,7.244383,3.541,8.466214 +L 3.541,8.466214,4.6726,8.466214 +L 4.6726,8.466214,5.8039,8.466214 +L 5.8039,8.466214,6.9317,8.466214 +L 6.9317,8.466214,6.9317,7.587667 +L 6.9317,7.587667,6.9317,6.70054 +L 6.9317,6.70054,6.9317,5.796667 +L 6.9317,5.796667,6.0806,5.796667 +L 6.0806,5.796667,5.233,5.796667 +L 5.233,5.796667,4.3991,5.796667 +L 1.4119,5.796667,1.1313,6.166788 +L 1.1313,6.166788,0.862,6.519749 +L 0.862,6.519749,0.5849,6.864499 +L 3.9718,7.398382,4.8019,7.398382 +L 4.8019,7.398382,5.653,7.398382 +L 5.653,7.398382,6.5041,7.398382 +L 1.8357,7.932222,1.5411,8.302299 +L 1.5411,8.302299,1.2574,8.65539 +L 1.2574,8.65539,0.9811,9.000075 + +[滑] 60 +L 0.5838,0.266996,1.0142,1.411028 +L 1.0142,1.411028,1.4415,2.555126 +L 1.4415,2.555126,1.8688,3.699114 +L 3.5465,0,3.5465,1.411028 +L 3.5465,1.411028,3.5465,2.822079 +L 3.5465,2.822079,3.5465,4.233107 +L 3.5465,4.233107,4.531,4.233107 +L 4.531,4.233107,5.5289,4.233107 +L 5.5289,4.233107,6.5344,4.233107 +L 6.5344,4.233107,6.5344,2.822079 +L 6.5344,2.822079,6.5344,1.411028 +L 6.5344,1.411028,6.5344,0 +L 6.5344,0,6.1103,0 +L 6.1103,0,5.6798,0 +L 5.6798,0,5.2525,0 +L 3.9703,2.097487,4.6743,2.097487 +L 4.6743,2.097487,5.3853,2.097487 +L 5.3853,2.097487,6.1103,2.097487 +L 3.9703,3.165275,4.6743,3.165275 +L 4.6743,3.165275,5.3853,3.165275 +L 5.3853,3.165275,6.1103,3.165275 +L 2.7203,4.767077,2.7203,5.110121 +L 2.7203,5.110121,2.7203,5.453361 +L 2.7203,5.453361,2.7203,5.796667 +L 2.7203,5.796667,2.9966,5.796667 +L 2.9966,5.796667,3.2702,5.796667 +L 3.2702,5.796667,3.5465,5.796667 +L 3.5465,5.796667,3.5465,6.70054 +L 3.5465,6.70054,3.5465,7.587667 +L 3.5465,7.587667,3.5465,8.466214 +L 3.5465,8.466214,4.531,8.466214 +L 4.531,8.466214,5.5289,8.466214 +L 5.5289,8.466214,6.5344,8.466214 +L 6.5344,8.466214,6.5344,7.587667 +L 6.5344,7.587667,6.5344,6.70054 +L 6.5344,6.70054,6.5344,5.796667 +L 6.5344,5.796667,6.9404,5.796667 +L 6.9404,5.796667,7.361,5.796667 +L 7.361,5.796667,7.7848,5.796667 +L 7.7848,5.796667,7.7848,5.453361 +L 7.7848,5.453361,7.7848,5.110121 +L 7.7848,5.110121,7.7848,4.767077 +L 1.4415,5.796667,1.1403,6.166788 +L 1.1403,6.166788,0.8605,6.519749 +L 0.8605,6.519749,0.5838,6.864499 +L 3.9703,5.796667,4.2473,5.796667 +L 4.2473,5.796667,4.531,5.796667 +L 4.531,5.796667,4.8249,5.796667 +L 4.8249,5.796667,4.8249,6.330418 +L 4.8249,6.330418,4.8249,6.864499 +L 4.8249,6.864499,4.8249,7.398382 +L 4.8249,7.398382,5.2525,7.398382 +L 5.2525,7.398382,5.6798,7.398382 +L 5.6798,7.398382,6.1103,7.398382 +L 5.2525,5.796667,5.5289,5.796667 +L 5.5289,5.796667,5.8126,5.796667 +L 5.8126,5.796667,6.1103,5.796667 +L 1.8688,7.932222,1.5715,8.302299 +L 1.5715,8.302299,1.2913,8.65539 +L 1.2913,8.65539,1.0142,9.000075 + +[褐] 54 +L 1.4719,0,1.4544,2.622898 +L 1.4544,2.622898,1.3458,3.720458 +L 1.3458,3.720458,1.0446,4.233107 +L 1.0446,4.233107,0.8901,4.069346 +L 0.8901,4.069346,0.7465,3.888466 +L 0.7465,3.888466,0.6173,3.699114 +L 5.6783,0,7.086,0.707648 +L 7.086,0.707648,7.4261,2.356012 +L 7.4261,2.356012,7.3907,4.233107 +L 7.3907,4.233107,6.2633,4.233107 +L 6.2633,4.233107,5.132,4.233107 +L 5.132,4.233107,4.0042,4.233107 +L 4.0042,4.233107,4.0042,3.699114 +L 4.0042,3.699114,4.0042,3.165275 +L 4.0042,3.165275,4.0042,2.631436 +L 4.0042,2.631436,4.5537,2.820634 +L 4.5537,2.820634,5.1144,3.001492 +L 5.1144,3.001492,5.6783,3.165275 +L 4.4311,1.029721,4.2809,1.399689 +L 4.2809,1.399689,4.1334,1.752911 +L 4.1334,1.752911,4.0042,2.097487 +L 4.8584,1.029721,5.2647,1.029721 +L 5.2647,1.029721,5.6853,1.029721 +L 5.6853,1.029721,6.1091,1.029721 +L 6.1091,1.029721,6.1091,1.399689 +L 6.1091,1.399689,6.1091,1.752911 +L 6.1091,1.752911,6.1091,2.097487 +L 1.8638,4.233107,1.7237,4.422327 +L 1.7237,4.422327,1.5945,4.603097 +L 1.5945,4.603097,1.4719,4.767077 +L 1.4719,4.767077,1.8782,5.566468 +L 1.8782,5.566468,2.2946,6.357409 +L 2.2946,6.357409,2.7223,7.131386 +L 2.7223,7.131386,2.0183,7.234489 +L 2.0183,7.234489,1.3174,7.320606 +L 1.3174,7.320606,0.6173,7.398382 +L 4.4311,4.767077,4.2809,6.014191 +L 4.2809,6.014191,4.1334,7.244383 +L 4.1334,7.244383,4.0042,8.466214 +L 4.0042,8.466214,4.981,8.466214 +L 4.981,8.466214,5.9655,8.466214 +L 5.9655,8.466214,6.9634,8.466214 +L 6.9634,8.466214,6.9634,7.587667 +L 6.9634,7.587667,6.9634,6.70054 +L 6.9634,6.70054,6.9634,5.796667 +L 6.9634,5.796667,6.2633,5.796667 +L 6.2633,5.796667,5.5628,5.796667 +L 5.5628,5.796667,4.8584,5.796667 +L 4.4311,7.398382,5.132,7.398382 +L 5.132,7.398382,5.8321,7.398382 +L 5.8321,7.398382,6.5361,7.398382 +L 1.4719,7.932222,1.4719,8.302299 +L 1.4719,8.302299,1.4719,8.65539 +L 1.4719,8.65539,1.4719,9.000075 + +[轄] 75 +L 1.9008,0,1.7467,1.151168 +L 1.7467,1.151168,1.3159,1.531009 +L 1.3159,1.531009,0.6158,1.563626 +L 4.4331,0,4.4331,0.877211 +L 4.4331,0.877211,4.4331,1.754268 +L 4.4331,1.754268,4.4331,2.631436 +L 4.4331,2.631436,5.2842,2.631436 +L 5.2842,2.631436,6.1427,2.631436 +L 6.1427,2.631436,6.9938,2.631436 +L 6.9938,2.631436,6.9938,1.754268 +L 6.9938,1.754268,6.9938,0.877211 +L 6.9938,0.877211,6.9938,0 +L 6.9938,0,6.1427,0 +L 6.1427,0,5.2842,0 +L 5.2842,0,4.4331,0 +L 2.3215,1.563626,2.0304,2.097487 +L 2.0304,2.097487,1.7467,2.631436 +L 1.7467,2.631436,1.4704,3.165275 +L 1.4704,3.165275,1.1723,3.165275 +L 1.1723,3.165275,0.8921,3.165275 +L 0.8921,3.165275,0.6158,3.165275 +L 0.6158,3.165275,0.6158,4.231662 +L 0.6158,4.231662,0.6158,5.289599 +L 0.6158,5.289599,0.6158,6.330418 +L 0.6158,6.330418,1.2319,6.360189 +L 1.2319,6.360189,1.5646,6.567863 +L 1.5646,6.567863,1.9008,7.131386 +L 1.9008,7.131386,1.5646,7.695018 +L 1.5646,7.695018,1.2319,7.902538 +L 1.2319,7.902538,0.6158,7.932222 +L 2.3215,3.165275,1.9008,3.699114 +L 1.9008,3.699114,1.4704,4.233107 +L 1.4704,4.233107,1.0431,4.767077 +L 2.9659,3.165275,3.029,3.699114 +L 3.029,3.699114,3.0952,4.233107 +L 3.0952,4.233107,3.1792,4.767077 +L 3.1792,4.767077,2.5597,4.796695 +L 2.5597,4.796695,2.2336,5.004259 +L 2.2336,5.004259,1.9008,5.567891 +L 1.9008,5.567891,2.2336,6.104576 +L 2.2336,6.104576,2.5597,6.302311 +L 2.5597,6.302311,3.1792,6.330418 +L 3.1792,6.330418,3.1792,5.987354 +L 3.1792,5.987354,3.1792,5.644114 +L 3.1792,5.644114,3.1792,5.300938 +L 4.0303,4.233107,4.5841,4.33621 +L 4.5841,4.33621,5.1406,4.422327 +L 5.1406,4.422327,5.7115,4.499994 +L 5.7115,4.499994,5.3791,5.063516 +L 5.3791,5.063516,5.046,5.271168 +L 5.046,5.271168,4.4331,5.300938 +L 6.1427,4.233107,6.5661,4.233107 +L 6.5661,4.233107,6.9938,4.233107 +L 6.9938,4.233107,7.4211,4.233107 +L 6.1427,5.300938,5.1861,6.22031 +L 5.1861,6.22031,4.3771,6.656847 +L 4.3771,6.656847,4.0303,7.932222 +L 4.0303,7.932222,4.5841,7.932222 +L 4.5841,7.932222,5.1406,7.932222 +L 5.1406,7.932222,5.7115,7.932222 +L 5.7115,7.932222,5.7115,8.302299 +L 5.7115,8.302299,5.7115,8.65539 +L 5.7115,8.65539,5.7115,9.000075 +L 6.1427,6.330418,6.4124,6.330418 +L 6.4124,6.330418,6.6961,6.330418 +L 6.6961,6.330418,6.9938,6.330418 +L 7.8484,6.864499,7.8484,7.234489 +L 7.8484,7.234489,7.8484,7.587667 +L 7.8484,7.587667,7.8484,7.932222 +L 7.8484,7.932222,7.2701,7.932222 +L 7.2701,7.932222,6.6961,7.932222 +L 6.6961,7.932222,6.1427,7.932222 +L 2.3215,7.932222,2.1744,8.302299 +L 2.1744,8.302299,2.0304,8.65539 +L 2.0304,8.65539,1.9008,9.000075 + +[且] 24 +L 0.649,0.533992,1.2097,0.533992 +L 1.2097,0.533992,1.7771,0.533992 +L 1.7771,0.533992,2.3585,0.533992 +L 2.3585,0.533992,2.3585,3.192178 +L 2.3585,3.192178,2.3585,5.833377 +L 2.3585,5.833377,2.3585,8.466214 +L 2.3585,8.466214,3.6194,8.466214 +L 3.6194,8.466214,4.8908,8.466214 +L 4.8908,8.466214,6.1692,8.466214 +L 6.1692,8.466214,6.1692,5.833377 +L 6.1692,5.833377,6.1692,3.192178 +L 6.1692,3.192178,6.1692,0.533992 +L 6.1692,0.533992,6.7187,0.533992 +L 6.7187,0.533992,7.276,0.533992 +L 7.276,0.533992,7.8469,0.533992 +L 2.7504,0.533992,3.735,0.533992 +L 3.735,0.533992,4.7363,0.533992 +L 4.7363,0.533992,5.7419,0.533992 +L 2.7504,3.165275,3.735,3.165275 +L 3.735,3.165275,4.7363,3.165275 +L 4.7363,3.165275,5.7419,3.165275 +L 2.7504,5.796667,3.735,5.796667 +L 3.735,5.796667,4.7363,5.796667 +L 4.7363,5.796667,5.7419,5.796667 + +[刈] 21 +L 6.1712,0,6.5981,0 +L 6.5981,0,7.0219,0 +L 7.0219,0,7.4527,0 +L 7.4527,0,7.4527,3.011321 +L 7.4527,3.011321,7.4527,6.014191 +L 7.4527,6.014191,7.4527,9.000075 +L 0.6793,0.533992,1.3795,1.867244 +L 1.3795,1.867244,2.0803,3.192178 +L 2.0803,3.192178,2.7843,4.499994 +L 2.7843,4.499994,2.2131,5.480242 +L 2.2131,5.480242,1.6565,6.443613 +L 1.6565,6.443613,1.1066,7.398382 +L 4.0627,1.8306,3.7682,2.631436 +L 3.7682,2.631436,3.4845,3.432359 +L 3.4845,3.432359,3.2081,4.233107 +L 5.3166,2.631436,5.3166,4.412454 +L 5.3166,4.412454,5.3166,6.176574 +L 5.3166,6.176574,5.3166,7.932222 +L 3.2081,5.300938,3.3198,6.2232 +L 3.3198,6.2232,3.5303,7.162492 +L 3.5303,7.162492,3.6389,8.466214 + +[乾] 54 +L 1.9597,0,1.8088,1.151168 +L 1.8088,1.151168,1.378,1.531009 +L 1.378,1.531009,0.6813,1.563626 +L 4.9225,0,4.7652,0.266996 +L 4.7652,0.266996,4.6212,0.533992 +L 4.6212,0.533992,4.4917,0.800879 +L 4.4917,0.800879,5.1925,2.211886 +L 5.1925,2.211886,5.9035,3.622936 +L 5.9035,3.622936,6.6285,5.033943 +L 6.6285,5.033943,5.9035,5.137068 +L 5.9035,5.137068,5.1925,5.223184 +L 5.1925,5.223184,4.4917,5.300938 +L 5.3463,0,6.6246,-0.035309 +L 6.6246,-0.035309,7.5318,0.276869 +L 7.5318,0.276869,7.8785,1.563626 +L 2.3902,1.563626,2.0855,1.978841 +L 2.0855,1.978841,1.9737,2.394101 +L 1.9737,2.394101,1.9597,3.165275 +L 1.9597,3.165275,1.5324,3.165275 +L 1.5324,3.165275,1.1016,3.165275 +L 1.1016,3.165275,0.6813,3.165275 +L 0.6813,3.165275,0.6813,4.231662 +L 0.6813,4.231662,0.6813,5.289599 +L 0.6813,5.289599,0.6813,6.330418 +L 0.6813,6.330418,1.1016,6.330418 +L 1.1016,6.330418,1.5324,6.330418 +L 1.5324,6.330418,1.9597,6.330418 +L 1.9597,6.330418,1.8088,7.525478 +L 1.8088,7.525478,1.378,7.906872 +L 1.378,7.906872,0.6813,7.932222 +L 2.3902,3.165275,2.6602,3.165275 +L 2.6602,3.165275,2.9474,3.165275 +L 2.9474,3.165275,3.2413,3.165275 +L 3.2413,3.165275,3.2413,3.699114 +L 3.2413,3.699114,3.2413,4.233107 +L 3.2413,4.233107,3.2413,4.767077 +L 3.2413,4.767077,2.5163,4.767077 +L 2.5163,4.767077,1.8088,4.767077 +L 1.8088,4.767077,1.1016,4.767077 +L 3.2413,5.300938,3.2413,5.644114 +L 3.2413,5.644114,3.2413,5.987354 +L 3.2413,5.987354,3.2413,6.330418 +L 3.2413,6.330418,2.9474,6.330418 +L 2.9474,6.330418,2.6602,6.330418 +L 2.6602,6.330418,2.3902,6.330418 +L 4.0647,6.330418,4.4917,7.234489 +L 4.4917,7.234489,4.9225,8.121507 +L 4.9225,8.121507,5.3463,9.000075 +L 5.3463,7.398382,6.1763,7.398382 +L 6.1763,7.398382,7.0274,7.398382 +L 7.0274,7.398382,7.8785,7.398382 +L 2.3902,7.932222,2.2364,8.302299 +L 2.2364,8.302299,2.0925,8.65539 +L 2.0925,8.65539,1.9597,9.000075 + +[冠] 39 +L 0.7075,0,1.3379,1.4195 +L 1.3379,1.4195,1.5446,2.661097 +L 1.5446,2.661097,1.5656,4.233107 +L 1.5656,4.233107,1.2682,4.233107 +L 1.2682,4.233107,0.9846,4.233107 +L 0.9846,4.233107,0.7075,4.233107 +L 3.6706,0,3.3659,0.512671 +L 3.3659,0.512671,3.2573,1.610274 +L 3.2573,1.610274,3.2398,4.233107 +L 3.2398,4.233107,2.8125,4.233107 +L 2.8125,4.233107,2.3995,4.233107 +L 2.3995,4.233107,1.9894,4.233107 +L 4.0944,0,5.2222,0 +L 5.2222,0,6.3538,0 +L 6.3538,0,7.4851,0 +L 7.4851,0,7.4851,0.343218 +L 7.4851,0.343218,7.4851,0.686524 +L 7.4851,0.686524,7.4851,1.029721 +L 5.8039,1.563626,6.0803,1.563626 +L 6.0803,1.563626,6.3538,1.563626 +L 6.3538,1.563626,6.6266,1.563626 +L 6.6266,1.563626,6.5745,4.210429 +L 6.5745,4.210429,6.0593,5.170932 +L 6.0593,5.170932,4.5217,5.300938 +L 7.0543,5.300938,6.7531,5.689251 +L 6.7531,5.689251,6.6442,6.094682 +L 6.6442,6.094682,6.6266,6.864499 +L 1.1383,6.330418,1.9684,6.330418 +L 1.9684,6.330418,2.8125,6.330418 +L 2.8125,6.330418,3.6706,6.330418 +L 0.7075,7.398382,0.7075,7.768438 +L 0.7075,7.768438,0.7075,8.121507 +L 0.7075,8.121507,0.7075,8.466214 +L 0.7075,8.466214,2.9704,8.466214 +L 2.9704,8.466214,5.2222,8.466214 +L 5.2222,8.466214,7.4851,8.466214 +L 7.4851,8.466214,7.4851,8.121507 +L 7.4851,8.121507,7.4851,7.768438 +L 7.4851,7.768438,7.4851,7.398382 + +[勘] 48 +L 4.5552,0,4.1458,0.375682 +L 4.1458,0.375682,3.2561,0.514247 +L 3.2561,0.514247,1.1333,0.533992 +L 1.1333,0.533992,1.2667,2.822079 +L 1.2667,2.822079,1.4138,5.110121 +L 1.4138,5.110121,1.5641,7.398382 +L 1.5641,7.398382,1.2878,7.587667 +L 1.2878,7.587667,1.0142,7.768438 +L 1.0142,7.768438,0.7379,7.932222 +L 6.2329,0,7.5396,1.242954 +L 7.5396,1.242954,7.6657,3.892669 +L 7.6657,3.892669,7.5113,6.330418 +L 7.5113,6.330418,5.8126,5.488736 +L 5.8126,5.488736,5.4098,3.358808 +L 5.4098,3.358808,4.9513,0.533992 +L 1.5641,1.563626,1.8618,1.998608 +L 1.8618,1.998608,1.9742,2.552236 +L 1.9742,2.552236,1.9879,3.699114 +L 1.9879,3.699114,2.5483,3.699114 +L 2.5483,3.699114,3.1227,3.699114 +L 3.1227,3.699114,3.6974,3.699114 +L 3.6974,3.699114,3.6974,4.233107 +L 3.6974,4.233107,3.6974,4.767077 +L 3.6974,4.767077,3.6974,5.300938 +L 3.6974,5.300938,3.1227,5.300938 +L 3.1227,5.300938,2.5483,5.300938 +L 2.5483,5.300938,1.9879,5.300938 +L 3.2701,2.097487,3.2701,2.467543 +L 3.2701,2.467543,3.2701,2.820634 +L 3.2701,2.820634,3.2701,3.165275 +L 4.1279,3.699114,4.4014,3.699114 +L 4.4014,3.699114,4.6743,3.699114 +L 4.6743,3.699114,4.9513,3.699114 +L 3.6974,6.063664,3.1227,6.166788 +L 3.1227,6.166788,2.5483,6.25284 +L 2.5483,6.25284,1.9879,6.330418 +L 5.1611,6.330418,5.3786,6.519749 +L 5.3786,6.519749,5.5884,6.70054 +L 5.5884,6.70054,5.8024,6.864499 +L 5.8024,6.864499,5.8024,7.587667 +L 5.8024,7.587667,5.8024,8.302299 +L 5.8024,8.302299,5.8024,9.000075 +L 3.6974,7.131386,3.0495,7.734464 +L 3.0495,7.734464,2.2121,8.21905 +L 2.2121,8.21905,1.5641,9.000075 +L 4.1279,7.932222,3.9776,8.302299 +L 3.9776,8.302299,3.8302,8.65539 +L 3.8302,8.65539,3.6974,9.000075 + +[勧] 54 +L 1.5945,0,1.5801,2.622898 +L 1.5801,2.622898,1.4684,3.720458 +L 1.4684,3.720458,1.1707,4.233107 +L 1.1707,4.233107,1.0162,4.069346 +L 1.0162,4.069346,0.8691,3.888466 +L 0.8691,3.888466,0.7399,3.699114 +L 2.0218,0,2.2985,0 +L 2.2985,0,2.5783,0 +L 2.5783,0,2.876,0 +L 2.876,0,2.8449,0.744337 +L 2.8449,0.744337,2.6242,1.149702 +L 2.6242,1.149702,2.0218,1.563626 +L 3.2721,0,3.7026,0 +L 3.7026,0,4.1267,0 +L 4.1267,0,4.5537,0 +L 4.5537,0,5.3873,1.960585 +L 5.3873,1.960585,5.7515,3.810755 +L 5.7515,3.810755,5.8356,5.796667 +L 5.8356,5.796667,5.5417,5.985909 +L 5.5417,5.985909,5.2545,6.166788 +L 5.2545,6.166788,4.981,6.330418 +L 6.2594,0,7.5308,1.234505 +L 7.5308,1.234505,7.6642,3.875682 +L 7.6642,3.875682,7.5133,6.330418 +L 7.5133,6.330418,6.1442,6.615868 +L 6.1442,6.615868,5.8009,7.494458 +L 5.8009,7.494458,5.8356,9.000075 +L 3.2721,1.563626,2.8449,1.933682 +L 2.8449,1.933682,2.4277,2.286685 +L 2.4277,2.286685,2.0218,2.631436 +L 3.2721,2.631436,2.7012,3.354582 +L 2.7012,3.354582,2.144,4.069346 +L 2.144,4.069346,1.5945,4.767077 +L 1.5945,4.767077,1.8922,5.180805 +L 1.8922,5.180805,2.0039,5.586236 +L 2.0039,5.586236,2.0218,6.330418 +L 2.0218,6.330418,1.5945,6.330418 +L 1.5945,6.330418,1.1707,6.330418 +L 1.1707,6.330418,0.7399,6.330418 +L 3.2721,4.233107,3.0935,4.785378 +L 3.0935,4.785378,3.1881,5.447801 +L 3.1881,5.447801,3.2721,6.330418 +L 3.2721,6.330418,2.9986,6.330418 +L 2.9986,6.330418,2.7223,6.330418 +L 2.7223,6.330418,2.4487,6.330418 +L 2.4487,6.330418,2.4487,6.864499 +L 2.4487,6.864499,2.4487,7.398382 +L 2.4487,7.398382,2.4487,7.932222 +L 2.4487,7.932222,1.5349,7.912433 +L 1.5349,7.912433,1.0866,7.774107 +L 1.0866,7.774107,0.7399,7.398382 +L 2.876,7.932222,3.2823,7.932222 +L 3.2823,7.932222,3.7026,7.932222 +L 3.7026,7.932222,4.1267,7.932222 + +[喚] 54 +L 3.0885,0,3.8591,0.713428 +L 3.8591,0.713428,4.6471,1.409627 +L 4.6471,1.409627,5.4387,2.097487 +L 5.4387,2.097487,4.1074,2.764157 +L 4.1074,2.764157,2.2024,3.083405 +L 2.2024,3.083405,0.7695,3.165275 +L 0.7695,3.165275,0.7695,4.765524 +L 0.7695,4.765524,0.7695,6.357409 +L 0.7695,6.357409,0.7695,7.932222 +L 0.7695,7.932222,1.3194,7.932222 +L 1.3194,7.932222,1.8802,7.932222 +L 1.8802,7.932222,2.4507,7.932222 +L 2.4507,7.932222,2.4507,6.521215 +L 2.4507,6.521215,2.4507,5.110121 +L 2.4507,5.110121,2.4507,3.699114 +L 7.5436,0,6.9654,0.532526 +L 6.9654,0.532526,6.3913,1.056493 +L 6.3913,1.056493,5.8341,1.563626 +L 5.8341,2.631436,5.6905,3.001492 +L 5.6905,3.001492,5.5613,3.354582 +L 5.5613,3.354582,5.4387,3.699114 +L 6.2652,2.631436,6.5349,2.631436 +L 6.5349,2.631436,6.8218,2.631436 +L 6.8218,2.631436,7.1163,2.631436 +L 7.1163,2.631436,7.1163,3.354582 +L 7.1163,3.354582,7.1163,4.069346 +L 7.1163,4.069346,7.1163,4.767077 +L 7.1163,4.767077,6.6925,4.767077 +L 6.6925,4.767077,6.2652,4.767077 +L 6.2652,4.767077,5.8341,4.767077 +L 5.8341,4.767077,5.8096,5.511327 +L 5.8096,5.511327,5.652,5.91667 +L 5.652,5.91667,5.2247,6.330418 +L 5.2247,6.330418,4.7907,5.289599 +L 4.7907,5.289599,4.1638,4.231662 +L 4.1638,4.231662,3.7291,3.165275 +L 3.7291,4.767077,3.7155,5.88703 +L 3.7155,5.88703,3.603,6.430873 +L 3.603,6.430873,3.3018,6.864499 +L 3.3018,6.864499,4.0657,7.655462 +L 4.0657,7.655462,4.3946,8.20909 +L 4.3946,8.20909,4.5841,9.000075 +L 7.1163,5.300938,7.1163,5.644114 +L 7.1163,5.644114,7.1163,5.987354 +L 7.1163,5.987354,7.1163,6.330418 +L 7.1163,6.330418,6.5031,6.350295 +L 6.5031,6.350295,6.1672,6.488729 +L 6.1672,6.488729,5.8341,6.864499 +L 5.8341,6.864499,5.9675,7.131386 +L 5.9675,7.131386,6.1111,7.398382 +L 6.1111,7.398382,6.2652,7.665335 +L 6.2652,7.665335,5.8341,7.768438 +L 5.8341,7.768438,5.4176,7.854554 +L 5.4176,7.854554,5.0114,7.932222 + +[堪] 63 +L 3.7595,0,3.7595,1.247201 +L 3.7595,1.247201,3.7595,2.477438 +L 3.7595,2.477438,3.7595,3.699114 +L 3.7595,3.699114,3.4649,3.699114 +L 3.4649,3.699114,3.1812,3.699114 +L 3.1812,3.699114,2.9084,3.699114 +L 4.1868,0,5.4473,0 +L 5.4473,0,6.7222,0 +L 6.7222,0,8.0006,0 +L 4.1868,1.563626,4.7643,2.354567 +L 4.7643,2.354567,4.9815,2.908217 +L 4.9815,2.908217,5.0134,3.699114 +L 5.0134,3.699114,4.7363,3.699114 +L 4.7363,3.699114,4.4596,3.699114 +L 4.4596,3.699114,4.1868,3.699114 +L 6.2918,1.563626,6.2918,2.286685 +L 6.2918,2.286685,6.2918,3.001492 +L 6.2918,3.001492,6.2918,3.699114 +L 6.2918,3.699114,5.9937,3.699114 +L 5.9937,3.699114,5.7135,3.699114 +L 5.7135,3.699114,5.4407,3.699114 +L 6.7222,1.563626,6.9923,1.563626 +L 6.9923,1.563626,7.2795,1.563626 +L 7.2795,1.563626,7.5733,1.563626 +L 7.5733,1.563626,7.5733,1.933682 +L 7.5733,1.933682,7.5733,2.286685 +L 7.5733,2.286685,7.5733,2.631436 +L 0.768,2.097487,1.1988,2.097487 +L 1.1988,2.097487,1.6261,2.097487 +L 1.6261,2.097487,2.0499,2.097487 +L 2.0499,2.097487,2.106,4.279689 +L 2.106,4.279689,1.8752,5.775456 +L 1.8752,5.775456,0.768,6.330418 +L 6.7222,3.699114,6.7222,4.233107 +L 6.7222,4.233107,6.7222,4.767077 +L 6.7222,4.767077,6.7222,5.300938 +L 6.7222,5.300938,5.9937,5.300938 +L 5.9937,5.300938,5.2862,5.300938 +L 5.2862,5.300938,4.5822,5.300938 +L 4.5822,5.300938,4.5822,4.956297 +L 4.5822,4.956297,4.5822,4.603097 +L 4.5822,4.603097,4.5822,4.233107 +L 7.1495,3.699114,7.4231,3.699114 +L 7.4231,3.699114,7.7032,3.699114 +L 7.7032,3.699114,8.0006,3.699114 +L 4.5822,5.796667,4.5686,6.943523 +L 4.5686,6.943523,4.467,7.497238 +L 4.467,7.497238,4.1868,7.932222 +L 4.1868,7.932222,3.8922,7.932222 +L 3.8922,7.932222,3.6085,7.932222 +L 3.6085,7.932222,3.3357,7.932222 +L 6.7222,6.063664,6.1408,6.166788 +L 6.1408,6.166788,5.5734,6.25284 +L 5.5734,6.25284,5.0134,6.330418 +L 2.4772,6.330418,2.1799,6.785365 +L 2.1799,6.785365,2.0675,7.477428 +L 2.0675,7.477428,2.0499,9.000075 +L 6.7222,7.131386,6.0708,7.734464 +L 6.0708,7.734464,5.234,8.21905 +L 5.234,8.21905,4.5822,9.000075 +L 7.1495,7.932222,6.9923,8.302299 +L 6.9923,8.302299,6.8483,8.65539 +L 6.8483,8.65539,6.7222,9.000075 + +[寛] 69 +L 0.8019,0,1.7472,0.038242 +L 1.7472,0.038242,2.406,0.305107 +L 2.406,0.305107,3.3342,1.029721 +L 3.3342,1.029721,3.3342,1.399689 +L 3.3342,1.399689,3.3342,1.752911 +L 3.3342,1.752911,3.3342,2.097487 +L 3.3342,2.097487,2.9069,2.097487 +L 2.9069,2.097487,2.4866,2.097487 +L 2.4866,2.097487,2.0835,2.097487 +L 2.0835,2.097487,2.0835,3.165275 +L 2.0835,3.165275,2.0835,4.233107 +L 2.0835,4.233107,2.0835,5.300938 +L 2.0835,5.300938,2.4866,5.403998 +L 2.4866,5.403998,2.9069,5.490224 +L 2.9069,5.490224,3.3342,5.567891 +L 3.3342,5.567891,2.9909,6.104576 +L 2.9909,6.104576,2.5528,6.302311 +L 2.5528,6.302311,1.6565,6.330418 +L 5.4703,0,5.1691,0.433647 +L 5.1691,0.433647,5.0574,0.977425 +L 5.0574,0.977425,5.0395,2.097487 +L 5.0395,2.097487,4.6157,2.097487 +L 4.6157,2.097487,4.1884,2.097487 +L 4.1884,2.097487,3.7615,2.097487 +L 5.8976,0,6.444,0 +L 6.444,0,7.0044,0 +L 7.0044,0,7.5718,0 +L 7.5718,0,7.5718,0.532526 +L 7.5718,0.532526,7.5718,1.056493 +L 7.5718,1.056493,7.5718,1.563626 +L 5.4703,2.097487,5.7439,2.097487 +L 5.7439,2.097487,6.0307,2.097487 +L 6.0307,2.097487,6.3214,2.097487 +L 6.3214,2.097487,6.3214,2.467543 +L 6.3214,2.467543,6.3214,2.820634 +L 6.3214,2.820634,6.3214,3.165275 +L 6.3214,3.165275,5.0395,3.165275 +L 5.0395,3.165275,3.7681,3.165275 +L 3.7681,3.165275,2.5076,3.165275 +L 6.3214,3.966133,5.0395,4.069346 +L 5.0395,4.069346,3.7681,4.155418 +L 3.7681,4.155418,2.5076,4.233107 +L 6.3214,5.033943,5.4703,5.137068 +L 5.4703,5.137068,4.6157,5.223184 +L 4.6157,5.223184,3.7615,5.300938 +L 5.0395,5.796667,4.1534,6.451976 +L 4.1534,6.451976,3.5513,6.742942 +L 3.5513,6.742942,3.3342,7.932222 +L 3.3342,7.932222,2.4831,7.932222 +L 2.4831,7.932222,1.632,7.932222 +L 1.632,7.932222,0.8019,7.932222 +L 0.8019,7.932222,0.8019,7.398382 +L 0.8019,7.398382,0.8019,6.864499 +L 0.8019,6.864499,0.8019,6.330418 +L 5.4703,6.330418,5.1691,6.745787 +L 5.1691,6.745787,5.0574,7.161069 +L 5.0574,7.161069,5.0395,7.932222 +L 5.0395,7.932222,4.6157,7.932222 +L 4.6157,7.932222,4.1884,7.932222 +L 4.1884,7.932222,3.7615,7.932222 +L 5.8976,6.330418,6.1712,6.330418 +L 6.1712,6.330418,6.444,6.330418 +L 6.444,6.330418,6.7176,6.330418 +L 7.5718,6.330418,7.5718,6.864499 +L 7.5718,6.864499,7.5718,7.398382 +L 7.5718,7.398382,7.5718,7.932222 +L 7.5718,7.932222,6.8717,7.932222 +L 6.8717,7.932222,6.1712,7.932222 +L 6.1712,7.932222,5.4703,7.932222 + +[患] 60 +L 0.8316,0,1.1086,0.713428 +L 1.1086,0.713428,1.3815,1.409627 +L 1.3815,1.409627,1.655,2.097487 +L 3.3639,0,3.0665,0.433647 +L 3.0665,0.433647,2.9541,0.977425 +L 2.9541,0.977425,2.9401,2.097487 +L 3.7912,0,4.492,0 +L 4.492,0,5.1925,0 +L 5.1925,0,5.8961,0 +L 5.8961,0,5.8961,0.343218 +L 5.8961,0.343218,5.8961,0.686524 +L 5.8961,0.686524,5.8961,1.029721 +L 7.6057,0.800879,7.3111,1.247201 +L 7.3111,1.247201,7.0239,1.676536 +L 7.0239,1.676536,6.7511,2.097487 +L 4.2188,3.432359,4.0679,3.699114 +L 4.0679,3.699114,3.9211,3.966133 +L 3.9211,3.966133,3.7912,4.233107 +L 3.7912,4.233107,2.9401,4.233107 +L 2.9401,4.233107,2.089,4.233107 +L 2.089,4.233107,1.2589,4.233107 +L 1.2589,4.233107,1.2589,4.603097 +L 1.2589,4.603097,1.2589,4.956297 +L 1.2589,4.956297,1.2589,5.300938 +L 1.2589,5.300938,2.089,5.300938 +L 2.089,5.300938,2.9401,5.300938 +L 2.9401,5.300938,3.7912,5.300938 +L 3.7912,5.300938,4.0787,5.867329 +L 4.0787,5.867329,4.0787,6.27265 +L 4.0787,6.27265,3.7912,6.864499 +L 3.7912,6.864499,3.07,6.864499 +L 3.07,6.864499,2.359,6.864499 +L 2.359,6.864499,1.655,6.864499 +L 1.655,6.864499,1.655,7.234489 +L 1.655,7.234489,1.655,7.587667 +L 1.655,7.587667,1.655,7.932222 +L 1.655,7.932222,2.359,7.932222 +L 2.359,7.932222,3.07,7.932222 +L 3.07,7.932222,3.7912,7.932222 +L 3.7912,7.932222,3.9211,8.302299 +L 3.9211,8.302299,4.0679,8.65539 +L 4.0679,8.65539,4.2188,9.000075 +L 4.6461,4.233107,4.5901,5.221805 +L 4.5901,5.221805,5.9522,5.380028 +L 5.9522,5.380028,7.1784,5.300938 +L 7.1784,5.300938,7.1784,4.956297 +L 7.1784,4.956297,7.1784,4.603097 +L 7.1784,4.603097,7.1784,4.233107 +L 7.1784,4.233107,6.3234,4.233107 +L 6.3234,4.233107,5.4797,4.233107 +L 5.4797,4.233107,4.6461,4.233107 +L 4.6461,6.864499,4.4987,7.819268 +L 4.4987,7.819268,5.6334,7.994433 +L 5.6334,7.994433,6.7511,7.932222 +L 6.7511,7.932222,6.7511,7.587667 +L 6.7511,7.587667,6.7511,7.234489 +L 6.7511,7.234489,6.7511,6.864499 +L 6.7511,6.864499,6.0506,6.864499 +L 6.0506,6.864499,5.3497,6.864499 +L 5.3497,6.864499,4.6461,6.864499 + +[憾] 69 +L 2.1158,0,2.1158,3.011321 +L 2.1158,3.011321,2.1158,6.014191 +L 2.1158,6.014191,2.1158,9.000075 +L 2.9669,0.266996,3.0997,0.713428 +L 3.0997,0.713428,3.2468,1.142784 +L 3.2468,1.142784,3.3977,1.563626 +L 5.0719,0,4.7707,0.433647 +L 4.7707,0.433647,4.6618,0.977425 +L 4.6618,0.977425,4.6446,2.097487 +L 5.5027,0,5.9297,0 +L 5.9297,0,6.3538,0 +L 6.3538,0,6.7807,0 +L 6.7807,0,6.7807,0.343218 +L 6.7807,0.343218,6.7807,0.686524 +L 6.7807,0.686524,6.7807,1.029721 +L 8.0346,0.800879,7.8914,1.066431 +L 7.8914,1.066431,7.7579,1.323511 +L 7.7579,1.323511,7.6353,1.563626 +L 2.9669,3.432359,3.2608,4.093206 +L 3.2608,4.093206,3.3172,4.983113 +L 3.3172,4.983113,3.1802,6.864499 +L 3.1802,6.864499,2.9669,7.053718 +L 2.9669,7.053718,2.7529,7.234489 +L 2.7529,7.234489,2.5396,7.398382 +L 5.9297,3.165275,5.5798,3.541044 +L 5.5798,3.541044,5.1384,3.679413 +L 5.1384,3.679413,4.2208,3.699114 +L 4.2208,3.699114,4.2208,4.233107 +L 4.2208,4.233107,4.2208,4.767077 +L 4.2208,4.767077,4.2208,5.300938 +L 4.2208,5.300938,4.6446,5.300938 +L 4.6446,5.300938,5.0719,5.300938 +L 5.0719,5.300938,5.5027,5.300938 +L 5.5027,5.300938,5.5027,4.956297 +L 5.5027,4.956297,5.5027,4.603097 +L 5.5027,4.603097,5.5027,4.233107 +L 7.6353,3.165275,7.338,3.535353 +L 7.338,3.535353,7.0578,3.888466 +L 7.0578,3.888466,6.7807,4.233107 +L 6.7807,4.233107,6.6305,4.069346 +L 6.6305,4.069346,6.483,3.888466 +L 6.483,3.888466,6.3538,3.699114 +L 7.6353,3.165275,7.6353,3.535353 +L 7.6353,3.535353,7.6353,3.888466 +L 7.6353,3.888466,7.6353,4.233107 +L 0.8301,5.033943,1.1316,5.630038 +L 1.1316,5.630038,1.2437,6.242967 +L 1.2437,6.242967,1.2574,7.398382 +L 6.7807,4.767077,6.4659,5.429435 +L 6.4659,5.429435,6.2414,6.202076 +L 6.2414,6.202076,5.9297,6.864499 +L 5.9297,6.864499,5.5798,6.488729 +L 5.5798,6.488729,5.1384,6.350295 +L 5.1384,6.350295,4.2208,6.330418 +L 7.208,5.300938,7.338,5.644114 +L 7.338,5.644114,7.4816,5.987354 +L 7.4816,5.987354,7.6353,6.330418 +L 3.3977,7.665335,4.0982,7.768438 +L 4.0982,7.768438,4.7984,7.854554 +L 4.7984,7.854554,5.5027,7.932222 +L 5.5027,7.932222,5.6284,8.302299 +L 5.6284,8.302299,5.772,8.65539 +L 5.772,8.65539,5.9297,9.000075 +L 5.9297,7.398382,6.2732,7.783893 +L 6.2732,7.783893,6.7181,7.991654 +L 6.7181,7.991654,7.6353,8.199174 +L 7.6353,8.199174,7.4816,8.466214 +L 7.4816,8.466214,7.338,8.733079 +L 7.338,8.733079,7.208,9.000075 + +[換] 60 +L 1.2878,0,1.5641,0 +L 1.5641,0,1.8478,0 +L 1.8478,0,2.1455,0 +L 2.1455,0,2.128,2.622898 +L 2.128,2.622898,2.0198,3.720458 +L 2.0198,3.720458,1.7151,4.233107 +L 1.7151,4.233107,1.4205,4.069346 +L 1.4205,4.069346,1.1403,3.888466 +L 1.1403,3.888466,0.864,3.699114 +L 3.606,0,4.2505,0.713428 +L 4.2505,0.713428,4.8918,1.409627 +L 4.8918,1.409627,5.5289,2.097487 +L 5.5289,2.097487,5.1821,2.473191 +L 5.1821,2.473191,4.7408,2.611647 +L 4.7408,2.611647,3.82,2.631436 +L 3.82,2.631436,3.8337,5.045282 +L 3.8337,5.045282,4.0372,6.96758 +L 4.0372,6.96758,4.6778,9.000075 +L 7.6338,0,7.0664,0.532526 +L 7.0664,0.532526,6.5064,1.056493 +L 6.5064,1.056493,5.96,1.563626 +L 5.96,2.631436,5.8059,3.001492 +L 5.8059,3.001492,5.6623,3.354582 +L 5.6623,3.354582,5.5289,3.699114 +L 6.3523,2.631436,6.7827,2.631436 +L 6.7827,2.631436,7.21,2.631436 +L 7.21,2.631436,7.6338,2.631436 +L 7.6338,2.631436,7.6338,3.354582 +L 7.6338,3.354582,7.6338,4.069346 +L 7.6338,4.069346,7.6338,4.767077 +L 7.6338,4.767077,7.21,4.767077 +L 7.21,4.767077,6.7827,4.767077 +L 6.7827,4.767077,6.3523,4.767077 +L 6.3523,4.767077,6.3523,5.299472 +L 6.3523,5.299472,6.3523,5.823439 +L 6.3523,5.823439,6.3523,6.330418 +L 6.3523,6.330418,5.9317,6.330418 +L 5.9317,6.330418,5.5114,6.330418 +L 5.5114,6.330418,5.1016,6.330418 +L 5.1016,6.330418,5.0739,5.566468 +L 5.0739,5.566468,4.8532,5.022712 +L 4.8532,5.022712,4.2505,4.233107 +L 2.5416,4.233107,2.0373,5.525468 +L 2.0373,5.525468,1.8306,6.487395 +L 1.8306,6.487395,0.864,6.864499 +L 7.6338,5.300938,7.6338,5.644114 +L 7.6338,5.644114,7.6338,5.987354 +L 7.6338,5.987354,7.6338,6.330418 +L 7.6338,6.330418,7.3435,6.330418 +L 7.3435,6.330418,7.0563,6.330418 +L 7.0563,6.330418,6.7827,6.330418 +L 2.5416,6.864499,2.2614,7.299591 +L 2.2614,7.299591,2.1634,7.853109 +L 2.1634,7.853109,2.1455,9.000075 +L 5.96,6.864499,6.0826,7.131386 +L 6.0826,7.131386,6.2122,7.398382 +L 6.2122,7.398382,6.3523,7.665335 +L 6.3523,7.665335,5.9317,7.768438 +L 5.9317,7.768438,5.5114,7.854554 +L 5.5114,7.854554,5.1016,7.932222 + +[敢] 54 +L 3.8252,0,3.8252,0.713449 +L 3.8252,0.713449,3.8252,1.409627 +L 3.8252,1.409627,3.8252,2.097487 +L 3.8252,2.097487,2.8238,1.933682 +L 2.8238,1.933682,1.8396,1.752911 +L 1.8396,1.752911,0.8625,1.563626 +L 4.6763,0,5.2262,0.713449 +L 5.2262,0.713449,5.7869,1.409627 +L 5.7869,1.409627,6.3575,2.097487 +L 6.3575,2.097487,5.7834,3.293902 +L 5.7834,3.293902,5.4577,4.702063 +L 5.4577,4.702063,5.2857,5.796667 +L 5.2857,5.796667,5.0759,5.642822 +L 5.0759,5.642822,4.8693,5.480242 +L 4.8693,5.480242,4.6763,5.300938 +L 8.0631,0,7.6358,0.532548 +L 7.6358,0.532548,7.2085,1.056515 +L 7.2085,1.056515,6.7812,1.563626 +L 1.6852,2.631436,1.6852,4.042354 +L 1.6852,4.042354,1.6852,5.453405 +L 1.6852,5.453405,1.6852,6.864499 +L 1.6852,6.864499,1.4155,6.864499 +L 1.4155,6.864499,1.1353,6.864499 +L 1.1353,6.864499,0.8625,6.864499 +L 3.8252,2.631436,3.8252,3.001492 +L 3.8252,3.001492,3.8252,3.354582 +L 3.8252,3.354582,3.8252,3.699136 +L 3.8252,3.699136,3.2438,3.699136 +L 3.2438,3.699136,2.6729,3.699136 +L 2.6729,3.699136,2.1163,3.699136 +L 6.7812,2.631436,6.8937,3.618711 +L 6.8937,3.618711,7.0968,4.83485 +L 7.0968,4.83485,7.2085,6.864499 +L 7.2085,6.864499,5.8009,6.50854 +L 5.8009,6.50854,4.9249,6.50854 +L 4.9249,6.50854,3.8252,6.864499 +L 3.8252,6.864499,3.8252,5.987354 +L 3.8252,5.987354,3.8252,5.110121 +L 3.8252,5.110121,3.8252,4.233107 +L 2.1163,5.300938,2.5436,5.300938 +L 2.5436,5.300938,2.9674,5.300938 +L 2.9674,5.300938,3.3947,5.300938 +L 2.3261,6.864499,2.3892,7.398382 +L 2.3892,7.398382,2.4596,7.932222 +L 2.4596,7.932222,2.5436,8.466214 +L 2.5436,8.466214,2.1163,8.466214 +L 2.1163,8.466214,1.6852,8.466214 +L 1.6852,8.466214,1.2579,8.466214 +L 5.4997,7.398382,5.8009,7.813554 +L 5.8009,7.813554,5.9126,8.228879 +L 5.9126,8.228879,5.927,9.000075 +L 2.9674,8.466214,3.3947,8.466214 +L 3.3947,8.466214,3.8252,8.466214 +L 3.8252,8.466214,4.2493,8.466214 + +[棺] 51 +L 2.1428,0,2.0623,1.60038 +L 2.0623,1.60038,1.9957,3.192178 +L 1.9957,3.192178,1.9288,4.767077 +L 1.9288,4.767077,1.5646,4.069346 +L 1.5646,4.069346,1.2077,3.354582 +L 1.2077,3.354582,0.8645,2.631436 +L 4.6748,0,4.6748,2.124346 +L 4.6748,2.124346,4.6748,4.231662 +L 4.6748,4.231662,4.6748,6.330418 +L 4.6748,6.330418,5.5294,6.330418 +L 5.5294,6.330418,6.384,6.330418 +L 6.384,6.330418,7.2389,6.330418 +L 7.2389,6.330418,7.2389,5.642822 +L 7.2389,5.642822,7.2389,4.946381 +L 7.2389,4.946381,7.2389,4.233107 +L 7.2389,4.233107,6.5171,4.233107 +L 6.5171,4.233107,5.8064,4.233107 +L 5.8064,4.233107,5.1056,4.233107 +L 5.1056,0,5.9357,0 +L 5.9357,0,6.7797,0 +L 6.7797,0,7.6378,0 +L 7.6378,0,7.6378,0.877211 +L 7.6378,0.877211,7.6378,1.754268 +L 7.6378,1.754268,7.6378,2.631436 +L 7.6378,2.631436,6.7797,2.631436 +L 6.7797,2.631436,5.9357,2.631436 +L 5.9357,2.631436,5.1056,2.631436 +L 3.3967,4.233107,2.6437,5.042414 +L 2.6437,5.042414,2.209,5.724582 +L 2.209,5.724582,1.7156,6.864499 +L 1.7156,6.864499,1.4245,6.864499 +L 1.4245,6.864499,1.1373,6.864499 +L 1.1373,6.864499,0.8645,6.864499 +L 3.8205,6.330418,3.8205,6.864499 +L 3.8205,6.864499,3.8205,7.398382 +L 3.8205,7.398382,3.8205,7.932222 +L 3.8205,7.932222,4.5245,7.932222 +L 4.5245,7.932222,5.2355,7.932222 +L 5.2355,7.932222,5.9567,7.932222 +L 5.9567,7.932222,5.9567,8.302299 +L 5.9567,8.302299,5.9567,8.65539 +L 5.9567,8.65539,5.9567,9.000075 +L 8.0616,6.330418,8.0616,6.864499 +L 8.0616,6.864499,8.0616,7.398382 +L 8.0616,7.398382,8.0616,7.932222 +L 8.0616,7.932222,7.4907,7.932222 +L 7.4907,7.932222,6.9377,7.932222 +L 6.9377,7.932222,6.384,7.932222 +L 2.5733,6.864499,2.2721,7.299591 +L 2.2721,7.299591,2.1604,7.853109 +L 2.1604,7.853109,2.1428,9.000075 + +[款] 51 +L 1.7176,0,1.9904,0 +L 1.9904,0,2.2639,0 +L 2.2639,0,2.5406,0 +L 2.5406,0,2.5406,1.066431 +L 2.5406,1.066431,2.5406,2.124346 +L 2.5406,2.124346,2.5406,3.165275 +L 2.5406,3.165275,1.9694,3.165275 +L 1.9694,3.165275,1.4128,3.165275 +L 1.4128,3.165275,0.8595,3.165275 +L 4.2495,0,5.4021,2.313544 +L 5.4021,2.313544,5.8501,4.398335 +L 5.8501,4.398335,5.9275,6.864499 +L 5.9275,6.864499,5.3317,6.628608 +L 5.3317,6.628608,5.006,6.2232 +L 5.006,6.2232,4.6736,5.300938 +L 8.0636,0,7.4861,1.066431 +L 7.4861,1.066431,6.9117,2.124346 +L 6.9117,2.124346,6.3548,3.165275 +L 0.8595,1.029721,0.9922,1.399711 +L 0.9922,1.399711,1.1393,1.752911 +L 1.1393,1.752911,1.2903,2.097487 +L 2.9644,3.165275,3.3952,3.165275 +L 3.3952,3.165275,3.8225,3.165275 +L 3.8225,3.165275,4.2495,3.165275 +L 1.2903,4.767077,2.1203,4.767077 +L 2.1203,4.767077,2.9714,4.767077 +L 2.9714,4.767077,3.8225,4.767077 +L 7.6363,5.567891,7.7663,5.911109 +L 7.7663,5.911109,7.9134,6.254285 +L 7.9134,6.254285,8.0636,6.597525 +L 8.0636,6.597525,7.4861,6.70054 +L 7.4861,6.70054,6.9117,6.786745 +L 6.9117,6.786745,6.3548,6.864499 +L 1.2903,6.330418,1.693,6.330418 +L 1.693,6.330418,2.113,6.330418 +L 2.113,6.330418,2.5406,6.330418 +L 2.5406,6.330418,2.3091,7.66111 +L 2.3091,7.66111,1.7067,7.974645 +L 1.7067,7.974645,0.8595,7.932222 +L 2.9644,6.330418,3.2408,6.330418 +L 3.2408,6.330418,3.5245,6.330418 +L 3.5245,6.330418,3.8225,6.330418 +L 5.1041,7.398382,5.4021,7.813554 +L 5.4021,7.813554,5.5139,8.228879 +L 5.5139,8.228879,5.5314,9.000075 +L 2.9644,7.932222,2.817,8.302299 +L 2.817,8.302299,2.6734,8.65539 +L 2.6734,8.65539,2.5406,9.000075 +L 3.3952,7.932222,3.6716,7.932222 +L 3.6716,7.932222,3.9553,7.932222 +L 3.9553,7.932222,4.2495,7.932222 + +[歓] 60 +L 1.2887,0,1.4215,2.124346 +L 1.4215,2.124346,1.5651,4.231662 +L 1.5651,4.231662,1.716,6.330418 +L 1.716,6.330418,1.4215,6.330418 +L 1.4215,6.330418,1.1413,6.330418 +L 1.1413,6.330418,0.865,6.330418 +L 1.716,0,2.1433,0 +L 2.1433,0,2.5703,0 +L 2.5703,0,2.9976,0 +L 2.9976,0,2.8473,1.151168 +L 2.8473,1.151168,2.4162,1.531009 +L 2.4162,1.531009,1.716,1.563626 +L 3.4284,0,3.8312,0 +L 3.8312,0,4.2515,0 +L 4.2515,0,4.6788,0 +L 4.6788,0,5.8381,2.330553 +L 5.8381,2.330553,6.3043,4.406763 +L 6.3043,4.406763,6.3845,6.864499 +L 6.3845,6.864499,5.768,6.628608 +L 5.768,6.628608,5.4357,6.2232 +L 5.4357,6.2232,5.1026,5.300938 +L 8.094,0,7.1935,1.515511 +L 7.1935,1.515511,6.8611,2.336201 +L 6.8611,2.336201,6.8121,3.165275 +L 3.4284,1.563626,3.131,2.097487 +L 3.131,2.097487,2.8473,2.631436 +L 2.8473,2.631436,2.5703,3.165275 +L 2.5703,3.165275,2.2726,3.165275 +L 2.2726,3.165275,1.9927,3.165275 +L 1.9927,3.165275,1.716,3.165275 +L 3.4284,3.165275,2.9976,3.699136 +L 2.9976,3.699136,2.5703,4.233107 +L 2.5703,4.233107,2.1433,4.767077 +L 3.4284,4.767077,3.1412,5.170932 +L 3.1412,5.170932,3.1412,5.507058 +L 3.1412,5.507058,3.4284,6.063664 +L 3.4284,6.063664,2.9976,6.166788 +L 2.9976,6.166788,2.5703,6.25284 +L 2.5703,6.25284,2.1433,6.330418 +L 2.1433,6.330418,2.1433,6.864499 +L 2.1433,6.864499,2.1433,7.398382 +L 2.1433,7.398382,2.1433,7.932222 +L 2.1433,7.932222,1.8453,7.932222 +L 1.8453,7.932222,1.5651,7.932222 +L 1.5651,7.932222,1.2887,7.932222 +L 1.2887,7.932222,1.2887,8.302299 +L 1.2887,8.302299,1.2887,8.65539 +L 1.2887,8.65539,1.2887,9.000075 +L 7.6632,5.567891,7.796,5.911109 +L 7.796,5.911109,7.9431,6.254285 +L 7.9431,6.254285,8.094,6.597525 +L 8.094,6.597525,7.6632,6.70054 +L 7.6632,6.70054,7.2429,6.786745 +L 7.2429,6.786745,6.8121,6.864499 +L 5.5334,7.398382,5.8279,7.813554 +L 5.8279,7.813554,5.94,8.228879 +L 5.94,8.228879,5.9537,9.000075 +L 2.5703,7.932222,3.131,7.932222 +L 3.131,7.932222,3.7019,7.932222 +L 3.7019,7.932222,4.2798,7.932222 + +# kan_24 ------------------------------------------------------- +# 汗環甘監緩缶肝艦貫還鑑閑陥含頑企奇岐幾忌既棋棄祈軌輝飢騎鬼偽儀宜戯擬欺菊吉喫詰却脚虐丘及朽窮糾巨拒 + +[汗] 24 +L 0.0034,0.266971,0.4128,1.410992 +L 0.4128,1.410992,0.8261,2.555145 +L 0.8261,2.555145,1.2534,3.699188 +L 4.6718,0.000062,4.7002,3.628625 +L 4.7002,3.628625,4.157,5.053673 +L 4.157,5.053673,2.1084,5.30086 +L 5.0676,5.30086,4.7874,5.774072 +L 4.7874,5.774072,4.6858,6.594676 +L 4.6858,6.594676,4.6718,8.466122 +L 4.6718,8.466122,3.9468,8.466122 +L 3.9468,8.466122,3.2358,8.466122 +L 3.2358,8.466122,2.5353,8.466122 +L 5.4988,5.30086,6.0518,5.30086 +L 6.0518,5.30086,6.6262,5.30086 +L 6.6262,5.30086,7.2041,5.30086 +L 0.8615,5.834818,0.5634,6.204808 +L 0.5634,6.204808,0.2797,6.558031 +L 0.2797,6.558031,0.0034,6.902562 +L 1.2534,7.932261,0.9767,8.30234 +L 0.9767,8.30234,0.7035,8.655431 +L 0.7035,8.655431,0.4304,8.999984 +L 5.0676,8.466122,5.6245,8.466122 +L 5.6245,8.466122,6.1989,8.466122 +L 6.1989,8.466122,6.7768,8.466122 + +[環] 54 +L 4.6668,0.000062,4.6528,1.145539 +L 4.6528,1.145539,4.5407,1.689295 +L 4.5407,1.689295,4.2465,2.097484 +L 4.2465,2.097484,3.5464,1.590416 +L 3.5464,1.590416,2.842,1.066439 +L 2.842,1.066439,2.1416,0.533847 +L 6.8068,0.533847,5.2556,2.207603 +L 5.2556,2.207603,4.3796,2.889914 +L 4.3796,2.889914,3.4199,3.165228 +L 3.4199,3.165228,3.4199,3.699188 +L 3.4199,3.699188,3.4199,4.233158 +L 3.4199,4.233158,3.4199,4.766921 +L 3.4199,4.766921,4.3971,4.766921 +L 4.3971,4.766921,5.3813,4.766921 +L 5.3813,4.766921,6.376,4.766921 +L 6.376,4.766921,6.4741,3.481762 +L 6.4741,3.481762,6.5687,2.67101 +L 6.5687,2.67101,6.376,2.097484 +L 0.0019,2.097484,0.2782,2.097484 +L 0.2782,2.097484,0.5619,2.097484 +L 0.5619,2.097484,0.8562,2.097484 +L 0.8562,2.097484,0.8562,3.001357 +L 0.8562,3.001357,0.8562,3.888496 +L 0.8562,3.888496,0.8562,4.766921 +L 0.8562,4.766921,0.5619,4.95624 +L 0.5619,4.95624,0.2782,5.137021 +L 0.2782,5.137021,0.0019,5.30086 +L 5.0976,3.165228,5.3743,3.165228 +L 5.3743,3.165228,5.658,3.165228 +L 5.658,3.165228,5.9557,3.165228 +L 1.2835,5.30086,0.9822,5.774072 +L 0.9822,5.774072,0.8702,6.594676 +L 0.8702,6.594676,0.8562,8.466122 +L 0.8562,8.466122,0.5619,8.466122 +L 0.5619,8.466122,0.2782,8.466122 +L 0.2782,8.466122,0.0019,8.466122 +L 2.5653,5.834818,4.1208,5.834818 +L 4.1208,5.834818,5.6755,5.834818 +L 5.6755,5.834818,7.2341,5.834818 +L 2.9926,6.902562,2.9926,7.435001 +L 2.9926,7.435001,2.9926,7.959121 +L 2.9926,7.959121,2.9926,8.466122 +L 2.9926,8.466122,4.2539,8.466122 +L 4.2539,8.466122,5.5249,8.466122 +L 5.5249,8.466122,6.8068,8.466122 +L 6.8068,8.466122,6.8068,7.959121 +L 6.8068,7.959121,6.8068,7.435001 +L 6.8068,7.435001,6.8068,6.902562 +L 6.8068,6.902562,5.5249,6.902562 +L 5.5249,6.902562,4.2539,6.902562 +L 4.2539,6.902562,2.9926,6.902562 +L 1.2835,8.466122,1.5605,8.466122 +L 1.5605,8.466122,1.8442,8.466122 +L 1.8442,8.466122,2.1416,8.466122 + +[甘] 24 +L 1.7408,0.000062,1.9019,3.298004 +L 1.9019,3.298004,1.6816,5.867282 +L 1.6816,5.867282,0.0351,6.902562 +L 2.14,0.000062,3.2678,0.000062 +L 3.2678,0.000062,4.4065,0.000062 +L 4.4065,0.000062,5.5549,0.000062 +L 5.5549,0.000062,5.5549,1.247242 +L 5.5549,1.247242,5.5549,2.477478 +L 5.5549,2.477478,5.5549,3.699188 +L 5.5549,3.699188,4.4065,3.699188 +L 4.4065,3.699188,3.2678,3.699188 +L 3.2678,3.699188,2.14,3.699188 +L 5.5549,4.233158,5.1311,6.723194 +L 5.1311,6.723194,3.8986,7.19644 +L 3.8986,7.19644,1.9229,7.169515 +L 1.9229,7.169515,1.8637,7.779686 +L 1.8637,7.779686,1.8042,8.389792 +L 1.8042,8.389792,1.7408,8.999984 +L 5.9822,6.902562,5.6845,7.310729 +L 5.6845,7.310729,5.5725,7.854595 +L 5.5725,7.854595,5.5549,8.999984 +L 6.3815,6.902562,6.6582,6.902562 +L 6.6582,6.902562,6.9384,6.902562 +L 6.9384,6.902562,7.2361,6.902562 + +[監] 66 +L 0.0616,0.000062,0.4714,0.000062 +L 0.4714,0.000062,0.892,0.000062 +L 0.892,0.000062,1.3155,0.000062 +L 1.3155,0.000062,1.3155,0.877076 +L 1.3155,0.877076,1.3155,1.754342 +L 1.3155,1.754342,1.3155,2.631378 +L 1.3155,2.631378,2.8741,2.631378 +L 2.8741,2.631378,4.426,2.631378 +L 4.426,2.631378,5.9846,2.631378 +L 5.9846,2.631378,5.9846,1.754342 +L 5.9846,1.754342,5.9846,0.877076 +L 5.9846,0.877076,5.9846,0.000062 +L 5.9846,0.000062,6.4084,0.000062 +L 6.4084,0.000062,6.8388,0.000062 +L 6.8388,0.000062,7.2626,0.000062 +L 1.7431,0.000062,2.1736,0.000062 +L 2.1736,0.000062,2.5974,0.000062 +L 2.5974,0.000062,3.0247,0.000062 +L 3.0247,0.000062,3.0247,0.713271 +L 3.0247,0.713271,3.0247,1.409646 +L 3.0247,1.409646,3.0247,2.097484 +L 3.452,0.000062,3.7252,0.000062 +L 3.7252,0.000062,4.0127,0.000062 +L 4.0127,0.000062,4.3066,0.000062 +L 4.3066,0.000062,4.3066,0.713271 +L 4.3066,0.713271,4.3066,1.409646 +L 4.3066,1.409646,4.3066,2.097484 +L 4.6992,0.000062,4.979,0.000062 +L 4.979,0.000062,5.2592,0.000062 +L 5.2592,0.000062,5.5569,0.000062 +L 0.4924,4.233158,0.4924,5.644066 +L 0.4924,5.644066,0.4924,7.055095 +L 0.4924,7.055095,0.4924,8.466122 +L 0.4924,8.466122,1.4699,8.466122 +L 1.4699,8.466122,2.4541,8.466122 +L 2.4541,8.466122,3.452,8.466122 +L 0.8882,4.233158,1.1649,4.233158 +L 1.1649,4.233158,1.4489,4.233158 +L 1.4489,4.233158,1.7431,4.233158 +L 1.7431,4.233158,1.7431,4.766921 +L 1.7431,4.766921,1.7431,5.30086 +L 1.7431,5.30086,1.7431,5.834818 +L 1.7431,5.834818,1.4489,5.834818 +L 1.4489,5.834818,1.1649,5.834818 +L 1.1649,5.834818,0.8882,5.834818 +L 2.1736,4.233158,2.5974,4.233158 +L 2.5974,4.233158,3.0247,4.233158 +L 3.0247,4.233158,3.452,4.233158 +L 4.6992,4.766921,5.4067,4.766921 +L 5.4067,4.766921,6.1138,4.766921 +L 6.1138,4.766921,6.8388,4.766921 +L 2.1736,5.834818,2.4436,5.834818 +L 2.4436,5.834818,2.7273,5.834818 +L 2.7273,5.834818,3.0247,5.834818 +L 3.0247,5.834818,3.0247,6.204808 +L 3.0247,6.204808,3.0247,6.558031 +L 3.0247,6.558031,3.0247,6.902562 +L 3.0247,6.902562,2.3032,6.902562 +L 2.3032,6.902562,1.5925,6.902562 +L 1.5925,6.902562,0.8882,6.902562 +L 4.3066,6.368592,4.7444,7.152638 +L 4.7444,7.152638,4.9545,7.834784 +L 4.9545,7.834784,5.1296,8.999984 +L 5.5569,7.398335,5.9846,7.398335 +L 5.9846,7.398335,6.4084,7.398335 +L 6.4084,7.398335,6.8388,7.398335 + +[緩] 69 +L 1.3455,0.000062,1.3455,1.600344 +L 1.3455,1.600344,1.3455,3.19212 +L 1.3455,3.19212,1.3455,4.766921 +L 1.3455,4.766921,0.9217,4.766921 +L 0.9217,4.766921,0.4909,4.766921 +L 0.4909,4.766921,0.0639,4.766921 +L 3.0547,0.000062,3.7552,0.370053 +L 3.7552,0.370053,4.456,0.723144 +L 4.456,0.723144,5.1565,1.067807 +L 5.1565,1.067807,4.7359,1.600344 +L 4.7359,1.600344,4.3054,2.124387 +L 4.3054,2.124387,3.8781,2.631378 +L 3.8781,2.631378,3.4543,2.124387 +L 3.4543,2.124387,3.0337,1.600344 +L 3.0337,1.600344,2.6309,1.067807 +L 6.8657,0.000062,6.4419,0.370053 +L 6.4419,0.370053,6.0146,0.723144 +L 6.0146,0.723144,5.587,1.067807 +L 5.587,1.067807,5.864,1.51415 +L 5.864,1.51415,6.1438,1.943529 +L 6.1438,1.943529,6.4419,2.36448 +L 6.4419,2.36448,5.1145,2.586142 +L 5.1145,2.586142,4.4697,3.045215 +L 4.4697,3.045215,4.3054,4.233158 +L 4.3054,4.233158,3.1111,4.450595 +L 3.1111,4.450595,2.5647,4.727453 +L 2.5647,4.727453,2.2004,5.30086 +L 2.2004,5.30086,2.0495,5.137021 +L 2.0495,5.137021,1.9062,4.95624 +L 1.9062,4.95624,1.7731,4.766921 +L 0.0639,1.334803,0.197,1.944963 +L 0.197,1.944963,0.3403,2.555145 +L 0.3403,2.555145,0.4909,3.165228 +L 2.6309,2.36448,2.4736,2.631378 +L 2.4736,2.631378,2.33,2.89833 +L 2.33,2.89833,2.2004,3.165228 +L 4.7359,4.233158,4.7359,4.766921 +L 4.7359,4.766921,4.7359,5.30086 +L 4.7359,5.30086,4.7359,5.834818 +L 4.7359,5.834818,4.3054,5.834818 +L 4.3054,5.834818,3.8781,5.834818 +L 3.8781,5.834818,3.447,5.834818 +L 5.1565,4.233158,5.8602,4.233158 +L 5.8602,4.233158,6.561,4.233158 +L 6.561,4.233158,7.2615,4.233158 +L 0.9217,5.30086,1.0513,5.567855 +L 1.0513,5.567855,1.1914,5.834818 +L 1.1914,5.834818,1.3455,6.101706 +L 1.3455,6.101706,1.0513,6.471783 +L 1.0513,6.471783,0.7676,6.824918 +L 0.7676,6.824918,0.4909,7.169515 +L 0.4909,7.169515,0.7676,7.779686 +L 0.7676,7.779686,1.0513,8.389792 +L 1.0513,8.389792,1.3455,8.999984 +L 5.1565,5.834818,5.7166,5.834818 +L 5.7166,5.834818,6.2878,5.834818 +L 6.2878,5.834818,6.8657,5.834818 +L 1.7731,7.169515,1.9062,7.435001 +L 1.9062,7.435001,2.0495,7.692081 +L 2.0495,7.692081,2.2004,7.932261 +L 3.8781,6.902562,3.7275,7.16818 +L 3.7275,7.16818,3.5801,7.425194 +L 3.5801,7.425194,3.447,7.665265 +L 3.447,7.665265,5.0935,7.981603 +L 5.0935,7.981603,6.0777,8.238661 +L 6.0777,8.238661,6.8657,8.199148 +L 6.8657,8.199148,6.5715,7.778307 +L 6.5715,7.778307,6.2878,7.348951 +L 6.2878,7.348951,6.0146,6.902562 + +[缶] 30 +L 0.9482,0.000062,0.9482,1.066439 +L 0.9482,1.066439,0.9482,2.124387 +L 0.9482,2.124387,0.9482,3.165228 +L 1.3794,0.000062,2.0799,0.000062 +L 2.0799,0.000062,2.7835,0.000062 +L 2.7835,0.000062,3.4843,0.000062 +L 3.4843,0.000062,3.4248,3.659665 +L 3.4248,3.659665,2.6157,4.743017 +L 2.6157,4.743017,0.094,4.766921 +L 3.9043,0.000062,4.6086,0.000062 +L 4.6086,0.000062,5.3161,0.000062 +L 5.3161,0.000062,6.0166,0.000062 +L 6.0166,0.000062,6.0166,1.066439 +L 6.0166,1.066439,6.0166,2.124387 +L 6.0166,2.124387,6.0166,3.165228 +L 3.9043,4.766921,3.6101,5.220423 +L 3.6101,5.220423,3.498,5.902612 +L 3.498,5.902612,3.4843,7.398335 +L 3.4843,7.398335,1.9604,7.374321 +L 1.9604,7.374321,1.1093,7.002886 +L 1.1093,7.002886,0.094,5.834818 +L 4.3354,4.766921,5.1655,4.766921 +L 5.1655,4.766921,6.0166,4.766921 +L 6.0166,4.766921,6.8674,4.766921 +L 3.9043,7.398335,4.6086,7.398335 +L 4.6086,7.398335,5.3161,7.398335 +L 5.3161,7.398335,6.0166,7.398335 +L 1.3794,7.932261,1.5019,8.30234 +L 1.5019,8.30234,1.6277,8.655431 +L 1.6277,8.655431,1.7751,8.999984 + +[肝] 33 +L 0.1271,0.266971,0.4038,1.104473 +L 0.4038,1.104473,0.5093,3.230297 +L 0.5093,3.230297,0.5229,8.466122 +L 0.5229,8.466122,1.0833,8.466122 +L 1.0833,8.466122,1.6546,8.466122 +L 1.6546,8.466122,2.2321,8.466122 +L 2.2321,8.466122,2.2321,5.644066 +L 2.2321,5.644066,2.2321,2.821999 +L 2.2321,2.821999,2.2321,0.000062 +L 2.2321,0.000062,1.9348,0.000062 +L 1.9348,0.000062,1.6546,0.000062 +L 1.6546,0.000062,1.3775,0.000062 +L 5.1882,0.000062,5.2687,3.289532 +L 5.2687,3.289532,4.8803,4.88422 +L 4.8803,4.88422,3.0867,5.30086 +L 0.9467,3.699188,1.2234,3.699188 +L 1.2234,3.699188,1.5071,3.699188 +L 1.5071,3.699188,1.8052,3.699188 +L 5.6193,5.30086,5.3143,5.774072 +L 5.3143,5.774072,5.2022,6.594676 +L 5.2022,6.594676,5.1882,8.466122 +L 5.1882,8.466122,4.6176,8.466122 +L 4.6176,8.466122,4.0639,8.466122 +L 4.0639,8.466122,3.5105,8.466122 +L 6.0428,5.30086,6.4736,5.30086 +L 6.4736,5.30086,6.8977,5.30086 +L 6.8977,5.30086,7.3247,5.30086 +L 0.9467,6.368592,1.2234,6.368592 +L 1.2234,6.368592,1.5071,6.368592 +L 1.5071,6.368592,1.8052,6.368592 +L 5.6193,8.466122,6.0428,8.466122 +L 6.0428,8.466122,6.4736,8.466122 +L 6.4736,8.466122,6.8977,8.466122 + +[艦] 72 +L 0.126,0.266971,0.5529,2.709034 +L 0.5529,2.709034,0.9802,6.558031 +L 0.9802,6.558031,1.4114,8.999984 +L 1.4114,0.000062,1.6807,0.000062 +L 1.6807,0.000062,1.9644,0.000062 +L 1.9644,0.000062,2.2621,0.000062 +L 2.2621,0.000062,2.2446,2.998643 +L 2.2446,2.998643,2.1325,4.234505 +L 2.1325,4.234505,1.8352,4.766921 +L 1.8352,4.766921,1.541,4.603149 +L 1.541,4.603149,1.2534,4.422346 +L 1.2534,4.422346,0.9802,4.233158 +L 3.5164,0.000062,3.5164,0.877076 +L 3.5164,0.877076,3.5164,1.754342 +L 3.5164,1.754342,3.5164,2.631378 +L 3.5164,2.631378,4.6371,2.631378 +L 4.6371,2.631378,5.7719,2.631378 +L 5.7719,2.631378,6.8994,2.631378 +L 6.8994,2.631378,6.8994,1.754342 +L 6.8994,1.754342,6.8994,0.877076 +L 6.8994,0.877076,6.8994,0.000062 +L 6.8994,0.000062,5.7719,0.000062 +L 5.7719,0.000062,4.6371,0.000062 +L 4.6371,0.000062,3.5164,0.000062 +L 4.7944,0.533847,4.7944,1.066439 +L 4.7944,1.066439,4.7944,1.590416 +L 4.7944,1.590416,4.7944,2.097484 +L 5.6455,0.533847,5.6455,1.066439 +L 5.6455,1.066439,5.6455,1.590416 +L 5.6455,1.590416,5.6455,2.097484 +L 1.4114,1.601734,1.4114,2.134249 +L 1.4114,2.134249,1.4114,2.658161 +L 1.4114,2.658161,1.4114,3.165228 +L 3.0852,4.500144,2.812,4.766921 +L 2.812,4.766921,2.5353,5.033896 +L 2.5353,5.033896,2.2621,5.30086 +L 2.2621,5.30086,2.2621,6.178037 +L 2.2621,6.178037,2.2621,7.055095 +L 2.2621,7.055095,2.2621,7.932261 +L 2.2621,7.932261,1.9644,7.932261 +L 1.9644,7.932261,1.6807,7.932261 +L 1.6807,7.932261,1.4114,7.932261 +L 3.7265,4.233158,3.7857,4.766921 +L 3.7857,4.766921,3.8596,5.30086 +L 3.8596,5.30086,3.9363,5.834818 +L 3.9363,5.834818,3.6421,5.67097 +L 3.6421,5.67097,3.3622,5.490101 +L 3.3622,5.490101,3.0852,5.30086 +L 5.6455,4.766921,6.1954,4.766921 +L 6.1954,4.766921,6.7561,4.766921 +L 6.7561,4.766921,7.3267,4.766921 +L 1.4114,5.834818,1.4114,6.204808 +L 1.4114,6.204808,1.4114,6.558031 +L 1.4114,6.558031,1.4114,6.902562 +L 4.5808,5.834818,4.6438,6.204808 +L 4.6438,6.204808,4.7107,6.558031 +L 4.7107,6.558031,4.7944,6.902562 +L 4.7944,6.902562,4.2165,6.738692 +L 4.2165,6.738692,3.6421,6.558031 +L 3.6421,6.558031,3.0852,6.368592 +L 5.6455,5.834818,5.7751,6.901205 +L 5.7751,6.901205,5.926,7.959121 +L 5.926,7.959121,6.0766,8.999984 +L 6.5004,6.902562,6.7768,6.902562 +L 6.7768,6.902562,7.05,6.902562 +L 7.05,6.902562,7.3267,6.902562 +L 3.0852,7.398335,3.0852,7.76839 +L 3.0852,7.76839,3.0852,8.121482 +L 3.0852,8.121482,3.0852,8.466122 +L 3.0852,8.466122,3.6421,8.466122 +L 3.6421,8.466122,4.2165,8.466122 +L 4.2165,8.466122,4.7944,8.466122 + +[貫] 42 +L 0.1592,0.000062,0.7055,0.189403 +L 0.7055,0.189403,1.2659,0.370053 +L 1.2659,0.370053,1.8337,0.533847 +L 6.0751,0.000062,5.7809,0.189403 +L 5.7809,0.189403,5.4969,0.370053 +L 5.4969,0.370053,5.2202,0.533847 +L 1.4099,1.601734,1.4099,2.668154 +L 1.4099,2.668154,1.4099,3.726102 +L 1.4099,3.726102,1.4099,4.766921 +L 1.4099,4.766921,2.814,4.766921 +L 2.814,4.766921,4.2259,4.766921 +L 4.2259,4.766921,5.6475,4.766921 +L 5.6475,4.766921,5.6475,3.726102 +L 5.6475,3.726102,5.6475,2.668154 +L 5.6475,2.668154,5.6475,1.601734 +L 5.6475,1.601734,4.2259,1.601734 +L 4.2259,1.601734,2.814,1.601734 +L 2.814,1.601734,1.4099,1.601734 +L 1.8337,2.631378,2.9646,2.631378 +L 2.9646,2.631378,4.0889,2.631378 +L 4.0889,2.631378,5.2202,2.631378 +L 1.8337,3.699188,2.9646,3.699188 +L 2.9646,3.699188,4.0889,3.699188 +L 4.0889,3.699188,5.2202,3.699188 +L 1.4099,6.635676,1.2204,7.019852 +L 1.2204,7.019852,0.895,7.217542 +L 0.895,7.217542,0.1592,7.398335 +L 1.8337,6.368592,2.3937,6.471783 +L 2.3937,6.471783,2.9646,6.558031 +L 2.9646,6.558031,3.5425,6.635676 +L 3.5425,6.635676,2.8946,7.202066 +L 2.8946,7.202066,2.0578,7.607366 +L 2.0578,7.607366,1.4099,8.199148 +L 1.4099,8.199148,3.3537,7.991585 +L 3.3537,7.991585,5.1855,7.605987 +L 5.1855,7.605987,6.9294,7.398335 +L 3.9733,6.368592,4.5197,6.471783 +L 4.5197,6.471783,5.0766,6.558031 +L 5.0766,6.558031,5.6475,6.635676 +L 5.6475,6.635676,5.0065,7.192193 +L 5.0065,7.192193,4.1838,7.528319 +L 4.1838,7.528319,3.5425,7.932261 + +[還] 63 +L 0.3682,0.000062,0.7145,0.370053 +L 0.7145,0.370053,1.0718,0.723144 +L 1.0718,0.723144,1.436,1.067807 +L 1.436,1.067807,1.436,2.315074 +L 1.436,2.315074,1.436,3.545212 +L 1.436,3.545212,1.436,4.766921 +L 1.436,4.766921,1.0123,4.766921 +L 1.0123,4.766921,0.585,4.766921 +L 0.585,4.766921,0.1577,4.766921 +L 2.7214,0.000062,2.4241,0.189403 +L 2.4241,0.189403,2.1435,0.370053 +L 2.1435,0.370053,1.8672,0.533847 +L 3.1421,0.000062,4.5532,0.000062 +L 4.5532,0.000062,5.9612,0.000062 +L 5.9612,0.000062,7.3867,0.000062 +L 4.8229,1.067807,4.7424,1.781081 +L 4.7424,1.781081,4.6758,2.477478 +L 4.6758,2.477478,4.6128,3.165228 +L 4.6128,3.165228,3.8286,2.658161 +L 3.8286,2.658161,3.0577,2.134249 +L 3.0577,2.134249,2.291,1.601734 +L 6.5325,1.601734,6.1052,2.211948 +L 6.1052,2.211948,5.6775,2.821999 +L 5.6775,2.821999,5.2537,3.432246 +L 5.2537,3.432246,5.6775,3.535306 +L 5.6775,3.535306,6.1052,3.621532 +L 6.1052,3.621532,6.5325,3.699188 +L 6.5325,3.699188,6.5325,4.233158 +L 6.5325,4.233158,6.5325,4.766921 +L 6.5325,4.766921,6.5325,5.30086 +L 6.5325,5.30086,5.4043,5.30086 +L 5.4043,5.30086,4.2765,5.30086 +L 4.2765,5.30086,3.1421,5.30086 +L 3.1421,5.30086,3.1421,4.766921 +L 3.1421,4.766921,3.1421,4.233158 +L 3.1421,4.233158,3.1421,3.699188 +L 3.1421,3.699188,3.5515,3.699188 +L 3.5515,3.699188,3.9722,3.699188 +L 3.9722,3.699188,4.3991,3.699188 +L 1.8672,6.368592,3.6951,6.368592 +L 3.6951,6.368592,5.5374,6.368592 +L 5.5374,6.368592,7.3867,6.368592 +L 1.436,7.398335,1.1418,7.76839 +L 1.1418,7.76839,0.862,8.121482 +L 0.862,8.121482,0.585,8.466122 +L 2.7214,7.398335,2.7214,7.76839 +L 2.7214,7.76839,2.7214,8.121482 +L 2.7214,8.121482,2.7214,8.466122 +L 2.7214,8.466122,3.9827,8.466122 +L 3.9827,8.466122,5.2537,8.466122 +L 5.2537,8.466122,6.5325,8.466122 +L 6.5325,8.466122,6.5325,8.121482 +L 6.5325,8.121482,6.5325,7.76839 +L 6.5325,7.76839,6.5325,7.398335 +L 6.5325,7.398335,5.2537,7.398335 +L 5.2537,7.398335,3.9827,7.398335 +L 3.9827,7.398335,2.7214,7.398335 +L 5.2432,-0.015107,7.3692,-0.015107 +L 1.4255,1.052538,0.3682,0.000062 +L 0.1717,4.751795,1.4255,4.751795 +L 1.4255,1.052538,1.4255,4.751795 +L 0.5993,8.489195,1.4255,7.421319 +A 5.2432,7.347899,7.362973,238.75988,270 + +[鑑] 69 +L 0.1915,0.000062,0.6153,0.000062 +L 0.6153,0.000062,1.0426,0.000062 +L 1.0426,0.000062,1.4699,0.000062 +L 1.4699,0.000062,1.5431,2.286726 +L 1.5431,2.286726,1.333,4.05658 +L 1.333,4.05658,0.1915,4.766921 +L 3.5749,0.000062,3.5749,0.877076 +L 3.5749,0.877076,3.5749,1.754342 +L 3.5749,1.754342,3.5749,2.631378 +L 3.5749,2.631378,4.7062,2.631378 +L 4.7062,2.631378,5.8301,2.631378 +L 5.8301,2.631378,6.9614,2.631378 +L 6.9614,2.631378,6.9614,1.754342 +L 6.9614,1.754342,6.9614,0.877076 +L 6.9614,0.877076,6.9614,0.000062 +L 6.9614,0.000062,5.8301,0.000062 +L 5.8301,0.000062,4.7062,0.000062 +L 4.7062,0.000062,3.5749,0.000062 +L 4.8564,0.533847,4.8564,1.066439 +L 4.8564,1.066439,4.8564,1.590416 +L 4.8564,1.590416,4.8564,2.097484 +L 5.711,0.533847,5.711,1.066439 +L 5.711,1.066439,5.711,1.590416 +L 5.711,1.590416,5.711,2.097484 +L 0.6153,1.868752,0.4609,2.315074 +L 0.4609,2.315074,0.3208,2.744332 +L 0.3208,2.744332,0.1915,3.165228 +L 2.2965,2.097484,2.2965,2.467605 +L 2.2965,2.467605,2.2965,2.820697 +L 2.2965,2.820697,2.2965,3.165228 +L 3.1476,4.233158,3.1476,5.644066 +L 3.1476,5.644066,3.1476,7.055095 +L 3.1476,7.055095,3.1476,8.466122 +L 3.1476,8.466122,3.8477,8.466122 +L 3.8477,8.466122,4.5552,8.466122 +L 4.5552,8.466122,5.2802,8.466122 +L 3.5749,4.233158,3.8477,4.233158 +L 3.8477,4.233158,4.1314,4.233158 +L 4.1314,4.233158,4.426,4.233158 +L 4.426,4.233158,4.426,4.766921 +L 4.426,4.766921,4.426,5.30086 +L 4.426,5.30086,4.426,5.834818 +L 4.426,5.834818,4.1314,5.834818 +L 4.1314,5.834818,3.8477,5.834818 +L 3.8477,5.834818,3.5749,5.834818 +L 1.8972,4.766921,1.5957,5.182203 +L 1.5957,5.182203,1.4836,5.59744 +L 1.4836,5.59744,1.4699,6.368592 +L 1.4699,6.368592,0.8531,6.388534 +L 0.8531,6.388534,0.5173,6.526903 +L 0.5173,6.526903,0.1915,6.902562 +L 0.1915,6.902562,0.6153,7.615837 +L 0.6153,7.615837,1.0426,8.312234 +L 1.0426,8.312234,1.4699,8.999984 +L 1.4699,8.999984,1.7428,8.655431 +L 1.7428,8.655431,2.0163,8.30234 +L 2.0163,8.30234,2.2965,7.932261 +L 6.1348,4.766921,6.5411,4.766921 +L 6.5411,4.766921,6.9614,4.766921 +L 6.9614,4.766921,7.3887,4.766921 +L 5.0704,5.834818,5.1335,6.204808 +L 5.1335,6.204808,5.1997,6.558031 +L 5.1997,6.558031,5.2802,6.902562 +L 5.2802,6.902562,4.7062,6.902562 +L 4.7062,6.902562,4.1314,6.902562 +L 4.1314,6.902562,3.5749,6.902562 +L 5.711,5.834818,6.1488,6.663805 +L 6.1488,6.663805,6.359,7.484517 +L 6.359,7.484517,6.531,8.999984 + +[閑] 48 +L 0.2177,0.000062,0.2177,2.821999 +L 0.2177,2.821999,0.2177,5.644066 +L 0.2177,5.644066,0.2177,8.466122 +L 0.2177,8.466122,1.0513,8.466122 +L 1.0513,8.466122,1.8957,8.466122 +L 1.8957,8.466122,2.7535,8.466122 +L 2.7535,8.466122,2.7535,7.778307 +L 2.7535,7.778307,2.7535,7.081998 +L 2.7535,7.081998,2.7535,6.368592 +L 2.7535,6.368592,2.0495,6.368592 +L 2.0495,6.368592,1.3493,6.368592 +L 1.3493,6.368592,0.6485,6.368592 +L 6.1368,0.000062,6.4135,0.000062 +L 6.4135,0.000062,6.6941,0.000062 +L 6.6941,0.000062,6.9918,0.000062 +L 6.9918,0.000062,6.9918,2.134249 +L 6.9918,2.134249,6.9918,4.25993 +L 6.9918,4.25993,6.9918,6.368592 +L 6.9918,6.368592,6.1368,6.368592 +L 6.1368,6.368592,5.2931,6.368592 +L 5.2931,6.368592,4.4592,6.368592 +L 4.4592,6.368592,4.4592,7.081998 +L 4.4592,7.081998,4.4592,7.778307 +L 4.4592,7.778307,4.4592,8.466122 +L 4.4592,8.466122,5.2931,8.466122 +L 5.2931,8.466122,6.1368,8.466122 +L 6.1368,8.466122,6.9918,8.466122 +L 6.9918,8.466122,6.9918,7.959121 +L 6.9918,7.959121,6.9918,7.435001 +L 6.9918,7.435001,6.9918,6.902562 +L 3.6046,0.533847,3.5205,1.600344 +L 3.5205,1.600344,3.4543,2.658161 +L 3.4543,2.658161,3.3913,3.699188 +L 3.3913,3.699188,2.5997,3.01135 +L 2.5997,3.01135,1.8117,2.315074 +L 1.8117,2.315074,1.0446,1.601734 +L 5.7095,1.601734,4.3054,3.427988 +L 4.3054,3.427988,3.2788,4.008607 +L 3.2788,4.008607,1.4649,4.233158 +L 4.4592,4.233158,4.8658,4.233158 +L 4.8658,4.233158,5.2857,4.233158 +L 5.2857,4.233158,5.7095,4.233158 +L 0.6485,7.398335,1.1949,7.398335 +L 1.1949,7.398335,1.7521,7.398335 +L 1.7521,7.398335,2.323,7.398335 +L 4.8549,7.398335,5.4157,7.398335 +L 5.4157,7.398335,5.9866,7.398335 +L 5.9866,7.398335,6.5641,7.398335 + +[陥] 45 +L 0.2165,0.000062,0.2165,2.821999 +L 0.2165,2.821999,0.2165,5.644066 +L 0.2165,5.644066,0.2165,8.466122 +L 0.2165,8.466122,0.7731,8.466122 +L 0.7731,8.466122,1.3478,8.466122 +L 1.3478,8.466122,1.9219,8.466122 +L 1.9219,8.466122,1.4806,6.097415 +L 1.4806,6.097415,1.7012,4.796692 +L 1.7012,4.796692,1.9219,2.631378 +L 1.9219,2.631378,1.6315,2.467605 +L 1.6315,2.467605,1.3478,2.286726 +L 1.3478,2.286726,1.0708,2.097484 +L 3.2111,0.000062,3.2111,1.781081 +L 3.2111,1.781081,3.2111,3.545212 +L 3.2111,3.545212,3.2111,5.30086 +L 4.4577,0.000062,4.4577,1.781081 +L 4.4577,1.781081,4.4577,3.545212 +L 4.4577,3.545212,4.4577,5.30086 +L 4.4577,5.30086,4.885,5.403951 +L 4.885,5.403951,5.3126,5.490101 +L 5.3126,5.490101,5.7434,5.567855 +L 5.7434,5.567855,6.0127,6.28114 +L 6.0127,6.28114,6.2964,6.977449 +L 6.2964,6.977449,6.5945,7.665265 +L 6.5945,7.665265,5.589,7.665265 +L 5.589,7.665265,4.5876,7.665265 +L 4.5876,7.665265,3.6031,7.665265 +L 3.6031,7.665265,3.1758,7.055095 +L 3.1758,7.055095,2.7628,6.444924 +L 2.7628,6.444924,2.3527,5.834818 +L 4.885,0.000062,5.589,0.000062 +L 5.589,0.000062,6.2964,0.000062 +L 6.2964,0.000062,7.0215,0.000062 +L 7.0215,0.000062,7.0215,0.877076 +L 7.0215,0.877076,7.0215,1.754342 +L 7.0215,1.754342,7.0215,2.631378 +L 7.0215,2.631378,6.2964,2.631378 +L 6.2964,2.631378,5.589,2.631378 +L 5.589,2.631378,4.885,2.631378 +L 7.0215,3.165228,7.0215,3.888496 +L 7.0215,3.888496,7.0215,4.603149 +L 7.0215,4.603149,7.0215,5.30086 +L 7.0215,5.30086,6.7276,5.30086 +L 6.7276,5.30086,6.4436,5.30086 +L 6.4436,5.30086,6.1672,5.30086 + +[含] 30 +L 1.5285,0.000062,1.5285,0.877076 +L 1.5285,0.877076,1.5285,1.754342 +L 1.5285,1.754342,1.5285,2.631378 +L 1.5285,2.631378,2.5088,2.734547 +L 2.5088,2.734547,3.4933,2.820697 +L 3.4933,2.820697,4.4912,2.89833 +L 4.4912,2.89833,4.7647,3.432246 +L 4.7647,3.432246,5.0446,3.966096 +L 5.0446,3.966096,5.3423,4.500144 +L 5.3423,4.500144,4.0607,4.603149 +L 4.0607,4.603149,2.789,4.689364 +L 2.789,4.689364,1.5285,4.766921 +L 1.9274,0.000062,3.1886,0.000062 +L 3.1886,0.000062,4.4597,0.000062 +L 4.4597,0.000062,5.7419,0.000062 +L 5.7419,0.000062,5.7419,0.877076 +L 5.7419,0.877076,5.7419,1.754342 +L 5.7419,1.754342,5.7419,2.631378 +L 5.7419,2.631378,5.4649,2.631378 +L 5.4649,2.631378,5.192,2.631378 +L 5.192,2.631378,4.915,2.631378 +L 0.4634,5.834818,1.5109,6.901205 +L 1.5109,6.901205,2.5683,7.959121 +L 2.5683,7.959121,3.6369,8.999984 +L 3.6369,8.999984,4.7647,7.959121 +L 4.7647,7.959121,5.8957,6.901205 +L 5.8957,6.901205,7.02,5.834818 +L 2.355,6.368592,3.2061,6.368592 +L 3.2061,6.368592,4.0607,6.368592 +L 4.0607,6.368592,4.915,6.368592 + +[頑] 63 +L 3.8771,0.000062,4.213,0.370053 +L 4.213,0.370053,4.5597,0.723144 +L 4.5597,0.723144,4.917,1.067807 +L 7.4811,0.000062,7.1831,0.370053 +L 7.1831,0.370053,6.9029,0.723144 +L 6.9029,0.723144,6.6265,1.067807 +L 0.2797,0.533847,1.0191,2.487263 +L 1.0191,2.487263,1.1553,4.313606 +L 1.1553,4.313606,1.1032,6.368592 +L 1.1032,6.368592,0.8296,6.368592 +L 0.8296,6.368592,0.5529,6.368592 +L 0.5529,6.368592,0.2797,6.368592 +L 2.3847,1.601734,2.3847,3.202015 +L 2.3847,3.202015,2.3847,4.793802 +L 2.3847,4.793802,2.3847,6.368592 +L 2.3847,6.368592,2.087,6.368592 +L 2.087,6.368592,1.8033,6.368592 +L 1.8033,6.368592,1.534,6.368592 +L 2.812,1.601734,3.0855,1.601734 +L 3.0855,1.601734,3.3692,1.601734 +L 3.3692,1.601734,3.6631,1.601734 +L 3.6631,1.601734,3.6631,1.944963 +L 3.6631,1.944963,3.6631,2.288159 +L 3.6631,2.288159,3.6631,2.631378 +L 4.4897,2.097484,4.4897,3.699188 +L 4.4897,3.699188,4.4897,5.30086 +L 4.4897,5.30086,4.4897,6.902562 +L 4.4897,6.902562,5.1061,7.128515 +L 5.1061,7.128515,5.4423,7.464728 +L 5.4423,7.464728,5.7681,8.199148 +L 5.7681,8.199148,5.2042,8.30234 +L 5.2042,8.30234,4.6441,8.388478 +L 4.6441,8.388478,4.0939,8.466122 +L 4.917,2.097484,5.6178,2.097484 +L 5.6178,2.097484,6.3253,2.097484 +L 6.3253,2.097484,7.0538,2.097484 +L 7.0538,2.097484,7.0538,2.631378 +L 7.0538,2.631378,7.0538,3.165228 +L 7.0538,3.165228,7.0538,3.699188 +L 7.0538,3.699188,6.3253,3.699188 +L 6.3253,3.699188,5.6178,3.699188 +L 5.6178,3.699188,4.917,3.699188 +L 7.0538,4.233158,7.0538,4.603149 +L 7.0538,4.603149,7.0538,4.95624 +L 7.0538,4.95624,7.0538,5.30086 +L 7.0538,5.30086,6.3253,5.30086 +L 6.3253,5.30086,5.6178,5.30086 +L 5.6178,5.30086,4.917,5.30086 +L 7.0538,5.834818,7.0538,6.204808 +L 7.0538,6.204808,7.0538,6.558031 +L 7.0538,6.558031,7.0538,6.902562 +L 7.0538,6.902562,6.6265,6.902562 +L 6.6265,6.902562,6.1989,6.902562 +L 6.1989,6.902562,5.7681,6.902562 +L 2.812,6.368592,3.0855,6.368592 +L 3.0855,6.368592,3.3692,6.368592 +L 3.3692,6.368592,3.6631,6.368592 +L 0.6759,8.466122,1.534,8.466122 +L 1.534,8.466122,2.3847,8.466122 +L 2.3847,8.466122,3.2393,8.466122 +L 6.1989,8.466122,6.6265,8.466122 +L 6.6265,8.466122,7.0538,8.466122 +L 7.0538,8.466122,7.4811,8.466122 + +[企] 24 +L 0.2817,0.000062,0.7024,0.000062 +L 0.7024,0.000062,1.1328,0.000062 +L 1.1328,0.000062,1.5601,0.000062 +L 1.5601,0.000062,1.5601,1.410992 +L 1.5601,1.410992,1.5601,2.821999 +L 1.5601,2.821999,1.5601,4.233158 +L 1.9913,0.000062,2.5377,0.000062 +L 2.5377,0.000062,3.0942,0.000062 +L 3.0942,0.000062,3.6651,0.000062 +L 3.6651,0.000062,3.6651,2.134249 +L 3.6651,2.134249,3.6651,4.25993 +L 3.6651,4.25993,3.6651,6.368592 +L 4.0924,0.000062,5.0699,0.000062 +L 5.0699,0.000062,6.0538,0.000062 +L 6.0538,0.000062,7.0485,0.000062 +L 4.0924,3.699188,4.7932,3.699188 +L 4.7932,3.699188,5.5074,3.699188 +L 5.5074,3.699188,6.2292,3.699188 +L 0.2817,5.30086,1.4064,6.548049 +L 1.4064,6.548049,2.5377,7.778307 +L 2.5377,7.778307,3.6651,8.999984 +L 3.6651,8.999984,4.7932,7.778307 +L 4.7932,7.778307,5.9277,6.548049 +L 5.9277,6.548049,7.0485,5.30086 + +[奇] 36 +L 4.5501,0.000062,4.956,0.000062 +L 4.956,0.000062,5.3766,0.000062 +L 5.3766,0.000062,5.8004,0.000062 +L 5.8004,0.000062,5.8004,1.600344 +L 5.8004,1.600344,5.8004,3.19212 +L 5.8004,3.19212,5.8004,4.766921 +L 5.8004,4.766921,3.9718,4.766921 +L 3.9718,4.766921,2.1404,4.766921 +L 2.1404,4.766921,0.3083,4.766921 +L 1.5621,1.601734,1.5621,2.134249 +L 1.5621,2.134249,1.5621,2.658161 +L 1.5621,2.658161,1.5621,3.165228 +L 1.5621,3.165228,2.2661,3.165228 +L 2.2661,3.165228,2.9736,3.165228 +L 2.9736,3.165228,3.6955,3.165228 +L 3.6955,3.165228,3.6955,2.658161 +L 3.6955,2.658161,3.6955,2.134249 +L 3.6955,2.134249,3.6955,1.601734 +L 3.6955,1.601734,2.9736,1.601734 +L 2.9736,1.601734,2.2661,1.601734 +L 2.2661,1.601734,1.5621,1.601734 +L 6.2277,4.766921,6.5041,4.766921 +L 6.5041,4.766921,6.7878,4.766921 +L 6.7878,4.766921,7.0855,4.766921 +L 1.1593,5.834818,1.7901,5.902612 +L 1.7901,5.902612,2.3365,6.377151 +L 2.3365,6.377151,3.2717,7.665265 +L 3.2717,7.665265,2.4171,7.76839 +L 2.4171,7.76839,1.5695,7.854595 +L 1.5695,7.854595,0.7394,7.932261 +L 5.8004,5.834818,4.6061,7.172404 +L 4.6061,7.172404,4.0597,7.99292 +L 4.0597,7.99292,3.6955,8.999984 +L 4.5501,7.932261,5.2506,7.932261 +L 5.2506,7.932261,5.9542,7.932261 +L 5.9542,7.932261,6.655,7.932261 + +[岐] 42 +L 3.2978,0.000062,4.0022,0.713271 +L 4.0022,0.713271,4.7023,1.409646 +L 4.7023,1.409646,5.4063,2.097484 +L 5.4063,2.097484,4.503,3.639865 +L 4.503,3.639865,4.1735,4.470373 +L 4.1735,4.470373,4.1248,5.30086 +L 4.1248,5.30086,4.5486,5.30086 +L 4.5486,5.30086,4.979,5.30086 +L 4.979,5.30086,5.4063,5.30086 +L 5.4063,5.30086,5.2662,6.912457 +L 5.2662,6.912457,4.7584,7.388528 +L 4.7584,7.388528,3.7286,7.398335 +L 7.5432,0.000062,6.9614,0.533847 +L 6.9614,0.533847,6.394,1.067807 +L 6.394,1.067807,5.8336,1.601734 +L 0.3141,1.601734,0.3141,3.382764 +L 0.3141,3.382764,0.3141,5.146904 +L 0.3141,5.146904,0.3141,6.902562 +L 0.734,1.601734,1.0142,1.601734 +L 1.0142,1.601734,1.2944,1.601734 +L 1.2944,1.601734,1.5925,1.601734 +L 1.5925,1.601734,1.5925,4.079062 +L 1.5925,4.079062,1.5925,6.548049 +L 1.5925,6.548049,1.5925,8.999984 +L 2.0198,1.601734,2.2926,1.601734 +L 2.2926,1.601734,2.5728,1.601734 +L 2.5728,1.601734,2.874,1.601734 +L 2.874,1.601734,2.874,3.382764 +L 2.874,3.382764,2.874,5.146904 +L 2.874,5.146904,2.874,6.902562 +L 5.8336,2.631378,6.2574,3.432246 +L 6.2574,3.432246,6.6847,4.233158 +L 6.6847,4.233158,7.1124,5.033896 +L 7.1124,5.033896,6.6847,5.137021 +L 6.6847,5.137021,6.2574,5.223192 +L 6.2574,5.223192,5.8336,5.30086 +L 5.8336,7.398335,5.5324,7.813594 +L 5.5324,7.813594,5.4207,8.22881 +L 5.4207,8.22881,5.4063,8.999984 +L 6.2574,7.398335,6.6847,7.398335 +L 6.6847,7.398335,7.1124,7.398335 +L 7.1124,7.398335,7.5432,7.398335 + +[幾] 63 +L 0.3403,0.000062,1.0933,1.247242 +L 1.0933,1.247242,1.4996,2.299411 +L 1.4996,2.299411,1.6222,3.699188 +L 1.6222,3.699188,1.1914,3.699188 +L 1.1914,3.699188,0.7711,3.699188 +L 0.7711,3.699188,0.3403,3.699188 +L 2.8725,0.000062,3.9478,0.405384 +L 3.9478,0.405384,4.5015,0.75147 +L 4.5015,0.75147,5.0094,1.334803 +L 5.0094,1.334803,4.5821,2.134249 +L 4.5821,2.134249,4.1544,2.925135 +L 4.1544,2.925135,3.7271,3.699188 +L 3.7271,3.699188,3.1531,3.699188 +L 3.1531,3.699188,2.5997,3.699188 +L 2.5997,3.699188,2.0495,3.699188 +L 6.6867,0.000062,6.2594,0.370053 +L 6.2594,0.370053,5.843,0.723144 +L 5.843,0.723144,5.4367,1.067807 +L 5.4367,1.067807,5.843,1.600344 +L 5.843,1.600344,6.2594,2.124387 +L 6.2594,2.124387,6.6867,2.631378 +L 7.3277,0.000062,7.3872,0.370053 +L 7.3872,0.370053,7.4611,0.723144 +L 7.4611,0.723144,7.5382,1.067807 +L 3.2963,1.067807,2.8725,1.410992 +L 2.8725,1.410992,2.4522,1.754342 +L 2.4522,1.754342,2.0495,2.097484 +L 4.5821,3.699188,4.2634,4.371516 +L 4.2634,4.371516,4.0427,5.162458 +L 4.0427,5.162458,3.7271,5.834818 +L 3.7271,5.834818,2.7184,5.40822 +L 2.7184,5.40822,1.3073,5.295288 +L 1.3073,5.295288,0.3403,5.30086 +L 5.0094,3.699188,5.4367,3.802291 +L 5.4367,3.802291,5.864,3.888496 +L 5.864,3.888496,6.2913,3.966096 +L 6.2913,3.966096,5.6188,5.813628 +L 5.6188,5.813628,5.6188,7.457636 +L 5.6188,7.457636,6.2913,8.999984 +L 6.6867,3.699188,6.9599,3.699188 +L 6.9599,3.699188,7.2436,3.699188 +L 7.2436,3.699188,7.5382,3.699188 +L 6.4734,5.30086,6.6867,5.490101 +L 6.6867,5.490101,6.9004,5.67097 +L 6.9004,5.67097,7.1179,5.834818 +L 7.1179,5.834818,6.8377,6.204808 +L 6.8377,6.204808,6.5641,6.558031 +L 6.5641,6.558031,6.2913,6.902562 +L 6.2913,6.902562,6.5641,7.245781 +L 6.5641,7.245781,6.8377,7.589066 +L 6.8377,7.589066,7.1179,7.932261 +L 1.1914,5.834818,1.4155,6.714678 +L 1.4155,6.714678,1.5416,7.764188 +L 1.5416,7.764188,2.0495,8.999984 +L 2.4452,6.368592,2.302,6.558031 +L 2.302,6.558031,2.1721,6.738692 +L 2.1721,6.738692,2.0495,6.902562 +L 2.0495,6.902562,2.323,7.245781 +L 2.323,7.245781,2.5958,7.589066 +L 2.5958,7.589066,2.8725,7.932261 +L 3.7271,6.368592,3.7271,7.245781 +L 3.7271,7.245781,3.7271,8.122905 +L 3.7271,8.122905,3.7271,8.999984 + +[忌] 36 +L 0.3703,0.000062,0.6438,0.713271 +L 0.6438,0.713271,0.9205,1.409646 +L 0.9205,1.409646,1.1934,2.097484 +L 2.9029,0.000062,2.6017,0.453411 +L 2.6017,0.453411,2.4893,1.135579 +L 2.4893,1.135579,2.4753,2.631378 +L 3.3302,0.000062,4.1638,0.000062 +L 4.1638,0.000062,5.0079,0.000062 +L 5.0079,0.000062,5.866,0.000062 +L 5.866,0.000062,5.866,0.370053 +L 5.866,0.370053,5.866,0.723144 +L 5.866,0.723144,5.866,1.067807 +L 7.5748,0.80092,7.2775,1.247242 +L 7.2775,1.247242,6.9938,1.676599 +L 6.9938,1.676599,6.7167,2.097484 +L 4.6118,1.868752,4.4615,2.134249 +L 4.4615,2.134249,4.3141,2.391263 +L 4.3141,2.391263,4.1848,2.631378 +L 1.6207,3.699188,1.3233,4.154069 +L 1.3233,4.154069,1.2109,4.846022 +L 1.2109,4.846022,1.1934,6.368592 +L 1.1934,6.368592,2.752,6.368592 +L 2.752,6.368592,4.3074,6.368592 +L 4.3074,6.368592,5.866,6.368592 +L 5.866,6.368592,5.866,7.081998 +L 5.866,7.081998,5.866,7.778307 +L 5.866,7.778307,5.866,8.466122 +L 5.866,8.466122,4.3074,8.466122 +L 4.3074,8.466122,2.752,8.466122 +L 2.752,8.466122,1.1934,8.466122 +L 2.0518,3.699188,3.6066,3.699188 +L 3.6066,3.699188,5.1651,3.699188 +L 5.1651,3.699188,6.7167,3.699188 +L 6.7167,3.699188,6.7167,4.233158 +L 6.7167,4.233158,6.7167,4.766921 +L 6.7167,4.766921,6.7167,5.30086 + +[既] 48 +L 3.542,0.000062,4.9083,2.108801 +L 4.9083,2.108801,5.5212,3.344674 +L 5.5212,3.344674,5.8922,4.766921 +L 5.8922,4.766921,5.4649,4.766921 +L 5.4649,4.766921,5.0376,4.766921 +L 5.0376,4.766921,4.6138,4.766921 +L 4.6138,4.766921,4.6138,6.014188 +L 4.6138,6.014188,4.6138,7.24438 +L 4.6138,7.24438,4.6138,8.466122 +L 4.6138,8.466122,5.5874,8.466122 +L 5.5874,8.466122,6.5751,8.466122 +L 6.5751,8.466122,7.5698,8.466122 +L 6.3233,0.000062,6.3233,1.066439 +L 6.3233,1.066439,6.3233,2.124387 +L 6.3233,2.124387,6.3233,3.165228 +L 6.7433,0.000062,7.0234,0.000062 +L 7.0234,0.000062,7.297,0.000062 +L 7.297,0.000062,7.5698,0.000062 +L 7.5698,0.000062,7.5698,0.533847 +L 7.5698,0.533847,7.5698,1.067807 +L 7.5698,1.067807,7.5698,1.601734 +L 0.7999,1.067807,0.7999,3.545212 +L 0.7999,3.545212,0.7999,6.014188 +L 0.7999,6.014188,0.7999,8.466122 +L 0.7999,8.466122,1.5036,8.466122 +L 1.5036,8.466122,2.2111,8.466122 +L 2.2111,8.466122,2.9326,8.466122 +L 2.9326,8.466122,2.9326,7.24438 +L 2.9326,7.24438,2.9326,6.014188 +L 2.9326,6.014188,2.9326,4.766921 +L 2.9326,4.766921,2.3547,4.766921 +L 2.3547,4.766921,1.7838,4.766921 +L 1.7838,4.766921,1.2237,4.766921 +L 1.437,1.067807,1.9312,1.51415 +L 1.9312,1.51415,2.4251,1.943529 +L 2.4251,1.943529,2.9326,2.36448 +L 2.9326,2.36448,2.7823,2.631378 +L 2.7823,2.631378,2.6384,2.89833 +L 2.6384,2.89833,2.5088,3.165228 +L 6.3233,4.766921,6.3233,5.833286 +L 6.3233,5.833286,6.3233,6.891223 +L 6.3233,6.891223,6.3233,7.932261 +L 6.7433,4.766921,7.0234,4.766921 +L 7.0234,4.766921,7.297,4.766921 +L 7.297,4.766921,7.5698,4.766921 +L 1.2237,6.902562,1.6545,6.902562 +L 1.6545,6.902562,2.0783,6.902562 +L 2.0783,6.902562,2.5088,6.902562 + +[棋] 57 +L 1.6807,0.000062,1.6037,1.600344 +L 1.6037,1.600344,1.5305,3.19212 +L 1.5305,3.19212,1.4709,4.766921 +L 1.4709,4.766921,1.1032,4.069276 +L 1.1032,4.069276,0.7456,3.354536 +L 0.7456,3.354536,0.4023,2.631378 +L 3.1486,0.000062,3.4918,0.370053 +L 3.4918,0.370053,3.8522,0.723144 +L 3.8522,0.723144,4.2165,1.067807 +L 7.1726,0.000062,6.8787,0.370053 +L 6.8787,0.370053,6.5981,0.723144 +L 6.5981,0.723144,6.318,1.067807 +L 2.9346,2.097484,3.3619,2.097484 +L 3.3619,2.097484,3.7857,2.097484 +L 3.7857,2.097484,4.2165,2.097484 +L 4.2165,2.097484,4.2165,3.699188 +L 4.2165,3.699188,4.2165,5.30086 +L 4.2165,5.30086,4.2165,6.902562 +L 4.2165,6.902562,3.9997,7.081998 +L 3.9997,7.081998,3.7857,7.24438 +L 3.7857,7.24438,3.5759,7.398335 +L 3.5759,7.398335,2.9346,7.055095 +L 2.9346,7.055095,2.3041,6.711876 +L 2.3041,6.711876,1.6807,6.368592 +L 1.6807,6.368592,1.8527,5.57776 +L 1.8527,5.57776,2.1784,5.024023 +L 2.1784,5.024023,2.9346,4.233158 +L 4.6441,2.097484,5.194,2.097484 +L 5.194,2.097484,5.7471,2.097484 +L 5.7471,2.097484,6.318,2.097484 +L 6.318,2.097484,6.318,2.820697 +L 6.318,2.820697,6.318,3.535306 +L 6.318,3.535306,6.318,4.233158 +L 6.318,4.233158,5.7471,4.233158 +L 5.7471,4.233158,5.194,4.233158 +L 5.194,4.233158,4.6441,4.233158 +L 6.7491,2.097484,7.0254,2.097484 +L 7.0254,2.097484,7.3056,2.097484 +L 7.3056,2.097484,7.6037,2.097484 +L 6.318,4.766921,6.318,5.137021 +L 6.318,5.137021,6.318,5.490101 +L 6.318,5.490101,6.318,5.834818 +L 6.318,5.834818,5.7471,5.834818 +L 5.7471,5.834818,5.194,5.834818 +L 5.194,5.834818,4.6441,5.834818 +L 6.318,6.635676,5.3796,7.460525 +L 5.3796,7.460525,4.5636,7.743064 +L 4.5636,7.743064,4.2165,8.999984 +L 0.4023,6.902562,1.0226,6.920885 +L 1.0226,6.920885,1.3518,7.049534 +L 1.3518,7.049534,1.6807,7.398335 +L 1.6807,7.398335,1.6807,7.932261 +L 1.6807,7.932261,1.6807,8.466122 +L 1.6807,8.466122,1.6807,8.999984 +L 6.7491,7.398335,6.444,7.813594 +L 6.444,7.813594,6.3355,8.22881 +L 6.3355,8.22881,6.318,8.999984 + +[棄] 45 +L 3.8196,0.000062,3.7355,0.713271 +L 3.7355,0.713271,3.6686,1.409646 +L 3.6686,1.409646,3.6056,2.097484 +L 3.6056,2.097484,2.5412,1.590416 +L 2.5412,1.590416,1.4796,1.066439 +L 1.4796,1.066439,0.4288,0.533847 +L 6.355,0.533847,4.2885,2.026866 +L 4.2885,2.026866,2.6179,2.485829 +L 2.6179,2.485829,0.4288,2.631378 +L 4.6461,2.631378,5.4972,2.631378 +L 5.4972,2.631378,6.355,2.631378 +L 6.355,2.631378,7.2061,2.631378 +L 3.8196,3.165228,3.4693,3.540987 +L 3.4693,3.540987,3.028,3.679399 +L 3.028,3.679399,2.11,3.699188 +L 2.11,3.699188,1.8757,5.029791 +L 1.8757,5.029791,1.2729,5.343315 +L 1.2729,5.343315,0.4288,5.30086 +L 4.2469,3.699188,3.2872,5.103124 +L 3.2872,5.103124,2.1139,6.032467 +L 2.1139,6.032467,0.8281,6.368592 +L 4.6461,3.699188,4.919,3.699188 +L 4.919,3.699188,5.1992,3.699188 +L 5.1992,3.699188,5.4972,3.699188 +L 5.4972,3.699188,4.4321,5.642643 +L 4.4321,5.642643,2.7124,6.28114 +L 2.7124,6.28114,2.5412,7.665265 +L 2.5412,7.665265,1.8337,7.76839 +L 1.8337,7.76839,1.1328,7.854595 +L 1.1328,7.854595,0.4288,7.932261 +L 5.9245,5.30086,5.6233,5.716152 +L 5.6233,5.716152,5.5147,6.131388 +L 5.5147,6.131388,5.4972,6.902562 +L 5.4972,6.902562,5.0734,6.902562 +L 5.0734,6.902562,4.6528,6.902562 +L 4.6528,6.902562,4.2469,6.902562 +L 6.355,5.30086,6.6247,5.30086 +L 6.6247,5.30086,6.9084,5.30086 +L 6.9084,5.30086,7.2061,5.30086 +L 6.7756,6.368592,5.5704,7.663974 +L 5.5704,7.663974,4.4356,7.90827 +L 4.4356,7.90827,2.965,7.932261 +L 6.355,7.932261,6.6247,7.932261 +L 6.6247,7.932261,6.9084,7.932261 +L 6.9084,7.932261,7.2061,7.932261 + +[祈] 36 +L 1.2893,0.000062,1.2052,1.410992 +L 1.2052,1.410992,1.1348,2.821999 +L 1.1348,2.821999,1.0753,4.233158 +L 1.0753,4.233158,0.8585,4.069276 +L 0.8585,4.069276,0.648,3.888496 +L 0.648,3.888496,0.4347,3.699188 +L 5.9542,0.000062,5.9542,1.781081 +L 5.9542,1.781081,5.9542,3.545212 +L 5.9542,3.545212,5.9542,5.30086 +L 5.9542,5.30086,5.233,5.30086 +L 5.233,5.30086,4.522,5.30086 +L 4.522,5.30086,3.818,5.30086 +L 3.818,5.30086,3.7652,3.429357 +L 3.7652,3.429357,3.4328,2.15117 +L 3.4328,2.15117,2.5673,0.533847 +L 2.5673,3.699188,2.1404,4.069276 +L 2.1404,4.069276,1.7131,4.422346 +L 1.7131,4.422346,1.2893,4.766921 +L 1.7131,5.30086,1.9894,5.937944 +L 1.9894,5.937944,2.2731,6.558031 +L 2.2731,6.558031,2.5673,7.169515 +L 2.5673,7.169515,1.8423,7.245781 +L 1.8423,7.245781,1.1348,7.32209 +L 1.1348,7.32209,0.4347,7.398335 +L 6.3815,5.30086,6.7843,5.30086 +L 6.7843,5.30086,7.2046,5.30086 +L 7.2046,5.30086,7.6284,5.30086 +L 3.818,5.834818,3.818,6.548049 +L 3.818,6.548049,3.818,7.24438 +L 3.818,7.24438,3.818,7.932261 +L 3.818,7.932261,5.4639,8.070696 +L 5.4639,8.070696,6.4375,8.327732 +L 6.4375,8.327732,7.2046,8.466122 +L 1.2893,7.932261,1.2893,8.30234 +L 1.2893,8.30234,1.2893,8.655431 +L 1.2893,8.655431,1.2893,8.999984 + +[軌] 57 +L 1.7151,0.000062,1.6972,0.771248 +L 1.6972,0.771248,1.5956,1.186452 +L 1.5956,1.186452,1.3154,1.601734 +L 1.3154,1.601734,1.0216,1.601734 +L 1.0216,1.601734,0.7414,1.601734 +L 0.7414,1.601734,0.4612,1.601734 +L 3.4239,0.000062,4.4186,1.961862 +L 4.4186,1.961862,4.7023,3.593184 +L 4.7023,3.593184,4.7023,5.834818 +L 4.7023,5.834818,4.4116,6.024038 +L 4.4116,6.024038,4.1248,6.204808 +L 4.1248,6.204808,3.8512,6.368592 +L 6.3835,0.000062,6.3835,2.134249 +L 6.3835,2.134249,6.3835,4.25993 +L 6.3835,4.25993,6.3835,6.368592 +L 6.3835,6.368592,5.0144,6.635676 +L 5.0144,6.635676,4.6711,7.487297 +L 4.6711,7.487297,4.7023,8.999984 +L 6.8073,0.000062,7.0875,0.000062 +L 7.0875,0.000062,7.3677,0.000062 +L 7.3677,0.000062,7.6622,0.000062 +L 7.6622,0.000062,7.6622,0.533847 +L 7.6622,0.533847,7.6622,1.067807 +L 7.6622,1.067807,7.6622,1.601734 +L 2.142,1.601734,1.8653,2.134249 +L 1.8653,2.134249,1.5925,2.658161 +L 1.5925,2.658161,1.3154,3.165228 +L 1.3154,3.165228,1.0216,3.165228 +L 1.0216,3.165228,0.7414,3.165228 +L 0.7414,3.165228,0.4612,3.165228 +L 0.4612,3.165228,0.4612,4.233158 +L 0.4612,4.233158,0.4612,5.30086 +L 0.4612,5.30086,0.4612,6.368592 +L 0.4612,6.368592,1.0773,6.398363 +L 1.0773,6.398363,1.403,6.606015 +L 1.403,6.606015,1.7151,7.169515 +L 1.7151,7.169515,1.403,7.706157 +L 1.403,7.706157,1.0773,7.903957 +L 1.0773,7.903957,0.4612,7.932261 +L 2.142,3.165228,1.7151,3.699188 +L 1.7151,3.699188,1.2944,4.233158 +L 1.2944,4.233158,0.8917,4.766921 +L 2.7795,3.165228,2.8429,3.699188 +L 2.8429,3.699188,2.9126,4.233158 +L 2.9126,4.233158,2.9966,4.766921 +L 2.9966,4.766921,2.3805,4.796692 +L 2.3805,4.796692,2.0475,5.004355 +L 2.0475,5.004355,1.7151,5.567855 +L 1.7151,5.567855,2.0475,6.131388 +L 2.0475,6.131388,2.3805,6.33904 +L 2.3805,6.33904,2.9966,6.368592 +L 2.9966,6.368592,2.9966,6.024038 +L 2.9966,6.024038,2.9966,5.67097 +L 2.9966,5.67097,2.9966,5.30086 +L 2.142,7.932261,1.9879,8.30234 +L 1.9879,8.30234,1.8443,8.655431 +L 1.8443,8.655431,1.7151,8.999984 + +[輝] 60 +L 5.5558,0.000062,4.8903,1.601734 +L 4.8903,1.601734,3.5205,1.957605 +L 3.5205,1.957605,2.3857,1.601734 +L 2.3857,1.601734,2.3051,2.848913 +L 2.3051,2.848913,2.2354,4.079062 +L 2.2354,4.079062,2.172,5.30086 +L 2.172,5.30086,1.8747,5.30086 +L 1.8747,5.30086,1.591,5.30086 +L 1.591,5.30086,1.3139,5.30086 +L 1.3139,5.30086,1.3283,3.590415 +L 1.3283,3.590415,1.1427,2.142665 +L 1.1427,2.142665,0.4628,0.533847 +L 5.9866,1.601734,5.6885,2.134249 +L 5.6885,2.134249,5.4048,2.658161 +L 5.4048,2.658161,5.1355,3.165228 +L 5.1355,3.165228,4.8343,3.165228 +L 4.8343,3.165228,4.5537,3.165228 +L 4.5537,3.165228,4.277,3.165228 +L 4.277,3.165228,4.277,3.888496 +L 4.277,3.888496,4.277,4.603149 +L 4.277,4.603149,4.277,5.30086 +L 4.277,5.30086,5.1246,5.461862 +L 5.1246,5.461862,5.4854,5.978747 +L 5.4854,5.978747,5.5558,6.902562 +L 5.5558,6.902562,4.9845,6.902562 +L 4.9845,6.902562,4.4311,6.902562 +L 4.4311,6.902562,3.8816,6.902562 +L 6.4135,1.601734,6.8408,1.601734 +L 6.8408,1.601734,7.2646,1.601734 +L 7.2646,1.601734,7.6919,1.601734 +L 5.9866,3.165228,5.5558,3.535306 +L 5.5558,3.535306,5.1355,3.888496 +L 5.1355,3.888496,4.7047,4.233158 +L 6.4135,3.165228,6.6867,3.165228 +L 6.6867,3.165228,6.9704,3.165228 +L 6.9704,3.165228,7.2646,3.165228 +L 7.2646,3.165228,7.2646,3.535306 +L 7.2646,3.535306,7.2646,3.888496 +L 7.2646,3.888496,7.2646,4.233158 +L 7.2646,4.233158,6.3508,4.252849 +L 6.3508,4.252849,5.906,4.391261 +L 5.906,4.391261,5.5558,4.766921 +L 5.5558,4.766921,5.906,5.122891 +L 5.906,5.122891,6.3508,5.122891 +L 6.3508,5.122891,7.2646,4.766921 +L 1.7447,5.834818,1.7447,6.901205 +L 1.7447,6.901205,1.7447,7.959121 +L 1.7447,7.959121,1.7447,8.999984 +L 0.8901,6.635676,0.7399,7.081998 +L 0.7399,7.081998,0.5963,7.511421 +L 0.5963,7.511421,0.4628,7.932261 +L 2.5997,6.635676,2.7293,7.081998 +L 2.7293,7.081998,2.8725,7.511421 +L 2.8725,7.511421,3.0231,7.932261 +L 5.9866,6.902562,6.4135,6.902562 +L 6.4135,6.902562,6.8408,6.902562 +L 6.8408,6.902562,7.2646,6.902562 +L 3.8816,8.466122,5.1386,8.466122 +L 5.1386,8.466122,6.4135,8.466122 +L 6.4135,8.466122,7.6919,8.466122 + +[飢] 25 +L 6.4089,0.000062,6.4089,2.821999 +L 6.4089,2.821999,6.4089,5.644066 +L 6.4089,5.644066,6.4089,8.466122 +L 6.4089,8.466122,5.845,8.466122 +L 5.845,8.466122,5.2842,8.466122 +L 5.2842,8.466122,4.7343,8.466122 +L 4.7343,8.466122,4.7168,3.946286 +L 4.7168,3.946286,4.6086,2.028299 +L 4.6086,2.028299,4.3039,1.067807 +L 6.8393,0.000062,7.1164,0.000062 +L 7.1164,0.000062,7.4001,0.000062 +L 7.4001,0.000062,7.6939,0.000062 +L 7.6939,0.000062,7.6939,0.533847 +L 7.6939,0.533847,7.6939,1.067807 +L 7.6939,1.067807,7.6939,1.601734 +L 2.2931,9.000071,0.4929,5.882254 +L 2.2931,9.000071,4.0934,7.200096 +L 1.3933,6.44118,3.5929,6.44118 +L 1.3933,3.000077,3.5929,3.000077 +L 3.5929,6.44118,3.5929,3.000077 +L 1.3933,6.44118,1.3933,0.130102 +L 4.0934,3.000077,4.0934,1.500086 +L 1.3933,4.720645,3.5929,4.720645 +A 0.4929,3.179961,3.179894,270,334.63397 +A 1.456,0.000062,2.63629,10.933074,71.504943 + +[騎] 69 +L 2.2009,0.000062,3.3742,0.611591 +L 3.3742,0.611591,3.5704,2.045188 +L 3.5704,2.045188,3.4825,3.699188 +L 3.4825,3.699188,2.6314,3.699188 +L 2.6314,3.699188,1.7838,3.699188 +L 1.7838,3.699188,0.9502,3.699188 +L 0.9502,3.699188,0.9502,5.29947 +L 0.9502,5.29947,0.9502,6.891223 +L 0.9502,6.891223,0.9502,8.466122 +L 0.9502,8.466122,1.7838,8.466122 +L 1.7838,8.466122,2.6314,8.466122 +L 2.6314,8.466122,3.4825,8.466122 +L 6.0147,0.000062,6.2918,0.000062 +L 6.2918,0.000062,6.5755,0.000062 +L 6.5755,0.000062,6.8732,0.000062 +L 6.8732,0.000062,6.8732,1.600344 +L 6.8732,1.600344,6.8732,3.19212 +L 6.8732,3.19212,6.8732,4.766921 +L 6.8732,4.766921,4.6456,4.905356 +L 4.6456,4.905356,3.4513,5.162458 +L 3.4513,5.162458,2.6314,5.30086 +L 2.6314,5.30086,2.4776,4.95624 +L 2.4776,4.95624,2.3337,4.603149 +L 2.3337,4.603149,2.2009,4.233158 +L 0.5264,0.533847,0.5264,1.247242 +L 0.5264,1.247242,0.5264,1.943529 +L 0.5264,1.943529,0.5264,2.631378 +L 1.3463,1.601734,1.3463,1.944963 +L 1.3463,1.944963,1.3463,2.288159 +L 1.3463,2.288159,1.3463,2.631378 +L 2.2009,1.601734,2.2009,1.944963 +L 2.2009,1.944963,2.2009,2.288159 +L 2.2009,2.288159,2.2009,2.631378 +L 4.3409,1.601734,4.3409,2.134249 +L 4.3409,2.134249,4.3409,2.658161 +L 4.3409,2.658161,4.3409,3.165228 +L 4.3409,3.165228,4.7433,3.165228 +L 4.7433,3.165228,5.1636,3.165228 +L 5.1636,3.165228,5.5874,3.165228 +L 5.5874,3.165228,5.5874,2.658161 +L 5.5874,2.658161,5.5874,2.134249 +L 5.5874,2.134249,5.5874,1.601734 +L 5.5874,1.601734,5.1636,1.601734 +L 5.1636,1.601734,4.7433,1.601734 +L 4.7433,1.601734,4.3409,1.601734 +L 1.5596,5.30086,1.7771,5.567855 +L 1.7771,5.567855,1.9869,5.834818 +L 1.9869,5.834818,2.2009,6.101706 +L 2.2009,6.101706,1.9029,6.368592 +L 1.9029,6.368592,1.6227,6.635676 +L 1.6227,6.635676,1.3463,6.902562 +L 4.3409,5.834818,4.7433,6.367278 +L 4.7433,6.367278,5.1636,6.891223 +L 5.1636,6.891223,5.5874,7.398335 +L 5.5874,7.398335,5.2586,7.774082 +L 5.2586,7.774082,4.9328,7.912472 +L 4.9328,7.912472,4.3409,7.932261 +L 6.8732,5.834818,6.5755,6.204808 +L 6.5755,6.204808,6.2918,6.558031 +L 6.2918,6.558031,6.0147,6.902562 +L 2.6314,6.902562,2.4776,7.245781 +L 2.4776,7.245781,2.3337,7.589066 +L 2.3337,7.589066,2.2009,7.932261 +L 6.0147,7.932261,5.8676,8.30234 +L 5.8676,8.30234,5.7174,8.655431 +L 5.7174,8.655431,5.5874,8.999984 +L 6.442,7.932261,6.7187,7.932261 +L 6.7187,7.932261,7.0024,7.932261 +L 7.0024,7.932261,7.297,7.932261 + +[鬼] 54 +L 0.735,0.000062,1.7648,1.343242 +L 1.7648,1.343242,2.4267,2.559392 +L 2.4267,2.559392,2.6617,4.233158 +L 2.6617,4.233158,2.2344,4.233158 +L 2.2344,4.233158,1.8033,4.233158 +L 1.8033,4.233158,1.3795,4.233158 +L 1.3795,4.233158,1.3795,5.29947 +L 1.3795,5.29947,1.3795,6.357362 +L 1.3795,6.357362,1.3795,7.398335 +L 1.3795,7.398335,2.4446,7.559295 +L 2.4446,7.559295,3.1731,7.97462 +L 3.1731,7.97462,3.9156,8.999984 +L 4.7667,0.000062,4.462,0.512821 +L 4.462,0.512821,4.3531,1.610205 +L 4.3531,1.610205,4.3356,4.233158 +L 4.3356,4.233158,3.9156,4.233158 +L 3.9156,4.233158,3.4953,4.233158 +L 3.4953,4.233158,3.089,4.233158 +L 5.1905,0.000062,5.8941,0.000062 +L 5.8941,0.000062,6.6051,0.000062 +L 6.6051,0.000062,7.3302,0.000062 +L 7.3302,0.000062,7.299,0.789592 +L 7.299,0.789592,7.0748,1.333446 +L 7.0748,1.333446,6.4724,2.097484 +L 6.4724,2.097484,6.1257,1.74864 +L 6.1257,1.74864,5.6844,1.620067 +L 5.6844,1.620067,4.7667,1.601734 +L 5.1905,2.097484,5.3232,2.467605 +L 5.3232,2.467605,5.4668,2.820697 +L 5.4668,2.820697,5.6213,3.165228 +L 4.7667,4.233158,5.3232,4.233158 +L 5.3232,4.233158,5.8941,4.233158 +L 5.8941,4.233158,6.4724,4.233158 +L 6.4724,4.233158,6.4724,4.766921 +L 6.4724,4.766921,6.4724,5.30086 +L 6.4724,5.30086,6.4724,5.834818 +L 6.4724,5.834818,5.7505,5.834818 +L 5.7505,5.834818,5.0431,5.834818 +L 5.0431,5.834818,4.3356,5.834818 +L 4.3356,5.834818,4.1853,5.490101 +L 4.1853,5.490101,4.0417,5.137021 +L 4.0417,5.137021,3.9156,4.766921 +L 1.8033,5.834818,3.0186,5.854586 +L 3.0186,5.854586,3.565,5.99291 +L 3.565,5.99291,3.9156,6.368592 +L 3.9156,6.368592,3.7647,6.711876 +L 3.7647,6.711876,3.6389,7.055095 +L 3.6389,7.055095,3.5128,7.398335 +L 6.4724,6.368592,6.4724,6.711876 +L 6.4724,6.711876,6.4724,7.055095 +L 6.4724,7.055095,6.4724,7.398335 +L 6.4724,7.398335,5.7505,7.398335 +L 5.7505,7.398335,5.0431,7.398335 +L 5.0431,7.398335,4.3356,7.398335 + +[偽] 57 +L 1.4099,0.000062,1.3258,1.781081 +L 1.3258,1.781081,1.2589,3.545212 +L 1.2589,3.545212,1.1924,5.30086 +L 1.1924,5.30086,0.9826,5.137021 +L 0.9826,5.137021,0.7686,4.95624 +L 0.7686,4.95624,0.5588,4.766921 +L 5.651,0.000062,6.2604,0.039629 +L 6.2604,0.039629,6.6982,0.3164 +L 6.6982,0.3164,7.3287,1.067807 +L 7.3287,1.067807,7.1539,1.812187 +L 7.1539,1.812187,6.9294,2.217508 +L 6.9294,2.217508,6.4744,2.631378 +L 2.6637,0.533847,2.9439,1.196358 +L 2.9439,1.196358,2.9439,1.968922 +L 2.9439,1.968922,2.6637,2.631378 +L 2.6637,2.631378,2.5093,2.467605 +L 2.5093,2.467605,2.3657,2.286726 +L 2.3657,2.286726,2.2326,2.097484 +L 4.3726,1.868752,4.215,2.134249 +L 4.215,2.134249,4.0749,2.391263 +L 4.0749,2.391263,3.9421,2.631378 +L 5.651,1.868752,5.5007,2.134249 +L 5.5007,2.134249,5.3536,2.391263 +L 5.3536,2.391263,5.2237,2.631378 +L 7.3287,2.631378,7.3287,3.001357 +L 7.3287,3.001357,7.3287,3.354536 +L 7.3287,3.354536,7.3287,3.699188 +L 7.3287,3.699188,4.6286,3.679399 +L 4.6286,3.679399,3.5323,3.540987 +L 3.5323,3.540987,3.0837,3.165228 +L 3.5148,4.233158,3.9733,5.043899 +L 3.9733,5.043899,4.194,5.735962 +L 4.194,5.735962,4.3726,6.902562 +L 4.3726,6.902562,3.7912,6.902562 +L 3.7912,6.902562,3.2168,6.902562 +L 3.2168,6.902562,2.6637,6.902562 +L 6.4744,4.233158,6.4744,4.603149 +L 6.4744,4.603149,6.4744,4.95624 +L 6.4744,4.95624,6.4744,5.30086 +L 6.4744,5.30086,5.9035,5.30086 +L 5.9035,5.30086,5.3463,5.30086 +L 5.3463,5.30086,4.7932,5.30086 +L 1.4099,5.834818,1.5181,7.112994 +L 1.5181,7.112994,1.7247,8.052286 +L 1.7247,8.052286,1.8372,8.999984 +L 6.0471,5.834818,6.0471,6.204808 +L 6.0471,6.204808,6.0471,6.558031 +L 6.0471,6.558031,6.0471,6.902562 +L 6.0471,6.902562,5.6198,7.005644 +L 5.6198,7.005644,5.2027,7.091804 +L 5.2027,7.091804,4.7932,7.169515 +L 4.7932,7.169515,4.926,7.779686 +L 4.926,7.779686,5.0734,8.389792 +L 5.0734,8.389792,5.2237,8.999984 +L 3.5148,8.199148,3.3639,8.466122 +L 3.3639,8.466122,3.2168,8.733009 +L 3.2168,8.733009,3.0837,8.999984 + +[儀] 69 +L 1.4119,0.000062,1.3278,1.944963 +L 1.3278,1.944963,1.2574,3.889853 +L 1.2574,3.889853,1.1979,5.834818 +L 1.1979,5.834818,0.9811,5.67097 +L 0.9811,5.67097,0.7779,5.490101 +L 0.7779,5.490101,0.5849,5.30086 +L 3.1207,0.000062,3.3942,0.000062 +L 3.3942,0.000062,3.6744,0.000062 +L 3.6744,0.000062,3.9718,0.000062 +L 3.9718,0.000062,3.9718,0.533847 +L 3.9718,0.533847,3.9718,1.067807 +L 3.9718,1.067807,3.9718,1.601734 +L 3.9718,1.601734,3.541,1.601734 +L 3.541,1.601734,3.1207,1.601734 +L 3.1207,1.601734,2.6899,1.601734 +L 7.3625,0.000062,6.9909,0.370053 +L 6.9909,0.370053,6.6372,0.723144 +L 6.6372,0.723144,6.2908,1.067807 +L 6.2908,1.067807,5.9265,0.903903 +L 5.9265,0.903903,5.5689,0.723144 +L 5.5689,0.723144,5.2222,0.533847 +L 7.7863,0.000062,7.7863,0.370053 +L 7.7863,0.370053,7.7863,0.723144 +L 7.7863,0.723144,7.7863,1.067807 +L 6.5041,1.601734,6.2067,2.134249 +L 6.2067,2.134249,5.9265,2.658161 +L 5.9265,2.658161,5.653,3.165228 +L 5.653,3.165228,4.7532,3.135676 +L 4.7532,3.135676,4.3224,2.928014 +L 4.3224,2.928014,3.9718,2.36448 +L 3.9718,2.36448,4.2453,2.286726 +L 4.2453,2.286726,4.522,2.200522 +L 4.522,2.200522,4.7949,2.097484 +L 2.6899,3.165228,3.3102,3.1949 +L 3.3102,3.1949,3.6394,3.402563 +L 3.6394,3.402563,3.9718,3.966096 +L 3.9718,3.966096,3.541,4.069276 +L 3.541,4.069276,3.1207,4.155382 +L 3.1207,4.155382,2.6899,4.233158 +L 6.5041,3.165228,6.2032,3.580531 +L 6.2032,3.580531,6.0908,3.995747 +L 6.0908,3.995747,6.0768,4.766921 +L 6.9317,3.165228,7.2046,3.165228 +L 7.2046,3.165228,7.4918,3.165228 +L 7.4918,3.165228,7.7863,3.165228 +L 2.6899,5.834818,3.5235,5.937944 +L 3.5235,5.937944,4.3711,6.024038 +L 4.3711,6.024038,5.2222,6.101706 +L 5.2222,6.101706,4.8754,6.665338 +L 4.8754,6.665338,4.4415,6.872946 +L 4.4415,6.872946,3.541,6.902562 +L 5.653,5.834818,6.3535,5.834818 +L 6.3535,5.834818,7.0645,5.834818 +L 7.0645,5.834818,7.7863,5.834818 +L 1.4119,6.635676,1.6847,7.435001 +L 1.6847,7.435001,1.9649,8.226008 +L 1.9649,8.226008,2.263,8.999984 +L 5.653,6.902562,5.2716,7.449208 +L 5.2716,7.449208,4.6127,7.716183 +L 4.6127,7.716183,3.1207,7.932261 +L 6.0768,6.902562,6.3535,6.902562 +L 6.3535,6.902562,6.6372,6.902562 +L 6.6372,6.902562,6.9317,6.902562 +L 5.8635,7.932261,6.0768,8.30234 +L 6.0768,8.30234,6.2908,8.655431 +L 6.2908,8.655431,6.5041,8.999984 +L 6.5041,7.932261,6.7808,7.932261 +L 6.7808,7.932261,7.0645,7.932261 +L 7.0645,7.932261,7.3625,7.932261 + +[宜] 39 +L 0.5838,0.000062,1.1403,0.000062 +L 1.1403,0.000062,1.7182,0.000062 +L 1.7182,0.000062,2.2926,0.000062 +L 2.2926,0.000062,2.2926,2.134249 +L 2.2926,2.134249,2.2926,4.25993 +L 2.2926,4.25993,2.2926,6.368592 +L 2.2926,6.368592,3.4239,6.368592 +L 3.4239,6.368592,4.5517,6.368592 +L 4.5517,6.368592,5.6798,6.368592 +L 5.6798,6.368592,5.6798,4.25993 +L 5.6798,4.25993,5.6798,2.134249 +L 5.6798,2.134249,5.6798,0.000062 +L 5.6798,0.000062,6.2329,0.000062 +L 6.2329,0.000062,6.7863,0.000062 +L 6.7863,0.000062,7.361,0.000062 +L 2.7203,0.000062,3.5539,0.000062 +L 3.5539,0.000062,4.4014,0.000062 +L 4.4014,0.000062,5.2525,0.000062 +L 2.7203,2.097484,3.5539,2.097484 +L 3.5539,2.097484,4.4014,2.097484 +L 4.4014,2.097484,5.2525,2.097484 +L 2.7203,4.233158,3.5539,4.233158 +L 3.5539,4.233158,4.4014,4.233158 +L 4.4014,4.233158,5.2525,4.233158 +L 0.5838,6.368592,0.5838,6.901205 +L 0.5838,6.901205,0.5838,7.425194 +L 0.5838,7.425194,0.5838,7.932261 +L 0.5838,7.932261,1.7151,7.932261 +L 1.7151,7.932261,2.8429,7.932261 +L 2.8429,7.932261,3.9703,7.932261 +L 3.9703,7.932261,3.9703,8.30234 +L 3.9703,8.30234,3.9703,8.655431 +L 3.9703,8.655431,3.9703,8.999984 +L 7.361,6.368592,7.361,6.901205 +L 7.361,6.901205,7.361,7.425194 +L 7.361,7.425194,7.361,7.932261 +L 7.361,7.932261,6.359,7.932261 +L 6.359,7.932261,5.3751,7.932261 +L 5.3751,7.932261,4.4014,7.932261 + +[戯] 57 +L 0.6173,0.266971,0.9182,1.046683 +L 0.9182,1.046683,1.0302,2.766999 +L 1.0302,2.766999,1.0446,6.902562 +L 1.0446,6.902562,1.9409,6.920885 +L 1.9409,6.920885,2.3717,7.049534 +L 2.3717,7.049534,2.7223,7.398335 +L 2.7223,7.398335,2.7223,7.932261 +L 2.7223,7.932261,2.7223,8.466122 +L 2.7223,8.466122,2.7223,8.999984 +L 1.4719,0.000062,1.8782,0.000062 +L 1.8782,0.000062,2.2946,0.000062 +L 2.2946,0.000062,2.7223,0.000062 +L 2.7223,0.000062,2.7223,1.247242 +L 2.7223,1.247242,2.7223,2.477478 +L 2.7223,2.477478,2.7223,3.699188 +L 3.1531,0.000062,3.4469,0.492967 +L 3.4469,0.492967,3.5594,1.452059 +L 3.5594,1.452059,3.5734,3.699188 +L 4.8584,0.000062,4.5607,0.189403 +L 4.5607,0.189403,4.2809,0.370053 +L 4.2809,0.370053,4.0042,0.533847 +L 7.3907,0.000062,7.0229,0.533847 +L 7.0229,0.533847,6.6657,1.067807 +L 6.6657,1.067807,6.3189,1.601734 +L 6.3189,1.601734,5.9655,1.257005 +L 5.9655,1.257005,5.6188,0.903903 +L 5.6188,0.903903,5.2822,0.533847 +L 7.818,0.000062,7.818,0.533847 +L 7.818,0.533847,7.818,1.067807 +L 7.818,1.067807,7.818,1.601734 +L 1.8638,1.601734,1.8537,2.346147 +L 1.8537,2.346147,1.7521,2.751458 +L 1.7521,2.751458,1.4719,3.165228 +L 4.4311,1.868752,4.5607,2.315074 +L 4.5607,2.315074,4.7047,2.744332 +L 4.7047,2.744332,4.8584,3.165228 +L 6.5361,2.097484,5.8881,4.11437 +L 5.8881,4.11437,5.5904,5.826238 +L 5.5904,5.826238,3.1531,6.902562 +L 3.1531,6.902562,2.9146,6.15538 +L 2.9146,6.15538,3.601,5.781056 +L 3.601,5.781056,4.4311,5.033896 +L 4.4311,5.033896,3.1983,5.063667 +L 3.1983,5.063667,2.5328,5.271296 +L 2.5328,5.271296,1.8638,5.834818 +L 6.9634,2.89833,7.0933,3.535306 +L 7.0933,3.535306,7.2369,4.155382 +L 7.2369,4.155382,7.3907,4.766921 +L 6.5361,5.834818,6.2349,6.307912 +L 6.2349,6.307912,6.1232,7.128515 +L 6.1232,7.128515,6.1091,8.999984 +L 6.9634,6.368592,7.2369,6.368592 +L 7.2369,6.368592,7.5241,6.368592 +L 7.5241,6.368592,7.818,6.368592 +L 3.1531,7.932261,3.5734,7.932261 +L 3.5734,7.932261,4.0042,7.932261 +L 4.0042,7.932261,4.4311,7.932261 + +[擬] 75 +L 0.6158,0.000062,0.8921,0.000062 +L 0.8921,0.000062,1.1723,0.000062 +L 1.1723,0.000062,1.4704,0.000062 +L 1.4704,0.000062,1.4704,1.410992 +L 1.4704,1.410992,1.4704,2.821999 +L 1.4704,2.821999,1.4704,4.233158 +L 1.4704,4.233158,1.1723,4.233158 +L 1.1723,4.233158,0.8921,4.233158 +L 0.8921,4.233158,0.6158,4.233158 +L 2.3215,0.000062,2.7519,0.799453 +L 2.7519,0.799453,3.1792,1.590416 +L 3.1792,1.590416,3.61,2.36448 +L 3.61,2.36448,3.3127,2.631378 +L 3.3127,2.631378,3.029,2.89833 +L 3.029,2.89833,2.7519,3.165228 +L 4.4331,0.000062,4.5631,0.189403 +L 4.5631,0.189403,4.7028,0.370053 +L 4.7028,0.370053,4.8569,0.533847 +L 4.8569,0.533847,4.5841,0.903903 +L 4.5841,0.903903,4.3105,1.257005 +L 4.3105,1.257005,4.0303,1.601734 +L 6.5661,0.000062,6.1427,0.370053 +L 6.1427,0.370053,5.7115,0.723144 +L 5.7115,0.723144,5.2842,1.067807 +L 5.2842,1.067807,5.2842,2.134249 +L 5.2842,2.134249,5.2842,3.19212 +L 5.2842,3.19212,5.2842,4.233158 +L 6.9938,0.000062,7.2701,0.000062 +L 7.2701,0.000062,7.5503,0.000062 +L 7.5503,0.000062,7.8484,0.000062 +L 6.1427,1.067807,6.1427,2.668154 +L 6.1427,2.668154,6.1427,4.25993 +L 6.1427,4.25993,6.1427,5.834818 +L 6.1427,5.834818,5.3791,5.973253 +L 5.3791,5.973253,4.6328,6.230267 +L 4.6328,6.230267,3.61,6.368592 +L 3.61,6.368592,3.3053,5.953486 +L 3.3053,5.953486,3.1968,5.538117 +L 3.1968,5.538117,3.1792,4.766921 +L 3.1792,4.766921,3.582,4.766921 +L 3.582,4.766921,4.0027,4.766921 +L 4.0027,4.766921,4.4331,4.766921 +L 4.0303,3.165228,3.8801,3.535306 +L 3.8801,3.535306,3.7365,3.888496 +L 3.7365,3.888496,3.61,4.233158 +L 6.5661,3.165228,6.8428,3.165228 +L 6.8428,3.165228,7.123,3.165228 +L 7.123,3.165228,7.4211,3.165228 +L 1.4704,4.766921,1.4704,5.30086 +L 1.4704,5.30086,1.4704,5.834818 +L 1.4704,5.834818,1.4704,6.368592 +L 1.4704,6.368592,1.1723,6.558031 +L 1.1723,6.558031,0.8921,6.738692 +L 0.8921,6.738692,0.6158,6.902562 +L 7.4211,4.766921,7.5503,5.033896 +L 7.5503,5.033896,7.6939,5.30086 +L 7.6939,5.30086,7.8484,5.567855 +L 7.8484,5.567855,6.6817,6.008474 +L 6.6817,6.008474,6.2863,6.652576 +L 6.2863,6.652576,5.7115,7.398335 +L 1.9008,6.902562,1.5965,7.310729 +L 1.5965,7.310729,1.4879,7.854595 +L 1.4879,7.854595,1.4704,8.999984 +L 3.1792,6.902562,3.1792,7.615837 +L 3.1792,7.615837,3.1792,8.312234 +L 3.1792,8.312234,3.1792,8.999984 +L 6.9938,7.398335,7.123,7.665265 +L 7.123,7.665265,7.2701,7.932261 +L 7.2701,7.932261,7.4211,8.199148 +L 7.4211,8.199148,6.6961,8.30234 +L 6.6961,8.30234,5.9851,8.388478 +L 5.9851,8.388478,5.2842,8.466122 +L 3.8205,7.932261,4.0128,8.121482 +L 4.0128,8.121482,4.216,8.30234 +L 4.216,8.30234,4.4331,8.466122 + +[欺] 51 +L 0.649,0.000062,1.0763,0.533847 +L 1.0763,0.533847,1.5001,1.067807 +L 1.5001,1.067807,1.9274,1.601734 +L 4.4596,0.000062,5.6228,2.323501 +L 5.6228,2.323501,6.0851,4.426592 +L 6.0851,4.426592,6.1692,6.902562 +L 6.1692,6.902562,5.5524,6.665338 +L 5.5524,6.665338,5.2165,6.250056 +L 5.2165,6.250056,4.8908,5.30086 +L 7.8469,0.000062,6.9464,1.515573 +L 6.9464,1.515573,6.614,2.336143 +L 6.614,2.336143,6.5646,3.165228 +L 0.649,2.631378,0.9225,2.631378 +L 0.9225,2.631378,1.2097,2.631378 +L 1.2097,2.631378,1.5001,2.631378 +L 1.5001,2.631378,1.5001,4.069276 +L 1.5001,4.069276,1.5001,5.490101 +L 1.5001,5.490101,1.5001,6.902562 +L 1.5001,6.902562,1.2097,7.081998 +L 1.2097,7.081998,0.9225,7.24438 +L 0.9225,7.24438,0.649,7.398335 +L 1.9274,2.631378,2.4811,2.631378 +L 2.4811,2.631378,3.0341,2.631378 +L 3.0341,2.631378,3.605,2.631378 +L 3.605,2.631378,3.605,3.165228 +L 3.605,3.165228,3.605,3.699188 +L 3.605,3.699188,3.605,4.233158 +L 3.605,4.233158,3.0341,4.233158 +L 3.0341,4.233158,2.4811,4.233158 +L 2.4811,4.233158,1.9274,4.233158 +L 3.605,4.766921,3.605,5.137021 +L 3.605,5.137021,3.605,5.490101 +L 3.605,5.490101,3.605,5.834818 +L 3.605,5.834818,3.0341,5.834818 +L 3.0341,5.834818,2.4811,5.834818 +L 2.4811,5.834818,1.9274,5.834818 +L 7.4157,5.567855,7.5558,5.937944 +L 7.5558,5.937944,7.6959,6.291034 +L 7.6959,6.291034,7.8469,6.635676 +L 7.8469,6.635676,7.4157,6.738692 +L 7.4157,6.738692,6.9958,6.824918 +L 6.9958,6.824918,6.5646,6.902562 +L 3.605,6.635676,2.6667,7.460525 +L 2.6667,7.460525,1.8507,7.743064 +L 1.8507,7.743064,1.5001,8.999984 +L 4.0323,7.398335,3.7311,7.813594 +L 3.7311,7.813594,3.6194,8.22881 +L 3.6194,8.22881,3.605,8.999984 +L 5.3146,7.398335,5.6158,7.813594 +L 5.6158,7.813594,5.7244,8.22881 +L 5.7244,8.22881,5.7419,8.999984 + +[犠] 75 +L 1.9332,0.000062,1.9332,1.247242 +L 1.9332,1.247242,1.9332,2.477478 +L 1.9332,2.477478,1.9332,3.699188 +L 1.9332,3.699188,1.5021,3.699188 +L 1.5021,3.699188,1.0821,3.699188 +L 1.0821,3.699188,0.6793,3.699188 +L 3.2081,0.000062,3.4845,0.000062 +L 3.4845,0.000062,3.7682,0.000062 +L 3.7682,0.000062,4.0627,0.000062 +L 4.0627,0.000062,4.0627,0.533847 +L 4.0627,0.533847,4.0627,1.067807 +L 4.0627,1.067807,4.0627,1.601734 +L 4.0627,1.601734,3.6389,1.601734 +L 3.6389,1.601734,3.2081,1.601734 +L 3.2081,1.601734,2.7843,1.601734 +L 7.4527,0.000062,7.1554,0.370053 +L 7.1554,0.370053,6.8752,0.723144 +L 6.8752,0.723144,6.5981,1.067807 +L 6.5981,1.067807,6.0241,0.903903 +L 6.0241,0.903903,5.4703,0.723144 +L 5.4703,0.723144,4.917,0.533847 +L 7.88,0.000062,7.88,0.370053 +L 7.88,0.370053,7.88,0.723144 +L 7.88,0.723144,7.88,1.067807 +L 6.5981,1.601734,6.2934,1.990057 +L 6.2934,1.990057,6.1887,2.395564 +L 6.1887,2.395564,6.1712,3.165228 +L 6.1712,3.165228,4.9733,3.135676 +L 4.9733,3.135676,4.427,2.928014 +L 4.427,2.928014,4.0627,2.36448 +L 4.0627,2.36448,4.3429,2.286726 +L 4.3429,2.286726,4.6227,2.200522 +L 4.6227,2.200522,4.917,2.097484 +L 2.7843,3.165228,3.4004,3.1949 +L 3.4004,3.1949,3.7335,3.402563 +L 3.7335,3.402563,4.0627,3.966096 +L 4.0627,3.966096,3.7682,4.069276 +L 3.7682,4.069276,3.4845,4.155382 +L 3.4845,4.155382,3.2081,4.233158 +L 6.5981,3.165228,7.0219,3.165228 +L 7.0219,3.165228,7.4527,3.165228 +L 7.4527,3.165228,7.88,3.165228 +L 1.9332,4.233158,1.9048,5.379981 +L 1.9048,5.379981,1.7402,5.933631 +L 1.7402,5.933631,1.2888,6.368592 +L 1.2888,6.368592,1.0748,6.024038 +L 1.0748,6.024038,0.8716,5.67097 +L 0.8716,5.67097,0.6793,5.30086 +L 7.4527,4.233158,7.299,4.500144 +L 7.299,4.500144,7.1554,4.766921 +L 7.1554,4.766921,7.0219,5.033896 +L 7.0219,5.033896,5.7439,5.137021 +L 5.7439,5.137021,4.469,5.223192 +L 4.469,5.223192,3.2081,5.30086 +L 5.3166,6.101706,4.9909,6.665338 +L 4.9909,6.665338,4.5527,6.872946 +L 4.5527,6.872946,3.6389,6.902562 +L 2.3532,6.368592,2.0593,6.822072 +L 2.0593,6.822072,1.9469,7.504284 +L 1.9469,7.504284,1.9332,8.999984 +L 1.1066,6.902562,1.1066,7.245781 +L 1.1066,7.245781,1.1066,7.589066 +L 1.1066,7.589066,1.1066,7.932261 +L 5.7439,6.902562,5.3653,7.449208 +L 5.3653,7.449208,4.7072,7.716183 +L 4.7072,7.716183,3.2081,7.932261 +L 6.1712,6.902562,6.444,6.902562 +L 6.444,6.902562,6.7242,6.902562 +L 6.7242,6.902562,7.0219,6.902562 +L 5.9572,7.932261,6.1712,8.30234 +L 6.1712,8.30234,6.381,8.655431 +L 6.381,8.655431,6.5981,8.999984 +L 6.5981,7.932261,6.8752,7.932261 +L 6.8752,7.932261,7.1554,7.932261 +L 7.1554,7.932261,7.4527,7.932261 + +[菊] 39 +L 5.7736,0.000062,7.3045,1.07213 +L 7.3045,1.07213,7.5812,3.440663 +L 7.5812,3.440663,7.4796,5.834818 +L 7.4796,5.834818,5.5007,5.757043 +L 5.5007,5.757043,3.5183,5.67097 +L 3.5183,5.67097,1.5324,5.567855 +L 1.5324,5.567855,1.2379,5.137021 +L 1.2379,5.137021,0.9542,4.689364 +L 0.9542,4.689364,0.6813,4.233158 +L 4.0647,0.533847,3.9806,1.247242 +L 3.9806,1.247242,3.9138,1.943529 +L 3.9138,1.943529,3.8507,2.631378 +L 3.8507,2.631378,3.0665,2.124387 +L 3.0665,2.124387,2.296,1.600344 +L 2.296,1.600344,1.5324,1.067807 +L 5.7736,1.601734,4.4356,2.702007 +L 4.4356,2.702007,3.3957,3.031117 +L 3.3957,3.031117,1.9597,3.165228 +L 4.9225,3.165228,5.3463,3.165228 +L 5.3463,3.165228,5.7736,3.165228 +L 5.7736,3.165228,6.2009,3.165228 +L 4.0647,3.699188,4.0647,4.069276 +L 4.0647,4.069276,4.0647,4.422346 +L 4.0647,4.422346,4.0647,4.766921 +L 0.6813,7.932261,1.5324,7.932261 +L 1.5324,7.932261,2.3902,7.932261 +L 2.3902,7.932261,3.2413,7.932261 +L 3.2413,7.932261,3.2413,8.30234 +L 3.2413,8.30234,3.2413,8.655431 +L 3.2413,8.655431,3.2413,8.999984 +L 3.6686,7.932261,4.2188,7.932261 +L 4.2188,7.932261,4.7722,7.932261 +L 4.7722,7.932261,5.3463,7.932261 +L 5.3463,7.932261,5.3463,8.30234 +L 5.3463,8.30234,5.3463,8.655431 +L 5.3463,8.655431,5.3463,8.999984 +L 5.7736,7.932261,6.4744,7.932261 +L 6.4744,7.932261,7.1749,7.932261 +L 7.1749,7.932261,7.8785,7.932261 + +[吉] 27 +L 1.9894,0.000062,1.9894,1.066439 +L 1.9894,1.066439,1.9894,2.124387 +L 1.9894,2.124387,1.9894,3.165228 +L 1.9894,3.165228,3.3942,3.165228 +L 3.3942,3.165228,4.7952,3.165228 +L 4.7952,3.165228,6.1958,3.165228 +L 6.1958,3.165228,6.1958,2.124387 +L 6.1958,2.124387,6.1958,1.066439 +L 6.1958,1.066439,6.1958,0.000062 +L 6.1958,0.000062,4.7952,0.000062 +L 4.7952,0.000062,3.3942,0.000062 +L 3.3942,0.000062,1.9894,0.000062 +L 1.1383,5.30086,2.112,5.30086 +L 2.112,5.30086,3.0997,5.30086 +L 3.0997,5.30086,4.0944,5.30086 +L 4.0944,5.30086,3.625,7.285293 +L 3.625,7.285293,2.3995,7.574837 +L 2.3995,7.574837,0.7075,7.398335 +L 4.5217,5.30086,5.3556,5.30086 +L 5.3556,5.30086,6.2032,5.30086 +L 6.2032,5.30086,7.0543,5.30086 +L 4.5217,7.398335,4.2208,7.813594 +L 4.2208,7.813594,4.1084,8.22881 +L 4.1084,8.22881,4.0944,8.999984 +L 4.9493,7.398335,5.7829,7.398335 +L 5.7829,7.398335,6.6305,7.398335 +L 6.6305,7.398335,7.4851,7.398335 + +[喫] 54 +L 3.0561,0.000062,3.8235,0.713271 +L 3.8235,0.713271,4.5906,1.409646 +L 4.5906,1.409646,5.3786,2.097484 +L 5.3786,2.097484,5,2.473176 +L 5,2.473176,4.3419,2.611578 +L 4.3419,2.611578,2.8428,2.631378 +L 7.5113,0.000062,6.9337,0.533847 +L 6.9337,0.533847,6.3625,1.067807 +L 6.3625,1.067807,5.8024,1.601734 +L 5.8024,2.631378,5.655,2.89833 +L 5.655,2.89833,5.5044,3.165228 +L 5.5044,3.165228,5.3786,3.432246 +L 5.3786,3.432246,5.981,4.844654 +L 5.981,4.844654,6.2014,6.011386 +L 6.2014,6.011386,6.2329,7.932261 +L 6.2329,7.932261,6.6602,7.932261 +L 6.6602,7.932261,7.084,7.932261 +L 7.084,7.932261,7.5113,7.932261 +L 7.5113,7.932261,7.5113,6.891223 +L 7.5113,6.891223,7.5113,5.833286 +L 7.5113,5.833286,7.5113,4.766921 +L 7.5113,4.766921,7.2136,4.603149 +L 7.2136,4.603149,6.9337,4.422346 +L 6.9337,4.422346,6.6602,4.233158 +L 6.2329,2.631378,6.7936,2.631378 +L 6.7936,2.631378,7.361,2.631378 +L 7.361,2.631378,7.9421,2.631378 +L 0.7379,3.165228,0.7379,4.765586 +L 0.7379,4.765586,0.7379,6.357362 +L 0.7379,6.357362,0.7379,7.932261 +L 0.7379,7.932261,1.1477,7.932261 +L 1.1477,7.932261,1.5641,7.932261 +L 1.5641,7.932261,1.9879,7.932261 +L 1.9879,7.932261,1.9879,6.357362 +L 1.9879,6.357362,1.9879,4.765586 +L 1.9879,4.765586,1.9879,3.165228 +L 1.9879,3.165228,1.5641,3.165228 +L 1.5641,3.165228,1.1477,3.165228 +L 1.1477,3.165228,0.7379,3.165228 +L 2.8428,4.233158,3.2701,4.233158 +L 3.2701,4.233158,3.6974,4.233158 +L 3.6974,4.233158,4.1279,4.233158 +L 4.1279,4.233158,4.1279,4.766921 +L 4.1279,4.766921,4.1279,5.30086 +L 4.1279,5.30086,4.1279,5.834818 +L 4.1279,5.834818,3.8302,6.024038 +L 3.8302,6.024038,3.5465,6.204808 +L 3.5465,6.204808,3.2701,6.368592 +L 4.5552,6.368592,4.1279,6.901205 +L 4.1279,6.901205,3.6974,7.425194 +L 3.6974,7.425194,3.2701,7.932261 +L 4.5552,7.932261,4.4014,8.30234 +L 4.4014,8.30234,4.2575,8.655431 +L 4.2575,8.655431,4.1279,8.999984 + +[詰] 48 +L 1.1707,0.000062,1.1707,0.713271 +L 1.1707,0.713271,1.1707,1.409646 +L 1.1707,1.409646,1.1707,2.097484 +L 1.1707,2.097484,1.7272,2.097484 +L 1.7272,2.097484,2.2985,2.097484 +L 2.2985,2.097484,2.876,2.097484 +L 2.876,2.097484,2.876,1.409646 +L 2.876,1.409646,2.876,0.713271 +L 2.876,0.713271,2.876,0.000062 +L 2.876,0.000062,2.2985,0.000062 +L 2.2985,0.000062,1.7272,0.000062 +L 1.7272,0.000062,1.1707,0.000062 +L 4.5537,0.000062,4.5537,1.066439 +L 4.5537,1.066439,4.5537,2.124387 +L 4.5537,2.124387,4.5537,3.165228 +L 4.5537,3.165228,5.4083,3.165228 +L 5.4083,3.165228,6.2594,3.165228 +L 6.2594,3.165228,7.1178,3.165228 +L 7.1178,3.165228,7.1178,2.124387 +L 7.1178,2.124387,7.1178,1.066439 +L 7.1178,1.066439,7.1178,0.000062 +L 7.1178,0.000062,6.2594,0.000062 +L 6.2594,0.000062,5.4083,0.000062 +L 5.4083,0.000062,4.5537,0.000062 +L 1.1707,3.699188,1.7272,3.699188 +L 1.7272,3.699188,2.2985,3.699188 +L 2.2985,3.699188,2.876,3.699188 +L 1.1707,5.30086,1.7272,5.30086 +L 1.7272,5.30086,2.2985,5.30086 +L 2.2985,5.30086,2.876,5.30086 +L 4.1267,5.30086,4.6833,5.30086 +L 4.6833,5.30086,5.2545,5.30086 +L 5.2545,5.30086,5.8356,5.30086 +L 5.8356,5.30086,4.9743,7.461883 +L 4.9743,7.461883,2.9811,7.360202 +L 2.9811,7.360202,0.7399,6.902562 +L 6.2594,5.30086,6.6657,5.30086 +L 6.6657,5.30086,7.086,5.30086 +L 7.086,5.30086,7.5133,5.30086 +L 6.2594,7.398335,5.962,7.813594 +L 5.962,7.813594,5.8496,8.22881 +L 5.8496,8.22881,5.8356,8.999984 +L 6.6905,7.398335,7.0933,7.398335 +L 7.0933,7.398335,7.5133,7.398335 +L 7.5133,7.398335,7.9371,7.398335 +L 1.1707,8.466122,1.7272,8.466122 +L 1.7272,8.466122,2.2985,8.466122 +L 2.2985,8.466122,2.876,8.466122 + +[却] 36 +L 5.4387,0.000062,5.4387,2.821999 +L 5.4387,2.821999,5.4387,5.644066 +L 5.4387,5.644066,5.4387,8.466122 +L 5.4387,8.466122,6.1388,8.466122 +L 6.1388,8.466122,6.8396,8.466122 +L 6.8396,8.466122,7.5436,8.466122 +L 7.5436,8.466122,7.5436,6.178037 +L 7.5436,6.178037,7.5436,3.889853 +L 7.5436,3.889853,7.5436,1.601734 +L 7.5436,1.601734,7.2456,1.601734 +L 7.2456,1.601734,6.9654,1.601734 +L 6.9654,1.601734,6.6925,1.601734 +L 0.7695,1.067807,1.0466,1.067807 +L 1.0466,1.067807,1.3303,1.067807 +L 1.3303,1.067807,1.628,1.067807 +L 1.628,1.067807,1.8977,2.048001 +L 1.8977,2.048001,2.1744,3.01135 +L 2.1744,3.01135,2.4507,3.966096 +L 2.4507,3.966096,2.1008,4.529707 +L 2.1008,4.529707,1.6662,4.737347 +L 1.6662,4.737347,0.7695,4.766921 +L 2.2336,1.067807,2.7208,1.51415 +L 2.7208,1.51415,3.2178,1.943529 +L 3.2178,1.943529,3.7291,2.36448 +L 3.7291,2.36448,3.5789,2.631378 +L 3.5789,2.631378,3.4353,2.89833 +L 3.4353,2.89833,3.3018,3.165228 +L 2.8745,4.766921,2.346,6.042492 +L 2.346,6.042492,2.1569,7.012759 +L 2.1569,7.012759,1.1968,7.398335 +L 3.3018,4.766921,3.5789,4.766921 +L 3.5789,4.766921,3.8591,4.766921 +L 3.8591,4.766921,4.1603,4.766921 +L 2.8745,7.398335,2.5768,7.813594 +L 2.5768,7.813594,2.4682,8.22881 +L 2.4682,8.22881,2.4507,8.999984 + +[脚] 39 +L 0.768,0.266971,1.0728,1.104473 +L 1.0728,1.104473,1.1852,3.230297 +L 1.1852,3.230297,1.1988,8.466122 +L 1.1988,8.466122,1.6261,8.466122 +L 1.6261,8.466122,2.0499,8.466122 +L 2.0499,8.466122,2.4772,8.466122 +L 2.4772,8.466122,2.4772,6.014188 +L 2.4772,6.014188,2.4772,3.545212 +L 2.4772,3.545212,2.4772,1.067807 +L 2.4772,1.067807,2.9084,1.067807 +L 2.9084,1.067807,3.3357,1.067807 +L 3.3357,1.067807,3.7595,1.067807 +L 3.7595,1.067807,3.8712,2.721818 +L 3.8712,2.721818,4.0744,3.799435 +L 4.0744,3.799435,4.1868,4.766921 +L 4.1868,4.766921,3.8922,4.95624 +L 3.8922,4.95624,3.6085,5.137021 +L 3.6085,5.137021,3.3357,5.30086 +L 6.2918,0.000062,6.2918,2.821999 +L 6.2918,2.821999,6.2918,5.644066 +L 6.2918,5.644066,6.2918,8.466122 +L 6.2918,8.466122,6.7222,8.466122 +L 6.7222,8.466122,7.1495,8.466122 +L 7.1495,8.466122,7.5733,8.466122 +L 7.5733,8.466122,7.5733,6.178037 +L 7.5733,6.178037,7.5733,3.889853 +L 7.5733,3.889853,7.5733,1.601734 +L 5.4407,1.067807,5.3566,1.410992 +L 5.3566,1.410992,5.2862,1.754342 +L 5.2862,1.754342,5.2232,2.097484 +L 5.2232,2.097484,4.8698,1.943529 +L 4.8698,1.943529,4.523,1.781081 +L 4.523,1.781081,4.1868,1.601734 +L 4.5822,5.30086,4.274,5.97183 +L 4.274,5.97183,3.9483,6.752746 +L 3.9483,6.752746,3.3357,7.398335 +L 4.5822,7.398335,4.3059,7.813594 +L 4.3059,7.813594,4.2043,8.22881 +L 4.2043,8.22881,4.1868,8.999984 + +[虐] 42 +L 0.8019,0.266971,1.4425,2.546586 +L 1.4425,2.546586,1.6457,4.572119 +L 1.6457,4.572119,1.6565,6.902562 +L 1.6565,6.902562,3.1556,6.920885 +L 3.1556,6.920885,3.8067,7.049534 +L 3.8067,7.049534,4.1884,7.398335 +L 4.1884,7.398335,4.1884,7.932261 +L 4.1884,7.932261,4.1884,8.466122 +L 4.1884,8.466122,4.1884,8.999984 +L 2.9069,0.000062,2.9069,1.066439 +L 2.9069,1.066439,2.9069,2.124387 +L 2.9069,2.124387,2.9069,3.165228 +L 2.9069,3.165228,4.462,3.165228 +L 4.462,3.165228,6.0167,3.165228 +L 6.0167,3.165228,7.5718,3.165228 +L 3.3342,0.000062,4.7348,0.000062 +L 4.7348,0.000062,6.1502,0.000062 +L 6.1502,0.000062,7.5718,0.000062 +L 3.3342,1.601734,4.7348,1.601734 +L 4.7348,1.601734,6.1502,1.601734 +L 6.1502,1.601734,7.5718,1.601734 +L 4.1884,5.033896,3.6214,5.137021 +L 3.6214,5.137021,3.0606,5.223192 +L 3.0606,5.223192,2.5076,5.30086 +L 4.6157,4.766921,5.4493,4.870101 +L 5.4493,4.870101,6.2934,4.95624 +L 6.2934,4.95624,7.148,5.033896 +L 7.148,5.033896,7.4251,5.567855 +L 7.4251,5.567855,7.7052,6.101706 +L 7.7052,6.101706,8.0026,6.635676 +L 8.0026,6.635676,6.8717,6.738692 +L 6.8717,6.738692,5.7439,6.824918 +L 5.7439,6.824918,4.6157,6.902562 +L 4.6157,6.902562,4.462,6.635676 +L 4.462,6.635676,4.3219,6.368592 +L 4.3219,6.368592,4.1884,6.101706 +L 4.1884,6.101706,4.8928,6.024038 +L 4.8928,6.024038,5.6003,5.937944 +L 5.6003,5.937944,6.3214,5.834818 +L 4.6157,7.932261,5.3166,7.932261 +L 5.3166,7.932261,6.0167,7.932261 +L 6.0167,7.932261,6.7176,7.932261 + +[丘] 24 +L 0.8316,0.000062,1.2379,0.000062 +L 1.2379,0.000062,1.6582,0.000062 +L 1.6582,0.000062,2.0823,0.000062 +L 2.0823,0.000062,2.0823,2.477478 +L 2.0823,2.477478,2.0823,4.946356 +L 2.0823,4.946356,2.0823,7.398335 +L 2.0823,7.398335,3.6686,7.675138 +L 3.6686,7.675138,5.2097,8.189276 +L 5.2097,8.189276,6.7511,8.466122 +L 2.5093,0.000062,3.4903,0.000062 +L 3.4903,0.000062,4.471,0.000062 +L 4.471,0.000062,5.4723,0.000062 +L 5.4723,0.000062,5.4723,1.600344 +L 5.4723,1.600344,5.4723,3.19212 +L 5.4723,3.19212,5.4723,4.766921 +L 5.4723,4.766921,4.471,4.766921 +L 4.471,4.766921,3.4903,4.766921 +L 3.4903,4.766921,2.5093,4.766921 +L 5.8961,0.000062,6.6001,0.000062 +L 6.6001,0.000062,7.3111,0.000062 +L 7.3111,0.000062,8.0295,0.000062 +L 5.8961,4.766921,6.3234,4.766921 +L 6.3234,4.766921,6.7511,4.766921 +L 6.7511,4.766921,7.1784,4.766921 + +[及] 27 +L 0.8301,0.000062,2.3501,2.839029 +L 2.3501,2.839029,2.8965,5.322082 +L 2.8965,5.322082,2.9669,8.466122 +L 2.9669,8.466122,2.3887,8.466122 +L 2.3887,8.466122,1.8181,8.466122 +L 1.8181,8.466122,1.2574,8.466122 +L 3.1802,0.000062,3.9473,0.713271 +L 3.9473,0.713271,4.7178,1.409646 +L 4.7178,1.409646,5.5027,2.097484 +L 5.5027,2.097484,4.7984,3.165228 +L 4.7984,3.165228,4.0982,4.233158 +L 4.0982,4.233158,3.3977,5.30086 +L 7.6353,0.000062,7.0578,0.533847 +L 7.0578,0.533847,6.483,1.067807 +L 6.483,1.067807,5.9297,1.601734 +L 5.9297,2.631378,6.5251,3.817845 +L 6.5251,3.817845,6.7496,4.648254 +L 6.7496,4.648254,6.7807,5.834818 +L 6.7807,5.834818,6.2032,5.834818 +L 6.2032,5.834818,5.6284,5.834818 +L 5.6284,5.834818,5.0719,5.834818 +L 5.0719,5.834818,5.1836,6.754234 +L 5.1836,6.754234,5.3903,7.546598 +L 5.3903,7.546598,5.5027,8.466122 +L 5.5027,8.466122,4.7984,8.466122 +L 4.7984,8.466122,4.0982,8.466122 +L 4.0982,8.466122,3.3977,8.466122 + +[朽] 36 +L 2.1455,0.000062,2.0618,1.600344 +L 2.0618,1.600344,1.9952,3.19212 +L 1.9952,3.19212,1.9322,4.766921 +L 1.9322,4.766921,1.5641,4.069276 +L 1.5641,4.069276,1.2107,3.354536 +L 1.2107,3.354536,0.864,2.631378 +L 5.96,0.000062,6.2297,0.000062 +L 6.2297,0.000062,6.5064,0.000062 +L 6.5064,0.000062,6.7827,0.000062 +L 6.7827,0.000062,7.4342,1.642658 +L 7.4342,1.642658,7.6303,3.048016 +L 7.6303,3.048016,7.6338,4.766921 +L 7.6338,4.766921,6.6391,4.766921 +L 6.6391,4.766921,5.6515,4.766921 +L 5.6515,4.766921,4.6778,4.766921 +L 4.6778,4.766921,4.6778,4.422346 +L 4.6778,4.422346,4.6778,4.069276 +L 4.6778,4.069276,4.6778,3.699188 +L 3.3962,4.233158,2.6222,5.043899 +L 2.6222,5.043899,2.1844,5.735962 +L 2.1844,5.735962,1.7151,6.902562 +L 1.7151,6.902562,1.4205,6.902562 +L 1.4205,6.902562,1.1403,6.902562 +L 1.1403,6.902562,0.864,6.902562 +L 5.1016,5.30086,5.214,6.248698 +L 5.214,6.248698,5.4171,7.187881 +L 5.4171,7.187881,5.5289,8.466122 +L 5.5289,8.466122,4.9513,8.466122 +L 4.9513,8.466122,4.3801,8.466122 +L 4.3801,8.466122,3.82,8.466122 +L 2.3276,7.169515,2.2681,7.779686 +L 2.2681,7.779686,2.205,8.389792 +L 2.205,8.389792,2.1455,8.999984 +L 5.96,8.466122,6.6602,8.466122 +L 6.6602,8.466122,7.361,8.466122 +L 7.361,8.466122,8.0611,8.466122 + +[窮] 72 +L 2.9674,0.000062,3.2438,0.000062 +L 3.2438,0.000062,3.5275,0.000062 +L 3.5275,0.000062,3.8252,0.000062 +L 3.8252,0.000062,3.7415,0.533847 +L 3.7415,0.533847,3.6711,1.067807 +L 3.6711,1.067807,3.608,1.601766 +L 3.608,1.601766,2.6939,1.257016 +L 2.6939,1.257016,1.7797,0.903903 +L 1.7797,0.903903,0.8625,0.533847 +L 5.927,0.000062,6.9108,0.272641 +L 6.9108,0.272641,7.2019,1.011384 +L 7.2019,1.011384,7.2085,2.097484 +L 7.2085,2.097484,5.1421,2.216151 +L 5.1421,2.216151,3.3562,2.334764 +L 3.3562,2.334764,0.8625,2.097484 +L 1.6852,2.631378,1.6852,3.535339 +L 1.6852,3.535339,1.6852,4.422368 +L 1.6852,4.422368,1.6852,5.300903 +L 1.6852,5.300903,1.9619,5.300903 +L 1.9619,5.300903,2.2456,5.300903 +L 2.2456,5.300903,2.5436,5.300903 +L 2.5436,5.300903,2.5436,5.67097 +L 2.5436,5.67097,2.5436,6.024082 +L 2.5436,6.024082,2.5436,6.368636 +L 2.5436,6.368636,2.2456,6.368636 +L 2.2456,6.368636,1.9619,6.368636 +L 1.9619,6.368636,1.6852,6.368636 +L 5.0724,2.631378,5.0724,3.001357 +L 5.0724,3.001357,5.0724,3.354536 +L 5.0724,3.354536,5.0724,3.699188 +L 5.0724,3.699188,5.776,3.699188 +L 5.776,3.699188,6.4874,3.699188 +L 6.4874,3.699188,7.2085,3.699188 +L 7.2085,3.699188,7.2085,4.233158 +L 7.2085,4.233158,7.2085,4.766921 +L 7.2085,4.766921,7.2085,5.300903 +L 7.2085,5.300903,6.3575,5.300903 +L 6.3575,5.300903,5.5064,5.300903 +L 5.5064,5.300903,4.6763,5.300903 +L 2.1163,3.165228,2.6729,3.165228 +L 2.6729,3.165228,3.2438,3.165228 +L 3.2438,3.165228,3.8252,3.165228 +L 3.8252,3.165228,3.8252,3.535339 +L 3.8252,3.535339,3.8252,3.888496 +L 3.8252,3.888496,3.8252,4.233158 +L 3.8252,4.233158,3.2438,4.233158 +L 3.2438,4.233158,2.6729,4.233158 +L 2.6729,4.233158,2.1163,4.233158 +L 3.8252,5.033896,3.5275,5.137021 +L 3.5275,5.137021,3.2438,5.223192 +L 3.2438,5.223192,2.9674,5.300903 +L 5.4997,6.368636,5.1985,6.782582 +L 5.1985,6.782582,5.0861,7.187881 +L 5.0861,7.187881,5.0724,7.932261 +L 5.0724,7.932261,3.8816,7.716204 +L 3.8816,7.716204,3.3317,7.449208 +L 3.3317,7.449208,2.9674,6.902584 +L 5.927,6.368636,6.1998,6.368636 +L 6.1998,6.368636,6.4874,6.368636 +L 6.4874,6.368636,6.7812,6.368636 +L 0.8625,6.902584,0.8625,7.245803 +L 0.8625,7.245803,0.8625,7.589066 +L 0.8625,7.589066,0.8625,7.932261 +L 0.8625,7.932261,1.5626,7.932261 +L 1.5626,7.932261,2.2666,7.932261 +L 2.2666,7.932261,2.9674,7.932261 +L 7.6358,6.902584,7.6358,7.245803 +L 7.6358,7.245803,7.6358,7.589066 +L 7.6358,7.589066,7.6358,7.932261 +L 7.6358,7.932261,6.9108,7.932261 +L 6.9108,7.932261,6.1998,7.932261 +L 6.1998,7.932261,5.4997,7.932261 + +[糾] 45 +L 2.1428,0.000062,2.1428,1.600344 +L 2.1428,1.600344,2.1428,3.19212 +L 2.1428,3.19212,2.1428,4.766921 +L 2.1428,4.766921,1.7156,4.766921 +L 1.7156,4.766921,1.2918,4.766921 +L 1.2918,4.766921,0.8645,4.766921 +L 6.8151,0.000062,6.8151,1.06646 +L 6.8151,1.06646,6.8151,2.124387 +L 6.8151,2.124387,6.8151,3.165228 +L 6.8151,3.165228,5.9567,3.001357 +L 5.9567,3.001357,5.1056,2.820729 +L 5.1056,2.820729,4.2478,2.631378 +L 0.8645,1.334803,0.9937,1.944974 +L 0.9937,1.944974,1.1373,2.555145 +L 1.1373,2.555145,1.2918,3.165228 +L 3.3967,1.868752,3.2496,2.315074 +L 3.2496,2.315074,3.1232,2.744365 +L 3.1232,2.744365,3.0006,3.165228 +L 5.1056,3.699188,5.1056,4.946389 +L 5.1056,4.946389,5.1056,6.176592 +L 5.1056,6.176592,5.1056,7.398335 +L 6.8151,3.699188,6.8151,5.480294 +L 6.8151,5.480294,6.8151,7.244424 +L 6.8151,7.244424,6.8151,9.000006 +L 7.2389,3.699188,7.5153,3.699188 +L 7.5153,3.699188,7.7888,3.699188 +L 7.7888,3.699188,8.0616,3.699188 +L 3.3967,4.500144,3.2496,4.766921 +L 3.2496,4.766921,3.1232,5.033896 +L 3.1232,5.033896,3.0006,5.300903 +L 3.0006,5.300903,2.8468,5.137021 +L 2.8468,5.137021,2.7032,4.95624 +L 2.7032,4.95624,2.5733,4.766921 +L 1.7156,5.300903,1.8448,5.567855 +L 1.8448,5.567855,1.9957,5.834818 +L 1.9957,5.834818,2.1428,6.101706 +L 2.1428,6.101706,1.8448,6.471783 +L 1.8448,6.471783,1.5646,6.824918 +L 1.5646,6.824918,1.2918,7.169559 +L 1.2918,7.169559,1.5646,7.779686 +L 1.5646,7.779686,1.8448,8.389792 +L 1.8448,8.389792,2.1428,9.000006 +L 2.5733,7.169559,2.7032,7.435001 +L 2.7032,7.435001,2.8468,7.692081 +L 2.8468,7.692081,3.0006,7.932261 + +[巨] 18 +L 1.2903,0.000062,1.2903,2.821999 +L 1.2903,2.821999,1.2903,5.644066 +L 1.2903,5.644066,1.2903,8.466122 +L 1.2903,8.466122,3.2516,8.466122 +L 3.2516,8.466122,5.2267,8.466122 +L 5.2267,8.466122,7.2055,8.466122 +L 1.7176,0.000062,3.6789,0.000062 +L 3.6789,0.000062,5.654,0.000062 +L 5.654,0.000062,7.6363,0.000062 +L 1.7176,3.165228,3.2516,3.165228 +L 3.2516,3.165228,4.7962,3.165228 +L 4.7962,3.165228,6.3548,3.165228 +L 6.3548,3.165228,6.3548,4.069276 +L 6.3548,4.069276,6.3548,4.95624 +L 6.3548,4.95624,6.3548,5.834818 +L 6.3548,5.834818,4.7962,5.834818 +L 4.7962,5.834818,3.2516,5.834818 +L 3.2516,5.834818,1.7176,5.834818 + +[拒] 33 +L 1.2887,0.000062,1.5651,0.000062 +L 1.5651,0.000062,1.8453,0.000062 +L 1.8453,0.000062,2.1433,0.000062 +L 2.1433,0.000062,2.129,2.622895 +L 2.129,2.622895,2.0173,3.720345 +L 2.0173,3.720345,1.716,4.233158 +L 1.716,4.233158,1.4215,4.069276 +L 1.4215,4.069276,1.1413,3.888496 +L 1.1413,3.888496,0.865,3.699188 +L 3.8522,0.000062,3.8522,2.821999 +L 3.8522,2.821999,3.8522,5.644066 +L 3.8522,5.644066,3.8522,8.466122 +L 3.8522,8.466122,5.257,8.466122 +L 5.257,8.466122,6.6685,8.466122 +L 6.6685,8.466122,8.094,8.466122 +L 4.2798,0.000062,5.5407,0.000062 +L 5.5407,0.000062,6.8121,0.000062 +L 6.8121,0.000062,8.094,0.000062 +L 4.2798,3.165228,5.257,3.165228 +L 5.257,3.165228,6.2409,3.165228 +L 6.2409,3.165228,7.2429,3.165228 +L 7.2429,3.165228,7.2429,4.069276 +L 7.2429,4.069276,7.2429,4.95624 +L 7.2429,4.95624,7.2429,5.834818 +L 7.2429,5.834818,6.2409,5.834818 +L 6.2409,5.834818,5.257,5.834818 +L 5.257,5.834818,4.2798,5.834818 +L 2.5703,4.233158,2.0484,5.518405 +L 2.0484,5.518405,1.8526,6.507158 +L 1.8526,6.507158,0.865,6.902584 +L 2.5703,6.902584,2.2691,7.310729 +L 2.2691,7.310729,2.1574,7.854595 +L 2.1574,7.854595,2.1433,9.000006 + +# kan_25 ------------------------------------------------------- +# 拠虚距享凶叫峡恭況狂矯脅響仰凝暁斤琴緊菌襟謹吟駆愚虞偶遇隅屈掘靴繰桑勲薫傾刑啓契恵慶憩掲携渓継茎蛍鶏 + +[拠] 46 +L 2.1084,-0.000047,2.5353,0.80081 +L 2.5353,0.80081,2.9626,1.601657 +L 2.9626,1.601657,3.3938,2.402482 +L 3.3938,2.402482,3.0222,3.012652 +L 3.0222,3.012652,2.6684,3.622878 +L 2.6684,3.622878,2.322,4.23294 +L 2.322,4.23294,2.1084,3.889754 +L 2.1084,3.889754,1.8947,3.546558 +L 1.8947,3.546558,1.6846,3.203339 +L 5.4988,-0.000047,4.924,0.533924 +L 4.924,0.533924,4.3671,1.067807 +L 4.3671,1.067807,3.8176,1.601657 +L 5.9187,-0.000047,6.3498,-0.000047 +L 6.3498,-0.000047,6.7768,-0.000047 +L 6.7768,-0.000047,7.2041,-0.000047 +L 4.6718,1.868653,4.9524,2.646898 +L 4.9524,2.646898,5.0501,4.357364 +L 5.0501,4.357364,5.0676,8.46609 +L 5.0676,8.46609,5.4988,8.46609 +L 5.4988,8.46609,5.9187,8.46609 +L 5.9187,8.46609,6.3498,8.46609 +L 6.3498,8.46609,6.3498,6.367181 +L 6.3498,6.367181,6.3498,4.259821 +L 6.3498,4.259821,6.3498,2.135573 +L 6.3498,2.135573,6.6262,2.135573 +L 6.6262,2.135573,6.9067,2.135573 +L 6.9067,2.135573,7.2041,2.135573 +L 7.2041,2.135573,7.2041,2.505694 +L 7.2041,2.505694,7.2041,2.858785 +L 7.2041,2.858785,7.2041,3.203339 +L 3.8176,3.203339,3.8176,4.614433 +L 3.8176,4.614433,3.8176,6.025417 +L 3.8176,6.025417,3.8176,7.436424 +L 3.8176,7.436424,3.3938,7.436424 +L 3.3938,7.436424,2.9626,7.436424 +L 2.9626,7.436424,2.5353,7.436424 +L 2.5353,7.436424,2.5353,6.55779 +L 2.5353,6.55779,2.5353,5.670871 +L 2.5353,5.670871,2.5353,4.767009 +L 2.5353,7.970264,2.5353,8.313581 +L 2.5353,8.313581,2.5353,8.656766 +L 2.5353,8.656766,2.5353,9.000006 +L 1.1028,9.000093,1.1028,-0.000047 +L 1.1028,-0.000047,0.2797,-0.000047 +L -0.3787,3.699155,2.5847,5.548778 +L -0.3787,6.902508,2.5847,6.902508 + +[虚] 51 +L 0.0019,0.266949,0.632,2.597492 +L 0.632,2.597492,0.8425,4.597468 +L 0.8425,4.597468,0.8562,6.90253 +L 0.8562,6.90253,2.4182,6.912468 +L 2.4182,6.912468,3.2028,7.388419 +L 3.2028,7.388419,3.4199,9.000006 +L 1.2835,-0.000047,1.9878,-0.000047 +L 1.9878,-0.000047,2.6953,-0.000047 +L 2.6953,-0.000047,3.4199,-0.000047 +L 3.4199,-0.000047,3.4199,0.90399 +L 3.4199,0.90399,3.4199,1.790976 +L 3.4199,1.790976,3.4199,2.669489 +L 3.8157,-0.000047,4.0928,-0.000047 +L 4.0928,-0.000047,4.3765,-0.000047 +L 4.3765,-0.000047,4.6668,-0.000047 +L 4.6668,-0.000047,4.6668,0.90399 +L 4.6668,0.90399,4.6668,1.790976 +L 4.6668,1.790976,4.6668,2.669489 +L 5.0976,-0.000047,5.802,-0.000047 +L 5.802,-0.000047,6.5126,-0.000047 +L 6.5126,-0.000047,7.2341,-0.000047 +L 2.1416,1.334683,1.9878,1.601657 +L 1.9878,1.601657,1.8442,1.868653 +L 1.8442,1.868653,1.7107,2.135573 +L 5.9557,1.067807,6.0818,1.437786 +L 6.0818,1.437786,6.2254,1.790976 +L 6.2254,1.790976,6.376,2.135573 +L 3.8157,3.699078,3.476,4.272605 +L 3.476,4.272605,2.9296,4.549375 +L 2.9296,4.549375,1.7107,4.767009 +L 4.2465,3.699078,5.0976,3.699078 +L 5.0976,3.699078,5.9557,3.699078 +L 5.9557,3.699078,6.8068,3.699078 +L 6.8068,3.699078,6.8068,4.069189 +L 6.8068,4.069189,6.8068,4.422291 +L 6.8068,4.422291,6.8068,4.767009 +L 3.4199,5.300804,3.4343,6.071956 +L 3.4343,6.071956,3.5359,6.487227 +L 3.5359,6.487227,3.8157,6.90253 +L 3.8157,6.90253,4.947,6.824863 +L 4.947,6.824863,6.0818,6.73868 +L 6.0818,6.73868,7.2341,6.635578 +L 7.2341,6.635578,7.0835,6.368614 +L 7.0835,6.368614,6.9368,6.101727 +L 6.9368,6.101727,6.8068,5.834709 +L 3.8157,5.300804,4.5197,5.300804 +L 4.5197,5.300804,5.2272,5.300804 +L 5.2272,5.300804,5.9557,5.300804 +L 3.8157,7.970264,4.6668,7.970264 +L 4.6668,7.970264,5.5249,7.970264 +L 5.5249,7.970264,6.376,7.970264 + +[距] 42 +L 3.4184,-0.000047,3.4184,2.822021 +L 3.4184,2.822021,3.4184,5.644077 +L 3.4184,5.644077,3.4184,8.46609 +L 3.4184,8.46609,4.6797,8.46609 +L 4.6797,8.46609,5.9546,8.46609 +L 5.9546,8.46609,7.2361,8.46609 +L 3.8496,-0.000047,4.977,-0.000047 +L 4.977,-0.000047,6.1052,-0.000047 +L 6.1052,-0.000047,7.2361,-0.000047 +L 0.4592,0.533924,0.4592,1.944854 +L 0.4592,1.944854,0.4592,3.355893 +L 0.4592,3.355893,0.4592,4.767009 +L 1.1033,0.533924,1.1629,2.314964 +L 1.1629,2.314964,1.2329,4.079095 +L 1.2329,4.079095,1.3135,5.834709 +L 1.3135,5.834709,1.0193,5.834709 +L 1.0193,5.834709,0.7356,5.834709 +L 0.7356,5.834709,0.4592,5.834709 +L 0.4592,5.834709,0.4592,6.711898 +L 0.4592,6.711898,0.4592,7.588956 +L 0.4592,7.588956,0.4592,8.46609 +L 0.4592,8.46609,1.0123,8.46609 +L 1.0123,8.46609,1.5656,8.46609 +L 1.5656,8.46609,2.14,8.46609 +L 2.14,8.46609,1.9968,7.588956 +L 1.9968,7.588956,1.8637,6.711898 +L 1.8637,6.711898,1.7408,5.834709 +L 1.7408,0.533924,2.014,0.723166 +L 2.014,0.723166,2.2942,0.90399 +L 2.2942,0.90399,2.5673,1.067807 +L 3.8496,3.203339,4.8264,3.203339 +L 4.8264,3.203339,5.8106,3.203339 +L 5.8106,3.203339,6.8057,3.203339 +L 6.8057,3.203339,6.8057,4.080518 +L 6.8057,4.080518,6.8057,4.957608 +L 6.8057,4.957608,6.8057,5.834709 +L 6.8057,5.834709,5.8106,5.834709 +L 5.8106,5.834709,4.8264,5.834709 +L 4.8264,5.834709,3.8496,5.834709 +L 1.7408,3.699078,2.014,3.699078 +L 2.014,3.699078,2.2942,3.699078 +L 2.2942,3.699078,2.5673,3.699078 + +[享] 39 +L 2.1736,-0.000047,2.5974,-0.000047 +L 2.5974,-0.000047,3.0247,-0.000047 +L 3.0247,-0.000047,3.452,-0.000047 +L 3.452,-0.000047,3.452,0.723166 +L 3.452,0.723166,3.452,1.437786 +L 3.452,1.437786,3.452,2.135573 +L 3.452,2.135573,2.321,2.135573 +L 2.321,2.135573,1.1929,2.135573 +L 1.1929,2.135573,0.0616,2.135573 +L 3.8796,2.402482,4.2859,2.934997 +L 4.2859,2.934997,4.7023,3.458985 +L 4.7023,3.458985,5.1296,3.966042 +L 5.1296,3.966042,3.7041,4.069189 +L 3.7041,4.069189,2.2927,4.155273 +L 2.2927,4.155273,0.8882,4.23294 +L 4.3066,2.135573,5.1366,2.135573 +L 5.1366,2.135573,5.9846,2.135573 +L 5.9846,2.135573,6.8388,2.135573 +L 1.3155,5.300804,1.3155,5.834709 +L 1.3155,5.834709,1.3155,6.368614 +L 1.3155,6.368614,1.3155,6.90253 +L 1.3155,6.90253,2.72,6.90253 +L 2.72,6.90253,4.1279,6.90253 +L 4.1279,6.90253,5.5569,6.90253 +L 5.5569,6.90253,5.5569,6.368614 +L 5.5569,6.368614,5.5569,5.834709 +L 5.5569,5.834709,5.5569,5.300804 +L 5.5569,5.300804,4.1279,5.300804 +L 4.1279,5.300804,2.72,5.300804 +L 2.72,5.300804,1.3155,5.300804 +L 0.0616,7.970264,1.1929,7.970264 +L 1.1929,7.970264,2.321,7.970264 +L 2.321,7.970264,3.452,7.970264 +L 3.452,7.970264,3.452,8.313581 +L 3.452,8.313581,3.452,8.656766 +L 3.452,8.656766,3.452,9.000006 +L 3.8796,7.970264,4.8529,7.970264 +L 4.8529,7.970264,5.8371,7.970264 +L 5.8371,7.970264,6.8388,7.970264 + +[凶] 21 +L 0.0639,-0.000047,0.0639,2.668044 +L 0.0639,2.668044,0.0639,5.327631 +L 0.0639,5.327631,0.0639,7.970264 +L 0.4909,-0.000047,2.6064,-0.000047 +L 2.6064,-0.000047,4.7359,-0.000047 +L 4.7359,-0.000047,6.8657,-0.000047 +L 6.8657,-0.000047,6.8657,2.668044 +L 6.8657,2.668044,6.8657,5.327631 +L 6.8657,5.327631,6.8657,7.970264 +L 1.3455,1.601657,2.1756,2.668044 +L 2.1756,2.668044,3.0267,3.725982 +L 3.0267,3.725982,3.8781,4.767009 +L 3.8781,4.767009,3.0267,5.490188 +L 3.0267,5.490188,2.1756,6.20471 +L 2.1756,6.20471,1.3455,6.90253 +L 5.587,1.868653,5.1565,2.668044 +L 5.1565,2.668044,4.7359,3.458985 +L 4.7359,3.458985,4.3054,4.23294 +L 4.3054,5.567746,4.9075,6.920896 +L 4.9075,6.920896,5.1281,7.672325 +L 5.1281,7.672325,5.1565,8.46609 + +[叫] 27 +L 5.5855,-0.000047,5.5714,1.898205 +L 5.5714,1.898205,5.4702,2.728812 +L 5.4702,2.728812,5.1932,3.203339 +L 5.1932,3.203339,4.188,2.587597 +L 4.188,2.587597,2.8395,2.242879 +L 2.8395,2.242879,1.7751,2.135573 +L 0.094,3.203339,0.094,4.803675 +L 0.094,4.803675,0.094,6.39544 +L 0.094,6.39544,0.094,7.970264 +L 0.094,7.970264,0.6435,7.970264 +L 0.6435,7.970264,1.2039,7.970264 +L 1.2039,7.970264,1.7751,7.970264 +L 1.7751,7.970264,1.7751,6.39544 +L 1.7751,6.39544,1.7751,4.803675 +L 1.7751,4.803675,1.7751,3.203339 +L 1.7751,3.203339,1.2039,3.203339 +L 1.2039,3.203339,0.6435,3.203339 +L 0.6435,3.203339,0.094,3.203339 +L 3.4843,3.203339,3.4843,4.803675 +L 3.4843,4.803675,3.4843,6.39544 +L 3.4843,6.39544,3.4843,7.970264 +L 6.0166,3.203339,5.715,3.748528 +L 5.715,3.748528,5.603,5.25143 +L 5.603,5.25143,5.5855,9.000006 +L 6.4404,3.203339,6.7167,3.382764 +L 6.7167,3.382764,7.0004,3.545156 +L 7.0004,3.545156,7.2947,3.699078 + +[峡・] 42 +L 3.0867,-0.000047,3.7875,1.247121 +L 3.7875,1.247121,4.488,2.477358 +L 4.488,2.477358,5.1882,3.699078 +L 5.1882,3.699078,4.8103,4.074837 +L 4.8103,4.074837,4.155,4.21325 +L 4.155,4.21325,2.6594,4.23294 +L 2.6594,4.23294,2.6594,3.545156 +L 2.6594,3.545156,2.6594,2.848902 +L 2.6594,2.848902,2.6594,2.135573 +L 2.6594,2.135573,1.8052,2.135573 +L 1.8052,2.135573,0.9572,2.135573 +L 0.9572,2.135573,0.1271,2.135573 +L 0.1271,2.135573,0.1271,3.735854 +L 0.1271,3.735854,0.1271,5.327631 +L 0.1271,5.327631,0.1271,6.90253 +L 7.3247,-0.000047,6.7468,1.067807 +L 6.7468,1.067807,6.1762,2.135573 +L 6.1762,2.135573,5.6193,3.203339 +L 1.3775,2.669489,1.3775,4.793791 +L 1.3775,4.793791,1.3775,6.901129 +L 1.3775,6.901129,1.3775,9.000006 +L 5.6193,4.23294,5.0376,5.809382 +L 5.0376,5.809382,4.8835,6.978796 +L 4.8835,6.978796,3.5105,7.436424 +L 6.0428,4.23294,6.4736,4.23294 +L 6.4736,4.23294,6.8977,4.23294 +L 6.8977,4.23294,7.3247,4.23294 +L 2.6594,4.767009,2.6594,5.490188 +L 2.6594,5.490188,2.6594,6.20471 +L 2.6594,6.20471,2.6594,6.90253 +L 3.9417,5.567746,3.7875,5.834709 +L 3.7875,5.834709,3.6436,6.101727 +L 3.6436,6.101727,3.5105,6.368614 +L 6.4736,5.300804,6.6035,5.670871 +L 6.6035,5.670871,6.7468,6.02394 +L 6.7468,6.02394,6.8977,6.368614 +L 5.6193,7.436424,5.3143,7.850162 +L 5.3143,7.850162,5.2022,8.25557 +L 5.2022,8.25557,5.1882,9.000006 +L 6.0428,7.436424,6.3198,7.436424 +L 6.3198,7.436424,6.6035,7.436424 +L 6.6035,7.436424,6.8977,7.436424 + +[恭] 42 +L 2.6579,-0.000047,2.9346,-0.000047 +L 2.9346,-0.000047,3.2183,-0.000047 +L 3.2183,-0.000047,3.5164,-0.000047 +L 3.5164,-0.000047,3.5164,1.247121 +L 3.5164,1.247121,3.5164,2.477358 +L 3.5164,2.477358,3.5164,3.699078 +L 0.9802,1.067807,1.2534,1.601657 +L 1.2534,1.601657,1.541,2.135573 +L 1.541,2.135573,1.8352,2.669489 +L 4.7944,1.067807,4.7769,1.838959 +L 4.7769,1.838959,4.6648,2.254273 +L 4.6648,2.254273,4.3675,2.669489 +L 6.5004,1.334683,6.2062,1.790976 +L 6.2062,1.790976,5.926,2.238633 +L 5.926,2.238633,5.6455,2.669489 +L 0.3393,2.669489,0.9802,3.468956 +L 0.9802,3.468956,1.6215,4.259821 +L 1.6215,4.259821,2.2621,5.033786 +L 2.2621,5.033786,1.541,5.136999 +L 1.541,5.136999,0.8296,5.223094 +L 0.8296,5.223094,0.126,5.300804 +L 6.8994,2.669489,5.4949,4.495788 +L 5.4949,4.495788,4.4687,5.076264 +L 4.4687,5.076264,2.6579,5.300804 +L 2.6579,5.300804,2.6442,6.447682 +L 2.6442,6.447682,2.5388,7.001453 +L 2.5388,7.001453,2.2621,7.436424 +L 2.2621,7.436424,1.6807,7.436424 +L 1.6807,7.436424,1.1098,7.436424 +L 1.1098,7.436424,0.5529,7.436424 +L 5.6455,5.300804,6.1954,5.300804 +L 6.1954,5.300804,6.7561,5.300804 +L 6.7561,5.300804,7.3267,5.300804 +L 4.7944,5.834709,4.241,7.41809 +L 4.241,7.41809,3.2116,7.619964 +L 3.2116,7.619964,2.6579,9.000006 +L 5.2217,7.436424,4.9208,7.850162 +L 4.9208,7.850162,4.8084,8.25557 +L 4.8084,8.25557,4.7944,9.000006 +L 5.6455,7.436424,6.0556,7.436424 +L 6.0556,7.436424,6.4724,7.436424 +L 6.4724,7.436424,6.8994,7.436424 + +[況] 33 +L 0.1592,0.266949,0.5619,1.411003 +L 0.5619,1.411003,0.9822,2.555068 +L 0.9822,2.555068,1.4099,3.699078 +L 2.0505,-0.000047,3.1716,1.523968 +L 3.1716,1.523968,3.7842,2.83614 +L 3.7842,2.83614,3.9733,4.767009 +L 3.9733,4.767009,3.5425,4.767009 +L 3.5425,4.767009,3.1152,4.767009 +L 3.1152,4.767009,2.6848,4.767009 +L 2.6848,4.767009,2.6848,6.014057 +L 2.6848,6.014057,2.6848,7.244402 +L 2.6848,7.244402,2.6848,8.46609 +L 2.6848,8.46609,3.9453,8.46609 +L 3.9453,8.46609,5.2237,8.46609 +L 5.2237,8.46609,6.5056,8.46609 +L 6.5056,8.46609,6.5056,7.244402 +L 6.5056,7.244402,6.5056,6.014057 +L 6.5056,6.014057,6.5056,4.767009 +L 6.5056,4.767009,6.0751,4.767009 +L 6.0751,4.767009,5.6475,4.767009 +L 5.6475,4.767009,5.2202,4.767009 +L 5.2202,4.767009,5.0976,1.92084 +L 5.0976,1.92084,5.4444,0.430711 +L 5.4444,0.430711,7.3567,-0.000047 +L 7.3567,-0.000047,7.3567,0.533924 +L 7.3567,0.533924,7.3567,1.067807 +L 7.3567,1.067807,7.3567,1.601657 +L 1.0103,5.834709,0.7129,6.20471 +L 0.7129,6.20471,0.4323,6.55779 +L 0.4323,6.55779,0.1592,6.90253 +L 1.4099,7.970264,1.1328,8.313581 +L 1.1328,8.313581,0.8596,8.656766 +L 0.8596,8.656766,0.583,9.000006 + +[狂] 42 +L 0.1577,-0.000047,0.7881,0.039531 +L 0.7881,0.039531,1.2368,0.316421 +L 1.2368,0.316421,1.8672,1.067807 +L 1.8672,1.067807,1.7831,2.478813 +L 1.7831,2.478813,1.7131,3.889754 +L 1.7131,3.889754,1.6497,5.300804 +L 1.6497,5.300804,1.1418,4.612934 +L 1.1418,4.612934,0.648,3.916537 +L 0.648,3.916537,0.1577,3.203339 +L 3.1421,-0.000047,3.8496,-0.000047 +L 3.8496,-0.000047,4.5532,-0.000047 +L 4.5532,-0.000047,5.2537,-0.000047 +L 5.2537,-0.000047,5.3028,2.829113 +L 5.3028,2.829113,4.9844,4.327604 +L 4.9844,4.327604,3.5725,4.767009 +L 5.6775,-0.000047,6.2379,-0.000047 +L 6.2379,-0.000047,6.8092,-0.000047 +L 6.8092,-0.000047,7.3867,-0.000047 +L 5.6775,4.767009,5.3798,5.25988 +L 5.3798,5.25988,5.2712,6.21883 +L 5.2712,6.21883,5.2537,8.46609 +L 5.2537,8.46609,4.5532,8.46609 +L 4.5532,8.46609,3.8496,8.46609 +L 3.8496,8.46609,3.1421,8.46609 +L 6.1052,4.767009,6.3815,4.767009 +L 6.3815,4.767009,6.6652,4.767009 +L 6.6652,4.767009,6.9629,4.767009 +L 1.436,5.834709,1.4189,6.605916 +L 1.4189,6.605916,1.3135,7.021197 +L 1.3135,7.021197,1.0123,7.436424 +L 1.0123,7.436424,0.7145,7.09175 +L 0.7145,7.09175,0.4343,6.73868 +L 0.4343,6.73868,0.1577,6.368614 +L 1.0123,7.970264,0.7145,8.313581 +L 0.7145,8.313581,0.4343,8.656766 +L 0.4343,8.656766,0.1577,9.000006 +L 1.436,7.970264,1.7131,8.313581 +L 1.7131,8.313581,1.9929,8.656766 +L 1.9929,8.656766,2.291,9.000006 +L 5.6775,8.46609,6.2379,8.46609 +L 6.2379,8.46609,6.8092,8.46609 +L 6.8092,8.46609,7.3867,8.46609 + +[矯] 66 +L 0.1915,-0.000047,1.0913,1.964653 +L 1.0913,1.964653,1.3995,3.895391 +L 1.3995,3.895391,0.1915,4.767009 +L 3.1476,-0.000047,3.1476,1.067807 +L 3.1476,1.067807,3.1476,2.135573 +L 3.1476,2.135573,3.1476,3.203339 +L 3.1476,3.203339,4.4081,3.203339 +L 4.4081,3.203339,5.6799,3.203339 +L 5.6799,3.203339,6.9614,3.203339 +L 6.9614,3.203339,6.9614,2.135573 +L 6.9614,2.135573,6.9614,1.067807 +L 6.9614,1.067807,6.9614,-0.000047 +L 6.9614,-0.000047,6.6847,-0.000047 +L 6.6847,-0.000047,6.415,-0.000047 +L 6.415,-0.000047,6.1348,-0.000047 +L 4.426,1.067807,4.426,1.437786 +L 4.426,1.437786,4.426,1.790976 +L 4.426,1.790976,4.426,2.135573 +L 4.426,2.135573,4.8564,2.135573 +L 4.8564,2.135573,5.2802,2.135573 +L 5.2802,2.135573,5.711,2.135573 +L 5.711,2.135573,5.711,1.790976 +L 5.711,1.790976,5.711,1.437786 +L 5.711,1.437786,5.711,1.067807 +L 5.711,1.067807,5.2802,1.067807 +L 5.2802,1.067807,4.8564,1.067807 +L 4.8564,1.067807,4.426,1.067807 +L 2.2965,1.868653,2.1455,2.135573 +L 2.1455,2.135573,2.0195,2.402482 +L 2.0195,2.402482,1.8972,2.669489 +L 1.8972,4.767009,1.5957,5.221682 +L 1.5957,5.221682,1.4836,5.913831 +L 1.4836,5.913831,1.4699,7.436424 +L 1.4699,7.436424,0.8531,7.218878 +L 0.8531,7.218878,0.5173,6.942085 +L 0.5173,6.942085,0.1915,6.368614 +L 2.2965,4.767009,2.8495,5.403962 +L 2.8495,5.403962,3.4239,6.02394 +L 3.4239,6.02394,4.0022,6.635578 +L 4.0022,6.635578,3.3014,6.90253 +L 3.3014,6.90253,2.6012,7.16946 +L 2.6012,7.16946,1.8972,7.436424 +L 4.0022,5.033786,4.6501,5.627003 +L 4.6501,5.627003,5.4904,6.042383 +L 5.4904,6.042383,6.1348,6.635578 +L 6.1348,6.635578,5.5573,6.73868 +L 5.5573,6.73868,4.986,6.824863 +L 4.986,6.824863,4.426,6.90253 +L 4.426,4.767009,5.6445,4.984423 +L 5.6445,4.984423,6.1909,5.261325 +L 6.1909,5.261325,6.531,5.834709 +L 6.531,5.834709,6.8073,5.670871 +L 6.8073,5.670871,7.0875,5.490188 +L 7.0875,5.490188,7.3887,5.300804 +L 6.531,6.90253,6.8073,6.90253 +L 6.8073,6.90253,7.0875,6.90253 +L 7.0875,6.90253,7.3887,6.90253 +L 4.8564,7.703421,4.426,7.806414 +L 4.426,7.806414,4.0022,7.89263 +L 4.0022,7.89263,3.5749,7.970264 +L 1.0426,7.970264,1.0426,8.313581 +L 1.0426,8.313581,1.0426,8.656766 +L 1.0426,8.656766,1.0426,9.000006 +L 5.2802,7.970264,5.613,8.31925 +L 5.613,8.31925,5.939,8.447691 +L 5.939,8.447691,6.531,8.46609 + +[脅] 63 +L 1.4649,-0.000047,1.4649,1.247121 +L 1.4649,1.247121,1.4649,2.477358 +L 1.4649,2.477358,1.4649,3.699078 +L 1.4649,3.699078,3.0235,3.699078 +L 3.0235,3.699078,4.5782,3.699078 +L 4.5782,3.699078,6.1368,3.699078 +L 6.1368,3.699078,6.1368,2.477358 +L 6.1368,2.477358,6.1368,1.247121 +L 6.1368,1.247121,6.1368,-0.000047 +L 6.1368,-0.000047,5.7095,-0.000047 +L 5.7095,-0.000047,5.2857,-0.000047 +L 5.2857,-0.000047,4.8549,-0.000047 +L 1.8957,1.601657,3.1563,1.601657 +L 3.1563,1.601657,4.428,1.601657 +L 4.428,1.601657,5.7095,1.601657 +L 1.8957,2.669489,3.1563,2.669489 +L 3.1563,2.669489,4.428,2.669489 +L 4.428,2.669489,5.7095,2.669489 +L 0.4313,4.23294,0.7676,4.689254 +L 0.7676,4.689254,1.1108,5.136999 +L 1.1108,5.136999,1.4649,5.567746 +L 1.4649,5.567746,1.0446,5.670871 +L 1.0446,5.670871,0.624,5.757097 +L 0.624,5.757097,0.2177,5.834709 +L 2.323,4.767009,2.5997,4.767009 +L 2.5997,4.767009,2.8796,4.767009 +L 2.8796,4.767009,3.1738,4.767009 +L 3.1738,4.767009,3.1738,5.136999 +L 3.1738,5.136999,3.1738,5.490188 +L 3.1738,5.490188,3.1738,5.834709 +L 3.1738,5.834709,2.7535,5.834709 +L 2.7535,5.834709,2.323,5.834709 +L 2.323,5.834709,1.8957,5.834709 +L 1.8957,5.834709,1.8957,6.20471 +L 1.8957,6.20471,1.8957,6.55779 +L 1.8957,6.55779,1.8957,6.90253 +L 1.8957,6.90253,1.4719,6.90253 +L 1.4719,6.90253,1.0513,6.90253 +L 1.0513,6.90253,0.6485,6.90253 +L 4.2459,4.767009,4.4346,5.033786 +L 4.4346,5.033786,4.6451,5.300804 +L 4.6451,5.300804,4.8549,5.567746 +L 4.8549,5.567746,4.5782,5.670871 +L 4.5782,5.670871,4.3054,5.757097 +L 4.3054,5.757097,4.0319,5.834709 +L 6.1368,4.767009,6.4135,4.767009 +L 6.4135,4.767009,6.6941,4.767009 +L 6.6941,4.767009,6.9918,4.767009 +L 6.9918,4.767009,6.9918,5.136999 +L 6.9918,5.136999,6.9918,5.490188 +L 6.9918,5.490188,6.9918,5.834709 +L 6.9918,5.834709,6.4135,5.834709 +L 6.4135,5.834709,5.8395,5.834709 +L 5.8395,5.834709,5.2857,5.834709 +L 5.2857,5.834709,5.5978,6.762672 +L 5.5978,6.762672,5.9621,7.563541 +L 5.9621,7.563541,6.1368,8.46609 +L 6.1368,8.46609,4.0249,8.275403 +L 4.0249,8.275403,3.0337,8.008494 +L 3.0337,8.008494,2.323,7.436424 +L 1.0446,8.46609,1.5977,8.46609 +L 1.5977,8.46609,2.1721,8.46609 +L 2.1721,8.46609,2.7535,8.46609 + +[響] 72 +L 1.5016,-0.000047,1.5016,0.723166 +L 1.5016,0.723166,1.5016,1.437786 +L 1.5016,1.437786,1.5016,2.135573 +L 1.5016,2.135573,1.0708,2.135573 +L 1.0708,2.135573,0.647,2.135573 +L 0.647,2.135573,0.2165,2.135573 +L 1.9219,-0.000047,3.1828,-0.000047 +L 3.1828,-0.000047,4.4615,-0.000047 +L 4.4615,-0.000047,5.7434,-0.000047 +L 5.7434,-0.000047,5.7434,0.370064 +L 5.7434,0.370064,5.7434,0.723166 +L 5.7434,0.723166,5.7434,1.067807 +L 5.7434,1.067807,4.4615,1.067807 +L 4.4615,1.067807,3.1828,1.067807 +L 3.1828,1.067807,1.9219,1.067807 +L 5.7434,1.868653,4.4615,1.971757 +L 4.4615,1.971757,3.1828,2.057961 +L 3.1828,2.057961,1.9219,2.135573 +L 6.1672,2.135573,6.4436,2.135573 +L 6.4436,2.135573,6.7276,2.135573 +L 6.7276,2.135573,7.0215,2.135573 +L 2.3527,2.936376,1.6315,3.202004 +L 1.6315,3.202004,0.924,3.458985 +L 0.924,3.458985,0.2165,3.699078 +L 4.885,2.936376,4.1848,3.039567 +L 4.1848,3.039567,3.4805,3.125672 +L 3.4805,3.125672,2.7803,3.203339 +L 5.3126,3.203339,5.589,3.203339 +L 5.589,3.203339,5.8727,3.203339 +L 5.8727,3.203339,6.1672,3.203339 +L 3.6031,3.699078,3.3933,3.888386 +L 3.3933,3.888386,3.1828,4.069189 +L 3.1828,4.069189,2.9936,4.23294 +L 2.9936,4.23294,2.9131,5.644077 +L 2.9131,5.644077,2.8469,7.055127 +L 2.8469,7.055127,2.7803,8.46609 +L 2.7803,8.46609,3.3337,8.46609 +L 3.3337,8.46609,3.8868,8.46609 +L 3.8868,8.46609,4.4577,8.46609 +L 4.4577,8.46609,4.1638,7.244402 +L 4.1638,7.244402,3.8801,6.014057 +L 3.8801,6.014057,3.6031,4.767009 +L 1.0708,4.23294,1.2042,4.500046 +L 1.2042,4.500046,1.3478,4.767009 +L 1.3478,4.767009,1.5016,5.033786 +L 1.5016,5.033786,1.2042,5.223094 +L 1.2042,5.223094,0.924,5.403962 +L 0.924,5.403962,0.647,5.567746 +L 0.647,5.567746,0.9272,6.889811 +L 0.9272,6.889811,0.9097,7.728835 +L 0.9097,7.728835,1.5016,9.000006 +L 5.3126,4.23294,5.3126,5.644077 +L 5.3126,5.644077,5.3126,7.055127 +L 5.3126,7.055127,5.3126,8.46609 +L 5.3126,8.46609,5.8727,8.389846 +L 5.8727,8.389846,6.4436,8.313581 +L 6.4436,8.313581,7.0215,8.237238 +L 7.0215,8.237238,6.7276,7.806414 +L 6.7276,7.806414,6.4436,7.358648 +L 6.4436,7.358648,6.1672,6.90253 +L 6.1672,6.90253,6.4436,6.471706 +L 6.4436,6.471706,6.7276,6.02394 +L 6.7276,6.02394,7.0215,5.567746 +L 7.0215,5.567746,6.7276,5.300804 +L 6.7276,5.300804,6.4436,5.033786 +L 6.4436,5.033786,6.1672,4.767009 +L 1.9219,6.101727,1.6417,6.882784 +L 1.6417,6.882784,1.6417,7.367283 +L 1.6417,7.367283,1.9219,7.970264 +L 3.2111,7.436424,3.4805,7.436424 +L 3.4805,7.436424,3.7575,7.436424 +L 3.7575,7.436424,4.0339,7.436424 + +[仰] 33 +L 1.1047,-0.000047,1.0206,1.944854 +L 1.0206,1.944854,0.9502,3.889754 +L 0.9502,3.889754,0.8872,5.834709 +L 0.8872,5.834709,0.6774,5.670871 +L 0.6774,5.670871,0.4634,5.490188 +L 0.4634,5.490188,0.2501,5.300804 +L 5.3423,-0.000047,5.3423,2.668044 +L 5.3423,2.668044,5.3423,5.327631 +L 5.3423,5.327631,5.3423,7.970264 +L 5.3423,7.970264,5.8957,7.970264 +L 5.8957,7.970264,6.4494,7.970264 +L 6.4494,7.970264,7.02,7.970264 +L 7.02,7.970264,7.02,5.861557 +L 7.02,5.861557,7.02,3.735854 +L 7.02,3.735854,7.02,1.601657 +L 7.02,1.601657,6.7257,1.601657 +L 6.7257,1.601657,6.442,1.601657 +L 6.442,1.601657,6.1657,1.601657 +L 1.9274,1.067807,2.2041,1.067807 +L 2.2041,1.067807,2.4846,1.067807 +L 2.4846,1.067807,2.7823,1.067807 +L 2.7823,1.067807,2.7823,3.382764 +L 2.7823,3.382764,2.7823,5.680744 +L 2.7823,5.680744,2.7823,7.970264 +L 2.7823,7.970264,3.3354,8.149622 +L 3.3354,8.149622,3.9133,8.312136 +L 3.9133,8.312136,4.4912,8.46609 +L 3.4194,1.601657,3.7662,1.790976 +L 3.7662,1.790976,4.1269,1.971757 +L 4.1269,1.971757,4.4912,2.135573 +L 1.1047,6.635578,1.381,7.435066 +L 1.381,7.435066,1.651,8.225909 +L 1.651,8.225909,1.9274,9.000006 + +[凝] 66 +L 1.534,-0.000047,1.9543,0.723166 +L 1.9543,0.723166,2.3847,1.437786 +L 2.3847,1.437786,2.812,2.135573 +L 2.812,2.135573,2.4796,2.511266 +L 2.4796,2.511266,2.1465,2.649623 +L 2.1465,2.649623,1.534,2.669489 +L 3.6631,-0.000047,3.793,0.189206 +L 3.793,0.189206,3.9433,0.370064 +L 3.9433,0.370064,4.0939,0.533924 +L 4.0939,0.533924,3.793,0.90399 +L 3.793,0.90399,3.5128,1.257082 +L 3.5128,1.257082,3.2393,1.601657 +L 5.7681,0.266949,5.3443,0.533924 +L 5.3443,0.533924,4.917,0.80081 +L 4.917,0.80081,4.4897,1.067807 +L 4.4897,1.067807,4.4897,1.944854 +L 4.4897,1.944854,4.4897,2.822021 +L 4.4897,2.822021,4.4897,3.699078 +L 6.1989,-0.000047,6.6265,-0.000047 +L 6.6265,-0.000047,7.0538,-0.000047 +L 7.0538,-0.000047,7.4811,-0.000047 +L 0.2797,1.067807,0.3813,2.035272 +L 0.3813,2.035272,0.5704,3.11302 +L 0.5704,3.11302,0.6759,4.767009 +L 5.7681,1.067807,5.7681,2.668044 +L 5.7681,2.668044,5.7681,4.259821 +L 5.7681,4.259821,5.7681,5.834709 +L 5.7681,5.834709,5.3443,5.834709 +L 5.3443,5.834709,4.917,5.834709 +L 4.917,5.834709,4.4897,5.834709 +L 3.2393,2.669489,2.9381,3.103114 +L 2.9381,3.103114,2.8264,3.646881 +L 2.8264,3.646881,2.812,4.767009 +L 2.812,4.767009,2.1921,4.727343 +L 2.1921,4.727343,1.8593,4.450507 +L 1.8593,4.450507,1.534,3.699078 +L 6.1989,3.203339,6.4756,3.203339 +L 6.4756,3.203339,6.7561,3.203339 +L 6.7561,3.203339,7.0538,3.203339 +L 7.0538,4.767009,7.1831,5.033786 +L 7.1831,5.033786,7.3267,5.300804 +L 7.3267,5.300804,7.4811,5.567746 +L 7.4811,5.567746,6.546,5.992965 +L 6.546,5.992965,5.9887,6.477463 +L 5.9887,6.477463,5.3443,7.436424 +L 1.9543,5.567746,2.1465,6.34737 +L 2.1465,6.34737,2.0523,7.355922 +L 2.0523,7.355922,1.9543,9.000006 +L 2.812,6.368614,3.0855,6.368614 +L 3.0855,6.368614,3.3692,6.368614 +L 3.3692,6.368614,3.6631,6.368614 +L 3.6631,6.368614,3.6631,6.73868 +L 3.6631,6.73868,3.6631,7.09175 +L 3.6631,7.09175,3.6631,7.436424 +L 0.6759,7.703421,0.5319,7.968939 +L 0.5319,7.968939,0.4023,8.225909 +L 0.4023,8.225909,0.2797,8.46609 +L 6.1989,7.436424,6.3253,7.703421 +L 6.3253,7.703421,6.4756,7.970264 +L 6.4756,7.970264,6.6265,8.237238 +L 6.6265,8.237238,5.905,8.313581 +L 5.905,8.313581,5.194,8.389846 +L 5.194,8.389846,4.4897,8.46609 +L 2.5987,7.970264,2.9416,8.149622 +L 2.9416,8.149622,3.2988,8.312136 +L 3.2988,8.312136,3.6631,8.46609 + +[暁] 51 +L 2.6007,-0.000047,3.4483,1.204796 +L 3.4483,1.204796,3.9351,2.265525 +L 3.9351,2.265525,4.0924,3.699078 +L 4.0924,3.699078,3.6651,3.699078 +L 3.6651,3.699078,3.2378,3.699078 +L 3.2378,3.699078,2.8105,3.699078 +L 5.3746,-0.000047,5.3746,1.247121 +L 5.3746,1.247121,5.3746,2.477358 +L 5.3746,2.477358,5.3746,3.699078 +L 5.3746,3.699078,5.0766,3.699078 +L 5.0766,3.699078,4.7932,3.699078 +L 4.7932,3.699078,4.5236,3.699078 +L 5.8019,-0.000047,6.3518,-0.000047 +L 6.3518,-0.000047,6.9084,-0.000047 +L 6.9084,-0.000047,7.4796,-0.000047 +L 7.4796,-0.000047,7.4796,0.533924 +L 7.4796,0.533924,7.4796,1.067807 +L 7.4796,1.067807,7.4796,1.601657 +L 0.2817,2.669489,0.2817,4.450507 +L 0.2817,4.450507,0.2817,6.214616 +L 0.2817,6.214616,0.2817,7.970264 +L 0.2817,7.970264,0.8351,7.970264 +L 0.8351,7.970264,1.4099,7.970264 +L 1.4099,7.970264,1.9913,7.970264 +L 1.9913,7.970264,1.9913,6.214616 +L 1.9913,6.214616,1.9913,4.450507 +L 1.9913,4.450507,1.9913,2.669489 +L 1.9913,2.669489,1.4099,2.669489 +L 1.4099,2.669489,0.8351,2.669489 +L 0.8351,2.669489,0.2817,2.669489 +L 6.0152,3.699078,5.6055,5.939268 +L 5.6055,5.939268,4.3726,5.933642 +L 4.3726,5.933642,3.6651,4.23294 +L 0.7024,5.300804,0.9826,5.300804 +L 0.9826,5.300804,1.2628,5.300804 +L 1.2628,5.300804,1.5601,5.300804 +L 3.0245,5.834709,3.2378,6.20471 +L 3.2378,6.20471,3.4518,6.55779 +L 3.4518,6.55779,3.6651,6.90253 +L 6.6562,5.834709,6.5021,6.20471 +L 6.5021,6.20471,6.362,6.55779 +L 6.362,6.55779,6.2292,6.90253 +L 4.9473,6.368614,4.6041,7.817742 +L 4.6041,7.817742,3.7842,8.072043 +L 3.7842,8.072043,2.8105,7.970264 +L 5.3746,7.970264,5.2237,8.313581 +L 5.2237,8.313581,5.0766,8.656766 +L 5.0766,8.656766,4.9473,9.000006 +L 5.8019,7.970264,6.2082,7.970264 +L 6.2082,7.970264,6.6285,7.970264 +L 6.6285,7.970264,7.0485,7.970264 + +[斤] 18 +L 4.5501,-0.000047,4.5501,1.781103 +L 4.5501,1.781103,4.5501,3.545156 +L 4.5501,3.545156,4.5501,5.300804 +L 4.5501,5.300804,3.4219,5.300804 +L 3.4219,5.300804,2.2945,5.300804 +L 2.2945,5.300804,1.1593,5.300804 +L 1.1593,5.300804,1.1313,3.725982 +L 1.1313,3.725982,0.9107,2.49013 +L 0.9107,2.49013,0.3083,0.533924 +L 4.9805,5.300804,5.8106,5.300804 +L 5.8106,5.300804,6.655,5.300804 +L 6.655,5.300804,7.5058,5.300804 +L 1.1593,5.834709,1.1593,6.55779 +L 1.1593,6.55779,1.1593,7.272641 +L 1.1593,7.272641,1.1593,7.970264 +L 1.1593,7.970264,2.9946,8.149622 +L 2.9946,8.149622,4.8268,8.312136 +L 4.8268,8.312136,6.655,8.46609 + +[琴] 39 +L 4.3381,-0.000047,5.0876,0.790949 +L 5.0876,0.790949,5.3643,1.344665 +L 5.3643,1.344665,5.4063,2.135573 +L 5.4063,2.135573,4.275,2.135573 +L 4.275,2.135573,3.1437,2.135573 +L 3.1437,2.135573,2.0198,2.135573 +L 0.3141,3.203339,2.0338,4.173682 +L 2.0338,4.173682,3.522,5.296579 +L 3.522,5.296579,5.4063,5.834709 +L 5.4063,5.834709,5.3716,6.605916 +L 5.3716,6.605916,5.151,7.021197 +L 5.151,7.021197,4.5486,7.436424 +L 2.874,3.203339,3.4239,3.203339 +L 3.4239,3.203339,3.9777,3.203339 +L 3.9777,3.203339,4.5486,3.203339 +L 6.2574,3.203339,5.5363,3.735854 +L 5.5363,3.735854,4.8253,4.259821 +L 4.8253,4.259821,4.1248,4.767009 +L 0.3141,5.300804,1.8552,5.85452 +L 1.8552,5.85452,1.9112,6.882784 +L 1.9112,6.882784,0.734,7.436424 +L 2.6569,5.834709,2.874,6.02394 +L 2.874,6.02394,3.088,6.20471 +L 3.088,6.20471,3.2978,6.368614 +L 5.8336,5.834709,6.2574,5.834709 +L 6.2574,5.834709,6.6847,5.834709 +L 6.6847,5.834709,7.1124,5.834709 +L 2.4436,7.436424,2.0825,8.008494 +L 2.0825,8.008494,1.5295,8.275403 +L 1.5295,8.275403,0.3141,8.46609 +L 5.8336,7.436424,5.4834,8.008494 +L 5.4834,8.008494,5.0386,8.275403 +L 5.0386,8.275403,4.1248,8.46609 +L 2.4436,8.46609,2.7238,8.46609 +L 2.7238,8.46609,3.004,8.46609 +L 3.004,8.46609,3.2978,8.46609 +L 5.8336,8.46609,6.2574,8.46609 +L 6.2574,8.46609,6.6847,8.46609 +L 6.6847,8.46609,7.1124,8.46609 + +[緊] 63 +L 0.5543,-0.000047,1.0411,0.370064 +L 1.0411,0.370064,1.5381,0.723166 +L 1.5381,0.723166,2.0495,1.067807 +L 3.7271,-0.000047,3.2547,2.011291 +L 3.2547,2.011291,2.0323,2.31063 +L 2.0323,2.31063,0.3403,2.135573 +L 6.6867,-0.000047,6.2594,0.370064 +L 6.2594,0.370064,5.843,0.723166 +L 5.843,0.723166,5.4367,1.067807 +L 7.1179,1.601657,6.1407,1.997182 +L 6.1407,1.997182,4.7008,2.273931 +L 4.7008,2.273931,3.7271,2.669489 +L 3.7271,2.669489,4.1544,3.202004 +L 4.1544,3.202004,4.5821,3.725982 +L 4.5821,3.725982,5.0094,4.23294 +L 5.0094,4.23294,4.7117,4.422291 +L 4.7117,4.422291,4.4311,4.60304 +L 4.4311,4.60304,4.1544,4.767009 +L 2.8725,2.669489,2.4452,3.012652 +L 2.4452,3.012652,2.025,3.355893 +L 2.025,3.355893,1.6222,3.699078 +L 2.8725,3.699078,3.006,3.966042 +L 3.006,3.966042,3.1496,4.23294 +L 3.1496,4.23294,3.2963,4.500046 +L 3.2963,4.500046,2.302,4.60304 +L 2.302,4.60304,1.3175,4.689254 +L 1.3175,4.689254,0.3403,4.767009 +L 0.3403,4.767009,0.3403,6.014057 +L 0.3403,6.014057,0.3403,7.244402 +L 0.3403,7.244402,0.3403,8.46609 +L 0.3403,8.46609,1.3175,8.46609 +L 1.3175,8.46609,2.302,8.46609 +L 2.302,8.46609,3.2963,8.46609 +L 6.6867,4.767009,6.3298,5.136999 +L 6.3298,5.136999,5.9831,5.490188 +L 5.9831,5.490188,5.6465,5.834709 +L 5.6465,5.834709,5.4367,5.670871 +L 5.4367,5.670871,5.2192,5.490188 +L 5.2192,5.490188,5.0094,5.300804 +L 2.0495,5.300804,2.0495,5.670871 +L 2.0495,5.670871,2.0495,6.02394 +L 2.0495,6.02394,2.0495,6.368614 +L 2.0495,6.368614,1.6222,6.368614 +L 1.6222,6.368614,1.1914,6.368614 +L 1.1914,6.368614,0.7711,6.368614 +L 2.4452,6.368614,2.7223,6.368614 +L 2.7223,6.368614,3.006,6.368614 +L 3.006,6.368614,3.2963,6.368614 +L 3.2963,6.368614,3.2963,6.73868 +L 3.2963,6.73868,3.2963,7.09175 +L 3.2963,7.09175,3.2963,7.436424 +L 3.2963,7.436424,2.4452,7.436424 +L 2.4452,7.436424,1.6012,7.436424 +L 1.6012,7.436424,0.7711,7.436424 +L 5.4367,6.368614,4.8339,7.158078 +L 4.8339,7.158078,4.6133,7.701954 +L 4.6133,7.701954,4.5821,8.46609 +L 4.5821,8.46609,5.4157,8.389846 +L 5.4157,8.389846,6.2594,8.313581 +L 6.2594,8.313581,7.1179,8.237238 +L 7.1179,8.237238,6.5431,7.625622 +L 6.5431,7.625622,5.9831,7.005633 +L 5.9831,7.005633,5.4367,6.368614 + +[菌] 54 +L 0.7979,-0.000047,0.7979,2.134074 +L 0.7979,2.134074,0.7979,4.259821 +L 0.7979,4.259821,0.7979,6.368614 +L 0.7979,6.368614,1.3513,6.368614 +L 1.3513,6.368614,1.9044,6.368614 +L 1.9044,6.368614,2.4753,6.368614 +L 2.4753,6.368614,2.1635,7.817742 +L 2.1635,7.817742,1.379,8.072043 +L 1.379,8.072043,0.3703,7.970264 +L 1.1934,-0.000047,3.0255,-0.000047 +L 3.0255,-0.000047,4.8639,-0.000047 +L 4.8639,-0.000047,6.7167,-0.000047 +L 6.7167,-0.000047,6.7167,2.134074 +L 6.7167,2.134074,6.7167,4.259821 +L 6.7167,4.259821,6.7167,6.368614 +L 6.7167,6.368614,5.4352,6.368614 +L 5.4352,6.368614,4.1638,6.368614 +L 4.1638,6.368614,2.9029,6.368614 +L 3.761,1.067807,3.677,1.790976 +L 3.677,1.790976,3.6066,2.505694 +L 3.6066,2.505694,3.5435,3.203339 +L 3.5435,3.203339,2.9029,2.669489 +L 2.9029,2.669489,2.262,2.135573 +L 2.262,2.135573,1.6207,1.601657 +L 5.4352,1.601657,5.0079,2.238633 +L 5.0079,2.238633,4.5911,2.858785 +L 4.5911,2.858785,4.1848,3.470292 +L 4.1848,3.470292,3.3302,3.546558 +L 3.3302,3.546558,2.4753,3.622878 +L 2.4753,3.622878,1.6207,3.699078 +L 4.6118,3.699078,5.0149,3.699078 +L 5.0149,3.699078,5.4352,3.699078 +L 5.4352,3.699078,5.866,3.699078 +L 3.761,4.500046,3.1793,4.60304 +L 3.1793,4.60304,2.6052,4.689254 +L 2.6052,4.689254,2.0518,4.767009 +L 4.3981,4.767009,4.7343,4.956207 +L 4.7343,4.956207,5.0811,5.136999 +L 5.0811,5.136999,5.4352,5.300804 +L 5.0079,7.16946,4.8639,7.436424 +L 4.8639,7.436424,4.7343,7.703421 +L 4.7343,7.703421,4.6118,7.970264 +L 4.6118,7.970264,4.0304,7.970264 +L 4.0304,7.970264,3.463,7.970264 +L 3.463,7.970264,2.9029,7.970264 +L 2.9029,7.970264,2.752,8.313581 +L 2.752,8.313581,2.6052,8.656766 +L 2.6052,8.656766,2.4753,9.000006 +L 5.4352,7.970264,5.2842,8.313581 +L 5.2842,8.313581,5.1375,8.656766 +L 5.1375,8.656766,5.0079,9.000006 +L 5.866,7.970264,6.2863,7.970264 +L 6.2863,7.970264,6.7167,7.970264 +L 6.7167,7.970264,7.144,7.970264 + +[襟] 63 +L 1.2237,-0.000047,1.2097,2.622819 +L 1.2097,2.622819,1.0973,3.72029 +L 1.0973,3.72029,0.7999,4.23294 +L 0.7999,4.23294,0.6455,4.069189 +L 0.6455,4.069189,0.5022,3.888386 +L 0.5022,3.888386,0.3726,3.699078 +L 4.1833,-0.000047,4.4597,-0.000047 +L 4.4597,-0.000047,4.7434,-0.000047 +L 4.7434,-0.000047,5.0376,-0.000047 +L 5.0376,-0.000047,5.0376,0.90399 +L 5.0376,0.90399,5.0376,1.790976 +L 5.0376,1.790976,5.0376,2.669489 +L 5.0376,2.669489,4.3336,2.669489 +L 4.3336,2.669489,3.6334,2.669489 +L 3.6334,2.669489,2.9326,2.669489 +L 2.7189,0.533924,3.0552,0.90399 +L 3.0552,0.90399,3.3984,1.257082 +L 3.3984,1.257082,3.7595,1.601657 +L 7.1744,0.533924,6.8798,0.90399 +L 6.8798,0.90399,6.5961,1.257082 +L 6.5961,1.257082,6.3233,1.601657 +L 5.4649,2.669489,6.0256,2.669489 +L 6.0256,2.669489,6.5961,2.669489 +L 6.5961,2.669489,7.1744,2.669489 +L 2.0783,3.699078,1.7838,4.155273 +L 1.7838,4.155273,1.5036,4.60304 +L 1.5036,4.60304,1.2237,5.033786 +L 1.2237,5.033786,1.5036,5.757097 +L 1.5036,5.757097,1.7838,6.471706 +L 1.7838,6.471706,2.0783,7.16946 +L 2.0783,7.16946,1.5036,7.272641 +L 1.5036,7.272641,0.9292,7.358648 +L 0.9292,7.358648,0.3726,7.436424 +L 3.7595,4.23294,4.6138,4.23294 +L 4.6138,4.23294,5.4649,4.23294 +L 5.4649,4.23294,6.3233,4.23294 +L 3.7595,5.300804,3.7416,6.071956 +L 3.7416,6.071956,3.6436,6.487227 +L 3.6436,6.487227,3.3599,6.90253 +L 3.3599,6.90253,3.0622,6.55779 +L 3.0622,6.55779,2.7823,6.20471 +L 2.7823,6.20471,2.5088,5.834709 +L 6.3233,5.300804,6.3058,6.071956 +L 6.3058,6.071956,6.1969,6.487227 +L 6.1969,6.487227,5.8922,6.90253 +L 5.8922,6.90253,5.5948,6.55779 +L 5.5948,6.55779,5.3146,6.20471 +L 5.3146,6.20471,5.0376,5.834709 +L 5.0376,5.834709,4.3336,6.55779 +L 4.3336,6.55779,3.6334,7.272641 +L 3.6334,7.272641,2.9326,7.970264 +L 7.5698,5.834709,6.8697,6.55779 +L 6.8697,6.55779,6.1692,7.272641 +L 6.1692,7.272641,5.4649,7.970264 +L 1.2237,7.970264,1.2237,8.313581 +L 1.2237,8.313581,1.2237,8.656766 +L 1.2237,8.656766,1.2237,9.000006 +L 4.1833,7.970264,4.0362,8.313581 +L 4.0362,8.313581,3.8853,8.656766 +L 3.8853,8.656766,3.7595,9.000006 +L 6.7433,7.970264,6.5961,8.313581 +L 6.5961,8.313581,6.4529,8.656766 +L 6.4529,8.656766,6.3233,9.000006 + +[謹] 83 +L 0.8296,-0.000047,0.8296,0.723166 +L 0.8296,0.723166,0.8296,1.437786 +L 0.8296,1.437786,0.8296,2.135573 +L 0.8296,2.135573,1.2324,2.135573 +L 1.2324,2.135573,1.653,2.135573 +L 1.653,2.135573,2.0768,2.135573 +L 2.0768,2.135573,2.0768,1.437786 +L 2.0768,1.437786,2.0768,0.723166 +L 2.0768,0.723166,2.0768,-0.000047 +L 2.0768,-0.000047,1.653,-0.000047 +L 1.653,-0.000047,1.2324,-0.000047 +L 1.2324,-0.000047,0.8296,-0.000047 +L 3.3619,-0.000047,4.0627,-0.000047 +L 4.0627,-0.000047,4.7734,-0.000047 +L 4.7734,-0.000047,5.4952,-0.000047 +L 5.4952,-0.000047,5.3478,1.194902 +L 5.3478,1.194902,4.9138,1.57622 +L 4.9138,1.57622,4.2165,1.601657 +L 5.898,-0.000047,6.4514,-0.000047 +L 6.4514,-0.000047,7.0254,-0.000047 +L 7.0254,-0.000047,7.6037,-0.000047 +L 5.898,1.601657,5.6178,2.135573 +L 5.6178,2.135573,5.3443,2.669489 +L 5.3443,2.669489,5.0714,3.203339 +L 5.0714,3.203339,4.6441,3.203339 +L 4.6441,3.203339,4.2165,3.203339 +L 4.2165,3.203339,3.7857,3.203339 +L 5.6809,3.470292,5.4669,3.916537 +L 5.4669,3.916537,5.2602,4.346047 +L 5.2602,4.346047,5.0714,4.767009 +L 5.0714,4.767009,4.6441,4.767009 +L 4.6441,4.767009,4.2165,4.767009 +L 4.2165,4.767009,3.7857,4.767009 +L 3.7857,4.767009,3.7857,5.300804 +L 3.7857,5.300804,3.7857,5.834709 +L 3.7857,5.834709,3.7857,6.368614 +L 3.7857,6.368614,4.0627,6.368614 +L 4.0627,6.368614,4.3429,6.368614 +L 4.3429,6.368614,4.6441,6.368614 +L 4.6441,6.368614,4.4932,7.563541 +L 4.4932,7.563541,4.0627,7.944904 +L 4.0627,7.944904,3.3619,7.970264 +L 6.318,3.203339,6.5981,3.203339 +L 6.5981,3.203339,6.8787,3.203339 +L 6.8787,3.203339,7.1726,3.203339 +L 0.8296,3.699078,1.2324,3.699078 +L 1.2324,3.699078,1.653,3.699078 +L 1.653,3.699078,2.0768,3.699078 +L 5.898,4.767009,5.6178,5.300804 +L 5.6178,5.300804,5.3443,5.834709 +L 5.3443,5.834709,5.0714,6.368614 +L 6.318,4.767009,6.5981,4.767009 +L 6.5981,4.767009,6.8787,4.767009 +L 6.8787,4.767009,7.1726,4.767009 +L 7.1726,4.767009,7.1726,5.300804 +L 7.1726,5.300804,7.1726,5.834709 +L 7.1726,5.834709,7.1726,6.368614 +L 7.1726,6.368614,6.7491,6.368614 +L 6.7491,6.368614,6.318,6.368614 +L 6.318,6.368614,5.898,6.368614 +L 0.8296,5.300804,1.2324,5.300804 +L 1.2324,5.300804,1.653,5.300804 +L 1.653,5.300804,2.0768,5.300804 +L 0.4023,6.90253,1.1032,6.90253 +L 1.1032,6.90253,1.8068,6.90253 +L 1.8068,6.90253,2.5073,6.90253 +L 6.318,7.16946,5.7926,7.771192 +L 5.7926,7.771192,5.173,8.245786 +L 5.173,8.245786,4.6441,9.000006 +L 6.7491,7.970264,6.5981,8.313581 +L 6.5981,8.313581,6.4514,8.656766 +L 6.4514,8.656766,6.318,9.000006 +L 0.8296,8.46609,1.2324,8.46609 +L 1.2324,8.46609,1.653,8.46609 +L 1.653,8.46609,2.0768,8.46609 +L 0.4023,6.902476,2.9346,6.902476 +L 0.8296,8.504289,2.5073,8.504289 +L 0.8296,5.300924,2.5073,5.300924 +L 0.8296,4.232983,2.5073,4.232983 +L 0.8296,2.669489,2.5073,2.669489 +L 0.8296,-0.000047,0.8296,2.669489 +L 2.5073,-0.000047,0.8296,-0.000047 +L 2.5073,2.669489,2.5073,-0.000047 + +[吟] 27 +L 5.4972,-0.000047,5.9245,0.990129 +L 5.9245,0.990129,6.355,1.971757 +L 6.355,1.971757,6.7756,2.936376 +L 6.7756,2.936376,5.651,3.039567 +L 5.651,3.039567,4.5197,3.125672 +L 4.5197,3.125672,3.3923,3.203339 +L 0.4288,2.669489,0.4288,4.450507 +L 0.4288,4.450507,0.4288,6.214616 +L 0.4288,6.214616,0.4288,7.970264 +L 0.4288,7.970264,0.9826,7.970264 +L 0.9826,7.970264,1.5391,7.970264 +L 1.5391,7.970264,2.11,7.970264 +L 2.11,7.970264,2.11,6.214616 +L 2.11,6.214616,2.11,4.450507 +L 2.11,4.450507,2.11,2.669489 +L 2.11,2.669489,1.5391,2.669489 +L 1.5391,2.669489,0.9826,2.669489 +L 0.9826,2.669489,0.4288,2.669489 +L 2.965,5.300804,3.7281,6.547939 +L 3.7281,6.547939,4.4987,7.778274 +L 4.4987,7.778274,5.2832,9.000006 +L 5.2832,9.000006,6.0573,7.778274 +L 6.0573,7.778274,6.8418,6.547939 +L 6.8418,6.547939,7.6334,5.300804 +L 3.8196,5.300804,4.6528,5.300804 +L 4.6528,5.300804,5.4972,5.300804 +L 5.4972,5.300804,6.355,5.300804 + +[駆] 51 +L 1.7131,-0.000047,3.044,0.611514 +L 3.044,0.611514,3.4044,2.045155 +L 3.4044,2.045155,3.3943,3.699078 +L 3.3943,3.699078,2.5397,3.699078 +L 2.5397,3.699078,1.6921,3.699078 +L 1.6921,3.699078,0.8585,3.699078 +L 0.8585,3.699078,0.8585,5.299425 +L 0.8585,5.299425,0.8585,6.8913 +L 0.8585,6.8913,0.8585,8.46609 +L 0.8585,8.46609,1.6921,8.46609 +L 1.6921,8.46609,2.5397,8.46609 +L 2.5397,8.46609,3.3943,8.46609 +L 4.2453,-0.000047,4.2453,2.822021 +L 4.2453,2.822021,4.2453,5.644077 +L 4.2453,5.644077,4.2453,8.46609 +L 4.2453,8.46609,5.3766,8.46609 +L 5.3766,8.46609,6.5041,8.46609 +L 6.5041,8.46609,7.6284,8.46609 +L 4.6723,-0.000047,5.6495,-0.000047 +L 5.6495,-0.000047,6.634,-0.000047 +L 6.634,-0.000047,7.6284,-0.000047 +L 0.4347,1.067807,0.4347,1.601657 +L 0.4347,1.601657,0.4347,2.135573 +L 0.4347,2.135573,0.4347,2.669489 +L 1.2893,1.601657,1.2893,1.971757 +L 1.2893,1.971757,1.2893,2.324815 +L 1.2893,2.324815,1.2893,2.669489 +L 2.1404,1.601657,2.1404,1.971757 +L 2.1404,1.971757,2.1404,2.324815 +L 2.1404,2.324815,2.1404,2.669489 +L 5.1031,1.601657,5.5234,2.478813 +L 5.5234,2.478813,5.9542,3.355893 +L 5.9542,3.355893,6.3815,4.23294 +L 6.3815,4.23294,6.1924,5.02399 +L 6.1924,5.02399,5.86,5.57764 +L 5.86,5.57764,5.1031,6.368614 +L 7.2046,2.135573,7.0645,2.848902 +L 7.0645,2.848902,6.9352,3.545156 +L 6.9352,3.545156,6.8126,4.23294 +L 2.1404,4.500046,1.8423,4.767009 +L 1.8423,4.767009,1.5621,5.033786 +L 1.5621,5.033786,1.2893,5.300804 +L 2.5673,5.300804,2.1404,5.834709 +L 2.1404,5.834709,1.7131,6.368614 +L 1.7131,6.368614,1.2893,6.90253 +L 6.8126,5.834709,6.8126,6.368614 +L 6.8126,6.368614,6.8126,6.90253 +L 6.8126,6.90253,6.8126,7.436424 +L 2.5673,6.90253,2.4171,7.272641 +L 2.4171,7.272641,2.2731,7.625622 +L 2.2731,7.625622,2.1404,7.970264 + +[愚] 57 +L 0.4612,-0.000047,0.7414,0.533924 +L 0.7414,0.533924,1.0216,1.067807 +L 1.0216,1.067807,1.3154,1.601657 +L 2.9966,-0.000047,2.6919,0.434958 +L 2.6919,0.434958,2.5837,0.988673 +L 2.5837,0.988673,2.5662,2.135573 +L 3.4239,-0.000047,4.1248,-0.000047 +L 4.1248,-0.000047,4.8253,-0.000047 +L 4.8253,-0.000047,5.5289,-0.000047 +L 5.5289,-0.000047,5.5289,0.370064 +L 5.5289,0.370064,5.5289,0.723166 +L 5.5289,0.723166,5.5289,1.067807 +L 7.2349,0.80081,7.0875,1.067807 +L 7.0875,1.067807,6.9372,1.334683 +L 6.9372,1.334683,6.8073,1.601657 +L 4.275,1.868653,4.1248,2.135573 +L 4.1248,2.135573,3.9812,2.402482 +L 3.9812,2.402482,3.8512,2.669489 +L 0.8917,2.669489,0.8917,3.546558 +L 0.8917,3.546558,0.8917,4.423692 +L 0.8917,4.423692,0.8917,5.300804 +L 0.8917,5.300804,2.853,5.300804 +L 2.853,5.300804,4.8253,5.300804 +L 4.8253,5.300804,6.8073,5.300804 +L 6.8073,5.300804,6.8073,4.423692 +L 6.8073,4.423692,6.8073,3.546558 +L 6.8073,3.546558,6.8073,2.669489 +L 6.8073,2.669489,6.5134,2.669489 +L 6.5134,2.669489,6.2297,2.669489 +L 6.2297,2.669489,5.9527,2.669489 +L 2.142,3.699078,2.6989,3.699078 +L 2.6989,3.699078,3.2737,3.699078 +L 3.2737,3.699078,3.8512,3.699078 +L 3.8512,3.699078,3.8512,4.069189 +L 3.8512,4.069189,3.8512,4.422291 +L 3.8512,4.422291,3.8512,4.767009 +L 4.275,4.23294,4.5517,4.422291 +L 4.5517,4.422291,4.8323,4.60304 +L 4.8323,4.60304,5.13,4.767009 +L 1.7151,6.368614,1.7151,7.081899 +L 1.7151,7.081899,1.7151,7.778274 +L 1.7151,7.778274,1.7151,8.46609 +L 1.7151,8.46609,3.1192,8.46609 +L 3.1192,8.46609,4.5275,8.46609 +L 4.5275,8.46609,5.9527,8.46609 +L 5.9527,8.46609,5.9527,7.778274 +L 5.9527,7.778274,5.9527,7.081899 +L 5.9527,7.081899,5.9527,6.368614 +L 5.9527,6.368614,4.5275,6.368614 +L 4.5275,6.368614,3.1192,6.368614 +L 3.1192,6.368614,1.7151,6.368614 +L 3.8512,6.90253,3.501,7.278211 +L 3.501,7.278211,3.0562,7.416624 +L 3.0562,7.416624,2.142,7.436424 +L 4.7023,7.436424,4.979,7.436424 +L 4.979,7.436424,5.2526,7.436424 +L 5.2526,7.436424,5.5289,7.436424 + +[虞] 48 +L 0.4628,0.266949,0.7644,1.046573 +L 0.7644,1.046573,0.8761,2.766901 +L 0.8761,2.766901,0.8901,6.90253 +L 0.8901,6.90253,2.6417,6.853102 +L 2.6417,6.853102,3.5944,7.269762 +L 3.5944,7.269762,3.8816,9.000006 +L 1.7447,-0.000047,2.3051,0.189206 +L 2.3051,0.189206,2.8725,0.370064 +L 2.8725,0.370064,3.4543,0.533924 +L 6.4135,-0.000047,6.1158,0.189206 +L 6.1158,0.189206,5.8356,0.370064 +L 5.8356,0.370064,5.5558,0.533924 +L 1.7447,1.601657,3.2998,1.601657 +L 3.2998,1.601657,4.8549,1.601657 +L 4.8549,1.601657,6.4135,1.601657 +L 6.4135,1.601657,6.4135,1.971757 +L 6.4135,1.971757,6.4135,2.324815 +L 6.4135,2.324815,6.4135,2.669489 +L 6.4135,2.669489,4.9845,2.669489 +L 4.9845,2.669489,3.5769,2.669489 +L 3.5769,2.669489,2.172,2.669489 +L 2.172,2.669489,2.172,3.202004 +L 2.172,3.202004,2.172,3.725982 +L 2.172,3.725982,2.172,4.23294 +L 3.4543,3.470292,4.2844,3.392625 +L 4.2844,3.392625,5.1355,3.306421 +L 5.1355,3.306421,5.9866,3.203339 +L 3.8816,5.033786,3.7306,5.300804 +L 3.7306,5.300804,3.58,5.567746 +L 3.58,5.567746,3.4543,5.834709 +L 3.4543,5.834709,2.8725,5.834709 +L 2.8725,5.834709,2.3051,5.834709 +L 2.3051,5.834709,1.7447,5.834709 +L 4.277,4.767009,5.1355,4.767009 +L 5.1355,4.767009,5.9866,4.767009 +L 5.9866,4.767009,6.8408,4.767009 +L 4.277,5.834709,4.0108,6.230256 +L 4.0108,6.230256,4.0108,6.50706 +L 4.0108,6.50706,4.277,6.90253 +L 4.277,6.90253,5.1355,6.90253 +L 5.1355,6.90253,5.9866,6.90253 +L 5.9866,6.90253,6.8408,6.90253 +L 4.7047,5.834709,5.1355,5.834709 +L 5.1355,5.834709,5.5558,5.834709 +L 5.5558,5.834709,5.9866,5.834709 +L 4.277,7.970264,4.8343,7.970264 +L 4.8343,7.970264,5.4048,7.970264 +L 5.4048,7.970264,5.9866,7.970264 + +[偶] 56 +L 3.0255,-0.000047,3.0255,1.247121 +L 3.0255,1.247121,3.0255,2.477358 +L 3.0255,2.477358,3.0255,3.699078 +L 3.0255,3.699078,3.5855,3.699078 +L 3.5855,3.699078,4.1564,3.699078 +L 4.1564,3.699078,4.7343,3.699078 +L 4.7343,3.699078,5.018,4.292361 +L 5.018,4.292361,5.018,4.707609 +L 5.018,4.707609,4.7343,5.300804 +L 4.7343,5.300804,4.3039,5.300804 +L 4.3039,5.300804,3.8832,5.300804 +L 3.8832,5.300804,3.4528,5.300804 +L 3.4528,5.300804,3.4528,6.367181 +L 3.4528,6.367181,3.4528,7.425106 +L 3.4528,7.425106,3.4528,8.46609 +L 3.4528,8.46609,4.5841,8.46609 +L 4.5841,8.46609,5.708,8.46609 +L 5.708,8.46609,6.8393,8.46609 +L 6.8393,8.46609,6.8393,7.425106 +L 6.8393,7.425106,6.8393,6.367181 +L 6.8393,6.367181,6.8393,5.300804 +L 6.8393,5.300804,6.4155,5.300804 +L 6.4155,5.300804,5.9952,5.300804 +L 5.9952,5.300804,5.5924,5.300804 +L 5.5924,5.300804,5.2951,5.834709 +L 5.2951,5.834709,5.0114,6.368614 +L 5.0114,6.368614,4.7343,6.90253 +L 4.7343,6.90253,4.4366,6.90253 +L 4.4366,6.90253,4.1564,6.90253 +L 4.1564,6.90253,3.8832,6.90253 +L 6.4089,-0.000047,6.6852,-0.000047 +L 6.6852,-0.000047,6.9689,-0.000047 +L 6.9689,-0.000047,7.2666,-0.000047 +L 7.2666,-0.000047,7.2666,1.247121 +L 7.2666,1.247121,7.2666,2.477358 +L 7.2666,2.477358,7.2666,3.699078 +L 7.2666,3.699078,6.0691,3.680745 +L 6.0691,3.680745,5.5227,3.552326 +L 5.5227,3.552326,5.1616,3.203339 +L 5.1616,3.203339,5.1616,2.669489 +L 5.1616,2.669489,5.1616,2.135573 +L 5.1616,2.135573,5.1616,1.601657 +L 5.1616,1.601657,5.4352,1.601657 +L 5.4352,1.601657,5.7189,1.601657 +L 5.7189,1.601657,6.0127,1.601657 +L 6.0127,1.601657,6.0127,1.971757 +L 6.0127,1.971757,6.0127,2.324815 +L 6.0127,2.324815,6.0127,2.669489 +L 3.8832,1.067807,4.3039,1.067807 +L 4.3039,1.067807,4.7343,1.067807 +L 4.7343,1.067807,5.1616,1.067807 +L 5.5924,6.90253,5.4352,7.272641 +L 5.4352,7.272641,5.2951,7.625622 +L 5.2951,7.625622,5.1616,7.970264 +L 1.3478,-0.000047,1.3478,6.597478 +A -6.1825,10.627705,8.540417,321.41046,349.01228 + +[遇] 63 +L 0.7369,-0.000047,1.0728,0.370064 +L 1.0728,0.370064,1.416,0.723166 +L 1.416,0.723166,1.7771,1.067807 +L 1.7771,1.067807,1.7771,2.314964 +L 1.7771,2.314964,1.7771,3.545156 +L 1.7771,3.545156,1.7771,4.767009 +L 1.7771,4.767009,1.3498,4.767009 +L 1.3498,4.767009,0.9292,4.767009 +L 0.9292,4.767009,0.5264,4.767009 +L 3.0552,-0.000047,2.7613,0.189206 +L 2.7613,0.189206,2.4776,0.370064 +L 2.4776,0.370064,2.2009,0.533924 +L 3.4825,-0.000047,4.8908,-0.000047 +L 4.8908,-0.000047,6.3019,-0.000047 +L 6.3019,-0.000047,7.7243,-0.000047 +L 3.0552,1.601657,3.0552,2.668044 +L 3.0552,2.668044,3.0552,3.725982 +L 3.0552,3.725982,3.0552,4.767009 +L 3.0552,4.767009,3.6124,4.767009 +L 3.6124,4.767009,4.1868,4.767009 +L 4.1868,4.767009,4.7609,4.767009 +L 4.7609,4.767009,5.027,5.360182 +L 5.027,5.360182,5.027,5.775386 +L 5.027,5.775386,4.7609,6.368614 +L 4.7609,6.368614,4.3409,6.368614 +L 4.3409,6.368614,3.9098,6.368614 +L 3.9098,6.368614,3.4825,6.368614 +L 3.4825,6.368614,3.4825,7.081899 +L 3.4825,7.081899,3.4825,7.778274 +L 3.4825,7.778274,3.4825,8.46609 +L 3.4825,8.46609,4.6138,8.46609 +L 4.6138,8.46609,5.7419,8.46609 +L 5.7419,8.46609,6.8732,8.46609 +L 6.8732,8.46609,6.8732,7.778274 +L 6.8732,7.778274,6.8732,7.081899 +L 6.8732,7.081899,6.8732,6.368614 +L 6.8732,6.368614,5.7244,6.645461 +L 5.7244,6.645461,4.7717,7.159631 +L 4.7717,7.159631,3.9098,7.436424 +L 6.442,1.601657,6.7187,1.601657 +L 6.7187,1.601657,7.0024,1.601657 +L 7.0024,1.601657,7.297,1.601657 +L 7.297,1.601657,7.297,2.668044 +L 7.297,2.668044,7.297,3.725982 +L 7.297,3.725982,7.297,4.767009 +L 7.297,4.767009,6.0221,4.80222 +L 6.0221,4.80222,5.3601,4.490085 +L 5.3601,4.490085,5.1636,3.203339 +L 5.1636,3.203339,5.5874,3.203339 +L 5.5874,3.203339,6.0147,3.203339 +L 6.0147,3.203339,6.442,3.203339 +L 3.9098,2.669489,4.3125,2.669489 +L 4.3125,2.669489,4.7332,2.669489 +L 4.7332,2.669489,5.1636,2.669489 +L 1.7771,7.436424,1.5001,7.779598 +L 1.5001,7.779598,1.2272,8.122915 +L 1.2272,8.122915,0.9502,8.46609 +L 5.6084,-0.015217,7.7418,-0.015217 +L 1.7911,1.05244,0.7369,-0.000047 +L 0.5372,4.751685,1.7911,4.751685 +L 1.7911,1.05244,1.7911,4.751685 +L 0.9645,8.489096,1.7911,7.42121 +A 5.6084,7.347779,7.362973,238.75988,270 + +[隅] 60 +L 0.5249,-0.000047,0.5249,2.822021 +L 0.5249,2.822021,0.5249,5.644077 +L 0.5249,5.644077,0.5249,8.46609 +L 0.5249,8.46609,1.0856,8.46609 +L 1.0856,8.46609,1.653,8.46609 +L 1.653,8.46609,2.2344,8.46609 +L 2.2344,8.46609,1.7858,6.090377 +L 1.7858,6.090377,2.0099,4.816339 +L 2.0099,4.816339,2.2344,2.669489 +L 2.2344,2.669489,1.9399,2.505694 +L 1.9399,2.505694,1.653,2.324815 +L 1.653,2.324815,1.3795,2.135573 +L 3.089,-0.000047,3.089,1.247121 +L 3.089,1.247121,3.089,2.477358 +L 3.089,2.477358,3.089,3.699078 +L 3.089,3.699078,4.2869,3.728849 +L 4.2869,3.728849,4.8262,3.936479 +L 4.8262,3.936479,5.1905,4.500046 +L 5.1905,4.500046,4.8434,5.063557 +L 4.8434,5.063557,4.4126,5.271186 +L 4.4126,5.271186,3.5128,5.300804 +L 3.5128,5.300804,3.5128,6.367181 +L 3.5128,6.367181,3.5128,7.425106 +L 3.5128,7.425106,3.5128,8.46609 +L 3.5128,8.46609,4.6441,8.46609 +L 4.6441,8.46609,5.7716,8.46609 +L 5.7716,8.46609,6.8997,8.46609 +L 6.8997,8.46609,6.8997,7.425106 +L 6.8997,7.425106,6.8997,6.367181 +L 6.8997,6.367181,6.8997,5.300804 +L 6.8997,5.300804,6.4724,5.300804 +L 6.4724,5.300804,6.0451,5.300804 +L 6.0451,5.300804,5.6213,5.300804 +L 5.6213,5.300804,5.3232,5.834709 +L 5.3232,5.834709,5.0431,6.368614 +L 5.0431,6.368614,4.7667,6.90253 +L 4.7667,6.90253,4.469,6.90253 +L 4.469,6.90253,4.1853,6.90253 +L 4.1853,6.90253,3.9156,6.90253 +L 6.4724,-0.000047,6.7491,-0.000047 +L 6.7491,-0.000047,7.0328,-0.000047 +L 7.0328,-0.000047,7.3302,-0.000047 +L 7.3302,-0.000047,7.3302,1.247121 +L 7.3302,1.247121,7.3302,2.477358 +L 7.3302,2.477358,7.3302,3.699078 +L 7.3302,3.699078,6.1081,3.680745 +L 6.1081,3.680745,5.5583,3.552326 +L 5.5583,3.552326,5.1905,3.203339 +L 5.1905,3.203339,5.1905,2.858785 +L 5.1905,2.858785,5.1905,2.505694 +L 5.1905,2.505694,5.1905,2.135573 +L 5.1905,2.135573,5.6213,2.135573 +L 5.6213,2.135573,6.0451,2.135573 +L 6.0451,2.135573,6.4724,2.135573 +L 3.9156,1.601657,4.3356,1.601657 +L 4.3356,1.601657,4.7667,1.601657 +L 4.7667,1.601657,5.1905,1.601657 +L 5.6213,6.90253,5.4668,7.272641 +L 5.4668,7.272641,5.3232,7.625622 +L 5.3232,7.625622,5.1905,7.970264 + +[屈] 39 +L 0.5588,0.266949,1.2379,3.036677 +L 1.2379,3.036677,1.4165,5.620064 +L 1.4165,5.620064,1.4099,8.46609 +L 1.4099,8.46609,3.2378,8.46609 +L 3.2378,8.46609,5.0734,8.46609 +L 5.0734,8.46609,6.8982,8.46609 +L 6.8982,8.46609,6.8982,7.958946 +L 6.8982,7.958946,6.8982,7.435066 +L 6.8982,7.435066,6.8982,6.90253 +L 6.8982,6.90253,5.2027,6.90253 +L 5.2027,6.90253,3.5148,6.90253 +L 3.5148,6.90253,1.8372,6.90253 +L 2.2326,-0.000047,2.2326,0.723166 +L 2.2326,0.723166,2.2326,1.437786 +L 2.2326,1.437786,2.2326,2.135573 +L 2.6637,-0.000047,3.3639,-0.000047 +L 3.3639,-0.000047,4.0749,-0.000047 +L 4.0749,-0.000047,4.7932,-0.000047 +L 4.7932,-0.000047,4.7512,2.63696 +L 4.7512,2.63696,4.2325,3.579097 +L 4.2325,3.579097,2.6637,3.699078 +L 2.6637,3.699078,2.6637,4.23294 +L 2.6637,4.23294,2.6637,4.767009 +L 2.6637,4.767009,2.6637,5.300804 +L 5.2237,-0.000047,5.9245,-0.000047 +L 5.9245,-0.000047,6.6285,-0.000047 +L 6.6285,-0.000047,7.3287,-0.000047 +L 7.3287,-0.000047,7.3287,0.723166 +L 7.3287,0.723166,7.3287,1.437786 +L 7.3287,1.437786,7.3287,2.135573 +L 5.2237,3.699078,4.919,4.134149 +L 4.919,4.134149,4.8107,4.687919 +L 4.8107,4.687919,4.7932,5.834709 +L 5.651,3.699078,6.0538,3.699078 +L 6.0538,3.699078,6.4744,3.699078 +L 6.4744,3.699078,6.8982,3.699078 +L 6.8982,3.699078,6.8982,4.23294 +L 6.8982,4.23294,6.8982,4.767009 +L 6.8982,4.767009,6.8982,5.300804 + +[掘] 51 +L 0.9811,-0.000047,1.2574,-0.000047 +L 1.2574,-0.000047,1.5411,-0.000047 +L 1.5411,-0.000047,1.8357,-0.000047 +L 1.8357,-0.000047,1.8181,2.622819 +L 1.8181,2.622819,1.7057,3.72029 +L 1.7057,3.72029,1.4119,4.23294 +L 1.4119,4.23294,1.1313,4.069189 +L 1.1313,4.069189,0.862,3.888386 +L 0.862,3.888386,0.5849,3.699078 +L 2.6899,0.266949,3.3732,3.036677 +L 3.3732,3.036677,3.5554,5.620064 +L 3.5554,5.620064,3.541,8.46609 +L 3.541,8.46609,4.8019,8.46609 +L 4.8019,8.46609,6.0806,8.46609 +L 6.0806,8.46609,7.3625,8.46609 +L 7.3625,8.46609,7.3625,7.958946 +L 7.3625,7.958946,7.3625,7.435066 +L 7.3625,7.435066,7.3625,6.90253 +L 7.3625,6.90253,6.2312,6.90253 +L 6.2312,6.90253,5.0996,6.90253 +L 5.0996,6.90253,3.9718,6.90253 +L 3.9718,-0.000047,3.9718,0.723166 +L 3.9718,0.723166,3.9718,1.437786 +L 3.9718,1.437786,3.9718,2.135573 +L 4.3991,-0.000047,4.8019,-0.000047 +L 4.8019,-0.000047,5.2222,-0.000047 +L 5.2222,-0.000047,5.653,-0.000047 +L 5.653,-0.000047,5.6813,2.009824 +L 5.6813,2.009824,5.4323,3.26554 +L 5.4323,3.26554,4.3991,3.699078 +L 4.3991,3.699078,4.3991,4.23294 +L 4.3991,4.23294,4.3991,4.767009 +L 4.3991,4.767009,4.3991,5.300804 +L 6.0768,-0.000047,6.5041,-0.000047 +L 6.5041,-0.000047,6.9317,-0.000047 +L 6.9317,-0.000047,7.3625,-0.000047 +L 7.3625,-0.000047,7.3625,0.723166 +L 7.3625,0.723166,7.3625,1.437786 +L 7.3625,1.437786,7.3625,2.135573 +L 6.0768,3.699078,5.7756,4.134149 +L 5.7756,4.134149,5.6705,4.687919 +L 5.6705,4.687919,5.653,5.834709 +L 6.7177,3.699078,6.7808,4.23294 +L 6.7808,4.23294,6.8473,4.767009 +L 6.8473,4.767009,6.9317,5.300804 +L 2.263,4.23294,1.7551,5.484421 +L 1.7551,5.484421,1.5411,6.49004 +L 1.5411,6.49004,0.5849,6.90253 +L 2.263,6.90253,1.9614,7.336111 +L 1.9614,7.336111,1.8493,7.879966 +L 1.8493,7.879966,1.8357,9.000006 + +[靴] 54 +L 2.2926,-0.000047,2.065,1.330436 +L 2.065,1.330436,1.4489,1.643993 +L 1.4489,1.643993,0.5838,1.601657 +L 4.8249,-0.000047,4.7447,1.944854 +L 4.7447,1.944854,4.6743,3.889754 +L 4.6743,3.889754,4.6116,5.834709 +L 4.6116,5.834709,4.2473,5.490188 +L 4.2473,5.490188,3.8897,5.136999 +L 3.8897,5.136999,3.5465,4.767009 +L 3.5465,4.767009,3.5465,4.259821 +L 3.5465,4.259821,3.5465,3.735854 +L 3.5465,3.735854,3.5465,3.203339 +L 3.5465,3.203339,2.9479,3.173656 +L 2.9479,3.173656,2.6257,2.966026 +L 2.6257,2.966026,2.2926,2.402482 +L 2.2926,2.402482,2.6397,1.838959 +L 2.6397,1.838959,3.0772,1.631318 +L 3.0772,1.631318,3.9703,1.601657 +L 6.1103,-0.000047,6.1103,3.011241 +L 6.1103,3.011241,6.1103,6.014057 +L 6.1103,6.014057,6.1103,9.000006 +L 6.5344,-0.000047,6.8111,-0.000047 +L 6.8111,-0.000047,7.084,-0.000047 +L 7.084,-0.000047,7.361,-0.000047 +L 7.361,-0.000047,7.361,0.533924 +L 7.361,0.533924,7.361,1.067807 +L 7.361,1.067807,7.361,1.601657 +L 1.0142,3.203339,1.0142,3.735854 +L 1.0142,3.735854,1.0142,4.259821 +L 1.0142,4.259821,1.0142,4.767009 +L 1.0142,4.767009,1.8587,4.928001 +L 1.8587,4.928001,2.2194,5.444842 +L 2.2194,5.444842,2.2926,6.368614 +L 2.2926,6.368614,1.9988,6.368614 +L 1.9988,6.368614,1.7182,6.368614 +L 1.7182,6.368614,1.4415,6.368614 +L 1.4415,6.368614,1.4069,7.139777 +L 1.4069,7.139777,1.1862,7.555058 +L 1.1862,7.555058,0.5838,7.970264 +L 1.6555,3.203339,2.1424,3.735854 +L 2.1424,3.735854,2.6289,4.259821 +L 2.6289,4.259821,3.1157,4.767009 +L 6.5344,5.300804,6.8111,5.670871 +L 6.8111,5.670871,7.084,6.02394 +L 7.084,6.02394,7.361,6.368614 +L 2.9059,6.368614,2.8355,7.745724 +L 2.8355,7.745724,2.1599,8.20762 +L 2.1599,8.20762,1.4415,9.000006 +L 4.8249,6.368614,4.937,7.296654 +L 4.937,7.296654,5.1436,8.097501 +L 5.1436,8.097501,5.2525,9.000006 +L 3.5465,7.970264,3.3962,8.313581 +L 3.3962,8.313581,3.2491,8.656766 +L 3.2491,8.656766,3.1157,9.000006 + +[繰] 78 +L 1.8638,-0.000047,1.8638,1.6003 +L 1.8638,1.6003,1.8638,3.192011 +L 1.8638,3.192011,1.8638,4.767009 +L 1.8638,4.767009,1.4435,4.767009 +L 1.4435,4.767009,1.0236,4.767009 +L 1.0236,4.767009,0.6173,4.767009 +L 5.6783,-0.000047,5.6013,0.723166 +L 5.6013,0.723166,5.5274,1.437786 +L 5.5274,1.437786,5.4678,2.135573 +L 5.4678,2.135573,4.8272,1.601657 +L 4.8272,1.601657,4.1965,1.067807 +L 4.1965,1.067807,3.5734,0.533924 +L 7.3907,0.533924,6.1232,2.112949 +L 6.1232,2.112949,5.1495,2.539592 +L 5.1495,2.539592,3.5734,2.669489 +L 3.5734,2.669489,3.4224,2.324815 +L 3.4224,2.324815,3.2788,1.971757 +L 3.2788,1.971757,3.1531,1.601657 +L 0.6173,1.334683,0.7465,1.971757 +L 0.7465,1.971757,0.8901,2.591811 +L 0.8901,2.591811,1.0446,3.203339 +L 6.5361,2.669489,6.9634,2.669489 +L 6.9634,2.669489,7.3907,2.669489 +L 7.3907,2.669489,7.818,2.669489 +L 5.6783,3.470292,5.3526,4.007054 +L 5.3526,4.007054,4.918,4.204821 +L 4.918,4.204821,4.0042,4.23294 +L 4.0042,4.23294,4.0042,4.767009 +L 4.0042,4.767009,4.0042,5.300804 +L 4.0042,5.300804,4.0042,5.834709 +L 4.0042,5.834709,4.4311,5.834709 +L 4.4311,5.834709,4.8584,5.834709 +L 4.8584,5.834709,5.2822,5.834709 +L 5.2822,5.834709,5.2822,5.490188 +L 5.2822,5.490188,5.2822,5.136999 +L 5.2822,5.136999,5.2822,4.767009 +L 3.1531,4.500046,2.9951,4.767009 +L 2.9951,4.767009,2.8515,5.033786 +L 2.8515,5.033786,2.7223,5.300804 +L 2.7223,5.300804,2.5713,5.136999 +L 2.5713,5.136999,2.4246,4.956207 +L 2.4246,4.956207,2.2946,4.767009 +L 6.1091,4.23294,6.1091,4.767009 +L 6.1091,4.767009,6.1091,5.300804 +L 6.1091,5.300804,6.1091,5.834709 +L 6.1091,5.834709,6.5361,5.834709 +L 6.5361,5.834709,6.9634,5.834709 +L 6.9634,5.834709,7.3907,5.834709 +L 7.3907,5.834709,7.3907,5.300804 +L 7.3907,5.300804,7.3907,4.767009 +L 7.3907,4.767009,7.3907,4.23294 +L 7.3907,4.23294,6.9634,4.23294 +L 6.9634,4.23294,6.5361,4.23294 +L 6.5361,4.23294,6.1091,4.23294 +L 1.4719,5.300804,1.5945,5.567746 +L 1.5945,5.567746,1.7237,5.834709 +L 1.7237,5.834709,1.8638,6.101727 +L 1.8638,6.101727,1.5945,6.471706 +L 1.5945,6.471706,1.3174,6.824863 +L 1.3174,6.824863,1.0446,7.16946 +L 1.0446,7.16946,1.3174,7.779598 +L 1.3174,7.779598,1.5945,8.389846 +L 1.5945,8.389846,1.8638,9.000006 +L 2.2946,6.90253,2.4246,7.272641 +L 2.4246,7.272641,2.5713,7.625622 +L 2.5713,7.625622,2.7223,7.970264 +L 4.4311,6.90253,4.4311,7.435066 +L 4.4311,7.435066,4.4311,7.958946 +L 4.4311,7.958946,4.4311,8.46609 +L 4.4311,8.46609,5.2647,8.46609 +L 5.2647,8.46609,6.1091,8.46609 +L 6.1091,8.46609,6.9634,8.46609 +L 6.9634,8.46609,6.9634,7.958946 +L 6.9634,7.958946,6.9634,7.435066 +L 6.9634,7.435066,6.9634,6.90253 +L 6.9634,6.90253,6.1091,6.90253 +L 6.1091,6.90253,5.2647,6.90253 +L 5.2647,6.90253,4.4311,6.90253 + +[桑] 48 +L 4.0303,-0.000047,3.9533,0.723166 +L 3.9533,0.723166,3.8801,1.437786 +L 3.8801,1.437786,3.8205,2.135573 +L 3.8205,2.135573,2.7519,1.601657 +L 2.7519,1.601657,1.6872,1.067807 +L 1.6872,1.067807,0.6158,0.533924 +L 6.5661,0.533924,5.8415,1.170801 +L 5.8415,1.170801,5.134,1.790976 +L 5.134,1.790976,4.4331,2.402482 +L 4.4331,2.402482,5.4177,2.505694 +L 5.4177,2.505694,6.4124,2.591811 +L 6.4124,2.591811,7.4211,2.669489 +L 0.6158,2.669489,1.6031,2.669489 +L 1.6031,2.669489,2.6017,2.669489 +L 2.6017,2.669489,3.61,2.669489 +L 1.2564,3.699078,1.4704,3.888386 +L 1.4704,3.888386,1.6872,4.069189 +L 1.6872,4.069189,1.9008,4.23294 +L 1.9008,4.23294,1.7467,4.500046 +L 1.7467,4.500046,1.6031,4.767009 +L 1.6031,4.767009,1.4704,5.033786 +L 1.4704,5.033786,2.0304,5.033786 +L 2.0304,5.033786,2.6017,5.033786 +L 2.6017,5.033786,3.1792,5.033786 +L 3.1792,5.033786,2.8955,4.450507 +L 2.8955,4.450507,2.8955,4.104487 +L 2.8955,4.104487,3.1792,3.699078 +L 5.0709,3.699078,5.2842,3.888386 +L 5.2842,3.888386,5.4982,4.069189 +L 5.4982,4.069189,5.7115,4.23294 +L 5.7115,4.23294,5.4909,4.984423 +L 5.4909,4.984423,5.3616,5.795153 +L 5.3616,5.795153,4.8569,6.90253 +L 4.8569,6.90253,4.1007,6.764095 +L 4.1007,6.764095,3.2423,6.50706 +L 3.2423,6.50706,1.9008,6.368614 +L 6.9938,3.699078,6.6961,3.888386 +L 6.6961,3.888386,6.4124,4.069189 +L 6.4124,4.069189,6.1427,4.23294 +L 6.9938,5.033786,6.6961,5.136999 +L 6.6961,5.136999,6.4124,5.223094 +L 6.4124,5.223094,6.1427,5.300804 +L 5.2842,7.436424,5.4177,7.703421 +L 5.4177,7.703421,5.5613,7.970264 +L 5.5613,7.970264,5.7115,8.237238 +L 5.7115,8.237238,4.4331,8.313581 +L 4.4331,8.313581,3.1617,8.389846 +L 3.1617,8.389846,1.9008,8.46609 + +[勲] 60 +L 0.649,-0.000047,0.7789,0.370064 +L 0.7789,0.370064,0.9225,0.723166 +L 0.9225,0.723166,1.0763,1.067807 +L 3.605,0.266949,3.4548,0.533924 +L 3.4548,0.533924,3.3112,0.80081 +L 3.3112,0.80081,3.1812,1.067807 +L 5.7419,0.266949,5.5909,0.533924 +L 5.5909,0.533924,5.4438,0.80081 +L 5.4438,0.80081,5.3146,1.067807 +L 7.8469,0.266949,7.6959,0.533924 +L 7.6959,0.533924,7.5558,0.80081 +L 7.5558,0.80081,7.4157,1.067807 +L 0.649,2.135573,1.2097,2.135573 +L 1.2097,2.135573,1.7771,2.135573 +L 1.7771,2.135573,2.3585,2.135573 +L 2.3585,2.135573,2.2041,3.286555 +L 2.2041,3.286555,1.7736,3.666626 +L 1.7736,3.666626,1.0763,3.699078 +L 4.4596,2.135573,5.2267,3.461853 +L 5.2267,3.461853,5.626,4.915239 +L 5.626,4.915239,5.7419,6.368614 +L 5.7419,6.368614,5.4438,6.55779 +L 5.4438,6.55779,5.1636,6.73868 +L 5.1636,6.73868,4.8908,6.90253 +L 6.1692,2.135573,7.3912,2.998533 +L 7.3912,2.998533,7.5456,4.920887 +L 7.5456,4.920887,7.4157,6.90253 +L 7.4157,6.90253,6.1307,7.081899 +L 6.1307,7.081899,5.7485,7.72739 +L 5.7485,7.72739,5.7419,9.000006 +L 2.7504,2.669489,3.0275,2.669489 +L 3.0275,2.669489,3.3112,2.669489 +L 3.3112,2.669489,3.605,2.669489 +L 2.7504,3.699078,2.1445,4.450507 +L 2.1445,4.450507,1.7067,4.727343 +L 1.7067,4.727343,1.0763,4.767009 +L 1.0763,4.767009,1.0763,5.490188 +L 1.0763,5.490188,1.0763,6.20471 +L 1.0763,6.20471,1.0763,6.90253 +L 1.0763,6.90253,1.6895,6.932136 +L 1.6895,6.932136,2.0219,7.139777 +L 2.0219,7.139777,2.3585,7.703421 +L 2.3585,7.703421,1.9274,7.806414 +L 1.9274,7.806414,1.5001,7.89263 +L 1.5001,7.89263,1.0763,7.970264 +L 2.7504,4.767009,2.3266,5.136999 +L 2.3266,5.136999,1.9099,5.490188 +L 1.9099,5.490188,1.5001,5.834709 +L 3.3917,4.767009,3.4548,5.136999 +L 3.4548,5.136999,3.5245,5.490188 +L 3.5245,5.490188,3.605,5.834709 +L 3.605,5.834709,2.989,5.85452 +L 2.989,5.85452,2.6667,5.992965 +L 2.6667,5.992965,2.3585,6.368614 +L 2.3585,6.368614,2.6667,6.724485 +L 2.6667,6.724485,2.989,6.724485 +L 2.989,6.724485,3.605,6.368614 +L 2.7504,7.970264,3.0275,8.149622 +L 3.0275,8.149622,3.3112,8.312136 +L 3.3112,8.312136,3.605,8.46609 + +[薫] 57 +L 0.6793,-0.000047,1.0923,0.583319 +L 1.0923,0.583319,1.9644,0.929362 +L 1.9644,0.929362,4.0627,1.334683 +L 4.0627,1.334683,3.9118,1.601657 +L 3.9118,1.601657,3.7682,1.868653 +L 3.7682,1.868653,3.6389,2.135573 +L 3.6389,2.135573,2.9136,2.135573 +L 2.9136,2.135573,2.2029,2.135573 +L 2.2029,2.135573,1.5021,2.135573 +L 5.3166,-0.000047,5.043,0.370064 +L 5.043,0.370064,4.7628,0.723166 +L 4.7628,0.723166,4.49,1.067807 +L 7.4527,-0.000047,7.0885,0.573359 +L 7.0885,0.573359,6.5319,0.85025 +L 6.5319,0.85025,5.3166,1.067807 +L 4.49,2.135573,3.6105,3.039567 +L 3.6105,3.039567,2.9136,3.240104 +L 2.9136,3.240104,1.9332,3.203339 +L 1.9332,3.203339,1.9332,3.916537 +L 1.9332,3.916537,1.9332,4.612934 +L 1.9332,4.612934,1.9332,5.300804 +L 1.9332,5.300804,1.5021,5.300804 +L 1.5021,5.300804,1.0821,5.300804 +L 1.0821,5.300804,0.6793,5.300804 +L 4.917,2.135573,5.4703,2.135573 +L 5.4703,2.135573,6.0241,2.135573 +L 6.0241,2.135573,6.5981,2.135573 +L 4.49,3.203339,3.8452,3.927942 +L 3.8452,3.927942,3.2922,4.194829 +L 3.2922,4.194829,2.3532,4.23294 +L 4.917,3.203339,5.3232,3.203339 +L 5.3232,3.203339,5.7439,3.203339 +L 5.7439,3.203339,6.1712,3.203339 +L 6.1712,3.203339,6.1712,3.546558 +L 6.1712,3.546558,6.1712,3.889754 +L 6.1712,3.889754,6.1712,4.23294 +L 6.1712,4.23294,4.6091,4.50983 +L 4.6091,4.50983,3.5685,5.02399 +L 3.5685,5.02399,2.3532,5.300804 +L 6.1712,5.033786,4.7839,5.439271 +L 4.7839,5.439271,3.4809,5.963271 +L 3.4809,5.963271,1.5021,6.368614 +L 6.5981,5.300804,6.8752,5.300804 +L 6.8752,5.300804,7.1554,5.300804 +L 7.1554,5.300804,7.4527,5.300804 +L 4.49,6.368614,5.0851,6.388359 +L 5.0851,6.388359,5.4108,6.526804 +L 5.4108,6.526804,5.7439,6.90253 +L 5.7439,6.90253,4.1499,8.026795 +L 4.1499,8.026795,2.4512,8.117257 +L 2.4512,8.117257,0.6793,7.970264 +L 5.7439,7.970264,5.5929,8.313581 +L 5.5929,8.313581,5.4458,8.656766 +L 5.4458,8.656766,5.3166,9.000006 +L 6.1712,7.970264,6.5981,7.970264 +L 6.5981,7.970264,7.0219,7.970264 +L 7.0219,7.970264,7.4527,7.970264 + +[傾] 60 +L 1.5324,-0.000047,1.4484,1.781103 +L 1.4484,1.781103,1.3815,3.545156 +L 1.3815,3.545156,1.3184,5.300804 +L 1.3184,5.300804,1.1016,5.136999 +L 1.1016,5.136999,0.8911,4.956207 +L 0.8911,4.956207,0.6813,4.767009 +L 4.278,-0.000047,4.6212,0.370064 +L 4.6212,0.370064,4.982,0.723166 +L 4.982,0.723166,5.3463,1.067807 +L 7.8785,-0.000047,7.6022,0.370064 +L 7.6022,0.370064,7.3321,0.723166 +L 7.3321,0.723166,7.0558,1.067807 +L 2.814,1.601657,2.814,3.735854 +L 2.814,3.735854,2.814,5.861557 +L 2.814,5.861557,2.814,7.970264 +L 3.2413,1.601657,3.5183,1.601657 +L 3.5183,1.601657,3.7912,1.601657 +L 3.7912,1.601657,4.0647,1.601657 +L 4.0647,1.601657,4.0647,1.971757 +L 4.0647,1.971757,4.0647,2.324815 +L 4.0647,2.324815,4.0647,2.669489 +L 4.9225,2.135573,4.9225,3.735854 +L 4.9225,3.735854,4.9225,5.327631 +L 4.9225,5.327631,4.9225,6.90253 +L 4.9225,6.90253,5.5357,7.129882 +L 5.5357,7.129882,5.8681,7.475968 +L 5.8681,7.475968,6.2009,8.237238 +L 6.2009,8.237238,5.6233,8.313581 +L 5.6233,8.313581,5.0524,8.389846 +L 5.0524,8.389846,4.4917,8.46609 +L 5.3463,2.135573,6.0502,2.135573 +L 6.0502,2.135573,6.7612,2.135573 +L 6.7612,2.135573,7.4796,2.135573 +L 7.4796,2.135573,7.4796,2.668044 +L 7.4796,2.668044,7.4796,3.192011 +L 7.4796,3.192011,7.4796,3.699078 +L 7.4796,3.699078,6.7612,3.699078 +L 6.7612,3.699078,6.0502,3.699078 +L 6.0502,3.699078,5.3463,3.699078 +L 7.4796,4.23294,7.4796,4.60304 +L 7.4796,4.60304,7.4796,4.956207 +L 7.4796,4.956207,7.4796,5.300804 +L 7.4796,5.300804,6.7612,5.300804 +L 6.7612,5.300804,6.0502,5.300804 +L 6.0502,5.300804,5.3463,5.300804 +L 3.2413,5.300804,3.5183,5.670871 +L 3.5183,5.670871,3.7912,6.02394 +L 3.7912,6.02394,4.0647,6.368614 +L 1.5324,5.834709,1.6442,7.138354 +L 1.6442,7.138354,1.8473,8.077624 +L 1.8473,8.077624,1.9597,9.000006 +L 7.4796,5.834709,7.4796,6.20471 +L 7.4796,6.20471,7.4796,6.55779 +L 7.4796,6.55779,7.4796,6.90253 +L 7.4796,6.90253,7.0558,6.90253 +L 7.0558,6.90253,6.6285,6.90253 +L 6.6285,6.90253,6.2009,6.90253 +L 6.6285,8.46609,7.0348,8.46609 +L 7.0348,8.46609,7.4547,8.46609 +L 7.4547,8.46609,7.8785,8.46609 + +[刑] 27 +L 0.7075,-0.000047,1.6041,2.06918 +L 1.6041,2.06918,1.9509,4.27394 +L 1.9509,4.27394,0.7075,5.300804 +L 3.6706,-0.000047,3.2331,4.135583 +L 3.2331,4.135583,2.4272,5.779655 +L 2.4272,5.779655,1.9894,8.46609 +L 1.9894,8.46609,1.5656,8.46609 +L 1.5656,8.46609,1.1383,8.46609 +L 1.1383,8.46609,0.7075,8.46609 +L 6.6266,-0.000047,6.9033,-0.000047 +L 6.9033,-0.000047,7.187,-0.000047 +L 7.187,-0.000047,7.4851,-0.000047 +L 7.4851,-0.000047,7.4851,3.011241 +L 7.4851,3.011241,7.4851,6.014057 +L 7.4851,6.014057,7.4851,9.000006 +L 5.8039,2.135573,5.8039,4.080518 +L 5.8039,4.080518,5.8039,6.025417 +L 5.8039,6.025417,5.8039,7.970264 +L 4.0944,5.300804,3.797,5.773952 +L 3.797,5.773952,3.6881,6.594577 +L 3.6881,6.594577,3.6706,8.46609 +L 3.6706,8.46609,3.2398,8.46609 +L 3.2398,8.46609,2.8125,8.46609 +L 2.8125,8.46609,2.3855,8.46609 +L 4.0944,8.46609,4.3711,8.46609 +L 4.3711,8.46609,4.6548,8.46609 +L 4.6548,8.46609,4.9493,8.46609 + +[啓] 48 +L 2.4191,-0.000047,2.4191,0.90399 +L 2.4191,0.90399,2.4191,1.790976 +L 2.4191,1.790976,2.4191,2.669489 +L 2.4191,2.669489,3.6799,2.669489 +L 3.6799,2.669489,4.9513,2.669489 +L 4.9513,2.669489,6.2329,2.669489 +L 6.2329,2.669489,6.2329,1.790976 +L 6.2329,1.790976,6.2329,0.90399 +L 6.2329,0.90399,6.2329,-0.000047 +L 6.2329,-0.000047,4.9513,-0.000047 +L 4.9513,-0.000047,3.6799,-0.000047 +L 3.6799,-0.000047,2.4191,-0.000047 +L 0.7379,2.669489,1.361,4.114392 +L 1.361,4.114392,1.5539,5.381405 +L 1.5539,5.381405,1.5641,6.90253 +L 1.5641,6.90253,2.2649,6.90253 +L 2.2649,6.90253,2.9791,6.90253 +L 2.9791,6.90253,3.6974,6.90253 +L 3.6974,6.90253,3.6974,6.368614 +L 3.6974,6.368614,3.6974,5.834709 +L 3.6974,5.834709,3.6974,5.300804 +L 3.6974,5.300804,3.1227,5.300804 +L 3.1227,5.300804,2.5483,5.300804 +L 2.5483,5.300804,1.9879,5.300804 +L 4.7373,3.699078,5.2242,4.23294 +L 5.2242,4.23294,5.7219,4.767009 +L 5.7219,4.767009,6.2329,5.300804 +L 6.2329,5.300804,5.8024,5.834709 +L 5.8024,5.834709,5.3786,6.368614 +L 5.3786,6.368614,4.9513,6.90253 +L 4.9513,6.90253,4.8039,6.73868 +L 4.8039,6.73868,4.6778,6.55779 +L 4.6778,6.55779,4.5552,6.368614 +L 7.5113,3.699078,7.2136,4.069189 +L 7.2136,4.069189,6.9337,4.422291 +L 6.9337,4.422291,6.6602,4.767009 +L 6.6602,5.834709,6.9582,6.249957 +L 6.9582,6.249957,7.07,6.665238 +L 7.07,6.665238,7.084,7.436424 +L 7.084,7.436424,6.3625,7.436424 +L 6.3625,7.436424,5.655,7.436424 +L 5.655,7.436424,4.9513,7.436424 +L 5.3786,7.970264,5.3786,8.313581 +L 5.3786,8.313581,5.3786,8.656766 +L 5.3786,8.656766,5.3786,9.000006 +L 1.1333,8.46609,2.1213,8.46609 +L 2.1213,8.46609,3.1227,8.46609 +L 3.1227,8.46609,4.1279,8.46609 + +[契] 45 +L 0.7399,-0.000047,1.8428,0.44483 +L 1.8428,0.44483,2.6133,1.067807 +L 2.6133,1.067807,3.7026,2.402482 +L 3.7026,2.402482,2.7012,2.505694 +L 2.7012,2.505694,1.7171,2.591811 +L 1.7171,2.591811,0.7399,2.669489 +L 6.6905,-0.000047,5.1705,1.738756 +L 5.1705,1.738756,4.505,2.697717 +L 4.505,2.697717,4.1267,3.699078 +L 4.981,2.669489,5.8146,2.669489 +L 5.8146,2.669489,6.6587,2.669489 +L 6.6587,2.669489,7.5133,2.669489 +L 0.7399,4.23294,1.1707,4.23294 +L 1.1707,4.23294,1.5945,4.23294 +L 1.5945,4.23294,2.0218,4.23294 +L 2.0218,4.23294,2.0218,4.767009 +L 2.0218,4.767009,2.0218,5.300804 +L 2.0218,5.300804,2.0218,5.834709 +L 2.0218,5.834709,1.7272,6.02394 +L 1.7272,6.02394,1.44,6.20471 +L 1.44,6.20471,1.1707,6.368614 +L 2.4487,4.767009,2.7223,4.767009 +L 2.7223,4.767009,2.9986,4.767009 +L 2.9986,4.767009,3.2721,4.767009 +L 4.1267,4.767009,4.8794,6.039493 +L 4.8794,6.039493,5.2857,7.117198 +L 5.2857,7.117198,5.4083,8.46609 +L 5.4083,8.46609,4.981,8.46609 +L 4.981,8.46609,4.5537,8.46609 +L 4.5537,8.46609,4.1267,8.46609 +L 5.8356,4.767009,7.0054,5.378515 +L 7.0054,5.378515,7.2051,6.812014 +L 7.2051,6.812014,7.1178,8.46609 +L 7.1178,8.46609,6.6905,8.46609 +L 6.6905,8.46609,6.2594,8.46609 +L 6.2594,8.46609,5.8356,8.46609 +L 2.4487,6.368614,2.151,6.90253 +L 2.151,6.90253,1.8712,7.436424 +L 1.8712,7.436424,1.5945,7.970264 +L 1.5945,7.970264,1.2964,7.970264 +L 1.2964,7.970264,1.0162,7.970264 +L 1.0162,7.970264,0.7399,7.970264 +L 2.4487,7.970264,2.2985,8.313581 +L 2.2985,8.313581,2.151,8.656766 +L 2.151,8.656766,2.0218,9.000006 + +[恵] 57 +L 0.7695,0.266949,0.8995,0.723166 +L 0.8995,0.723166,1.0466,1.170801 +L 1.0466,1.170801,1.1968,1.601657 +L 3.3018,-0.000047,3.0006,0.434958 +L 3.0006,0.434958,2.8889,0.988673 +L 2.8889,0.988673,2.8745,2.135573 +L 3.7291,-0.000047,4.43,-0.000047 +L 4.43,-0.000047,5.134,-0.000047 +L 5.134,-0.000047,5.8341,-0.000047 +L 5.8341,-0.000047,5.8341,0.370064 +L 5.8341,0.370064,5.8341,0.723166 +L 5.8341,0.723166,5.8341,1.067807 +L 7.5436,0.80081,7.3927,1.067807 +L 7.3927,1.067807,7.2456,1.334683 +L 7.2456,1.334683,7.1163,1.601657 +L 1.628,3.203339,1.628,4.269716 +L 1.628,4.269716,1.628,5.327631 +L 1.628,5.327631,1.628,6.368614 +L 1.628,6.368614,2.3281,6.368614 +L 2.3281,6.368614,3.029,6.368614 +L 3.029,6.368614,3.7291,6.368614 +L 3.7291,6.368614,4.0167,6.961885 +L 4.0167,6.961885,4.0167,7.377058 +L 4.0167,7.377058,3.7291,7.970264 +L 3.7291,7.970264,2.7309,7.970264 +L 2.7309,7.970264,1.7467,7.970264 +L 1.7467,7.970264,0.7695,7.970264 +L 2.0203,3.203339,2.7208,3.203339 +L 2.7208,3.203339,3.4353,3.203339 +L 3.4353,3.203339,4.1603,3.203339 +L 4.1603,3.203339,3.8062,4.608676 +L 3.8062,4.608676,2.9796,4.861564 +L 2.9796,4.861564,2.0203,4.767009 +L 4.5841,3.203339,5.2877,3.203339 +L 5.2877,3.203339,5.9885,3.203339 +L 5.9885,3.203339,6.6925,3.203339 +L 6.6925,3.203339,6.6925,3.735854 +L 6.6925,3.735854,6.6925,4.259821 +L 6.6925,4.259821,6.6925,4.767009 +L 6.6925,4.767009,5.9885,4.767009 +L 5.9885,4.767009,5.2877,4.767009 +L 5.2877,4.767009,4.5841,4.767009 +L 4.5841,4.767009,4.3039,5.360182 +L 4.3039,5.360182,4.3039,5.775386 +L 4.3039,5.775386,4.5841,6.368614 +L 4.5841,6.368614,5.2877,6.368614 +L 5.2877,6.368614,5.9885,6.368614 +L 5.9885,6.368614,6.6925,6.368614 +L 6.6925,6.368614,6.6925,6.02394 +L 6.6925,6.02394,6.6925,5.670871 +L 6.6925,5.670871,6.6925,5.300804 +L 4.5841,7.970264,4.43,8.313581 +L 4.43,8.313581,4.2895,8.656766 +L 4.2895,8.656766,4.1603,9.000006 +L 5.0114,7.970264,5.8449,7.970264 +L 5.8449,7.970264,6.6925,7.970264 +L 6.6925,7.970264,7.5436,7.970264 + +[慶] 69 +L 0.768,0.266949,1.4405,2.916587 +L 1.4405,2.916587,1.6261,5.295102 +L 1.6261,5.295102,1.6261,7.970264 +L 1.6261,7.970264,2.6037,7.970264 +L 2.6037,7.970264,3.584,7.970264 +L 3.584,7.970264,4.5822,7.970264 +L 4.5822,7.970264,4.5822,8.313581 +L 4.5822,8.313581,4.5822,8.656766 +L 4.5822,8.656766,4.5822,9.000006 +L 2.0499,-0.000047,3.57,0.019753 +L 3.57,0.019753,4.2288,0.158154 +L 4.2288,0.158154,4.5822,0.533924 +L 4.5822,0.533924,3.8712,1.494351 +L 3.8712,1.494351,3.2166,1.505679 +L 3.2166,1.505679,2.4772,1.067807 +L 5.8645,-0.000047,5.5734,0.189206 +L 5.5734,0.189206,5.2862,0.370064 +L 5.2862,0.370064,5.0134,0.533924 +L 6.2918,-0.000047,6.8483,-0.000047 +L 6.8483,-0.000047,7.4231,-0.000047 +L 7.4231,-0.000047,8.0006,-0.000047 +L 5.8645,1.334683,5.4407,1.437786 +L 5.4407,1.437786,5.0134,1.523968 +L 5.0134,1.523968,4.5822,1.601657 +L 3.7595,2.135573,3.7595,2.668044 +L 3.7595,2.668044,3.7595,3.192011 +L 3.7595,3.192011,3.7595,3.699078 +L 2.4772,2.669489,2.6103,3.012652 +L 2.6103,3.012652,2.7574,3.355893 +L 2.7574,3.355893,2.9084,3.699078 +L 4.1868,2.669489,4.7363,2.669489 +L 4.7363,2.669489,5.2936,2.669489 +L 5.2936,2.669489,5.8645,2.669489 +L 7.1495,2.936376,6.9923,3.202004 +L 6.9923,3.202004,6.8483,3.458985 +L 6.8483,3.458985,6.7222,3.699078 +L 5.0134,3.699078,4.8589,3.966042 +L 4.8589,3.966042,4.7153,4.23294 +L 4.7153,4.23294,4.5822,4.500046 +L 4.5822,4.500046,3.7311,4.60304 +L 3.7311,4.60304,2.8839,4.689254 +L 2.8839,4.689254,2.0499,4.767009 +L 5.0134,4.767009,5.8645,4.767009 +L 5.8645,4.767009,6.7222,4.767009 +L 6.7222,4.767009,7.5733,4.767009 +L 2.0499,5.834709,2.6103,5.937845 +L 2.6103,5.937845,3.1812,6.02394 +L 3.1812,6.02394,3.7595,6.101727 +L 3.7595,6.101727,3.4127,6.665238 +L 3.4127,6.665238,2.9714,6.872913 +L 2.9714,6.872913,2.0499,6.90253 +L 4.1868,5.834709,4.5931,5.937845 +L 4.5931,5.937845,5.0134,6.02394 +L 5.0134,6.02394,5.4407,6.101727 +L 5.4407,6.101727,4.9083,6.685006 +L 4.9083,6.685006,4.2915,7.031005 +L 4.2915,7.031005,3.7595,7.436424 +L 5.8645,5.834709,6.2918,5.834709 +L 6.2918,5.834709,6.7222,5.834709 +L 6.7222,5.834709,7.1495,5.834709 +L 7.1495,5.834709,7.1495,6.20471 +L 7.1495,6.20471,7.1495,6.55779 +L 7.1495,6.55779,7.1495,6.90253 +L 7.1495,6.90253,6.2144,6.942085 +L 6.2144,6.942085,5.6578,7.218878 +L 5.6578,7.218878,5.0134,7.970264 +L 5.8645,7.970264,6.5685,7.970264 +L 6.5685,7.970264,7.2795,7.970264 +L 7.2795,7.970264,8.0006,7.970264 + +[憩] 69 +L 0.8019,0.266949,0.9312,0.90399 +L 0.9312,0.90399,1.0783,1.523968 +L 1.0783,1.523968,1.2257,2.135573 +L 3.3342,-0.000047,3.033,0.454823 +L 3.033,0.454823,2.9205,1.146831 +L 2.9205,1.146831,2.9069,2.669489 +L 3.7615,-0.000047,4.6157,-0.000047 +L 4.6157,-0.000047,5.4703,-0.000047 +L 5.4703,-0.000047,6.3214,-0.000047 +L 6.3214,-0.000047,6.3214,0.370064 +L 6.3214,0.370064,6.3214,0.723166 +L 6.3214,0.723166,6.3214,1.067807 +L 8.0026,0.80081,7.7052,1.257082 +L 7.7052,1.257082,7.4251,1.70476 +L 7.4251,1.70476,7.148,2.135573 +L 5.0395,1.868653,4.8928,2.135573 +L 4.8928,2.135573,4.7418,2.402482 +L 4.7418,2.402482,4.6157,2.669489 +L 1.2257,3.699078,1.2257,4.23294 +L 1.2257,4.23294,1.2257,4.767009 +L 1.2257,4.767009,1.2257,5.300804 +L 1.2257,5.300804,1.6565,5.300804 +L 1.6565,5.300804,2.0835,5.300804 +L 2.0835,5.300804,2.5076,5.300804 +L 2.5076,5.300804,2.2764,6.631341 +L 2.2764,6.631341,1.6632,6.944811 +L 1.6632,6.944811,0.8019,6.90253 +L 1.6565,3.699078,2.3605,3.699078 +L 2.3605,3.699078,3.0606,3.699078 +L 3.0606,3.699078,3.7615,3.699078 +L 3.7615,3.699078,3.7615,4.23294 +L 3.7615,4.23294,3.7615,4.767009 +L 3.7615,4.767009,3.7615,5.300804 +L 3.7615,5.300804,3.4634,5.300804 +L 3.4634,5.300804,3.1832,5.300804 +L 3.1832,5.300804,2.9069,5.300804 +L 5.0395,3.699078,5.0395,5.136999 +L 5.0395,5.136999,5.0395,6.55779 +L 5.0395,6.55779,5.0395,7.970264 +L 5.0395,7.970264,5.6598,8.186376 +L 5.6598,8.186376,5.9922,8.453448 +L 5.9922,8.453448,6.3214,9.000006 +L 5.4703,3.699078,6.0206,3.699078 +L 6.0206,3.699078,6.5771,3.699078 +L 6.5771,3.699078,7.148,3.699078 +L 7.148,3.699078,7.148,4.23294 +L 7.148,4.23294,7.148,4.767009 +L 7.148,4.767009,7.148,5.300804 +L 7.148,5.300804,6.5771,5.300804 +L 6.5771,5.300804,6.0206,5.300804 +L 6.0206,5.300804,5.4703,5.300804 +L 7.148,6.101727,6.5771,6.20471 +L 6.5771,6.20471,6.0206,6.290915 +L 6.0206,6.290915,5.4703,6.368614 +L 2.9069,6.90253,2.5812,7.475968 +L 2.5812,7.475968,2.1434,7.752837 +L 2.1434,7.752837,1.2257,7.970264 +L 3.3342,6.90253,3.6105,6.90253 +L 3.6105,6.90253,3.8907,6.90253 +L 3.8907,6.90253,4.1884,6.90253 +L 7.148,6.90253,7.148,7.272641 +L 7.148,7.272641,7.148,7.625622 +L 7.148,7.625622,7.148,7.970264 +L 7.148,7.970264,6.8717,7.970264 +L 6.8717,7.970264,6.5981,7.970264 +L 6.5981,7.970264,6.3214,7.970264 +L 2.9069,8.46609,3.1832,8.46609 +L 3.1832,8.46609,3.4634,8.46609 +L 3.4634,8.46609,3.7615,8.46609 + +[掲] 45 +L 1.2589,-0.000047,1.5359,-0.000047 +L 1.5359,-0.000047,1.8088,-0.000047 +L 1.8088,-0.000047,2.0823,-0.000047 +L 2.0823,-0.000047,2.0644,2.622819 +L 2.0644,2.622819,1.9562,3.72029 +L 1.9562,3.72029,1.655,4.23294 +L 1.655,4.23294,1.3815,4.069189 +L 1.3815,4.069189,1.1086,3.888386 +L 1.1086,3.888386,0.8316,3.699078 +L 5.8961,-0.000047,6.1728,-0.000047 +L 6.1728,-0.000047,6.4534,-0.000047 +L 6.4534,-0.000047,6.7511,-0.000047 +L 6.7511,-0.000047,7.378,1.444922 +L 7.378,1.444922,7.5882,2.66093 +L 7.5882,2.66093,7.6057,4.23294 +L 7.6057,4.23294,5.2061,4.21325 +L 5.2061,4.21325,4.2188,4.074837 +L 4.2188,4.074837,3.7912,3.699078 +L 3.7912,3.699078,4.3694,2.960356 +L 4.3694,2.960356,5.0314,2.798051 +L 5.0314,2.798051,5.8961,3.203339 +L 5.0734,1.601657,5.4797,1.601657 +L 5.4797,1.601657,5.9,1.601657 +L 5.9,1.601657,6.3234,1.601657 +L 2.5093,4.23294,1.9983,5.484421 +L 1.9983,5.484421,1.7878,6.49004 +L 1.7878,6.49004,0.8316,6.90253 +L 4.6461,4.767009,4.4987,6.014057 +L 4.4987,6.014057,4.3484,7.244402 +L 4.3484,7.244402,4.2188,8.46609 +L 4.2188,8.46609,5.1995,8.46609 +L 5.1995,8.46609,6.1798,8.46609 +L 6.1798,8.46609,7.1784,8.46609 +L 7.1784,8.46609,7.1784,7.588956 +L 7.1784,7.588956,7.1784,6.711898 +L 7.1784,6.711898,7.1784,5.834709 +L 7.1784,5.834709,6.4775,5.834709 +L 6.4775,5.834709,5.7735,5.834709 +L 5.7735,5.834709,5.0734,5.834709 +L 2.5093,6.90253,2.208,7.336111 +L 2.208,7.336111,2.0998,7.879966 +L 2.0998,7.879966,2.0823,9.000006 +L 4.6461,7.436424,5.3497,7.436424 +L 5.3497,7.436424,6.0506,7.436424 +L 6.0506,7.436424,6.7511,7.436424 + +[携] 63 +L 0.8301,-0.000047,1.1071,-0.000047 +L 1.1071,-0.000047,1.3908,-0.000047 +L 1.3908,-0.000047,1.6885,-0.000047 +L 1.6885,-0.000047,1.6885,1.247121 +L 1.6885,1.247121,1.6885,2.477358 +L 1.6885,2.477358,1.6885,3.699078 +L 1.6885,3.699078,1.3908,3.699078 +L 1.3908,3.699078,1.1071,3.699078 +L 1.1071,3.699078,0.8301,3.699078 +L 3.1802,-0.000047,4.0313,1.247121 +L 4.0313,1.247121,4.5007,2.299411 +L 4.5007,2.299411,4.6446,3.699078 +L 4.6446,3.699078,4.2208,3.699078 +L 4.2208,3.699078,3.8005,3.699078 +L 3.8005,3.699078,3.3977,3.699078 +L 6.3538,-0.000047,7.338,0.256989 +L 7.338,0.256989,7.6287,0.988673 +L 7.6287,0.988673,7.6353,2.135573 +L 7.6353,2.135573,6.7181,2.115839 +L 6.7181,2.115839,6.2732,1.977426 +L 6.2732,1.977426,5.9297,1.601657 +L 6.3538,2.669489,6.483,2.936376 +L 6.483,2.936376,6.6305,3.203339 +L 6.6305,3.203339,6.7807,3.470292 +L 6.7807,3.470292,6.2032,3.546558 +L 6.2032,3.546558,5.6284,3.622878 +L 5.6284,3.622878,5.0719,3.699078 +L 1.6885,4.23294,1.6885,4.956207 +L 1.6885,4.956207,1.6885,5.670871 +L 1.6885,5.670871,1.6885,6.368614 +L 1.6885,6.368614,1.3908,6.55779 +L 1.3908,6.55779,1.1071,6.73868 +L 1.1071,6.73868,0.8301,6.90253 +L 4.2208,4.767009,4.1364,5.670871 +L 4.1364,5.670871,4.0667,6.55779 +L 4.0667,6.55779,4.0037,7.436424 +L 4.0037,7.436424,3.7932,7.272641 +L 3.7932,7.272641,3.5865,7.09175 +L 3.5865,7.09175,3.3977,6.90253 +L 4.6446,4.767009,5.0719,4.869992 +L 5.0719,4.869992,5.5027,4.956207 +L 5.5027,4.956207,5.9297,5.033786 +L 5.9297,5.033786,5.5973,5.597418 +L 5.5973,5.597418,5.2642,5.805091 +L 5.2642,5.805091,4.6446,5.834709 +L 6.3538,4.767009,6.7807,4.767009 +L 6.7807,4.767009,7.208,4.767009 +L 7.208,4.767009,7.6353,4.767009 +L 6.3538,5.834709,5.7234,6.586138 +L 5.7234,6.586138,5.2785,6.86293 +L 5.2785,6.86293,4.6446,6.90253 +L 2.1158,6.90253,1.8146,7.336111 +L 1.8146,7.336111,1.7057,7.879966 +L 1.7057,7.879966,1.6885,9.000006 +L 6.3538,6.90253,5.7058,7.653838 +L 5.7058,7.653838,5.1525,7.930806 +L 5.1525,7.930806,4.2208,7.970264 +L 6.3538,7.970264,6.0701,8.338951 +L 6.0701,8.338951,6.0701,8.60598 +L 6.0701,8.60598,6.3538,9.000006 +L 6.7807,7.970264,7.0578,7.970264 +L 7.0578,7.970264,7.338,7.970264 +L 7.338,7.970264,7.6353,7.970264 + +[渓] 39 +L 0.864,0.266949,1.2878,1.411003 +L 1.2878,1.411003,1.7151,2.555068 +L 1.7151,2.555068,2.1455,3.699078 +L 3.1857,-0.000047,3.9528,0.723166 +L 3.9528,0.723166,4.7373,1.437786 +L 4.7373,1.437786,5.5289,2.135573 +L 5.5289,2.135573,5.1646,2.511266 +L 5.1646,2.511266,4.6147,2.649623 +L 4.6147,2.649623,3.3962,2.669489 +L 7.6338,-0.000047,7.0664,0.533924 +L 7.0664,0.533924,6.5064,1.067807 +L 6.5064,1.067807,5.96,1.601657 +L 5.96,2.669489,5.6623,3.202004 +L 5.6623,3.202004,5.3786,3.725982 +L 5.3786,3.725982,5.1016,4.23294 +L 5.1016,4.23294,4.6778,4.23294 +L 4.6778,4.23294,4.2505,4.23294 +L 4.2505,4.23294,3.82,4.23294 +L 6.3523,2.669489,6.7827,2.669489 +L 6.7827,2.669489,7.21,2.669489 +L 7.21,2.669489,7.6338,2.669489 +L 5.96,4.23294,5.8059,4.60304 +L 5.8059,4.60304,5.6623,4.956207 +L 5.6623,4.956207,5.5289,5.300804 +L 6.3523,4.23294,6.6325,4.23294 +L 6.6325,4.23294,6.9127,4.23294 +L 6.9127,4.23294,7.21,4.23294 +L 1.7151,5.834709,1.4205,6.20471 +L 1.4205,6.20471,1.1403,6.55779 +L 1.1403,6.55779,0.864,6.90253 +L 6.7827,6.368614,6.9127,6.73868 +L 6.9127,6.73868,7.0563,7.09175 +L 7.0563,7.09175,7.21,7.436424 +L 2.1455,7.970264,1.8478,8.313581 +L 1.8478,8.313581,1.5641,8.656766 +L 1.5641,8.656766,1.2878,9.000006 +L 3.3962,7.970264,4.8004,8.149622 +L 4.8004,8.149622,6.2122,8.312136 +L 6.2122,8.312136,7.6338,8.46609 + +[継] 57 +L 2.1163,-0.000047,2.1163,1.6003 +L 2.1163,1.6003,2.1163,3.192011 +L 2.1163,3.192011,2.1163,4.767009 +L 2.1163,4.767009,1.6852,4.767009 +L 1.6852,4.767009,1.2722,4.767009 +L 1.2722,4.767009,0.8625,4.767009 +L 4.2493,-0.000047,4.2493,3.011284 +L 4.2493,3.011284,4.2493,6.014057 +L 4.2493,6.014057,4.2493,9.000006 +L 4.6763,-0.000047,5.8044,-0.000047 +L 5.8044,-0.000047,6.9357,-0.000047 +L 6.9357,-0.000047,8.0631,-0.000047 +L 0.8625,1.334683,0.985,1.971757 +L 0.985,1.971757,1.1178,2.591811 +L 1.1178,2.591811,1.2579,3.203372 +L 3.3947,1.868653,3.2438,2.324859 +L 3.2438,2.324859,3.0967,2.772592 +L 3.0967,2.772592,2.9674,3.203372 +L 6.3575,1.601657,6.2737,2.478813 +L 6.2737,2.478813,6.1998,3.355893 +L 6.1998,3.355893,6.1403,4.23294 +L 6.1403,4.23294,5.776,3.725982 +L 5.776,3.725982,5.4156,3.202004 +L 5.4156,3.202004,5.0724,2.669489 +L 7.6358,2.936376,7.0583,3.916537 +L 7.0583,3.916537,6.4874,4.87993 +L 6.4874,4.87993,5.927,5.834709 +L 5.927,5.834709,5.6324,5.834709 +L 5.6324,5.834709,5.3487,5.834709 +L 5.3487,5.834709,5.0724,5.834709 +L 3.3947,4.500046,3.2438,4.767009 +L 3.2438,4.767009,3.0967,5.033786 +L 3.0967,5.033786,2.9674,5.300804 +L 2.9674,5.300804,2.8165,5.136999 +L 2.8165,5.136999,2.6729,4.956207 +L 2.6729,4.956207,2.5436,4.767009 +L 1.6852,5.300804,1.8186,5.567746 +L 1.8186,5.567746,1.9619,5.834709 +L 1.9619,5.834709,2.1163,6.101727 +L 2.1163,6.101727,1.8186,6.471717 +L 1.8186,6.471717,1.5349,6.824906 +L 1.5349,6.824906,1.2579,7.16946 +L 1.2579,7.16946,1.5349,7.779598 +L 1.5349,7.779598,1.8186,8.389846 +L 1.8186,8.389846,2.1163,9.000006 +L 6.7812,5.834709,6.4835,6.307824 +L 6.4835,6.307824,6.3718,7.128471 +L 6.3718,7.128471,6.3575,9.000006 +L 2.5436,7.16946,2.6729,7.436456 +L 2.6729,7.436456,2.8165,7.703421 +L 2.8165,7.703421,2.9674,7.970264 +L 5.4997,7.16946,5.3487,7.436456 +L 5.3487,7.436456,5.2016,7.703421 +L 5.2016,7.703421,5.0724,7.970264 +L 7.2085,6.90253,7.3385,7.272641 +L 7.3385,7.272641,7.4856,7.625622 +L 7.4856,7.625622,7.6358,7.970264 + +[茎] 48 +L 0.8645,-0.000047,1.9957,-0.000047 +L 1.9957,-0.000047,3.1197,-0.000047 +L 3.1197,-0.000047,4.2478,-0.000047 +L 4.2478,-0.000047,3.9606,1.841739 +L 3.9606,1.841739,3.106,2.225947 +L 3.106,2.225947,1.7156,2.135573 +L 4.6748,-0.000047,5.6555,-0.000047 +L 5.6555,-0.000047,6.6365,-0.000047 +L 6.6365,-0.000047,7.6378,-0.000047 +L 4.6748,2.135573,4.5245,2.505694 +L 4.5245,2.505694,4.3809,2.858785 +L 4.3809,2.858785,4.2478,3.203372 +L 5.1056,2.135573,5.6593,2.135573 +L 5.6593,2.135573,6.2334,2.135573 +L 6.2334,2.135573,6.8151,2.135573 +L 0.8645,3.203372,1.8381,3.649726 +L 1.8381,3.649726,2.8258,4.079095 +L 2.8258,4.079095,3.8205,4.500046 +L 3.8205,4.500046,3.547,5.033786 +L 3.547,5.033786,3.2741,5.567746 +L 3.2741,5.567746,3.0006,6.101727 +L 3.0006,6.101727,2.4195,6.20471 +L 2.4195,6.20471,1.8448,6.290915 +L 1.8448,6.290915,1.2918,6.368614 +L 6.8151,3.203372,5.9567,3.735854 +L 5.9567,3.735854,5.1056,4.259854 +L 5.1056,4.259854,4.2478,4.767009 +L 5.3196,5.300804,5.5294,5.567746 +L 5.5294,5.567746,5.7434,5.834709 +L 5.7434,5.834709,5.9567,6.101727 +L 5.9567,6.101727,5.1056,6.20471 +L 5.1056,6.20471,4.2478,6.290915 +L 4.2478,6.290915,3.3967,6.368614 +L 0.8645,7.970264,1.5646,7.970264 +L 1.5646,7.970264,2.2759,7.970264 +L 2.2759,7.970264,3.0006,7.970264 +L 3.0006,7.970264,3.0006,8.313581 +L 3.0006,8.313581,3.0006,8.656776 +L 3.0006,8.656776,3.0006,9.000006 +L 3.3967,7.970264,4.1007,7.970264 +L 4.1007,7.970264,4.8082,7.970264 +L 4.8082,7.970264,5.5294,7.970264 +L 5.5294,7.970264,5.5294,8.313581 +L 5.5294,8.313581,5.5294,8.656776 +L 5.5294,8.656776,5.5294,9.000006 +L 5.9567,7.970264,6.5104,7.970264 +L 6.5104,7.970264,7.0669,7.970264 +L 7.0669,7.970264,7.6378,7.970264 + +[蛍] 45 +L 1.2903,-0.000047,2.2671,-0.000047 +L 2.2671,-0.000047,3.2516,-0.000047 +L 3.2516,-0.000047,4.2495,-0.000047 +L 4.2495,-0.000047,4.1658,2.338934 +L 4.1658,2.338934,3.605,3.127139 +L 3.605,3.127139,2.113,3.203372 +L 2.113,3.203372,2.113,3.916537 +L 2.113,3.916537,2.113,4.612934 +L 2.113,4.612934,2.113,5.300804 +L 2.113,5.300804,2.6734,5.300804 +L 2.6734,5.300804,3.2408,5.300804 +L 3.2408,5.300804,3.8225,5.300804 +L 3.8225,5.300804,3.9553,5.670871 +L 3.9553,5.670871,4.0954,6.023984 +L 4.0954,6.023984,4.2495,6.368614 +L 7.2055,0.26696,7.0553,0.533924 +L 7.0553,0.533924,6.9117,0.800843 +L 6.9117,0.800843,6.7852,1.067807 +L 6.7852,1.067807,6.421,0.692027 +L 6.421,0.692027,5.8711,0.553713 +L 5.8711,0.553713,4.6736,0.533924 +L 4.6736,3.203372,4.1658,4.611588 +L 4.1658,4.611588,5.1535,5.189229 +L 5.1535,5.189229,6.3548,5.300804 +L 6.3548,5.300804,6.3548,4.612934 +L 6.3548,4.612934,6.3548,3.916537 +L 6.3548,3.916537,6.3548,3.203372 +L 6.3548,3.203372,5.7839,3.203372 +L 5.7839,3.203372,5.2267,3.203372 +L 5.2267,3.203372,4.6736,3.203372 +L 0.8595,5.834709,0.8595,6.368614 +L 0.8595,6.368614,0.8595,6.90253 +L 0.8595,6.90253,0.8595,7.436456 +L 0.8595,7.436456,2.5406,7.539604 +L 2.5406,7.539604,4.2253,7.625622 +L 4.2253,7.625622,5.9275,7.703421 +L 5.9275,7.703421,6.0567,8.149622 +L 6.0567,8.149622,6.2042,8.579132 +L 6.2042,8.579132,6.3548,9.000006 +L 7.6363,5.834709,7.6363,6.368614 +L 7.6363,6.368614,7.6363,6.90253 +L 7.6363,6.90253,7.6363,7.436456 +L 7.6363,7.436456,7.2055,7.436456 +L 7.2055,7.436456,6.7852,7.436456 +L 6.7852,7.436456,6.3548,7.436456 + +[鶏] 63 +L 1.0783,-0.000047,1.5651,0.723198 +L 1.5651,0.723198,2.0593,1.437786 +L 2.0593,1.437786,2.5703,2.135573 +L 2.5703,2.135573,2.2239,2.511266 +L 2.2239,2.511266,1.7791,2.649623 +L 1.7791,2.649623,0.865,2.669489 +L 6.3845,-0.000047,7.6807,0.508411 +L 7.6807,0.508411,8.0762,1.728752 +L 8.0762,1.728752,8.094,3.203372 +L 8.094,3.203372,7.0885,3.203372 +L 7.0885,3.203372,6.0871,3.203372 +L 6.0871,3.203372,5.1026,3.203372 +L 5.1026,3.203372,5.1026,4.803675 +L 5.1026,4.803675,5.1026,6.395473 +L 5.1026,6.395473,5.1026,7.970264 +L 5.1026,7.970264,5.7229,8.186376 +L 5.7229,8.186376,6.0517,8.453448 +L 6.0517,8.453448,6.3845,9.000006 +L 3.4284,0.800843,3.2746,1.067807 +L 3.2746,1.067807,3.131,1.334683 +L 3.131,1.334683,2.9976,1.601657 +L 4.2798,0.533924,4.546,1.206252 +L 4.546,1.206252,4.546,1.997182 +L 4.546,1.997182,4.2798,2.669489 +L 4.2798,2.669489,3.8522,2.669489 +L 3.8522,2.669489,3.4284,2.669489 +L 3.4284,2.669489,2.9976,2.669489 +L 2.9976,2.669489,2.7037,3.202004 +L 2.7037,3.202004,2.4235,3.725982 +L 2.4235,3.725982,2.1433,4.23294 +L 2.1433,4.23294,1.8453,4.23294 +L 1.8453,4.23294,1.5651,4.23294 +L 1.5651,4.23294,1.2887,4.23294 +L 5.5334,1.067807,5.5334,1.437786 +L 5.5334,1.437786,5.5334,1.790976 +L 5.5334,1.790976,5.5334,2.135573 +L 6.3845,1.067807,6.3845,1.437786 +L 6.3845,1.437786,6.3845,1.790976 +L 6.3845,1.790976,6.3845,2.135573 +L 2.9976,4.23294,2.8473,4.603061 +L 2.8473,4.603061,2.7037,4.956207 +L 2.7037,4.956207,2.5703,5.300804 +L 5.5334,4.23294,6.3845,4.23294 +L 6.3845,4.23294,7.2429,4.23294 +L 7.2429,4.23294,8.094,4.23294 +L 5.5334,5.300804,6.2339,5.300804 +L 6.2339,5.300804,6.9449,5.300804 +L 6.9449,5.300804,7.6632,5.300804 +L 7.6632,5.300804,7.6632,5.834709 +L 7.6632,5.834709,7.6632,6.368614 +L 7.6632,6.368614,7.6632,6.90253 +L 7.6632,6.90253,6.9449,6.90253 +L 6.9449,6.90253,6.2339,6.90253 +L 6.2339,6.90253,5.5334,6.90253 +L 3.4284,6.368614,3.7019,6.73868 +L 3.7019,6.73868,3.9821,7.09175 +L 3.9821,7.09175,4.2798,7.436456 +L 7.6632,7.703421,7.2429,7.806414 +L 7.2429,7.806414,6.8121,7.89263 +L 6.8121,7.89263,6.3845,7.970264 +L 0.865,7.970264,2.5076,8.098836 +L 2.5076,8.098836,3.4879,8.337572 +L 3.4879,8.337572,4.2798,8.46609 + +# kan_26 ------------------------------------------------------- +# 迎鯨撃傑倹兼剣圏堅嫌懸献肩謙賢軒遣顕幻弦玄孤弧枯誇雇顧鼓互呉娯御悟碁侯坑孔恒慌抗拘控更洪溝甲硬稿絞 + +[迎] 30 +L 5.0676,1.082922,5.0676,3.397922 +L 5.0676,3.397922,5.0676,5.696023 +L 5.0676,5.696023,5.0676,7.985542 +L 5.0676,7.985542,5.6245,7.985542 +L 5.6245,7.985542,6.1989,7.985542 +L 6.1989,7.985542,6.7768,7.985542 +L 6.7768,7.985542,6.7768,6.229862 +L 6.7768,6.229862,6.7768,4.465732 +L 6.7768,4.465732,6.7768,2.684648 +L 6.7768,2.684648,6.4794,2.684648 +L 6.4794,2.684648,6.1989,2.684648 +L 6.1989,2.684648,5.9187,2.684648 +L 2.322,2.150787,2.5353,2.339974 +L 2.5353,2.339974,2.749,2.520777 +L 2.749,2.520777,2.9626,2.684648 +L 2.9626,2.684648,2.9626,4.465732 +L 2.9626,4.465732,2.9626,6.229862 +L 2.9626,6.229862,2.9626,7.985542 +L 2.9626,7.985542,3.5791,8.00532 +L 3.5791,8.00532,3.9118,8.143733 +L 3.9118,8.143733,4.2449,8.519404 +L 3.6036,2.684648,3.8176,2.873966 +L 3.8176,2.873966,4.0274,3.054715 +L 4.0274,3.054715,4.2449,3.218597 +L 5.0886,0.000062,7.2185,0.000062 +L 1.2709,1.067719,0.2167,0.015232 +L 0.0206,4.766965,1.2709,4.766965 +L 1.2709,1.067719,1.2709,4.766965 +L 0.4444,8.504387,1.2709,7.436489 +A 5.0886,7.363081,7.362973,238.75988,270 + +[鯨] 75 +L 0.0019,0.015232,0.3066,0.430426 +L 0.3066,0.430426,0.4187,0.845642 +L 0.4187,0.845642,0.4324,1.616827 +L 4.6668,0.015232,4.947,0.015232 +L 4.947,0.015232,5.2272,0.015232 +L 5.2272,0.015232,5.5249,0.015232 +L 5.5249,0.015232,5.5249,1.453044 +L 5.5249,1.453044,5.5249,2.873966 +L 5.5249,2.873966,5.5249,4.286341 +L 5.5249,4.286341,5.0976,4.286341 +L 5.0976,4.286341,4.6668,4.286341 +L 4.6668,4.286341,4.2465,4.286341 +L 4.2465,4.286341,4.2465,4.818834 +L 4.2465,4.818834,4.2465,5.34279 +L 4.2465,5.34279,4.2465,5.849988 +L 4.2465,5.849988,5.0976,5.849988 +L 5.0976,5.849988,5.9557,5.849988 +L 5.9557,5.849988,6.8068,5.849988 +L 6.8068,5.849988,6.8068,5.34279 +L 6.8068,5.34279,6.8068,4.818834 +L 6.8068,4.818834,6.8068,4.286341 +L 6.8068,4.286341,6.5126,4.286341 +L 6.5126,4.286341,6.2254,4.286341 +L 6.2254,4.286341,5.9557,4.286341 +L 1.2835,0.549083,1.2835,0.919073 +L 1.2835,0.919073,1.2835,1.272273 +L 1.2835,1.272273,1.2835,1.616827 +L 2.1416,0.549083,2.1416,0.919073 +L 2.1416,0.919073,2.1416,1.272273 +L 2.1416,1.272273,2.1416,1.616827 +L 2.9926,0.549083,2.9926,0.919073 +L 2.9926,0.919073,2.9926,1.272273 +L 2.9926,1.272273,2.9926,1.616827 +L 3.8157,1.082922,4.1208,1.498247 +L 4.1208,1.498247,4.229,1.913452 +L 4.229,1.913452,4.2465,2.684648 +L 7.2341,1.082922,6.9329,1.498247 +L 6.9329,1.498247,6.8247,1.913452 +L 6.8247,1.913452,6.8068,2.684648 +L 0.4324,2.684648,0.4187,5.307579 +L 0.4187,5.307579,0.3066,6.404996 +L 0.3066,6.404996,0.0019,6.917722 +L 0.0019,6.917722,0.4324,7.451583 +L 0.4324,7.451583,0.8562,7.985542 +L 0.8562,7.985542,1.2835,8.519404 +L 1.2835,8.519404,1.7107,8.441748 +L 1.7107,8.441748,2.1416,8.355533 +L 2.1416,8.355533,2.5653,8.25243 +L 2.5653,8.25243,2.2715,7.821792 +L 2.2715,7.821792,1.9878,7.374004 +L 1.9878,7.374004,1.7107,6.917722 +L 1.7107,6.917722,2.0473,6.541986 +L 2.0473,6.541986,2.3727,6.403638 +L 2.3727,6.403638,2.9926,6.383816 +L 2.9926,6.383816,2.9926,5.16203 +L 2.9926,5.16203,2.9926,3.931882 +L 2.9926,3.931882,2.9926,2.684648 +L 2.9926,2.684648,2.1416,2.684648 +L 2.1416,2.684648,1.2835,2.684648 +L 1.2835,2.684648,0.4324,2.684648 +L 1.7107,3.218597,1.6831,3.988337 +L 1.6831,3.988337,1.4589,4.393768 +L 1.4589,4.393768,0.8562,4.78208 +L 2.1416,4.78208,1.7107,5.316008 +L 1.7107,5.316008,1.2835,5.849988 +L 1.2835,5.849988,0.8562,6.383816 +L 3.8157,7.451583,4.3765,7.451583 +L 4.3765,7.451583,4.947,7.451583 +L 4.947,7.451583,5.5249,7.451583 +L 5.5249,7.451583,5.5249,7.985542 +L 5.5249,7.985542,5.5249,8.519404 +L 5.5249,8.519404,5.5249,9.053364 +L 5.9557,7.451583,6.376,7.451583 +L 6.376,7.451583,6.8068,7.451583 +L 6.8068,7.451583,7.2341,7.451583 + +[撃] 66 +L 2.14,0.015232,2.5673,0.118259 +L 2.5673,0.118259,2.9946,0.204452 +L 2.9946,0.204452,3.4184,0.282108 +L 3.4184,0.282108,3.2678,0.549083 +L 3.2678,0.549083,3.1242,0.816035 +L 3.1242,0.816035,2.9946,1.082922 +L 2.9946,1.082922,1.9968,1.082922 +L 1.9968,1.082922,1.0123,1.082922 +L 1.0123,1.082922,0.0351,1.082922 +L 3.8496,1.082922,2.7425,2.071686 +L 2.7425,2.071686,1.7341,2.2298 +L 1.7341,2.2298,0.4592,2.150787 +L 4.2734,1.082922,5.1066,1.082922 +L 5.1066,1.082922,5.9546,1.082922 +L 5.9546,1.082922,6.8057,1.082922 +L 3.8496,2.150787,3.6951,2.417772 +L 3.6951,2.417772,3.5554,2.684648 +L 3.5554,2.684648,3.4184,2.951611 +L 3.4184,2.951611,2.5673,3.054715 +L 2.5673,3.054715,1.7198,3.140897 +L 1.7198,3.140897,0.8897,3.218597 +L 4.2734,2.150787,4.8334,2.150787 +L 4.8334,2.150787,5.4043,2.150787 +L 5.4043,2.150787,5.9822,2.150787 +L 4.0594,3.218597,4.2734,3.407784 +L 4.2734,3.407784,4.4902,3.588686 +L 4.4902,3.588686,4.7038,3.752458 +L 4.7038,3.752458,3.1067,4.6804 +L 3.1067,4.6804,1.6921,4.845639 +L 1.6921,4.845639,0.0351,4.78208 +L 6.3815,4.286341,6.0208,4.629527 +L 6.0208,4.629527,5.6775,4.97281 +L 5.6775,4.97281,5.3413,5.316008 +L 5.3413,5.316008,5.1245,5.152158 +L 5.1245,5.152158,4.9175,4.971398 +L 4.9175,4.971398,4.7038,4.78208 +L 1.7408,5.316008,1.4115,5.6917 +L 1.4115,5.6917,1.0788,5.830123 +L 1.0788,5.830123,0.4592,5.849988 +L 0.4592,5.849988,0.4592,6.573069 +L 0.4592,6.573069,0.4592,7.2878 +L 0.4592,7.2878,0.4592,7.985542 +L 0.4592,7.985542,1.0788,8.025109 +L 1.0788,8.025109,1.4115,8.301956 +L 1.4115,8.301956,1.7408,9.053364 +L 2.14,5.849988,1.7131,6.220077 +L 1.7131,6.220077,1.296,6.573069 +L 1.296,6.573069,0.8897,6.917722 +L 2.781,5.849988,2.844,6.220077 +L 2.844,6.220077,2.9106,6.573069 +L 2.9106,6.573069,2.9946,6.917722 +L 2.9946,6.917722,2.3782,6.93751 +L 2.3782,6.93751,2.0563,7.075923 +L 2.0563,7.075923,1.7408,7.451583 +L 1.7408,7.451583,2.8864,7.940449 +L 2.8864,7.940449,4.7144,8.310439 +L 4.7144,8.310439,5.9822,8.519404 +L 5.9822,8.519404,5.9822,8.174851 +L 5.9822,8.174851,5.9822,7.821792 +L 5.9822,7.821792,5.9822,7.451583 +L 5.9822,7.451583,6.2593,7.451583 +L 6.2593,7.451583,6.5356,7.451583 +L 6.5356,7.451583,6.8057,7.451583 +L 4.7038,6.116886,5.1245,6.039219 +L 5.1245,6.039219,5.5549,5.953015 +L 5.5549,5.953015,5.9822,5.849988 + +[傑] 48 +L 0.8882,0.015232,0.8041,1.796262 +L 0.8041,1.796262,0.7341,3.560381 +L 0.7341,3.560381,0.6745,5.316008 +L 0.6745,5.316008,0.4644,5.152158 +L 0.4644,5.152158,0.2577,4.971398 +L 0.2577,4.971398,0.0616,4.78208 +L 4.6992,0.015232,4.6218,0.919073 +L 4.6218,0.919073,4.5486,1.806058 +L 4.5486,1.806058,4.4887,2.684648 +L 4.4887,2.684648,3.7041,1.987014 +L 3.7041,1.987014,2.9336,1.272273 +L 2.9336,1.272273,2.1736,0.549083 +L 6.8388,0.549083,5.3328,2.46998 +L 5.3328,2.46998,4.1174,3.051836 +L 4.1174,3.051836,2.1736,3.218597 +L 5.5569,3.218597,6.1138,3.218597 +L 6.1138,3.218597,6.6882,3.218597 +L 6.6882,3.218597,7.2626,3.218597 +L 1.9568,4.286341,2.3032,4.732751 +L 2.3032,4.732751,2.6604,5.16203 +L 2.6604,5.16203,3.0247,5.58297 +L 3.0247,5.58297,2.7273,6.039219 +L 2.7273,6.039219,2.4436,6.486964 +L 2.4436,6.486964,2.1736,6.917722 +L 2.1736,6.917722,2.0163,6.75384 +L 2.0163,6.75384,1.8724,6.573069 +L 1.8724,6.573069,1.7431,6.383816 +L 6.4084,5.049131,6.0473,5.612676 +L 6.0473,5.612676,5.5009,5.820338 +L 5.5009,5.820338,4.3066,5.849988 +L 0.8882,5.849988,1.0003,7.155013 +L 1.0003,7.155013,1.2034,8.104178 +L 1.2034,8.104178,1.3155,9.053364 +L 3.452,6.116886,3.5816,6.75384 +L 3.5816,6.75384,3.7252,7.374004 +L 3.7252,7.374004,3.8796,7.985542 +L 3.8796,7.985542,2.9616,7.965678 +L 2.9616,7.965678,2.5168,7.827319 +L 2.5168,7.827319,2.1736,7.451583 +L 6.8388,5.849988,6.3135,6.962926 +L 6.3135,6.962926,6.0788,7.711465 +L 6.0788,7.711465,5.1296,7.985542 +L 5.1296,7.985542,5.1296,7.451583 +L 5.1296,7.451583,5.1296,6.917722 +L 5.1296,6.917722,5.1296,6.383816 +L 6.8388,7.985542,6.6882,8.355533 +L 6.6882,8.355533,6.5376,8.708722 +L 6.5376,8.708722,6.4084,9.053364 + +[倹] 41 +L 2.4137,0.015232,3.1773,0.919073 +L 3.1773,0.919073,3.9517,1.806058 +L 3.9517,1.806058,4.7359,2.684648 +L 4.7359,2.684648,4.386,3.060384 +L 4.386,3.060384,3.9517,3.198731 +L 3.9517,3.198731,3.0547,3.218597 +L 3.0547,3.218597,3.0547,3.751013 +L 3.0547,3.751013,3.0547,4.275101 +L 3.0547,4.275101,3.0547,4.78208 +L 3.0547,4.78208,4.0602,4.849853 +L 4.0602,4.849853,4.5818,5.273671 +L 4.5818,5.273671,4.7359,6.383816 +L 4.7359,6.383816,3.696,6.502407 +L 3.696,6.502407,2.95,6.621163 +L 2.95,6.621163,2.2004,6.383816 +L 6.8657,0.015232,6.2878,0.738325 +L 6.2878,0.738325,5.7166,1.453044 +L 5.7166,1.453044,5.1565,2.150787 +L 5.1565,3.218597,4.876,3.810358 +L 4.876,3.810358,4.876,4.215756 +L 4.876,4.215756,5.1565,4.78208 +L 5.1565,4.78208,5.587,4.78208 +L 5.587,4.78208,6.0146,4.78208 +L 6.0146,4.78208,6.4419,4.78208 +L 6.4419,4.78208,6.4419,4.275101 +L 6.4419,4.275101,6.4419,3.751013 +L 6.4419,3.751013,6.4419,3.218597 +L 6.4419,3.218597,6.0146,3.218597 +L 6.0146,3.218597,5.587,3.218597 +L 5.587,3.218597,5.1565,3.218597 +L 5.1565,6.383816,5.7761,6.403638 +L 5.7761,6.403638,6.1088,6.541986 +L 6.1088,6.541986,6.4419,6.917722 +L 6.4419,6.917722,5.864,7.640868 +L 5.864,7.640868,5.2893,8.355533 +L 5.2893,8.355533,4.7359,9.053364 +L 4.7359,9.053364,4.3054,8.519404 +L 4.3054,8.519404,3.8781,7.985542 +L 3.8781,7.985542,3.447,7.451583 +L 0.9217,0.015232,0.9217,6.612756 +A -6.6121,10.642994,8.540417,321.41046,349.01228 + +[兼] 63 +L 2.6294,0.015232,2.5453,0.919073 +L 2.5453,0.919073,2.4753,1.806058 +L 2.4753,1.806058,2.4126,2.684648 +L 2.4126,2.684648,1.6277,1.987014 +L 1.6277,1.987014,0.8607,1.272273 +L 0.8607,1.272273,0.094,0.549083 +L 4.3354,0.015232,4.3354,1.082922 +L 4.3354,1.082922,4.3354,2.150787 +L 4.3354,2.150787,4.3354,3.218597 +L 4.3354,3.218597,3.2038,3.218597 +L 3.2038,3.218597,2.0799,3.218597 +L 2.0799,3.218597,0.9482,3.218597 +L 6.8674,0.549083,5.3543,2.307565 +L 5.3543,2.307565,4.5908,3.405026 +L 4.5908,3.405026,3.9043,4.78208 +L 3.9043,4.78208,3.2917,4.743958 +L 3.2917,4.743958,2.959,4.477006 +L 2.959,4.477006,2.6294,3.752458 +L 5.1932,3.218597,5.4629,3.218597 +L 5.4629,3.218597,5.7396,3.218597 +L 5.7396,3.218597,6.0166,3.218597 +L 6.0166,3.218597,5.873,4.369645 +L 5.873,4.369645,5.4524,4.74965 +L 5.4524,4.74965,4.7624,4.78208 +L 4.7624,4.78208,4.465,5.316008 +L 4.465,5.316008,4.1848,5.849988 +L 4.1848,5.849988,3.9043,6.383816 +L 3.9043,6.383816,3.6136,6.383816 +L 3.6136,6.383816,3.3299,6.383816 +L 3.3299,6.383816,3.0532,6.383816 +L 3.0532,6.383816,2.7558,5.849988 +L 2.7558,5.849988,2.4753,5.316008 +L 2.4753,5.316008,2.1989,4.78208 +L 2.1989,4.78208,1.4946,4.78208 +L 1.4946,4.78208,0.7941,4.78208 +L 0.7941,4.78208,0.094,4.78208 +L 6.4404,4.78208,6.1388,5.197373 +L 6.1388,5.197373,6.0341,5.612676 +L 6.0341,5.612676,6.0166,6.383816 +L 6.0166,6.383816,4.9028,6.485552 +L 4.9028,6.485552,4.4296,6.943126 +L 4.4296,6.943126,4.3354,7.985542 +L 4.3354,7.985542,3.9043,7.985542 +L 3.9043,7.985542,3.4843,7.985542 +L 3.4843,7.985542,3.0532,7.985542 +L 3.0532,7.985542,2.7558,7.451583 +L 2.7558,7.451583,2.4753,6.917722 +L 2.4753,6.917722,2.1989,6.383816 +L 2.1989,6.383816,1.7751,6.383816 +L 1.7751,6.383816,1.3545,6.383816 +L 1.3545,6.383816,0.9482,6.383816 +L 0.094,7.985542,1.593,8.00532 +L 1.593,8.00532,2.2515,8.143733 +L 2.2515,8.143733,2.6294,8.519404 +L 2.6294,8.519404,2.4753,8.708722 +L 2.4753,8.708722,2.3352,8.889394 +L 2.3352,8.889394,2.1989,9.053364 +L 4.7624,8.25243,4.8955,8.519404 +L 4.8955,8.519404,5.0391,8.786346 +L 5.0391,8.786346,5.1932,9.053364 +L 5.1932,7.985542,5.894,7.985542 +L 5.894,7.985542,6.5942,7.985542 +L 6.5942,7.985542,7.2947,7.985542 + +[剣] 48 +L 0.3093,0.015232,0.9467,0.816035 +L 0.9467,0.816035,1.5877,1.616827 +L 1.5877,1.616827,2.2321,2.417772 +L 2.2321,2.417772,1.8819,2.981295 +L 1.8819,2.981295,1.4409,3.188924 +L 1.4409,3.188924,0.5229,3.218597 +L 0.5229,3.218597,0.5229,3.751013 +L 0.5229,3.751013,0.5229,4.275101 +L 0.5229,4.275101,0.5229,4.78208 +L 0.5229,4.78208,1.5596,4.849853 +L 1.5596,4.849853,2.085,5.273671 +L 2.085,5.273671,2.2321,6.383816 +L 2.2321,6.383816,1.3005,6.403638 +L 1.3005,6.403638,0.7541,6.541986 +L 0.7541,6.541986,0.1271,6.917722 +L 5.6193,0.015232,6.0428,0.015232 +L 6.0428,0.015232,6.4736,0.015232 +L 6.4736,0.015232,6.8977,0.015232 +L 6.8977,0.015232,6.8977,3.027867 +L 6.8977,3.027867,6.8977,6.040631 +L 6.8977,6.040631,6.8977,9.053364 +L 3.9417,0.549083,3.5105,0.919073 +L 3.5105,0.919073,3.0867,1.272273 +L 3.0867,1.272273,2.6594,1.616827 +L 5.1882,2.150787,5.1882,4.095742 +L 5.1882,4.095742,5.1882,6.040631 +L 5.1882,6.040631,5.1882,7.985542 +L 2.6594,3.218597,2.3726,3.810358 +L 2.3726,3.810358,2.3726,4.215756 +L 2.3726,4.215756,2.6594,4.78208 +L 2.6594,4.78208,3.0867,4.78208 +L 3.0867,4.78208,3.5105,4.78208 +L 3.5105,4.78208,3.9417,4.78208 +L 3.9417,4.78208,3.9417,4.275101 +L 3.9417,4.275101,3.9417,3.751013 +L 3.9417,3.751013,3.9417,3.218597 +L 3.9417,3.218597,3.5105,3.218597 +L 3.5105,3.218597,3.0867,3.218597 +L 3.0867,3.218597,2.6594,3.218597 +L 2.6594,6.383816,2.9326,6.383816 +L 2.9326,6.383816,3.2131,6.383816 +L 3.2131,6.383816,3.5105,6.383816 +L 0.9467,7.451583,1.3775,7.985542 +L 1.3775,7.985542,1.8052,8.519404 +L 1.8052,8.519404,2.2321,9.053364 +L 2.2321,9.053364,2.7925,8.519404 +L 2.7925,8.519404,3.3638,7.985542 +L 3.3638,7.985542,3.9417,7.451583 + +[圏] 54 +L 0.126,0.015232,0.126,2.863962 +L 0.126,2.863962,0.126,5.696023 +L 0.126,5.696023,0.126,8.519404 +L 0.126,8.519404,2.3847,8.519404 +L 2.3847,8.519404,4.6371,8.519404 +L 4.6371,8.519404,6.8994,8.519404 +L 6.8994,8.519404,6.8994,5.696023 +L 6.8994,5.696023,6.8994,2.863962 +L 6.8994,2.863962,6.8994,0.015232 +L 6.8994,0.015232,4.6371,0.015232 +L 4.6371,0.015232,2.3847,0.015232 +L 2.3847,0.015232,0.126,0.015232 +L 2.2621,1.616827,2.2621,2.150787 +L 2.2621,2.150787,2.2621,2.684648 +L 2.2621,2.684648,2.2621,3.218597 +L 2.2621,3.218597,2.9626,3.218597 +L 2.9626,3.218597,3.6631,3.218597 +L 3.6631,3.218597,4.3675,3.218597 +L 4.3675,3.218597,4.3675,3.588686 +L 4.3675,3.588686,4.3675,3.941689 +L 4.3675,3.941689,4.3675,4.286341 +L 4.3675,4.286341,2.5532,4.266563 +L 2.5532,4.266563,1.6741,4.128195 +L 1.6741,4.128195,0.9802,3.752458 +L 2.6579,1.616827,3.5164,1.616827 +L 3.5164,1.616827,4.3675,1.616827 +L 4.3675,1.616827,5.2217,1.616827 +L 5.2217,1.616827,5.2217,1.987014 +L 5.2217,1.987014,5.2217,2.339974 +L 5.2217,2.339974,5.2217,2.684648 +L 5.6455,3.752458,5.2217,4.362629 +L 5.2217,4.362629,4.7944,4.97281 +L 4.7944,4.97281,4.3675,5.58297 +L 4.3675,5.58297,3.7857,5.58297 +L 3.7857,5.58297,3.2183,5.58297 +L 3.2183,5.58297,2.6579,5.58297 +L 2.6579,5.58297,2.5147,5.316008 +L 2.5147,5.316008,2.3847,5.049131 +L 2.3847,5.049131,2.2621,4.78208 +L 1.4114,5.849988,1.6807,5.849988 +L 1.6807,5.849988,1.9644,5.849988 +L 1.9644,5.849988,2.2621,5.849988 +L 4.7944,5.849988,5.0676,5.849988 +L 5.0676,5.849988,5.3513,5.849988 +L 5.3513,5.849988,5.6455,5.849988 +L 3.0852,6.650736,2.6579,7.10703 +L 2.6579,7.10703,2.2415,7.554741 +L 2.2415,7.554741,1.8352,7.985542 +L 3.9363,6.650736,3.7857,7.10703 +L 3.7857,7.10703,3.6421,7.554741 +L 3.6421,7.554741,3.5164,7.985542 +L 4.5808,6.917722,4.7944,7.2878 +L 4.7944,7.2878,5.0081,7.640868 +L 5.0081,7.640868,5.2217,7.985542 + +[堅] 57 +L 0.1592,0.015232,1.2834,0.015232 +L 1.2834,0.015232,2.4147,0.015232 +L 2.4147,0.015232,3.5425,0.015232 +L 3.5425,0.015232,3.2553,1.856953 +L 3.2553,1.856953,2.3972,2.241205 +L 2.3972,2.241205,1.0103,2.150787 +L 3.9733,0.015232,4.947,0.015232 +L 4.947,0.015232,5.935,0.015232 +L 5.935,0.015232,6.9294,0.015232 +L 3.9733,2.150787,3.8196,2.520777 +L 3.8196,2.520777,3.676,2.873966 +L 3.676,2.873966,3.5425,3.218597 +L 4.3936,2.150787,4.947,2.150787 +L 4.947,2.150787,5.5039,2.150787 +L 5.5039,2.150787,6.0751,2.150787 +L 0.583,4.286341,0.583,5.697457 +L 0.583,5.697457,0.583,7.108353 +L 0.583,7.108353,0.583,8.519404 +L 0.583,8.519404,1.413,8.519404 +L 1.413,8.519404,2.2641,8.519404 +L 2.2641,8.519404,3.1152,8.519404 +L 1.0103,4.286341,1.2834,4.286341 +L 1.2834,4.286341,1.5636,4.286341 +L 1.5636,4.286341,1.8337,4.286341 +L 1.8337,4.286341,1.8337,4.818834 +L 1.8337,4.818834,1.8337,5.34279 +L 1.8337,5.34279,1.8337,5.849988 +L 1.8337,5.849988,1.5636,5.849988 +L 1.5636,5.849988,1.2834,5.849988 +L 1.2834,5.849988,1.0103,5.849988 +L 2.2641,4.286341,2.5373,4.286341 +L 2.5373,4.286341,2.8179,4.286341 +L 2.8179,4.286341,3.1152,4.286341 +L 3.9733,4.286341,4.3765,4.818834 +L 4.3765,4.818834,4.7964,5.34279 +L 4.7964,5.34279,5.2202,5.849988 +L 5.2202,5.849988,4.6423,7.016579 +L 4.6423,7.016579,4.4255,7.708663 +L 4.4255,7.708663,4.3936,8.519404 +L 4.3936,8.519404,5.0976,8.441748 +L 5.0976,8.441748,5.802,8.355533 +L 5.802,8.355533,6.5056,8.25243 +L 6.5056,8.25243,6.2082,7.640868 +L 6.2082,7.640868,5.9245,7.020826 +L 5.9245,7.020826,5.6475,6.383816 +L 6.5056,4.286341,6.2082,4.629527 +L 6.2082,4.629527,5.9245,4.97281 +L 5.9245,4.97281,5.6475,5.316008 +L 2.2641,5.849988,2.5373,5.849988 +L 2.5373,5.849988,2.8179,5.849988 +L 2.8179,5.849988,3.1152,5.849988 +L 3.1152,5.849988,3.1152,6.220077 +L 3.1152,6.220077,3.1152,6.573069 +L 3.1152,6.573069,3.1152,6.917722 +L 3.1152,6.917722,2.4147,6.917722 +L 2.4147,6.917722,1.7107,6.917722 +L 1.7107,6.917722,1.0103,6.917722 + +[嫌] 66 +L 0.1577,0.015232,0.585,0.816035 +L 0.585,0.816035,1.0123,1.616827 +L 1.0123,1.616827,1.436,2.417772 +L 1.436,2.417772,1.0123,2.520777 +L 1.0123,2.520777,0.585,2.606981 +L 0.585,2.606981,0.1577,2.684648 +L 0.1577,2.684648,0.2666,4.437614 +L 0.2666,4.437614,0.4729,6.207315 +L 0.4729,6.207315,0.585,9.053364 +L 3.9683,0.015232,3.8878,0.738325 +L 3.8878,0.738325,3.8181,1.453044 +L 3.8181,1.453044,3.7547,2.150787 +L 3.7547,2.150787,3.2678,1.616827 +L 3.2678,1.616827,2.7778,1.082922 +L 2.7778,1.082922,2.291,0.549083 +L 5.2537,0.015232,5.2537,0.919073 +L 5.2537,0.919073,5.2537,1.806058 +L 5.2537,1.806058,5.2537,2.684648 +L 5.2537,2.684648,4.6023,2.941728 +L 4.6023,2.941728,3.9158,2.961495 +L 3.9158,2.961495,3.1421,3.218597 +L 6.9629,0.549083,6.5325,1.082922 +L 6.5325,1.082922,6.1052,1.616827 +L 6.1052,1.616827,5.6775,2.150787 +L 1.436,3.218597,1.7373,3.711556 +L 1.7373,3.711556,1.8493,4.670516 +L 1.8493,4.670516,1.8672,6.917722 +L 1.8672,6.917722,1.573,6.917722 +L 1.573,6.917722,1.2854,6.917722 +L 1.2854,6.917722,1.0123,6.917722 +L 5.6775,3.218597,5.3133,3.751013 +L 5.3133,3.751013,4.956,4.275101 +L 4.956,4.275101,4.6128,4.78208 +L 4.6128,4.78208,4.3991,4.438884 +L 4.3991,4.438884,4.1823,4.095742 +L 4.1823,4.095742,3.9683,3.752458 +L 6.322,3.218597,6.3815,3.588686 +L 6.3815,3.588686,6.4484,3.941689 +L 6.4484,3.941689,6.5325,4.286341 +L 6.5325,4.286341,5.8912,4.999637 +L 5.8912,4.999637,5.2537,5.696023 +L 5.2537,5.696023,4.6128,6.383816 +L 4.6128,6.383816,3.8496,5.256707 +L 3.8496,5.256707,3.3589,4.84148 +L 3.3589,4.84148,2.7214,4.78208 +L 6.9629,4.78208,6.6582,5.197373 +L 6.6582,5.197373,6.55,5.612676 +L 6.55,5.612676,6.5325,6.383816 +L 6.5325,6.383816,5.8912,6.423417 +L 5.8912,6.423417,5.3977,6.700296 +L 5.3977,6.700296,4.6128,7.451583 +L 4.6128,7.451583,4.1228,7.10703 +L 4.1228,7.10703,3.6359,6.75384 +L 3.6359,6.75384,3.1421,6.383816 +L 2.7214,7.451583,3.3347,7.481267 +L 3.3347,7.481267,3.6601,7.688994 +L 3.6601,7.688994,3.9683,8.25243 +L 3.9683,8.25243,3.8286,8.519404 +L 3.8286,8.519404,3.6951,8.786346 +L 3.6951,8.786346,3.5725,9.053364 +L 5.6775,7.451583,5.3977,7.866886 +L 5.3977,7.866886,5.3977,8.282091 +L 5.3977,8.282091,5.6775,9.053364 +L 6.1052,7.451583,6.5325,7.451583 +L 6.5325,7.451583,6.9629,7.451583 +L 6.9629,7.451583,7.3867,7.451583 + +[懸] 60 +L 0.1915,0.015232,0.4609,0.549083 +L 0.4609,0.549083,0.7446,1.082922 +L 0.7446,1.082922,1.0426,1.616827 +L 2.7164,0.015232,2.4226,0.450226 +L 2.4226,0.450226,2.3102,1.003887 +L 2.3102,1.003887,2.2965,2.150787 +L 3.1476,0.015232,4.0022,0.015232 +L 4.0022,0.015232,4.8564,0.015232 +L 4.8564,0.015232,5.711,0.015232 +L 5.711,0.015232,5.711,0.385223 +L 5.711,0.385223,5.711,0.738325 +L 5.711,0.738325,5.711,1.082922 +L 7.3887,0.816035,7.2385,1.082922 +L 7.2385,1.082922,7.0875,1.34994 +L 7.0875,1.34994,6.9614,1.616827 +L 4.426,1.34994,4.275,1.616827 +L 4.275,1.616827,4.1314,1.883769 +L 4.1314,1.883769,4.0022,2.150787 +L 1.8972,3.218597,1.8972,3.751013 +L 1.8972,3.751013,1.8972,4.275101 +L 1.8972,4.275101,1.8972,4.78208 +L 1.8972,4.78208,1.319,4.78208 +L 1.319,4.78208,0.7446,4.78208 +L 0.7446,4.78208,0.1915,4.78208 +L 0.1915,4.78208,0.1915,5.849988 +L 0.1915,5.849988,0.1915,6.917722 +L 0.1915,6.917722,0.1915,7.985542 +L 5.711,3.218597,5.711,3.751013 +L 5.711,3.751013,5.711,4.275101 +L 5.711,4.275101,5.711,4.78208 +L 5.711,4.78208,5.4137,4.885184 +L 5.4137,4.885184,5.1335,4.971398 +L 5.1335,4.971398,4.8564,5.049131 +L 4.8564,5.049131,5.0771,5.879551 +L 5.0771,5.879551,5.2032,6.888072 +L 5.2032,6.888072,5.711,8.25243 +L 5.711,8.25243,5.2802,8.355533 +L 5.2802,8.355533,4.8564,8.441748 +L 4.8564,8.441748,4.426,8.519404 +L 2.2965,4.78208,2.7164,4.78208 +L 2.7164,4.78208,3.1476,4.78208 +L 3.1476,4.78208,3.5749,4.78208 +L 7.3887,4.78208,7.0563,5.157904 +L 7.0563,5.157904,6.7341,5.296262 +L 6.7341,5.296262,6.1348,5.316008 +L 1.4699,5.849988,1.4699,6.917722 +L 1.4699,6.917722,1.4699,7.985542 +L 1.4699,7.985542,1.4699,9.053364 +L 1.4699,9.053364,1.8762,9.053364 +L 1.8762,9.053364,2.2965,9.053364 +L 2.2965,9.053364,2.7164,9.053364 +L 2.7164,9.053364,2.7164,7.985542 +L 2.7164,7.985542,2.7164,6.917722 +L 2.7164,6.917722,2.7164,5.849988 +L 2.7164,5.849988,2.2965,5.849988 +L 2.2965,5.849988,1.8762,5.849988 +L 1.8762,5.849988,1.4699,5.849988 +L 6.1348,8.519404,6.415,8.519404 +L 6.415,8.519404,6.6847,8.519404 +L 6.6847,8.519404,6.9614,8.519404 + +[献] 51 +L 0.2177,0.015232,0.2177,2.149353 +L 0.2177,2.149353,0.2177,4.275101 +L 0.2177,4.275101,0.2177,6.383816 +L 0.2177,6.383816,0.7676,6.383816 +L 0.7676,6.383816,1.3248,6.383816 +L 1.3248,6.383816,1.8957,6.383816 +L 1.8957,6.383816,1.6642,7.71431 +L 1.6642,7.71431,1.0583,8.027889 +L 1.0583,8.027889,0.2177,7.985542 +L 2.7535,0.015232,3.0235,0.015232 +L 3.0235,0.015232,3.3072,0.015232 +L 3.3072,0.015232,3.6046,0.015232 +L 3.6046,0.015232,3.6046,2.149353 +L 3.6046,2.149353,3.6046,4.275101 +L 3.6046,4.275101,3.6046,6.383816 +L 3.6046,6.383816,3.3072,6.383816 +L 3.3072,6.383816,3.0235,6.383816 +L 3.0235,6.383816,2.7535,6.383816 +L 2.7535,6.383816,2.4558,5.34279 +L 2.4558,5.34279,2.1721,4.284973 +L 2.1721,4.284973,1.8957,3.218597 +L 1.8957,3.218597,2.1721,3.054715 +L 2.1721,3.054715,2.4558,2.873966 +L 2.4558,2.873966,2.7535,2.684648 +L 4.0319,0.015232,5.2125,3.058962 +L 5.2125,3.058962,5.65,4.433192 +L 5.65,4.433192,5.7095,5.316008 +L 5.7095,5.316008,5.3803,5.6917 +L 5.3803,5.6917,5.0549,5.830123 +L 5.0549,5.830123,4.4592,5.849988 +L 7.4191,0.015232,6.9918,1.272273 +L 6.9918,1.272273,6.5641,2.520777 +L 6.5641,2.520777,6.1368,3.752458 +L 1.8957,1.082922,1.8638,1.854228 +L 1.8638,1.854228,1.6432,2.269432 +L 1.6432,2.269432,1.0446,2.684648 +L 1.4649,4.286341,1.4509,5.03071 +L 1.4509,5.03071,1.3385,5.436141 +L 1.3385,5.436141,1.0446,5.849988 +L 6.1368,5.849988,5.8356,6.324407 +L 5.8356,6.324407,5.7239,7.155013 +L 5.7239,7.155013,5.7095,9.053364 +L 6.5641,5.849988,6.8373,5.849988 +L 6.8373,5.849988,7.1245,5.849988 +L 7.1245,5.849988,7.4191,5.849988 +L 2.323,7.985542,2.1721,8.355533 +L 2.1721,8.355533,2.025,8.708722 +L 2.025,8.708722,1.8957,9.053364 +L 2.7535,7.985542,3.1738,7.985542 +L 3.1738,7.985542,3.6046,7.985542 +L 3.6046,7.985542,4.0319,7.985542 + +[肩] 33 +L 0.2165,0.282108,0.9415,2.536319 +L 0.9415,2.536319,1.0988,4.587278 +L 1.0988,4.587278,1.0708,6.917722 +L 1.0708,6.917722,2.9029,6.917722 +L 2.9029,6.917722,4.7414,6.917722 +L 4.7414,6.917722,6.5945,6.917722 +L 6.5945,6.917722,6.5945,6.573069 +L 6.5945,6.573069,6.5945,6.220077 +L 6.5945,6.220077,6.5945,5.849988 +L 6.5945,5.849988,4.885,5.849988 +L 4.885,5.849988,3.1828,5.849988 +L 3.1828,5.849988,1.5016,5.849988 +L 2.3527,0.015232,2.3527,1.453044 +L 2.3527,1.453044,2.3527,2.873966 +L 2.3527,2.873966,2.3527,4.286341 +L 2.3527,4.286341,3.7575,4.286341 +L 3.7575,4.286341,5.1725,4.286341 +L 5.1725,4.286341,6.5945,4.286341 +L 6.5945,4.286341,6.5945,2.873966 +L 6.5945,2.873966,6.5945,1.453044 +L 6.5945,1.453044,6.5945,0.015232 +L 6.5945,0.015232,6.1672,0.015232 +L 6.1672,0.015232,5.7434,0.015232 +L 5.7434,0.015232,5.3126,0.015232 +L 2.7803,2.150787,3.9113,2.150787 +L 3.9113,2.150787,5.0391,2.150787 +L 5.0391,2.150787,6.1672,2.150787 +L 2.7803,3.218597,3.9113,3.218597 +L 3.9113,3.218597,5.0391,3.218597 +L 5.0391,3.218597,6.1672,3.218597 +L 0.2165,8.519404,2.6084,8.519404 +L 2.6084,8.519404,5.0079,8.519404 +L 5.0079,8.519404,7.4176,8.519404 + +[謙] 66 +L 0.6774,0.015232,0.6774,0.738325 +L 0.6774,0.738325,0.6774,1.453044 +L 0.6774,1.453044,0.6774,2.150787 +L 0.6774,2.150787,1.0836,2.150787 +L 1.0836,2.150787,1.5001,2.150787 +L 1.5001,2.150787,1.9274,2.150787 +L 1.9274,2.150787,1.9274,1.806058 +L 1.9274,1.806058,1.9274,1.453044 +L 1.9274,1.453044,1.9274,1.082922 +L 1.9274,1.082922,2.5753,1.132394 +L 2.5753,1.132394,3.1256,1.478469 +L 3.1256,1.478469,4.0607,2.417772 +L 4.0607,2.417772,3.7662,2.684648 +L 3.7662,2.684648,3.486,2.951611 +L 3.486,2.951611,3.2061,3.218597 +L 1.1047,0.015232,1.381,0.204452 +L 1.381,0.204452,1.651,0.385223 +L 1.651,0.385223,1.9274,0.549083 +L 4.0607,0.015232,4.0607,0.549083 +L 4.0607,0.549083,4.0607,1.082922 +L 4.0607,1.082922,4.0607,1.616827 +L 5.3423,0.015232,5.3423,0.919073 +L 5.3423,0.919073,5.3423,1.806058 +L 5.3423,1.806058,5.3423,2.684648 +L 5.3423,2.684648,4.1094,4.160647 +L 4.1094,4.160647,3.4439,4.704414 +L 3.4439,4.704414,2.7823,4.78208 +L 7.02,1.082922,6.5962,1.453044 +L 6.5962,1.453044,6.1657,1.806058 +L 6.1657,1.806058,5.7419,2.150787 +L 5.7419,3.218597,4.8873,4.284973 +L 4.8873,4.284973,4.0397,5.34279 +L 4.0397,5.34279,3.2061,6.383816 +L 6.3825,3.218597,6.442,3.588686 +L 6.442,3.588686,6.5124,3.941689 +L 6.5124,3.941689,6.5962,4.286341 +L 6.5962,4.286341,5.3777,5.923332 +L 5.3777,5.923332,4.1238,7.365467 +L 4.1238,7.365467,2.7823,7.985542 +L 0.6774,3.752458,1.0836,3.752458 +L 1.0836,3.752458,1.5001,3.752458 +L 1.5001,3.752458,1.9274,3.752458 +L 7.02,4.78208,6.7222,5.197373 +L 6.7222,5.197373,6.6105,5.612676 +L 6.6105,5.612676,6.5962,6.383816 +L 6.5962,6.383816,6.2984,6.383816 +L 6.2984,6.383816,6.0183,6.383816 +L 6.0183,6.383816,5.7419,6.383816 +L 5.7419,6.383816,5.0376,7.2878 +L 5.0376,7.2878,4.3371,8.174851 +L 4.3371,8.174851,3.6369,9.053364 +L 0.6774,5.316008,1.0836,5.316008 +L 1.0836,5.316008,1.5001,5.316008 +L 1.5001,5.316008,1.9274,5.316008 +L 0.2501,6.917722,0.9502,6.917722 +L 0.9502,6.917722,1.651,6.917722 +L 1.651,6.917722,2.355,6.917722 +L 5.7419,7.985542,5.4757,8.380981 +L 5.4757,8.380981,5.4757,8.657805 +L 5.4757,8.657805,5.7419,9.053364 +L 6.1657,7.985542,6.442,7.985542 +L 6.442,7.985542,6.7257,7.985542 +L 6.7257,7.985542,7.02,7.985542 +L 0.6774,8.519404,1.0836,8.519404 +L 1.0836,8.519404,1.5001,8.519404 +L 1.5001,8.519404,1.9274,8.519404 + +[賢] 66 +L 0.2797,0.015232,0.8296,0.204452 +L 0.8296,0.204452,1.383,0.385223 +L 1.383,0.385223,1.9543,0.549083 +L 6.1989,0.015232,5.905,0.204452 +L 5.905,0.204452,5.6178,0.385223 +L 5.6178,0.385223,5.3443,0.549083 +L 1.534,1.616827,1.534,2.683302 +L 1.534,2.683302,1.534,3.741152 +L 1.534,3.741152,1.534,4.78208 +L 1.534,4.78208,2.9346,4.78208 +L 2.9346,4.78208,4.3464,4.78208 +L 4.3464,4.78208,5.7681,4.78208 +L 5.7681,4.78208,5.7681,3.741152 +L 5.7681,3.741152,5.7681,2.683302 +L 5.7681,2.683302,5.7681,1.616827 +L 5.7681,1.616827,4.3464,1.616827 +L 4.3464,1.616827,2.9346,1.616827 +L 2.9346,1.616827,1.534,1.616827 +L 1.9543,2.684648,3.0855,2.684648 +L 3.0855,2.684648,4.213,2.684648 +L 4.213,2.684648,5.3443,2.684648 +L 1.9543,3.752458,3.0855,3.752458 +L 3.0855,3.752458,4.213,3.752458 +L 4.213,3.752458,5.3443,3.752458 +L 0.2797,5.849988,0.2797,6.917722 +L 0.2797,6.917722,0.2797,7.985542 +L 0.2797,7.985542,0.2797,9.053364 +L 0.2797,9.053364,1.4079,9.053364 +L 1.4079,9.053364,2.5392,9.053364 +L 2.5392,9.053364,3.6631,9.053364 +L 0.6759,5.849988,1.1032,5.849988 +L 1.1032,5.849988,1.534,5.849988 +L 1.534,5.849988,1.9543,5.849988 +L 1.9543,5.849988,1.9543,6.220077 +L 1.9543,6.220077,1.9543,6.573069 +L 1.9543,6.573069,1.9543,6.917722 +L 1.9543,6.917722,1.534,6.917722 +L 1.534,6.917722,1.1032,6.917722 +L 1.1032,6.917722,0.6759,6.917722 +L 2.3847,5.849988,2.812,5.849988 +L 2.812,5.849988,3.2393,5.849988 +L 3.2393,5.849988,3.6631,5.849988 +L 4.6998,5.849988,5.0504,6.220077 +L 5.0504,6.220077,5.4038,6.573069 +L 5.4038,6.573069,5.7681,6.917722 +L 5.7681,6.917722,5.1695,7.708663 +L 5.1695,7.708663,4.9489,8.262313 +L 4.9489,8.262313,4.917,9.053364 +L 4.917,9.053364,5.4742,9.053364 +L 5.4742,9.053364,6.0451,9.053364 +L 6.0451,9.053364,6.6265,9.053364 +L 6.6265,9.053364,6.609,8.282091 +L 6.609,8.282091,6.4966,7.866886 +L 6.4966,7.866886,6.1989,7.451583 +L 7.0538,5.849988,6.7561,6.039219 +L 6.7561,6.039219,6.4756,6.220077 +L 6.4756,6.220077,6.1989,6.383816 +L 2.3847,6.917722,2.6618,6.917722 +L 2.6618,6.917722,2.9416,6.917722 +L 2.9416,6.917722,3.2393,6.917722 +L 3.2393,6.917722,3.2393,7.2878 +L 3.2393,7.2878,3.2393,7.640868 +L 3.2393,7.640868,3.2393,7.985542 +L 3.2393,7.985542,2.3847,7.985542 +L 2.3847,7.985542,1.534,7.985542 +L 1.534,7.985542,0.6759,7.985542 + +[軒] 57 +L 1.9913,0.015232,1.7531,1.345726 +L 1.7531,1.345726,1.1398,1.659229 +L 1.1398,1.659229,0.2817,1.616827 +L 5.8019,0.015232,5.8541,2.827296 +L 5.8541,2.827296,5.5249,4.334346 +L 5.5249,4.334346,4.0924,4.78208 +L 2.4112,1.616827,2.1174,2.150787 +L 2.1174,2.150787,1.8372,2.684648 +L 1.8372,2.684648,1.5601,3.218597 +L 1.5601,3.218597,1.2628,3.218597 +L 1.2628,3.218597,0.9826,3.218597 +L 0.9826,3.218597,0.7024,3.218597 +L 0.7024,3.218597,0.7024,4.284973 +L 0.7024,4.284973,0.7024,5.34279 +L 0.7024,5.34279,0.7024,6.383816 +L 0.7024,6.383816,1.322,6.4135 +L 1.322,6.4135,1.655,6.621163 +L 1.655,6.621163,1.9913,7.184696 +L 1.9913,7.184696,1.6407,7.748218 +L 1.6407,7.748218,1.1959,7.955871 +L 1.1959,7.955871,0.2817,7.985542 +L 2.8105,1.616827,3.0875,1.616827 +L 3.0875,1.616827,3.3677,1.616827 +L 3.3677,1.616827,3.6651,1.616827 +L 2.4112,3.218597,1.9913,3.751013 +L 1.9913,3.751013,1.5601,4.275101 +L 1.5601,4.275101,1.1328,4.78208 +L 3.0245,3.218597,3.0875,3.751013 +L 3.0875,3.751013,3.1537,4.275101 +L 3.1537,4.275101,3.2378,4.78208 +L 3.2378,4.78208,2.6427,4.811818 +L 2.6427,4.811818,2.317,5.019404 +L 2.317,5.019404,1.9913,5.58297 +L 1.9913,5.58297,2.317,6.146537 +L 2.317,6.146537,2.6427,6.354167 +L 2.6427,6.354167,3.2378,6.383816 +L 3.2378,6.383816,3.2378,6.039219 +L 3.2378,6.039219,3.2378,5.686118 +L 3.2378,5.686118,3.2378,5.316008 +L 6.2292,4.78208,5.9277,5.276473 +L 5.9277,5.276473,5.8156,6.245415 +L 5.8156,6.245415,5.8019,8.519404 +L 5.8019,8.519404,5.3746,8.519404 +L 5.3746,8.519404,4.9473,8.519404 +L 4.9473,8.519404,4.5236,8.519404 +L 6.6562,4.78208,6.9332,4.78208 +L 6.9332,4.78208,7.2026,4.78208 +L 7.2026,4.78208,7.4796,4.78208 +L 2.4112,7.985542,2.261,8.355533 +L 2.261,8.355533,2.1174,8.708722 +L 2.1174,8.708722,1.9913,9.053364 +L 2.8105,7.985542,3.0875,7.985542 +L 3.0875,7.985542,3.3677,7.985542 +L 3.3677,7.985542,3.6651,7.985542 +L 6.2292,8.519404,6.5021,8.519404 +L 6.5021,8.519404,6.7788,8.519404 +L 6.7788,8.519404,7.0485,8.519404 + +[遣] 66 +L 0.5254,0.015232,0.862,0.385223 +L 0.862,0.385223,1.2017,0.738325 +L 1.2017,0.738325,1.5621,1.082922 +L 1.5621,1.082922,1.5621,2.330178 +L 1.5621,2.330178,1.5621,3.560381 +L 1.5621,3.560381,1.5621,4.78208 +L 1.5621,4.78208,1.1348,4.78208 +L 1.1348,4.78208,0.7145,4.78208 +L 0.7145,4.78208,0.3083,4.78208 +L 2.8405,0.015232,2.5463,0.204452 +L 2.5463,0.204452,2.2661,0.385223 +L 2.2661,0.385223,1.9859,0.549083 +L 3.2717,0.015232,4.6758,0.015232 +L 4.6758,0.015232,6.0841,0.015232 +L 6.0841,0.015232,7.5058,0.015232 +L 3.6955,1.616827,3.6955,2.683302 +L 3.6955,2.683302,3.6955,3.741152 +L 3.6955,3.741152,3.6955,4.78208 +L 3.6955,4.78208,4.3956,4.78208 +L 4.3956,4.78208,5.0965,4.78208 +L 5.0965,4.78208,5.8004,4.78208 +L 5.8004,4.78208,5.8004,4.438884 +L 5.8004,4.438884,5.8004,4.095742 +L 5.8004,4.095742,5.8004,3.752458 +L 5.8004,3.752458,5.2292,3.752458 +L 5.2292,3.752458,4.6758,3.752458 +L 4.6758,3.752458,4.1228,3.752458 +L 4.1228,1.616827,4.8268,1.616827 +L 4.8268,1.616827,5.5269,1.616827 +L 5.5269,1.616827,6.2277,1.616827 +L 6.2277,1.616827,6.2277,1.987014 +L 6.2277,1.987014,6.2277,2.339974 +L 6.2277,2.339974,6.2277,2.684648 +L 6.2277,2.684648,5.5269,2.684648 +L 5.5269,2.684648,4.8268,2.684648 +L 4.8268,2.684648,4.1228,2.684648 +L 2.4171,5.849988,3.2717,5.953015 +L 3.2717,5.953015,4.1228,6.039219 +L 4.1228,6.039219,4.9805,6.116886 +L 4.9805,6.116886,4.6481,6.680485 +L 4.6481,6.680485,4.3116,6.888072 +L 4.3116,6.888072,3.6955,6.917722 +L 3.6955,6.917722,3.6955,7.2878 +L 3.6955,7.2878,3.6955,7.640868 +L 3.6955,7.640868,3.6955,7.985542 +L 3.6955,7.985542,4.3116,8.025109 +L 4.3116,8.025109,4.6481,8.301956 +L 4.6481,8.301956,4.9805,9.053364 +L 5.3766,5.849988,6.0768,5.849988 +L 6.0768,5.849988,6.7878,5.849988 +L 6.7878,5.849988,7.5058,5.849988 +L 5.3766,6.917722,5.1105,7.313148 +L 5.1105,7.313148,5.1105,7.589995 +L 5.1105,7.589995,5.3766,7.985542 +L 5.3766,7.985542,5.6495,7.985542 +L 5.6495,7.985542,5.9297,7.985542 +L 5.9297,7.985542,6.2277,7.985542 +L 6.2277,7.985542,6.2277,7.640868 +L 6.2277,7.640868,6.2277,7.2878 +L 6.2277,7.2878,6.2277,6.917722 +L 6.2277,6.917722,5.9297,6.917722 +L 5.9297,6.917722,5.6495,6.917722 +L 5.6495,6.917722,5.3766,6.917722 +L 1.5621,7.451583,1.2858,7.821792 +L 1.2858,7.821792,1.0122,8.174851 +L 1.0122,8.174851,0.7394,8.519404 + +[顕] 75 +L 4.1248,0.015232,4.3976,0.385223 +L 4.3976,0.385223,4.6852,0.738325 +L 4.6852,0.738325,4.979,1.082922 +L 7.5432,0.015232,7.2451,0.385223 +L 7.2451,0.385223,6.9614,0.738325 +L 6.9614,0.738325,6.6847,1.082922 +L 0.3141,0.549083,0.734,0.549083 +L 0.734,0.549083,1.1652,0.549083 +L 1.1652,0.549083,1.5925,0.549083 +L 1.5925,0.549083,1.5925,2.149353 +L 1.5925,2.149353,1.5925,3.741152 +L 1.5925,3.741152,1.5925,5.316008 +L 1.5925,5.316008,1.2944,5.316008 +L 1.2944,5.316008,1.0142,5.316008 +L 1.0142,5.316008,0.734,5.316008 +L 0.734,5.316008,0.734,6.383816 +L 0.734,6.383816,0.734,7.451583 +L 0.734,7.451583,0.734,8.519404 +L 0.734,8.519404,1.5925,8.519404 +L 1.5925,8.519404,2.4436,8.519404 +L 2.4436,8.519404,3.2978,8.519404 +L 3.2978,8.519404,3.2978,7.451583 +L 3.2978,7.451583,3.2978,6.383816 +L 3.2978,6.383816,3.2978,5.316008 +L 3.2978,5.316008,3.004,5.316008 +L 3.004,5.316008,2.7238,5.316008 +L 2.7238,5.316008,2.4436,5.316008 +L 2.4436,5.316008,2.4436,3.905001 +L 2.4436,3.905001,2.4436,2.493973 +L 2.4436,2.493973,2.4436,1.082922 +L 2.4436,1.082922,2.874,1.082922 +L 2.874,1.082922,3.2978,1.082922 +L 3.2978,1.082922,3.7286,1.082922 +L 0.734,2.417772,0.5834,2.873966 +L 0.5834,2.873966,0.4402,3.3217 +L 0.4402,3.3217,0.3141,3.752458 +L 3.2978,2.417772,3.4313,2.873966 +L 3.4313,2.873966,3.5749,3.3217 +L 3.5749,3.3217,3.7286,3.752458 +L 4.5486,2.150787,4.5486,3.751013 +L 4.5486,3.751013,4.5486,5.34279 +L 4.5486,5.34279,4.5486,6.917722 +L 4.5486,6.917722,5.1682,7.14514 +L 5.1682,7.14514,5.4977,7.491117 +L 5.4977,7.491117,5.8336,8.25243 +L 5.8336,8.25243,5.4063,8.355533 +L 5.4063,8.355533,4.979,8.441748 +L 4.979,8.441748,4.5486,8.519404 +L 4.979,2.150787,5.6834,2.150787 +L 5.6834,2.150787,6.394,2.150787 +L 6.394,2.150787,7.1124,2.150787 +L 7.1124,2.150787,7.1124,2.684648 +L 7.1124,2.684648,7.1124,3.218597 +L 7.1124,3.218597,7.1124,3.752458 +L 7.1124,3.752458,6.394,3.752458 +L 6.394,3.752458,5.6834,3.752458 +L 5.6834,3.752458,4.979,3.752458 +L 7.1124,4.286341,7.1124,4.629527 +L 7.1124,4.629527,7.1124,4.97281 +L 7.1124,4.97281,7.1124,5.316008 +L 7.1124,5.316008,6.394,5.316008 +L 6.394,5.316008,5.6834,5.316008 +L 5.6834,5.316008,4.979,5.316008 +L 7.1124,5.849988,7.1124,6.220077 +L 7.1124,6.220077,7.1124,6.573069 +L 7.1124,6.573069,7.1124,6.917722 +L 7.1124,6.917722,6.6847,6.917722 +L 6.6847,6.917722,6.2574,6.917722 +L 6.2574,6.917722,5.8336,6.917722 +L 1.1652,6.917722,1.7217,6.917722 +L 1.7217,6.917722,2.2926,6.917722 +L 2.2926,6.917722,2.874,6.917722 +L 6.2574,8.519404,6.6847,8.519404 +L 6.6847,8.519404,7.1124,8.519404 +L 7.1124,8.519404,7.5432,8.519404 + +[幻] 30 +L 5.4367,0.015232,5.713,0.015232 +L 5.713,0.015232,5.9932,0.015232 +L 5.9932,0.015232,6.2913,0.015232 +L 6.2913,0.015232,7.1004,2.640845 +L 7.1004,2.640845,7.1984,5.283587 +L 7.1984,5.283587,7.1179,7.985542 +L 7.1179,7.985542,5.9831,7.985542 +L 5.9831,7.985542,4.8549,7.985542 +L 4.8549,7.985542,3.7271,7.985542 +L 0.3403,0.549083,0.6173,0.549083 +L 0.6173,0.549083,0.8972,0.549083 +L 0.8972,0.549083,1.1914,0.549083 +L 1.1914,0.549083,1.2404,1.389496 +L 1.2404,1.389496,1.5665,2.289232 +L 1.5665,2.289232,2.4452,4.019443 +L 2.4452,4.019443,1.7448,4.818834 +L 1.7448,4.818834,1.0411,5.609819 +L 1.0411,5.609819,0.3403,6.383816 +L 1.6222,0.549083,2.323,1.005299 +L 2.323,1.005299,3.027,1.453044 +L 3.027,1.453044,3.7271,1.883769 +L 3.7271,1.883769,3.5734,2.150787 +L 3.5734,2.150787,3.4333,2.417772 +L 3.4333,2.417772,3.2963,2.684648 +L 2.8725,5.049131,3.1496,5.686118 +L 3.1496,5.686118,3.4333,6.306106 +L 3.4333,6.306106,3.7271,6.917722 +L 1.1914,6.383816,1.6012,7.2878 +L 1.6012,7.2878,2.0214,8.174851 +L 2.0214,8.174851,2.4452,9.053364 + +[弦] 42 +L 0.7979,0.015232,2.1954,0.749631 +L 2.1954,0.749631,2.5211,2.433183 +L 2.5211,2.433183,2.4753,4.286341 +L 2.4753,4.286341,1.9044,4.286341 +L 1.9044,4.286341,1.3513,4.286341 +L 1.3513,4.286341,0.7979,4.286341 +L 0.7979,4.286341,0.7979,4.999637 +L 0.7979,4.999637,0.7979,5.696023 +L 0.7979,5.696023,0.7979,6.383816 +L 0.7979,6.383816,1.3513,6.383816 +L 1.3513,6.383816,1.9044,6.383816 +L 1.9044,6.383816,2.4753,6.383816 +L 2.4753,6.383816,2.4753,7.10703 +L 2.4753,7.10703,2.4753,7.821792 +L 2.4753,7.821792,2.4753,8.519404 +L 2.4753,8.519404,1.7751,8.519404 +L 1.7751,8.519404,1.0743,8.519404 +L 1.0743,8.519404,0.3703,8.519404 +L 3.3302,0.015232,4.9554,1.098519 +L 4.9554,1.098519,5.3087,2.707305 +L 5.3087,2.707305,4.6118,4.553403 +L 4.6118,4.553403,4.885,5.26659 +L 4.885,5.26659,5.1651,5.962909 +L 5.1651,5.962909,5.4352,6.650736 +L 5.4352,6.650736,5.0709,7.21439 +L 5.0709,7.21439,4.5281,7.422031 +L 4.5281,7.422031,3.3302,7.451583 +L 4.6118,0.015232,5.3336,0.153579 +L 5.3336,0.153579,5.9777,0.410659 +L 5.9777,0.410659,6.7167,0.549083 +L 6.7167,0.549083,7.0004,1.142288 +L 7.0004,1.142288,7.0004,1.557592 +L 7.0004,1.557592,6.7167,2.150787 +L 5.866,3.218597,6.1388,3.931882 +L 6.1388,3.931882,6.419,4.628169 +L 6.419,4.628169,6.7167,5.316008 +L 5.866,7.451583,5.5613,7.866886 +L 5.5613,7.866886,5.4527,8.282091 +L 5.4527,8.282091,5.4352,9.053364 +L 6.2863,7.451583,6.7167,7.451583 +L 6.7167,7.451583,7.144,7.451583 +L 7.144,7.451583,7.5748,7.451583 + +[玄] 30 +L 0.7999,0.015232,2.0885,0.539144 +L 2.0885,0.539144,2.9186,1.537792 +L 2.9186,1.537792,3.7595,2.951611 +L 3.7595,2.951611,3.0552,3.751013 +L 3.0552,3.751013,2.3547,4.541965 +L 2.3547,4.541965,1.6545,5.316008 +L 2.5088,0.015232,3.563,0.153579 +L 3.563,0.153579,4.5332,0.410659 +L 4.5332,0.410659,5.8922,0.549083 +L 5.8922,0.549083,6.0256,0.816035 +L 6.0256,0.816035,6.1692,1.082922 +L 6.1692,1.082922,6.3233,1.34994 +L 6.3233,1.34994,6.0256,1.806058 +L 6.0256,1.806058,5.7419,2.25389 +L 5.7419,2.25389,5.4649,2.684648 +L 4.1833,3.752458,4.4597,4.465732 +L 4.4597,4.465732,4.7434,5.16203 +L 4.7434,5.16203,5.0376,5.849988 +L 2.5088,5.316008,3.1081,6.107013 +L 3.1081,6.107013,3.3287,6.660707 +L 3.3287,6.660707,3.3599,7.451583 +L 3.3599,7.451583,2.3547,7.451583 +L 2.3547,7.451583,1.353,7.451583 +L 1.353,7.451583,0.3726,7.451583 +L 3.7595,7.451583,3.7595,7.985542 +L 3.7595,7.985542,3.7595,8.519404 +L 3.7595,8.519404,3.7595,9.053364 +L 4.1833,7.451583,5.1671,7.451583 +L 5.1671,7.451583,6.1692,7.451583 +L 6.1692,7.451583,7.1744,7.451583 + +[孤] 33 +L 0.8296,0.015232,1.1032,0.015232 +L 1.1032,0.015232,1.3869,0.015232 +L 1.3869,0.015232,1.6807,0.015232 +L 1.6807,0.015232,1.6807,1.453044 +L 1.6807,1.453044,1.6807,2.873966 +L 1.6807,2.873966,1.6807,4.286341 +L 1.6807,4.286341,1.2569,4.286341 +L 1.2569,4.286341,0.8296,4.286341 +L 0.8296,4.286341,0.4023,4.286341 +L 2.9346,0.282108,3.6036,2.931844 +L 3.6036,2.931844,3.7892,5.310392 +L 3.7892,5.310392,3.7857,7.985542 +L 3.7857,7.985542,5.1411,8.123955 +L 5.1411,8.123955,6.1082,8.380981 +L 6.1082,8.380981,7.1726,8.519404 +L 3.7857,0.015232,5.152,1.519349 +L 5.152,1.519349,5.2536,4.676175 +L 5.2536,4.676175,5.0714,7.451583 +L 6.318,0.015232,6.2339,0.385223 +L 6.2339,0.385223,6.1677,0.738325 +L 6.1677,0.738325,6.1082,1.082922 +L 6.1082,1.082922,5.898,0.919073 +L 5.898,0.919073,5.6875,0.738325 +L 5.6875,0.738325,5.4952,0.549083 +L 7.6037,0.282108,6.8083,2.957281 +L 6.8083,2.957281,6.423,5.386604 +L 6.423,5.386604,6.318,7.985542 +L 1.6807,4.78208,1.7126,6.334399 +L 1.7126,6.334399,1.9294,7.234091 +L 1.9294,7.234091,2.5073,8.25243 +L 2.5073,8.25243,1.8068,8.355533 +L 1.8068,8.355533,1.1032,8.441748 +L 1.1032,8.441748,0.4023,8.519404 + +[弧] 36 +L 0.4288,0.015232,1.8302,0.749631 +L 1.8302,0.749631,2.1559,2.433183 +L 2.1559,2.433183,2.11,4.286341 +L 2.11,4.286341,1.6827,4.286341 +L 1.6827,4.286341,1.2554,4.286341 +L 1.2554,4.286341,0.8281,4.286341 +L 0.8281,4.286341,0.8281,4.999637 +L 0.8281,4.999637,0.8281,5.696023 +L 0.8281,5.696023,0.8281,6.383816 +L 0.8281,6.383816,1.2554,6.383816 +L 1.2554,6.383816,1.6827,6.383816 +L 1.6827,6.383816,2.11,6.383816 +L 2.11,6.383816,2.11,7.10703 +L 2.11,7.10703,2.11,7.821792 +L 2.11,7.821792,2.11,8.519404 +L 2.11,8.519404,1.5391,8.519404 +L 1.5391,8.519404,0.9826,8.519404 +L 0.9826,8.519404,0.4288,8.519404 +L 2.965,0.282108,3.6339,2.931844 +L 3.6339,2.931844,3.8196,5.310392 +L 3.8196,5.310392,3.8196,7.985542 +L 3.8196,7.985542,5.1606,8.123955 +L 5.1606,8.123955,6.1308,8.380981 +L 6.1308,8.380981,7.2061,8.519404 +L 3.8196,0.015232,4.2258,0.015232 +L 4.2258,0.015232,4.6461,0.015232 +L 4.6461,0.015232,5.0661,0.015232 +L 5.0661,0.015232,5.0661,2.493973 +L 5.0661,2.493973,5.0661,4.97281 +L 5.0661,4.97281,5.0661,7.451583 +L 7.6334,0.282108,6.8418,2.957281 +L 6.8418,2.957281,6.4534,5.386604 +L 6.4534,5.386604,6.355,7.985542 +L 5.7105,0.549083,5.7736,0.919073 +L 5.7736,0.919073,5.8405,1.272273 +L 5.8405,1.272273,5.9245,1.616827 + +[枯] 39 +L 1.7131,0.015232,1.629,1.615393 +L 1.629,1.615393,1.5621,3.20729 +L 1.5621,3.20729,1.4991,4.78208 +L 1.4991,4.78208,1.1348,4.094253 +L 1.1348,4.094253,0.7779,3.397922 +L 0.7779,3.397922,0.4347,2.684648 +L 3.818,0.015232,3.818,1.453044 +L 3.818,1.453044,3.818,2.873966 +L 3.818,2.873966,3.818,4.286341 +L 3.818,4.286341,4.3746,4.286341 +L 4.3746,4.286341,4.9493,4.286341 +L 4.9493,4.286341,5.5234,4.286341 +L 5.5234,4.286341,5.3766,6.358424 +L 5.3766,6.358424,4.7462,6.930473 +L 4.7462,6.930473,3.3943,6.917722 +L 4.2453,0.015232,5.2257,0.015232 +L 5.2257,0.015232,6.2102,0.015232 +L 6.2102,0.015232,7.2046,0.015232 +L 7.2046,0.015232,7.2046,1.453044 +L 7.2046,1.453044,7.2046,2.873966 +L 7.2046,2.873966,7.2046,4.286341 +L 7.2046,4.286341,6.7776,4.286341 +L 6.7776,4.286341,6.3643,4.286341 +L 6.3643,4.286341,5.9542,4.286341 +L 2.5673,4.78208,2.091,5.217151 +L 2.091,5.217151,1.7583,5.7708 +L 1.7583,5.7708,1.2893,6.917722 +L 1.2893,6.917722,0.9912,6.917722 +L 0.9912,6.917722,0.711,6.917722 +L 0.711,6.917722,0.4347,6.917722 +L 2.1404,6.917722,1.8388,7.352705 +L 1.8388,7.352705,1.7267,7.906442 +L 1.7267,7.906442,1.7131,9.053364 +L 5.9542,6.917722,5.653,7.352705 +L 5.653,7.352705,5.5413,7.906442 +L 5.5413,7.906442,5.5234,9.053364 +L 6.3815,6.917722,6.7843,6.917722 +L 6.7843,6.917722,7.2046,6.917722 +L 7.2046,6.917722,7.6284,6.917722 + +[誇] 57 +L 0.8917,0.015232,0.8917,0.738325 +L 0.8917,0.738325,0.8917,1.453044 +L 0.8917,1.453044,0.8917,2.150787 +L 0.8917,2.150787,1.2944,2.150787 +L 1.2944,2.150787,1.7151,2.150787 +L 1.7151,2.150787,2.142,2.150787 +L 2.142,2.150787,2.142,1.453044 +L 2.142,1.453044,2.142,0.738325 +L 2.142,0.738325,2.142,0.015232 +L 2.142,0.015232,1.7151,0.015232 +L 1.7151,0.015232,1.2944,0.015232 +L 1.2944,0.015232,0.8917,0.015232 +L 5.13,0.015232,6.4746,0.300452 +L 6.4746,0.300452,7.0875,1.179042 +L 7.0875,1.179042,7.2349,2.684648 +L 7.2349,2.684648,6.3835,2.684648 +L 6.3835,2.684648,5.5363,2.684648 +L 5.5363,2.684648,4.7023,2.684648 +L 4.7023,2.684648,4.7023,3.218597 +L 4.7023,3.218597,4.7023,3.752458 +L 4.7023,3.752458,4.7023,4.286341 +L 4.7023,4.286341,4.275,4.286341 +L 4.275,4.286341,3.8512,4.286341 +L 3.8512,4.286341,3.4239,4.286341 +L 0.8917,3.752458,1.2944,3.752458 +L 1.2944,3.752458,1.7151,3.752458 +L 1.7151,3.752458,2.142,3.752458 +L 5.13,4.286341,5.9636,4.286341 +L 5.9636,4.286341,6.8111,4.286341 +L 6.8111,4.286341,7.6622,4.286341 +L 0.8917,5.316008,1.2944,5.316008 +L 1.2944,5.316008,1.7151,5.316008 +L 1.7151,5.316008,2.142,5.316008 +L 3.2071,5.849988,3.701,6.486964 +L 3.701,6.486964,4.1945,7.10703 +L 4.1945,7.10703,4.7023,7.718579 +L 4.7023,7.718579,4.275,7.821792 +L 4.275,7.821792,3.8512,7.907876 +L 3.8512,7.907876,3.4239,7.985542 +L 4.275,5.849988,5.7706,5.869679 +L 5.7706,5.869679,6.4294,6.008125 +L 6.4294,6.008125,6.8073,6.383816 +L 6.8073,6.383816,6.1768,7.332926 +L 6.1768,7.332926,5.7429,7.748218 +L 5.7429,7.748218,5.13,7.985542 +L 5.13,7.985542,5.13,8.355533 +L 5.13,8.355533,5.13,8.708722 +L 5.13,8.708722,5.13,9.053364 +L 0.4612,6.917722,1.1617,6.917722 +L 1.1617,6.917722,1.8653,6.917722 +L 1.8653,6.917722,2.5662,6.917722 +L 6.3835,7.985542,6.8073,7.985542 +L 6.8073,7.985542,7.2349,7.985542 +L 7.2349,7.985542,7.6622,7.985542 +L 0.8917,8.519404,1.2944,8.519404 +L 1.2944,8.519404,1.7151,8.519404 +L 1.7151,8.519404,2.142,8.519404 + +[雇] 57 +L 0.4628,0.282108,1.0898,2.61264 +L 1.0898,2.61264,1.2999,4.612627 +L 1.2999,4.612627,1.3139,6.917722 +L 1.3139,6.917722,3.2998,6.917722 +L 3.2998,6.917722,5.2822,6.917722 +L 5.2822,6.917722,7.2646,6.917722 +L 7.2646,6.917722,7.2646,6.573069 +L 7.2646,6.573069,7.2646,6.220077 +L 7.2646,6.220077,7.2646,5.849988 +L 7.2646,5.849988,6.0461,5.632442 +L 6.0461,5.632442,5.4924,5.355585 +L 5.4924,5.355585,5.1355,4.78208 +L 5.1355,4.78208,5.5099,4.433192 +L 5.5099,4.433192,6.1753,4.30474 +L 6.1753,4.30474,7.6919,4.286341 +L 3.0231,0.015232,2.9464,1.272273 +L 2.9464,1.272273,2.8725,2.520777 +L 2.8725,2.520777,2.813,3.752458 +L 2.813,3.752458,2.4487,3.588686 +L 2.4487,3.588686,2.088,3.407784 +L 2.088,3.407784,1.7447,3.218597 +L 3.4543,0.015232,4.0007,0.015232 +L 4.0007,0.015232,4.5607,0.015232 +L 4.5607,0.015232,5.1355,0.015232 +L 5.1355,0.015232,4.897,1.345726 +L 4.897,1.345726,4.2945,1.659229 +L 4.2945,1.659229,3.4543,1.616827 +L 5.5558,0.015232,6.2633,0.015232 +L 6.2633,0.015232,6.9704,0.015232 +L 6.9704,0.015232,7.6919,0.015232 +L 5.5558,1.616827,4.9113,2.368212 +L 4.9113,2.368212,4.3649,2.645169 +L 4.3649,2.645169,3.4543,2.684648 +L 5.9866,1.616827,6.4135,1.616827 +L 6.4135,1.616827,6.8408,1.616827 +L 6.8408,1.616827,7.2646,1.616827 +L 5.5558,2.684648,5.2612,3.218597 +L 5.2612,3.218597,4.9775,3.752458 +L 4.9775,3.752458,4.7047,4.286341 +L 4.7047,4.286341,4.1334,4.286341 +L 4.1334,4.286341,3.5769,4.286341 +L 3.5769,4.286341,3.0231,4.286341 +L 5.9866,2.684648,6.4135,2.684648 +L 6.4135,2.684648,6.8408,2.684648 +L 6.8408,2.684648,7.2646,2.684648 +L 3.4543,4.78208,3.4543,5.152158 +L 3.4543,5.152158,3.4543,5.50526 +L 3.4543,5.50526,3.4543,5.849988 +L 3.4543,5.849988,2.8725,5.849988 +L 2.8725,5.849988,2.3051,5.849988 +L 2.3051,5.849988,1.7447,5.849988 +L 3.8816,5.849988,4.2844,5.849988 +L 4.2844,5.849988,4.7047,5.849988 +L 4.7047,5.849988,5.1355,5.849988 +L 0.8901,8.519404,3.1496,8.519404 +L 3.1496,8.519404,5.4157,8.519404 +L 5.4157,8.519404,7.6919,8.519404 + +[顧] 75 +L 0.4929,0.282108,0.7941,1.061732 +L 0.7941,1.061732,0.9065,2.78217 +L 0.9065,2.78217,0.9205,6.917722 +L 0.9205,6.917722,1.9009,6.917722 +L 1.9009,6.917722,2.8815,6.917722 +L 2.8815,6.917722,3.8832,6.917722 +L 3.8832,6.917722,3.5855,6.220077 +L 3.5855,6.220077,3.3018,5.50526 +L 3.3018,5.50526,3.0255,4.78208 +L 3.0255,4.78208,3.3018,4.628169 +L 3.3018,4.628169,3.5855,4.465732 +L 3.5855,4.465732,3.8832,4.286341 +L 1.7783,0.015232,1.7608,2.664826 +L 1.7608,2.664826,1.649,3.772247 +L 1.649,3.772247,1.3478,4.286341 +L 1.3478,4.286341,1.6242,4.732751 +L 1.6242,4.732751,1.9079,5.16203 +L 1.9079,5.16203,2.2024,5.58297 +L 2.2024,5.58297,1.9079,5.686118 +L 1.9079,5.686118,1.6242,5.772321 +L 1.6242,5.772321,1.3478,5.849988 +L 2.2024,0.015232,2.4791,0.015232 +L 2.4791,0.015232,2.752,0.015232 +L 2.752,0.015232,3.0255,0.015232 +L 3.0255,0.015232,2.9936,0.786418 +L 2.9936,0.786418,2.7838,1.201589 +L 2.7838,1.201589,2.2024,1.616827 +L 4.7343,0.015232,5.0114,0.385223 +L 5.0114,0.385223,5.2951,0.738325 +L 5.2951,0.738325,5.5924,1.082922 +L 7.6939,0.015232,7.4001,0.385223 +L 7.4001,0.385223,7.1164,0.738325 +L 7.1164,0.738325,6.8393,1.082922 +L 3.4528,1.616827,3.0255,1.987014 +L 3.0255,1.987014,2.6083,2.339974 +L 2.6083,2.339974,2.2024,2.684648 +L 5.1616,2.150787,5.1616,3.751013 +L 5.1616,3.751013,5.1616,5.34279 +L 5.1616,5.34279,5.1616,6.917722 +L 5.1616,6.917722,5.7746,7.14514 +L 5.7746,7.14514,6.1006,7.491117 +L 6.1006,7.491117,6.4089,8.25243 +L 6.4089,8.25243,5.9851,8.355533 +L 5.9851,8.355533,5.5644,8.441748 +L 5.5644,8.441748,5.1616,8.519404 +L 5.5924,2.150787,6.1388,2.150787 +L 6.1388,2.150787,6.6961,2.150787 +L 6.6961,2.150787,7.2666,2.150787 +L 7.2666,2.150787,7.2666,2.684648 +L 7.2666,2.684648,7.2666,3.218597 +L 7.2666,3.218597,7.2666,3.752458 +L 7.2666,3.752458,6.6961,3.752458 +L 6.6961,3.752458,6.1388,3.752458 +L 6.1388,3.752458,5.5924,3.752458 +L 3.4528,2.684648,3.0255,3.218597 +L 3.0255,3.218597,2.6083,3.752458 +L 2.6083,3.752458,2.2024,4.286341 +L 7.2666,4.286341,7.2666,4.629527 +L 7.2666,4.629527,7.2666,4.97281 +L 7.2666,4.97281,7.2666,5.316008 +L 7.2666,5.316008,6.6961,5.316008 +L 6.6961,5.316008,6.1388,5.316008 +L 6.1388,5.316008,5.5924,5.316008 +L 7.2666,5.849988,7.2666,6.220077 +L 7.2666,6.220077,7.2666,6.573069 +L 7.2666,6.573069,7.2666,6.917722 +L 7.2666,6.917722,6.9689,6.917722 +L 6.9689,6.917722,6.6852,6.917722 +L 6.6852,6.917722,6.4089,6.917722 +L 0.4929,8.519404,1.7541,8.519404 +L 1.7541,8.519404,3.0255,8.519404 +L 3.0255,8.519404,4.3039,8.519404 +L 6.8393,8.519404,7.1164,8.519404 +L 7.1164,8.519404,7.4001,8.519404 +L 7.4001,8.519404,7.6939,8.519404 + +[鼓] 63 +L 0.5264,0.015232,0.7999,0.015232 +L 0.7999,0.015232,1.0728,0.015232 +L 1.0728,0.015232,1.3463,0.015232 +L 1.3463,0.015232,1.3355,0.786418 +L 1.3355,0.786418,1.2307,1.201589 +L 1.2307,1.201589,0.9502,1.616827 +L 1.9869,0.015232,2.3337,0.738325 +L 2.3337,0.738325,2.6878,1.453044 +L 2.6878,1.453044,3.0552,2.150787 +L 4.5511,0.015232,5.0411,0.652164 +L 5.0411,0.652164,5.5279,1.272273 +L 5.5279,1.272273,6.0147,1.883769 +L 6.0147,1.883769,5.4127,3.256697 +L 5.4127,3.256697,5.192,4.146571 +L 5.192,4.146571,5.1636,5.316008 +L 5.1636,5.316008,4.8873,5.316008 +L 4.8873,5.316008,4.6138,5.316008 +L 4.6138,5.316008,4.3409,5.316008 +L 7.297,0.015232,7.0024,0.385223 +L 7.0024,0.385223,6.7187,0.738325 +L 6.7187,0.738325,6.442,1.082922 +L 6.442,2.684648,7.0445,3.849914 +L 7.0445,3.849914,7.2651,4.53206 +L 7.2651,4.53206,7.297,5.316008 +L 7.297,5.316008,6.7187,5.316008 +L 6.7187,5.316008,6.1482,5.316008 +L 6.1482,5.316008,5.5874,5.316008 +L 0.9502,3.218597,0.9502,3.751013 +L 0.9502,3.751013,0.9502,4.275101 +L 0.9502,4.275101,0.9502,4.78208 +L 0.9502,4.78208,1.7838,4.78208 +L 1.7838,4.78208,2.6314,4.78208 +L 2.6314,4.78208,3.4825,4.78208 +L 3.4825,4.78208,3.4825,4.275101 +L 3.4825,4.275101,3.4825,3.751013 +L 3.4825,3.751013,3.4825,3.218597 +L 3.4825,3.218597,2.6314,3.218597 +L 2.6314,3.218597,1.7838,3.218597 +L 1.7838,3.218597,0.9502,3.218597 +L 6.0147,5.849988,5.3987,7.454439 +L 5.3987,7.454439,4.0222,7.957348 +L 4.0222,7.957348,2.6314,7.985542 +L 2.6314,7.985542,2.3302,7.570327 +L 2.3302,7.570327,2.2184,7.155013 +L 2.2184,7.155013,2.2009,6.383816 +L 2.2009,6.383816,2.6314,6.383816 +L 2.6314,6.383816,3.0552,6.383816 +L 3.0552,6.383816,3.4825,6.383816 +L 0.9502,6.383816,1.2272,6.383816 +L 1.2272,6.383816,1.5001,6.383816 +L 1.5001,6.383816,1.7771,6.383816 +L 6.442,7.451583,6.1447,7.866886 +L 6.1447,7.866886,6.0322,8.282091 +L 6.0322,8.282091,6.0147,9.053364 +L 6.8732,7.451583,7.146,7.451583 +L 7.146,7.451583,7.4262,7.451583 +L 7.4262,7.451583,7.7243,7.451583 +L 0.5264,7.985542,0.9292,7.985542 +L 0.9292,7.985542,1.3498,7.985542 +L 1.3498,7.985542,1.7771,7.985542 +L 1.7771,7.985542,1.9029,8.355533 +L 1.9029,8.355533,2.0538,8.708722 +L 2.0538,8.708722,2.2009,9.053364 + +[互] 27 +L 0.5249,0.549083,2.2131,0.549083 +L 2.2131,0.549083,3.9156,0.549083 +L 3.9156,0.549083,5.6213,0.549083 +L 5.6213,0.549083,5.6213,1.453044 +L 5.6213,1.453044,5.6213,2.339974 +L 5.6213,2.339974,5.6213,3.218597 +L 5.6213,3.218597,4.49,3.218597 +L 4.49,3.218597,3.3619,3.218597 +L 3.3619,3.218597,2.2344,3.218597 +L 2.2344,3.218597,2.3605,4.999637 +L 2.3605,4.999637,2.5108,6.763833 +L 2.5108,6.763833,2.6617,8.519404 +L 2.6617,8.519404,2.0803,8.519404 +L 2.0803,8.519404,1.5094,8.519404 +L 1.5094,8.519404,0.9522,8.519404 +L 6.0451,0.549083,6.595,0.549083 +L 6.595,0.549083,7.1554,0.549083 +L 7.1554,0.549083,7.7263,0.549083 +L 6.0451,3.218597,6.0451,4.095742 +L 6.0451,4.095742,6.0451,4.97281 +L 6.0451,4.97281,6.0451,5.849988 +L 6.0451,5.849988,5.0504,5.849988 +L 5.0504,5.849988,4.0627,5.849988 +L 4.0627,5.849988,3.089,5.849988 +L 3.089,8.519404,4.49,8.519404 +L 4.49,8.519404,5.905,8.519404 +L 5.905,8.519404,7.3302,8.519404 + +[呉] 33 +L 1.1924,0.015232,1.8126,0.549083 +L 1.8126,0.549083,2.4497,1.082922 +L 2.4497,1.082922,3.0837,1.616827 +L 6.8982,0.015232,6.334,0.549083 +L 6.334,0.549083,5.7736,1.082922 +L 5.7736,1.082922,5.2237,1.616827 +L 0.5588,2.684648,2.5163,2.684648 +L 2.5163,2.684648,4.4917,2.684648 +L 4.4917,2.684648,6.4744,2.684648 +L 6.4744,2.684648,6.4744,3.397922 +L 6.4744,3.397922,6.4744,4.094253 +L 6.4744,4.094253,6.4744,4.78208 +L 6.4744,4.78208,4.7754,4.78208 +L 4.7754,4.78208,3.091,4.78208 +L 3.091,4.78208,1.4099,4.78208 +L 1.4099,4.78208,1.4099,6.039219 +L 1.4099,6.039219,1.4099,7.2878 +L 1.4099,7.2878,1.4099,8.519404 +L 6.8982,2.684648,7.1749,2.684648 +L 7.1749,2.684648,7.4586,2.684648 +L 7.4586,2.684648,7.7559,2.684648 +L 3.0837,6.383816,3.0837,7.10703 +L 3.0837,7.10703,3.0837,7.821792 +L 3.0837,7.821792,3.0837,8.519404 +L 3.0837,8.519404,4.215,8.519404 +L 4.215,8.519404,5.3463,8.519404 +L 5.3463,8.519404,6.4744,8.519404 +L 6.4744,8.519404,6.4744,7.821792 +L 6.4744,7.821792,6.4744,7.10703 +L 6.4744,7.10703,6.4744,6.383816 +L 6.4744,6.383816,5.3463,6.383816 +L 5.3463,6.383816,4.215,6.383816 +L 4.215,6.383816,3.0837,6.383816 + +[娯] 34 +L 3.541,0.015232,3.8215,0.549083 +L 3.8215,0.549083,4.1017,1.082922 +L 4.1017,1.082922,4.3991,1.616827 +L 7.3625,0.015232,7.0645,0.549083 +L 7.0645,0.549083,6.7808,1.082922 +L 6.7808,1.082922,6.5041,1.616827 +L 3.1207,3.218597,4.3819,3.218597 +L 4.3819,3.218597,5.653,3.218597 +L 5.653,3.218597,6.9317,3.218597 +L 6.9317,3.218597,6.9317,3.751013 +L 6.9317,3.751013,6.9317,4.275101 +L 6.9317,4.275101,6.9317,4.78208 +L 6.9317,4.78208,5.8039,4.78208 +L 5.8039,4.78208,4.6726,4.78208 +L 4.6726,4.78208,3.541,4.78208 +L 3.541,4.78208,3.541,5.849988 +L 3.541,5.849988,3.541,6.917722 +L 3.541,6.917722,3.541,7.985542 +L 4.7949,6.383816,4.7949,7.10703 +L 4.7949,7.10703,4.7949,7.821792 +L 4.7949,7.821792,4.7949,8.519404 +L 4.7949,8.519404,5.4992,8.519404 +L 5.4992,8.519404,6.2067,8.519404 +L 6.2067,8.519404,6.9317,8.519404 +L 6.9317,8.519404,6.9317,7.821792 +L 6.9317,7.821792,6.9317,7.10703 +L 6.9317,7.10703,6.9317,6.383816 +L 6.9317,6.383816,6.2067,6.383816 +L 6.2067,6.383816,5.4992,6.383816 +L 5.4992,6.383816,4.7949,6.383816 +L 3.9893,6.345552,0.3888,6.345552 +L 1.2437,3.341774,1.8668,9.015143 +A -4.1504,-3.384302,8.620982,23.224227,51.278884 +A -6.0067,6.345552,9.138971,316.15783,0 + +[御] 42 +L 1.4415,0.015232,1.3575,1.796262 +L 1.3575,1.796262,1.2913,3.560381 +L 1.2913,3.560381,1.2247,5.316008 +L 1.2247,5.316008,1.0142,5.152158 +L 1.0142,5.152158,0.7974,4.971398 +L 0.7974,4.971398,0.5838,4.78208 +L 6.1103,0.015232,6.1103,2.683302 +L 6.1103,2.683302,6.1103,5.34279 +L 6.1103,5.34279,6.1103,7.985542 +L 6.1103,7.985542,6.5134,7.985542 +L 6.5134,7.985542,6.9337,7.985542 +L 6.9337,7.985542,7.361,7.985542 +L 7.361,7.985542,7.361,5.876749 +L 7.361,5.876749,7.361,3.751013 +L 7.361,3.751013,7.361,1.616827 +L 2.7203,1.082922,2.7203,2.150787 +L 2.7203,2.150787,2.7203,3.218597 +L 2.7203,3.218597,2.7203,4.286341 +L 3.1157,1.082922,3.3962,1.082922 +L 3.3962,1.082922,3.6764,1.082922 +L 3.6764,1.082922,3.9703,1.082922 +L 3.9703,1.082922,3.8376,3.412041 +L 3.8376,3.412041,3.1402,6.139411 +L 3.1402,6.139411,1.4415,5.849988 +L 4.4014,1.616827,4.6743,1.616827 +L 4.6743,1.616827,4.9548,1.616827 +L 4.9548,1.616827,5.2525,1.616827 +L 4.4014,3.752458,4.6743,3.752458 +L 4.6743,3.752458,4.9548,3.752458 +L 4.9548,3.752458,5.2525,3.752458 +L 4.4014,5.849988,4.1002,6.284982 +L 4.1002,6.284982,3.9878,6.83861 +L 3.9878,6.83861,3.9703,7.985542 +L 3.9703,7.985542,3.3542,7.965678 +L 3.3542,7.965678,3.032,7.827319 +L 3.032,7.827319,2.7203,7.451583 +L 0.5838,7.451583,0.8605,7.985542 +L 0.8605,7.985542,1.1403,8.519404 +L 1.1403,8.519404,1.4415,9.053364 +L 4.4014,7.985542,4.6743,7.985542 +L 4.6743,7.985542,4.9548,7.985542 +L 4.9548,7.985542,5.2525,7.985542 + +[悟] 51 +L 1.8638,0.015232,1.8638,3.027867 +L 1.8638,3.027867,1.8638,6.040631 +L 1.8638,6.040631,1.8638,9.053364 +L 3.5734,0.015232,3.5734,1.082922 +L 3.5734,1.082922,3.5734,2.150787 +L 3.5734,2.150787,3.5734,3.218597 +L 3.5734,3.218597,4.7047,3.218597 +L 4.7047,3.218597,5.8321,3.218597 +L 5.8321,3.218597,6.9634,3.218597 +L 6.9634,3.218597,6.9634,2.150787 +L 6.9634,2.150787,6.9634,1.082922 +L 6.9634,1.082922,6.9634,0.015232 +L 6.9634,0.015232,5.8321,0.015232 +L 5.8321,0.015232,4.7047,0.015232 +L 4.7047,0.015232,3.5734,0.015232 +L 0.6173,5.049131,0.9182,5.671911 +L 0.9182,5.671911,1.0302,6.294877 +L 1.0302,6.294877,1.0446,7.451583 +L 2.7223,4.78208,3.2788,4.78208 +L 3.2788,4.78208,3.8532,4.78208 +L 3.8532,4.78208,4.4311,4.78208 +L 4.4311,4.78208,4.4311,5.50526 +L 4.4311,5.50526,4.4311,6.220077 +L 4.4311,6.220077,4.4311,6.917722 +L 4.4311,6.917722,4.1334,6.917722 +L 4.1334,6.917722,3.8532,6.917722 +L 3.8532,6.917722,3.5734,6.917722 +L 4.8584,4.78208,5.4083,4.78208 +L 5.4083,4.78208,5.9655,4.78208 +L 5.9655,4.78208,6.5361,4.78208 +L 6.5361,4.78208,6.5361,5.50526 +L 6.5361,5.50526,6.5361,6.220077 +L 6.5361,6.220077,6.5361,6.917722 +L 6.5361,6.917722,5.9655,6.917722 +L 5.9655,6.917722,5.4083,6.917722 +L 5.4083,6.917722,4.8584,6.917722 +L 4.8584,6.917722,4.8584,7.451583 +L 4.8584,7.451583,4.8584,7.985542 +L 4.8584,7.985542,4.8584,8.519404 +L 4.8584,8.519404,4.2809,8.519404 +L 4.2809,8.519404,3.7061,8.519404 +L 3.7061,8.519404,3.1531,8.519404 +L 6.9634,4.78208,7.2369,4.78208 +L 7.2369,4.78208,7.5241,4.78208 +L 7.5241,4.78208,7.818,4.78208 +L 2.7223,6.650736,2.5713,6.917722 +L 2.5713,6.917722,2.4246,7.184696 +L 2.4246,7.184696,2.2946,7.451583 +L 5.2822,8.519404,5.9831,8.519404 +L 5.9831,8.519404,6.6832,8.519404 +L 6.6832,8.519404,7.3907,8.519404 + +[碁] 60 +L 2.7519,0.015232,2.7278,0.786418 +L 2.7278,0.786418,2.5597,1.201589 +L 2.5597,1.201589,2.111,1.616827 +L 2.111,1.616827,1.6031,1.453044 +L 1.6031,1.453044,1.1061,1.272273 +L 1.1061,1.272273,0.6158,1.082922 +L 3.1792,0.015232,4.1564,0.015232 +L 4.1564,0.015232,5.1406,0.015232 +L 5.1406,0.015232,6.1427,0.015232 +L 6.1427,0.015232,6.1427,0.549083 +L 6.1427,0.549083,6.1427,1.082922 +L 6.1427,1.082922,6.1427,1.616827 +L 6.1427,1.616827,4.0412,1.636725 +L 4.0412,1.636725,3.1617,1.77505 +L 3.1617,1.77505,2.7519,2.150787 +L 2.7519,2.150787,2.8815,2.417772 +L 2.8815,2.417772,3.029,2.684648 +L 3.029,2.684648,3.1792,2.951611 +L 3.1792,2.951611,2.7519,3.218597 +L 2.7519,3.218597,2.3215,3.485484 +L 2.3215,3.485484,1.9008,3.752458 +L 1.9008,3.752458,1.4704,3.407784 +L 1.4704,3.407784,1.0431,3.054715 +L 1.0431,3.054715,0.6158,2.684648 +L 7.4211,2.684648,7.123,3.054715 +L 7.123,3.054715,6.8428,3.407784 +L 6.8428,3.407784,6.5661,3.752458 +L 6.5661,3.752458,6.1738,3.376787 +L 6.1738,3.376787,5.4033,3.238396 +L 5.4033,3.238396,3.61,3.218597 +L 2.3215,4.553403,1.7467,4.629527 +L 1.7467,4.629527,1.1723,4.705924 +L 1.1723,4.705924,0.6158,4.78208 +L 6.1427,4.553403,5.0114,4.629527 +L 5.0114,4.629527,3.8801,4.705924 +L 3.8801,4.705924,2.7519,4.78208 +L 2.7519,4.78208,2.7243,6.900812 +L 2.7243,6.900812,2.3141,7.799113 +L 2.3141,7.799113,1.0431,7.985542 +L 6.5661,4.78208,6.9938,4.78208 +L 6.9938,4.78208,7.4211,4.78208 +L 7.4211,4.78208,7.8484,4.78208 +L 5.7115,5.58297,4.8604,5.686118 +L 4.8604,5.686118,4.0128,5.772321 +L 4.0128,5.772321,3.1792,5.849988 +L 5.7115,6.650736,4.8604,6.75384 +L 4.8604,6.75384,4.0128,6.839956 +L 4.0128,6.839956,3.1792,6.917722 +L 5.7115,7.451583,5.3336,7.827319 +L 5.3336,7.827319,4.6783,7.965678 +L 4.6783,7.965678,3.1792,7.985542 +L 3.1792,7.985542,3.029,8.355533 +L 3.029,8.355533,2.8815,8.708722 +L 2.8815,8.708722,2.7519,9.053364 +L 6.1427,7.985542,5.9851,8.355533 +L 5.9851,8.355533,5.8415,8.708722 +L 5.8415,8.708722,5.7115,9.053364 +L 6.5661,7.985542,6.8428,7.985542 +L 6.8428,7.985542,7.123,7.985542 +L 7.123,7.985542,7.4211,7.985542 + +[侯] 42 +L 1.5001,0.015232,1.4195,1.796262 +L 1.4195,1.796262,1.3498,3.560381 +L 1.3498,3.560381,1.2868,5.316008 +L 1.2868,5.316008,1.0763,5.152158 +L 1.0763,5.152158,0.863,4.971398 +L 0.863,4.971398,0.649,4.78208 +L 2.9679,0.015232,3.735,0.919073 +L 3.735,0.919073,4.5265,1.806058 +L 4.5265,1.806058,5.3146,2.684648 +L 5.3146,2.684648,4.9363,3.060384 +L 4.9363,3.060384,4.2705,3.198731 +L 4.2705,3.198731,2.7504,3.218597 +L 7.4157,0.015232,6.8522,0.738325 +L 6.8522,0.738325,6.2949,1.453044 +L 6.2949,1.453044,5.7419,2.150787 +L 5.7419,3.218597,5.4407,3.632477 +L 5.4407,3.632477,5.3282,4.037777 +L 5.3282,4.037777,5.3146,4.78208 +L 5.3146,4.78208,4.0954,4.763758 +L 4.0954,4.763758,3.542,4.635294 +L 3.542,4.635294,3.1812,4.286341 +L 6.1692,3.218597,6.7187,3.218597 +L 6.7187,3.218597,7.276,3.218597 +L 7.276,3.218597,7.8469,3.218597 +L 5.7419,4.78208,6.2949,4.78208 +L 6.2949,4.78208,6.8522,4.78208 +L 6.8522,4.78208,7.4157,4.78208 +L 1.5001,5.849988,1.6125,7.155013 +L 1.6125,7.155013,1.8191,8.104178 +L 1.8191,8.104178,1.9274,9.053364 +L 2.7504,6.917722,4.0113,6.917722 +L 4.0113,6.917722,5.2862,6.917722 +L 5.2862,6.917722,6.5646,6.917722 +L 6.5646,6.917722,6.5646,7.451583 +L 6.5646,7.451583,6.5646,7.985542 +L 6.5646,7.985542,6.5646,8.519404 +L 6.5646,8.519404,5.5664,8.519404 +L 5.5664,8.519404,4.5861,8.519404 +L 4.5861,8.519404,3.605,8.519404 +L 6.9958,6.917722,7.2686,6.917722 +L 7.2686,6.917722,7.5558,6.917722 +L 7.5558,6.917722,7.8469,6.917722 + +[坑] 36 +L 2.9976,0.015232,4.1709,1.960111 +L 4.1709,1.960111,4.4967,3.549108 +L 4.4967,3.549108,4.49,5.849988 +L 4.49,5.849988,5.043,5.849988 +L 5.043,5.849988,5.6038,5.849988 +L 5.6038,5.849988,6.1712,5.849988 +L 6.1712,5.849988,6.1712,3.905001 +L 6.1712,3.905001,6.1712,1.960111 +L 6.1712,1.960111,6.1712,0.015232 +L 6.1712,0.015232,6.7242,0.015232 +L 6.7242,0.015232,7.299,0.015232 +L 7.299,0.015232,7.88,0.015232 +L 7.88,0.015232,7.88,0.549083 +L 7.88,0.549083,7.88,1.082922 +L 7.88,1.082922,7.88,1.616827 +L 0.6793,2.150787,0.9522,2.150787 +L 0.9522,2.150787,1.2292,2.150787 +L 1.2292,2.150787,1.5021,2.150787 +L 1.5021,2.150787,1.5021,3.397922 +L 1.5021,3.397922,1.5021,4.628169 +L 1.5021,4.628169,1.5021,5.849988 +L 1.5021,5.849988,1.2292,6.039219 +L 1.2292,6.039219,0.9522,6.220077 +L 0.9522,6.220077,0.6793,6.383816 +L 1.9332,6.383816,1.6285,6.83861 +L 1.6285,6.83861,1.5161,7.53076 +L 1.5161,7.53076,1.5021,9.053364 +L 3.2081,7.451583,3.9118,7.451583 +L 3.9118,7.451583,4.6126,7.451583 +L 4.6126,7.451583,5.3166,7.451583 +L 5.3166,7.451583,5.3166,7.985542 +L 5.3166,7.985542,5.3166,8.519404 +L 5.3166,8.519404,5.3166,9.053364 +L 5.7439,7.451583,6.3043,7.451583 +L 6.3043,7.451583,6.8752,7.451583 +L 6.8752,7.451583,7.4527,7.451583 + +[孔] 27 +L 1.1016,0.015232,1.5324,0.015232 +L 1.5324,0.015232,1.9597,0.015232 +L 1.9597,0.015232,2.3902,0.015232 +L 2.3902,0.015232,2.3902,1.453044 +L 2.3902,1.453044,2.3902,2.873966 +L 2.3902,2.873966,2.3902,4.286341 +L 2.3902,4.286341,1.8088,4.122547 +L 1.8088,4.122547,1.2379,3.941689 +L 1.2379,3.941689,0.6813,3.752458 +L 6.2009,0.015232,5.9,0.705861 +L 5.9,0.705861,5.7876,3.049155 +L 5.7876,3.049155,5.7736,9.053364 +L 6.6285,0.015232,7.0348,0.015232 +L 7.0348,0.015232,7.4547,0.015232 +L 7.4547,0.015232,7.8785,0.015232 +L 7.8785,0.015232,7.8785,0.549083 +L 7.8785,0.549083,7.8785,1.082922 +L 7.8785,1.082922,7.8785,1.616827 +L 2.3902,4.78208,2.5513,6.351398 +L 2.5513,6.351398,2.877,7.217149 +L 2.877,7.217149,3.6686,8.25243 +L 3.6686,8.25243,2.6602,8.355533 +L 2.6602,8.355533,1.6617,8.441748 +L 1.6617,8.441748,0.6813,8.519404 +L 3.0245,4.78208,3.3639,4.971398 +L 3.3639,4.971398,3.7071,5.152158 +L 3.7071,5.152158,4.0647,5.316008 + +[恒] 30 +L 1.9894,0.015232,1.9894,3.027867 +L 1.9894,3.027867,1.9894,6.040631 +L 1.9894,6.040631,1.9894,9.053364 +L 3.2398,0.015232,4.7952,0.015232 +L 4.7952,0.015232,6.3538,0.015232 +L 6.3538,0.015232,7.9054,0.015232 +L 4.0944,2.150787,4.0944,3.561782 +L 4.0944,3.561782,4.0944,4.97281 +L 4.0944,4.97281,4.0944,6.383816 +L 4.0944,6.383816,5.0754,6.383816 +L 5.0754,6.383816,6.0557,6.383816 +L 6.0557,6.383816,7.0543,6.383816 +L 7.0543,6.383816,7.0543,4.97281 +L 7.0543,4.97281,7.0543,3.561782 +L 7.0543,3.561782,7.0543,2.150787 +L 7.0543,2.150787,6.0557,2.150787 +L 6.0557,2.150787,5.0754,2.150787 +L 5.0754,2.150787,4.0944,2.150787 +L 4.5217,4.286341,5.2222,4.286341 +L 5.2222,4.286341,5.9265,4.286341 +L 5.9265,4.286341,6.6266,4.286341 +L 0.7075,5.049131,1.0122,5.671911 +L 1.0122,5.671911,1.1208,6.294877 +L 1.1208,6.294877,1.1383,7.451583 +L 2.8125,6.650736,2.6657,6.917722 +L 2.6657,6.917722,2.5148,7.184696 +L 2.5148,7.184696,2.3855,7.451583 +L 3.6706,8.519404,4.9318,8.519404 +L 4.9318,8.519404,6.2032,8.519404 +L 6.2032,8.519404,7.4851,8.519404 + +[慌] 51 +L 1.5641,0.015232,1.5641,3.027867 +L 1.5641,3.027867,1.5641,6.040631 +L 1.5641,6.040631,1.5641,9.053364 +L 2.8428,0.015232,3.501,1.03218 +L 3.501,1.03218,3.6974,1.94736 +L 3.6974,1.94736,3.6974,3.218597 +L 6.6602,0.015232,6.359,0.489651 +L 6.359,0.489651,6.2472,1.320279 +L 6.2472,1.320279,6.2329,3.218597 +L 7.084,0.015232,7.361,0.015232 +L 7.361,0.015232,7.6447,0.015232 +L 7.6447,0.015232,7.9421,0.015232 +L 7.9421,0.015232,7.9421,0.385223 +L 7.9421,0.385223,7.9421,0.738325 +L 7.9421,0.738325,7.9421,1.082922 +L 4.9513,0.549083,4.9513,1.453044 +L 4.9513,1.453044,4.9513,2.339974 +L 4.9513,2.339974,4.9513,3.218597 +L 4.1279,4.286341,3.8235,4.674752 +L 3.8235,4.674752,3.715,5.08015 +L 3.715,5.08015,3.6974,5.849988 +L 3.6974,5.849988,3.4029,5.849988 +L 3.4029,5.849988,3.1227,5.849988 +L 3.1227,5.849988,2.8428,5.849988 +L 4.5552,4.286341,5.3888,4.286341 +L 5.3888,4.286341,6.2329,4.286341 +L 6.2329,4.286341,7.084,4.286341 +L 0.7379,4.78208,0.7379,5.686118 +L 0.7379,5.686118,0.7379,6.573069 +L 0.7379,6.573069,0.7379,7.451583 +L 4.1279,5.849988,4.531,5.849988 +L 4.531,5.849988,4.9513,5.849988 +L 4.9513,5.849988,5.3786,5.849988 +L 5.3786,5.849988,5.3786,6.220077 +L 5.3786,6.220077,5.3786,6.573069 +L 5.3786,6.573069,5.3786,6.917722 +L 5.8024,5.849988,6.3625,5.849988 +L 6.3625,5.849988,6.9337,5.849988 +L 6.9337,5.849988,7.5113,5.849988 +L 4.5552,7.184696,4.2053,7.748218 +L 4.2053,7.748218,3.7636,7.955871 +L 3.7636,7.955871,2.8428,7.985542 +L 6.2329,7.184696,5.6935,7.78784 +L 5.6935,7.78784,5.0704,8.272207 +L 5.0704,8.272207,4.5552,9.053364 +L 6.6602,7.985542,6.5064,8.355533 +L 6.5064,8.355533,6.3625,8.708722 +L 6.3625,8.708722,6.2329,9.053364 +L 7.084,7.985542,7.361,7.985542 +L 7.361,7.985542,7.6447,7.985542 +L 7.6447,7.985542,7.9421,7.985542 + +[抗] 39 +L 1.1707,0.015232,1.44,0.015232 +L 1.44,0.015232,1.7272,0.015232 +L 1.7272,0.015232,2.0218,0.015232 +L 2.0218,0.015232,2.0039,2.664826 +L 2.0039,2.664826,1.8922,3.772247 +L 1.8922,3.772247,1.5945,4.286341 +L 1.5945,4.286341,1.2964,4.122547 +L 1.2964,4.122547,1.0162,3.941689 +L 1.0162,3.941689,0.7399,3.752458 +L 3.2721,0.015232,4.2668,1.993997 +L 4.2668,1.993997,4.5537,3.642273 +L 4.5537,3.642273,4.5537,5.849988 +L 4.5537,5.849988,5.1109,5.849988 +L 5.1109,5.849988,5.6818,5.849988 +L 5.6818,5.849988,6.2594,5.849988 +L 6.2594,5.849988,6.2594,3.905001 +L 6.2594,3.905001,6.2594,1.960111 +L 6.2594,1.960111,6.2594,0.015232 +L 6.2594,0.015232,6.8131,0.015232 +L 6.8131,0.015232,7.3662,0.015232 +L 7.3662,0.015232,7.9371,0.015232 +L 7.9371,0.015232,7.9371,0.549083 +L 7.9371,0.549083,7.9371,1.082922 +L 7.9371,1.082922,7.9371,1.616827 +L 2.4487,4.286341,1.9093,5.527906 +L 1.9093,5.527906,1.7272,6.515169 +L 1.7272,6.515169,0.7399,6.917722 +L 2.4487,6.917722,2.1475,7.352705 +L 2.1475,7.352705,2.0358,7.906442 +L 2.0358,7.906442,2.0218,9.053364 +L 3.7026,7.451583,4.256,7.451583 +L 4.256,7.451583,4.8307,7.451583 +L 4.8307,7.451583,5.4083,7.451583 +L 5.4083,7.451583,5.4083,7.985542 +L 5.4083,7.985542,5.4083,8.519404 +L 5.4083,8.519404,5.4083,9.053364 +L 5.8356,7.451583,6.382,7.451583 +L 6.382,7.451583,6.9424,7.451583 +L 6.9424,7.451583,7.5133,7.451583 + +[拘] 42 +L 0.7695,0.015232,1.0466,0.015232 +L 1.0466,0.015232,1.3303,0.015232 +L 1.3303,0.015232,1.628,0.015232 +L 1.628,0.015232,1.628,1.272273 +L 1.628,1.272273,1.628,2.520777 +L 1.628,2.520777,1.628,3.752458 +L 1.628,3.752458,1.3303,3.752458 +L 1.3303,3.752458,1.0466,3.752458 +L 1.0466,3.752458,0.7695,3.752458 +L 5.8341,0.015232,7.4697,1.477035 +L 7.4697,1.477035,7.6974,4.591492 +L 7.6974,4.591492,7.5436,7.451583 +L 7.5436,7.451583,6.2652,7.374004 +L 6.2652,7.374004,4.9904,7.2878 +L 4.9904,7.2878,3.7291,7.184696 +L 3.7291,7.184696,3.4353,6.75384 +L 3.4353,6.75384,3.1516,6.306106 +L 3.1516,6.306106,2.8745,5.849988 +L 4.1603,2.684648,4.1603,3.561782 +L 4.1603,3.561782,4.1603,4.438884 +L 4.1603,4.438884,4.1603,5.316008 +L 4.1603,5.316008,4.7102,5.316008 +L 4.7102,5.316008,5.2632,5.316008 +L 5.2632,5.316008,5.8341,5.316008 +L 5.8341,5.316008,5.8341,4.438884 +L 5.8341,4.438884,5.8341,3.561782 +L 5.8341,3.561782,5.8341,2.684648 +L 5.8341,2.684648,5.2632,2.684648 +L 5.2632,2.684648,4.7102,2.684648 +L 4.7102,2.684648,4.1603,2.684648 +L 1.628,4.286341,1.628,4.999637 +L 1.628,4.999637,1.628,5.696023 +L 1.628,5.696023,1.628,6.383816 +L 1.628,6.383816,1.3303,6.573069 +L 1.3303,6.573069,1.0466,6.75384 +L 1.0466,6.75384,0.7695,6.917722 +L 2.0203,6.917722,1.7432,7.352705 +L 1.7432,7.352705,1.6417,7.906442 +L 1.6417,7.906442,1.628,9.053364 +L 4.1603,7.985542,4.1603,8.355533 +L 4.1603,8.355533,4.1603,8.708722 +L 4.1603,8.708722,4.1603,9.053364 + +[控] 51 +L 0.768,0.015232,1.0486,0.015232 +L 1.0486,0.015232,1.3288,0.015232 +L 1.3288,0.015232,1.6261,0.015232 +L 1.6261,0.015232,1.6261,1.272273 +L 1.6261,1.272273,1.6261,2.520777 +L 1.6261,2.520777,1.6261,3.752458 +L 1.6261,3.752458,1.3288,3.752458 +L 1.3288,3.752458,1.0486,3.752458 +L 1.0486,3.752458,0.768,3.752458 +L 2.9084,0.015232,3.7385,0.015232 +L 3.7385,0.015232,4.5822,0.015232 +L 4.5822,0.015232,5.4407,0.015232 +L 5.4407,0.015232,5.4407,1.082922 +L 5.4407,1.082922,5.4407,2.150787 +L 5.4407,2.150787,5.4407,3.218597 +L 5.4407,3.218597,4.8698,3.218597 +L 4.8698,3.218597,4.3125,3.218597 +L 4.3125,3.218597,3.7595,3.218597 +L 5.8645,0.015232,6.5685,0.015232 +L 6.5685,0.015232,7.2795,0.015232 +L 7.2795,0.015232,8.0006,0.015232 +L 5.8645,3.218597,6.2918,3.218597 +L 6.2918,3.218597,6.7222,3.218597 +L 6.7222,3.218597,7.1495,3.218597 +L 1.6261,4.286341,1.6261,4.999637 +L 1.6261,4.999637,1.6261,5.696023 +L 1.6261,5.696023,1.6261,6.383816 +L 1.6261,6.383816,1.3288,6.573069 +L 1.3288,6.573069,1.0486,6.75384 +L 1.0486,6.75384,0.768,6.917722 +L 3.5455,4.78208,4.2775,5.573043 +L 4.2775,5.573043,4.544,6.126758 +L 4.544,6.126758,4.5822,6.917722 +L 6.2918,5.316008,6.2918,5.849988 +L 6.2918,5.849988,6.2918,6.383816 +L 6.2918,6.383816,6.2918,6.917722 +L 6.7222,5.316008,6.9923,5.316008 +L 6.9923,5.316008,7.2795,5.316008 +L 7.2795,5.316008,7.5733,5.316008 +L 7.5733,5.316008,7.6857,6.245415 +L 7.6857,6.245415,7.8889,7.056156 +L 7.8889,7.056156,8.0006,7.985542 +L 8.0006,7.985542,6.4459,7.985542 +L 6.4459,7.985542,4.8873,7.985542 +L 4.8873,7.985542,3.3357,7.985542 +L 3.3357,7.985542,3.3357,7.640868 +L 3.3357,7.640868,3.3357,7.2878 +L 3.3357,7.2878,3.3357,6.917722 +L 2.0499,6.917722,1.7491,7.352705 +L 1.7491,7.352705,1.637,7.906442 +L 1.637,7.906442,1.6261,9.053364 + +[更] 54 +L 0.8019,0.015232,1.8912,0.430426 +L 1.8912,0.430426,2.5493,0.845642 +L 2.5493,0.845642,3.3342,1.616827 +L 3.3342,1.616827,3.0606,1.987014 +L 3.0606,1.987014,2.7843,2.339974 +L 2.7843,2.339974,2.5076,2.684648 +L 6.3214,0.015232,5.4703,0.652164 +L 5.4703,0.652164,4.6157,1.272273 +L 4.6157,1.272273,3.7615,1.883769 +L 3.7615,1.883769,4.0452,2.664826 +L 4.0452,2.664826,4.0452,3.14938 +L 4.0452,3.14938,3.7615,3.752458 +L 3.7615,3.752458,3.0606,3.752458 +L 3.0606,3.752458,2.3605,3.752458 +L 2.3605,3.752458,1.6565,3.752458 +L 1.6565,3.752458,1.6565,4.818834 +L 1.6565,4.818834,1.6565,5.876749 +L 1.6565,5.876749,1.6565,6.917722 +L 1.6565,6.917722,2.9626,6.900812 +L 2.9626,6.900812,3.8561,7.239794 +L 3.8561,7.239794,4.1884,8.519404 +L 4.1884,8.519404,3.0606,8.519404 +L 3.0606,8.519404,1.9294,8.519404 +L 1.9294,8.519404,0.8019,8.519404 +L 6.7176,0.015232,6.9978,0.015232 +L 6.9978,0.015232,7.2779,0.015232 +L 7.2779,0.015232,7.5718,0.015232 +L 4.6157,3.752458,4.3219,4.284973 +L 4.3219,4.284973,4.0343,4.808973 +L 4.0343,4.808973,3.7615,5.316008 +L 3.7615,5.316008,3.1906,5.316008 +L 3.1906,5.316008,2.6298,5.316008 +L 2.6298,5.316008,2.0835,5.316008 +L 5.0395,3.752458,5.5929,3.752458 +L 5.5929,3.752458,6.1502,3.752458 +L 6.1502,3.752458,6.7176,3.752458 +L 6.7176,3.752458,6.7176,4.284973 +L 6.7176,4.284973,6.7176,4.808973 +L 6.7176,4.808973,6.7176,5.316008 +L 6.7176,5.316008,6.0167,5.316008 +L 6.0167,5.316008,5.3166,5.316008 +L 5.3166,5.316008,4.6157,5.316008 +L 4.6157,5.316008,4.332,5.909234 +L 4.332,5.909234,4.332,6.324407 +L 4.332,6.324407,4.6157,6.917722 +L 4.6157,6.917722,5.3166,6.917722 +L 5.3166,6.917722,6.0167,6.917722 +L 6.0167,6.917722,6.7176,6.917722 +L 6.7176,6.917722,6.7176,6.573069 +L 6.7176,6.573069,6.7176,6.220077 +L 6.7176,6.220077,6.7176,5.849988 +L 4.6157,8.519404,5.5929,8.519404 +L 5.5929,8.519404,6.5771,8.519404 +L 6.5771,8.519404,7.5718,8.519404 + +[江] 24 +L 0.8316,0.282108,1.2379,1.453044 +L 1.2379,1.453044,1.6582,2.606981 +L 1.6582,2.606981,2.0823,3.752458 +L 2.9401,0.549083,3.7701,0.549083 +L 3.7701,0.549083,4.6142,0.549083 +L 4.6142,0.549083,5.4723,0.549083 +L 5.4723,0.549083,5.4723,3.217163 +L 5.4723,3.217163,5.4723,5.876749 +L 5.4723,5.876749,5.4723,8.519404 +L 5.4723,8.519404,4.7687,8.519404 +L 4.7687,8.519404,4.0679,8.519404 +L 4.0679,8.519404,3.3639,8.519404 +L 5.8961,0.549083,6.6001,0.549083 +L 6.6001,0.549083,7.3111,0.549083 +L 7.3111,0.549083,8.0295,0.549083 +L 1.655,5.849988,1.3815,6.220077 +L 1.3815,6.220077,1.1086,6.573069 +L 1.1086,6.573069,0.8316,6.917722 +L 2.0823,7.985542,1.8088,8.355533 +L 1.8088,8.355533,1.5359,8.708722 +L 1.5359,8.708722,1.2589,9.053364 +L 5.8961,8.519404,6.4534,8.519404 +L 6.4534,8.519404,7.0239,8.519404 +L 7.0239,8.519404,7.6057,8.519404 + +[洪] 33 +L 0.8301,0.282108,1.2574,1.453044 +L 1.2574,1.453044,1.6885,2.606981 +L 1.6885,2.606981,2.1158,3.752458 +L 2.9669,0.015232,3.3732,0.738325 +L 3.3732,0.738325,3.7932,1.453044 +L 3.7932,1.453044,4.2208,2.150787 +L 7.6353,0.015232,7.208,0.738325 +L 7.208,0.738325,6.7807,1.453044 +L 6.7807,1.453044,6.3538,2.150787 +L 2.9669,3.218597,3.3732,3.218597 +L 3.3732,3.218597,3.7932,3.218597 +L 3.7932,3.218597,4.2208,3.218597 +L 4.2208,3.218597,4.2488,5.228501 +L 4.2488,5.228501,4.0002,6.484152 +L 4.0002,6.484152,2.9669,6.917722 +L 4.6446,3.218597,5.2046,3.218597 +L 5.2046,3.218597,5.772,3.218597 +L 5.772,3.218597,6.3538,3.218597 +L 6.3538,3.218597,5.8004,6.61257 +L 5.8004,6.61257,4.7707,7.184696 +L 4.7707,7.184696,4.2208,9.053364 +L 6.7807,3.218597,7.1839,3.218597 +L 7.1839,3.218597,7.6042,3.218597 +L 7.6042,3.218597,8.0346,3.218597 +L 1.6885,5.849988,1.3908,6.220077 +L 1.3908,6.220077,1.1071,6.573069 +L 1.1071,6.573069,0.8301,6.917722 +L 6.7807,6.917722,6.4795,7.352705 +L 6.4795,7.352705,6.3713,7.906442 +L 6.3713,7.906442,6.3538,9.053364 +L 2.1158,7.985542,1.8181,8.355533 +L 1.8181,8.355533,1.5376,8.708722 +L 1.5376,8.708722,1.2574,9.053364 + +[溝] 51 +L 0.864,0.282108,1.2878,1.453044 +L 1.2878,1.453044,1.7151,2.606981 +L 1.7151,2.606981,2.1455,3.752458 +L 3.82,0.015232,3.82,0.549083 +L 3.82,0.549083,3.82,1.082922 +L 3.82,1.082922,3.82,1.616827 +L 3.82,1.616827,3.529,1.806058 +L 3.529,1.806058,3.2418,1.987014 +L 3.2418,1.987014,2.9689,2.150787 +L 6.3523,0.015232,6.6325,0.015232 +L 6.6325,0.015232,6.9127,0.015232 +L 6.9127,0.015232,7.21,0.015232 +L 7.21,0.015232,6.3313,2.26663 +L 6.3313,2.26663,4.6988,2.238337 +L 4.6988,2.238337,3.82,4.286341 +L 3.82,4.286341,4.7408,4.30474 +L 4.7408,4.30474,5.1821,4.433192 +L 5.1821,4.433192,5.5289,4.78208 +L 5.5289,4.78208,5.5289,5.152158 +L 5.5289,5.152158,5.5289,5.50526 +L 5.5289,5.50526,5.5289,5.849988 +L 5.5289,5.849988,4.6778,5.849988 +L 4.6778,5.849988,3.82,5.849988 +L 3.82,5.849988,2.9689,5.849988 +L 7.6338,2.150787,6.6637,3.020752 +L 6.6637,3.020752,5.4063,3.238396 +L 5.4063,3.238396,4.2505,3.218597 +L 5.5289,3.752458,5.8795,4.108406 +L 5.8795,4.108406,6.3103,4.108406 +L 6.3103,4.108406,7.21,3.752458 +L 1.7151,5.849988,1.4205,6.220077 +L 1.4205,6.220077,1.1403,6.573069 +L 1.1403,6.573069,0.864,6.917722 +L 6.1422,5.849988,6.2749,6.067447 +L 6.2749,6.067447,6.2262,6.344305 +L 6.2262,6.344305,5.96,6.917722 +L 5.96,6.917722,5.214,6.799076 +L 5.214,6.799076,4.566,6.680485 +L 4.566,6.680485,3.82,6.917722 +L 6.7827,5.849988,7.21,5.849988 +L 7.21,5.849988,7.6338,5.849988 +L 7.6338,5.849988,8.0611,5.849988 +L 6.7827,6.917722,5.7008,7.821792 +L 5.7008,7.821792,4.5797,8.022253 +L 4.5797,8.022253,3.3962,7.985542 +L 2.1455,7.985542,1.8478,8.355533 +L 1.8478,8.355533,1.5641,8.708722 +L 1.5641,8.708722,1.2878,9.053364 +L 6.7827,7.985542,6.6325,8.355533 +L 6.6325,8.355533,6.485,8.708722 +L 6.485,8.708722,6.3523,9.053364 + +[甲] 21 +L 4.2493,0.015232,4.0637,2.64229 +L 4.0637,2.64229,3.2126,3.28649 +L 3.2126,3.28649,1.2579,3.21864 +L 1.2579,3.21864,1.2579,4.999637 +L 1.2579,4.999637,1.2579,6.763844 +L 1.2579,6.763844,1.2579,8.519404 +L 1.2579,8.519404,3.2438,8.519404 +L 3.2438,8.519404,5.2262,8.519404 +L 5.2262,8.519404,7.2085,8.519404 +L 7.2085,8.519404,7.2085,6.763844 +L 7.2085,6.763844,7.2085,4.999637 +L 7.2085,4.999637,7.2085,3.21864 +L 7.2085,3.21864,4.5505,3.900776 +L 4.5505,3.900776,3.9201,5.167755 +L 3.9201,5.167755,1.6852,5.849999 +L 4.6763,5.849999,4.3716,6.284982 +L 4.3716,6.284982,4.2668,6.83861 +L 4.2668,6.83861,4.2493,7.985542 +L 5.0724,5.849999,5.6324,5.849999 +L 5.6324,5.849999,6.1998,5.849999 +L 6.1998,5.849999,6.7812,5.849999 + +[硬] 63 +L 3.61,0.015232,4.2478,0.652186 +L 4.2478,0.652186,4.8923,1.272273 +L 4.8923,1.272273,5.5294,1.883769 +L 5.5294,1.883769,5.2355,2.150787 +L 5.2355,2.150787,4.9518,2.417772 +L 4.9518,2.417772,4.6748,2.684648 +L 7.6378,0.015232,7.0669,0.549083 +L 7.0669,0.549083,6.5104,1.082966 +L 6.5104,1.082966,5.9567,1.616827 +L 1.2918,1.082966,1.3965,5.010966 +L 1.3965,5.010966,1.6066,7.057711 +L 1.6066,7.057711,1.7156,8.519404 +L 1.7156,8.519404,1.4245,8.519404 +L 1.4245,8.519404,1.1373,8.519404 +L 1.1373,8.519404,0.8645,8.519404 +L 1.7156,1.082966,1.9957,1.082966 +L 1.9957,1.082966,2.2759,1.082966 +L 2.2759,1.082966,2.5733,1.082966 +L 2.5733,1.082966,2.5733,2.493973 +L 2.5733,2.493973,2.5733,3.905001 +L 2.5733,3.905001,2.5733,5.316008 +L 2.5733,5.316008,2.2759,5.316008 +L 2.2759,5.316008,1.9957,5.316008 +L 1.9957,5.316008,1.7156,5.316008 +L 5.9567,2.951611,5.6099,3.515145 +L 5.6099,3.515145,5.1686,3.722808 +L 5.1686,3.722808,4.2478,3.752458 +L 4.2478,3.752458,4.2478,4.818834 +L 4.2478,4.818834,4.2478,5.876749 +L 4.2478,5.876749,4.2478,6.917722 +L 4.2478,6.917722,5.2877,6.985472 +L 5.2877,6.985472,5.8131,7.409236 +L 5.8131,7.409236,5.9567,8.519404 +L 5.9567,8.519404,5.2355,8.519404 +L 5.2355,8.519404,4.5245,8.519404 +L 4.5245,8.519404,3.8205,8.519404 +L 6.384,3.752458,6.0901,4.284973 +L 6.0901,4.284973,5.8064,4.808973 +L 5.8064,4.808973,5.5294,5.316008 +L 5.5294,5.316008,5.2355,5.316008 +L 5.2355,5.316008,4.9518,5.316008 +L 4.9518,5.316008,4.6748,5.316008 +L 6.8151,3.752458,7.0845,3.752458 +L 7.0845,3.752458,7.3615,3.752458 +L 7.3615,3.752458,7.6378,3.752458 +L 7.6378,3.752458,7.6378,4.284973 +L 7.6378,4.284973,7.6378,4.808973 +L 7.6378,4.808973,7.6378,5.316008 +L 7.6378,5.316008,6.7381,5.345723 +L 6.7381,5.345723,6.3073,5.553243 +L 6.3073,5.553243,5.9567,6.116886 +L 5.9567,6.116886,6.3073,6.680485 +L 6.3073,6.680485,6.7381,6.888072 +L 6.7381,6.888072,7.6378,6.917722 +L 7.6378,6.917722,7.6378,6.573069 +L 7.6378,6.573069,7.6378,6.220077 +L 7.6378,6.220077,7.6378,5.849999 +L 2.1428,8.519404,2.4195,8.519404 +L 2.4195,8.519404,2.7032,8.519404 +L 2.7032,8.519404,3.0006,8.519404 +L 6.384,8.519404,6.9377,8.519404 +L 6.9377,8.519404,7.4907,8.519404 +L 7.4907,8.519404,8.0616,8.519404 + +[稿] 63 +L 2.113,0.015232,2.0328,1.453044 +L 2.0328,1.453044,1.9659,2.873966 +L 1.9659,2.873966,1.8997,4.286341 +L 1.8997,4.286341,1.5456,3.588686 +L 1.5456,3.588686,1.1988,2.873966 +L 1.1988,2.873966,0.8595,2.150787 +L 3.8225,0.015232,3.8225,1.272273 +L 3.8225,1.272273,3.8225,2.52081 +L 3.8225,2.52081,3.8225,3.752458 +L 3.8225,3.752458,5.2267,3.752458 +L 5.2267,3.752458,6.635,3.752458 +L 6.635,3.752458,8.0636,3.752458 +L 8.0636,3.752458,8.0636,2.52081 +L 8.0636,2.52081,8.0636,1.272273 +L 8.0636,1.272273,8.0636,0.015232 +L 8.0636,0.015232,7.7663,0.015232 +L 7.7663,0.015232,7.4861,0.015232 +L 7.4861,0.015232,7.2055,0.015232 +L 5.1041,1.082966,5.1041,1.616827 +L 5.1041,1.616827,5.1041,2.150787 +L 5.1041,2.150787,5.1041,2.684648 +L 5.1041,2.684648,5.654,2.684648 +L 5.654,2.684648,6.2112,2.684648 +L 6.2112,2.684648,6.7852,2.684648 +L 6.7852,2.684648,6.7852,2.150787 +L 6.7852,2.150787,6.7852,1.616827 +L 6.7852,1.616827,6.7852,1.082966 +L 6.7852,1.082966,6.2112,1.082966 +L 6.2112,1.082966,5.654,1.082966 +L 5.654,1.082966,5.1041,1.082966 +L 2.9644,4.286341,2.4947,4.694629 +L 2.4947,4.694629,2.169,5.238373 +L 2.169,5.238373,1.7176,6.383816 +L 1.7176,6.383816,1.4195,6.383816 +L 1.4195,6.383816,1.1393,6.383816 +L 1.1393,6.383816,0.8595,6.383816 +L 4.6736,5.316008,4.6736,5.686118 +L 4.6736,5.686118,4.6736,6.039219 +L 4.6736,6.039219,4.6736,6.383816 +L 4.6736,6.383816,5.5104,6.383816 +L 5.5104,6.383816,6.3548,6.383816 +L 6.3548,6.383816,7.2055,6.383816 +L 7.2055,6.383816,7.2055,6.039219 +L 7.2055,6.039219,7.2055,5.686118 +L 7.2055,5.686118,7.2055,5.316008 +L 7.2055,5.316008,6.3548,5.316008 +L 6.3548,5.316008,5.5104,5.316008 +L 5.5104,5.316008,4.6736,5.316008 +L 2.5406,6.383816,2.2429,6.799076 +L 2.2429,6.799076,2.1305,7.21439 +L 2.1305,7.21439,2.113,7.985542 +L 2.113,7.985542,1.6857,7.985542 +L 1.6857,7.985542,1.2692,7.985542 +L 1.2692,7.985542,0.8595,7.985542 +L 2.5406,7.985542,3.2373,8.222834 +L 3.2373,8.222834,4.253,8.1042 +L 4.253,8.1042,5.9275,7.985542 +L 5.9275,7.985542,5.9275,8.355533 +L 5.9275,8.355533,5.9275,8.708722 +L 5.9275,8.708722,5.9275,9.053364 +L 6.3548,7.985542,6.9117,7.985542 +L 6.9117,7.985542,7.4861,7.985542 +L 7.4861,7.985542,8.0636,7.985542 + +[絞] 57 +L 2.1433,0.015232,2.1433,1.615393 +L 2.1433,1.615393,2.1433,3.20729 +L 2.1433,3.20729,2.1433,4.78208 +L 2.1433,4.78208,1.716,4.78208 +L 1.716,4.78208,1.2887,4.78208 +L 1.2887,4.78208,0.865,4.78208 +L 4.0662,0.015232,4.6823,0.738325 +L 4.6823,0.738325,5.3201,1.453044 +L 5.3201,1.453044,5.9537,2.150787 +L 5.9537,2.150787,5.3586,2.941728 +L 5.3586,2.941728,5.1379,3.495444 +L 5.1379,3.495444,5.1026,4.286341 +L 7.6632,0.015232,7.2429,0.549083 +L 7.2429,0.549083,6.8121,1.082966 +L 6.8121,1.082966,6.3845,1.616827 +L 0.865,1.34994,0.9942,1.987014 +L 0.9942,1.987014,1.1413,2.606981 +L 1.1413,2.606981,1.2887,3.21864 +L 3.4284,1.883769,3.2746,2.340018 +L 3.2746,2.340018,3.131,2.787828 +L 3.131,2.787828,2.9976,3.21864 +L 6.3845,2.684648,6.6857,3.099962 +L 6.6857,3.099962,6.7946,3.515145 +L 6.7946,3.515145,6.8121,4.286341 +L 3.4284,4.553403,3.2746,4.818834 +L 3.2746,4.818834,3.131,5.075936 +L 3.131,5.075936,2.9976,5.316008 +L 2.9976,5.316008,2.8473,5.152158 +L 2.8473,5.152158,2.7037,4.971398 +L 2.7037,4.971398,2.5703,4.78208 +L 1.716,5.316008,1.8453,5.583014 +L 1.8453,5.583014,1.9927,5.849999 +L 1.9927,5.849999,2.1433,6.116886 +L 2.1433,6.116886,1.8453,6.486964 +L 1.8453,6.486964,1.5651,6.839956 +L 1.5651,6.839956,1.2887,7.184696 +L 1.2887,7.184696,1.5651,7.821792 +L 1.5651,7.821792,1.8453,8.441748 +L 1.8453,8.441748,2.1433,9.053364 +L 4.2798,5.316008,4.553,5.686118 +L 4.553,5.686118,4.8332,6.039219 +L 4.8332,6.039219,5.1026,6.383816 +L 7.6632,5.316008,7.3687,5.686118 +L 7.3687,5.686118,7.0885,6.039219 +L 7.0885,6.039219,6.8121,6.383816 +L 2.5703,6.917722,2.7037,7.2878 +L 2.7037,7.2878,2.8473,7.640868 +L 2.8473,7.640868,2.9976,7.985542 +L 3.8522,7.451605,4.553,7.451605 +L 4.553,7.451605,5.2535,7.451605 +L 5.2535,7.451605,5.9537,7.451605 +L 5.9537,7.451605,5.9537,7.985542 +L 5.9537,7.985542,5.9537,8.519404 +L 5.9537,8.519404,5.9537,9.053364 +L 6.3845,7.451605,6.9449,7.451605 +L 6.9449,7.451605,7.5123,7.451605 +L 7.5123,7.451605,8.094,7.451605 + +# kan_27 ------------------------------------------------------- +# 綱肯荒衡貢購郊酵項香剛拷豪克酷獄腰込墾恨懇昆紺魂佐唆詐鎖債催宰彩栽歳砕斎載剤咲崎削搾索錯撮擦惨桟暫伺 + +[綱] 38 +L 3.3938,0.038097,3.3938,2.860121 +L 3.3938,2.860121,3.3938,5.682177 +L 3.3938,5.682177,3.3938,8.504125 +L 3.3938,8.504125,4.5181,8.504125 +L 4.5181,8.504125,5.6455,8.504125 +L 5.6455,8.504125,6.7768,8.504125 +L 6.7768,8.504125,6.7768,5.682177 +L 6.7768,5.682177,6.7768,2.860121 +L 6.7768,2.860121,6.7768,0.038097 +L 6.7768,0.038097,6.4794,0.038097 +L 6.4794,0.038097,6.1989,0.038097 +L 6.1989,0.038097,5.9187,0.038097 +L 4.2449,1.601646,4.2449,2.505607 +L 4.2449,2.505607,4.2449,3.392614 +L 4.2449,3.392614,4.2449,4.271149 +L 4.854,1.601646,4.917,3.039457 +L 4.917,3.039457,4.9839,4.460369 +L 4.9839,4.460369,5.0676,5.872907 +L 5.0676,5.872907,4.6403,5.872907 +L 4.6403,5.872907,4.2239,5.872907 +L 4.2239,5.872907,3.8176,5.872907 +L 5.7085,1.601646,5.7681,2.505607 +L 5.7681,2.505607,5.842,3.392614 +L 5.842,3.392614,5.9187,4.271149 +L 5.4988,6.139805,5.6245,6.586127 +L 5.6245,6.586127,5.7681,7.015506 +L 5.7681,7.015506,5.9187,7.436402 +L 4.6718,6.635556,4.5212,6.902541 +L 4.5212,6.902541,4.3745,7.169417 +L 4.3745,7.169417,4.2449,7.436402 +L 1.2534,9.038052,0.4304,7.16945 +L 2.1084,5.339157,2.5353,4.538145 +L 1.2534,4.805076,1.2534,0.038097 +L 0.4304,3.203471,0.0034,1.373024 +L 2.1084,3.203471,2.5353,1.906797 +L 0.0034,4.805076,2.3921,4.805076 +L 0.4304,7.16945,1.2324,6.168745 +L 2.1084,7.970373,0.567,4.805076 + +[肯] 36 +L 1.2835,0.038097,1.2835,1.819105 +L 1.2835,1.819105,1.2835,3.583322 +L 1.2835,3.583322,1.2835,5.338959 +L 1.2835,5.338959,2.6879,5.338959 +L 2.6879,5.338959,4.0994,5.338959 +L 4.0994,5.338959,5.5249,5.338959 +L 5.5249,5.338959,5.5249,3.583322 +L 5.5249,3.583322,5.5249,1.819105 +L 5.5249,1.819105,5.5249,0.038097 +L 5.5249,0.038097,5.0976,0.038097 +L 5.0976,0.038097,4.6668,0.038097 +L 4.6668,0.038097,4.2465,0.038097 +L 1.7107,2.135595,2.842,2.135595 +L 2.842,2.135595,3.9663,2.135595 +L 3.9663,2.135595,5.0976,2.135595 +L 1.7107,3.737212,2.842,3.737212 +L 2.842,3.737212,3.9663,3.737212 +L 3.9663,3.737212,5.0976,3.737212 +L 0.0019,6.902541,0.4324,6.902541 +L 0.4324,6.902541,0.8562,6.902541 +L 0.8562,6.902541,1.2835,6.902541 +L 1.2835,6.902541,1.2835,7.436402 +L 1.2835,7.436402,1.2835,7.970274 +L 1.2835,7.970274,1.2835,8.504125 +L 1.7107,6.902541,2.2715,6.902541 +L 2.2715,6.902541,2.842,6.902541 +L 2.842,6.902541,3.4199,6.902541 +L 3.4199,6.902541,3.4199,7.625721 +L 3.4199,7.625721,3.4199,8.340341 +L 3.4199,8.340341,3.4199,9.038084 +L 3.8157,6.902541,4.8003,6.902541 +L 4.8003,6.902541,5.802,6.902541 +L 5.802,6.902541,6.8068,6.902541 +L 3.8157,7.970274,4.3765,7.970274 +L 4.3765,7.970274,4.947,7.970274 +L 4.947,7.970274,5.5249,7.970274 + +[荒] 51 +L 0.2487,0.038097,0.7356,0.570568 +L 0.7356,0.570568,1.2329,1.094557 +L 1.2329,1.094557,1.7408,1.601646 +L 1.7408,1.601646,1.7408,2.135595 +L 1.7408,2.135595,1.7408,2.669423 +L 1.7408,2.669423,1.7408,3.203317 +L 5.5549,0.038097,5.2537,0.511234 +L 5.2537,0.511234,5.1417,1.331859 +L 5.1417,1.331859,5.1245,3.203317 +L 5.9822,0.038097,6.2593,0.038097 +L 6.2593,0.038097,6.5356,0.038097 +L 6.5356,0.038097,6.8057,0.038097 +L 6.8057,0.038097,6.8057,0.570568 +L 6.8057,0.570568,6.8057,1.094557 +L 6.8057,1.094557,6.8057,1.601646 +L 3.4184,0.572002,3.4184,1.449082 +L 3.4184,1.449082,3.4184,2.32627 +L 3.4184,2.32627,3.4184,3.203317 +L 1.7408,4.271149,1.4399,4.686453 +L 1.4399,4.686453,1.3278,5.101548 +L 1.3278,5.101548,1.3135,5.872907 +L 1.3135,5.872907,1.0193,5.872907 +L 1.0193,5.872907,0.7356,5.872907 +L 0.7356,5.872907,0.4592,5.872907 +L 2.14,4.271149,3.4184,4.271149 +L 3.4184,4.271149,4.7038,4.271149 +L 4.7038,4.271149,5.9822,4.271149 +L 1.7408,5.872907,2.2942,5.872907 +L 2.2942,5.872907,2.851,5.872907 +L 2.851,5.872907,3.4184,5.872907 +L 3.4184,5.872907,3.4184,6.21606 +L 3.4184,6.21606,3.4184,6.559333 +L 3.4184,6.559333,3.4184,6.902541 +L 3.8496,5.872907,4.6797,5.872907 +L 4.6797,5.872907,5.5269,5.872907 +L 5.5269,5.872907,6.3815,5.872907 +L 0.0351,7.970274,0.7356,7.970274 +L 0.7356,7.970274,1.4361,7.970274 +L 1.4361,7.970274,2.14,7.970274 +L 2.14,7.970274,2.14,8.340341 +L 2.14,8.340341,2.14,8.693432 +L 2.14,8.693432,2.14,9.038084 +L 2.5673,7.970274,3.2678,7.970274 +L 3.2678,7.970274,3.9753,7.970274 +L 3.9753,7.970274,4.7038,7.970274 +L 4.7038,7.970274,4.7038,8.340341 +L 4.7038,8.340341,4.7038,8.693432 +L 4.7038,8.693432,4.7038,9.038084 +L 5.1245,7.970274,5.6775,7.970274 +L 5.6775,7.970274,6.2383,7.970274 +L 6.2383,7.970274,6.8057,7.970274 + +[衡] 54 +L 1.9568,0.038097,2.4436,0.570568 +L 2.4436,0.570568,2.9406,1.094557 +L 2.9406,1.094557,3.452,1.601646 +L 3.452,1.601646,3.1017,1.977372 +L 3.1017,1.977372,2.6604,2.115718 +L 2.6604,2.115718,1.7431,2.135595 +L 5.5569,0.038097,5.8301,0.038097 +L 5.8301,0.038097,6.1138,0.038097 +L 6.1138,0.038097,6.4084,0.038097 +L 6.4084,0.038097,6.4084,1.983052 +L 6.4084,1.983052,6.4084,3.927942 +L 6.4084,3.927942,6.4084,5.872907 +L 6.4084,5.872907,6.1138,5.872907 +L 6.1138,5.872907,5.8301,5.872907 +L 5.8301,5.872907,5.5569,5.872907 +L 4.4887,0.838889,4.2785,0.915242 +L 4.2785,0.915242,4.0684,0.991541 +L 4.0684,0.991541,3.8796,1.067785 +L 3.8796,2.135595,3.2453,2.887002 +L 3.2453,2.887002,2.8005,3.163849 +L 2.8005,3.163849,2.1736,3.203317 +L 2.1736,3.203317,2.1736,4.269694 +L 2.1736,4.269694,2.1736,5.327653 +L 2.1736,5.327653,2.1736,6.368668 +L 2.1736,6.368668,2.8005,6.41801 +L 2.8005,6.41801,3.2453,6.764095 +L 3.2453,6.764095,3.8796,7.703365 +L 3.8796,7.703365,2.9616,7.871374 +L 2.9616,7.871374,2.5168,7.802233 +L 2.5168,7.802233,2.1736,7.436402 +L 4.3066,2.135595,4.5833,2.135595 +L 4.5833,2.135595,4.8529,2.135595 +L 4.8529,2.135595,5.1296,2.135595 +L 3.8796,3.203317,3.452,3.737212 +L 3.452,3.737212,3.0247,4.271149 +L 3.0247,4.271149,2.5974,4.805022 +L 4.4887,3.203317,4.5486,3.737212 +L 4.5486,3.737212,4.6218,4.271149 +L 4.6218,4.271149,4.6992,4.805022 +L 4.6992,4.805022,4.1069,4.834682 +L 4.1069,4.834682,3.7812,5.042323 +L 3.7812,5.042323,3.452,5.605933 +L 3.452,5.605933,3.7812,6.142596 +L 3.7812,6.142596,4.1069,6.340331 +L 4.1069,6.340331,4.6992,6.368668 +L 4.6992,6.368668,4.6992,6.025396 +L 4.6992,6.025396,4.6992,5.682177 +L 4.6992,5.682177,4.6992,5.338959 +L 5.5569,8.504125,5.9846,8.504125 +L 5.9846,8.504125,6.4084,8.504125 +L 6.4084,8.504125,6.8388,8.504125 +L 0.8882,9.038052,-0.3587,6.940608 +L 0.8882,0.038097,0.8882,5.605824 +A -4.8278,8.171052,6.266899,315.462,348.67668 + +[貢] 39 +L 0.2807,0.038097,0.7676,0.381282 +L 0.7676,0.381282,1.2614,0.724457 +L 1.2614,0.724457,1.7731,1.067785 +L 6.4419,0.038097,6.0146,0.381282 +L 6.0146,0.381282,5.587,0.724457 +L 5.587,0.724457,5.1565,1.067785 +L 1.3455,2.135595,1.3455,3.203317 +L 1.3455,3.203317,1.3455,4.271149 +L 1.3455,4.271149,1.3455,5.338959 +L 1.3455,5.338959,2.75,5.338959 +L 2.75,5.338959,4.1618,5.338959 +L 4.1618,5.338959,5.587,5.338959 +L 5.587,5.338959,5.587,4.271149 +L 5.587,4.271149,5.587,3.203317 +L 5.587,3.203317,5.587,2.135595 +L 5.587,2.135595,4.1618,2.135595 +L 4.1618,2.135595,2.75,2.135595 +L 2.75,2.135595,1.3455,2.135595 +L 1.7731,3.203317,2.9006,3.203317 +L 2.9006,3.203317,4.0322,3.203317 +L 4.0322,3.203317,5.1565,3.203317 +L 1.7731,4.271149,2.9006,4.271149 +L 2.9006,4.271149,4.0322,4.271149 +L 4.0322,4.271149,5.1565,4.271149 +L 0.0639,6.902541,1.1914,6.902541 +L 1.1914,6.902541,2.3262,6.902541 +L 2.3262,6.902541,3.447,6.902541 +L 3.447,6.902541,3.447,7.436402 +L 3.447,7.436402,3.447,7.970274 +L 3.447,7.970274,3.447,8.504125 +L 3.447,8.504125,2.5959,8.504125 +L 2.5959,8.504125,1.7518,8.504125 +L 1.7518,8.504125,0.9217,8.504125 +L 3.8781,6.902541,4.8623,6.902541 +L 4.8623,6.902541,5.864,6.902541 +L 5.864,6.902541,6.8657,6.902541 +L 3.8781,8.504125,4.5818,8.504125 +L 4.5818,8.504125,5.2893,8.504125 +L 5.2893,8.504125,6.0146,8.504125 + +[購] 63 +L 0.094,0.038097,0.3738,0.381282 +L 0.3738,0.381282,0.654,0.724457 +L 0.654,0.724457,0.9482,1.067785 +L 3.9043,0.038097,3.9043,0.570568 +L 3.9043,0.570568,3.9043,1.094557 +L 3.9043,1.094557,3.9043,1.601646 +L 3.9043,1.601646,3.6136,1.790954 +L 3.6136,1.790954,3.3299,1.971746 +L 3.3299,1.971746,3.0532,2.135595 +L 5.5855,0.038097,5.8625,0.038097 +L 5.8625,0.038097,6.1462,0.038097 +L 6.1462,0.038097,6.4404,0.038097 +L 6.4404,0.038097,5.7851,2.135595 +L 5.7851,2.135595,4.5627,2.300823 +L 4.5627,2.300823,3.9043,4.271149 +L 3.9043,4.271149,4.7554,4.432152 +L 4.7554,4.432152,5.1161,4.949071 +L 5.1161,4.949071,5.1932,5.872907 +L 5.1932,5.872907,4.465,5.872907 +L 4.465,5.872907,3.7575,5.872907 +L 3.7575,5.872907,3.0532,5.872907 +L 0.5209,2.135595,0.5209,4.269694 +L 0.5209,4.269694,0.5209,6.395462 +L 0.5209,6.395462,0.5209,8.504125 +L 0.5209,8.504125,1.0747,8.504125 +L 1.0747,8.504125,1.6277,8.504125 +L 1.6277,8.504125,2.1989,8.504125 +L 2.1989,8.504125,2.1989,6.395462 +L 2.1989,6.395462,2.1989,4.269694 +L 2.1989,4.269694,2.1989,2.135595 +L 2.1989,2.135595,1.6277,2.135595 +L 1.6277,2.135595,1.0747,2.135595 +L 1.0747,2.135595,0.5209,2.135595 +L 6.8674,2.135595,6.0166,3.09878 +L 6.0166,3.09878,5.2492,3.053576 +L 5.2492,3.053576,4.3354,3.203317 +L 5.1932,3.737212,5.5014,4.093148 +L 5.5014,4.093148,5.824,4.093148 +L 5.824,4.093148,6.4404,3.737212 +L 0.9482,4.271149,1.2249,4.271149 +L 1.2249,4.271149,1.4946,4.271149 +L 1.4946,4.271149,1.7751,4.271149 +L 5.803,5.872907,5.8625,6.21606 +L 5.8625,6.21606,5.9322,6.559333 +L 5.9322,6.559333,6.0166,6.902541 +L 6.0166,6.902541,5.4454,6.738769 +L 5.4454,6.738769,4.885,6.557888 +L 4.885,6.557888,4.3354,6.368668 +L 6.4404,5.872907,6.7167,5.872907 +L 6.7167,5.872907,7.0004,5.872907 +L 7.0004,5.872907,7.2947,5.872907 +L 0.9482,6.368668,1.2249,6.368668 +L 1.2249,6.368668,1.4946,6.368668 +L 1.4946,6.368668,1.7751,6.368668 +L 4.3354,7.436402,4.0444,7.625721 +L 4.0444,7.625721,3.7575,7.806425 +L 3.7575,7.806425,3.4843,7.970274 +L 6.0166,7.436402,5.4839,7.851684 +L 5.4839,7.851684,4.8675,8.266921 +L 4.8675,8.266921,4.3354,9.038084 +L 6.4404,7.970274,6.2898,8.340341 +L 6.2898,8.340341,6.1462,8.693432 +L 6.1462,8.693432,6.0166,9.038084 + +[郊] 36 +L 0.1271,0.038097,0.8315,1.018335 +L 0.8315,1.018335,1.532,1.98152 +L 1.532,1.98152,2.2321,2.936343 +L 2.2321,2.936343,1.8052,3.392614 +L 1.8052,3.392614,1.3775,3.840271 +L 1.3775,3.840271,0.9467,4.271149 +L 4.7644,0.038097,4.7644,2.860121 +L 4.7644,2.860121,4.7644,5.682177 +L 4.7644,5.682177,4.7644,8.504125 +L 4.7644,8.504125,5.4687,8.504125 +L 5.4687,8.504125,6.1762,8.504125 +L 6.1762,8.504125,6.8977,8.504125 +L 6.8977,8.504125,6.4914,5.802267 +L 6.4914,5.802267,6.9573,4.40525 +L 6.9573,4.40525,7.3247,2.135595 +L 7.3247,2.135595,6.9919,1.759858 +L 6.9919,1.759858,6.6631,1.621413 +L 6.6631,1.621413,6.0428,1.601646 +L 3.0867,1.334661,2.9326,1.601646 +L 2.9326,1.601646,2.7925,1.86862 +L 2.7925,1.86862,2.6594,2.135595 +L 0.1271,4.805022,0.4003,5.337624 +L 0.4003,5.337624,0.6735,5.861502 +L 0.6735,5.861502,0.9467,6.368668 +L 3.5105,5.338959,3.2131,5.682177 +L 3.2131,5.682177,2.9326,6.025396 +L 2.9326,6.025396,2.6594,6.368668 +L 0.1271,7.436402,0.6735,7.436402 +L 0.6735,7.436402,1.2339,7.436402 +L 1.2339,7.436402,1.8052,7.436402 +L 1.8052,7.436402,1.8052,7.970274 +L 1.8052,7.970274,1.8052,8.504125 +L 1.8052,8.504125,1.8052,9.038084 +L 2.2321,7.436402,2.6594,7.436402 +L 2.6594,7.436402,3.0867,7.436402 +L 3.0867,7.436402,3.5105,7.436402 + +[酵] 72 +L 0.5529,0.038097,0.802,3.046561 +L 0.802,3.046561,1.2009,5.978813 +L 1.2009,5.978813,1.4114,8.504125 +L 1.4114,8.504125,0.9802,8.504125 +L 0.9802,8.504125,0.5529,8.504125 +L 0.5529,8.504125,0.126,8.504125 +L 0.9802,0.038097,1.6807,0.038097 +L 1.6807,0.038097,2.3847,0.038097 +L 2.3847,0.038097,3.0852,0.038097 +L 3.0852,0.038097,3.0852,0.751448 +L 3.0852,0.751448,3.0852,1.447757 +L 3.0852,1.447757,3.0852,2.135595 +L 3.0852,2.135595,2.3847,2.135595 +L 2.3847,2.135595,1.6807,2.135595 +L 1.6807,2.135595,0.9802,2.135595 +L 4.7944,0.038097,5.0676,0.038097 +L 5.0676,0.038097,5.3513,0.038097 +L 5.3513,0.038097,5.6455,0.038097 +L 5.6455,0.038097,5.1481,2.084722 +L 5.1481,2.084722,4.0764,3.292302 +L 4.0764,3.292302,3.0852,2.669423 +L 6.0766,2.669423,5.926,2.858698 +L 5.926,2.858698,5.7751,3.039457 +L 5.7751,3.039457,5.6455,3.203317 +L 5.6455,3.203317,5.926,3.659501 +L 5.926,3.659501,6.2062,4.107267 +L 6.2062,4.107267,6.5004,4.538036 +L 6.5004,4.538036,5.926,4.641118 +L 5.926,4.641118,5.3513,4.727343 +L 5.3513,4.727343,4.7944,4.805022 +L 4.7944,4.805022,4.497,4.460369 +L 4.497,4.460369,4.2165,4.107267 +L 4.2165,4.107267,3.9363,3.737212 +L 6.5004,2.669423,6.7768,2.669423 +L 6.7768,2.669423,7.05,2.669423 +L 7.05,2.669423,7.3267,2.669423 +L 0.9802,3.203317,1.6531,4.789534 +L 1.6531,4.789534,1.9504,6.841696 +L 1.9504,6.841696,1.8352,8.504125 +L 2.2621,3.737212,2.4092,5.436437 +L 2.4092,5.436437,2.5637,6.118506 +L 2.5637,6.118506,2.8716,6.368668 +L 2.8716,6.368668,2.9346,5.491513 +L 2.9346,5.491513,3.0011,4.614368 +L 3.0011,4.614368,3.0852,3.737212 +L 3.0852,3.737212,2.812,3.737212 +L 2.812,3.737212,2.5353,3.737212 +L 2.5353,3.737212,2.2621,3.737212 +L 5.2217,5.338959,5.3513,5.605933 +L 5.3513,5.605933,5.4949,5.872907 +L 5.4949,5.872907,5.6455,6.139805 +L 5.6455,6.139805,5.0676,6.21606 +L 5.0676,6.21606,4.497,6.292359 +L 4.497,6.292359,3.9363,6.368668 +L 6.0766,6.635556,6.2062,6.902541 +L 6.2062,6.902541,6.353,7.169417 +L 6.353,7.169417,6.5004,7.436402 +L 6.5004,7.436402,6.2903,7.625721 +L 6.2903,7.625721,6.0766,7.806425 +L 6.0766,7.806425,5.8591,7.970274 +L 5.8591,7.970274,5.6455,7.625721 +L 5.6455,7.625721,5.4354,7.27252 +L 5.4354,7.27252,5.2217,6.902541 +L 6.5004,6.368668,6.7768,6.368668 +L 6.7768,6.368668,7.05,6.368668 +L 7.05,6.368668,7.3267,6.368668 +L 4.5808,7.970274,4.7944,8.340341 +L 4.7944,8.340341,5.0081,8.693432 +L 5.0081,8.693432,5.2217,9.038084 +L 2.6579,8.504125,2.9346,8.504125 +L 2.9346,8.504125,3.2183,8.504125 +L 3.2183,8.504125,3.5164,8.504125 + +[項] 54 +L 3.3289,0.038097,3.676,0.381282 +L 3.676,0.381282,4.0294,0.724457 +L 4.0294,0.724457,4.3936,1.067785 +L 7.3567,0.038097,7.0593,0.381282 +L 7.0593,0.381282,6.7756,0.724457 +L 6.7756,0.724457,6.5056,1.067785 +L 0.1592,2.135595,1.413,3.24145 +L 1.413,3.24145,1.5496,5.643968 +L 1.5496,5.643968,1.4099,7.970274 +L 1.4099,7.970274,0.9822,7.970274 +L 0.9822,7.970274,0.5619,7.970274 +L 0.5619,7.970274,0.1592,7.970274 +L 3.9733,2.135595,3.9733,3.735854 +L 3.9733,3.735854,3.9733,5.327653 +L 3.9733,5.327653,3.9733,6.902541 +L 3.9733,6.902541,4.3765,7.005546 +L 4.3765,7.005546,4.7964,7.091739 +L 4.7964,7.091739,5.2202,7.169417 +L 5.2202,7.169417,5.3498,7.539505 +L 5.3498,7.539505,5.4969,7.892608 +L 5.4969,7.892608,5.6475,8.237238 +L 5.6475,8.237238,4.947,8.340341 +L 4.947,8.340341,4.2434,8.426556 +L 4.2434,8.426556,3.5425,8.504125 +L 4.3936,2.135595,5.2346,2.135595 +L 5.2346,2.135595,6.0751,2.135595 +L 6.0751,2.135595,6.9294,2.135595 +L 6.9294,2.135595,6.9294,2.669423 +L 6.9294,2.669423,6.9294,3.203317 +L 6.9294,3.203317,6.9294,3.737212 +L 6.9294,3.737212,6.0751,3.737212 +L 6.0751,3.737212,5.2346,3.737212 +L 5.2346,3.737212,4.3936,3.737212 +L 1.8337,2.669423,2.1104,2.858698 +L 2.1104,2.858698,2.3937,3.039457 +L 2.3937,3.039457,2.6848,3.203317 +L 6.9294,4.271149,6.9294,4.641118 +L 6.9294,4.641118,6.9294,4.994318 +L 6.9294,4.994318,6.9294,5.338959 +L 6.9294,5.338959,6.0751,5.338959 +L 6.0751,5.338959,5.2346,5.338959 +L 5.2346,5.338959,4.3936,5.338959 +L 6.9294,5.872907,6.9294,6.21606 +L 6.9294,6.21606,6.9294,6.559333 +L 6.9294,6.559333,6.9294,6.902541 +L 6.9294,6.902541,6.5056,6.902541 +L 6.5056,6.902541,6.0751,6.902541 +L 6.0751,6.902541,5.6475,6.902541 +L 1.8337,7.970274,2.1104,7.970274 +L 2.1104,7.970274,2.3937,7.970274 +L 2.3937,7.970274,2.6848,7.970274 +L 6.0751,8.504125,6.5056,8.504125 +L 6.5056,8.504125,6.9294,8.504125 +L 6.9294,8.504125,7.3567,8.504125 + +[香] 39 +L 1.436,0.038097,1.436,1.2852 +L 1.436,1.2852,1.436,2.515458 +L 1.436,2.515458,1.436,3.737212 +L 1.436,3.737212,2.844,3.737212 +L 2.844,3.737212,4.2559,3.737212 +L 4.2559,3.737212,5.6775,3.737212 +L 5.6775,3.737212,5.6775,2.515458 +L 5.6775,2.515458,5.6775,1.2852 +L 5.6775,1.2852,5.6775,0.038097 +L 5.6775,0.038097,4.2559,0.038097 +L 4.2559,0.038097,2.844,0.038097 +L 2.844,0.038097,1.436,0.038097 +L 1.8672,2.135595,2.9946,2.135595 +L 2.9946,2.135595,4.1228,2.135595 +L 4.1228,2.135595,5.2537,2.135595 +L 0.3682,4.271149,1.6115,5.070616 +L 1.6115,5.070616,2.3292,5.6836 +L 2.3292,5.6836,3.1421,6.635556 +L 3.1421,6.635556,2.1435,6.738769 +L 2.1435,6.738769,1.1418,6.824874 +L 1.1418,6.824874,0.1577,6.902541 +L 6.5325,4.271149,5.597,4.984434 +L 5.597,4.984434,4.6758,5.68082 +L 4.6758,5.68082,3.7547,6.368668 +L 3.7547,6.368668,3.6951,5.861502 +L 3.6951,5.861502,3.6359,5.337624 +L 3.6359,5.337624,3.5725,4.805022 +L 3.5725,6.902541,3.5725,7.27252 +L 3.5725,7.27252,3.5725,7.625721 +L 3.5725,7.625721,3.5725,7.970274 +L 3.5725,7.970274,2.7214,7.970274 +L 2.7214,7.970274,1.8672,7.970274 +L 1.8672,7.970274,1.0123,7.970274 +L 3.9683,6.902541,4.956,6.902541 +L 4.956,6.902541,5.9546,6.902541 +L 5.9546,6.902541,6.9629,6.902541 +L 3.9683,7.970274,4.7143,8.108676 +L 4.7143,8.108676,5.3661,8.365778 +L 5.3661,8.365778,6.1052,8.504125 + +[剛] 45 +L 0.1915,0.038097,0.1915,2.860121 +L 0.1915,2.860121,0.1915,5.682177 +L 0.1915,5.682177,0.1915,8.504125 +L 0.1915,8.504125,1.5925,8.504125 +L 1.5925,8.504125,3.004,8.504125 +L 3.004,8.504125,4.426,8.504125 +L 4.426,8.504125,4.426,5.682177 +L 4.426,5.682177,4.426,2.860121 +L 4.426,2.860121,4.426,0.038097 +L 4.426,0.038097,4.1314,0.038097 +L 4.1314,0.038097,3.8477,0.038097 +L 3.8477,0.038097,3.5749,0.038097 +L 6.1348,0.038097,6.415,0.038097 +L 6.415,0.038097,6.6847,0.038097 +L 6.6847,0.038097,6.9614,0.038097 +L 6.9614,0.038097,6.9614,3.049428 +L 6.9614,3.049428,6.9614,6.052167 +L 6.9614,6.052167,6.9614,9.038084 +L 1.0426,2.135595,1.0426,3.039457 +L 1.0426,3.039457,1.0426,3.926486 +L 1.0426,3.926486,1.0426,4.805022 +L 1.4699,2.135595,1.7428,2.135595 +L 1.7428,2.135595,2.0163,2.135595 +L 2.0163,2.135595,2.2965,2.135595 +L 2.2965,2.135595,2.2965,3.392614 +L 2.2965,3.392614,2.2965,4.641118 +L 2.2965,4.641118,2.2965,5.872907 +L 2.2965,5.872907,1.7217,5.872907 +L 1.7217,5.872907,1.1652,5.872907 +L 1.1652,5.872907,0.6153,5.872907 +L 2.7164,2.135595,2.9966,2.135595 +L 2.9966,2.135595,3.2768,2.135595 +L 3.2768,2.135595,3.5749,2.135595 +L 3.5749,2.135595,3.5749,3.039457 +L 3.5749,3.039457,3.5749,3.926486 +L 3.5749,3.926486,3.5749,4.805022 +L 5.711,2.669423,5.711,4.450562 +L 5.711,4.450562,5.711,6.214572 +L 5.711,6.214572,5.711,7.970274 +L 2.7164,6.139805,2.9966,6.586127 +L 2.9966,6.586127,3.2768,7.015506 +L 3.2768,7.015506,3.5749,7.436402 +L 3.1476,5.872907,3.4239,5.872907 +L 3.4239,5.872907,3.7041,5.872907 +L 3.7041,5.872907,4.0022,5.872907 + +[拷] 54 +L 0.6485,0.038097,0.9185,0.038097 +L 0.9185,0.038097,1.1949,0.038097 +L 1.1949,0.038097,1.4649,0.038097 +L 1.4649,0.038097,1.4509,2.66093 +L 1.4509,2.66093,1.3385,3.758401 +L 1.3385,3.758401,1.0446,4.271149 +L 1.0446,4.271149,0.7644,4.107267 +L 0.7644,4.107267,0.4909,3.926486 +L 0.4909,3.926486,0.2177,3.737212 +L 4.8549,0.038097,6.0461,0.389732 +L 6.0461,0.389732,6.4941,1.326211 +L 6.4941,1.326211,6.5641,2.669423 +L 6.5641,2.669423,5.7095,2.669423 +L 5.7095,2.669423,4.8658,2.669423 +L 4.8658,2.669423,4.0319,2.669423 +L 4.0319,2.669423,4.0319,3.039457 +L 4.0319,3.039457,4.0319,3.392614 +L 4.0319,3.392614,4.0319,3.737212 +L 4.0319,3.737212,3.4543,3.573417 +L 3.4543,3.573417,2.8796,3.392614 +L 2.8796,3.392614,2.323,3.203317 +L 1.8957,4.271149,1.3879,5.512626 +L 1.3879,5.512626,1.1739,6.499934 +L 1.1739,6.499934,0.2177,6.902541 +L 4.2459,4.271149,4.4346,4.727343 +L 4.4346,4.727343,4.6451,5.17511 +L 4.6451,5.17511,4.8549,5.605933 +L 4.8549,5.605933,4.1544,5.708949 +L 4.1544,5.708949,3.4543,5.795175 +L 3.4543,5.795175,2.7535,5.872907 +L 4.8549,4.271149,5.5978,4.409573 +L 5.5978,4.409573,6.2458,4.666565 +L 6.2458,4.666565,6.9918,4.805022 +L 5.4962,5.872907,5.7095,6.21606 +L 5.7095,6.21606,5.92,6.559333 +L 5.92,6.559333,6.1368,6.902541 +L 6.1368,6.902541,5.8045,7.278211 +L 5.8045,7.278211,5.4714,7.416537 +L 5.4714,7.416537,4.8549,7.436402 +L 4.8549,7.436402,4.7148,7.091739 +L 4.7148,7.091739,4.5821,6.738769 +L 4.5821,6.738769,4.4592,6.368668 +L 6.1368,5.872907,6.5641,5.872907 +L 6.5641,5.872907,6.9918,5.872907 +L 6.9918,5.872907,7.4191,5.872907 +L 1.8957,6.902541,1.5945,7.337534 +L 1.5945,7.337534,1.4821,7.891239 +L 1.4821,7.891239,1.4649,9.038084 +L 3.1738,7.436402,4.0249,7.597383 +L 4.0249,7.597383,4.386,8.11439 +L 4.386,8.11439,4.4592,9.038084 +L 6.5641,7.436402,6.6941,7.806425 +L 6.6941,7.806425,6.8373,8.15957 +L 6.8373,8.15957,6.9918,8.504125 + +[豪] 51 +L 2.7803,0.038097,2.4161,0.413811 +L 2.4161,0.413811,1.8623,0.552169 +L 1.8623,0.552169,0.647,0.572002 +L 3.3933,0.038097,3.8346,0.451933 +L 3.8346,0.451933,3.9463,0.857353 +L 3.9463,0.857353,3.8206,1.601646 +L 3.8206,1.601646,3.029,1.364421 +L 3.029,1.364421,2.1706,1.482968 +L 2.1706,1.482968,1.0708,1.601646 +L 6.1672,0.572002,4.388,2.014038 +L 4.388,2.014038,2.9726,2.574781 +L 2.9726,2.574781,1.0708,2.669423 +L 5.5259,2.135595,5.8727,2.324804 +L 5.8727,2.324804,6.2303,2.505607 +L 6.2303,2.505607,6.5945,2.669423 +L 2.7803,3.470314,2.2021,3.573417 +L 2.2021,3.573417,1.6315,3.659501 +L 1.6315,3.659501,1.0708,3.737212 +L 0.2165,3.737212,0.2165,4.107267 +L 0.2165,4.107267,0.2165,4.460369 +L 0.2165,4.460369,0.2165,4.805022 +L 0.2165,4.805022,2.4753,4.805022 +L 2.4753,4.805022,4.7414,4.805022 +L 4.7414,4.805022,7.0215,4.805022 +L 7.0215,4.805022,7.0215,4.460369 +L 7.0215,4.460369,7.0215,4.107267 +L 7.0215,4.107267,7.0215,3.737212 +L 4.0339,3.737212,4.7344,3.737212 +L 4.7344,3.737212,5.4454,3.737212 +L 5.4454,3.737212,6.1672,3.737212 +L 1.5016,5.872907,1.5016,6.21606 +L 1.5016,6.21606,1.5016,6.559333 +L 1.5016,6.559333,1.5016,6.902541 +L 1.5016,6.902541,2.9029,6.902541 +L 2.9029,6.902541,4.3141,6.902541 +L 4.3141,6.902541,5.7434,6.902541 +L 5.7434,6.902541,5.7434,6.559333 +L 5.7434,6.559333,5.7434,6.21606 +L 5.7434,6.21606,5.7434,5.872907 +L 5.7434,5.872907,4.3141,5.872907 +L 4.3141,5.872907,2.9029,5.872907 +L 2.9029,5.872907,1.5016,5.872907 +L 0.2165,7.970274,1.3478,7.970274 +L 1.3478,7.970274,2.4753,7.970274 +L 2.4753,7.970274,3.6031,7.970274 +L 3.6031,7.970274,3.6031,8.340341 +L 3.6031,8.340341,3.6031,8.693432 +L 3.6031,8.693432,3.6031,9.038084 +L 4.0339,7.970274,5.0181,7.970274 +L 5.0181,7.970274,6.0127,7.970274 +L 6.0127,7.970274,7.0215,7.970274 + +[克] 45 +L 0.4634,0.038097,1.2237,0.751448 +L 1.2237,0.751448,1.9978,1.447757 +L 1.9978,1.447757,2.7823,2.135595 +L 2.7823,2.135595,2.7823,2.669423 +L 2.7823,2.669423,2.7823,3.203317 +L 2.7823,3.203317,2.7823,3.737212 +L 2.7823,3.737212,2.355,3.737212 +L 2.355,3.737212,1.9347,3.737212 +L 1.9347,3.737212,1.5285,3.737212 +L 1.5285,3.737212,1.5285,4.614368 +L 1.5285,4.614368,1.5285,5.491513 +L 1.5285,5.491513,1.5285,6.368668 +L 1.5285,6.368668,2.2321,6.368668 +L 2.2321,6.368668,2.9326,6.368668 +L 2.9326,6.368668,3.6369,6.368668 +L 3.6369,6.368668,3.0485,7.953342 +L 3.0485,7.953342,1.7067,8.139716 +L 1.7067,8.139716,0.2501,7.970274 +L 4.915,0.038097,4.6173,0.531045 +L 4.6173,0.531045,4.509,1.489984 +L 4.509,1.489984,4.4912,3.737212 +L 4.4912,3.737212,4.0607,3.737212 +L 4.0607,3.737212,3.6369,3.737212 +L 3.6369,3.737212,3.2061,3.737212 +L 5.3423,0.038097,5.8957,0.038097 +L 5.8957,0.038097,6.4494,0.038097 +L 6.4494,0.038097,7.02,0.038097 +L 7.02,0.038097,7.02,0.570568 +L 7.02,0.570568,7.02,1.094557 +L 7.02,1.094557,7.02,1.601646 +L 4.915,3.737212,5.192,3.737212 +L 5.192,3.737212,5.4649,3.737212 +L 5.4649,3.737212,5.7419,3.737212 +L 5.7419,3.737212,5.7419,4.614368 +L 5.7419,4.614368,5.7419,5.491513 +L 5.7419,5.491513,5.7419,6.368668 +L 5.7419,6.368668,5.1672,6.368668 +L 5.1672,6.368668,4.6138,6.368668 +L 4.6138,6.368668,4.0607,6.368668 +L 4.0607,7.970274,3.9133,8.340341 +L 3.9133,8.340341,3.7662,8.693432 +L 3.7662,8.693432,3.6369,9.038084 +L 4.4912,7.970274,5.3213,7.970274 +L 5.3213,7.970274,6.1657,7.970274 +L 6.1657,7.970274,7.02,7.970274 + +[酷] 63 +L 0.6759,0.038097,0.9245,3.046561 +L 0.9245,3.046561,1.3238,5.978813 +L 1.3238,5.978813,1.534,8.504125 +L 1.534,8.504125,1.1032,8.504125 +L 1.1032,8.504125,0.6829,8.504125 +L 0.6829,8.504125,0.2797,8.504125 +L 1.1032,0.038097,1.8033,0.038097 +L 1.8033,0.038097,2.5143,0.038097 +L 2.5143,0.038097,3.2393,0.038097 +L 3.2393,0.038097,3.2393,0.751448 +L 3.2393,0.751448,3.2393,1.447757 +L 3.2393,1.447757,3.2393,2.135595 +L 3.2393,2.135595,2.5143,2.135595 +L 2.5143,2.135595,1.8033,2.135595 +L 1.8033,2.135595,1.1032,2.135595 +L 4.4897,0.038097,4.4897,1.104462 +L 4.4897,1.104462,4.4897,2.162301 +L 4.4897,2.162301,4.4897,3.203317 +L 4.4897,3.203317,5.3443,3.203317 +L 5.3443,3.203317,6.1989,3.203317 +L 6.1989,3.203317,7.0538,3.203317 +L 7.0538,3.203317,7.0538,2.162301 +L 7.0538,2.162301,7.0538,1.104462 +L 7.0538,1.104462,7.0538,0.038097 +L 7.0538,0.038097,6.1989,0.038097 +L 6.1989,0.038097,5.3443,0.038097 +L 5.3443,0.038097,4.4897,0.038097 +L 3.2393,2.669423,3.2393,3.039457 +L 3.2393,3.039457,3.2393,3.392614 +L 3.2393,3.392614,3.2393,3.737212 +L 3.2393,3.737212,2.9416,3.737212 +L 2.9416,3.737212,2.6618,3.737212 +L 2.6618,3.737212,2.3847,3.737212 +L 2.3847,3.737212,2.3672,5.258403 +L 2.3672,5.258403,2.259,5.940582 +L 2.259,5.940582,1.9543,6.368668 +L 1.9543,6.368668,1.6422,5.446287 +L 1.6422,5.446287,1.4215,4.151059 +L 1.4215,4.151059,1.1032,3.203317 +L 3.2393,4.271149,2.9069,5.94484 +L 2.9069,5.94484,2.4302,7.160967 +L 2.4302,7.160967,1.9543,8.504125 +L 4.0939,4.805022,4.6441,4.805022 +L 4.6441,4.805022,5.2042,4.805022 +L 5.2042,4.805022,5.7681,4.805022 +L 5.7681,4.805022,5.5124,6.522557 +L 5.5124,6.522557,4.882,7.002754 +L 4.882,7.002754,4.0939,5.872907 +L 6.1989,4.805022,6.6265,4.805022 +L 6.6265,4.805022,7.0538,4.805022 +L 7.0538,4.805022,7.4811,4.805022 +L 6.1989,6.902541,5.8942,7.337534 +L 5.8942,7.337534,5.7856,7.891239 +L 5.7856,7.891239,5.7681,9.038084 +L 6.6265,6.902541,6.9029,6.902541 +L 6.9029,6.902541,7.1831,6.902541 +L 7.1831,6.902541,7.4811,6.902541 +L 4.4897,7.436402,4.4897,7.806425 +L 4.4897,7.806425,4.4897,8.15957 +L 4.4897,8.15957,4.4897,8.504125 +L 2.812,8.504125,3.0855,8.504125 +L 3.0855,8.504125,3.3692,8.504125 +L 3.3692,8.504125,3.6631,8.504125 + +[獄] 57 +L 0.2817,0.038097,0.9122,0.076274 +L 0.9122,0.076274,1.3535,0.34315 +L 1.3535,0.34315,1.9913,1.067785 +L 1.9913,1.067785,1.9069,2.505607 +L 1.9069,2.505607,1.8372,3.926486 +L 1.8372,3.926486,1.7741,5.338959 +L 1.7741,5.338959,1.2628,4.641118 +L 1.2628,4.641118,0.7686,3.926486 +L 0.7686,3.926486,0.2817,3.203317 +L 4.9473,0.038097,5.7389,1.83607 +L 5.7389,1.83607,6.1277,3.540965 +L 6.1277,3.540965,6.2292,5.338959 +L 6.2292,5.338959,5.9312,5.528179 +L 5.9312,5.528179,5.651,5.708949 +L 5.651,5.708949,5.3746,5.872907 +L 7.4796,0.038097,6.9014,1.177871 +L 6.9014,1.177871,6.6842,1.860061 +L 6.6842,1.860061,6.6562,2.669423 +L 2.8105,1.067785,2.8105,1.601646 +L 2.8105,1.601646,2.8105,2.135595 +L 2.8105,2.135595,2.8105,2.669423 +L 2.8105,2.669423,3.3677,2.669423 +L 3.3677,2.669423,3.9421,2.669423 +L 3.9421,2.669423,4.5236,2.669423 +L 4.5236,2.669423,4.5236,2.135595 +L 4.5236,2.135595,4.5236,1.601646 +L 4.5236,1.601646,4.5236,1.067785 +L 4.5236,1.067785,3.9421,1.067785 +L 3.9421,1.067785,3.3677,1.067785 +L 3.3677,1.067785,2.8105,1.067785 +L 2.8105,4.271149,3.3677,4.271149 +L 3.3677,4.271149,3.9421,4.271149 +L 3.9421,4.271149,4.5236,4.271149 +L 2.8105,5.338959,3.3677,5.338959 +L 3.3677,5.338959,3.9421,5.338959 +L 3.9421,5.338959,4.5236,5.338959 +L 1.5601,5.872907,1.5426,6.617222 +L 1.5426,6.617222,1.434,7.022543 +L 1.434,7.022543,1.1328,7.436402 +L 1.1328,7.436402,0.8351,7.091739 +L 0.8351,7.091739,0.5553,6.738769 +L 0.5553,6.738769,0.2817,6.368668 +L 6.6562,5.872907,6.3518,6.320554 +L 6.3518,6.320554,6.2468,7.141211 +L 6.2468,7.141211,6.2292,9.038084 +L 2.4112,6.902541,3.2522,6.902541 +L 3.2522,6.902541,4.0924,6.902541 +L 4.0924,6.902541,4.9473,6.902541 +L 1.1328,7.970274,0.8351,8.340341 +L 0.8351,8.340341,0.5553,8.693432 +L 0.5553,8.693432,0.2817,9.038084 +L 1.5601,7.970274,1.8372,8.340341 +L 1.8372,8.340341,2.1174,8.693432 +L 2.1174,8.693432,2.4112,9.038084 +L 2.4112,9.038084,2.758,8.662424 +L 2.758,8.662424,3.3043,8.524077 +L 3.3043,8.524077,4.5236,8.504125 + +[腰] 72 +L 0.3083,0.305038,0.613,1.117224 +L 0.613,1.117224,0.7219,3.242873 +L 0.7219,3.242873,0.7394,8.504125 +L 0.7394,8.504125,1.1422,8.504125 +L 1.1422,8.504125,1.5621,8.504125 +L 1.5621,8.504125,1.9859,8.504125 +L 1.9859,8.504125,1.9859,5.682177 +L 1.9859,5.682177,1.9859,2.860121 +L 1.9859,2.860121,1.9859,0.038097 +L 1.9859,0.038097,1.7131,0.038097 +L 1.7131,0.038097,1.4395,0.038097 +L 1.4395,0.038097,1.1593,0.038097 +L 3.2717,0.038097,3.8913,0.305038 +L 3.8913,0.305038,4.5221,0.572002 +L 4.5221,0.572002,5.1626,0.838889 +L 5.1626,0.838889,4.998,1.385534 +L 4.998,1.385534,4.7322,1.652432 +L 4.7322,1.652432,4.1228,1.86862 +L 4.1228,1.86862,4.2555,2.23872 +L 4.2555,2.23872,4.3991,2.591811 +L 4.3991,2.591811,4.5501,2.936343 +L 4.5501,2.936343,3.9718,3.039457 +L 3.9718,3.039457,3.4009,3.125651 +L 3.4009,3.125651,2.8405,3.203317 +L 7.0855,0.038097,6.655,0.484386 +L 6.655,0.484386,6.2277,0.913797 +L 6.2277,0.913797,5.8004,1.334661 +L 5.8004,1.334661,5.9297,1.971746 +L 5.9297,1.971746,6.0768,2.591811 +L 6.0768,2.591811,6.2277,3.203317 +L 6.2277,3.203317,5.8039,3.203317 +L 5.8039,3.203317,5.3833,3.203317 +L 5.3833,3.203317,4.9805,3.203317 +L 4.9805,3.203317,4.9805,3.926486 +L 4.9805,3.926486,4.9805,4.641118 +L 4.9805,4.641118,4.9805,5.338959 +L 4.9805,5.338959,4.3991,5.338959 +L 4.3991,5.338959,3.8247,5.338959 +L 3.8247,5.338959,3.2717,5.338959 +L 3.2717,5.338959,3.2717,5.871397 +L 3.2717,5.871397,3.2717,6.395462 +L 3.2717,6.395462,3.2717,6.902541 +L 3.2717,6.902541,4.1154,7.063511 +L 4.1154,7.063511,4.4762,7.580463 +L 4.4762,7.580463,4.5501,8.504125 +L 4.5501,8.504125,3.9718,8.504125 +L 3.9718,8.504125,3.4009,8.504125 +L 3.4009,8.504125,2.8405,8.504125 +L 6.655,3.203317,6.9317,3.203317 +L 6.9317,3.203317,7.2154,3.203317 +L 7.2154,3.203317,7.5058,3.203317 +L 5.5899,5.338959,5.7125,6.083274 +L 5.7125,6.083274,5.604,6.488682 +L 5.604,6.488682,5.1626,6.902541 +L 5.1626,6.902541,4.9455,6.559333 +L 4.9455,6.559333,4.7424,6.21606 +L 4.7424,6.21606,4.5501,5.872907 +L 6.2277,5.338959,6.5041,5.338959 +L 6.5041,5.338959,6.7878,5.338959 +L 6.7878,5.338959,7.0855,5.338959 +L 7.0855,5.338959,7.0855,5.871397 +L 7.0855,5.871397,7.0855,6.395462 +L 7.0855,6.395462,7.0855,6.902541 +L 7.0855,6.902541,6.1293,7.088958 +L 6.1293,7.088958,5.825,7.631379 +L 5.825,7.631379,5.8004,8.504125 +L 5.8004,8.504125,5.5269,8.504125 +L 5.5269,8.504125,5.2506,8.504125 +L 5.2506,8.504125,4.9805,8.504125 +L 6.2277,8.504125,6.655,8.504125 +L 6.655,8.504125,7.0855,8.504125 +L 7.0855,8.504125,7.5058,8.504125 + +[込] 33 +L 0.5239,0.038097,0.8671,0.381282 +L 0.8671,0.381282,1.2247,0.724457 +L 1.2247,0.724457,1.5925,1.067785 +L 1.5925,1.067785,1.5925,2.324804 +L 1.5925,2.324804,1.5925,3.573417 +L 1.5925,3.573417,1.5925,4.805022 +L 1.5925,4.805022,1.1652,4.805022 +L 1.1652,4.805022,0.734,4.805022 +L 0.734,4.805022,0.3141,4.805022 +L 2.874,0.038097,2.5728,0.227317 +L 2.5728,0.227317,2.2926,0.408229 +L 2.2926,0.408229,2.0198,0.572002 +L 3.2978,0.038097,4.7023,0.038097 +L 4.7023,0.038097,6.1138,0.038097 +L 6.1138,0.038097,7.5432,0.038097 +L 2.874,1.601646,4.247,3.891199 +L 4.247,3.891199,5.1051,5.858712 +L 5.1051,5.858712,5.4063,8.504125 +L 5.4063,8.504125,4.8354,8.504125 +L 4.8354,8.504125,4.275,8.504125 +L 4.275,8.504125,3.7286,8.504125 +L 7.5432,1.601646,6.9614,2.858698 +L 6.9614,2.858698,6.394,4.107267 +L 6.394,4.107267,5.8336,5.338959 +L 1.5925,7.436402,1.2944,7.806425 +L 1.2944,7.806425,1.0142,8.15957 +L 1.0142,8.15957,0.734,8.504125 +L 5.3927,0.022916,7.5257,0.022916 +L 1.5746,1.090562,0.5239,0.038097 +L 0.3243,4.789807,1.5746,4.789807 +L 1.5746,1.090562,1.5746,4.789807 +L 0.7516,8.527219,1.5746,7.459343 +A 5.3927,7.385912,7.362973,238.75988,270 + +[墾] 60 +L 0.3403,0.038097,1.4719,0.038097 +L 1.4719,0.038097,2.5958,0.038097 +L 2.5958,0.038097,3.7271,0.038097 +L 3.7271,0.038097,3.3072,1.511294 +L 3.3072,1.511294,2.3262,1.730164 +L 2.3262,1.730164,1.1914,1.601646 +L 4.1544,0.038097,5.132,0.038097 +L 5.132,0.038097,6.1158,0.038097 +L 6.1158,0.038097,7.1179,0.038097 +L 4.1544,1.601646,4.0038,1.971746 +L 4.0038,1.971746,3.8571,2.324804 +L 3.8571,2.324804,3.7271,2.669423 +L 4.5821,1.601646,5.1421,1.601646 +L 5.1421,1.601646,5.713,1.601646 +L 5.713,1.601646,6.2913,1.601646 +L 2.2316,3.203317,2.4452,3.392614 +L 2.4452,3.392614,2.6627,3.573417 +L 2.6627,3.573417,2.8725,3.737212 +L 2.8725,3.737212,2.7888,4.271149 +L 2.7888,4.271149,2.7223,4.805022 +L 2.7223,4.805022,2.6627,5.338959 +L 2.6627,5.338959,1.8747,4.805022 +L 1.8747,4.805022,1.1077,4.271149 +L 1.1077,4.271149,0.3403,3.737212 +L 7.1179,3.203317,6.6867,3.737212 +L 6.6867,3.737212,6.2668,4.271149 +L 6.2668,4.271149,5.864,4.805022 +L 5.864,4.805022,5.3526,4.460369 +L 5.3526,4.460369,4.8549,4.107267 +L 4.8549,4.107267,4.3684,3.737212 +L 4.3684,3.737212,4.2875,5.337624 +L 4.2875,5.337624,4.2178,6.92929 +L 4.2178,6.92929,4.1544,8.504125 +L 4.1544,8.504125,4.9884,8.504125 +L 4.9884,8.504125,5.8356,8.504125 +L 5.8356,8.504125,6.6867,8.504125 +L 6.6867,8.504125,6.6867,7.806425 +L 6.6867,7.806425,6.6867,7.091739 +L 6.6867,7.091739,6.6867,6.368668 +L 6.6867,6.368668,6.2594,6.292359 +L 6.2594,6.292359,5.843,6.21606 +L 5.843,6.21606,5.4367,6.139805 +L 5.4367,6.139805,5.5628,5.872907 +L 5.5628,5.872907,5.713,5.605933 +L 5.713,5.605933,5.864,5.338959 +L 0.3403,5.338959,0.9606,5.358738 +L 0.9606,5.358738,1.2898,5.497183 +L 1.2898,5.497183,1.6222,5.872907 +L 1.6222,5.872907,1.2898,6.221686 +L 1.2898,6.221686,0.9606,6.350248 +L 0.9606,6.350248,0.3403,6.368668 +L 2.2316,6.139805,1.4719,7.249962 +L 1.4719,7.249962,0.9816,7.724501 +L 0.9816,7.724501,0.3403,7.970274 +L 2.4452,7.703365,2.1721,7.970274 +L 2.1721,7.970274,1.8957,8.237238 +L 1.8957,8.237238,1.6222,8.504125 +L 4.5821,7.436402,5.1421,7.436402 +L 5.1421,7.436402,5.713,7.436402 +L 5.713,7.436402,6.2913,7.436402 + +[恨] 45 +L 1.6207,0.038097,1.6207,3.049428 +L 1.6207,3.049428,1.6207,6.052167 +L 1.6207,6.052167,1.6207,9.038084 +L 2.9029,0.038097,3.1793,0.038097 +L 3.1793,0.038097,3.463,0.038097 +L 3.463,0.038097,3.761,0.038097 +L 3.761,0.038097,3.761,2.860121 +L 3.761,2.860121,3.761,5.682177 +L 3.761,5.682177,3.761,8.504125 +L 3.761,8.504125,4.7343,8.504125 +L 4.7343,8.504125,5.7189,8.504125 +L 5.7189,8.504125,6.7167,8.504125 +L 6.7167,8.504125,6.7167,7.463284 +L 6.7167,7.463284,6.7167,6.405335 +L 6.7167,6.405335,6.7167,5.338959 +L 6.7167,5.338959,6.2863,5.338959 +L 6.2863,5.338959,5.866,5.338959 +L 5.866,5.338959,5.4352,5.338959 +L 5.4352,5.338959,5.4352,4.641118 +L 5.4352,4.641118,5.4352,3.926486 +L 5.4352,3.926486,5.4352,3.203317 +L 5.4352,3.203317,5.652,3.039457 +L 5.652,3.039457,5.866,2.858698 +L 5.866,2.858698,6.0758,2.669423 +L 6.0758,2.669423,6.5665,3.203317 +L 6.5665,3.203317,7.0603,3.737212 +L 7.0603,3.737212,7.5748,4.271149 +L 7.5748,0.038097,6.9938,0.751448 +L 6.9938,0.751448,6.419,1.447757 +L 6.419,1.447757,5.866,2.135595 +L 4.3981,0.572002,4.7343,0.751448 +L 4.7343,0.751448,5.0811,0.913797 +L 5.0811,0.913797,5.4352,1.067785 +L 0.3703,5.071974,0.6715,5.693385 +L 0.6715,5.693385,0.7804,6.30639 +L 0.7804,6.30639,0.7979,7.436402 +L 4.1848,5.338959,4.4615,5.338959 +L 4.4615,5.338959,4.7343,5.338959 +L 4.7343,5.338959,5.0079,5.338959 +L 2.4753,6.635556,2.3247,6.902541 +L 2.3247,6.902541,2.1814,7.169417 +L 2.1814,7.169417,2.0518,7.436402 +L 4.1848,6.902541,4.885,6.902541 +L 4.885,6.902541,5.5854,6.902541 +L 5.5854,6.902541,6.2863,6.902541 + +[懇] 63 +L 0.3726,0.038097,0.6455,0.570568 +L 0.6455,0.570568,0.9292,1.094557 +L 0.9292,1.094557,1.2237,1.601646 +L 2.9326,0.038097,2.6349,0.471711 +L 2.6349,0.471711,2.5263,1.015544 +L 2.5263,1.015544,2.5088,2.135595 +L 3.3599,0.038097,4.1935,0.038097 +L 4.1935,0.038097,5.0411,0.038097 +L 5.0411,0.038097,5.8922,0.038097 +L 5.8922,0.038097,5.8922,0.381282 +L 5.8922,0.381282,5.8922,0.724457 +L 5.8922,0.724457,5.8922,1.067785 +L 7.5698,0.838889,7.4297,1.104462 +L 7.4297,1.104462,7.297,1.361531 +L 7.297,1.361531,7.1744,1.601646 +L 2.2955,3.203317,2.5088,3.392614 +L 2.5088,3.392614,2.7189,3.573417 +L 2.7189,3.573417,2.9326,3.737212 +L 2.9326,3.737212,2.852,4.271149 +L 2.852,4.271149,2.7823,4.805022 +L 2.7823,4.805022,2.7189,5.338959 +L 2.7189,5.338959,1.9312,4.805022 +L 1.9312,4.805022,1.1393,4.271149 +L 1.1393,4.271149,0.3726,3.737212 +L 4.1833,3.203317,4.1833,4.984434 +L 4.1833,4.984434,4.1833,6.748553 +L 4.1833,6.748553,4.1833,8.504125 +L 4.1833,8.504125,5.0376,8.504125 +L 5.0376,8.504125,5.8922,8.504125 +L 5.8922,8.504125,6.7433,8.504125 +L 6.7433,8.504125,6.7433,7.806425 +L 6.7433,7.806425,6.7433,7.091739 +L 6.7433,7.091739,6.7433,6.368668 +L 6.7433,6.368668,6.3233,6.368668 +L 6.3233,6.368668,5.8922,6.368668 +L 5.8922,6.368668,5.4649,6.368668 +L 5.4649,6.368668,5.4967,5.604402 +L 5.4967,5.604402,5.7209,5.060656 +L 5.7209,5.060656,6.3233,4.271149 +L 6.3233,4.271149,6.5961,4.641118 +L 6.5961,4.641118,6.8798,4.994318 +L 6.8798,4.994318,7.1744,5.338959 +L 4.6138,3.203317,4.8873,3.392614 +L 4.8873,3.392614,5.1671,3.573417 +L 5.1671,3.573417,5.4649,3.737212 +L 0.3726,5.338959,0.9856,5.358738 +L 0.9856,5.358738,1.3215,5.497183 +L 1.3215,5.497183,1.6545,5.872907 +L 1.6545,5.872907,1.3215,6.221686 +L 1.3215,6.221686,0.9856,6.350248 +L 0.9856,6.350248,0.3726,6.368668 +L 2.0783,5.872907,2.2111,6.052167 +L 2.2111,6.052167,2.3547,6.214572 +L 2.3547,6.214572,2.5088,6.368668 +L 2.5088,6.368668,1.574,7.317768 +L 1.574,7.317768,1.0167,7.73295 +L 1.0167,7.73295,0.3726,7.970274 +L 2.5088,7.703365,2.2111,7.970274 +L 2.2111,7.970274,1.9312,8.237238 +L 1.9312,8.237238,1.6545,8.504125 +L 4.6138,7.436402,5.1671,7.436402 +L 5.1671,7.436402,5.7419,7.436402 +L 5.7419,7.436402,6.3233,7.436402 + +[昆] 39 +L 0.4023,0.038097,0.6794,0.038097 +L 0.6794,0.038097,0.9596,0.038097 +L 0.9596,0.038097,1.2569,0.038097 +L 1.2569,0.038097,1.2569,1.449082 +L 1.2569,1.449082,1.2569,2.860121 +L 1.2569,2.860121,1.2569,4.271149 +L 1.8663,0.038097,2.3532,0.227317 +L 2.3532,0.227317,2.8505,0.408229 +L 2.8505,0.408229,3.3619,0.572002 +L 5.0714,0.038097,4.7702,0.550823 +L 4.7702,0.550823,4.6578,1.648207 +L 4.6578,1.648207,4.6441,4.271149 +L 5.4952,0.038097,6.1989,0.038097 +L 6.1989,0.038097,6.9029,0.038097 +L 6.9029,0.038097,7.6037,0.038097 +L 7.6037,0.038097,7.6037,0.381282 +L 7.6037,0.381282,7.6037,0.724457 +L 7.6037,0.724457,7.6037,1.067785 +L 1.6807,2.669423,2.2306,2.669423 +L 2.2306,2.669423,2.791,2.669423 +L 2.791,2.669423,3.3619,2.669423 +L 5.0714,2.669423,5.9821,2.689157 +L 5.9821,2.689157,6.5246,2.827581 +L 6.5246,2.827581,7.1726,3.203317 +L 1.2569,5.338959,1.2569,6.405335 +L 1.2569,6.405335,1.2569,7.463284 +L 1.2569,7.463284,1.2569,8.504125 +L 1.2569,8.504125,3.0855,8.504125 +L 3.0855,8.504125,4.917,8.504125 +L 4.917,8.504125,6.7491,8.504125 +L 6.7491,8.504125,6.7491,7.463284 +L 6.7491,7.463284,6.7491,6.405335 +L 6.7491,6.405335,6.7491,5.338959 +L 6.7491,5.338959,4.917,5.338959 +L 4.917,5.338959,3.0855,5.338959 +L 3.0855,5.338959,1.2569,5.338959 +L 1.6807,6.902541,3.2218,6.902541 +L 3.2218,6.902541,4.7629,6.902541 +L 4.7629,6.902541,6.318,6.902541 + +[紺] 51 +L 1.6827,0.038097,1.6827,1.638422 +L 1.6827,1.638422,1.6827,3.230177 +L 1.6827,3.230177,1.6827,4.805022 +L 1.6827,4.805022,1.2589,4.805022 +L 1.2589,4.805022,0.839,4.805022 +L 0.839,4.805022,0.4288,4.805022 +L 4.2469,0.038097,4.2469,2.162301 +L 4.2469,2.162301,4.2469,4.269694 +L 4.2469,4.269694,4.2469,6.368668 +L 4.2469,6.368668,3.9488,6.557888 +L 3.9488,6.557888,3.6686,6.738769 +L 3.6686,6.738769,3.3923,6.902541 +L 4.6461,0.038097,5.3463,0.038097 +L 5.3463,0.038097,6.0573,0.038097 +L 6.0573,0.038097,6.7756,0.038097 +L 6.7756,0.038097,6.7756,1.2852 +L 6.7756,1.2852,6.7756,2.515458 +L 6.7756,2.515458,6.7756,3.737212 +L 6.7756,3.737212,6.0573,3.737212 +L 6.0573,3.737212,5.3463,3.737212 +L 5.3463,3.737212,4.6461,3.737212 +L 0.4288,1.334661,0.5553,1.971746 +L 0.5553,1.971746,0.6845,2.591811 +L 0.6845,2.591811,0.8281,3.203317 +L 2.965,1.86862,2.8105,2.324804 +L 2.8105,2.324804,2.6704,2.772472 +L 2.6704,2.772472,2.5412,3.203317 +L 2.965,4.538036,2.8105,4.805022 +L 2.8105,4.805022,2.6704,5.071974 +L 2.6704,5.071974,2.5412,5.338959 +L 2.5412,5.338959,2.3867,5.17511 +L 2.3867,5.17511,2.2431,4.994318 +L 2.2431,4.994318,2.11,4.805022 +L 6.7756,4.271149,6.1242,6.896871 +L 6.1242,6.896871,4.9015,7.073427 +L 4.9015,7.073427,4.2469,9.038084 +L 1.2554,5.338959,1.3853,5.605933 +L 1.3853,5.605933,1.5325,5.872907 +L 1.5325,5.872907,1.6827,6.139805 +L 1.6827,6.139805,1.3853,6.482991 +L 1.3853,6.482991,1.1052,6.82622 +L 1.1052,6.82622,0.8281,7.169417 +L 0.8281,7.169417,1.1052,7.806425 +L 1.1052,7.806425,1.3853,8.426556 +L 1.3853,8.426556,1.6827,9.038084 +L 2.11,7.169417,2.2431,7.436402 +L 2.2431,7.436402,2.3867,7.703365 +L 2.3867,7.703365,2.5412,7.970274 +L 7.2061,6.902541,6.9014,7.337534 +L 6.9014,7.337534,6.7931,7.891239 +L 6.7931,7.891239,6.7756,9.038084 + +[魂] 66 +L 2.3575,0.038097,3.3449,1.389792 +L 3.3449,1.389792,4.0103,2.588911 +L 4.0103,2.588911,4.2453,4.271149 +L 4.2453,4.271149,3.9473,4.271149 +L 3.9473,4.271149,3.6671,4.271149 +L 3.6671,4.271149,3.3943,4.271149 +L 3.3943,4.271149,3.3943,5.518317 +L 3.3943,5.518317,3.3943,6.748553 +L 3.3943,6.748553,3.3943,7.970274 +L 3.3943,7.970274,4.308,8.187809 +L 4.308,8.187809,4.7532,8.464668 +L 4.7532,8.464668,5.1031,9.038084 +L 5.9542,0.038097,5.653,0.550823 +L 5.653,0.550823,5.5413,1.648207 +L 5.5413,1.648207,5.5234,4.271149 +L 5.5234,4.271149,5.233,4.271149 +L 5.233,4.271149,4.9493,4.271149 +L 4.9493,4.271149,4.6723,4.271149 +L 6.3815,0.038097,6.7843,0.038097 +L 6.7843,0.038097,7.2046,0.038097 +L 7.2046,0.038097,7.6284,0.038097 +L 7.6284,0.038097,7.6284,0.381282 +L 7.6284,0.381282,7.6284,0.724457 +L 7.6284,0.724457,7.6284,1.067785 +L 0.8585,2.135595,0.9702,3.460398 +L 0.9702,3.460398,1.1769,4.547931 +L 1.1769,4.547931,1.2893,5.872907 +L 1.2893,5.872907,0.9912,5.872907 +L 0.9912,5.872907,0.711,5.872907 +L 0.711,5.872907,0.4347,5.872907 +L 1.2893,2.135595,1.615,2.511244 +L 1.615,2.511244,1.9512,2.649689 +L 1.9512,2.649689,2.5673,2.669423 +L 2.5673,2.669423,2.5533,3.440619 +L 2.5533,3.440619,2.4416,3.855857 +L 2.4416,3.855857,2.1404,4.271149 +L 6.3815,2.402482,6.5146,3.039457 +L 6.5146,3.039457,6.655,3.659501 +L 6.655,3.659501,6.8126,4.271149 +L 6.8126,4.271149,6.5146,4.271149 +L 6.5146,4.271149,6.2312,4.271149 +L 6.2312,4.271149,5.9542,4.271149 +L 6.8126,2.135595,7.103,2.491379 +L 7.103,2.491379,7.317,2.491379 +L 7.317,2.491379,7.6284,2.135595 +L 5.1031,4.805022,4.9493,5.956179 +L 4.9493,5.956179,4.5182,6.336139 +L 4.5182,6.336139,3.818,6.368668 +L 6.8126,4.805022,6.8126,5.337624 +L 6.8126,5.337624,6.8126,5.861502 +L 6.8126,5.861502,6.8126,6.368668 +L 6.8126,6.368668,5.6603,6.47024 +L 5.6603,6.47024,5.1872,6.927978 +L 5.1872,6.927978,5.1031,7.970274 +L 5.1031,7.970274,5.6568,7.970274 +L 5.6568,7.970274,6.2312,7.970274 +L 6.2312,7.970274,6.8126,7.970274 +L 6.8126,7.970274,6.8126,7.625721 +L 6.8126,7.625721,6.8126,7.27252 +L 6.8126,7.27252,6.8126,6.902541 +L 1.7131,5.872907,1.9894,5.872907 +L 1.9894,5.872907,2.2731,5.872907 +L 2.2731,5.872907,2.5673,5.872907 +L 0.8585,7.970274,1.4185,7.970274 +L 1.4185,7.970274,1.9894,7.970274 +L 1.9894,7.970274,2.5673,7.970274 + +[佐] 39 +L 1.3154,0.038097,1.2349,1.983052 +L 1.2349,1.983052,1.1687,3.927942 +L 1.1687,3.927942,1.1056,5.872907 +L 1.1056,5.872907,0.8917,5.708949 +L 0.8917,5.708949,0.6745,5.528179 +L 0.6745,5.528179,0.4612,5.338959 +L 2.5662,0.038097,3.4239,0.038097 +L 3.4239,0.038097,4.275,0.038097 +L 4.275,0.038097,5.13,0.038097 +L 5.13,0.038097,5.13,1.2852 +L 5.13,1.2852,5.13,2.515458 +L 5.13,2.515458,5.13,3.737212 +L 5.13,3.737212,4.5517,3.737212 +L 4.5517,3.737212,3.9812,3.737212 +L 3.9812,3.737212,3.4239,3.737212 +L 3.4239,3.737212,2.9966,3.203317 +L 2.9966,3.203317,2.5662,2.669423 +L 2.5662,2.669423,2.142,2.135595 +L 5.5289,0.038097,6.2297,0.038097 +L 6.2297,0.038097,6.9372,0.038097 +L 6.9372,0.038097,7.6622,0.038097 +L 5.5289,3.737212,6.0861,3.737212 +L 6.0861,3.737212,6.6567,3.737212 +L 6.6567,3.737212,7.2349,3.737212 +L 3.4239,4.271149,3.701,4.908114 +L 3.701,4.908114,3.9812,5.528179 +L 3.9812,5.528179,4.275,6.139805 +L 4.275,6.139805,3.9318,6.676457 +L 3.9318,6.676457,3.487,6.874214 +L 3.487,6.874214,2.5662,6.902541 +L 1.3154,6.635556,1.5925,7.436402 +L 1.5925,7.436402,1.8653,8.237238 +L 1.8653,8.237238,2.142,9.038084 +L 4.7023,6.902541,4.5132,7.456169 +L 4.5132,7.456169,4.6081,8.128475 +L 4.6081,8.128475,4.7023,9.038084 +L 5.13,6.902541,5.9636,6.902541 +L 5.9636,6.902541,6.8111,6.902541 +L 6.8111,6.902541,7.6622,6.902541 + +[唆] 57 +L 3.0231,0.038097,4.0777,0.44205 +L 4.0777,0.44205,4.6276,0.778132 +L 4.6276,0.778132,5.1355,1.334661 +L 5.1355,1.334661,4.7677,1.790954 +L 4.7677,1.790954,4.407,2.23872 +L 4.407,2.23872,4.0637,2.669423 +L 4.0637,2.669423,3.7061,2.505607 +L 3.7061,2.505607,3.3594,2.324804 +L 3.3594,2.324804,3.0231,2.135595 +L 7.2646,0.038097,6.6867,0.381282 +L 6.6867,0.381282,6.1158,0.724457 +L 6.1158,0.724457,5.5558,1.067785 +L 5.9866,1.601646,6.2633,2.05784 +L 6.2633,2.05784,6.5431,2.505607 +L 6.5431,2.505607,6.8408,2.936343 +L 6.8408,2.936343,5.9866,3.039457 +L 5.9866,3.039457,5.1355,3.125651 +L 5.1355,3.125651,4.277,3.203317 +L 0.4628,2.669423,0.4628,4.450562 +L 0.4628,4.450562,0.4628,6.214572 +L 0.4628,6.214572,0.4628,7.970274 +L 0.4628,7.970274,0.8901,7.970274 +L 0.8901,7.970274,1.3139,7.970274 +L 1.3139,7.970274,1.7447,7.970274 +L 1.7447,7.970274,1.7447,6.214572 +L 1.7447,6.214572,1.7447,4.450562 +L 1.7447,4.450562,1.7447,2.669423 +L 1.7447,2.669423,1.3139,2.669423 +L 1.3139,2.669423,0.8901,2.669423 +L 0.8901,2.669423,0.4628,2.669423 +L 3.2368,4.805022,3.5769,5.261216 +L 3.5769,5.261216,3.9201,5.708949 +L 3.9201,5.708949,4.277,6.139805 +L 4.277,6.139805,3.9688,6.676457 +L 3.9688,6.676457,3.6431,6.874214 +L 3.6431,6.874214,3.0231,6.902541 +L 6.4135,4.805022,6.1123,5.238668 +L 6.1123,5.238668,6.0006,5.782478 +L 6.0006,5.782478,5.9866,6.902541 +L 5.9866,6.902541,5.0689,6.93218 +L 5.0689,6.93218,4.6276,7.139865 +L 4.6276,7.139865,4.277,7.703365 +L 4.277,7.703365,4.407,8.15957 +L 4.407,8.15957,4.5537,8.607315 +L 4.5537,8.607315,4.7047,9.038084 +L 6.8408,4.805022,7.1144,4.805022 +L 7.1144,4.805022,7.3942,4.805022 +L 7.3942,4.805022,7.6919,4.805022 +L 7.6919,4.805022,7.6919,5.17511 +L 7.6919,5.17511,7.6919,5.528179 +L 7.6919,5.528179,7.6919,5.872907 +L 5.9866,7.436402,6.2633,7.539505 +L 6.2633,7.539505,6.5431,7.625721 +L 6.5431,7.625721,6.8408,7.703365 +L 6.8408,7.703365,6.6867,7.970274 +L 6.6867,7.970274,6.5431,8.237238 +L 6.5431,8.237238,6.4135,8.504125 + +[詐] 50 +L 0.9205,0.038097,0.9205,0.751448 +L 0.9205,0.751448,0.9205,1.447757 +L 0.9205,1.447757,0.9205,2.135595 +L 0.9205,2.135595,1.4739,2.135595 +L 1.4739,2.135595,2.0269,2.135595 +L 2.0269,2.135595,2.5978,2.135595 +L 2.5978,2.135595,2.5978,1.447757 +L 2.5978,1.447757,2.5978,0.751448 +L 2.5978,0.751448,2.5978,0.038097 +L 2.5978,0.038097,2.0269,0.038097 +L 2.0269,0.038097,1.4739,0.038097 +L 1.4739,0.038097,0.9205,0.038097 +L 5.5924,0.038097,5.5924,2.515458 +L 5.5924,2.515458,5.5924,4.984434 +L 5.5924,4.984434,5.5924,7.436402 +L 5.5924,7.436402,4.6538,7.200544 +L 4.6538,7.200544,4.1007,6.79519 +L 4.1007,6.79519,3.4528,5.872907 +L 6.0127,2.135595,6.4225,2.135595 +L 6.4225,2.135595,6.8393,2.135595 +L 6.8393,2.135595,7.2666,2.135595 +L 0.9205,3.737212,1.4739,3.737212 +L 1.4739,3.737212,2.0269,3.737212 +L 2.0269,3.737212,2.5978,3.737212 +L 6.0127,4.805022,6.4225,4.805022 +L 6.4225,4.805022,6.8393,4.805022 +L 6.8393,4.805022,7.2666,4.805022 +L 0.9205,5.338959,1.4739,5.338959 +L 1.4739,5.338959,2.0269,5.338959 +L 2.0269,5.338959,2.5978,5.338959 +L 0.4929,6.902541,1.3233,6.902541 +L 1.3233,6.902541,2.1744,6.902541 +L 2.1744,6.902541,3.0255,6.902541 +L 6.0127,7.436402,6.5665,7.436402 +L 6.5665,7.436402,7.123,7.436402 +L 7.123,7.436402,7.6939,7.436402 +L 4.7343,7.970274,4.7343,8.340341 +L 4.7343,8.340341,4.7343,8.693432 +L 4.7343,8.693432,4.7343,9.038084 +L 0.9205,8.504125,1.4739,8.504125 +L 1.4739,8.504125,2.0269,8.504125 +L 2.0269,8.504125,2.5978,8.504125 +L 0.4929,6.940608,3.0255,6.940608 +L 0.9205,8.542411,2.5978,8.542411 +L 0.9205,5.339068,2.5978,5.339068 +L 0.9205,4.271128,2.5978,4.271128 +L 0.9205,2.707633,2.5978,2.707633 +L 0.9205,0.038097,0.9205,2.707633 +L 2.5978,0.038097,0.9205,0.038097 +L 2.5978,2.707633,2.5978,0.038097 + +[鎖] 63 +L 0.5264,0.038097,0.9292,0.038097 +L 0.9292,0.038097,1.3498,0.038097 +L 1.3498,0.038097,1.7771,0.038097 +L 1.7771,0.038097,1.8507,2.307839 +L 1.8507,2.307839,1.6475,4.086154 +L 1.6475,4.086154,0.5264,4.805022 +L 3.6965,0.038097,4.0432,0.381282 +L 4.0432,0.381282,4.3966,0.724457 +L 4.3966,0.724457,4.7609,1.067785 +L 7.7243,0.038097,7.4262,0.381282 +L 7.4262,0.381282,7.146,0.724457 +L 7.146,0.724457,6.8732,1.067785 +L 2.4181,0.572002,2.6314,0.751448 +L 2.6314,0.751448,2.8454,0.913797 +L 2.8454,0.913797,3.0552,1.067785 +L 0.9502,1.86862,0.7999,2.324804 +L 0.7999,2.324804,0.6563,2.772472 +L 0.6563,2.772472,0.5264,3.203317 +L 2.6314,2.402482,2.7613,2.858698 +L 2.7613,2.858698,2.9049,3.306421 +L 2.9049,3.306421,3.0552,3.737212 +L 4.3409,2.135595,4.3409,3.735854 +L 4.3409,3.735854,4.3409,5.327653 +L 4.3409,5.327653,4.3409,6.902541 +L 4.3409,6.902541,4.7433,6.902541 +L 4.7433,6.902541,5.1636,6.902541 +L 5.1636,6.902541,5.5874,6.902541 +L 5.5874,6.902541,5.5874,7.625721 +L 5.5874,7.625721,5.5874,8.340341 +L 5.5874,8.340341,5.5874,9.038084 +L 4.7609,2.135595,5.6018,2.135595 +L 5.6018,2.135595,6.442,2.135595 +L 6.442,2.135595,7.297,2.135595 +L 7.297,2.135595,7.297,2.669423 +L 7.297,2.669423,7.297,3.203317 +L 7.297,3.203317,7.297,3.737212 +L 7.297,3.737212,6.442,3.737212 +L 6.442,3.737212,5.6018,3.737212 +L 5.6018,3.737212,4.7609,3.737212 +L 7.297,4.271149,7.297,4.641118 +L 7.297,4.641118,7.297,4.994318 +L 7.297,4.994318,7.297,5.338959 +L 7.297,5.338959,6.442,5.338959 +L 6.442,5.338959,5.6018,5.338959 +L 5.6018,5.338959,4.7609,5.338959 +L 2.2009,4.805022,1.9029,5.218858 +L 1.9029,5.218858,1.7911,5.624299 +L 1.7911,5.624299,1.7771,6.368668 +L 1.7771,6.368668,1.1817,6.388447 +L 1.1817,6.388447,0.8556,6.526804 +L 0.8556,6.526804,0.5264,6.902541 +L 0.5264,6.902541,0.9292,7.625721 +L 0.9292,7.625721,1.3498,8.340341 +L 1.3498,8.340341,1.7771,9.038084 +L 1.7771,9.038084,2.2009,8.504125 +L 2.2009,8.504125,2.6314,7.970274 +L 2.6314,7.970274,3.0552,7.436402 +L 7.297,5.872907,7.297,6.21606 +L 7.297,6.21606,7.297,6.559333 +L 7.297,6.559333,7.297,6.902541 +L 7.297,6.902541,6.8732,6.902541 +L 6.8732,6.902541,6.442,6.902541 +L 6.442,6.902541,6.0147,6.902541 + +[債] 54 +L 1.3795,0.038097,1.2954,1.983052 +L 1.2954,1.983052,1.2257,3.927942 +L 1.2257,3.927942,1.1662,5.872907 +L 1.1662,5.872907,0.9522,5.708949 +L 0.9522,5.708949,0.735,5.528179 +L 0.735,5.528179,0.5249,5.338959 +L 2.875,0.038097,3.2116,0.227317 +L 3.2116,0.227317,3.5514,0.408229 +L 3.5514,0.408229,3.9156,0.572002 +L 7.3302,0.038097,7.0328,0.227317 +L 7.0328,0.227317,6.7491,0.408229 +L 6.7491,0.408229,6.4724,0.572002 +L 3.5128,1.601646,3.5128,2.669423 +L 3.5128,2.669423,3.5128,3.737212 +L 3.5128,3.737212,3.5128,4.805022 +L 3.5128,4.805022,4.6441,4.805022 +L 4.6441,4.805022,5.7716,4.805022 +L 5.7716,4.805022,6.8997,4.805022 +L 6.8997,4.805022,6.8997,3.737212 +L 6.8997,3.737212,6.8997,2.669423 +L 6.8997,2.669423,6.8997,1.601646 +L 6.8997,1.601646,5.7716,1.601646 +L 5.7716,1.601646,4.6441,1.601646 +L 4.6441,1.601646,3.5128,1.601646 +L 3.9156,2.669423,4.7667,2.669423 +L 4.7667,2.669423,5.6213,2.669423 +L 5.6213,2.669423,6.4724,2.669423 +L 3.9156,3.737212,4.7667,3.737212 +L 4.7667,3.737212,5.6213,3.737212 +L 5.6213,3.737212,6.4724,3.737212 +L 2.6617,5.872907,3.4953,5.975934 +L 3.4953,5.975934,4.3391,6.062138 +L 4.3391,6.062138,5.1905,6.139805 +L 5.1905,6.139805,4.8434,6.676457 +L 4.8434,6.676457,4.4126,6.874214 +L 4.4126,6.874214,3.5128,6.902541 +L 5.6213,5.872907,6.3253,5.872907 +L 6.3253,5.872907,7.0254,5.872907 +L 7.0254,5.872907,7.7263,5.872907 +L 1.3795,6.635556,1.653,7.436402 +L 1.653,7.436402,1.9399,8.237238 +L 1.9399,8.237238,2.2344,9.038084 +L 5.6213,6.902541,4.7457,7.806425 +L 4.7457,7.806425,4.0627,8.007039 +L 4.0627,8.007039,3.089,7.970274 +L 6.0451,6.902541,6.3253,6.902541 +L 6.3253,6.902541,6.6051,6.902541 +L 6.6051,6.902541,6.8997,6.902541 +L 5.6213,7.970274,5.4668,8.340341 +L 5.4668,8.340341,5.3232,8.693432 +L 5.3232,8.693432,5.1905,9.038084 +L 6.0451,7.970274,6.4724,7.970274 +L 6.4724,7.970274,6.8997,7.970274 +L 6.8997,7.970274,7.3302,7.970274 + +[催] 66 +L 1.4099,0.038097,1.3258,1.983052 +L 1.3258,1.983052,1.2589,3.927942 +L 1.2589,3.927942,1.1924,5.872907 +L 1.1924,5.872907,0.9826,5.708949 +L 0.9826,5.708949,0.7686,5.528179 +L 0.7686,5.528179,0.5588,5.338959 +L 3.5148,0.038097,3.4308,1.449082 +L 3.4308,1.449082,3.3639,2.860121 +L 3.3639,2.860121,3.3008,4.271149 +L 3.3008,4.271149,2.9366,3.926486 +L 2.9366,3.926486,2.5797,3.573417 +L 2.5797,3.573417,2.2326,3.203317 +L 3.9421,0.038097,4.4987,0.038097 +L 4.4987,0.038097,5.0734,0.038097 +L 5.0734,0.038097,5.651,0.038097 +L 5.651,0.038097,5.4167,1.324843 +L 5.4167,1.324843,4.8072,1.636966 +L 4.8072,1.636966,3.9421,1.601646 +L 6.0471,0.038097,6.6036,0.038097 +L 6.6036,0.038097,7.1749,0.038097 +L 7.1749,0.038097,7.7559,0.038097 +L 6.0471,1.601646,5.7736,2.135595 +L 5.7736,2.135595,5.4937,2.669423 +L 5.4937,2.669423,5.2237,3.203317 +L 5.2237,3.203317,4.7932,3.203317 +L 4.7932,3.203317,4.3726,3.203317 +L 4.3726,3.203317,3.9421,3.203317 +L 6.4744,1.601646,6.7472,1.601646 +L 6.7472,1.601646,7.0348,1.601646 +L 7.0348,1.601646,7.3287,1.601646 +L 6.0471,3.203317,5.7736,3.737212 +L 5.7736,3.737212,5.4937,4.271149 +L 5.4937,4.271149,5.2237,4.805022 +L 5.2237,4.805022,4.6423,4.908114 +L 4.6423,4.908114,4.0749,4.994318 +L 4.0749,4.994318,3.5148,5.071974 +L 3.5148,5.071974,3.6441,5.518317 +L 3.6441,5.518317,3.7912,5.947696 +L 3.7912,5.947696,3.9421,6.368668 +L 6.4744,3.203317,6.7472,3.203317 +L 6.7472,3.203317,7.0348,3.203317 +L 7.0348,3.203317,7.3287,3.203317 +L 6.0471,4.805022,5.7809,5.218858 +L 5.7809,5.218858,5.7809,5.624299 +L 5.7809,5.624299,6.0471,6.368668 +L 6.4744,4.805022,6.7472,4.805022 +L 6.7472,4.805022,7.0348,4.805022 +L 7.0348,4.805022,7.3287,4.805022 +L 1.4099,6.635556,1.6827,7.436402 +L 1.6827,7.436402,1.9629,8.237238 +L 1.9629,8.237238,2.2326,9.038084 +L 3.0837,7.436402,3.0837,7.806425 +L 3.0837,7.806425,3.0837,8.15957 +L 3.0837,8.15957,3.0837,8.504125 +L 3.5148,7.436402,4.0749,7.436402 +L 4.0749,7.436402,4.6423,7.436402 +L 4.6423,7.436402,5.2237,7.436402 +L 5.2237,7.436402,5.2237,7.970274 +L 5.2237,7.970274,5.2237,8.504125 +L 5.2237,8.504125,5.2237,9.038084 +L 5.651,7.436402,6.2009,7.436402 +L 6.2009,7.436402,6.7546,7.436402 +L 6.7546,7.436402,7.3287,7.436402 +L 7.3287,7.436402,7.3287,7.806425 +L 7.3287,7.806425,7.3287,8.15957 +L 7.3287,8.15957,7.3287,8.504125 + +[宰] 45 +L 3.9718,0.038097,3.6534,1.903853 +L 3.6534,1.903853,2.7673,2.252818 +L 2.7673,2.252818,1.4119,2.135595 +L 4.3991,2.135595,4.0982,2.550789 +L 4.0982,2.550789,3.9893,2.966015 +L 3.9893,2.966015,3.9718,3.737212 +L 3.9718,3.737212,2.9669,3.737212 +L 2.9669,3.737212,1.9649,3.737212 +L 1.9649,3.737212,0.9811,3.737212 +L 4.7949,2.135595,5.3556,2.135595 +L 5.3556,2.135595,5.9265,2.135595 +L 5.9265,2.135595,6.5041,2.135595 +L 4.5812,3.737212,5.0334,4.528229 +L 5.0334,4.528229,5.2012,5.081858 +L 5.2012,5.081858,5.2222,5.872907 +L 5.2222,5.872907,4.3711,5.795175 +L 4.3711,5.795175,3.5235,5.708949 +L 3.5235,5.708949,2.6899,5.605933 +L 2.6899,5.605933,2.8233,5.17511 +L 2.8233,5.17511,2.9669,4.727343 +L 2.9669,4.727343,3.1207,4.271149 +L 5.2222,3.737212,5.7829,3.737212 +L 5.7829,3.737212,6.3535,3.737212 +L 6.3535,3.737212,6.9317,3.737212 +L 1.4119,5.872907,1.6847,5.872907 +L 1.6847,5.872907,1.9649,5.872907 +L 1.9649,5.872907,2.263,5.872907 +L 5.653,5.872907,5.9265,5.872907 +L 5.9265,5.872907,6.2067,5.872907 +L 6.2067,5.872907,6.5041,5.872907 +L 0.5849,6.368668,0.5849,6.902541 +L 0.5849,6.902541,0.5849,7.436402 +L 0.5849,7.436402,0.5849,7.970274 +L 0.5849,7.970274,1.7166,7.970274 +L 1.7166,7.970274,2.8405,7.970274 +L 2.8405,7.970274,3.9718,7.970274 +L 3.9718,7.970274,3.9718,8.340341 +L 3.9718,8.340341,3.9718,8.693432 +L 3.9718,8.693432,3.9718,9.038084 +L 7.3625,6.368668,7.3625,6.902541 +L 7.3625,6.902541,7.3625,7.436402 +L 7.3625,7.436402,7.3625,7.970274 +L 7.3625,7.970274,6.3605,7.970274 +L 6.3605,7.970274,5.3766,7.970274 +L 5.3766,7.970274,4.3991,7.970274 + +[彩] 39 +L 2.2926,0.038097,2.2121,1.104462 +L 2.2121,1.104462,2.1424,2.162301 +L 2.1424,2.162301,2.0825,3.203317 +L 2.0825,3.203317,1.5715,2.505607 +L 1.5715,2.505607,1.0738,1.790954 +L 1.0738,1.790954,0.5838,1.067785 +L 4.4014,0.038097,5.5254,0.491478 +L 5.5254,0.491478,6.3975,1.173657 +L 6.3975,1.173657,7.7848,2.669423 +L 3.5465,1.601646,3.2702,1.971746 +L 3.2702,1.971746,2.9966,2.324804 +L 2.9966,2.324804,2.7203,2.669423 +L 0.5838,3.737212,1.1403,3.737212 +L 1.1403,3.737212,1.7182,3.737212 +L 1.7182,3.737212,2.2926,3.737212 +L 2.2926,3.737212,2.2926,4.107267 +L 2.2926,4.107267,2.2926,4.460369 +L 2.2926,4.460369,2.2926,4.805022 +L 2.7203,3.737212,3.1301,3.737212 +L 3.1301,3.737212,3.5465,3.737212 +L 3.5465,3.737212,3.9703,3.737212 +L 5.0385,3.737212,5.8059,4.460369 +L 5.8059,4.460369,6.573,5.17511 +L 6.573,5.17511,7.361,5.872907 +L 1.0142,6.139805,0.8605,6.405335 +L 0.8605,6.405335,0.7204,6.66236 +L 0.7204,6.66236,0.5838,6.902541 +L 2.2926,6.139805,2.1424,6.405335 +L 2.1424,6.405335,1.9988,6.66236 +L 1.9988,6.66236,1.8688,6.902541 +L 3.5465,6.139805,3.6764,6.586127 +L 3.6764,6.586127,3.8232,7.015506 +L 3.8232,7.015506,3.9703,7.436402 +L 5.0385,6.368668,5.8059,7.091739 +L 5.8059,7.091739,6.573,7.806425 +L 6.573,7.806425,7.361,8.504125 +L 0.5838,7.970274,2.2261,8.108676 +L 2.2261,8.108676,3.1861,8.365778 +L 3.1861,8.365778,3.9703,8.504125 + +[栽] 51 +L 2.7223,0.038097,2.6379,0.915242 +L 2.6379,0.915242,2.5713,1.792267 +L 2.5713,1.792267,2.5083,2.669423 +L 2.5083,2.669423,1.8712,2.135595 +L 1.8712,2.135595,1.2334,1.601646 +L 1.2334,1.601646,0.6173,1.067785 +L 4.2175,0.038097,4.8343,0.751448 +L 4.8343,0.751448,5.4678,1.447757 +L 5.4678,1.447757,6.1091,2.135595 +L 6.1091,2.135595,5.7936,3.223117 +L 5.7936,3.223117,5.5803,4.785221 +L 5.5803,4.785221,5.2822,5.872907 +L 5.2822,5.872907,3.7271,5.872907 +L 3.7271,5.872907,2.172,5.872907 +L 2.172,5.872907,0.6173,5.872907 +L 7.3907,0.038097,7.0933,0.570568 +L 7.0933,0.570568,6.8131,1.094557 +L 6.8131,1.094557,6.5361,1.601646 +L 7.818,0.038097,7.818,0.570568 +L 7.818,0.570568,7.818,1.094557 +L 7.818,1.094557,7.818,1.601646 +L 4.0042,1.601646,3.027,2.813462 +L 3.027,2.813462,2.2246,3.110108 +L 2.2246,3.110108,1.0446,3.203317 +L 6.5361,2.669423,6.8131,3.392614 +L 6.8131,3.392614,7.0933,4.107267 +L 7.0933,4.107267,7.3907,4.805022 +L 3.5734,3.203317,3.8532,3.203317 +L 3.8532,3.203317,4.1334,3.203317 +L 4.1334,3.203317,4.4311,3.203317 +L 2.7223,3.737212,2.7223,4.107267 +L 2.7223,4.107267,2.7223,4.460369 +L 2.7223,4.460369,2.7223,4.805022 +L 6.1091,5.872907,5.8044,6.320554 +L 5.8044,6.320554,5.6955,7.141211 +L 5.6955,7.141211,5.6783,9.038084 +L 6.5361,5.872907,6.9634,5.872907 +L 6.9634,5.872907,7.3907,5.872907 +L 7.3907,5.872907,7.818,5.872907 +L 2.7223,6.635556,2.3717,7.199067 +L 2.3717,7.199067,1.9409,7.406751 +L 1.9409,7.406751,1.0446,7.436402 +L 7.818,6.902541,7.5241,7.27252 +L 7.5241,7.27252,7.2369,7.625721 +L 7.2369,7.625721,6.9634,7.970274 +L 3.1531,7.436402,2.8484,7.851684 +L 2.8484,7.851684,2.7359,8.266921 +L 2.7359,8.266921,2.7223,9.038084 +L 3.5734,7.436402,3.8532,7.436402 +L 3.8532,7.436402,4.1334,7.436402 +L 4.1334,7.436402,4.4311,7.436402 + +[歳] 54 +L 0.6158,0.305038,0.9167,0.999892 +L 0.9167,0.999892,1.0291,2.30496 +L 1.0291,2.30496,1.0431,5.338959 +L 1.0431,5.338959,2.7519,5.21043 +L 2.7519,5.21043,4.4927,5.4293 +L 4.4927,5.4293,5.2842,6.902541 +L 5.2842,6.902541,3.7291,6.902541 +L 3.7291,6.902541,2.1744,6.902541 +L 2.1744,6.902541,0.6158,6.902541 +L 2.3215,0.038097,2.6017,0.038097 +L 2.6017,0.038097,2.8815,0.038097 +L 2.8815,0.038097,3.1792,0.038097 +L 3.1792,0.038097,3.1792,1.2852 +L 3.1792,1.2852,3.1792,2.515458 +L 3.1792,2.515458,3.1792,3.737212 +L 3.1792,3.737212,2.8815,3.737212 +L 2.8815,3.737212,2.6017,3.737212 +L 2.6017,3.737212,2.3215,3.737212 +L 4.6436,0.038097,5.134,0.570568 +L 5.134,0.570568,5.6275,1.094557 +L 5.6275,1.094557,6.1427,1.601646 +L 6.1427,1.601646,5.1616,3.51265 +L 5.1616,3.51265,5.5504,4.838984 +L 5.5504,4.838984,6.9938,5.605933 +L 6.9938,5.605933,6.6607,6.340331 +L 6.6607,6.340331,6.3283,6.676457 +L 6.3283,6.676457,5.7115,6.902541 +L 7.4211,0.038097,7.123,0.381282 +L 7.123,0.381282,6.8428,0.724457 +L 6.8428,0.724457,6.5661,1.067785 +L 7.8484,0.038097,7.8484,0.570568 +L 7.8484,0.570568,7.8484,1.094557 +L 7.8484,1.094557,7.8484,1.601646 +L 1.9008,1.334661,2.0304,1.790954 +L 2.0304,1.790954,2.1744,2.23872 +L 2.1744,2.23872,2.3215,2.669423 +L 4.4331,1.86862,4.2864,2.135595 +L 4.2864,2.135595,4.1564,2.402482 +L 4.1564,2.402482,4.0303,2.669423 +L 6.5661,2.135595,6.8428,2.858698 +L 6.8428,2.858698,7.123,3.573417 +L 7.123,3.573417,7.4211,4.271149 +L 6.9938,6.902541,7.2701,6.902541 +L 7.2701,6.902541,7.5503,6.902541 +L 7.5503,6.902541,7.8484,6.902541 +L 2.3215,7.436402,2.3215,7.806425 +L 2.3215,7.806425,2.3215,8.15957 +L 2.3215,8.15957,2.3215,8.504125 +L 4.0303,7.436402,4.0303,7.970274 +L 4.0303,7.970274,4.0303,8.504125 +L 4.0303,8.504125,4.0303,9.038084 +L 4.4331,7.970274,5.134,7.970274 +L 5.134,7.970274,5.8415,7.970274 +L 5.8415,7.970274,6.5661,7.970274 + +[砕] 48 +L 5.3146,0.038097,5.1636,2.110158 +L 5.1636,2.110158,4.5332,2.682131 +L 4.5332,2.682131,3.1812,2.669423 +L 1.0763,1.601646,1.1813,5.153953 +L 1.1813,5.153953,1.3918,7.062077 +L 1.3918,7.062077,1.5001,8.504125 +L 1.5001,8.504125,1.2097,8.504125 +L 1.2097,8.504125,0.9225,8.504125 +L 0.9225,8.504125,0.649,8.504125 +L 1.5001,1.601646,1.7771,1.601646 +L 1.7771,1.601646,2.0608,1.601646 +L 2.0608,1.601646,2.3585,1.601646 +L 2.3585,1.601646,2.3585,2.858698 +L 2.3585,2.858698,2.3585,4.107267 +L 2.3585,4.107267,2.3585,5.338959 +L 2.3585,5.338959,2.0608,5.338959 +L 2.0608,5.338959,1.7771,5.338959 +L 1.7771,5.338959,1.5001,5.338959 +L 5.7419,2.669423,5.4407,3.084661 +L 5.4407,3.084661,5.3282,3.499953 +L 5.3282,3.499953,5.3146,4.271149 +L 6.1692,2.669423,6.7187,2.669423 +L 6.7187,2.669423,7.276,2.669423 +L 7.276,2.669423,7.8469,2.669423 +L 3.605,4.805022,4.0323,5.604402 +L 4.0323,5.604402,4.4596,6.395462 +L 4.4596,6.395462,4.8908,7.169417 +L 4.8908,7.169417,4.5577,7.73295 +L 4.5577,7.73295,4.2218,7.940591 +L 4.2218,7.940591,3.605,7.970274 +L 6.5646,5.338959,6.5646,6.21606 +L 6.5646,6.21606,6.5646,7.093205 +L 6.5646,7.093205,6.5646,7.970274 +L 6.5646,7.970274,6.1408,7.970274 +L 6.1408,7.970274,5.7209,7.970274 +L 5.7209,7.970274,5.3146,7.970274 +L 5.3146,7.970274,5.1636,8.340341 +L 5.1636,8.340341,5.02,8.693432 +L 5.02,8.693432,4.8908,9.038084 +L 6.9958,5.338959,7.2686,5.338959 +L 7.2686,5.338959,7.5558,5.338959 +L 7.5558,5.338959,7.8469,5.338959 +L 7.8469,5.338959,7.8469,5.682177 +L 7.8469,5.682177,7.8469,6.025396 +L 7.8469,6.025396,7.8469,6.368668 +L 1.9274,8.504125,2.2041,8.504125 +L 2.2041,8.504125,2.4811,8.504125 +L 2.4811,8.504125,2.7504,8.504125 + +[斎] 45 +L 0.6793,0.038097,1.3795,1.844541 +L 1.3795,1.844541,1.5339,3.481533 +L 1.5339,3.481533,1.5021,5.338959 +L 1.5021,5.338959,1.2292,5.338959 +L 1.2292,5.338959,0.9522,5.338959 +L 0.9522,5.338959,0.6793,5.338959 +L 3.2081,0.038097,3.4845,0.038097 +L 3.4845,0.038097,3.7682,0.038097 +L 3.7682,0.038097,4.0627,0.038097 +L 4.0627,0.038097,4.0627,1.104462 +L 4.0627,1.104462,4.0627,2.162301 +L 4.0627,2.162301,4.0627,3.203317 +L 4.0627,3.203317,3.4845,3.203317 +L 3.4845,3.203317,2.9136,3.203317 +L 2.9136,3.203317,2.3532,3.203317 +L 6.5981,0.038097,6.5144,1.819105 +L 6.5144,1.819105,6.444,3.583322 +L 6.444,3.583322,6.381,5.338959 +L 6.381,5.338959,4.8087,5.881281 +L 4.8087,5.881281,3.2361,6.067797 +L 3.2361,6.067797,1.9332,5.338959 +L 1.9332,0.572002,2.2029,1.104462 +L 2.2029,1.104462,2.4866,1.628516 +L 2.4866,1.628516,2.7843,2.135595 +L 5.7439,0.838889,5.5929,1.2852 +L 5.5929,1.2852,5.4458,1.714644 +L 5.4458,1.714644,5.3166,2.135595 +L 4.49,3.203317,4.8994,3.203317 +L 4.8994,3.203317,5.3166,3.203317 +L 5.3166,3.203317,5.7439,3.203317 +L 2.3532,4.271149,3.4845,4.271149 +L 3.4845,4.271149,4.6126,4.271149 +L 4.6126,4.271149,5.7439,4.271149 +L 3.2081,6.902541,2.8298,7.475958 +L 2.8298,7.475958,2.1749,7.752739 +L 2.1749,7.752739,0.6793,7.970274 +L 4.917,6.902541,5.043,7.169417 +L 5.043,7.169417,5.173,7.436402 +L 5.173,7.436402,5.3166,7.703365 +L 5.3166,7.703365,4.6126,7.806425 +L 4.6126,7.806425,3.9118,7.892608 +L 3.9118,7.892608,3.2081,7.970274 +L 5.7439,7.970274,6.3043,7.970274 +L 6.3043,7.970274,6.8752,7.970274 +L 6.8752,7.970274,7.4527,7.970274 + +[載] 69 +L 2.814,0.305038,2.4497,0.841789 +L 2.4497,0.841789,1.8967,1.039448 +L 1.8967,1.039448,0.6813,1.067785 +L 4.9225,0.038097,4.3901,1.073323 +L 4.3901,1.073323,2.4287,1.837514 +L 2.4287,1.837514,1.1016,2.135595 +L 1.1016,2.135595,1.1016,2.858698 +L 1.1016,2.858698,1.1016,3.573417 +L 1.1016,3.573417,1.1016,4.271149 +L 1.1016,4.271149,2.0224,4.290927 +L 2.0224,4.290927,2.4672,4.429328 +L 2.4672,4.429328,2.814,4.805022 +L 2.814,4.805022,2.4497,5.180769 +L 2.4497,5.180769,1.8967,5.319104 +L 1.8967,5.319104,0.6813,5.338959 +L 7.4796,0.038097,7.1153,0.570568 +L 7.1153,0.570568,6.7612,1.094557 +L 6.7612,1.094557,6.4145,1.601646 +L 6.4145,1.601646,6.2009,1.437764 +L 6.2009,1.437764,5.9876,1.256994 +L 5.9876,1.256994,5.7736,1.067785 +L 7.8785,0.038097,7.8785,0.570568 +L 7.8785,0.570568,7.8785,1.094557 +L 7.8785,1.094557,7.8785,1.601646 +L 3.2413,2.135595,2.6108,2.887002 +L 2.6108,2.887002,2.166,3.163849 +L 2.166,3.163849,1.5324,3.203317 +L 3.6686,2.135595,3.9421,2.135595 +L 3.9421,2.135595,4.2188,2.135595 +L 4.2188,2.135595,4.4917,2.135595 +L 4.4917,2.135595,4.4917,2.505607 +L 4.4917,2.505607,4.4917,2.858698 +L 4.4917,2.858698,4.4917,3.203317 +L 4.4917,3.203317,3.5954,3.223117 +L 3.5954,3.223117,3.1607,3.36154 +L 3.1607,3.36154,2.814,3.737212 +L 2.814,3.737212,3.1607,4.093148 +L 3.1607,4.093148,3.5954,4.093148 +L 3.5954,4.093148,4.4917,3.737212 +L 6.6285,2.135595,5.7105,4.642584 +L 5.7105,4.642584,5.5638,6.302232 +L 5.5638,6.302232,3.2413,6.902541 +L 3.2413,6.902541,2.9541,6.336139 +L 2.9541,6.336139,2.9541,5.930698 +L 2.9541,5.930698,3.2413,5.338959 +L 3.2413,5.338959,3.7912,5.338959 +L 3.7912,5.338959,4.3516,5.338959 +L 4.3516,5.338959,4.9225,5.338959 +L 7.0558,2.669423,7.164,3.598755 +L 7.164,3.598755,7.3707,4.409573 +L 7.3707,4.409573,7.4796,5.338959 +L 0.6813,6.902541,1.8967,6.922308 +L 1.8967,6.922308,2.4497,7.060665 +L 2.4497,7.060665,2.814,7.436402 +L 2.814,7.436402,2.4672,7.812116 +L 2.4672,7.812116,2.0224,7.950497 +L 2.0224,7.950497,1.1016,7.970274 +L 6.2009,6.902541,5.9,7.337534 +L 5.9,7.337534,5.7876,7.891239 +L 5.7876,7.891239,5.7736,9.038084 +L 6.6285,6.902541,7.0348,6.902541 +L 7.0348,6.902541,7.4547,6.902541 +L 7.4547,6.902541,7.8785,6.902541 +L 3.2413,7.970274,3.091,8.340341 +L 3.091,8.340341,2.9474,8.693432 +L 2.9474,8.693432,2.814,9.038084 +L 3.6686,7.970274,3.9421,7.970274 +L 3.9421,7.970274,4.2188,7.970274 +L 4.2188,7.970274,4.4917,7.970274 + +[剤] 42 +L 0.7075,0.038097,1.3908,1.655299 +L 1.3908,1.655299,1.573,3.086106 +L 1.573,3.086106,1.5656,4.805022 +L 1.5656,4.805022,1.2682,4.805022 +L 1.2682,4.805022,0.9846,4.805022 +L 0.9846,4.805022,0.7075,4.805022 +L 4.0944,0.038097,4.0944,0.751448 +L 4.0944,0.751448,4.0944,1.447757 +L 4.0944,1.447757,4.0944,2.135595 +L 4.0944,2.135595,3.3942,2.135595 +L 3.3942,2.135595,2.6899,2.135595 +L 2.6899,2.135595,1.9894,2.135595 +L 6.1958,0.038097,6.6266,0.038097 +L 6.6266,0.038097,7.0543,0.038097 +L 7.0543,0.038097,7.4851,0.038097 +L 7.4851,0.038097,7.4851,3.049428 +L 7.4851,3.049428,7.4851,6.052167 +L 7.4851,6.052167,7.4851,9.038084 +L 5.8039,2.135595,5.8039,4.080463 +L 5.8039,4.080463,5.8039,6.025396 +L 5.8039,6.025396,5.8039,7.970274 +L 4.0944,2.669423,4.0944,3.039457 +L 4.0944,3.039457,4.0944,3.392614 +L 4.0944,3.392614,4.0944,3.737212 +L 4.0944,3.737212,3.3942,3.737212 +L 3.3942,3.737212,2.6899,3.737212 +L 2.6899,3.737212,1.9894,3.737212 +L 4.0944,4.538036,3.6706,4.994318 +L 3.6706,4.994318,3.2398,5.442095 +L 3.2398,5.442095,2.8125,5.872907 +L 2.8125,5.872907,2.5396,5.708949 +L 2.5396,5.708949,2.2661,5.528179 +L 2.2661,5.528179,1.9894,5.338959 +L 2.3855,6.368668,1.7761,7.317768 +L 1.7761,7.317768,1.3379,7.73295 +L 1.3379,7.73295,0.7075,7.970274 +L 3.2398,6.368668,3.5168,6.824874 +L 3.5168,6.824874,3.8005,7.27252 +L 3.8005,7.27252,4.0944,7.703365 +L 4.0944,7.703365,3.3942,7.806425 +L 3.3942,7.806425,2.6899,7.892608 +L 2.6899,7.892608,1.9894,7.970274 + +[咲] 39 +L 3.0561,0.038097,3.8235,1.2852 +L 3.8235,1.2852,4.5906,2.515458 +L 4.5906,2.515458,5.3786,3.737212 +L 5.3786,3.737212,5.0144,4.112959 +L 5.0144,4.112959,4.468,4.25136 +L 4.468,4.25136,3.2701,4.271149 +L 7.5113,0.038097,6.9337,1.104462 +L 6.9337,1.104462,6.3625,2.162301 +L 6.3625,2.162301,5.8024,3.203317 +L 0.7379,3.203317,0.7379,4.803653 +L 0.7379,4.803653,0.7379,6.395462 +L 0.7379,6.395462,0.7379,7.970274 +L 0.7379,7.970274,1.2878,7.970274 +L 1.2878,7.970274,1.8478,7.970274 +L 1.8478,7.970274,2.4191,7.970274 +L 2.4191,7.970274,2.4191,6.395462 +L 2.4191,6.395462,2.4191,4.803653 +L 2.4191,4.803653,2.4191,3.203317 +L 2.4191,3.203317,1.8478,3.203317 +L 1.8478,3.203317,1.2878,3.203317 +L 1.2878,3.203317,0.7379,3.203317 +L 5.8024,4.271149,5.5044,4.724574 +L 5.5044,4.724574,5.3926,5.406742 +L 5.3926,5.406742,5.3786,6.902541 +L 5.3786,6.902541,4.8039,6.902541 +L 4.8039,6.902541,4.2505,6.902541 +L 4.2505,6.902541,3.6974,6.902541 +L 6.2329,4.271149,6.7936,4.271149 +L 6.7936,4.271149,7.361,4.271149 +L 7.361,4.271149,7.9421,4.271149 +L 5.8024,7.169417,6.0788,7.806425 +L 6.0788,7.806425,6.3625,8.426556 +L 6.3625,8.426556,6.6602,9.038084 +L 6.2329,6.902541,6.6602,6.902541 +L 6.6602,6.902541,7.084,6.902541 +L 7.084,6.902541,7.5113,6.902541 +L 4.5552,8.237238,4.4014,8.504125 +L 4.4014,8.504125,4.2575,8.771121 +L 4.2575,8.771121,4.1279,9.038084 + +[崎] 48 +L 6.2594,0.038097,6.5361,0.038097 +L 6.5361,0.038097,6.8198,0.038097 +L 6.8198,0.038097,7.1178,0.038097 +L 7.1178,0.038097,7.1178,1.819105 +L 7.1178,1.819105,7.1178,3.583322 +L 7.1178,3.583322,7.1178,5.338959 +L 7.1178,5.338959,5.8356,5.338959 +L 5.8356,5.338959,4.5537,5.338959 +L 4.5537,5.338959,3.2721,5.338959 +L 3.2721,5.338959,3.2721,4.107267 +L 3.2721,4.107267,3.2721,2.858698 +L 3.2721,2.858698,3.2721,1.601646 +L 3.2721,1.601646,2.4211,1.601646 +L 2.4211,1.601646,1.5735,1.601646 +L 1.5735,1.601646,0.7399,1.601646 +L 0.7399,1.601646,0.7399,3.382752 +L 0.7399,3.382752,0.7399,5.146872 +L 0.7399,5.146872,0.7399,6.902541 +L 4.5537,1.601646,4.5537,2.324804 +L 4.5537,2.324804,4.5537,3.039457 +L 4.5537,3.039457,4.5537,3.737212 +L 4.5537,3.737212,4.981,3.737212 +L 4.981,3.737212,5.4083,3.737212 +L 5.4083,3.737212,5.8356,3.737212 +L 5.8356,3.737212,5.8356,3.039457 +L 5.8356,3.039457,5.8356,2.324804 +L 5.8356,2.324804,5.8356,1.601646 +L 5.8356,1.601646,5.4083,1.601646 +L 5.4083,1.601646,4.981,1.601646 +L 4.981,1.601646,4.5537,1.601646 +L 2.0218,2.135595,2.0218,4.450562 +L 2.0218,4.450562,2.0218,6.748553 +L 2.0218,6.748553,2.0218,9.038084 +L 3.2721,5.872907,3.2721,6.21606 +L 3.2721,6.21606,3.2721,6.559333 +L 3.2721,6.559333,3.2721,6.902541 +L 4.3365,6.368668,4.6833,6.824874 +L 4.6833,6.824874,5.044,7.27252 +L 5.044,7.27252,5.4083,7.703365 +L 5.4083,7.703365,4.981,7.806425 +L 4.981,7.806425,4.5537,7.892608 +L 4.5537,7.892608,4.1267,7.970274 +L 7.1178,6.368668,6.354,7.535182 +L 6.354,7.535182,6.0251,8.227376 +L 6.0251,8.227376,5.8356,9.038084 +L 6.6905,7.970274,6.9634,7.970274 +L 6.9634,7.970274,7.2369,7.970274 +L 7.2369,7.970274,7.5133,7.970274 + +[削] 45 +L 1.1968,0.038097,1.1968,1.983052 +L 1.1968,1.983052,1.1968,3.927942 +L 1.1968,3.927942,1.1968,5.872907 +L 1.1968,5.872907,1.5996,5.872907 +L 1.5996,5.872907,2.0203,5.872907 +L 2.0203,5.872907,2.4507,5.872907 +L 2.4507,5.872907,2.4507,6.939207 +L 2.4507,6.939207,2.4507,7.997133 +L 2.4507,7.997133,2.4507,9.038084 +L 2.8745,0.038097,3.1516,0.038097 +L 3.1516,0.038097,3.4353,0.038097 +L 3.4353,0.038097,3.7291,0.038097 +L 3.7291,0.038097,3.7291,0.915242 +L 3.7291,0.915242,3.7291,1.792267 +L 3.7291,1.792267,3.7291,2.669423 +L 3.7291,2.669423,3.029,2.669423 +L 3.029,2.669423,2.3281,2.669423 +L 2.3281,2.669423,1.628,2.669423 +L 6.6925,0.038097,6.9654,0.038097 +L 6.9654,0.038097,7.2456,0.038097 +L 7.2456,0.038097,7.5436,0.038097 +L 7.5436,0.038097,7.5436,3.049428 +L 7.5436,3.049428,7.5436,6.052167 +L 7.5436,6.052167,7.5436,9.038084 +L 5.8341,2.135595,5.8341,4.080463 +L 5.8341,4.080463,5.8341,6.025396 +L 5.8341,6.025396,5.8341,7.970274 +L 3.7291,3.203317,3.7291,3.573417 +L 3.7291,3.573417,3.7291,3.926486 +L 3.7291,3.926486,3.7291,4.271149 +L 3.7291,4.271149,3.029,4.271149 +L 3.029,4.271149,2.3281,4.271149 +L 2.3281,4.271149,1.628,4.271149 +L 3.7291,4.805022,3.7291,5.17511 +L 3.7291,5.17511,3.7291,5.528179 +L 3.7291,5.528179,3.7291,5.872907 +L 3.7291,5.872907,3.4353,5.872907 +L 3.4353,5.872907,3.1516,5.872907 +L 3.1516,5.872907,2.8745,5.872907 +L 1.1968,7.703365,1.0466,7.970274 +L 1.0466,7.970274,0.8995,8.237238 +L 0.8995,8.237238,0.7695,8.504125 +L 3.7291,7.436402,3.8591,7.806425 +L 3.8591,7.806425,4.0093,8.15957 +L 4.0093,8.15957,4.1603,8.504125 + +[搾] 57 +L 0.768,0.038097,1.0486,0.038097 +L 1.0486,0.038097,1.3288,0.038097 +L 1.3288,0.038097,1.6261,0.038097 +L 1.6261,0.038097,1.6261,1.2852 +L 1.6261,1.2852,1.6261,2.515458 +L 1.6261,2.515458,1.6261,3.737212 +L 1.6261,3.737212,1.3288,3.737212 +L 1.3288,3.737212,1.0486,3.737212 +L 1.0486,3.737212,0.768,3.737212 +L 5.8645,0.038097,5.8645,1.449082 +L 5.8645,1.449082,5.8645,2.860121 +L 5.8645,2.860121,5.8645,4.271149 +L 5.8645,4.271149,4.9153,4.231593 +L 4.9153,4.231593,4.2638,3.954724 +L 4.2638,3.954724,3.3357,3.203317 +L 6.2918,1.067785,6.7222,1.067785 +L 6.7222,1.067785,7.1495,1.067785 +L 7.1495,1.067785,7.5733,1.067785 +L 6.2918,2.669423,6.7222,2.669423 +L 6.7222,2.669423,7.1495,2.669423 +L 7.1495,2.669423,7.5733,2.669423 +L 1.6261,4.271149,1.6261,4.984434 +L 1.6261,4.984434,1.6261,5.68082 +L 1.6261,5.68082,1.6261,6.368668 +L 1.6261,6.368668,1.3288,6.557888 +L 1.3288,6.557888,1.0486,6.738769 +L 1.0486,6.738769,0.768,6.902541 +L 6.2918,4.271149,6.8483,4.271149 +L 6.8483,4.271149,7.4231,4.271149 +L 7.4231,4.271149,8.0006,4.271149 +L 3.9728,5.872907,4.7051,6.63699 +L 4.7051,6.63699,4.9713,7.180734 +L 4.9713,7.180734,5.0134,7.970274 +L 5.0134,7.970274,4.5822,7.970274 +L 4.5822,7.970274,4.1689,7.970274 +L 4.1689,7.970274,3.7595,7.970274 +L 3.7595,7.970274,3.7595,7.625721 +L 3.7595,7.625721,3.7595,7.27252 +L 3.7595,7.27252,3.7595,6.902541 +L 6.2918,5.872907,6.2918,6.586127 +L 6.2918,6.586127,6.2918,7.282513 +L 6.2918,7.282513,6.2918,7.970274 +L 6.2918,7.970274,5.9937,7.970274 +L 5.9937,7.970274,5.7135,7.970274 +L 5.7135,7.970274,5.4407,7.970274 +L 6.7222,5.872907,6.9923,5.975934 +L 6.9923,5.975934,7.2795,6.062138 +L 7.2795,6.062138,7.5733,6.139805 +L 7.5733,6.139805,7.7032,6.749976 +L 7.7032,6.749976,7.8504,7.360158 +L 7.8504,7.360158,8.0006,7.970274 +L 8.0006,7.970274,7.5733,7.970274 +L 7.5733,7.970274,7.1495,7.970274 +L 7.1495,7.970274,6.7222,7.970274 +L 2.0499,6.902541,1.7491,7.337534 +L 1.7491,7.337534,1.637,7.891239 +L 1.637,7.891239,1.6261,9.038084 + +[索] 51 +L 4.1884,0.038097,4.1884,0.915242 +L 4.1884,0.915242,4.1884,1.792267 +L 4.1884,1.792267,4.1884,2.669423 +L 4.1884,2.669423,3.1906,2.669423 +L 3.1906,2.669423,2.206,2.669423 +L 2.206,2.669423,1.2257,2.669423 +L 1.4425,0.572002,1.9294,0.915242 +L 1.9294,0.915242,2.4162,1.258428 +L 2.4162,1.258428,2.9069,1.601646 +L 6.5074,0.838889,6.1502,1.104462 +L 6.1502,1.104462,5.8069,1.361531 +L 5.8069,1.361531,5.4703,1.601646 +L 7.148,2.402482,6.7873,2.966015 +L 6.7873,2.966015,6.2409,3.173667 +L 6.2409,3.173667,5.0395,3.203317 +L 5.0395,3.203317,4.8928,3.039457 +L 4.8928,3.039457,4.7418,2.858698 +L 4.7418,2.858698,4.6157,2.669423 +L 3.7615,3.203317,3.1906,3.737212 +L 3.1906,3.737212,2.6298,4.271149 +L 2.6298,4.271149,2.0835,4.805022 +L 4.1884,3.737212,4.6157,4.271149 +L 4.6157,4.271149,5.0395,4.805022 +L 5.0395,4.805022,5.4703,5.338959 +L 3.3342,4.805022,3.6105,5.17511 +L 3.6105,5.17511,3.8907,5.528179 +L 3.8907,5.528179,4.1884,5.872907 +L 4.1884,5.872907,3.7755,6.221686 +L 3.7755,6.221686,2.8995,6.350248 +L 2.8995,6.350248,0.8019,6.368668 +L 0.8019,6.368668,0.8019,6.025396 +L 0.8019,6.025396,0.8019,5.682177 +L 0.8019,5.682177,0.8019,5.338959 +L 7.5718,5.338959,7.5718,5.682177 +L 7.5718,5.682177,7.5718,6.025396 +L 7.5718,6.025396,7.5718,6.368668 +L 7.5718,6.368668,6.5771,6.368668 +L 6.5771,6.368668,5.5929,6.368668 +L 5.5929,6.368668,4.6157,6.368668 +L 4.6157,6.368668,4.3219,6.902541 +L 4.3219,6.902541,4.0343,7.436402 +L 4.0343,7.436402,3.7615,7.970274 +L 3.7615,7.970274,2.9069,7.970274 +L 2.9069,7.970274,2.0628,7.970274 +L 2.0628,7.970274,1.2257,7.970274 +L 4.6157,7.970274,4.462,8.340341 +L 4.462,8.340341,4.3219,8.693432 +L 4.3219,8.693432,4.1884,9.038084 +L 5.0395,7.970274,5.7439,7.970274 +L 5.7439,7.970274,6.444,7.970274 +L 6.444,7.970274,7.148,7.970274 + +[錯] 63 +L 0.8316,0.038097,1.2379,0.038097 +L 1.2379,0.038097,1.6582,0.038097 +L 1.6582,0.038097,2.0823,0.038097 +L 2.0823,0.038097,2.1594,2.307839 +L 2.1594,2.307839,1.9562,4.086154 +L 1.9562,4.086154,0.8316,4.805022 +L 4.6461,0.038097,4.6461,1.2852 +L 4.6461,1.2852,4.6461,2.515458 +L 4.6461,2.515458,4.6461,3.737212 +L 4.6461,3.737212,5.4797,3.737212 +L 5.4797,3.737212,6.3234,3.737212 +L 6.3234,3.737212,7.1784,3.737212 +L 7.1784,3.737212,7.1784,2.515458 +L 7.1784,2.515458,7.1784,1.2852 +L 7.1784,1.2852,7.1784,0.038097 +L 7.1784,0.038097,6.3234,0.038097 +L 6.3234,0.038097,5.4797,0.038097 +L 5.4797,0.038097,4.6461,0.038097 +L 2.7233,0.572002,2.9401,0.751448 +L 2.9401,0.751448,3.1541,0.913797 +L 3.1541,0.913797,3.3639,1.067785 +L 1.2589,1.86862,1.1086,2.324804 +L 1.1086,2.324804,0.965,2.772472 +L 0.965,2.772472,0.8316,3.203317 +L 2.9401,2.402482,3.07,2.858698 +L 3.07,2.858698,3.2101,3.306421 +L 3.2101,3.306421,3.3639,3.737212 +L 5.0734,2.135595,5.6198,2.135595 +L 5.6198,2.135595,6.1798,2.135595 +L 6.1798,2.135595,6.7511,2.135595 +L 2.5093,4.805022,2.208,5.218858 +L 2.208,5.218858,2.0998,5.624299 +L 2.0998,5.624299,2.0823,6.368668 +L 2.0823,6.368668,1.4869,6.388447 +L 1.4869,6.388447,1.1647,6.526804 +L 1.1647,6.526804,0.8316,6.902541 +L 0.8316,6.902541,1.2379,7.625721 +L 1.2379,7.625721,1.6582,8.340341 +L 1.6582,8.340341,2.0823,9.038084 +L 2.0823,9.038084,2.5093,8.504125 +L 2.5093,8.504125,2.9401,7.970274 +L 2.9401,7.970274,3.3639,7.436402 +L 3.1541,4.805022,3.6476,5.180769 +L 3.6476,5.180769,4.1484,5.319104 +L 4.1484,5.319104,5.0734,5.338959 +L 5.0734,5.338959,5.0734,5.871397 +L 5.0734,5.871397,5.0734,6.395462 +L 5.0734,6.395462,5.0734,6.902541 +L 5.0734,6.902541,4.7788,7.091739 +L 4.7788,7.091739,4.4987,7.27252 +L 4.4987,7.27252,4.2188,7.436402 +L 5.4723,5.338959,5.8961,5.338959 +L 5.8961,5.338959,6.3234,5.338959 +L 6.3234,5.338959,6.7511,5.338959 +L 6.7511,5.338959,6.3164,7.27252 +L 6.3164,7.27252,5.5074,7.689136 +L 5.5074,7.689136,5.0734,9.038084 +L 7.1784,5.338959,7.4547,5.338959 +L 7.4547,5.338959,7.7349,5.338959 +L 7.7349,5.338959,8.0295,5.338959 +L 7.1784,7.436402,6.8807,7.851684 +L 6.8807,7.851684,6.7682,8.266921 +L 6.7682,8.266921,6.7511,9.038084 + +[撮] 69 +L 0.8301,0.038097,1.1071,0.038097 +L 1.1071,0.038097,1.3908,0.038097 +L 1.3908,0.038097,1.6885,0.038097 +L 1.6885,0.038097,1.6885,1.2852 +L 1.6885,1.2852,1.6885,2.515458 +L 1.6885,2.515458,1.6885,3.737212 +L 1.6885,3.737212,1.3908,3.737212 +L 1.3908,3.737212,1.1071,3.737212 +L 1.1071,3.737212,0.8301,3.737212 +L 5.0719,0.038097,5.0719,0.570568 +L 5.0719,0.570568,5.0719,1.094557 +L 5.0719,1.094557,5.0719,1.601646 +L 5.0719,1.601646,4.564,1.437764 +L 4.564,1.437764,4.0667,1.256994 +L 4.0667,1.256994,3.5799,1.067785 +L 3.5799,1.067785,3.5168,2.505607 +L 3.5168,2.505607,3.4573,3.926486 +L 3.4573,3.926486,3.3977,5.338959 +L 3.3977,5.338959,4.9283,5.338959 +L 4.9283,5.338959,6.476,5.338959 +L 6.476,5.338959,8.0346,5.338959 +L 5.5027,0.038097,5.9297,0.570568 +L 5.9297,0.570568,6.3538,1.094557 +L 6.3538,1.094557,6.7807,1.601646 +L 6.7807,1.601646,6.1717,2.392587 +L 6.1717,2.392587,5.8946,2.946325 +L 5.8946,2.946325,5.7125,3.737212 +L 5.7125,3.737212,5.2642,3.322018 +L 5.2642,3.322018,5.0964,2.906692 +L 5.0964,2.906692,5.0719,2.135595 +L 8.0346,0.038097,7.7579,0.381282 +L 7.7579,0.381282,7.4816,0.724457 +L 7.4816,0.724457,7.208,1.067785 +L 7.208,2.135595,7.5093,2.550789 +L 7.5093,2.550789,7.6217,2.966015 +L 7.6217,2.966015,7.6353,3.737212 +L 7.6353,3.737212,7.208,3.737212 +L 7.208,3.737212,6.7807,3.737212 +L 6.7807,3.737212,6.3538,3.737212 +L 3.7932,2.669423,4.0667,2.669423 +L 4.0667,2.669423,4.3536,2.669423 +L 4.3536,2.669423,4.6446,2.669423 +L 3.7932,3.737212,4.4099,3.776833 +L 4.4099,3.776833,4.7388,4.053625 +L 4.7388,4.053625,5.0719,4.805022 +L 1.6885,4.271149,1.6885,4.984434 +L 1.6885,4.984434,1.6885,5.68082 +L 1.6885,5.68082,1.6885,6.368668 +L 1.6885,6.368668,1.3908,6.557888 +L 1.3908,6.557888,1.1071,6.738769 +L 1.1071,6.738769,0.8301,6.902541 +L 3.7932,6.368668,3.7932,7.091739 +L 3.7932,7.091739,3.7932,7.806425 +L 3.7932,7.806425,3.7932,8.504125 +L 3.7932,8.504125,4.9209,8.504125 +L 4.9209,8.504125,6.0592,8.504125 +L 6.0592,8.504125,7.208,8.504125 +L 7.208,8.504125,7.208,7.806425 +L 7.208,7.806425,7.208,7.091739 +L 7.208,7.091739,7.208,6.368668 +L 7.208,6.368668,6.0592,6.368668 +L 6.0592,6.368668,4.9209,6.368668 +L 4.9209,6.368668,3.7932,6.368668 +L 2.1158,6.902541,1.8146,7.337534 +L 1.8146,7.337534,1.7057,7.891239 +L 1.7057,7.891239,1.6885,9.038084 +L 4.2208,7.436402,5.0719,7.436402 +L 5.0719,7.436402,5.9297,7.436402 +L 5.9297,7.436402,6.7807,7.436402 + +[擦] 81 +L 0.864,0.038097,1.1403,0.038097 +L 1.1403,0.038097,1.4205,0.038097 +L 1.4205,0.038097,1.7151,0.038097 +L 1.7151,0.038097,1.7151,1.2852 +L 1.7151,1.2852,1.7151,2.515458 +L 1.7151,2.515458,1.7151,3.737212 +L 1.7151,3.737212,1.4205,3.737212 +L 1.4205,3.737212,1.1403,3.737212 +L 1.1403,3.737212,0.864,3.737212 +L 4.6778,0.038097,4.9513,0.038097 +L 4.9513,0.038097,5.235,0.038097 +L 5.235,0.038097,5.5289,0.038097 +L 5.5289,0.038097,5.5289,0.915242 +L 5.5289,0.915242,5.5289,1.792267 +L 5.5289,1.792267,5.5289,2.669423 +L 5.5289,2.669423,4.8112,2.669423 +L 4.8112,2.669423,4.0964,2.669423 +L 4.0964,2.669423,3.3962,2.669423 +L 3.3962,0.572002,3.6729,0.915242 +L 3.6729,0.915242,3.9528,1.258428 +L 3.9528,1.258428,4.2505,1.601646 +L 7.6338,1.067785,7.3435,1.256994 +L 7.3435,1.256994,7.0563,1.437764 +L 7.0563,1.437764,6.7827,1.601646 +L 5.96,2.669423,6.5064,2.669423 +L 6.5064,2.669423,7.0664,2.669423 +L 7.0664,2.669423,7.6338,2.669423 +L 2.9689,3.737212,2.6358,4.112959 +L 2.6358,4.112959,2.3101,4.25136 +L 2.3101,4.25136,1.7151,4.271149 +L 1.7151,4.271149,1.7151,4.984434 +L 1.7151,4.984434,1.7151,5.68082 +L 1.7151,5.68082,1.7151,6.368668 +L 1.7151,6.368668,1.4205,6.557888 +L 1.4205,6.557888,1.1403,6.738769 +L 1.1403,6.738769,0.864,6.902541 +L 3.3962,3.737212,3.529,3.926486 +L 3.529,3.926486,3.6729,4.107267 +L 3.6729,4.107267,3.82,4.271149 +L 3.82,4.271149,3.529,4.641118 +L 3.529,4.641118,3.2418,4.994318 +L 3.2418,4.994318,2.9689,5.338959 +L 2.9689,5.338959,3.6204,6.163709 +L 3.6204,6.163709,3.6974,6.95476 +L 3.6974,6.95476,3.3962,7.703365 +L 3.3962,7.703365,4.0964,7.806425 +L 4.0964,7.806425,4.8112,7.892608 +L 4.8112,7.892608,5.5289,7.970274 +L 5.5289,7.970274,5.5289,8.340341 +L 5.5289,8.340341,5.5289,8.693432 +L 5.5289,8.693432,5.5289,9.038084 +L 7.6338,3.737212,7.3435,4.107267 +L 7.3435,4.107267,7.0563,4.460369 +L 7.0563,4.460369,6.7827,4.805022 +L 6.7827,4.805022,6.4185,4.429328 +L 6.4185,4.429328,5.8756,4.290927 +L 5.8756,4.290927,4.6778,4.271149 +L 4.6778,4.271149,4.524,4.538036 +L 4.524,4.538036,4.3801,4.805022 +L 4.3801,4.805022,4.2505,5.071974 +L 4.2505,5.071974,4.524,5.442095 +L 4.524,5.442095,4.8112,5.795175 +L 4.8112,5.795175,5.1016,6.139805 +L 5.1016,6.139805,4.8112,6.21606 +L 4.8112,6.21606,4.524,6.292359 +L 4.524,6.292359,4.2505,6.368668 +L 6.3523,5.338959,6.0826,5.682177 +L 6.0826,5.682177,5.8059,6.025396 +L 5.8059,6.025396,5.5289,6.368668 +L 7.21,5.338959,7.3435,5.605933 +L 7.3435,5.605933,7.4836,5.872907 +L 7.4836,5.872907,7.6338,6.139805 +L 7.6338,6.139805,7.21,6.21606 +L 7.21,6.21606,6.7827,6.292359 +L 6.7827,6.292359,6.3523,6.368668 +L 2.1455,6.902541,1.8408,7.337534 +L 1.8408,7.337534,1.7326,7.891239 +L 1.7326,7.891239,1.7151,9.038084 +L 5.96,7.970274,6.5064,7.970274 +L 6.5064,7.970274,7.0664,7.970274 +L 7.0664,7.970274,7.6338,7.970274 + +[惨] 45 +L 1.6852,0.038097,1.6852,3.049439 +L 1.6852,3.049439,1.6852,6.052167 +L 1.6852,6.052167,1.6852,9.038084 +L 3.8252,0.038097,4.9249,0.471722 +L 4.9249,0.471722,5.8009,1.015544 +L 5.8009,1.015544,7.2085,2.135617 +L 3.8252,1.601646,4.8938,2.016851 +L 4.8938,2.016851,5.5484,2.432165 +L 5.5484,2.432165,6.3575,3.203317 +L 3.608,2.669423,4.2283,3.203317 +L 4.2283,3.203317,4.8619,3.737212 +L 4.8619,3.737212,5.4997,4.271149 +L 3.1807,3.737212,3.6711,4.37423 +L 3.6711,4.37423,4.1684,4.994318 +L 4.1684,4.994318,4.6763,5.605933 +L 4.6763,5.605933,4.0949,5.708982 +L 4.0949,5.708982,3.5275,5.795197 +L 3.5275,5.795197,2.9674,5.87294 +L 7.6358,3.737212,6.6832,5.072006 +L 6.6832,5.072006,6.0251,5.694863 +L 6.0251,5.694863,5.0724,6.139805 +L 5.0724,6.139805,5.2016,6.482991 +L 5.2016,6.482991,5.3487,6.82622 +L 5.3487,6.82622,5.4997,7.169417 +L 5.4997,7.169417,4.7989,7.27252 +L 4.7989,7.27252,4.0949,7.358735 +L 4.0949,7.358735,3.3947,7.436402 +L 0.8625,5.338959,0.8625,6.052167 +L 0.8625,6.052167,0.8625,6.748564 +L 0.8625,6.748564,0.8625,7.436402 +L 6.7812,5.87294,7.2085,5.87294 +L 7.2085,5.87294,7.6358,5.87294 +L 7.6358,5.87294,8.0631,5.87294 +L 2.5436,7.169417,2.3892,7.436402 +L 2.3892,7.436402,2.2456,7.703377 +L 2.2456,7.703377,2.1163,7.970274 +L 7.6358,7.169417,7.4856,7.436402 +L 7.4856,7.436402,7.3385,7.703377 +L 7.3385,7.703377,7.2085,7.970274 +L 7.2085,7.970274,6.8762,7.594582 +L 6.8762,7.594582,6.5469,7.456213 +L 6.5469,7.456213,5.927,7.436402 +L 4.6763,7.970274,4.7989,8.340341 +L 4.7989,8.340341,4.9288,8.693432 +L 4.9288,8.693432,5.0724,9.038084 + +[桟] 57 +L 2.1428,0.038097,2.0623,1.638422 +L 2.0623,1.638422,1.9957,3.230198 +L 1.9957,3.230198,1.9288,4.805022 +L 1.9288,4.805022,1.5646,4.107267 +L 1.5646,4.107267,1.2077,3.392614 +L 1.2077,3.392614,0.8645,2.669423 +L 7.6378,0.038097,7.1475,0.570568 +L 7.1475,0.570568,6.6607,1.094568 +L 6.6607,1.094568,6.1738,1.601646 +L 6.1738,1.601646,5.0881,0.877022 +L 5.0881,0.877022,4.4786,0.610124 +L 4.4786,0.610124,3.8205,0.572002 +L 8.0616,0.038097,8.0616,0.570568 +L 8.0616,0.570568,8.0616,1.094568 +L 8.0616,1.094568,8.0616,1.601646 +L 6.384,2.135617,6.0901,2.669423 +L 6.0901,2.669423,5.8064,3.203317 +L 5.8064,3.203317,5.5294,3.737212 +L 5.5294,3.737212,4.9518,3.737212 +L 4.9518,3.737212,4.3809,3.737212 +L 4.3809,3.737212,3.8205,3.737212 +L 6.8151,2.135617,7.0845,2.505618 +L 7.0845,2.505618,7.3615,2.858698 +L 7.3615,2.858698,7.6378,3.203317 +L 5.5294,4.271149,5.3826,5.465956 +L 5.3826,5.465956,4.9445,5.847493 +L 4.9445,5.847493,4.2478,5.87294 +L 5.9567,4.271149,6.6992,4.409573 +L 6.6992,4.409573,7.3405,4.666565 +L 7.3405,4.666565,8.0616,4.805022 +L 3.0006,4.805022,2.5246,5.238668 +L 2.5246,5.238668,2.1915,5.782523 +L 2.1915,5.782523,1.7156,6.902541 +L 1.7156,6.902541,1.4245,6.902541 +L 1.4245,6.902541,1.1373,6.902541 +L 1.1373,6.902541,0.8645,6.902541 +L 5.9567,5.87294,5.6593,6.405368 +L 5.6593,6.405368,5.3791,6.929323 +L 5.3791,6.929323,5.1056,7.436402 +L 5.1056,7.436402,4.6748,7.436402 +L 4.6748,7.436402,4.2478,7.436402 +L 4.2478,7.436402,3.8205,7.436402 +L 6.384,6.368668,6.7906,6.368668 +L 6.7906,6.368668,7.2105,6.368668 +L 7.2105,6.368668,7.6378,6.368668 +L 2.5733,6.902541,2.2721,7.337534 +L 2.2721,7.337534,2.1604,7.891283 +L 2.1604,7.891283,2.1428,9.038084 +L 5.9567,7.436402,5.6555,7.851684 +L 5.6555,7.851684,5.5437,8.266921 +L 5.5437,8.266921,5.5294,9.038084 +L 6.384,7.970274,6.7906,8.073465 +L 6.7906,8.073465,7.2105,8.15957 +L 7.2105,8.15957,7.6378,8.237238 +L 7.6378,8.237238,7.4907,8.504125 +L 7.4907,8.504125,7.365,8.771121 +L 7.365,8.771121,7.2389,9.038084 + +[暫] 69 +L 1.7176,0.038097,1.7176,1.104462 +L 1.7176,1.104462,1.7176,2.162312 +L 1.7176,2.162312,1.7176,3.203317 +L 1.7176,3.203317,1.9904,3.306421 +L 1.9904,3.306421,2.2639,3.392614 +L 2.2639,3.392614,2.5406,3.470314 +L 2.5406,3.470314,2.1935,4.033935 +L 2.1935,4.033935,1.7561,4.24151 +L 1.7561,4.24151,0.8595,4.271149 +L 2.113,0.038097,3.6681,0.038097 +L 3.6681,0.038097,5.2267,0.038097 +L 5.2267,0.038097,6.7852,0.038097 +L 6.7852,0.038097,6.7852,0.570568 +L 6.7852,0.570568,6.7852,1.094568 +L 6.7852,1.094568,6.7852,1.601646 +L 6.7852,1.601646,5.2267,1.601646 +L 5.2267,1.601646,3.6681,1.601646 +L 3.6681,1.601646,2.113,1.601646 +L 6.7852,2.135617,6.7852,2.505618 +L 6.7852,2.505618,6.7852,2.858698 +L 6.7852,2.858698,6.7852,3.203317 +L 6.7852,3.203317,5.5037,3.203317 +L 5.5037,3.203317,4.2253,3.203317 +L 4.2253,3.203317,2.9644,3.203317 +L 4.6736,4.004273,3.2233,4.468917 +L 3.2233,4.468917,2.1515,5.052218 +L 2.1515,5.052218,1.2903,5.338959 +L 1.2903,5.338959,1.2903,6.052167 +L 1.2903,6.052167,1.2903,6.748564 +L 1.2903,6.748564,1.2903,7.436402 +L 1.2903,7.436402,1.8818,7.466063 +L 1.8818,7.466063,2.2075,7.673715 +L 2.2075,7.673715,2.5406,8.237238 +L 2.5406,8.237238,1.9694,8.340341 +L 1.9694,8.340341,1.4128,8.426556 +L 1.4128,8.426556,0.8595,8.504125 +L 6.7852,4.271149,6.7852,4.984434 +L 6.7852,4.984434,6.7852,5.680842 +L 6.7852,5.680842,6.7852,6.368668 +L 6.7852,6.368668,6.2112,6.368668 +L 6.2112,6.368668,5.654,6.368668 +L 5.654,6.368668,5.1041,6.368668 +L 5.1041,6.368668,5.1041,5.861502 +L 5.1041,5.861502,5.1041,5.337624 +L 5.1041,5.337624,5.1041,4.805022 +L 2.9644,5.338959,2.5406,5.682177 +L 2.5406,5.682177,2.1203,6.025396 +L 2.1203,6.025396,1.7176,6.368668 +L 3.6085,5.338959,3.6716,5.682177 +L 3.6716,5.682177,3.7385,6.025396 +L 3.7385,6.025396,3.8225,6.368668 +L 3.8225,6.368668,3.2022,6.388447 +L 3.2022,6.388447,2.873,6.526804 +L 2.873,6.526804,2.5406,6.902541 +L 2.5406,6.902541,2.873,7.258401 +L 2.873,7.258401,3.2022,7.258401 +L 3.2022,7.258401,3.8225,6.902541 +L 7.2055,6.368668,7.4861,6.368668 +L 7.4861,6.368668,7.7663,6.368668 +L 7.7663,6.368668,8.0636,6.368668 +L 5.1041,6.902541,5.1041,7.27252 +L 5.1041,7.27252,5.1041,7.625721 +L 5.1041,7.625721,5.1041,7.970274 +L 5.1041,7.970274,6.3159,7.990128 +L 6.3159,7.990128,6.9747,8.128509 +L 6.9747,8.128509,7.6363,8.504125 +L 2.9644,8.504125,3.3952,8.504125 +L 3.3952,8.504125,3.8225,8.504125 +L 3.8225,8.504125,4.2495,8.504125 + +[伺] 33 +L 1.716,0.038097,1.6355,1.819105 +L 1.6355,1.819105,1.5651,3.583322 +L 1.5651,3.583322,1.5056,5.338959 +L 1.5056,5.338959,1.2887,5.17511 +L 1.2887,5.17511,1.0783,4.994318 +L 1.0783,4.994318,0.865,4.805022 +L 6.3845,0.038097,6.8121,0.038097 +L 6.8121,0.038097,7.2429,0.038097 +L 7.2429,0.038097,7.6632,0.038097 +L 7.6632,0.038097,7.6632,2.860132 +L 7.6632,2.860132,7.6632,5.682177 +L 7.6632,5.682177,7.6632,8.504125 +L 7.6632,8.504125,6.1116,8.504125 +L 6.1116,8.504125,4.553,8.504125 +L 4.553,8.504125,2.9976,8.504125 +L 3.8522,2.135617,3.8522,3.039457 +L 3.8522,3.039457,3.8522,3.926486 +L 3.8522,3.926486,3.8522,4.805022 +L 3.8522,4.805022,4.4024,4.805022 +L 4.4024,4.805022,4.959,4.805022 +L 4.959,4.805022,5.5334,4.805022 +L 5.5334,4.805022,5.5334,3.926486 +L 5.5334,3.926486,5.5334,3.039457 +L 5.5334,3.039457,5.5334,2.135617 +L 5.5334,2.135617,4.959,2.135617 +L 4.959,2.135617,4.4024,2.135617 +L 4.4024,2.135617,3.8522,2.135617 +L 1.716,5.87294,1.8243,7.151083 +L 1.8243,7.151083,2.0309,8.090342 +L 2.0309,8.090342,2.1433,9.038084 +L 3.4284,6.368668,4.4024,6.368668 +L 4.4024,6.368668,5.3863,6.368668 +L 5.3863,6.368668,6.3845,6.368668 + +# kan_28 ------------------------------------------------------- +# 刺嗣施旨祉紫肢脂諮賜雌侍慈滋璽軸執湿漆疾芝赦斜遮蛇邪勺爵酌釈寂朱殊狩珠趣儒寿需囚愁秀舟酬醜充柔汁渋 + +[刺] 42 +L 2.1084,-0.000003,2.024,1.247231 +L 2.024,1.247231,1.9539,2.477478 +L 1.9539,2.477478,1.8947,3.699177 +L 1.8947,3.699177,1.2534,2.822141 +L 1.2534,2.822141,0.623,1.944952 +L 0.623,1.944952,0.0034,1.067807 +L 5.9187,-0.000003,6.1989,-0.000003 +L 6.1989,-0.000003,6.4794,-0.000003 +L 6.4794,-0.000003,6.7768,-0.000003 +L 6.7768,-0.000003,6.7768,3.011361 +L 6.7768,3.011361,6.7768,6.014254 +L 6.7768,6.014254,6.7768,8.999984 +L 3.3938,1.601766,3.0922,1.944952 +L 3.0922,1.944952,2.812,2.28817 +L 2.812,2.28817,2.5353,2.631411 +L 5.0676,2.13565,5.0676,3.889886 +L 5.0676,3.889886,5.0676,5.644176 +L 5.0676,5.644176,5.0676,7.398302 +L 0.4304,3.699177,0.4304,4.603236 +L 0.4304,4.603236,0.4304,5.49008 +L 0.4304,5.49008,0.4304,6.368701 +L 0.4304,6.368701,1.3273,6.398352 +L 1.3273,6.398352,1.7613,6.605905 +L 1.7613,6.605905,2.1084,7.169548 +L 2.1084,7.169548,1.7441,7.706298 +L 1.7441,7.706298,1.1977,7.903969 +L 1.1977,7.903969,0.0034,7.932283 +L 2.9626,3.699177,3.2358,3.699177 +L 3.2358,3.699177,3.523,3.699177 +L 3.523,3.699177,3.8176,3.699177 +L 3.8176,3.699177,3.8176,4.603236 +L 3.8176,4.603236,3.8176,5.49008 +L 3.8176,5.49008,3.8176,6.368701 +L 3.8176,6.368701,2.5563,6.28114 +L 2.5563,6.28114,2.1431,5.718953 +L 2.1431,5.718953,2.1084,4.233169 +L 2.5353,7.932283,2.3847,8.302372 +L 2.3847,8.302372,2.2376,8.655431 +L 2.2376,8.655431,2.1084,8.999984 +L 2.9626,7.932283,3.3938,7.932283 +L 3.3938,7.932283,3.8176,7.932283 +L 3.8176,7.932283,4.2449,7.932283 + +[嗣] 57 +L 0.0019,-0.000003,0.0019,1.781202 +L 0.0019,1.781202,0.0019,3.545332 +L 0.0019,3.545332,0.0019,5.300903 +L 0.0019,5.300903,1.1367,5.300903 +L 1.1367,5.300903,2.2715,5.300903 +L 2.2715,5.300903,3.4199,5.300903 +L 3.4199,5.300903,3.4199,3.545332 +L 3.4199,3.545332,3.4199,1.781202 +L 3.4199,1.781202,3.4199,-0.000003 +L 3.4199,-0.000003,2.1489,0.566496 +L 2.1489,0.566496,2.0473,1.836201 +L 2.0473,1.836201,1.7107,3.165338 +L 1.7107,3.165338,1.413,2.711913 +L 1.413,2.711913,1.301,2.029733 +L 1.301,2.029733,1.2835,0.533858 +L 5.9557,-0.000003,6.2254,-0.000003 +L 6.2254,-0.000003,6.5126,-0.000003 +L 6.5126,-0.000003,6.8068,-0.000003 +L 6.8068,-0.000003,6.8068,2.822141 +L 6.8068,2.822141,6.8068,5.644176 +L 6.8068,5.644176,6.8068,8.466112 +L 6.8068,8.466112,5.9557,8.466112 +L 5.9557,8.466112,5.0976,8.466112 +L 5.0976,8.466112,4.2465,8.466112 +L 4.2465,2.13565,4.2465,3.012795 +L 4.2465,3.012795,4.2465,3.889886 +L 4.2465,3.889886,4.2465,4.76703 +L 4.2465,4.76703,4.6668,4.76703 +L 4.6668,4.76703,5.0976,4.76703 +L 5.0976,4.76703,5.5249,4.76703 +L 5.5249,4.76703,5.5249,3.889886 +L 5.5249,3.889886,5.5249,3.012795 +L 5.5249,3.012795,5.5249,2.13565 +L 5.5249,2.13565,5.0976,2.13565 +L 5.0976,2.13565,4.6668,2.13565 +L 4.6668,2.13565,4.2465,2.13565 +L 0.6425,3.165338,1.0947,3.580641 +L 1.0947,3.580641,1.2624,3.995845 +L 1.2624,3.995845,1.2835,4.76703 +L 2.5653,3.165338,2.2676,3.580641 +L 2.2676,3.580641,2.1594,3.995845 +L 2.1594,3.995845,2.1416,4.76703 +L 4.2465,6.368701,4.8003,6.368701 +L 4.8003,6.368701,5.3743,6.368701 +L 5.3743,6.368701,5.9557,6.368701 +L 0.4324,6.902584,0.4324,7.435077 +L 0.4324,7.435077,0.4324,7.959044 +L 0.4324,7.959044,0.4324,8.466112 +L 0.4324,8.466112,1.2835,8.466112 +L 1.2835,8.466112,2.1416,8.466112 +L 2.1416,8.466112,2.9926,8.466112 +L 2.9926,8.466112,2.9926,7.959044 +L 2.9926,7.959044,2.9926,7.435077 +L 2.9926,7.435077,2.9926,6.902584 +L 2.9926,6.902584,2.1416,6.902584 +L 2.1416,6.902584,1.2835,6.902584 +L 1.2835,6.902584,0.4324,6.902584 + +[施] 60 +L 0.0351,-0.000003,0.8266,2.401179 +L 0.8266,2.401179,0.9531,4.793791 +L 0.9531,4.793791,0.8897,7.398302 +L 0.8897,7.398302,0.592,7.398302 +L 0.592,7.398302,0.3118,7.398302 +L 0.3118,7.398302,0.0351,7.398302 +L 1.5271,-0.000003,1.7198,0.189326 +L 1.7198,0.189326,1.9299,0.370075 +L 1.9299,0.370075,2.14,0.533858 +L 2.14,0.533858,2.14,2.134194 +L 2.14,2.134194,2.14,3.726058 +L 2.14,3.726058,2.14,5.300903 +L 2.14,5.300903,1.8637,5.300903 +L 1.8637,5.300903,1.5937,5.300903 +L 1.5937,5.300903,1.3135,5.300903 +L 4.2734,-0.000003,3.9753,0.493032 +L 3.9753,0.493032,3.8633,1.452015 +L 3.8633,1.452015,3.8496,3.699177 +L 3.8496,3.699177,3.5554,3.699177 +L 3.5554,3.699177,3.2678,3.699177 +L 3.2678,3.699177,2.9946,3.699177 +L 4.7038,-0.000003,5.5339,-0.000003 +L 5.5339,-0.000003,6.3815,-0.000003 +L 6.3815,-0.000003,7.2361,-0.000003 +L 7.2361,-0.000003,7.2361,0.370075 +L 7.2361,0.370075,7.2361,0.723253 +L 7.2361,0.723253,7.2361,1.067807 +L 5.1245,1.067807,5.1245,2.134194 +L 5.1245,2.134194,5.1245,3.192142 +L 5.1245,3.192142,5.1245,4.233169 +L 5.1245,4.233169,4.7038,4.233169 +L 4.7038,4.233169,4.2734,4.233169 +L 4.2734,4.233169,3.8496,4.233169 +L 3.8496,4.233169,3.8496,4.76703 +L 3.8496,4.76703,3.8496,5.300903 +L 3.8496,5.300903,3.8496,5.834753 +L 5.9822,2.13565,6.2593,2.13565 +L 6.2593,2.13565,6.5356,2.13565 +L 6.5356,2.13565,6.8057,2.13565 +L 6.8057,2.13565,6.7251,3.202004 +L 6.7251,3.202004,6.6582,4.259941 +L 6.6582,4.259941,6.5952,5.300903 +L 6.5952,5.300903,6.1052,5.137109 +L 6.1052,5.137109,5.618,4.956316 +L 5.618,4.956316,5.1245,4.76703 +L 5.1245,4.76703,5.1245,5.300903 +L 5.1245,5.300903,5.1245,5.834753 +L 5.1245,5.834753,5.1245,6.368701 +L 2.9946,6.368701,3.45,7.15255 +L 3.45,7.15255,3.6706,7.834741 +L 3.6706,7.834741,3.8496,8.999984 +L 1.3135,7.398302,1.3135,7.932283 +L 1.3135,7.932283,1.3135,8.466112 +L 1.3135,8.466112,1.3135,8.999984 +L 1.7408,7.398302,2.014,7.398302 +L 2.014,7.398302,2.2942,7.398302 +L 2.2942,7.398302,2.5673,7.398302 +L 4.2734,7.398302,5.2537,7.398302 +L 5.2537,7.398302,6.2383,7.398302 +L 6.2383,7.398302,7.2361,7.398302 + +[旨] 27 +L 0.8882,-0.000003,0.8882,1.247231 +L 0.8882,1.247231,0.8882,2.477478 +L 0.8882,2.477478,0.8882,3.699177 +L 0.8882,3.699177,2.4436,3.699177 +L 2.4436,3.699177,3.9983,3.699177 +L 3.9983,3.699177,5.5569,3.699177 +L 5.5569,3.699177,5.5569,2.477478 +L 5.5569,2.477478,5.5569,1.247231 +L 5.5569,1.247231,5.5569,-0.000003 +L 5.5569,-0.000003,3.9983,-0.000003 +L 3.9983,-0.000003,2.4436,-0.000003 +L 2.4436,-0.000003,0.8882,-0.000003 +L 1.3155,2.13565,2.5764,2.13565 +L 2.5764,2.13565,3.8481,2.13565 +L 3.8481,2.13565,5.1296,2.13565 +L 0.8882,5.834753,0.608,6.307945 +L 0.608,6.307945,0.5064,7.128559 +L 0.5064,7.128559,0.4924,8.999984 +L 1.3155,5.834753,3.0037,5.834753 +L 3.0037,5.834753,4.7023,5.834753 +L 4.7023,5.834753,6.4084,5.834753 +L 6.4084,5.834753,6.4084,6.204841 +L 6.4084,6.204841,6.4084,6.558031 +L 6.4084,6.558031,6.4084,6.902584 +L 0.8882,7.398302,2.6079,7.675203 +L 2.6079,7.675203,4.3244,8.189363 +L 4.3244,8.189363,5.9846,8.466112 + +[祉] 36 +L 0.9217,-0.000003,0.9045,2.623038 +L 0.9045,2.623038,0.7956,3.720345 +L 0.7956,3.720345,0.4909,4.233169 +L 0.4909,4.233169,0.3403,4.069298 +L 0.3403,4.069298,0.197,3.888517 +L 0.197,3.888517,0.0639,3.699177 +L 2.2004,-0.000003,2.6064,-0.000003 +L 2.6064,-0.000003,3.0267,-0.000003 +L 3.0267,-0.000003,3.447,-0.000003 +L 3.447,-0.000003,3.447,2.134194 +L 3.447,2.134194,3.447,4.259941 +L 3.447,4.259941,3.447,6.368701 +L 3.8781,-0.000003,4.3054,-0.000003 +L 4.3054,-0.000003,4.7359,-0.000003 +L 4.7359,-0.000003,5.1565,-0.000003 +L 5.1565,-0.000003,5.1565,3.011361 +L 5.1565,3.011361,5.1565,6.014254 +L 5.1565,6.014254,5.1565,8.999984 +L 5.587,-0.000003,6.1372,-0.000003 +L 6.1372,-0.000003,6.6972,-0.000003 +L 6.6972,-0.000003,7.2615,-0.000003 +L 2.2004,3.165338,1.7731,3.699177 +L 1.7731,3.699177,1.3455,4.233169 +L 1.3455,4.233169,0.9217,4.76703 +L 0.9217,4.76703,1.3455,5.567844 +L 1.3455,5.567844,1.7731,6.368701 +L 1.7731,6.368701,2.2004,7.169548 +L 2.2004,7.169548,1.4751,7.245868 +L 1.4751,7.245868,0.7676,7.322123 +L 0.7676,7.322123,0.0639,7.398302 +L 5.587,4.76703,6.0146,4.76703 +L 6.0146,4.76703,6.4419,4.76703 +L 6.4419,4.76703,6.8657,4.76703 +L 0.9217,7.932283,0.9217,8.302372 +L 0.9217,8.302372,0.9217,8.655431 +L 0.9217,8.655431,0.9217,8.999984 + +[紫] 48 +L 0.3076,-0.000003,0.654,0.370075 +L 0.654,0.370075,1.0151,0.723253 +L 1.0151,0.723253,1.3794,1.067807 +L 3.4843,-0.000003,3.4843,0.723253 +L 3.4843,0.723253,3.4843,1.437896 +L 3.4843,1.437896,3.4843,2.13565 +L 3.4843,2.13565,2.353,2.13565 +L 2.353,2.13565,1.2249,2.13565 +L 1.2249,2.13565,0.094,2.13565 +L 6.4404,-0.000003,6.1462,0.370075 +L 6.1462,0.370075,5.8625,0.723253 +L 5.8625,0.723253,5.5855,1.067807 +L 3.9043,2.13565,4.6608,2.504294 +L 4.6608,2.504294,5.6909,2.771246 +L 5.6909,2.771246,6.4404,3.165338 +L 6.4404,3.165338,6.2898,3.354569 +L 6.2898,3.354569,6.1462,3.535317 +L 6.1462,3.535317,6.0166,3.699177 +L 3.0532,2.631411,2.4231,3.580641 +L 2.4231,3.580641,1.9884,3.995845 +L 1.9884,3.995845,1.3794,4.233169 +L 3.4843,3.165338,3.9043,3.699177 +L 3.9043,3.699177,4.3354,4.233169 +L 4.3354,4.233169,4.7624,4.76703 +L 0.5209,5.300903,0.5209,6.367366 +L 0.5209,6.367366,0.5209,7.425183 +L 0.5209,7.425183,0.5209,8.466112 +L 0.9482,5.300903,1.386,5.793927 +L 1.386,5.793927,1.5997,6.752811 +L 1.5997,6.752811,1.7751,8.999984 +L 2.1989,5.834753,2.4753,6.024126 +L 2.4753,6.024126,2.7558,6.204841 +L 2.7558,6.204841,3.0532,6.368701 +L 4.7624,5.834753,4.465,6.307945 +L 4.465,6.307945,4.3526,7.128559 +L 4.3526,7.128559,4.3354,8.999984 +L 5.1932,5.834753,5.7396,5.834753 +L 5.7396,5.834753,6.2965,5.834753 +L 6.2965,5.834753,6.8674,5.834753 +L 6.8674,5.834753,6.8674,6.204841 +L 6.8674,6.204841,6.8674,6.558031 +L 6.8674,6.558031,6.8674,6.902584 +L 4.7624,7.398302,5.3161,7.587621 +L 5.3161,7.587621,5.8692,7.768412 +L 5.8692,7.768412,6.4404,7.932283 +L 2.1989,7.932283,2.4753,7.932283 +L 2.4753,7.932283,2.7558,7.932283 +L 2.7558,7.932283,3.0532,7.932283 + +[肢] 45 +L 0.1271,0.266982,0.4038,1.104561 +L 0.4038,1.104561,0.5093,3.23022 +L 0.5093,3.23022,0.5229,8.466112 +L 0.5229,8.466112,1.0833,8.466112 +L 1.0833,8.466112,1.6546,8.466112 +L 1.6546,8.466112,2.2321,8.466112 +L 2.2321,8.466112,2.2321,5.644176 +L 2.2321,5.644176,2.2321,2.822141 +L 2.2321,2.822141,2.2321,-0.000003 +L 2.2321,-0.000003,1.9348,-0.000003 +L 1.9348,-0.000003,1.6546,-0.000003 +L 1.6546,-0.000003,1.3775,-0.000003 +L 3.2969,-0.000003,3.9168,0.723253 +L 3.9168,0.723253,4.5507,1.437896 +L 4.5507,1.437896,5.1882,2.13565 +L 5.1882,2.13565,4.3091,3.651193 +L 4.3091,3.651193,3.9833,4.47173 +L 3.9833,4.47173,3.9417,5.300903 +L 3.9417,5.300903,4.3444,5.300903 +L 4.3444,5.300903,4.7644,5.300903 +L 4.7644,5.300903,5.1882,5.300903 +L 5.1882,5.300903,4.9745,7.014193 +L 4.9745,7.014193,4.2954,7.439346 +L 4.2954,7.439346,3.0867,7.398302 +L 6.8977,-0.000003,6.4736,0.533858 +L 6.4736,0.533858,6.0428,1.067807 +L 6.0428,1.067807,5.6193,1.601766 +L 5.6193,2.631411,6.0428,3.432235 +L 6.0428,3.432235,6.4736,4.233169 +L 6.4736,4.233169,6.8977,5.033918 +L 6.8977,5.033918,6.4736,5.137109 +L 6.4736,5.137109,6.0428,5.223225 +L 6.0428,5.223225,5.6193,5.300903 +L 0.9467,3.699177,1.2234,3.699177 +L 1.2234,3.699177,1.5071,3.699177 +L 1.5071,3.699177,1.8052,3.699177 +L 0.9467,6.368701,1.2234,6.368701 +L 1.2234,6.368701,1.5071,6.368701 +L 1.5071,6.368701,1.8052,6.368701 +L 5.6193,7.398302,5.3143,7.813616 +L 5.3143,7.813616,5.2022,8.228831 +L 5.2022,8.228831,5.1882,8.999984 +L 6.0428,7.398302,6.4736,7.398302 +L 6.4736,7.398302,6.8977,7.398302 +L 6.8977,7.398302,7.3247,7.398302 + +[脂] 45 +L 0.126,0.266982,0.4272,1.104561 +L 0.4272,1.104561,0.5354,3.23022 +L 0.5354,3.23022,0.5529,8.466112 +L 0.5529,8.466112,1.1098,8.466112 +L 1.1098,8.466112,1.6807,8.466112 +L 1.6807,8.466112,2.2621,8.466112 +L 2.2621,8.466112,2.2621,5.644176 +L 2.2621,5.644176,2.2621,2.822141 +L 2.2621,2.822141,2.2621,-0.000003 +L 2.2621,-0.000003,1.9644,-0.000003 +L 1.9644,-0.000003,1.6807,-0.000003 +L 1.6807,-0.000003,1.4114,-0.000003 +L 3.9363,-0.000003,3.9363,1.247231 +L 3.9363,1.247231,3.9363,2.477478 +L 3.9363,2.477478,3.9363,3.699177 +L 3.9363,3.699177,4.917,3.699177 +L 4.917,3.699177,5.8977,3.699177 +L 5.8977,3.699177,6.8994,3.699177 +L 6.8994,3.699177,6.8994,2.477478 +L 6.8994,2.477478,6.8994,1.247231 +L 6.8994,1.247231,6.8994,-0.000003 +L 6.8994,-0.000003,5.8977,-0.000003 +L 5.8977,-0.000003,4.917,-0.000003 +L 4.917,-0.000003,3.9363,-0.000003 +L 4.3675,2.13565,5.0676,2.13565 +L 5.0676,2.13565,5.7751,2.13565 +L 5.7751,2.13565,6.5004,2.13565 +L 0.9802,3.699177,1.2534,3.699177 +L 1.2534,3.699177,1.541,3.699177 +L 1.541,3.699177,1.8352,3.699177 +L 4.3675,5.300903,4.0627,5.793927 +L 4.0627,5.793927,3.9538,6.752811 +L 3.9538,6.752811,3.9363,8.999984 +L 4.7944,5.300903,5.628,5.300903 +L 5.628,5.300903,6.4724,5.300903 +L 6.4724,5.300903,7.3267,5.300903 +L 7.3267,5.300903,7.3267,5.67097 +L 7.3267,5.67097,7.3267,6.024126 +L 7.3267,6.024126,7.3267,6.368701 +L 0.9802,6.368701,1.2534,6.368701 +L 1.2534,6.368701,1.541,6.368701 +L 1.541,6.368701,1.8352,6.368701 +L 4.3675,7.398302,5.4077,7.536747 +L 5.4077,7.536747,6.1639,7.793849 +L 6.1639,7.793849,6.8994,7.932283 + +[諮] 68 +L 0.583,-0.000003,0.583,0.723253 +L 0.583,0.723253,0.583,1.437896 +L 0.583,1.437896,0.583,2.13565 +L 0.583,2.13565,0.9892,2.13565 +L 0.9892,2.13565,1.4099,2.13565 +L 1.4099,2.13565,1.8337,2.13565 +L 1.8337,2.13565,1.8337,1.437896 +L 1.8337,1.437896,1.8337,0.723253 +L 1.8337,0.723253,1.8337,-0.000003 +L 1.8337,-0.000003,1.4099,-0.000003 +L 1.4099,-0.000003,0.9892,-0.000003 +L 0.9892,-0.000003,0.583,-0.000003 +L 3.9733,-0.000003,3.9733,0.877142 +L 3.9733,0.877142,3.9733,1.754309 +L 3.9733,1.754309,3.9733,2.631411 +L 3.9733,2.631411,4.8034,2.631411 +L 4.8034,2.631411,5.6475,2.631411 +L 5.6475,2.631411,6.5056,2.631411 +L 6.5056,2.631411,6.5056,1.754309 +L 6.5056,1.754309,6.5056,0.877142 +L 6.5056,0.877142,6.5056,-0.000003 +L 6.5056,-0.000003,5.6475,-0.000003 +L 5.6475,-0.000003,4.8034,-0.000003 +L 4.8034,-0.000003,3.9733,-0.000003 +L 0.583,3.699177,0.9892,3.699177 +L 0.9892,3.699177,1.4099,3.699177 +L 1.4099,3.699177,1.8337,3.699177 +L 2.6848,4.233169,3.1152,4.76703 +L 3.1152,4.76703,3.5425,5.300903 +L 3.5425,5.300903,3.9733,5.834753 +L 4.1838,4.233169,4.6738,4.76703 +L 4.6738,4.76703,5.1607,5.300903 +L 5.1607,5.300903,5.6475,5.834753 +L 5.6475,5.834753,5.6475,6.367366 +L 5.6475,6.367366,5.6475,6.891234 +L 5.6475,6.891234,5.6475,7.398302 +L 5.6475,7.398302,5.0524,7.380012 +L 5.0524,7.380012,4.7302,7.25144 +L 4.7302,7.25144,4.3936,6.902584 +L 6.9294,4.233169,6.6352,4.603236 +L 6.6352,4.603236,6.3515,4.956316 +L 6.3515,4.956316,6.0751,5.300903 +L 0.583,5.300903,0.9892,5.300903 +L 0.9892,5.300903,1.4099,5.300903 +L 1.4099,5.300903,1.8337,5.300903 +L 6.9294,6.368701,7.0593,6.635698 +L 7.0593,6.635698,7.2061,6.902584 +L 7.2061,6.902584,7.3567,7.169548 +L 7.3567,7.169548,6.9294,7.245868 +L 6.9294,7.245868,6.5056,7.322123 +L 6.5056,7.322123,6.0751,7.398302 +L 0.1592,6.902584,0.8596,6.902584 +L 0.8596,6.902584,1.5636,6.902584 +L 1.5636,6.902584,2.2641,6.902584 +L 4.8244,7.932283,4.947,8.302372 +L 4.947,8.302372,5.0766,8.655431 +L 5.0766,8.655431,5.2202,8.999984 +L 0.583,8.466112,0.9892,8.466112 +L 0.9892,8.466112,1.4099,8.466112 +L 1.4099,8.466112,1.8337,8.466112 +L 0.1592,6.902508,2.6848,6.902508 +L 0.583,8.504311,2.2641,8.504311 +L 0.583,5.300979,2.2641,5.300979 +L 0.583,4.233027,2.2641,4.233027 +L 0.583,2.669544,2.2641,2.669544 +L 0.583,-0.000003,0.583,2.669544 +L 2.2641,-0.000003,0.583,-0.000003 +L 2.2641,2.669544,2.2641,-0.000003 + +[賜] 51 +L 0.1577,-0.000003,0.4343,0.370075 +L 0.4343,0.370075,0.7145,0.723253 +L 0.7145,0.723253,1.0123,1.067807 +L 3.3589,-0.000003,5.005,1.728851 +L 5.005,1.728851,5.7195,2.618824 +L 5.7195,2.618824,6.1052,3.432235 +L 6.1052,3.432235,4.8089,3.245817 +L 4.8089,3.245817,4.0559,2.65259 +L 4.0559,2.65259,3.1421,1.601766 +L 5.2537,-0.000003,5.8845,0.03964 +L 5.8845,0.03964,6.3258,0.3164 +L 6.3258,0.3164,6.9629,1.067807 +L 6.9629,1.067807,6.8092,1.944952 +L 6.8092,1.944952,6.6652,2.822141 +L 6.6652,2.822141,6.5325,3.699177 +L 0.585,2.13565,0.585,4.259941 +L 0.585,4.259941,0.585,6.367366 +L 0.585,6.367366,0.585,8.466112 +L 0.585,8.466112,1.1418,8.466112 +L 1.1418,8.466112,1.7131,8.466112 +L 1.7131,8.466112,2.291,8.466112 +L 2.291,8.466112,2.291,6.367366 +L 2.291,6.367366,2.291,4.259941 +L 2.291,4.259941,2.291,2.13565 +L 2.291,2.13565,1.7131,2.13565 +L 1.7131,2.13565,1.1418,2.13565 +L 1.1418,2.13565,0.585,2.13565 +L 3.1421,3.165338,3.5515,3.802324 +L 3.5515,3.802324,3.9722,4.422378 +L 3.9722,4.422378,4.3991,5.033918 +L 4.3991,5.033918,4.2485,6.178037 +L 4.2485,6.178037,4.0979,7.322123 +L 4.0979,7.322123,3.9683,8.466112 +L 3.9683,8.466112,4.8229,8.466112 +L 4.8229,8.466112,5.6775,8.466112 +L 5.6775,8.466112,6.5325,8.466112 +L 6.5325,8.466112,6.5325,7.425183 +L 6.5325,7.425183,6.5325,6.367366 +L 6.5325,6.367366,6.5325,5.300903 +L 6.5325,5.300903,5.9546,5.300903 +L 5.9546,5.300903,5.3833,5.300903 +L 5.3833,5.300903,4.8229,5.300903 +L 1.0123,4.233169,1.2854,4.233169 +L 1.2854,4.233169,1.573,4.233169 +L 1.573,4.233169,1.8672,4.233169 +L 1.0123,6.368701,1.2854,6.368701 +L 1.2854,6.368701,1.573,6.368701 +L 1.573,6.368701,1.8672,6.368701 +L 4.3991,6.902584,4.956,6.902584 +L 4.956,6.902584,5.5269,6.902584 +L 5.5269,6.902584,6.1052,6.902584 + +[雌] 54 +L 4.8564,-0.000003,4.7724,2.134194 +L 4.7724,2.134194,4.7062,4.259941 +L 4.7062,4.259941,4.6393,6.368701 +L 4.6393,6.368701,4.426,6.204841 +L 4.426,6.204841,4.2155,6.024126 +L 4.2155,6.024126,4.0022,5.834753 +L 5.2802,-0.000003,5.5573,-0.000003 +L 5.5573,-0.000003,5.841,-0.000003 +L 5.841,-0.000003,6.1348,-0.000003 +L 6.1348,-0.000003,6.1348,0.723253 +L 6.1348,0.723253,6.1348,1.437896 +L 6.1348,1.437896,6.1348,2.13565 +L 6.1348,2.13565,5.841,2.315041 +L 5.841,2.315041,5.5573,2.477478 +L 5.5573,2.477478,5.2802,2.631411 +L 6.531,-0.000003,6.8073,-0.000003 +L 6.8073,-0.000003,7.0875,-0.000003 +L 7.0875,-0.000003,7.3887,-0.000003 +L 0.6153,0.533858,0.6153,2.822141 +L 0.6153,2.822141,0.6153,5.110227 +L 0.6153,5.110227,0.6153,7.398302 +L 1.0426,0.533858,1.3438,1.203461 +L 1.3438,1.203461,1.4556,3.398338 +L 1.4556,3.398338,1.4699,8.999984 +L 1.8972,1.067807,2.086,1.257136 +L 2.086,1.257136,2.2965,1.437896 +L 2.2965,1.437896,2.5063,1.601766 +L 2.5063,1.601766,2.5658,3.012795 +L 2.5658,3.012795,2.6397,4.423801 +L 2.6397,4.423801,2.7164,5.834753 +L 2.7164,5.834753,2.4436,6.024126 +L 2.4436,6.024126,2.1701,6.204841 +L 2.1701,6.204841,1.8972,6.368701 +L 2.7164,1.067807,3.1476,1.067807 +L 3.1476,1.067807,3.5749,1.067807 +L 3.5749,1.067807,4.0022,1.067807 +L 4.0022,1.067807,4.0022,1.437896 +L 4.0022,1.437896,4.0022,1.790986 +L 4.0022,1.790986,4.0022,2.13565 +L 6.531,2.631411,6.2227,3.303783 +L 6.2227,3.303783,5.8967,4.094724 +L 5.8967,4.094724,5.2802,4.76703 +L 6.531,4.76703,6.0441,5.879978 +L 6.0441,5.879978,5.8126,6.628671 +L 5.8126,6.628671,4.8564,6.902584 +L 4.8564,6.902584,4.986,7.615947 +L 4.986,7.615947,5.1335,8.312223 +L 5.1335,8.312223,5.2802,8.999984 +L 3.1476,6.368701,2.8429,6.822116 +L 2.8429,6.822116,2.734,7.504316 +L 2.734,7.504316,2.7164,8.999984 +L 6.3205,7.169548,6.38,7.77973 +L 6.38,7.77973,6.4536,8.389901 +L 6.4536,8.389901,6.531,8.999984 + +[侍] 36 +L 1.0446,-0.000003,0.9606,1.781202 +L 0.9606,1.781202,0.8902,3.545332 +L 0.8902,3.545332,0.8306,5.300903 +L 0.8306,5.300903,0.6135,5.137109 +L 0.6135,5.137109,0.4103,4.956316 +L 0.4103,4.956316,0.2177,4.76703 +L 4.8549,-0.000003,5.2857,-0.000003 +L 5.2857,-0.000003,5.7095,-0.000003 +L 5.7095,-0.000003,6.1368,-0.000003 +L 6.1368,-0.000003,5.8742,3.162448 +L 5.8742,3.162448,4.7604,3.841858 +L 4.7604,3.841858,2.323,3.699177 +L 4.0319,1.601766,3.7345,1.944952 +L 3.7345,1.944952,3.4543,2.28817 +L 3.4543,2.28817,3.1738,2.631411 +L 6.5641,3.699177,6.2633,4.134291 +L 6.2633,4.134291,6.1543,4.687897 +L 6.1543,4.687897,6.1368,5.834753 +L 6.1368,5.834753,4.8549,5.834753 +L 4.8549,5.834753,3.5835,5.834753 +L 3.5835,5.834753,2.323,5.834753 +L 1.0446,5.834753,1.1564,7.112994 +L 1.1564,7.112994,1.356,8.052374 +L 1.356,8.052374,1.4649,8.999984 +L 6.5641,5.834753,6.8373,5.834753 +L 6.8373,5.834753,7.1245,5.834753 +L 7.1245,5.834753,7.4191,5.834753 +L 4.8549,6.635698,4.6343,7.019873 +L 4.6343,7.019873,4.0844,7.217565 +L 4.0844,7.217565,2.7535,7.398302 +L 5.2857,7.398302,4.981,7.813616 +L 4.981,7.813616,4.8728,8.228831 +L 4.8728,8.228831,4.8549,8.999984 +L 5.7095,7.398302,6.1368,7.398302 +L 6.1368,7.398302,6.5641,7.398302 +L 6.5641,7.398302,6.9918,7.398302 + +[慈] 57 +L 0.2165,-0.000003,0.4932,0.723253 +L 0.4932,0.723253,0.7731,1.437896 +L 0.7731,1.437896,1.0708,2.13565 +L 2.7803,-0.000003,2.4826,0.435067 +L 2.4826,0.435067,2.3702,0.988804 +L 2.3702,0.988804,2.3527,2.13565 +L 3.2111,-0.000003,4.0412,-0.000003 +L 4.0412,-0.000003,4.885,-0.000003 +L 4.885,-0.000003,5.7434,-0.000003 +L 5.7434,-0.000003,5.7434,0.370075 +L 5.7434,0.370075,5.7434,0.723253 +L 5.7434,0.723253,5.7434,1.067807 +L 7.4176,0.800843,7.1475,1.257136 +L 7.1475,1.257136,6.8673,1.70487 +L 6.8673,1.70487,6.5945,2.13565 +L 4.4577,1.868752,4.3071,2.134194 +L 4.3071,2.134194,4.1638,2.391274 +L 4.1638,2.391274,4.0339,2.631411 +L 7.4176,3.432235,7.2736,3.699177 +L 7.2736,3.699177,7.1475,3.966107 +L 7.1475,3.966107,7.0215,4.233169 +L 7.0215,4.233169,5.3126,4.026853 +L 5.3126,4.026853,2.1706,3.803725 +L 2.1706,3.803725,0.2165,3.699177 +L 1.5016,4.233169,1.6315,4.422378 +L 1.6315,4.422378,1.7751,4.603236 +L 1.7751,4.603236,1.9219,4.76703 +L 1.9219,4.76703,1.5016,5.300903 +L 1.5016,5.300903,1.0708,5.834753 +L 1.0708,5.834753,0.647,6.368701 +L 4.885,4.233169,5.0181,4.422378 +L 5.0181,4.422378,5.1617,4.603236 +L 5.1617,4.603236,5.3126,4.76703 +L 5.3126,4.76703,4.885,5.300903 +L 4.885,5.300903,4.4577,5.834753 +L 4.4577,5.834753,4.0339,6.368701 +L 2.7803,4.76703,2.4963,5.182236 +L 2.4963,5.182236,2.4963,5.597516 +L 2.4963,5.597516,2.7803,6.368701 +L 5.7434,5.300903,5.8727,5.67097 +L 5.8727,5.67097,6.0127,6.024126 +L 6.0127,6.024126,6.1672,6.368701 +L 1.5016,6.368701,1.8028,6.78256 +L 1.8028,6.78256,1.9079,7.187903 +L 1.9079,7.187903,1.9219,7.932283 +L 1.9219,7.932283,1.3478,7.932283 +L 1.3478,7.932283,0.7731,7.932283 +L 0.7731,7.932283,0.2165,7.932283 +L 4.885,6.368701,5.1862,6.78256 +L 5.1862,6.78256,5.2986,7.187903 +L 5.2986,7.187903,5.3126,7.932283 +L 5.3126,7.932283,4.3141,7.932283 +L 4.3141,7.932283,3.3337,7.932283 +L 3.3337,7.932283,2.3527,7.932283 +L 5.7434,7.932283,6.2898,7.932283 +L 6.2898,7.932283,6.8463,7.932283 +L 6.8463,7.932283,7.4176,7.932283 + +[滋] 48 +L 0.2501,-0.000003,0.4742,1.546647 +L 0.4742,1.546647,0.8805,2.940776 +L 0.8805,2.940776,1.1047,4.233169 +L 1.5285,-0.000003,2.141,0.266982 +L 2.141,0.266982,2.5753,0.889828 +L 2.5753,0.889828,3.2061,2.402525 +L 3.2061,2.402525,2.9116,2.935117 +L 2.9116,2.935117,2.6279,3.459106 +L 2.6279,3.459106,2.355,3.966107 +L 2.355,3.966107,2.9536,5.320692 +L 2.9536,5.320692,3.1743,6.081949 +L 3.1743,6.081949,3.2061,6.902584 +L 3.2061,6.902584,2.7823,6.902584 +L 2.7823,6.902584,2.355,6.902584 +L 2.355,6.902584,1.9274,6.902584 +L 2.9921,-0.000003,3.3354,0.533858 +L 3.3354,0.533858,3.6965,1.067807 +L 3.6965,1.067807,4.0607,1.601766 +L 5.3423,0.266982,5.6158,0.99014 +L 5.6158,0.99014,5.8957,1.70487 +L 5.8957,1.70487,6.1657,2.402525 +L 6.1657,2.402525,5.8957,2.935117 +L 5.8957,2.935117,5.6158,3.459106 +L 5.6158,3.459106,5.3423,3.966107 +L 5.3423,3.966107,5.924,5.320692 +L 5.924,5.320692,6.1338,6.081949 +L 6.1338,6.081949,6.1657,6.902584 +L 6.1657,6.902584,5.3146,6.902584 +L 5.3146,6.902584,4.467,6.902584 +L 4.467,6.902584,3.6369,6.902584 +L 5.9517,-0.000003,6.2984,0.533858 +L 6.2984,0.533858,6.6525,1.067807 +L 6.6525,1.067807,7.02,1.601766 +L 3.6369,3.432235,3.7662,3.888517 +L 3.7662,3.888517,3.9133,4.336273 +L 3.9133,4.336273,4.0607,4.76703 +L 6.5962,3.432235,6.7257,3.888517 +L 6.7257,3.888517,6.8697,4.336273 +L 6.8697,4.336273,7.02,4.76703 +L 6.5962,6.902584,6.8697,6.902584 +L 6.8697,6.902584,7.1569,6.902584 +L 7.1569,6.902584,7.4473,6.902584 +L 5.3423,7.665287,5.4649,8.121482 +L 5.4649,8.121482,5.5983,8.569215 +L 5.5983,8.569215,5.7419,8.999984 +L 3.6369,8.199269,3.486,8.466112 +L 3.486,8.466112,3.3354,8.733097 +L 3.3354,8.733097,3.2061,8.999984 + +[璽] 57 +L 0.2797,-0.000003,1.4079,-0.000003 +L 1.4079,-0.000003,2.5392,-0.000003 +L 2.5392,-0.000003,3.6631,-0.000003 +L 3.6631,-0.000003,3.2603,1.500009 +L 3.2603,1.500009,2.28,1.728851 +L 2.28,1.728851,1.1032,1.601766 +L 4.0939,-0.000003,4.6441,0.103188 +L 4.6441,0.103188,5.2042,0.189326 +L 5.2042,0.189326,5.7681,0.266982 +L 5.7681,0.266982,5.6178,0.637148 +L 5.6178,0.637148,5.4742,0.99014 +L 5.4742,0.99014,5.3443,1.334792 +L 5.3443,1.334792,4.2414,1.738778 +L 4.2414,1.738778,2.9381,2.252938 +L 2.9381,2.252938,0.6759,2.631411 +L 6.1989,-0.000003,6.4756,-0.000003 +L 6.4756,-0.000003,6.7561,-0.000003 +L 6.7561,-0.000003,7.0538,-0.000003 +L 4.0939,2.631411,4.924,2.631411 +L 4.924,2.631411,5.7716,2.631411 +L 5.7716,2.631411,6.6265,2.631411 +L 1.1032,3.699177,1.1032,4.76703 +L 1.1032,4.76703,1.1032,5.834753 +L 1.1032,5.834753,1.1032,6.902584 +L 1.1032,6.902584,0.8296,6.902584 +L 0.8296,6.902584,0.5529,6.902584 +L 0.5529,6.902584,0.2797,6.902584 +L 1.9543,3.699177,2.1641,4.233169 +L 2.1641,4.233169,2.1784,4.76703 +L 2.1784,4.76703,2.3847,5.300903 +L 2.3847,5.300903,2.2345,5.49008 +L 2.2345,5.49008,2.087,5.67097 +L 2.087,5.67097,1.9543,5.834753 +L 3.6631,3.699177,3.579,6.038168 +L 3.579,6.038168,3.0187,6.826318 +L 3.0187,6.826318,1.534,6.902584 +L 4.4897,3.699177,4.6963,4.233169 +L 4.6963,4.233169,4.7107,4.76703 +L 4.7107,4.76703,4.917,5.300903 +L 4.917,5.300903,4.7667,5.49008 +L 4.7667,5.49008,4.6193,5.67097 +L 4.6193,5.67097,4.4897,5.834753 +L 6.1989,3.699177,6.1989,4.76703 +L 6.1989,4.76703,6.1989,5.834753 +L 6.1989,5.834753,6.1989,6.902584 +L 6.1989,6.902584,4.6998,6.920994 +L 4.6998,6.920994,4.0449,7.049534 +L 4.0449,7.049534,3.6631,7.398302 +L 3.6631,7.398302,3.6631,7.768412 +L 3.6631,7.768412,3.6631,8.121482 +L 3.6631,8.121482,3.6631,8.466112 +L 3.6631,8.466112,2.812,8.302372 +L 2.812,8.302372,1.9543,8.121482 +L 1.9543,8.121482,1.1032,7.932283 +L 7.0538,6.902584,6.0938,8.053721 +L 6.0938,8.053721,5.2746,8.357393 +L 5.2746,8.357393,4.0939,8.466112 + +[軸] 60 +L 1.5601,-0.000003,1.4099,1.194913 +L 1.4099,1.194913,0.9791,1.576341 +L 0.9791,1.576341,0.2817,1.601766 +L 3.6651,-0.000003,3.6651,2.134194 +L 3.6651,2.134194,3.6651,4.259941 +L 3.6651,4.259941,3.6651,6.368701 +L 3.6651,6.368701,4.9894,6.62716 +L 4.9894,6.62716,5.3673,7.47043 +L 5.3673,7.47043,5.3746,8.999984 +L 4.0924,-0.000003,4.5236,-0.000003 +L 4.5236,-0.000003,4.9473,-0.000003 +L 4.9473,-0.000003,5.3746,-0.000003 +L 5.3746,-0.000003,5.3746,1.854545 +L 5.3746,1.854545,5.0871,2.861664 +L 5.0871,2.861664,4.0924,3.165338 +L 5.8019,-0.000003,6.2082,-0.000003 +L 6.2082,-0.000003,6.6285,-0.000003 +L 6.6285,-0.000003,7.0485,-0.000003 +L 7.0485,-0.000003,7.0485,1.066471 +L 7.0485,1.066471,7.0485,2.124398 +L 7.0485,2.124398,7.0485,3.165338 +L 7.0485,3.165338,5.2832,3.995845 +L 5.2832,3.995845,5.3638,5.538194 +L 5.3638,5.538194,7.0485,6.368701 +L 7.0485,6.368701,7.0485,5.49008 +L 7.0485,5.49008,7.0485,4.603236 +L 7.0485,4.603236,7.0485,3.699177 +L 1.9913,1.601766,1.6936,2.134194 +L 1.6936,2.134194,1.4099,2.658161 +L 1.4099,2.658161,1.1328,3.165338 +L 1.1328,3.165338,0.8351,3.165338 +L 0.8351,3.165338,0.5553,3.165338 +L 0.5553,3.165338,0.2817,3.165338 +L 0.2817,3.165338,0.2817,4.233169 +L 0.2817,4.233169,0.2817,5.300903 +L 0.2817,5.300903,0.2817,6.368701 +L 0.2817,6.368701,0.8947,6.398352 +L 0.8947,6.398352,1.2277,6.605905 +L 1.2277,6.605905,1.5601,7.169548 +L 1.5601,7.169548,1.2277,7.706298 +L 1.2277,7.706298,0.8947,7.903969 +L 0.8947,7.903969,0.2817,7.932283 +L 1.9913,3.165338,1.5601,3.699177 +L 1.5601,3.699177,1.1328,4.233169 +L 1.1328,4.233169,0.7024,4.76703 +L 2.6007,3.165338,2.6602,3.699177 +L 2.6602,3.699177,2.7299,4.233169 +L 2.7299,4.233169,2.8105,4.76703 +L 2.8105,4.76703,2.2154,4.79667 +L 2.2154,4.79667,1.8897,5.004256 +L 1.8897,5.004256,1.5601,5.567844 +L 1.5601,5.567844,1.8897,6.131388 +L 1.8897,6.131388,2.2154,6.339029 +L 2.2154,6.339029,2.8105,6.368701 +L 2.8105,6.368701,2.8105,6.024126 +L 2.8105,6.024126,2.8105,5.67097 +L 2.8105,5.67097,2.8105,5.300903 +L 1.9913,7.932283,1.8372,8.302372 +L 1.8372,8.302372,1.6936,8.655431 +L 1.6936,8.655431,1.5601,8.999984 + +[執] 51 +L 1.9859,-0.000003,1.9054,1.418118 +L 1.9054,1.418118,1.552,2.014213 +L 1.552,2.014213,0.7394,2.13565 +L 3.6955,-0.000003,4.2454,1.144127 +L 4.2454,1.144127,4.8057,2.28817 +L 4.8057,2.28817,5.3766,3.432235 +L 5.3766,3.432235,4.9455,3.888517 +L 4.9455,3.888517,4.5291,4.336273 +L 4.5291,4.336273,4.1228,4.76703 +L 7.0855,0.533858,6.6095,1.679444 +L 6.6095,1.679444,6.2729,2.223178 +L 6.2729,2.223178,5.8004,2.631411 +L 7.5058,0.533858,7.5058,0.904023 +L 7.5058,0.904023,7.5058,1.257136 +L 7.5058,1.257136,7.5058,1.601766 +L 2.4171,2.13565,2.1124,2.52405 +L 2.1124,2.52405,1.9999,2.929382 +L 1.9999,2.929382,1.9859,3.699177 +L 1.9859,3.699177,1.415,3.699177 +L 1.415,3.699177,0.862,3.699177 +L 0.862,3.699177,0.3083,3.699177 +L 6.655,2.631411,6.655,3.888517 +L 6.655,3.888517,6.655,5.137109 +L 6.655,5.137109,6.655,6.368701 +L 6.655,6.368701,5.6428,6.187953 +L 5.6428,6.187953,5.3658,5.532535 +L 5.3658,5.532535,5.3766,4.233169 +L 2.4171,3.966107,2.5463,4.603236 +L 2.5463,4.603236,2.6934,5.223225 +L 2.6934,5.223225,2.8405,5.834753 +L 2.8405,5.834753,2.2731,5.757097 +L 2.2731,5.757097,1.7131,5.67097 +L 1.7131,5.67097,1.1593,5.567844 +L 1.1593,5.567844,1.2893,5.137109 +L 1.2893,5.137109,1.415,4.689375 +L 1.415,4.689375,1.5621,4.233169 +L 2.8405,3.699177,3.1172,3.699177 +L 3.1172,3.699177,3.4009,3.699177 +L 3.4009,3.699177,3.6955,3.699177 +L 3.4815,5.834753,4.1018,6.204841 +L 4.1018,6.204841,4.7322,6.558031 +L 4.7322,6.558031,5.3766,6.902584 +L 5.3766,6.902584,5.3766,7.615947 +L 5.3766,7.615947,5.3766,8.312223 +L 5.3766,8.312223,5.3766,8.999984 +L 1.9859,6.635698,1.6567,7.172317 +L 1.6567,7.172317,1.3313,7.370096 +L 1.3313,7.370096,0.7394,7.398302 +L 2.4171,7.398302,2.1124,7.813616 +L 2.1124,7.813616,1.9999,8.228831 +L 1.9999,8.228831,1.9859,8.999984 + +[湿] 45 +L 0.3141,0.266982,0.734,1.411025 +L 0.734,1.411025,1.1652,2.555145 +L 1.1652,2.555145,1.5925,3.699177 +L 2.0198,-0.000003,2.7238,-0.000003 +L 2.7238,-0.000003,3.4239,-0.000003 +L 3.4239,-0.000003,4.1248,-0.000003 +L 4.1248,-0.000003,4.1248,1.781202 +L 4.1248,1.781202,4.1248,3.545332 +L 4.1248,3.545332,4.1248,5.300903 +L 4.1248,5.300903,3.6975,5.300903 +L 3.6975,5.300903,3.2768,5.300903 +L 3.2768,5.300903,2.874,5.300903 +L 2.874,5.300903,2.874,6.367366 +L 2.874,6.367366,2.874,7.425183 +L 2.874,7.425183,2.874,8.466112 +L 2.874,8.466112,4.1314,8.466112 +L 4.1314,8.466112,5.4063,8.466112 +L 5.4063,8.466112,6.6847,8.466112 +L 6.6847,8.466112,6.6847,7.425183 +L 6.6847,7.425183,6.6847,6.367366 +L 6.6847,6.367366,6.6847,5.300903 +L 6.6847,5.300903,6.2574,5.300903 +L 6.2574,5.300903,5.8336,5.300903 +L 5.8336,5.300903,5.4063,5.300903 +L 5.4063,5.300903,5.4063,3.545332 +L 5.4063,3.545332,5.4063,1.781202 +L 5.4063,1.781202,5.4063,-0.000003 +L 5.4063,-0.000003,6.1072,-0.000003 +L 6.1072,-0.000003,6.8147,-0.000003 +L 6.8147,-0.000003,7.5432,-0.000003 +L 2.874,2.402525,2.7238,2.848913 +L 2.7238,2.848913,2.5728,3.278237 +L 2.5728,3.278237,2.4436,3.699177 +L 6.6847,2.402525,6.8147,2.848913 +L 6.8147,2.848913,6.9614,3.278237 +L 6.9614,3.278237,7.1124,3.699177 +L 1.1652,5.834753,0.8671,6.204841 +L 0.8671,6.204841,0.5834,6.558031 +L 0.5834,6.558031,0.3141,6.902584 +L 3.2978,6.902584,4.275,6.902584 +L 4.275,6.902584,5.2627,6.902584 +L 5.2627,6.902584,6.2574,6.902584 +L 1.5925,7.932283,1.2944,8.302372 +L 1.2944,8.302372,1.0142,8.655431 +L 1.0142,8.655431,0.734,8.999984 + +[漆] 51 +L 0.3403,0.266982,0.7711,1.411025 +L 0.7711,1.411025,1.1914,2.555145 +L 1.1914,2.555145,1.6222,3.699177 +L 4.1544,-0.000003,4.4311,-0.000003 +L 4.4311,-0.000003,4.7117,-0.000003 +L 4.7117,-0.000003,5.0094,-0.000003 +L 5.0094,-0.000003,4.9884,0.771171 +L 4.9884,0.771171,4.8199,1.186485 +L 4.8199,1.186485,4.3684,1.601766 +L 4.3684,1.601766,3.7271,1.257136 +L 3.7271,1.257136,3.0865,0.904023 +L 3.0865,0.904023,2.4452,0.533858 +L 7.5382,0.533858,6.0177,1.540999 +L 6.0177,1.540999,5.2335,2.132837 +L 5.2335,2.132837,5.0094,3.699177 +L 4.1544,2.631411,3.8571,3.001466 +L 3.8571,3.001466,3.5734,3.354569 +L 3.5734,3.354569,3.2963,3.699177 +L 3.2963,3.699177,3.006,3.535317 +L 3.006,3.535317,2.7223,3.354569 +L 2.7223,3.354569,2.4452,3.165338 +L 7.1179,3.165338,6.4135,4.069298 +L 6.4135,4.069298,5.713,4.956316 +L 5.713,4.956316,5.0094,5.834753 +L 5.0094,5.834753,4.5821,5.300903 +L 4.5821,5.300903,4.1544,4.76703 +L 4.1544,4.76703,3.7271,4.233169 +L 2.6627,5.300903,3.2963,6.100304 +L 3.2963,6.100304,3.9376,6.891234 +L 3.9376,6.891234,4.5821,7.665287 +L 4.5821,7.665287,3.8571,7.768412 +L 3.8571,7.768412,3.1496,7.854617 +L 3.1496,7.854617,2.4452,7.932283 +L 7.1179,5.300903,6.4734,6.014254 +L 6.4734,6.014254,5.843,6.710573 +L 5.843,6.710573,5.2192,7.398302 +L 5.2192,7.398302,5.1421,7.055117 +L 5.1421,7.055117,5.0724,6.71192 +L 5.0724,6.71192,5.0094,6.368701 +L 1.1914,5.834753,0.8972,6.204841 +L 0.8972,6.204841,0.6173,6.558031 +L 0.6173,6.558031,0.3403,6.902584 +L 1.6222,7.932283,1.3248,8.302372 +L 1.3248,8.302372,1.0411,8.655431 +L 1.0411,8.655431,0.7711,8.999984 +L 5.0094,7.932283,5.0094,8.302372 +L 5.0094,8.302372,5.0094,8.655431 +L 5.0094,8.655431,5.0094,8.999984 +L 5.4367,7.932283,6.1368,7.932283 +L 6.1368,7.932283,6.8377,7.932283 +L 6.8377,7.932283,7.5382,7.932283 + +[疾] 45 +L 0.3703,-0.000003,0.9871,1.377226 +L 0.9871,1.377226,1.4035,2.856016 +L 1.4035,2.856016,1.4109,4.233169 +L 1.4109,4.233169,1.0533,3.888517 +L 1.0533,3.888517,0.7065,3.535317 +L 0.7065,3.535317,0.3703,3.165338 +L 2.6889,-0.000003,3.4563,1.066471 +L 3.4563,1.066471,4.2233,2.124398 +L 4.2233,2.124398,5.0079,3.165338 +L 5.0079,3.165338,4.6506,3.540998 +L 4.6506,3.540998,3.9918,3.679311 +L 3.9918,3.679311,2.4753,3.699177 +L 7.144,-0.000003,6.5665,0.877142 +L 6.5665,0.877142,5.9952,1.754309 +L 5.9952,1.754309,5.4352,2.631411 +L 5.4352,3.699177,5.1375,4.134291 +L 5.1375,4.134291,5.025,4.687897 +L 5.025,4.687897,5.0079,5.834753 +L 5.0079,5.834753,4.4366,5.834753 +L 4.4366,5.834753,3.8832,5.834753 +L 3.8832,5.834753,3.3302,5.834753 +L 3.3302,5.834753,3.0357,5.49008 +L 3.0357,5.49008,2.752,5.137109 +L 2.752,5.137109,2.4753,4.76703 +L 5.866,3.699177,6.419,3.699177 +L 6.419,3.699177,6.9938,3.699177 +L 6.9938,3.699177,7.5748,3.699177 +L 1.6207,4.76703,1.6207,5.833417 +L 1.6207,5.833417,1.6207,6.891234 +L 1.6207,6.891234,1.6207,7.932283 +L 1.6207,7.932283,2.4753,7.932283 +L 2.4753,7.932283,3.3302,7.932283 +L 3.3302,7.932283,4.1848,7.932283 +L 4.1848,7.932283,4.1848,8.302372 +L 4.1848,8.302372,4.1848,8.655431 +L 4.1848,8.655431,4.1848,8.999984 +L 0.7979,6.101738,0.647,6.368701 +L 0.647,6.368701,0.5002,6.635698 +L 0.5002,6.635698,0.3703,6.902584 +L 5.4352,5.834753,5.9952,5.834753 +L 5.9952,5.834753,6.5665,5.834753 +L 6.5665,5.834753,7.144,5.834753 +L 4.6118,7.932283,5.5889,7.932283 +L 5.5889,7.932283,6.5735,7.932283 +L 6.5735,7.932283,7.5748,7.932283 + +[芝] 36 +L 0.3726,-0.000003,0.7999,0.877142 +L 0.7999,0.877142,1.2237,1.754309 +L 1.2237,1.754309,1.6545,2.631411 +L 4.6138,-0.000003,3.7595,0.533858 +L 3.7595,0.533858,2.9116,1.067807 +L 2.9116,1.067807,2.0783,1.601766 +L 2.0783,1.601766,4.0674,2.771246 +L 4.0674,2.771246,5.1671,3.661088 +L 5.1671,3.661088,6.3233,5.033918 +L 6.3233,5.033918,4.467,5.137109 +L 4.467,5.137109,2.6314,5.223225 +L 2.6314,5.223225,0.7999,5.300903 +L 5.0376,-0.000003,5.8746,-0.000003 +L 5.8746,-0.000003,6.7156,-0.000003 +L 6.7156,-0.000003,7.5698,-0.000003 +L 3.7595,5.834753,3.7595,6.204841 +L 3.7595,6.204841,3.7595,6.558031 +L 3.7595,6.558031,3.7595,6.902584 +L 2.5088,7.169548,2.1445,7.706298 +L 2.1445,7.706298,1.588,7.903969 +L 1.588,7.903969,0.3726,7.932283 +L 5.4649,7.169548,5.3146,7.435077 +L 5.3146,7.435077,5.1671,7.692168 +L 5.1671,7.692168,5.0376,7.932283 +L 5.0376,7.932283,4.3336,7.932283 +L 4.3336,7.932283,3.6334,7.932283 +L 3.6334,7.932283,2.9326,7.932283 +L 2.9326,7.932283,2.7823,8.302372 +L 2.7823,8.302372,2.6384,8.655431 +L 2.6384,8.655431,2.5088,8.999984 +L 5.8922,7.932283,5.7419,8.302372 +L 5.7419,8.302372,5.5948,8.655431 +L 5.5948,8.655431,5.4649,8.999984 +L 6.3233,7.932283,6.7257,7.932283 +L 6.7257,7.932283,7.146,7.932283 +L 7.146,7.932283,7.5698,7.932283 + +[赦] 51 +L 0.4023,-0.000003,1.4005,1.97886 +L 1.4005,1.97886,1.6807,3.627136 +L 1.6807,3.627136,1.6807,5.834753 +L 1.6807,5.834753,1.2569,5.834753 +L 1.2569,5.834753,0.8296,5.834753 +L 0.8296,5.834753,0.4023,5.834753 +L 2.0768,-0.000003,2.3532,-0.000003 +L 2.3532,-0.000003,2.6369,-0.000003 +L 2.6369,-0.000003,2.9346,-0.000003 +L 2.9346,-0.000003,2.9346,1.944952 +L 2.9346,1.944952,2.9346,3.889886 +L 2.9346,3.889886,2.9346,5.834753 +L 2.9346,5.834753,2.6369,5.834753 +L 2.6369,5.834753,2.3532,5.834753 +L 2.3532,5.834753,2.0768,5.834753 +L 2.0768,5.834753,1.9998,6.291034 +L 1.9998,6.291034,1.9294,6.738802 +L 1.9294,6.738802,1.8663,7.169548 +L 1.8663,7.169548,1.5094,7.245868 +L 1.5094,7.245868,1.1662,7.322123 +L 1.1662,7.322123,0.8296,7.398302 +L 4.2165,-0.000003,4.7629,0.800843 +L 4.7629,0.800843,5.3233,1.601766 +L 5.3233,1.601766,5.898,2.402525 +L 5.898,2.402525,5.3057,3.750006 +L 5.3057,3.750006,5.0364,4.639903 +L 5.0364,4.639903,4.8574,5.834753 +L 4.8574,5.834753,4.3706,5.47886 +L 4.3706,5.47886,3.9853,5.47886 +L 3.9853,5.47886,3.3619,5.834753 +L 7.6037,-0.000003,7.1726,0.533858 +L 7.1726,0.533858,6.7491,1.067807 +L 6.7491,1.067807,6.318,1.601766 +L 0.4023,2.402525,0.5319,2.848913 +L 0.5319,2.848913,0.6794,3.278237 +L 0.6794,3.278237,0.8296,3.699177 +L 4.2165,2.402525,4.0627,2.848913 +L 4.0627,2.848913,3.9226,3.278237 +L 3.9226,3.278237,3.7857,3.699177 +L 6.318,3.432235,6.6192,4.094724 +L 6.6192,4.094724,6.7316,4.99434 +L 6.7316,4.99434,6.7491,6.902584 +L 6.7491,6.902584,6.1779,6.738802 +L 6.1779,6.738802,5.6213,6.558031 +L 5.6213,6.558031,5.0714,6.368701 +L 2.5073,7.398302,2.2061,7.813616 +L 2.2061,7.813616,2.0943,8.228831 +L 2.0943,8.228831,2.0768,8.999984 +L 5.0714,7.398302,5.3726,7.813616 +L 5.3726,7.813616,5.4812,8.228831 +L 5.4812,8.228831,5.4952,8.999984 + +[斜] 42 +L 1.2554,-0.000003,1.5325,-0.000003 +L 1.5325,-0.000003,1.8161,-0.000003 +L 1.8161,-0.000003,2.11,-0.000003 +L 2.11,-0.000003,2.1625,2.829135 +L 2.1625,2.829135,1.8438,4.327714 +L 1.8438,4.327714,0.4288,4.76703 +L 6.7756,-0.000003,6.7756,1.066471 +L 6.7756,1.066471,6.7756,2.124398 +L 6.7756,2.124398,6.7756,3.165338 +L 6.7756,3.165338,5.735,3.026903 +L 5.735,3.026903,4.9855,2.769812 +L 4.9855,2.769812,4.2469,2.631411 +L 0.4288,1.868752,0.5553,2.315041 +L 0.5553,2.315041,0.6845,2.744365 +L 0.6845,2.744365,0.8281,3.165338 +L 3.3923,1.868752,3.2413,2.315041 +L 3.2413,2.315041,3.0942,2.744365 +L 3.0942,2.744365,2.965,3.165338 +L 6.7756,3.699177,6.7756,5.480294 +L 6.7756,5.480294,6.7756,7.244446 +L 6.7756,7.244446,6.7756,8.999984 +L 5.4972,4.233169,5.1992,4.603236 +L 5.1992,4.603236,4.919,4.956316 +L 4.919,4.956316,4.6461,5.300903 +L 2.5412,4.76703,2.2364,5.182236 +L 2.2364,5.182236,2.1275,5.597516 +L 2.1275,5.597516,2.11,6.368701 +L 2.11,6.368701,1.8161,6.368701 +L 1.8161,6.368701,1.5325,6.368701 +L 1.5325,6.368701,1.2554,6.368701 +L 2.965,4.76703,3.2413,4.76703 +L 3.2413,4.76703,3.525,4.76703 +L 3.525,4.76703,3.8196,4.76703 +L 5.9245,6.368701,5.6265,6.71192 +L 5.6265,6.71192,5.3463,7.055117 +L 5.3463,7.055117,5.0661,7.398302 +L 0.4288,6.902584,0.9826,7.615947 +L 0.9826,7.615947,1.5391,8.312223 +L 1.5391,8.312223,2.11,8.999984 +L 2.11,8.999984,2.5412,8.466112 +L 2.5412,8.466112,2.965,7.932283 +L 2.965,7.932283,3.3923,7.398302 + +[遮] 54 +L 0.648,-0.000003,0.9912,0.370075 +L 0.9912,0.370075,1.3488,0.723253 +L 1.3488,0.723253,1.7131,1.067807 +L 1.7131,1.067807,1.7131,2.315041 +L 1.7131,2.315041,1.7131,3.545332 +L 1.7131,3.545332,1.7131,4.76703 +L 1.7131,4.76703,1.2893,4.76703 +L 1.2893,4.76703,0.8585,4.76703 +L 0.8585,4.76703,0.4347,4.76703 +L 2.9635,-0.000003,2.6934,0.189326 +L 2.6934,0.189326,2.4132,0.370075 +L 2.4132,0.370075,2.1404,0.533858 +L 3.3943,-0.000003,4.7949,-0.000003 +L 4.7949,-0.000003,6.2102,-0.000003 +L 6.2102,-0.000003,7.6284,-0.000003 +L 2.5673,1.868752,2.6934,3.889886 +L 2.6934,3.889886,2.8234,5.911073 +L 2.8234,5.911073,2.9635,7.932283 +L 2.9635,7.932283,3.6671,7.932283 +L 3.6671,7.932283,4.3746,7.932283 +L 4.3746,7.932283,5.1031,7.932283 +L 5.1031,7.932283,5.1031,8.302372 +L 5.1031,8.302372,5.1031,8.655431 +L 5.1031,8.655431,5.1031,8.999984 +L 3.3943,1.601766,3.5235,1.944952 +L 3.5235,1.944952,3.6671,2.28817 +L 3.6671,2.28817,3.818,2.631411 +L 5.1031,1.868752,4.9493,2.134194 +L 4.9493,2.134194,4.8057,2.391274 +L 4.8057,2.391274,4.6723,2.631411 +L 6.3815,1.868752,6.2312,2.134194 +L 6.2312,2.134194,6.0841,2.391274 +L 6.0841,2.391274,5.9542,2.631411 +L 7.6284,1.868752,7.4816,2.134194 +L 7.4816,2.134194,7.338,2.391274 +L 7.338,2.391274,7.2046,2.631411 +L 4.6723,4.233169,4.522,5.428009 +L 4.522,5.428009,4.0909,5.809283 +L 4.0909,5.809283,3.3943,5.834753 +L 5.1031,4.233169,5.5234,4.233169 +L 5.5234,4.233169,5.9542,4.233169 +L 5.9542,4.233169,6.3815,4.233169 +L 6.3815,4.233169,6.0806,5.67097 +L 6.0806,5.67097,5.3977,6.04942 +L 5.3977,6.04942,4.6723,6.902584 +L 6.8126,5.834753,6.655,6.204841 +L 6.655,6.204841,6.5146,6.558031 +L 6.5146,6.558031,6.3815,6.902584 +L 1.7131,7.398302,1.4185,7.768412 +L 1.4185,7.768412,1.1348,8.121482 +L 1.1348,8.121482,0.8585,8.466112 +L 5.5234,7.932283,6.2277,7.932283 +L 6.2277,7.932283,6.9279,7.932283 +L 6.9279,7.932283,7.6284,7.932283 + +[蛇] 60 +L 0.4612,-0.000003,0.8671,-0.000003 +L 0.8671,-0.000003,1.2878,-0.000003 +L 1.2878,-0.000003,1.7151,-0.000003 +L 1.7151,-0.000003,1.6972,1.871554 +L 1.6972,1.871554,1.5956,2.692134 +L 1.5956,2.692134,1.3154,3.165338 +L 1.3154,3.165338,1.0216,3.165338 +L 1.0216,3.165338,0.7414,3.165338 +L 0.7414,3.165338,0.4612,3.165338 +L 0.4612,3.165338,0.4612,4.422378 +L 0.4612,4.422378,0.4612,5.67097 +L 0.4612,5.67097,0.4612,6.902584 +L 0.4612,6.902584,0.7974,7.005753 +L 0.7974,7.005753,1.1442,7.091804 +L 1.1442,7.091804,1.4976,7.169548 +L 1.4976,7.169548,1.5641,7.77973 +L 1.5641,7.77973,1.631,8.389901 +L 1.631,8.389901,1.7151,8.999984 +L 5.13,-0.000003,4.8323,0.572057 +L 4.8323,0.572057,4.7198,2.08482 +L 4.7198,2.08482,4.7023,5.834753 +L 5.5289,-0.000003,6.2297,-0.000003 +L 6.2297,-0.000003,6.9372,-0.000003 +L 6.9372,-0.000003,7.6622,-0.000003 +L 7.6622,-0.000003,7.6622,0.533858 +L 7.6622,0.533858,7.6622,1.067807 +L 7.6622,1.067807,7.6622,1.601766 +L 2.142,0.533858,2.4152,0.533858 +L 2.4152,0.533858,2.6989,0.533858 +L 2.6989,0.533858,2.9966,0.533858 +L 2.9966,0.533858,2.9966,0.904023 +L 2.9966,0.904023,2.9966,1.257136 +L 2.9966,1.257136,2.9966,1.601766 +L 2.142,3.165338,1.61,4.659593 +L 1.61,4.659593,1.9004,6.196304 +L 1.9004,6.196304,2.9966,6.902584 +L 2.9966,6.902584,2.9966,5.67097 +L 2.9966,5.67097,2.9966,4.422378 +L 2.9966,4.422378,2.9966,3.165338 +L 2.9966,3.165338,2.6989,3.165338 +L 2.6989,3.165338,2.4152,3.165338 +L 2.4152,3.165338,2.142,3.165338 +L 5.3121,3.699177,5.9527,4.069298 +L 5.9527,4.069298,6.594,4.422378 +L 6.594,4.422378,7.2349,4.76703 +L 3.8512,6.368701,3.8512,6.71192 +L 3.8512,6.71192,3.8512,7.055117 +L 3.8512,7.055117,3.8512,7.398302 +L 3.8512,7.398302,4.4015,7.398302 +L 4.4015,7.398302,4.958,7.398302 +L 4.958,7.398302,5.5289,7.398302 +L 5.5289,7.398302,5.5289,7.932283 +L 5.5289,7.932283,5.5289,8.466112 +L 5.5289,8.466112,5.5289,8.999984 +L 7.6622,6.368701,7.6622,6.71192 +L 7.6622,6.71192,7.6622,7.055117 +L 7.6622,7.055117,7.6622,7.398302 +L 7.6622,7.398302,7.0875,7.398302 +L 7.0875,7.398302,6.5134,7.398302 +L 6.5134,7.398302,5.9527,7.398302 + +[邪] 33 +L 2.172,-0.000003,2.4487,-0.000003 +L 2.4487,-0.000003,2.7293,-0.000003 +L 2.7293,-0.000003,3.0231,-0.000003 +L 3.0231,-0.000003,2.9464,1.411025 +L 2.9464,1.411025,2.8725,2.822141 +L 2.8725,2.822141,2.813,4.233169 +L 2.813,4.233169,2.0214,3.545332 +L 2.0214,3.545332,1.2369,2.848913 +L 1.2369,2.848913,0.4628,2.13565 +L 5.1355,-0.000003,5.1355,2.822141 +L 5.1355,2.822141,5.1355,5.644176 +L 5.1355,5.644176,5.1355,8.466112 +L 5.1355,8.466112,5.8356,8.466112 +L 5.8356,8.466112,6.5431,8.466112 +L 6.5431,8.466112,7.2646,8.466112 +L 7.2646,8.466112,6.8058,5.98595 +L 6.8058,5.98595,7.0373,4.514142 +L 7.0373,4.514142,7.2646,2.13565 +L 7.2646,2.13565,6.9357,1.759979 +L 6.9357,1.759979,6.6026,1.621446 +L 6.6026,1.621446,5.9866,1.601766 +L 3.0231,4.76703,2.6484,5.142668 +L 2.6484,5.142668,1.9829,5.281125 +L 1.9829,5.281125,0.4628,5.300903 +L 3.4543,5.300903,3.1496,5.773985 +L 3.1496,5.773985,3.0407,6.594698 +L 3.0407,6.594698,3.0231,8.466112 +L 3.0231,8.466112,2.4487,8.466112 +L 2.4487,8.466112,1.8747,8.466112 +L 1.8747,8.466112,1.3139,8.466112 +L 1.3139,8.466112,1.3139,7.589044 +L 1.3139,7.589044,1.3139,6.71192 +L 1.3139,6.71192,1.3139,5.834753 + +[勺] 18 +L 4.7343,-0.000003,5.1616,-0.000003 +L 5.1616,-0.000003,5.5924,-0.000003 +L 5.5924,-0.000003,6.0127,-0.000003 +L 6.0127,-0.000003,7.0743,2.460513 +L 7.0743,2.460513,7.3121,4.65828 +L 7.3121,4.65828,7.2666,7.398302 +L 7.2666,7.398302,5.5644,7.398302 +L 5.5644,7.398302,3.8832,7.398302 +L 3.8832,7.398302,2.2024,7.398302 +L 2.2024,7.398302,1.6242,6.521255 +L 1.6242,6.521255,1.0533,5.644176 +L 1.0533,5.644176,0.4929,4.76703 +L 4.3039,3.432235,3.8832,4.069298 +L 3.8832,4.069298,3.4528,4.689375 +L 3.4528,4.689375,3.0255,5.300903 +L 2.2024,7.932283,2.2024,8.302372 +L 2.2024,8.302372,2.2024,8.655431 +L 2.2024,8.655431,2.2024,8.999984 + +[爵] 69 +L 0.9502,-0.000003,0.9502,1.411025 +L 0.9502,1.411025,0.9502,2.822141 +L 0.9502,2.822141,0.9502,4.233169 +L 0.9502,4.233169,1.7838,4.233169 +L 1.7838,4.233169,2.6314,4.233169 +L 2.6314,4.233169,3.4825,4.233169 +L 3.4825,4.233169,3.4825,3.545332 +L 3.4825,3.545332,3.4825,2.848913 +L 3.4825,2.848913,3.4825,2.13565 +L 3.4825,2.13565,2.7613,2.13565 +L 2.7613,2.13565,2.0538,2.13565 +L 2.0538,2.13565,1.3463,2.13565 +L 1.3463,-0.000003,1.7106,0.375733 +L 1.7106,0.375733,2.2671,0.514179 +L 2.2671,0.514179,3.4825,0.533858 +L 6.0147,-0.000003,6.2918,-0.000003 +L 6.2918,-0.000003,6.5755,-0.000003 +L 6.5755,-0.000003,6.8732,-0.000003 +L 6.8732,-0.000003,6.7296,2.515611 +L 6.7296,2.515611,6.0221,3.192142 +L 6.0221,3.192142,4.3409,3.165338 +L 1.3463,3.165338,1.9029,3.165338 +L 1.9029,3.165338,2.4776,3.165338 +L 2.4776,3.165338,3.0552,3.165338 +L 7.297,3.165338,7.146,3.535317 +L 7.146,3.535317,7.0024,3.888517 +L 7.0024,3.888517,6.8732,4.233169 +L 0.9502,5.300903,0.9502,5.67097 +L 0.9502,5.67097,0.9502,6.024126 +L 0.9502,6.024126,0.9502,6.368701 +L 0.9502,6.368701,1.3565,6.471805 +L 1.3565,6.471805,1.7771,6.558031 +L 1.7771,6.558031,2.2009,6.635698 +L 2.2009,6.635698,1.8717,7.370096 +L 1.8717,7.370096,1.5495,7.706298 +L 1.5495,7.706298,0.9502,7.932283 +L 1.3463,5.300903,1.9029,5.300903 +L 1.9029,5.300903,2.4776,5.300903 +L 2.4776,5.300903,3.0552,5.300903 +L 3.0552,5.300903,2.9049,5.67097 +L 2.9049,5.67097,2.7613,6.024126 +L 2.7613,6.024126,2.6314,6.368701 +L 3.4825,5.300903,4.0323,5.300903 +L 4.0323,5.300903,4.5927,5.300903 +L 4.5927,5.300903,5.1636,5.300903 +L 5.1636,5.300903,5.1636,5.67097 +L 5.1636,5.67097,5.1636,6.024126 +L 5.1636,6.024126,5.1636,6.368701 +L 5.1636,6.368701,4.5927,6.368701 +L 4.5927,6.368701,4.0323,6.368701 +L 4.0323,6.368701,3.4825,6.368701 +L 5.5874,5.300903,6.1482,5.300903 +L 6.1482,5.300903,6.7187,5.300903 +L 6.7187,5.300903,7.297,5.300903 +L 7.297,5.300903,7.297,5.67097 +L 7.297,5.67097,7.297,6.024126 +L 7.297,6.024126,7.297,6.368701 +L 7.297,6.368701,6.7187,6.368701 +L 6.7187,6.368701,6.1482,6.368701 +L 6.1482,6.368701,5.5874,6.368701 +L 4.3409,6.902584,3.9767,7.449197 +L 3.9767,7.449197,3.4194,7.716183 +L 3.4194,7.716183,2.2009,7.932283 +L 6.0147,6.902584,6.2918,7.348962 +L 6.2918,7.348962,6.5755,7.778285 +L 6.5755,7.778285,6.8732,8.199269 +L 6.8732,8.199269,5.6403,8.367277 +L 5.6403,8.367277,4.9815,8.298103 +L 4.9815,8.298103,4.3409,7.932283 + +[酌] 51 +L 0.9522,-0.000003,1.2009,3.008581 +L 1.2009,3.008581,1.5966,5.966073 +L 1.5966,5.966073,1.8033,8.466112 +L 1.8033,8.466112,1.3795,8.466112 +L 1.3795,8.466112,0.9522,8.466112 +L 0.9522,8.466112,0.5249,8.466112 +L 1.3795,-0.000003,2.0803,-0.000003 +L 2.0803,-0.000003,2.791,-0.000003 +L 2.791,-0.000003,3.5128,-0.000003 +L 3.5128,-0.000003,3.5128,0.723253 +L 3.5128,0.723253,3.5128,1.437896 +L 3.5128,1.437896,3.5128,2.13565 +L 3.5128,2.13565,2.791,2.13565 +L 2.791,2.13565,2.0803,2.13565 +L 2.0803,2.13565,1.3795,2.13565 +L 5.6213,-0.000003,5.8941,-0.000003 +L 5.8941,-0.000003,6.1743,-0.000003 +L 6.1743,-0.000003,6.4724,-0.000003 +L 6.4724,-0.000003,7.2496,2.289604 +L 7.2496,2.289604,7.3862,4.460577 +L 7.3862,4.460577,7.3302,6.902584 +L 7.3302,6.902584,6.4724,6.824906 +L 6.4724,6.824906,5.6213,6.738802 +L 5.6213,6.738802,4.7667,6.635698 +L 4.7667,6.635698,4.6158,6.368701 +L 4.6158,6.368701,4.469,6.101738 +L 4.469,6.101738,4.3356,5.834753 +L 3.5128,2.631411,3.5128,3.001466 +L 3.5128,3.001466,3.5128,3.354569 +L 3.5128,3.354569,3.5128,3.699177 +L 3.5128,3.699177,3.2183,3.699177 +L 3.2183,3.699177,2.9381,3.699177 +L 2.9381,3.699177,2.6617,3.699177 +L 2.6617,3.699177,2.6442,5.221802 +L 2.6442,5.221802,2.5318,5.913865 +L 2.5318,5.913865,2.2344,6.368701 +L 2.2344,6.368701,1.9157,5.419559 +L 1.9157,5.419559,1.6982,4.114502 +L 1.6982,4.114502,1.3795,3.165338 +L 6.0451,3.432235,5.7505,3.888517 +L 5.7505,3.888517,5.4668,4.336273 +L 5.4668,4.336273,5.1905,4.76703 +L 3.5128,4.233169,3.1832,5.932252 +L 3.1832,5.932252,2.7104,7.148336 +L 2.7104,7.148336,2.2344,8.466112 +L 4.7667,7.398302,5.0641,7.813616 +L 5.0641,7.813616,5.1765,8.228831 +L 5.1765,8.228831,5.1905,8.999984 +L 3.089,8.466112,3.3619,8.466112 +L 3.3619,8.466112,3.6354,8.466112 +L 3.6354,8.466112,3.9156,8.466112 + +[釈] 39 +L 2.2326,-0.000003,2.1485,1.247231 +L 2.1485,1.247231,2.082,2.477478 +L 2.082,2.477478,2.0193,3.699177 +L 2.0193,3.699177,1.5324,3.011361 +L 1.5324,3.011361,1.0456,2.315041 +L 1.0456,2.315041,0.5588,1.601766 +L 3.5148,-0.000003,4.5127,2.658161 +L 4.5127,2.658161,4.7932,5.197789 +L 4.7932,5.197789,4.7932,7.932283 +L 4.7932,7.932283,5.6265,7.932283 +L 5.6265,7.932283,6.4744,7.932283 +L 6.4744,7.932283,7.3287,7.932283 +L 7.3287,7.932283,7.3287,7.055117 +L 7.3287,7.055117,7.3287,6.178037 +L 7.3287,6.178037,7.3287,5.300903 +L 7.3287,5.300903,6.8982,5.300903 +L 6.8982,5.300903,6.4744,5.300903 +L 6.4744,5.300903,6.0471,5.300903 +L 6.0471,5.300903,6.1101,4.036824 +L 6.1101,4.036824,6.555,2.662473 +L 6.555,2.662473,7.7559,-0.000003 +L 3.5148,3.165338,2.5026,4.464725 +L 2.5026,4.464725,1.7286,5.120122 +L 1.7286,5.120122,0.5588,5.300903 +L 2.6637,5.300903,2.359,5.754328 +L 2.359,5.754328,2.2501,6.436474 +L 2.2501,6.436474,2.2326,7.932283 +L 2.2326,7.932283,1.6617,7.932283 +L 1.6617,7.932283,1.1051,7.932283 +L 1.1051,7.932283,0.5588,7.932283 +L 3.0837,5.300903,3.3639,5.300903 +L 3.3639,5.300903,3.6441,5.300903 +L 3.6441,5.300903,3.9421,5.300903 +L 3.0837,6.368701,3.2168,6.71192 +L 3.2168,6.71192,3.3639,7.055117 +L 3.3639,7.055117,3.5148,7.398302 +L 2.6637,7.932283,2.9895,8.308031 +L 2.9895,8.308031,3.3218,8.446356 +L 3.3218,8.446356,3.9421,8.466112 + +[寂] 51 +L 1.4119,-0.000003,1.6847,-0.000003 +L 1.6847,-0.000003,1.9649,-0.000003 +L 1.9649,-0.000003,2.263,-0.000003 +L 2.263,-0.000003,2.3046,2.572066 +L 2.3046,2.572066,1.9722,3.872855 +L 1.9722,3.872855,0.5849,4.233169 +L 3.9718,-0.000003,4.522,0.723253 +L 4.522,0.723253,5.0821,1.437896 +L 5.0821,1.437896,5.653,2.13565 +L 5.653,2.13565,5.0509,3.315002 +L 5.0509,3.315002,4.8303,4.27406 +L 4.8303,4.27406,4.7949,5.834753 +L 4.7949,5.834753,5.3556,5.834753 +L 5.3556,5.834753,5.9265,5.834753 +L 5.9265,5.834753,6.5041,5.834753 +L 6.5041,5.834753,6.4869,4.292394 +L 6.4869,4.292394,6.378,3.461984 +L 6.378,3.461984,6.0768,2.631411 +L 7.3625,-0.000003,6.9317,0.533858 +L 6.9317,0.533858,6.5041,1.067807 +L 6.5041,1.067807,6.0768,1.601766 +L 0.5849,1.868752,0.711,2.315041 +L 0.711,2.315041,0.841,2.744365 +L 0.841,2.744365,0.9811,3.165338 +L 3.9718,1.868752,3.8215,2.315041 +L 3.8215,2.315041,3.6744,2.744365 +L 3.6744,2.744365,3.541,3.165338 +L 2.6899,4.233169,2.3922,4.687897 +L 2.3922,4.687897,2.2805,5.380004 +L 2.2805,5.380004,2.263,6.902584 +L 3.1207,4.233169,3.3942,4.233169 +L 3.3942,4.233169,3.6744,4.233169 +L 3.6744,4.233169,3.9718,4.233169 +L 2.6899,5.834753,2.9669,5.834753 +L 2.9669,5.834753,3.2506,5.834753 +L 3.2506,5.834753,3.541,5.834753 +L 0.5849,6.368701,0.5849,6.901227 +L 0.5849,6.901227,0.5849,7.425183 +L 0.5849,7.425183,0.5849,7.932283 +L 0.5849,7.932283,1.7166,7.932283 +L 1.7166,7.932283,2.8405,7.932283 +L 2.8405,7.932283,3.9718,7.932283 +L 3.9718,7.932283,3.9718,8.302372 +L 3.9718,8.302372,3.9718,8.655431 +L 3.9718,8.655431,3.9718,8.999984 +L 7.3625,6.368701,7.3625,6.901227 +L 7.3625,6.901227,7.3625,7.425183 +L 7.3625,7.425183,7.3625,7.932283 +L 7.3625,7.932283,6.3605,7.932283 +L 6.3605,7.932283,5.3766,7.932283 +L 5.3766,7.932283,4.3991,7.932283 + +[朱] 24 +L 3.9703,-0.000003,3.8897,1.411025 +L 3.8897,1.411025,3.8232,2.822141 +L 3.8232,2.822141,3.7605,4.233169 +L 3.7605,4.233169,2.6954,3.356002 +L 2.6954,3.356002,1.631,2.478835 +L 1.631,2.478835,0.5838,1.601766 +L 6.9614,1.601766,4.8112,3.795286 +L 4.8112,3.795286,3.1998,4.531163 +L 3.1998,4.531163,0.5838,4.76703 +L 4.8249,4.76703,5.6588,4.76703 +L 5.6588,4.76703,6.5064,4.76703 +L 6.5064,4.76703,7.361,4.76703 +L 3.9703,5.300903,3.7605,7.014193 +L 3.7605,7.014193,3.0772,7.439346 +L 3.0772,7.439346,1.8688,7.398302 +L 1.8688,7.398302,1.5715,6.891234 +L 1.5715,6.891234,1.2913,6.367366 +L 1.2913,6.367366,1.0142,5.834753 +L 4.4014,7.398302,4.1002,7.813616 +L 4.1002,7.813616,3.9878,8.228831 +L 3.9878,8.228831,3.9703,8.999984 +L 4.8249,7.398302,5.3853,7.398302 +L 5.3853,7.398302,5.9562,7.398302 +L 5.9562,7.398302,6.5344,7.398302 + +[殊] 57 +L 0.6173,-0.000003,1.1672,0.877142 +L 1.1672,0.877142,1.7237,1.754309 +L 1.7237,1.754309,2.2946,2.631411 +L 2.2946,2.631411,2.109,3.422417 +L 2.109,3.422417,1.7833,3.97598 +L 1.7833,3.97598,1.0446,4.76703 +L 1.0446,4.76703,0.8901,4.603236 +L 0.8901,4.603236,0.7465,4.422378 +L 0.7465,4.422378,0.6173,4.233169 +L 5.6783,-0.000003,5.6675,2.247279 +L 5.6675,2.247279,5.5628,3.20625 +L 5.5628,3.20625,5.2822,3.699177 +L 5.2822,3.699177,4.7047,2.822141 +L 4.7047,2.822141,4.1334,1.944952 +L 4.1334,1.944952,3.5734,1.067807 +L 7.818,1.067807,6.9634,2.315041 +L 6.9634,2.315041,6.1193,3.545332 +L 6.1193,3.545332,5.2822,4.76703 +L 5.2822,4.76703,4.7047,4.76703 +L 4.7047,4.76703,4.1334,4.76703 +L 4.1334,4.76703,3.5734,4.76703 +L 2.7223,4.233169,2.7223,4.956316 +L 2.7223,4.956316,2.7223,5.67097 +L 2.7223,5.67097,2.7223,6.368701 +L 2.7223,6.368701,2.2946,6.368701 +L 2.2946,6.368701,1.8782,6.368701 +L 1.8782,6.368701,1.4719,6.368701 +L 1.4719,6.368701,1.3174,6.024126 +L 1.3174,6.024126,1.1773,5.67097 +L 1.1773,5.67097,1.0446,5.300903 +L 6.1091,4.76703,5.7936,5.439337 +L 5.7936,5.439337,5.5803,6.230267 +L 5.5803,6.230267,5.2822,6.902584 +L 5.2822,6.902584,4.6521,6.863105 +L 4.6521,6.863105,4.2073,6.586138 +L 4.2073,6.586138,3.5734,5.834753 +L 6.5361,4.76703,6.9634,4.76703 +L 6.9634,4.76703,7.3907,4.76703 +L 7.3907,4.76703,7.818,4.76703 +L 1.4719,6.902584,1.4719,7.435077 +L 1.4719,7.435077,1.4719,7.959044 +L 1.4719,7.959044,1.4719,8.466112 +L 1.4719,8.466112,1.1773,8.466112 +L 1.1773,8.466112,0.8901,8.466112 +L 0.8901,8.466112,0.6173,8.466112 +L 6.1091,6.902584,5.8044,7.310762 +L 5.8044,7.310762,5.6955,7.854617 +L 5.6955,7.854617,5.6783,8.999984 +L 6.5361,6.902584,6.8131,6.902584 +L 6.8131,6.902584,7.0933,6.902584 +L 7.0933,6.902584,7.3907,6.902584 +L 4.4311,7.398302,4.4311,7.768412 +L 4.4311,7.768412,4.4311,8.121482 +L 4.4311,8.121482,4.4311,8.466112 +L 1.8638,8.466112,2.2946,8.466112 +L 2.2946,8.466112,2.7223,8.466112 +L 2.7223,8.466112,3.1531,8.466112 + +[狩] 48 +L 0.6158,-0.000003,1.2497,0.03964 +L 1.2497,0.03964,1.691,0.3164 +L 1.691,0.3164,2.3215,1.067807 +L 2.3215,1.067807,2.2441,2.478835 +L 2.2441,2.478835,2.1744,3.889886 +L 2.1744,3.889886,2.111,5.300903 +L 2.111,5.300903,1.6031,4.603236 +L 1.6031,4.603236,1.1061,3.888517 +L 1.1061,3.888517,0.6158,3.165338 +L 5.2842,-0.000003,5.7115,-0.000003 +L 5.7115,-0.000003,6.1427,-0.000003 +L 6.1427,-0.000003,6.5661,-0.000003 +L 6.5661,-0.000003,6.5451,3.507188 +L 6.5451,3.507188,5.866,4.666718 +L 5.866,4.666718,3.61,4.76703 +L 5.2842,2.631411,4.9865,3.001466 +L 4.9865,3.001466,4.7028,3.354569 +L 4.7028,3.354569,4.4331,3.699177 +L 6.9938,4.76703,6.6926,5.182236 +L 6.6926,5.182236,6.5801,5.597516 +L 6.5801,5.597516,6.5661,6.368701 +L 1.9008,5.834753,1.8833,6.604592 +L 1.8833,6.604592,1.7751,7.009979 +L 1.7751,7.009979,1.4704,7.398302 +L 1.4704,7.398302,1.1723,7.055117 +L 1.1723,7.055117,0.8921,6.71192 +L 0.8921,6.71192,0.6158,6.368701 +L 3.1792,6.368701,3.1792,6.901227 +L 3.1792,6.901227,3.1792,7.425183 +L 3.1792,7.425183,3.1792,7.932283 +L 3.1792,7.932283,3.8801,7.932283 +L 3.8801,7.932283,4.5841,7.932283 +L 4.5841,7.932283,5.2842,7.932283 +L 5.2842,7.932283,5.2842,8.302372 +L 5.2842,8.302372,5.2842,8.655431 +L 5.2842,8.655431,5.2842,8.999984 +L 7.8484,6.368701,7.8484,6.901227 +L 7.8484,6.901227,7.8484,7.425183 +L 7.8484,7.425183,7.8484,7.932283 +L 7.8484,7.932283,7.123,7.932283 +L 7.123,7.932283,6.4124,7.932283 +L 6.4124,7.932283,5.7115,7.932283 +L 1.4704,7.932283,1.1723,8.302372 +L 1.1723,8.302372,0.8921,8.655431 +L 0.8921,8.655431,0.6158,8.999984 +L 1.9008,7.932283,2.1744,8.302372 +L 2.1744,8.302372,2.4581,8.655431 +L 2.4581,8.655431,2.7519,8.999984 + +[珠] 39 +L 5.7419,-0.000003,5.7244,2.247279 +L 5.7244,2.247279,5.6158,3.20625 +L 5.6158,3.20625,5.3146,3.699177 +L 5.3146,3.699177,4.7363,2.822141 +L 4.7363,2.822141,4.1658,1.944952 +L 4.1658,1.944952,3.605,1.067807 +L 7.8469,1.067807,6.9958,2.315041 +L 6.9958,2.315041,6.1447,3.545332 +L 6.1447,3.545332,5.3146,4.76703 +L 5.3146,4.76703,4.7363,4.76703 +L 4.7363,4.76703,4.1658,4.76703 +L 4.1658,4.76703,3.605,4.76703 +L 0.649,2.13565,1.0763,2.13565 +L 1.0763,2.13565,1.5001,2.13565 +L 1.5001,2.13565,1.9274,2.13565 +L 1.9274,2.13565,1.9274,3.990187 +L 1.9274,3.990187,1.6437,4.997262 +L 1.6437,4.997262,0.649,5.300903 +L 6.1692,4.76703,5.5387,6.419509 +L 5.5387,6.419509,5.0729,7.512755 +L 5.0729,7.512755,3.605,6.368701 +L 6.5646,4.76703,6.9958,4.76703 +L 6.9958,4.76703,7.4157,4.76703 +L 7.4157,4.76703,7.8469,4.76703 +L 2.3585,5.300903,2.0538,5.773985 +L 2.0538,5.773985,1.9449,6.594698 +L 1.9449,6.594698,1.9274,8.466112 +L 1.9274,8.466112,1.5001,8.466112 +L 1.5001,8.466112,1.0763,8.466112 +L 1.0763,8.466112,0.649,8.466112 +L 6.1692,7.398302,5.8676,7.813616 +L 5.8676,7.813616,5.7594,8.228831 +L 5.7594,8.228831,5.7419,8.999984 +L 6.5646,7.398302,6.8413,7.398302 +L 6.8413,7.398302,7.125,7.398302 +L 7.125,7.398302,7.4157,7.398302 +L 2.3585,8.466112,2.6314,8.466112 +L 2.6314,8.466112,2.9049,8.466112 +L 2.9049,8.466112,3.1812,8.466112 + +[趣] 54 +L 0.6793,0.266982,0.9805,0.947793 +L 0.9805,0.947793,1.0923,1.975971 +L 1.0923,1.975971,1.1066,4.233169 +L 2.7843,-0.000003,2.3532,0.370075 +L 2.3532,0.370075,1.9332,0.723253 +L 1.9332,0.723253,1.5021,1.067807 +L 3.2081,-0.000003,4.7628,-0.000003 +L 4.7628,-0.000003,6.3214,-0.000003 +L 6.3214,-0.000003,7.88,-0.000003 +L 5.3166,1.067807,5.3166,1.781202 +L 5.3166,1.781202,5.3166,2.477478 +L 5.3166,2.477478,5.3166,3.165338 +L 5.3166,3.165338,4.6126,3.001466 +L 4.6126,3.001466,3.9118,2.820707 +L 3.9118,2.820707,3.2081,2.631411 +L 1.9332,1.601766,1.9577,3.611638 +L 1.9577,3.611638,1.7091,4.867332 +L 1.7091,4.867332,0.6793,5.300903 +L 6.1712,1.868752,6.6966,4.039626 +L 6.6966,4.039626,6.4339,5.43079 +L 6.4339,5.43079,6.1712,7.398302 +L 6.1712,7.398302,5.8731,7.398302 +L 5.8731,7.398302,5.5929,7.398302 +L 5.5929,7.398302,5.3166,7.398302 +L 5.3166,7.398302,5.3166,6.176603 +L 5.3166,6.176603,5.3166,4.946367 +L 5.3166,4.946367,5.3166,3.699177 +L 7.88,1.868752,7.7263,2.315041 +L 7.7263,2.315041,7.5827,2.744365 +L 7.5827,2.744365,7.4527,3.165338 +L 2.3532,3.699177,2.6334,3.699177 +L 2.6334,3.699177,2.9136,3.699177 +L 2.9136,3.699177,3.2081,3.699177 +L 4.0627,3.699177,4.0627,5.299458 +L 4.0627,5.299458,4.0627,6.891234 +L 4.0627,6.891234,4.0627,8.466112 +L 4.0627,8.466112,3.7682,8.466112 +L 3.7682,8.466112,3.4845,8.466112 +L 3.4845,8.466112,3.2081,8.466112 +L 7.4527,4.76703,7.4527,5.644176 +L 7.4527,5.644176,7.4527,6.521255 +L 7.4527,6.521255,7.4527,7.398302 +L 7.4527,7.398302,7.1554,7.398302 +L 7.1554,7.398302,6.8752,7.398302 +L 6.8752,7.398302,6.5981,7.398302 +L 2.3532,5.300903,2.0274,5.97183 +L 2.0274,5.97183,1.7017,6.752811 +L 1.7017,6.752811,1.1066,7.398302 +L 2.3532,7.398302,2.0593,7.813616 +L 2.0593,7.813616,1.9469,8.228831 +L 1.9469,8.228831,1.9332,8.999984 +L 5.3166,8.199269,5.043,8.302372 +L 5.043,8.302372,4.7628,8.388478 +L 4.7628,8.388478,4.49,8.466112 + +[儒] 66 +L 1.5324,-0.000003,1.4484,1.781202 +L 1.4484,1.781202,1.3815,3.545332 +L 1.3815,3.545332,1.3184,5.300903 +L 1.3184,5.300903,1.1016,5.137109 +L 1.1016,5.137109,0.8911,4.956316 +L 0.8911,4.956316,0.6813,4.76703 +L 3.2413,-0.000003,3.2413,0.877142 +L 3.2413,0.877142,3.2413,1.754309 +L 3.2413,1.754309,3.2413,2.631411 +L 3.2413,2.631411,3.7912,2.734481 +L 3.7912,2.734481,4.3516,2.820707 +L 4.3516,2.820707,4.9225,2.898363 +L 4.9225,2.898363,5.0524,3.268364 +L 5.0524,3.268364,5.1925,3.62151 +L 5.1925,3.62151,5.3463,3.966107 +L 5.3463,3.966107,4.4917,4.069298 +L 4.4917,4.069298,3.6476,4.155415 +L 3.6476,4.155415,2.814,4.233169 +L 4.4917,-0.000003,4.4917,0.723253 +L 4.4917,0.723253,4.4917,1.437896 +L 4.4917,1.437896,4.4917,2.13565 +L 5.7736,-0.000003,5.6233,0.877142 +L 5.6233,0.877142,5.4762,1.754309 +L 5.4762,1.754309,5.3463,2.631411 +L 6.6285,-0.000003,6.9013,-0.000003 +L 6.9013,-0.000003,7.1819,-0.000003 +L 7.1819,-0.000003,7.4796,-0.000003 +L 7.4796,-0.000003,7.4796,0.877142 +L 7.4796,0.877142,7.4796,1.754309 +L 7.4796,1.754309,7.4796,2.631411 +L 7.4796,2.631411,7.0558,2.631411 +L 7.0558,2.631411,6.6285,2.631411 +L 6.6285,2.631411,6.2009,2.631411 +L 5.7736,4.233169,6.4744,4.233169 +L 6.4744,4.233169,7.1749,4.233169 +L 7.1749,4.233169,7.8785,4.233169 +L 3.6686,5.300903,3.9421,5.300903 +L 3.9421,5.300903,4.2188,5.300903 +L 4.2188,5.300903,4.4917,5.300903 +L 5.3463,5.300903,5.0489,7.132784 +L 5.0489,7.132784,4.1873,7.498636 +L 4.1873,7.498636,2.814,7.398302 +L 2.814,7.398302,2.814,7.055117 +L 2.814,7.055117,2.814,6.71192 +L 2.814,6.71192,2.814,6.368701 +L 6.2009,5.300903,6.4744,5.300903 +L 6.4744,5.300903,6.7612,5.300903 +L 6.7612,5.300903,7.0558,5.300903 +L 1.5324,5.834753,1.6442,7.112994 +L 1.6442,7.112994,1.8473,8.052374 +L 1.8473,8.052374,1.9597,8.999984 +L 3.6686,6.368701,3.9421,6.368701 +L 3.9421,6.368701,4.2188,6.368701 +L 4.2188,6.368701,4.4917,6.368701 +L 6.2009,6.368701,6.4744,6.368701 +L 6.4744,6.368701,6.7612,6.368701 +L 6.7612,6.368701,7.0558,6.368701 +L 7.8785,6.368701,7.8785,6.71192 +L 7.8785,6.71192,7.8785,7.055117 +L 7.8785,7.055117,7.8785,7.398302 +L 7.8785,7.398302,6.1066,7.624396 +L 6.1066,7.624396,4.7897,8.087704 +L 4.7897,8.087704,3.2413,8.466112 +L 5.7736,8.466112,6.3308,8.466112 +L 6.3308,8.466112,6.9013,8.466112 +L 6.9013,8.466112,7.4796,8.466112 + +[寿] 51 +L 5.3801,-0.000003,5.6495,-0.000003 +L 5.6495,-0.000003,5.9265,-0.000003 +L 5.9265,-0.000003,6.1958,-0.000003 +L 6.1958,-0.000003,6.1857,1.871554 +L 6.1857,1.871554,6.0841,2.692134 +L 6.0841,2.692134,5.8039,3.165338 +L 5.8039,3.165338,3.583,2.915219 +L 3.583,2.915219,2.284,2.233083 +L 2.284,2.233083,0.7075,0.533858 +L 4.5217,1.067807,4.2243,1.437896 +L 4.2243,1.437896,3.9441,1.790986 +L 3.9441,1.790986,3.6706,2.13565 +L 0.7075,3.165338,1.2609,3.165338 +L 1.2609,3.165338,1.8146,3.165338 +L 1.8146,3.165338,2.3855,3.165338 +L 6.6266,3.165338,6.3258,3.580641 +L 6.3258,3.580641,6.2134,3.995845 +L 6.2134,3.995845,6.1958,4.76703 +L 6.1958,4.76703,5.2012,4.76703 +L 5.2012,4.76703,4.217,4.76703 +L 4.217,4.76703,3.2398,4.76703 +L 3.2398,4.76703,3.2398,4.422378 +L 3.2398,4.422378,3.2398,4.069298 +L 3.2398,4.069298,3.2398,3.699177 +L 7.0543,3.165338,7.3306,3.165338 +L 7.3306,3.165338,7.6108,3.165338 +L 7.6108,3.165338,7.9054,3.165338 +L 0.7075,4.76703,1.4118,4.76703 +L 1.4118,4.76703,2.112,4.76703 +L 2.112,4.76703,2.8125,4.76703 +L 6.6266,4.76703,7.0543,4.76703 +L 7.0543,4.76703,7.4851,4.76703 +L 7.4851,4.76703,7.9054,4.76703 +L 3.6706,5.567844,3.3063,6.131388 +L 3.3063,6.131388,2.7599,6.339029 +L 2.7599,6.339029,1.5656,6.368701 +L 4.0944,6.368701,3.8005,6.901227 +L 3.8005,6.901227,3.5168,7.425183 +L 3.5168,7.425183,3.2398,7.932283 +L 3.2398,7.932283,2.5396,7.932283 +L 2.5396,7.932283,1.8391,7.932283 +L 1.8391,7.932283,1.1383,7.932283 +L 4.5217,6.368701,5.3556,6.368701 +L 5.3556,6.368701,6.2032,6.368701 +L 6.2032,6.368701,7.0543,6.368701 +L 4.0944,7.932283,3.9441,8.302372 +L 3.9441,8.302372,3.8005,8.655431 +L 3.8005,8.655431,3.6706,8.999984 +L 4.5217,7.932283,5.4992,7.932283 +L 5.4992,7.932283,6.483,7.932283 +L 6.483,7.932283,7.4851,7.932283 + +[需] 66 +L 1.1333,-0.000003,1.1333,0.877142 +L 1.1333,0.877142,1.1333,1.754309 +L 1.1333,1.754309,1.1333,2.631411 +L 1.1333,2.631411,1.9879,2.734481 +L 1.9879,2.734481,2.8428,2.820707 +L 2.8428,2.820707,3.6974,2.898363 +L 3.6974,2.898363,3.8302,3.268364 +L 3.8302,3.268364,3.9776,3.62151 +L 3.9776,3.62151,4.1279,3.966107 +L 4.1279,3.966107,2.9966,4.069298 +L 2.9966,4.069298,1.8688,4.155415 +L 1.8688,4.155415,0.7379,4.233169 +L 3.2701,-0.000003,3.2701,0.723253 +L 3.2701,0.723253,3.2701,1.437896 +L 3.2701,1.437896,3.2701,2.13565 +L 4.9513,-0.000003,4.9513,0.877142 +L 4.9513,0.877142,4.9513,1.754309 +L 4.9513,1.754309,4.9513,2.631411 +L 4.9513,2.631411,4.6743,2.631411 +L 4.6743,2.631411,4.4014,2.631411 +L 4.4014,2.631411,4.1279,2.631411 +L 6.2329,-0.000003,6.5064,-0.000003 +L 6.5064,-0.000003,6.7936,-0.000003 +L 6.7936,-0.000003,7.084,-0.000003 +L 7.084,-0.000003,7.084,0.877142 +L 7.084,0.877142,7.084,1.754309 +L 7.084,1.754309,7.084,2.631411 +L 7.084,2.631411,6.5064,2.631411 +L 6.5064,2.631411,5.9352,2.631411 +L 5.9352,2.631411,5.3786,2.631411 +L 4.5552,4.233169,5.5324,4.233169 +L 5.5324,4.233169,6.5134,4.233169 +L 6.5134,4.233169,7.5113,4.233169 +L 1.5641,5.300903,2.1213,5.300903 +L 2.1213,5.300903,2.6919,5.300903 +L 2.6919,5.300903,3.2701,5.300903 +L 4.1279,5.300903,3.6554,7.285414 +L 3.6554,7.285414,2.4292,7.574946 +L 2.4292,7.574946,0.7379,7.398302 +L 0.7379,7.398302,0.7379,6.891234 +L 0.7379,6.891234,0.7379,6.367366 +L 0.7379,6.367366,0.7379,5.834753 +L 4.9513,5.300903,5.5044,5.300903 +L 5.5044,5.300903,6.0788,5.300903 +L 6.0788,5.300903,6.6602,5.300903 +L 7.5113,5.834753,7.5113,6.367366 +L 7.5113,6.367366,7.5113,6.891234 +L 7.5113,6.891234,7.5113,7.398302 +L 7.5113,7.398302,6.5134,7.398302 +L 6.5134,7.398302,5.5324,7.398302 +L 5.5324,7.398302,4.5552,7.398302 +L 4.5552,7.398302,4.4014,7.665287 +L 4.4014,7.665287,4.2575,7.932283 +L 4.2575,7.932283,4.1279,8.199269 +L 4.1279,8.199269,3.1227,8.302372 +L 3.1227,8.302372,2.1213,8.388478 +L 2.1213,8.388478,1.1333,8.466112 +L 1.5641,6.368701,2.1213,6.368701 +L 2.1213,6.368701,2.6919,6.368701 +L 2.6919,6.368701,3.2701,6.368701 +L 4.9513,6.368701,5.5044,6.368701 +L 5.5044,6.368701,6.0788,6.368701 +L 6.0788,6.368701,6.6602,6.368701 +L 4.5552,8.466112,5.3888,8.466112 +L 5.3888,8.466112,6.2329,8.466112 +L 6.2329,8.466112,7.084,8.466112 + +[囚] 18 +L 0.7399,-0.000003,0.7399,2.822141 +L 0.7399,2.822141,0.7399,5.644176 +L 0.7399,5.644176,0.7399,8.466112 +L 0.7399,8.466112,2.9986,8.466112 +L 2.9986,8.466112,5.2545,8.466112 +L 5.2545,8.466112,7.5133,8.466112 +L 7.5133,8.466112,7.5133,5.644176 +L 7.5133,5.644176,7.5133,2.822141 +L 7.5133,2.822141,7.5133,-0.000003 +L 7.5133,-0.000003,5.2545,-0.000003 +L 5.2545,-0.000003,2.9986,-0.000003 +L 2.9986,-0.000003,0.7399,-0.000003 +L 1.8043,1.601766,3.048,3.511347 +L 3.048,3.511347,3.843,5.183669 +L 3.843,5.183669,4.1267,7.398302 +L 6.2594,1.601766,5.6818,2.668143 +L 5.6818,2.668143,5.1109,3.726058 +L 5.1109,3.726058,4.5537,4.76703 + +[愁] 51 +L 0.7695,-0.000003,1.0466,0.723253 +L 1.0466,0.723253,1.3303,1.437896 +L 1.3303,1.437896,1.628,2.13565 +L 3.3018,-0.000003,3.0006,0.435067 +L 3.0006,0.435067,2.8889,0.988804 +L 2.8889,0.988804,2.8745,2.13565 +L 3.7291,-0.000003,4.5631,-0.000003 +L 4.5631,-0.000003,5.4103,-0.000003 +L 5.4103,-0.000003,6.2652,-0.000003 +L 6.2652,-0.000003,6.2652,0.370075 +L 6.2652,0.370075,6.2652,0.723253 +L 6.2652,0.723253,6.2652,1.067807 +L 7.9709,0.800843,7.6729,1.257136 +L 7.6729,1.257136,7.3927,1.70487 +L 7.3927,1.70487,7.1163,2.13565 +L 5.0114,1.334792,4.8604,1.601766 +L 4.8604,1.601766,4.7168,1.868752 +L 4.7168,1.868752,4.5841,2.13565 +L 2.4507,3.165338,2.3667,4.069298 +L 2.3667,4.069298,2.297,4.956316 +L 2.297,4.956316,2.2336,5.834753 +L 2.2336,5.834753,1.7467,5.137109 +L 1.7467,5.137109,1.2564,4.422378 +L 1.2564,4.422378,0.7695,3.699177 +L 4.1603,3.165338,5.3126,5.144135 +L 5.3126,5.144135,5.7609,6.690697 +L 5.7609,6.690697,5.8341,8.999984 +L 7.5436,3.165338,7.1163,3.888517 +L 7.1163,3.888517,6.6925,4.603236 +L 6.6925,4.603236,6.2652,5.300903 +L 3.7291,4.233169,3.4353,4.603236 +L 3.4353,4.603236,3.1516,4.956316 +L 3.1516,4.956316,2.8745,5.300903 +L 4.1603,5.834753,3.7431,6.210489 +L 3.7431,6.210489,2.8714,6.348934 +L 2.8714,6.348934,0.7695,6.368701 +L 7.1163,5.834753,7.4137,6.248688 +L 7.4137,6.248688,7.5261,6.653921 +L 7.5261,6.653921,7.5436,7.398302 +L 4.5841,6.368701,4.5841,6.71192 +L 4.5841,6.71192,4.5841,7.055117 +L 4.5841,7.055117,4.5841,7.398302 +L 2.4507,6.902584,2.4507,7.245868 +L 2.4507,7.245868,2.4507,7.589044 +L 2.4507,7.589044,2.4507,7.932283 +L 2.4507,7.932283,1.8802,7.932283 +L 1.8802,7.932283,1.3194,7.932283 +L 1.3194,7.932283,0.7695,7.932283 +L 2.8745,7.932283,3.1516,8.121482 +L 3.1516,8.121482,3.4353,8.302372 +L 3.4353,8.302372,3.7291,8.466112 + +[秀] 42 +L 0.9855,-0.000003,2.1235,1.120048 +L 2.1235,1.120048,2.8278,2.146879 +L 2.8278,2.146879,3.3357,3.699177 +L 3.3357,3.699177,2.2881,3.837622 +L 2.2881,3.837622,1.5319,4.094724 +L 1.5319,4.094724,0.768,4.233169 +L 5.4407,-0.000003,6.5856,0.368652 +L 6.5856,0.368652,7.0588,1.322107 +L 7.0588,1.322107,7.1495,2.631411 +L 7.1495,2.631411,6.5685,2.631411 +L 6.5685,2.631411,5.9937,2.631411 +L 5.9937,2.631411,5.4407,2.631411 +L 5.4407,2.631411,5.4407,3.001466 +L 5.4407,3.001466,5.4407,3.354569 +L 5.4407,3.354569,5.4407,3.699177 +L 5.4407,3.699177,4.8698,3.699177 +L 4.8698,3.699177,4.3125,3.699177 +L 4.3125,3.699177,3.7595,3.699177 +L 6.7222,4.233169,6.0778,4.956316 +L 6.0778,4.956316,5.4407,5.67097 +L 5.4407,5.67097,4.7994,6.368701 +L 4.7994,6.368701,4.3689,5.953529 +L 4.3689,5.953529,4.211,5.538194 +L 4.211,5.538194,4.1868,4.76703 +L 2.2671,4.76703,2.6103,5.223225 +L 2.6103,5.223225,2.9679,5.67097 +L 2.9679,5.67097,3.3357,6.101738 +L 3.3357,6.101738,2.4772,6.204841 +L 2.4772,6.204841,1.6261,6.291034 +L 1.6261,6.291034,0.768,6.368701 +L 3.7595,6.368701,4.0607,6.78256 +L 4.0607,6.78256,4.1724,7.187903 +L 4.1724,7.187903,4.1868,7.932283 +L 4.1868,7.932283,3.1812,7.932283 +L 3.1812,7.932283,2.1834,7.932283 +L 2.1834,7.932283,1.1988,7.932283 +L 5.4407,6.368701,6.1408,6.368701 +L 6.1408,6.368701,6.8483,6.368701 +L 6.8483,6.368701,7.5733,6.368701 +L 4.7994,7.932283,5.3146,8.308031 +L 5.3146,8.308031,5.9205,8.446356 +L 5.9205,8.446356,7.1495,8.466112 + +[臭] 36 +L 0.8019,-0.000003,1.9048,0.44506 +L 1.9048,0.44506,2.6754,1.067807 +L 2.6754,1.067807,3.7615,2.402525 +L 3.7615,2.402525,2.7633,2.478835 +L 2.7633,2.478835,1.7791,2.555145 +L 1.7791,2.555145,0.8019,2.631411 +L 6.7176,-0.000003,5.3586,1.600431 +L 5.3586,1.600431,4.6543,2.861664 +L 4.6543,2.861664,4.1884,4.76703 +L 4.1884,4.76703,3.3342,4.76703 +L 3.3342,4.76703,2.4866,4.76703 +L 2.4866,4.76703,1.6565,4.76703 +L 1.6565,4.76703,1.6565,5.833417 +L 1.6565,5.833417,1.6565,6.891234 +L 1.6565,6.891234,1.6565,7.932283 +L 1.6565,7.932283,3.1556,8.149796 +L 3.1556,8.149796,3.8067,8.426567 +L 3.8067,8.426567,4.1884,8.999984 +L 5.0395,2.631411,5.8731,2.631411 +L 5.8731,2.631411,6.7207,2.631411 +L 6.7207,2.631411,7.5718,2.631411 +L 4.6157,4.76703,5.3166,4.76703 +L 5.3166,4.76703,6.0167,4.76703 +L 6.0167,4.76703,6.7176,4.76703 +L 6.7176,4.76703,6.7176,5.137109 +L 6.7176,5.137109,6.7176,5.49008 +L 6.7176,5.49008,6.7176,5.834753 +L 6.7176,5.834753,5.1621,5.834753 +L 5.1621,5.834753,3.6214,5.834753 +L 3.6214,5.834753,2.0835,5.834753 +L 6.7176,6.635698,5.1621,6.738802 +L 5.1621,6.738802,3.6214,6.824906 +L 3.6214,6.824906,2.0835,6.902584 +L 6.7176,7.665287,5.8665,7.768412 +L 5.8665,7.768412,5.022,7.854617 +L 5.022,7.854617,4.1884,7.932283 + +[舟] 26 +L 0.8316,-0.000003,1.7667,1.947754 +L 1.7667,1.947754,2.0925,3.887094 +L 2.0925,3.887094,0.8316,4.76703 +L 5.0734,-0.000003,5.4797,-0.000003 +L 5.4797,-0.000003,5.9,-0.000003 +L 5.9,-0.000003,6.3234,-0.000003 +L 6.3234,-0.000003,5.886,3.966107 +L 5.886,3.966107,4.8282,5.02179 +L 4.8282,5.02179,3.5744,4.887482 +L 3.5744,4.887482,2.5236,5.284058 +L 2.5236,5.284058,2.0823,7.932283 +L 2.0823,7.932283,3.3043,8.149796 +L 3.3043,8.149796,3.8546,8.426567 +L 3.8546,8.426567,4.2188,8.999984 +L 4.2188,1.601766,4.2188,2.315041 +L 4.2188,2.315041,4.2188,3.011361 +L 4.2188,3.011361,4.2188,3.699177 +L 6.7511,4.76703,6.4499,5.240124 +L 6.4499,5.240124,6.3374,6.060836 +L 6.3374,6.060836,6.3234,7.932283 +L 6.3234,7.932283,5.6198,7.932283 +L 5.6198,7.932283,4.9189,7.932283 +L 4.9189,7.932283,4.2188,7.932283 +L 4.6461,5.834753,4.3484,6.204841 +L 4.3484,6.204841,4.0679,6.558031 +L 4.0679,6.558031,3.7912,6.902584 + +[酬] 51 +L 0.8301,-0.000003,1.0788,3.008581 +L 1.0788,3.008581,1.478,5.966073 +L 1.478,5.966073,1.6885,8.466112 +L 1.6885,8.466112,1.3908,8.466112 +L 1.3908,8.466112,1.1071,8.466112 +L 1.1071,8.466112,0.8301,8.466112 +L 1.2574,-0.000003,1.9617,-0.000003 +L 1.9617,-0.000003,2.6724,-0.000003 +L 2.6724,-0.000003,3.3977,-0.000003 +L 3.3977,-0.000003,3.3977,0.723253 +L 3.3977,0.723253,3.3977,1.437896 +L 3.3977,1.437896,3.3977,2.13565 +L 3.3977,2.13565,2.6724,2.13565 +L 2.6724,2.13565,1.9617,2.13565 +L 1.9617,2.13565,1.2574,2.13565 +L 4.2208,-0.000003,5.0929,2.926678 +L 5.0929,2.926678,5.177,5.946382 +L 5.177,5.946382,5.0719,8.999984 +L 7.6353,-0.000003,7.5548,1.781202 +L 7.5548,1.781202,7.4816,3.545332 +L 7.4816,3.545332,7.422,5.300903 +L 7.422,5.300903,7.1275,5.49008 +L 7.1275,5.49008,6.8438,5.67097 +L 6.8438,5.67097,6.5675,5.834753 +L 6.5675,5.834753,6.483,4.079171 +L 6.483,4.079171,6.4165,2.315041 +L 6.4165,2.315041,6.3538,0.533858 +L 3.3977,2.631411,3.3977,3.001466 +L 3.3977,3.001466,3.3977,3.354569 +L 3.3977,3.354569,3.3977,3.699177 +L 3.3977,3.699177,3.0997,3.699177 +L 3.0997,3.699177,2.816,3.699177 +L 2.816,3.699177,2.5396,3.699177 +L 2.5396,3.699177,2.5221,5.221802 +L 2.5221,5.221802,2.4132,5.913865 +L 2.4132,5.913865,2.1158,6.368701 +L 2.1158,6.368701,1.8003,5.419559 +L 1.8003,5.419559,1.5765,4.114502 +L 1.5765,4.114502,1.2574,3.165338 +L 3.3977,4.233169,3.065,5.932252 +L 3.065,5.932252,2.5887,7.148336 +L 2.5887,7.148336,2.1158,8.466112 +L 3.7932,4.76703,4.0944,5.182236 +L 4.0944,5.182236,4.2033,5.597516 +L 4.2033,5.597516,4.2208,6.368701 +L 7.6353,5.834753,7.6353,6.901227 +L 7.6353,6.901227,7.6353,7.959044 +L 7.6353,7.959044,7.6353,8.999984 +L 6.3538,6.368701,6.3538,7.245868 +L 6.3538,7.245868,6.3538,8.123036 +L 6.3538,8.123036,6.3538,8.999984 + +[醜] 66 +L 1.2878,-0.000003,1.5396,3.008581 +L 1.5396,3.008581,1.9357,5.966073 +L 1.9357,5.966073,2.1455,8.466112 +L 2.1455,8.466112,1.7151,8.466112 +L 1.7151,8.466112,1.2878,8.466112 +L 1.2878,8.466112,0.864,8.466112 +L 1.7151,-0.000003,2.419,-0.000003 +L 2.419,-0.000003,3.1192,-0.000003 +L 3.1192,-0.000003,3.82,-0.000003 +L 3.82,-0.000003,3.82,0.723253 +L 3.82,0.723253,3.82,1.437896 +L 3.82,1.437896,3.82,2.13565 +L 3.82,2.13565,3.1192,2.13565 +L 3.1192,2.13565,2.419,2.13565 +L 2.419,2.13565,1.7151,2.13565 +L 4.6778,-0.000003,5.3292,1.642778 +L 5.3292,1.642778,5.5254,3.048115 +L 5.5254,3.048115,5.5289,4.76703 +L 5.5289,4.76703,5.235,4.76703 +L 5.235,4.76703,4.9513,4.76703 +L 4.9513,4.76703,4.6778,4.76703 +L 4.6778,4.76703,4.6813,7.115884 +L 4.6813,7.115884,4.3069,8.20206 +L 4.3069,8.20206,2.9689,8.466112 +L 2.9689,8.466112,3.1437,7.089091 +L 3.1437,7.089091,3.5045,5.457758 +L 3.5045,5.457758,3.82,2.631411 +L 6.3523,-0.000003,6.2122,1.944952 +L 6.2122,1.944952,6.0826,3.889886 +L 6.0826,3.889886,5.96,5.834753 +L 5.96,5.834753,5.6623,6.024126 +L 5.6623,6.024126,5.3786,6.204841 +L 5.3786,6.204841,5.1016,6.368701 +L 6.7827,-0.000003,7.21,-0.000003 +L 7.21,-0.000003,7.6338,-0.000003 +L 7.6338,-0.000003,8.0611,-0.000003 +L 8.0611,-0.000003,8.0611,0.370075 +L 8.0611,0.370075,8.0611,0.723253 +L 8.0611,0.723253,8.0611,1.067807 +L 6.9967,2.631411,7.21,3.165338 +L 7.21,3.165338,7.4205,3.699177 +L 7.4205,3.699177,7.6338,4.233169 +L 7.6338,4.233169,7.3435,4.422378 +L 7.3435,4.422378,7.0563,4.603236 +L 7.0563,4.603236,6.7827,4.76703 +L 1.7151,3.165338,2.0338,4.114502 +L 2.0338,4.114502,2.2471,5.419559 +L 2.2471,5.419559,2.5416,6.368701 +L 2.5416,6.368701,2.8145,5.49008 +L 2.8145,5.49008,3.1017,4.603236 +L 3.1017,4.603236,3.3962,3.699177 +L 7.21,5.300903,7.21,5.67097 +L 7.21,5.67097,7.21,6.024126 +L 7.21,6.024126,7.21,6.368701 +L 7.21,6.368701,6.5621,6.426492 +L 6.5621,6.426492,6.0157,6.831988 +L 6.0157,6.831988,5.1016,7.932283 +L 7.21,6.902584,7.21,7.245868 +L 7.21,7.245868,7.21,7.589044 +L 7.21,7.589044,7.21,7.932283 +L 7.21,7.932283,6.5905,7.95204 +L 6.5905,7.95204,6.2682,8.090397 +L 6.2682,8.090397,5.96,8.466112 +L 5.96,8.466112,6.0826,8.655431 +L 6.0826,8.655431,6.2122,8.836201 +L 6.2122,8.836201,6.3523,8.999984 + +[充] 39 +L 1.0446,-0.000003,1.8186,0.877175 +L 1.8186,0.877175,2.6032,1.754309 +L 2.6032,1.754309,3.3947,2.631411 +L 3.3947,2.631411,3.3947,3.354569 +L 3.3947,3.354569,3.3947,4.069298 +L 3.3947,4.069298,3.3947,4.767041 +L 3.3947,4.767041,2.6729,4.767041 +L 2.6729,4.767041,1.9619,4.767041 +L 1.9619,4.767041,1.2579,4.767041 +L 5.4997,-0.000003,5.1915,0.55229 +L 5.1915,0.55229,5.023,1.92652 +L 5.023,1.92652,4.8584,5.300903 +L 4.8584,5.300903,4.5012,5.137109 +L 4.5012,5.137109,4.1618,4.956316 +L 4.1618,4.956316,3.8252,4.767041 +L 5.927,-0.000003,6.4874,-0.000003 +L 6.4874,-0.000003,7.0583,-0.000003 +L 7.0583,-0.000003,7.6358,-0.000003 +L 7.6358,-0.000003,7.6358,0.533858 +L 7.6358,0.533858,7.6358,1.067807 +L 7.6358,1.067807,7.6358,1.601799 +L 7.2085,4.500046,6.9108,4.956316 +L 6.9108,4.956316,6.6271,5.403995 +L 6.6271,5.403995,6.3575,5.834753 +L 6.3575,5.834753,6.0597,5.67097 +L 6.0597,5.67097,5.776,5.49008 +L 5.776,5.49008,5.4997,5.300903 +L 2.9674,5.300903,3.2438,5.937889 +L 3.2438,5.937889,3.5275,6.558031 +L 3.5275,6.558031,3.8252,7.169548 +L 3.8252,7.169548,2.8238,7.245868 +L 2.8238,7.245868,1.8396,7.322123 +L 1.8396,7.322123,0.8625,7.398335 +L 4.2493,7.398335,4.2493,7.932305 +L 4.2493,7.932305,4.2493,8.466112 +L 4.2493,8.466112,4.2493,8.999984 +L 4.6763,7.398335,5.6535,7.398335 +L 5.6535,7.398335,6.638,7.398335 +L 6.638,7.398335,7.6358,7.398335 + +[柔] 33 +L 4.2478,-0.000003,4.1673,0.723286 +L 4.1673,0.723286,4.1007,1.437896 +L 4.1007,1.437896,4.0338,2.13565 +L 4.0338,2.13565,2.9694,1.601799 +L 2.9694,1.601799,1.9117,1.067807 +L 1.9117,1.067807,0.8645,0.533858 +L 6.8151,0.533858,4.7763,2.026855 +L 4.7763,2.026855,3.106,2.511386 +L 3.106,2.511386,0.8645,2.631411 +L 5.1056,2.631411,5.9357,2.631411 +L 5.9357,2.631411,6.7797,2.631411 +L 6.7797,2.631411,7.6378,2.631411 +L 1.5016,4.23318,2.125,4.870134 +L 2.125,4.870134,2.7554,5.49008 +L 2.7554,5.49008,3.3967,6.101738 +L 3.3967,6.101738,2.5421,6.204841 +L 2.5421,6.204841,1.6945,6.291034 +L 1.6945,6.291034,0.8645,6.368701 +L 4.2478,4.767041,4.1007,5.300903 +L 4.1007,5.300903,3.9498,5.834753 +L 3.9498,5.834753,3.8205,6.368701 +L 6.384,4.767041,6.6607,5.223225 +L 6.6607,5.223225,6.9444,5.67097 +L 6.9444,5.67097,7.2389,6.101738 +L 7.2389,6.101738,5.9567,6.548071 +L 5.9567,6.548071,4.6748,6.977482 +L 4.6748,6.977482,3.3967,7.398335 +L 5.3196,7.398335,5.5294,7.665287 +L 5.5294,7.665287,5.7434,7.932305 +L 5.7434,7.932305,5.9567,8.199269 +L 5.9567,8.199269,4.4054,8.302372 +L 4.4054,8.302372,2.8468,8.388478 +L 2.8468,8.388478,1.2918,8.466112 + +[汁] 18 +L 0.8595,0.266982,1.2692,1.411047 +L 1.2692,1.411047,1.6857,2.555178 +L 1.6857,2.555178,2.113,3.699221 +L 5.5314,-0.000003,5.5597,3.628668 +L 5.5597,3.628668,5.0169,5.053696 +L 5.0169,5.053696,2.9644,5.300903 +L 5.9275,5.300903,5.6505,5.79396 +L 5.6505,5.79396,5.5454,6.752833 +L 5.5454,6.752833,5.5314,8.999984 +L 6.3548,5.300903,6.9117,5.300903 +L 6.9117,5.300903,7.4861,5.300903 +L 7.4861,5.300903,8.0636,5.300903 +L 1.7176,5.834753,1.4195,6.204841 +L 1.4195,6.204841,1.1393,6.558031 +L 1.1393,6.558031,0.8595,6.902584 +L 2.113,7.932305,1.8401,8.302372 +L 1.8401,8.302372,1.5631,8.655431 +L 1.5631,8.655431,1.2903,8.999984 + +[渋] 39 +L 0.865,0.266982,1.2887,1.411047 +L 1.2887,1.411047,1.716,2.555178 +L 1.716,2.555178,2.1433,3.699221 +L 3.2151,-0.000003,3.7019,0.533858 +L 3.7019,0.533858,4.1888,1.067807 +L 4.1888,1.067807,4.6788,1.601799 +L 7.6632,-0.000003,7.0885,0.533858 +L 7.0885,0.533858,6.5144,1.067807 +L 6.5144,1.067807,5.9537,1.601799 +L 4.6788,2.631411,4.2515,3.165338 +L 4.2515,3.165338,3.8312,3.699221 +L 3.8312,3.699221,3.4284,4.23318 +L 5.9537,2.631411,6.3845,3.165338 +L 6.3845,3.165338,6.8121,3.699221 +L 6.8121,3.699221,7.2429,4.23318 +L 2.9976,5.300903,3.2746,5.300903 +L 3.2746,5.300903,3.5583,5.300903 +L 3.5583,5.300903,3.8522,5.300903 +L 3.8522,5.300903,3.8522,6.178037 +L 3.8522,6.178037,3.8522,7.055117 +L 3.8522,7.055117,3.8522,7.932305 +L 4.2798,5.300903,4.6823,5.300903 +L 4.6823,5.300903,5.1026,5.300903 +L 5.1026,5.300903,5.5334,5.300903 +L 5.5334,5.300903,5.5334,6.548071 +L 5.5334,6.548071,5.5334,7.778285 +L 5.5334,7.778285,5.5334,8.999984 +L 5.9537,5.300903,6.6612,5.300903 +L 6.6612,5.300903,7.3687,5.300903 +L 7.3687,5.300903,8.094,5.300903 +L 1.716,5.834753,1.4215,6.204841 +L 1.4215,6.204841,1.1413,6.558031 +L 1.1413,6.558031,0.865,6.902584 +L 5.9537,7.398335,6.5144,7.398335 +L 6.5144,7.398335,7.0885,7.398335 +L 7.0885,7.398335,7.6632,7.398335 +L 2.1433,7.932305,1.8453,8.302372 +L 1.8453,8.302372,1.5651,8.655431 +L 1.5651,8.655431,1.2887,8.999984 + +# kan_29 ------------------------------------------------------- +# 獣銃叔淑粛塾俊瞬准循旬殉潤盾巡遵庶緒叙徐償匠升召奨宵尚床彰抄掌昇晶沼渉焦症硝礁祥称粧紹肖衝訟詔詳鐘丈 + +[獣] 57 +L 0.4304,0.000106,0.4304,0.723275 +L 0.4304,0.723275,0.4304,1.438005 +L 0.4304,1.438005,0.4304,2.135672 +L 0.4304,2.135672,1.2639,2.135672 +L 1.2639,2.135672,2.1115,2.135672 +L 2.1115,2.135672,2.9626,2.135672 +L 2.9626,2.135672,2.9626,1.438005 +L 2.9626,1.438005,2.9626,0.723275 +L 2.9626,0.723275,2.9626,0.000106 +L 2.9626,0.000106,2.1115,0.000106 +L 2.1115,0.000106,1.2639,0.000106 +L 1.2639,0.000106,0.4304,0.000106 +L 3.8176,0.000106,4.994,3.018486 +L 4.994,3.018486,5.4319,4.392739 +L 5.4319,4.392739,5.4988,5.300914 +L 5.4988,5.300914,5.1482,5.676694 +L 5.1482,5.676694,4.7139,5.815107 +L 4.7139,5.815107,3.8176,5.834873 +L 7.2041,0.000106,6.7768,1.247296 +L 6.7768,1.247296,6.3498,2.4775 +L 6.3498,2.4775,5.9187,3.699341 +L 0.0034,3.699341,1.2639,3.699341 +L 1.2639,3.699341,2.5353,3.699341 +L 2.5353,3.699341,3.8176,3.699341 +L 0.4304,4.767052,0.4304,5.490232 +L 0.4304,5.490232,0.4304,6.20494 +L 0.4304,6.20494,0.4304,6.902684 +L 0.4304,6.902684,1.2639,6.902684 +L 1.2639,6.902684,2.1115,6.902684 +L 2.1115,6.902684,2.9626,6.902684 +L 2.9626,6.902684,2.9626,6.20494 +L 2.9626,6.20494,2.9626,5.490232 +L 2.9626,5.490232,2.9626,4.767052 +L 2.9626,4.767052,2.1115,4.767052 +L 2.1115,4.767052,1.2639,4.767052 +L 1.2639,4.767052,0.4304,4.767052 +L 1.6846,5.300914,1.4075,5.490232 +L 1.4075,5.490232,1.1308,5.671123 +L 1.1308,5.671123,0.8615,5.834873 +L 5.9187,5.834873,5.6245,6.307967 +L 5.6245,6.307967,5.5124,7.128678 +L 5.5124,7.128678,5.4988,9.000126 +L 6.3498,5.834873,6.6262,5.834873 +L 6.6262,5.834873,6.9067,5.834873 +L 6.9067,5.834873,7.2041,5.834873 +L 7.2041,7.703529,7.05,7.970515 +L 7.05,7.970515,6.9067,8.237402 +L 6.9067,8.237402,6.7768,8.504376 +L 0.4304,8.237402,0.2797,8.502932 +L 0.2797,8.502932,0.133,8.760034 +L 0.133,8.760034,0.0034,9.000126 +L 1.6846,8.237402,1.5305,8.502932 +L 1.5305,8.502932,1.3865,8.760034 +L 1.3865,8.760034,1.2534,9.000126 +L 2.9626,7.970515,3.0922,8.313711 +L 3.0922,8.313711,3.2358,8.65693 +L 3.2358,8.65693,3.3938,9.000126 + +[銃] 57 +L 0.0019,0.000106,0.4324,0.000106 +L 0.4324,0.000106,0.8562,0.000106 +L 0.8562,0.000106,1.2835,0.000106 +L 1.2835,0.000106,1.3609,2.286868 +L 1.3609,2.286868,1.1504,4.056547 +L 1.1504,4.056547,0.0019,4.767052 +L 2.9926,0.000106,3.8718,1.560832 +L 3.8718,1.560832,4.1975,2.519847 +L 4.1975,2.519847,4.2465,3.699341 +L 5.9557,0.000106,5.6514,0.492978 +L 5.6514,0.492978,5.5424,1.452113 +L 5.5424,1.452113,5.5249,3.699341 +L 6.376,0.000106,6.6562,0.000106 +L 6.6562,0.000106,6.9368,0.000106 +L 6.9368,0.000106,7.2341,0.000106 +L 7.2341,0.000106,7.2341,0.533978 +L 7.2341,0.533978,7.2341,1.067927 +L 7.2341,1.067927,7.2341,1.601788 +L 1.9279,0.533978,2.1416,0.723275 +L 2.1416,0.723275,2.352,0.904056 +L 2.352,0.904056,2.5653,1.067927 +L 0.4324,1.868774,0.2782,2.324979 +L 0.2782,2.324979,0.135,2.772735 +L 0.135,2.772735,0.0019,3.203482 +L 2.1416,2.402635,2.2715,2.849044 +L 2.2715,2.849044,2.4147,3.278368 +L 2.4147,3.278368,2.5653,3.699341 +L 1.7107,4.767052,1.413,5.182345 +L 1.413,5.182345,1.301,5.597561 +L 1.301,5.597561,1.2835,6.368723 +L 1.2835,6.368723,0.667,6.388523 +L 0.667,6.388523,0.3381,6.526946 +L 0.3381,6.526946,0.0019,6.902684 +L 0.0019,6.902684,0.4324,7.615969 +L 0.4324,7.615969,0.8562,8.312266 +L 0.8562,8.312266,1.2835,9.000126 +L 1.2835,9.000126,1.7107,8.49307 +L 1.7107,8.49307,2.1416,7.969059 +L 2.1416,7.969059,2.5653,7.436567 +L 6.8068,5.034027,6.5935,5.300914 +L 6.5935,5.300914,6.376,5.56791 +L 6.376,5.56791,6.1662,5.834873 +L 6.1662,5.834873,5.637,5.459138 +L 5.637,5.459138,4.926,5.320779 +L 4.926,5.320779,3.4199,5.300914 +L 4.2465,5.834873,4.5407,6.250078 +L 4.5407,6.250078,4.6528,6.665392 +L 4.6528,6.665392,4.6668,7.436567 +L 4.6668,7.436567,4.2465,7.436567 +L 4.2465,7.436567,3.8262,7.436567 +L 3.8262,7.436567,3.4199,7.436567 +L 6.376,6.368723,6.0503,6.942152 +L 6.0503,6.942152,5.7176,7.21901 +L 5.7176,7.21901,5.0976,7.436567 +L 5.0976,7.436567,5.0976,7.969059 +L 5.0976,7.969059,5.0976,8.49307 +L 5.0976,8.49307,5.0976,9.000126 + +[叔] 36 +L 0.4592,0.000106,0.8897,0.000106 +L 0.8897,0.000106,1.3135,0.000106 +L 1.3135,0.000106,1.7408,0.000106 +L 1.7408,0.000106,1.8213,2.967701 +L 1.8213,2.967701,1.5205,4.723272 +L 1.5205,4.723272,0.0351,5.300914 +L 3.8496,0.000106,4.4065,0.800964 +L 4.4065,0.800964,4.977,1.601788 +L 4.977,1.601788,5.5549,2.402635 +L 5.5549,2.402635,4.928,4.569405 +L 4.928,4.569405,4.7182,6.363153 +L 4.7182,6.363153,4.7038,8.504376 +L 4.7038,8.504376,5.4043,8.504376 +L 5.4043,8.504376,6.1052,8.504376 +L 6.1052,8.504376,6.8057,8.504376 +L 6.8057,8.504376,6.7773,6.528402 +L 6.7773,6.528402,6.5636,5.154019 +L 6.5636,5.154019,5.9822,3.203482 +L 7.2361,0.000106,6.8057,0.533978 +L 6.8057,0.533978,6.385,1.067927 +L 6.385,1.067927,5.9822,1.601788 +L 0.0351,2.402635,0.165,2.849044 +L 0.165,2.849044,0.3118,3.278368 +L 0.3118,3.278368,0.4592,3.699341 +L 3.4184,2.402635,3.2678,2.849044 +L 3.2678,2.849044,3.1242,3.278368 +L 3.1242,3.278368,2.9946,3.699341 +L 2.14,5.300914,1.8599,5.793873 +L 1.8599,5.793873,1.7583,6.752943 +L 1.7583,6.752943,1.7408,9.000126 +L 2.5673,5.300914,2.844,5.300914 +L 2.844,5.300914,3.1242,5.300914 +L 3.1242,5.300914,3.4184,5.300914 +L 2.14,7.436567,2.5673,7.436567 +L 2.5673,7.436567,2.9946,7.436567 +L 2.9946,7.436567,3.4184,7.436567 + +[淑] 36 +L 0.0616,0.000106,0.2756,1.529704 +L 0.2756,1.529704,0.6745,2.906933 +L 0.6745,2.906933,0.8882,4.23318 +L 2.1736,0.000106,2.4436,0.000106 +L 2.4436,0.000106,2.7273,0.000106 +L 2.7273,0.000106,3.0247,0.000106 +L 3.0247,0.000106,3.1196,2.391405 +L 3.1196,2.391405,2.9301,4.435086 +L 2.9301,4.435086,1.7431,5.300914 +L 4.6992,0.000106,5.1296,0.800964 +L 5.1296,0.800964,5.5569,1.601788 +L 5.5569,1.601788,5.9846,2.402635 +L 5.9846,2.402635,5.3538,4.569405 +L 5.3538,4.569405,5.1472,6.363153 +L 5.1472,6.363153,5.1296,8.504376 +L 5.1296,8.504376,5.6865,8.504376 +L 5.6865,8.504376,6.2578,8.504376 +L 6.2578,8.504376,6.8388,8.504376 +L 6.8388,8.504376,6.8213,5.460549 +L 6.8213,5.460549,6.7092,4.086285 +L 6.7092,4.086285,6.4084,3.203482 +L 7.2626,0.000106,6.9684,0.533978 +L 6.9684,0.533978,6.6882,1.067927 +L 6.6882,1.067927,6.4084,1.601788 +L 1.7431,1.868774,1.8724,2.478956 +L 1.8724,2.478956,2.0163,3.08916 +L 2.0163,3.08916,2.1736,3.699341 +L 4.3066,2.135672,4.2891,2.905466 +L 4.2891,2.905466,4.177,3.310821 +L 4.177,3.310821,3.8796,3.699341 +L 3.452,5.300914,3.1511,5.793873 +L 3.1511,5.793873,3.039,6.752943 +L 3.039,6.752943,3.0247,9.000126 +L 3.452,7.436567,3.7252,7.436567 +L 3.7252,7.436567,4.0127,7.436567 +L 4.0127,7.436567,4.3066,7.436567 + +[粛] 39 +L 0.0639,0.000106,0.7186,1.642789 +L 0.7186,1.642789,0.9112,3.048137 +L 0.9112,3.048137,0.9217,4.767052 +L 3.447,0.000106,3.3699,0.904056 +L 3.3699,0.904056,3.2999,1.791008 +L 3.2999,1.791008,3.2368,2.669598 +L 3.2368,2.669598,2.5959,2.135672 +L 2.5959,2.135672,1.9658,1.601788 +L 1.9658,1.601788,1.3455,1.067927 +L 6.0146,0.000106,6.0146,1.600355 +L 6.0146,1.600355,6.0146,3.192252 +L 6.0146,3.192252,6.0146,4.767052 +L 5.1565,1.067927,4.7359,1.438005 +L 4.7359,1.438005,4.3054,1.791008 +L 4.3054,1.791008,3.8781,2.135672 +L 1.7731,3.203482,2.3262,3.203482 +L 2.3262,3.203482,2.8796,3.203482 +L 2.8796,3.203482,3.447,3.203482 +L 3.447,3.203482,3.4365,4.699258 +L 3.4365,4.699258,3.3349,5.381459 +L 3.3349,5.381459,3.0547,5.834873 +L 3.0547,5.834873,2.4736,5.834873 +L 2.4736,5.834873,1.9062,5.834873 +L 1.9062,5.834873,1.3455,5.834873 +L 3.8781,3.203482,4.3054,3.203482 +L 4.3054,3.203482,4.7359,3.203482 +L 4.7359,3.203482,5.1565,3.203482 +L 3.8781,5.834873,2.6624,6.874379 +L 2.6624,6.874379,1.5066,7.007144 +L 1.5066,7.007144,0.0639,6.902684 +L 4.3054,5.834873,4.7359,5.938064 +L 4.7359,5.938064,5.1565,6.024104 +L 5.1565,6.024104,5.587,6.101836 +L 5.587,6.101836,4.3716,7.247336 +L 4.3716,7.247336,2.7468,7.816539 +L 2.7468,7.816539,1.3455,7.970515 +L 6.0146,6.902684,5.2546,7.573556 +L 5.2546,7.573556,4.2105,8.176612 +L 4.2105,8.176612,3.447,9.000126 + +[塾] 66 +L 0.094,0.000106,1.2249,0.000106 +L 1.2249,0.000106,2.353,0.000106 +L 2.353,0.000106,3.4843,0.000106 +L 3.4843,0.000106,3.0742,1.48323 +L 3.0742,1.48323,2.1079,1.720467 +L 2.1079,1.720467,0.9482,1.601788 +L 3.9043,0.000106,4.885,0.000106 +L 4.885,0.000106,5.8692,0.000106 +L 5.8692,0.000106,6.8674,0.000106 +L 3.9043,1.601788,3.442,3.128617 +L 3.442,3.128617,3.2773,3.647023 +L 3.2773,3.647023,1.7751,3.699341 +L 1.7751,3.699341,1.7751,3.356057 +L 1.7751,3.356057,1.7751,3.012817 +L 1.7751,3.012817,1.7751,2.669598 +L 1.7751,2.669598,1.4946,2.669598 +L 1.4946,2.669598,1.2249,2.669598 +L 1.2249,2.669598,0.9482,2.669598 +L 4.3354,1.601788,4.885,1.601788 +L 4.885,1.601788,5.4454,1.601788 +L 5.4454,1.601788,6.0166,1.601788 +L 6.4404,3.203482,5.9602,4.323555 +L 5.9602,4.323555,5.5788,4.867343 +L 5.5788,4.867343,4.976,5.300914 +L 4.976,5.300914,4.7624,4.767052 +L 4.7624,4.767052,4.5491,4.23318 +L 4.5491,4.23318,4.3354,3.699341 +L 6.8674,3.203482,6.8674,3.546787 +L 6.8674,3.546787,6.8674,3.889908 +L 6.8674,3.889908,6.8674,4.23318 +L 0.094,3.699341,0.5209,3.699341 +L 0.5209,3.699341,0.9482,3.699341 +L 0.9482,3.699341,1.3794,3.699341 +L 2.1989,4.23318,2.3352,4.500155 +L 2.3352,4.500155,2.4753,4.767052 +L 2.4753,4.767052,2.6294,5.034027 +L 2.6294,5.034027,1.9257,5.13713 +L 1.9257,5.13713,1.2249,5.223247 +L 1.2249,5.223247,0.5209,5.300914 +L 6.0166,5.300914,6.0166,6.024104 +L 6.0166,6.024104,6.0166,6.738823 +L 6.0166,6.738823,6.0166,7.436567 +L 6.0166,7.436567,5.134,7.334896 +L 5.134,7.334896,4.8118,6.877279 +L 4.8118,6.877279,4.7624,5.834873 +L 4.7624,5.834873,4.465,5.834873 +L 4.465,5.834873,4.1848,5.834873 +L 4.1848,5.834873,3.9043,5.834873 +L 0.5209,6.368723,0.5209,6.738823 +L 0.5209,6.738823,0.5209,7.091914 +L 0.5209,7.091914,0.5209,7.436567 +L 0.5209,7.436567,1.3545,7.436567 +L 1.3545,7.436567,2.2021,7.436567 +L 2.2021,7.436567,3.0532,7.436567 +L 3.0532,7.436567,3.0532,7.091914 +L 3.0532,7.091914,3.0532,6.738823 +L 3.0532,6.738823,3.0532,6.368723 +L 3.0532,6.368723,2.2021,6.368723 +L 2.2021,6.368723,1.3545,6.368723 +L 1.3545,6.368723,0.5209,6.368723 +L 4.1218,7.436567,4.5732,7.850425 +L 4.5732,7.850425,4.7417,8.255822 +L 4.7417,8.255822,4.7624,9.000126 +L 0.094,8.504376,1.2249,8.504376 +L 1.2249,8.504376,2.353,8.504376 +L 2.353,8.504376,3.4843,8.504376 + +[俊] 57 +L 0.9467,0.000106,0.8697,1.781223 +L 0.8697,1.781223,0.7961,3.545354 +L 0.7961,3.545354,0.7366,5.300914 +L 0.7366,5.300914,0.5229,5.13713 +L 0.5229,5.13713,0.3166,4.95636 +L 0.3166,4.95636,0.1271,4.767052 +L 2.2321,0.000106,3.3217,0.415311 +L 3.3217,0.415311,3.9763,0.830625 +L 3.9763,0.830625,4.7644,1.601788 +L 4.7644,1.601788,4.3371,2.135672 +L 4.3371,2.135672,3.9168,2.669598 +L 3.9168,2.669598,3.5105,3.203482 +L 3.5105,3.203482,3.0867,2.85895 +L 3.0867,2.85895,2.6594,2.505848 +L 2.6594,2.505848,2.2321,2.135672 +L 6.4736,0.000106,6.0428,0.370184 +L 6.0428,0.370184,5.6193,0.723275 +L 5.6193,0.723275,5.1882,1.067927 +L 5.1882,2.135672,5.4687,2.591866 +L 5.4687,2.591866,5.7486,3.039687 +L 5.7486,3.039687,6.0428,3.470456 +L 6.0428,3.470456,5.1917,3.546787 +L 5.1917,3.546787,4.3444,3.623009 +L 4.3444,3.623009,3.5105,3.699341 +L 2.4458,4.767052,2.7925,5.13713 +L 2.7925,5.13713,3.1462,5.490232 +L 3.1462,5.490232,3.5105,5.834873 +L 3.5105,5.834873,3.5105,6.368723 +L 3.5105,6.368723,3.5105,6.902684 +L 3.5105,6.902684,3.5105,7.436567 +L 3.5105,7.436567,3.0867,7.436567 +L 3.0867,7.436567,2.6594,7.436567 +L 2.6594,7.436567,2.2321,7.436567 +L 5.6193,5.300914,5.3143,5.736028 +L 5.3143,5.736028,5.2022,6.289633 +L 5.2022,6.289633,5.1882,7.436567 +L 5.1882,7.436567,4.7644,7.436567 +L 4.7644,7.436567,4.3444,7.436567 +L 4.3444,7.436567,3.9417,7.436567 +L 6.0428,5.300914,6.4736,5.300914 +L 6.4736,5.300914,6.8977,5.300914 +L 6.8977,5.300914,7.3247,5.300914 +L 7.3247,5.300914,7.3247,5.671123 +L 7.3247,5.671123,7.3247,6.024104 +L 7.3247,6.024104,7.3247,6.368723 +L 0.9467,5.834873,1.0588,7.138562 +L 1.0588,7.138562,1.2654,8.077766 +L 1.2654,8.077766,1.3775,9.000126 +L 6.4736,7.703529,6.3198,7.970515 +L 6.3198,7.970515,6.1762,8.237402 +L 6.1762,8.237402,6.0428,8.504376 +L 6.0428,8.504376,5.8957,8.340592 +L 5.8957,8.340592,5.7486,8.159735 +L 5.7486,8.159735,5.6193,7.970515 +L 3.0867,7.970515,3.3638,8.313711 +L 3.3638,8.313711,3.6436,8.65693 +L 3.6436,8.65693,3.9417,9.000126 + +[瞬] 66 +L 2.2621,0.000106,2.6653,0.637071 +L 2.6653,0.637071,3.0852,1.257158 +L 3.0852,1.257158,3.5164,1.868774 +L 3.5164,1.868774,3.2183,2.324979 +L 3.2183,2.324979,2.9346,2.772735 +L 2.9346,2.772735,2.6579,3.203482 +L 2.6579,3.203482,2.5147,3.039687 +L 2.5147,3.039687,2.3847,2.85895 +L 2.3847,2.85895,2.2621,2.669598 +L 6.5004,0.000106,6.4199,1.435148 +L 6.4199,1.435148,6.0556,2.022739 +L 6.0556,2.022739,5.2217,2.135672 +L 5.2217,2.135672,5.2217,2.849044 +L 5.2217,2.849044,5.2217,3.545354 +L 5.2217,3.545354,5.2217,4.23318 +L 5.2217,4.23318,4.924,4.23318 +L 4.924,4.23318,4.6438,4.23318 +L 4.6438,4.23318,4.3675,4.23318 +L 4.3675,4.23318,4.2165,3.545354 +L 4.2165,3.545354,4.0694,2.849044 +L 4.0694,2.849044,3.9363,2.135672 +L 0.126,1.067927,0.126,3.546787 +L 0.126,3.546787,0.126,6.025538 +L 0.126,6.025538,0.126,8.504376 +L 0.126,8.504376,0.5529,8.504376 +L 0.5529,8.504376,0.9802,8.504376 +L 0.9802,8.504376,1.4114,8.504376 +L 1.4114,8.504376,1.4114,6.025538 +L 1.4114,6.025538,1.4114,3.546787 +L 1.4114,3.546787,1.4114,1.067927 +L 1.4114,1.067927,0.9802,1.067927 +L 0.9802,1.067927,0.5529,1.067927 +L 0.5529,1.067927,0.126,1.067927 +L 6.8994,2.135672,6.623,2.569286 +L 6.623,2.569286,6.5176,3.113052 +L 6.5176,3.113052,6.5004,4.23318 +L 6.5004,4.23318,6.2062,4.23318 +L 6.2062,4.23318,5.926,4.23318 +L 5.926,4.23318,5.6455,4.23318 +L 2.6579,3.699341,2.9595,4.114535 +L 2.9595,4.114535,3.0677,4.529838 +L 3.0677,4.529838,3.0852,5.300914 +L 2.2621,5.300914,2.2621,5.671123 +L 2.2621,5.671123,2.2621,6.024104 +L 2.2621,6.024104,2.2621,6.368723 +L 2.2621,6.368723,2.812,6.471827 +L 2.812,6.471827,3.3654,6.558064 +L 3.3654,6.558064,3.9363,6.635719 +L 3.9363,6.635719,3.6106,7.39701 +L 3.6106,7.39701,3.2778,7.743096 +L 3.2778,7.743096,2.6579,7.970515 +L 7.3267,5.300914,7.3267,5.671123 +L 7.3267,5.671123,7.3267,6.024104 +L 7.3267,6.024104,7.3267,6.368723 +L 7.3267,6.368723,6.3288,6.368723 +L 6.3288,6.368723,5.3443,6.368723 +L 5.3443,6.368723,4.3675,6.368723 +L 5.2217,6.902684,4.889,7.4761 +L 4.889,7.4761,4.5566,7.752958 +L 4.5566,7.752958,3.9363,7.970515 +L 6.0766,6.902684,6.346,7.358889 +L 6.346,7.358889,6.6262,7.806731 +L 6.6262,7.806731,6.8994,8.237402 +L 6.8994,8.237402,6.2903,8.405497 +L 6.2903,8.405497,5.8525,8.336281 +L 5.8525,8.336281,5.2217,7.970515 + +[准] 42 +L 0.1592,0.000106,0.3767,1.55514 +L 0.3767,1.55514,0.7896,2.957719 +L 0.7896,2.957719,1.0103,4.23318 +L 2.6848,0.000106,2.6704,4.50149 +L 2.6704,4.50149,2.5657,6.291078 +L 2.5657,6.291078,2.2641,6.902684 +L 2.2641,6.902684,2.1104,6.738823 +L 2.1104,6.738823,1.9668,6.558064 +L 1.9668,6.558064,1.8337,6.368723 +L 3.1152,0.000106,3.676,0.000106 +L 3.676,0.000106,4.2434,0.000106 +L 4.2434,0.000106,4.8244,0.000106 +L 4.8244,0.000106,4.7474,1.895556 +L 4.7474,1.895556,4.292,2.579257 +L 4.292,2.579257,3.1152,2.669598 +L 5.2202,0.000106,5.9245,0.000106 +L 5.9245,0.000106,6.6352,0.000106 +L 6.6352,0.000106,7.3567,0.000106 +L 5.2202,2.669598,4.5866,3.959201 +L 4.5866,3.959201,4.3201,4.596155 +L 4.3201,4.596155,3.1152,4.767052 +L 5.6475,2.669598,6.0751,2.669598 +L 6.0751,2.669598,6.5056,2.669598 +L 6.5056,2.669598,6.9294,2.669598 +L 5.2202,4.767052,4.2153,5.960567 +L 4.2153,5.960567,3.2417,7.018472 +L 3.2417,7.018472,2.6848,7.703529 +L 2.6848,7.703529,2.8179,8.14983 +L 2.8179,8.14983,2.9646,8.579153 +L 2.9646,8.579153,3.1152,9.000126 +L 5.6475,4.767052,6.0751,4.767052 +L 6.0751,4.767052,6.5056,4.767052 +L 6.5056,4.767052,6.9294,4.767052 +L 5.2202,6.902684,4.9575,7.514233 +L 4.9575,7.514233,4.9575,8.057967 +L 4.9575,8.057967,5.2202,9.000126 +L 5.6475,6.902684,6.2082,6.902684 +L 6.2082,6.902684,6.7756,6.902684 +L 6.7756,6.902684,7.3567,6.902684 +L 1.0103,7.436567,0.7129,7.806731 +L 0.7129,7.806731,0.4323,8.159735 +L 0.4323,8.159735,0.1592,8.504376 + +[循] 60 +L 1.0123,0.000106,0.9282,1.600355 +L 0.9282,1.600355,0.862,3.192252 +L 0.862,3.192252,0.7986,4.767052 +L 0.7986,4.767052,0.585,4.603192 +L 0.585,4.603192,0.3682,4.422499 +L 0.3682,4.422499,0.1577,4.23318 +L 3.9683,0.000106,3.9683,1.600355 +L 3.9683,1.600355,3.9683,3.192252 +L 3.9683,3.192252,3.9683,4.767052 +L 3.9683,4.767052,4.3991,4.767052 +L 4.3991,4.767052,4.8229,4.767052 +L 4.8229,4.767052,5.2537,4.767052 +L 5.2537,4.767052,4.8439,6.250078 +L 4.8439,6.250078,3.8773,6.487402 +L 3.8773,6.487402,2.7214,6.368723 +L 2.7214,6.368723,2.7043,2.974684 +L 2.7043,2.974684,2.5957,1.461909 +L 2.5957,1.461909,2.291,0.533978 +L 4.3991,0.000106,5.0996,0.000106 +L 5.0996,0.000106,5.8071,0.000106 +L 5.8071,0.000106,6.5325,0.000106 +L 6.5325,0.000106,6.5325,0.533978 +L 6.5325,0.533978,6.5325,1.067927 +L 6.5325,1.067927,6.5325,1.601788 +L 6.5325,1.601788,5.8071,1.601788 +L 5.8071,1.601788,5.0996,1.601788 +L 5.0996,1.601788,4.3991,1.601788 +L 6.5325,2.135672,6.5325,2.505848 +L 6.5325,2.505848,6.5325,2.85895 +L 6.5325,2.85895,6.5325,3.203482 +L 6.5325,3.203482,5.8071,3.203482 +L 5.8071,3.203482,5.0996,3.203482 +L 5.0996,3.203482,4.3991,3.203482 +L 6.5325,3.699341,6.5325,4.069408 +L 6.5325,4.069408,6.5325,4.422499 +L 6.5325,4.422499,6.5325,4.767052 +L 6.5325,4.767052,6.2379,4.767052 +L 6.2379,4.767052,5.9546,4.767052 +L 5.9546,4.767052,5.6775,4.767052 +L 1.0123,5.56791,1.1418,6.024104 +L 1.1418,6.024104,1.2854,6.471827 +L 1.2854,6.471827,1.436,6.902684 +L 5.6775,6.368723,5.3798,6.784048 +L 5.3798,6.784048,5.2712,7.199319 +L 5.2712,7.199319,5.2537,7.970515 +L 5.2537,7.970515,4.3991,7.970515 +L 4.3991,7.970515,3.5515,7.970515 +L 3.5515,7.970515,2.7214,7.970515 +L 2.7214,7.970515,2.7214,7.625776 +L 2.7214,7.625776,2.7214,7.272782 +L 2.7214,7.272782,2.7214,6.902684 +L 6.1052,6.368723,6.5325,6.368723 +L 6.5325,6.368723,6.9629,6.368723 +L 6.9629,6.368723,7.3867,6.368723 +L 0.1577,6.902684,0.585,7.615969 +L 0.585,7.615969,1.0123,8.312266 +L 1.0123,8.312266,1.436,9.000126 +L 5.6775,7.970515,6.0103,8.346153 +L 6.0103,8.346153,6.3433,8.4845 +L 6.3433,8.4845,6.9629,8.504376 + +[旬] 30 +L 5.2802,0.000106,5.5573,0.000106 +L 5.5573,0.000106,5.841,0.000106 +L 5.841,0.000106,6.1348,0.000106 +L 6.1348,0.000106,6.9054,2.419534 +L 6.9054,2.419534,7.021,4.839137 +L 7.021,4.839137,6.9614,7.436567 +L 6.9614,7.436567,5.1261,7.436567 +L 5.1261,7.436567,3.3014,7.436567 +L 3.3014,7.436567,1.4699,7.436567 +L 1.4699,7.436567,1.0426,6.902684 +L 1.0426,6.902684,0.6153,6.368723 +L 0.6153,6.368723,0.1915,5.834873 +L 1.8972,1.601788,1.8972,3.012817 +L 1.8972,3.012817,1.8972,4.423867 +L 1.8972,4.423867,1.8972,5.834873 +L 1.8972,5.834873,2.7305,5.834873 +L 2.7305,5.834873,3.5749,5.834873 +L 3.5749,5.834873,4.426,5.834873 +L 4.426,5.834873,4.426,4.423867 +L 4.426,4.423867,4.426,3.012817 +L 4.426,3.012817,4.426,1.601788 +L 4.426,1.601788,3.5749,1.601788 +L 3.5749,1.601788,2.7305,1.601788 +L 2.7305,1.601788,1.8972,1.601788 +L 2.2965,3.699341,2.8495,3.699341 +L 2.8495,3.699341,3.4239,3.699341 +L 3.4239,3.699341,4.0022,3.699341 +L 1.4699,7.970515,1.5992,8.313711 +L 1.5992,8.313711,1.7428,8.65693 +L 1.7428,8.65693,1.8972,9.000126 + +[殉] 57 +L 0.2177,0.000106,0.7676,0.904056 +L 0.7676,0.904056,1.3248,1.791008 +L 1.3248,1.791008,1.8957,2.669598 +L 1.8957,2.669598,1.7101,3.433702 +L 1.7101,3.433702,1.3844,3.977534 +L 1.3844,3.977534,0.6485,4.767052 +L 0.6485,4.767052,0.4909,4.422499 +L 0.4909,4.422499,0.3473,4.069408 +L 0.3473,4.069408,0.2177,3.699341 +L 5.2857,0.000106,5.5558,0.000106 +L 5.5558,0.000106,5.8395,0.000106 +L 5.8395,0.000106,6.1368,0.000106 +L 6.1368,0.000106,6.9284,2.419534 +L 6.9284,2.419534,7.0548,4.839137 +L 7.0548,4.839137,6.9918,7.436567 +L 6.9918,7.436567,5.864,7.436567 +L 5.864,7.436567,4.7324,7.436567 +L 4.7324,7.436567,3.6046,7.436567 +L 3.6046,7.436567,3.5871,6.665392 +L 3.5871,6.665392,3.4785,6.250078 +L 3.4785,6.250078,3.1738,5.834873 +L 4.0319,2.135672,4.0319,3.202059 +L 4.0319,3.202059,4.0319,4.260073 +L 4.0319,4.260073,4.0319,5.300914 +L 4.0319,5.300914,4.5821,5.300914 +L 4.5821,5.300914,5.1355,5.300914 +L 5.1355,5.300914,5.7095,5.300914 +L 5.7095,5.300914,5.7095,4.260073 +L 5.7095,4.260073,5.7095,3.202059 +L 5.7095,3.202059,5.7095,2.135672 +L 5.7095,2.135672,5.1355,2.135672 +L 5.1355,2.135672,4.5821,2.135672 +L 4.5821,2.135672,4.0319,2.135672 +L 4.4592,3.699341,4.7324,3.699341 +L 4.7324,3.699341,5.0094,3.699341 +L 5.0094,3.699341,5.2857,3.699341 +L 2.323,4.23318,2.323,4.95636 +L 2.323,4.95636,2.323,5.671123 +L 2.323,5.671123,2.323,6.368723 +L 2.323,6.368723,1.7521,6.368723 +L 1.7521,6.368723,1.1949,6.368723 +L 1.1949,6.368723,0.6485,6.368723 +L 0.6485,6.368723,0.6485,6.024104 +L 0.6485,6.024104,0.6485,5.671123 +L 0.6485,5.671123,0.6485,5.300914 +L 1.0446,6.902684,1.0446,7.436567 +L 1.0446,7.436567,1.0446,7.970515 +L 1.0446,7.970515,1.0446,8.504376 +L 1.0446,8.504376,0.7644,8.504376 +L 0.7644,8.504376,0.4909,8.504376 +L 0.4909,8.504376,0.2177,8.504376 +L 4.0319,7.970515,4.0319,8.313711 +L 4.0319,8.313711,4.0319,8.65693 +L 4.0319,8.65693,4.0319,9.000126 +L 1.4649,8.504376,1.8957,8.504376 +L 1.8957,8.504376,2.323,8.504376 +L 2.323,8.504376,2.7535,8.504376 + +[潤] 54 +L 0.2165,0.000106,0.4372,1.55514 +L 0.4372,1.55514,0.8501,2.957719 +L 0.8501,2.957719,1.0708,4.23318 +L 1.9219,0.000106,1.9219,2.849044 +L 1.9219,2.849044,1.9219,5.680864 +L 1.9219,5.680864,1.9219,8.504376 +L 1.9219,8.504376,2.4753,8.504376 +L 2.4753,8.504376,3.0357,8.504376 +L 3.0357,8.504376,3.6031,8.504376 +L 3.6031,8.504376,3.6031,7.625776 +L 3.6031,7.625776,3.6031,6.738823 +L 3.6031,6.738823,3.6031,5.834873 +L 3.6031,5.834873,3.1758,5.834873 +L 3.1758,5.834873,2.7628,5.834873 +L 2.7628,5.834873,2.3527,5.834873 +L 6.1672,0.000106,6.4436,0.000106 +L 6.4436,0.000106,6.7276,0.000106 +L 6.7276,0.000106,7.0215,0.000106 +L 7.0215,0.000106,7.0215,1.945007 +L 7.0215,1.945007,7.0215,3.889908 +L 7.0215,3.889908,7.0215,5.834873 +L 7.0215,5.834873,6.4436,5.834873 +L 6.4436,5.834873,5.8727,5.834873 +L 5.8727,5.834873,5.3126,5.834873 +L 5.3126,5.834873,5.3126,6.738823 +L 5.3126,6.738823,5.3126,7.625776 +L 5.3126,7.625776,5.3126,8.504376 +L 5.3126,8.504376,5.8727,8.504376 +L 5.8727,8.504376,6.4436,8.504376 +L 6.4436,8.504376,7.0215,8.504376 +L 7.0215,8.504376,7.0215,7.806731 +L 7.0215,7.806731,7.0215,7.091914 +L 7.0215,7.091914,7.0215,6.368723 +L 2.7803,1.601788,3.3337,1.601788 +L 3.3337,1.601788,3.8868,1.601788 +L 3.8868,1.601788,4.4577,1.601788 +L 4.4577,1.601788,4.4265,2.372962 +L 4.4265,2.372962,4.2058,2.788277 +L 4.2058,2.788277,3.6031,3.203482 +L 4.885,1.601788,5.3126,1.601788 +L 5.3126,1.601788,5.7434,1.601788 +L 5.7434,1.601788,6.1672,1.601788 +L 4.885,3.203482,4.5421,3.750028 +L 4.5421,3.750028,4.1074,4.017112 +L 4.1074,4.017112,3.2111,4.23318 +L 4.885,4.23318,5.1617,4.23318 +L 5.1617,4.23318,5.4454,4.23318 +L 5.4454,4.23318,5.7434,4.23318 +L 2.3527,7.436567,2.6294,7.436567 +L 2.6294,7.436567,2.9131,7.436567 +L 2.9131,7.436567,3.2111,7.436567 +L 5.7434,7.436567,6.0127,7.436567 +L 6.0127,7.436567,6.2964,7.436567 +L 6.2964,7.436567,6.5945,7.436567 + +[盾] 48 +L 2.355,0.000106,2.355,1.600355 +L 2.355,1.600355,2.355,3.192252 +L 2.355,3.192252,2.355,4.767052 +L 2.355,4.767052,2.9116,4.767052 +L 2.9116,4.767052,3.486,4.767052 +L 3.486,4.767052,4.0607,4.767052 +L 4.0607,4.767052,3.5665,6.317872 +L 3.5665,6.317872,2.4142,6.521342 +L 2.4142,6.521342,1.1047,6.368723 +L 1.1047,6.368723,1.0693,4.042548 +L 1.0693,4.042548,0.8486,2.529752 +L 0.8486,2.529752,0.2501,0.533978 +L 2.7823,0.000106,3.9063,0.000106 +L 3.9063,0.000106,5.0376,0.000106 +L 5.0376,0.000106,6.1657,0.000106 +L 6.1657,0.000106,6.1657,0.533978 +L 6.1657,0.533978,6.1657,1.067927 +L 6.1657,1.067927,6.1657,1.601788 +L 6.1657,1.601788,5.0376,1.601788 +L 5.0376,1.601788,3.9063,1.601788 +L 3.9063,1.601788,2.7823,1.601788 +L 6.1657,2.135672,6.1657,2.505848 +L 6.1657,2.505848,6.1657,2.85895 +L 6.1657,2.85895,6.1657,3.203482 +L 6.1657,3.203482,5.0376,3.203482 +L 5.0376,3.203482,3.9063,3.203482 +L 3.9063,3.203482,2.7823,3.203482 +L 6.1657,3.699341,6.1657,4.069408 +L 6.1657,4.069408,6.1657,4.422499 +L 6.1657,4.422499,6.1657,4.767052 +L 6.1657,4.767052,5.5983,4.767052 +L 5.5983,4.767052,5.0376,4.767052 +L 5.0376,4.767052,4.4912,4.767052 +L 4.4912,6.368723,4.19,6.784048 +L 4.19,6.784048,4.0782,7.199319 +L 4.0782,7.199319,4.0607,7.970515 +L 4.0607,7.970515,3.066,7.970515 +L 3.066,7.970515,2.0815,7.970515 +L 2.0815,7.970515,1.1047,7.970515 +L 1.1047,7.970515,1.1047,7.625776 +L 1.1047,7.625776,1.1047,7.272782 +L 1.1047,7.272782,1.1047,6.902684 +L 4.915,6.368723,5.7486,6.368723 +L 5.7486,6.368723,6.5962,6.368723 +L 6.5962,6.368723,7.4473,6.368723 +L 4.4912,7.970515,4.8523,8.346153 +L 4.8523,8.346153,5.3987,8.4845 +L 5.3987,8.4845,6.5962,8.504376 + +[巡] 36 +L 0.4619,0.000106,0.8051,0.370184 +L 0.8051,0.370184,1.1697,0.723275 +L 1.1697,0.723275,1.534,1.067927 +L 1.534,1.067927,1.534,2.315106 +L 1.534,2.315106,1.534,3.545354 +L 1.534,3.545354,1.534,4.767052 +L 1.534,4.767052,1.1032,4.767052 +L 1.1032,4.767052,0.6829,4.767052 +L 0.6829,4.767052,0.2797,4.767052 +L 2.812,0.000106,2.5143,0.189348 +L 2.5143,0.189348,2.2345,0.370184 +L 2.2345,0.370184,1.9543,0.533978 +L 3.2393,0.000106,4.6441,0.000106 +L 4.6441,0.000106,6.0553,0.000106 +L 6.0553,0.000106,7.4811,0.000106 +L 3.6631,1.601788,3.2393,2.935172 +L 3.2393,2.935172,2.812,4.260073 +L 2.812,4.260073,2.3847,5.56791 +L 2.3847,5.56791,3.2848,7.296687 +L 3.2848,7.296687,3.6179,8.186616 +L 3.6179,8.186616,3.6631,9.000126 +L 5.3443,1.601788,4.917,2.935172 +L 4.917,2.935172,4.4967,4.260073 +L 4.4967,4.260073,4.0939,5.56791 +L 4.0939,5.56791,4.9734,7.296687 +L 4.9734,7.296687,5.2991,8.186616 +L 5.2991,8.186616,5.3443,9.000126 +L 7.0538,1.601788,6.6265,2.935172 +L 6.6265,2.935172,6.1989,4.260073 +L 6.1989,4.260073,5.7681,5.56791 +L 5.7681,5.56791,6.6756,7.296687 +L 6.6756,7.296687,7.0044,8.186616 +L 7.0044,8.186616,7.0538,9.000126 +L 1.534,7.436567,1.2359,7.806731 +L 1.2359,7.806731,0.9522,8.159735 +L 0.9522,8.159735,0.6759,8.504376 + +[遵] 72 +L 0.4919,0.000106,0.8351,0.370184 +L 0.8351,0.370184,1.1959,0.723275 +L 1.1959,0.723275,1.5601,1.067927 +L 1.5601,1.067927,1.5601,2.315106 +L 1.5601,2.315106,1.5601,3.545354 +L 1.5601,3.545354,1.5601,4.767052 +L 1.5601,4.767052,1.1328,4.767052 +L 1.1328,4.767052,0.7024,4.767052 +L 0.7024,4.767052,0.2817,4.767052 +L 2.8105,0.000106,2.5377,0.189348 +L 2.5377,0.189348,2.261,0.370184 +L 2.261,0.370184,1.9913,0.533978 +L 3.2378,0.000106,4.6461,0.000106 +L 4.6461,0.000106,6.0538,0.000106 +L 6.0538,0.000106,7.4796,0.000106 +L 4.9473,1.067927,5.2237,1.067927 +L 5.2237,1.067927,5.5074,1.067927 +L 5.5074,1.067927,5.8019,1.067927 +L 5.8019,1.067927,5.7876,1.839123 +L 5.7876,1.839123,5.6759,2.254405 +L 5.6759,2.254405,5.3746,2.669598 +L 5.3746,2.669598,4.6528,2.591866 +L 4.6528,2.591866,3.9421,2.505848 +L 3.9421,2.505848,3.2378,2.402635 +L 3.2378,2.402635,3.3677,2.135672 +L 3.3677,2.135672,3.5148,1.868774 +L 3.5148,1.868774,3.6651,1.601788 +L 6.2292,2.669598,6.0748,2.936584 +L 6.0748,2.936584,5.9312,3.203482 +L 5.9312,3.203482,5.8019,3.470456 +L 5.8019,3.470456,4.7932,3.546787 +L 4.7932,3.546787,3.7985,3.623009 +L 3.7985,3.623009,2.8105,3.699341 +L 2.8105,3.699341,2.8105,4.767052 +L 2.8105,4.767052,2.8105,5.834873 +L 2.8105,5.834873,2.8105,6.902684 +L 2.8105,6.902684,3.4269,6.922483 +L 3.4269,6.922483,3.76,7.060786 +L 3.76,7.060786,4.0924,7.436567 +L 4.0924,7.436567,3.7422,7.812292 +L 3.7422,7.812292,3.3117,7.950661 +L 3.3117,7.950661,2.4112,7.970515 +L 6.439,3.699341,6.5021,4.069408 +L 6.5021,4.069408,6.5725,4.422499 +L 6.5725,4.422499,6.6562,4.767052 +L 6.6562,4.767052,5.5074,4.767052 +L 5.5074,4.767052,4.3691,4.767052 +L 4.3691,4.767052,3.2378,4.767052 +L 6.6562,5.56791,5.7315,5.973385 +L 5.7315,5.973385,5.231,6.319306 +L 5.231,6.319306,4.7333,6.902684 +L 4.7333,6.902684,4.2258,6.558064 +L 4.2258,6.558064,3.7281,6.20494 +L 3.7281,6.20494,3.2378,5.834873 +L 6.6562,6.635719,5.651,7.43511 +L 5.651,7.43511,4.6528,8.226172 +L 4.6528,8.226172,3.6651,9.000126 +L 1.5601,7.436567,1.2628,7.806731 +L 1.2628,7.806731,0.9826,8.159735 +L 0.9826,8.159735,0.7024,8.504376 +L 5.8019,7.970515,5.5182,8.364497 +L 5.5182,8.364497,5.5182,8.631472 +L 5.5182,8.631472,5.8019,9.000126 +L 6.2292,7.970515,6.5021,7.970515 +L 6.5021,7.970515,6.7788,7.970515 +L 6.7788,7.970515,7.0485,7.970515 +L 5.3638,-0.015075,7.4971,-0.015075 +L 1.5426,1.052593,0.4919,0.000106 +L 0.2926,4.751839,1.5426,4.751839 +L 1.5426,1.052593,1.5426,4.751839 +L 0.7199,8.489272,1.5426,7.421363 +A 5.3638,7.347943,7.362973,238.75988,270 + +[庶] 42 +L 0.3083,0.267004,0.9772,2.916718 +L 0.9772,2.916718,1.1667,5.295364 +L 1.1667,5.295364,1.1593,7.970515 +L 1.1593,7.970515,2.1404,7.970515 +L 2.1404,7.970515,3.1246,7.970515 +L 3.1246,7.970515,4.1228,7.970515 +L 4.1228,7.970515,4.1228,8.313711 +L 4.1228,8.313711,4.1228,8.65693 +L 4.1228,8.65693,4.1228,9.000126 +L 1.5621,0.000106,1.8357,0.533978 +L 1.8357,0.533978,2.1159,1.067927 +L 2.1159,1.067927,2.4171,1.601788 +L 4.1228,0.267004,3.9718,0.723275 +L 3.9718,0.723275,3.8247,1.171031 +L 3.8247,1.171031,3.6955,1.601788 +L 5.8004,0.267004,5.6495,0.723275 +L 5.6495,0.723275,5.5059,1.171031 +L 5.5059,1.171031,5.3766,1.601788 +L 7.5058,0.267004,7.2154,0.723275 +L 7.2154,0.723275,6.9317,1.171031 +L 6.9317,1.171031,6.655,1.601788 +L 3.2717,3.203482,3.1838,5.089114 +L 3.1838,5.089114,2.7253,5.754316 +L 2.7253,5.754316,1.5621,5.834873 +L 3.6955,3.203482,4.3956,3.203482 +L 4.3956,3.203482,5.0965,3.203482 +L 5.0965,3.203482,5.8004,3.203482 +L 5.8004,3.203482,5.6568,5.258567 +L 5.6568,5.258567,5.0401,5.839087 +L 5.0401,5.839087,3.6955,5.834873 +L 3.6955,5.834873,3.5445,6.20494 +L 3.5445,6.20494,3.4009,6.558064 +L 3.4009,6.558064,3.2717,6.902684 +L 6.2277,5.834873,6.0768,6.20494 +L 6.0768,6.20494,5.9297,6.558064 +L 5.9297,6.558064,5.8004,6.902684 +L 6.655,5.834873,6.9317,5.834873 +L 6.9317,5.834873,7.2154,5.834873 +L 7.2154,5.834873,7.5058,5.834873 +L 4.5501,7.970515,5.5269,7.970515 +L 5.5269,7.970515,6.5114,7.970515 +L 6.5114,7.970515,7.5058,7.970515 + +[緒] 69 +L 1.5925,0.000106,1.5925,1.600355 +L 1.5925,1.600355,1.5925,3.192252 +L 1.5925,3.192252,1.5925,4.767052 +L 1.5925,4.767052,1.1652,4.767052 +L 1.1652,4.767052,0.734,4.767052 +L 0.734,4.767052,0.3141,4.767052 +L 4.5486,0.000106,4.5486,1.067927 +L 4.5486,1.067927,4.5486,2.135672 +L 4.5486,2.135672,4.5486,3.203482 +L 4.5486,3.203482,4.1248,3.203482 +L 4.1248,3.203482,3.7041,3.203482 +L 3.7041,3.203482,3.2978,3.203482 +L 4.979,0.000106,5.6834,0.000106 +L 5.6834,0.000106,6.394,0.000106 +L 6.394,0.000106,7.1124,0.000106 +L 7.1124,0.000106,7.1124,0.723275 +L 7.1124,0.723275,7.1124,1.438005 +L 7.1124,1.438005,7.1124,2.135672 +L 7.1124,2.135672,6.394,2.135672 +L 6.394,2.135672,5.6834,2.135672 +L 5.6834,2.135672,4.979,2.135672 +L 0.3141,1.334814,0.4402,1.971877 +L 0.4402,1.971877,0.5834,2.591866 +L 0.5834,2.591866,0.734,3.203482 +L 2.874,1.868774,2.7238,2.324979 +L 2.7238,2.324979,2.5728,2.772735 +L 2.5728,2.772735,2.4436,3.203482 +L 7.1124,2.669598,7.1124,3.012817 +L 7.1124,3.012817,7.1124,3.356057 +L 7.1124,3.356057,7.1124,3.699341 +L 7.1124,3.699341,5.5958,3.719009 +L 5.5958,3.719009,4.9303,3.857455 +L 4.9303,3.857455,4.5486,4.23318 +L 4.5486,4.23318,4.8253,4.689396 +L 4.8253,4.689396,5.1051,5.13713 +L 5.1051,5.13713,5.4063,5.56791 +L 5.4063,5.56791,4.7023,5.671123 +L 4.7023,5.671123,4.0022,5.757206 +L 4.0022,5.757206,3.2978,5.834873 +L 2.874,4.500155,2.7238,4.767052 +L 2.7238,4.767052,2.5728,5.034027 +L 2.5728,5.034027,2.4436,5.300914 +L 2.4436,5.300914,2.2926,5.13713 +L 2.2926,5.13713,2.149,4.95636 +L 2.149,4.95636,2.0198,4.767052 +L 1.1652,5.300914,1.2944,5.56791 +L 1.2944,5.56791,1.4415,5.834873 +L 1.4415,5.834873,1.5925,6.101836 +L 1.5925,6.101836,1.2944,6.471827 +L 1.2944,6.471827,1.0142,6.825028 +L 1.0142,6.825028,0.734,7.16968 +L 0.734,7.16968,1.0142,7.779762 +L 1.0142,7.779762,1.2944,8.389934 +L 1.2944,8.389934,1.5925,9.000126 +L 5.8336,6.101836,6.1072,6.558064 +L 6.1072,6.558064,6.394,7.005786 +L 6.394,7.005786,6.6847,7.436567 +L 6.6847,7.436567,5.7989,8.015631 +L 5.7989,8.015631,5.1997,7.518458 +L 5.1997,7.518458,4.979,6.368723 +L 6.2574,5.834873,6.6847,5.834873 +L 6.6847,5.834873,7.1124,5.834873 +L 7.1124,5.834873,7.5432,5.834873 +L 2.0198,7.16968,2.149,7.436567 +L 2.149,7.436567,2.2926,7.703529 +L 2.2926,7.703529,2.4436,7.970515 +L 3.7286,7.970515,4.3209,8.008626 +L 4.3209,8.008626,4.6466,8.275512 +L 4.6466,8.275512,4.979,9.000126 + +[叙] 42 +L 1.1914,0.000106,1.4719,0.000106 +L 1.4719,0.000106,1.7521,0.000106 +L 1.7521,0.000106,2.0495,0.000106 +L 2.0495,0.000106,2.102,2.829201 +L 2.102,2.829201,1.7731,4.327736 +L 1.7731,4.327736,0.3403,4.767052 +L 4.1544,0.000106,4.7117,0.723275 +L 4.7117,0.723275,5.2822,1.438005 +L 5.2822,1.438005,5.864,2.135672 +L 5.864,2.135672,5.0861,4.106096 +L 5.0861,4.106096,4.9498,5.872985 +L 4.9498,5.872985,5.0094,7.970515 +L 5.0094,7.970515,5.5593,7.970515 +L 5.5593,7.970515,6.1158,7.970515 +L 6.1158,7.970515,6.6867,7.970515 +L 6.6867,7.970515,6.5851,5.163924 +L 6.5851,5.163924,6.3925,3.671004 +L 6.3925,3.671004,6.2913,2.669598 +L 7.5382,0.000106,7.1179,0.533978 +L 7.1179,0.533978,6.6972,1.067927 +L 6.6972,1.067927,6.2913,1.601788 +L 0.3403,1.334814,0.4737,1.971877 +L 0.4737,1.971877,0.6173,2.591866 +L 0.6173,2.591866,0.7711,3.203482 +L 3.7271,1.868774,3.5734,2.324979 +L 3.5734,2.324979,3.4333,2.772735 +L 3.4333,2.772735,3.2963,3.203482 +L 2.4452,4.767052,2.1686,5.182345 +L 2.1686,5.182345,2.0635,5.597561 +L 2.0635,5.597561,2.0495,6.368723 +L 2.0495,6.368723,1.7521,6.368723 +L 1.7521,6.368723,1.4719,6.368723 +L 1.4719,6.368723,1.1914,6.368723 +L 2.8725,4.767052,3.1496,4.767052 +L 3.1496,4.767052,3.4333,4.767052 +L 3.4333,4.767052,3.7271,4.767052 +L 0.3403,6.902684,0.8271,7.615969 +L 0.8271,7.615969,1.3248,8.312266 +L 1.3248,8.312266,1.8362,9.000126 +L 1.8362,9.000126,2.323,8.49307 +L 2.323,8.49307,2.8095,7.969059 +L 2.8095,7.969059,3.2963,7.436567 + +[徐] 45 +L 1.1934,0.000106,1.1128,1.600355 +L 1.1128,1.600355,1.0466,3.192252 +L 1.0466,3.192252,0.9801,4.767052 +L 0.9801,4.767052,0.7696,4.603192 +L 0.7696,4.603192,0.5664,4.422499 +L 0.5664,4.422499,0.3703,4.23318 +L 4.1848,0.000106,4.4615,0.000106 +L 4.4615,0.000106,4.7343,0.000106 +L 4.7343,0.000106,5.0079,0.000106 +L 5.0079,0.000106,4.9273,1.171031 +L 4.9273,1.171031,4.8569,2.324979 +L 4.8569,2.324979,4.7939,3.470456 +L 4.7939,3.470456,4.1564,3.546787 +L 4.1564,3.546787,3.5225,3.623009 +L 3.5225,3.623009,2.9029,3.699341 +L 2.4753,1.067927,2.752,1.601788 +L 2.752,1.601788,3.0357,2.135672 +L 3.0357,2.135672,3.3302,2.669598 +L 7.144,1.334814,6.8463,1.791008 +L 6.8463,1.791008,6.5665,2.238884 +L 6.5665,2.238884,6.2863,2.669598 +L 5.4352,3.699341,5.1375,4.134313 +L 5.1375,4.134313,5.025,4.68804 +L 5.025,4.68804,5.0079,5.834873 +L 5.0079,5.834873,3.9848,5.95342 +L 3.9848,5.95342,3.2353,6.072186 +L 3.2353,6.072186,2.4753,5.834873 +L 5.866,3.699341,6.2863,3.699341 +L 6.2863,3.699341,6.7167,3.699341 +L 6.7167,3.699341,7.144,3.699341 +L 1.1934,5.56791,1.3268,6.024104 +L 1.3268,6.024104,1.4736,6.471827 +L 1.4736,6.471827,1.6207,6.902684 +L 5.4352,5.834873,6.0548,5.854662 +L 6.0548,5.854662,6.3844,5.993085 +L 6.3844,5.993085,6.7167,6.368723 +L 6.7167,6.368723,6.1388,7.245825 +L 6.1388,7.245825,5.5679,8.122981 +L 5.5679,8.122981,5.0079,9.000126 +L 5.0079,9.000126,4.5841,8.312266 +L 4.5841,8.312266,4.1638,7.615969 +L 4.1638,7.615969,3.761,6.902684 +L 0.3703,6.902684,0.7804,7.615969 +L 0.7804,7.615969,1.1934,8.312266 +L 1.1934,8.312266,1.6207,9.000126 + +[償] 60 +L 1.2237,0.000106,1.1393,1.781223 +L 1.1393,1.781223,1.0728,3.545354 +L 1.0728,3.545354,1.0097,5.300914 +L 1.0097,5.300914,0.7999,5.13713 +L 0.7999,5.13713,0.5859,4.95636 +L 0.5859,4.95636,0.3726,4.767052 +L 2.5088,0.000106,3.6369,0.775516 +L 3.6369,0.775516,3.6544,2.491619 +L 3.6544,2.491619,3.3599,4.23318 +L 3.3599,4.23318,4.488,4.23318 +L 4.488,4.23318,5.6228,4.23318 +L 5.6228,4.23318,6.7433,4.23318 +L 6.7433,4.23318,6.4631,1.788239 +L 6.4631,1.788239,6.4631,0.690746 +L 6.4631,0.690746,6.7433,0.000106 +L 6.7433,0.000106,7.0234,0.000106 +L 7.0234,0.000106,7.297,0.000106 +L 7.297,0.000106,7.5698,0.000106 +L 4.1833,1.067927,4.7434,1.067927 +L 4.7434,1.067927,5.3146,1.067927 +L 5.3146,1.067927,5.8922,1.067927 +L 3.7595,2.135672,4.6138,2.135672 +L 4.6138,2.135672,5.4649,2.135672 +L 5.4649,2.135672,6.3233,2.135672 +L 3.7595,3.203482,4.6138,3.203482 +L 4.6138,3.203482,5.4649,3.203482 +L 5.4649,3.203482,6.3233,3.203482 +L 3.7595,5.300914,3.7595,5.671123 +L 3.7595,5.671123,3.7595,6.024104 +L 3.7595,6.024104,3.7595,6.368723 +L 3.7595,6.368723,4.6138,6.368723 +L 4.6138,6.368723,5.4649,6.368723 +L 5.4649,6.368723,6.3233,6.368723 +L 6.3233,6.368723,6.3233,6.024104 +L 6.3233,6.024104,6.3233,5.671123 +L 6.3233,5.671123,6.3233,5.300914 +L 6.3233,5.300914,5.4649,5.300914 +L 5.4649,5.300914,4.6138,5.300914 +L 4.6138,5.300914,3.7595,5.300914 +L 1.2237,5.834873,1.3355,7.138562 +L 1.3355,7.138562,1.5421,8.077766 +L 1.5421,8.077766,1.6545,9.000126 +L 2.5088,6.368723,2.5088,6.738823 +L 2.5088,6.738823,2.5088,7.091914 +L 2.5088,7.091914,2.5088,7.436567 +L 2.5088,7.436567,2.9116,7.539692 +L 2.9116,7.539692,3.3322,7.625776 +L 3.3322,7.625776,3.7595,7.703529 +L 3.7595,7.703529,3.6159,7.970515 +L 3.6159,7.970515,3.4825,8.237402 +L 3.4825,8.237402,3.3599,8.504376 +L 7.5698,6.368723,7.5698,6.738823 +L 7.5698,6.738823,7.5698,7.091914 +L 7.5698,7.091914,7.5698,7.436567 +L 7.5698,7.436567,6.4385,7.436567 +L 6.4385,7.436567,5.3146,7.436567 +L 5.3146,7.436567,4.1833,7.436567 +L 5.0376,7.970515,5.0376,8.313711 +L 5.0376,8.313711,5.0376,8.65693 +L 5.0376,8.65693,5.0376,9.000126 + +[匠] 24 +L 0.4023,0.000106,0.4023,2.849044 +L 0.4023,2.849044,0.4023,5.680864 +L 0.4023,5.680864,0.4023,8.504376 +L 0.4023,8.504376,2.5073,8.504376 +L 2.5073,8.504376,4.6231,8.504376 +L 4.6231,8.504376,6.7491,8.504376 +L 0.8296,0.000106,2.9346,0.000106 +L 2.9346,0.000106,5.0466,0.000106 +L 5.0466,0.000106,7.1726,0.000106 +L 1.2569,1.601788,1.9049,3.236032 +L 1.9049,3.236032,2.0835,4.658291 +L 2.0835,4.658291,2.0768,6.368723 +L 2.0768,6.368723,3.7405,6.507179 +L 3.7405,6.507179,4.8263,6.764249 +L 4.8263,6.764249,5.898,6.902684 +L 4.6441,1.601788,4.6441,2.668209 +L 4.6441,2.668209,4.6441,3.726113 +L 4.6441,3.726113,4.6441,4.767052 +L 4.6441,4.767052,3.9226,4.767052 +L 3.9226,4.767052,3.2116,4.767052 +L 3.2116,4.767052,2.5073,4.767052 +L 5.0714,4.767052,5.4777,4.767052 +L 5.4777,4.767052,5.898,4.767052 +L 5.898,4.767052,6.318,4.767052 + +[升] 19 +L 0.6183,0.000106,2.1349,2.286868 +L 2.1349,2.286868,2.4532,4.056547 +L 2.4532,4.056547,0.4288,4.767052 +L 5.4972,0.000106,5.0349,4.044782 +L 5.0349,4.044782,4.0157,4.871962 +L 4.0157,4.871962,2.9996,5.255633 +L 2.9996,5.255633,2.5412,7.970515 +L 2.5412,7.970515,1.9598,7.970515 +L 1.9598,7.970515,1.3853,7.970515 +L 1.3853,7.970515,0.8281,7.970515 +L 5.9245,4.767052,5.6233,5.279713 +L 5.6233,5.279713,5.5147,6.377271 +L 5.5147,6.377271,5.4972,9.000126 +L 6.355,4.767052,6.7756,4.767052 +L 6.7756,4.767052,7.2061,4.767052 +L 7.2061,4.767052,7.6334,4.767052 +L 2.5412,8.504376,3.0942,8.6838 +L 3.0942,8.6838,3.6686,8.846205 +L 3.6686,8.846205,4.2469,9.000126 + +[召] 30 +L 1.7131,0.000106,1.7131,1.247296 +L 1.7131,1.247296,1.7131,2.4775 +L 1.7131,2.4775,1.7131,3.699341 +L 1.7131,3.699341,3.2682,3.699341 +L 3.2682,3.699341,4.8229,3.699341 +L 4.8229,3.699341,6.3815,3.699341 +L 6.3815,3.699341,6.3815,2.4775 +L 6.3815,2.4775,6.3815,1.247296 +L 6.3815,1.247296,6.3815,0.000106 +L 6.3815,0.000106,4.8229,0.000106 +L 4.8229,0.000106,3.2682,0.000106 +L 3.2682,0.000106,1.7131,0.000106 +L 1.0753,4.767052,1.8357,5.490232 +L 1.8357,5.490232,2.6094,6.20494 +L 2.6094,6.20494,3.3943,6.902684 +L 3.3943,6.902684,3.3943,7.436567 +L 3.3943,7.436567,3.3943,7.970515 +L 3.3943,7.970515,3.3943,8.504376 +L 3.3943,8.504376,2.5397,8.504376 +L 2.5397,8.504376,1.6921,8.504376 +L 1.6921,8.504376,0.8585,8.504376 +L 5.1031,5.300914,5.3766,5.300914 +L 5.3766,5.300914,5.6568,5.300914 +L 5.6568,5.300914,5.9542,5.300914 +L 5.9542,5.300914,6.5566,6.487402 +L 6.5566,6.487402,6.7776,7.317965 +L 6.7776,7.317965,6.8126,8.504376 +L 6.8126,8.504376,5.8039,8.504376 +L 5.8039,8.504376,4.8057,8.504376 +L 4.8057,8.504376,3.818,8.504376 + +[奨] 54 +L 0.4612,0.000106,1.547,0.445082 +L 1.547,0.445082,2.3175,1.067927 +L 2.3175,1.067927,3.4239,2.402635 +L 3.4239,2.402635,2.4226,2.505848 +L 2.4226,2.505848,1.4415,2.591866 +L 1.4415,2.591866,0.4612,2.669598 +L 6.3835,0.000106,4.8883,1.738876 +L 4.8883,1.738876,4.2295,2.697859 +L 4.2295,2.697859,3.8512,3.699341 +L 4.7023,2.669598,5.5363,2.669598 +L 5.5363,2.669598,6.3835,2.669598 +L 6.3835,2.669598,7.2349,2.669598 +L 1.7151,3.699341,1.631,4.603192 +L 1.631,4.603192,1.5641,5.490232 +L 1.5641,5.490232,1.4976,6.368723 +L 1.4976,6.368723,1.1442,6.024104 +L 1.1442,6.024104,0.7974,5.671123 +L 0.7974,5.671123,0.4612,5.300914 +L 5.13,3.699341,5.4063,3.699341 +L 5.4063,3.699341,5.6834,3.699341 +L 5.6834,3.699341,5.9527,3.699341 +L 5.9527,3.699341,5.939,4.846175 +L 5.939,4.846175,5.8266,5.399891 +L 5.8266,5.399891,5.5289,5.834873 +L 5.5289,5.834873,4.958,5.757206 +L 4.958,5.757206,4.4015,5.671123 +L 4.4015,5.671123,3.8512,5.56791 +L 3.8512,5.56791,3.9812,5.300914 +L 3.9812,5.300914,4.1248,5.034027 +L 4.1248,5.034027,4.275,4.767052 +L 2.5662,5.834873,2.8429,5.834873 +L 2.8429,5.834873,3.1227,5.834873 +L 3.1227,5.834873,3.4239,5.834873 +L 6.3835,5.834873,6.2297,6.024104 +L 6.2297,6.024104,6.0861,6.20494 +L 6.0861,6.20494,5.9527,6.368723 +L 5.9527,6.368723,6.5551,7.159785 +L 6.5551,7.159785,6.7761,7.713402 +L 6.7761,7.713402,6.8073,8.504376 +L 6.8073,8.504376,6.1632,8.474725 +L 6.1632,8.474725,5.6168,8.267161 +L 5.6168,8.267161,4.7023,7.703529 +L 4.7023,7.703529,4.8323,7.436567 +L 4.8323,7.436567,4.979,7.16968 +L 4.979,7.16968,5.13,6.902684 +L 1.7151,6.902684,1.7151,7.615969 +L 1.7151,7.615969,1.7151,8.312266 +L 1.7151,8.312266,1.7151,9.000126 +L 3.4239,6.902684,3.2737,7.16968 +L 3.2737,7.16968,3.1227,7.436567 +L 3.1227,7.436567,2.9966,7.703529 +L 2.9966,7.703529,3.4239,7.806731 +L 3.4239,7.806731,3.8512,7.892772 +L 3.8512,7.892772,4.275,7.970515 + +[宵] 51 +L 1.7447,0.000106,1.7447,1.781223 +L 1.7447,1.781223,1.7447,3.545354 +L 1.7447,3.545354,1.7447,5.300914 +L 1.7447,5.300914,2.0214,5.300914 +L 2.0214,5.300914,2.3051,5.300914 +L 2.3051,5.300914,2.5997,5.300914 +L 2.5997,5.300914,2.5857,6.072186 +L 2.5857,6.072186,2.4733,6.487402 +L 2.4733,6.487402,2.172,6.902684 +L 4.7047,0.000106,5.1355,0.000106 +L 5.1355,0.000106,5.5558,0.000106 +L 5.5558,0.000106,5.9866,0.000106 +L 5.9866,0.000106,5.9866,0.723275 +L 5.9866,0.723275,5.9866,1.438005 +L 5.9866,1.438005,5.9866,2.135672 +L 5.9866,2.135672,4.7047,2.135672 +L 4.7047,2.135672,3.4333,2.135672 +L 3.4333,2.135672,2.172,2.135672 +L 5.9866,2.669598,5.9866,3.012817 +L 5.9866,3.012817,5.9866,3.356057 +L 5.9866,3.356057,5.9866,3.699341 +L 5.9866,3.699341,4.7047,3.699341 +L 4.7047,3.699341,3.4333,3.699341 +L 3.4333,3.699341,2.172,3.699341 +L 5.9866,4.23318,5.9866,4.603192 +L 5.9866,4.603192,5.9866,4.95636 +L 5.9866,4.95636,5.9866,5.300914 +L 5.9866,5.300914,4.9845,5.300914 +L 4.9845,5.300914,4.0007,5.300914 +L 4.0007,5.300914,3.0231,5.300914 +L 3.8816,5.834873,3.8816,6.20494 +L 3.8816,6.20494,3.8816,6.558064 +L 3.8816,6.558064,3.8816,6.902684 +L 5.1355,5.834873,5.2612,6.20494 +L 5.2612,6.20494,5.4048,6.558064 +L 5.4048,6.558064,5.5558,6.902684 +L 0.4628,6.368723,0.4628,6.902684 +L 0.4628,6.902684,0.4628,7.436567 +L 0.4628,7.436567,0.4628,7.970515 +L 0.4628,7.970515,1.591,7.970515 +L 1.591,7.970515,2.7293,7.970515 +L 2.7293,7.970515,3.8816,7.970515 +L 3.8816,7.970515,3.8816,8.313711 +L 3.8816,8.313711,3.8816,8.65693 +L 3.8816,8.65693,3.8816,9.000126 +L 7.2646,6.368723,7.2646,6.902684 +L 7.2646,6.902684,7.2646,7.436567 +L 7.2646,7.436567,7.2646,7.970515 +L 7.2646,7.970515,6.2633,7.970515 +L 6.2633,7.970515,5.2612,7.970515 +L 5.2612,7.970515,4.277,7.970515 + +[尚] 36 +L 0.4929,0.000106,0.4929,2.134325 +L 0.4929,2.134325,0.4929,4.260073 +L 0.4929,4.260073,0.4929,6.368723 +L 0.4929,6.368723,1.6242,6.368723 +L 1.6242,6.368723,2.752,6.368723 +L 2.752,6.368723,3.8832,6.368723 +L 3.8832,6.368723,3.8832,7.245825 +L 3.8832,7.245825,3.8832,8.122981 +L 3.8832,8.122981,3.8832,9.000126 +L 6.0127,0.000106,6.4225,0.000106 +L 6.4225,0.000106,6.8393,0.000106 +L 6.8393,0.000106,7.2666,0.000106 +L 7.2666,0.000106,7.2666,2.134325 +L 7.2666,2.134325,7.2666,4.260073 +L 7.2666,4.260073,7.2666,6.368723 +L 7.2666,6.368723,6.2688,6.368723 +L 6.2688,6.368723,5.2842,6.368723 +L 5.2842,6.368723,4.3039,6.368723 +L 2.5978,1.601788,2.5978,2.478956 +L 2.5978,2.478956,2.5978,3.356057 +L 2.5978,3.356057,2.5978,4.23318 +L 2.5978,4.23318,3.4528,4.23318 +L 3.4528,4.23318,4.3039,4.23318 +L 4.3039,4.23318,5.1616,4.23318 +L 5.1616,4.23318,5.1616,3.356057 +L 5.1616,3.356057,5.1616,2.478956 +L 5.1616,2.478956,5.1616,1.601788 +L 5.1616,1.601788,4.3039,1.601788 +L 4.3039,1.601788,3.4528,1.601788 +L 3.4528,1.601788,2.5978,1.601788 +L 2.2024,7.436567,1.9079,7.806731 +L 1.9079,7.806731,1.6242,8.159735 +L 1.6242,8.159735,1.3478,8.504376 +L 5.5924,7.436567,5.8625,7.806731 +L 5.8625,7.806731,6.1388,8.159735 +L 6.1388,8.159735,6.4089,8.504376 + +[床] 30 +L 0.5264,0.267004,1.1852,2.925365 +L 1.1852,2.925365,1.3565,5.3377 +L 1.3565,5.3377,1.3463,7.970515 +L 1.3463,7.970515,2.3337,7.970515 +L 2.3337,7.970515,3.3322,7.970515 +L 3.3322,7.970515,4.3409,7.970515 +L 4.3409,7.970515,4.3409,8.313711 +L 4.3409,8.313711,4.3409,8.65693 +L 4.3409,8.65693,4.3409,9.000126 +L 4.7609,0.000106,4.6842,1.600355 +L 4.6842,1.600355,4.6138,3.192252 +L 4.6138,3.192252,4.5511,4.767052 +L 4.5511,4.767052,3.6124,3.545354 +L 3.6124,3.545354,2.6878,2.315106 +L 2.6878,2.315106,1.7771,1.067927 +L 7.297,1.067927,6.5755,2.401201 +L 6.5755,2.401201,5.8676,3.726113 +L 5.8676,3.726113,5.1636,5.034027 +L 5.1636,5.034027,4.1658,5.13713 +L 4.1658,5.13713,3.1777,5.223247 +L 3.1777,5.223247,2.2009,5.300914 +L 5.5874,5.300914,6.1482,5.300914 +L 6.1482,5.300914,6.7187,5.300914 +L 6.7187,5.300914,7.297,5.300914 +L 4.7609,5.834873,4.7609,6.20494 +L 4.7609,6.20494,4.7609,6.558064 +L 4.7609,6.558064,4.7609,6.902684 +L 4.7609,7.970515,5.7419,7.970515 +L 5.7419,7.970515,6.7257,7.970515 +L 6.7257,7.970515,7.7243,7.970515 + +[彰] 60 +L 2.6617,0.000106,2.3146,1.449268 +L 2.3146,1.449268,1.4986,1.703567 +L 1.4986,1.703567,0.5249,1.601788 +L 4.5496,0.000106,5.5968,1.067927 +L 5.5968,1.067927,6.6612,2.135672 +L 6.6612,2.135672,7.7263,3.203482 +L 3.089,1.601788,2.7878,2.017092 +L 2.7878,2.017092,2.6754,2.432395 +L 2.6754,2.432395,2.6617,3.203482 +L 2.6617,3.203482,2.2344,3.203482 +L 2.2344,3.203482,1.8033,3.203482 +L 1.8033,3.203482,1.3795,3.203482 +L 1.3795,3.203482,1.3795,3.916833 +L 1.3795,3.916833,1.3795,4.613054 +L 1.3795,4.613054,1.3795,5.300914 +L 1.3795,5.300914,2.2131,5.300914 +L 2.2131,5.300914,3.0572,5.300914 +L 3.0572,5.300914,3.9156,5.300914 +L 3.9156,5.300914,3.9156,4.613054 +L 3.9156,4.613054,3.9156,3.916833 +L 3.9156,3.916833,3.9156,3.203482 +L 3.9156,3.203482,3.6354,3.203482 +L 3.6354,3.203482,3.3619,3.203482 +L 3.3619,3.203482,3.089,3.203482 +L 3.5128,1.601788,3.9191,1.601788 +L 3.9191,1.601788,4.3391,1.601788 +L 4.3391,1.601788,4.7667,1.601788 +L 5.4073,3.699341,6.0451,4.422499 +L 6.0451,4.422499,6.6896,5.13713 +L 6.6896,5.13713,7.3302,5.834873 +L 1.8033,4.23318,2.3605,4.23318 +L 2.3605,4.23318,2.9381,4.23318 +L 2.9381,4.23318,3.5128,4.23318 +L 0.5249,6.368723,0.9522,6.471827 +L 0.9522,6.471827,1.3795,6.558064 +L 1.3795,6.558064,1.8033,6.635719 +L 1.8033,6.635719,1.653,7.005786 +L 1.653,7.005786,1.5094,7.358889 +L 1.5094,7.358889,1.3795,7.703529 +L 1.3795,7.703529,1.8033,7.806731 +L 1.8033,7.806731,2.2344,7.892772 +L 2.2344,7.892772,2.6617,7.970515 +L 2.6617,7.970515,2.6617,8.313711 +L 2.6617,8.313711,2.6617,8.65693 +L 2.6617,8.65693,2.6617,9.000126 +L 2.2344,6.368723,2.6617,6.471827 +L 2.6617,6.471827,3.089,6.558064 +L 3.089,6.558064,3.5128,6.635719 +L 3.5128,6.635719,3.6389,7.005786 +L 3.6389,7.005786,3.7647,7.358889 +L 3.7647,7.358889,3.9156,7.703529 +L 3.9156,7.703529,3.6354,7.806731 +L 3.6354,7.806731,3.3619,7.892772 +L 3.3619,7.892772,3.089,7.970515 +L 3.9156,6.368723,4.1853,6.368723 +L 4.1853,6.368723,4.469,6.368723 +L 4.469,6.368723,4.7667,6.368723 +L 5.6213,6.902684,6.1743,7.615969 +L 6.1743,7.615969,6.7491,8.312266 +L 6.7491,8.312266,7.3302,9.000126 + +[抄] 30 +L 0.9826,0.000106,1.2589,0.000106 +L 1.2589,0.000106,1.5426,0.000106 +L 1.5426,0.000106,1.8372,0.000106 +L 1.8372,0.000106,1.8228,2.62295 +L 1.8228,2.62295,1.7111,3.720476 +L 1.7111,3.720476,1.4099,4.23318 +L 1.4099,4.23318,1.1118,4.069408 +L 1.1118,4.069408,0.8281,3.88855 +L 0.8281,3.88855,0.5588,3.699341 +L 3.0837,0.000106,4.8528,0.978943 +L 4.8528,0.978943,6.334,2.491619 +L 6.334,2.491619,7.7559,4.23318 +L 4.7932,3.203482,5.0734,3.203482 +L 5.0734,3.203482,5.3536,3.203482 +L 5.3536,3.203482,5.651,3.203482 +L 5.651,3.203482,5.651,5.147025 +L 5.651,5.147025,5.651,7.08202 +L 5.651,7.08202,5.651,9.000126 +L 2.2326,4.23318,1.7286,5.552335 +L 1.7286,5.552335,1.5465,6.524188 +L 1.5465,6.524188,0.5588,6.902684 +L 3.5148,4.767052,4.1173,5.933752 +L 4.1173,5.933752,4.3376,6.625814 +L 4.3376,6.625814,4.3726,7.436567 +L 7.7559,5.56791,7.4586,6.20494 +L 7.4586,6.20494,7.1749,6.825028 +L 7.1749,6.825028,6.8982,7.436567 +L 2.2326,6.902684,1.9527,7.336221 +L 1.9527,7.336221,1.8512,7.880076 +L 1.8512,7.880076,1.8372,9.000126 + +[掌] 51 +L 3.1207,0.000106,3.3942,0.000106 +L 3.3942,0.000106,3.6744,0.000106 +L 3.6744,0.000106,3.9718,0.000106 +L 3.9718,0.000106,3.3869,1.584911 +L 3.3869,1.584911,2.0455,1.771329 +L 2.0455,1.771329,0.5849,1.601788 +L 4.3991,1.601788,4.1017,2.135672 +L 4.1017,2.135672,3.8215,2.669598 +L 3.8215,2.669598,3.541,3.203482 +L 3.541,3.203482,2.8233,3.203482 +L 2.8233,3.203482,2.112,3.203482 +L 2.112,3.203482,1.4119,3.203482 +L 4.7949,1.601788,5.653,1.601788 +L 5.653,1.601788,6.5041,1.601788 +L 6.5041,1.601788,7.3625,1.601788 +L 4.3991,3.203482,4.0037,3.750028 +L 4.0037,3.750028,3.2331,4.017112 +L 3.2331,4.017112,1.4119,4.23318 +L 4.7949,3.203482,5.3556,3.203482 +L 5.3556,3.203482,5.9265,3.203482 +L 5.9265,3.203482,6.5041,3.203482 +L 4.3991,4.23318,4.7423,4.60884 +L 4.7423,4.60884,5.2887,4.747274 +L 5.2887,4.747274,6.5041,4.767052 +L 2.263,5.834873,2.263,6.20494 +L 2.263,6.20494,2.263,6.558064 +L 2.263,6.558064,2.263,6.902684 +L 2.263,6.902684,3.3942,6.902684 +L 3.3942,6.902684,4.522,6.902684 +L 4.522,6.902684,5.653,6.902684 +L 5.653,6.902684,5.653,6.558064 +L 5.653,6.558064,5.653,6.20494 +L 5.653,6.20494,5.653,5.834873 +L 5.653,5.834873,4.522,5.834873 +L 4.522,5.834873,3.3942,5.834873 +L 3.3942,5.834873,2.263,5.834873 +L 0.5849,6.902684,0.5849,7.272782 +L 0.5849,7.272782,0.5849,7.625776 +L 0.5849,7.625776,0.5849,7.970515 +L 0.5849,7.970515,1.1383,8.07364 +L 1.1383,8.07364,1.6921,8.159735 +L 1.6921,8.159735,2.263,8.237402 +L 2.263,8.237402,2.112,8.502932 +L 2.112,8.502932,1.9649,8.760034 +L 1.9649,8.760034,1.8357,9.000126 +L 7.3625,6.902684,7.3625,7.272782 +L 7.3625,7.272782,7.3625,7.625776 +L 7.3625,7.625776,7.3625,7.970515 +L 7.3625,7.970515,5.8039,7.970515 +L 5.8039,7.970515,4.2453,7.970515 +L 4.2453,7.970515,2.6899,7.970515 + +[昇] 42 +L 1.2247,0.000106,1.7182,0.637071 +L 1.7182,0.637071,2.2121,1.257158 +L 2.2121,1.257158,2.7203,1.868774 +L 2.7203,1.868774,2.5693,2.135672 +L 2.5693,2.135672,2.4292,2.402635 +L 2.4292,2.402635,2.2926,2.669598 +L 2.2926,2.669598,1.7182,2.669598 +L 1.7182,2.669598,1.1403,2.669598 +L 1.1403,2.669598,0.5838,2.669598 +L 5.6798,0.000106,4.9128,2.741618 +L 4.9128,2.741618,3.4908,2.813703 +L 3.4908,2.813703,2.7203,4.23318 +L 2.7203,4.23318,2.2926,4.23318 +L 2.2926,4.23318,1.8688,4.23318 +L 1.8688,4.23318,1.4415,4.23318 +L 6.1103,2.669598,5.8059,3.103169 +L 5.8059,3.103169,5.6974,3.647023 +L 5.6974,3.647023,5.6798,4.767052 +L 6.5344,2.669598,6.9404,2.669598 +L 6.9404,2.669598,7.361,2.669598 +L 7.361,2.669598,7.7848,2.669598 +L 3.3297,4.767052,3.5465,5.034027 +L 3.5465,5.034027,3.7605,5.300914 +L 3.7605,5.300914,3.9703,5.56791 +L 3.9703,5.56791,3.2702,5.671123 +L 3.2702,5.671123,2.5693,5.757206 +L 2.5693,5.757206,1.8688,5.834873 +L 1.8688,5.834873,1.8688,6.738823 +L 1.8688,6.738823,1.8688,7.625776 +L 1.8688,7.625776,1.8688,8.504376 +L 1.8688,8.504376,3.4239,8.504376 +L 3.4239,8.504376,4.979,8.504376 +L 4.979,8.504376,6.5344,8.504376 +L 6.5344,8.504376,6.5344,7.625776 +L 6.5344,7.625776,6.5344,6.738823 +L 6.5344,6.738823,6.5344,5.834873 +L 6.5344,5.834873,5.8126,5.834873 +L 5.8126,5.834873,5.1051,5.834873 +L 5.1051,5.834873,4.4014,5.834873 +L 2.2926,7.436567,3.5539,7.436567 +L 3.5539,7.436567,4.8287,7.436567 +L 4.8287,7.436567,6.1103,7.436567 + +[晶] 45 +L 0.6173,0.000106,0.6173,1.247296 +L 0.6173,1.247296,0.6173,2.4775 +L 0.6173,2.4775,0.6173,3.699341 +L 0.6173,3.699341,1.4509,3.699341 +L 1.4509,3.699341,2.2946,3.699341 +L 2.2946,3.699341,3.1531,3.699341 +L 3.1531,3.699341,3.1531,2.4775 +L 3.1531,2.4775,3.1531,1.247296 +L 3.1531,1.247296,3.1531,0.000106 +L 3.1531,0.000106,2.2946,0.000106 +L 2.2946,0.000106,1.4509,0.000106 +L 1.4509,0.000106,0.6173,0.000106 +L 4.8584,0.000106,4.8584,1.247296 +L 4.8584,1.247296,4.8584,2.4775 +L 4.8584,2.4775,4.8584,3.699341 +L 4.8584,3.699341,5.6885,3.699341 +L 5.6885,3.699341,6.5361,3.699341 +L 6.5361,3.699341,7.3907,3.699341 +L 7.3907,3.699341,7.3907,2.4775 +L 7.3907,2.4775,7.3907,1.247296 +L 7.3907,1.247296,7.3907,0.000106 +L 7.3907,0.000106,6.5361,0.000106 +L 6.5361,0.000106,5.6885,0.000106 +L 5.6885,0.000106,4.8584,0.000106 +L 1.0446,2.135672,1.5945,2.135672 +L 1.5945,2.135672,2.151,2.135672 +L 2.151,2.135672,2.7223,2.135672 +L 5.2822,2.135672,5.8321,2.135672 +L 5.8321,2.135672,6.3928,2.135672 +L 6.3928,2.135672,6.9634,2.135672 +L 1.8638,5.300914,1.8638,6.368723 +L 1.8638,6.368723,1.8638,7.436567 +L 1.8638,7.436567,1.8638,8.504376 +L 1.8638,8.504376,3.2722,8.504376 +L 3.2722,8.504376,4.6833,8.504376 +L 4.6833,8.504376,6.1091,8.504376 +L 6.1091,8.504376,6.1091,7.436567 +L 6.1091,7.436567,6.1091,6.368723 +L 6.1091,6.368723,6.1091,5.300914 +L 6.1091,5.300914,4.6833,5.300914 +L 4.6833,5.300914,3.2722,5.300914 +L 3.2722,5.300914,1.8638,5.300914 +L 2.2946,6.902684,3.4224,6.902684 +L 3.4224,6.902684,4.5537,6.902684 +L 4.5537,6.902684,5.6783,6.902684 + +[沼] 36 +L 0.6158,0.267004,1.0431,1.411047 +L 1.0431,1.411047,1.4704,2.555167 +L 1.4704,2.555167,1.9008,3.699341 +L 3.61,0.000106,3.61,1.247296 +L 3.61,1.247296,3.61,2.4775 +L 3.61,2.4775,3.61,3.699341 +L 3.61,3.699341,4.7312,3.699341 +L 4.7312,3.699341,5.866,3.699341 +L 5.866,3.699341,6.9938,3.699341 +L 6.9938,3.699341,6.9938,2.4775 +L 6.9938,2.4775,6.9938,1.247296 +L 6.9938,1.247296,6.9938,0.000106 +L 6.9938,0.000106,5.866,0.000106 +L 5.866,0.000106,4.7312,0.000106 +L 4.7312,0.000106,3.61,0.000106 +L 3.3932,5.300914,4.423,6.843382 +L 4.423,6.843382,4.8044,7.67388 +L 4.8044,7.67388,4.8569,8.504376 +L 4.8569,8.504376,4.2864,8.504376 +L 4.2864,8.504376,3.7291,8.504376 +L 3.7291,8.504376,3.1792,8.504376 +L 5.7115,5.300914,5.9851,5.300914 +L 5.9851,5.300914,6.2723,5.300914 +L 6.2723,5.300914,6.5661,5.300914 +L 6.5661,5.300914,7.1685,6.487402 +L 7.1685,6.487402,7.3892,7.317965 +L 7.3892,7.317965,7.4211,8.504376 +L 7.4211,8.504376,6.6961,8.504376 +L 6.6961,8.504376,5.9851,8.504376 +L 5.9851,8.504376,5.2842,8.504376 +L 1.4704,5.834873,1.1723,6.20494 +L 1.1723,6.20494,0.8921,6.558064 +L 0.8921,6.558064,0.6158,6.902684 +L 1.9008,7.970515,1.6031,8.313711 +L 1.6031,8.313711,1.3194,8.65693 +L 1.3194,8.65693,1.0431,9.000126 + +[渉] 36 +L 0.649,0.267004,1.0763,1.411047 +L 1.0763,1.411047,1.5001,2.555167 +L 1.5001,2.555167,1.9274,3.699341 +L 2.7504,0.000106,4.33,0.319322 +L 4.33,0.319322,5.4967,1.23171 +L 5.4967,1.23171,6.5646,2.669598 +L 4.4596,2.135672,4.7363,2.135672 +L 4.7363,2.135672,5.02,2.135672 +L 5.02,2.135672,5.3146,2.135672 +L 5.3146,2.135672,5.1671,4.651275 +L 5.1671,4.651275,4.446,5.327796 +L 4.446,5.327796,2.7504,5.300914 +L 2.7504,2.669598,3.0275,3.202059 +L 3.0275,3.202059,3.3112,3.726113 +L 3.3112,3.726113,3.605,4.23318 +L 7.8469,2.936584,7.5558,3.382916 +L 7.5558,3.382916,7.2686,3.812328 +L 7.2686,3.812328,6.9958,4.23318 +L 5.7419,5.300914,5.4407,5.793873 +L 5.4407,5.793873,5.3282,6.752943 +L 5.3282,6.752943,5.3146,9.000126 +L 6.1692,5.300914,6.7187,5.300914 +L 6.7187,5.300914,7.276,5.300914 +L 7.276,5.300914,7.8469,5.300914 +L 1.5001,5.834873,1.2097,6.20494 +L 1.2097,6.20494,0.9225,6.558064 +L 0.9225,6.558064,0.649,6.902684 +L 3.605,5.834873,3.605,6.558064 +L 3.605,6.558064,3.605,7.272782 +L 3.605,7.272782,3.605,7.970515 +L 5.7419,7.436567,6.2949,7.436567 +L 6.2949,7.436567,6.8522,7.436567 +L 6.8522,7.436567,7.4157,7.436567 +L 1.9274,7.970515,1.63,8.313711 +L 1.63,8.313711,1.3498,8.65693 +L 1.3498,8.65693,1.0763,9.000126 + +[焦] 54 +L 0.6793,0.000106,0.9522,0.533978 +L 0.9522,0.533978,1.2292,1.067927 +L 1.2292,1.067927,1.5021,1.601788 +L 3.6389,0.267004,3.4845,0.723275 +L 3.4845,0.723275,3.3409,1.171031 +L 3.3409,1.171031,3.2081,1.601788 +L 5.7439,0.267004,5.5929,0.723275 +L 5.5929,0.723275,5.4458,1.171031 +L 5.4458,1.171031,5.3166,1.601788 +L 7.88,0.267004,7.5827,0.723275 +L 7.5827,0.723275,7.299,1.171031 +L 7.299,1.171031,7.0219,1.601788 +L 1.9332,2.669598,1.9157,5.668201 +L 1.9157,5.668201,1.8033,6.904128 +L 1.8033,6.904128,1.5021,7.436567 +L 1.5021,7.436567,1.2292,7.091914 +L 1.2292,7.091914,0.9522,6.738823 +L 0.9522,6.738823,0.6793,6.368723 +L 2.3532,2.669598,3.0607,2.669598 +L 3.0607,2.669598,3.7682,2.669598 +L 3.7682,2.669598,4.49,2.669598 +L 4.49,2.669598,4.1433,4.074979 +L 4.1433,4.074979,3.3198,4.327736 +L 3.3198,4.327736,2.3532,4.23318 +L 4.917,2.669598,5.7505,2.669598 +L 5.7505,2.669598,6.5981,2.669598 +L 6.5981,2.669598,7.4527,2.669598 +L 4.917,4.23318,4.6227,4.767052 +L 4.6227,4.767052,4.3429,5.300914 +L 4.3429,5.300914,4.0627,5.834873 +L 4.0627,5.834873,3.4845,5.834873 +L 3.4845,5.834873,2.9136,5.834873 +L 2.9136,5.834873,2.3532,5.834873 +L 5.3166,4.23318,5.8731,4.23318 +L 5.8731,4.23318,6.444,4.23318 +L 6.444,4.23318,7.0219,4.23318 +L 4.917,5.834873,3.779,7.252917 +L 3.779,7.252917,2.8263,7.467672 +L 2.8263,7.467672,1.9332,7.970515 +L 1.9332,7.970515,2.2029,8.313711 +L 2.2029,8.313711,2.4866,8.65693 +L 2.4866,8.65693,2.7843,9.000126 +L 5.3166,5.834873,5.8731,5.834873 +L 5.8731,5.834873,6.444,5.834873 +L 6.444,5.834873,7.0219,5.834873 +L 4.917,7.436567,4.7667,7.625776 +L 4.7667,7.625776,4.6227,7.806731 +L 4.6227,7.806731,4.49,7.970515 +L 4.49,7.970515,4.7628,8.313711 +L 4.7628,8.313711,5.043,8.65693 +L 5.043,8.65693,5.3166,9.000126 +L 5.3166,7.436567,6.0167,7.436567 +L 6.0167,7.436567,6.7242,7.436567 +L 6.7242,7.436567,7.4527,7.436567 + +[症] 45 +L 0.6813,0.000106,1.378,1.428034 +L 1.378,1.428034,1.7808,2.703507 +L 1.7808,2.703507,1.7457,4.23318 +L 1.7457,4.23318,1.3815,3.889908 +L 1.3815,3.889908,1.0246,3.546787 +L 1.0246,3.546787,0.6813,3.203482 +L 2.814,0.000106,3.091,0.000106 +L 3.091,0.000106,3.3712,0.000106 +L 3.3712,0.000106,3.6686,0.000106 +L 3.6686,0.000106,3.6686,1.411047 +L 3.6686,1.411047,3.6686,2.822163 +L 3.6686,2.822163,3.6686,4.23318 +L 4.0647,0.000106,4.4917,0.000106 +L 4.4917,0.000106,4.9225,0.000106 +L 4.9225,0.000106,5.3463,0.000106 +L 5.3463,0.000106,5.3463,1.945007 +L 5.3463,1.945007,5.3463,3.889908 +L 5.3463,3.889908,5.3463,5.834873 +L 5.3463,5.834873,4.6461,5.834873 +L 4.6461,5.834873,3.9421,5.834873 +L 3.9421,5.834873,3.2413,5.834873 +L 5.7736,0.000106,6.4744,0.000106 +L 6.4744,0.000106,7.1749,0.000106 +L 7.1749,0.000106,7.8785,0.000106 +L 5.7736,3.203482,6.2009,3.203482 +L 6.2009,3.203482,6.6285,3.203482 +L 6.6285,3.203482,7.0558,3.203482 +L 1.9597,4.767052,1.9597,5.834873 +L 1.9597,5.834873,1.9597,6.902684 +L 1.9597,6.902684,1.9597,7.970515 +L 1.9597,7.970515,2.9366,7.970515 +L 2.9366,7.970515,3.9211,7.970515 +L 3.9211,7.970515,4.9225,7.970515 +L 4.9225,7.970515,4.9225,8.313711 +L 4.9225,8.313711,4.9225,8.65693 +L 4.9225,8.65693,4.9225,9.000126 +L 1.1016,6.101836,0.9542,6.368723 +L 0.9542,6.368723,0.8106,6.635719 +L 0.8106,6.635719,0.6813,6.902684 +L 5.7736,5.834873,6.3308,5.834873 +L 6.3308,5.834873,6.9013,5.834873 +L 6.9013,5.834873,7.4796,5.834873 +L 5.3463,7.970515,6.1763,7.970515 +L 6.1763,7.970515,7.0274,7.970515 +L 7.0274,7.970515,7.8785,7.970515 + +[硝] 54 +L 4.0944,0.000106,4.0944,2.134325 +L 4.0944,2.134325,4.0944,4.260073 +L 4.0944,4.260073,4.0944,6.368723 +L 4.0944,6.368723,4.6548,6.368723 +L 4.6548,6.368723,5.2222,6.368723 +L 5.2222,6.368723,5.8039,6.368723 +L 5.8039,6.368723,5.8039,7.245825 +L 5.8039,7.245825,5.8039,8.122981 +L 5.8039,8.122981,5.8039,9.000126 +L 6.1958,0.000106,6.6266,0.000106 +L 6.6266,0.000106,7.0543,0.000106 +L 7.0543,0.000106,7.4851,0.000106 +L 7.4851,0.000106,7.4851,1.067927 +L 7.4851,1.067927,7.4851,2.135672 +L 7.4851,2.135672,7.4851,3.203482 +L 7.4851,3.203482,6.483,3.203482 +L 6.483,3.203482,5.4992,3.203482 +L 5.4992,3.203482,4.5217,3.203482 +L 1.1383,1.067927,1.2507,4.995927 +L 1.2507,4.995927,1.4539,7.042496 +L 1.4539,7.042496,1.5656,8.504376 +L 1.5656,8.504376,1.2682,8.504376 +L 1.2682,8.504376,0.9846,8.504376 +L 0.9846,8.504376,0.7075,8.504376 +L 1.5656,1.067927,1.8391,1.067927 +L 1.8391,1.067927,2.112,1.067927 +L 2.112,1.067927,2.3855,1.067927 +L 2.3855,1.067927,2.3855,2.478956 +L 2.3855,2.478956,2.3855,3.889908 +L 2.3855,3.889908,2.3855,5.300914 +L 2.3855,5.300914,2.112,5.300914 +L 2.112,5.300914,1.8391,5.300914 +L 1.8391,5.300914,1.5656,5.300914 +L 7.4851,3.699341,7.4851,4.069408 +L 7.4851,4.069408,7.4851,4.422499 +L 7.4851,4.422499,7.4851,4.767052 +L 7.4851,4.767052,6.483,4.767052 +L 6.483,4.767052,5.4992,4.767052 +L 5.4992,4.767052,4.5217,4.767052 +L 7.4851,5.300914,7.4851,5.671123 +L 7.4851,5.671123,7.4851,6.024104 +L 7.4851,6.024104,7.4851,6.368723 +L 7.4851,6.368723,7.0543,6.368723 +L 7.0543,6.368723,6.6266,6.368723 +L 6.6266,6.368723,6.1958,6.368723 +L 4.5217,7.703529,4.3711,7.970515 +L 4.3711,7.970515,4.2243,8.237402 +L 4.2243,8.237402,4.0944,8.504376 +L 7.0543,7.436567,7.187,7.806731 +L 7.187,7.806731,7.3306,8.159735 +L 7.3306,8.159735,7.4851,8.504376 +L 1.9894,8.504376,2.2661,8.504376 +L 2.2661,8.504376,2.5396,8.504376 +L 2.5396,8.504376,2.8125,8.504376 + +[礁] 69 +L 3.2701,0.000106,3.4029,0.370184 +L 3.4029,0.370184,3.5465,0.723275 +L 3.5465,0.723275,3.6974,1.067927 +L 5.3786,0.267004,5.2242,0.533978 +L 5.2242,0.533978,5.0841,0.800964 +L 5.0841,0.800964,4.9513,1.067927 +L 6.6602,0.267004,6.5064,0.533978 +L 6.5064,0.533978,6.3625,0.800964 +L 6.3625,0.800964,6.2329,1.067927 +L 7.9421,0.267004,7.7883,0.533978 +L 7.7883,0.533978,7.6447,0.800964 +L 7.6447,0.800964,7.5113,1.067927 +L 1.1333,1.067927,1.2457,4.995927 +L 1.2457,4.995927,1.4524,7.042496 +L 1.4524,7.042496,1.5641,8.504376 +L 1.5641,8.504376,1.2878,8.504376 +L 1.2878,8.504376,1.0142,8.504376 +L 1.0142,8.504376,0.7379,8.504376 +L 1.5641,1.067927,1.8408,1.067927 +L 1.8408,1.067927,2.1213,1.067927 +L 2.1213,1.067927,2.4191,1.067927 +L 2.4191,1.067927,2.4191,2.478956 +L 2.4191,2.478956,2.4191,3.889908 +L 2.4191,3.889908,2.4191,5.300914 +L 2.4191,5.300914,2.1213,5.300914 +L 2.1213,5.300914,1.8408,5.300914 +L 1.8408,5.300914,1.5641,5.300914 +L 4.1279,2.669598,4.0442,4.080648 +L 4.0442,4.080648,3.9776,5.491677 +L 3.9776,5.491677,3.9142,6.902684 +L 3.9142,6.902684,3.6974,6.738823 +L 3.6974,6.738823,3.487,6.558064 +L 3.487,6.558064,3.2701,6.368723 +L 4.5552,2.669598,4.958,2.669598 +L 4.958,2.669598,5.3786,2.669598 +L 5.3786,2.669598,5.8024,2.669598 +L 5.8024,2.669598,5.6588,3.820788 +L 5.6588,3.820788,5.2452,4.200651 +L 5.2452,4.200651,4.5552,4.23318 +L 6.2329,2.669598,6.7936,2.669598 +L 6.7936,2.669598,7.361,2.669598 +L 7.361,2.669598,7.9421,2.669598 +L 6.2329,4.23318,5.9352,4.767052 +L 5.9352,4.767052,5.655,5.300914 +L 5.655,5.300914,5.3786,5.834873 +L 5.3786,5.834873,5.1016,5.834873 +L 5.1016,5.834873,4.8287,5.834873 +L 4.8287,5.834873,4.5552,5.834873 +L 6.6602,4.23318,6.9337,4.23318 +L 6.9337,4.23318,7.2136,4.23318 +L 7.2136,4.23318,7.5113,4.23318 +L 6.2329,5.834873,5.5499,7.048133 +L 5.5499,7.048133,5.0109,7.48178 +L 5.0109,7.48178,4.1279,7.703529 +L 4.1279,7.703529,4.2575,8.14983 +L 4.2575,8.14983,4.4014,8.579153 +L 4.4014,8.579153,4.5552,9.000126 +L 6.6602,5.834873,6.9337,5.834873 +L 6.9337,5.834873,7.2136,5.834873 +L 7.2136,5.834873,7.5113,5.834873 +L 6.2329,7.436567,5.946,7.850425 +L 5.946,7.850425,5.946,8.255822 +L 5.946,8.255822,6.2329,9.000126 +L 6.6602,7.436567,7.084,7.436567 +L 7.084,7.436567,7.5113,7.436567 +L 7.5113,7.436567,7.9421,7.436567 +L 1.9879,8.504376,2.2649,8.504376 +L 2.2649,8.504376,2.5483,8.504376 +L 2.5483,8.504376,2.8428,8.504376 + +[祥] 45 +L 1.5945,0.000106,1.5801,2.62295 +L 1.5801,2.62295,1.4684,3.720476 +L 1.4684,3.720476,1.1707,4.23318 +L 1.1707,4.23318,1.0162,4.069408 +L 1.0162,4.069408,0.8691,3.88855 +L 0.8691,3.88855,0.7399,3.699341 +L 5.8356,0.000106,5.6818,2.099005 +L 5.6818,2.099005,5.0514,2.68085 +L 5.0514,2.68085,3.7026,2.669598 +L 6.2594,2.669598,5.6465,4.080648 +L 5.6465,4.080648,5.4332,4.983165 +L 5.4332,4.983165,4.1267,5.300914 +L 6.6905,2.669598,7.0933,2.669598 +L 7.0933,2.669598,7.5133,2.669598 +L 7.5133,2.669598,7.9371,2.669598 +L 2.876,3.203482,2.4487,3.736007 +L 2.4487,3.736007,2.0218,4.260073 +L 2.0218,4.260073,1.5945,4.767052 +L 1.5945,4.767052,2.0218,5.56791 +L 2.0218,5.56791,2.4487,6.368723 +L 2.4487,6.368723,2.876,7.16968 +L 2.876,7.16968,2.151,7.272782 +L 2.151,7.272782,1.44,7.358889 +L 1.44,7.358889,0.7399,7.436567 +L 6.2594,5.300914,5.962,5.736028 +L 5.962,5.736028,5.8496,6.289633 +L 5.8496,6.289633,5.8356,7.436567 +L 5.8356,7.436567,5.1109,7.436567 +L 5.1109,7.436567,4.4034,7.436567 +L 4.4034,7.436567,3.7026,7.436567 +L 6.6905,5.300914,6.9634,5.300914 +L 6.9634,5.300914,7.2369,5.300914 +L 7.2369,5.300914,7.5133,5.300914 +L 6.4765,7.436567,6.6905,7.969059 +L 6.6905,7.969059,6.9038,8.49307 +L 6.9038,8.49307,7.1178,9.000126 +L 7.1178,7.436567,7.3907,7.436567 +L 7.3907,7.436567,7.6642,7.436567 +L 7.6642,7.436567,7.9371,7.436567 +L 1.5945,7.970515,1.5945,8.313711 +L 1.5945,8.313711,1.5945,8.65693 +L 1.5945,8.65693,1.5945,9.000126 +L 4.981,8.237402,4.8307,8.502932 +L 4.8307,8.502932,4.6833,8.760034 +L 4.6833,8.760034,4.5537,9.000126 + +[称] 39 +L 2.0203,0.000106,1.9362,1.411047 +L 1.9362,1.411047,1.8693,2.822163 +L 1.8693,2.822163,1.8101,4.23318 +L 1.8101,4.23318,1.4494,3.545354 +L 1.4494,3.545354,1.1061,2.849044 +L 1.1061,2.849044,0.7695,2.135672 +L 5.0114,0.000106,5.2877,0.000106 +L 5.2877,0.000106,5.5613,0.000106 +L 5.5613,0.000106,5.8341,0.000106 +L 5.8341,0.000106,5.8341,2.315106 +L 5.8341,2.315106,5.8341,4.613054 +L 5.8341,4.613054,5.8341,6.902684 +L 5.8341,6.902684,4.5732,6.744591 +L 4.5732,6.744591,3.0146,6.348956 +L 3.0146,6.348956,2.0203,5.834873 +L 2.0203,5.834873,2.2126,5.04391 +L 2.2126,5.04391,2.5456,4.490282 +L 2.5456,4.490282,3.3018,3.699341 +L 3.7291,2.135672,4.3315,3.2755 +L 4.3315,3.2755,4.5557,3.957778 +L 4.5557,3.957778,4.5841,4.767052 +L 7.9709,2.135672,7.6729,3.012817 +L 7.6729,3.012817,7.3927,3.889908 +L 7.3927,3.889908,7.1163,4.767052 +L 0.7695,6.368723,1.6105,6.538275 +L 1.6105,6.538275,1.9537,7.063588 +L 1.9537,7.063588,2.0203,7.970515 +L 2.0203,7.970515,1.593,7.970515 +L 1.593,7.970515,1.1793,7.970515 +L 1.1793,7.970515,0.7695,7.970515 +L 6.2652,6.902684,6.8218,6.902684 +L 6.8218,6.902684,7.3927,6.902684 +L 7.3927,6.902684,7.9709,6.902684 +L 4.5841,7.436567,4.8814,7.850425 +L 4.8814,7.850425,4.9939,8.255822 +L 4.9939,8.255822,5.0114,9.000126 +L 2.4507,7.970515,2.7208,8.159735 +L 2.7208,8.159735,3.008,8.340592 +L 3.008,8.340592,3.3018,8.504376 + +[粧] 42 +L 2.0499,0.000106,1.9694,1.411047 +L 1.9694,1.411047,1.9028,2.822163 +L 1.9028,2.822163,1.8366,4.23318 +L 1.8366,4.23318,1.4724,3.545354 +L 1.4724,3.545354,1.1183,2.849044 +L 1.1183,2.849044,0.768,2.135672 +L 3.3357,0.267004,3.9903,2.761406 +L 3.9903,2.761406,4.1833,4.967601 +L 4.1833,4.967601,4.1868,7.436567 +L 4.1868,7.436567,4.8873,7.436567 +L 4.8873,7.436567,5.5909,7.436567 +L 5.5909,7.436567,6.2918,7.436567 +L 6.2918,7.436567,6.2918,7.969059 +L 6.2918,7.969059,6.2918,8.49307 +L 6.2918,8.49307,6.2918,9.000126 +L 4.5822,0.000106,5.1426,0.000106 +L 5.1426,0.000106,5.7135,0.000106 +L 5.7135,0.000106,6.2918,0.000106 +L 6.2918,0.000106,6.3478,2.182309 +L 6.3478,2.182309,6.1198,3.67802 +L 6.1198,3.67802,5.0134,4.23318 +L 6.7222,0.000106,7.1495,0.000106 +L 7.1495,0.000106,7.5733,0.000106 +L 7.5733,0.000106,8.0006,0.000106 +L 3.3357,3.699341,2.0993,5.202035 +L 2.0993,5.202035,1.437,5.755783 +L 1.437,5.755783,0.768,5.834873 +L 6.7222,4.23318,6.4175,4.668174 +L 6.4175,4.668174,6.3093,5.221824 +L 6.3093,5.221824,6.2918,6.368723 +L 2.4772,5.834873,2.1799,6.307967 +L 2.1799,6.307967,2.0675,7.128678 +L 2.0675,7.128678,2.0499,9.000126 +L 1.1988,7.16968,1.0486,7.625776 +L 1.0486,7.625776,0.9015,8.07364 +L 0.9015,8.07364,0.768,8.504376 +L 2.9084,7.16968,3.0376,7.625776 +L 3.0376,7.625776,3.1812,8.07364 +L 3.1812,8.07364,3.3357,8.504376 +L 6.7222,7.436567,7.1495,7.436567 +L 7.1495,7.436567,7.5733,7.436567 +L 7.5733,7.436567,8.0006,7.436567 + +[紹] 57 +L 2.0835,0.000106,2.0835,1.600355 +L 2.0835,1.600355,2.0835,3.192252 +L 2.0835,3.192252,2.0835,4.767052 +L 2.0835,4.767052,1.6565,4.767052 +L 1.6565,4.767052,1.2257,4.767052 +L 1.2257,4.767052,0.8019,4.767052 +L 4.6157,0.000106,4.6157,1.247296 +L 4.6157,1.247296,4.6157,2.4775 +L 4.6157,2.4775,4.6157,3.699341 +L 4.6157,3.699341,5.5929,3.699341 +L 5.5929,3.699341,6.5771,3.699341 +L 6.5771,3.699341,7.5718,3.699341 +L 7.5718,3.699341,7.5718,2.4775 +L 7.5718,2.4775,7.5718,1.247296 +L 7.5718,1.247296,7.5718,0.000106 +L 7.5718,0.000106,6.5771,0.000106 +L 6.5771,0.000106,5.5929,0.000106 +L 5.5929,0.000106,4.6157,0.000106 +L 0.8019,1.334814,0.9312,1.971877 +L 0.9312,1.971877,1.0783,2.591866 +L 1.0783,2.591866,1.2257,3.203482 +L 3.3342,1.868774,3.1832,2.324979 +L 3.1832,2.324979,3.0361,2.772735 +L 3.0361,2.772735,2.9069,3.203482 +L 3.3342,4.500155,3.1832,4.767052 +L 3.1832,4.767052,3.0361,5.034027 +L 3.0361,5.034027,2.9069,5.300914 +L 2.9069,5.300914,2.7633,5.13713 +L 2.7633,5.13713,2.6298,4.95636 +L 2.6298,4.95636,2.5076,4.767052 +L 1.6565,5.300914,1.7858,5.56791 +L 1.7858,5.56791,1.9294,5.834873 +L 1.9294,5.834873,2.0835,6.101836 +L 2.0835,6.101836,1.7858,6.471827 +L 1.7858,6.471827,1.5056,6.825028 +L 1.5056,6.825028,1.2257,7.16968 +L 1.2257,7.16968,1.5056,7.779762 +L 1.5056,7.779762,1.7858,8.389934 +L 1.7858,8.389934,2.0835,9.000126 +L 4.1884,5.300914,5.0886,6.843382 +L 5.0886,6.843382,5.4217,7.67388 +L 5.4217,7.67388,5.4703,8.504376 +L 5.4703,8.504376,5.0395,8.504376 +L 5.0395,8.504376,4.6157,8.504376 +L 4.6157,8.504376,4.1884,8.504376 +L 6.3214,5.300914,6.5981,5.300914 +L 6.5981,5.300914,6.8717,5.300914 +L 6.8717,5.300914,7.148,5.300914 +L 7.148,5.300914,7.7508,6.487402 +L 7.7508,6.487402,7.9714,7.317965 +L 7.9714,7.317965,8.0026,8.504376 +L 8.0026,8.504376,7.3025,8.504376 +L 7.3025,8.504376,6.5981,8.504376 +L 6.5981,8.504376,5.8976,8.504376 +L 2.5076,7.16968,2.6298,7.436567 +L 2.6298,7.436567,2.7633,7.703529 +L 2.7633,7.703529,2.9069,7.970515 + +[肖] 36 +L 1.655,0.000106,1.655,2.134325 +L 1.655,2.134325,1.655,4.260073 +L 1.655,4.260073,1.655,6.368723 +L 1.655,6.368723,2.5093,6.368723 +L 2.5093,6.368723,3.3639,6.368723 +L 3.3639,6.368723,4.2188,6.368723 +L 4.2188,6.368723,4.2188,7.245825 +L 4.2188,7.245825,4.2188,8.122981 +L 4.2188,8.122981,4.2188,9.000126 +L 5.4723,0.000106,5.8961,0.000106 +L 5.8961,0.000106,6.3234,0.000106 +L 6.3234,0.000106,6.7511,0.000106 +L 6.7511,0.000106,6.7511,1.067927 +L 6.7511,1.067927,6.7511,2.135672 +L 6.7511,2.135672,6.7511,3.203482 +L 6.7511,3.203482,5.1925,3.203482 +L 5.1925,3.203482,3.6409,3.203482 +L 3.6409,3.203482,2.0823,3.203482 +L 6.7511,3.699341,6.7511,4.069408 +L 6.7511,4.069408,6.7511,4.422499 +L 6.7511,4.422499,6.7511,4.767052 +L 6.7511,4.767052,5.1925,4.767052 +L 5.1925,4.767052,3.6409,4.767052 +L 3.6409,4.767052,2.0823,4.767052 +L 6.7511,5.300914,6.7511,5.671123 +L 6.7511,5.671123,6.7511,6.024104 +L 6.7511,6.024104,6.7511,6.368723 +L 6.7511,6.368723,6.0506,6.368723 +L 6.0506,6.368723,5.3497,6.368723 +L 5.3497,6.368723,4.6461,6.368723 +L 2.5093,7.703529,2.2154,8.14983 +L 2.2154,8.14983,1.9317,8.579153 +L 1.9317,8.579153,1.655,9.000126 +L 5.8961,7.436567,6.1728,7.969059 +L 6.1728,7.969059,6.4534,8.49307 +L 6.4534,8.49307,6.7511,9.000126 + +[衝] 69 +L 1.6885,0.000106,1.6041,1.600355 +L 1.6041,1.600355,1.5376,3.192252 +L 1.5376,3.192252,1.4749,4.767052 +L 1.4749,4.767052,1.2574,4.603192 +L 1.2574,4.603192,1.0476,4.422499 +L 1.0476,4.422499,0.8301,4.23318 +L 6.3538,0.000106,6.6305,0.000106 +L 6.6305,0.000106,6.9103,0.000106 +L 6.9103,0.000106,7.208,0.000106 +L 7.208,0.000106,7.208,1.945007 +L 7.208,1.945007,7.208,3.889908 +L 7.208,3.889908,7.208,5.834873 +L 7.208,5.834873,6.9103,5.834873 +L 6.9103,5.834873,6.6305,5.834873 +L 6.6305,5.834873,6.3538,5.834873 +L 2.5396,0.533978,3.093,0.533978 +L 3.093,0.533978,3.6496,0.533978 +L 3.6496,0.533978,4.2208,0.533978 +L 4.2208,0.533978,4.0772,1.728796 +L 4.0772,1.728796,3.6569,2.110224 +L 3.6569,2.110224,2.9669,2.135672 +L 4.6446,1.067927,4.9209,1.067927 +L 4.9209,1.067927,5.2046,1.067927 +L 5.2046,1.067927,5.5027,1.067927 +L 4.6446,2.135672,4.0138,2.887167 +L 4.0138,2.887167,3.5799,3.163926 +L 3.5799,3.163926,2.9669,3.203482 +L 2.9669,3.203482,2.9669,3.916833 +L 2.9669,3.916833,2.9669,4.613054 +L 2.9669,4.613054,2.9669,5.300914 +L 2.9669,5.300914,3.562,5.330674 +L 3.562,5.330674,3.8877,5.538216 +L 3.8877,5.538216,4.2208,6.101836 +L 4.2208,6.101836,4.0667,6.368723 +L 4.0667,6.368723,3.9231,6.635719 +L 3.9231,6.635719,3.7932,6.902684 +L 3.7932,6.902684,3.2188,6.825028 +L 3.2188,6.825028,2.6622,6.738823 +L 2.6622,6.738823,2.1158,6.635719 +L 2.1158,6.635719,1.9617,6.20494 +L 1.9617,6.20494,1.8181,5.757206 +L 1.8181,5.757206,1.6885,5.300914 +L 4.6446,3.203482,4.2208,3.546787 +L 4.2208,3.546787,3.8005,3.889908 +L 3.8005,3.889908,3.3977,4.23318 +L 5.2852,3.203482,5.3482,3.546787 +L 5.3482,3.546787,5.4186,3.889908 +L 5.4186,3.889908,5.5027,4.23318 +L 5.5027,4.23318,4.8824,4.252969 +L 4.8824,4.252969,4.55,4.391415 +L 4.55,4.391415,4.2208,4.767052 +L 4.2208,4.767052,4.55,5.122935 +L 4.55,5.122935,4.8824,5.122935 +L 4.8824,5.122935,5.5027,4.767052 +L 4.6446,6.902684,4.2975,7.4761 +L 4.2975,7.4761,3.8636,7.752958 +L 3.8636,7.752958,2.9669,7.970515 +L 5.0719,6.902684,5.3482,6.902684 +L 5.3482,6.902684,5.6284,6.902684 +L 5.6284,6.902684,5.9297,6.902684 +L 0.8301,7.436567,1.2574,7.969059 +L 1.2574,7.969059,1.6885,8.49307 +L 1.6885,8.49307,2.1158,9.000126 +L 4.6446,7.970515,4.9209,8.159735 +L 4.9209,8.159735,5.2046,8.340592 +L 5.2046,8.340592,5.5027,8.504376 +L 6.3538,8.504376,6.9033,8.504376 +L 6.9033,8.504376,7.4641,8.504376 +L 7.4641,8.504376,8.0346,8.504376 + +[訟] 26 +L 3.82,0.000106,4.0964,0.000106 +L 4.0964,0.000106,4.3801,0.000106 +L 4.3801,0.000106,4.6778,0.000106 +L 4.6778,0.000106,4.8984,1.933788 +L 4.8984,1.933788,5.3082,3.596139 +L 5.3082,3.596139,5.5289,5.300914 +L 5.1016,0.000106,5.8371,0.138563 +L 5.8371,0.138563,6.4749,0.395621 +L 6.4749,0.395621,7.21,0.533978 +L 7.21,0.533978,7.4902,1.147039 +L 7.4902,1.147039,7.4902,1.700689 +L 7.4902,1.700689,7.21,2.669598 +L 3.82,4.500155,4.4224,6.250078 +L 4.4224,6.250078,4.6466,7.288238 +L 4.6466,7.288238,4.6778,8.504376 +L 8.0611,4.23318,7.326,5.901222 +L 7.326,5.901222,6.9088,7.459113 +L 6.9088,7.459113,6.7827,9.000126 +L 0.864,6.902639,3.3962,6.902639 +L 1.2878,8.504442,2.9689,8.504442 +L 1.2878,5.301089,2.9689,5.301089 +L 1.2878,4.233148,2.9689,4.233148 +L 1.2878,2.669653,2.9689,2.669653 +L 1.2878,0.000106,1.2878,2.669653 +L 2.9689,0.000106,1.2878,0.000106 +L 2.9689,2.669653,2.9689,0.000106 + +[詔] 48 +L 1.2579,0.000106,1.2579,0.904056 +L 1.2579,0.904056,1.2579,1.79103 +L 1.2579,1.79103,1.2579,2.669598 +L 1.2579,2.669598,1.8186,2.669598 +L 1.8186,2.669598,2.3892,2.669598 +L 2.3892,2.669598,2.9674,2.669598 +L 2.9674,2.669598,2.9674,1.79103 +L 2.9674,1.79103,2.9674,0.904056 +L 2.9674,0.904056,2.9674,0.000106 +L 2.9674,0.000106,2.3892,0.000106 +L 2.3892,0.000106,1.8186,0.000106 +L 1.8186,0.000106,1.2579,0.000106 +L 4.6763,0.000106,4.6763,1.067927 +L 4.6763,1.067927,4.6763,2.135693 +L 4.6763,2.135693,4.6763,3.203482 +L 4.6763,3.203482,5.5064,3.203482 +L 5.5064,3.203482,6.3575,3.203482 +L 6.3575,3.203482,7.2085,3.203482 +L 7.2085,3.203482,7.2085,2.135693 +L 7.2085,2.135693,7.2085,1.067927 +L 7.2085,1.067927,7.2085,0.000106 +L 7.2085,0.000106,6.3575,0.000106 +L 6.3575,0.000106,5.5064,0.000106 +L 5.5064,0.000106,4.6763,0.000106 +L 1.2579,4.233202,1.8186,4.233202 +L 1.8186,4.233202,2.3892,4.233202 +L 2.3892,4.233202,2.9674,4.233202 +L 4.2493,4.767063,4.9918,6.058088 +L 4.9918,6.058088,5.3838,7.111681 +L 5.3838,7.111681,5.4997,8.504387 +L 5.4997,8.504387,5.0759,8.504387 +L 5.0759,8.504387,4.6553,8.504387 +L 4.6553,8.504387,4.2493,8.504387 +L 6.3575,4.767063,7.5276,5.388584 +L 7.5276,5.388584,7.7238,6.840503 +L 7.7238,6.840503,7.6358,8.504387 +L 7.6358,8.504387,7.0583,8.504387 +L 7.0583,8.504387,6.4874,8.504387 +L 6.4874,8.504387,5.927,8.504387 +L 1.2579,5.300924,1.8186,5.300924 +L 1.8186,5.300924,2.3892,5.300924 +L 2.3892,5.300924,2.9674,5.300924 +L 0.8625,6.902684,1.696,6.902684 +L 1.696,6.902684,2.5436,6.902684 +L 2.5436,6.902684,3.3947,6.902684 +L 1.2579,8.504387,1.8186,8.504387 +L 1.8186,8.504387,2.3892,8.504387 +L 2.3892,8.504387,2.9674,8.504387 + +[詳] 48 +L 1.2918,0.000106,1.2918,0.723308 +L 1.2918,0.723308,1.2918,1.438005 +L 1.2918,1.438005,1.2918,2.135693 +L 1.2918,2.135693,1.8448,2.135693 +L 1.8448,2.135693,2.4195,2.135693 +L 2.4195,2.135693,3.0006,2.135693 +L 3.0006,2.135693,3.0006,1.438005 +L 3.0006,1.438005,3.0006,0.723308 +L 3.0006,0.723308,3.0006,0.000106 +L 3.0006,0.000106,2.4195,0.000106 +L 2.4195,0.000106,1.8448,0.000106 +L 1.8448,0.000106,1.2918,0.000106 +L 5.9567,0.000106,5.8029,2.099005 +L 5.8029,2.099005,5.176,2.68085 +L 5.176,2.68085,3.8205,2.669598 +L 6.384,2.669598,5.8901,3.738776 +L 5.8901,3.738776,5.6418,4.485992 +L 5.6418,4.485992,4.6748,4.767063 +L 6.8151,2.669598,7.2179,2.669598 +L 7.2179,2.669598,7.6378,2.669598 +L 7.6378,2.669598,8.0616,2.669598 +L 1.2918,3.699341,1.8448,3.699341 +L 1.8448,3.699341,2.4195,3.699341 +L 2.4195,3.699341,3.0006,3.699341 +L 6.384,4.767063,6.0831,5.202035 +L 6.0831,5.202035,5.9742,5.755783 +L 5.9742,5.755783,5.9567,6.902684 +L 5.9567,6.902684,5.3791,6.902684 +L 5.3791,6.902684,4.8082,6.902684 +L 4.8082,6.902684,4.2478,6.902684 +L 1.2918,5.300924,1.8448,5.300924 +L 1.8448,5.300924,2.4195,5.300924 +L 2.4195,5.300924,3.0006,5.300924 +L 0.8645,6.902684,1.6945,6.902684 +L 1.6945,6.902684,2.5421,6.902684 +L 2.5421,6.902684,3.3967,6.902684 +L 6.384,7.16968,6.6607,7.779762 +L 6.6607,7.779762,6.9444,8.389934 +L 6.9444,8.389934,7.2389,9.00016 +L 6.8151,6.902684,7.0845,6.902684 +L 7.0845,6.902684,7.3615,6.902684 +L 7.3615,6.902684,7.6378,6.902684 +L 5.1056,8.237402,4.9518,8.502964 +L 4.9518,8.502964,4.8082,8.760034 +L 4.8082,8.760034,4.6748,9.00016 +L 1.2918,8.504387,1.8448,8.504387 +L 1.8448,8.504387,2.4195,8.504387 +L 2.4195,8.504387,3.0006,8.504387 + +[鐘] 84 +L 0.8595,0.000106,1.2692,0.000106 +L 1.2692,0.000106,1.6857,0.000106 +L 1.6857,0.000106,2.113,0.000106 +L 2.113,0.000106,2.0993,2.998719 +L 2.0993,2.998719,1.9942,4.234636 +L 1.9942,4.234636,1.7176,4.767063 +L 1.7176,4.767063,1.4195,4.767063 +L 1.4195,4.767063,1.1393,4.767063 +L 1.1393,4.767063,0.8595,4.767063 +L 3.8225,0.000106,4.523,0.000106 +L 4.523,0.000106,5.2267,0.000106 +L 5.2267,0.000106,5.9275,0.000106 +L 5.9275,0.000106,5.9131,0.771302 +L 5.9131,0.771302,5.8084,1.186507 +L 5.8084,1.186507,5.5314,1.601788 +L 5.5314,1.601788,5.1041,1.601788 +L 5.1041,1.601788,4.6736,1.601788 +L 4.6736,1.601788,4.2495,1.601788 +L 6.3548,0.000106,6.9117,0.000106 +L 6.9117,0.000106,7.4861,0.000106 +L 7.4861,0.000106,8.0636,0.000106 +L 1.2903,1.868774,1.1393,2.324979 +L 1.1393,2.324979,0.9922,2.772735 +L 0.9922,2.772735,0.8595,3.203482 +L 6.3548,1.601788,6.0816,2.135693 +L 6.0816,2.135693,5.8049,2.669598 +L 5.8049,2.669598,5.5314,3.203482 +L 5.5314,3.203482,5.234,3.203482 +L 5.234,3.203482,4.9503,3.203482 +L 4.9503,3.203482,4.6736,3.203482 +L 4.6736,3.203482,4.6736,3.916833 +L 4.6736,3.916833,4.6736,4.613076 +L 4.6736,4.613076,4.6736,5.300924 +L 4.6736,5.300924,5.5104,5.300924 +L 5.5104,5.300924,6.3548,5.300924 +L 6.3548,5.300924,7.2055,5.300924 +L 7.2055,5.300924,7.2055,4.613076 +L 7.2055,4.613076,7.2055,3.916833 +L 7.2055,3.916833,7.2055,3.203482 +L 7.2055,3.203482,6.5611,3.24168 +L 6.5611,3.24168,6.0147,3.508578 +L 6.0147,3.508578,5.1041,4.233202 +L 6.7852,1.601788,7.0553,1.601788 +L 7.0553,1.601788,7.339,1.601788 +L 7.339,1.601788,7.6363,1.601788 +L 2.9644,2.135693,2.9644,2.505848 +L 2.9644,2.505848,2.9644,2.85895 +L 2.9644,2.85895,2.9644,3.203482 +L 2.5406,4.767063,2.2429,5.182345 +L 2.2429,5.182345,2.1305,5.597572 +L 2.1305,5.597572,2.113,6.368723 +L 2.113,6.368723,1.5176,6.388545 +L 1.5176,6.388545,1.1953,6.526979 +L 1.1953,6.526979,0.8595,6.902684 +L 0.8595,6.902684,1.1988,7.539692 +L 1.1988,7.539692,1.5456,8.159735 +L 1.5456,8.159735,1.8997,8.771252 +L 1.8997,8.771252,2.2461,8.504387 +L 2.2461,8.504387,2.6002,8.237402 +L 2.6002,8.237402,2.9644,7.970515 +L 3.8225,6.368723,4.2495,6.471827 +L 4.2495,6.471827,4.6736,6.558064 +L 4.6736,6.558064,5.1041,6.635719 +L 5.1041,6.635719,4.9503,7.005786 +L 4.9503,7.005786,4.8102,7.358889 +L 4.8102,7.358889,4.6736,7.703529 +L 4.6736,7.703529,5.0831,7.806731 +L 5.0831,7.806731,5.5037,7.892772 +L 5.5037,7.892772,5.9275,7.970515 +L 5.9275,7.970515,5.9275,8.313711 +L 5.9275,8.313711,5.9275,8.656952 +L 5.9275,8.656952,5.9275,9.00016 +L 5.5314,6.368723,5.9342,6.471827 +L 5.9342,6.471827,6.3548,6.558064 +L 6.3548,6.558064,6.7852,6.635719 +L 6.7852,6.635719,6.9117,7.005786 +L 6.9117,7.005786,7.0553,7.358889 +L 7.0553,7.358889,7.2055,7.703529 +L 7.2055,7.703529,6.9117,7.806731 +L 6.9117,7.806731,6.6315,7.892772 +L 6.6315,7.892772,6.3548,7.970515 +L 7.2055,6.368723,7.4861,6.368723 +L 7.4861,6.368723,7.7663,6.368723 +L 7.7663,6.368723,8.0636,6.368723 + +[丈] 18 +L 0.865,0.000106,1.9854,0.445093 +L 1.9854,0.445093,2.8719,1.067927 +L 2.8719,1.067927,4.2798,2.402635 +L 4.2798,2.402635,3.3619,3.552424 +L 3.3619,3.552424,2.9205,4.303864 +L 2.9205,4.303864,2.5703,5.300924 +L 7.2429,0.000106,6.3845,0.533978 +L 6.3845,0.533978,5.5334,1.067927 +L 5.5334,1.067927,4.6788,1.601788 +L 4.6788,3.470489,5.008,6.241727 +L 5.008,6.241727,2.9104,6.953513 +L 2.9104,6.953513,0.865,6.902684 +L 5.5334,6.902684,5.2325,7.336221 +L 5.2325,7.336221,5.1201,7.880097 +L 5.1201,7.880097,5.1026,9.00016 +L 5.9537,6.902684,6.6612,6.902684 +L 6.6612,6.902684,7.3687,6.902684 +L 7.3687,6.902684,8.094,6.902684 + + +# kan_30 ------------------------------------------------------- +# 冗剰壌嬢浄畳譲醸錠嘱飾殖触辱L侵唇娠審慎振浸紳薪診辛震尋甚尽迅陣酢吹帥炊睡粋衰遂酔錘随髄崇枢据杉澄瀬 + +[冗] 21 +L 0.2167,0.038206,1.5897,2.145544 +L 1.5897,2.145544,2.059,3.752896 +L 2.059,3.752896,2.1084,6.368723 +L 2.1084,6.368723,2.812,6.368723 +L 2.812,6.368723,3.523,6.368723 +L 3.523,6.368723,4.2449,6.368723 +L 4.2449,6.368723,4.0554,2.659726 +L 4.0554,2.659726,4.427,0.64552 +L 4.427,0.64552,6.7768,0.038206 +L 6.7768,0.038206,6.7768,0.570656 +L 6.7768,0.570656,6.7768,1.094732 +L 6.7768,1.094732,6.7768,1.601788 +L 0.0034,6.902595,0.0034,7.436456 +L 0.0034,7.436456,0.0034,7.970428 +L 0.0034,7.970428,0.0034,8.504289 +L 0.0034,8.504289,2.1115,8.504289 +L 2.1115,8.504289,4.2239,8.504289 +L 4.2239,8.504289,6.3498,8.504289 +L 6.3498,8.504289,6.3498,7.970428 +L 6.3498,7.970428,6.3498,7.436456 +L 6.3498,7.436456,6.3498,6.902595 + +[剰] 54 +L 2.1416,0.038206,2.0578,1.104517 +L 2.0578,1.104517,1.9878,2.162531 +L 1.9878,2.162531,1.9279,3.203372 +L 1.9279,3.203372,1.2835,2.324957 +L 1.2835,2.324957,0.6425,1.437906 +L 0.6425,1.437906,0.0019,0.533989 +L 5.9557,0.038206,6.2254,0.038206 +L 6.2254,0.038206,6.5126,0.038206 +L 6.5126,0.038206,6.8068,0.038206 +L 6.8068,0.038206,6.8068,3.049483 +L 6.8068,3.049483,6.8068,6.052321 +L 6.8068,6.052321,6.8068,9.03815 +L 3.8157,0.800865,3.3923,1.437906 +L 3.3923,1.437906,2.9716,2.057895 +L 2.9716,2.057895,2.5653,2.669522 +L 5.5249,2.13565,5.5249,4.080648 +L 5.5249,4.080648,5.5249,6.025538 +L 5.5249,6.025538,5.5249,7.970428 +L 0.8562,3.737343,0.8246,4.507171 +L 0.8246,4.507171,0.604,4.912492 +L 0.604,4.912492,0.0019,5.300914 +L 1.2835,3.737343,1.5605,3.737343 +L 1.5605,3.737343,1.8442,3.737343 +L 1.8442,3.737343,2.1416,3.737343 +L 2.1416,3.737343,2.1416,4.107443 +L 2.1416,4.107443,2.1416,4.460435 +L 2.1416,4.460435,2.1416,4.805175 +L 2.1416,4.805175,1.7107,5.148393 +L 1.7107,5.148393,1.2835,5.491578 +L 1.2835,5.491578,0.8562,5.834774 +L 0.8562,5.834774,0.8562,6.204875 +L 0.8562,6.204875,0.8562,6.557965 +L 0.8562,6.557965,0.8562,6.902595 +L 0.8562,6.902595,1.4726,6.932246 +L 1.4726,6.932246,1.8088,7.13992 +L 1.8088,7.13992,2.1416,7.703442 +L 2.1416,7.703442,1.5605,7.806545 +L 1.5605,7.806545,0.9861,7.892673 +L 0.9861,7.892673,0.4324,7.970428 +L 2.5653,3.737343,2.842,3.737343 +L 2.842,3.737343,3.1257,3.737343 +L 3.1257,3.737343,3.4199,3.737343 +L 3.4199,3.737343,3.3748,4.536755 +L 3.3748,4.536755,3.0417,5.149706 +L 3.0417,5.149706,2.1416,6.101771 +L 2.1416,6.101771,2.4673,6.665348 +L 2.4673,6.665348,2.8035,6.872846 +L 2.8035,6.872846,3.4199,6.902595 +L 3.4199,6.902595,3.4515,6.131433 +L 3.4515,6.131433,3.6616,5.716228 +L 3.6616,5.716228,4.2465,5.300914 +L 2.5653,7.970428,2.8984,8.346076 +L 2.8984,8.346076,3.2238,8.4845 +L 3.2238,8.4845,3.8157,8.504289 + +[壌] 57 +L 2.5673,0.038206,2.9946,0.038206 +L 2.9946,0.038206,3.4184,0.038206 +L 3.4184,0.038206,3.8496,0.038206 +L 3.8496,0.038206,3.8496,0.570656 +L 3.8496,0.570656,3.8496,1.094732 +L 3.8496,1.094732,3.8496,1.601788 +L 3.8496,1.601788,3.2678,1.437906 +L 3.2678,1.437906,2.6969,1.257147 +L 2.6969,1.257147,2.14,1.067829 +L 6.8057,0.038206,5.6288,1.553794 +L 5.6288,1.553794,5.1907,2.374331 +L 5.1907,2.374331,5.1245,3.203372 +L 5.1245,3.203372,4.5112,2.985859 +L 4.5112,2.985859,4.1785,2.709165 +L 4.1785,2.709165,3.8496,2.13565 +L 4.2734,0.533989,4.5497,0.533989 +L 4.5497,0.533989,4.8334,0.533989 +L 4.8334,0.533989,5.1245,0.533989 +L 0.0351,2.13565,0.3118,2.13565 +L 0.3118,2.13565,0.592,2.13565 +L 0.592,2.13565,0.8897,2.13565 +L 0.8897,2.13565,0.8897,3.382807 +L 0.8897,3.382807,0.8897,4.613076 +L 0.8897,4.613076,0.8897,5.834774 +L 0.8897,5.834774,0.592,6.024093 +L 0.592,6.024093,0.3118,6.204875 +L 0.3118,6.204875,0.0351,6.368723 +L 2.5673,3.203372,2.9946,3.306574 +L 2.9946,3.306574,3.4184,3.392723 +L 3.4184,3.392723,3.8496,3.470445 +L 3.8496,3.470445,3.5554,3.737343 +L 3.5554,3.737343,3.2678,4.004317 +L 3.2678,4.004317,2.9946,4.271204 +L 5.5549,3.470445,4.7007,4.419554 +L 4.7007,4.419554,3.5659,5.063579 +L 3.5659,5.063579,2.5673,5.300914 +L 5.9822,3.203372,6.2593,3.203372 +L 6.2593,3.203372,6.5356,3.203372 +L 6.5356,3.203372,6.8057,3.203372 +L 5.9822,4.271204,5.1101,5.055271 +L 5.1101,5.055271,4.147,5.737352 +L 4.147,5.737352,2.9946,6.902595 +L 5.9822,5.300914,5.7756,6.101771 +L 5.7756,6.101771,5.7619,6.902595 +L 5.7619,6.902595,5.5549,7.703442 +L 5.5549,7.703442,4.977,7.625776 +L 4.977,7.625776,4.4065,7.53967 +L 4.4065,7.53967,3.8496,7.436456 +L 1.3135,6.368723,1.0193,6.823495 +L 1.0193,6.823495,0.9072,7.515579 +L 0.9072,7.515579,0.8897,9.03815 +L 2.5673,7.970428,2.844,7.970428 +L 2.844,7.970428,3.1242,7.970428 +L 3.1242,7.970428,3.4184,7.970428 +L 5.9822,7.970428,6.2593,7.970428 +L 6.2593,7.970428,6.5356,7.970428 +L 6.5356,7.970428,6.8057,7.970428 + +[嬢] 64 +L 0.0616,0.038206,0.4714,0.83763 +L 0.4714,0.83763,0.892,1.628571 +L 0.892,1.628571,1.3155,2.402646 +L 1.3155,2.402646,0.892,2.505651 +L 0.892,2.505651,0.4714,2.591844 +L 0.4714,2.591844,0.0616,2.669522 +L 0.0616,2.669522,0.174,4.4393 +L 0.174,4.4393,0.3803,6.200726 +L 0.3803,6.200726,0.4924,9.03815 +L 2.5974,0.038206,3.0247,0.038206 +L 3.0247,0.038206,3.452,0.038206 +L 3.452,0.038206,3.8796,0.038206 +L 3.8796,0.038206,3.8796,0.570656 +L 3.8796,0.570656,3.8796,1.094732 +L 3.8796,1.094732,3.8796,1.601788 +L 3.8796,1.601788,3.5816,1.601788 +L 3.5816,1.601788,3.3017,1.601788 +L 3.3017,1.601788,3.0247,1.601788 +L 6.8388,0.038206,5.6375,1.553794 +L 5.6375,1.553794,5.1892,2.374331 +L 5.1892,2.374331,5.1296,3.203372 +L 5.1296,3.203372,4.5342,2.985859 +L 4.5342,2.985859,4.2085,2.709165 +L 4.2085,2.709165,3.8796,2.13565 +L 4.3066,0.533989,4.5833,0.533989 +L 4.5833,0.533989,4.8529,0.533989 +L 4.8529,0.533989,5.1296,0.533989 +L 1.3155,3.203372,1.6167,3.696364 +L 1.6167,3.696364,1.7288,4.655423 +L 1.7288,4.655423,1.7431,6.902595 +L 1.7431,6.902595,1.4489,6.902595 +L 1.4489,6.902595,1.1649,6.902595 +L 1.1649,6.902595,0.8882,6.902595 +L 2.5974,3.203372,3.0247,3.306574 +L 3.0247,3.306574,3.452,3.392723 +L 3.452,3.392723,3.8796,3.470445 +L 3.8796,3.470445,3.5816,3.737343 +L 3.5816,3.737343,3.3017,4.004317 +L 3.3017,4.004317,3.0247,4.271204 +L 5.5569,3.470445,4.6992,4.436454 +L 4.6992,4.436454,3.5749,5.07205 +L 3.5749,5.07205,2.5974,5.300914 +L 5.9846,3.203372,6.2578,3.203372 +L 6.2578,3.203372,6.5376,3.203372 +L 6.5376,3.203372,6.8388,3.203372 +L 5.9846,4.271204,5.1191,5.055271 +L 5.1191,5.055271,4.17,5.737352 +L 4.17,5.737352,3.0247,6.902595 +L 5.9846,5.300914,5.7776,6.101771 +L 5.7776,6.101771,5.7636,6.902595 +L 5.7636,6.902595,5.5569,7.703442 +L 5.5569,7.703442,4.986,7.625776 +L 4.986,7.625776,4.426,7.53967 +L 4.426,7.53967,3.8796,7.436456 +L 2.5974,7.970428,2.8741,7.970428 +L 2.8741,7.970428,3.1543,7.970428 +L 3.1543,7.970428,3.452,7.970428 +L 5.9846,7.970428,6.2578,7.970428 +L 6.2578,7.970428,6.5376,7.970428 +L 6.5376,7.970428,6.8388,7.970428 +L 3.466,6.368526,-0.1345,6.368526 +L 0.7236,3.364747,1.347,9.038106 +A -4.6702,-3.361339,8.620982,23.224227,51.278884 +A -6.53,6.368526,9.138971,316.15783,0 + +[浄] 45 +L 0.0639,0.305104,0.4909,1.449246 +L 0.4909,1.449246,0.9217,2.5933 +L 0.9217,2.5933,1.3455,3.737343 +L 3.0547,0.038206,3.461,0.038206 +L 3.461,0.038206,3.8781,0.038206 +L 3.8781,0.038206,4.3054,0.038206 +L 4.3054,0.038206,4.221,1.906808 +L 4.221,1.906808,3.7695,2.580614 +L 3.7695,2.580614,2.6309,2.669522 +L 4.7359,2.669522,3.9723,4.087555 +L 3.9723,4.087555,3.6921,4.683629 +L 3.6921,4.683629,2.2004,4.805175 +L 5.1565,2.669522,5.4367,2.669522 +L 5.4367,2.669522,5.7166,2.669522 +L 5.7166,2.669522,6.0146,2.669522 +L 6.0146,2.669522,5.7866,4.461967 +L 5.7866,4.461967,5.1845,4.805175 +L 5.1845,4.805175,4.3054,5.300914 +L 4.3054,5.300914,4.3054,5.67098 +L 4.3054,5.67098,4.3054,6.024093 +L 4.3054,6.024093,4.3054,6.368723 +L 4.3054,6.368723,3.1111,6.388523 +L 3.1111,6.388523,2.5647,6.52687 +L 2.5647,6.52687,2.2004,6.902595 +L 2.2004,6.902595,2.9395,7.693559 +L 2.9395,7.693559,3.2648,8.247198 +L 3.2648,8.247198,3.447,9.03815 +L 6.4419,4.805175,6.1403,5.193564 +L 6.1403,5.193564,6.0283,5.598918 +L 6.0283,5.598918,6.0146,6.368723 +L 6.0146,6.368723,5.587,6.471827 +L 5.587,6.471827,5.1565,6.557965 +L 5.1565,6.557965,4.7359,6.635621 +L 4.7359,6.635621,4.8623,7.005699 +L 4.8623,7.005699,5.0056,7.35879 +L 5.0056,7.35879,5.1565,7.703442 +L 5.1565,7.703442,4.7359,7.806545 +L 4.7359,7.806545,4.3054,7.892673 +L 4.3054,7.892673,3.8781,7.970428 +L 0.9217,5.834774,0.624,6.204875 +L 0.624,6.204875,0.3403,6.557965 +L 0.3403,6.557965,0.0639,6.902595 +L 1.3455,7.970428,1.0513,8.340494 +L 1.0513,8.340494,0.7676,8.693586 +L 0.7676,8.693586,0.4909,9.03815 + +[畳] 51 +L 0.094,0.038206,0.6435,0.038206 +L 0.6435,0.038206,1.2039,0.038206 +L 1.2039,0.038206,1.7751,0.038206 +L 1.7751,0.038206,1.7751,1.285386 +L 1.7751,1.285386,1.7751,2.515545 +L 1.7751,2.515545,1.7751,3.737343 +L 1.7751,3.737343,2.9064,3.737343 +L 2.9064,3.737343,4.0444,3.737343 +L 4.0444,3.737343,5.1932,3.737343 +L 5.1932,3.737343,5.1932,2.515545 +L 5.1932,2.515545,5.1932,1.285386 +L 5.1932,1.285386,5.1932,0.038206 +L 5.1932,0.038206,5.7396,0.038206 +L 5.7396,0.038206,6.2965,0.038206 +L 6.2965,0.038206,6.8674,0.038206 +L 2.1989,0.038206,3.0532,0.038206 +L 3.0532,0.038206,3.9043,0.038206 +L 3.9043,0.038206,4.7624,0.038206 +L 2.1989,1.601788,3.0532,1.601788 +L 3.0532,1.601788,3.9043,1.601788 +L 3.9043,1.601788,4.7624,1.601788 +L 2.1989,2.669522,3.0532,2.669522 +L 3.0532,2.669522,3.9043,2.669522 +L 3.9043,2.669522,4.7624,2.669522 +L 0.094,3.737343,0.094,4.269879 +L 0.094,4.269879,0.094,4.793934 +L 0.094,4.793934,0.094,5.300914 +L 0.094,5.300914,2.353,5.300914 +L 2.353,5.300914,4.6086,5.300914 +L 4.6086,5.300914,6.8674,5.300914 +L 6.8674,5.300914,6.8674,4.793934 +L 6.8674,4.793934,6.8674,4.269879 +L 6.8674,4.269879,6.8674,3.737343 +L 1.3794,6.368723,1.3794,7.091892 +L 1.3794,7.091892,1.3794,7.806545 +L 1.3794,7.806545,1.3794,8.504289 +L 1.3794,8.504289,2.7835,8.504289 +L 2.7835,8.504289,4.1848,8.504289 +L 4.1848,8.504289,5.5855,8.504289 +L 5.5855,8.504289,5.5855,7.806545 +L 5.5855,7.806545,5.5855,7.091892 +L 5.5855,7.091892,5.5855,6.368723 +L 5.5855,6.368723,4.1848,6.368723 +L 4.1848,6.368723,2.7835,6.368723 +L 2.7835,6.368723,1.3794,6.368723 +L 3.4843,6.902595,3.1337,7.278365 +L 3.1337,7.278365,2.6889,7.416799 +L 2.6889,7.416799,1.7751,7.436456 +L 4.3354,7.436456,4.6118,7.436456 +L 4.6118,7.436456,4.8955,7.436456 +L 4.8955,7.436456,5.1932,7.436456 + +[譲] 80 +L 0.5229,0.038206,0.5229,0.751513 +L 0.5229,0.751513,0.5229,1.447801 +L 0.5229,1.447801,0.5229,2.13565 +L 0.5229,2.13565,0.9467,2.13565 +L 0.9467,2.13565,1.3775,2.13565 +L 1.3775,2.13565,1.8052,2.13565 +L 1.8052,2.13565,1.8052,1.447801 +L 1.8052,1.447801,1.8052,0.751513 +L 1.8052,0.751513,1.8052,0.038206 +L 1.8052,0.038206,1.3775,0.038206 +L 1.3775,0.038206,0.9467,0.038206 +L 0.9467,0.038206,0.5229,0.038206 +L 3.0867,0.038206,3.493,0.038206 +L 3.493,0.038206,3.9101,0.038206 +L 3.9101,0.038206,4.3371,0.038206 +L 4.3371,0.038206,4.2534,0.751513 +L 4.2534,0.751513,4.1865,1.447801 +L 4.1865,1.447801,4.1238,2.13565 +L 4.1238,2.13565,3.7662,1.971779 +L 3.7662,1.971779,3.4233,1.791008 +L 3.4233,1.791008,3.0867,1.601788 +L 6.8977,0.038206,6.6035,0.381359 +L 6.6035,0.381359,6.3198,0.724632 +L 6.3198,0.724632,6.0428,1.067829 +L 6.0428,1.067829,5.7104,0.692092 +L 5.7104,0.692092,5.3808,0.553745 +L 5.3808,0.553745,4.7644,0.533989 +L 6.0428,1.601788,5.7451,2.016993 +L 5.7451,2.016993,5.633,2.432296 +L 5.633,2.432296,5.6193,3.203372 +L 5.6193,3.203372,5.3181,3.039621 +L 5.3181,3.039621,5.0376,2.858851 +L 5.0376,2.858851,4.7644,2.669522 +L 6.4736,1.601788,6.7468,2.057895 +L 6.7468,2.057895,7.0273,2.505651 +L 7.0273,2.505651,7.3247,2.936485 +L 7.3247,2.936485,5.3528,3.743012 +L 5.3528,3.743012,4.6733,3.693562 +L 4.6733,3.693562,3.0867,3.203372 +L 0.5229,3.737343,0.9467,3.737343 +L 0.9467,3.737343,1.3775,3.737343 +L 1.3775,3.737343,1.8052,3.737343 +L 3.728,4.271204,3.8506,4.538178 +L 3.8506,4.538178,3.9802,4.805175 +L 3.9802,4.805175,4.1238,5.07205 +L 4.1238,5.07205,3.7662,5.148393 +L 3.7662,5.148393,3.4233,5.22468 +L 3.4233,5.22468,3.0867,5.300914 +L 6.4736,4.271204,5.6018,5.055271 +L 5.6018,5.055271,4.6453,5.737352 +L 4.6453,5.737352,3.5105,6.902595 +L 0.5229,5.300914,0.9467,5.300914 +L 0.9467,5.300914,1.3775,5.300914 +L 1.3775,5.300914,1.8052,5.300914 +L 6.4736,5.300914,6.2673,6.101771 +L 6.2673,6.101771,6.2529,6.902595 +L 6.2529,6.902595,6.0428,7.703442 +L 6.0428,7.703442,5.4687,7.625776 +L 5.4687,7.625776,4.894,7.53967 +L 4.894,7.53967,4.3371,7.436456 +L 0.1271,6.902595,0.8315,6.902595 +L 0.8315,6.902595,1.532,6.902595 +L 1.532,6.902595,2.2321,6.902595 +L 3.0867,7.970428,3.3638,7.970428 +L 3.3638,7.970428,3.6436,7.970428 +L 3.6436,7.970428,3.9417,7.970428 +L 6.4736,7.970428,6.7468,7.970428 +L 6.7468,7.970428,7.0273,7.970428 +L 7.0273,7.970428,7.3247,7.970428 +L 0.5229,8.504289,0.9467,8.504289 +L 0.9467,8.504289,1.3775,8.504289 +L 1.3775,8.504289,1.8052,8.504289 +L 0.096,6.94074,2.6279,6.94074 +L 0.5229,8.542542,2.2009,8.542542 +L 0.5229,5.339189,2.2009,5.339189 +L 0.5229,4.271248,2.2009,4.271248 +L 0.5229,2.707754,2.2009,2.707754 +L 0.5229,0.038206,0.5229,2.707754 +L 2.2009,0.038206,0.5229,0.038206 +L 2.2009,2.707754,2.2009,0.038206 + +[醸] 75 +L 0.126,0.038206,0.3743,3.046604 +L 0.3743,3.046604,0.7701,5.978868 +L 0.7701,5.978868,0.9802,8.504289 +L 0.9802,8.504289,0.686,8.504289 +L 0.686,8.504289,0.4023,8.504289 +L 0.4023,8.504289,0.126,8.504289 +L 0.5529,0.038206,1.2534,0.038206 +L 1.2534,0.038206,1.9578,0.038206 +L 1.9578,0.038206,2.6579,0.038206 +L 2.6579,0.038206,2.6579,0.751513 +L 2.6579,0.751513,2.6579,1.447801 +L 2.6579,1.447801,2.6579,2.13565 +L 2.6579,2.13565,1.9578,2.13565 +L 1.9578,2.13565,1.2534,2.13565 +L 1.2534,2.13565,0.5529,2.13565 +L 3.5164,0.038206,3.7857,0.038206 +L 3.7857,0.038206,4.0694,0.038206 +L 4.0694,0.038206,4.3675,0.038206 +L 4.3675,0.038206,4.3675,0.570656 +L 4.3675,0.570656,4.3675,1.094732 +L 4.3675,1.094732,4.3675,1.601788 +L 4.3675,1.601788,4.0694,1.601788 +L 4.0694,1.601788,3.7857,1.601788 +L 3.7857,1.601788,3.5164,1.601788 +L 4.7944,0.038206,5.2217,0.484539 +L 5.2217,0.484539,5.6455,0.913863 +L 5.6455,0.913863,6.0766,1.334726 +L 6.0766,1.334726,5.926,1.971779 +L 5.926,1.971779,5.7751,2.591844 +L 5.7751,2.591844,5.6455,3.203372 +L 5.6455,3.203372,5.0329,2.985859 +L 5.0329,2.985859,4.7002,2.709165 +L 4.7002,2.709165,4.3675,2.13565 +L 6.5004,1.601788,6.7768,2.057895 +L 6.7768,2.057895,7.05,2.505651 +L 7.05,2.505651,7.3267,2.936485 +L 7.3267,2.936485,6.2903,3.519808 +L 6.2903,3.519808,5.4248,4.043895 +L 5.4248,4.043895,4.3675,4.271204 +L 4.3675,4.271204,4.3675,3.926562 +L 4.3675,3.926562,4.3675,3.573461 +L 4.3675,3.573461,4.3675,3.203372 +L 4.3675,3.203372,4.0694,3.203372 +L 4.0694,3.203372,3.7857,3.203372 +L 3.7857,3.203372,3.5164,3.203372 +L 2.6579,2.669522,2.6579,3.039621 +L 2.6579,3.039621,2.6579,3.392723 +L 2.6579,3.392723,2.6579,3.737343 +L 2.6579,3.737343,2.3847,3.737343 +L 2.3847,3.737343,2.1115,3.737343 +L 2.1115,3.737343,1.8352,3.737343 +L 1.8352,3.737343,1.8173,5.233152 +L 1.8173,5.233152,1.7087,5.91532 +L 1.7087,5.91532,1.4114,6.368723 +L 1.4114,6.368723,1.0923,5.429356 +L 1.0923,5.429356,0.8682,4.142751 +L 0.8682,4.142751,0.5529,3.203372 +L 2.6579,4.271204,2.3325,5.945003 +L 2.3325,5.945003,1.8734,7.161143 +L 1.8734,7.161143,1.4114,8.504289 +L 6.5004,4.271204,5.3128,5.207683 +L 5.3128,5.207683,4.497,5.127247 +L 4.497,5.127247,3.5164,5.300914 +L 6.5004,5.300914,6.2973,6.101771 +L 6.2973,6.101771,6.2798,6.902595 +L 6.2798,6.902595,6.0766,7.703442 +L 6.0766,7.703442,5.4949,7.703442 +L 5.4949,7.703442,4.924,7.703442 +L 4.924,7.703442,4.3675,7.703442 +L 4.3675,7.703442,4.0799,7.100363 +L 4.0799,7.100363,4.0799,6.615832 +L 4.0799,6.615832,4.3675,5.834774 +L 6.5004,7.970428,6.7768,7.970428 +L 6.7768,7.970428,7.05,7.970428 +L 7.05,7.970428,7.3267,7.970428 + +[錠] 63 +L 0.1592,0.038206,0.5619,0.038206 +L 0.5619,0.038206,0.9822,0.038206 +L 0.9822,0.038206,1.4099,0.038206 +L 1.4099,0.038206,1.392,3.036743 +L 1.392,3.036743,1.2904,4.272638 +L 1.2904,4.272638,1.0103,4.805175 +L 1.0103,4.805175,0.7129,4.805175 +L 0.7129,4.805175,0.4323,4.805175 +L 0.4323,4.805175,0.1592,4.805175 +L 3.1152,0.038206,3.718,1.197737 +L 3.718,1.197737,3.9383,2.018427 +L 3.9383,2.018427,3.9733,3.203372 +L 5.2202,0.305104,4.947,0.570656 +L 4.947,0.570656,4.6738,0.827725 +L 4.6738,0.827725,4.3936,1.067829 +L 5.6475,0.038206,6.2082,0.038206 +L 6.2082,0.038206,6.7756,0.038206 +L 6.7756,0.038206,7.3567,0.038206 +L 5.2202,1.067829,5.2202,2.478879 +L 5.2202,2.478879,5.2202,3.889897 +L 5.2202,3.889897,5.2202,5.300914 +L 5.2202,5.300914,4.6496,5.300914 +L 4.6496,5.300914,4.0959,5.300914 +L 4.0959,5.300914,3.5425,5.300914 +L 0.583,1.868675,0.4323,2.324957 +L 0.4323,2.324957,0.2887,2.772647 +L 0.2887,2.772647,0.1592,3.203372 +L 2.2641,2.13565,2.2641,2.505651 +L 2.2641,2.505651,2.2641,2.858851 +L 2.2641,2.858851,2.2641,3.203372 +L 5.6475,2.669522,6.0751,2.669522 +L 6.0751,2.669522,6.5056,2.669522 +L 6.5056,2.669522,6.9294,2.669522 +L 1.8337,4.805175,1.5356,5.193564 +L 1.5356,5.193564,1.4235,5.598918 +L 1.4235,5.598918,1.4099,6.368723 +L 1.4099,6.368723,0.8106,6.388523 +L 0.8106,6.388523,0.4849,6.52687 +L 0.4849,6.52687,0.1592,6.902595 +L 0.1592,6.902595,0.5619,7.625776 +L 0.5619,7.625776,0.9822,8.340494 +L 0.9822,8.340494,1.4099,9.03815 +L 1.4099,9.03815,1.6862,8.693586 +L 1.6862,8.693586,1.9668,8.340494 +L 1.9668,8.340494,2.2641,7.970428 +L 5.6475,5.300914,6.0751,5.300914 +L 6.0751,5.300914,6.5056,5.300914 +L 6.5056,5.300914,6.9294,5.300914 +L 3.1152,6.368723,3.1152,6.738747 +L 3.1152,6.738747,3.1152,7.091892 +L 3.1152,7.091892,3.1152,7.436456 +L 3.1152,7.436456,3.8196,7.436456 +L 3.8196,7.436456,4.5197,7.436456 +L 4.5197,7.436456,5.2202,7.436456 +L 5.2202,7.436456,5.2202,7.970428 +L 5.2202,7.970428,5.2202,8.504289 +L 5.2202,8.504289,5.2202,9.03815 +L 7.3567,6.368723,7.3567,6.738747 +L 7.3567,6.738747,7.3567,7.091892 +L 7.3567,7.091892,7.3567,7.436456 +L 7.3567,7.436456,6.7756,7.436456 +L 6.7756,7.436456,6.2082,7.436456 +L 6.2082,7.436456,5.6475,7.436456 + +[嘱] 66 +L 1.436,0.038206,2.7358,2.83475 +L 2.7358,2.83475,3.1277,5.402594 +L 3.1277,5.402594,3.1421,8.504289 +L 3.1421,8.504289,4.2765,8.504289 +L 4.2765,8.504289,5.4043,8.504289 +L 5.4043,8.504289,6.5325,8.504289 +L 6.5325,8.504289,6.5325,8.159746 +L 6.5325,8.159746,6.5325,7.806545 +L 6.5325,7.806545,6.5325,7.436456 +L 6.5325,7.436456,5.5374,7.436456 +L 5.5374,7.436456,4.5532,7.436456 +L 4.5532,7.436456,3.5725,7.436456 +L 3.5725,0.038206,3.5725,0.915297 +L 3.5725,0.915297,3.5725,1.792453 +L 3.5725,1.792453,3.5725,2.669522 +L 3.5725,2.669522,4.4692,2.6893 +L 4.4692,2.6893,4.907,2.827734 +L 4.907,2.827734,5.2537,3.203372 +L 5.2537,3.203372,4.9213,3.579119 +L 4.9213,3.579119,4.5848,3.717576 +L 4.5848,3.717576,3.9683,3.737343 +L 3.9683,3.737343,3.9683,4.107443 +L 3.9683,4.107443,3.9683,4.460435 +L 3.9683,4.460435,3.9683,4.805175 +L 3.9683,4.805175,4.5848,4.833391 +L 4.5848,4.833391,4.9213,5.03117 +L 4.9213,5.03117,5.2537,5.567812 +L 5.2537,5.567812,4.8229,5.67098 +L 4.8229,5.67098,4.3991,5.757108 +L 4.3991,5.757108,3.9683,5.834774 +L 6.9629,0.038206,6.7881,0.782532 +L 6.7881,0.782532,6.5636,1.18782 +L 6.5636,1.18782,6.1052,1.601788 +L 6.1052,1.601788,5.7581,1.226041 +L 5.7581,1.226041,5.3171,1.087618 +L 5.3171,1.087618,4.3991,1.067829 +L 5.2537,1.868675,5.597,2.432296 +L 5.597,2.432296,6.0421,2.639861 +L 6.0421,2.639861,6.9629,2.669522 +L 6.9629,2.669522,6.9629,2.324957 +L 6.9629,2.324957,6.9629,1.971779 +L 6.9629,1.971779,6.9629,1.601788 +L 0.1577,3.203372,0.1577,4.803741 +L 0.1577,4.803741,0.1577,6.39554 +L 0.1577,6.39554,0.1577,7.970428 +L 0.1577,7.970428,0.7145,7.970428 +L 0.7145,7.970428,1.2854,7.970428 +L 1.2854,7.970428,1.8672,7.970428 +L 1.8672,7.970428,1.8672,6.39554 +L 1.8672,6.39554,1.8672,4.803741 +L 1.8672,4.803741,1.8672,3.203372 +L 1.8672,3.203372,1.2854,3.203372 +L 1.2854,3.203372,0.7145,3.203372 +L 0.7145,3.203372,0.1577,3.203372 +L 5.6775,3.737343,5.3308,4.556632 +L 5.3308,4.556632,5.825,4.799406 +L 5.825,4.799406,6.5325,4.805175 +L 6.5325,4.805175,6.5325,4.460435 +L 6.5325,4.460435,6.5325,4.107443 +L 6.5325,4.107443,6.5325,3.737343 +L 6.5325,3.737343,6.2379,3.737343 +L 6.2379,3.737343,5.9546,3.737343 +L 5.9546,3.737343,5.6775,3.737343 +L 5.6775,5.834774,5.9546,6.024093 +L 5.9546,6.024093,6.2379,6.204875 +L 6.2379,6.204875,6.5325,6.368723 + +[飾] 45 +L 5.711,0.038206,5.8091,2.436532 +L 5.8091,2.436532,5.627,4.453441 +L 5.627,4.453441,4.426,5.300914 +L 4.426,5.300914,4.426,3.889897 +L 4.426,3.889897,4.426,2.478879 +L 4.426,2.478879,4.426,1.067829 +L 0.6153,0.533989,0.5978,4.659637 +L 0.5978,4.659637,0.4889,6.310845 +L 0.4889,6.310845,0.1915,6.902595 +L 0.1915,6.902595,0.6784,7.625776 +L 0.6784,7.625776,1.1719,8.340494 +L 1.1719,8.340494,1.6832,9.03815 +L 1.6832,9.03815,2.1701,8.504289 +L 2.1701,8.504289,2.6608,7.970428 +L 2.6608,7.970428,3.1476,7.436456 +L 1.2559,0.533989,1.7428,1.067829 +L 1.7428,1.067829,2.2296,1.601788 +L 2.2296,1.601788,2.7164,2.13565 +L 6.9614,1.067829,6.9614,2.478879 +L 6.9614,2.478879,6.9614,3.889897 +L 6.9614,3.889897,6.9614,5.300914 +L 6.9614,5.300914,6.3663,5.340382 +L 6.3663,5.340382,6.0406,5.617327 +L 6.0406,5.617327,5.711,6.368723 +L 1.0426,3.203372,1.5925,3.203372 +L 1.5925,3.203372,2.1455,3.203372 +L 2.1455,3.203372,2.7164,3.203372 +L 2.7164,3.203372,2.7164,3.737343 +L 2.7164,3.737343,2.7164,4.271204 +L 2.7164,4.271204,2.7164,4.805175 +L 2.7164,4.805175,2.1455,4.805175 +L 2.1455,4.805175,1.5925,4.805175 +L 1.5925,4.805175,1.0426,4.805175 +L 2.7164,5.300914,2.7164,5.67098 +L 2.7164,5.67098,2.7164,6.024093 +L 2.7164,6.024093,2.7164,6.368723 +L 2.7164,6.368723,2.1455,6.368723 +L 2.1455,6.368723,1.5925,6.368723 +L 1.5925,6.368723,1.0426,6.368723 +L 4.0022,6.368723,4.4572,7.179355 +L 4.4572,7.179355,4.6778,7.871451 +L 4.6778,7.871451,4.8564,9.03815 +L 5.2802,7.436456,5.9846,7.436456 +L 5.9846,7.436456,6.6847,7.436456 +L 6.6847,7.436456,7.3887,7.436456 + +[殖] 69 +L 0.2177,0.038206,0.7676,1.018477 +L 0.7676,1.018477,1.3248,1.981684 +L 1.3248,1.981684,1.8957,2.936485 +L 1.8957,2.936485,1.5315,3.392723 +L 1.5315,3.392723,1.1739,3.840555 +L 1.1739,3.840555,0.8306,4.271204 +L 0.8306,4.271204,0.6135,4.107443 +L 0.6135,4.107443,0.4103,3.926562 +L 0.4103,3.926562,0.2177,3.737343 +L 3.1738,0.038206,3.1738,1.981684 +L 3.1738,1.981684,3.1738,3.916778 +L 3.1738,3.916778,3.1738,5.834774 +L 3.6046,0.038206,4.8658,0.038206 +L 4.8658,0.038206,6.1368,0.038206 +L 6.1368,0.038206,7.4191,0.038206 +L 4.4592,1.601788,4.4592,3.202059 +L 4.4592,3.202059,4.4592,4.793934 +L 4.4592,4.793934,4.4592,6.368723 +L 4.4592,6.368723,4.7324,6.368723 +L 4.7324,6.368723,5.0094,6.368723 +L 5.0094,6.368723,5.2857,6.368723 +L 5.2857,6.368723,5.0514,7.699217 +L 5.0514,7.699217,4.4487,8.012763 +L 4.4487,8.012763,3.6046,7.970428 +L 4.8549,1.601788,5.4157,1.601788 +L 5.4157,1.601788,5.9866,1.601788 +L 5.9866,1.601788,6.5641,1.601788 +L 6.5641,1.601788,6.5641,2.13565 +L 6.5641,2.13565,6.5641,2.669522 +L 6.5641,2.669522,6.5641,3.203372 +L 6.5641,3.203372,5.9866,3.203372 +L 5.9866,3.203372,5.4157,3.203372 +L 5.4157,3.203372,4.8549,3.203372 +L 2.323,3.737343,2.323,4.614433 +L 2.323,4.614433,2.323,5.491578 +L 2.323,5.491578,2.323,6.368723 +L 2.323,6.368723,1.8957,6.291067 +L 1.8957,6.291067,1.4649,6.204875 +L 1.4649,6.204875,1.0446,6.101771 +L 1.0446,6.101771,0.8975,5.680886 +L 0.8975,5.680886,0.7676,5.251474 +L 0.7676,5.251474,0.6485,4.805175 +L 6.5641,3.737343,6.5641,4.107443 +L 6.5641,4.107443,6.5641,4.460435 +L 6.5641,4.460435,6.5641,4.805175 +L 6.5641,4.805175,5.9866,4.805175 +L 5.9866,4.805175,5.4157,4.805175 +L 5.4157,4.805175,4.8549,4.805175 +L 6.5641,5.300914,6.5641,5.67098 +L 6.5641,5.67098,6.5641,6.024093 +L 6.5641,6.024093,6.5641,6.368723 +L 6.5641,6.368723,6.2703,6.368723 +L 6.2703,6.368723,5.9866,6.368723 +L 5.9866,6.368723,5.7095,6.368723 +L 1.0446,6.902595,1.0446,7.436456 +L 1.0446,7.436456,1.0446,7.970428 +L 1.0446,7.970428,1.0446,8.504289 +L 1.0446,8.504289,0.7644,8.504289 +L 0.7644,8.504289,0.4909,8.504289 +L 0.4909,8.504289,0.2177,8.504289 +L 5.7095,7.970428,5.5558,8.340494 +L 5.5558,8.340494,5.4157,8.693586 +L 5.4157,8.693586,5.2857,9.03815 +L 6.1368,7.970428,6.5641,7.970428 +L 6.5641,7.970428,6.9918,7.970428 +L 6.9918,7.970428,7.4191,7.970428 +L 1.4649,8.504289,1.8957,8.504289 +L 1.8957,8.504289,2.323,8.504289 +L 2.323,8.504289,2.7535,8.504289 + +[触] 63 +L 0.2165,0.305104,0.5034,2.235973 +L 0.5034,2.235973,0.5034,5.124379 +L 0.5034,5.124379,0.2165,6.902595 +L 0.2165,6.902595,0.819,7.693559 +L 0.819,7.693559,1.0396,8.247198 +L 1.0396,8.247198,1.0708,9.03815 +L 2.3527,0.038206,2.6294,0.038206 +L 2.6294,0.038206,2.9131,0.038206 +L 2.9131,0.038206,3.2111,0.038206 +L 3.2111,0.038206,3.2111,1.104517 +L 3.2111,1.104517,3.2111,2.162531 +L 3.2111,2.162531,3.2111,3.203372 +L 3.2111,3.203372,2.4826,3.203372 +L 2.4826,3.203372,1.7751,3.203372 +L 1.7751,3.203372,1.0708,3.203372 +L 4.0339,0.038206,4.5876,0.038206 +L 4.5876,0.038206,5.1617,0.038206 +L 5.1617,0.038206,5.7434,0.038206 +L 5.7434,0.038206,5.7434,1.892787 +L 5.7434,1.892787,5.4562,2.899742 +L 5.4562,2.899742,4.4577,3.203372 +L 4.4577,3.203372,4.4577,4.450606 +L 4.4577,4.450606,4.4577,5.680886 +L 4.4577,5.680886,4.4577,6.902595 +L 4.4577,6.902595,5.4387,7.159698 +L 5.4387,7.159698,5.7326,7.891305 +L 5.7326,7.891305,5.7434,9.03815 +L 7.4176,0.305104,7.2736,0.570656 +L 7.2736,0.570656,7.1475,0.827725 +L 7.1475,0.827725,7.0215,1.067829 +L 7.0215,1.067829,6.7276,0.903947 +L 6.7276,0.903947,6.4436,0.723198 +L 6.4436,0.723198,6.1672,0.533989 +L 6.1672,3.203372,5.6629,4.654066 +L 5.6629,4.654066,5.9395,6.189289 +L 5.9395,6.189289,7.0215,6.902595 +L 7.0215,6.902595,7.0215,5.680886 +L 7.0215,5.680886,7.0215,4.450606 +L 7.0215,4.450606,7.0215,3.203372 +L 7.0215,3.203372,6.7276,3.203372 +L 6.7276,3.203372,6.4436,3.203372 +L 6.4436,3.203372,6.1672,3.203372 +L 1.9219,4.004317,1.6315,4.271204 +L 1.6315,4.271204,1.3478,4.538178 +L 1.3478,4.538178,1.0708,4.805175 +L 3.2111,3.737343,3.2111,4.107443 +L 3.2111,4.107443,3.2111,4.460435 +L 3.2111,4.460435,3.2111,4.805175 +L 3.2111,4.805175,2.5597,4.863162 +L 2.5597,4.863162,2.0059,5.268483 +L 2.0059,5.268483,1.0708,6.368723 +L 3.2111,5.300914,3.2111,5.67098 +L 3.2111,5.67098,3.2111,6.024093 +L 3.2111,6.024093,3.2111,6.368723 +L 3.2111,6.368723,2.5909,6.388523 +L 2.5909,6.388523,2.2585,6.52687 +L 2.2585,6.52687,1.9219,6.902595 +L 1.9219,6.902595,2.062,7.169482 +L 2.062,7.169482,2.2021,7.436456 +L 2.2021,7.436456,2.3527,7.703442 +L 2.3527,7.703442,2.062,7.806545 +L 2.062,7.806545,1.7751,7.892673 +L 1.7751,7.892673,1.5016,7.970428 + +[辱] 57 +L 4.4912,0.038206,4.8943,0.038206 +L 4.8943,0.038206,5.3146,0.038206 +L 5.3146,0.038206,5.7419,0.038206 +L 5.7419,0.038206,5.724,1.15828 +L 5.724,1.15828,5.626,1.702024 +L 5.626,1.702024,5.3423,2.13565 +L 5.3423,2.13565,4.3371,2.057895 +L 4.3371,2.057895,3.3354,1.971779 +L 3.3354,1.971779,2.355,1.868675 +L 2.355,1.868675,2.6279,1.437906 +L 2.6279,1.437906,2.9116,0.990195 +L 2.9116,0.990195,3.2061,0.533989 +L 0.2501,2.13565,0.7999,2.13565 +L 0.7999,2.13565,1.3565,2.13565 +L 1.3565,2.13565,1.9274,2.13565 +L 6.1657,2.13565,6.0183,2.505651 +L 6.0183,2.505651,5.8676,2.858851 +L 5.8676,2.858851,5.7419,3.203372 +L 6.5962,2.13565,6.8697,2.13565 +L 6.8697,2.13565,7.1569,2.13565 +L 7.1569,2.13565,7.4473,2.13565 +L 0.2501,3.737343,0.9327,5.354468 +L 0.9327,5.354468,1.1148,6.785394 +L 1.1148,6.785394,1.1047,8.504289 +L 1.1047,8.504289,3.066,8.504289 +L 3.066,8.504289,5.0376,8.504289 +L 5.0376,8.504289,7.02,8.504289 +L 1.1047,3.737343,1.5109,3.737343 +L 1.5109,3.737343,1.9274,3.737343 +L 1.9274,3.737343,2.355,3.737343 +L 2.355,3.737343,2.355,4.614433 +L 2.355,4.614433,2.355,5.491578 +L 2.355,5.491578,2.355,6.368723 +L 2.355,6.368723,2.0815,6.368723 +L 2.0815,6.368723,1.8048,6.368723 +L 1.8048,6.368723,1.5285,6.368723 +L 2.9921,3.737343,3.6369,4.107443 +L 3.6369,4.107443,4.2775,4.460435 +L 4.2775,4.460435,4.915,4.805175 +L 4.915,4.805175,4.2705,5.727457 +L 4.2705,5.727457,3.714,6.132856 +L 3.714,6.132856,2.7823,6.368723 +L 6.5962,3.737343,6.1657,4.107443 +L 6.1657,4.107443,5.7486,4.460435 +L 5.7486,4.460435,5.3423,4.805175 +L 5.3423,4.805175,5.6158,5.251474 +L 5.6158,5.251474,5.8957,5.680886 +L 5.8957,5.680886,6.1657,6.101771 +L 6.1657,6.101771,5.5983,6.204875 +L 5.5983,6.204875,5.0376,6.291067 +L 5.0376,6.291067,4.4912,6.368723 +L 6.5962,6.368723,6.8697,6.368723 +L 6.8697,6.368723,7.1569,6.368723 +L 7.1569,6.368723,7.4473,6.368723 +L 1.9274,7.436456,3.486,7.436456 +L 3.486,7.436456,5.0376,7.436456 +L 5.0376,7.436456,6.5962,7.436456 + +[伸] 33 +L 1.1032,0.038206,1.0191,1.981684 +L 1.0191,1.981684,0.9522,3.916778 +L 0.9522,3.916778,0.8892,5.834774 +L 0.8892,5.834774,0.6759,5.67098 +L 0.6759,5.67098,0.4727,5.490221 +L 0.4727,5.490221,0.2797,5.300914 +L 4.917,0.038206,4.7702,2.093226 +L 4.7702,2.093226,4.1534,2.673845 +L 4.1534,2.673845,2.812,2.669522 +L 2.812,2.669522,2.812,4.269879 +L 2.812,4.269879,2.812,5.861656 +L 2.812,5.861656,2.812,7.436456 +L 2.812,7.436456,3.9822,7.453487 +L 3.9822,7.453487,4.6823,7.826312 +L 4.6823,7.826312,4.917,9.03815 +L 5.3443,2.669522,4.7384,4.080648 +L 4.7384,4.080648,4.5352,4.983143 +L 4.5352,4.983143,3.2393,5.300914 +L 5.7681,2.669522,6.1989,2.669522 +L 6.1989,2.669522,6.6265,2.669522 +L 6.6265,2.669522,7.0538,2.669522 +L 7.0538,2.669522,7.0538,3.54658 +L 7.0538,3.54658,7.0538,4.423769 +L 7.0538,4.423769,7.0538,5.300914 +L 7.0538,5.300914,4.9765,5.85464 +L 4.9765,5.85464,5.0781,6.882817 +L 5.0781,6.882817,7.0538,7.436456 +L 7.0538,7.436456,7.0538,6.902595 +L 7.0538,6.902595,7.0538,6.368723 +L 7.0538,6.368723,7.0538,5.834774 +L 1.1032,6.635621,1.3795,7.436456 +L 1.3795,7.436456,1.6597,8.237412 +L 1.6597,8.237412,1.9543,9.03815 + +[侵] 45 +L 1.1328,0.038206,1.0523,1.981684 +L 1.0523,1.981684,0.9826,3.916778 +L 0.9826,3.916778,0.9195,5.834774 +L 0.9195,5.834774,0.7024,5.67098 +L 0.7024,5.67098,0.4919,5.490221 +L 0.4919,5.490221,0.2817,5.300914 +L 2.4112,0.038206,3.1152,0.381359 +L 3.1152,0.381359,3.8161,0.724632 +L 3.8161,0.724632,4.5236,1.067829 +L 4.5236,1.067829,4.2258,1.704903 +L 4.2258,1.704903,3.9421,2.324957 +L 3.9421,2.324957,3.6651,2.936485 +L 3.6651,2.936485,4.5236,2.936485 +L 4.5236,2.936485,5.3746,2.936485 +L 5.3746,2.936485,6.2292,2.936485 +L 6.2292,2.936485,5.8019,2.324957 +L 5.8019,2.324957,5.3746,1.704903 +L 5.3746,1.704903,4.9473,1.067829 +L 4.9473,1.067829,5.879,0.343237 +L 5.879,0.343237,6.4254,0.076317 +L 6.4254,0.076317,7.0485,0.038206 +L 1.9913,3.203372,1.9913,3.737343 +L 1.9913,3.737343,1.9913,4.271204 +L 1.9913,4.271204,1.9913,4.805175 +L 1.9913,4.805175,3.8161,4.805175 +L 3.8161,4.805175,5.6475,4.805175 +L 5.6475,4.805175,7.4796,4.805175 +L 7.4796,4.805175,7.4796,4.271204 +L 7.4796,4.271204,7.4796,3.737343 +L 7.4796,3.737343,7.4796,3.203372 +L 1.1328,6.635621,1.4099,7.436456 +L 1.4099,7.436456,1.6936,8.237412 +L 1.6936,8.237412,1.9913,9.03815 +L 3.2378,6.368723,4.2258,6.368723 +L 4.2258,6.368723,5.2237,6.368723 +L 5.2237,6.368723,6.2292,6.368723 +L 6.2292,6.368723,6.2292,6.738747 +L 6.2292,6.738747,6.2292,7.091892 +L 6.2292,7.091892,6.2292,7.436456 +L 6.2292,7.436456,5.2237,7.436456 +L 5.2237,7.436456,4.2258,7.436456 +L 4.2258,7.436456,3.2378,7.436456 +L 6.2292,8.237412,5.2237,8.340494 +L 5.2237,8.340494,4.2258,8.426633 +L 4.2258,8.426633,3.2378,8.504289 + +[唇] 36 +L 1.9859,0.038206,1.9859,0.915297 +L 1.9859,0.915297,1.9859,1.792453 +L 1.9859,1.792453,1.9859,2.669522 +L 1.9859,2.669522,3.3943,2.669522 +L 3.3943,2.669522,4.8057,2.669522 +L 4.8057,2.669522,6.2277,2.669522 +L 6.2277,2.669522,6.2277,1.792453 +L 6.2277,1.792453,6.2277,0.915297 +L 6.2277,0.915297,6.2277,0.038206 +L 6.2277,0.038206,4.8057,0.038206 +L 4.8057,0.038206,3.3943,0.038206 +L 3.3943,0.038206,1.9859,0.038206 +L 0.3083,3.203372,1.0056,5.026912 +L 1.0056,5.026912,1.1769,6.630039 +L 1.1769,6.630039,1.1593,8.504289 +L 1.1593,8.504289,3.1246,8.504289 +L 3.1246,8.504289,5.1031,8.504289 +L 5.1031,8.504289,7.0855,8.504289 +L 7.0855,3.203372,5.4327,4.911058 +L 5.4327,4.911058,4.2695,5.550978 +L 4.2695,5.550978,2.4171,5.834774 +L 2.4171,5.834774,2.4171,5.146926 +L 2.4171,5.146926,2.4171,4.450606 +L 2.4171,4.450606,2.4171,3.737343 +L 2.4171,3.737343,3.1592,3.875777 +L 3.1592,3.875777,3.8072,4.132879 +L 3.8072,4.132879,4.5501,4.271204 +L 6.2277,4.805175,6.357,5.070682 +L 6.357,5.070682,6.5041,5.327785 +L 6.5041,5.327785,6.655,5.567812 +L 6.655,5.567812,6.2277,5.67098 +L 6.2277,5.67098,5.8004,5.757108 +L 5.8004,5.757108,5.3766,5.834774 +L 1.9859,6.902595,3.3943,6.902595 +L 3.3943,6.902595,4.8057,6.902595 +L 4.8057,6.902595,6.2277,6.902595 + +[娠] 61 +L 0.3141,0.038206,0.734,0.83763 +L 0.734,0.83763,1.1652,1.628571 +L 1.1652,1.628571,1.5925,2.402646 +L 1.5925,2.402646,1.1652,2.505651 +L 1.1652,2.505651,0.734,2.591844 +L 0.734,2.591844,0.3141,2.669522 +L 0.3141,2.669522,0.4223,4.4393 +L 0.4223,4.4393,0.6223,6.200726 +L 0.6223,6.200726,0.734,9.03815 +L 2.4436,0.038206,2.5728,0.303769 +L 2.5728,0.303769,2.7238,0.560761 +L 2.7238,0.560761,2.874,0.800865 +L 2.874,0.800865,2.5728,1.257147 +L 2.5728,1.257147,2.2926,1.704903 +L 2.2926,1.704903,2.0198,2.13565 +L 3.7286,0.038206,4.0022,0.038206 +L 4.0022,0.038206,4.275,0.038206 +L 4.275,0.038206,4.5486,0.038206 +L 4.5486,0.038206,4.5486,1.792453 +L 4.5486,1.792453,4.5486,3.54658 +L 4.5486,3.54658,4.5486,5.300914 +L 4.5486,5.300914,4.1248,5.300914 +L 4.1248,5.300914,3.7041,5.300914 +L 3.7041,5.300914,3.2978,5.300914 +L 3.2978,5.300914,3.2978,4.079116 +L 3.2978,4.079116,3.2978,2.848957 +L 3.2978,2.848957,3.2978,1.601788 +L 4.979,0.038206,5.2561,0.217554 +L 5.2561,0.217554,5.5363,0.380089 +L 5.5363,0.380089,5.8336,0.533989 +L 7.5432,0.038206,6.5551,1.90266 +L 6.5551,1.90266,6.0021,3.385707 +L 6.0021,3.385707,5.8336,5.300914 +L 5.8336,5.300914,5.5363,5.300914 +L 5.5363,5.300914,5.2561,5.300914 +L 5.2561,5.300914,4.979,5.300914 +L 6.6847,2.669522,6.9614,3.039621 +L 6.9614,3.039621,7.2451,3.392723 +L 7.2451,3.392723,7.5432,3.737343 +L 1.5925,3.203372,1.8937,3.696364 +L 1.8937,3.696364,2.0054,4.655423 +L 2.0054,4.655423,2.0198,6.902595 +L 2.0198,6.902595,1.7217,6.902595 +L 1.7217,6.902595,1.4415,6.902595 +L 1.4415,6.902595,1.1652,6.902595 +L 6.2574,5.300914,6.6847,5.300914 +L 6.6847,5.300914,7.1124,5.300914 +L 7.1124,5.300914,7.5432,5.300914 +L 3.2978,5.834774,3.2978,6.738747 +L 3.2978,6.738747,3.2978,7.625776 +L 3.2978,7.625776,3.2978,8.504289 +L 3.2978,8.504289,4.7023,8.504289 +L 4.7023,8.504289,6.1138,8.504289 +L 6.1138,8.504289,7.5432,8.504289 +L 4.1248,6.902595,5.1051,6.902595 +L 5.1051,6.902595,6.1072,6.902595 +L 6.1072,6.902595,7.1124,6.902595 +L 3.7115,6.368526,0.1145,6.368526 +L 0.9722,3.364747,1.5925,9.038106 +A -4.4247,-3.361339,8.620982,23.224227,51.278884 +A -6.281,6.368526,9.138971,316.15783,0 + +[審] 72 +L 1.6222,0.038206,1.5381,1.285386 +L 1.5381,1.285386,1.4719,2.515545 +L 1.4719,2.515545,1.4089,3.737343 +L 1.4089,3.737343,1.0411,3.573461 +L 1.0411,3.573461,0.687,3.392723 +L 0.687,3.392723,0.3403,3.203372 +L 2.0495,0.038206,2.5997,0.038206 +L 2.5997,0.038206,3.1531,0.038206 +L 3.1531,0.038206,3.7271,0.038206 +L 3.7271,0.038206,3.4963,1.324931 +L 3.4963,1.324931,2.8904,1.637032 +L 2.8904,1.637032,2.0495,1.601788 +L 4.1544,0.038206,4.7117,0.038206 +L 4.7117,0.038206,5.2822,0.038206 +L 5.2822,0.038206,5.864,0.038206 +L 5.864,0.038206,5.864,0.570656 +L 5.864,0.570656,5.864,1.094732 +L 5.864,1.094732,5.864,1.601788 +L 5.864,1.601788,4.5117,1.635598 +L 4.5117,1.635598,3.8816,2.025443 +L 3.8816,2.025443,3.7271,3.203372 +L 3.7271,3.203372,3.1531,3.203372 +L 3.1531,3.203372,2.5997,3.203372 +L 2.5997,3.203372,2.0495,3.203372 +L 5.864,2.13565,5.864,2.505651 +L 5.864,2.505651,5.864,2.858851 +L 5.864,2.858851,5.864,3.203372 +L 5.864,3.203372,5.2822,3.203372 +L 5.2822,3.203372,4.7117,3.203372 +L 4.7117,3.203372,4.1544,3.203372 +L 6.6867,3.203372,5.9025,3.916778 +L 5.9025,3.916778,5.132,4.613076 +L 5.132,4.613076,4.3684,5.300914 +L 4.3684,5.300914,4.1544,4.957728 +L 4.1544,4.957728,3.9376,4.614433 +L 3.9376,4.614433,3.7271,4.271204 +L 2.2316,4.271204,2.4452,4.538178 +L 2.4452,4.538178,2.6627,4.805175 +L 2.6627,4.805175,2.8725,5.07205 +L 2.8725,5.07205,2.0214,5.148393 +L 2.0214,5.148393,1.1739,5.22468 +L 1.1739,5.22468,0.3403,5.300914 +L 3.2963,5.300914,3.4333,5.567812 +L 3.4333,5.567812,3.5734,5.834774 +L 3.5734,5.834774,3.7271,6.101771 +L 3.7271,6.101771,3.1531,6.024093 +L 3.1531,6.024093,2.5997,5.937878 +L 2.5997,5.937878,2.0495,5.834774 +L 5.0094,5.567812,5.1421,5.937878 +L 5.1421,5.937878,5.2822,6.291067 +L 5.2822,6.291067,5.4367,6.635621 +L 5.4367,6.635621,5.0094,6.738747 +L 5.0094,6.738747,4.5821,6.824973 +L 4.5821,6.824973,4.1544,6.902595 +L 5.4367,5.300914,5.9831,5.300914 +L 5.9831,5.300914,6.5431,5.300914 +L 6.5431,5.300914,7.1179,5.300914 +L 0.3403,6.902595,0.3403,7.272684 +L 0.3403,7.272684,0.3403,7.625776 +L 0.3403,7.625776,0.3403,7.970428 +L 0.3403,7.970428,1.4719,7.970428 +L 1.4719,7.970428,2.5958,7.970428 +L 2.5958,7.970428,3.7271,7.970428 +L 3.7271,7.970428,3.7271,8.340494 +L 3.7271,8.340494,3.7271,8.693586 +L 3.7271,8.693586,3.7271,9.03815 +L 7.1179,6.902595,7.1179,7.272684 +L 7.1179,7.272684,7.1179,7.625776 +L 7.1179,7.625776,7.1179,7.970428 +L 7.1179,7.970428,6.1158,7.970428 +L 6.1158,7.970428,5.132,7.970428 +L 5.132,7.970428,4.1544,7.970428 + +[慎] 51 +L 1.1934,0.038206,1.1934,3.049483 +L 1.1934,3.049483,1.1934,6.052321 +L 1.1934,6.052321,1.1934,9.03815 +L 2.4753,0.038206,3.0357,0.217554 +L 3.0357,0.217554,3.6066,0.380089 +L 3.6066,0.380089,4.1848,0.533989 +L 6.7167,0.038206,6.419,0.217554 +L 6.419,0.217554,6.1388,0.380089 +L 6.1388,0.380089,5.866,0.533989 +L 2.4753,1.601788,4.1638,1.601788 +L 4.1638,1.601788,5.866,1.601788 +L 5.866,1.601788,7.5748,1.601788 +L 3.3302,3.203372,3.3302,4.269879 +L 3.3302,4.269879,3.3302,5.327785 +L 3.3302,5.327785,3.3302,6.368723 +L 3.3302,6.368723,3.8832,6.368723 +L 3.8832,6.368723,4.4366,6.368723 +L 4.4366,6.368723,5.0079,6.368723 +L 5.0079,6.368723,4.9939,7.13992 +L 4.9939,7.13992,4.8888,7.555125 +L 4.8888,7.555125,4.6118,7.970428 +L 4.6118,7.970428,4.0304,7.970428 +L 4.0304,7.970428,3.463,7.970428 +L 3.463,7.970428,2.9029,7.970428 +L 3.761,3.203372,4.7343,3.203372 +L 4.7343,3.203372,5.7189,3.203372 +L 5.7189,3.203372,6.7167,3.203372 +L 6.7167,3.203372,6.7167,3.573461 +L 6.7167,3.573461,6.7167,3.926562 +L 6.7167,3.926562,6.7167,4.271204 +L 6.7167,4.271204,5.7189,4.271204 +L 5.7189,4.271204,4.7343,4.271204 +L 4.7343,4.271204,3.761,4.271204 +L 6.7167,5.07205,5.7189,5.148393 +L 5.7189,5.148393,4.7343,5.22468 +L 4.7343,5.22468,3.761,5.300914 +L 0.3703,5.300914,0.3703,6.024093 +L 0.3703,6.024093,0.3703,6.738747 +L 0.3703,6.738747,0.3703,7.436456 +L 6.7167,6.101771,6.2863,6.204875 +L 6.2863,6.204875,5.866,6.291067 +L 5.866,6.291067,5.4352,6.368723 +L 2.0518,6.635621,1.8977,6.902595 +L 1.8977,6.902595,1.7541,7.169482 +L 1.7541,7.169482,1.6207,7.436456 +L 5.4352,7.970428,5.2842,8.340494 +L 5.2842,8.340494,5.1375,8.693586 +L 5.1375,8.693586,5.0079,9.03815 +L 5.866,7.970428,6.2863,7.970428 +L 6.2863,7.970428,6.7167,7.970428 +L 6.7167,7.970428,7.144,7.970428 + +[振] 48 +L 0.7999,0.038206,1.0728,0.038206 +L 1.0728,0.038206,1.353,0.038206 +L 1.353,0.038206,1.6545,0.038206 +L 1.6545,0.038206,1.6367,2.661083 +L 1.6367,2.661083,1.5246,3.758544 +L 1.5246,3.758544,1.2237,4.271204 +L 1.2237,4.271204,0.9292,4.107443 +L 0.9292,4.107443,0.6455,3.926562 +L 0.6455,3.926562,0.3726,3.737343 +L 2.5088,0.038206,3.3669,2.767065 +L 3.3669,2.767065,3.4615,5.648346 +L 3.4615,5.648346,3.3599,8.504289 +L 3.3599,8.504289,4.7647,8.504289 +L 4.7647,8.504289,6.1692,8.504289 +L 6.1692,8.504289,7.5698,8.504289 +L 3.7595,0.038206,4.0362,0.038206 +L 4.0362,0.038206,4.3161,0.038206 +L 4.3161,0.038206,4.6138,0.038206 +L 4.6138,0.038206,4.6138,1.792453 +L 4.6138,1.792453,4.6138,3.54658 +L 4.6138,3.54658,4.6138,5.300914 +L 4.6138,5.300914,4.3161,5.300914 +L 4.3161,5.300914,4.0362,5.300914 +L 4.0362,5.300914,3.7595,5.300914 +L 5.0376,0.038206,5.3146,0.217554 +L 5.3146,0.217554,5.5948,0.380089 +L 5.5948,0.380089,5.8922,0.533989 +L 7.5698,0.038206,6.6207,1.868675 +L 6.6207,1.868675,6.0708,3.54658 +L 6.0708,3.54658,5.8922,5.300914 +L 5.8922,5.300914,5.5948,5.300914 +L 5.5948,5.300914,5.3146,5.300914 +L 5.3146,5.300914,5.0376,5.300914 +L 6.7433,2.669522,7.0234,3.039621 +L 7.0234,3.039621,7.297,3.392723 +L 7.297,3.392723,7.5698,3.737343 +L 2.0783,4.271204,1.5421,5.546589 +L 1.5421,5.546589,1.3355,6.517041 +L 1.3355,6.517041,0.3726,6.902595 +L 6.3233,5.300914,6.7257,5.300914 +L 6.7257,5.300914,7.146,5.300914 +L 7.146,5.300914,7.5698,5.300914 +L 2.0783,6.902595,1.7803,7.337698 +L 1.7803,7.337698,1.6685,7.891305 +L 1.6685,7.891305,1.6545,9.03815 +L 4.1833,6.902595,5.1671,6.902595 +L 5.1671,6.902595,6.1692,6.902595 +L 6.1692,6.902595,7.1744,6.902595 + +[浸] 45 +L 0.4023,0.305104,0.8296,1.449246 +L 0.8296,1.449246,1.2569,2.5933 +L 1.2569,2.5933,1.6807,3.737343 +L 2.9346,0.038206,3.6354,0.381359 +L 3.6354,0.381359,4.3429,0.724632 +L 4.3429,0.724632,5.0714,1.067829 +L 5.0714,1.067829,4.6441,1.704903 +L 4.6441,1.704903,4.2165,2.324957 +L 4.2165,2.324957,3.7857,2.936485 +L 3.7857,2.936485,4.6231,2.936485 +L 4.6231,2.936485,5.4669,2.936485 +L 5.4669,2.936485,6.318,2.936485 +L 6.318,2.936485,6.0451,2.505651 +L 6.0451,2.505651,5.7716,2.057895 +L 5.7716,2.057895,5.4952,1.601788 +L 6.318,0.038206,6.0451,0.217554 +L 6.0451,0.217554,5.7716,0.380089 +L 5.7716,0.380089,5.4952,0.533989 +L 2.5073,3.203372,2.5073,3.737343 +L 2.5073,3.737343,2.5073,4.271204 +L 2.5073,4.271204,2.5073,4.805175 +L 2.5073,4.805175,4.1955,4.805175 +L 4.1955,4.805175,5.898,4.805175 +L 5.898,4.805175,7.6037,4.805175 +L 7.6037,4.805175,7.6037,4.271204 +L 7.6037,4.271204,7.6037,3.737343 +L 7.6037,3.737343,7.6037,3.203372 +L 1.2569,5.834774,0.9596,6.204875 +L 0.9596,6.204875,0.6794,6.557965 +L 0.6794,6.557965,0.4023,6.902595 +L 3.3619,6.368723,4.3394,6.368723 +L 4.3394,6.368723,5.3233,6.368723 +L 5.3233,6.368723,6.318,6.368723 +L 6.318,6.368723,6.318,6.738747 +L 6.318,6.738747,6.318,7.091892 +L 6.318,7.091892,6.318,7.436456 +L 6.318,7.436456,5.3233,7.436456 +L 5.3233,7.436456,4.3394,7.436456 +L 4.3394,7.436456,3.3619,7.436456 +L 1.6807,7.970428,1.3869,8.340494 +L 1.3869,8.340494,1.1032,8.693586 +L 1.1032,8.693586,0.8296,9.03815 +L 6.318,8.237412,5.3233,8.340494 +L 5.3233,8.340494,4.3394,8.426633 +L 4.3394,8.426633,3.3619,8.504289 + +[紳] 54 +L 1.6827,0.038206,1.6827,1.638455 +L 1.6827,1.638455,1.6827,3.230352 +L 1.6827,3.230352,1.6827,4.805175 +L 1.6827,4.805175,1.2589,4.805175 +L 1.2589,4.805175,0.839,4.805175 +L 0.839,4.805175,0.4288,4.805175 +L 5.4972,0.038206,5.4132,1.906808 +L 5.4132,1.906808,4.9575,2.580614 +L 4.9575,2.580614,3.8196,2.669522 +L 3.8196,2.669522,3.8196,4.080648 +L 3.8196,4.080648,3.8196,5.491578 +L 3.8196,5.491578,3.8196,6.902595 +L 3.8196,6.902595,4.9855,7.049512 +L 4.9855,7.049512,5.4303,7.67099 +L 5.4303,7.67099,5.4972,9.03815 +L 0.4288,1.334726,0.5553,1.971779 +L 0.5553,1.971779,0.6845,2.591844 +L 0.6845,2.591844,0.8281,3.203372 +L 2.965,1.868675,2.8105,2.324957 +L 2.8105,2.324957,2.6704,2.772647 +L 2.6704,2.772647,2.5412,3.203372 +L 5.9245,2.669522,5.4023,3.78248 +L 5.4023,3.78248,5.175,4.531086 +L 5.175,4.531086,4.2469,4.805175 +L 6.355,2.669522,6.6247,2.669522 +L 6.6247,2.669522,6.9084,2.669522 +L 6.9084,2.669522,7.2061,2.669522 +L 7.2061,2.669522,7.2061,3.392723 +L 7.2061,3.392723,7.2061,4.107443 +L 7.2061,4.107443,7.2061,4.805175 +L 7.2061,4.805175,6.2888,4.823508 +L 6.2888,4.823508,5.8471,4.952058 +L 5.8471,4.952058,5.4972,5.300914 +L 5.4972,5.300914,5.6408,6.563613 +L 5.6408,6.563613,6.1662,6.911056 +L 6.1662,6.911056,7.2061,6.902595 +L 7.2061,6.902595,7.2061,6.368723 +L 7.2061,6.368723,7.2061,5.834774 +L 7.2061,5.834774,7.2061,5.300914 +L 2.965,4.538178,2.6462,5.056563 +L 2.6462,5.056563,2.4287,5.125714 +L 2.4287,5.125714,2.11,4.805175 +L 1.2554,5.300914,1.3853,5.567812 +L 1.3853,5.567812,1.5325,5.834774 +L 1.5325,5.834774,1.6827,6.101771 +L 1.6827,6.101771,1.3853,6.471827 +L 1.3853,6.471827,1.1052,6.824973 +L 1.1052,6.824973,0.8281,7.169482 +L 0.8281,7.169482,1.1052,7.806545 +L 1.1052,7.806545,1.3853,8.426633 +L 1.3853,8.426633,1.6827,9.03815 +L 2.11,7.169482,2.2431,7.436456 +L 2.2431,7.436456,2.3867,7.703442 +L 2.3867,7.703442,2.5412,7.970428 + +[薪] 57 +L 2.1404,0.038206,2.0598,0.751513 +L 2.0598,0.751513,1.9894,1.447801 +L 1.9894,1.447801,1.9264,2.13565 +L 1.9264,2.13565,1.4185,1.601788 +L 1.4185,1.601788,0.9215,1.067829 +L 0.9215,1.067829,0.4347,0.533989 +L 3.818,0.038206,4.8159,1.998561 +L 4.8159,1.998561,5.1031,3.620142 +L 5.1031,3.620142,5.1031,5.834774 +L 5.1031,5.834774,6.336,5.85464 +L 6.336,5.85464,6.9874,5.992987 +L 6.9874,5.992987,7.6284,6.368723 +L 6.8126,0.038206,6.8126,1.449246 +L 6.8126,1.449246,6.8126,2.860186 +L 6.8126,2.860186,6.8126,4.271204 +L 6.8126,4.271204,6.3815,4.271204 +L 6.3815,4.271204,5.9542,4.271204 +L 5.9542,4.271204,5.5234,4.271204 +L 3.3943,1.067829,3.1137,1.524034 +L 3.1137,1.524034,2.8444,1.971779 +L 2.8444,1.971779,2.5673,2.402646 +L 2.5673,2.402646,1.9894,2.505651 +L 1.9894,2.505651,1.4185,2.591844 +L 1.4185,2.591844,0.8585,2.669522 +L 2.1404,3.203372,2.1404,3.573461 +L 2.1404,3.573461,2.1404,3.926562 +L 2.1404,3.926562,2.1404,4.271204 +L 2.1404,4.271204,1.5621,4.271204 +L 1.5621,4.271204,0.9912,4.271204 +L 0.9912,4.271204,0.4347,4.271204 +L 2.5673,4.538178,2.6934,4.881407 +L 2.6934,4.881407,2.8234,5.22468 +L 2.8234,5.22468,2.9635,5.567812 +L 2.9635,5.567812,2.3961,5.567812 +L 2.3961,5.567812,1.8357,5.567812 +L 1.8357,5.567812,1.2893,5.567812 +L 1.2893,5.567812,1.4185,5.327785 +L 1.4185,5.327785,1.5621,5.070682 +L 1.5621,5.070682,1.7131,4.805175 +L 2.9635,4.271204,3.2398,4.271204 +L 3.2398,4.271204,3.5235,4.271204 +L 3.5235,4.271204,3.818,4.271204 +L 0.4347,7.970428,1.2648,7.970428 +L 1.2648,7.970428,2.112,7.970428 +L 2.112,7.970428,2.9635,7.970428 +L 2.9635,7.970428,2.9635,8.340494 +L 2.9635,8.340494,2.9635,8.693586 +L 2.9635,8.693586,2.9635,9.03815 +L 3.3943,7.970428,3.9473,7.970428 +L 3.9473,7.970428,4.522,7.970428 +L 4.522,7.970428,5.1031,7.970428 +L 5.1031,7.970428,5.1031,8.340494 +L 5.1031,8.340494,5.1031,8.693586 +L 5.1031,8.693586,5.1031,9.03815 +L 5.5234,7.970428,6.2277,7.970428 +L 6.2277,7.970428,6.9279,7.970428 +L 6.9279,7.970428,7.6284,7.970428 + +[診] 47 +L 0.8917,0.038206,0.8917,0.751513 +L 0.8917,0.751513,0.8917,1.447801 +L 0.8917,1.447801,0.8917,2.13565 +L 0.8917,2.13565,1.4415,2.13565 +L 1.4415,2.13565,1.9953,2.13565 +L 1.9953,2.13565,2.5662,2.13565 +L 2.5662,2.13565,2.5662,1.447801 +L 2.5662,1.447801,2.5662,0.751513 +L 2.5662,0.751513,2.5662,0.038206 +L 2.5662,0.038206,1.9953,0.038206 +L 1.9953,0.038206,1.4415,0.038206 +L 1.4415,0.038206,0.8917,0.038206 +L 3.4239,0.038206,4.5626,0.466129 +L 4.5626,0.466129,5.5464,1.148385 +L 5.5464,1.148385,7.2349,2.669522 +L 4.0652,2.13565,4.8253,2.858851 +L 4.8253,2.858851,5.5993,3.573461 +L 5.5993,3.573461,6.3835,4.271204 +L 0.8917,3.737343,1.4415,3.737343 +L 1.4415,3.737343,1.9953,3.737343 +L 1.9953,3.737343,2.5662,3.737343 +L 4.0652,4.271204,4.5517,4.803741 +L 4.5517,4.803741,5.0421,5.327785 +L 5.0421,5.327785,5.5289,5.834774 +L 0.8917,5.300914,1.4415,5.300914 +L 1.4415,5.300914,1.9953,5.300914 +L 1.9953,5.300914,2.5662,5.300914 +L 3.4239,5.300914,4.0407,6.557965 +L 4.0407,6.557965,4.6778,7.806545 +L 4.6778,7.806545,5.3121,9.03815 +L 5.3121,9.03815,6.0861,7.806545 +L 6.0861,7.806545,6.8707,6.557965 +L 6.8707,6.557965,7.6622,5.300914 +L 0.4612,6.902595,1.2944,6.902595 +L 1.2944,6.902595,2.142,6.902595 +L 2.142,6.902595,2.9966,6.902595 +L 0.8917,8.504289,1.4415,8.504289 +L 1.4415,8.504289,1.9953,8.504289 +L 1.9953,8.504289,2.5662,8.504289 +L 0.4612,6.94074,2.9966,6.94074 +L 0.8917,8.542542,2.5662,8.542542 +L 0.8917,5.339189,2.5662,5.339189 +L 0.8917,4.271248,2.5662,4.271248 +L 0.8917,2.707754,2.5662,2.707754 +L 0.8917,0.038206,0.8917,2.707754 +L 2.5662,0.038206,0.8917,0.038206 +L 2.5662,2.707754,2.5662,0.038206 + +[辛] 27 +L 3.8816,0.038206,3.587,2.330561 +L 3.587,2.330561,2.6277,2.792403 +L 2.6277,2.792403,0.8901,2.669522 +L 4.277,2.669522,4.0007,3.122936 +L 4.0007,3.122936,3.8956,3.805137 +L 3.8956,3.805137,3.8816,5.300914 +L 3.8816,5.300914,2.7293,5.300914 +L 2.7293,5.300914,1.591,5.300914 +L 1.591,5.300914,0.4628,5.300914 +L 4.7047,2.669522,5.4048,2.669522 +L 5.4048,2.669522,6.1158,2.669522 +L 6.1158,2.669522,6.8408,2.669522 +L 4.277,5.300914,4.5537,5.300914 +L 4.5537,5.300914,4.8343,5.300914 +L 4.8343,5.300914,5.1355,5.300914 +L 5.1355,5.300914,5.2437,6.230213 +L 5.2437,6.230213,5.4433,7.04103 +L 5.4433,7.04103,5.5558,7.970428 +L 5.5558,7.970428,4.4311,7.970428 +L 4.4311,7.970428,3.2998,7.970428 +L 3.2998,7.970428,2.172,7.970428 +L 2.172,7.970428,2.3051,7.272684 +L 2.3051,7.272684,2.4487,6.557965 +L 2.4487,6.557965,2.5997,5.834774 +L 5.5558,5.300914,6.1158,5.300914 +L 6.1158,5.300914,6.6867,5.300914 +L 6.6867,5.300914,7.2646,5.300914 + +[震] 63 +L 0.4929,0.305104,0.7941,0.960511 +L 0.7941,0.960511,0.9065,1.988689 +L 0.9065,1.988689,0.9205,4.271204 +L 0.9205,4.271204,2.8815,4.271204 +L 2.8815,4.271204,4.8569,4.271204 +L 4.8569,4.271204,6.8393,4.271204 +L 1.7783,0.038206,2.048,0.038206 +L 2.048,0.038206,2.3247,0.038206 +L 2.3247,0.038206,2.5978,0.038206 +L 2.5978,0.038206,2.5978,0.751513 +L 2.5978,0.751513,2.5978,1.447801 +L 2.5978,1.447801,2.5978,2.13565 +L 2.5978,2.13565,2.1744,2.13565 +L 2.1744,2.13565,1.7541,2.13565 +L 1.7541,2.13565,1.3478,2.13565 +L 3.0255,0.038206,3.3579,0.387094 +L 3.3579,0.387094,3.6906,0.515623 +L 3.6906,0.515623,4.3039,0.533989 +L 6.1984,0.305104,5.0499,1.423733 +L 5.0499,1.423733,4.2545,1.881361 +L 4.2545,1.881361,3.0255,2.13565 +L 6.0127,1.067829,6.1388,1.334726 +L 6.1388,1.334726,6.2688,1.601788 +L 6.2688,1.601788,6.4089,1.868675 +L 6.4089,1.868675,5.9851,1.971779 +L 5.9851,1.971779,5.5644,2.057895 +L 5.5644,2.057895,5.1616,2.13565 +L 2.2024,3.203372,3.603,3.203372 +L 3.603,3.203372,5.0079,3.203372 +L 5.0079,3.203372,6.4089,3.203372 +L 1.3478,5.300914,1.9009,5.300914 +L 1.9009,5.300914,2.4542,5.300914 +L 2.4542,5.300914,3.0255,5.300914 +L 3.8832,5.300914,3.4108,7.312251 +L 3.4108,7.312251,2.1846,7.611656 +L 2.1846,7.611656,0.4929,7.436456 +L 0.4929,7.436456,0.4929,6.902595 +L 0.4929,6.902595,0.4929,6.368723 +L 0.4929,6.368723,0.4929,5.834774 +L 4.7343,5.300914,5.2842,5.300914 +L 5.2842,5.300914,5.845,5.300914 +L 5.845,5.300914,6.4089,5.300914 +L 7.2666,5.834774,7.2666,6.368723 +L 7.2666,6.368723,7.2666,6.902595 +L 7.2666,6.902595,7.2666,7.436456 +L 7.2666,7.436456,6.2688,7.436456 +L 6.2688,7.436456,5.2842,7.436456 +L 5.2842,7.436456,4.3039,7.436456 +L 4.3039,7.436456,4.1564,7.703442 +L 4.1564,7.703442,4.0128,7.970428 +L 4.0128,7.970428,3.8832,8.237412 +L 3.8832,8.237412,3.0255,8.340494 +L 3.0255,8.340494,2.1814,8.426633 +L 2.1814,8.426633,1.3478,8.504289 +L 1.3478,6.368723,1.9009,6.368723 +L 1.9009,6.368723,2.4542,6.368723 +L 2.4542,6.368723,3.0255,6.368723 +L 4.7343,6.368723,5.2842,6.368723 +L 5.2842,6.368723,5.845,6.368723 +L 5.845,6.368723,6.4089,6.368723 +L 4.3039,8.504289,5.1375,8.504289 +L 5.1375,8.504289,5.9851,8.504289 +L 5.9851,8.504289,6.8393,8.504289 + +[尋] 57 +L 4.7609,0.038206,5.171,0.038206 +L 5.171,0.038206,5.5909,0.038206 +L 5.5909,0.038206,6.0147,0.038206 +L 6.0147,0.038206,6.0011,1.15828 +L 6.0011,1.15828,5.8886,1.702024 +L 5.8886,1.702024,5.5874,2.13565 +L 5.5874,2.13565,4.4561,2.057895 +L 4.4561,2.057895,3.3322,1.971779 +L 3.3322,1.971779,2.2009,1.868675 +L 2.2009,1.868675,2.4776,1.437906 +L 2.4776,1.437906,2.7613,0.990195 +L 2.7613,0.990195,3.0552,0.533989 +L 0.5264,2.13565,0.9292,2.13565 +L 0.9292,2.13565,1.3498,2.13565 +L 1.3498,2.13565,1.7771,2.13565 +L 6.442,2.13565,6.1447,2.550854 +L 6.1447,2.550854,6.0322,2.966168 +L 6.0322,2.966168,6.0147,3.737343 +L 6.0147,3.737343,5.5909,3.737343 +L 5.5909,3.737343,5.171,3.737343 +L 5.171,3.737343,4.7609,3.737343 +L 4.7609,3.737343,4.7609,4.107443 +L 4.7609,4.107443,4.7609,4.460435 +L 4.7609,4.460435,4.7609,4.805175 +L 4.7609,4.805175,5.4648,4.805175 +L 5.4648,4.805175,6.1723,4.805175 +L 6.1723,4.805175,6.8732,4.805175 +L 6.8732,4.805175,6.7187,4.460435 +L 6.7187,4.460435,6.5755,4.107443 +L 6.5755,4.107443,6.442,3.737343 +L 6.8732,2.13565,7.146,2.13565 +L 7.146,2.13565,7.4262,2.13565 +L 7.4262,2.13565,7.7243,2.13565 +L 0.9502,3.203372,1.3565,3.203372 +L 1.3565,3.203372,1.7771,3.203372 +L 1.7771,3.203372,2.2009,3.203372 +L 2.2009,3.203372,2.2009,3.737343 +L 2.2009,3.737343,2.2009,4.271204 +L 2.2009,4.271204,2.2009,4.805175 +L 2.2009,4.805175,1.7771,4.805175 +L 1.7771,4.805175,1.3565,4.805175 +L 1.3565,4.805175,0.9502,4.805175 +L 2.6314,4.805175,2.9049,4.805175 +L 2.9049,4.805175,3.1848,4.805175 +L 3.1848,4.805175,3.4825,4.805175 +L 1.7771,6.368723,3.3322,6.368723 +L 3.3322,6.368723,4.8873,6.368723 +L 4.8873,6.368723,6.442,6.368723 +L 6.442,6.368723,6.442,6.738747 +L 6.442,6.738747,6.442,7.091892 +L 6.442,7.091892,6.442,7.436456 +L 6.442,7.436456,4.8873,7.436456 +L 4.8873,7.436456,3.3322,7.436456 +L 3.3322,7.436456,1.7771,7.436456 +L 6.442,8.237412,4.8873,8.340494 +L 4.8873,8.340494,3.3322,8.426633 +L 3.3322,8.426633,1.7771,8.504289 + +[甚] 57 +L 1.8033,0.038206,1.8033,1.285386 +L 1.8033,1.285386,1.8033,2.515545 +L 1.8033,2.515545,1.8033,3.737343 +L 1.8033,3.737343,1.3795,3.737343 +L 1.3795,3.737343,0.9522,3.737343 +L 0.9522,3.737343,0.5249,3.737343 +L 2.2344,0.038206,3.9191,0.038206 +L 3.9191,0.038206,5.6213,0.038206 +L 5.6213,0.038206,7.3302,0.038206 +L 2.2344,1.067829,3.1342,2.234627 +L 3.1342,2.234627,3.4669,2.926624 +L 3.4669,2.926624,3.5128,3.737343 +L 3.5128,3.737343,3.089,3.737343 +L 3.089,3.737343,2.6617,3.737343 +L 2.6617,3.737343,2.2344,3.737343 +L 5.6213,1.601788,5.3201,2.036683 +L 5.3201,2.036683,5.2077,2.590432 +L 5.2077,2.590432,5.1905,3.737343 +L 5.1905,3.737343,4.7667,3.737343 +L 4.7667,3.737343,4.3356,3.737343 +L 4.3356,3.737343,3.9156,3.737343 +L 6.0451,1.601788,6.3253,1.601788 +L 6.3253,1.601788,6.6051,1.601788 +L 6.6051,1.601788,6.8997,1.601788 +L 5.6213,3.737343,5.6213,4.269879 +L 5.6213,4.269879,5.6213,4.793934 +L 5.6213,4.793934,5.6213,5.300914 +L 5.6213,5.300914,4.6231,5.300914 +L 4.6231,5.300914,3.6389,5.300914 +L 3.6389,5.300914,2.6617,5.300914 +L 2.6617,5.300914,2.6617,4.957728 +L 2.6617,4.957728,2.6617,4.614433 +L 2.6617,4.614433,2.6617,4.271204 +L 6.0451,3.737343,6.595,3.737343 +L 6.595,3.737343,7.1554,3.737343 +L 7.1554,3.737343,7.7263,3.737343 +L 2.6617,5.834774,2.5216,7.456333 +L 2.5216,7.456333,2.0064,7.950551 +L 2.0064,7.950551,0.9522,7.970428 +L 5.6213,6.101771,4.7667,6.204875 +L 4.7667,6.204875,3.9191,6.291067 +L 3.9191,6.291067,3.089,6.368723 +L 5.6213,7.169482,5.4668,7.436456 +L 5.4668,7.436456,5.3232,7.703442 +L 5.3232,7.703442,5.1905,7.970428 +L 5.1905,7.970428,4.49,7.970428 +L 4.49,7.970428,3.7892,7.970428 +L 3.7892,7.970428,3.089,7.970428 +L 3.089,7.970428,2.9381,8.340494 +L 2.9381,8.340494,2.791,8.693586 +L 2.791,8.693586,2.6617,9.03815 +L 6.0451,7.970428,5.8941,8.340494 +L 5.8941,8.340494,5.7505,8.693586 +L 5.7505,8.693586,5.6213,9.03815 +L 6.4724,7.970428,6.7491,7.970428 +L 6.7491,7.970428,7.0328,7.970428 +L 7.0328,7.970428,7.3302,7.970428 + +[尽] 24 +L 4.7932,0.038206,4.0749,0.570656 +L 4.0749,0.570656,3.3639,1.094732 +L 3.3639,1.094732,2.6637,1.601788 +L 0.5588,0.800865,1.2204,3.450689 +L 1.2204,3.450689,1.4134,5.829203 +L 1.4134,5.829203,1.4099,8.504289 +L 1.4099,8.504289,3.091,8.504289 +L 3.091,8.504289,4.7754,8.504289 +L 4.7754,8.504289,6.4744,8.504289 +L 6.4744,8.504289,6.4744,7.806545 +L 6.4744,7.806545,6.4744,7.091892 +L 6.4744,7.091892,6.4744,6.368723 +L 6.4744,6.368723,6.0471,6.368723 +L 6.0471,6.368723,5.6265,6.368723 +L 5.6265,6.368723,5.2237,6.368723 +L 5.2237,6.368723,5.6054,4.952058 +L 5.6054,4.952058,6.2569,3.577707 +L 6.2569,3.577707,7.7559,1.067829 +L 3.9421,3.470445,3.6441,3.926562 +L 3.6441,3.926562,3.3639,4.374308 +L 3.3639,4.374308,3.0837,4.805175 +L 1.8372,6.368723,2.814,6.368723 +L 2.814,6.368723,3.7985,6.368723 +L 3.7985,6.368723,4.7932,6.368723 + +[迅] 21 +L 4.3991,1.601788,4.4201,3.611692 +L 4.4201,3.611692,4.1539,4.867376 +L 4.1539,4.867376,3.1207,5.300914 +L 7.3625,1.601788,6.5535,3.925227 +L 6.5535,3.925227,6.434,6.079125 +L 6.434,6.079125,6.5041,8.504289 +L 6.5041,8.504289,5.2222,8.504289 +L 5.2222,8.504289,3.9508,8.504289 +L 3.9508,8.504289,2.6899,8.504289 +L 7.7863,1.601788,7.7863,2.13565 +L 7.7863,2.13565,7.7863,2.669522 +L 7.7863,2.669522,7.7863,3.203372 +L 4.7949,5.300914,4.5182,5.735929 +L 4.5182,5.735929,4.4166,6.289535 +L 4.4166,6.289535,4.3991,7.436456 +L 5.6428,0.023036,7.7688,0.023036 +L 1.8213,1.090693,0.7671,0.038206 +L 0.5709,4.789939,1.8213,4.789939 +L 1.8213,1.090693,1.8213,4.789939 +L 0.9982,8.527361,1.8213,7.459464 +A 5.6428,7.386044,7.362973,238.75988,270 + +[陣] 63 +L 0.5838,0.038206,0.5838,2.860186 +L 0.5838,2.860186,0.5838,5.682232 +L 0.5838,5.682232,0.5838,8.504289 +L 0.5838,8.504289,1.1403,8.504289 +L 1.1403,8.504289,1.7182,8.504289 +L 1.7182,8.504289,2.2926,8.504289 +L 2.2926,8.504289,1.8478,6.135646 +L 1.8478,6.135646,2.0685,4.834825 +L 2.0685,4.834825,2.2926,2.669522 +L 2.2926,2.669522,1.9988,2.505651 +L 1.9988,2.505651,1.7182,2.324957 +L 1.7182,2.324957,1.4415,2.13565 +L 5.2525,0.038206,4.8323,1.51136 +L 4.8323,1.51136,3.8551,1.730241 +L 3.8551,1.730241,2.7203,1.601788 +L 5.6798,1.601788,5.3853,2.13565 +L 5.3853,2.13565,5.1051,2.669522 +L 5.1051,2.669522,4.8249,3.203372 +L 4.8249,3.203372,4.4014,3.203372 +L 4.4014,3.203372,3.9703,3.203372 +L 3.9703,3.203372,3.5465,3.203372 +L 3.5465,3.203372,3.5465,4.269879 +L 3.5465,4.269879,3.5465,5.327785 +L 3.5465,5.327785,3.5465,6.368723 +L 3.5465,6.368723,4.4645,6.398297 +L 4.4645,6.398297,4.9055,6.60596 +L 4.9055,6.60596,5.2525,7.169482 +L 5.2525,7.169482,5.1051,7.436456 +L 5.1051,7.436456,4.9548,7.703442 +L 4.9548,7.703442,4.8249,7.970428 +L 4.8249,7.970428,4.2473,7.970428 +L 4.2473,7.970428,3.6764,7.970428 +L 3.6764,7.970428,3.1157,7.970428 +L 6.1103,1.601788,6.657,1.601788 +L 6.657,1.601788,7.2174,1.601788 +L 7.2174,1.601788,7.7848,1.601788 +L 5.6798,3.203372,5.3853,3.737343 +L 5.3853,3.737343,5.1051,4.271204 +L 5.1051,4.271204,4.8249,4.805175 +L 4.8249,4.805175,4.531,4.805175 +L 4.531,4.805175,4.2473,4.805175 +L 4.2473,4.805175,3.9703,4.805175 +L 6.1103,3.203372,6.3835,3.203372 +L 6.3835,3.203372,6.6637,3.203372 +L 6.6637,3.203372,6.9614,3.203372 +L 6.9614,3.203372,6.9614,3.737343 +L 6.9614,3.737343,6.9614,4.271204 +L 6.9614,4.271204,6.9614,4.805175 +L 6.9614,4.805175,6.0441,4.833391 +L 6.0441,4.833391,5.6028,5.03117 +L 5.6028,5.03117,5.2525,5.567812 +L 5.2525,5.567812,5.6028,6.131433 +L 5.6028,6.131433,6.0441,6.338963 +L 6.0441,6.338963,6.9614,6.368723 +L 6.9614,6.368723,6.9614,6.024093 +L 6.9614,6.024093,6.9614,5.67098 +L 6.9614,5.67098,6.9614,5.300914 +L 5.6798,7.970428,5.5289,8.340494 +L 5.5289,8.340494,5.3853,8.693586 +L 5.3853,8.693586,5.2525,9.03815 +L 6.1103,7.970428,6.5134,7.970428 +L 6.5134,7.970428,6.9337,7.970428 +L 6.9337,7.970428,7.361,7.970428 + +[酢] 51 +L 1.0446,0.038206,1.2824,3.038264 +L 1.2824,3.038264,1.668,5.961892 +L 1.668,5.961892,1.8638,8.504289 +L 1.8638,8.504289,1.4435,8.504289 +L 1.4435,8.504289,1.0236,8.504289 +L 1.0236,8.504289,0.6173,8.504289 +L 1.4719,0.038206,2.172,0.038206 +L 2.172,0.038206,2.8725,0.038206 +L 2.8725,0.038206,3.5734,0.038206 +L 3.5734,0.038206,3.5734,0.751513 +L 3.5734,0.751513,3.5734,1.447801 +L 3.5734,1.447801,3.5734,2.13565 +L 3.5734,2.13565,2.8725,2.13565 +L 2.8725,2.13565,2.172,2.13565 +L 2.172,2.13565,1.4719,2.13565 +L 5.6783,0.038206,5.6783,2.326314 +L 5.6783,2.326314,5.6783,4.614433 +L 5.6783,4.614433,5.6783,6.902595 +L 5.6783,6.902595,5.0861,6.863149 +L 5.0861,6.863149,4.7603,6.58628 +L 4.7603,6.58628,4.4311,5.834774 +L 3.5734,2.669522,3.5734,3.039621 +L 3.5734,3.039621,3.5734,3.392723 +L 3.5734,3.392723,3.5734,3.737343 +L 3.5734,3.737343,3.2788,3.737343 +L 3.2788,3.737343,2.9951,3.737343 +L 2.9951,3.737343,2.7223,3.737343 +L 2.7223,3.737343,2.7048,5.233152 +L 2.7048,5.233152,2.5958,5.91532 +L 2.5958,5.91532,2.2946,6.368723 +L 2.2946,6.368723,1.9798,5.429356 +L 1.9798,5.429356,1.7658,4.142751 +L 1.7658,4.142751,1.4719,3.203372 +L 6.1091,2.669522,6.5361,2.669522 +L 6.5361,2.669522,6.9634,2.669522 +L 6.9634,2.669522,7.3907,2.669522 +L 3.5734,4.271204,3.2476,5.945003 +L 3.2476,5.945003,2.771,7.161143 +L 2.771,7.161143,2.2946,8.504289 +L 6.1091,4.805175,6.5361,4.805175 +L 6.5361,4.805175,6.9634,4.805175 +L 6.9634,4.805175,7.3907,4.805175 +L 6.1091,6.902595,6.6657,6.902595 +L 6.6657,6.902595,7.2369,6.902595 +L 7.2369,6.902595,7.818,6.902595 +L 4.8584,7.436456,5.1565,7.851792 +L 5.1565,7.851792,5.2682,8.267063 +L 5.2682,8.267063,5.2822,9.03815 +L 3.1531,8.504289,3.4224,8.504289 +L 3.4224,8.504289,3.7061,8.504289 +L 3.7061,8.504289,4.0042,8.504289 + +[吹] 33 +L 2.9659,0.038206,4.409,2.326314 +L 4.409,2.326314,5.1021,4.385635 +L 5.1021,4.385635,5.2842,6.902595 +L 5.2842,6.902595,4.8604,6.902595 +L 4.8604,6.902595,4.4401,6.902595 +L 4.4401,6.902595,4.0303,6.902595 +L 4.0303,6.902595,3.7365,6.368723 +L 3.7365,6.368723,3.4563,5.834774 +L 3.4563,5.834774,3.1792,5.300914 +L 7.4211,0.038206,6.2194,1.929443 +L 6.2194,1.929443,5.7746,2.888502 +L 5.7746,2.888502,5.7115,3.737343 +L 0.6158,2.669522,0.6158,4.450606 +L 0.6158,4.450606,0.6158,6.214725 +L 0.6158,6.214725,0.6158,7.970428 +L 0.6158,7.970428,1.1723,7.970428 +L 1.1723,7.970428,1.7467,7.970428 +L 1.7467,7.970428,2.3215,7.970428 +L 2.3215,7.970428,2.3215,6.214725 +L 2.3215,6.214725,2.3215,4.450606 +L 2.3215,4.450606,2.3215,2.669522 +L 2.3215,2.669522,1.7467,2.669522 +L 1.7467,2.669522,1.1723,2.669522 +L 1.1723,2.669522,0.6158,2.669522 +L 6.9938,5.300914,7.2701,5.757108 +L 7.2701,5.757108,7.5503,6.204875 +L 7.5503,6.204875,7.8484,6.635621 +L 7.8484,6.635621,7.123,6.738747 +L 7.123,6.738747,6.4124,6.824973 +L 6.4124,6.824973,5.7115,6.902595 +L 4.0303,7.436456,4.3105,7.851792 +L 4.3105,7.851792,4.4156,8.267063 +L 4.4156,8.267063,4.4331,9.03815 + +[帥] 39 +L 5.7419,0.038206,5.903,3.377236 +L 5.903,3.377236,5.6823,5.902569 +L 5.6823,5.902569,4.0323,6.902595 +L 4.0323,6.902595,4.0323,5.146926 +L 4.0323,5.146926,4.0323,3.382807 +L 4.0323,3.382807,4.0323,1.601788 +L 0.649,1.067829,0.649,3.202059 +L 0.649,3.202059,0.649,5.327785 +L 0.649,5.327785,0.649,7.436456 +L 0.649,7.436456,1.2794,7.673792 +L 1.2794,7.673792,1.7242,8.089084 +L 1.7242,8.089084,2.3585,9.03815 +L 1.0763,1.067829,1.6227,1.067829 +L 1.6227,1.067829,2.1834,1.067829 +L 2.1834,1.067829,2.7504,1.067829 +L 2.7504,1.067829,2.7504,1.971779 +L 2.7504,1.971779,2.7504,2.858851 +L 2.7504,2.858851,2.7504,3.737343 +L 2.7504,3.737343,2.1834,3.737343 +L 2.1834,3.737343,1.6227,3.737343 +L 1.6227,3.737343,1.0763,3.737343 +L 6.5646,1.601788,6.8413,1.601788 +L 6.8413,1.601788,7.125,1.601788 +L 7.125,1.601788,7.4157,1.601788 +L 7.4157,1.601788,7.4157,3.382807 +L 7.4157,3.382807,7.4157,5.146926 +L 7.4157,5.146926,7.4157,6.902595 +L 7.4157,6.902595,6.1307,7.091892 +L 6.1307,7.091892,5.7485,7.75576 +L 5.7485,7.75576,5.7419,9.03815 +L 1.0763,5.300914,1.6227,5.300914 +L 1.6227,5.300914,2.1834,5.300914 +L 2.1834,5.300914,2.7504,5.300914 +L 2.7504,5.300914,2.7504,6.024093 +L 2.7504,6.024093,2.7504,6.738747 +L 2.7504,6.738747,2.7504,7.436456 +L 2.7504,7.436456,2.4811,7.436456 +L 2.4811,7.436456,2.2041,7.436456 +L 2.2041,7.436456,1.9274,7.436456 + +[炊] 11 +L 2.0309,9.038216,2.0309,4.538211 +L 2.0418,2.295547,2.9171,0.780857 +L 3.3762,7.538214,2.4796,6.638259 +L 0.6793,7.737361,0.6793,5.288206 +L 4.0662,7.538323,7.88,7.538323 +L 7.88,7.538323,7.88,6.038289 +L 6.0763,7.538323,6.0763,4.538255 +A -6.1473,4.538211,8.175136,326.60209,0 +A -1.1738,9.038347,5.450522,326.60432,0 +A 0.9805,4.538255,5.099959,298.07092,0 +A 12.6052,4.538255,6.525224,180,223.60122 + +[睡] 60 +L 2.814,0.038206,3.6476,0.038206 +L 3.6476,0.038206,4.4917,0.038206 +L 4.4917,0.038206,5.3463,0.038206 +L 5.3463,0.038206,5.133,1.751485 +L 5.133,1.751485,4.4531,2.176563 +L 4.4531,2.176563,3.2413,2.13565 +L 5.7736,0.038206,6.4744,0.038206 +L 6.4744,0.038206,7.1749,0.038206 +L 7.1749,0.038206,7.8785,0.038206 +L 0.6813,1.601788,0.6813,3.735974 +L 0.6813,3.735974,0.6813,5.861656 +L 0.6813,5.861656,0.6813,7.970428 +L 0.6813,7.970428,1.2379,7.970428 +L 1.2379,7.970428,1.8088,7.970428 +L 1.8088,7.970428,2.3902,7.970428 +L 2.3902,7.970428,2.3902,6.74863 +L 2.3902,6.74863,2.3902,5.518339 +L 2.3902,5.518339,2.3902,4.271204 +L 2.3902,4.271204,3.567,4.408303 +L 3.567,4.408303,4.0017,5.011359 +L 4.0017,5.011359,4.0647,6.368723 +L 4.0647,6.368723,3.7912,6.368723 +L 3.7912,6.368723,3.5183,6.368723 +L 3.5183,6.368723,3.2413,6.368723 +L 1.1016,1.601788,1.5324,1.601788 +L 1.5324,1.601788,1.9597,1.601788 +L 1.9597,1.601788,2.3902,1.601788 +L 2.3902,1.601788,2.3902,2.324957 +L 2.3902,2.324957,2.3902,3.039621 +L 2.3902,3.039621,2.3902,3.737343 +L 2.3902,3.737343,1.9597,3.737343 +L 1.9597,3.737343,1.5324,3.737343 +L 1.5324,3.737343,1.1016,3.737343 +L 5.7736,2.13565,5.4478,2.807956 +L 5.4478,2.807956,5.1715,3.598897 +L 5.1715,3.598897,4.7057,4.271204 +L 4.7057,4.271204,4.2535,3.856043 +L 4.2535,3.856043,4.0857,3.440707 +L 4.0857,3.440707,4.0647,2.669522 +L 6.4145,2.13565,6.4744,2.669522 +L 6.4744,2.669522,6.5479,3.203372 +L 6.5479,3.203372,6.6285,3.737343 +L 6.6285,3.737343,5.6618,4.792424 +L 5.6618,4.792424,5.1365,5.694928 +L 5.1365,5.694928,4.4917,6.368723 +L 7.0558,4.271204,6.7581,4.704742 +L 6.7581,4.704742,6.6457,5.248694 +L 6.6457,5.248694,6.6285,6.368723 +L 6.6285,6.368723,5.6685,6.555174 +L 5.6685,6.555174,5.3638,7.097485 +L 5.3638,7.097485,5.3463,7.970428 +L 5.3463,7.970428,4.7722,7.970428 +L 4.7722,7.970428,4.2188,7.970428 +L 4.2188,7.970428,3.6686,7.970428 +L 1.1016,5.834774,1.3815,5.834774 +L 1.3815,5.834774,1.6617,5.834774 +L 1.6617,5.834774,1.9597,5.834774 +L 5.9876,7.970428,6.3308,8.159746 +L 6.3308,8.159746,6.6877,8.340494 +L 6.6877,8.340494,7.0558,8.504289 + +[粋] 45 +L 1.9894,0.038206,1.9088,1.449246 +L 1.9088,1.449246,1.8391,2.860186 +L 1.8391,2.860186,1.7761,4.271204 +L 1.7761,4.271204,1.4118,3.573461 +L 1.4118,3.573461,1.0542,2.858851 +L 1.0542,2.858851,0.7075,2.13565 +L 5.8039,0.038206,5.6495,2.110213 +L 5.6495,2.110213,5.019,2.682185 +L 5.019,2.682185,3.6706,2.669522 +L 6.1958,2.669522,5.9195,3.084836 +L 5.9195,3.084836,5.8179,3.500052 +L 5.8179,3.500052,5.8039,4.271204 +L 6.6266,2.669522,7.0543,2.669522 +L 7.0543,2.669522,7.4851,2.669522 +L 7.4851,2.669522,7.9054,2.669522 +L 3.2398,3.737343,2.0279,5.213352 +L 2.0279,5.213352,1.3698,5.757108 +L 1.3698,5.757108,0.7075,5.834774 +L 4.0944,4.271204,4.5217,5.070682 +L 4.5217,5.070682,4.9493,5.861656 +L 4.9493,5.861656,5.3801,6.635621 +L 5.3801,6.635621,5.047,7.199231 +L 5.047,7.199231,4.7112,7.406818 +L 4.7112,7.406818,4.0944,7.436456 +L 6.6266,5.300914,6.6266,6.024093 +L 6.6266,6.024093,6.6266,6.738747 +L 6.6266,6.738747,6.6266,7.436456 +L 6.6266,7.436456,5.7059,7.622984 +L 5.7059,7.622984,5.4011,8.165328 +L 5.4011,8.165328,5.3801,9.03815 +L 7.0543,5.300914,7.3306,5.300914 +L 7.3306,5.300914,7.6108,5.300914 +L 7.6108,5.300914,7.9054,5.300914 +L 7.9054,5.300914,7.9054,5.67098 +L 7.9054,5.67098,7.9054,6.024093 +L 7.9054,6.024093,7.9054,6.368723 +L 2.3855,5.834774,2.1085,6.309314 +L 2.1085,6.309314,2.0069,7.13992 +L 2.0069,7.13992,1.9894,9.03815 +L 1.1383,7.169482,0.9846,7.625776 +L 0.9846,7.625776,0.8409,8.073541 +L 0.8409,8.073541,0.7075,8.504289 +L 2.8125,7.169482,2.9459,7.625776 +L 2.9459,7.625776,3.0895,8.073541 +L 3.0895,8.073541,3.2398,8.504289 + +[衰] 51 +L 1.1333,0.038206,2.0548,0.05654 +L 2.0548,0.05654,2.4996,0.185101 +L 2.4996,0.185101,2.8428,0.533989 +L 2.8428,0.533989,2.7623,1.257147 +L 2.7623,1.257147,2.6919,1.971779 +L 2.6919,1.971779,2.6324,2.669522 +L 2.6324,2.669522,1.9879,2.324957 +L 1.9879,2.324957,1.361,1.971779 +L 1.361,1.971779,0.7379,1.601788 +L 7.084,0.038206,5.8865,1.440708 +L 5.8865,1.440708,4.9405,2.767065 +L 4.9405,2.767065,4.5552,4.271204 +L 4.5552,4.271204,3.9356,4.05368 +L 3.9356,4.05368,3.6025,3.77691 +L 3.6025,3.77691,3.2701,3.203372 +L 3.487,0.533989,3.8302,0.723198 +L 3.8302,0.723198,4.1878,0.903947 +L 4.1878,0.903947,4.5552,1.067829 +L 6.2329,2.13565,6.5064,2.505651 +L 6.5064,2.505651,6.7936,2.858851 +L 6.7936,2.858851,7.084,3.203372 +L 1.9879,4.538178,1.6587,5.074929 +L 1.6587,5.074929,1.3364,5.272675 +L 1.3364,5.272675,0.7379,5.300914 +L 2.4191,4.271204,2.6919,4.271204 +L 2.6919,4.271204,2.9791,4.271204 +L 2.9791,4.271204,3.2701,4.271204 +L 4.9513,4.271204,5.3786,4.374308 +L 5.3786,4.374308,5.8024,4.460435 +L 5.8024,4.460435,6.2329,4.538178 +L 6.2329,4.538178,6.0788,4.803741 +L 6.0788,4.803741,5.9352,5.06081 +L 5.9352,5.06081,5.8024,5.300914 +L 5.8024,5.300914,4.6743,5.300914 +L 4.6743,5.300914,3.543,5.300914 +L 3.543,5.300914,2.4191,5.300914 +L 2.4191,5.300914,2.2649,5.567812 +L 2.2649,5.567812,2.1213,5.834774 +L 2.1213,5.834774,1.9879,6.101771 +L 1.9879,6.101771,3.9356,5.894196 +L 3.9356,5.894196,5.7705,5.508554 +L 5.7705,5.508554,7.5113,5.300914 +L 0.7379,7.970428,1.8688,7.970428 +L 1.8688,7.970428,2.9966,7.970428 +L 2.9966,7.970428,4.1279,7.970428 +L 4.1279,7.970428,4.1279,8.340494 +L 4.1279,8.340494,4.1279,8.693586 +L 4.1279,8.693586,4.1279,9.03815 +L 4.5552,7.970428,5.5324,7.970428 +L 5.5324,7.970428,6.5134,7.970428 +L 6.5134,7.970428,7.5113,7.970428 + +[遂] 51 +L 0.9532,0.038206,1.2964,0.381359 +L 1.2964,0.381359,1.6575,0.724632 +L 1.6575,0.724632,2.0218,1.067829 +L 2.0218,1.067829,2.0218,2.324957 +L 2.0218,2.324957,2.0218,3.573461 +L 2.0218,3.573461,2.0218,4.805175 +L 2.0218,4.805175,1.5945,4.805175 +L 1.5945,4.805175,1.1707,4.805175 +L 1.1707,4.805175,0.7399,4.805175 +L 3.0581,0.305104,2.8449,0.381359 +L 2.8449,0.381359,2.6379,0.457658 +L 2.6379,0.457658,2.4487,0.533989 +L 3.7026,0.038206,5.1036,0.038206 +L 5.1036,0.038206,6.5154,0.038206 +L 6.5154,0.038206,7.9371,0.038206 +L 4.1267,1.601788,4.7568,1.641257 +L 4.7568,1.641257,5.2052,1.918016 +L 5.2052,1.918016,5.8356,2.669522 +L 5.8356,2.669522,5.7515,3.203372 +L 5.7515,3.203372,5.6818,3.737343 +L 5.6818,3.737343,5.6188,4.271204 +L 5.6188,4.271204,4.7082,3.573461 +L 4.7082,3.573461,3.7902,2.858851 +L 3.7902,2.858851,2.876,2.13565 +L 7.5133,2.13565,6.8131,3.382807 +L 6.8131,3.382807,6.1123,4.613076 +L 6.1123,4.613076,5.4083,5.834774 +L 5.4083,5.834774,4.6833,5.146926 +L 4.6833,5.146926,3.9723,4.450606 +L 3.9723,4.450606,3.2721,3.737343 +L 3.2721,5.300914,3.8322,5.937878 +L 3.8322,5.937878,4.4034,6.557965 +L 4.4034,6.557965,4.981,7.169482 +L 4.981,7.169482,4.2809,7.272684 +L 4.2809,7.272684,3.5804,7.35879 +L 3.5804,7.35879,2.876,7.436456 +L 6.6905,5.300914,6.9634,5.67098 +L 6.9634,5.67098,7.2369,6.024093 +L 7.2369,6.024093,7.5133,6.368723 +L 2.0218,7.436456,1.7272,7.806545 +L 1.7272,7.806545,1.44,8.159746 +L 1.44,8.159746,1.1707,8.504289 +L 5.4083,7.436456,6.0251,7.673792 +L 6.0251,7.673792,6.354,8.089084 +L 6.354,8.089084,6.6905,9.03815 +L 6.6905,7.436456,7.0933,7.436456 +L 7.0933,7.436456,7.5133,7.436456 +L 7.5133,7.436456,7.9371,7.436456 +L 4.1267,8.237412,3.9723,8.504289 +L 3.9723,8.504289,3.8322,8.771296 +L 3.8322,8.771296,3.7026,9.03815 + +[酔] 60 +L 1.1968,0.038206,1.4385,3.038264 +L 1.4385,3.038264,1.8203,5.961892 +L 1.8203,5.961892,2.0203,8.504289 +L 2.0203,8.504289,1.593,8.504289 +L 1.593,8.504289,1.1793,8.504289 +L 1.1793,8.504289,0.7695,8.504289 +L 1.628,0.038206,2.3281,0.038206 +L 2.3281,0.038206,3.029,0.038206 +L 3.029,0.038206,3.7291,0.038206 +L 3.7291,0.038206,3.7291,0.751513 +L 3.7291,0.751513,3.7291,1.447801 +L 3.7291,1.447801,3.7291,2.13565 +L 3.7291,2.13565,3.029,2.13565 +L 3.029,2.13565,2.3281,2.13565 +L 2.3281,2.13565,1.628,2.13565 +L 6.2652,0.038206,6.1808,1.906808 +L 6.1808,1.906808,5.7224,2.580614 +L 5.7224,2.580614,4.5841,2.669522 +L 3.7291,2.669522,3.7291,3.039621 +L 3.7291,3.039621,3.7291,3.392723 +L 3.7291,3.392723,3.7291,3.737343 +L 3.7291,3.737343,3.4353,3.737343 +L 3.4353,3.737343,3.1516,3.737343 +L 3.1516,3.737343,2.8745,3.737343 +L 2.8745,3.737343,2.8605,5.233152 +L 2.8605,5.233152,2.7488,5.91532 +L 2.7488,5.91532,2.4507,6.368723 +L 2.4507,6.368723,2.132,5.429356 +L 2.132,5.429356,1.9187,4.142751 +L 1.9187,4.142751,1.628,3.203372 +L 6.6925,2.669522,6.3913,3.084836 +L 6.3913,3.084836,6.2789,3.500052 +L 6.2789,3.500052,6.2652,4.271204 +L 7.1163,2.669522,7.3927,2.669522 +L 7.3927,2.669522,7.6729,2.669522 +L 7.6729,2.669522,7.9709,2.669522 +L 3.7291,4.271204,3.3967,5.945003 +L 3.3967,5.945003,2.9201,7.161143 +L 2.9201,7.161143,2.4507,8.504289 +L 4.5841,4.271204,5.1861,5.411033 +L 5.1861,5.411033,5.4068,6.093332 +L 5.4068,6.093332,5.4387,6.902595 +L 5.4387,6.902595,5.1406,7.091892 +L 5.1406,7.091892,4.8604,7.272684 +L 4.8604,7.272684,4.5841,7.436456 +L 6.6925,5.300914,6.6925,6.024093 +L 6.6925,6.024093,6.6925,6.738747 +L 6.6925,6.738747,6.6925,7.436456 +L 6.6925,7.436456,5.7675,7.622984 +L 5.7675,7.622984,5.4663,8.165328 +L 5.4663,8.165328,5.4387,9.03815 +L 7.1163,5.300914,7.3927,5.300914 +L 7.3927,5.300914,7.6729,5.300914 +L 7.6729,5.300914,7.9709,5.300914 +L 7.9709,5.300914,7.9709,5.67098 +L 7.9709,5.67098,7.9709,6.024093 +L 7.9709,6.024093,7.9709,6.368723 +L 3.3018,8.504289,3.5789,8.504289 +L 3.5789,8.504289,3.8591,8.504289 +L 3.8591,8.504289,4.1603,8.504289 + +[錘] 66 +L 0.768,0.038206,1.1988,0.038206 +L 1.1988,0.038206,1.6261,0.038206 +L 1.6261,0.038206,2.0499,0.038206 +L 2.0499,0.038206,2.127,2.324957 +L 2.127,2.324957,1.9172,4.094648 +L 1.9172,4.094648,0.768,4.805175 +L 3.7595,0.038206,4.4596,0.038206 +L 4.4596,0.038206,5.1636,0.038206 +L 5.1636,0.038206,5.8645,0.038206 +L 5.8645,0.038206,5.7839,1.429369 +L 5.7839,1.429369,5.4161,2.015581 +L 5.4161,2.015581,4.5822,2.13565 +L 4.5822,2.13565,4.5822,2.669522 +L 4.5822,2.669522,4.5822,3.203372 +L 4.5822,3.203372,4.5822,3.737343 +L 4.5822,3.737343,4.3125,3.926562 +L 4.3125,3.926562,4.0358,4.107443 +L 4.0358,4.107443,3.7595,4.271204 +L 6.2918,0.038206,6.8483,0.038206 +L 6.8483,0.038206,7.4231,0.038206 +L 7.4231,0.038206,8.0006,0.038206 +L 1.1988,1.868675,1.0486,2.324957 +L 1.0486,2.324957,0.9015,2.772647 +L 0.9015,2.772647,0.768,3.203372 +L 2.9084,2.13565,2.9084,2.505651 +L 2.9084,2.505651,2.9084,2.858851 +L 2.9084,2.858851,2.9084,3.203372 +L 6.2918,2.13565,5.3493,3.54658 +L 5.3493,3.54658,4.7784,4.957728 +L 4.7784,4.957728,4.5822,6.368723 +L 4.5822,6.368723,5.4337,6.529727 +L 5.4337,6.529727,5.7941,7.046699 +L 5.7941,7.046699,5.8645,7.970428 +L 5.8645,7.970428,5.2936,7.970428 +L 5.2936,7.970428,4.7363,7.970428 +L 4.7363,7.970428,4.1868,7.970428 +L 6.9327,2.13565,6.9923,2.669522 +L 6.9923,2.669522,7.0655,3.203372 +L 7.0655,3.203372,7.1495,3.737343 +L 7.1495,3.737343,6.7222,4.107443 +L 6.7222,4.107443,6.2918,4.460435 +L 6.2918,4.460435,5.8645,4.805175 +L 5.8645,4.805175,5.9485,5.905425 +L 5.9485,5.905425,6.3128,6.310845 +L 6.3128,6.310845,7.1495,6.368723 +L 7.1495,6.368723,7.1495,5.861656 +L 7.1495,5.861656,7.1495,5.337689 +L 7.1495,5.337689,7.1495,4.805175 +L 7.1495,4.805175,7.4231,4.641304 +L 7.4231,4.641304,7.7032,4.460435 +L 7.7032,4.460435,8.0006,4.271204 +L 2.4772,4.805175,2.1799,5.193564 +L 2.1799,5.193564,2.0675,5.598918 +L 2.0675,5.598918,2.0499,6.368723 +L 2.0499,6.368723,1.437,6.388523 +L 1.437,6.388523,1.1046,6.52687 +L 1.1046,6.52687,0.768,6.902595 +L 0.768,6.902595,1.1988,7.625776 +L 1.1988,7.625776,1.6261,8.340494 +L 1.6261,8.340494,2.0499,9.03815 +L 2.0499,9.03815,2.3266,8.693586 +L 2.3266,8.693586,2.6103,8.340494 +L 2.6103,8.340494,2.9084,7.970428 +L 6.5051,7.970428,6.8483,8.159746 +L 6.8483,8.159746,7.2091,8.340494 +L 7.2091,8.340494,7.5733,8.504289 + +[随] 60 +L 0.8019,0.038206,0.8019,2.860186 +L 0.8019,2.860186,0.8019,5.682232 +L 0.8019,5.682232,0.8019,8.504289 +L 0.8019,8.504289,1.3585,8.504289 +L 1.3585,8.504289,1.9294,8.504289 +L 1.9294,8.504289,2.5076,8.504289 +L 2.5076,8.504289,2.0628,6.135646 +L 2.0628,6.135646,2.2866,4.834825 +L 2.2866,4.834825,2.5076,2.669522 +L 2.5076,2.669522,2.2169,2.505651 +L 2.2169,2.505651,1.9294,2.324957 +L 1.9294,2.324957,1.6565,2.13565 +L 3.1167,0.038206,3.4634,0.381359 +L 3.4634,0.381359,3.8242,0.724632 +L 3.8242,0.724632,4.1884,1.067829 +L 4.1884,1.067829,4.1884,2.324957 +L 4.1884,2.324957,4.1884,3.573461 +L 4.1884,3.573461,4.1884,4.805175 +L 4.1884,4.805175,3.8907,4.805175 +L 3.8907,4.805175,3.6105,4.805175 +L 3.6105,4.805175,3.3342,4.805175 +L 5.4703,0.038206,5.173,0.217554 +L 5.173,0.217554,4.8928,0.380089 +L 4.8928,0.380089,4.6157,0.533989 +L 5.8976,0.038206,6.5981,0.038206 +L 6.5981,0.038206,7.3025,0.038206 +L 7.3025,0.038206,8.0026,0.038206 +L 5.4703,1.601788,5.4528,4.600391 +L 5.4528,4.600391,5.3442,5.83623 +L 5.3442,5.83623,5.0395,6.368723 +L 5.0395,6.368723,4.8928,6.204875 +L 4.8928,6.204875,4.7418,6.024093 +L 4.7418,6.024093,4.6157,5.834774 +L 6.7176,1.601788,6.9978,1.601788 +L 6.9978,1.601788,7.2779,1.601788 +L 7.2779,1.601788,7.5718,1.601788 +L 7.5718,1.601788,7.5718,2.324957 +L 7.5718,2.324957,7.5718,3.039621 +L 7.5718,3.039621,7.5718,3.737343 +L 7.5718,3.737343,7.0044,3.737343 +L 7.0044,3.737343,6.444,3.737343 +L 6.444,3.737343,5.8976,3.737343 +L 7.5718,4.538178,7.0044,4.641304 +L 7.0044,4.641304,6.444,4.727519 +L 6.444,4.727519,5.8976,4.805175 +L 7.5718,5.300914,7.5718,5.67098 +L 7.5718,5.67098,7.5718,6.024093 +L 7.5718,6.024093,7.5718,6.368723 +L 7.5718,6.368723,6.2549,6.402621 +L 6.2549,6.402621,5.6279,6.792378 +L 5.6279,6.792378,5.4703,7.970428 +L 5.4703,7.970428,5.173,7.970428 +L 5.173,7.970428,4.8928,7.970428 +L 4.8928,7.970428,4.6157,7.970428 +L 5.8976,7.970428,5.8976,8.340494 +L 5.8976,8.340494,5.8976,8.693586 +L 5.8976,8.693586,5.8976,9.03815 +L 6.3214,7.970428,6.8717,7.970428 +L 6.8717,7.970428,7.4317,7.970428 +L 7.4317,7.970428,8.0026,7.970428 + +[髄] 75 +L 1.2589,0.038206,1.2589,1.449246 +L 1.2589,1.449246,1.2589,2.860186 +L 1.2589,2.860186,1.2589,4.271204 +L 1.2589,4.271204,1.8088,4.271204 +L 1.8088,4.271204,2.3692,4.271204 +L 2.3692,4.271204,2.9401,4.271204 +L 2.9401,4.271204,2.9401,2.860186 +L 2.9401,2.860186,2.9401,1.449246 +L 2.9401,1.449246,2.9401,0.038206 +L 3.7912,0.038206,4.5547,1.389835 +L 4.5547,1.389835,4.6948,2.665297 +L 4.6948,2.665297,4.6461,4.271204 +L 4.6461,4.271204,4.3484,4.271204 +L 4.3484,4.271204,4.0679,4.271204 +L 4.0679,4.271204,3.7912,4.271204 +L 5.8961,0.038206,5.6198,0.217554 +L 5.6198,0.217554,5.3497,0.380089 +L 5.3497,0.380089,5.0734,0.533989 +L 6.3234,0.038206,6.8807,0.038206 +L 6.8807,0.038206,7.4547,0.038206 +L 7.4547,0.038206,8.0295,0.038206 +L 5.8961,1.601788,5.8156,3.012817 +L 5.8156,3.012817,5.7459,4.423769 +L 5.7459,4.423769,5.6793,5.834774 +L 5.6793,5.834774,5.4723,5.67098 +L 5.4723,5.67098,5.2657,5.490221 +L 5.2657,5.490221,5.0734,5.300914 +L 7.6057,1.601788,7.6057,2.324957 +L 7.6057,2.324957,7.6057,3.039621 +L 7.6057,3.039621,7.6057,3.737343 +L 7.6057,3.737343,7.1784,3.737343 +L 7.1784,3.737343,6.7511,3.737343 +L 6.7511,3.737343,6.3234,3.737343 +L 1.655,2.13565,1.9317,2.13565 +L 1.9317,2.13565,2.2154,2.13565 +L 2.2154,2.13565,2.5093,2.13565 +L 1.655,3.203372,1.9317,3.203372 +L 1.9317,3.203372,2.2154,3.203372 +L 2.2154,3.203372,2.5093,3.203372 +L 7.6057,4.538178,7.1784,4.641304 +L 7.1784,4.641304,6.7511,4.727519 +L 6.7511,4.727519,6.3234,4.805175 +L 7.6057,5.300914,7.6057,5.67098 +L 7.6057,5.67098,7.6057,6.024093 +L 7.6057,6.024093,7.6057,6.368723 +L 7.6057,6.368723,7.0239,6.368723 +L 7.0239,6.368723,6.4534,6.368723 +L 6.4534,6.368723,5.8961,6.368723 +L 5.8961,6.368723,5.8961,6.902595 +L 5.8961,6.902595,5.8961,7.436456 +L 5.8961,7.436456,5.8961,7.970428 +L 5.8961,7.970428,5.6198,7.970428 +L 5.6198,7.970428,5.3497,7.970428 +L 5.3497,7.970428,5.0734,7.970428 +L 1.2589,5.834774,1.2589,6.738747 +L 1.2589,6.738747,1.2589,7.625776 +L 1.2589,7.625776,1.2589,8.504289 +L 1.2589,8.504289,1.8088,8.504289 +L 1.8088,8.504289,2.3692,8.504289 +L 2.3692,8.504289,2.9401,8.504289 +L 2.9401,8.504289,2.9401,7.625776 +L 2.9401,7.625776,2.9401,6.738747 +L 2.9401,6.738747,2.9401,5.834774 +L 2.9401,5.834774,2.3692,5.834774 +L 2.3692,5.834774,1.8088,5.834774 +L 1.8088,5.834774,1.2589,5.834774 +L 2.0823,6.368723,2.2154,6.738747 +L 2.2154,6.738747,2.359,7.091892 +L 2.359,7.091892,2.5093,7.436456 +L 6.3234,7.970428,6.3234,8.340494 +L 6.3234,8.340494,6.3234,8.693586 +L 6.3234,8.693586,6.3234,9.03815 +L 6.7511,7.970428,7.1784,7.970428 +L 7.1784,7.970428,7.6057,7.970428 +L 7.6057,7.970428,8.0295,7.970428 + +[崇] 45 +L 3.3977,0.038206,3.6671,0.038206 +L 3.6671,0.038206,3.9441,0.038206 +L 3.9441,0.038206,4.2208,0.038206 +L 4.2208,0.038206,4.2208,0.915297 +L 4.2208,0.915297,4.2208,1.792453 +L 4.2208,1.792453,4.2208,2.669522 +L 4.2208,2.669522,3.2188,2.669522 +L 3.2188,2.669522,2.2384,2.669522 +L 2.2384,2.669522,1.2574,2.669522 +L 1.0476,0.533989,1.5376,0.903947 +L 1.5376,0.903947,2.0314,1.257147 +L 2.0314,1.257147,2.5396,1.601788 +L 7.208,0.533989,6.7807,0.903947 +L 6.7807,0.903947,6.3538,1.257147 +L 6.3538,1.257147,5.9297,1.601788 +L 4.6446,2.669522,5.5027,2.669522 +L 5.5027,2.669522,6.3538,2.669522 +L 6.3538,2.669522,7.208,2.669522 +L 0.8301,4.271204,0.8301,4.803741 +L 0.8301,4.803741,0.8301,5.327785 +L 0.8301,5.327785,0.8301,5.834774 +L 0.8301,5.834774,3.093,5.834774 +L 3.093,5.834774,5.3591,5.834774 +L 5.3591,5.834774,7.6353,5.834774 +L 7.6353,5.834774,7.6353,5.327785 +L 7.6353,5.327785,7.6353,4.803741 +L 7.6353,4.803741,7.6353,4.271204 +L 2.1158,4.271204,3.5168,4.271204 +L 3.5168,4.271204,4.9283,4.271204 +L 4.9283,4.271204,6.3538,4.271204 +L 1.6885,7.436456,1.6885,7.806545 +L 1.6885,7.806545,1.6885,8.159746 +L 1.6885,8.159746,1.6885,8.504289 +L 2.1158,7.436456,2.816,7.436456 +L 2.816,7.436456,3.5168,7.436456 +L 3.5168,7.436456,4.2208,7.436456 +L 4.2208,7.436456,4.2208,7.970428 +L 4.2208,7.970428,4.2208,8.504289 +L 4.2208,8.504289,4.2208,9.03815 +L 4.6446,7.436456,5.3482,7.436456 +L 5.3482,7.436456,6.0592,7.436456 +L 6.0592,7.436456,6.7807,7.436456 +L 6.7807,7.436456,6.7807,7.806545 +L 6.7807,7.806545,6.7807,8.159746 +L 6.7807,8.159746,6.7807,8.504289 + +[枢] 36 +L 2.1455,0.038206,2.0618,1.638455 +L 2.0618,1.638455,1.9952,3.230352 +L 1.9952,3.230352,1.9322,4.805175 +L 1.9322,4.805175,1.5641,4.107443 +L 1.5641,4.107443,1.2107,3.392723 +L 1.2107,3.392723,0.864,2.669522 +L 3.82,0.038206,3.82,2.860186 +L 3.82,2.860186,3.82,5.682232 +L 3.82,5.682232,3.82,8.504289 +L 3.82,8.504289,5.0806,8.504289 +L 5.0806,8.504289,6.3523,8.504289 +L 6.3523,8.504289,7.6338,8.504289 +L 4.2505,0.038206,5.5114,0.038206 +L 5.5114,0.038206,6.7827,0.038206 +L 6.7827,0.038206,8.0611,0.038206 +L 4.6778,1.601788,5.2315,2.591844 +L 5.2315,2.591844,5.7849,3.573461 +L 5.7849,3.573461,6.3523,4.538178 +L 6.3523,4.538178,5.9317,5.148393 +L 5.9317,5.148393,5.5114,5.758552 +L 5.5114,5.758552,5.1016,6.368723 +L 7.21,2.13565,7.0563,2.858851 +L 7.0563,2.858851,6.9127,3.573461 +L 6.9127,3.573461,6.7827,4.271204 +L 2.9689,4.805175,2.4922,5.213352 +L 2.4922,5.213352,2.1665,5.757108 +L 2.1665,5.757108,1.7151,6.902595 +L 1.7151,6.902595,1.4205,6.902595 +L 1.4205,6.902595,1.1403,6.902595 +L 1.1403,6.902595,0.864,6.902595 +L 6.7827,5.300914,6.7827,6.024093 +L 6.7827,6.024093,6.7827,6.738747 +L 6.7827,6.738747,6.7827,7.436456 +L 2.5416,6.902595,2.2614,7.337698 +L 2.2614,7.337698,2.1634,7.891305 +L 2.1634,7.891305,2.1455,9.03815 + +[据] 51 +L 1.2579,0.038206,1.5349,0.038206 +L 1.5349,0.038206,1.8186,0.038206 +L 1.8186,0.038206,2.1163,0.038206 +L 2.1163,0.038206,2.0988,2.661083 +L 2.0988,2.661083,1.9899,3.758544 +L 1.9899,3.758544,1.6852,4.271204 +L 1.6852,4.271204,1.4155,4.107443 +L 1.4155,4.107443,1.1353,3.926562 +L 1.1353,3.926562,0.8625,3.737343 +L 3.3947,0.305126,4.0914,3.074941 +L 4.0914,3.074941,4.2668,5.658218 +L 4.2668,5.658218,4.2493,8.504289 +L 4.2493,8.504289,5.3771,8.504289 +L 5.3771,8.504289,6.5046,8.504289 +L 6.5046,8.504289,7.6358,8.504289 +L 7.6358,8.504289,7.6358,7.970428 +L 7.6358,7.970428,7.6358,7.436456 +L 7.6358,7.436456,7.6358,6.902595 +L 7.6358,6.902595,7.2085,6.902595 +L 7.2085,6.902595,6.7812,6.902595 +L 6.7812,6.902595,6.3575,6.902595 +L 6.3575,6.902595,6.4103,5.460494 +L 6.4103,5.460494,6.8478,4.899719 +L 6.8478,4.899719,8.0631,4.805175 +L 5.0724,0.038206,5.0724,0.915297 +L 5.0724,0.915297,5.0724,1.792453 +L 5.0724,1.792453,5.0724,2.669554 +L 5.0724,2.669554,5.4997,2.669554 +L 5.4997,2.669554,5.927,2.669554 +L 5.927,2.669554,6.3575,2.669554 +L 6.3575,2.669554,6.2174,4.290971 +L 6.2174,4.290971,5.7095,4.785408 +L 5.7095,4.785408,4.6763,4.805175 +L 5.4997,0.038206,6.1998,0.038206 +L 6.1998,0.038206,6.9108,0.038206 +L 6.9108,0.038206,7.6358,0.038206 +L 7.6358,0.038206,7.6358,0.915297 +L 7.6358,0.915297,7.6358,1.792453 +L 7.6358,1.792453,7.6358,2.669554 +L 7.6358,2.669554,7.3385,2.669554 +L 7.3385,2.669554,7.0583,2.669554 +L 7.0583,2.669554,6.7812,2.669554 +L 2.5436,4.271204,2.0319,5.512812 +L 2.0319,5.512812,1.8218,6.500065 +L 1.8218,6.500065,0.8625,6.902595 +L 2.5436,6.902595,2.2424,7.337698 +L 2.2424,7.337698,2.13,7.891305 +L 2.13,7.891305,2.1163,9.03815 +L 4.6763,6.902595,5.0861,6.902595 +L 5.0861,6.902595,5.4997,6.902595 +L 5.4997,6.902595,5.927,6.902595 + +[杉] 24 +L 2.1428,0.038206,2.0623,1.638488 +L 2.0623,1.638488,1.9957,3.230374 +L 1.9957,3.230374,1.9288,4.805175 +L 1.9288,4.805175,1.5646,4.107443 +L 1.5646,4.107443,1.2077,3.392723 +L 1.2077,3.392723,0.8645,2.669554 +L 4.2478,0.038206,5.3858,0.466129 +L 5.3858,0.466129,6.377,1.148385 +L 6.377,1.148385,8.0616,2.669554 +L 4.6748,3.737343,5.7819,4.17099 +L 5.7819,4.17099,6.5524,4.714724 +L 6.5524,4.714724,7.6378,5.834818 +L 3.3967,4.271204,2.6437,5.055271 +L 2.6437,5.055271,2.209,5.737352 +L 2.209,5.737352,1.7156,6.902595 +L 1.7156,6.902595,1.4245,6.902595 +L 1.4245,6.902595,1.1373,6.902595 +L 1.1373,6.902595,0.8645,6.902595 +L 2.5733,6.902595,2.2721,7.337698 +L 2.2721,7.337698,2.1604,7.891305 +L 2.1604,7.891305,2.1428,9.03815 +L 4.2478,6.902595,5.3616,7.337698 +L 5.3616,7.337698,6.1321,7.891305 +L 6.1321,7.891305,7.2389,9.03815 + +[澄] 42 +L 0.8595,0.038206,1.0836,1.584812 +L 1.0836,1.584812,1.4965,2.978821 +L 1.4965,2.978821,1.7176,4.271204 +L 2.9644,0.038206,3.5245,0.038206 +L 3.5245,0.038206,4.0954,0.038206 +L 4.0954,0.038206,4.6736,0.038206 +L 4.6736,0.038206,4.3791,1.449257 +L 4.3791,1.449257,4.0954,2.860186 +L 4.0954,2.860186,3.8225,4.271204 +L 3.8225,4.271204,4.7962,4.271204 +L 4.7962,4.271204,5.7839,4.271204 +L 5.7839,4.271204,6.7852,4.271204 +L 6.7852,4.271204,6.3723,2.216107 +L 6.3723,2.216107,6.0532,1.000067 +L 6.0532,1.000067,5.9275,0.038206 +L 5.9275,0.038206,6.4879,0.038206 +L 6.4879,0.038206,7.0553,0.038206 +L 7.0553,0.038206,7.6363,0.038206 +L 4.6736,2.669554,5.0831,2.669554 +L 5.0831,2.669554,5.5037,2.669554 +L 5.5037,2.669554,5.9275,2.669554 +L 3.1812,5.834818,3.5245,6.204875 +L 3.5245,6.204875,3.8852,6.557965 +L 3.8852,6.557965,4.2495,6.902595 +L 4.2495,6.902595,3.9553,7.35879 +L 3.9553,7.35879,3.6716,7.806589 +L 3.6716,7.806589,3.3952,8.237412 +L 3.3952,8.237412,4.0954,8.340494 +L 4.0954,8.340494,4.8102,8.426633 +L 4.8102,8.426633,5.5314,8.504289 +L 5.5314,8.504289,5.8049,8.159746 +L 5.8049,8.159746,6.0816,7.806589 +L 6.0816,7.806589,6.3548,7.436456 +L 6.3548,7.436456,6.6315,7.806589 +L 6.6315,7.806589,6.9117,8.159746 +L 6.9117,8.159746,7.2055,8.504289 +L 4.2495,5.834818,4.9503,5.834818 +L 4.9503,5.834818,5.654,5.834818 +L 5.654,5.834818,6.3548,5.834818 +L 7.6363,5.834818,7.339,6.204875 +L 7.339,6.204875,7.0553,6.557965 +L 7.0553,6.557965,6.7852,6.902595 + +[瀬] 66 +L 0.865,0.038206,1.0856,1.584812 +L 1.0856,1.584812,1.4985,2.978821 +L 1.4985,2.978821,1.716,4.271204 +L 3.8522,0.038206,3.7681,0.915297 +L 3.7681,0.915297,3.7019,1.792453 +L 3.7019,1.792453,3.6389,2.669554 +L 3.6389,2.669554,3.2746,2.324957 +L 3.2746,2.324957,2.9135,1.971779 +L 2.9135,1.971779,2.5703,1.601788 +L 4.8893,0.038206,5.236,0.381359 +L 5.236,0.381359,5.5894,0.724632 +L 5.5894,0.724632,5.9537,1.067862 +L 8.094,0.038206,7.796,0.381359 +L 7.796,0.381359,7.5123,0.724632 +L 7.5123,0.724632,7.2429,1.067862 +L 5.9537,2.135682,6.2759,5.717596 +L 6.2759,5.717596,6.4965,7.2995 +L 6.4965,7.2995,6.8121,8.237412 +L 6.8121,8.237412,6.3845,8.340494 +L 6.3845,8.340494,5.9537,8.426633 +L 5.9537,8.426633,5.5334,8.504289 +L 6.3845,2.135682,6.8121,2.135682 +L 6.8121,2.135682,7.2429,2.135682 +L 7.2429,2.135682,7.6632,2.135682 +L 7.6632,2.135682,7.6632,2.669554 +L 7.6632,2.669554,7.6632,3.203372 +L 7.6632,3.203372,7.6632,3.737343 +L 7.6632,3.737343,7.2429,3.737343 +L 7.2429,3.737343,6.8121,3.737343 +L 6.8121,3.737343,6.3845,3.737343 +L 4.6788,2.669554,4.1888,3.203372 +L 4.1888,3.203372,3.7019,3.737343 +L 3.7019,3.737343,3.2151,4.271204 +L 3.2151,4.271204,3.2361,5.776886 +L 3.2361,5.776886,3.4039,6.528315 +L 3.4039,6.528315,3.8522,7.169493 +L 3.8522,7.169493,3.5583,7.436456 +L 3.5583,7.436456,3.2746,7.703442 +L 3.2746,7.703442,2.9976,7.970428 +L 4.2798,4.271204,3.9786,4.685084 +L 3.9786,4.685084,3.8662,5.090362 +L 3.8662,5.090362,3.8522,5.834818 +L 3.8522,5.834818,4.0483,6.024093 +L 4.0483,6.024093,4.2515,6.204875 +L 4.2515,6.204875,4.462,6.368723 +L 4.462,6.368723,4.4024,5.68093 +L 4.4024,5.68093,4.339,4.984598 +L 4.339,4.984598,4.2798,4.271204 +L 7.6632,4.271204,7.6632,4.614433 +L 7.6632,4.614433,7.6632,4.957728 +L 7.6632,4.957728,7.6632,5.300946 +L 7.6632,5.300946,7.2429,5.300946 +L 7.2429,5.300946,6.8121,5.300946 +L 6.8121,5.300946,6.3845,5.300946 +L 7.6632,5.834818,7.6632,6.204875 +L 7.6632,6.204875,7.6632,6.557965 +L 7.6632,6.557965,7.6632,6.902595 +L 7.6632,6.902595,7.3687,6.902595 +L 7.3687,6.902595,7.0885,6.902595 +L 7.0885,6.902595,6.8121,6.902595 +L 4.2798,7.970428,4.1289,8.340494 +L 4.1289,8.340494,3.9821,8.693618 +L 3.9821,8.693618,3.8522,9.03815 +L 7.2429,8.504289,7.5123,8.504289 +L 7.5123,8.504289,7.796,8.504289 +L 7.796,8.504289,8.094,8.504289 + + +# kan_31 ------------------------------------------------------- +# 畝是姓征牲誓請逝斉隻惜斥析籍跡拙摂窃仙占扇栓潜旋繊薦践遷銑鮮漸禅繕塑措疎礎租粗訴阻僧双喪壮捜掃挿曹槽 + +[畝] 48 +L 3.3938,0,2.9941,0.375671 +L 2.9941,0.375671,2.2271,0.514105 +L 2.2271,0.514105,0.4304,0.533861 +L 0.4304,0.533861,0.4304,2.314978 +L 0.4304,2.314978,0.4304,4.07913 +L 0.4304,4.07913,0.4304,5.834789 +L 0.4304,5.834789,1.2639,5.834789 +L 1.2639,5.834789,2.1115,5.834789 +L 2.1115,5.834789,2.9626,5.834789 +L 2.9626,5.834789,2.9626,4.259868 +L 2.9626,4.259868,2.9626,2.66808 +L 2.9626,2.66808,2.9626,1.067733 +L 7.2041,0,6.2935,1.515587 +L 6.2935,1.515587,5.905,2.336113 +L 5.905,2.336113,5.7085,3.165286 +L 5.7085,3.165286,5.0676,2.288195 +L 5.0676,2.288195,4.4375,1.411028 +L 4.4375,1.411028,3.8176,0.533861 +L 1.6846,1.067733,1.6846,1.60027 +L 1.6846,1.60027,1.6846,2.124314 +L 1.6846,2.124314,1.6846,2.631304 +L 1.6846,2.631304,1.4075,2.820634 +L 1.4075,2.820634,1.1308,3.001404 +L 1.1308,3.001404,0.8615,3.165286 +L 2.1084,3.165286,1.8068,3.600268 +L 1.8068,3.600268,1.7021,4.153995 +L 1.7021,4.153995,1.6846,5.30083 +L 5.4988,3.699114,5.9331,4.621507 +L 5.9331,4.621507,6.2378,5.84036 +L 6.2378,5.84036,6.3498,6.864379 +L 6.3498,6.864379,5.7786,6.786744 +L 5.7786,6.786744,5.2217,6.700617 +L 5.2217,6.700617,4.6718,6.597491 +L 4.6718,6.597491,4.3745,5.987222 +L 4.3745,5.987222,4.0939,5.37715 +L 4.0939,5.37715,3.8176,4.766957 +L 0.0034,7.398338,0.5529,7.398338 +L 0.5529,7.398338,1.1133,7.398338 +L 1.1133,7.398338,1.6846,7.398338 +L 1.6846,7.398338,1.6846,7.932199 +L 1.6846,7.932199,1.6846,8.466148 +L 1.6846,8.466148,1.6846,9.000042 +L 2.1084,7.398338,2.5353,7.398338 +L 2.5353,7.398338,2.9626,7.398338 +L 2.9626,7.398338,3.3938,7.398338 +L 4.6718,7.398338,4.9524,7.813565 +L 4.9524,7.813565,5.0501,8.228868 +L 5.0501,8.228868,5.0676,9.000042 + +[是] 36 +L 0.0019,0,0.7581,1.247245 +L 0.7581,1.247245,1.1609,2.299425 +L 1.1609,2.299425,1.2835,3.699114 +L 3.4199,0.266996,2.7864,0.492882 +L 2.7864,0.492882,2.3415,0.829096 +L 2.3415,0.829096,1.7107,1.563604 +L 3.8157,0,4.8003,0 +L 4.8003,0,5.802,0 +L 5.802,0,6.8068,0 +L 3.4199,1.067733,3.4199,2.314978 +L 3.4199,2.314978,3.4199,3.545225 +L 3.4199,3.545225,3.4199,4.766957 +L 3.4199,4.766957,2.2715,4.766957 +L 2.2715,4.766957,1.1367,4.766957 +L 1.1367,4.766957,0.0019,4.766957 +L 3.8157,2.631304,4.6668,2.631304 +L 4.6668,2.631304,5.5249,2.631304 +L 5.5249,2.631304,6.376,2.631304 +L 3.8157,4.766957,4.8003,4.766957 +L 4.8003,4.766957,5.802,4.766957 +L 5.802,4.766957,6.8068,4.766957 +L 1.2835,6.33054,1.2835,7.053686 +L 1.2835,7.053686,1.2835,7.768438 +L 1.2835,7.768438,1.2835,8.466148 +L 1.2835,8.466148,2.6879,8.466148 +L 2.6879,8.466148,4.0994,8.466148 +L 4.0994,8.466148,5.5249,8.466148 +L 5.5249,8.466148,5.5249,7.768438 +L 5.5249,7.768438,5.5249,7.053686 +L 5.5249,7.053686,5.5249,6.33054 +L 5.5249,6.33054,4.0994,6.33054 +L 4.0994,6.33054,2.6879,6.33054 +L 2.6879,6.33054,1.2835,6.33054 +L 1.7107,7.398338,2.842,7.398338 +L 2.842,7.398338,3.9663,7.398338 +L 3.9663,7.398338,5.0976,7.398338 + +[姓] 49 +L 0.0351,0,0.4592,0.610105 +L 0.4592,0.610105,0.8897,1.220364 +L 0.8897,1.220364,1.3135,1.830567 +L 1.3135,1.830567,0.9846,2.403962 +L 0.9846,2.403962,0.6519,2.680842 +L 0.6519,2.680842,0.0351,2.8983 +L 0.0351,2.8983,0.3503,3.906766 +L 0.3503,3.906766,0.5713,5.093243 +L 0.5713,5.093243,0.8897,6.101676 +L 0.8897,6.101676,0.592,6.367205 +L 0.592,6.367205,0.3118,6.624285 +L 0.3118,6.624285,0.0351,6.864379 +L 2.9946,0,3.6951,0 +L 3.6951,0,4.4065,0 +L 4.4065,0,5.1245,0 +L 5.1245,0,5.135,2.348876 +L 5.135,2.348876,4.7602,3.43503 +L 4.7602,3.43503,3.4184,3.699114 +L 5.5549,0,6.1052,0 +L 6.1052,0,6.6652,0 +L 6.6652,0,7.2361,0 +L 2.5673,1.067733,1.8178,2.909618 +L 1.8178,2.909618,1.9299,4.844624 +L 1.9299,4.844624,2.14,6.864379 +L 2.14,6.864379,1.1072,7.155389 +L 1.1072,7.155389,0.8582,7.920958 +L 0.8582,7.920958,0.8897,9.000042 +L 5.5549,3.699114,4.9805,5.265575 +L 4.9805,5.265575,4.8303,6.416644 +L 4.8303,6.416644,3.4184,6.864379 +L 3.4184,6.864379,3.2678,6.176617 +L 3.2678,6.176617,3.1242,5.480231 +L 3.1242,5.480231,2.9946,4.766957 +L 5.9822,3.699114,6.2593,3.699114 +L 6.2593,3.699114,6.5356,3.699114 +L 6.5356,3.699114,6.8057,3.699114 +L 5.5549,6.864379,5.2537,7.29935 +L 5.2537,7.29935,5.1417,7.853208 +L 5.1417,7.853208,5.1245,9.000042 +L 5.9822,6.864379,6.2593,6.864379 +L 6.2593,6.864379,6.5356,6.864379 +L 6.5356,6.864379,6.8057,6.864379 +L 3.8496,7.398338,3.8496,7.768438 +L 3.8496,7.768438,3.8496,8.121507 +L 3.8496,8.121507,3.8496,8.466148 +L 3.4328,6.33031,-0.1646,6.33031 +L 0.6935,3.32653,1.3135,8.999889 +A -4.6967,-3.399556,8.620982,23.224227,51.278884 +A -6.56,6.33031,9.138971,316.15783,0 + +[征] 36 +L 0.8882,0,0.8041,1.411028 +L 0.8041,1.411028,0.7341,2.822056 +L 0.7341,2.822056,0.6745,4.233096 +L 0.6745,4.233096,0.4644,4.069214 +L 0.4644,4.069214,0.2577,3.888466 +L 0.2577,3.888466,0.0616,3.699114 +L 2.1736,0,2.4436,0 +L 2.4436,0,2.7273,0 +L 2.7273,0,3.0247,0 +L 3.0247,0,3.0247,1.781117 +L 3.0247,1.781117,3.0247,3.545225 +L 3.0247,3.545225,3.0247,5.30083 +L 3.452,0,3.8586,0 +L 3.8586,0,4.2785,0 +L 4.2785,0,4.6992,0 +L 4.6992,0,4.6992,2.822056 +L 4.6992,2.822056,4.6992,5.644113 +L 4.6992,5.644113,4.6992,8.466148 +L 4.6992,8.466148,3.9983,8.466148 +L 3.9983,8.466148,3.2979,8.466148 +L 3.2979,8.466148,2.5974,8.466148 +L 5.1296,0,5.8301,0 +L 5.8301,0,6.5376,0 +L 6.5376,0,7.2626,0 +L 5.1296,4.233096,5.6865,4.233096 +L 5.6865,4.233096,6.2578,4.233096 +L 6.2578,4.233096,6.8388,4.233096 +L 0.8882,4.766957,1.1649,5.480231 +L 1.1649,5.480231,1.4489,6.176617 +L 1.4489,6.176617,1.7431,6.864379 +L 0.0616,6.864379,0.4714,7.587667 +L 0.4714,7.587667,0.892,8.302299 +L 0.892,8.302299,1.3155,9.000042 +L 5.1296,8.466148,5.6865,8.466148 +L 5.6865,8.466148,6.2578,8.466148 +L 6.2578,8.466148,6.8388,8.466148 + +[牲] 45 +L 1.3455,0,1.3315,2.622964 +L 1.3315,2.622964,1.2194,3.720348 +L 1.2194,3.720348,0.9217,4.233096 +L 0.9217,4.233096,0.624,4.069214 +L 0.624,4.069214,0.3403,3.888466 +L 0.3403,3.888466,0.0639,3.699114 +L 3.0547,0,3.7552,0 +L 3.7552,0,4.456,0 +L 4.456,0,5.1565,0 +L 5.1565,0,5.1667,2.348876 +L 5.1667,2.348876,4.7923,3.43503 +L 4.7923,3.43503,3.447,3.699114 +L 5.587,0,6.1372,0 +L 6.1372,0,6.6972,0 +L 6.6972,0,7.2615,0 +L 5.587,3.699114,5.0129,5.265575 +L 5.0129,5.265575,4.8623,6.416644 +L 4.8623,6.416644,3.447,6.864379 +L 3.447,6.864379,3.3069,6.521182 +L 3.3069,6.521182,3.1773,6.177985 +L 3.1773,6.177985,3.0547,5.834789 +L 6.0146,3.699114,6.2878,3.699114 +L 6.2878,3.699114,6.5715,3.699114 +L 6.5715,3.699114,6.8657,3.699114 +L 1.7731,4.233096,1.4471,5.033942 +L 1.4471,5.033942,1.1704,6.063543 +L 1.1704,6.063543,0.7045,6.864379 +L 0.7045,6.864379,0.4909,6.521182 +L 0.4909,6.521182,0.2807,6.177985 +L 0.2807,6.177985,0.0639,5.834789 +L 1.7731,6.864379,1.4719,7.29935 +L 1.4719,7.29935,1.3599,7.853208 +L 1.3599,7.853208,1.3455,9.000042 +L 5.587,6.864379,5.2822,7.29935 +L 5.2822,7.29935,5.174,7.853208 +L 5.174,7.853208,5.1565,9.000042 +L 6.0146,6.864379,6.2878,6.864379 +L 6.2878,6.864379,6.5715,6.864379 +L 6.5715,6.864379,6.8657,6.864379 +L 0.4909,7.398338,0.4909,7.768438 +L 0.4909,7.768438,0.4909,8.121507 +L 0.4909,8.121507,0.4909,8.466148 +L 3.447,7.398338,3.447,7.768438 +L 3.447,7.768438,3.447,8.121507 +L 3.447,8.121507,3.447,8.466148 + +[誓] 54 +L 1.3794,0,1.3794,0.3701 +L 1.3794,0.3701,1.3794,0.723191 +L 1.3794,0.723191,1.3794,1.067733 +L 1.3794,1.067733,2.7835,1.067733 +L 2.7835,1.067733,4.1848,1.067733 +L 4.1848,1.067733,5.5855,1.067733 +L 5.5855,1.067733,5.5855,0.723191 +L 5.5855,0.723191,5.5855,0.3701 +L 5.5855,0.3701,5.5855,0 +L 5.5855,0,4.1848,0 +L 4.1848,0,2.7835,0 +L 2.7835,0,1.3794,0 +L 1.3794,2.097443,2.7835,2.097443 +L 2.7835,2.097443,4.1848,2.097443 +L 4.1848,2.097443,5.5855,2.097443 +L 1.3794,3.165286,2.7835,3.165286 +L 2.7835,3.165286,4.1848,3.165286 +L 4.1848,3.165286,5.5855,3.165286 +L 0.094,4.233096,2.4858,4.233096 +L 2.4858,4.233096,4.885,4.233096 +L 4.885,4.233096,7.2947,4.233096 +L 1.7751,5.30083,1.4946,5.714666 +L 1.4946,5.714666,1.3899,6.120085 +L 1.3899,6.120085,1.3794,6.864379 +L 1.3794,6.864379,0.9482,6.864379 +L 0.9482,6.864379,0.5209,6.864379 +L 0.5209,6.864379,0.094,6.864379 +L 2.1989,5.30083,3.1863,5.30083 +L 3.1863,5.30083,4.1848,5.30083 +L 4.1848,5.30083,5.1932,5.30083 +L 6.0166,5.834789,6.0166,6.367205 +L 6.0166,6.367205,6.0166,6.891282 +L 6.0166,6.891282,6.0166,7.398338 +L 6.0166,7.398338,4.5176,7.180814 +L 4.5176,7.180814,3.8591,6.903934 +L 3.8591,6.903934,3.4843,6.33054 +L 1.3794,7.398338,1.3794,7.768438 +L 1.3794,7.768438,1.3794,8.121507 +L 1.3794,8.121507,1.3794,8.466148 +L 1.3794,8.466148,0.9482,8.466148 +L 0.9482,8.466148,0.5209,8.466148 +L 0.5209,8.466148,0.094,8.466148 +L 1.7751,7.398338,2.0483,7.398338 +L 2.0483,7.398338,2.3352,7.398338 +L 2.3352,7.398338,2.6294,7.398338 +L 6.4404,7.398338,6.7167,7.398338 +L 6.7167,7.398338,7.0004,7.398338 +L 7.0004,7.398338,7.2947,7.398338 +L 3.9043,8.199195,4.885,8.466148 +L 4.885,8.466148,5.8692,8.733068 +L 5.8692,8.733068,6.8674,9.000042 +L 1.7751,8.466148,2.0483,8.466148 +L 2.0483,8.466148,2.3352,8.466148 +L 2.3352,8.466148,2.6294,8.466148 + +[請] 68 +L 0.5229,0,0.5229,0.713296 +L 0.5229,0.713296,0.5229,1.409606 +L 0.5229,1.409606,0.5229,2.097443 +L 0.5229,2.097443,1.0833,2.097443 +L 1.0833,2.097443,1.6546,2.097443 +L 1.6546,2.097443,2.2321,2.097443 +L 2.2321,2.097443,2.2321,1.409606 +L 2.2321,1.409606,2.2321,0.713296 +L 2.2321,0.713296,2.2321,0 +L 2.2321,0,1.6546,0 +L 1.6546,0,1.0833,0 +L 1.0833,0,0.5229,0 +L 3.9417,0,3.9417,1.411028 +L 3.9417,1.411028,3.9417,2.822056 +L 3.9417,2.822056,3.9417,4.233096 +L 3.9417,4.233096,4.7717,4.233096 +L 4.7717,4.233096,5.6193,4.233096 +L 5.6193,4.233096,6.4736,4.233096 +L 6.4736,4.233096,6.4736,2.822056 +L 6.4736,2.822056,6.4736,1.411028 +L 6.4736,1.411028,6.4736,0 +L 6.4736,0,6.1762,0 +L 6.1762,0,5.8957,0 +L 5.8957,0,5.6193,0 +L 4.3371,2.097443,4.894,2.097443 +L 4.894,2.097443,5.4687,2.097443 +L 5.4687,2.097443,6.0428,2.097443 +L 4.3371,3.165286,4.894,3.165286 +L 4.894,3.165286,5.4687,3.165286 +L 5.4687,3.165286,6.0428,3.165286 +L 0.5229,3.699114,1.0833,3.699114 +L 1.0833,3.699114,1.6546,3.699114 +L 1.6546,3.699114,2.2321,3.699114 +L 0.5229,5.30083,1.0833,5.30083 +L 1.0833,5.30083,1.6546,5.30083 +L 1.6546,5.30083,2.2321,5.30083 +L 3.0867,5.834789,3.7875,5.937893 +L 3.7875,5.937893,4.488,6.024009 +L 4.488,6.024009,5.1882,6.101676 +L 5.1882,6.101676,4.8589,6.638394 +L 4.8589,6.638394,4.5332,6.836162 +L 4.5332,6.836162,3.9417,6.864379 +L 5.6193,5.834789,6.1762,5.834789 +L 6.1762,5.834789,6.7468,5.834789 +L 6.7468,5.834789,7.3247,5.834789 +L 0.1271,6.864379,0.9572,6.864379 +L 0.9572,6.864379,1.8052,6.864379 +L 1.8052,6.864379,2.6594,6.864379 +L 5.6193,6.864379,4.9714,7.615873 +L 4.9714,7.615873,4.425,7.892644 +L 4.425,7.892644,3.5105,7.932199 +L 5.6193,7.932199,5.4687,8.302299 +L 5.4687,8.302299,5.3181,8.655401 +L 5.3181,8.655401,5.1882,9.000042 +L 6.0428,7.932199,6.3198,7.932199 +L 6.3198,7.932199,6.6035,7.932199 +L 6.6035,7.932199,6.8977,7.932199 +L 0.5229,8.466148,1.0833,8.466148 +L 1.0833,8.466148,1.6546,8.466148 +L 1.6546,8.466148,2.2321,8.466148 +L 0.096,6.902522,2.6279,6.902522 +L 0.5229,8.504324,2.2009,8.504324 +L 0.5229,5.300971,2.2009,5.300971 +L 0.5229,4.23303,2.2009,4.23303 +L 0.5229,2.669536,2.2009,2.669536 +L 0.5229,0,0.5229,2.669536 +L 2.2009,0,0.5229,0 +L 2.2009,2.669536,2.2009,0 + +[逝] 48 +L 0.3393,0,0.686,0.3701 +L 0.686,0.3701,1.0398,0.723191 +L 1.0398,0.723191,1.4114,1.067733 +L 1.4114,1.067733,1.4114,2.314978 +L 1.4114,2.314978,1.4114,3.545225 +L 1.4114,3.545225,1.4114,4.766957 +L 1.4114,4.766957,0.9802,4.766957 +L 0.9802,4.766957,0.5529,4.766957 +L 0.5529,4.766957,0.126,4.766957 +L 2.6579,0,2.3847,0.189329 +L 2.3847,0.189329,2.1115,0.3701 +L 2.1115,0.3701,1.8352,0.533861 +L 3.0852,0,4.4897,0 +L 4.4897,0,5.8977,0 +L 5.8977,0,7.3267,0 +L 2.2621,1.563604,2.5353,1.563604 +L 2.5353,1.563604,2.812,1.563604 +L 2.812,1.563604,3.0852,1.563604 +L 3.0852,1.563604,3.0852,2.631304 +L 3.0852,2.631304,3.0852,3.699114 +L 3.0852,3.699114,3.0852,4.766957 +L 3.0852,4.766957,2.812,4.766957 +L 2.812,4.766957,2.5353,4.766957 +L 2.5353,4.766957,2.2621,4.766957 +L 4.3675,1.830567,4.6648,2.590304 +L 4.6648,2.590304,4.7769,4.172318 +L 4.7769,4.172318,4.7944,7.932199 +L 4.7944,7.932199,6.0273,7.952087 +L 6.0273,7.952087,6.6826,8.090412 +L 6.6826,8.090412,7.3267,8.466148 +L 6.5004,1.563604,6.5004,3.001404 +L 6.5004,3.001404,6.5004,4.422305 +L 6.5004,4.422305,6.5004,5.834789 +L 6.5004,5.834789,6.0766,5.834789 +L 6.0766,5.834789,5.6455,5.834789 +L 5.6455,5.834789,5.2217,5.834789 +L 3.0852,5.30083,3.0852,5.833333 +L 3.0852,5.833333,3.0852,6.357421 +L 3.0852,6.357421,3.0852,6.864379 +L 3.0852,6.864379,2.812,7.053686 +L 2.812,7.053686,2.5353,7.234456 +L 2.5353,7.234456,2.2621,7.398338 +L 1.4114,7.398338,1.1098,7.768438 +L 1.1098,7.768438,0.8296,8.121507 +L 0.8296,8.121507,0.5529,8.466148 +L 3.5164,7.398338,3.2116,7.813565 +L 3.2116,7.813565,3.1027,8.228868 +L 3.1027,8.228868,3.0852,9.000042 + +[斉] 39 +L 0.583,0,1.4624,1.651056 +L 1.4624,1.651056,1.7388,2.91242 +L 1.7388,2.91242,1.6197,4.766957 +L 1.6197,4.766957,1.1328,4.603185 +L 1.1328,4.603185,0.646,4.422305 +L 0.646,4.422305,0.1592,4.233096 +L 5.6475,0,5.6475,0.713296 +L 5.6475,0.713296,5.6475,1.409606 +L 5.6475,1.409606,5.6475,2.097443 +L 5.6475,2.097443,4.5197,2.097443 +L 4.5197,2.097443,3.3884,2.097443 +L 3.3884,2.097443,2.2641,2.097443 +L 5.6475,2.631304,5.6475,3.001404 +L 5.6475,3.001404,5.6475,3.354506 +L 5.6475,3.354506,5.6475,3.699114 +L 5.6475,3.699114,4.5197,3.699114 +L 4.5197,3.699114,3.3884,3.699114 +L 3.3884,3.699114,2.2641,3.699114 +L 5.6475,4.499972,4.7964,4.870071 +L 4.7964,4.870071,3.9453,5.223162 +L 3.9453,5.223162,3.1152,5.567814 +L 3.1152,5.567814,2.8179,5.30083 +L 2.8179,5.30083,2.5373,5.033942 +L 2.5373,5.033942,2.2641,4.766957 +L 6.0751,4.233096,6.3515,4.233096 +L 6.3515,4.233096,6.6352,4.233096 +L 6.6352,4.233096,6.9294,4.233096 +L 2.6848,6.33054,1.8337,7.466121 +L 1.8337,7.466121,1.1714,7.788095 +L 1.1714,7.788095,0.1592,7.932199 +L 4.3936,6.33054,4.6738,6.786744 +L 4.6738,6.786744,4.947,7.234456 +L 4.947,7.234456,5.2202,7.665334 +L 5.2202,7.665334,4.2259,7.768438 +L 4.2259,7.768438,3.2378,7.854543 +L 3.2378,7.854543,2.2641,7.932199 +L 5.6475,7.932199,6.0751,7.932199 +L 6.0751,7.932199,6.5056,7.932199 +L 6.5056,7.932199,6.9294,7.932199 + +[隻] 54 +L 0.1577,0,1.2087,0.081903 +L 1.2087,0.081903,2.5393,0.401184 +L 2.5393,0.401184,3.5725,1.067733 +L 3.5725,1.067733,2.6237,1.990126 +L 2.6237,1.990126,1.9614,2.395546 +L 1.9614,2.395546,1.0123,2.631304 +L 6.1052,0,5.3833,0.3701 +L 5.3833,0.3701,4.6758,0.723191 +L 4.6758,0.723191,3.9683,1.067733 +L 6.5325,0,6.8092,0 +L 6.8092,0,7.0929,0 +L 7.0929,0,7.3867,0 +L 5.0401,1.563604,5.2537,1.830567 +L 5.2537,1.830567,5.4639,2.097443 +L 5.4639,2.097443,5.6775,2.364439 +L 5.6775,2.364439,4.6828,2.467543 +L 4.6828,2.467543,3.6951,2.553637 +L 3.6951,2.553637,2.7214,2.631304 +L 1.436,4.233096,1.3555,5.299396 +L 1.3555,5.299396,1.2854,6.357421 +L 1.2854,6.357421,1.2259,7.398338 +L 1.2259,7.398338,0.862,7.053686 +L 0.862,7.053686,0.5012,6.700617 +L 0.5012,6.700617,0.1577,6.33054 +L 1.8672,4.233096,2.5673,4.233096 +L 2.5673,4.233096,3.2678,4.233096 +L 3.2678,4.233096,3.9683,4.233096 +L 3.9683,4.233096,3.9543,5.004292 +L 3.9543,5.004292,3.8562,5.419551 +L 3.8562,5.419551,3.5725,5.834789 +L 3.5725,5.834789,2.9946,5.834789 +L 2.9946,5.834789,2.4241,5.834789 +L 2.4241,5.834789,1.8672,5.834789 +L 4.3991,4.233096,5.2537,4.233096 +L 5.2537,4.233096,6.1052,4.233096 +L 6.1052,4.233096,6.9629,4.233096 +L 4.3991,5.834789,3.5449,6.694958 +L 3.5449,6.694958,2.8405,6.89415 +L 2.8405,6.89415,1.8672,6.864379 +L 4.8229,5.834789,5.3833,5.834789 +L 5.3833,5.834789,5.9546,5.834789 +L 5.9546,5.834789,6.5325,5.834789 +L 4.3991,6.864379,3.4079,7.819223 +L 3.4079,7.819223,2.5673,7.994412 +L 2.5673,7.994412,1.436,7.932199 +L 4.8229,6.864379,5.3833,6.864379 +L 5.3833,6.864379,5.9546,6.864379 +L 5.9546,6.864379,6.5325,6.864379 +L 4.3991,7.932199,4.1123,8.327713 +L 4.1123,8.327713,4.1123,8.604615 +L 4.1123,8.604615,4.3991,9.000042 +L 4.8229,7.932199,5.5269,7.932199 +L 5.5269,7.932199,6.2379,7.932199 +L 6.2379,7.932199,6.9629,7.932199 + +[惜] 48 +L 1.4699,0,1.4699,3.011287 +L 1.4699,3.011287,1.4699,6.014202 +L 1.4699,6.014202,1.4699,9.000042 +L 3.5749,0,3.5749,1.247245 +L 3.5749,1.247245,3.5749,2.477415 +L 3.5749,2.477415,3.5749,3.699114 +L 3.5749,3.699114,4.5517,3.699114 +L 4.5517,3.699114,5.5363,3.699114 +L 5.5363,3.699114,6.531,3.699114 +L 6.531,3.699114,6.531,2.477415 +L 6.531,2.477415,6.531,1.247245 +L 6.531,1.247245,6.531,0 +L 6.531,0,5.5363,0 +L 5.5363,0,4.5517,0 +L 4.5517,0,3.5749,0 +L 4.0022,2.097443,4.7062,2.097443 +L 4.7062,2.097443,5.4137,2.097443 +L 5.4137,2.097443,6.1348,2.097443 +L 0.1915,5.033942,0.4889,5.655354 +L 0.4889,5.655354,0.5978,6.268415 +L 0.5978,6.268415,0.6153,7.398338 +L 2.7164,5.30083,3.2768,5.30083 +L 3.2768,5.30083,3.8477,5.30083 +L 3.8477,5.30083,4.426,5.30083 +L 4.426,5.30083,4.3454,6.69208 +L 4.3454,6.69208,3.9777,7.278259 +L 3.9777,7.278259,3.1476,7.398338 +L 4.8564,5.30083,5.1335,5.30083 +L 5.1335,5.30083,5.4137,5.30083 +L 5.4137,5.30083,5.711,5.30083 +L 5.711,5.30083,5.711,5.833333 +L 5.711,5.833333,5.711,6.357421 +L 5.711,6.357421,5.711,6.864379 +L 5.711,6.864379,5.2802,7.234456 +L 5.2802,7.234456,4.8564,7.587667 +L 4.8564,7.587667,4.426,7.932199 +L 4.426,7.932199,4.426,8.302299 +L 4.426,8.302299,4.426,8.655401 +L 4.426,8.655401,4.426,9.000042 +L 6.1348,5.30083,6.5411,5.30083 +L 6.5411,5.30083,6.9614,5.30083 +L 6.9614,5.30083,7.3887,5.30083 +L 2.2965,6.597491,2.1455,6.864379 +L 2.1455,6.864379,2.0195,7.131353 +L 2.0195,7.131353,1.8972,7.398338 +L 6.1348,7.398338,5.8375,7.813565 +L 5.8375,7.813565,5.7286,8.228868 +L 5.7286,8.228868,5.711,9.000042 + +[斥] 24 +L 0.2177,0,1.1108,2.759866 +L 1.1108,2.759866,1.4264,5.070609 +L 1.4264,5.070609,1.4649,7.932199 +L 1.4649,7.932199,4.0284,8.070645 +L 4.0284,8.070645,5.5558,8.327713 +L 5.5558,8.327713,6.9918,8.466148 +L 4.8549,0,4.8549,1.066398 +L 4.8549,1.066398,4.8549,2.124314 +L 4.8549,2.124314,4.8549,3.165286 +L 4.8549,3.165286,4.1334,3.303688 +L 4.1334,3.303688,3.4928,3.56079 +L 3.4928,3.56079,2.7535,3.699114 +L 6.9918,1.563604,6.4135,1.933671 +L 6.4135,1.933671,5.8395,2.286772 +L 5.8395,2.286772,5.2857,2.631304 +L 4.8549,3.699114,4.8549,4.422305 +L 4.8549,4.422305,4.8549,5.137046 +L 4.8549,5.137046,4.8549,5.834789 +L 4.8549,5.834789,3.8571,5.834789 +L 3.8571,5.834789,2.8761,5.834789 +L 2.8761,5.834789,1.8957,5.834789 +L 5.2857,5.834789,5.9866,5.834789 +L 5.9866,5.834789,6.6941,5.834789 +L 6.6941,5.834789,7.4191,5.834789 + +[析] 33 +L 1.5016,0,1.4175,1.60027 +L 1.4175,1.60027,1.3478,3.192156 +L 1.3478,3.192156,1.2883,4.766957 +L 1.2883,4.766957,0.924,4.069214 +L 0.924,4.069214,0.5629,3.354506 +L 0.5629,3.354506,0.2165,2.631304 +L 5.7434,0,5.7434,1.781117 +L 5.7434,1.781117,5.7434,3.545225 +L 5.7434,3.545225,5.7434,5.30083 +L 5.7434,5.30083,5.0181,5.30083 +L 5.0181,5.30083,4.3071,5.30083 +L 4.3071,5.30083,3.6031,5.30083 +L 3.6031,5.30083,3.6104,3.573475 +L 3.6104,3.573475,3.4283,2.159655 +L 3.4283,2.159655,2.7803,0.533861 +L 2.7803,4.233096,2.0059,5.04237 +L 2.0059,5.04237,1.5646,5.724582 +L 1.5646,5.724582,1.0708,6.864379 +L 1.0708,6.864379,0.7731,6.864379 +L 0.7731,6.864379,0.4932,6.864379 +L 0.4932,6.864379,0.2165,6.864379 +L 6.1672,5.30083,6.5735,5.30083 +L 6.5735,5.30083,6.9899,5.30083 +L 6.9899,5.30083,7.4176,5.30083 +L 3.6031,5.834789,3.6031,6.548064 +L 3.6031,6.548064,3.6031,7.244372 +L 3.6031,7.244372,3.6031,7.932199 +L 3.6031,7.932199,5.2492,8.070645 +L 5.2492,8.070645,6.2303,8.327713 +L 6.2303,8.327713,7.0215,8.466148 +L 1.9219,6.864379,1.628,7.29935 +L 1.628,7.29935,1.5156,7.853208 +L 1.5156,7.853208,1.5016,9.000042 + +[籍] 63 +L 1.9274,0,1.9102,1.120062 +L 1.9102,1.120062,1.8048,1.663905 +L 1.8048,1.663905,1.5285,2.097443 +L 1.5285,2.097443,1.1047,1.590452 +L 1.1047,1.590452,0.6774,1.066398 +L 0.6774,1.066398,0.2501,0.533861 +L 4.4912,0,4.4912,0.877102 +L 4.4912,0.877102,4.4912,1.754268 +L 4.4912,1.754268,4.4912,2.631304 +L 4.4912,2.631304,5.192,2.631304 +L 5.192,2.631304,5.8957,2.631304 +L 5.8957,2.631304,6.5962,2.631304 +L 6.5962,2.631304,6.5962,1.754268 +L 6.5962,1.754268,6.5962,0.877102 +L 6.5962,0.877102,6.5962,0 +L 6.5962,0,5.8957,0 +L 5.8957,0,5.192,0 +L 5.192,0,4.4912,0 +L 2.7823,1.563604,1.8717,2.690747 +L 1.8717,2.690747,1.3253,3.105952 +L 1.3253,3.105952,0.6774,3.165286 +L 4.915,1.563604,5.3213,1.563604 +L 5.3213,1.563604,5.7419,1.563604 +L 5.7419,1.563604,6.1657,1.563604 +L 2.355,3.165286,1.9274,3.535353 +L 1.9274,3.535353,1.5109,3.888466 +L 1.5109,3.888466,1.1047,4.233096 +L 2.9921,3.165286,3.4933,3.541022 +L 3.4933,3.541022,3.9903,3.679457 +L 3.9903,3.679457,4.915,3.699114 +L 4.915,3.699114,4.8835,4.470299 +L 4.8835,4.470299,4.6632,4.885592 +L 4.6632,4.885592,4.0607,5.30083 +L 5.3423,3.699114,5.6158,3.699114 +L 5.6158,3.699114,5.8957,3.699114 +L 5.8957,3.699114,6.1657,3.699114 +L 6.1657,3.699114,6.1198,4.508422 +L 6.1198,4.508422,5.7979,5.19071 +L 5.7979,5.19071,4.915,6.33054 +L 6.5962,3.699114,6.8697,3.699114 +L 6.8697,3.699114,7.1569,3.699114 +L 7.1569,3.699114,7.4473,3.699114 +L 2.355,4.233096,1.7453,4.984492 +L 1.7453,4.984492,1.3078,5.261251 +L 1.3078,5.261251,0.6774,5.30083 +L 2.355,5.30083,2.148,6.091858 +L 2.148,6.091858,2.1305,6.874382 +L 2.1305,6.874382,1.9274,7.665334 +L 1.9274,7.665334,1.0308,7.635575 +L 1.0308,7.635575,0.5968,7.428 +L 0.5968,7.428,0.2501,6.864379 +L 6.5962,5.30083,6.442,5.644113 +L 6.442,5.644113,6.2984,5.987222 +L 6.2984,5.987222,6.1657,6.33054 +L 3.6369,6.864379,3.9133,7.587667 +L 3.9133,7.587667,4.1935,8.302299 +L 4.1935,8.302299,4.4912,9.000042 +L 2.355,7.932199,2.6279,7.932199 +L 2.6279,7.932199,2.9116,7.932199 +L 2.9116,7.932199,3.2061,7.932199 +L 4.915,7.932199,5.7486,7.932199 +L 5.7486,7.932199,6.5962,7.932199 +L 6.5962,7.932199,7.4473,7.932199 + +[跡] 51 +L 0.6759,0,0.6759,1.60027 +L 0.6759,1.60027,0.6759,3.192156 +L 0.6759,3.192156,0.6759,4.766957 +L 1.1032,0,1.4044,0.572082 +L 1.4044,0.572082,1.5161,2.08479 +L 1.5161,2.08479,1.534,5.834789 +L 1.534,5.834789,1.2359,5.834789 +L 1.2359,5.834789,0.9522,5.834789 +L 0.9522,5.834789,0.6759,5.834789 +L 0.6759,5.834789,0.6759,6.711945 +L 0.6759,6.711945,0.6759,7.589003 +L 0.6759,7.589003,0.6759,8.466148 +L 0.6759,8.466148,1.2359,8.466148 +L 1.2359,8.466148,1.8033,8.466148 +L 1.8033,8.466148,2.3847,8.466148 +L 2.3847,8.466148,2.2345,7.589003 +L 2.2345,7.589003,2.087,6.711945 +L 2.087,6.711945,1.9543,5.834789 +L 3.2393,0,4.2799,2.43509 +L 4.2799,2.43509,4.5251,4.632737 +L 4.5251,4.632737,4.4897,7.398338 +L 4.4897,7.398338,4.0659,7.398338 +L 4.0659,7.398338,3.6456,7.398338 +L 3.6456,7.398338,3.2393,7.398338 +L 4.917,0,5.3443,0 +L 5.3443,0,5.7681,0 +L 5.7681,0,6.1989,0 +L 6.1989,0,6.1989,2.477415 +L 6.1989,2.477415,6.1989,4.94637 +L 6.1989,4.94637,6.1989,7.398338 +L 6.1989,7.398338,5.7681,7.398338 +L 5.7681,7.398338,5.3443,7.398338 +L 5.3443,7.398338,4.917,7.398338 +L 1.9543,0.533861,2.2345,0.723191 +L 2.2345,0.723191,2.5143,0.903961 +L 2.5143,0.903961,2.812,1.067733 +L 3.2393,2.8983,2.9069,3.461911 +L 2.9069,3.461911,2.5738,3.669464 +L 2.5738,3.669464,1.9543,3.699114 +L 7.4811,2.631304,7.3687,3.56079 +L 7.3687,3.56079,7.1656,4.37152 +L 7.1656,4.37152,7.0538,5.30083 +L 3.6631,3.699114,3.6631,4.233096 +L 3.6631,4.233096,3.6631,4.766957 +L 3.6631,4.766957,3.6631,5.30083 +L 6.6265,7.398338,6.9029,7.398338 +L 6.9029,7.398338,7.1831,7.398338 +L 7.1831,7.398338,7.4811,7.398338 +L 5.3443,7.932199,5.3443,8.302299 +L 5.3443,8.302299,5.3443,8.655401 +L 5.3443,8.655401,5.3443,9.000042 + +[拙] 45 +L 0.2817,0,0.5553,0 +L 0.5553,0,0.8351,0 +L 0.8351,0,1.1328,0 +L 1.1328,0,1.1328,1.247245 +L 1.1328,1.247245,1.1328,2.477415 +L 1.1328,2.477415,1.1328,3.699114 +L 1.1328,3.699114,0.8351,3.699114 +L 0.8351,3.699114,0.5553,3.699114 +L 0.5553,3.699114,0.2817,3.699114 +L 2.8105,0,2.8105,1.247245 +L 2.8105,1.247245,2.8105,2.477415 +L 2.8105,2.477415,2.8105,3.699114 +L 3.2378,0,3.7985,0 +L 3.7985,0,4.3691,0 +L 4.3691,0,4.9473,0 +L 4.9473,0,5.0241,2.967518 +L 5.0241,2.967518,4.7228,4.723177 +L 4.7228,4.723177,3.2378,5.30083 +L 3.2378,5.30083,3.2378,6.177985 +L 3.2378,6.177985,3.2378,7.055054 +L 3.2378,7.055054,3.2378,7.932199 +L 5.3746,0,5.9277,0 +L 5.9277,0,6.4811,0 +L 6.4811,0,7.0485,0 +L 7.0485,0,7.0485,1.247245 +L 7.0485,1.247245,7.0485,2.477415 +L 7.0485,2.477415,7.0485,3.699114 +L 1.1328,4.233096,1.1328,4.94637 +L 1.1328,4.94637,1.1328,5.642668 +L 1.1328,5.642668,1.1328,6.33054 +L 1.1328,6.33054,0.8351,6.519824 +L 0.8351,6.519824,0.5553,6.700617 +L 0.5553,6.700617,0.2817,6.864379 +L 5.3746,5.30083,5.0734,5.793789 +L 5.0734,5.793789,4.961,6.752924 +L 4.961,6.752924,4.9473,9.000042 +L 5.8019,5.30083,6.0748,5.30083 +L 6.0748,5.30083,6.362,5.30083 +L 6.362,5.30083,6.6562,5.30083 +L 6.6562,5.30083,6.6562,6.177985 +L 6.6562,6.177985,6.6562,7.055054 +L 6.6562,7.055054,6.6562,7.932199 +L 1.5601,6.864379,1.2589,7.29935 +L 1.2589,7.29935,1.1503,7.853208 +L 1.1503,7.853208,1.1328,9.000042 + +[摂] 51 +L 0.3083,0,0.5849,0 +L 0.5849,0,0.8686,0 +L 0.8686,0,1.1593,0 +L 1.1593,0,1.1593,1.411028 +L 1.1593,1.411028,1.1593,2.822056 +L 1.1593,2.822056,1.1593,4.233096 +L 1.1593,4.233096,0.8686,4.233096 +L 0.8686,4.233096,0.5849,4.233096 +L 0.5849,4.233096,0.3083,4.233096 +L 3.0577,0,3.5445,0.3701 +L 3.5445,0.3701,4.0422,0.723191 +L 4.0422,0.723191,4.5501,1.067733 +L 7.5058,0,6.9317,0.3701 +L 6.9317,0.3701,6.357,0.723191 +L 6.357,0.723191,5.8004,1.067733 +L 4.1228,2.631304,3.8247,2.820634 +L 3.8247,2.820634,3.5445,3.001404 +L 3.5445,3.001404,3.2717,3.165286 +L 6.0137,2.631304,6.357,2.820634 +L 6.357,2.820634,6.7212,3.001404 +L 6.7212,3.001404,7.0855,3.165286 +L 6.2277,4.499972,5.2506,5.230145 +L 5.2506,5.230145,4.0454,5.028262 +L 4.0454,5.028262,2.8405,4.766957 +L 1.1593,4.766957,1.1593,5.299396 +L 1.1593,5.299396,1.1593,5.823439 +L 1.1593,5.823439,1.1593,6.33054 +L 1.1593,6.33054,0.8686,6.519824 +L 0.8686,6.519824,0.5849,6.700617 +L 0.5849,6.700617,0.3083,6.864379 +L 4.1228,5.30083,4.1228,6.367205 +L 4.1228,6.367205,4.1228,7.42522 +L 4.1228,7.42522,4.1228,8.466148 +L 4.1228,8.466148,3.6955,8.466148 +L 3.6955,8.466148,3.2717,8.466148 +L 3.2717,8.466148,2.8405,8.466148 +L 6.655,5.30083,6.2908,5.8729 +L 6.2908,5.8729,5.7476,6.139875 +L 5.7476,6.139875,4.5501,6.33054 +L 1.5621,6.864379,1.2823,7.29935 +L 1.2823,7.29935,1.1769,7.853208 +L 1.1769,7.853208,1.1593,9.000042 +L 6.2277,7.131353,5.6568,7.234456 +L 5.6568,7.234456,5.1031,7.320573 +L 5.1031,7.320573,4.5501,7.398338 +L 6.2277,8.199195,5.6568,8.302299 +L 5.6568,8.302299,5.1031,8.388404 +L 5.1031,8.388404,4.5501,8.466148 +L 6.655,8.466148,6.9317,8.466148 +L 6.9317,8.466148,7.2154,8.466148 +L 7.2154,8.466148,7.5058,8.466148 + +[窃] 54 +L 3.2978,0,4.1945,1.394118 +L 4.1945,1.394118,4.7759,2.610202 +L 4.7759,2.610202,4.979,4.233096 +L 4.979,4.233096,4.5517,4.233096 +L 4.5517,4.233096,4.1314,4.233096 +L 4.1314,4.233096,3.7286,4.233096 +L 5.4063,0,6.6182,0.733074 +L 6.6182,0.733074,6.7971,2.406765 +L 6.7971,2.406765,6.6847,4.233096 +L 6.6847,4.233096,6.2574,4.233096 +L 6.2574,4.233096,5.8336,4.233096 +L 5.8336,4.233096,5.4063,4.233096 +L 1.5925,1.067733,1.2594,1.713268 +L 1.2594,1.713268,0.927,2.494315 +L 0.927,2.494315,0.3141,3.165286 +L 2.0198,1.067733,2.2926,1.067733 +L 2.2926,1.067733,2.5728,1.067733 +L 2.5728,1.067733,2.874,1.067733 +L 2.874,1.067733,2.874,1.411028 +L 2.874,1.411028,2.874,1.754268 +L 2.874,1.754268,2.874,2.097443 +L 1.5925,3.165286,1.2913,3.580568 +L 1.2913,3.580568,1.1827,3.995761 +L 1.1827,3.995761,1.1652,4.766957 +L 2.0198,3.699114,2.2926,3.699114 +L 2.2926,3.699114,2.5728,3.699114 +L 2.5728,3.699114,2.874,3.699114 +L 0.734,5.834789,1.4415,6.177985 +L 1.4415,6.177985,2.149,6.521182 +L 2.149,6.521182,2.874,6.864379 +L 2.874,6.864379,2.874,7.234456 +L 2.874,7.234456,2.874,7.587667 +L 2.874,7.587667,2.874,7.932199 +L 2.874,7.932199,2.0198,7.932199 +L 2.0198,7.932199,1.1652,7.932199 +L 1.1652,7.932199,0.3141,7.932199 +L 0.3141,7.932199,0.3141,7.587667 +L 0.3141,7.587667,0.3141,7.234456 +L 0.3141,7.234456,0.3141,6.864379 +L 4.979,5.834789,4.6743,6.242967 +L 4.6743,6.242967,4.5661,6.786744 +L 4.5661,6.786744,4.5486,7.932199 +L 4.5486,7.932199,4.1248,7.932199 +L 4.1248,7.932199,3.7041,7.932199 +L 3.7041,7.932199,3.2978,7.932199 +L 5.4063,5.834789,5.8336,5.937893 +L 5.8336,5.937893,6.2574,6.024009 +L 6.2574,6.024009,6.6847,6.101676 +L 6.6847,6.101676,6.8147,6.711945 +L 6.8147,6.711945,6.9614,7.322017 +L 6.9614,7.322017,7.1124,7.932199 +L 7.1124,7.932199,6.394,7.932199 +L 6.394,7.932199,5.6834,7.932199 +L 5.6834,7.932199,4.979,7.932199 + +[仙] 24 +L 1.1914,0,1.1143,1.944911 +L 1.1143,1.944911,1.0411,3.889877 +L 1.0411,3.889877,0.9816,5.834789 +L 0.9816,5.834789,0.7711,5.670995 +L 0.7711,5.670995,0.5543,5.490115 +L 0.5543,5.490115,0.3403,5.30083 +L 2.8725,0,2.8725,2.288195 +L 2.8725,2.288195,2.8725,4.576304 +L 2.8725,4.576304,2.8725,6.864379 +L 3.2963,0,3.8571,0 +L 3.8571,0,4.4311,0 +L 4.4311,0,5.0094,0 +L 5.0094,0,5.0094,3.011287 +L 5.0094,3.011287,5.0094,6.014202 +L 5.0094,6.014202,5.0094,9.000042 +L 5.4367,0,5.9831,0 +L 5.9831,0,6.5431,0 +L 6.5431,0,7.1179,0 +L 7.1179,0,7.1179,2.288195 +L 7.1179,2.288195,7.1179,4.576304 +L 7.1179,4.576304,7.1179,6.864379 +L 1.1914,6.597491,1.4719,7.398338 +L 1.4719,7.398338,1.7521,8.199195 +L 1.7521,8.199195,2.0495,9.000042 + +[占] 21 +L 1.1934,0,1.1934,1.247245 +L 1.1934,1.247245,1.1934,2.477415 +L 1.1934,2.477415,1.1934,3.699114 +L 1.1934,3.699114,2.0518,3.699114 +L 2.0518,3.699114,2.9029,3.699114 +L 2.9029,3.699114,3.761,3.699114 +L 3.761,3.699114,3.761,5.480231 +L 3.761,5.480231,3.761,7.244372 +L 3.761,7.244372,3.761,9.000042 +L 1.6207,0,3.1758,0 +L 3.1758,0,4.7343,0 +L 4.7343,0,6.2863,0 +L 6.2863,0,6.2863,1.247245 +L 6.2863,1.247245,6.2863,2.477415 +L 6.2863,2.477415,6.2863,3.699114 +L 6.2863,3.699114,5.5854,3.699114 +L 5.5854,3.699114,4.885,3.699114 +L 4.885,3.699114,4.1848,3.699114 +L 4.1848,6.864379,5.0149,6.864379 +L 5.0149,6.864379,5.866,6.864379 +L 5.866,6.864379,6.7167,6.864379 + +[扇] 45 +L 0.3726,0,1.1393,2.08479 +L 1.1393,2.08479,1.2759,4.677951 +L 1.2759,4.677951,1.2237,6.864379 +L 1.2237,6.864379,3.0552,6.864379 +L 3.0552,6.864379,4.8943,6.864379 +L 4.8943,6.864379,6.7433,6.864379 +L 6.7433,6.864379,6.7433,6.521182 +L 6.7433,6.521182,6.7433,6.177985 +L 6.7433,6.177985,6.7433,5.834789 +L 6.7433,5.834789,5.0411,5.834789 +L 5.0411,5.834789,3.3389,5.834789 +L 3.3389,5.834789,1.6545,5.834789 +L 3.3599,0,3.6334,0 +L 3.6334,0,3.9133,0 +L 3.9133,0,4.1833,0 +L 4.1833,0,4.1028,0.713296 +L 4.1028,0.713296,4.0362,1.409606 +L 4.0362,1.409606,3.9693,2.097443 +L 3.9693,2.097443,3.3322,1.754268 +L 3.3322,1.754268,2.6979,1.411028 +L 2.6979,1.411028,2.0783,1.067733 +L 6.3233,0,6.5961,0 +L 6.5961,0,6.8798,0 +L 6.8798,0,7.1744,0 +L 7.1744,0,7.09,0.713296 +L 7.09,0.713296,7.0234,1.409606 +L 7.0234,1.409606,6.9604,2.097443 +L 6.9604,2.097443,6.3233,1.754268 +L 6.3233,1.754268,5.6789,1.411028 +L 5.6789,1.411028,5.0376,1.067733 +L 4.1833,2.631304,4.1833,3.165286 +L 4.1833,3.165286,4.1833,3.699114 +L 4.1833,3.699114,4.1833,4.233096 +L 4.1833,4.233096,3.4825,4.233096 +L 3.4825,4.233096,2.7823,4.233096 +L 2.7823,4.233096,2.0783,4.233096 +L 7.1744,2.631304,7.1744,3.165286 +L 7.1744,3.165286,7.1744,3.699114 +L 7.1744,3.699114,7.1744,4.233096 +L 7.1744,4.233096,6.4529,4.233096 +L 6.4529,4.233096,5.7419,4.233096 +L 5.7419,4.233096,5.0376,4.233096 +L 0.3726,8.466148,2.7575,8.466148 +L 2.7575,8.466148,5.1601,8.466148 +L 5.1601,8.466148,7.5698,8.466148 + +[栓] 39 +L 1.6807,0,1.6037,1.60027 +L 1.6037,1.60027,1.5305,3.192156 +L 1.5305,3.192156,1.4709,4.766957 +L 1.4709,4.766957,1.1032,4.069214 +L 1.1032,4.069214,0.7456,3.354506 +L 0.7456,3.354506,0.4023,2.631304 +L 3.3619,0,4.0627,0 +L 4.0627,0,4.7734,0 +L 4.7734,0,5.4952,0 +L 5.4952,0,5.4952,1.85457 +L 5.4952,1.85457,5.2115,2.861634 +L 5.2115,2.861634,4.2165,3.165286 +L 5.898,0,6.4514,0 +L 6.4514,0,7.0254,0 +L 7.0254,0,7.6037,0 +L 5.898,3.165286,5.614,3.600268 +L 5.614,3.600268,5.5089,4.153995 +L 5.5089,4.153995,5.4952,5.30083 +L 5.4952,5.30083,4.276,5.320662 +L 4.276,5.320662,3.7261,5.45902 +L 3.7261,5.45902,3.3619,5.834789 +L 3.3619,5.834789,4.0627,6.901132 +L 4.0627,6.901132,4.7734,7.95908 +L 4.7734,7.95908,5.4952,9.000042 +L 5.4952,9.000042,6.1989,7.95908 +L 6.1989,7.95908,6.9029,6.901132 +L 6.9029,6.901132,7.6037,5.834789 +L 7.6037,5.834789,7.257,5.45902 +L 7.257,5.45902,6.8083,5.320662 +L 6.8083,5.320662,5.898,5.30083 +L 2.9346,4.233096,2.1609,5.04237 +L 2.1609,5.04237,1.7227,5.724582 +L 1.7227,5.724582,1.2569,6.864379 +L 1.2569,6.864379,0.9596,6.864379 +L 0.9596,6.864379,0.6794,6.864379 +L 0.6794,6.864379,0.4023,6.864379 +L 2.0768,6.864379,1.7998,7.29935 +L 1.7998,7.29935,1.6951,7.853208 +L 1.6951,7.853208,1.6807,9.000042 + +[潜] 42 +L 0.4288,0,0.8215,2.029682 +L 0.8215,2.029682,1.1328,3.245722 +L 1.1328,3.245722,1.2554,4.233096 +L 3.3923,0,3.3923,1.247245 +L 3.3923,1.247245,3.3923,2.477415 +L 3.3923,2.477415,3.3923,3.699114 +L 3.3923,3.699114,4.3691,3.699114 +L 4.3691,3.699114,5.3536,3.699114 +L 5.3536,3.699114,6.355,3.699114 +L 6.355,3.699114,6.355,2.477415 +L 6.355,2.477415,6.355,1.247245 +L 6.355,1.247245,6.355,0 +L 6.355,0,5.3536,0 +L 5.3536,0,4.3691,0 +L 4.3691,0,3.3923,0 +L 3.8196,2.097443,4.5197,2.097443 +L 4.5197,2.097443,5.2202,2.097443 +L 5.2202,2.097443,5.9245,2.097443 +L 2.11,4.233096,2.5412,4.766957 +L 2.5412,4.766957,2.965,5.30083 +L 2.965,5.30083,3.3923,5.834789 +L 3.3923,5.834789,3.0592,6.183644 +L 3.0592,6.183644,2.7268,6.312173 +L 2.7268,6.312173,2.11,6.33054 +L 5.4972,4.766957,5.7736,5.137046 +L 5.7736,5.137046,6.0573,5.490115 +L 6.0573,5.490115,6.355,5.834789 +L 6.355,5.834789,6.0187,6.183644 +L 6.0187,6.183644,5.686,6.312173 +L 5.686,6.312173,5.0661,6.33054 +L 3.8196,6.33054,3.3923,6.864379 +L 3.3923,6.864379,2.965,7.398338 +L 2.965,7.398338,2.5412,7.932199 +L 6.7756,6.33054,6.355,6.864379 +L 6.355,6.864379,5.9245,7.398338 +L 5.9245,7.398338,5.4972,7.932199 +L 3.8196,7.932199,3.6686,8.302299 +L 3.6686,8.302299,3.525,8.655401 +L 3.525,8.655401,3.3923,9.000042 +L 6.7756,7.932199,6.6247,8.302299 +L 6.6247,8.302299,6.4811,8.655401 +L 6.4811,8.655401,6.355,9.000042 + +[旋] 51 +L 0.4347,0.266996,1.0616,2.553637 +L 1.0616,2.553637,1.2683,4.577737 +L 1.2683,4.577737,1.2893,6.864379 +L 1.2893,6.864379,0.9912,6.864379 +L 0.9912,6.864379,0.711,6.864379 +L 0.711,6.864379,0.4347,6.864379 +L 1.9264,0,2.1404,0.189329 +L 2.1404,0.189329,2.3575,0.3701 +L 2.3575,0.3701,2.5673,0.533861 +L 2.5673,0.533861,2.5673,1.944911 +L 2.5673,1.944911,2.5673,3.356006 +L 2.5673,3.356006,2.5673,4.766957 +L 2.5673,4.766957,2.2731,4.766957 +L 2.2731,4.766957,1.9894,4.766957 +L 1.9894,4.766957,1.7131,4.766957 +L 3.3943,0,3.9928,1.179396 +L 3.9928,1.179396,4.2135,2.138444 +L 4.2135,2.138444,4.2453,3.699114 +L 5.9542,0,5.5234,0.3701 +L 5.5234,0.3701,5.1031,0.723191 +L 5.1031,0.723191,4.6723,1.067733 +L 6.3815,0,6.7843,0 +L 6.7843,0,7.2046,0 +L 7.2046,0,7.6284,0 +L 5.5234,1.067733,5.5234,2.66808 +L 5.5234,2.66808,5.5234,4.259868 +L 5.5234,4.259868,5.5234,5.834789 +L 5.5234,5.834789,5.1031,5.834789 +L 5.1031,5.834789,4.6723,5.834789 +L 4.6723,5.834789,4.2453,5.834789 +L 5.9542,3.165286,6.3643,3.165286 +L 6.3643,3.165286,6.7776,3.165286 +L 6.7776,3.165286,7.2046,3.165286 +L 6.8126,4.766957,6.9352,5.033942 +L 6.9352,5.033942,7.0645,5.30083 +L 7.0645,5.30083,7.2046,5.567814 +L 7.2046,5.567814,6.7776,5.670995 +L 6.7776,5.670995,6.3643,5.757002 +L 6.3643,5.757002,5.9542,5.834789 +L 3.3943,6.33054,3.044,6.706275 +L 3.044,6.706275,2.6094,6.844633 +L 2.6094,6.844633,1.7131,6.864379 +L 1.7131,6.864379,1.7131,7.587667 +L 1.7131,7.587667,1.7131,8.302299 +L 1.7131,8.302299,1.7131,9.000042 +L 3.818,7.131353,3.9473,7.768438 +L 3.9473,7.768438,4.0944,8.388404 +L 4.0944,8.388404,4.2453,9.000042 +L 4.6723,7.398338,5.6495,7.398338 +L 5.6495,7.398338,6.634,7.398338 +L 6.634,7.398338,7.6284,7.398338 + +[繊] 69 +L 1.7151,0,1.7151,1.60027 +L 1.7151,1.60027,1.7151,3.192156 +L 1.7151,3.192156,1.7151,4.766957 +L 1.7151,4.766957,1.2878,4.766957 +L 1.2878,4.766957,0.8671,4.766957 +L 0.8671,4.766957,0.4612,4.766957 +L 5.13,0,5.3888,0.39546 +L 5.3888,0.39546,5.3331,0.672405 +L 5.3331,0.672405,4.916,1.067733 +L 4.916,1.067733,4.4186,0.692106 +L 4.4186,0.692106,3.9216,0.553748 +L 3.9216,0.553748,2.9966,0.533861 +L 7.2349,0.533861,7.0209,0.877102 +L 7.0209,0.877102,6.8073,1.220364 +L 6.8073,1.220364,6.594,1.563604 +L 6.594,1.563604,6.3835,1.409606 +L 6.3835,1.409606,6.1702,1.247245 +L 6.1702,1.247245,5.9527,1.067733 +L 7.6622,0.533861,7.6622,0.877102 +L 7.6622,0.877102,7.6622,1.220364 +L 7.6622,1.220364,7.6622,1.563604 +L 0.4612,1.33473,0.5904,1.944911 +L 0.5904,1.944911,0.7414,2.555082 +L 0.7414,2.555082,0.8917,3.165286 +L 3.8512,1.067733,3.8512,2.66808 +L 3.8512,2.66808,3.8512,4.259868 +L 3.8512,4.259868,3.8512,5.834789 +L 3.8512,5.834789,3.2351,5.815 +L 3.2351,5.815,2.8986,5.676566 +L 2.8986,5.676566,2.5662,5.30083 +L 2.5662,5.30083,2.6989,4.956243 +L 2.6989,4.956243,2.8429,4.603185 +L 2.8429,4.603185,2.9966,4.233096 +L 2.9966,1.830567,2.8429,2.286772 +L 2.8429,2.286772,2.6989,2.734484 +L 2.6989,2.734484,2.5662,3.165286 +L 4.7023,1.563604,4.5517,3.344688 +L 4.5517,3.344688,4.4116,5.108807 +L 4.4116,5.108807,4.275,6.864379 +L 4.275,6.864379,3.9812,7.053686 +L 3.9812,7.053686,3.701,7.234456 +L 3.701,7.234456,3.4239,7.398338 +L 6.8073,2.097443,6.3134,3.676556 +L 6.3134,3.676556,6.1768,5.170943 +L 6.1768,5.170943,5.13,5.834789 +L 5.13,2.631304,5.4063,3.046618 +L 5.4063,3.046618,5.5114,3.461911 +L 5.5114,3.461911,5.5289,4.233096 +L 7.2349,2.631304,7.2349,3.165286 +L 7.2349,3.165286,7.2349,3.699114 +L 7.2349,3.699114,7.2349,4.233096 +L 1.3154,5.30083,1.4415,5.567814 +L 1.4415,5.567814,1.5715,5.834789 +L 1.5715,5.834789,1.7151,6.101676 +L 1.7151,6.101676,1.4415,6.44496 +L 1.4415,6.44496,1.1617,6.788167 +L 1.1617,6.788167,0.8917,7.131353 +L 0.8917,7.131353,1.1617,7.768438 +L 1.1617,7.768438,1.4415,8.388404 +L 1.4415,8.388404,1.7151,9.000042 +L 6.8073,5.834789,6.5064,6.282522 +L 6.5064,6.282522,6.401,7.103147 +L 6.401,7.103147,6.3835,9.000042 +L 2.142,7.131353,2.2716,7.398338 +L 2.2716,7.398338,2.4152,7.665334 +L 2.4152,7.665334,2.5662,7.932199 +L 4.7023,7.398338,4.4015,7.813565 +L 4.4015,7.813565,4.289,8.228868 +L 4.289,8.228868,4.275,9.000042 + +[薦] 69 +L 0.4628,0.266996,1.1598,2.330542 +L 1.1598,2.330542,1.3318,4.165312 +L 1.3318,4.165312,1.3139,6.33054 +L 1.3139,6.33054,3.2998,6.33054 +L 3.2998,6.33054,5.2822,6.33054 +L 5.2822,6.33054,7.2646,6.33054 +L 1.3139,0,1.4509,0.3701 +L 1.4509,0.3701,1.591,0.723191 +L 1.591,0.723191,1.7447,1.067733 +L 3.4543,0.266996,3.2998,0.533861 +L 3.2998,0.533861,3.1597,0.800858 +L 3.1597,0.800858,3.0231,1.067733 +L 4.7047,0.266996,4.5537,0.533861 +L 4.5537,0.533861,4.407,0.800858 +L 4.407,0.800858,4.277,1.067733 +L 5.9866,0.266996,5.8356,0.533861 +L 5.8356,0.533861,5.6885,0.800858 +L 5.6885,0.800858,5.5558,1.067733 +L 7.0548,0,7.5031,0.43356 +L 7.5031,0.43356,7.6709,0.977414 +L 7.6709,0.977414,7.6919,2.097443 +L 7.6919,2.097443,5.9866,2.097443 +L 5.9866,2.097443,4.2844,2.097443 +L 4.2844,2.097443,2.5997,2.097443 +L 2.5997,2.097443,2.5997,2.820634 +L 2.5997,2.820634,2.5997,3.535353 +L 2.5997,3.535353,2.5997,4.233096 +L 2.5997,4.233096,2.3051,4.233096 +L 2.3051,4.233096,2.0214,4.233096 +L 2.0214,4.233096,1.7447,4.233096 +L 3.0231,3.165286,4.4311,3.165286 +L 4.4311,3.165286,5.843,3.165286 +L 5.843,3.165286,7.2646,3.165286 +L 3.2368,4.233096,3.3702,4.45062 +L 3.3702,4.45062,3.3173,4.727423 +L 3.3173,4.727423,3.0231,5.30083 +L 3.0231,5.30083,2.5997,5.30083 +L 2.5997,5.30083,2.172,5.30083 +L 2.172,5.30083,1.7447,5.30083 +L 3.8816,4.233096,4.2844,4.336199 +L 4.2844,4.336199,4.7047,4.422305 +L 4.7047,4.422305,5.1355,4.499972 +L 5.1355,4.499972,4.6031,5.083371 +L 4.6031,5.083371,3.9832,5.429369 +L 3.9832,5.429369,3.4543,5.834789 +L 5.5558,4.233096,5.9866,4.233096 +L 5.9866,4.233096,6.4135,4.233096 +L 6.4135,4.233096,6.8408,4.233096 +L 6.8408,4.233096,6.8408,4.603185 +L 6.8408,4.603185,6.8408,4.956243 +L 6.8408,4.956243,6.8408,5.30083 +L 6.8408,5.30083,5.92,5.320662 +L 5.92,5.320662,5.4787,5.45902 +L 5.4787,5.45902,5.1355,5.834789 +L 0.4628,7.932199,1.1672,7.932199 +L 1.1672,7.932199,1.8747,7.932199 +L 1.8747,7.932199,2.5997,7.932199 +L 2.5997,7.932199,2.5997,8.302299 +L 2.5997,8.302299,2.5997,8.655401 +L 2.5997,8.655401,2.5997,9.000042 +L 3.0231,7.932199,3.8606,7.932199 +L 3.8606,7.932199,4.7047,7.932199 +L 4.7047,7.932199,5.5558,7.932199 +L 5.5558,7.932199,5.5558,8.302299 +L 5.5558,8.302299,5.5558,8.655401 +L 5.5558,8.655401,5.5558,9.000042 +L 5.9866,7.932199,6.5431,7.932199 +L 6.5431,7.932199,7.1144,7.932199 +L 7.1144,7.932199,7.6919,7.932199 + +[践] 63 +L 0.9205,0,0.9205,1.60027 +L 0.9205,1.60027,0.9205,3.192156 +L 0.9205,3.192156,0.9205,4.766957 +L 1.3478,0,1.649,0.572082 +L 1.649,0.572082,1.7608,2.08479 +L 1.7608,2.08479,1.7783,5.834789 +L 1.7783,5.834789,1.4806,5.834789 +L 1.4806,5.834789,1.1969,5.834789 +L 1.1969,5.834789,0.9205,5.834789 +L 0.9205,5.834789,0.9205,6.711945 +L 0.9205,6.711945,0.9205,7.589003 +L 0.9205,7.589003,0.9205,8.466148 +L 0.9205,8.466148,1.4739,8.466148 +L 1.4739,8.466148,2.0269,8.466148 +L 2.0269,8.466148,2.5978,8.466148 +L 2.5978,8.466148,2.4542,7.589003 +L 2.4542,7.589003,2.3247,6.711945 +L 2.3247,6.711945,2.2024,5.834789 +L 3.0255,0,4.1319,0.423742 +L 4.1319,0.423742,4.9063,0.89839 +L 4.9063,0.89839,6.0127,1.830567 +L 6.0127,1.830567,5.7189,2.467543 +L 5.7189,2.467543,5.4352,3.087619 +L 5.4352,3.087619,5.1616,3.699114 +L 5.1616,3.699114,4.5841,3.699114 +L 4.5841,3.699114,4.0128,3.699114 +L 4.0128,3.699114,3.4528,3.699114 +L 7.2666,0,6.9689,0.3701 +L 6.9689,0.3701,6.6852,0.723191 +L 6.6852,0.723191,6.4089,1.067733 +L 7.6939,0,7.6939,0.532537 +L 7.6939,0.532537,7.6939,1.056526 +L 7.6939,1.056526,7.6939,1.563604 +L 2.2024,0.533861,2.4791,0.723191 +L 2.4791,0.723191,2.752,0.903961 +L 2.752,0.903961,3.0255,1.067733 +L 6.4089,2.097443,6.6852,2.467543 +L 6.6852,2.467543,6.9689,2.820634 +L 6.9689,2.820634,7.2666,3.165286 +L 5.1616,4.233096,5.1616,4.603185 +L 5.1616,4.603185,5.1616,4.956243 +L 5.1616,4.956243,5.1616,5.30083 +L 5.1616,5.30083,4.7343,5.30083 +L 4.7343,5.30083,4.3039,5.30083 +L 4.3039,5.30083,3.8832,5.30083 +L 5.5924,4.233096,6.2929,4.233096 +L 6.2929,4.233096,6.9938,4.233096 +L 6.9938,4.233096,7.6939,4.233096 +L 5.1616,5.834789,5.1616,6.177985 +L 5.1616,6.177985,5.1616,6.521182 +L 5.1616,6.521182,5.1616,6.864379 +L 5.1616,6.864379,4.5841,6.864379 +L 4.5841,6.864379,4.0128,6.864379 +L 4.0128,6.864379,3.4528,6.864379 +L 5.5924,5.834789,5.9952,5.834789 +L 5.9952,5.834789,6.4155,5.834789 +L 6.4155,5.834789,6.8393,5.834789 +L 5.1616,7.398338,5.1616,7.932199 +L 5.1616,7.932199,5.1616,8.466148 +L 5.1616,8.466148,5.1616,9.000042 +L 5.5924,7.398338,6.1388,7.398338 +L 6.1388,7.398338,6.6961,7.398338 +L 6.6961,7.398338,7.2666,7.398338 + +[遷] 84 +L 0.7369,0,1.0728,0.3701 +L 1.0728,0.3701,1.416,0.723191 +L 1.416,0.723191,1.7771,1.067733 +L 1.7771,1.067733,1.7771,2.314978 +L 1.7771,2.314978,1.7771,3.545225 +L 1.7771,3.545225,1.7771,4.766957 +L 1.7771,4.766957,1.3498,4.766957 +L 1.3498,4.766957,0.9292,4.766957 +L 0.9292,4.766957,0.5264,4.766957 +L 3.0552,0,2.7613,0.189329 +L 2.7613,0.189329,2.4776,0.3701 +L 2.4776,0.3701,2.2009,0.533861 +L 3.4825,0,4.8908,0 +L 4.8908,0,6.3019,0 +L 6.3019,0,7.7243,0 +L 4.3409,1.067733,4.0362,1.456254 +L 4.0362,1.456254,3.9273,1.861575 +L 3.9273,1.861575,3.9098,2.631304 +L 3.9098,2.631304,4.6138,2.631304 +L 4.6138,2.631304,5.3146,2.631304 +L 5.3146,2.631304,6.0147,2.631304 +L 6.0147,2.631304,6.0147,3.001404 +L 6.0147,3.001404,6.0147,3.354506 +L 6.0147,3.354506,6.0147,3.699114 +L 6.0147,3.699114,4.2008,3.679457 +L 4.2008,3.679457,3.3248,3.541022 +L 3.3248,3.541022,2.6314,3.165286 +L 4.7609,1.067733,5.3146,1.067733 +L 5.3146,1.067733,5.8711,1.067733 +L 5.8711,1.067733,6.442,1.067733 +L 6.442,1.067733,6.442,1.411028 +L 6.442,1.411028,6.442,1.754268 +L 6.442,1.754268,6.442,2.097443 +L 7.297,3.165286,6.8732,3.80225 +L 6.8732,3.80225,6.442,4.422305 +L 6.442,4.422305,6.0147,5.033942 +L 6.0147,5.033942,4.8169,5.004292 +L 4.8169,5.004292,4.2705,4.796619 +L 4.2705,4.796619,3.9098,4.233096 +L 2.6314,5.30083,3.0552,5.30083 +L 3.0552,5.30083,3.4825,5.30083 +L 3.4825,5.30083,3.9098,5.30083 +L 6.442,5.30083,6.7187,5.30083 +L 6.7187,5.30083,7.0024,5.30083 +L 7.0024,5.30083,7.297,5.30083 +L 4.7609,6.101676,4.1868,6.177985 +L 4.1868,6.177985,3.6124,6.254295 +L 3.6124,6.254295,3.0552,6.33054 +L 3.0552,6.33054,3.0552,6.700617 +L 3.0552,6.700617,3.0552,7.053686 +L 3.0552,7.053686,3.0552,7.398338 +L 3.0552,7.398338,3.6719,7.428 +L 3.6719,7.428,4.0047,7.635575 +L 4.0047,7.635575,4.3409,8.199195 +L 4.3409,8.199195,3.7595,8.302299 +L 3.7595,8.302299,3.1848,8.388404 +L 3.1848,8.388404,2.6314,8.466148 +L 5.3741,6.33054,5.5002,6.548064 +L 5.5002,6.548064,5.3913,6.824866 +L 5.3913,6.824866,4.9503,7.398338 +L 4.9503,7.398338,4.7332,7.234456 +L 4.7332,7.234456,4.53,7.053686 +L 4.53,7.053686,4.3409,6.864379 +L 6.0147,6.33054,6.2918,6.33054 +L 6.2918,6.33054,6.5755,6.33054 +L 6.5755,6.33054,6.8732,6.33054 +L 6.8732,6.33054,6.8732,6.700617 +L 6.8732,6.700617,6.8732,7.053686 +L 6.8732,7.053686,6.8732,7.398338 +L 6.8732,7.398338,6.1272,7.615873 +L 6.1272,7.615873,5.4894,8.070645 +L 5.4894,8.070645,4.7609,8.466148 +L 1.7771,7.398338,1.5001,7.768438 +L 1.5001,7.768438,1.2272,8.121507 +L 1.2272,8.121507,0.9502,8.466148 +L 6.0147,8.466148,6.442,8.466148 +L 6.442,8.466148,6.8732,8.466148 +L 6.8732,8.466148,7.297,8.466148 +L 5.6084,-0.015181,7.7418,-0.015181 +L 1.7911,1.052476,0.7369,0 +L 0.5372,4.751721,1.7911,4.751721 +L 1.7911,1.052476,1.7911,4.751721 +L 0.9645,8.489144,1.7911,7.421246 +A 5.6084,7.347826,7.362973,238.75988,270 + +[銑] 57 +L 0.5249,0,0.9522,0 +L 0.9522,0,1.3795,0 +L 1.3795,0,1.8033,0 +L 1.8033,0,1.8803,2.286772 +L 1.8803,2.286772,1.6705,4.056551 +L 1.6705,4.056551,0.5249,4.766957 +L 3.5128,0,4.3951,1.651056 +L 4.3951,1.651056,4.7173,2.91242 +L 4.7173,2.91242,4.7667,4.766957 +L 4.7667,4.766957,4.469,4.766957 +L 4.469,4.766957,4.1853,4.766957 +L 4.1853,4.766957,3.9156,4.766957 +L 6.0451,0,6.0451,1.60027 +L 6.0451,1.60027,6.0451,3.192156 +L 6.0451,3.192156,6.0451,4.766957 +L 6.0451,4.766957,5.7505,4.766957 +L 5.7505,4.766957,5.4668,4.766957 +L 5.4668,4.766957,5.1905,4.766957 +L 6.4724,0,6.7491,0 +L 6.7491,0,7.0328,0 +L 7.0328,0,7.3302,0 +L 7.3302,0,7.3302,0.532537 +L 7.3302,0.532537,7.3302,1.056526 +L 7.3302,1.056526,7.3302,1.563604 +L 2.4446,0.533861,2.6617,0.723191 +L 2.6617,0.723191,2.875,0.903961 +L 2.875,0.903961,3.089,1.067733 +L 0.9522,1.830567,0.8019,2.286772 +L 0.8019,2.286772,0.6545,2.734484 +L 0.6545,2.734484,0.5249,3.165286 +L 2.6617,2.364439,2.791,2.820634 +L 2.791,2.820634,2.9381,3.26839 +L 2.9381,3.26839,3.089,3.699114 +L 2.2344,4.766957,1.9294,5.180816 +L 1.9294,5.180816,1.8208,5.586115 +L 1.8208,5.586115,1.8033,6.33054 +L 1.8033,6.33054,1.1907,6.350295 +L 1.1907,6.350295,0.858,6.488729 +L 0.858,6.488729,0.5249,6.864379 +L 0.5249,6.864379,0.9522,7.587667 +L 0.9522,7.587667,1.3795,8.302299 +L 1.3795,8.302299,1.8033,9.000042 +L 1.8033,9.000042,2.2344,8.466148 +L 2.2344,8.466148,2.6617,7.932199 +L 2.6617,7.932199,3.089,7.398338 +L 6.4724,4.766957,6.8787,4.766957 +L 6.8787,4.766957,7.299,4.766957 +L 7.299,4.766957,7.7263,4.766957 +L 5.6213,5.30083,5.3688,7.000044 +L 5.3688,7.000044,4.7317,7.50432 +L 4.7317,7.50432,3.9156,6.33054 +L 6.0451,7.398338,5.7439,7.813565 +L 5.7439,7.813565,5.6388,8.228868 +L 5.6388,8.228868,5.6213,9.000042 +L 6.4724,7.398338,6.7491,7.398338 +L 6.7491,7.398338,7.0328,7.398338 +L 7.0328,7.398338,7.3302,7.398338 + +[鮮] 63 +L 0.5588,0,0.8561,0.41388 +L 0.8561,0.41388,0.965,0.81919 +L 0.965,0.81919,0.9826,1.563604 +L 6.0471,0,6.0292,1.495798 +L 6.0292,1.495798,5.928,2.177988 +L 5.928,2.177988,5.651,2.631304 +L 5.651,2.631304,5.2237,2.631304 +L 5.2237,2.631304,4.7932,2.631304 +L 4.7932,2.631304,4.3726,2.631304 +L 1.8372,0.533861,1.8372,0.877102 +L 1.8372,0.877102,1.8372,1.220364 +L 1.8372,1.220364,1.8372,1.563604 +L 2.6637,0.533861,2.6637,0.877102 +L 2.6637,0.877102,2.6637,1.220364 +L 2.6637,1.220364,2.6637,1.563604 +L 3.9421,0.800858,3.7912,1.066398 +L 3.7912,1.066398,3.6441,1.323467 +L 3.6441,1.323467,3.5148,1.563604 +L 0.9826,2.631304,0.9962,6.015548 +L 0.9962,6.015548,1.1086,7.459105 +L 1.1086,7.459105,1.4099,8.199195 +L 1.4099,8.199195,1.8126,8.302299 +L 1.8126,8.302299,2.2326,8.388404 +L 2.2326,8.388404,2.6637,8.466148 +L 2.6637,8.466148,2.4953,7.319248 +L 2.4953,7.319248,2.5201,6.587608 +L 2.5201,6.587608,3.5148,6.33054 +L 3.5148,6.33054,3.5148,5.108807 +L 3.5148,5.108807,3.5148,3.87856 +L 3.5148,3.87856,3.5148,2.631304 +L 3.5148,2.631304,2.6637,2.631304 +L 2.6637,2.631304,1.8126,2.631304 +L 1.8126,2.631304,0.9826,2.631304 +L 6.4744,2.631304,6.1588,3.303688 +L 6.1588,3.303688,5.942,4.094552 +L 5.942,4.094552,5.651,4.766957 +L 5.651,4.766957,5.3536,4.766957 +L 5.3536,4.766957,5.0734,4.766957 +L 5.0734,4.766957,4.7932,4.766957 +L 6.8982,2.631304,7.1749,2.631304 +L 7.1749,2.631304,7.4586,2.631304 +L 7.4586,2.631304,7.7559,2.631304 +L 2.2326,3.165286,2.2014,3.936449 +L 2.2014,3.936449,1.9874,4.35173 +L 1.9874,4.35173,1.4099,4.766957 +L 2.6637,4.766957,2.2326,5.299396 +L 2.2326,5.299396,1.8126,5.823439 +L 1.8126,5.823439,1.4099,6.33054 +L 6.4744,4.766957,6.1728,5.200495 +L 6.1728,5.200495,6.0646,5.744448 +L 6.0646,5.744448,6.0471,6.864379 +L 6.0471,6.864379,5.4762,6.864379 +L 5.4762,6.864379,4.919,6.864379 +L 4.919,6.864379,4.3726,6.864379 +L 6.4744,6.864379,6.6036,7.587667 +L 6.6036,7.587667,6.7472,8.302299 +L 6.7472,8.302299,6.8982,9.000042 +L 6.8982,6.864379,7.1749,6.864379 +L 7.1749,6.864379,7.4586,6.864379 +L 7.4586,6.864379,7.7559,6.864379 +L 5.2237,8.199195,5.0734,8.466148 +L 5.0734,8.466148,4.926,8.733068 +L 4.926,8.733068,4.7932,9.000042 + +[漸] 60 +L 0.5849,0,0.9772,2.029682 +L 0.9772,2.029682,1.2858,3.245722 +L 1.2858,3.245722,1.4119,4.233096 +L 3.541,0,3.3977,1.151059 +L 3.3977,1.151059,2.9596,1.531053 +L 2.9596,1.531053,2.263,1.563604 +L 4.7949,0,5.0821,0.59186 +L 5.0821,0.59186,5.0821,0.997192 +L 5.0821,0.997192,4.7949,1.563604 +L 4.7949,1.563604,4.522,1.563604 +L 4.522,1.563604,4.2453,1.563604 +L 4.2453,1.563604,3.9718,1.563604 +L 3.9718,1.563604,3.6744,2.097443 +L 3.6744,2.097443,3.3942,2.631304 +L 3.3942,2.631304,3.1207,3.165286 +L 3.1207,3.165286,2.8233,3.165286 +L 2.8233,3.165286,2.5396,3.165286 +L 2.5396,3.165286,2.263,3.165286 +L 2.263,3.165286,2.263,4.231651 +L 2.263,4.231651,2.263,5.289578 +L 2.263,5.289578,2.263,6.33054 +L 2.263,6.33054,2.8829,6.360189 +L 2.8829,6.360189,3.2156,6.567841 +L 3.2156,6.567841,3.541,7.131353 +L 3.541,7.131353,3.2156,7.694985 +L 3.2156,7.694985,2.8829,7.902549 +L 2.8829,7.902549,2.263,7.932199 +L 6.9317,0,6.9317,1.944911 +L 6.9317,1.944911,6.9317,3.889877 +L 6.9317,3.889877,6.9317,5.834789 +L 6.9317,5.834789,6.5041,5.834789 +L 6.5041,5.834789,6.0768,5.834789 +L 6.0768,5.834789,5.653,5.834789 +L 5.653,5.834789,5.653,4.422305 +L 5.653,4.422305,5.653,3.001404 +L 5.653,3.001404,5.653,1.563604 +L 3.9718,3.165286,3.541,3.699114 +L 3.541,3.699114,3.1207,4.233096 +L 3.1207,4.233096,2.6899,4.766957 +L 4.5812,3.165286,4.6481,3.699114 +L 4.6481,3.699114,4.7143,4.233096 +L 4.7143,4.233096,4.7949,4.766957 +L 4.7949,4.766957,4.1998,4.796619 +L 4.1998,4.796619,3.8776,5.004292 +L 3.8776,5.004292,3.541,5.567814 +L 3.541,5.567814,3.8776,6.104521 +L 3.8776,6.104521,4.1998,6.302224 +L 4.1998,6.302224,4.7949,6.33054 +L 4.7949,6.33054,4.7949,5.987222 +L 4.7949,5.987222,4.7949,5.644113 +L 4.7949,5.644113,4.7949,5.30083 +L 5.653,6.33054,5.653,6.864379 +L 5.653,6.864379,5.653,7.398338 +L 5.653,7.398338,5.653,7.932199 +L 5.653,7.932199,6.5811,7.952087 +L 6.5811,7.952087,7.1384,8.090412 +L 7.1384,8.090412,7.7863,8.466148 +L 3.9718,7.932199,3.8215,8.302299 +L 3.8215,8.302299,3.6744,8.655401 +L 3.6744,8.655401,3.541,9.000042 + +[禅] 66 +L 1.4415,0,1.424,2.622964 +L 1.424,2.622964,1.3123,3.720348 +L 1.3123,3.720348,1.0142,4.233096 +L 1.0142,4.233096,0.8605,4.069214 +L 0.8605,4.069214,0.7204,3.888466 +L 0.7204,3.888466,0.5838,3.699114 +L 5.6798,0,5.4518,1.713268 +L 5.4518,1.713268,4.7517,2.138444 +L 4.7517,2.138444,3.5465,2.097443 +L 6.1103,2.097443,5.8126,2.631304 +L 5.8126,2.631304,5.5289,3.165286 +L 5.5289,3.165286,5.2525,3.699114 +L 5.2525,3.699114,4.8249,3.699114 +L 4.8249,3.699114,4.4014,3.699114 +L 4.4014,3.699114,3.9703,3.699114 +L 3.9703,3.699114,3.9703,4.765491 +L 3.9703,4.765491,3.9703,5.823439 +L 3.9703,5.823439,3.9703,6.864379 +L 3.9703,6.864379,4.8249,6.864379 +L 4.8249,6.864379,5.6798,6.864379 +L 5.6798,6.864379,6.5344,6.864379 +L 6.5344,6.864379,6.6637,7.587667 +L 6.6637,7.587667,6.8111,8.302299 +L 6.8111,8.302299,6.9614,9.000042 +L 6.5344,2.097443,6.9404,2.097443 +L 6.9404,2.097443,7.361,2.097443 +L 7.361,2.097443,7.7848,2.097443 +L 2.7203,3.165286,2.2926,3.699114 +L 2.2926,3.699114,1.8688,4.233096 +L 1.8688,4.233096,1.4415,4.766957 +L 1.4415,4.766957,1.8688,5.566446 +L 1.8688,5.566446,2.2926,6.357421 +L 2.2926,6.357421,2.7203,7.131353 +L 2.7203,7.131353,1.9988,7.234456 +L 1.9988,7.234456,1.2913,7.320573 +L 1.2913,7.320573,0.5838,7.398338 +L 6.1103,3.699114,5.8126,4.233096 +L 5.8126,4.233096,5.5289,4.766957 +L 5.5289,4.766957,5.2525,5.30083 +L 5.2525,5.30083,4.9548,5.30083 +L 4.9548,5.30083,4.6743,5.30083 +L 4.6743,5.30083,4.4014,5.30083 +L 6.5344,3.699114,6.8111,3.699114 +L 6.8111,3.699114,7.084,3.699114 +L 7.084,3.699114,7.361,3.699114 +L 7.361,3.699114,7.361,4.233096 +L 7.361,4.233096,7.361,4.766957 +L 7.361,4.766957,7.361,5.30083 +L 7.361,5.30083,6.9337,5.30083 +L 6.9337,5.30083,6.5134,5.30083 +L 6.5134,5.30083,6.1103,5.30083 +L 6.1103,5.30083,5.9562,5.644113 +L 5.9562,5.644113,5.8126,5.987222 +L 5.8126,5.987222,5.6798,6.33054 +L 7.361,5.834789,7.2174,6.177985 +L 7.2174,6.177985,7.084,6.521182 +L 7.084,6.521182,6.9614,6.864379 +L 1.4415,7.932199,1.4415,8.302299 +L 1.4415,8.302299,1.4415,8.655401 +L 1.4415,8.655401,1.4415,9.000042 +L 4.4014,8.199195,4.2473,8.466148 +L 4.2473,8.466148,4.1037,8.733068 +L 4.1037,8.733068,3.9703,9.000042 +L 5.6798,8.199195,5.5289,8.466148 +L 5.5289,8.466148,5.3853,8.733068 +L 5.3853,8.733068,5.2525,9.000042 + +[繕] 69 +L 1.8638,0,1.8638,1.60027 +L 1.8638,1.60027,1.8638,3.192156 +L 1.8638,3.192156,1.8638,4.766957 +L 1.8638,4.766957,1.4435,4.766957 +L 1.4435,4.766957,1.0236,4.766957 +L 1.0236,4.766957,0.6173,4.766957 +L 4.4311,0,4.4311,0.713296 +L 4.4311,0.713296,4.4311,1.409606 +L 4.4311,1.409606,4.4311,2.097443 +L 4.4311,2.097443,5.2647,2.097443 +L 5.2647,2.097443,6.1091,2.097443 +L 6.1091,2.097443,6.9634,2.097443 +L 6.9634,2.097443,6.9634,1.409606 +L 6.9634,1.409606,6.9634,0.713296 +L 6.9634,0.713296,6.9634,0 +L 6.9634,0,6.1091,0 +L 6.1091,0,5.2647,0 +L 5.2647,0,4.4311,0 +L 0.6173,1.33473,0.7465,1.944911 +L 0.7465,1.944911,0.8901,2.555082 +L 0.8901,2.555082,1.0446,3.165286 +L 3.1531,1.830567,2.9951,2.286772 +L 2.9951,2.286772,2.8515,2.734484 +L 2.8515,2.734484,2.7223,3.165286 +L 3.5734,3.699114,3.2788,4.233096 +L 3.2788,4.233096,2.9951,4.766957 +L 2.9951,4.766957,2.7223,5.30083 +L 2.7223,5.30083,2.5713,5.137046 +L 2.5713,5.137046,2.4246,4.956243 +L 2.4246,4.956243,2.2946,4.766957 +L 4.2175,3.699114,4.3506,4.480205 +L 4.3506,4.480205,4.2945,4.964627 +L 4.2945,4.964627,4.0042,5.567814 +L 4.0042,5.567814,4.491,5.757002 +L 4.491,5.757002,4.9775,5.937893 +L 4.9775,5.937893,5.4678,6.101676 +L 5.4678,6.101676,5.3067,6.638394 +L 5.3067,6.638394,5.0374,6.836162 +L 5.0374,6.836162,4.4311,6.864379 +L 4.8584,3.699114,5.132,3.699114 +L 5.132,3.699114,5.4083,3.699114 +L 5.4083,3.699114,5.6783,3.699114 +L 5.6783,3.699114,5.7515,5.2698 +L 5.7515,5.2698,6.2037,5.789629 +L 6.2037,5.789629,7.3907,5.834789 +L 7.3907,5.834789,7.2369,5.223162 +L 7.2369,5.223162,7.0933,4.603185 +L 7.0933,4.603185,6.9634,3.9661 +L 6.9634,3.9661,7.2369,3.888466 +L 7.2369,3.888466,7.5241,3.80225 +L 7.5241,3.80225,7.818,3.699114 +L 1.4719,5.30083,1.5945,5.567814 +L 1.5945,5.567814,1.7237,5.834789 +L 1.7237,5.834789,1.8638,6.101676 +L 1.8638,6.101676,1.5945,6.44496 +L 1.5945,6.44496,1.3174,6.788167 +L 1.3174,6.788167,1.0446,7.131353 +L 1.0446,7.131353,1.3174,7.768438 +L 1.3174,7.768438,1.5945,8.388404 +L 1.5945,8.388404,1.8638,9.000042 +L 2.2946,7.131353,2.4246,7.398338 +L 2.4246,7.398338,2.5713,7.665334 +L 2.5713,7.665334,2.7223,7.932199 +L 6.1091,6.864379,5.7449,7.437916 +L 5.7449,7.437916,5.1985,7.714774 +L 5.1985,7.714774,4.0042,7.932199 +L 6.3189,7.932199,6.5361,8.302299 +L 6.5361,8.302299,6.7501,8.655401 +L 6.7501,8.655401,6.9634,9.000042 + +[塑] 57 +L 0.6158,0,1.7467,0 +L 1.7467,0,2.8815,0 +L 2.8815,0,4.0303,0 +L 4.0303,0,3.8062,1.713268 +L 3.8062,1.713268,3.106,2.138444 +L 3.106,2.138444,1.9008,2.097443 +L 4.4331,0,5.4177,0 +L 5.4177,0,6.4124,0 +L 6.4124,0,7.4211,0 +L 4.4331,2.097443,4.2864,2.364439 +L 4.2864,2.364439,4.1564,2.631304 +L 4.1564,2.631304,4.0303,2.8983 +L 4.0303,2.8983,4.8989,4.841844 +L 4.8989,4.841844,5.2355,6.370062 +L 5.2355,6.370062,5.2842,8.466148 +L 5.2842,8.466148,5.8415,8.466148 +L 5.8415,8.466148,6.4124,8.466148 +L 6.4124,8.466148,6.9938,8.466148 +L 6.9938,8.466148,6.9938,6.891282 +L 6.9938,6.891282,6.9938,5.299396 +L 6.9938,5.299396,6.9938,3.699114 +L 6.9938,3.699114,6.6961,3.699114 +L 6.6961,3.699114,6.4124,3.699114 +L 6.4124,3.699114,6.1427,3.699114 +L 4.8569,2.097443,5.2842,2.097443 +L 5.2842,2.097443,5.7115,2.097443 +L 5.7115,2.097443,6.1427,2.097443 +L 1.2564,3.165286,1.6031,3.621568 +L 1.6031,3.621568,1.9572,4.069214 +L 1.9572,4.069214,2.3215,4.499972 +L 2.3215,4.499972,1.9958,5.063593 +L 1.9958,5.063593,1.6627,5.271168 +L 1.6627,5.271168,1.0431,5.30083 +L 1.0431,5.30083,1.0431,5.833333 +L 1.0431,5.833333,1.0431,6.357421 +L 1.0431,6.357421,1.0431,6.864379 +L 2.7519,5.30083,2.4507,5.75432 +L 2.4507,5.75432,2.339,6.43651 +L 2.339,6.43651,2.3215,7.932199 +L 2.3215,7.932199,1.7467,7.932199 +L 1.7467,7.932199,1.1723,7.932199 +L 1.1723,7.932199,0.6158,7.932199 +L 3.3932,5.30083,3.4563,5.833333 +L 3.4563,5.833333,3.526,6.357421 +L 3.526,6.357421,3.61,6.864379 +L 5.7115,5.30083,5.9851,5.30083 +L 5.9851,5.30083,6.2723,5.30083 +L 6.2723,5.30083,6.5661,5.30083 +L 5.7115,6.864379,5.9851,6.864379 +L 5.9851,6.864379,6.2723,6.864379 +L 6.2723,6.864379,6.5661,6.864379 +L 2.7519,8.199195,2.8815,8.466148 +L 2.8815,8.466148,3.029,8.733068 +L 3.029,8.733068,3.1792,9.000042 +L 3.1792,7.932199,3.4563,7.932199 +L 3.4563,7.932199,3.7365,7.932199 +L 3.7365,7.932199,4.0303,7.932199 + +[措,,] 51 +L 1.0763,0,1.3498,0 +L 1.3498,0,1.63,0 +L 1.63,0,1.9274,0 +L 1.9274,0,1.9137,2.622964 +L 1.9137,2.622964,1.8013,3.720348 +L 1.8013,3.720348,1.5001,4.233096 +L 1.5001,4.233096,1.2097,4.069214 +L 1.2097,4.069214,0.9225,3.888466 +L 0.9225,3.888466,0.649,3.699114 +L 4.4596,0,4.4596,1.247245 +L 4.4596,1.247245,4.4596,2.477415 +L 4.4596,2.477415,4.4596,3.699114 +L 4.4596,3.699114,5.2936,3.699114 +L 5.2936,3.699114,6.1408,3.699114 +L 6.1408,3.699114,6.9958,3.699114 +L 6.9958,3.699114,6.9958,2.477415 +L 6.9958,2.477415,6.9958,1.247245 +L 6.9958,1.247245,6.9958,0 +L 6.9958,0,6.1408,0 +L 6.1408,0,5.2936,0 +L 5.2936,0,4.4596,0 +L 4.8908,2.097443,5.4372,2.097443 +L 5.4372,2.097443,5.9972,2.097443 +L 5.9972,2.097443,6.5646,2.097443 +L 2.3585,4.233096,1.8191,5.508557 +L 1.8191,5.508557,1.6125,6.478858 +L 1.6125,6.478858,0.649,6.864379 +L 3.605,5.30083,4.0323,5.30083 +L 4.0323,5.30083,4.4596,5.30083 +L 4.4596,5.30083,4.8908,5.30083 +L 4.8908,5.30083,4.8908,5.833333 +L 4.8908,5.833333,4.8908,6.357421 +L 4.8908,6.357421,4.8908,6.864379 +L 4.8908,6.864379,4.5927,7.053686 +L 4.5927,7.053686,4.309,7.234456 +L 4.309,7.234456,4.0323,7.398338 +L 5.3146,5.30083,5.7209,5.30083 +L 5.7209,5.30083,6.1408,5.30083 +L 6.1408,5.30083,6.5646,5.30083 +L 6.5646,5.30083,6.1307,7.251465 +L 6.1307,7.251465,5.3212,7.659676 +L 5.3212,7.659676,4.8908,9.000042 +L 6.9958,5.30083,7.2686,5.30083 +L 7.2686,5.30083,7.5558,5.30083 +L 7.5558,5.30083,7.8469,5.30083 +L 2.3585,6.864379,2.0538,7.29935 +L 2.0538,7.29935,1.9449,7.853208 +L 1.9449,7.853208,1.9274,9.000042 +L 6.9958,7.398338,6.6946,7.813565 +L 6.6946,7.813565,6.5821,8.228868 +L 6.5821,8.228868,6.5646,9.000042 + +[疎] 45 +L 5.3166,0,5.2991,1.871458 +L 5.2991,1.871458,5.1975,2.692083 +L 5.1975,2.692083,4.917,3.165286 +L 4.917,3.165286,4.1993,2.288195 +L 4.1993,2.288195,3.4845,1.411028 +L 3.4845,1.411028,2.7843,0.533861 +L 7.4527,0.533861,6.5981,1.781117 +L 6.5981,1.781117,5.7505,3.011287 +L 5.7505,3.011287,4.917,4.233096 +L 4.917,4.233096,4.49,4.233096 +L 4.49,4.233096,4.0627,4.233096 +L 4.0627,4.233096,3.6389,4.233096 +L 3.6389,4.233096,3.6389,4.94637 +L 3.6389,4.94637,3.6389,5.642668 +L 3.6389,5.642668,3.6389,6.33054 +L 3.6389,6.33054,4.5527,6.360189 +L 4.5527,6.360189,4.9909,6.567841 +L 4.9909,6.567841,5.3166,7.131353 +L 5.3166,7.131353,4.9909,7.694985 +L 4.9909,7.694985,4.5527,7.902549 +L 4.5527,7.902549,3.6389,7.932199 +L 1.1066,1.067733,1.1066,2.822056 +L 1.1066,2.822056,1.1066,4.576304 +L 1.1066,4.576304,1.1066,6.33054 +L 1.7161,1.067733,1.7227,3.721782 +L 1.7227,3.721782,1.9048,6.05366 +L 1.9048,6.05366,2.7843,8.199195 +L 2.7843,8.199195,2.0803,8.302299 +L 2.0803,8.302299,1.3795,8.388404 +L 1.3795,8.388404,0.6793,8.466148 +L 5.7439,4.233096,5.2287,5.556552 +L 5.2287,5.556552,5.9327,6.176617 +L 5.9327,6.176617,7.0219,6.33054 +L 7.0219,6.33054,7.0219,5.642668 +L 7.0219,5.642668,7.0219,4.94637 +L 7.0219,4.94637,7.0219,4.233096 +L 7.0219,4.233096,6.5981,4.233096 +L 6.5981,4.233096,6.1712,4.233096 +L 6.1712,4.233096,5.7439,4.233096 +L 5.7439,7.932199,5.5929,8.302299 +L 5.5929,8.302299,5.4458,8.655401 +L 5.4458,8.655401,5.3166,9.000042 +L 6.1712,7.932199,6.5981,7.932199 +L 6.5981,7.932199,7.0219,7.932199 +L 7.0219,7.932199,7.4527,7.932199 + +[礎] 60 +L 3.2413,0,3.823,0.809318 +L 3.823,0.809318,4.0328,1.491585 +L 4.0328,1.491585,4.0647,2.631304 +L 5.7736,0.266996,5.3463,0.533861 +L 5.3463,0.533861,4.9225,0.800858 +L 4.9225,0.800858,4.4917,1.067733 +L 6.2009,0,6.7511,0 +L 6.7511,0,7.3076,0 +L 7.3076,0,7.8785,0 +L 5.7736,1.067733,5.7736,2.134208 +L 5.7736,2.134208,5.7736,3.192156 +L 5.7736,3.192156,5.7736,4.233096 +L 5.7736,4.233096,5.0699,4.233096 +L 5.0699,4.233096,4.3694,4.233096 +L 4.3694,4.233096,3.6686,4.233096 +L 1.1016,1.563604,1.2134,5.115823 +L 1.2134,5.115823,1.42,7.023948 +L 1.42,7.023948,1.5324,8.466148 +L 1.5324,8.466148,1.2379,8.466148 +L 1.2379,8.466148,0.9542,8.466148 +L 0.9542,8.466148,0.6813,8.466148 +L 1.5324,1.563604,1.8088,1.563604 +L 1.8088,1.563604,2.0925,1.563604 +L 2.0925,1.563604,2.3902,1.563604 +L 2.3902,1.563604,2.3902,2.820634 +L 2.3902,2.820634,2.3902,4.069214 +L 2.3902,4.069214,2.3902,5.30083 +L 2.3902,5.30083,2.0925,5.30083 +L 2.0925,5.30083,1.8088,5.30083 +L 1.8088,5.30083,1.5324,5.30083 +L 6.2009,2.097443,6.6285,2.097443 +L 6.6285,2.097443,7.0558,2.097443 +L 7.0558,2.097443,7.4796,2.097443 +L 6.2009,4.233096,6.6285,4.233096 +L 6.6285,4.233096,7.0558,4.233096 +L 7.0558,4.233096,7.4796,4.233096 +L 4.0647,5.30083,4.0468,6.04521 +L 4.0468,6.04521,3.9453,6.450531 +L 3.9453,6.450531,3.6686,6.864379 +L 3.6686,6.864379,3.5183,6.700617 +L 3.5183,6.700617,3.3712,6.519824 +L 3.3712,6.519824,3.2413,6.33054 +L 6.6285,5.30083,6.6145,6.04521 +L 6.6145,6.04521,6.5021,6.450531 +L 6.5021,6.450531,6.2009,6.864379 +L 6.2009,6.864379,6.0502,6.700617 +L 6.0502,6.700617,5.9035,6.519824 +L 5.9035,6.519824,5.7736,6.33054 +L 4.9225,6.33054,3.4059,7.833342 +L 3.4059,7.833342,2.6389,8.387048 +L 2.6389,8.387048,1.9597,8.466148 +L 7.4796,6.33054,6.9013,6.864379 +L 6.9013,6.864379,6.3308,7.398338 +L 6.3308,7.398338,5.7736,7.932199 +L 4.4917,7.932199,4.3414,8.302299 +L 4.3414,8.302299,4.1975,8.655401 +L 4.1975,8.655401,4.0647,9.000042 +L 7.0558,7.932199,6.9013,8.302299 +L 6.9013,8.302299,6.7612,8.655401 +L 6.7612,8.655401,6.6285,9.000042 + +[租] 45 +L 1.9894,0,1.9088,1.411028 +L 1.9088,1.411028,1.8391,2.822056 +L 1.8391,2.822056,1.7761,4.233096 +L 1.7761,4.233096,1.4118,3.535353 +L 1.4118,3.535353,1.0542,2.820634 +L 1.0542,2.820634,0.7075,2.097443 +L 3.6706,0,3.9441,0 +L 3.9441,0,4.2243,0 +L 4.2243,0,4.5217,0 +L 4.5217,0,4.5217,2.822056 +L 4.5217,2.822056,4.5217,5.644113 +L 4.5217,5.644113,4.5217,8.466148 +L 4.5217,8.466148,5.3556,8.466148 +L 5.3556,8.466148,6.2032,8.466148 +L 6.2032,8.466148,7.0543,8.466148 +L 7.0543,8.466148,7.0543,5.644113 +L 7.0543,5.644113,7.0543,2.822056 +L 7.0543,2.822056,7.0543,0 +L 7.0543,0,7.3306,0 +L 7.3306,0,7.6108,0 +L 7.6108,0,7.9054,0 +L 4.9493,0,5.4992,0 +L 5.4992,0,6.0557,0 +L 6.0557,0,6.6266,0 +L 4.9493,3.165286,5.4992,3.165286 +L 5.4992,3.165286,6.0557,3.165286 +L 6.0557,3.165286,6.6266,3.165286 +L 3.2398,3.699114,2.4692,4.508422 +L 2.4692,4.508422,2.0353,5.19071 +L 2.0353,5.19071,1.5656,6.33054 +L 1.5656,6.33054,1.2682,6.33054 +L 1.2682,6.33054,0.9846,6.33054 +L 0.9846,6.33054,0.7075,6.33054 +L 4.9493,5.834789,5.4992,5.834789 +L 5.4992,5.834789,6.0557,5.834789 +L 6.0557,5.834789,6.6266,5.834789 +L 2.3855,6.33054,2.1085,6.745832 +L 2.1085,6.745832,2.0069,7.161036 +L 2.0069,7.161036,1.9894,7.932199 +L 1.9894,7.932199,1.5656,7.932199 +L 1.5656,7.932199,1.1383,7.932199 +L 1.1383,7.932199,0.7075,7.932199 +L 2.3855,7.932199,2.6657,8.121507 +L 2.6657,8.121507,2.9459,8.302299 +L 2.9459,8.302299,3.2398,8.466148 + +[粗] 42 +L 1.9879,0,1.9073,1.411028 +L 1.9073,1.411028,1.8408,2.822056 +L 1.8408,2.822056,1.7781,4.233096 +L 1.7781,4.233096,1.4205,3.535353 +L 1.4205,3.535353,1.0773,2.820634 +L 1.0773,2.820634,0.7379,2.097443 +L 3.6974,0,3.9776,0 +L 3.9776,0,4.2575,0 +L 4.2575,0,4.5552,0 +L 4.5552,0,4.5552,2.822056 +L 4.5552,2.822056,4.5552,5.644113 +L 4.5552,5.644113,4.5552,8.466148 +L 4.5552,8.466148,5.3888,8.466148 +L 5.3888,8.466148,6.2329,8.466148 +L 6.2329,8.466148,7.084,8.466148 +L 7.084,8.466148,7.084,5.644113 +L 7.084,5.644113,7.084,2.822056 +L 7.084,2.822056,7.084,0 +L 7.084,0,7.361,0 +L 7.361,0,7.6447,0 +L 7.6447,0,7.9421,0 +L 4.9513,0,5.5044,0 +L 5.5044,0,6.0788,0 +L 6.0788,0,6.6602,0 +L 4.9513,3.165286,5.5044,3.165286 +L 5.5044,3.165286,6.0788,3.165286 +L 6.0788,3.165286,6.6602,3.165286 +L 3.2701,3.699114,2.0373,5.201918 +L 2.0373,5.201918,1.3858,5.755666 +L 1.3858,5.755666,0.7379,5.834789 +L 2.4191,5.834789,2.1178,6.282522 +L 2.1178,6.282522,2.0054,7.103147 +L 2.0054,7.103147,1.9879,9.000042 +L 4.9513,5.834789,5.5044,5.834789 +L 5.5044,5.834789,6.0788,5.834789 +L 6.0788,5.834789,6.6602,5.834789 +L 1.1333,7.131353,0.9932,7.587667 +L 0.9932,7.587667,0.8605,8.035413 +L 0.8605,8.035413,0.7379,8.466148 +L 2.8428,7.131353,2.9791,7.587667 +L 2.9791,7.587667,3.1227,8.035413 +L 3.1227,8.035413,3.2701,8.466148 + +[訴] 32 +L 6.6905,0,6.6061,0.877102 +L 6.6061,0.877102,6.5361,1.754268 +L 6.5361,1.754268,6.4765,2.631304 +L 6.4765,2.631304,6.1123,2.820634 +L 6.1123,2.820634,5.7515,3.001404 +L 5.7515,3.001404,5.4083,3.165286 +L 3.7026,0.533861,4.5187,2.918057 +L 4.5187,2.918057,4.6311,5.344675 +L 4.6311,5.344675,4.5537,7.932199 +L 4.5537,7.932199,6.1998,8.070645 +L 6.1998,8.070645,7.1665,8.327713 +L 7.1665,8.327713,7.9371,8.466148 +L 7.9371,1.563604,7.6642,1.7529 +L 7.6642,1.7529,7.3907,1.933671 +L 7.3907,1.933671,7.1178,2.097443 +L 6.6905,3.165286,6.6905,3.888466 +L 6.6905,3.888466,6.6905,4.603185 +L 6.6905,4.603185,6.6905,5.30083 +L 6.6905,5.30083,6.1123,5.30083 +L 6.1123,5.30083,5.5417,5.30083 +L 5.5417,5.30083,4.981,5.30083 +L 7.1178,5.30083,7.3907,5.30083 +L 7.3907,5.30083,7.6642,5.30083 +L 7.6642,5.30083,7.9371,5.30083 +L 0.7399,6.902522,3.2721,6.902522 +L 1.1707,8.504324,2.8449,8.504324 +L 1.1707,5.300971,2.8449,5.300971 +L 1.1707,4.23303,2.8449,4.23303 +L 1.1707,2.669536,2.8449,2.669536 +L 1.1707,0,1.1707,2.669536 +L 2.8449,0,1.1707,0 +L 2.8449,2.669536,2.8449,0 + +[阻] 36 +L 0.7695,0,0.7695,2.822056 +L 0.7695,2.822056,0.7695,5.644113 +L 0.7695,5.644113,0.7695,8.466148 +L 0.7695,8.466148,1.3194,8.466148 +L 1.3194,8.466148,1.8802,8.466148 +L 1.8802,8.466148,2.4507,8.466148 +L 2.4507,8.466148,2.0133,6.131424 +L 2.0133,6.131424,2.2301,4.762721 +L 2.2301,4.762721,2.4507,2.631304 +L 2.4507,2.631304,2.1744,2.467543 +L 2.1744,2.467543,1.8977,2.286772 +L 1.8977,2.286772,1.628,2.097443 +L 3.3018,0,3.5789,0 +L 3.5789,0,3.8591,0 +L 3.8591,0,4.1603,0 +L 4.1603,0,4.1603,2.822056 +L 4.1603,2.822056,4.1603,5.644113 +L 4.1603,5.644113,4.1603,8.466148 +L 4.1603,8.466148,5.134,8.466148 +L 5.134,8.466148,6.1216,8.466148 +L 6.1216,8.466148,7.1163,8.466148 +L 7.1163,8.466148,7.1163,5.644113 +L 7.1163,5.644113,7.1163,2.822056 +L 7.1163,2.822056,7.1163,0 +L 7.1163,0,7.3927,0 +L 7.3927,0,7.6729,0 +L 7.6729,0,7.9709,0 +L 4.5841,0,5.2877,0 +L 5.2877,0,5.9885,0 +L 5.9885,0,6.6925,0 +L 4.5841,3.165286,5.2877,3.165286 +L 5.2877,3.165286,5.9885,3.165286 +L 5.9885,3.165286,6.6925,3.165286 +L 4.5841,5.834789,5.2877,5.834789 +L 5.2877,5.834789,5.9885,5.834789 +L 5.9885,5.834789,6.6925,5.834789 + +[僧] 57 +L 1.6261,0,1.5421,1.944911 +L 1.5421,1.944911,1.4724,3.889877 +L 1.4724,3.889877,1.4128,5.834789 +L 1.4128,5.834789,1.1988,5.670995 +L 1.1988,5.670995,0.9855,5.490115 +L 0.9855,5.490115,0.768,5.30083 +L 4.1868,0,4.1868,1.066398 +L 4.1868,1.066398,4.1868,2.124314 +L 4.1868,2.124314,4.1868,3.165286 +L 4.1868,3.165286,5.02,3.165286 +L 5.02,3.165286,5.868,3.165286 +L 5.868,3.165286,6.7222,3.165286 +L 6.7222,3.165286,6.7222,2.124314 +L 6.7222,2.124314,6.7222,1.066398 +L 6.7222,1.066398,6.7222,0 +L 6.7222,0,5.868,0 +L 5.868,0,5.02,0 +L 5.02,0,4.1868,0 +L 4.5822,1.563604,5.1426,1.563604 +L 5.1426,1.563604,5.7135,1.563604 +L 5.7135,1.563604,6.2918,1.563604 +L 3.3357,4.766957,3.3357,5.644113 +L 3.3357,5.644113,3.3357,6.521182 +L 3.3357,6.521182,3.3357,7.398338 +L 3.3357,7.398338,3.7385,7.398338 +L 3.7385,7.398338,4.1588,7.398338 +L 4.1588,7.398338,4.5822,7.398338 +L 4.5822,7.398338,4.5686,8.169513 +L 4.5686,8.169513,4.467,8.584739 +L 4.467,8.584739,4.1868,9.000042 +L 3.7595,4.766957,4.3125,4.766957 +L 4.3125,4.766957,4.8698,4.766957 +L 4.8698,4.766957,5.4407,4.766957 +L 5.4407,4.766957,5.2057,6.05366 +L 5.2057,6.05366,4.6036,6.365859 +L 4.6036,6.365859,3.7595,6.33054 +L 5.8645,4.766957,6.4245,4.766957 +L 6.4245,4.766957,6.9923,4.766957 +L 6.9923,4.766957,7.5733,4.766957 +L 7.5733,4.766957,7.5733,5.299396 +L 7.5733,5.299396,7.5733,5.823439 +L 7.5733,5.823439,7.5733,6.33054 +L 7.5733,6.33054,6.9923,6.33054 +L 6.9923,6.33054,6.4245,6.33054 +L 6.4245,6.33054,5.8645,6.33054 +L 5.8645,6.33054,5.5734,6.700617 +L 5.5734,6.700617,5.2862,7.053686 +L 5.2862,7.053686,5.0134,7.398338 +L 1.6261,6.597491,1.9028,7.398338 +L 1.9028,7.398338,2.1834,8.199195 +L 2.1834,8.199195,2.4772,9.000042 +L 7.5733,7.131353,6.9923,7.234456 +L 6.9923,7.234456,6.4245,7.320573 +L 6.4245,7.320573,5.8645,7.398338 +L 6.2918,7.932199,6.4245,8.302299 +L 6.4245,8.302299,6.5685,8.655401 +L 6.5685,8.655401,6.7222,9.000042 + +[双] 30 +L 0.8019,0,1.5021,1.333285 +L 1.5021,1.333285,2.2029,2.658186 +L 2.2029,2.658186,2.9069,3.9661 +L 2.9069,3.9661,2.3321,4.603185 +L 2.3321,4.603185,1.7791,5.223162 +L 1.7791,5.223162,1.2257,5.834789 +L 3.5475,0,4.462,0.799424 +L 4.462,0.799424,5.3863,1.590452 +L 5.3863,1.590452,6.3214,2.364439 +L 6.3214,2.364439,5.4878,4.514168 +L 5.4878,4.514168,5.1236,6.367205 +L 5.1236,6.367205,5.0395,8.466148 +L 5.0395,8.466148,5.8731,8.466148 +L 5.8731,8.466148,6.7207,8.466148 +L 6.7207,8.466148,7.5718,8.466148 +L 7.5718,8.466148,7.5441,6.515523 +L 7.5441,6.515523,7.32,5.141293 +L 7.32,5.141293,6.7176,3.165286 +L 8.0026,0,7.5718,0.532537 +L 7.5718,0.532537,7.148,1.056526 +L 7.148,1.056526,6.7176,1.563604 +L 3.7615,1.830567,3.6105,2.286772 +L 3.6105,2.286772,3.4634,2.734484 +L 3.4634,2.734484,3.3342,3.165286 +L 2.9069,5.033942,3.2042,5.69491 +L 3.2042,5.69491,3.3167,6.58473 +L 3.3167,6.58473,3.3342,8.466148 +L 3.3342,8.466148,2.4831,8.466148 +L 2.4831,8.466148,1.632,8.466148 +L 1.632,8.466148,0.8019,8.466148 + +[喪] 57 +L 1.2589,0,1.6652,0 +L 1.6652,0,2.0823,0 +L 2.0823,0,2.5093,0 +L 2.5093,0,2.5093,1.247245 +L 2.5093,1.247245,2.5093,2.477415 +L 2.5093,2.477415,2.5093,3.699114 +L 2.5093,3.699114,1.9387,3.699114 +L 1.9387,3.699114,1.3815,3.699114 +L 1.3815,3.699114,0.8316,3.699114 +L 2.9401,0,3.2696,0.375671 +L 3.2696,0.375671,3.602,0.514105 +L 3.602,0.514105,4.2188,0.533861 +L 7.1784,0,6.3234,0.877102 +L 6.3234,0.877102,5.4797,1.754268 +L 5.4797,1.754268,4.6461,2.631304 +L 4.6461,2.631304,4.6461,3.001404 +L 4.6461,3.001404,4.6461,3.354506 +L 4.6461,3.354506,4.6461,3.699114 +L 4.6461,3.699114,4.0679,3.699114 +L 4.0679,3.699114,3.4973,3.699114 +L 3.4973,3.699114,2.9401,3.699114 +L 5.0734,3.699114,5.907,3.699114 +L 5.907,3.699114,6.7511,3.699114 +L 6.7511,3.699114,7.6057,3.699114 +L 4.2188,4.233096,4.0889,7.175155 +L 4.0889,7.175155,3.3043,7.964762 +L 3.3043,7.964762,1.2589,7.932199 +L 1.655,5.30083,1.655,5.644113 +L 1.655,5.644113,1.655,5.987222 +L 1.655,5.987222,1.655,6.33054 +L 1.655,6.33054,2.0823,6.33054 +L 2.0823,6.33054,2.5093,6.33054 +L 2.5093,6.33054,2.9401,6.33054 +L 2.9401,6.33054,2.9401,5.987222 +L 2.9401,5.987222,2.9401,5.644113 +L 2.9401,5.644113,2.9401,5.30083 +L 2.9401,5.30083,2.5093,5.30083 +L 2.5093,5.30083,2.0823,5.30083 +L 2.0823,5.30083,1.655,5.30083 +L 5.4723,5.30083,5.4723,5.644113 +L 5.4723,5.644113,5.4723,5.987222 +L 5.4723,5.987222,5.4723,6.33054 +L 5.4723,6.33054,5.8961,6.33054 +L 5.8961,6.33054,6.3234,6.33054 +L 6.3234,6.33054,6.7511,6.33054 +L 6.7511,6.33054,6.7511,5.987222 +L 6.7511,5.987222,6.7511,5.644113 +L 6.7511,5.644113,6.7511,5.30083 +L 6.7511,5.30083,6.3234,5.30083 +L 6.3234,5.30083,5.8961,5.30083 +L 5.8961,5.30083,5.4723,5.30083 +L 4.6461,7.932199,4.4987,8.302299 +L 4.4987,8.302299,4.3484,8.655401 +L 4.3484,8.655401,4.2188,9.000042 +L 5.0734,7.932199,5.7735,7.932199 +L 5.7735,7.932199,6.4775,7.932199 +L 6.4775,7.932199,7.1784,7.932199 + +[壮] 27 +L 2.1158,0,2.0314,1.066398 +L 2.0314,1.066398,1.9617,2.124314 +L 1.9617,2.124314,1.9018,3.165286 +L 1.9018,3.165286,1.5376,2.820634 +L 1.5376,2.820634,1.1733,2.467543 +L 1.1733,2.467543,0.8301,2.097443 +L 3.3977,0,4.0982,0 +L 4.0982,0,4.7984,0 +L 4.7984,0,5.5027,0 +L 5.5027,0,5.5763,3.83478 +L 5.5763,3.83478,5.0894,5.483033 +L 5.0894,5.483033,2.9669,5.834789 +L 5.9297,0,6.483,0 +L 6.483,0,7.0578,0 +L 7.0578,0,7.6353,0 +L 2.1158,3.699114,2.1158,5.480231 +L 2.1158,5.480231,2.1158,7.244372 +L 2.1158,7.244372,2.1158,9.000042 +L 1.2574,6.101676,1.1071,6.367205 +L 1.1071,6.367205,0.9635,6.624285 +L 0.9635,6.624285,0.8301,6.864379 +L 5.9297,5.834789,5.6284,6.282522 +L 5.6284,6.282522,5.5167,7.103147 +L 5.5167,7.103147,5.5027,9.000042 +L 6.3538,5.834789,6.9033,5.834789 +L 6.9033,5.834789,7.4641,5.834789 +L 7.4641,5.834789,8.0346,5.834789 + +[捜] 55 +L 3.82,0,4.524,0.3701 +L 4.524,0.3701,5.235,0.723191 +L 5.235,0.723191,5.96,1.067733 +L 5.96,1.067733,5.5289,1.677937 +L 5.5289,1.677937,5.1016,2.288195 +L 5.1016,2.288195,4.6778,2.8983 +L 4.6778,2.8983,5.1016,3.001404 +L 5.1016,3.001404,5.5289,3.087619 +L 5.5289,3.087619,5.96,3.165286 +L 5.96,3.165286,5.7219,4.495758 +L 5.7219,4.495758,5.1159,4.809293 +L 5.1159,4.809293,4.2505,4.766957 +L 4.2505,4.766957,4.2505,5.833333 +L 4.2505,5.833333,4.2505,6.891282 +L 4.2505,6.891282,4.2505,7.932199 +L 4.2505,7.932199,4.6778,7.932199 +L 4.6778,7.932199,5.1016,7.932199 +L 5.1016,7.932199,5.5289,7.932199 +L 5.5289,7.932199,5.6623,8.302299 +L 5.6623,8.302299,5.8059,8.655401 +L 5.8059,8.655401,5.96,9.000042 +L 7.21,0,6.9127,0.189329 +L 6.9127,0.189329,6.6325,0.3701 +L 6.6325,0.3701,6.3523,0.533861 +L 6.3523,1.563604,6.6325,2.019776 +L 6.6325,2.019776,6.9127,2.467543 +L 6.9127,2.467543,7.21,2.8983 +L 7.21,2.8983,6.9127,3.001404 +L 6.9127,3.001404,6.6325,3.087619 +L 6.6325,3.087619,6.3523,3.165286 +L 6.3523,4.766957,6.0826,5.299396 +L 6.0826,5.299396,5.8059,5.823439 +L 5.8059,5.823439,5.5289,6.33054 +L 5.5289,6.33054,5.235,6.33054 +L 5.235,6.33054,4.9513,6.33054 +L 4.9513,6.33054,4.6778,6.33054 +L 6.7827,4.766957,7.0563,4.766957 +L 7.0563,4.766957,7.3435,4.766957 +L 7.3435,4.766957,7.6338,4.766957 +L 7.6338,4.766957,7.6338,5.299396 +L 7.6338,5.299396,7.6338,5.823439 +L 7.6338,5.823439,7.6338,6.33054 +L 7.6338,6.33054,6.7166,6.360189 +L 6.7166,6.360189,6.2819,6.567841 +L 6.2819,6.567841,5.96,7.131353 +L 5.96,7.131353,6.2819,7.694985 +L 6.2819,7.694985,6.7166,7.902549 +L 6.7166,7.902549,7.6338,7.932199 +L 7.6338,7.932199,7.6338,7.587667 +L 7.6338,7.587667,7.6338,7.234456 +L 7.6338,7.234456,7.6338,6.864379 +L 2.3455,8.961975,2.3455,-0.038166 +L 2.3455,-0.038166,1.5186,-0.038166 +L 0.864,3.661014,3.82,5.510659 +L 0.864,6.864379,3.82,6.864379 + +[掃] 48 +L 0.8625,0,1.1353,0 +L 1.1353,0,1.4155,0 +L 1.4155,0,1.6852,0 +L 1.6852,0,1.6852,1.411039 +L 1.6852,1.411039,1.6852,2.822056 +L 1.6852,2.822056,1.6852,4.233096 +L 1.6852,4.233096,1.4155,4.233096 +L 1.4155,4.233096,1.1353,4.233096 +L 1.1353,4.233096,0.8625,4.233096 +L 5.4997,0,5.4643,2.091861 +L 5.4643,2.091861,5.0584,2.980193 +L 5.0584,2.980193,3.8252,3.165297 +L 3.8252,3.165297,3.8252,2.288195 +L 3.8252,2.288195,3.8252,1.411039 +L 3.8252,1.411039,3.8252,0.533861 +L 7.2085,0.533861,7.2085,1.411039 +L 7.2085,1.411039,7.2085,2.288195 +L 7.2085,2.288195,7.2085,3.165297 +L 7.2085,3.165297,6.0636,3.267021 +L 6.0636,3.267021,5.5904,3.724594 +L 5.5904,3.724594,5.4997,4.766957 +L 5.4997,4.766957,4.7989,4.766957 +L 4.7989,4.766957,4.0949,4.766957 +L 4.0949,4.766957,3.3947,4.766957 +L 1.6852,4.766957,1.6852,5.299396 +L 1.6852,5.299396,1.6852,5.823439 +L 1.6852,5.823439,1.6852,6.33054 +L 1.6852,6.33054,1.4155,6.519824 +L 1.4155,6.519824,1.1353,6.700617 +L 1.1353,6.700617,0.8625,6.864379 +L 5.927,4.766957,6.6271,4.766957 +L 6.6271,4.766957,7.3385,4.766957 +L 7.3385,4.766957,8.0631,4.766957 +L 3.8252,6.33054,4.9533,6.33054 +L 4.9533,6.33054,6.0808,6.33054 +L 6.0808,6.33054,7.2085,6.33054 +L 7.2085,6.33054,7.2085,6.700617 +L 7.2085,6.700617,7.2085,7.053686 +L 7.2085,7.053686,7.2085,7.398338 +L 7.2085,7.398338,6.0808,7.398338 +L 6.0808,7.398338,4.9533,7.398338 +L 4.9533,7.398338,3.8252,7.398338 +L 2.1163,6.864379,1.8116,7.29935 +L 1.8116,7.29935,1.7027,7.853208 +L 1.7027,7.853208,1.6852,9.000042 +L 7.2085,8.199195,6.0808,8.302321 +L 6.0808,8.302321,4.9533,8.388404 +L 4.9533,8.388404,3.8252,8.466181 + +[挿] 57 +L 1.2918,0,1.5646,0 +L 1.5646,0,1.8448,0 +L 1.8448,0,2.1428,0 +L 2.1428,0,2.1285,2.622964 +L 2.1285,2.622964,2.0168,3.720381 +L 2.0168,3.720381,1.7156,4.233096 +L 1.7156,4.233096,1.4245,4.069214 +L 1.4245,4.069214,1.1373,3.888466 +L 1.1373,3.888466,0.8645,3.699114 +L 5.9567,0,5.8064,1.61162 +L 5.8064,1.61162,5.2775,2.08756 +L 5.2775,2.08756,4.2478,2.097443 +L 4.2478,2.097443,4.2478,3.165297 +L 4.2478,3.165297,4.2478,4.233096 +L 4.2478,4.233096,4.2478,5.30083 +L 4.2478,5.30083,5.1686,5.330501 +L 5.1686,5.330501,5.6099,5.538164 +L 5.6099,5.538164,5.9567,6.101676 +L 5.9567,6.101676,5.5924,6.638394 +L 5.5924,6.638394,5.039,6.836162 +L 5.039,6.836162,3.8205,6.864379 +L 6.384,2.097443,6.0901,2.631337 +L 6.0901,2.631337,5.8064,3.165297 +L 5.8064,3.165297,5.5294,3.699114 +L 5.5294,3.699114,5.2355,3.699114 +L 5.2355,3.699114,4.9518,3.699114 +L 4.9518,3.699114,4.6748,3.699114 +L 6.8151,2.097443,7.0845,2.097443 +L 7.0845,2.097443,7.3615,2.097443 +L 7.3615,2.097443,7.6378,2.097443 +L 7.6378,2.097443,7.6378,2.631337 +L 7.6378,2.631337,7.6378,3.165297 +L 7.6378,3.165297,7.6378,3.699114 +L 7.6378,3.699114,6.7381,3.728798 +L 6.7381,3.728798,6.3073,3.936449 +L 6.3073,3.936449,5.9567,4.499994 +L 5.9567,4.499994,6.3073,5.063593 +L 6.3073,5.063593,6.7381,5.271168 +L 6.7381,5.271168,7.6378,5.30083 +L 7.6378,5.30083,7.6378,4.956275 +L 7.6378,4.956275,7.6378,4.603207 +L 7.6378,4.603207,7.6378,4.233096 +L 2.5733,4.233096,2.0343,5.508568 +L 2.0343,5.508568,1.8273,6.478858 +L 1.8273,6.478858,0.8645,6.864379 +L 2.5733,6.864379,2.2721,7.29935 +L 2.2721,7.29935,2.1604,7.853208 +L 2.1604,7.853208,2.1428,9.000042 +L 6.384,6.864379,6.0197,7.437927 +L 6.0197,7.437927,5.4663,7.714774 +L 5.4663,7.714774,4.2478,7.932199 +L 6.8151,6.864379,7.2179,6.864379 +L 7.2179,6.864379,7.6378,6.864379 +L 7.6378,6.864379,8.0616,6.864379 +L 6.384,7.932199,6.7135,8.307957 +L 6.7135,8.307957,7.0393,8.446315 +L 7.0393,8.446315,7.6378,8.466181 + +[曹] 66 +L 2.5406,0,2.5406,0.877102 +L 2.5406,0.877102,2.5406,1.754268 +L 2.5406,1.754268,2.5406,2.631337 +L 2.5406,2.631337,3.8015,2.631337 +L 3.8015,2.631337,5.0764,2.631337 +L 5.0764,2.631337,6.3548,2.631337 +L 6.3548,2.631337,6.3548,1.754268 +L 6.3548,1.754268,6.3548,0.877102 +L 6.3548,0.877102,6.3548,0 +L 6.3548,0,5.0764,0 +L 5.0764,0,3.8015,0 +L 3.8015,0,2.5406,0 +L 2.9644,1.563604,3.9451,1.563604 +L 3.9451,1.563604,4.9293,1.563604 +L 4.9293,1.563604,5.9275,1.563604 +L 1.7176,4.233096,1.7176,4.94637 +L 1.7176,4.94637,1.7176,5.642701 +L 1.7176,5.642701,1.7176,6.33054 +L 1.7176,6.33054,2.6138,6.360189 +L 2.6138,6.360189,3.0485,6.567841 +L 3.0485,6.567841,3.3952,7.131385 +L 3.3952,7.131385,3.2408,7.398338 +L 3.2408,7.398338,3.0972,7.665346 +L 3.0972,7.665346,2.9644,7.932199 +L 2.9644,7.932199,2.2639,7.932199 +L 2.2639,7.932199,1.5631,7.932199 +L 1.5631,7.932199,0.8595,7.932199 +L 2.113,4.233096,2.5406,4.336199 +L 2.5406,4.336199,2.9644,4.422305 +L 2.9644,4.422305,3.3952,4.499994 +L 3.3952,4.499994,3.0586,5.063593 +L 3.0586,5.063593,2.7329,5.271168 +L 2.7329,5.271168,2.113,5.30083 +L 3.8225,4.233096,4.3791,4.336199 +L 4.3791,4.336199,4.9503,4.422305 +L 4.9503,4.422305,5.5314,4.499994 +L 5.5314,4.499994,4.8799,5.083371 +L 4.8799,5.083371,4.0432,5.429369 +L 4.0432,5.429369,3.3952,5.834789 +L 3.3952,5.834789,4.0432,6.213328 +L 4.0432,6.213328,4.8799,6.54953 +L 4.8799,6.54953,5.5314,7.131385 +L 5.5314,7.131385,4.8799,7.73454 +L 4.8799,7.73454,4.0432,8.218952 +L 4.0432,8.218952,3.3952,9.000042 +L 5.9275,4.233096,6.3548,4.233096 +L 6.3548,4.233096,6.7852,4.233096 +L 6.7852,4.233096,7.2055,4.233096 +L 7.2055,4.233096,7.2055,4.603207 +L 7.2055,4.603207,7.2055,4.956275 +L 7.2055,4.956275,7.2055,5.30083 +L 7.2055,5.30083,6.7852,5.30083 +L 6.7852,5.30083,6.3548,5.30083 +L 6.3548,5.30083,5.9275,5.30083 +L 5.9275,5.30083,5.8434,5.567814 +L 5.8434,5.567814,5.7765,5.834789 +L 5.7765,5.834789,5.7135,6.101676 +L 5.7135,6.101676,6.2042,6.024009 +L 6.2042,6.024009,6.7012,5.937893 +L 6.7012,5.937893,7.2055,5.834789 +L 5.9275,7.932199,5.7839,8.302321 +L 5.7839,8.302321,5.654,8.655401 +L 5.654,8.655401,5.5314,9.000042 +L 6.3548,7.932199,6.9117,7.932199 +L 6.9117,7.932199,7.4861,7.932199 +L 7.4861,7.932199,8.0636,7.932199 + +[槽] 75 +L 2.1433,0,2.0593,1.60027 +L 2.0593,1.60027,1.9927,3.192156 +L 1.9927,3.192156,1.9293,4.766957 +L 1.9293,4.766957,1.5651,4.069214 +L 1.5651,4.069214,1.2082,3.354506 +L 1.2082,3.354506,0.865,2.631337 +L 4.2798,0,4.2798,0.877102 +L 4.2798,0.877102,4.2798,1.754268 +L 4.2798,1.754268,4.2798,2.631337 +L 4.2798,2.631337,5.257,2.631337 +L 5.257,2.631337,6.2409,2.631337 +L 6.2409,2.631337,7.2429,2.631337 +L 7.2429,2.631337,7.2429,1.754268 +L 7.2429,1.754268,7.2429,0.877102 +L 7.2429,0.877102,7.2429,0 +L 7.2429,0,6.2409,0 +L 6.2409,0,5.257,0 +L 5.257,0,4.2798,0 +L 4.6788,1.563604,5.3796,1.563604 +L 5.3796,1.563604,6.0871,1.563604 +L 6.0871,1.563604,6.8121,1.563604 +L 3.8522,4.233096,3.8522,4.94637 +L 3.8522,4.94637,3.8522,5.642701 +L 3.8522,5.642701,3.8522,6.33054 +L 3.8522,6.33054,4.4515,6.360189 +L 4.4515,6.360189,4.7702,6.567841 +L 4.7702,6.567841,5.1026,7.131385 +L 5.1026,7.131385,4.7558,7.694985 +L 4.7558,7.694985,4.3254,7.902549 +L 4.3254,7.902549,3.4284,7.932199 +L 4.2798,4.233096,4.553,4.336199 +L 4.553,4.336199,4.8332,4.422305 +L 4.8332,4.422305,5.1026,4.499994 +L 5.1026,4.499994,4.8332,4.766957 +L 4.8332,4.766957,4.553,5.033942 +L 4.553,5.033942,4.2798,5.30083 +L 5.5334,4.233096,5.8069,4.336199 +L 5.8069,4.336199,6.0871,4.422305 +L 6.0871,4.422305,6.3845,4.499994 +L 6.3845,4.499994,5.9537,4.956275 +L 5.9537,4.956275,5.5334,5.404032 +L 5.5334,5.404032,5.1026,5.834789 +L 5.1026,5.834789,5.5334,6.281177 +L 5.5334,6.281177,5.9537,6.710489 +L 5.9537,6.710489,6.3845,7.131385 +L 6.3845,7.131385,5.9537,7.768448 +L 5.9537,7.768448,5.5334,8.388404 +L 5.5334,8.388404,5.1026,9.000042 +L 6.8121,4.233096,7.0885,4.233096 +L 7.0885,4.233096,7.3687,4.233096 +L 7.3687,4.233096,7.6632,4.233096 +L 7.6632,4.233096,7.6632,4.603207 +L 7.6632,4.603207,7.6632,4.956275 +L 7.6632,4.956275,7.6632,5.30083 +L 7.6632,5.30083,7.0499,5.320694 +L 7.0499,5.320694,6.7175,5.45902 +L 6.7175,5.45902,6.3845,5.834789 +L 6.3845,5.834789,6.7175,6.165311 +L 6.7175,6.165311,7.0499,6.165311 +L 7.0499,6.165311,7.6632,5.834789 +L 2.9976,4.766957,2.5216,5.200495 +L 2.5216,5.200495,2.192,5.744448 +L 2.192,5.744448,1.716,6.864379 +L 1.716,6.864379,1.4215,6.864379 +L 1.4215,6.864379,1.1413,6.864379 +L 1.1413,6.864379,0.865,6.864379 +L 2.5703,6.864379,2.2691,7.29935 +L 2.2691,7.29935,2.1574,7.853208 +L 2.1574,7.853208,2.1433,9.000042 +L 6.8121,7.932199,6.6612,8.302321 +L 6.6612,8.302321,6.5144,8.655401 +L 6.5144,8.655401,6.3845,9.000042 +L 7.2429,7.932199,7.5123,7.932199 +L 7.5123,7.932199,7.796,7.932199 +L 7.796,7.932199,8.094,7.932199 + +# kan_32 ------------------------------------------------------- +# 燥荘葬藻遭霜騒憎贈促即俗賊堕妥惰駄耐怠替泰滞胎袋逮滝卓択拓沢濯託濁諾但奪棚丹嘆淡端胆鍛壇弾恥痴稚致畜 + +[燥] 21 +L 1.3515,8.999993,1.3515,4.499999 +L 1.3655,2.257324,2.2411,0.742629 +L 2.6999,7.499991,1.7998,6.600048 +L 0.0034,7.699138,0.0034,5.249984 +L 3.6946,9.000047,3.6946,7.500046 +L 3.6946,7.500046,6.2273,7.500046 +L 6.2273,7.500046,6.2273,9.000047 +L 6.2273,9.000047,3.6946,9.000047 +L 7.2041,4.500065,7.2041,6.500041 +L 7.2041,6.500041,5.4038,6.500041 +L 5.4038,6.500041,5.4038,4.500065 +L 5.4038,4.500065,7.2041,4.500065 +L 4.5037,4.500065,4.5037,6.500041 +L 4.5037,6.500041,2.6999,6.500041 +L 2.6999,6.500041,2.6999,4.500065 +L 2.6999,4.500065,4.5037,4.500065 +L 2.6999,3.000052,7.2041,3.000052 +L 4.9524,4.000057,4.9524,0.000033 +L 2.6999,0.000033,4.9524,2.500045 +L 4.9524,2.500045,7.2041,0.000033 +A -6.8232,4.499999,8.175136,326.60209,0 + +[荘] 42 +L 1.7107,0,1.6267,0.903955 +L 1.6267,0.903955,1.5605,1.790995 +L 1.5605,1.790995,1.501,2.669492 +L 1.501,2.669492,0.9861,2.135625 +L 0.9861,2.135625,0.4919,1.601682 +L 0.4919,1.601682,0.0019,1.067815 +L 3.4199,0,3.9702,0 +L 3.9702,0,4.5271,0 +L 4.5271,0,5.0976,0 +L 5.0976,0,5.0871,2.87716 +L 5.0871,2.87716,4.6108,4.025515 +L 4.6108,4.025515,2.9926,4.233068 +L 5.5249,0,5.9557,0 +L 5.9557,0,6.376,0 +L 6.376,0,6.8068,0 +L 1.7107,3.165259,1.7107,4.233068 +L 1.7107,4.233068,1.7107,5.300878 +L 1.7107,5.300878,1.7107,6.368634 +L 0.4324,4.500054,0.2782,4.76705 +L 0.2782,4.76705,0.135,5.033937 +L 0.135,5.033937,0.0019,5.300878 +L 5.5249,4.233068,5.2241,4.66804 +L 5.2241,4.66804,5.1155,5.221789 +L 5.1155,5.221789,5.0976,6.368634 +L 5.9557,4.233068,6.376,4.233068 +L 6.376,4.233068,6.8068,4.233068 +L 6.8068,4.233068,7.2341,4.233068 +L 0.0019,7.932194,0.8562,7.932194 +L 0.8562,7.932194,1.7107,7.932194 +L 1.7107,7.932194,2.5653,7.932194 +L 2.5653,7.932194,2.5653,8.302371 +L 2.5653,8.302371,2.5653,8.655373 +L 2.5653,8.655373,2.5653,9.000103 +L 2.9926,7.932194,3.5464,7.932194 +L 3.5464,7.932194,4.0994,7.932194 +L 4.0994,7.932194,4.6668,7.932194 +L 4.6668,7.932194,4.6668,8.302371 +L 4.6668,8.302371,4.6668,8.655373 +L 4.6668,8.655373,4.6668,9.000103 +L 5.0976,7.932194,5.802,7.932194 +L 5.802,7.932194,6.5126,7.932194 +L 6.5126,7.932194,7.2341,7.932194 + +[葬] 63 +L 0.8897,0,1.5205,0.039561 +L 1.5205,0.039561,1.9579,0.316332 +L 1.9579,0.316332,2.5673,1.067815 +L 2.5673,1.067815,2.1856,1.443563 +L 2.1856,1.443563,1.531,1.58191 +L 1.531,1.58191,0.0351,1.601682 +L 4.7038,0,4.147,1.583349 +L 4.147,1.583349,3.1211,1.785336 +L 3.1211,1.785336,2.5673,3.165259 +L 5.1245,1.601682,4.5392,3.04102 +L 4.5392,3.04102,4.3116,4.853145 +L 4.3116,4.853145,4.2734,6.368634 +L 4.2734,6.368634,3.2748,6.368634 +L 3.2748,6.368634,2.2942,6.368634 +L 2.2942,6.368634,1.3135,6.368634 +L 1.3135,6.368634,1.3135,6.024069 +L 1.3135,6.024069,1.3135,5.670968 +L 1.3135,5.670968,1.3135,5.300878 +L 1.3135,5.300878,1.7198,5.223222 +L 1.7198,5.223222,2.14,5.137019 +L 2.14,5.137019,2.5673,5.033937 +L 2.5673,5.033937,1.7131,4.259873 +L 1.7131,4.259873,0.8652,3.468998 +L 0.8652,3.468998,0.0351,2.669492 +L 5.5549,1.601682,6.1052,1.601682 +L 6.1052,1.601682,6.6652,1.601682 +L 6.6652,1.601682,7.2361,1.601682 +L 5.1245,3.699196,5.832,3.699196 +L 5.832,3.699196,6.5356,3.699196 +L 6.5356,3.699196,7.2361,3.699196 +L 7.2361,3.699196,7.2361,4.069285 +L 7.2361,4.069285,7.2361,4.422387 +L 7.2361,4.422387,7.2361,4.76705 +L 0.0351,4.233068,0.3118,4.603136 +L 0.3118,4.603136,0.592,4.956248 +L 0.592,4.956248,0.8897,5.300878 +L 4.7038,4.76705,5.2537,4.956248 +L 5.2537,4.956248,5.8106,5.137019 +L 5.8106,5.137019,6.3815,5.300878 +L 0.0351,6.368634,0.3118,6.368634 +L 0.3118,6.368634,0.592,6.368634 +L 0.592,6.368634,0.8897,6.368634 +L 4.7038,6.368634,4.4692,7.655412 +L 4.4692,7.655412,3.8601,7.967514 +L 3.8601,7.967514,2.9946,7.932194 +L 2.9946,7.932194,2.844,7.588975 +L 2.844,7.588975,2.6969,7.245779 +L 2.6969,7.245779,2.5673,6.90256 +L 5.1245,6.368634,5.832,6.368634 +L 5.832,6.368634,6.5356,6.368634 +L 6.5356,6.368634,7.2361,6.368634 +L 0.0351,7.932194,0.7356,7.932194 +L 0.7356,7.932194,1.4361,7.932194 +L 1.4361,7.932194,2.14,7.932194 +L 2.14,7.932194,2.27,8.302371 +L 2.27,8.302371,2.4167,8.655373 +L 2.4167,8.655373,2.5673,9.000103 +L 5.1245,7.932194,4.977,8.302371 +L 4.977,8.302371,4.8334,8.655373 +L 4.8334,8.655373,4.7038,9.000103 +L 5.5549,7.932194,6.1052,7.932194 +L 6.1052,7.932194,6.6652,7.932194 +L 6.6652,7.932194,7.2361,7.932194 + +[藻] 69 +L 0.0616,0.26698,0.4714,1.411017 +L 0.4714,1.411017,0.892,2.55506 +L 0.892,2.55506,1.3155,3.699196 +L 4.6992,0,4.6218,0.533943 +L 4.6218,0.533943,4.5486,1.067815 +L 4.5486,1.067815,4.4887,1.601682 +L 4.4887,1.601682,3.4274,0.850291 +L 3.4274,0.850291,2.8254,0.573505 +L 2.8254,0.573505,2.1736,0.533943 +L 6.4084,0.533943,5.9846,0.990171 +L 5.9846,0.990171,5.5569,1.437899 +L 5.5569,1.437899,5.1296,1.868645 +L 5.1296,1.868645,5.8301,1.971847 +L 5.8301,1.971847,6.5376,2.057882 +L 6.5376,2.057882,7.2626,2.135625 +L 2.1736,2.135625,2.8741,2.135625 +L 2.8741,2.135625,3.5816,2.135625 +L 3.5816,2.135625,4.3066,2.135625 +L 2.5974,3.165259,2.5974,3.535336 +L 2.5974,3.535336,2.5974,3.888427 +L 2.5974,3.888427,2.5974,4.233068 +L 2.5974,4.233068,3.0247,4.233068 +L 3.0247,4.233068,3.452,4.233068 +L 3.452,4.233068,3.8796,4.233068 +L 3.8796,4.233068,3.8796,3.888427 +L 3.8796,3.888427,3.8796,3.535336 +L 3.8796,3.535336,3.8796,3.165259 +L 3.8796,3.165259,3.452,3.165259 +L 3.452,3.165259,3.0247,3.165259 +L 3.0247,3.165259,2.5974,3.165259 +L 5.5569,3.165259,5.5569,3.535336 +L 5.5569,3.535336,5.5569,3.888427 +L 5.5569,3.888427,5.5569,4.233068 +L 5.5569,4.233068,5.9846,4.233068 +L 5.9846,4.233068,6.4084,4.233068 +L 6.4084,4.233068,6.8388,4.233068 +L 6.8388,4.233068,6.8388,3.888427 +L 6.8388,3.888427,6.8388,3.535336 +L 6.8388,3.535336,6.8388,3.165259 +L 6.8388,3.165259,6.4084,3.165259 +L 6.4084,3.165259,5.9846,3.165259 +L 5.9846,3.165259,5.5569,3.165259 +L 3.452,5.300878,3.452,5.670968 +L 3.452,5.670968,3.452,6.024069 +L 3.452,6.024069,3.452,6.368634 +L 3.452,6.368634,4.2859,6.368634 +L 4.2859,6.368634,5.1296,6.368634 +L 5.1296,6.368634,5.9846,6.368634 +L 5.9846,6.368634,5.9846,6.024069 +L 5.9846,6.024069,5.9846,5.670968 +L 5.9846,5.670968,5.9846,5.300878 +L 5.9846,5.300878,5.1296,5.300878 +L 5.1296,5.300878,4.2859,5.300878 +L 4.2859,5.300878,3.452,5.300878 +L 0.0616,7.932194,0.8987,7.932194 +L 0.8987,7.932194,1.7431,7.932194 +L 1.7431,7.932194,2.5974,7.932194 +L 2.5974,7.932194,2.5974,8.302371 +L 2.5974,8.302371,2.5974,8.655373 +L 2.5974,8.655373,2.5974,9.000103 +L 3.0247,7.932194,3.5749,7.932194 +L 3.5749,7.932194,4.1279,7.932194 +L 4.1279,7.932194,4.6992,7.932194 +L 4.6992,7.932194,4.6992,8.302371 +L 4.6992,8.302371,4.6992,8.655373 +L 4.6992,8.655373,4.6992,9.000103 +L 5.1296,7.932194,5.8301,7.932194 +L 5.8301,7.932194,6.5376,7.932194 +L 6.5376,7.932194,7.2626,7.932194 + +[遭] 67 +L 3.447,1.601682,3.447,2.314956 +L 3.447,2.314956,3.447,3.01137 +L 3.447,3.01137,3.447,3.699196 +L 3.447,3.699196,4.3054,3.699196 +L 4.3054,3.699196,5.1565,3.699196 +L 5.1565,3.699196,6.0146,3.699196 +L 6.0146,3.699196,6.0146,3.01137 +L 6.0146,3.01137,6.0146,2.314956 +L 6.0146,2.314956,6.0146,1.601682 +L 6.0146,1.601682,5.1565,1.601682 +L 5.1565,1.601682,4.3054,1.601682 +L 4.3054,1.601682,3.447,1.601682 +L 3.8781,2.669492,4.4382,2.669492 +L 4.4382,2.669492,5.0056,2.669492 +L 5.0056,2.669492,5.587,2.669492 +L 2.6309,4.76705,2.6309,5.490109 +L 2.6309,5.490109,2.6309,6.204829 +L 2.6309,6.204829,2.6309,6.90256 +L 2.6309,6.90256,3.2232,6.922448 +L 3.2232,6.922448,3.5485,7.060773 +L 3.5485,7.060773,3.8781,7.436444 +L 3.8781,7.436444,3.531,7.785299 +L 3.531,7.785299,3.0967,7.913927 +L 3.0967,7.913927,2.2004,7.932194 +L 3.0547,4.76705,3.3317,4.870132 +L 3.3317,4.870132,3.6049,4.956248 +L 3.6049,4.956248,3.8781,5.033937 +L 3.8781,5.033937,3.6049,5.300878 +L 3.6049,5.300878,3.3317,5.567875 +L 3.3317,5.567875,3.0547,5.834761 +L 4.3054,4.76705,4.7359,4.870132 +L 4.7359,4.870132,5.1565,4.956248 +L 5.1565,4.956248,5.587,5.033937 +L 5.587,5.033937,5.0476,5.617226 +L 5.0476,5.617226,4.4175,5.96329 +L 4.4175,5.96329,3.8781,6.368634 +L 3.8781,6.368634,4.4175,6.764137 +L 4.4175,6.764137,5.0476,7.041017 +L 5.0476,7.041017,5.587,7.436444 +L 5.587,7.436444,5.0476,7.824844 +L 5.0476,7.824844,4.4175,8.230263 +L 4.4175,8.230263,3.8781,9.000103 +L 6.0146,4.76705,6.2878,4.76705 +L 6.2878,4.76705,6.5715,4.76705 +L 6.5715,4.76705,6.8657,4.76705 +L 6.8657,4.76705,6.8657,5.137019 +L 6.8657,5.137019,6.8657,5.490109 +L 6.8657,5.490109,6.8657,5.834761 +L 6.8657,5.834761,6.2524,5.854627 +L 6.2524,5.854627,5.9197,5.992974 +L 5.9197,5.992974,5.587,6.368634 +L 5.587,6.368634,5.9197,6.724592 +L 5.9197,6.724592,6.2524,6.724592 +L 6.2524,6.724592,6.8657,6.368634 +L 0.7676,8.122935,0.4909,8.466154 +L 6.0146,7.932194,5.864,8.302371 +L 5.864,8.302371,5.7166,8.655373 +L 5.7166,8.655373,5.587,9.000103 +L 6.4419,7.932194,6.7151,7.932194 +L 6.7151,7.932194,6.9914,7.932194 +L 6.9914,7.932194,7.2615,7.932194 +L 5.1492,-0.015186,7.279,-0.015186 +L 1.3315,1.05247,0.2807,0 +L 0.0811,4.751716,1.3315,4.751716 +L 1.3315,1.05247,1.3315,4.751716 +L 0.5088,8.48915,1.3315,7.421252 +A 5.1492,7.347831,7.362973,238.75988,270 + +[霜] 63 +L 1.3794,0,1.295,0.723169 +L 1.295,0.723169,1.2249,1.437899 +L 1.2249,1.437899,1.1657,2.135625 +L 1.1657,2.135625,0.7976,1.790995 +L 0.7976,1.790995,0.4404,1.437899 +L 0.4404,1.437899,0.094,1.067815 +L 3.9043,0,3.9043,1.247141 +L 3.9043,1.247141,3.9043,2.477399 +L 3.9043,2.477399,3.9043,3.699196 +L 3.9043,3.699196,4.7449,3.699196 +L 4.7449,3.699196,5.5855,3.699196 +L 5.5855,3.699196,6.4404,3.699196 +L 6.4404,3.699196,6.4404,2.477399 +L 6.4404,2.477399,6.4404,1.247141 +L 6.4404,1.247141,6.4404,0 +L 6.4404,0,5.5855,0 +L 5.5855,0,4.7449,0 +L 4.7449,0,3.9043,0 +L 2.6294,1.601682,1.7012,2.549407 +L 1.7012,2.549407,1.0466,2.954827 +L 1.0466,2.954827,0.094,3.165259 +L 4.3354,1.601682,4.885,1.601682 +L 4.885,1.601682,5.4454,1.601682 +L 5.4454,1.601682,6.0166,1.601682 +L 4.3354,2.669492,4.885,2.669492 +L 4.885,2.669492,5.4454,2.669492 +L 5.4454,2.669492,6.0166,2.669492 +L 1.7751,3.165259,1.6277,3.535336 +L 1.6277,3.535336,1.5019,3.888427 +L 1.5019,3.888427,1.3794,4.233068 +L 0.9482,5.300878,1.5019,5.300878 +L 1.5019,5.300878,2.055,5.300878 +L 2.055,5.300878,2.6294,5.300878 +L 3.4843,5.300878,3.0112,7.312206 +L 3.0112,7.312206,1.7888,7.611643 +L 1.7888,7.611643,0.094,7.436444 +L 0.094,7.436444,0.094,6.90256 +L 0.094,6.90256,0.094,6.368634 +L 0.094,6.368634,0.094,5.834761 +L 4.3354,5.300878,4.885,5.300878 +L 4.885,5.300878,5.4454,5.300878 +L 5.4454,5.300878,6.0166,5.300878 +L 6.8674,5.834761,6.8674,6.368634 +L 6.8674,6.368634,6.8674,6.90256 +L 6.8674,6.90256,6.8674,7.436444 +L 6.8674,7.436444,5.8692,7.436444 +L 5.8692,7.436444,4.885,7.436444 +L 4.885,7.436444,3.9043,7.436444 +L 3.9043,7.436444,3.7575,7.701974 +L 3.7575,7.701974,3.6136,7.959152 +L 3.6136,7.959152,3.4843,8.199169 +L 3.4843,8.199169,2.4858,8.302371 +L 2.4858,8.302371,1.5019,8.388486 +L 1.5019,8.388486,0.5209,8.466154 +L 0.9482,6.368634,1.5019,6.368634 +L 1.5019,6.368634,2.055,6.368634 +L 2.055,6.368634,2.6294,6.368634 +L 4.3354,6.368634,4.885,6.368634 +L 4.885,6.368634,5.4454,6.368634 +L 5.4454,6.368634,6.0166,6.368634 +L 3.9043,8.466154,4.7449,8.466154 +L 4.7449,8.466154,5.5855,8.466154 +L 5.5855,8.466154,6.4404,8.466154 + +[騒] 69 +L 1.3775,0,2.7435,0.594722 +L 2.7435,0.594722,3.1042,2.011332 +L 3.1042,2.011332,3.0867,3.699196 +L 3.0867,3.699196,2.2321,3.699196 +L 2.2321,3.699196,1.3775,3.699196 +L 1.3775,3.699196,0.5229,3.699196 +L 0.5229,3.699196,0.5229,5.299444 +L 0.5229,5.299444,0.5229,6.891352 +L 0.5229,6.891352,0.5229,8.466154 +L 0.5229,8.466154,1.3775,8.466154 +L 1.3775,8.466154,2.2321,8.466154 +L 2.2321,8.466154,3.0867,8.466154 +L 3.5105,0,4.0639,0 +L 4.0639,0,4.6176,0 +L 4.6176,0,5.1882,0 +L 5.1882,0,5.1076,1.418033 +L 5.1076,1.418033,4.7539,2.014178 +L 4.7539,2.014178,3.9417,2.135625 +L 3.9417,2.135625,3.9417,2.668053 +L 3.9417,2.668053,3.9417,3.192118 +L 3.9417,3.192118,3.9417,3.699196 +L 3.9417,3.699196,4.5332,3.738741 +L 4.5332,3.738741,4.8589,4.015621 +L 4.8589,4.015621,5.1882,4.76705 +L 5.6193,0,6.0778,0.434994 +L 6.0778,0.434994,6.2988,0.988709 +L 6.2988,0.988709,6.4736,2.135625 +L 6.4736,2.135625,5.854,2.165309 +L 5.854,2.165309,5.5244,2.372862 +L 5.5244,2.372862,5.1882,2.936395 +L 5.1882,2.936395,5.5244,3.473146 +L 5.5244,3.473146,5.854,3.670903 +L 5.854,3.670903,6.4736,3.699196 +L 6.4736,3.699196,6.4736,3.356011 +L 6.4736,3.356011,6.4736,3.012694 +L 6.4736,3.012694,6.4736,2.669492 +L 0.1271,1.067815,0.1271,1.601682 +L 0.1271,1.601682,0.1271,2.135625 +L 0.1271,2.135625,0.1271,2.669492 +L 0.9467,1.601682,0.9467,1.971847 +L 0.9467,1.971847,0.9467,2.324862 +L 0.9467,2.324862,0.9467,2.669492 +L 1.8052,1.601682,1.8052,1.971847 +L 1.8052,1.971847,1.8052,2.324862 +L 1.8052,2.324862,1.8052,2.669492 +L 1.8052,4.500054,1.5071,4.76705 +L 1.5071,4.76705,1.2234,5.033937 +L 1.2234,5.033937,0.9467,5.300878 +L 2.2321,5.300878,1.8052,5.834761 +L 1.8052,5.834761,1.3775,6.368634 +L 1.3775,6.368634,0.9467,6.90256 +L 4.1238,5.300878,4.467,5.670968 +L 4.467,5.670968,4.8239,6.024069 +L 4.8239,6.024069,5.1882,6.368634 +L 5.1882,6.368634,4.894,6.978804 +L 4.894,6.978804,4.6103,7.588975 +L 4.6103,7.588975,4.3371,8.199169 +L 4.3371,8.199169,5.0376,8.199169 +L 5.0376,8.199169,5.7486,8.199169 +L 5.7486,8.199169,6.4736,8.199169 +L 6.4736,8.199169,6.1762,7.692112 +L 6.1762,7.692112,5.8957,7.168102 +L 5.8957,7.168102,5.6193,6.635674 +L 5.6193,6.635674,6.1762,6.204829 +L 6.1762,6.204829,6.7468,5.757106 +L 6.7468,5.757106,7.3247,5.300878 +L 2.2321,6.90256,2.0815,7.245779 +L 2.0815,7.245779,1.9348,7.588975 +L 1.9348,7.588975,1.8052,7.932194 + +[憎] 57 +L 1.4114,0,1.4114,3.01137 +L 1.4114,3.01137,1.4114,6.014175 +L 1.4114,6.014175,1.4114,9.000103 +L 3.5164,0,3.5164,1.066387 +L 3.5164,1.066387,3.5164,2.124292 +L 3.5164,2.124292,3.5164,3.165259 +L 3.5164,3.165259,4.497,3.165259 +L 4.497,3.165259,5.4949,3.165259 +L 5.4949,3.165259,6.5004,3.165259 +L 6.5004,3.165259,6.5004,2.124292 +L 6.5004,2.124292,6.5004,1.066387 +L 6.5004,1.066387,6.5004,0 +L 6.5004,0,5.4949,0 +L 5.4949,0,4.497,0 +L 4.497,0,3.5164,0 +L 3.9363,1.601682,4.6438,1.601682 +L 4.6438,1.601682,5.3513,1.601682 +L 5.3513,1.601682,6.0766,1.601682 +L 0.126,5.033937,0.4272,5.656783 +L 0.4272,5.656783,0.5354,6.279727 +L 0.5354,6.279727,0.5529,7.436444 +L 3.0852,4.76705,3.0852,5.670968 +L 3.0852,5.670968,3.0852,6.55793 +L 3.0852,6.55793,3.0852,7.436444 +L 3.0852,7.436444,3.3622,7.436444 +L 3.3622,7.436444,3.6421,7.436444 +L 3.6421,7.436444,3.9363,7.436444 +L 3.9363,7.436444,3.9223,8.180836 +L 3.9223,8.180836,3.8106,8.586145 +L 3.8106,8.586145,3.5164,9.000103 +L 3.5164,4.76705,3.9363,4.76705 +L 3.9363,4.76705,4.3675,4.76705 +L 4.3675,4.76705,4.7944,4.76705 +L 4.7944,4.76705,4.6438,5.961868 +L 4.6438,5.961868,4.2133,6.343197 +L 4.2133,6.343197,3.5164,6.368634 +L 5.2217,4.76705,5.7719,4.76705 +L 5.7719,4.76705,6.3288,4.76705 +L 6.3288,4.76705,6.8994,4.76705 +L 6.8994,4.76705,6.8994,5.300878 +L 6.8994,5.300878,6.8994,5.834761 +L 6.8994,5.834761,6.8994,6.368634 +L 6.8994,6.368634,6.3288,6.368634 +L 6.3288,6.368634,5.7719,6.368634 +L 5.7719,6.368634,5.2217,6.368634 +L 5.2217,6.368634,4.924,6.738701 +L 4.924,6.738701,4.6438,7.091803 +L 4.6438,7.091803,4.3675,7.436444 +L 2.2621,6.635674,2.1115,6.90256 +L 2.1115,6.90256,1.9644,7.169557 +L 1.9644,7.169557,1.8352,7.436444 +L 6.8994,7.169557,6.3288,7.272649 +L 6.3288,7.272649,5.7719,7.358744 +L 5.7719,7.358744,5.2217,7.436444 +L 5.6455,7.932194,5.7751,8.302371 +L 5.7751,8.302371,5.926,8.655373 +L 5.926,8.655373,6.0766,9.000103 + +[贈] 69 +L 0.1592,0,0.4323,0.370083 +L 0.4323,0.370083,0.7129,0.723169 +L 0.7129,0.723169,1.0103,1.067815 +L 3.9733,0,3.9733,1.066387 +L 3.9733,1.066387,3.9733,2.124292 +L 3.9733,2.124292,3.9733,3.165259 +L 3.9733,3.165259,4.8034,3.165259 +L 4.8034,3.165259,5.6475,3.165259 +L 5.6475,3.165259,6.5056,3.165259 +L 6.5056,3.165259,6.5056,2.124292 +L 6.5056,2.124292,6.5056,1.066387 +L 6.5056,1.066387,6.5056,0 +L 6.5056,0,5.6475,0 +L 5.6475,0,4.8034,0 +L 4.8034,0,3.9733,0 +L 4.3936,1.601682,4.947,1.601682 +L 4.947,1.601682,5.5039,1.601682 +L 5.5039,1.601682,6.0751,1.601682 +L 0.583,2.135625,0.583,4.259873 +L 0.583,4.259873,0.583,6.367265 +L 0.583,6.367265,0.583,8.466154 +L 0.583,8.466154,1.1328,8.466154 +L 1.1328,8.466154,1.6897,8.466154 +L 1.6897,8.466154,2.2641,8.466154 +L 2.2641,8.466154,2.2641,6.367265 +L 2.2641,6.367265,2.2641,4.259873 +L 2.2641,4.259873,2.2641,2.135625 +L 2.2641,2.135625,1.6897,2.135625 +L 1.6897,2.135625,1.1328,2.135625 +L 1.1328,2.135625,0.583,2.135625 +L 1.0103,4.233068,1.2834,4.233068 +L 1.2834,4.233068,1.5636,4.233068 +L 1.5636,4.233068,1.8337,4.233068 +L 3.5425,4.76705,3.5425,5.670968 +L 3.5425,5.670968,3.5425,6.55793 +L 3.5425,6.55793,3.5425,7.436444 +L 3.5425,7.436444,3.8196,7.436444 +L 3.8196,7.436444,4.0994,7.436444 +L 4.0994,7.436444,4.3936,7.436444 +L 4.3936,7.436444,4.3796,8.180836 +L 4.3796,8.180836,4.271,8.586145 +L 4.271,8.586145,3.9733,9.000103 +L 3.9733,4.76705,4.3765,4.76705 +L 4.3765,4.76705,4.7964,4.76705 +L 4.7964,4.76705,5.2202,4.76705 +L 5.2202,4.76705,5.2065,5.538115 +L 5.2065,5.538115,5.105,5.953418 +L 5.105,5.953418,4.8244,6.368634 +L 4.8244,6.368634,4.5302,6.368634 +L 4.5302,6.368634,4.2434,6.368634 +L 4.2434,6.368634,3.9733,6.368634 +L 5.6475,4.76705,6.0751,4.76705 +L 6.0751,4.76705,6.5056,4.76705 +L 6.5056,4.76705,6.9294,4.76705 +L 6.9294,4.76705,6.9294,5.300878 +L 6.9294,5.300878,6.9294,5.834761 +L 6.9294,5.834761,6.9294,6.368634 +L 6.9294,6.368634,5.9977,6.40819 +L 5.9977,6.40819,5.4482,6.685037 +L 5.4482,6.685037,4.8244,7.436444 +L 1.0103,6.368634,1.2834,6.368634 +L 1.2834,6.368634,1.5636,6.368634 +L 1.5636,6.368634,1.8337,6.368634 +L 6.9294,7.169557,6.5056,7.272649 +L 6.5056,7.272649,6.0751,7.358744 +L 6.0751,7.358744,5.6475,7.436444 +L 6.0751,7.932194,6.2082,8.302371 +L 6.2082,8.302371,6.3515,8.655373 +L 6.3515,8.655373,6.5056,9.000103 + +[促] 39 +L 1.0123,0,0.9282,1.944873 +L 0.9282,1.944873,0.862,3.889883 +L 0.862,3.889883,0.7986,5.834761 +L 0.7986,5.834761,0.585,5.670968 +L 0.585,5.670968,0.3682,5.490109 +L 0.3682,5.490109,0.1577,5.300878 +L 1.8672,0,2.7109,1.47034 +L 2.7109,1.47034,3.072,2.635617 +L 3.072,2.635617,3.1421,4.233068 +L 5.2537,0,4.6828,0.533943 +L 4.6828,0.533943,4.1228,1.067815 +L 4.1228,1.067815,3.5725,1.601682 +L 5.6775,0,6.2379,0 +L 6.2379,0,6.8092,0 +L 6.8092,0,7.3867,0 +L 4.8229,1.067815,4.8229,2.668053 +L 4.8229,2.668053,4.8229,4.259873 +L 4.8229,4.259873,4.8229,5.834761 +L 4.8229,5.834761,4.2559,5.834761 +L 4.2559,5.834761,3.6951,5.834761 +L 3.6951,5.834761,3.1421,5.834761 +L 3.1421,5.834761,3.1421,6.711819 +L 3.1421,6.711819,3.1421,7.588975 +L 3.1421,7.588975,3.1421,8.466154 +L 3.1421,8.466154,4.2765,8.466154 +L 4.2765,8.466154,5.4043,8.466154 +L 5.4043,8.466154,6.5325,8.466154 +L 6.5325,8.466154,6.5325,7.588975 +L 6.5325,7.588975,6.5325,6.711819 +L 6.5325,6.711819,6.5325,5.834761 +L 6.5325,5.834761,6.1052,5.834761 +L 6.1052,5.834761,5.6775,5.834761 +L 5.6775,5.834761,5.2537,5.834761 +L 5.2537,3.165259,5.8071,3.165259 +L 5.8071,3.165259,6.3815,3.165259 +L 6.3815,3.165259,6.9629,3.165259 +L 1.0123,6.635674,1.2854,7.435087 +L 1.2854,7.435087,1.573,8.226038 +L 1.573,8.226038,1.8672,9.000103 + +[即] 36 +L 4.8564,0,4.8564,2.82204 +L 4.8564,2.82204,4.8564,5.644108 +L 4.8564,5.644108,4.8564,8.466154 +L 4.8564,8.466154,5.5573,8.466154 +L 5.5573,8.466154,6.2574,8.466154 +L 6.2574,8.466154,6.9614,8.466154 +L 6.9614,8.466154,6.9614,6.177958 +L 6.9614,6.177958,6.9614,3.889883 +L 6.9614,3.889883,6.9614,1.601682 +L 6.9614,1.601682,6.6847,1.601682 +L 6.6847,1.601682,6.415,1.601682 +L 6.415,1.601682,6.1348,1.601682 +L 0.6153,1.067815,0.6153,3.54522 +L 0.6153,3.54522,0.6153,6.014175 +L 0.6153,6.014175,0.6153,8.466154 +L 0.6153,8.466154,1.4454,8.466154 +L 1.4454,8.466154,2.2965,8.466154 +L 2.2965,8.466154,3.1476,8.466154 +L 3.1476,8.466154,3.1476,7.055136 +L 3.1476,7.055136,3.1476,5.644108 +L 3.1476,5.644108,3.1476,4.233068 +L 3.1476,4.233068,2.4436,4.233068 +L 2.4436,4.233068,1.7428,4.233068 +L 1.7428,4.233068,1.0426,4.233068 +L 1.0426,1.067815,1.7428,1.524021 +L 1.7428,1.524021,2.4436,1.971847 +L 2.4436,1.971847,3.1476,2.402622 +L 3.1476,2.402622,2.9966,2.668053 +L 2.9966,2.668053,2.8495,2.92522 +L 2.8495,2.92522,2.7164,3.165259 +L 3.5749,1.067815,3.5749,1.437899 +L 3.5749,1.437899,3.5749,1.790995 +L 3.5749,1.790995,3.5749,2.135625 +L 1.0426,6.368634,1.5925,6.368634 +L 1.5925,6.368634,2.1455,6.368634 +L 2.1455,6.368634,2.7164,6.368634 + +[俗] 36 +L 1.0446,0,0.9606,1.944873 +L 0.9606,1.944873,0.8902,3.889883 +L 0.8902,3.889883,0.8306,5.834761 +L 0.8306,5.834761,0.6135,5.670968 +L 0.6135,5.670968,0.4103,5.490109 +L 0.4103,5.490109,0.2177,5.300878 +L 3.6046,0,3.5871,2.62292 +L 3.5871,2.62292,3.4785,3.72043 +L 3.4785,3.72043,3.1738,4.233068 +L 3.1738,4.233068,2.8796,4.069285 +L 2.8796,4.069285,2.5997,3.888427 +L 2.5997,3.888427,2.323,3.699196 +L 4.0319,0,4.7324,0 +L 4.7324,0,5.4332,0 +L 5.4332,0,6.1368,0 +L 6.1368,0,6.1368,1.247141 +L 6.1368,1.247141,6.1368,2.477399 +L 6.1368,2.477399,6.1368,3.699196 +L 6.1368,3.699196,5.4332,3.699196 +L 5.4332,3.699196,4.7324,3.699196 +L 4.7324,3.699196,4.0319,3.699196 +L 6.9918,3.699196,6.2703,4.603136 +L 6.2703,4.603136,5.5558,5.490109 +L 5.5558,5.490109,4.8549,6.368634 +L 4.8549,6.368634,4.428,5.834761 +L 4.428,5.834761,4.0144,5.300878 +L 4.0144,5.300878,3.6046,4.76705 +L 1.0446,6.635674,1.3175,7.435087 +L 1.3175,7.435087,1.5977,8.226038 +L 1.5977,8.226038,1.8957,9.000103 +L 2.7535,6.368634,3.1738,7.082017 +L 3.1738,7.082017,3.6046,7.778316 +L 3.6046,7.778316,4.0319,8.466154 +L 6.9918,6.368634,6.5641,7.082017 +L 6.5641,7.082017,6.1368,7.778316 +L 6.1368,7.778316,5.7095,8.466154 + +[賊] 51 +L 0.2165,0,0.4932,0.370083 +L 0.4932,0.370083,0.7731,0.723169 +L 0.7731,0.723169,1.0708,1.067815 +L 4.2444,0,4.885,0.637063 +L 4.885,0.637063,5.5259,1.257036 +L 5.5259,1.257036,6.1672,1.868645 +L 6.1672,1.868645,5.5469,4.631363 +L 5.5469,4.631363,5.4313,6.326287 +L 5.4313,6.326287,3.2111,6.90256 +L 7.0215,0,6.7276,0.370083 +L 6.7276,0.370083,6.4436,0.723169 +L 6.4436,0.723169,6.1672,1.067815 +L 7.4176,0,7.4176,0.533943 +L 7.4176,0.533943,7.4176,1.067815 +L 7.4176,1.067815,7.4176,1.601682 +L 4.0339,1.601682,4.0339,2.314956 +L 4.0339,2.314956,4.0339,3.01137 +L 4.0339,3.01137,4.0339,3.699196 +L 4.0339,3.699196,3.7575,3.888427 +L 3.7575,3.888427,3.4805,4.069285 +L 3.4805,4.069285,3.2111,4.233068 +L 0.647,2.135625,0.647,4.259873 +L 0.647,4.259873,0.647,6.367265 +L 0.647,6.367265,0.647,8.466154 +L 0.647,8.466154,1.2042,8.466154 +L 1.2042,8.466154,1.7751,8.466154 +L 1.7751,8.466154,2.3527,8.466154 +L 2.3527,8.466154,2.3527,6.367265 +L 2.3527,6.367265,2.3527,4.259873 +L 2.3527,4.259873,2.3527,2.135625 +L 2.3527,2.135625,1.7751,2.135625 +L 1.7751,2.135625,1.2042,2.135625 +L 1.2042,2.135625,0.647,2.135625 +L 6.5945,2.936395,6.7276,3.546664 +L 6.7276,3.546664,6.8712,4.156824 +L 6.8712,4.156824,7.0215,4.76705 +L 1.0708,4.233068,1.3478,4.233068 +L 1.3478,4.233068,1.6315,4.233068 +L 1.6315,4.233068,1.9219,4.233068 +L 4.4577,4.233068,4.1568,4.648273 +L 4.1568,4.648273,4.0514,5.063664 +L 4.0514,5.063664,4.0339,5.834761 +L 1.0708,6.368634,1.3478,6.368634 +L 1.3478,6.368634,1.6315,6.368634 +L 1.6315,6.368634,1.9219,6.368634 +L 6.1672,6.90256,5.8656,7.336186 +L 5.8656,7.336186,5.7574,7.880029 +L 5.7574,7.880029,5.7434,9.000103 +L 6.5945,6.90256,6.8673,6.90256 +L 6.8673,6.90256,7.1475,6.90256 +L 7.1475,6.90256,7.4176,6.90256 + +[堕] 54 +L 0.2501,0,1.381,0 +L 1.381,0,2.5056,0 +L 2.5056,0,3.6369,0 +L 3.6369,0,3.2307,1.483124 +L 3.2307,1.483124,2.2605,1.720333 +L 2.2605,1.720333,1.1047,1.601682 +L 4.0607,0,5.0376,0 +L 5.0376,0,6.0256,0 +L 6.0256,0,7.02,0 +L 4.0607,1.601682,3.8712,2.481635 +L 3.8712,2.481635,3.9658,3.886983 +L 3.9658,3.886983,4.0607,6.368634 +L 4.0607,6.368634,3.7452,6.724592 +L 3.7452,6.724592,3.5245,6.724592 +L 3.5245,6.724592,3.2061,6.368634 +L 4.4912,1.601682,5.0376,1.601682 +L 5.0376,1.601682,5.5983,1.601682 +L 5.5983,1.601682,6.1657,1.601682 +L 0.6774,3.165259,0.6774,4.946354 +L 0.6774,4.946354,0.6774,6.710473 +L 0.6774,6.710473,0.6774,8.466154 +L 0.6774,8.466154,1.2237,8.388486 +L 1.2237,8.388486,1.7838,8.302371 +L 1.7838,8.302371,2.355,8.199169 +L 2.355,8.199169,2.0815,7.778316 +L 2.0815,7.778316,1.8048,7.348992 +L 1.8048,7.348992,1.5285,6.90256 +L 1.5285,6.90256,2.1095,6.111619 +L 2.1095,6.111619,2.3232,5.558002 +L 2.3232,5.558002,2.355,4.76705 +L 2.355,4.76705,2.0815,4.603136 +L 2.0815,4.603136,1.8048,4.422387 +L 1.8048,4.422387,1.5285,4.233068 +L 5.7419,3.165259,6.0183,3.165259 +L 6.0183,3.165259,6.2984,3.165259 +L 6.2984,3.165259,6.5962,3.165259 +L 6.5962,3.165259,6.5962,3.699196 +L 6.5962,3.699196,6.5962,4.233068 +L 6.5962,4.233068,6.5962,4.76705 +L 6.5962,4.76705,5.8957,4.76705 +L 5.8957,4.76705,5.192,4.76705 +L 5.192,4.76705,4.4912,4.76705 +L 6.5962,5.567875,5.8957,5.670968 +L 5.8957,5.670968,5.192,5.757106 +L 5.192,5.757106,4.4912,5.834761 +L 6.5962,6.635674,4.9714,7.039572 +L 4.9714,7.039572,4.0012,7.553633 +L 4.0012,7.553633,3.2061,7.932194 +L 4.4912,8.199169,4.6208,8.466154 +L 4.6208,8.466154,4.7647,8.733106 +L 4.7647,8.733106,4.915,9.000103 +L 4.915,7.932194,5.6158,7.932194 +L 5.6158,7.932194,6.316,7.932194 +L 6.316,7.932194,7.02,7.932194 + +[妥] 42 +L 1.1032,0,2.3532,0.039561 +L 2.3532,0.039561,3.1311,0.316332 +L 3.1311,0.316332,4.0939,1.067815 +L 4.0939,1.067815,3.4568,1.829122 +L 3.4568,1.829122,3.0187,2.175187 +L 3.0187,2.175187,2.3847,2.402622 +L 2.3847,2.402622,2.5143,2.745813 +L 2.5143,2.745813,2.6618,3.089036 +L 2.6618,3.089036,2.812,3.432233 +L 2.812,3.432233,1.9609,3.535336 +L 1.9609,3.535336,1.1133,3.621442 +L 1.1133,3.621442,0.2797,3.699196 +L 6.6265,0,5.905,0.456189 +L 5.905,0.456189,5.194,0.903955 +L 5.194,0.903955,4.4897,1.334795 +L 4.4897,1.334795,5.0925,2.312187 +L 5.0925,2.312187,5.3131,2.92522 +L 5.3131,2.92522,5.3443,3.699196 +L 5.3443,3.699196,4.6441,3.699196 +L 4.6441,3.699196,3.9433,3.699196 +L 3.9433,3.699196,3.2393,3.699196 +L 3.2393,3.699196,3.2393,4.233068 +L 3.2393,4.233068,3.2393,4.76705 +L 3.2393,4.76705,3.2393,5.300878 +L 5.7681,3.699196,6.3253,3.699196 +L 6.3253,3.699196,6.9029,3.699196 +L 6.9029,3.699196,7.4811,3.699196 +L 5.7681,5.300878,6.1989,5.834761 +L 6.1989,5.834761,6.6265,6.368634 +L 6.6265,6.368634,7.0538,6.90256 +L 1.9543,6.101747,1.8033,6.368634 +L 1.8033,6.368634,1.6597,6.635674 +L 1.6597,6.635674,1.534,6.90256 +L 4.0939,6.635674,3.9433,7.005686 +L 3.9433,7.005686,3.793,7.358744 +L 3.793,7.358744,3.6631,7.70344 +L 3.6631,7.70344,2.6618,7.779651 +L 2.6618,7.779651,1.6597,7.85595 +L 1.6597,7.85595,0.6759,7.932194 +L 4.0939,7.932194,5.131,8.070629 +L 5.131,8.070629,5.9957,8.327697 +L 5.9957,8.327697,7.0538,8.466154 + +[惰] 54 +L 1.5601,0,1.5601,3.01137 +L 1.5601,3.01137,1.5601,6.014175 +L 1.5601,6.014175,1.5601,9.000103 +L 4.0924,0,4.0924,1.247141 +L 4.0924,1.247141,4.0924,2.477399 +L 4.0924,2.477399,4.0924,3.699196 +L 4.0924,3.699196,4.9473,3.699196 +L 4.9473,3.699196,5.8019,3.699196 +L 5.8019,3.699196,6.6562,3.699196 +L 6.6562,3.699196,6.6562,2.477399 +L 6.6562,2.477399,6.6562,1.247141 +L 6.6562,1.247141,6.6562,0 +L 6.6562,0,6.362,0 +L 6.362,0,6.0748,0 +L 6.0748,0,5.8019,0 +L 4.5236,1.601682,5.0766,1.601682 +L 5.0766,1.601682,5.651,1.601682 +L 5.651,1.601682,6.2292,1.601682 +L 4.5236,2.669492,5.0766,2.669492 +L 5.0766,2.669492,5.651,2.669492 +L 5.651,2.669492,6.2292,2.669492 +L 0.2817,5.033937,0.5763,5.656783 +L 0.5763,5.656783,0.688,6.279727 +L 0.688,6.279727,0.7024,7.436444 +L 3.2378,5.300878,3.6651,6.177958 +L 3.6651,6.177958,4.0924,7.055136 +L 4.0924,7.055136,4.5236,7.932194 +L 4.5236,7.932194,4.0924,7.932194 +L 4.0924,7.932194,3.6651,7.932194 +L 3.6651,7.932194,3.2378,7.932194 +L 4.0924,5.300878,4.6528,5.300878 +L 4.6528,5.300878,5.2237,5.300878 +L 5.2237,5.300878,5.8019,5.300878 +L 5.8019,5.300878,5.8019,5.834761 +L 5.8019,5.834761,5.8019,6.368634 +L 5.8019,6.368634,5.8019,6.90256 +L 5.8019,6.90256,5.5074,6.90256 +L 5.5074,6.90256,5.2237,6.90256 +L 5.2237,6.90256,4.9473,6.90256 +L 6.2292,5.300878,6.6352,5.300878 +L 6.6352,5.300878,7.0558,5.300878 +L 7.0558,5.300878,7.4796,5.300878 +L 2.4112,6.635674,2.261,6.90256 +L 2.261,6.90256,2.1174,7.169557 +L 2.1174,7.169557,1.9913,7.436444 +L 6.2292,6.90256,6.5021,6.90256 +L 6.5021,6.90256,6.7788,6.90256 +L 6.7788,6.90256,7.0485,6.90256 +L 4.9473,7.932194,4.9473,8.302371 +L 4.9473,8.302371,4.9473,8.655373 +L 4.9473,8.655373,4.9473,9.000103 +L 5.3746,7.932194,6.0748,7.932194 +L 6.0748,7.932194,6.7788,7.932194 +L 6.7788,7.932194,7.4796,7.932194 + +[駄] 45 +L 1.5621,0,2.9249,0.594722 +L 2.9249,0.594722,3.2892,2.011332 +L 3.2892,2.011332,3.2717,3.699196 +L 3.2717,3.699196,2.4171,3.699196 +L 2.4171,3.699196,1.5695,3.699196 +L 1.5695,3.699196,0.7394,3.699196 +L 0.7394,3.699196,0.7394,5.299444 +L 0.7394,5.299444,0.7394,6.891352 +L 0.7394,6.891352,0.7394,8.466154 +L 0.7394,8.466154,1.5695,8.466154 +L 1.5695,8.466154,2.4171,8.466154 +L 2.4171,8.466154,3.2717,8.466154 +L 4.1228,0.26698,5.1451,2.764064 +L 5.1451,2.764064,5.5444,5.244445 +L 5.5444,5.244445,4.1228,6.368634 +L 7.5058,0.26698,6.7808,2.055113 +L 6.7808,2.055113,6.3605,3.69067 +L 6.3605,3.69067,6.2277,5.300878 +L 0.3083,0.800836,0.4413,1.437899 +L 0.4413,1.437899,0.5849,2.057882 +L 0.5849,2.057882,0.7394,2.669492 +L 6.2277,0.533943,5.9297,0.903955 +L 5.9297,0.903955,5.6495,1.257036 +L 5.6495,1.257036,5.3766,1.601682 +L 1.5621,1.601682,1.5621,1.971847 +L 1.5621,1.971847,1.5621,2.324862 +L 1.5621,2.324862,1.5621,2.669492 +L 2.4171,1.601682,2.4171,1.971847 +L 2.4171,1.971847,2.4171,2.324862 +L 2.4171,2.324862,2.4171,2.669492 +L 1.9859,4.500054,1.7131,4.76705 +L 1.7131,4.76705,1.4395,5.033937 +L 1.4395,5.033937,1.1593,5.300878 +L 2.4171,5.300878,1.9894,5.834761 +L 1.9894,5.834761,1.5695,6.368634 +L 1.5695,6.368634,1.1593,6.90256 +L 6.2277,6.368634,5.9265,6.822038 +L 5.9265,6.822038,5.8141,7.504293 +L 5.8141,7.504293,5.8004,9.000103 +L 6.655,6.368634,6.9317,6.368634 +L 6.9317,6.368634,7.2154,6.368634 +L 7.2154,6.368634,7.5058,6.368634 +L 2.4171,6.90256,2.2661,7.245779 +L 2.2661,7.245779,2.1159,7.588975 +L 2.1159,7.588975,1.9859,7.932194 + +[耐] 36 +L 0.734,0,0.734,2.134202 +L 0.734,2.134202,0.734,4.259873 +L 0.734,4.259873,0.734,6.368634 +L 0.734,6.368634,1.7081,6.632795 +L 1.7081,6.632795,2.2646,7.362991 +L 2.2646,7.362991,2.4436,8.466154 +L 2.4436,8.466154,1.7217,8.466154 +L 1.7217,8.466154,1.0142,8.466154 +L 1.0142,8.466154,0.3141,8.466154 +L 4.1248,0,4.1248,2.134202 +L 4.1248,2.134202,4.1248,4.259873 +L 4.1248,4.259873,4.1248,6.368634 +L 4.1248,6.368634,3.6975,6.368634 +L 3.6975,6.368634,3.2768,6.368634 +L 3.2768,6.368634,2.874,6.368634 +L 2.874,6.368634,2.874,4.423711 +L 2.874,4.423711,2.874,2.478833 +L 2.874,2.478833,2.874,0.533943 +L 5.8336,0,6.1072,0 +L 6.1072,0,6.394,0 +L 6.394,0,6.6847,0 +L 6.6847,0,6.8213,3.244458 +L 6.8213,3.244458,6.5761,5.5142 +L 6.5761,5.5142,4.979,6.368634 +L 2.0198,0.533943,2.0373,4.283952 +L 2.0373,4.283952,2.149,5.79664 +L 2.149,5.79664,2.4436,6.368634 +L 5.8336,3.432233,5.6834,3.699196 +L 5.6834,3.699196,5.5363,3.966072 +L 5.5363,3.966072,5.4063,4.233068 +L 7.1124,6.368634,6.8147,6.822038 +L 6.8147,6.822038,6.7022,7.504293 +L 6.7022,7.504293,6.6847,9.000103 +L 2.874,8.466154,3.4239,8.466154 +L 3.4239,8.466154,3.9777,8.466154 +L 3.9777,8.466154,4.5486,8.466154 + +[怠] 36 +L 0.3403,0.26698,0.4737,0.903955 +L 0.4737,0.903955,0.6173,1.524021 +L 0.6173,1.524021,0.7711,2.135625 +L 2.8725,0,2.5713,0.434994 +L 2.5713,0.434994,2.4631,0.988709 +L 2.4631,0.988709,2.4452,2.135625 +L 3.2963,0,4.1544,0 +L 4.1544,0,5.0094,0 +L 5.0094,0,5.864,0 +L 5.864,0,5.864,0.370083 +L 5.864,0.370083,5.864,0.723169 +L 5.864,0.723169,5.864,1.067815 +L 7.5382,0.800836,7.2436,1.257036 +L 7.2436,1.257036,6.9599,1.704785 +L 6.9599,1.704785,6.6867,2.135625 +L 4.5821,1.868645,4.4311,2.135625 +L 4.4311,2.135625,4.2875,2.402622 +L 4.2875,2.402622,4.1544,2.669492 +L 2.0495,3.699196,2.0495,4.422387 +L 2.0495,4.422387,2.0495,5.137019 +L 2.0495,5.137019,2.0495,5.834761 +L 2.0495,5.834761,3.3107,5.834761 +L 3.3107,5.834761,4.5821,5.834761 +L 4.5821,5.834761,5.864,5.834761 +L 5.864,5.834761,5.864,5.137019 +L 5.864,5.137019,5.864,4.422387 +L 5.864,4.422387,5.864,3.699196 +L 5.864,3.699196,4.5821,3.699196 +L 4.5821,3.699196,3.3107,3.699196 +L 3.3107,3.699196,2.0495,3.699196 +L 0.7711,7.436444,1.8218,7.613076 +L 1.8218,7.613076,2.5503,8.035385 +L 2.5503,8.035385,3.2963,9.000103 +L 2.8725,7.436444,3.9058,7.536768 +L 3.9058,7.536768,5.3208,7.984436 +L 5.3208,7.984436,5.4367,9.000103 + +[替] 57 +L 2.0518,0,2.0518,1.247141 +L 2.0518,1.247141,2.0518,2.477399 +L 2.0518,2.477399,2.0518,3.699196 +L 2.0518,3.699196,3.6486,3.846081 +L 3.6486,3.846081,4.7102,4.365855 +L 4.7102,4.365855,5.866,5.834761 +L 5.866,5.834761,5.5157,6.210498 +L 5.5157,6.210498,5.0811,6.348845 +L 5.0811,6.348845,4.1848,6.368634 +L 2.4753,0,3.6066,0 +L 3.6066,0,4.7343,0 +L 4.7343,0,5.866,0 +L 5.866,0,5.866,0.723169 +L 5.866,0.723169,5.866,1.437899 +L 5.866,1.437899,5.866,2.135625 +L 5.866,2.135625,4.7343,2.135625 +L 4.7343,2.135625,3.6066,2.135625 +L 3.6066,2.135625,2.4753,2.135625 +L 5.866,2.669492,5.866,3.012694 +L 5.866,3.012694,5.866,3.356011 +L 5.866,3.356011,5.866,3.699196 +L 5.866,3.699196,5.5679,3.699196 +L 5.5679,3.699196,5.2842,3.699196 +L 5.2842,3.699196,5.0079,3.699196 +L 0.5839,4.233068,1.0743,4.76705 +L 1.0743,4.76705,1.5611,5.300878 +L 1.5611,5.300878,2.0518,5.834761 +L 2.0518,5.834761,1.7047,6.210498 +L 1.7047,6.210498,1.2673,6.348845 +L 1.2673,6.348845,0.3703,6.368634 +L 7.144,4.233068,6.8463,4.603136 +L 6.8463,4.603136,6.5665,4.956248 +L 6.5665,4.956248,6.2863,5.300878 +L 3.3302,4.76705,3.0357,4.956248 +L 3.0357,4.956248,2.752,5.137019 +L 2.752,5.137019,2.4753,5.300878 +L 2.4753,6.368634,2.1814,6.901226 +L 2.1814,6.901226,1.8977,7.425225 +L 1.8977,7.425225,1.6207,7.932194 +L 1.6207,7.932194,1.3443,7.932194 +L 1.3443,7.932194,1.0743,7.932194 +L 1.0743,7.932194,0.7979,7.932194 +L 6.2863,6.368634,5.9952,6.901226 +L 5.9952,6.901226,5.7115,7.425225 +L 5.7115,7.425225,5.4352,7.932194 +L 5.4352,7.932194,5.1651,7.932194 +L 5.1651,7.932194,4.885,7.932194 +L 4.885,7.932194,4.6118,7.932194 +L 6.7167,6.368634,6.9938,6.368634 +L 6.9938,6.368634,7.2775,6.368634 +L 7.2775,6.368634,7.5748,6.368634 +L 2.4753,7.932194,2.3247,8.302371 +L 2.3247,8.302371,2.1814,8.655373 +L 2.1814,8.655373,2.0518,9.000103 +L 6.2863,7.932194,6.1388,8.302371 +L 6.1388,8.302371,5.9952,8.655373 +L 5.9952,8.655373,5.866,9.000103 + +[泰] 48 +L 2.9326,0,3.2096,0 +L 3.2096,0,3.4825,0 +L 3.4825,0,3.7595,0 +L 3.7595,0,3.7595,0.533943 +L 3.7595,0.533943,3.7595,1.067815 +L 3.7595,1.067815,3.7595,1.601682 +L 3.7595,1.601682,2.7575,1.257036 +L 2.7575,1.257036,1.7736,0.903955 +L 1.7736,0.903955,0.7999,0.533943 +L 6.3233,0.533943,4.6593,2.016974 +L 4.6593,2.016974,3.9977,2.432272 +L 3.9977,2.432272,3.7595,2.135625 +L 0.5859,2.669492,1.2237,3.468998 +L 1.2237,3.468998,1.8678,4.259873 +L 1.8678,4.259873,2.5088,5.033937 +L 2.5088,5.033937,1.7838,5.137019 +L 1.7838,5.137019,1.0728,5.223222 +L 1.0728,5.223222,0.3726,5.300878 +L 5.0376,2.669492,5.3146,3.012694 +L 5.3146,3.012694,5.5948,3.356011 +L 5.5948,3.356011,5.8922,3.699196 +L 5.8922,3.699196,4.943,4.89548 +L 4.943,4.89548,4.1094,5.312218 +L 4.1094,5.312218,2.9326,5.567875 +L 2.9326,5.567875,3.045,6.761258 +L 3.045,6.761258,2.106,6.980238 +L 2.106,6.980238,1.2237,6.90256 +L 3.7595,3.165259,3.7595,3.535336 +L 3.7595,3.535336,3.7595,3.888427 +L 3.7595,3.888427,3.7595,4.233068 +L 5.4649,5.300878,6.0256,5.300878 +L 6.0256,5.300878,6.5961,5.300878 +L 6.5961,5.300878,7.1744,5.300878 +L 4.6138,5.834761,4.1833,6.471814 +L 4.1833,6.471814,3.7662,7.091803 +L 3.7662,7.091803,3.3599,7.70344 +L 3.3599,7.70344,2.5088,7.779651 +L 2.5088,7.779651,1.6545,7.85595 +L 1.6545,7.85595,0.7999,7.932194 +L 4.6138,6.90256,5.1671,6.90256 +L 5.1671,6.90256,5.7419,6.90256 +L 5.7419,6.90256,6.3233,6.90256 +L 3.7595,7.932194,3.7595,8.302371 +L 3.7595,8.302371,3.7595,8.655373 +L 3.7595,8.655373,3.7595,9.000103 +L 4.1833,7.932194,5.0376,7.932194 +L 5.0376,7.932194,5.8922,7.932194 +L 5.8922,7.932194,6.7433,7.932194 + +[滞] 54 +L 0.4023,0.26698,0.8296,1.411017 +L 0.8296,1.411017,1.2569,2.55506 +L 1.2569,2.55506,1.6807,3.699196 +L 5.0714,0,5.0749,2.348941 +L 5.0749,2.348941,4.6963,3.435013 +L 4.6963,3.435013,3.3619,3.699196 +L 3.3619,3.699196,3.3619,2.82204 +L 3.3619,2.82204,3.3619,1.944873 +L 3.3619,1.944873,3.3619,1.067815 +L 5.898,1.067815,6.1677,1.067815 +L 6.1677,1.067815,6.4514,1.067815 +L 6.4514,1.067815,6.7491,1.067815 +L 6.7491,1.067815,6.7491,1.944873 +L 6.7491,1.944873,6.7491,2.82204 +L 6.7491,2.82204,6.7491,3.699196 +L 6.7491,3.699196,5.6315,3.800866 +L 5.6315,3.800866,5.1656,4.258505 +L 5.1656,4.258505,5.0714,5.300878 +L 5.0714,5.300878,4.2165,5.300878 +L 4.2165,5.300878,3.3619,5.300878 +L 3.3619,5.300878,2.5073,5.300878 +L 2.5073,5.300878,2.5073,4.956248 +L 2.5073,4.956248,2.5073,4.603136 +L 2.5073,4.603136,2.5073,4.233068 +L 7.6037,4.233068,7.6037,4.603136 +L 7.6037,4.603136,7.6037,4.956248 +L 7.6037,4.956248,7.6037,5.300878 +L 7.6037,5.300878,6.9029,5.300878 +L 6.9029,5.300878,6.1989,5.300878 +L 6.1989,5.300878,5.4952,5.300878 +L 1.2569,5.834761,0.9596,6.204829 +L 0.9596,6.204829,0.6794,6.55793 +L 0.6794,6.55793,0.4023,6.90256 +L 3.7857,6.368634,3.6421,7.519781 +L 3.6421,7.519781,3.2043,7.899752 +L 3.2043,7.899752,2.5073,7.932194 +L 4.2165,6.368634,4.4932,6.368634 +L 4.4932,6.368634,4.7734,6.368634 +L 4.7734,6.368634,5.0714,6.368634 +L 5.0714,6.368634,5.022,7.178006 +L 5.022,7.178006,4.6928,7.860196 +L 4.6928,7.860196,3.7857,9.000103 +L 5.4952,6.368634,5.7716,6.368634 +L 5.7716,6.368634,6.0451,6.368634 +L 6.0451,6.368634,6.318,6.368634 +L 6.318,6.368634,6.2759,7.178006 +L 6.2759,7.178006,5.9502,7.860196 +L 5.9502,7.860196,5.0714,9.000103 +L 1.6807,7.932194,1.3869,8.302371 +L 1.3869,8.302371,1.1032,8.655373 +L 1.1032,8.655373,0.8296,9.000103 +L 6.7491,7.932194,6.5981,8.302371 +L 6.5981,8.302371,6.4514,8.655373 +L 6.4514,8.655373,6.318,9.000103 + +[胎] 39 +L 0.4288,0.26698,0.7125,1.104586 +L 0.7125,1.104586,0.8141,3.23024 +L 0.8141,3.23024,0.8281,8.466154 +L 0.8281,8.466154,1.3853,8.466154 +L 1.3853,8.466154,1.9598,8.466154 +L 1.9598,8.466154,2.5412,8.466154 +L 2.5412,8.466154,2.5412,5.644108 +L 2.5412,5.644108,2.5412,2.82204 +L 2.5412,2.82204,2.5412,0 +L 2.5412,0,2.2431,0 +L 2.2431,0,1.9598,0 +L 1.9598,0,1.6827,0 +L 4.2469,0,4.2469,1.247141 +L 4.2469,1.247141,4.2469,2.477399 +L 4.2469,2.477399,4.2469,3.699196 +L 4.2469,3.699196,5.0801,3.699196 +L 5.0801,3.699196,5.9245,3.699196 +L 5.9245,3.699196,6.7756,3.699196 +L 6.7756,3.699196,6.7756,2.477399 +L 6.7756,2.477399,6.7756,1.247141 +L 6.7756,1.247141,6.7756,0 +L 6.7756,0,5.9245,0 +L 5.9245,0,5.0801,0 +L 5.0801,0,4.2469,0 +L 1.2554,3.699196,1.5325,3.699196 +L 1.5325,3.699196,1.8161,3.699196 +L 1.8161,3.699196,2.11,3.699196 +L 7.6334,5.567875,6.4254,6.298059 +L 6.4254,6.298059,4.7999,6.096077 +L 4.7999,6.096077,3.3923,5.834761 +L 1.2554,6.368634,1.5325,6.368634 +L 1.5325,6.368634,1.8161,6.368634 +L 1.8161,6.368634,2.11,6.368634 +L 4.2469,6.635674,4.5197,7.435087 +L 4.5197,7.435087,4.7964,8.226038 +L 4.7964,8.226038,5.0661,9.000103 +L 7.2061,6.90256,6.9084,7.245779 +L 6.9084,7.245779,6.6247,7.588975 +L 6.6247,7.588975,6.355,7.932194 + +[袋] 54 +L 1.2893,0,1.7131,0 +L 1.7131,0,2.1404,0 +L 2.1404,0,2.5673,0 +L 2.5673,0,2.4836,0.903955 +L 2.4836,0.903955,2.4171,1.790995 +L 2.4171,1.790995,2.3575,2.669492 +L 2.3575,2.669492,1.7131,2.324862 +L 1.7131,2.324862,1.0753,1.971847 +L 1.0753,1.971847,0.4347,1.601682 +L 2.9635,0,3.3137,0.375742 +L 3.3137,0.375742,3.755,0.514089 +L 3.755,0.514089,4.6723,0.533943 +L 6.8126,0,5.9542,0.903955 +L 5.9542,0.903955,5.1031,1.790995 +L 5.1031,1.790995,4.2453,2.669492 +L 4.2453,2.669492,4.2453,3.012694 +L 4.2453,3.012694,4.2453,3.356011 +L 4.2453,3.356011,4.2453,3.699196 +L 4.2453,3.699196,3.818,3.535336 +L 3.818,3.535336,3.3943,3.354555 +L 3.3943,3.354555,2.9635,3.165259 +L 0.4347,3.699196,1.1348,3.699196 +L 1.1348,3.699196,1.8423,3.699196 +L 1.8423,3.699196,2.5673,3.699196 +L 4.6723,3.699196,5.5059,3.699196 +L 5.5059,3.699196,6.3535,3.699196 +L 6.3535,3.699196,7.2046,3.699196 +L 3.818,4.233068,3.818,4.603136 +L 3.818,4.603136,3.818,4.956248 +L 3.818,4.956248,3.818,5.300878 +L 1.2893,5.300878,1.2052,6.024069 +L 1.2052,6.024069,1.1348,6.738701 +L 1.1348,6.738701,1.0753,7.436444 +L 1.0753,7.436444,0.8585,7.272649 +L 0.8585,7.272649,0.648,7.091803 +L 0.648,7.091803,0.4347,6.90256 +L 6.3815,5.300878,5.019,6.685037 +L 5.019,6.685037,4.0313,7.19634 +L 4.0313,7.19634,2.5673,7.436444 +L 6.9948,5.300878,7.0543,5.670968 +L 7.0543,5.670968,7.1209,6.024069 +L 7.1209,6.024069,7.2046,6.368634 +L 1.2893,7.932194,1.4185,8.302371 +L 1.4185,8.302371,1.5621,8.655373 +L 1.5621,8.655373,1.7131,9.000103 +L 4.2453,7.932194,4.2453,8.302371 +L 4.2453,8.302371,4.2453,8.655373 +L 4.2453,8.655373,4.2453,9.000103 +L 5.1031,7.932194,5.5234,8.035385 +L 5.5234,8.035385,5.9542,8.12149 +L 5.9542,8.12149,6.3815,8.199169 +L 6.3815,8.199169,6.2312,8.466154 +L 6.2312,8.466154,6.0841,8.733106 +L 6.0841,8.733106,5.9542,9.000103 + +[逮] 51 +L 0.6745,0,1.0107,0.370083 +L 1.0107,0.370083,1.3575,0.723169 +L 1.3575,0.723169,1.7151,1.067815 +L 1.7151,1.067815,1.7151,2.314956 +L 1.7151,2.314956,1.7151,3.54522 +L 1.7151,3.54522,1.7151,4.76705 +L 1.7151,4.76705,1.2878,4.76705 +L 1.2878,4.76705,0.8671,4.76705 +L 0.8671,4.76705,0.4612,4.76705 +L 2.9966,0,2.6989,0.189302 +L 2.6989,0.189302,2.4152,0.370083 +L 2.4152,0.370083,2.142,0.533943 +L 3.4239,0,4.8253,0 +L 4.8253,0,6.2364,0 +L 6.2364,0,7.6622,0 +L 4.275,1.601682,4.5517,1.601682 +L 4.5517,1.601682,4.8323,1.601682 +L 4.8323,1.601682,5.13,1.601682 +L 5.13,1.601682,5.13,2.134202 +L 5.13,2.134202,5.13,2.658284 +L 5.13,2.658284,5.13,3.165259 +L 5.13,3.165259,4.5517,3.01137 +L 4.5517,3.01137,3.9812,2.84891 +L 3.9812,2.84891,3.4239,2.669492 +L 7.2349,2.135625,5.8756,3.591791 +L 5.8756,3.591791,5.3293,3.9972 +L 5.3293,3.9972,5.13,3.699196 +L 5.13,5.033937,4.7829,5.597448 +L 4.7829,5.597448,4.3381,5.805112 +L 4.3381,5.805112,3.4239,5.834761 +L 5.5289,5.834761,4.5377,6.789584 +L 4.5377,6.789584,3.701,6.964773 +L 3.701,6.964773,2.5662,6.90256 +L 5.9527,5.834761,6.2297,5.937941 +L 6.2297,5.937941,6.5134,6.024069 +L 6.5134,6.024069,6.8073,6.101747 +L 6.8073,6.101747,5.7881,7.203345 +L 5.7881,7.203345,4.524,7.771278 +L 4.524,7.771278,3.4239,7.932194 +L 7.2349,6.90256,6.5905,7.564972 +L 6.5905,7.564972,5.7569,8.159612 +L 5.7569,8.159612,5.13,9.000103 +L 1.7151,7.436444,1.4415,7.779651 +L 1.4415,7.779651,1.1617,8.122935 +L 1.1617,8.122935,0.8917,8.466154 +L 5.5464,-0.015186,7.6798,-0.015186 +L 1.7291,1.05247,0.6745,0 +L 0.4752,4.751716,1.7291,4.751716 +L 1.7291,1.05247,1.7291,4.751716 +L 0.906,8.48915,1.7291,7.421252 +A 5.5464,7.347831,7.362973,238.75988,270 + +[滝] 54 +L 0.4628,0.26698,0.8901,1.411017 +L 0.8901,1.411017,1.3139,2.55506 +L 1.3139,2.55506,1.7447,3.699196 +L 5.1355,0,4.47,1.282494 +L 4.47,1.282494,4.2175,1.946329 +L 4.2175,1.946329,3.0231,2.135625 +L 3.0231,2.135625,3.0231,3.012694 +L 3.0231,3.012694,3.0231,3.889883 +L 3.0231,3.889883,3.0231,4.76705 +L 3.0231,4.76705,4.1544,4.76705 +L 4.1544,4.76705,5.2822,4.76705 +L 5.2822,4.76705,6.4135,4.76705 +L 6.4135,4.76705,6.4135,3.889883 +L 6.4135,3.889883,6.4135,3.012694 +L 6.4135,3.012694,6.4135,2.135625 +L 6.4135,2.135625,5.9866,2.135625 +L 5.9866,2.135625,5.5558,2.135625 +L 5.5558,2.135625,5.1355,2.135625 +L 5.1355,2.135625,4.8343,2.668053 +L 4.8343,2.668053,4.5537,3.192118 +L 4.5537,3.192118,4.277,3.699196 +L 4.277,3.699196,4.0007,3.699196 +L 4.0007,3.699196,3.7306,3.699196 +L 3.7306,3.699196,3.4543,3.699196 +L 5.5558,0,6.1158,0 +L 6.1158,0,6.6867,0 +L 6.6867,0,7.2646,0 +L 7.2646,0,7.2646,0.370083 +L 7.2646,0.370083,7.2646,0.723169 +L 7.2646,0.723169,7.2646,1.067815 +L 1.3139,5.834761,1.0236,6.204829 +L 1.0236,6.204829,0.7399,6.55793 +L 0.7399,6.55793,0.4628,6.90256 +L 2.172,6.368634,2.7293,6.471814 +L 2.7293,6.471814,3.2998,6.55793 +L 3.2998,6.55793,3.8816,6.635674 +L 3.8816,6.635674,3.5485,7.395465 +L 3.5485,7.395465,3.2158,7.731668 +L 3.2158,7.731668,2.5997,7.932194 +L 4.277,6.368634,4.7047,6.471814 +L 4.7047,6.471814,5.1355,6.55793 +L 5.1355,6.55793,5.5558,6.635674 +L 5.5558,6.635674,5.6885,7.005686 +L 5.6885,7.005686,5.8356,7.358744 +L 5.8356,7.358744,5.9866,7.70344 +L 5.9866,7.70344,5.2822,7.779651 +L 5.2822,7.779651,4.5817,7.85595 +L 4.5817,7.85595,3.8816,7.932194 +L 5.9866,6.368634,6.4135,6.368634 +L 6.4135,6.368634,6.8408,6.368634 +L 6.8408,6.368634,7.2646,6.368634 +L 1.7447,7.932194,1.4509,8.302371 +L 1.4509,8.302371,1.1672,8.655373 +L 1.1672,8.655373,0.8901,9.000103 + +[卓] 39 +L 3.8832,0,3.2952,1.584788 +L 3.2952,1.584788,1.9537,1.771206 +L 1.9537,1.771206,0.4929,1.601682 +L 4.3039,1.601682,4.0093,2.015535 +L 4.0093,2.015535,3.8976,2.420938 +L 3.8976,2.420938,3.8832,3.165259 +L 3.8832,3.165259,3.1828,3.165259 +L 3.1828,3.165259,2.4791,3.165259 +L 2.4791,3.165259,1.7783,3.165259 +L 1.7783,3.165259,1.7783,4.233068 +L 1.7783,4.233068,1.7783,5.300878 +L 1.7783,5.300878,1.7783,6.368634 +L 1.7783,6.368634,2.4791,6.368634 +L 2.4791,6.368634,3.1828,6.368634 +L 3.1828,6.368634,3.8832,6.368634 +L 3.8832,6.368634,3.8832,7.245779 +L 3.8832,7.245779,3.8832,8.122935 +L 3.8832,8.122935,3.8832,9.000103 +L 4.7343,1.601682,5.5644,1.601682 +L 5.5644,1.601682,6.4155,1.601682 +L 6.4155,1.601682,7.2666,1.601682 +L 4.3039,3.165259,4.8639,3.165259 +L 4.8639,3.165259,5.4352,3.165259 +L 5.4352,3.165259,6.0127,3.165259 +L 6.0127,3.165259,6.0127,3.699196 +L 6.0127,3.699196,6.0127,4.233068 +L 6.0127,4.233068,6.0127,4.76705 +L 6.0127,4.76705,4.7343,4.76705 +L 4.7343,4.76705,3.4629,4.76705 +L 3.4629,4.76705,2.2024,4.76705 +L 6.0127,5.300878,6.0127,5.670968 +L 6.0127,5.670968,6.0127,6.024069 +L 6.0127,6.024069,6.0127,6.368634 +L 6.0127,6.368634,5.4352,6.368634 +L 5.4352,6.368634,4.8639,6.368634 +L 4.8639,6.368634,4.3039,6.368634 +L 4.3039,7.932194,5.0079,7.932194 +L 5.0079,7.932194,5.708,7.932194 +L 5.708,7.932194,6.4089,7.932194 + +[択] 33 +L 0.9502,0,1.2272,0 +L 1.2272,0,1.5001,0 +L 1.5001,0,1.7771,0 +L 1.7771,0,1.7593,2.62292 +L 1.7593,2.62292,1.6475,3.72043 +L 1.6475,3.72043,1.3463,4.233068 +L 1.3463,4.233068,1.0728,4.069285 +L 1.0728,4.069285,0.7999,3.888427 +L 0.7999,3.888427,0.5264,3.699196 +L 2.6314,0,3.6646,2.838961 +L 3.6646,2.838961,3.9308,5.372898 +L 3.9308,5.372898,3.9098,8.466154 +L 3.9098,8.466154,5.0411,8.466154 +L 5.0411,8.466154,6.1723,8.466154 +L 6.1723,8.466154,7.297,8.466154 +L 7.297,8.466154,7.297,7.425225 +L 7.297,7.425225,7.297,6.367265 +L 7.297,6.367265,7.297,5.300878 +L 7.297,5.300878,6.8732,5.300878 +L 6.8732,5.300878,6.442,5.300878 +L 6.442,5.300878,6.0147,5.300878 +L 6.0147,5.300878,6.0778,4.036745 +L 6.0778,4.036745,6.5226,2.662492 +L 6.5226,2.662492,7.7243,0 +L 2.2009,4.233068,1.6931,5.48455 +L 1.6931,5.48455,1.4826,6.490147 +L 1.4826,6.490147,0.5264,6.90256 +L 4.3409,5.300878,4.7433,5.300878 +L 4.7433,5.300878,5.1636,5.300878 +L 5.1636,5.300878,5.5874,5.300878 +L 2.2009,6.90256,1.9029,7.336186 +L 1.9029,7.336186,1.7911,7.880029 +L 1.7911,7.880029,1.7771,9.000103 + +[拓] 39 +L 0.9522,0,1.2257,0 +L 1.2257,0,1.5094,0 +L 1.5094,0,1.8033,0 +L 1.8033,0,1.7858,2.62292 +L 1.7858,2.62292,1.6807,3.72043 +L 1.6807,3.72043,1.3795,4.233068 +L 1.3795,4.233068,1.0856,4.069285 +L 1.0856,4.069285,0.8019,3.888427 +L 0.8019,3.888427,0.5249,3.699196 +L 4.7667,0,4.6823,1.411017 +L 4.6823,1.411017,4.6158,2.82204 +L 4.6158,2.82204,4.5496,4.233068 +L 4.5496,4.233068,4.0627,3.726078 +L 4.0627,3.726078,3.5759,3.202012 +L 3.5759,3.202012,3.089,2.669492 +L 5.1905,0,5.8941,0 +L 5.8941,0,6.6051,0 +L 6.6051,0,7.3302,0 +L 7.3302,0,7.3302,1.600341 +L 7.3302,1.600341,7.3302,3.192118 +L 7.3302,3.192118,7.3302,4.76705 +L 7.3302,4.76705,6.4724,4.76705 +L 6.4724,4.76705,5.6213,4.76705 +L 5.6213,4.76705,4.7667,4.76705 +L 4.7667,4.76705,4.8753,6.090507 +L 4.8753,6.090507,5.0816,7.168102 +L 5.0816,7.168102,5.1905,8.466154 +L 5.1905,8.466154,4.6231,8.466154 +L 4.6231,8.466154,4.0627,8.466154 +L 4.0627,8.466154,3.5128,8.466154 +L 2.2344,4.233068,1.7091,5.518435 +L 1.7091,5.518435,1.5161,6.507145 +L 1.5161,6.507145,0.5249,6.90256 +L 2.2344,6.90256,1.9294,7.336186 +L 1.9294,7.336186,1.8208,7.880029 +L 1.8208,7.880029,1.8033,9.000103 +L 5.6213,8.466154,6.3253,8.466154 +L 6.3253,8.466154,7.0254,8.466154 +L 7.0254,8.466154,7.7263,8.466154 + +[沢] 27 +L 0.5588,0.26698,0.9826,1.411017 +L 0.9826,1.411017,1.4099,2.55506 +L 1.4099,2.55506,1.8372,3.699196 +L 2.2326,0,3.2448,2.788154 +L 3.2448,2.788154,3.5215,5.525441 +L 3.5215,5.525441,3.5148,8.466154 +L 3.5148,8.466154,4.7754,8.466154 +L 4.7754,8.466154,6.0471,8.466154 +L 6.0471,8.466154,7.3287,8.466154 +L 7.3287,8.466154,7.3287,7.425225 +L 7.3287,7.425225,7.3287,6.367265 +L 7.3287,6.367265,7.3287,5.300878 +L 7.3287,5.300878,6.7546,5.300878 +L 6.7546,5.300878,6.2009,5.300878 +L 6.2009,5.300878,5.651,5.300878 +L 5.651,5.300878,5.942,3.401116 +L 5.942,3.401116,6.6951,1.798011 +L 6.6951,1.798011,7.7559,0 +L 3.9421,5.300878,4.3726,5.300878 +L 4.3726,5.300878,4.7932,5.300878 +L 4.7932,5.300878,5.2237,5.300878 +L 1.4099,5.834761,1.1118,6.204829 +L 1.1118,6.204829,0.8281,6.55793 +L 0.8281,6.55793,0.5588,6.90256 +L 1.8372,7.932194,1.5426,8.302371 +L 1.5426,8.302371,1.2589,8.655373 +L 1.2589,8.655373,0.9826,9.000103 + +[濯] 63 +L 0.5849,0,0.7989,1.55511 +L 0.7989,1.55511,1.1979,2.957684 +L 1.1979,2.957684,1.4119,4.233068 +L 3.1207,0,3.0366,1.247141 +L 3.0366,1.247141,2.9669,2.477399 +L 2.9669,2.477399,2.9074,3.699196 +L 2.9074,3.699196,2.6899,3.535336 +L 2.6899,3.535336,2.4763,3.354555 +L 2.4763,3.354555,2.263,3.165259 +L 3.541,0,4.0944,0 +L 4.0944,0,4.6516,0 +L 4.6516,0,5.2222,0 +L 5.2222,0,4.9914,1.330554 +L 4.9914,1.330554,4.3889,1.644106 +L 4.3889,1.644106,3.541,1.601682 +L 5.653,0,6.3535,0 +L 6.3535,0,7.0645,0 +L 7.0645,0,7.7863,0 +L 5.653,1.601682,5.0015,2.353073 +L 5.0015,2.353073,4.4551,2.629953 +L 4.4551,2.629953,3.541,2.669492 +L 6.0768,1.601682,6.3535,1.601682 +L 6.3535,1.601682,6.6372,1.601682 +L 6.6372,1.601682,6.9317,1.601682 +L 5.653,2.669492,5.3556,3.202012 +L 5.3556,3.202012,5.0719,3.726078 +L 5.0719,3.726078,4.7949,4.233068 +L 4.7949,4.233068,4.2278,4.233068 +L 4.2278,4.233068,3.6706,4.233068 +L 3.6706,4.233068,3.1207,4.233068 +L 6.0768,2.669492,6.3535,2.669492 +L 6.3535,2.669492,6.6372,2.669492 +L 6.6372,2.669492,6.9317,2.669492 +L 5.653,4.233068,5.3658,4.628496 +L 5.3658,4.628496,5.3658,4.905462 +L 5.3658,4.905462,5.653,5.300878 +L 6.0768,4.233068,6.5041,4.233068 +L 6.5041,4.233068,6.9317,4.233068 +L 6.9317,4.233068,7.3625,4.233068 +L 2.6899,6.368634,3.2506,6.368634 +L 3.2506,6.368634,3.8215,6.368634 +L 3.8215,6.368634,4.3991,6.368634 +L 4.3991,6.368634,4.3991,6.738701 +L 4.3991,6.738701,4.3991,7.091803 +L 4.3991,7.091803,4.3991,7.436444 +L 4.3991,7.436444,3.8215,7.436444 +L 3.8215,7.436444,3.2506,7.436444 +L 3.2506,7.436444,2.6899,7.436444 +L 5.653,6.368634,6.2067,6.368634 +L 6.2067,6.368634,6.7808,6.368634 +L 6.7808,6.368634,7.3625,6.368634 +L 7.3625,6.368634,7.3625,6.738701 +L 7.3625,6.738701,7.3625,7.091803 +L 7.3625,7.091803,7.3625,7.436444 +L 7.3625,7.436444,6.7808,7.436444 +L 6.7808,7.436444,6.2067,7.436444 +L 6.2067,7.436444,5.653,7.436444 +L 4.3991,8.199169,3.8215,8.302371 +L 3.8215,8.302371,3.2506,8.388486 +L 3.2506,8.388486,2.6899,8.466154 +L 7.3625,8.199169,6.7808,8.302371 +L 6.7808,8.302371,6.2067,8.388486 +L 6.2067,8.388486,5.653,8.466154 + +[託] 32 +L 5.6798,0,5.3818,0.512732 +L 5.3818,0.512732,5.2697,1.610219 +L 5.2697,1.610219,5.2525,4.233068 +L 5.2525,4.233068,4.6743,4.233068 +L 4.6743,4.233068,4.1037,4.233068 +L 4.1037,4.233068,3.5465,4.233068 +L 6.1103,0,6.5134,0 +L 6.5134,0,6.9337,0 +L 6.9337,0,7.361,0 +L 7.361,0,7.361,0.533943 +L 7.361,0.533943,7.361,1.067815 +L 7.361,1.067815,7.361,1.601682 +L 5.2525,4.76705,5.2525,5.833404 +L 5.2525,5.833404,5.2525,6.891352 +L 5.2525,6.891352,5.2525,7.932194 +L 5.2525,7.932194,4.8249,7.932194 +L 4.8249,7.932194,4.4014,7.932194 +L 4.4014,7.932194,3.9703,7.932194 +L 5.6798,4.76705,6.2329,4.76705 +L 6.2329,4.76705,6.7863,4.76705 +L 6.7863,4.76705,7.361,4.76705 +L 5.6798,7.932194,6.0157,8.307941 +L 6.0157,8.307941,6.3415,8.446375 +L 6.3415,8.446375,6.9614,8.466154 +L 0.5838,6.902528,3.1157,6.902528 +L 1.0142,8.50432,2.6954,8.50432 +L 1.0142,5.300977,2.6954,5.300977 +L 1.0142,4.233036,2.6954,4.233036 +L 1.0142,2.669547,2.6954,2.669547 +L 1.0142,0,1.0142,2.669547 +L 2.6954,0,1.0142,0 +L 2.6954,2.669547,2.6954,0 + +[濁] 51 +L 0.6173,0.26698,1.0236,1.411017 +L 1.0236,1.411017,1.4435,2.55506 +L 1.4435,2.55506,1.8638,3.699196 +L 5.6783,0,7.17,0.950609 +L 7.17,0.950609,7.4677,3.079142 +L 7.4677,3.079142,7.3907,5.300878 +L 7.3907,5.300878,6.3928,5.300878 +L 6.3928,5.300878,5.4083,5.300878 +L 5.4083,5.300878,4.4311,5.300878 +L 4.4311,5.300878,4.4767,4.326278 +L 4.4767,4.326278,4.7989,3.834763 +L 4.7989,3.834763,5.6783,3.699196 +L 5.6783,3.699196,5.6955,2.559302 +L 5.6955,2.559302,5.8044,1.877101 +L 5.8044,1.877101,6.1091,1.067815 +L 2.7223,1.067815,3.2788,1.067815 +L 3.2788,1.067815,3.8532,1.067815 +L 3.8532,1.067815,4.4311,1.067815 +L 4.4311,1.067815,4.2809,2.262742 +L 4.2809,2.262742,3.8497,2.644072 +L 3.8497,2.644072,3.1531,2.669492 +L 3.1531,2.669492,3.1531,3.012694 +L 3.1531,3.012694,3.1531,3.356011 +L 3.1531,3.356011,3.1531,3.699196 +L 3.1531,3.699196,3.7975,3.660987 +L 3.7975,3.660987,4.3506,3.394122 +L 4.3506,3.394122,5.2822,2.669492 +L 2.7223,4.76705,3.1807,5.202022 +L 3.1807,5.202022,3.4049,5.75565 +L 3.4049,5.75565,3.5734,6.90256 +L 3.5734,6.90256,3.2788,6.90256 +L 3.2788,6.90256,2.9951,6.90256 +L 2.9951,6.90256,2.7223,6.90256 +L 2.7223,6.90256,2.7223,7.435087 +L 2.7223,7.435087,2.7223,7.959152 +L 2.7223,7.959152,2.7223,8.466154 +L 2.7223,8.466154,4.2735,8.466154 +L 4.2735,8.466154,5.8321,8.466154 +L 5.8321,8.466154,7.3907,8.466154 +L 7.3907,8.466154,7.3907,7.959152 +L 7.3907,7.959152,7.3907,7.435087 +L 7.3907,7.435087,7.3907,6.90256 +L 7.3907,6.90256,6.2633,6.90256 +L 6.2633,6.90256,5.132,6.90256 +L 5.132,6.90256,4.0042,6.90256 +L 1.4719,5.834761,1.1773,6.204829 +L 1.1773,6.204829,0.8901,6.55793 +L 0.8901,6.55793,0.6173,6.90256 +L 1.8638,7.932194,1.5945,8.302371 +L 1.5945,8.302371,1.3174,8.655373 +L 1.3174,8.655373,1.0446,9.000103 + +[諾] 41 +L 4.8569,0,4.8429,1.896982 +L 4.8429,1.896982,4.7312,2.717525 +L 4.7312,2.717525,4.4331,3.165259 +L 4.4331,3.165259,4.1564,2.82204 +L 4.1564,2.82204,3.8801,2.478833 +L 3.8801,2.478833,3.61,2.135625 +L 5.2842,0,5.9851,0 +L 5.9851,0,6.6961,0 +L 6.6961,0,7.4211,0 +L 7.4211,0,7.4211,1.066387 +L 7.4211,1.066387,7.4211,2.124292 +L 7.4211,2.124292,7.4211,3.165259 +L 7.4211,3.165259,6.6961,3.165259 +L 6.6961,3.165259,5.9851,3.165259 +L 5.9851,3.165259,5.2842,3.165259 +L 5.2842,3.165259,4.9308,4.464712 +L 4.9308,4.464712,4.7942,5.12013 +L 4.7942,5.12013,3.61,5.300878 +L 5.7115,5.300878,5.2842,6.177958 +L 5.2842,6.177958,4.8569,7.055136 +L 4.8569,7.055136,4.4331,7.932194 +L 4.4331,7.932194,4.1564,7.932194 +L 4.1564,7.932194,3.8801,7.932194 +L 3.8801,7.932194,3.61,7.932194 +L 6.1427,5.300878,6.6961,5.300878 +L 6.6961,5.300878,7.2701,5.300878 +L 7.2701,5.300878,7.8484,5.300878 +L 6.5661,7.169557,6.0302,7.745831 +L 6.0302,7.745831,5.3966,8.220479 +L 5.3966,8.220479,4.8569,9.000103 +L 6.9938,7.932194,6.8428,8.302371 +L 6.8428,8.302371,6.6961,8.655373 +L 6.6961,8.655373,6.5661,9.000103 +L 0.6158,6.902528,3.1481,6.902528 +L 1.0431,8.50432,2.7243,8.50432 +L 1.0431,5.300977,2.7243,5.300977 +L 1.0431,4.233036,2.7243,4.233036 +L 1.0431,2.669547,2.7243,2.669547 +L 1.0431,0,1.0431,2.669547 +L 2.7243,0,1.0431,0 +L 2.7243,2.669547,2.7243,0 + +[但] 27 +L 1.5001,0,1.4195,1.944873 +L 1.4195,1.944873,1.3498,3.889883 +L 1.3498,3.889883,1.2868,5.834761 +L 1.2868,5.834761,1.0763,5.670968 +L 1.0763,5.670968,0.863,5.490109 +L 0.863,5.490109,0.649,5.300878 +L 2.7504,0,4.4386,0 +L 4.4386,0,6.1408,0 +L 6.1408,0,7.8469,0 +L 3.605,2.135625,3.605,4.259873 +L 3.605,4.259873,3.605,6.367265 +L 3.605,6.367265,3.605,8.466154 +L 3.605,8.466154,4.7363,8.466154 +L 4.7363,8.466154,5.8645,8.466154 +L 5.8645,8.466154,6.9958,8.466154 +L 6.9958,8.466154,6.9958,6.367265 +L 6.9958,6.367265,6.9958,4.259873 +L 6.9958,4.259873,6.9958,2.135625 +L 6.9958,2.135625,5.8645,2.135625 +L 5.8645,2.135625,4.7363,2.135625 +L 4.7363,2.135625,3.605,2.135625 +L 4.0323,5.300878,4.8663,5.300878 +L 4.8663,5.300878,5.7135,5.300878 +L 5.7135,5.300878,6.5646,5.300878 +L 1.5001,6.635674,1.7771,7.435087 +L 1.7771,7.435087,2.0608,8.226038 +L 2.0608,8.226038,2.3585,9.000103 + +[奪] 69 +L 4.917,0,5.194,0 +L 5.194,0,5.4633,0 +L 5.4633,0,5.7439,0 +L 5.7439,0,5.7295,0.771169 +L 5.7295,0.771169,5.6178,1.186368 +L 5.6178,1.186368,5.3166,1.601682 +L 5.3166,1.601682,4.4655,1.524021 +L 4.4655,1.524021,3.6144,1.437899 +L 3.6144,1.437899,2.7843,1.334795 +L 2.7843,1.334795,2.9136,1.067815 +L 2.9136,1.067815,3.0607,0.800836 +L 3.0607,0.800836,3.2081,0.533943 +L 0.6793,1.601682,1.2292,1.601682 +L 1.2292,1.601682,1.7823,1.601682 +L 1.7823,1.601682,2.3532,1.601682 +L 6.1712,1.601682,6.0167,1.868645 +L 6.0167,1.868645,5.8731,2.135625 +L 5.8731,2.135625,5.7439,2.402622 +L 5.7439,2.402622,4.6126,2.505709 +L 4.6126,2.505709,3.4845,2.591836 +L 3.4845,2.591836,2.3532,2.669492 +L 2.3532,2.669492,2.2765,3.546664 +L 2.2765,3.546664,2.2029,4.423711 +L 2.2029,4.423711,2.143,5.300878 +L 2.143,5.300878,1.7823,5.137019 +L 1.7823,5.137019,1.4425,4.956248 +L 1.4425,4.956248,1.1066,4.76705 +L 6.5981,1.601682,7.0219,1.601682 +L 7.0219,1.601682,7.4527,1.601682 +L 7.4527,1.601682,7.88,1.601682 +L 4.49,3.165259,4.1433,3.540995 +L 4.1433,3.540995,3.702,3.67944 +L 3.702,3.67944,2.7843,3.699196 +L 4.917,3.699196,4.269,4.450626 +L 4.269,4.450626,3.7195,4.727484 +L 3.7195,4.727484,2.7843,4.76705 +L 5.3166,3.699196,5.5929,3.699196 +L 5.5929,3.699196,5.8731,3.699196 +L 5.8731,3.699196,6.1712,3.699196 +L 4.917,4.76705,3.5969,5.84042 +L 3.5969,5.84042,2.1045,6.185061 +L 2.1045,6.185061,0.6793,5.834761 +L 5.3166,4.76705,5.5929,4.76705 +L 5.5929,4.76705,5.8731,4.76705 +L 5.8731,4.76705,6.1712,4.76705 +L 4.917,5.834761,4.6333,6.230177 +L 4.6333,6.230177,4.6333,6.507145 +L 4.6333,6.507145,4.917,6.90256 +L 5.3166,5.834761,5.9327,5.854627 +L 5.9327,5.854627,6.2619,5.992974 +L 6.2619,5.992974,6.5981,6.368634 +L 6.5981,6.368634,6.3043,6.824916 +L 6.3043,6.824916,6.0167,7.272649 +L 6.0167,7.272649,5.7439,7.70344 +L 5.7439,7.70344,4.7457,7.70344 +L 4.7457,7.70344,3.7615,7.70344 +L 3.7615,7.70344,2.7843,7.70344 +L 2.7843,7.70344,3.068,7.120106 +L 3.068,7.120106,3.068,6.774031 +L 3.068,6.774031,2.7843,6.368634 +L 2.7843,6.368634,2.6334,6.55793 +L 2.6334,6.55793,2.4866,6.738701 +L 2.4866,6.738701,2.3532,6.90256 +L 0.6793,7.932194,1.2292,7.932194 +L 1.2292,7.932194,1.7823,7.932194 +L 1.7823,7.932194,2.3532,7.932194 +L 6.1712,7.932194,6.7242,7.932194 +L 6.7242,7.932194,7.299,7.932194 +L 7.299,7.932194,7.88,7.932194 + +[棚] 39 +L 1.5324,0,1.4484,1.600341 +L 1.4484,1.600341,1.3815,3.192118 +L 1.3815,3.192118,1.3184,4.76705 +L 1.3184,4.76705,1.1016,4.422387 +L 1.1016,4.422387,0.8911,4.069285 +L 0.8911,4.069285,0.6813,3.699196 +L 2.3902,0,3.2203,2.737379 +L 3.2203,2.737379,3.3218,5.550965 +L 3.3218,5.550965,3.2413,8.466154 +L 3.2413,8.466154,3.6476,8.466154 +L 3.6476,8.466154,4.0647,8.466154 +L 4.0647,8.466154,4.4917,8.466154 +L 4.4917,8.466154,4.506,2.864474 +L 4.506,2.864474,4.6177,0.669598 +L 4.6177,0.669598,4.9225,0 +L 4.9225,0,5.749,2.737379 +L 5.749,2.737379,5.8541,5.550965 +L 5.8541,5.550965,5.7736,8.466154 +L 5.7736,8.466154,6.3308,8.466154 +L 6.3308,8.466154,6.9013,8.466154 +L 6.9013,8.466154,7.4796,8.466154 +L 7.4796,8.466154,7.4796,5.644108 +L 7.4796,5.644108,7.4796,2.82204 +L 7.4796,2.82204,7.4796,0 +L 7.4796,0,7.1819,0 +L 7.1819,0,6.9013,0 +L 6.9013,0,6.6285,0 +L 6.2009,3.699196,6.4744,3.699196 +L 6.4744,3.699196,6.7612,3.699196 +L 6.7612,3.699196,7.0558,3.699196 +L 2.3902,4.76705,1.8473,5.439335 +L 1.8473,5.439335,1.357,6.230177 +L 1.357,6.230177,0.6813,6.90256 +L 6.2009,6.368634,6.4744,6.368634 +L 6.4744,6.368634,6.7612,6.368634 +L 6.7612,6.368634,7.0558,6.368634 +L 1.9597,6.90256,1.6582,7.336186 +L 1.6582,7.336186,1.5499,7.880029 +L 1.5499,7.880029,1.5324,9.000103 + +[丹] 20 +L 1.1383,0,2.1824,2.080549 +L 2.1824,2.080549,2.284,3.627112 +L 2.284,3.627112,0.7075,4.233068 +L 4.9493,0,5.3556,0 +L 5.3556,0,5.7756,0 +L 5.7756,0,6.1958,0 +L 6.1958,0,5.8039,3.520057 +L 5.8039,3.520057,4.8579,4.391368 +L 4.8579,4.391368,3.7301,4.349317 +L 3.7301,4.349317,2.7813,5.129105 +L 2.7813,5.129105,2.3855,8.466154 +L 2.3855,8.466154,3.6461,8.466154 +L 3.6461,8.466154,4.921,8.466154 +L 4.921,8.466154,6.1958,8.466154 +L 6.1958,8.466154,6.0978,6.165283 +L 6.0978,6.165283,6.3815,4.728819 +L 6.3815,4.728819,7.9054,4.233068 +L 4.5217,6.101747,4.2243,6.55793 +L 4.2243,6.55793,3.9441,7.005686 +L 3.9441,7.005686,3.6706,7.436444 + +[嘆] 63 +L 3.9142,0,4.4014,0.637063 +L 4.4014,0.637063,4.8883,1.257036 +L 4.8883,1.257036,5.3786,1.868645 +L 5.3786,1.868645,4.8039,1.971847 +L 4.8039,1.971847,4.2505,2.057882 +L 4.2505,2.057882,3.6974,2.135625 +L 7.5113,0,6.7936,1.247141 +L 6.7936,1.247141,6.0788,2.477399 +L 6.0788,2.477399,5.3786,3.699196 +L 5.3786,3.699196,4.9513,3.699196 +L 4.9513,3.699196,4.531,3.699196 +L 4.531,3.699196,4.1279,3.699196 +L 0.7379,2.135625,0.7379,4.07918 +L 0.7379,4.07918,0.7379,6.014175 +L 0.7379,6.014175,0.7379,7.932194 +L 0.7379,7.932194,1.2878,7.932194 +L 1.2878,7.932194,1.8478,7.932194 +L 1.8478,7.932194,2.4191,7.932194 +L 2.4191,7.932194,2.4191,6.014175 +L 2.4191,6.014175,2.4191,4.07918 +L 2.4191,4.07918,2.4191,2.135625 +L 2.4191,2.135625,1.8478,2.135625 +L 1.8478,2.135625,1.2878,2.135625 +L 1.2878,2.135625,0.7379,2.135625 +L 6.6602,2.135625,7.084,2.135625 +L 7.084,2.135625,7.5113,2.135625 +L 7.5113,2.135625,7.9421,2.135625 +L 6.2329,3.699196,5.5818,4.450626 +L 5.5818,4.450626,5.0385,4.727484 +L 5.0385,4.727484,4.1279,4.76705 +L 4.1279,4.76705,4.1279,5.300878 +L 4.1279,5.300878,4.1279,5.834761 +L 4.1279,5.834761,4.1279,6.368634 +L 4.1279,6.368634,5.256,6.368634 +L 5.256,6.368634,6.3835,6.368634 +L 6.3835,6.368634,7.5113,6.368634 +L 7.5113,6.368634,7.5113,5.834761 +L 7.5113,5.834761,7.5113,5.300878 +L 7.5113,5.300878,7.5113,4.76705 +L 7.5113,4.76705,7.084,4.76705 +L 7.084,4.76705,6.6602,4.76705 +L 6.6602,4.76705,6.2329,4.76705 +L 6.2329,4.76705,6.0788,5.137019 +L 6.0788,5.137019,5.9352,5.490109 +L 5.9352,5.490109,5.8024,5.834761 +L 6.6602,3.699196,6.9337,3.699196 +L 6.9337,3.699196,7.2136,3.699196 +L 7.2136,3.699196,7.5113,3.699196 +L 3.6974,7.932194,4.1037,7.932194 +L 4.1037,7.932194,4.524,7.932194 +L 4.524,7.932194,4.9513,7.932194 +L 4.9513,7.932194,4.9513,8.302371 +L 4.9513,8.302371,4.9513,8.655373 +L 4.9513,8.655373,4.9513,9.000103 +L 5.3786,7.932194,5.8024,7.932194 +L 5.8024,7.932194,6.2329,7.932194 +L 6.2329,7.932194,6.6602,7.932194 +L 6.6602,7.932194,6.6602,8.302371 +L 6.6602,8.302371,6.6602,8.655373 +L 6.6602,8.655373,6.6602,9.000103 +L 7.084,7.932194,7.361,7.932194 +L 7.361,7.932194,7.6447,7.932194 +L 7.6447,7.932194,7.9421,7.932194 + +[淡] 33 +L 0.7399,0,0.9605,1.55511 +L 0.9605,1.55511,1.3738,2.957684 +L 1.3738,2.957684,1.5945,4.233068 +L 3.0581,0,3.8322,0.903955 +L 3.8322,0.903955,4.6167,1.790995 +L 4.6167,1.790995,5.4083,2.669492 +L 5.4083,2.669492,5.4083,3.202012 +L 5.4083,3.202012,5.4083,3.726078 +L 5.4083,3.726078,5.4083,4.233068 +L 7.5133,0,6.9424,0.723169 +L 6.9424,0.723169,6.382,1.437899 +L 6.382,1.437899,5.8356,2.135625 +L 3.2721,2.669492,3.4014,3.012694 +L 3.4014,3.012694,3.545,3.356011 +L 3.545,3.356011,3.7026,3.699196 +L 7.3,2.936395,7.363,3.202012 +L 7.363,3.202012,7.4327,3.459114 +L 7.4327,3.459114,7.5133,3.699196 +L 3.0581,4.76705,3.8322,5.670968 +L 3.8322,5.670968,4.6167,6.55793 +L 4.6167,6.55793,5.4083,7.436444 +L 5.4083,7.436444,5.4083,7.96897 +L 5.4083,7.96897,5.4083,8.493035 +L 5.4083,8.493035,5.4083,9.000103 +L 7.5133,4.76705,6.9424,5.490109 +L 6.9424,5.490109,6.382,6.204829 +L 6.382,6.204829,5.8356,6.90256 +L 3.2721,7.436444,3.4014,7.779651 +L 3.4014,7.779651,3.545,8.122935 +L 3.545,8.122935,3.7026,8.466154 +L 7.3,7.70344,7.363,7.96897 +L 7.363,7.96897,7.4327,8.226038 +L 7.4327,8.226038,7.5133,8.466154 + +[端,,] 54 +L 4.1603,0,4.1603,1.247141 +L 4.1603,1.247141,4.1603,2.477399 +L 4.1603,2.477399,4.1603,3.699196 +L 4.1603,3.699196,4.7907,3.748559 +L 4.7907,3.748559,5.2247,4.094645 +L 5.2247,4.094645,5.8341,5.033937 +L 5.8341,5.033937,5.134,5.137019 +L 5.134,5.137019,4.43,5.223222 +L 4.43,5.223222,3.7291,5.300878 +L 5.4387,0,5.4523,2.247173 +L 5.4523,2.247173,5.5577,3.206227 +L 5.5577,3.206227,5.8341,3.699196 +L 5.8341,3.699196,6.3913,3.699196 +L 6.3913,3.699196,6.9654,3.699196 +L 6.9654,3.699196,7.5436,3.699196 +L 7.5436,3.699196,7.5436,2.477399 +L 7.5436,2.477399,7.5436,1.247141 +L 7.5436,1.247141,7.5436,0 +L 6.2652,0,6.2652,1.066387 +L 6.2652,1.066387,6.2652,2.124292 +L 6.2652,2.124292,6.2652,3.165259 +L 0.7695,1.601682,2.2511,2.182268 +L 2.2511,2.182268,2.7975,3.703432 +L 2.7975,3.703432,2.8745,5.834761 +L 1.1968,3.165259,1.1793,4.332035 +L 1.1793,4.332035,1.0708,5.02402 +L 1.0708,5.02402,0.7695,5.834761 +L 6.2652,5.300878,6.8218,5.300878 +L 6.8218,5.300878,7.3927,5.300878 +L 7.3927,5.300878,7.9709,5.300878 +L 0.7695,6.90256,1.1793,6.90256 +L 1.1793,6.90256,1.593,6.90256 +L 1.593,6.90256,2.0203,6.90256 +L 2.0203,6.90256,2.0203,7.615878 +L 2.0203,7.615878,2.0203,8.312155 +L 2.0203,8.312155,2.0203,9.000103 +L 2.4507,6.90256,2.7208,6.90256 +L 2.7208,6.90256,3.008,6.90256 +L 3.008,6.90256,3.3018,6.90256 +L 4.1603,6.90256,4.1603,7.435087 +L 4.1603,7.435087,4.1603,7.959152 +L 4.1603,7.959152,4.1603,8.466154 +L 4.5841,6.90256,4.9904,6.90256 +L 4.9904,6.90256,5.4103,6.90256 +L 5.4103,6.90256,5.8341,6.90256 +L 5.8341,6.90256,5.8341,7.615878 +L 5.8341,7.615878,5.8341,8.312155 +L 5.8341,8.312155,5.8341,9.000103 +L 6.2652,6.90256,6.6925,6.90256 +L 6.6925,6.90256,7.1163,6.90256 +L 7.1163,6.90256,7.5436,6.90256 +L 7.5436,6.90256,7.5436,7.435087 +L 7.5436,7.435087,7.5436,7.959152 +L 7.5436,7.959152,7.5436,8.466154 + +[胆] 36 +L 0.768,0.26698,1.0728,1.104586 +L 1.0728,1.104586,1.1852,3.23024 +L 1.1852,3.23024,1.1988,8.466154 +L 1.1988,8.466154,1.7592,8.466154 +L 1.7592,8.466154,2.3266,8.466154 +L 2.3266,8.466154,2.9084,8.466154 +L 2.9084,8.466154,2.9084,5.644108 +L 2.9084,5.644108,2.9084,2.82204 +L 2.9084,2.82204,2.9084,0 +L 2.9084,0,2.6103,0 +L 2.6103,0,2.3266,0 +L 2.3266,0,2.0499,0 +L 3.7595,0,5.1671,0 +L 5.1671,0,6.5786,0 +L 6.5786,0,8.0006,0 +L 4.5822,2.135625,4.5822,4.259873 +L 4.5822,4.259873,4.5822,6.367265 +L 4.5822,6.367265,4.5822,8.466154 +L 4.5822,8.466154,5.4407,8.466154 +L 5.4407,8.466154,6.2918,8.466154 +L 6.2918,8.466154,7.1495,8.466154 +L 7.1495,8.466154,7.1495,6.367265 +L 7.1495,6.367265,7.1495,4.259873 +L 7.1495,4.259873,7.1495,2.135625 +L 7.1495,2.135625,6.2918,2.135625 +L 6.2918,2.135625,5.4407,2.135625 +L 5.4407,2.135625,4.5822,2.135625 +L 1.6261,3.699196,1.9028,3.699196 +L 1.9028,3.699196,2.1834,3.699196 +L 2.1834,3.699196,2.4772,3.699196 +L 5.0134,5.300878,5.5734,5.300878 +L 5.5734,5.300878,6.1408,5.300878 +L 6.1408,5.300878,6.7222,5.300878 +L 1.6261,6.368634,1.9028,6.368634 +L 1.9028,6.368634,2.1834,6.368634 +L 2.1834,6.368634,2.4772,6.368634 + +[鍛] 60 +L 0.8019,0,1.2257,0 +L 1.2257,0,1.6565,0 +L 1.6565,0,2.0835,0 +L 2.0835,0,2.1574,2.286745 +L 2.1574,2.286745,1.9469,4.056523 +L 1.9469,4.056523,0.8019,4.76705 +L 3.7615,0,3.5373,1.066387 +L 3.5373,1.066387,3.1275,2.124292 +L 3.1275,2.124292,2.9069,3.165259 +L 5.4703,0,5.8731,0.533943 +L 5.8731,0.533943,6.2934,1.067815 +L 6.2934,1.067815,6.7176,1.601682 +L 6.7176,1.601682,6.1393,2.741599 +L 6.1393,2.741599,5.926,3.423784 +L 5.926,3.423784,5.8976,4.233068 +L 5.8976,4.233068,6.444,4.233068 +L 6.444,4.233068,7.0044,4.233068 +L 7.0044,4.233068,7.5718,4.233068 +L 7.5718,4.233068,7.4251,3.54522 +L 7.4251,3.54522,7.2779,2.84891 +L 7.2779,2.84891,7.148,2.135625 +L 8.0026,0,7.7052,0.370083 +L 7.7052,0.370083,7.4251,0.723169 +L 7.4251,0.723169,7.148,1.067815 +L 1.2257,1.868645,1.0783,2.314956 +L 1.0783,2.314956,0.9312,2.744281 +L 0.9312,2.744281,0.8019,3.165259 +L 4.1884,1.601682,3.8872,2.211869 +L 3.8872,2.211869,3.7755,3.991531 +L 3.7755,3.991531,3.7615,8.466154 +L 3.7615,8.466154,4.3776,8.48592 +L 4.3776,8.48592,4.7107,8.624257 +L 4.7107,8.624257,5.0395,9.000103 +L 2.5076,4.76705,2.206,5.182233 +L 2.206,5.182233,2.1013,5.597448 +L 2.1013,5.597448,2.0835,6.368634 +L 2.0835,6.368634,1.4635,6.388477 +L 1.4635,6.388477,1.1343,6.526901 +L 1.1343,6.526901,0.8019,6.90256 +L 0.8019,6.90256,1.2257,7.615878 +L 1.2257,7.615878,1.6565,8.312155 +L 1.6565,8.312155,2.0835,9.000103 +L 2.0835,9.000103,2.3605,8.655373 +L 2.3605,8.655373,2.6298,8.302371 +L 2.6298,8.302371,2.9069,7.932194 +L 5.4703,6.101747,5.7715,6.723136 +L 5.7715,6.723136,5.8805,7.336186 +L 5.8805,7.336186,5.8976,8.466154 +L 5.8976,8.466154,6.3004,8.466154 +L 6.3004,8.466154,6.7207,8.466154 +L 6.7207,8.466154,7.148,8.466154 +L 7.148,8.466154,7.148,7.588975 +L 7.148,7.588975,7.148,6.711819 +L 7.148,6.711819,7.148,5.834761 +L 7.148,5.834761,7.4251,5.834761 +L 7.4251,5.834761,7.7052,5.834761 +L 7.7052,5.834761,8.0026,5.834761 +L 8.0026,5.834761,8.0026,6.204829 +L 8.0026,6.204829,8.0026,6.55793 +L 8.0026,6.55793,8.0026,6.90256 + +[壇] 57 +L 2.9401,0,4.6251,0 +L 4.6251,0,6.3234,0 +L 6.3234,0,8.0295,0 +L 4.2188,1.067815,4.2188,1.781122 +L 4.2188,1.781122,4.2188,2.477399 +L 4.2188,2.477399,4.2188,3.165259 +L 4.2188,3.165259,5.0524,3.165259 +L 5.0524,3.165259,5.9,3.165259 +L 5.9,3.165259,6.7511,3.165259 +L 6.7511,3.165259,6.7511,2.477399 +L 6.7511,2.477399,6.7511,1.781122 +L 6.7511,1.781122,6.7511,1.067815 +L 6.7511,1.067815,5.9,1.067815 +L 5.9,1.067815,5.0524,1.067815 +L 5.0524,1.067815,4.2188,1.067815 +L 0.8316,2.135625,1.1086,2.135625 +L 1.1086,2.135625,1.3815,2.135625 +L 1.3815,2.135625,1.655,2.135625 +L 1.655,2.135625,1.655,3.382783 +L 1.655,3.382783,1.655,4.612953 +L 1.655,4.612953,1.655,5.834761 +L 1.655,5.834761,1.3815,6.024069 +L 1.3815,6.024069,1.1086,6.204829 +L 1.1086,6.204829,0.8316,6.368634 +L 4.6461,2.135625,5.1995,2.135625 +L 5.1995,2.135625,5.7525,2.135625 +L 5.7525,2.135625,6.3234,2.135625 +L 3.7912,4.233068,3.7912,5.300878 +L 3.7912,5.300878,3.7912,6.368634 +L 3.7912,6.368634,3.7912,7.436444 +L 3.7912,7.436444,4.9189,7.436444 +L 4.9189,7.436444,6.0506,7.436444 +L 6.0506,7.436444,7.1784,7.436444 +L 7.1784,7.436444,7.1784,6.368634 +L 7.1784,6.368634,7.1784,5.300878 +L 7.1784,5.300878,7.1784,4.233068 +L 7.1784,4.233068,6.0506,4.233068 +L 6.0506,4.233068,4.9189,4.233068 +L 4.9189,4.233068,3.7912,4.233068 +L 4.6461,5.300878,4.6461,5.670968 +L 4.6461,5.670968,4.6461,6.024069 +L 4.6461,6.024069,4.6461,6.368634 +L 4.6461,6.368634,5.1995,6.368634 +L 5.1995,6.368634,5.7525,6.368634 +L 5.7525,6.368634,6.3234,6.368634 +L 6.3234,6.368634,6.3234,6.024069 +L 6.3234,6.024069,6.3234,5.670968 +L 6.3234,5.670968,6.3234,5.300878 +L 6.3234,5.300878,5.7525,5.300878 +L 5.7525,5.300878,5.1995,5.300878 +L 5.1995,5.300878,4.6461,5.300878 +L 2.0823,6.368634,1.7808,6.822038 +L 1.7808,6.822038,1.669,7.504293 +L 1.669,7.504293,1.655,9.000103 +L 2.9401,8.466154,4.6251,8.466154 +L 4.6251,8.466154,6.3234,8.466154 +L 6.3234,8.466154,8.0295,8.466154 + +[弾] 66 +L 1.2574,0,2.6657,0.716082 +L 2.6657,0.716082,3.009,2.372862 +L 3.009,2.372862,2.9669,4.233068 +L 2.9669,4.233068,2.3887,4.233068 +L 2.3887,4.233068,1.8181,4.233068 +L 1.8181,4.233068,1.2574,4.233068 +L 1.2574,4.233068,1.2574,4.956248 +L 1.2574,4.956248,1.2574,5.670968 +L 1.2574,5.670968,1.2574,6.368634 +L 1.2574,6.368634,1.8181,6.368634 +L 1.8181,6.368634,2.3887,6.368634 +L 2.3887,6.368634,2.9669,6.368634 +L 2.9669,6.368634,2.9669,7.082017 +L 2.9669,7.082017,2.9669,7.778316 +L 2.9669,7.778316,2.9669,8.466154 +L 2.9669,8.466154,2.2451,8.466154 +L 2.2451,8.466154,1.5376,8.466154 +L 1.5376,8.466154,0.8301,8.466154 +L 5.9297,0,5.7199,1.75701 +L 5.7199,1.75701,5.0369,2.183631 +L 5.0369,2.183631,3.7932,2.135625 +L 6.3538,2.135625,6.0592,2.668053 +L 6.0592,2.668053,5.772,3.192118 +L 5.772,3.192118,5.5027,3.699196 +L 5.5027,3.699196,5.0719,3.699196 +L 5.0719,3.699196,4.6446,3.699196 +L 4.6446,3.699196,4.2208,3.699196 +L 4.2208,3.699196,4.2208,4.76705 +L 4.2208,4.76705,4.2208,5.834761 +L 4.2208,5.834761,4.2208,6.90256 +L 4.2208,6.90256,5.2046,7.005686 +L 5.2046,7.005686,6.2032,7.091803 +L 6.2032,7.091803,7.208,7.169557 +L 7.208,7.169557,7.4816,7.779651 +L 7.4816,7.779651,7.7579,8.389931 +L 7.7579,8.389931,8.0346,9.000103 +L 6.7807,2.135625,7.1839,2.135625 +L 7.1839,2.135625,7.6042,2.135625 +L 7.6042,2.135625,8.0346,2.135625 +L 6.3538,3.699196,6.0592,4.233068 +L 6.0592,4.233068,5.772,4.76705 +L 5.772,4.76705,5.5027,5.300878 +L 5.5027,5.300878,5.2046,5.300878 +L 5.2046,5.300878,4.9209,5.300878 +L 4.9209,5.300878,4.6446,5.300878 +L 6.7807,3.699196,7.0578,3.699196 +L 7.0578,3.699196,7.338,3.699196 +L 7.338,3.699196,7.6353,3.699196 +L 7.6353,3.699196,7.6353,4.233068 +L 7.6353,4.233068,7.6353,4.76705 +L 7.6353,4.76705,7.6353,5.300878 +L 7.6353,5.300878,7.208,5.300878 +L 7.208,5.300878,6.7807,5.300878 +L 6.7807,5.300878,6.3538,5.300878 +L 6.3538,5.300878,6.2032,5.670968 +L 6.2032,5.670968,6.0592,6.024069 +L 6.0592,6.024069,5.9297,6.368634 +L 7.6353,5.834761,7.6353,6.204829 +L 7.6353,6.204829,7.6353,6.55793 +L 7.6353,6.55793,7.6353,6.90256 +L 4.2208,8.199169,4.0667,8.466154 +L 4.0667,8.466154,3.9231,8.733106 +L 3.9231,8.733106,3.7932,9.000103 +L 5.9297,8.199169,5.772,8.466154 +L 5.772,8.466154,5.6284,8.733106 +L 5.6284,8.733106,5.5027,9.000103 + +[恥] 39 +L 2.9689,0,2.9689,0.723169 +L 2.9689,0.723169,2.9689,1.437899 +L 2.9689,1.437899,2.9689,2.135625 +L 2.9689,2.135625,2.4821,1.971847 +L 2.4821,1.971847,1.9914,1.790995 +L 1.9914,1.790995,1.5046,1.601682 +L 1.5046,1.601682,1.4205,3.889883 +L 1.4205,3.889883,1.3508,6.177958 +L 1.3508,6.177958,1.2878,8.466154 +L 1.2878,8.466154,1.8408,8.466154 +L 1.8408,8.466154,2.398,8.466154 +L 2.398,8.466154,2.9689,8.466154 +L 2.9689,8.466154,2.9689,6.548058 +L 2.9689,6.548058,2.9689,4.612953 +L 2.9689,4.612953,2.9689,2.669492 +L 5.96,0,5.655,0.611534 +L 5.655,0.611534,5.5464,2.401172 +L 5.5464,2.401172,5.5289,6.90256 +L 6.3523,0,6.7827,0 +L 6.7827,0,7.21,0 +L 7.21,0,7.6338,0 +L 7.6338,0,7.6338,0.533943 +L 7.6338,0.533943,7.6338,1.067815 +L 7.6338,1.067815,7.6338,1.601682 +L 3.82,2.402622,4.1247,2.998673 +L 4.1247,2.998673,4.233,3.611569 +L 4.233,3.611569,4.2505,4.76705 +L 8.0611,2.669492,7.9109,3.382783 +L 7.9109,3.382783,7.7673,4.07918 +L 7.7673,4.07918,7.6338,4.76705 +L 1.7151,4.233068,1.9914,4.233068 +L 1.9914,4.233068,2.2681,4.233068 +L 2.2681,4.233068,2.5416,4.233068 +L 1.7151,6.368634,1.9914,6.368634 +L 1.9914,6.368634,2.2681,6.368634 +L 2.2681,6.368634,2.5416,6.368634 +L 6.7827,7.932194,6.5064,8.302371 +L 6.5064,8.302371,6.2297,8.655373 +L 6.2297,8.655373,5.96,9.000103 + +[痴] 28 +L 2.5436,0,3.0967,0.990171 +L 3.0967,0.990171,3.6711,1.971847 +L 3.6711,1.971847,4.2493,2.936395 +L 4.2493,2.936395,3.9201,3.473146 +L 3.9201,3.473146,3.587,3.670903 +L 3.587,3.670903,2.9674,3.699196 +L 5.0724,0.800852,4.9288,1.257052 +L 4.9288,1.257052,4.7989,1.704785 +L 4.7989,1.704785,4.6763,2.135642 +L 4.6763,3.699196,4.3716,4.134289 +L 4.3716,4.134289,4.2668,4.687961 +L 4.2668,4.687961,4.2493,5.834761 +L 4.2493,5.834761,3.608,5.795206 +L 3.608,5.795206,3.111,5.518435 +L 3.111,5.518435,2.3261,4.767061 +L 2.3261,4.767061,2.2456,5.833404 +L 2.2456,5.833404,2.172,6.891352 +L 2.172,6.891352,2.1163,7.932204 +L 5.1036,7.932281,5.1036,9.000146 +L 2.144,4.500021,2.144,7.932281 +L 2.144,7.932281,8.0631,7.932281 +L 0.8625,3.165335,2.144,4.44651 +L 0.8625,6.000001,2.144,6.000001 +L 5.927,5.834761,5.927,0.533943 +L 5.927,0.533943,7.6358,0.533943 +L 7.6358,0.533943,7.6358,5.834761 +L 7.6358,5.834761,5.927,5.834761 +A -6.4016,4.500021,8.542338,328.21115,0 + +[稚] 51 +L 2.1428,0,2.0623,1.411017 +L 2.0623,1.411017,1.9957,2.82204 +L 1.9957,2.82204,1.9288,4.233068 +L 1.9288,4.233068,1.5646,3.545231 +L 1.5646,3.545231,1.2077,2.84891 +L 1.2077,2.84891,0.8645,2.135642 +L 4.2478,0,4.1673,2.134202 +L 4.1673,2.134202,4.1007,4.259873 +L 4.1007,4.259873,4.0338,6.368634 +L 4.0338,6.368634,3.4034,6.111641 +L 3.4034,6.111641,2.7799,6.09183 +L 2.7799,6.09183,2.1428,5.834761 +L 2.1428,5.834761,2.3215,5.063664 +L 2.3215,5.063664,2.5421,4.648273 +L 2.5421,4.648273,3.0006,4.233068 +L 4.6748,0,5.1056,0 +L 5.1056,0,5.5294,0 +L 5.5294,0,5.9567,0 +L 5.9567,0,5.929,1.692106 +L 5.929,1.692106,5.6208,2.477399 +L 5.6208,2.477399,4.6748,2.669508 +L 6.384,0,6.9377,0 +L 6.9377,0,7.4907,0 +L 7.4907,0,8.0616,0 +L 6.384,2.669508,5.8516,3.755652 +L 5.8516,3.755652,5.6383,4.494362 +L 5.6383,4.494362,4.6748,4.767061 +L 6.8151,2.669508,7.0845,2.669508 +L 7.0845,2.669508,7.3615,2.669508 +L 7.3615,2.669508,7.6378,2.669508 +L 6.384,4.767061,5.7259,6.049506 +L 5.7259,6.049506,5.4597,6.713275 +L 5.4597,6.713275,4.2478,6.902582 +L 4.2478,6.902582,4.3809,7.615878 +L 4.3809,7.615878,4.5245,8.312155 +L 4.5245,8.312155,4.6748,9.000113 +L 6.8151,4.767061,7.0845,4.767061 +L 7.0845,4.767061,7.3615,4.767061 +L 7.3615,4.767061,7.6378,4.767061 +L 0.8645,6.368634,1.712,6.51983 +L 1.712,6.51983,2.0689,7.018361 +L 2.0689,7.018361,2.1428,7.932204 +L 2.1428,7.932204,1.7156,7.932204 +L 1.7156,7.932204,1.2918,7.932204 +L 1.2918,7.932204,0.8645,7.932204 +L 6.384,6.902582,6.1003,7.514111 +L 6.1003,7.514111,6.1003,8.057965 +L 6.1003,8.057965,6.384,9.000113 +L 6.8151,6.902582,7.2179,6.902582 +L 7.2179,6.902582,7.6378,6.902582 +L 7.6378,6.902582,8.0616,6.902582 + +[致] 48 +L 4.4635,0,5.0831,0.800852 +L 5.0831,0.800852,5.7135,1.601682 +L 5.7135,1.601682,6.3548,2.402622 +L 6.3548,2.402622,5.7629,3.987317 +L 5.7629,3.987317,5.4372,5.114449 +L 5.4372,5.114449,5.1041,5.834761 +L 5.1041,5.834761,4.8102,5.49012 +L 4.8102,5.49012,4.523,5.137019 +L 4.523,5.137019,4.2495,4.767061 +L 8.0636,0,7.6363,0.533943 +L 7.6363,0.533943,7.2055,1.067815 +L 7.2055,1.067815,6.7852,1.601682 +L 0.8595,1.067815,1.4128,1.067815 +L 1.4128,1.067815,1.9694,1.067815 +L 1.9694,1.067815,2.5406,1.067815 +L 2.5406,1.067815,2.5123,2.699159 +L 2.5123,2.699159,2.2075,3.491567 +L 2.2075,3.491567,1.2903,3.699196 +L 2.9644,1.601682,3.2408,1.601682 +L 3.2408,1.601682,3.5245,1.601682 +L 3.5245,1.601682,3.8225,1.601682 +L 6.7852,3.432233,7.0798,4.094645 +L 7.0798,4.094645,7.1915,4.99437 +L 7.1915,4.99437,7.2055,6.902582 +L 7.2055,6.902582,6.5051,6.738701 +L 6.5051,6.738701,5.8049,6.557953 +L 5.8049,6.557953,5.1041,6.368634 +L 2.9644,3.699196,2.6667,4.134289 +L 2.6667,4.134289,2.5578,4.687961 +L 2.5578,4.687961,2.5406,5.834761 +L 2.5406,5.834761,2.113,5.937974 +L 2.113,5.937974,1.693,6.024069 +L 1.693,6.024069,1.2903,6.101747 +L 1.2903,6.101747,1.5631,6.815 +L 1.5631,6.815,1.8401,7.511342 +L 1.8401,7.511342,2.113,8.19919 +L 2.113,8.19919,1.6857,8.302403 +L 1.6857,8.302403,1.2692,8.388486 +L 1.2692,8.388486,0.8595,8.466154 +L 3.1812,6.368634,3.3147,6.586234 +L 3.3147,6.586234,3.2583,6.863016 +L 3.2583,6.863016,2.9644,7.436444 +L 5.5314,7.436444,5.5314,7.96897 +L 5.5314,7.96897,5.5314,8.493035 +L 5.5314,8.493035,5.5314,9.000113 +L 2.5406,8.466154,3.0972,8.466154 +L 3.0972,8.466154,3.6716,8.466154 +L 3.6716,8.466154,4.2495,8.466154 + +[畜] 48 +L 2.1433,0,2.1433,1.247141 +L 2.1433,1.247141,2.1433,2.477399 +L 2.1433,2.477399,2.1433,3.699196 +L 2.1433,3.699196,3.5513,3.699196 +L 3.5513,3.699196,4.959,3.699196 +L 4.959,3.699196,6.3845,3.699196 +L 6.3845,3.699196,6.3845,2.477399 +L 6.3845,2.477399,6.3845,1.247141 +L 6.3845,1.247141,6.3845,0 +L 6.3845,0,4.959,0 +L 4.959,0,3.5513,0 +L 3.5513,0,2.1433,0 +L 4.2798,0.533943,4.0483,1.864448 +L 4.0483,1.864448,3.4358,2.177994 +L 3.4358,2.177994,2.5703,2.135642 +L 4.6788,2.135642,4.5352,2.47886 +L 4.5352,2.47886,4.4024,2.82204 +L 4.4024,2.82204,4.2798,3.165259 +L 5.1026,2.135642,5.3796,2.135642 +L 5.3796,2.135642,5.6633,2.135642 +L 5.6633,2.135642,5.9537,2.135642 +L 0.865,4.767061,1.8453,4.870132 +L 1.8453,4.870132,2.8473,4.956248 +L 2.8473,4.956248,3.8522,5.033937 +L 3.8522,5.033937,3.2746,5.670968 +L 3.2746,5.670968,2.7037,6.290934 +L 2.7037,6.290934,2.1433,6.902582 +L 4.462,4.767061,5.236,5.033937 +L 5.236,5.033937,6.0202,5.3009 +L 6.0202,5.3009,6.8121,5.567875 +L 6.8121,5.567875,6.6612,5.834761 +L 6.6612,5.834761,6.5144,6.101747 +L 6.5144,6.101747,6.3845,6.368634 +L 4.2798,5.834761,4.553,6.204829 +L 4.553,6.204829,4.8332,6.557953 +L 4.8332,6.557953,5.1026,6.902582 +L 3.4284,6.902582,3.5583,7.169557 +L 3.5583,7.169557,3.7019,7.436444 +L 3.7019,7.436444,3.8522,7.703451 +L 3.8522,7.703451,2.8473,7.779651 +L 2.8473,7.779651,1.8453,7.855982 +L 1.8453,7.855982,0.865,7.932204 +L 4.2798,7.932204,4.2798,8.302403 +L 4.2798,8.302403,4.2798,8.655373 +L 4.2798,8.655373,4.2798,9.000113 +L 4.6788,7.932204,5.6633,7.932204 +L 5.6633,7.932204,6.6612,7.932204 +L 6.6612,7.932204,7.6632,7.932204 + + +# kan_33 ------------------------------------------------------- +# 蓄逐秩窒嫡抽衷鋳駐弔彫徴懲挑眺聴脹超跳勅朕沈珍鎮陳津墜塚漬坪釣亭偵貞呈堤帝廷抵締艇訂逓邸泥摘滴哲徹撤 + +[蓄] 54 +L 1.2534,0,1.2534,1.067815 +L 1.2534,1.067815,1.2534,2.135642 +L 1.2534,2.135642,1.2534,3.203484 +L 1.2534,3.203484,2.6579,3.203484 +L 2.6579,3.203484,4.0694,3.203484 +L 4.0694,3.203484,5.4988,3.203484 +L 5.4988,3.203484,5.4988,2.135642 +L 5.4988,2.135642,5.4988,1.067815 +L 5.4988,1.067815,5.4988,0 +L 5.4988,0,4.0694,0 +L 4.0694,0,2.6579,0 +L 2.6579,0,1.2534,0 +L 3.3938,0.800934,3.0432,1.364479 +L 3.0432,1.364479,2.5984,1.572092 +L 2.5984,1.572092,1.6846,1.601775 +L 3.8176,1.601775,3.6631,1.971875 +L 3.6631,1.971875,3.523,2.324966 +L 3.523,2.324966,3.3938,2.669602 +L 4.2449,1.601775,4.5181,1.601775 +L 4.5181,1.601775,4.7944,1.601775 +L 4.7944,1.601775,5.0676,1.601775 +L 6.3498,4.004309,6.1989,4.269844 +L 6.1989,4.269844,6.0518,4.526836 +L 6.0518,4.526836,5.9187,4.767034 +L 5.9187,4.767034,5.4319,4.391303 +L 5.4319,4.391303,4.0102,4.252934 +L 4.0102,4.252934,0.4304,4.233091 +L 2.5353,5.034013,1.8874,5.795283 +L 1.8874,5.795283,1.341,6.141297 +L 1.341,6.141297,0.4304,6.368732 +L 3.8176,4.767034,4.0939,5.223233 +L 4.0939,5.223233,4.3745,5.670984 +L 4.3745,5.670984,4.6718,6.10173 +L 4.6718,6.10173,4.0939,6.02408 +L 4.0939,6.02408,3.523,5.937947 +L 3.523,5.937947,2.9626,5.83475 +L 5.0676,6.368732,5.4988,6.368732 +L 5.4988,6.368732,5.9187,6.368732 +L 5.9187,6.368732,6.3498,6.368732 +L 0.0034,7.970409,0.7035,7.970409 +L 0.7035,7.970409,1.4075,7.970409 +L 1.4075,7.970409,2.1084,7.970409 +L 2.1084,7.970409,2.1084,8.313594 +L 2.1084,8.313594,2.1084,8.656911 +L 2.1084,8.656911,2.1084,9.000103 +L 2.5353,7.970409,3.2358,7.970409 +L 3.2358,7.970409,3.9468,7.970409 +L 3.9468,7.970409,4.6718,7.970409 +L 4.6718,7.970409,4.6718,8.313594 +L 4.6718,8.313594,4.6718,8.656911 +L 4.6718,8.656911,4.6718,9.000103 +L 5.0676,7.970409,5.6245,7.970409 +L 5.6245,7.970409,6.1989,7.970409 +L 6.1989,7.970409,6.7768,7.970409 + +[逐] 33 +L 3.8157,1.601775,4.436,1.621564 +L 4.436,1.621564,4.7649,1.759988 +L 4.7649,1.759988,5.0976,2.135642 +L 5.0976,2.135642,5.0171,2.848916 +L 5.0171,2.848916,4.947,3.545242 +L 4.947,3.545242,4.884,4.233091 +L 4.884,4.233091,3.9663,3.726083 +L 3.9663,3.726083,3.0522,3.202024 +L 3.0522,3.202024,2.1416,2.669602 +L 6.8068,2.936499,6.0118,3.916732 +L 6.0118,3.916732,5.2272,4.880032 +L 5.2272,4.880032,4.457,5.83475 +L 4.457,5.83475,3.8157,5.490219 +L 3.8157,5.490219,3.1853,5.137117 +L 3.1853,5.137117,2.5653,4.767034 +L 5.5249,5.3009,5.9557,5.83475 +L 5.9557,5.83475,6.376,6.368732 +L 6.376,6.368732,6.8068,6.902593 +L 2.779,6.368732,3.8262,6.971788 +L 3.8262,6.971788,4.3166,7.456315 +L 4.3166,7.456315,4.6668,8.237377 +L 4.6668,8.237377,3.8157,8.340509 +L 3.8157,8.340509,2.9716,8.426592 +L 2.9716,8.426592,2.1416,8.504358 +L 5.0976,8.504358,5.802,8.504358 +L 5.802,8.504358,6.5126,8.504358 +L 6.5126,8.504358,7.2341,8.504358 +L 5.0871,-0.015186,7.2166,-0.015186 +L 1.2694,1.05247,0.2187,0 +L 0.0191,4.751716,1.2694,4.751716 +L 1.2694,1.05247,1.2694,4.751716 +L 0.4429,8.48915,1.2694,7.421257 +A 5.0871,7.347838,7.362973,238.75988,270 + +[秩] 48 +L 1.3135,0,1.2329,1.411023 +L 1.2329,1.411023,1.1629,2.82216 +L 1.1629,2.82216,1.1033,4.233091 +L 1.1033,4.233091,0.7356,3.545242 +L 0.7356,3.545242,0.3787,2.848916 +L 0.3787,2.848916,0.0351,2.135642 +L 2.9946,0,3.6951,1.257145 +L 3.6951,1.257145,4.4065,2.505747 +L 4.4065,2.505747,5.1245,3.737329 +L 5.1245,3.737329,4.7669,4.086195 +L 4.7669,4.086195,4.2139,4.214839 +L 4.2139,4.214839,2.9946,4.233091 +L 7.2361,0,6.6652,1.067815 +L 6.6652,1.067815,6.1052,2.135642 +L 6.1052,2.135642,5.5549,3.203484 +L 2.14,4.233091,1.7131,4.95627 +L 1.7131,4.95627,1.296,5.670984 +L 1.296,5.670984,0.8897,6.368732 +L 0.8897,6.368732,0.592,6.368732 +L 0.592,6.368732,0.3118,6.368732 +L 0.3118,6.368732,0.0351,6.368732 +L 5.5549,4.233091,5.2366,5.043826 +L 5.2366,5.043826,5.0191,6.091874 +L 5.0191,6.091874,4.7038,6.902593 +L 4.7038,6.902593,3.7827,6.685146 +L 3.7827,6.685146,3.3449,6.408278 +L 3.3449,6.408278,2.9946,5.83475 +L 2.9946,5.83475,2.14,6.456293 +L 2.14,6.456293,1.5376,6.764241 +L 1.5376,6.764241,1.3135,7.970409 +L 1.3135,7.970409,0.8897,7.970409 +L 0.8897,7.970409,0.4592,7.970409 +L 0.4592,7.970409,0.0351,7.970409 +L 5.9822,4.233091,6.385,4.233091 +L 6.385,4.233091,6.8057,4.233091 +L 6.8057,4.233091,7.2361,4.233091 +L 5.5549,6.902593,5.2537,7.33623 +L 5.2537,7.33623,5.1417,7.880062 +L 5.1417,7.880062,5.1245,9.000103 +L 5.9822,6.902593,6.2593,6.902593 +L 6.2593,6.902593,6.5356,6.902593 +L 6.5356,6.902593,6.8057,6.902593 +L 3.8496,7.436547,3.8496,7.806631 +L 3.8496,7.806631,3.8496,8.159706 +L 3.8496,8.159706,3.8496,8.504358 +L 1.7408,7.970409,2.014,8.159706 +L 2.014,8.159706,2.2942,8.340509 +L 2.2942,8.340509,2.5673,8.504358 + +[窒] 60 +L 0.0616,0,1.1929,0 +L 1.1929,0,2.321,0 +L 2.321,0,3.452,0 +L 3.452,0,3.0457,1.500002 +L 3.0457,1.500002,2.0688,1.728892 +L 2.0688,1.728892,0.8882,1.601775 +L 3.8796,0,4.8529,0 +L 4.8529,0,5.8371,0 +L 5.8371,0,6.8388,0 +L 3.8796,1.601775,3.5781,2.017089 +L 3.5781,2.017089,3.466,2.432289 +L 3.466,2.432289,3.452,3.203484 +L 3.452,3.203484,2.5974,3.203484 +L 2.5974,3.203484,1.7431,3.203484 +L 1.7431,3.203484,0.8882,3.203484 +L 4.3066,1.601775,4.8529,1.601775 +L 4.8529,1.601775,5.4133,1.601775 +L 5.4133,1.601775,5.9846,1.601775 +L 6.4084,3.203484,6.1138,3.546664 +L 6.1138,3.546664,5.8301,3.889883 +L 5.8301,3.889883,5.5569,4.233091 +L 5.5569,4.233091,5.207,3.884307 +L 5.207,3.884307,4.7759,3.755663 +L 4.7759,3.755663,3.8796,3.737329 +L 2.1736,3.737329,2.4436,4.183646 +L 2.4436,4.183646,2.7273,4.613036 +L 2.7273,4.613036,3.0247,5.034013 +L 3.0247,5.034013,2.1736,5.137117 +L 2.1736,5.137117,1.3225,5.223233 +L 1.3225,5.223233,0.4924,5.3009 +L 5.1296,5.034013,4.5591,5.137117 +L 4.5591,5.137117,4.0022,5.223233 +L 4.0022,5.223233,3.452,5.3009 +L 5.5569,5.3009,5.8301,5.3009 +L 5.8301,5.3009,6.1138,5.3009 +L 6.1138,5.3009,6.4084,5.3009 +L 1.5291,6.368732,1.8724,6.824915 +L 1.8724,6.824915,2.2331,7.272671 +L 2.2331,7.272671,2.5974,7.703429 +L 2.5974,7.703429,1.7431,7.806631 +L 1.7431,7.806631,0.8987,7.892824 +L 0.8987,7.892824,0.0616,7.970409 +L 0.0616,7.970409,0.0616,7.625763 +L 0.0616,7.625763,0.0616,7.272671 +L 0.0616,7.272671,0.0616,6.902593 +L 4.3066,6.368732,4.3066,6.902593 +L 4.3066,6.902593,4.3066,7.436547 +L 4.3066,7.436547,4.3066,7.970409 +L 4.3066,7.970409,3.8796,7.970409 +L 3.8796,7.970409,3.452,7.970409 +L 3.452,7.970409,3.0247,7.970409 +L 4.6992,6.368732,5.1296,6.368732 +L 5.1296,6.368732,5.5569,6.368732 +L 5.5569,6.368732,5.9846,6.368732 +L 6.8388,6.902593,6.8388,7.272671 +L 6.8388,7.272671,6.8388,7.625763 +L 6.8388,7.625763,6.8388,7.970409 +L 6.8388,7.970409,6.1138,7.970409 +L 6.1138,7.970409,5.4067,7.970409 +L 5.4067,7.970409,4.6992,7.970409 + +[嫡] 49 +L 3.447,0,3.447,1.944993 +L 3.447,1.944993,3.447,3.889883 +L 3.447,3.889883,3.447,5.83475 +L 3.447,5.83475,3.7275,5.83475 +L 3.7275,5.83475,4.0074,5.83475 +L 4.0074,5.83475,4.3054,5.83475 +L 4.3054,5.83475,4.1545,6.471814 +L 4.1545,6.471814,4.0074,7.091895 +L 4.0074,7.091895,3.8781,7.703429 +L 3.8781,7.703429,3.6049,7.806631 +L 3.6049,7.806631,3.3317,7.892824 +L 3.3317,7.892824,3.0547,7.970409 +L 6.0146,0,6.2878,0 +L 6.2878,0,6.5715,0 +L 6.5715,0,6.8657,0 +L 6.8657,0,6.8657,1.944993 +L 6.8657,1.944993,6.8657,3.889883 +L 6.8657,3.889883,6.8657,5.83475 +L 6.8657,5.83475,6.2878,5.83475 +L 6.2878,5.83475,5.7166,5.83475 +L 5.7166,5.83475,5.1565,5.83475 +L 5.1565,5.83475,5.1877,5.063577 +L 5.1877,5.063577,5.4118,4.648372 +L 5.4118,4.648372,6.0146,4.233091 +L 4.3054,1.601775,4.3054,2.135642 +L 4.3054,2.135642,4.3054,2.669602 +L 4.3054,2.669602,4.3054,3.203484 +L 4.3054,3.203484,4.5818,3.306561 +L 4.5818,3.306561,4.8623,3.392776 +L 4.8623,3.392776,5.1565,3.470437 +L 5.1565,3.470437,4.8623,3.735994 +L 4.8623,3.735994,4.5818,3.992986 +L 4.5818,3.992986,4.3054,4.233091 +L 4.7359,1.601775,5.1565,1.601775 +L 5.1565,1.601775,5.587,1.601775 +L 5.587,1.601775,6.0146,1.601775 +L 6.0146,1.601775,5.864,2.135642 +L 5.864,2.135642,5.7166,2.669602 +L 5.7166,2.669602,5.587,3.203484 +L 6.0146,6.368732,6.3155,6.784024 +L 6.3155,6.784024,6.4275,7.19924 +L 6.4275,7.19924,6.4419,7.970409 +L 6.4419,7.970409,5.7166,7.970409 +L 5.7166,7.970409,5.0056,7.970409 +L 5.0056,7.970409,4.3054,7.970409 +L 3.4648,6.33032,-0.1325,6.33032 +L 0.7224,3.326536,1.3455,8.9999 +A -4.6682,-3.399562,8.620982,23.224227,51.278884 +A -6.528,6.33032,9.138971,316.15783,0 + +[抽] 45 +L 0.5209,0,0.7976,0 +L 0.7976,0,1.0813,0 +L 1.0813,0,1.3794,0 +L 1.3794,0,1.3615,2.648395 +L 1.3615,2.648395,1.2529,3.745784 +L 1.2529,3.745784,0.9482,4.233091 +L 0.9482,4.233091,0.654,4.079174 +L 0.654,4.079174,0.3738,3.916732 +L 0.3738,3.916732,0.094,3.737329 +L 3.4843,0,3.4843,2.315049 +L 3.4843,2.315049,3.4843,4.613036 +L 3.4843,4.613036,3.4843,6.902593 +L 3.4843,6.902593,4.6853,7.048131 +L 4.6853,7.048131,5.1266,7.65973 +L 5.1266,7.65973,5.1932,9.000103 +L 3.9043,0,4.3354,0 +L 4.3354,0,4.7624,0 +L 4.7624,0,5.1932,0 +L 5.1932,0,5.2107,2.05375 +L 5.2107,2.05375,4.9445,3.310769 +L 4.9445,3.310769,3.9043,3.737329 +L 5.5855,0,6.0166,0 +L 6.0166,0,6.4404,0 +L 6.4404,0,6.8674,0 +L 6.8674,0,6.8674,1.257145 +L 6.8674,1.257145,6.8674,2.505747 +L 6.8674,2.505747,6.8674,3.737329 +L 6.8674,3.737329,6.356,3.840444 +L 6.356,3.840444,5.8625,3.926637 +L 5.8625,3.926637,5.3753,4.004309 +L 5.3753,4.004309,5.2597,5.687894 +L 5.2597,5.687894,5.3161,6.439285 +L 5.3161,6.439285,5.5855,6.902593 +L 5.5855,6.902593,6.0166,6.902593 +L 6.0166,6.902593,6.4404,6.902593 +L 6.4404,6.902593,6.8674,6.902593 +L 6.8674,6.902593,6.8674,6.02408 +L 6.8674,6.02408,6.8674,5.137117 +L 6.8674,5.137117,6.8674,4.233091 +L 1.7751,4.233091,1.2704,5.552317 +L 1.2704,5.552317,1.0852,6.524131 +L 1.0852,6.524131,0.094,6.902593 +L 1.7751,6.902593,1.4946,7.33623 +L 1.4946,7.33623,1.3899,7.880062 +L 1.3899,7.880062,1.3794,9.000103 + +[衷] 54 +L 0.9467,0,1.3775,0 +L 1.3775,0,1.8052,0 +L 1.8052,0,2.2321,0 +L 2.2321,0,2.1484,0.904048 +L 2.1484,0.904048,2.0815,1.791034 +L 2.0815,1.791034,2.0188,2.669602 +L 2.0188,2.669602,1.3775,2.324966 +L 1.3775,2.324966,0.7471,1.971875 +L 0.7471,1.971875,0.1271,1.601775 +L 2.6594,0,2.989,0.375742 +L 2.989,0.375742,3.3217,0.514176 +L 3.3217,0.514176,3.9417,0.533965 +L 6.4736,0,4.9395,1.758543 +L 4.9395,1.758543,4.169,2.856047 +L 4.169,2.856047,3.5105,4.233091 +L 3.5105,4.233091,3.2131,3.889883 +L 3.2131,3.889883,2.9326,3.546664 +L 2.9326,3.546664,2.6594,3.203484 +L 5.1882,2.135642,5.6193,2.669602 +L 5.6193,2.669602,6.0428,3.203484 +L 6.0428,3.203484,6.4736,3.737329 +L 0.9467,4.767034,0.9467,5.3009 +L 0.9467,5.3009,0.9467,5.83475 +L 0.9467,5.83475,0.9467,6.368732 +L 0.9467,6.368732,1.6546,6.368732 +L 1.6546,6.368732,2.3621,6.368732 +L 2.3621,6.368732,3.0867,6.368732 +L 3.0867,6.368732,3.3669,6.961993 +L 3.3669,6.961993,3.3669,7.377116 +L 3.3669,7.377116,3.0867,7.970409 +L 3.0867,7.970409,2.092,7.970409 +L 2.092,7.970409,1.1008,7.970409 +L 1.1008,7.970409,0.1271,7.970409 +L 1.3775,4.767034,1.9348,4.767034 +L 1.9348,4.767034,2.5053,4.767034 +L 2.5053,4.767034,3.0867,4.767034 +L 3.0867,4.767034,3.3638,5.3009 +L 3.3638,5.3009,3.6436,5.83475 +L 3.6436,5.83475,3.9417,6.368732 +L 3.9417,6.368732,4.6418,6.368732 +L 4.6418,6.368732,5.3423,6.368732 +L 5.3423,6.368732,6.0428,6.368732 +L 6.0428,6.368732,6.0428,5.83475 +L 6.0428,5.83475,6.0428,5.3009 +L 6.0428,5.3009,6.0428,4.767034 +L 6.0428,4.767034,5.3423,4.767034 +L 5.3423,4.767034,4.6418,4.767034 +L 4.6418,4.767034,3.9417,4.767034 +L 3.9417,7.970409,3.7875,8.313594 +L 3.7875,8.313594,3.6436,8.656911 +L 3.6436,8.656911,3.5105,9.000103 +L 4.3371,7.970409,5.1882,7.970409 +L 5.1882,7.970409,6.0428,7.970409 +L 6.0428,7.970409,6.8977,7.970409 + +[鋳] 63 +L 0.126,0,0.5529,0 +L 0.5529,0,0.9802,0 +L 0.9802,0,1.4114,0 +L 1.4114,0,1.4814,2.286745 +L 1.4814,2.286745,1.2709,4.056545 +L 1.2709,4.056545,0.126,4.767034 +L 5.6455,0,5.926,0 +L 5.926,0,6.2062,0 +L 6.2062,0,6.5004,0 +L 6.5004,0,6.367,2.525503 +L 6.367,2.525503,5.6599,3.220455 +L 5.6599,3.220455,3.9363,3.203484 +L 3.9363,3.203484,3.9086,2.412406 +L 3.9086,2.412406,3.688,1.858866 +L 3.688,1.858866,3.0852,1.067815 +L 0.5529,1.868662,0.4023,2.324966 +L 0.4023,2.324966,0.2556,2.7727 +L 0.2556,2.7727,0.126,3.203484 +L 2.2621,2.135642,2.2621,2.505747 +L 2.2621,2.505747,2.2621,2.858827 +L 2.2621,2.858827,2.2621,3.203484 +L 6.8994,3.203484,6.623,3.617326 +L 6.623,3.617326,6.5176,4.022653 +L 6.5176,4.022653,6.5004,4.767034 +L 6.5004,4.767034,5.7751,4.767034 +L 5.7751,4.767034,5.0676,4.767034 +L 5.0676,4.767034,4.3675,4.767034 +L 4.3675,4.767034,4.3675,4.423832 +L 4.3675,4.423832,4.3675,4.080526 +L 4.3675,4.080526,4.3675,3.737329 +L 1.8352,4.767034,1.5305,5.182233 +L 1.5305,5.182233,1.425,5.597537 +L 1.425,5.597537,1.4114,6.368732 +L 1.4114,6.368732,0.7914,6.388499 +L 0.7914,6.388499,0.4587,6.526846 +L 0.4587,6.526846,0.126,6.902593 +L 0.126,6.902593,0.5529,7.615884 +L 0.5529,7.615884,0.9802,8.31227 +L 0.9802,8.31227,1.4114,9.000103 +L 1.4114,9.000103,1.6807,8.656911 +L 1.6807,8.656911,1.9644,8.313594 +L 1.9644,8.313594,2.2621,7.970409 +L 3.0852,4.767034,3.3622,4.767034 +L 3.3622,4.767034,3.6421,4.767034 +L 3.6421,4.767034,3.9363,4.767034 +L 4.7944,5.3009,4.7944,5.670984 +L 4.7944,5.670984,4.7944,6.02408 +L 4.7944,6.02408,4.7944,6.368732 +L 4.7944,6.368732,4.3675,6.368732 +L 4.3675,6.368732,3.9363,6.368732 +L 3.9363,6.368732,3.5164,6.368732 +L 5.2217,6.368732,4.987,7.699182 +L 4.987,7.699182,4.3745,8.012816 +L 4.3745,8.012816,3.5164,7.970409 +L 5.6455,6.368732,6.0556,6.368732 +L 6.0556,6.368732,6.4724,6.368732 +L 6.4724,6.368732,6.8994,6.368732 +L 5.6455,7.970409,5.4949,8.313594 +L 5.4949,8.313594,5.3513,8.656911 +L 5.3513,8.656911,5.2217,9.000103 +L 6.0766,7.970409,6.346,7.970409 +L 6.346,7.970409,6.6262,7.970409 +L 6.6262,7.970409,6.8994,7.970409 + +[駐] 51 +L 1.8337,0,3.1993,0.613066 +L 3.1993,0.613066,3.5635,2.056541 +L 3.5635,2.056541,3.5425,3.737329 +L 3.5425,3.737329,2.5447,3.737329 +L 2.5447,3.737329,1.5636,3.737329 +L 1.5636,3.737329,0.583,3.737329 +L 0.583,3.737329,0.583,5.337654 +L 0.583,5.337654,0.583,6.929474 +L 0.583,6.929474,0.583,8.504358 +L 0.583,8.504358,1.5636,8.504358 +L 1.5636,8.504358,2.5447,8.504358 +L 2.5447,8.504358,3.5425,8.504358 +L 3.9733,0,4.5197,0 +L 4.5197,0,5.0766,0 +L 5.0766,0,5.6475,0 +L 5.6475,0,5.6755,2.036769 +L 5.6755,2.036769,5.4272,3.302336 +L 5.4272,3.302336,4.3936,3.737329 +L 6.0751,0,6.5056,0 +L 6.5056,0,6.9294,0 +L 6.9294,0,7.3567,0 +L 0.1592,0.800934,0.2887,1.438008 +L 0.2887,1.438008,0.4323,2.057986 +L 0.4323,2.057986,0.583,2.669602 +L 1.4099,1.601775,1.4099,1.971875 +L 1.4099,1.971875,1.4099,2.324966 +L 1.4099,2.324966,1.4099,2.669602 +L 2.2641,1.601775,2.2641,1.971875 +L 2.2641,1.971875,2.2641,2.324966 +L 2.2641,2.324966,2.2641,2.669602 +L 6.0751,3.737329,5.7739,4.185074 +L 5.7739,4.185074,5.665,5.005693 +L 5.665,5.005693,5.6475,6.902593 +L 5.6475,6.902593,5.0766,6.902593 +L 5.0766,6.902593,4.5197,6.902593 +L 4.5197,6.902593,3.9733,6.902593 +L 1.8337,4.500054,1.5636,4.767034 +L 1.5636,4.767034,1.2834,5.034013 +L 1.2834,5.034013,1.0103,5.3009 +L 2.2641,5.3009,1.8337,5.83475 +L 1.8337,5.83475,1.413,6.368732 +L 1.413,6.368732,1.0103,6.902593 +L 2.2641,6.902593,2.1104,7.272671 +L 2.1104,7.272671,1.9668,7.625763 +L 1.9668,7.625763,1.8337,7.970409 +L 6.0751,6.902593,6.5056,6.902593 +L 6.5056,6.902593,6.9294,6.902593 +L 6.9294,6.902593,7.3567,6.902593 +L 6.0751,7.970409,5.7809,8.313594 +L 5.7809,8.313594,5.4969,8.656911 +L 5.4969,8.656911,5.2202,9.000103 + +[弔] 36 +L 3.5725,0,3.3943,3.087597 +L 3.3943,3.087597,2.4521,3.827764 +L 2.4521,3.827764,0.1577,3.737329 +L 0.1577,3.737329,0.1577,3.392776 +L 0.1577,3.392776,0.1577,3.039603 +L 0.1577,3.039603,0.1577,2.669602 +L 5.2537,1.067815,6.5776,1.327796 +L 6.5776,1.327796,6.9563,2.180856 +L 6.9563,2.180856,6.9629,3.737329 +L 6.9629,3.737329,5.8912,3.840444 +L 5.8912,3.840444,4.8229,3.926637 +L 4.8229,3.926637,3.7547,4.004309 +L 3.7547,4.004309,3.5449,4.614474 +L 3.5449,4.614474,3.3379,5.224673 +L 3.3379,5.224673,3.1421,5.83475 +L 3.1421,5.83475,2.291,5.83475 +L 2.291,5.83475,1.436,5.83475 +L 1.436,5.83475,0.585,5.83475 +L 0.585,5.83475,0.585,5.3009 +L 0.585,5.3009,0.585,4.767034 +L 0.585,4.767034,0.585,4.233091 +L 3.9683,5.83475,3.6916,6.28962 +L 3.6916,6.28962,3.5901,6.981683 +L 3.5901,6.981683,3.5725,8.504358 +L 3.5725,8.504358,2.5673,8.504358 +L 2.5673,8.504358,1.573,8.504358 +L 1.573,8.504358,0.585,8.504358 +L 4.3991,5.83475,5.0996,5.83475 +L 5.0996,5.83475,5.8071,5.83475 +L 5.8071,5.83475,6.5325,5.83475 +L 6.5325,5.83475,6.5325,6.738793 +L 6.5325,6.738793,6.5325,7.625763 +L 6.5325,7.625763,6.5325,8.504358 +L 6.5325,8.504358,5.6775,8.504358 +L 5.6775,8.504358,4.8229,8.504358 +L 4.8229,8.504358,3.9683,8.504358 + +[彫] 42 +L 0.1915,0.266985,0.4889,1.106042 +L 0.4889,1.106042,0.5978,3.241574 +L 0.5978,3.241574,0.6153,8.504358 +L 0.6153,8.504358,1.7428,8.504358 +L 1.7428,8.504358,2.8706,8.504358 +L 2.8706,8.504358,4.0022,8.504358 +L 4.0022,8.504358,4.0022,5.680883 +L 4.0022,5.680883,4.0022,2.848916 +L 4.0022,2.848916,4.0022,0 +L 4.0022,0,3.7041,0 +L 3.7041,0,3.4239,0 +L 3.4239,0,3.1476,0 +L 5.0704,0,5.8336,0.904048 +L 5.8336,0.904048,6.6007,1.791034 +L 6.6007,1.791034,7.3887,2.669602 +L 1.4699,1.601775,1.4699,2.324966 +L 1.4699,2.324966,1.4699,3.039603 +L 1.4699,3.039603,1.4699,3.737329 +L 1.4699,3.737329,2.0195,3.737329 +L 2.0195,3.737329,2.5763,3.737329 +L 2.5763,3.737329,3.1476,3.737329 +L 3.1476,3.737329,3.1476,3.039603 +L 3.1476,3.039603,3.1476,2.324966 +L 3.1476,2.324966,3.1476,1.601775 +L 3.1476,1.601775,2.5763,1.601775 +L 2.5763,1.601775,2.0195,1.601775 +L 2.0195,1.601775,1.4699,1.601775 +L 5.0704,3.737329,5.6865,4.450708 +L 5.6865,4.450708,6.3205,5.146995 +L 6.3205,5.146995,6.9614,5.83475 +L 1.4699,5.3009,1.7428,5.3009 +L 1.7428,5.3009,2.0163,5.3009 +L 2.0163,5.3009,2.2965,5.3009 +L 2.2965,5.3009,2.2965,5.83475 +L 2.2965,5.83475,2.2965,6.368732 +L 2.2965,6.368732,2.2965,6.902593 +L 2.2965,6.902593,2.0163,6.902593 +L 2.0163,6.902593,1.7428,6.902593 +L 1.7428,6.902593,1.4699,6.902593 +L 5.0704,6.902593,5.6865,7.615884 +L 5.6865,7.615884,6.3205,8.31227 +L 6.3205,8.31227,6.9614,9.000103 + +[徴] 60 +L 1.0446,0,0.9606,1.600341 +L 0.9606,1.600341,0.8902,3.19214 +L 0.8902,3.19214,0.8306,4.767034 +L 0.8306,4.767034,0.6135,4.603184 +L 0.6135,4.603184,0.4103,4.422387 +L 0.4103,4.422387,0.2177,4.233091 +L 4.8549,0,5.801,2.244415 +L 5.801,2.244415,5.7936,3.844745 +L 5.7936,3.844745,5.4962,6.368732 +L 5.4962,6.368732,5.2857,6.204927 +L 5.2857,6.204927,5.0689,6.02408 +L 5.0689,6.02408,4.8549,5.83475 +L 7.4191,0,7.1245,0.533965 +L 7.1245,0.533965,6.8373,1.067815 +L 6.8373,1.067815,6.5641,1.601775 +L 1.8957,0.533965,2.323,0.533965 +L 2.323,0.533965,2.7535,0.533965 +L 2.7535,0.533965,3.1738,0.533965 +L 3.1738,0.533965,3.1738,1.067815 +L 3.1738,1.067815,3.1738,1.601775 +L 3.1738,1.601775,3.1738,2.135642 +L 3.1738,2.135642,2.8796,2.324966 +L 2.8796,2.324966,2.5997,2.505747 +L 2.5997,2.505747,2.323,2.669602 +L 3.6046,1.067815,3.8816,1.067815 +L 3.8816,1.067815,4.1618,1.067815 +L 4.1618,1.067815,4.4592,1.067815 +L 3.6046,2.669602,3.2999,3.103156 +L 3.2999,3.103156,3.1916,3.6469 +L 3.1916,3.6469,3.1738,4.767034 +L 3.1738,4.767034,2.7535,4.767034 +L 2.7535,4.767034,2.323,4.767034 +L 2.323,4.767034,1.8957,4.767034 +L 6.5641,3.470437,6.8653,4.106077 +L 6.8653,4.106077,6.9778,4.995815 +L 6.9778,4.995815,6.9918,6.902593 +L 6.9918,6.902593,6.5641,6.902593 +L 6.5641,6.902593,6.1368,6.902593 +L 6.1368,6.902593,5.7095,6.902593 +L 5.7095,6.902593,5.7095,7.615884 +L 5.7095,7.615884,5.7095,8.31227 +L 5.7095,8.31227,5.7095,9.000103 +L 3.6046,4.767034,3.8816,4.767034 +L 3.8816,4.767034,4.1618,4.767034 +L 4.1618,4.767034,4.4592,4.767034 +L 1.0446,5.567864,1.1739,6.02408 +L 1.1739,6.02408,1.3175,6.471814 +L 1.3175,6.471814,1.4649,6.902593 +L 2.323,6.368732,2.323,6.902593 +L 2.323,6.902593,2.323,7.436547 +L 2.323,7.436547,2.323,7.970409 +L 2.964,6.368732,3.0235,7.245785 +L 3.0235,7.245785,3.0967,8.122936 +L 3.0967,8.122936,3.1738,9.000103 +L 3.8186,6.368732,3.8816,6.902593 +L 3.8816,6.902593,3.9478,7.436547 +L 3.9478,7.436547,4.0319,7.970409 +L 0.2177,7.436547,0.4909,7.968976 +L 0.4909,7.968976,0.7644,8.493035 +L 0.7644,8.493035,1.0446,9.000103 + +[懲] 69 +L 0.2165,0.266985,0.3458,0.723169 +L 0.3458,0.723169,0.4932,1.170952 +L 0.4932,1.170952,0.647,1.601775 +L 2.7803,0,2.4826,0.415298 +L 2.4826,0.415298,2.3702,0.830612 +L 2.3702,0.830612,2.3527,1.601775 +L 3.2111,0,4.0412,0 +L 4.0412,0,4.885,0 +L 4.885,0,5.7434,0 +L 5.7434,0,5.7434,0.370187 +L 5.7434,0.370187,5.7434,0.723169 +L 5.7434,0.723169,5.7434,1.067815 +L 7.4176,0.800934,7.2736,1.067815 +L 7.2736,1.067815,7.1475,1.334894 +L 7.1475,1.334894,7.0215,1.601775 +L 4.4577,1.334894,4.3071,1.601775 +L 4.3071,1.601775,4.1638,1.868662 +L 4.1638,1.868662,4.0339,2.135642 +L 4.885,2.669602,5.3126,3.202024 +L 5.3126,3.202024,5.7434,3.726083 +L 5.7434,3.726083,6.1672,4.233091 +L 6.1672,4.233091,5.845,4.905473 +L 5.845,4.905473,5.5679,5.696436 +L 5.5679,5.696436,5.1021,6.368732 +L 5.1021,6.368732,4.5876,6.10173 +L 4.5876,6.10173,4.0934,5.83475 +L 4.0934,5.83475,3.6031,5.567864 +L 3.6031,5.567864,3.8801,5.3009 +L 3.8801,5.3009,4.1638,5.034013 +L 4.1638,5.034013,4.4577,4.767034 +L 7.4176,2.669602,7.1475,3.039603 +L 7.1475,3.039603,6.8673,3.392776 +L 6.8673,3.392776,6.5945,3.737329 +L 1.0708,3.203484,0.9902,4.080526 +L 0.9902,4.080526,0.924,4.957693 +L 0.924,4.957693,0.8575,5.83475 +L 0.8575,5.83475,0.647,5.670984 +L 0.647,5.670984,0.4298,5.490219 +L 0.4298,5.490219,0.2165,5.3009 +L 2.7803,3.203484,3.0567,3.203484 +L 3.0567,3.203484,3.3337,3.203484 +L 3.3337,3.203484,3.6031,3.203484 +L 3.6031,3.203484,3.5754,3.947848 +L 3.5754,3.947848,3.3614,4.353181 +L 3.3614,4.353181,2.7803,4.767034 +L 6.5945,5.034013,6.8957,5.656864 +L 6.8957,5.656864,7.0074,6.279726 +L 7.0074,6.279726,7.0215,7.436547 +L 7.0215,7.436547,6.4436,7.272671 +L 6.4436,7.272671,5.8727,7.091895 +L 5.8727,7.091895,5.3126,6.902593 +L 1.0708,6.368732,1.3478,6.738793 +L 1.3478,6.738793,1.6315,7.091895 +L 1.6315,7.091895,1.9219,7.436547 +L 0.2165,7.436547,0.647,7.968976 +L 0.647,7.968976,1.0708,8.493035 +L 1.0708,8.493035,1.5016,9.000103 +L 2.7803,7.436547,2.7803,7.806631 +L 2.7803,7.806631,2.7803,8.159706 +L 2.7803,8.159706,2.7803,8.504358 +L 3.3933,7.436547,3.4563,7.968976 +L 3.4563,7.968976,3.5225,8.493035 +L 3.5225,8.493035,3.6031,9.000103 +L 4.2444,7.436547,4.3071,7.806631 +L 4.3071,7.806631,4.3736,8.159706 +L 4.3736,8.159706,4.4577,8.504358 +L 5.7434,7.970409,5.7434,8.313594 +L 5.7434,8.313594,5.7434,8.656911 +L 5.7434,8.656911,5.7434,9.000103 + +[挑] 48 +L 0.2501,0,0.5229,0 +L 0.5229,0,0.8101,0 +L 0.8101,0,1.1047,0 +L 1.1047,0,1.1047,1.257145 +L 1.1047,1.257145,1.1047,2.505747 +L 1.1047,2.505747,1.1047,3.737329 +L 1.1047,3.737329,0.8101,3.737329 +L 0.8101,3.737329,0.5229,3.737329 +L 0.5229,3.737329,0.2501,3.737329 +L 2.355,0,2.9116,0.904048 +L 2.9116,0.904048,3.486,1.791034 +L 3.486,1.791034,4.0607,2.669602 +L 4.0607,2.669602,3.9802,3.202024 +L 3.9802,3.202024,3.9133,3.726083 +L 3.9133,3.726083,3.8502,4.233091 +L 3.8502,4.233091,3.3354,3.889883 +L 3.3354,3.889883,2.8419,3.546664 +L 2.8419,3.546664,2.355,3.203484 +L 5.7419,0,5.4614,0.689277 +L 5.4614,0.689277,5.3598,3.022703 +L 5.3598,3.022703,5.3423,9.000103 +L 6.1657,0,6.5962,0 +L 6.5962,0,7.02,0 +L 7.02,0,7.4473,0 +L 7.4473,0,7.4473,0.533965 +L 7.4473,0.533965,7.4473,1.067815 +L 7.4473,1.067815,7.4473,1.601775 +L 7.02,3.203484,6.5962,3.546664 +L 6.5962,3.546664,6.1657,3.889883 +L 6.1657,3.889883,5.7419,4.233091 +L 1.1047,4.233091,1.1047,4.95627 +L 1.1047,4.95627,1.1047,5.670984 +L 1.1047,5.670984,1.1047,6.368732 +L 1.1047,6.368732,0.8101,6.557952 +L 0.8101,6.557952,0.5229,6.738793 +L 0.5229,6.738793,0.2501,6.902593 +L 4.0607,4.767034,4.0607,6.178052 +L 4.0607,6.178052,4.0607,7.589009 +L 4.0607,7.589009,4.0607,9.000103 +L 5.7419,5.83475,6.1657,6.368732 +L 6.1657,6.368732,6.5962,6.902593 +L 6.5962,6.902593,7.02,7.436547 +L 3.2061,6.635706,3.0552,6.902593 +L 3.0552,6.902593,2.9116,7.169557 +L 2.9116,7.169557,2.7823,7.436547 +L 1.5285,6.902593,1.2304,7.33623 +L 1.2304,7.33623,1.1183,7.880062 +L 1.1183,7.880062,1.1047,9.000103 + +[眺] 42 +L 2.3847,0,2.9416,0.904048 +L 2.9416,0.904048,3.5128,1.791034 +L 3.5128,1.791034,4.0939,2.669602 +L 4.0939,2.669602,4.0098,3.202024 +L 4.0098,3.202024,3.9433,3.726083 +L 3.9433,3.726083,3.8771,4.233091 +L 3.8771,4.233091,3.3692,3.889883 +L 3.3692,3.889883,2.875,3.546664 +L 2.875,3.546664,2.3847,3.203484 +L 5.7681,0,5.4704,0.689277 +L 5.4704,0.689277,5.3586,3.022703 +L 5.3586,3.022703,5.3443,9.000103 +L 6.1989,0,6.6265,0 +L 6.6265,0,7.0538,0 +L 7.0538,0,7.4811,0 +L 7.4811,0,7.4811,0.533965 +L 7.4811,0.533965,7.4811,1.067815 +L 7.4811,1.067815,7.4811,1.601775 +L 0.2797,1.601775,0.2797,3.916732 +L 0.2797,3.916732,0.2797,6.214745 +L 0.2797,6.214745,0.2797,8.504358 +L 0.2797,8.504358,0.6829,8.504358 +L 0.6829,8.504358,1.1032,8.504358 +L 1.1032,8.504358,1.534,8.504358 +L 1.534,8.504358,1.534,6.214745 +L 1.534,6.214745,1.534,3.916732 +L 1.534,3.916732,1.534,1.601775 +L 1.534,1.601775,1.1032,1.601775 +L 1.1032,1.601775,0.6829,1.601775 +L 0.6829,1.601775,0.2797,1.601775 +L 7.0538,3.203484,6.6265,3.546664 +L 6.6265,3.546664,6.1989,3.889883 +L 6.1989,3.889883,5.7681,4.233091 +L 4.0939,4.767034,4.0939,6.178052 +L 4.0939,6.178052,4.0939,7.589009 +L 4.0939,7.589009,4.0939,9.000103 +L 3.2393,6.10173,2.9416,6.557952 +L 2.9416,6.557952,2.6618,7.005773 +L 2.6618,7.005773,2.3847,7.436547 +L 5.7681,5.83475,6.1989,6.368732 +L 6.1989,6.368732,6.6265,6.902593 +L 6.6265,6.902593,7.0538,7.436547 + +[聴] 75 +L 2.4112,0,2.3342,0.723169 +L 2.3342,0.723169,2.261,1.438008 +L 2.261,1.438008,2.2014,2.135642 +L 2.2014,2.135642,1.6936,1.971875 +L 1.6936,1.971875,1.1959,1.791034 +L 1.1959,1.791034,0.7024,1.601775 +L 0.7024,1.601775,0.7024,3.916732 +L 0.7024,3.916732,0.7024,6.214745 +L 0.7024,6.214745,0.7024,8.504358 +L 0.7024,8.504358,2.3625,8.365929 +L 2.3625,8.365929,3.5569,8.108827 +L 3.5569,8.108827,4.9473,7.970409 +L 4.9473,7.970409,5.0766,8.313594 +L 5.0766,8.313594,5.2237,8.656911 +L 5.2237,8.656911,5.3746,9.000103 +L 4.9473,0,4.6461,0.435092 +L 4.6461,0.435092,4.5372,0.988808 +L 4.5372,0.988808,4.5236,2.135642 +L 5.3746,0,5.651,0 +L 5.651,0,5.9312,0 +L 5.9312,0,6.2292,0 +L 6.2292,0,6.2292,0.370187 +L 6.2292,0.370187,6.2292,0.723169 +L 6.2292,0.723169,6.2292,1.067815 +L 3.2378,0.533965,3.3677,0.904048 +L 3.3677,0.904048,3.5148,1.257145 +L 3.5148,1.257145,3.6651,1.601775 +L 7.4796,1.334894,7.3287,1.601775 +L 7.3287,1.601775,7.1819,1.868662 +L 7.1819,1.868662,7.0485,2.135642 +L 5.8019,2.402622,5.651,2.669602 +L 5.651,2.669602,5.5074,2.936499 +L 5.5074,2.936499,5.3746,3.203484 +L 2.4112,2.669602,2.4112,3.202024 +L 2.4112,3.202024,2.4112,3.726083 +L 2.4112,3.726083,2.4112,4.233091 +L 2.4112,4.233091,1.9913,4.233091 +L 1.9913,4.233091,1.5601,4.233091 +L 1.5601,4.233091,1.1328,4.233091 +L 3.6651,4.233091,3.6651,4.95627 +L 3.6651,4.95627,3.6651,5.670984 +L 3.6651,5.670984,3.6651,6.368732 +L 3.6651,6.368732,4.2258,6.368732 +L 4.2258,6.368732,4.7932,6.368732 +L 4.7932,6.368732,5.3746,6.368732 +L 5.3746,6.368732,5.6055,7.750078 +L 5.6055,7.750078,6.3098,8.038198 +L 6.3098,8.038198,7.4796,7.970409 +L 4.0924,4.233091,4.3691,4.233091 +L 4.3691,4.233091,4.6528,4.233091 +L 4.6528,4.233091,4.9473,4.233091 +L 4.9473,4.233091,4.9473,4.767034 +L 4.9473,4.767034,4.9473,5.3009 +L 4.9473,5.3009,4.9473,5.83475 +L 5.5879,4.233091,5.651,4.95627 +L 5.651,4.95627,5.7179,5.670984 +L 5.7179,5.670984,5.8019,6.368732 +L 5.8019,6.368732,6.2082,6.368732 +L 6.2082,6.368732,6.6285,6.368732 +L 6.6285,6.368732,7.0485,6.368732 +L 7.0485,6.368732,7.0485,5.670984 +L 7.0485,5.670984,7.0485,4.95627 +L 7.0485,4.95627,7.0485,4.233091 +L 7.0485,4.233091,6.7788,4.233091 +L 6.7788,4.233091,6.5021,4.233091 +L 6.5021,4.233091,6.2292,4.233091 +L 2.4112,4.767034,2.4112,5.3009 +L 2.4112,5.3009,2.4112,5.83475 +L 2.4112,5.83475,2.4112,6.368732 +L 2.4112,6.368732,1.9913,6.368732 +L 1.9913,6.368732,1.5601,6.368732 +L 1.5601,6.368732,1.1328,6.368732 +L 2.4112,6.902593,2.4112,7.272671 +L 2.4112,7.272671,2.4112,7.625763 +L 2.4112,7.625763,2.4112,7.970409 + +[脹] 45 +L 0.3083,0.266985,0.613,1.106042 +L 0.613,1.106042,0.7219,3.241574 +L 0.7219,3.241574,0.7394,8.504358 +L 0.7394,8.504358,1.2893,8.504358 +L 1.2893,8.504358,1.8458,8.504358 +L 1.8458,8.504358,2.4171,8.504358 +L 2.4171,8.504358,2.4171,5.680883 +L 2.4171,5.680883,2.4171,2.848916 +L 2.4171,2.848916,2.4171,0 +L 2.4171,0,2.1159,0 +L 2.1159,0,1.8357,0 +L 1.8357,0,1.5621,0 +L 3.2717,0,3.5445,0 +L 3.5445,0,3.8247,0 +L 3.8247,0,4.1228,0 +L 4.1228,0,4.1228,1.257145 +L 4.1228,1.257145,4.1228,2.505747 +L 4.1228,2.505747,4.1228,3.737329 +L 4.1228,3.737329,3.8247,3.916732 +L 3.8247,3.916732,3.5445,4.079174 +L 3.5445,4.079174,3.2717,4.233091 +L 7.5058,0,5.5167,2.848916 +L 5.5167,2.848916,4.445,5.248664 +L 4.445,5.248664,4.1228,8.504358 +L 4.1228,8.504358,5.1031,8.504358 +L 5.1031,8.504358,6.0841,8.504358 +L 6.0841,8.504358,7.0855,8.504358 +L 4.7634,0.533965,4.956,0.723169 +L 4.956,0.723169,5.1626,0.904048 +L 5.1626,0.904048,5.3766,1.067815 +L 1.1593,3.737329,1.4395,3.737329 +L 1.4395,3.737329,1.7131,3.737329 +L 1.7131,3.737329,1.9859,3.737329 +L 5.8004,4.233091,6.357,4.233091 +L 6.357,4.233091,6.9317,4.233091 +L 6.9317,4.233091,7.5058,4.233091 +L 4.5501,5.83475,5.2506,5.83475 +L 5.2506,5.83475,5.9542,5.83475 +L 5.9542,5.83475,6.655,5.83475 +L 1.1593,6.368732,1.4395,6.368732 +L 1.4395,6.368732,1.7131,6.368732 +L 1.7131,6.368732,1.9859,6.368732 +L 4.5501,6.902593,5.2506,6.902593 +L 5.2506,6.902593,5.9542,6.902593 +L 5.9542,6.902593,6.655,6.902593 + +[超] 45 +L 0.3141,0.266985,0.608,0.929408 +L 0.608,0.929408,0.7204,1.829194 +L 0.7204,1.829194,0.734,3.737329 +L 2.4436,0,2.0198,0.370187 +L 2.0198,0.370187,1.5925,0.723169 +L 1.5925,0.723169,1.1652,1.067815 +L 2.874,0,4.4326,0 +L 4.4326,0,5.9846,0 +L 5.9846,0,7.5432,0 +L 2.0198,1.067815,2.065,3.639874 +L 2.065,3.639874,1.7291,4.940788 +L 1.7291,4.940788,0.3141,5.3009 +L 4.5486,1.601775,4.5486,2.478855 +L 4.5486,2.478855,4.5486,3.356022 +L 4.5486,3.356022,4.5486,4.233091 +L 4.5486,4.233091,5.4063,4.233091 +L 5.4063,4.233091,6.2574,4.233091 +L 6.2574,4.233091,7.1124,4.233091 +L 7.1124,4.233091,7.1124,3.356022 +L 7.1124,3.356022,7.1124,2.478855 +L 7.1124,2.478855,7.1124,1.601775 +L 7.1124,1.601775,6.2574,1.601775 +L 6.2574,1.601775,5.4063,1.601775 +L 5.4063,1.601775,4.5486,1.601775 +L 2.4436,3.203484,2.874,3.203484 +L 2.874,3.203484,3.2978,3.203484 +L 3.2978,3.203484,3.7286,3.203484 +L 2.4436,5.3009,1.9214,6.413941 +L 1.9214,6.413941,1.6867,7.162475 +L 1.6867,7.162475,0.734,7.436547 +L 2.874,5.3009,4.1665,5.77551 +L 4.1665,5.77551,4.8077,6.961993 +L 4.8077,6.961993,4.979,8.504358 +L 4.979,8.504358,4.6852,8.504358 +L 4.6852,8.504358,4.3976,8.504358 +L 4.3976,8.504358,4.1248,8.504358 +L 5.8336,5.83475,6.9127,6.204927 +L 6.9127,6.204927,7.1505,7.168118 +L 7.1505,7.168118,7.1124,8.504358 +L 7.1124,8.504358,6.5341,8.504358 +L 6.5341,8.504358,5.9636,8.504358 +L 5.9636,8.504358,5.4063,8.504358 +L 2.4436,7.436547,2.149,7.850324 +L 2.149,7.850324,2.0373,8.255722 +L 2.0373,8.255722,2.0198,9.000103 + +[跳] 54 +L 0.7711,0,0.7711,1.600341 +L 0.7711,1.600341,0.7711,3.19214 +L 0.7711,3.19214,0.7711,4.767034 +L 1.1914,0,1.4961,0.572071 +L 1.4961,0.572071,1.6047,2.084856 +L 1.6047,2.084856,1.6222,5.83475 +L 1.6222,5.83475,1.3248,5.83475 +L 1.3248,5.83475,1.0411,5.83475 +L 1.0411,5.83475,0.7711,5.83475 +L 0.7711,5.83475,0.7711,6.738793 +L 0.7711,6.738793,0.7711,7.625763 +L 0.7711,7.625763,0.7711,8.504358 +L 0.7711,8.504358,1.3175,8.504358 +L 1.3175,8.504358,1.8747,8.504358 +L 1.8747,8.504358,2.4452,8.504358 +L 2.4452,8.504358,2.302,7.625763 +L 2.302,7.625763,2.1721,6.738793 +L 2.1721,6.738793,2.0495,5.83475 +L 2.8725,0,3.006,0.189318 +L 3.006,0.189318,3.1496,0.370187 +L 3.1496,0.370187,3.2963,0.533965 +L 3.2963,0.533965,2.8274,0.889836 +L 2.8274,0.889836,2.5016,0.889836 +L 2.5016,0.889836,2.0495,0.533965 +L 5.864,0,5.864,3.01137 +L 5.864,3.01137,5.864,6.014174 +L 5.864,6.014174,5.864,9.000103 +L 6.2913,0,6.6972,0 +L 6.6972,0,7.1179,0 +L 7.1179,0,7.5382,0 +L 7.5382,0,7.5382,0.533965 +L 7.5382,0.533965,7.5382,1.067815 +L 7.5382,1.067815,7.5382,1.601775 +L 3.7271,1.067815,4.2735,2.185098 +L 4.2735,2.185098,4.4697,3.039603 +L 4.4697,3.039603,4.3684,4.233091 +L 4.3684,4.233091,4.0038,3.889883 +L 4.0038,3.889883,3.6431,3.546664 +L 3.6431,3.546664,3.2963,3.203484 +L 3.2963,3.203484,2.971,3.579117 +L 2.971,3.579117,2.6452,3.71754 +L 2.6452,3.71754,2.0495,3.737329 +L 7.1179,3.203484,6.8377,3.546664 +L 6.8377,3.546664,6.5641,3.889883 +L 6.5641,3.889883,6.2913,4.233091 +L 4.5821,4.767034,4.5821,6.178052 +L 4.5821,6.178052,4.5821,7.589009 +L 4.5821,7.589009,4.5821,9.000103 +L 3.7271,6.10173,3.5734,6.368732 +L 3.5734,6.368732,3.4333,6.635706 +L 3.4333,6.635706,3.2963,6.902593 +L 6.2913,5.83475,6.5641,6.204927 +L 6.5641,6.204927,6.8377,6.557952 +L 6.8377,6.557952,7.1179,6.902593 + +[勅] 51 +L 2.0518,0,2.0343,1.522669 +L 2.0343,1.522669,1.9254,2.214732 +L 1.9254,2.214732,1.6207,2.669602 +L 1.6207,2.669602,1.1934,1.971875 +L 1.1934,1.971875,0.7804,1.257145 +L 0.7804,1.257145,0.3703,0.533965 +L 3.761,0,4.7343,1.944993 +L 4.7343,1.944993,5.2741,3.813645 +L 5.2741,3.813645,5.4352,5.83475 +L 5.4352,5.83475,5.1651,6.02408 +L 5.1651,6.02408,4.885,6.204927 +L 4.885,6.204927,4.6118,6.368732 +L 5.4352,0,5.7115,0 +L 5.7115,0,5.9952,0 +L 5.9952,0,6.2863,0 +L 6.2863,0,7.0533,2.134202 +L 7.0533,2.134202,7.1934,4.107412 +L 7.1934,4.107412,7.144,6.368732 +L 7.144,6.368732,5.7399,6.635706 +L 5.7399,6.635706,5.3967,7.487333 +L 5.3967,7.487333,5.4352,9.000103 +L 3.3302,1.601775,2.752,2.478855 +L 2.752,2.478855,2.1814,3.356022 +L 2.1814,3.356022,1.6207,4.233091 +L 1.6207,4.233091,1.3443,4.233091 +L 1.3443,4.233091,1.0743,4.233091 +L 1.0743,4.233091,0.7979,4.233091 +L 0.7979,4.233091,0.7979,4.95627 +L 0.7979,4.95627,0.7979,5.670984 +L 0.7979,5.670984,0.7979,6.368732 +L 0.7979,6.368732,1.393,6.398399 +L 1.393,6.398399,1.7187,6.60593 +L 1.7187,6.60593,2.0518,7.169557 +L 2.0518,7.169557,1.7047,7.733189 +L 1.7047,7.733189,1.2673,7.940732 +L 1.2673,7.940732,0.3703,7.970409 +L 2.4753,4.233091,2.0133,5.346131 +L 2.0133,5.346131,2.4122,6.094731 +L 2.4122,6.094731,3.3302,6.368732 +L 3.3302,6.368732,3.3302,5.670984 +L 3.3302,5.670984,3.3302,4.95627 +L 3.3302,4.95627,3.3302,4.233091 +L 3.3302,4.233091,3.0357,4.233091 +L 3.0357,4.233091,2.752,4.233091 +L 2.752,4.233091,2.4753,4.233091 +L 2.4753,7.970409,2.3247,8.313594 +L 2.3247,8.313594,2.1814,8.656911 +L 2.1814,8.656911,2.0518,9.000103 +L 2.9029,7.970409,3.1793,7.970409 +L 3.1793,7.970409,3.463,7.970409 +L 3.463,7.970409,3.761,7.970409 + +[朕] 45 +L 0.3726,0.266985,0.6735,1.106042 +L 0.6735,1.106042,0.7856,3.241574 +L 0.7856,3.241574,0.7999,8.504358 +L 0.7999,8.504358,1.353,8.504358 +L 1.353,8.504358,1.9312,8.504358 +L 1.9312,8.504358,2.5088,8.504358 +L 2.5088,8.504358,2.5088,5.680883 +L 2.5088,5.680883,2.5088,2.848916 +L 2.5088,2.848916,2.5088,0 +L 2.5088,0,2.2111,0 +L 2.2111,0,1.9312,0 +L 1.9312,0,1.6545,0 +L 3.3599,0,4.0642,1.257145 +L 4.0642,1.257145,4.7647,2.505747 +L 4.7647,2.505747,5.4649,3.737329 +L 5.4649,3.737329,5.1041,4.086195 +L 5.1041,4.086195,4.5577,4.214839 +L 4.5577,4.214839,3.3599,4.233091 +L 7.5698,0,6.9993,1.067815 +L 6.9993,1.067815,6.4459,2.135642 +L 6.4459,2.135642,5.8922,3.203484 +L 1.2237,3.737329,1.5036,3.737329 +L 1.5036,3.737329,1.7838,3.737329 +L 1.7838,3.737329,2.0783,3.737329 +L 5.8922,4.233091,5.5948,4.687927 +L 5.5948,4.687927,5.4824,5.380017 +L 5.4824,5.380017,5.4649,6.902593 +L 5.4649,6.902593,4.8873,6.902593 +L 4.8873,6.902593,4.3161,6.902593 +L 4.3161,6.902593,3.7595,6.902593 +L 6.3233,4.233091,6.7257,4.233091 +L 6.7257,4.233091,7.146,4.233091 +L 7.146,4.233091,7.5698,4.233091 +L 1.2237,6.368732,1.5036,6.368732 +L 1.5036,6.368732,1.7838,6.368732 +L 1.7838,6.368732,2.0783,6.368732 +L 5.8922,7.169557,6.0256,7.779761 +L 6.0256,7.779761,6.1692,8.389931 +L 6.1692,8.389931,6.3233,9.000103 +L 6.3233,6.902593,6.5961,6.902593 +L 6.5961,6.902593,6.8798,6.902593 +L 6.8798,6.902593,7.1744,6.902593 +L 4.6138,8.237377,4.4597,8.502934 +L 4.4597,8.502934,4.3161,8.760015 +L 4.3161,8.760015,4.1833,9.000103 + +[沈] 30 +L 0.4023,0.266985,0.8296,1.438008 +L 0.8296,1.438008,1.2569,2.591847 +L 1.2569,2.591847,1.6807,3.737329 +L 2.0768,0,3.8946,3.063687 +L 3.8946,3.063687,4.6823,6.076294 +L 4.6823,6.076294,2.5073,7.436547 +L 2.5073,7.436547,2.5073,6.902593 +L 2.5073,6.902593,2.5073,6.368732 +L 2.5073,6.368732,2.5073,5.83475 +L 5.4952,0,5.1975,0.532608 +L 5.1975,0.532608,5.0851,1.768432 +L 5.0851,1.768432,5.0714,4.767034 +L 5.898,0,6.4514,0 +L 6.4514,0,7.0254,0 +L 7.0254,0,7.6037,0 +L 7.6037,0,7.6037,0.533965 +L 7.6037,0.533965,7.6037,1.067815 +L 7.6037,1.067815,7.6037,1.601775 +L 1.2569,5.83475,0.9596,6.204927 +L 0.9596,6.204927,0.6794,6.557952 +L 0.6794,6.557952,0.4023,6.902593 +L 7.1726,5.83475,7.1726,6.368732 +L 7.1726,6.368732,7.1726,6.902593 +L 7.1726,6.902593,7.1726,7.436547 +L 7.1726,7.436547,5.7159,7.435098 +L 5.7159,7.435098,4.8995,7.781184 +L 4.8995,7.781184,4.6441,9.000103 +L 1.6807,7.970409,1.3869,8.313594 +L 1.3869,8.313594,1.1032,8.656911 +L 1.1032,8.656911,0.8296,9.000103 + +[珍] 33 +L 3.3923,0,4.5095,0.454859 +L 4.5095,0.454859,5.4972,1.147026 +L 5.4972,1.147026,7.2061,2.669602 +L 0.4288,1.601775,0.839,1.601775 +L 0.839,1.601775,1.2589,1.601775 +L 1.2589,1.601775,1.6827,1.601775 +L 1.6827,1.601775,1.6827,2.668069 +L 1.6827,2.668069,1.6827,3.726083 +L 1.6827,3.726083,1.6827,4.767034 +L 1.6827,4.767034,1.3853,4.95627 +L 1.3853,4.95627,1.1052,5.137117 +L 1.1052,5.137117,0.8281,5.3009 +L 3.3923,2.135642,4.4777,2.569289 +L 4.4777,2.569289,5.2482,3.113127 +L 5.2482,3.113127,6.355,4.233091 +L 3.6056,4.233091,4.2258,4.767034 +L 4.2258,4.767034,4.8559,5.3009 +L 4.8559,5.3009,5.4972,5.83475 +L 2.11,5.3009,1.8091,5.77551 +L 1.8091,5.77551,1.7002,6.60593 +L 1.7002,6.60593,1.6827,8.504358 +L 1.6827,8.504358,1.2589,8.504358 +L 1.2589,8.504358,0.839,8.504358 +L 0.839,8.504358,0.4288,8.504358 +L 2.5412,5.3009,3.3712,6.548156 +L 3.3712,6.548156,4.215,7.77831 +L 4.215,7.77831,5.0661,9.000103 +L 5.0661,9.000103,5.9245,7.959076 +L 5.9245,7.959076,6.7756,6.901138 +L 6.7756,6.901138,7.6334,5.83475 +L 2.11,8.504358,2.3867,8.504358 +L 2.3867,8.504358,2.6704,8.504358 +L 2.6704,8.504358,2.965,8.504358 + +[鎮] 66 +L 0.4347,0,0.8585,0 +L 0.8585,0,1.2893,0 +L 1.2893,0,1.7131,0 +L 1.7131,0,1.7863,2.286745 +L 1.7863,2.286745,1.5761,4.056545 +L 1.5761,4.056545,0.4347,4.767034 +L 3.6076,0,3.9473,0.370187 +L 3.9473,0.370187,4.308,0.723169 +L 4.308,0.723169,4.6723,1.067815 +L 7.2046,0,6.9279,0.370187 +L 6.9279,0.370187,6.655,0.723169 +L 6.655,0.723169,6.3815,1.067815 +L 2.3575,0.533965,2.5467,0.723169 +L 2.5467,0.723169,2.7495,0.904048 +L 2.7495,0.904048,2.9635,1.067815 +L 0.8585,1.868662,0.711,2.324966 +L 0.711,2.324966,0.5639,2.7727 +L 0.5639,2.7727,0.4347,3.203484 +L 2.5673,2.402622,2.6934,2.858827 +L 2.6934,2.858827,2.8234,3.306561 +L 2.8234,3.306561,2.9635,3.737329 +L 3.3943,2.135642,4.7949,2.135642 +L 4.7949,2.135642,6.2102,2.135642 +L 6.2102,2.135642,7.6284,2.135642 +L 4.2453,3.203484,4.2453,4.269844 +L 4.2453,4.269844,4.2453,5.327776 +L 4.2453,5.327776,4.2453,6.368732 +L 4.2453,6.368732,4.6723,6.368732 +L 4.6723,6.368732,5.1031,6.368732 +L 5.1031,6.368732,5.5234,6.368732 +L 5.5234,6.368732,5.2961,7.699182 +L 5.2961,7.699182,4.6828,8.012816 +L 4.6828,8.012816,3.818,7.970409 +L 4.6723,3.203484,5.3766,3.203484 +L 5.3766,3.203484,6.0841,3.203484 +L 6.0841,3.203484,6.8126,3.203484 +L 6.8126,3.203484,6.8126,3.546664 +L 6.8126,3.546664,6.8126,3.889883 +L 6.8126,3.889883,6.8126,4.233091 +L 6.8126,4.233091,6.0841,4.233091 +L 6.0841,4.233091,5.3766,4.233091 +L 5.3766,4.233091,4.6723,4.233091 +L 2.1404,4.767034,1.8388,5.182233 +L 1.8388,5.182233,1.7267,5.597537 +L 1.7267,5.597537,1.7131,6.368732 +L 1.7131,6.368732,1.0963,6.388499 +L 1.0963,6.388499,0.7639,6.526846 +L 0.7639,6.526846,0.4347,6.902593 +L 0.4347,6.902593,0.8585,7.615884 +L 0.8585,7.615884,1.2893,8.31227 +L 1.2893,8.31227,1.7131,9.000103 +L 1.7131,9.000103,2.1194,8.493035 +L 2.1194,8.493035,2.5397,7.968976 +L 2.5397,7.968976,2.9635,7.436547 +L 6.8126,5.034013,6.0841,5.137117 +L 6.0841,5.137117,5.3766,5.223233 +L 5.3766,5.223233,4.6723,5.3009 +L 6.8126,6.10173,6.5146,6.204927 +L 6.5146,6.204927,6.2312,6.29106 +L 6.2312,6.29106,5.9542,6.368732 +L 5.9542,7.970409,5.8039,8.313594 +L 5.8039,8.313594,5.6568,8.656911 +L 5.6568,8.656911,5.5234,9.000103 +L 6.3815,7.970409,6.655,7.970409 +L 6.655,7.970409,6.9279,7.970409 +L 6.9279,7.970409,7.2046,7.970409 + +[陳] 63 +L 0.4612,0,0.4612,2.848916 +L 0.4612,2.848916,0.4612,5.680883 +L 0.4612,5.680883,0.4612,8.504358 +L 0.4612,8.504358,1.0107,8.504358 +L 1.0107,8.504358,1.5715,8.504358 +L 1.5715,8.504358,2.142,8.504358 +L 2.142,8.504358,1.7081,6.169618 +L 1.7081,6.169618,1.9249,4.800926 +L 1.9249,4.800926,2.142,2.669602 +L 2.142,2.669602,1.8653,2.505747 +L 1.8653,2.505747,1.5925,2.324966 +L 1.5925,2.324966,1.3154,2.135642 +L 5.13,0,5.0494,0.904048 +L 5.0494,0.904048,4.979,1.791034 +L 4.979,1.791034,4.916,2.669602 +L 4.916,2.669602,4.1248,1.971875 +L 4.1248,1.971875,3.3399,1.257145 +L 3.3399,1.257145,2.5662,0.533965 +L 7.2349,0.533965,5.9636,2.268412 +L 5.9636,2.268412,5,2.918144 +L 5,2.918144,3.4239,3.203484 +L 3.4239,3.203484,3.4239,4.269844 +L 3.4239,4.269844,3.4239,5.327776 +L 3.4239,5.327776,3.4239,6.368732 +L 3.4239,6.368732,4.3381,6.398399 +L 4.3381,6.398399,4.7829,6.60593 +L 4.7829,6.60593,5.13,7.169557 +L 5.13,7.169557,4.979,7.436547 +L 4.979,7.436547,4.8323,7.703429 +L 4.8323,7.703429,4.7023,7.970409 +L 4.7023,7.970409,4.1248,7.970409 +L 4.1248,7.970409,3.5539,7.970409 +L 3.5539,7.970409,2.9966,7.970409 +L 5.9527,3.203484,6.2297,3.203484 +L 6.2297,3.203484,6.5134,3.203484 +L 6.5134,3.203484,6.8073,3.203484 +L 6.8073,3.203484,6.8073,3.735994 +L 6.8073,3.735994,6.8073,4.25995 +L 6.8073,4.25995,6.8073,4.767034 +L 6.8073,4.767034,6.3835,4.767034 +L 6.3835,4.767034,5.9527,4.767034 +L 5.9527,4.767034,5.5289,4.767034 +L 5.5289,4.767034,5.3853,4.423832 +L 5.3853,4.423832,5.2526,4.080526 +L 5.2526,4.080526,5.13,3.737329 +L 3.8512,4.767034,4.1248,4.767034 +L 4.1248,4.767034,4.4116,4.767034 +L 4.4116,4.767034,4.7023,4.767034 +L 4.7023,4.767034,4.979,5.3009 +L 4.979,5.3009,5.2526,5.83475 +L 5.2526,5.83475,5.5289,6.368732 +L 5.5289,6.368732,5.9527,6.368732 +L 5.9527,6.368732,6.3835,6.368732 +L 6.3835,6.368732,6.8073,6.368732 +L 6.8073,6.368732,6.8073,6.02408 +L 6.8073,6.02408,6.8073,5.670984 +L 6.8073,5.670984,6.8073,5.3009 +L 5.5289,7.970409,5.3853,8.313594 +L 5.3853,8.313594,5.2526,8.656911 +L 5.2526,8.656911,5.13,9.000103 +L 5.9527,7.970409,6.3835,7.970409 +L 6.3835,7.970409,6.8073,7.970409 +L 6.8073,7.970409,7.2349,7.970409 + +[津] 57 +L 0.4628,0.266985,0.8901,1.438008 +L 0.8901,1.438008,1.3139,2.591847 +L 1.3139,2.591847,1.7447,3.737329 +L 4.7047,0,4.2105,1.550896 +L 4.2105,1.550896,3.0547,1.754307 +L 3.0547,1.754307,1.7447,1.601775 +L 5.1355,1.601775,4.8343,2.135642 +L 4.8343,2.135642,4.5537,2.669602 +L 4.5537,2.669602,4.277,3.203484 +L 4.277,3.203484,3.7061,3.203484 +L 3.7061,3.203484,3.1496,3.203484 +L 3.1496,3.203484,2.5997,3.203484 +L 5.5558,1.601775,6.2633,1.601775 +L 6.2633,1.601775,6.9704,1.601775 +L 6.9704,1.601775,7.6919,1.601775 +L 5.1355,3.203484,4.8343,3.735994 +L 4.8343,3.735994,4.5537,4.25995 +L 4.5537,4.25995,4.277,4.767034 +L 4.277,4.767034,3.8536,4.767034 +L 3.8536,4.767034,3.4333,4.767034 +L 3.4333,4.767034,3.0231,4.767034 +L 5.5558,3.203484,5.9866,3.203484 +L 5.9866,3.203484,6.4135,3.203484 +L 6.4135,3.203484,6.8408,3.203484 +L 5.1355,4.767034,4.8343,5.3009 +L 4.8343,5.3009,4.5537,5.83475 +L 4.5537,5.83475,4.277,6.368732 +L 4.277,6.368732,3.5769,6.368732 +L 3.5769,6.368732,2.8725,6.368732 +L 2.8725,6.368732,2.172,6.368732 +L 5.5558,4.767034,5.8356,4.767034 +L 5.8356,4.767034,6.1158,4.767034 +L 6.1158,4.767034,6.4135,4.767034 +L 6.4135,4.767034,6.2633,5.961955 +L 6.2633,5.961955,5.8321,6.343274 +L 5.8321,6.343274,5.1355,6.368732 +L 5.1355,6.368732,4.8343,6.902593 +L 4.8343,6.902593,4.5537,7.436547 +L 4.5537,7.436547,4.277,7.970409 +L 4.277,7.970409,3.8536,7.970409 +L 3.8536,7.970409,3.4333,7.970409 +L 3.4333,7.970409,3.0231,7.970409 +L 1.3139,5.83475,1.0236,6.204927 +L 1.0236,6.204927,0.7399,6.557952 +L 0.7399,6.557952,0.4628,6.902593 +L 6.8408,6.368732,6.5396,6.784024 +L 6.5396,6.784024,6.4279,7.19924 +L 6.4279,7.19924,6.4135,7.970409 +L 6.4135,7.970409,5.9866,7.970409 +L 5.9866,7.970409,5.5558,7.970409 +L 5.5558,7.970409,5.1355,7.970409 +L 5.1355,7.970409,4.9775,8.313594 +L 4.9775,8.313594,4.8343,8.656911 +L 4.8343,8.656911,4.7047,9.000103 +L 1.7447,7.970409,1.4509,8.313594 +L 1.4509,8.313594,1.1672,8.656911 +L 1.1672,8.656911,0.8901,9.000103 + +[墜] 63 +L 0.4929,0,1.6242,0 +L 1.6242,0,2.752,0 +L 2.752,0,3.8832,0 +L 3.8832,0,3.4738,1.483119 +L 3.4738,1.483119,2.5068,1.720443 +L 2.5068,1.720443,1.3478,1.601775 +L 4.3039,0,5.2842,0 +L 5.2842,0,6.2688,0 +L 6.2688,0,7.2666,0 +L 4.3039,1.601775,4.1564,1.971875 +L 4.1564,1.971875,4.0128,2.324966 +L 4.0128,2.324966,3.8832,2.669602 +L 4.7343,1.601775,5.2842,1.601775 +L 5.2842,1.601775,5.845,1.601775 +L 5.845,1.601775,6.4089,1.601775 +L 0.4929,3.203484,0.4929,4.984574 +L 0.4929,4.984574,0.4929,6.748694 +L 0.4929,6.748694,0.4929,8.504358 +L 0.4929,8.504358,1.0533,8.426592 +L 1.0533,8.426592,1.6242,8.340509 +L 1.6242,8.340509,2.2024,8.237377 +L 2.2024,8.237377,1.9079,7.806631 +L 1.9079,7.806631,1.6242,7.358876 +L 1.6242,7.358876,1.3478,6.902593 +L 1.3478,6.902593,1.9499,6.111702 +L 1.9499,6.111702,2.1705,5.558084 +L 2.1705,5.558084,2.2024,4.767034 +L 2.2024,4.767034,1.9079,4.603184 +L 1.9079,4.603184,1.6242,4.422387 +L 1.6242,4.422387,1.3478,4.233091 +L 4.7343,3.203484,5.3546,3.223246 +L 5.3546,3.223246,5.687,3.361664 +L 5.687,3.361664,6.0127,3.737329 +L 6.0127,3.737329,5.9357,4.269844 +L 5.9357,4.269844,5.8625,4.79391 +L 5.8625,4.79391,5.8029,5.3009 +L 5.8029,5.3009,4.4156,4.200616 +L 4.4156,4.200616,3.7011,3.795322 +L 3.7011,3.795322,3.0255,3.737329 +L 7.2666,3.737329,6.9689,4.080526 +L 6.9689,4.080526,6.6852,4.423832 +L 6.6852,4.423832,6.4089,4.767034 +L 3.4528,5.3009,4.1564,5.670984 +L 4.1564,5.670984,4.8639,6.02408 +L 4.8639,6.02408,5.5924,6.368732 +L 5.5924,6.368732,5.2247,6.724598 +L 5.2247,6.724598,4.6681,6.724598 +L 4.6681,6.724598,3.4528,6.368732 +L 6.1984,5.83475,6.5451,6.204927 +L 6.5451,6.204927,6.9024,6.557952 +L 6.9024,6.557952,7.2666,6.902593 +L 4.7343,7.436547,4.3879,7.812196 +L 4.3879,7.812196,3.9463,7.950642 +L 3.9463,7.950642,3.0255,7.970409 +L 5.1616,7.970409,4.8639,8.313594 +L 4.8639,8.313594,4.5841,8.656911 +L 4.5841,8.656911,4.3039,9.000103 +L 5.8029,7.970409,5.9952,8.313594 +L 5.9952,8.313594,6.1984,8.656911 +L 6.1984,8.656911,6.4089,9.000103 +L 6.4089,7.970409,6.6852,7.970409 +L 6.6852,7.970409,6.9689,7.970409 +L 6.9689,7.970409,7.2666,7.970409 + +[塚] 48 +L 3.9098,0,4.5402,0.039643 +L 4.5402,0.039643,4.978,0.316408 +L 4.978,0.316408,5.5874,1.067815 +L 5.5874,1.067815,5.5034,1.791034 +L 5.5034,1.791034,5.4372,2.505747 +L 5.4372,2.505747,5.3741,3.203484 +L 5.3741,3.203484,4.4561,2.505747 +L 4.4561,2.505747,3.5455,1.791034 +L 3.5455,1.791034,2.6314,1.067815 +L 7.7243,1.067815,6.8732,2.315049 +L 6.8732,2.315049,6.0147,3.545242 +L 6.0147,3.545242,5.1636,4.767034 +L 5.1636,4.767034,4.4561,4.25995 +L 4.4561,4.25995,3.756,3.735994 +L 3.756,3.735994,3.0552,3.203484 +L 0.5264,2.135642,0.7999,2.135642 +L 0.7999,2.135642,1.0728,2.135642 +L 1.0728,2.135642,1.3463,2.135642 +L 1.3463,2.135642,1.3463,3.382898 +L 1.3463,3.382898,1.3463,4.613036 +L 1.3463,4.613036,1.3463,5.83475 +L 1.3463,5.83475,1.0728,6.02408 +L 1.0728,6.02408,0.7999,6.204927 +L 0.7999,6.204927,0.5264,6.368732 +L 6.442,4.233091,6.8732,4.767034 +L 6.8732,4.767034,7.297,5.3009 +L 7.297,5.3009,7.7243,5.83475 +L 3.2692,4.767034,4.1798,5.558084 +L 4.1798,5.558084,4.5686,6.111702 +L 4.5686,6.111702,4.7609,6.902593 +L 4.7609,6.902593,4.3409,6.902593 +L 4.3409,6.902593,3.9098,6.902593 +L 3.9098,6.902593,3.4825,6.902593 +L 1.7771,6.368732,1.4724,6.822141 +L 1.4724,6.822141,1.3638,7.504325 +L 1.3638,7.504325,1.3463,9.000103 +L 5.1636,6.902593,5.7174,6.902593 +L 5.7174,6.902593,6.2918,6.902593 +L 6.2918,6.902593,6.8732,6.902593 +L 2.6314,7.436547,2.6314,7.806631 +L 2.6314,7.806631,2.6314,8.159706 +L 2.6314,8.159706,2.6314,8.504358 +L 2.6314,8.504358,4.3125,8.504358 +L 4.3125,8.504358,6.0147,8.504358 +L 6.0147,8.504358,7.7243,8.504358 +L 7.7243,8.504358,7.7243,8.159706 +L 7.7243,8.159706,7.7243,7.806631 +L 7.7243,7.806631,7.7243,7.436547 + +[漬] 54 +L 0.5249,0.266985,0.9522,1.438008 +L 0.9522,1.438008,1.3795,2.591847 +L 1.3795,2.591847,1.8033,3.737329 +L 2.875,0,3.2116,0.189318 +L 3.2116,0.189318,3.5514,0.370187 +L 3.5514,0.370187,3.9156,0.533965 +L 7.3302,0,7.0328,0.189318 +L 7.0328,0.189318,6.7491,0.370187 +L 6.7491,0.370187,6.4724,0.533965 +L 3.5128,1.601775,3.5128,2.668069 +L 3.5128,2.668069,3.5128,3.726083 +L 3.5128,3.726083,3.5128,4.767034 +L 3.5128,4.767034,4.6441,4.767034 +L 4.6441,4.767034,5.7716,4.767034 +L 5.7716,4.767034,6.8997,4.767034 +L 6.8997,4.767034,6.8997,3.726083 +L 6.8997,3.726083,6.8997,2.668069 +L 6.8997,2.668069,6.8997,1.601775 +L 6.8997,1.601775,5.7716,1.601775 +L 5.7716,1.601775,4.6441,1.601775 +L 4.6441,1.601775,3.5128,1.601775 +L 3.9156,2.669602,4.7667,2.669602 +L 4.7667,2.669602,5.6213,2.669602 +L 5.6213,2.669602,6.4724,2.669602 +L 3.9156,3.737329,4.7667,3.737329 +L 4.7667,3.737329,5.6213,3.737329 +L 5.6213,3.737329,6.4724,3.737329 +L 1.3795,5.83475,1.0856,6.204927 +L 1.0856,6.204927,0.8019,6.557952 +L 0.8019,6.557952,0.5249,6.902593 +L 2.6617,5.83475,3.4953,5.937947 +L 3.4953,5.937947,4.3391,6.02408 +L 4.3391,6.02408,5.1905,6.10173 +L 5.1905,6.10173,4.8434,6.665357 +L 4.8434,6.665357,4.4126,6.872926 +L 4.4126,6.872926,3.5128,6.902593 +L 5.6213,5.83475,6.3253,5.83475 +L 6.3253,5.83475,7.0254,5.83475 +L 7.0254,5.83475,7.7263,5.83475 +L 5.6213,6.902593,4.7457,7.806631 +L 4.7457,7.806631,4.0627,8.00718 +L 4.0627,8.00718,3.089,7.970409 +L 6.0451,6.902593,6.3253,6.902593 +L 6.3253,6.902593,6.6051,6.902593 +L 6.6051,6.902593,6.8997,6.902593 +L 1.8033,7.970409,1.5094,8.313594 +L 1.5094,8.313594,1.2257,8.656911 +L 1.2257,8.656911,0.9522,9.000103 +L 5.6213,7.970409,5.4668,8.313594 +L 5.4668,8.313594,5.3232,8.656911 +L 5.3232,8.656911,5.1905,9.000103 +L 6.0451,7.970409,6.4724,7.970409 +L 6.4724,7.970409,6.8997,7.970409 +L 6.8997,7.970409,7.3302,7.970409 + +[坪] 30 +L 5.2237,0,5.1641,2.782588 +L 5.1641,2.782588,4.5337,3.675204 +L 4.5337,3.675204,2.6637,3.737329 +L 0.5588,2.135642,0.9826,2.135642 +L 0.9826,2.135642,1.4099,2.135642 +L 1.4099,2.135642,1.8372,2.135642 +L 1.8372,2.135642,1.8893,4.317844 +L 1.8893,4.317844,1.6582,5.813632 +L 1.6582,5.813632,0.5588,6.368732 +L 5.651,3.737329,5.3498,4.244402 +L 5.3498,4.244402,5.238,5.480335 +L 5.238,5.480335,5.2237,8.504358 +L 5.2237,8.504358,4.4987,8.504358 +L 4.4987,8.504358,3.7912,8.504358 +L 3.7912,8.504358,3.0837,8.504358 +L 6.0471,3.737329,6.6036,3.737329 +L 6.6036,3.737329,7.1749,3.737329 +L 7.1749,3.737329,7.7559,3.737329 +L 3.9421,5.567864,3.7912,6.02408 +L 3.7912,6.02408,3.6441,6.471814 +L 3.6441,6.471814,3.5148,6.902593 +L 6.4744,5.567864,6.6036,6.02408 +L 6.6036,6.02408,6.7472,6.471814 +L 6.7472,6.471814,6.8982,6.902593 +L 2.2326,6.368732,1.9527,6.822141 +L 1.9527,6.822141,1.8512,7.504325 +L 1.8512,7.504325,1.8372,9.000103 +L 5.651,8.504358,6.2009,8.504358 +L 6.2009,8.504358,6.7546,8.504358 +L 6.7546,8.504358,7.3287,8.504358 + +[釣] 42 +L 0.5849,0,0.9912,0 +L 0.9912,0,1.4119,0 +L 1.4119,0,1.8357,0 +L 1.8357,0,1.9089,2.269857 +L 1.9089,2.269857,1.7057,4.04809 +L 1.7057,4.04809,0.5849,4.767034 +L 5.653,0,7.2851,1.461912 +L 7.2851,1.461912,7.5093,4.576369 +L 7.5093,4.576369,7.3625,7.436547 +L 7.3625,7.436547,6.3605,7.436547 +L 6.3605,7.436547,5.3766,7.436547 +L 5.3766,7.436547,4.3991,7.436547 +L 4.3991,7.436547,4.3819,6.665357 +L 4.3819,6.665357,4.273,6.250065 +L 4.273,6.250065,3.9718,5.83475 +L 2.4763,0.533965,2.6899,0.723169 +L 2.6899,0.723169,2.9074,0.904048 +L 2.9074,0.904048,3.1207,1.067815 +L 0.9811,1.868662,0.841,2.324966 +L 0.841,2.324966,0.711,2.7727 +L 0.711,2.7727,0.5849,3.203484 +L 2.6899,2.402622,2.8233,2.858827 +L 2.8233,2.858827,2.9669,3.306561 +L 2.9669,3.306561,3.1207,3.737329 +L 5.653,4.004309,5.4992,4.269844 +L 5.4992,4.269844,5.3556,4.526836 +L 5.3556,4.526836,5.2222,4.767034 +L 2.263,4.767034,1.9614,5.182233 +L 1.9614,5.182233,1.8493,5.597537 +L 1.8493,5.597537,1.8357,6.368732 +L 1.8357,6.368732,1.2189,6.388499 +L 1.2189,6.388499,0.8931,6.526846 +L 0.8931,6.526846,0.5849,6.902593 +L 0.5849,6.902593,0.9912,7.615884 +L 0.9912,7.615884,1.4119,8.31227 +L 1.4119,8.31227,1.8357,9.000103 +L 1.8357,9.000103,2.263,8.493035 +L 2.263,8.493035,2.6899,7.968976 +L 2.6899,7.968976,3.1207,7.436547 +L 4.7949,7.970409,4.7949,8.313594 +L 4.7949,8.313594,4.7949,8.656911 +L 4.7949,8.656911,4.7949,9.000103 + +[亭] 42 +L 2.7203,0,3.1301,0 +L 3.1301,0,3.5465,0 +L 3.5465,0,3.9703,0 +L 3.9703,0,3.9703,0.904048 +L 3.9703,0.904048,3.9703,1.791034 +L 3.9703,1.791034,3.9703,2.669602 +L 3.9703,2.669602,3.1192,2.669602 +L 3.1192,2.669602,2.2755,2.669602 +L 2.2755,2.669602,1.4415,2.669602 +L 4.4014,2.669602,5.1051,2.669602 +L 5.1051,2.669602,5.8126,2.669602 +L 5.8126,2.669602,6.5344,2.669602 +L 0.5838,3.203484,0.5838,3.546664 +L 0.5838,3.546664,0.5838,3.889883 +L 0.5838,3.889883,0.5838,4.233091 +L 0.5838,4.233091,2.8429,4.233091 +L 2.8429,4.233091,5.1051,4.233091 +L 5.1051,4.233091,7.361,4.233091 +L 7.361,4.233091,7.361,3.889883 +L 7.361,3.889883,7.361,3.546664 +L 7.361,3.546664,7.361,3.203484 +L 1.8688,5.83475,1.8688,6.204927 +L 1.8688,6.204927,1.8688,6.557952 +L 1.8688,6.557952,1.8688,6.902593 +L 1.8688,6.902593,3.2702,6.902593 +L 3.2702,6.902593,4.6851,6.902593 +L 4.6851,6.902593,6.1103,6.902593 +L 6.1103,6.902593,6.1103,6.557952 +L 6.1103,6.557952,6.1103,6.204927 +L 6.1103,6.204927,6.1103,5.83475 +L 6.1103,5.83475,4.6851,5.83475 +L 4.6851,5.83475,3.2702,5.83475 +L 3.2702,5.83475,1.8688,5.83475 +L 0.5838,7.970409,1.7151,7.970409 +L 1.7151,7.970409,2.8429,7.970409 +L 2.8429,7.970409,3.9703,7.970409 +L 3.9703,7.970409,3.9703,8.313594 +L 3.9703,8.313594,3.9703,8.656911 +L 3.9703,8.656911,3.9703,9.000103 +L 4.4014,7.970409,5.3751,7.970409 +L 5.3751,7.970409,6.359,7.970409 +L 6.359,7.970409,7.361,7.970409 + +[偵] 48 +L 1.4719,0,1.3878,1.944993 +L 1.3878,1.944993,1.3174,3.889883 +L 1.3174,3.889883,1.2544,5.83475 +L 1.2544,5.83475,1.0446,5.670984 +L 1.0446,5.670984,0.8306,5.490219 +L 0.8306,5.490219,0.6173,5.3009 +L 2.9356,0,3.2788,0.189318 +L 3.2788,0.189318,3.6399,0.370187 +L 3.6399,0.370187,4.0042,0.533965 +L 7.3907,0,7.0933,0.189318 +L 7.0933,0.189318,6.8131,0.370187 +L 6.8131,0.370187,6.5361,0.533965 +L 3.5734,1.601775,3.5734,3.202024 +L 3.5734,3.202024,3.5734,4.79391 +L 3.5734,4.79391,3.5734,6.368732 +L 3.5734,6.368732,4.1334,6.368732 +L 4.1334,6.368732,4.7047,6.368732 +L 4.7047,6.368732,5.2822,6.368732 +L 5.2822,6.368732,5.2822,7.245785 +L 5.2822,7.245785,5.2822,8.122936 +L 5.2822,8.122936,5.2822,9.000103 +L 4.0042,1.601775,4.981,1.601775 +L 4.981,1.601775,5.9655,1.601775 +L 5.9655,1.601775,6.9634,1.601775 +L 6.9634,1.601775,6.9634,2.135642 +L 6.9634,2.135642,6.9634,2.669602 +L 6.9634,2.669602,6.9634,3.203484 +L 6.9634,3.203484,5.9655,3.203484 +L 5.9655,3.203484,4.981,3.203484 +L 4.981,3.203484,4.0042,3.203484 +L 6.9634,3.737329,6.9634,4.080526 +L 6.9634,4.080526,6.9634,4.423832 +L 6.9634,4.423832,6.9634,4.767034 +L 6.9634,4.767034,5.9655,4.767034 +L 5.9655,4.767034,4.981,4.767034 +L 4.981,4.767034,4.0042,4.767034 +L 6.9634,5.3009,6.9634,5.670984 +L 6.9634,5.670984,6.9634,6.02408 +L 6.9634,6.02408,6.9634,6.368732 +L 6.9634,6.368732,6.5361,6.368732 +L 6.5361,6.368732,6.1091,6.368732 +L 6.1091,6.368732,5.6783,6.368732 +L 1.4719,6.635706,1.7482,7.435098 +L 1.7482,7.435098,2.0183,8.226132 +L 2.0183,8.226132,2.2946,9.000103 +L 5.6783,7.970409,6.3858,7.970409 +L 6.3858,7.970409,7.0933,7.970409 +L 7.0933,7.970409,7.818,7.970409 + +[貞] 39 +L 1.0431,0,1.6031,0.189318 +L 1.6031,0.189318,2.1744,0.370187 +L 2.1744,0.370187,2.7519,0.533965 +L 6.1427,0,5.8415,0.189318 +L 5.8415,0.189318,5.5613,0.370187 +L 5.5613,0.370187,5.2842,0.533965 +L 1.9008,1.601775,1.9008,3.202024 +L 1.9008,3.202024,1.9008,4.79391 +L 1.9008,4.79391,1.9008,6.368732 +L 1.9008,6.368732,2.6017,6.368732 +L 2.6017,6.368732,3.3127,6.368732 +L 3.3127,6.368732,4.0303,6.368732 +L 4.0303,6.368732,4.0303,7.245785 +L 4.0303,7.245785,4.0303,8.122936 +L 4.0303,8.122936,4.0303,9.000103 +L 2.3215,1.601775,3.582,1.601775 +L 3.582,1.601775,4.8604,1.601775 +L 4.8604,1.601775,6.1427,1.601775 +L 6.1427,1.601775,6.1427,2.135642 +L 6.1427,2.135642,6.1427,2.669602 +L 6.1427,2.669602,6.1427,3.203484 +L 6.1427,3.203484,4.8604,3.203484 +L 4.8604,3.203484,3.582,3.203484 +L 3.582,3.203484,2.3215,3.203484 +L 6.1427,3.737329,6.1427,4.080526 +L 6.1427,4.080526,6.1427,4.423832 +L 6.1427,4.423832,6.1427,4.767034 +L 6.1427,4.767034,4.8604,4.767034 +L 4.8604,4.767034,3.582,4.767034 +L 3.582,4.767034,2.3215,4.767034 +L 6.1427,5.3009,6.1427,5.670984 +L 6.1427,5.670984,6.1427,6.02408 +L 6.1427,6.02408,6.1427,6.368732 +L 6.1427,6.368732,5.5613,6.368732 +L 5.5613,6.368732,4.9865,6.368732 +L 4.9865,6.368732,4.4331,6.368732 +L 4.4331,7.970409,5.2842,7.970409 +L 5.2842,7.970409,6.1427,7.970409 +L 6.1427,7.970409,6.9938,7.970409 + +[呈] 33 +L 0.649,0,1.7771,0 +L 1.7771,0,2.9049,0 +L 2.9049,0,4.0323,0 +L 4.0323,0,3.7451,1.841879 +L 3.7451,1.841879,2.8909,2.226065 +L 2.8909,2.226065,1.5001,2.135642 +L 4.4596,0,5.4372,0 +L 5.4372,0,6.421,0 +L 6.421,0,7.4157,0 +L 4.4596,2.135642,4.1623,2.569289 +L 4.1623,2.569289,4.0498,3.113127 +L 4.0498,3.113127,4.0323,4.233091 +L 4.0323,4.233091,3.0341,4.233091 +L 3.0341,4.233091,2.0499,4.233091 +L 2.0499,4.233091,1.0763,4.233091 +L 4.8908,2.135642,5.4372,2.135642 +L 5.4372,2.135642,5.9972,2.135642 +L 5.9972,2.135642,6.5646,2.135642 +L 4.4596,4.233091,5.2936,4.233091 +L 5.2936,4.233091,6.1408,4.233091 +L 6.1408,4.233091,6.9958,4.233091 +L 1.9274,6.368732,1.9274,7.091895 +L 1.9274,7.091895,1.9274,7.806631 +L 1.9274,7.806631,1.9274,8.504358 +L 1.9274,8.504358,3.3322,8.504358 +L 3.3322,8.504358,4.7433,8.504358 +L 4.7433,8.504358,6.1692,8.504358 +L 6.1692,8.504358,6.1692,7.806631 +L 6.1692,7.806631,6.1692,7.091895 +L 6.1692,7.091895,6.1692,6.368732 +L 6.1692,6.368732,4.7433,6.368732 +L 4.7433,6.368732,3.3322,6.368732 +L 3.3322,6.368732,1.9274,6.368732 + +[堤] 45 +L 2.3532,0,3.2568,1.542365 +L 3.2568,1.542365,3.5895,2.37296 +L 3.5895,2.37296,3.6389,3.203484 +L 5.7439,0,5.173,0.533965 +L 5.173,0.533965,4.6126,1.067815 +L 4.6126,1.067815,4.0627,1.601775 +L 6.1712,0,6.7242,0 +L 6.7242,0,7.299,0 +L 7.299,0,7.88,0 +L 5.3166,1.067815,5.3166,2.134202 +L 5.3166,2.134202,5.3166,3.19214 +L 5.3166,3.19214,5.3166,4.233091 +L 5.3166,4.233091,4.6126,4.233091 +L 4.6126,4.233091,3.9118,4.233091 +L 3.9118,4.233091,3.2081,4.233091 +L 0.6793,2.135642,1.0821,2.135642 +L 1.0821,2.135642,1.5021,2.135642 +L 1.5021,2.135642,1.9332,2.135642 +L 1.9332,2.135642,1.9854,4.250056 +L 1.9854,4.250056,1.7612,5.77974 +L 1.7612,5.77974,0.6793,6.368732 +L 5.7439,2.135642,6.1712,2.135642 +L 6.1712,2.135642,6.5981,2.135642 +L 6.5981,2.135642,7.0219,2.135642 +L 5.7439,4.233091,6.444,4.233091 +L 6.444,4.233091,7.1554,4.233091 +L 7.1554,4.233091,7.88,4.233091 +L 4.0627,5.3009,4.0627,6.368732 +L 4.0627,6.368732,4.0627,7.436547 +L 4.0627,7.436547,4.0627,8.504358 +L 4.0627,8.504358,5.043,8.504358 +L 5.043,8.504358,6.0241,8.504358 +L 6.0241,8.504358,7.0219,8.504358 +L 7.0219,8.504358,7.0219,7.436547 +L 7.0219,7.436547,7.0219,6.368732 +L 7.0219,6.368732,7.0219,5.3009 +L 7.0219,5.3009,6.0241,5.3009 +L 6.0241,5.3009,5.043,5.3009 +L 5.043,5.3009,4.0627,5.3009 +L 2.3532,6.368732,2.0593,6.822141 +L 2.0593,6.822141,1.9469,7.504325 +L 1.9469,7.504325,1.9332,9.000103 +L 4.49,6.902593,5.194,6.902593 +L 5.194,6.902593,5.8941,6.902593 +L 5.8941,6.902593,6.5981,6.902593 + +[帝] 48 +L 4.0647,0,4.0468,2.274082 +L 4.0468,2.274082,3.9453,3.243019 +L 3.9453,3.243019,3.6686,3.737329 +L 3.6686,3.737329,3.091,3.737329 +L 3.091,3.737329,2.5163,3.737329 +L 2.5163,3.737329,1.9597,3.737329 +L 1.9597,3.737329,1.9597,2.858827 +L 1.9597,2.858827,1.9597,1.971875 +L 1.9597,1.971875,1.9597,1.067815 +L 5.3463,1.067815,5.6233,1.067815 +L 5.6233,1.067815,5.9035,1.067815 +L 5.9035,1.067815,6.2009,1.067815 +L 6.2009,1.067815,6.2009,1.971875 +L 6.2009,1.971875,6.2009,2.858827 +L 6.2009,2.858827,6.2009,3.737329 +L 6.2009,3.737329,4.982,3.755663 +L 4.982,3.755663,4.429,3.884307 +L 4.429,3.884307,4.0647,4.233091 +L 4.0647,4.233091,4.0647,4.767034 +L 4.0647,4.767034,4.0647,5.3009 +L 4.0647,5.3009,4.0647,5.83475 +L 4.0647,5.83475,2.9366,5.83475 +L 2.9366,5.83475,1.8053,5.83475 +L 1.8053,5.83475,0.6813,5.83475 +L 0.6813,5.83475,0.6813,5.3009 +L 0.6813,5.3009,0.6813,4.767034 +L 0.6813,4.767034,0.6813,4.233091 +L 7.4796,4.233091,7.4796,4.767034 +L 7.4796,4.767034,7.4796,5.3009 +L 7.4796,5.3009,7.4796,5.83475 +L 7.4796,5.83475,6.4744,5.83475 +L 6.4744,5.83475,5.4762,5.83475 +L 5.4762,5.83475,4.4917,5.83475 +L 2.814,6.635706,2.6602,7.005773 +L 2.6602,7.005773,2.5163,7.358876 +L 2.5163,7.358876,2.3902,7.703429 +L 2.3902,7.703429,1.8088,7.806631 +L 1.8088,7.806631,1.2379,7.892824 +L 1.2379,7.892824,0.6813,7.970409 +L 5.3463,6.368732,5.6443,6.784024 +L 5.6443,6.784024,5.756,7.19924 +L 5.756,7.19924,5.7736,7.970409 +L 5.7736,7.970409,4.7722,7.970409 +L 4.7722,7.970409,3.7912,7.970409 +L 3.7912,7.970409,2.814,7.970409 +L 6.2009,7.970409,6.6285,7.970409 +L 6.6285,7.970409,7.0558,7.970409 +L 7.0558,7.970409,7.4796,7.970409 + +[廷] 45 +L 0.925,0,1.2682,0.456282 +L 1.2682,0.456282,1.6251,0.904048 +L 1.6251,0.904048,1.9894,1.334894 +L 1.9894,1.334894,1.3908,2.313626 +L 1.3908,2.313626,1.1667,2.936499 +L 1.1667,2.936499,1.1383,3.737329 +L 3.2398,0,2.9459,0.189318 +L 2.9459,0.189318,2.6657,0.370187 +L 2.6657,0.370187,2.3855,0.533965 +L 3.6706,0,5.0754,0 +L 5.0754,0,6.483,0 +L 6.483,0,7.9054,0 +L 2.3855,2.135642,2.3855,3.202024 +L 2.3855,3.202024,2.3855,4.25995 +L 2.3855,4.25995,2.3855,5.3009 +L 2.3855,5.3009,1.4889,5.281128 +L 1.4889,5.281128,1.0578,5.142688 +L 1.0578,5.142688,0.7075,4.767034 +L 4.0944,2.135642,4.6548,2.135642 +L 4.6548,2.135642,5.2222,2.135642 +L 5.2222,2.135642,5.8039,2.135642 +L 5.8039,2.135642,5.7199,4.464827 +L 5.7199,4.464827,5.156,5.234551 +L 5.156,5.234551,3.6706,5.3009 +L 6.1958,2.135642,6.6266,2.135642 +L 6.6266,2.135642,7.0543,2.135642 +L 7.0543,2.135642,7.4851,2.135642 +L 6.1958,5.3009,5.9195,5.755661 +L 5.9195,5.755661,5.8179,6.447833 +L 5.8179,6.447833,5.8039,7.970409 +L 5.8039,7.970409,5.2222,7.970409 +L 5.2222,7.970409,4.6548,7.970409 +L 4.6548,7.970409,4.0944,7.970409 +L 6.6266,5.3009,7.0543,5.3009 +L 7.0543,5.3009,7.4851,5.3009 +L 7.4851,5.3009,7.9054,5.3009 +L 1.1383,5.83475,1.5411,6.635706 +L 1.5411,6.635706,1.9614,7.436547 +L 1.9614,7.436547,2.3855,8.237377 +L 2.3855,8.237377,1.8146,8.340509 +L 1.8146,8.340509,1.2609,8.426592 +L 1.2609,8.426592,0.7075,8.504358 +L 6.1958,7.970409,6.5324,8.346157 +L 6.5324,8.346157,6.8648,8.48458 +L 6.8648,8.48458,7.4851,8.504358 + +[抵] 48 +L 0.7379,0,1.0142,0 +L 1.0142,0,1.2878,0 +L 1.2878,0,1.5641,0 +L 1.5641,0,1.5641,1.257145 +L 1.5641,1.257145,1.5641,2.505747 +L 1.5641,2.505747,1.5641,3.737329 +L 1.5641,3.737329,1.2878,3.737329 +L 1.2878,3.737329,1.0142,3.737329 +L 1.0142,3.737329,0.7379,3.737329 +L 3.2701,0,4.1037,0 +L 4.1037,0,4.9513,0 +L 4.9513,0,5.8024,0 +L 7.5113,0,6.3169,2.832028 +L 6.3169,2.832028,5.5709,4.655475 +L 5.5709,4.655475,3.6974,5.3009 +L 3.6974,5.3009,3.6974,4.079174 +L 3.6974,4.079174,3.6974,2.848916 +L 3.6974,2.848916,3.6974,1.601775 +L 3.6974,1.601775,4.2505,1.791034 +L 4.2505,1.791034,4.8039,1.971875 +L 4.8039,1.971875,5.3786,2.135642 +L 7.9421,0,7.9421,0.533965 +L 7.9421,0.533965,7.9421,1.067815 +L 7.9421,1.067815,7.9421,1.601775 +L 1.5641,4.233091,1.5641,4.95627 +L 1.5641,4.95627,1.5641,5.670984 +L 1.5641,5.670984,1.5641,6.368732 +L 1.5641,6.368732,1.2878,6.557952 +L 1.2878,6.557952,1.0142,6.738793 +L 1.0142,6.738793,0.7379,6.902593 +L 6.2329,5.3009,5.9317,5.755661 +L 5.9317,5.755661,5.8199,6.447833 +L 5.8199,6.447833,5.8024,7.970409 +L 5.8024,7.970409,5.1016,7.970409 +L 5.1016,7.970409,4.4014,7.970409 +L 4.4014,7.970409,3.6974,7.970409 +L 3.6974,7.970409,3.6974,7.272671 +L 3.6974,7.272671,3.6974,6.557952 +L 3.6974,6.557952,3.6974,5.83475 +L 6.6602,5.3009,7.084,5.3009 +L 7.084,5.3009,7.5113,5.3009 +L 7.5113,5.3009,7.9421,5.3009 +L 1.9879,6.902593,1.6905,7.33623 +L 1.6905,7.33623,1.5781,7.880062 +L 1.5781,7.880062,1.5641,9.000103 +L 6.2329,8.504358,6.5064,8.504358 +L 6.5064,8.504358,6.7936,8.504358 +L 6.7936,8.504358,7.084,8.504358 + +[締] 66 +L 2.0218,0,2.0218,1.600341 +L 2.0218,1.600341,2.0218,3.19214 +L 2.0218,3.19214,2.0218,4.767034 +L 2.0218,4.767034,1.5945,4.767034 +L 1.5945,4.767034,1.1707,4.767034 +L 1.1707,4.767034,0.7399,4.767034 +L 5.8356,0,5.8566,2.05375 +L 5.8566,2.05375,5.5904,3.310769 +L 5.5904,3.310769,4.5537,3.737329 +L 4.5537,3.737329,4.5537,2.858827 +L 4.5537,2.858827,4.5537,1.971875 +L 4.5537,1.971875,4.5537,1.067815 +L 0.7399,1.334894,0.8691,1.971875 +L 0.8691,1.971875,1.0162,2.591847 +L 1.0162,2.591847,1.1707,3.203484 +L 7.1178,1.067815,7.1178,1.971875 +L 7.1178,1.971875,7.1178,2.858827 +L 7.1178,2.858827,7.1178,3.737329 +L 7.1178,3.737329,6.4976,3.755663 +L 6.4976,3.755663,6.1652,3.884307 +L 6.1652,3.884307,5.8356,4.233091 +L 5.8356,4.233091,5.8356,4.767034 +L 5.8356,4.767034,5.8356,5.3009 +L 5.8356,5.3009,5.8356,5.83475 +L 5.8356,5.83475,5.2545,5.83475 +L 5.2545,5.83475,4.6833,5.83475 +L 4.6833,5.83475,4.1267,5.83475 +L 4.1267,5.83475,4.1267,5.490219 +L 4.1267,5.490219,4.1267,5.137117 +L 4.1267,5.137117,4.1267,4.767034 +L 3.2721,1.868662,3.1321,2.324966 +L 3.1321,2.324966,2.9986,2.7727 +L 2.9986,2.7727,2.876,3.203484 +L 3.2721,4.500054,3.1321,4.767034 +L 3.1321,4.767034,2.9986,5.034013 +L 2.9986,5.034013,2.876,5.3009 +L 2.876,5.3009,2.7258,5.137117 +L 2.7258,5.137117,2.5783,4.95627 +L 2.5783,4.95627,2.4487,4.767034 +L 7.9371,4.767034,7.9371,5.137117 +L 7.9371,5.137117,7.9371,5.490219 +L 7.9371,5.490219,7.9371,5.83475 +L 7.9371,5.83475,7.3662,5.937947 +L 7.3662,5.937947,6.8131,6.02408 +L 6.8131,6.02408,6.2594,6.10173 +L 6.2594,6.10173,6.3928,6.738793 +L 6.3928,6.738793,6.5361,7.358876 +L 6.5361,7.358876,6.6905,7.970409 +L 6.6905,7.970409,5.962,7.892824 +L 5.962,7.892824,5.2545,7.806631 +L 5.2545,7.806631,4.5537,7.703429 +L 4.5537,7.703429,4.6833,7.272671 +L 4.6833,7.272671,4.8307,6.824915 +L 4.8307,6.824915,4.981,6.368732 +L 1.5945,5.3009,1.7272,5.567864 +L 1.7272,5.567864,1.8712,5.83475 +L 1.8712,5.83475,2.0218,6.10173 +L 2.0218,6.10173,1.7272,6.471814 +L 1.7272,6.471814,1.44,6.824915 +L 1.44,6.824915,1.1707,7.169557 +L 1.1707,7.169557,1.44,7.779761 +L 1.44,7.779761,1.7272,8.389931 +L 1.7272,8.389931,2.0218,9.000103 +L 2.4487,7.169557,2.5783,7.436547 +L 2.5783,7.436547,2.7258,7.703429 +L 2.7258,7.703429,2.876,7.970409 + +[艇] 60 +L 0.7695,0.266985,1.1517,2.658273 +L 1.1517,2.658273,1.5226,6.456293 +L 1.5226,6.456293,2.0203,9.000103 +L 2.8745,0,2.8605,2.998613 +L 2.8605,2.998613,2.7488,4.234514 +L 2.7488,4.234514,2.4507,4.767034 +L 2.4507,4.767034,2.1744,4.603184 +L 2.1744,4.603184,1.8977,4.422387 +L 1.8977,4.422387,1.628,4.233091 +L 3.3018,0,3.7291,0.533965 +L 3.7291,0.533965,4.1603,1.067815 +L 4.1603,1.067815,4.5841,1.601775 +L 4.5841,1.601775,4.2895,2.324966 +L 4.2895,2.324966,4.0093,3.039603 +L 4.0093,3.039603,3.7291,3.737329 +L 6.2652,0,5.8341,0.370187 +L 5.8341,0.370187,5.4176,0.723169 +L 5.4176,0.723169,5.0114,1.067815 +L 6.6925,0,7.1163,0 +L 7.1163,0,7.5436,0 +L 7.5436,0,7.9709,0 +L 2.0203,1.601775,2.0203,2.135642 +L 2.0203,2.135642,2.0203,2.669602 +L 2.0203,2.669602,2.0203,3.203484 +L 5.0114,2.135642,5.0114,3.202024 +L 5.0114,3.202024,5.0114,4.25995 +L 5.0114,4.25995,5.0114,5.3009 +L 5.0114,5.3009,3.2808,5.27258 +L 3.2808,5.27258,2.8395,5.837651 +L 2.8395,5.837651,2.8745,7.970409 +L 2.8745,7.970409,2.5807,7.970409 +L 2.5807,7.970409,2.297,7.970409 +L 2.297,7.970409,2.0203,7.970409 +L 5.8341,2.135642,6.1111,2.135642 +L 6.1111,2.135642,6.3913,2.135642 +L 6.3913,2.135642,6.6925,2.135642 +L 6.6925,2.135642,6.6925,3.012815 +L 6.6925,3.012815,6.6925,3.889883 +L 6.6925,3.889883,6.6925,4.767034 +L 6.6925,4.767034,6.3913,4.95627 +L 6.3913,4.95627,6.1111,5.137117 +L 6.1111,5.137117,5.8341,5.3009 +L 7.1163,5.3009,6.8116,5.755661 +L 6.8116,5.755661,6.7062,6.447833 +L 6.7062,6.447833,6.6925,7.970409 +L 6.6925,7.970409,6.3913,7.970409 +L 6.3913,7.970409,6.1111,7.970409 +L 6.1111,7.970409,5.8341,7.970409 +L 2.0203,5.83475,2.0203,6.204927 +L 2.0203,6.204927,2.0203,6.557952 +L 2.0203,6.557952,2.0203,6.902593 +L 4.1603,6.10173,4.4576,6.724598 +L 4.4576,6.724598,4.5666,7.347563 +L 4.5666,7.347563,4.5841,8.504358 +L 4.5841,8.504358,4.2895,8.504358 +L 4.2895,8.504358,4.0093,8.504358 +L 4.0093,8.504358,3.7291,8.504358 +L 7.1163,7.970409,7.3927,8.159706 +L 7.3927,8.159706,7.6729,8.340509 +L 7.6729,8.340509,7.9709,8.504358 + +[訂] 20 +L 5.0134,0,5.4407,0 +L 5.4407,0,5.8645,0 +L 5.8645,0,6.2918,0 +L 6.2918,0,6.2918,2.668069 +L 6.2918,2.668069,6.2918,5.327776 +L 6.2918,5.327776,6.2918,7.970409 +L 6.2918,7.970409,5.5909,7.970409 +L 5.5909,7.970409,4.8873,7.970409 +L 4.8873,7.970409,4.1868,7.970409 +L 6.7222,7.970409,7.1495,7.970409 +L 7.1495,7.970409,7.5733,7.970409 +L 7.5733,7.970409,8.0006,7.970409 +L 0.768,6.902534,3.3038,6.902534 +L 1.1988,8.50432,2.8765,8.50432 +L 1.1988,5.300983,2.8765,5.300983 +L 1.1988,4.233041,2.8765,4.233041 +L 1.1988,2.669547,2.8765,2.669547 +L 1.1988,0,1.1988,2.669547 +L 2.8765,0,1.1988,0 +L 2.8765,2.669547,2.8765,0 + +[逓] 63 +L 1.0152,0,1.3585,0.370187 +L 1.3585,0.370187,1.7161,0.723169 +L 1.7161,0.723169,2.0835,1.067815 +L 2.0835,1.067815,2.0835,2.315049 +L 2.0835,2.315049,2.0835,3.545242 +L 2.0835,3.545242,2.0835,4.767034 +L 2.0835,4.767034,1.6565,4.767034 +L 1.6565,4.767034,1.2257,4.767034 +L 1.2257,4.767034,0.8019,4.767034 +L 3.3342,0,3.0606,0.189318 +L 3.0606,0.189318,2.7843,0.370187 +L 2.7843,0.370187,2.5076,0.533965 +L 3.7615,0,5.1621,0 +L 5.1621,0,6.5771,0 +L 6.5771,0,8.0026,0 +L 5.8976,1.067815,5.8665,3.193579 +L 5.8665,3.193579,5.4567,4.065049 +L 5.4567,4.065049,4.1884,4.233091 +L 4.1884,4.233091,4.1884,3.356022 +L 4.1884,3.356022,4.1884,2.478855 +L 4.1884,2.478855,4.1884,1.601775 +L 6.7176,1.601775,6.9978,1.601775 +L 6.9978,1.601775,7.2779,1.601775 +L 7.2779,1.601775,7.5718,1.601775 +L 7.5718,1.601775,7.5718,2.478855 +L 7.5718,2.478855,7.5718,3.356022 +L 7.5718,3.356022,7.5718,4.233091 +L 7.5718,4.233091,7.1515,4.233091 +L 7.1515,4.233091,6.7316,4.233091 +L 6.7316,4.233091,6.3214,4.233091 +L 6.3214,4.233091,6.0307,4.767034 +L 6.0307,4.767034,5.7439,5.3009 +L 5.7439,5.3009,5.4703,5.83475 +L 5.4703,5.83475,4.7418,5.83475 +L 4.7418,5.83475,4.0343,5.83475 +L 4.0343,5.83475,3.3342,5.83475 +L 3.3342,5.83475,3.3167,3.943536 +L 3.3167,3.943536,3.2042,2.984494 +L 3.2042,2.984494,2.9069,2.135642 +L 6.3214,5.83475,6.0307,6.204927 +L 6.0307,6.204927,5.7439,6.557952 +L 5.7439,6.557952,5.4703,6.902593 +L 5.4703,6.902593,4.7418,6.738793 +L 4.7418,6.738793,4.0343,6.557952 +L 4.0343,6.557952,3.3342,6.368732 +L 6.7176,5.83475,7.148,5.83475 +L 7.148,5.83475,7.5718,5.83475 +L 7.5718,5.83475,8.0026,5.83475 +L 6.3214,6.902593,6.1712,7.169557 +L 6.1712,7.169557,6.0307,7.436547 +L 6.0307,7.436547,5.8976,7.703429 +L 5.8976,7.703429,5.0395,7.625763 +L 5.0395,7.625763,4.1884,7.539652 +L 4.1884,7.539652,3.3342,7.436547 +L 6.7176,6.902593,6.9978,6.902593 +L 6.9978,6.902593,7.2779,6.902593 +L 7.2779,6.902593,7.5718,6.902593 +L 2.0835,7.436547,1.7858,7.806631 +L 1.7858,7.806631,1.5056,8.159706 +L 1.5056,8.159706,1.2257,8.504358 +L 6.3214,8.504358,6.7316,8.504358 +L 6.7316,8.504358,7.1515,8.504358 +L 7.1515,8.504358,7.5718,8.504358 + +[邸] 45 +L 5.8961,0,5.8961,2.848916 +L 5.8961,2.848916,5.8961,5.680883 +L 5.8961,5.680883,5.8961,8.504358 +L 5.8961,8.504358,6.4534,8.504358 +L 6.4534,8.504358,7.0239,8.504358 +L 7.0239,8.504358,7.6057,8.504358 +L 7.6057,8.504358,7.1885,5.785421 +L 7.1885,5.785421,7.6544,4.396945 +L 7.6544,4.396945,8.0295,2.135642 +L 8.0295,2.135642,7.6999,1.759988 +L 7.6999,1.759988,7.3672,1.621564 +L 7.3672,1.621564,6.7511,1.601775 +L 0.8316,0.533965,1.8088,0.533965 +L 1.8088,0.533965,2.7965,0.533965 +L 2.7965,0.533965,3.7912,0.533965 +L 4.6461,1.067815,4.0679,2.478855 +L 4.0679,2.478855,3.4973,3.889883 +L 3.4973,3.889883,2.9401,5.3009 +L 2.9401,5.3009,2.3692,5.3009 +L 2.3692,5.3009,1.8088,5.3009 +L 1.8088,5.3009,1.2589,5.3009 +L 1.2589,5.3009,1.2589,4.25995 +L 1.2589,4.25995,1.2589,3.202024 +L 1.2589,3.202024,1.2589,2.135642 +L 1.2589,2.135642,1.8088,2.324966 +L 1.8088,2.324966,2.3692,2.505747 +L 2.3692,2.505747,2.9401,2.669602 +L 5.0734,1.067815,5.0734,1.601775 +L 5.0734,1.601775,5.0734,2.135642 +L 5.0734,2.135642,5.0734,2.669602 +L 3.7912,5.3009,3.4903,5.755661 +L 3.4903,5.755661,3.3782,6.447833 +L 3.3782,6.447833,3.3639,7.970409 +L 3.3639,7.970409,2.6637,7.970409 +L 2.6637,7.970409,1.9597,7.970409 +L 1.9597,7.970409,1.2589,7.970409 +L 1.2589,7.970409,1.2589,7.272671 +L 1.2589,7.272671,1.2589,6.557952 +L 1.2589,6.557952,1.2589,5.83475 +L 4.2188,5.3009,4.4987,5.3009 +L 4.4987,5.3009,4.7788,5.3009 +L 4.7788,5.3009,5.0734,5.3009 +L 3.7912,8.504358,4.0679,8.504358 +L 4.0679,8.504358,4.3484,8.504358 +L 4.3484,8.504358,4.6461,8.504358 + +[泥] 33 +L 0.8301,0.266985,1.2574,1.438008 +L 1.2574,1.438008,1.6885,2.591847 +L 1.6885,2.591847,2.1158,3.737329 +L 2.1158,0,3.2751,2.764146 +L 3.2751,2.764146,3.4748,5.409684 +L 3.4748,5.409684,3.3977,8.504358 +L 3.3977,8.504358,4.7984,8.504358 +L 4.7984,8.504358,6.2102,8.504358 +L 6.2102,8.504358,7.6353,8.504358 +L 7.6353,8.504358,7.6353,7.806631 +L 7.6353,7.806631,7.6353,7.091895 +L 7.6353,7.091895,7.6353,6.368732 +L 7.6353,6.368732,6.3538,6.368732 +L 6.3538,6.368732,5.0719,6.368732 +L 5.0719,6.368732,3.7932,6.368732 +L 5.5027,0,5.198,0.532608 +L 5.198,0.532608,5.0894,1.768432 +L 5.0894,1.768432,5.0719,4.767034 +L 5.9297,0,6.6305,0 +L 6.6305,0,7.3306,0 +L 7.3306,0,8.0346,0 +L 8.0346,0,8.0346,0.533965 +L 8.0346,0.533965,8.0346,1.067815 +L 8.0346,1.067815,8.0346,1.601775 +L 5.7125,2.669602,6.3538,3.039603 +L 6.3538,3.039603,6.9947,3.392776 +L 6.9947,3.392776,7.6353,3.737329 +L 1.6885,5.83475,1.3908,6.204927 +L 1.3908,6.204927,1.1071,6.557952 +L 1.1071,6.557952,0.8301,6.902593 +L 2.1158,7.970409,1.8181,8.313594 +L 1.8181,8.313594,1.5376,8.656911 +L 1.5376,8.656911,1.2574,9.000103 + +[摘] 52 +L 3.3962,0,3.3962,1.944993 +L 3.3962,1.944993,3.3962,3.889883 +L 3.3962,3.889883,3.3962,5.83475 +L 3.3962,5.83475,3.82,5.83475 +L 3.82,5.83475,4.2505,5.83475 +L 4.2505,5.83475,4.6778,5.83475 +L 4.6778,5.83475,4.524,6.471814 +L 4.524,6.471814,4.3801,7.091895 +L 4.3801,7.091895,4.2505,7.703429 +L 4.2505,7.703429,3.82,7.806631 +L 3.82,7.806631,3.3962,7.892824 +L 3.3962,7.892824,2.9689,7.970409 +L 6.7827,0,7.0563,0 +L 7.0563,0,7.3435,0 +L 7.3435,0,7.6338,0 +L 7.6338,0,7.6338,1.944993 +L 7.6338,1.944993,7.6338,3.889883 +L 7.6338,3.889883,7.6338,5.83475 +L 7.6338,5.83475,6.9337,5.83475 +L 6.9337,5.83475,6.2297,5.83475 +L 6.2297,5.83475,5.5289,5.83475 +L 5.5289,5.83475,5.5783,4.860259 +L 5.5783,4.860259,5.904,4.368729 +L 5.904,4.368729,6.7827,4.233091 +L 4.6778,1.067815,4.6778,1.601775 +L 4.6778,1.601775,4.6778,2.135642 +L 4.6778,2.135642,4.6778,2.669602 +L 4.6778,2.669602,4.9513,2.669602 +L 4.9513,2.669602,5.235,2.669602 +L 5.235,2.669602,5.5289,2.669602 +L 5.5289,2.669602,5.3853,3.820655 +L 5.3853,3.820655,4.9478,4.200616 +L 4.9478,4.200616,4.2505,4.233091 +L 5.1016,1.067815,5.5114,1.067815 +L 5.5114,1.067815,5.9317,1.067815 +L 5.9317,1.067815,6.3523,1.067815 +L 6.3523,1.067815,6.2122,1.601775 +L 6.2122,1.601775,6.0826,2.135642 +L 6.0826,2.135642,5.96,2.669602 +L 6.3523,6.368732,6.657,6.784024 +L 6.657,6.784024,6.7652,7.19924 +L 6.7652,7.19924,6.7827,7.970409 +L 6.7827,7.970409,6.0826,7.970409 +L 6.0826,7.970409,5.3786,7.970409 +L 5.3786,7.970409,4.6778,7.970409 +L 7.21,7.970409,7.4836,7.970409 +L 7.4836,7.970409,7.7673,7.970409 +L 7.7673,7.970409,8.0611,7.970409 +L 2.3455,9.000179,2.3455,0.000033 +L 2.3455,0.000033,1.5186,0.000033 +L 0.864,3.69924,3.82,5.548864 +L 0.864,6.902593,3.82,6.902593 + +[滴] 51 +L 3.3947,0,3.3947,1.944993 +L 3.3947,1.944993,3.3947,3.889883 +L 3.3947,3.889883,3.3947,5.834772 +L 3.3947,5.834772,3.8252,5.834772 +L 3.8252,5.834772,4.2493,5.834772 +L 4.2493,5.834772,4.6763,5.834772 +L 4.6763,5.834772,4.526,6.471814 +L 4.526,6.471814,4.3824,7.091895 +L 4.3824,7.091895,4.2493,7.703429 +L 4.2493,7.703429,3.8252,7.806642 +L 3.8252,7.806642,3.3947,7.892851 +L 3.3947,7.892851,2.9674,7.970409 +L 6.7812,0,7.0583,0 +L 7.0583,0,7.3385,0 +L 7.3385,0,7.6358,0 +L 7.6358,0,7.6358,1.944993 +L 7.6358,1.944993,7.6358,3.889883 +L 7.6358,3.889883,7.6358,5.834772 +L 7.6358,5.834772,6.9108,5.834772 +L 6.9108,5.834772,6.1998,5.834772 +L 6.1998,5.834772,5.4997,5.834772 +L 5.4997,5.834772,5.5484,4.860259 +L 5.5484,4.860259,5.8815,4.368729 +L 5.8815,4.368729,6.7812,4.233091 +L 4.6763,1.067815,4.6763,1.601775 +L 4.6763,1.601775,4.6763,2.135642 +L 4.6763,2.135642,4.6763,2.669618 +L 4.6763,2.669618,4.9533,2.669618 +L 4.9533,2.669618,5.2262,2.669618 +L 5.2262,2.669618,5.4997,2.669618 +L 5.4997,2.669618,5.3561,3.820688 +L 5.3561,3.820688,4.9425,4.200638 +L 4.9425,4.200638,4.2493,4.233091 +L 5.0724,1.067815,5.4997,1.067815 +L 5.4997,1.067815,5.927,1.067815 +L 5.927,1.067815,6.3575,1.067815 +L 6.3575,1.067815,6.1998,1.601775 +L 6.1998,1.601775,6.0597,2.135642 +L 6.0597,2.135642,5.927,2.669618 +L 6.3575,6.368732,6.6555,6.784046 +L 6.6555,6.784046,6.7637,7.19924 +L 6.7637,7.19924,6.7812,7.970409 +L 6.7812,7.970409,6.0808,7.970409 +L 6.0808,7.970409,5.3771,7.970409 +L 5.3771,7.970409,4.6763,7.970409 +L 7.2085,7.970409,7.4856,7.970409 +L 7.4856,7.970409,7.7658,7.970409 +L 7.7658,7.970409,8.0631,7.970409 +L 2.1163,7.970359,1.2898,8.999851 +L 1.6852,5.834641,0.8625,6.902424 +L 2.1163,3.470464,0.8625,0 + +[哲] 48 +L 2.1428,0,2.1428,0.904065 +L 2.1428,0.904065,2.1428,1.791034 +L 2.1428,1.791034,2.1428,2.669618 +L 2.1428,2.669618,3.7014,2.669618 +L 3.7014,2.669618,5.2565,2.669618 +L 5.2565,2.669618,6.8151,2.669618 +L 6.8151,2.669618,6.8151,1.791034 +L 6.8151,1.791034,6.8151,0.904065 +L 6.8151,0.904065,6.8151,0 +L 6.8151,0,5.2565,0 +L 5.2565,0,3.7014,0 +L 3.7014,0,2.1428,0 +L 1.7156,3.737329,1.9957,3.737329 +L 1.9957,3.737329,2.2759,3.737329 +L 2.2759,3.737329,2.5733,3.737329 +L 2.5733,3.737329,2.5733,4.450719 +L 2.5733,4.450719,2.5733,5.147012 +L 2.5733,5.147012,2.5733,5.834772 +L 2.5733,5.834772,1.9957,5.834772 +L 1.9957,5.834772,1.4245,5.834772 +L 1.4245,5.834772,0.8645,5.834772 +L 4.2478,3.737329,4.8779,5.156813 +L 4.8779,5.156813,5.0846,6.398399 +L 5.0846,6.398399,5.1056,7.970409 +L 5.1056,7.970409,6.3384,7.990209 +L 6.3384,7.990209,6.9899,8.128616 +L 6.9899,8.128616,7.6378,8.504358 +L 6.8151,3.737329,6.8151,4.614474 +L 6.8151,4.614474,6.8151,5.491652 +L 6.8151,5.491652,6.8151,6.368732 +L 6.8151,6.368732,6.384,6.368732 +L 6.384,6.368732,5.9567,6.368732 +L 5.9567,6.368732,5.5294,6.368732 +L 2.5733,6.368732,2.339,7.699182 +L 2.339,7.699182,1.7296,8.012816 +L 1.7296,8.012816,0.8645,7.970409 +L 3.0006,6.368732,3.2741,6.368732 +L 3.2741,6.368732,3.547,6.368732 +L 3.547,6.368732,3.8205,6.368732 +L 7.2389,6.368732,7.5153,6.368732 +L 7.5153,6.368732,7.7888,6.368732 +L 7.7888,6.368732,8.0616,6.368732 +L 3.0006,7.970409,2.8468,8.313594 +L 2.8468,8.313594,2.7032,8.656911 +L 2.7032,8.656911,2.5733,9.000118 +L 3.3967,7.970409,3.6696,7.970409 +L 3.6696,7.970409,3.9498,7.970409 +L 3.9498,7.970409,4.2478,7.970409 + +[徹] 54 +L 1.7176,0,1.6335,1.600341 +L 1.6335,1.600341,1.5666,3.19214 +L 1.5666,3.19214,1.5036,4.767034 +L 1.5036,4.767034,1.2903,4.603184 +L 1.2903,4.603184,1.0763,4.422387 +L 1.0763,4.422387,0.8595,4.233091 +L 3.3952,0,3.3952,1.411023 +L 3.3952,1.411023,3.3952,2.82216 +L 3.3952,2.82216,3.3952,4.233091 +L 3.3952,4.233091,3.9553,4.233091 +L 3.9553,4.233091,4.523,4.233091 +L 4.523,4.233091,5.1041,4.233091 +L 5.1041,4.233091,5.1671,2.82216 +L 5.1671,2.82216,5.234,1.411023 +L 5.234,1.411023,5.3146,0 +L 5.3146,0,5.8049,0.800934 +L 5.8049,0.800934,6.2918,1.601775 +L 6.2918,1.601775,6.7852,2.402622 +L 6.7852,2.402622,6.4739,3.083383 +L 6.4739,3.083383,6.3093,4.111654 +L 6.3093,4.111654,6.1408,6.368732 +L 6.1408,6.368732,5.1745,5.976074 +L 5.1745,5.976074,3.9343,5.846084 +L 3.9343,5.846084,2.9644,5.834772 +L 8.0636,0,7.7663,0.533965 +L 7.7663,0.533965,7.4861,1.067815 +L 7.4861,1.067815,7.2055,1.601775 +L 3.8225,2.135642,4.0954,2.135642 +L 4.0954,2.135642,4.3791,2.135642 +L 4.3791,2.135642,4.6736,2.135642 +L 3.8225,3.203484,4.0954,3.203484 +L 4.0954,3.203484,4.3791,3.203484 +L 4.3791,3.203484,4.6736,3.203484 +L 7.2055,3.470437,7.5103,4.106077 +L 7.5103,4.106077,7.6188,4.995815 +L 7.6188,4.995815,7.6363,6.902593 +L 7.6363,6.902593,7.2055,7.005806 +L 7.2055,7.005806,6.7852,7.091895 +L 6.7852,7.091895,6.3548,7.169557 +L 6.3548,7.169557,6.4879,7.779761 +L 6.4879,7.779761,6.6315,8.389953 +L 6.6315,8.389953,6.7852,9.000118 +L 1.7176,5.567881,1.8401,6.02408 +L 1.8401,6.02408,1.9694,6.471814 +L 1.9694,6.471814,2.113,6.902593 +L 3.8225,6.635723,4.0673,7.676641 +L 4.0673,7.676641,3.5774,7.971848 +L 3.5774,7.971848,2.9644,7.970409 +L 0.8595,6.902593,1.1393,7.615884 +L 1.1393,7.615884,1.4195,8.312281 +L 1.4195,8.312281,1.7176,9.000118 +L 4.6736,7.970409,4.523,8.313594 +L 4.523,8.313594,4.3791,8.656911 +L 4.3791,8.656911,4.2495,9.000118 + +[撤] 66 +L 0.865,0,1.1413,0 +L 1.1413,0,1.4215,0 +L 1.4215,0,1.716,0 +L 1.716,0,1.716,1.411023 +L 1.716,1.411023,1.716,2.82216 +L 1.716,2.82216,1.716,4.233091 +L 1.716,4.233091,1.4215,4.233091 +L 1.4215,4.233091,1.1413,4.233091 +L 1.1413,4.233091,0.865,4.233091 +L 3.4284,0,3.4284,1.411023 +L 3.4284,1.411023,3.4284,2.82216 +L 3.4284,2.82216,3.4284,4.233091 +L 3.4284,4.233091,3.9748,4.233091 +L 3.9748,4.233091,4.5352,4.233091 +L 4.5352,4.233091,5.1026,4.233091 +L 5.1026,4.233091,5.1691,2.82216 +L 5.1691,2.82216,5.236,1.411023 +L 5.236,1.411023,5.3201,0 +L 5.3201,0,5.8069,0.800934 +L 5.8069,0.800934,6.3043,1.601775 +L 6.3043,1.601775,6.8121,2.402622 +L 6.8121,2.402622,6.5035,3.083383 +L 6.5035,3.083383,6.3354,4.111654 +L 6.3354,4.111654,6.1712,6.368732 +L 6.1712,6.368732,5.3022,6.028404 +L 5.3022,6.028404,4.2515,5.984524 +L 4.2515,5.984524,3.4284,6.101747 +L 3.4284,6.101747,3.5583,6.738793 +L 3.5583,6.738793,3.7019,7.358876 +L 3.7019,7.358876,3.8522,7.970409 +L 3.8522,7.970409,3.5583,7.970409 +L 3.5583,7.970409,3.2746,7.970409 +L 3.2746,7.970409,2.9976,7.970409 +L 8.094,0,7.796,0.533965 +L 7.796,0.533965,7.5123,1.067815 +L 7.5123,1.067815,7.2429,1.601775 +L 3.8522,2.135642,4.1289,2.135642 +L 4.1289,2.135642,4.4024,2.135642 +L 4.4024,2.135642,4.6788,2.135642 +L 3.8522,3.203484,4.1289,3.203484 +L 4.1289,3.203484,4.4024,3.203484 +L 4.4024,3.203484,4.6788,3.203484 +L 7.2429,3.470437,7.5368,4.106077 +L 7.5368,4.106077,7.6492,4.995815 +L 7.6492,4.995815,7.6632,6.902593 +L 7.6632,6.902593,7.2429,7.005806 +L 7.2429,7.005806,6.8121,7.091895 +L 6.8121,7.091895,6.3845,7.169557 +L 6.3845,7.169557,6.5144,7.779761 +L 6.5144,7.779761,6.6612,8.389953 +L 6.6612,8.389953,6.8121,9.000118 +L 1.716,4.767034,1.716,5.3009 +L 1.716,5.3009,1.716,5.834772 +L 1.716,5.834772,1.716,6.368732 +L 1.716,6.368732,1.4215,6.557952 +L 1.4215,6.557952,1.1413,6.738793 +L 1.1413,6.738793,0.865,6.902593 +L 2.1433,6.902593,1.8418,7.33624 +L 1.8418,7.33624,1.7301,7.880062 +L 1.7301,7.880062,1.716,9.000118 +L 4.2798,7.970409,4.2798,8.313594 +L 4.2798,8.313594,4.2798,8.656911 +L 4.2798,8.656911,4.2798,9.000118 +L 4.6788,7.970409,4.9558,7.970409 +L 4.9558,7.970409,5.236,7.970409 +L 5.236,7.970409,5.5334,7.970409 + + +# kan_34 ------------------------------------------------------- +# 迭添殿吐塗斗途奴倒凍唐塔悼搭桃棟盗痘筒謄踏逃透陶騰闘洞胴峠匿督篤凸突屯曇鈍縄軟尼弐如尿妊忍寧粘悩濃把 + +[迭] 36 +L 2.749,1.578758,3.3938,2.379593 +L 3.3938,2.379593,4.0274,3.180461 +L 4.0274,3.180461,4.6718,3.981292 +L 4.6718,3.981292,4.5212,4.248271 +L 4.5212,4.248271,4.3745,4.515235 +L 4.3745,4.515235,4.2449,4.782122 +L 4.2449,4.782122,3.6631,4.782122 +L 3.6631,4.782122,3.0922,4.782122 +L 3.0922,4.782122,2.5353,4.782122 +L 6.7768,1.578758,6.1989,2.11263 +L 6.1989,2.11263,5.6245,2.646578 +L 5.6245,2.646578,5.0676,3.180461 +L 5.0676,4.782122,4.7702,5.444638 +L 4.7702,5.444638,4.5597,6.217262 +L 4.5597,6.217262,4.2449,6.879658 +L 4.2449,6.879658,3.3269,6.662129 +L 3.3269,6.662129,2.8821,6.385347 +L 2.8821,6.385347,2.5353,5.811842 +L 5.4988,4.782122,5.9187,4.782122 +L 5.9187,4.782122,6.3498,4.782122 +L 6.3498,4.782122,6.7768,4.782122 +L 5.0676,6.879658,4.7874,7.314722 +L 4.7874,7.314722,4.6858,7.868362 +L 4.6858,7.868362,4.6718,9.015201 +L 5.4988,6.879658,5.7681,6.879658 +L 5.7681,6.879658,6.0518,6.879658 +L 6.0518,6.879658,6.3498,6.879658 +L 3.3938,7.41353,3.3938,7.783614 +L 3.3938,7.783614,3.3938,8.136704 +L 3.3938,8.136704,3.3938,8.481368 +L 5.0886,0,7.2185,0 +L 1.2709,1.067668,0.2167,0.015186 +L 0.0206,4.766908,1.2709,4.766908 +L 1.2709,1.067668,1.2709,4.766908 +L 0.4444,8.50433,1.2709,7.436438 +A 5.0886,7.363018,7.362973,238.75988,270 + +[添] 35 +L 1.0947,2.615483,2.219,4.33024 +L 2.219,4.33024,3.8157,6.078806 +L 3.8157,6.078806,3.1152,6.181943 +L 3.1152,6.181943,2.4147,6.268048 +L 2.4147,6.268048,1.7107,6.345698 +L 2.9926,0.015186,3.2658,0.015186 +L 3.2658,0.015186,3.5464,0.015186 +L 3.5464,0.015186,3.8157,0.015186 +L 3.8157,0.015186,3.8157,1.426204 +L 3.8157,1.426204,3.8157,2.837232 +L 3.8157,2.837232,3.8157,4.248271 +L 1.7107,1.044896,1.9878,1.578758 +L 1.9878,1.578758,2.2715,2.11263 +L 2.2715,2.11263,2.5653,2.646578 +L 5.5249,1.044896,5.5078,1.816076 +L 5.5078,1.816076,5.3992,2.231374 +L 5.3992,2.231374,5.0976,2.646578 +L 7.2341,1.311778,6.9368,1.768076 +L 6.9368,1.768076,6.6562,2.21581 +L 6.6562,2.21581,6.376,2.646578 +L 6.8068,3.714399,5.5459,5.133872 +L 5.5459,5.133872,4.7719,6.324487 +L 4.7719,6.324487,4.2465,7.94749 +L 4.2465,7.94749,3.5464,7.94749 +L 3.5464,7.94749,2.842,7.94749 +L 2.842,7.94749,2.1416,7.94749 +L 5.0976,6.345698,5.802,6.345698 +L 5.802,6.345698,6.5126,6.345698 +L 6.5126,6.345698,7.2341,6.345698 +L 4.6668,8.481368,5.2272,8.481368 +L 5.2272,8.481368,5.802,8.481368 +L 5.802,8.481368,6.376,8.481368 +L 1.2519,7.985541,0.4324,9.015031 +L 0.8281,5.849822,0.0019,6.917605 +L 1.2519,3.485651,0.0019,0.015186 + +[殿] 69 +L 0.8897,0.015186,1.1629,0.358388 +L 1.1629,0.358388,1.4431,0.701612 +L 1.4431,0.701612,1.7408,1.044896 +L 3.8496,0.015186,3.5554,0.358388 +L 3.5554,0.358388,3.2678,0.701612 +L 3.2678,0.701612,2.9946,1.044896 +L 4.2734,0.015186,4.7038,0.54769 +L 4.7038,0.54769,5.1245,1.071695 +L 5.1245,1.071695,5.5549,1.578758 +L 5.5549,1.578758,4.956,2.745468 +L 4.956,2.745468,4.7319,3.437541 +L 4.7319,3.437541,4.7038,4.248271 +L 4.7038,4.248271,5.2537,4.248271 +L 5.2537,4.248271,5.8106,4.248271 +L 5.8106,4.248271,6.3815,4.248271 +L 6.3815,4.248271,6.2383,3.550523 +L 6.2383,3.550523,6.1052,2.835809 +L 6.1052,2.835809,5.9822,2.11263 +L 6.8057,0.015186,6.5356,0.358388 +L 6.5356,0.358388,6.2593,0.701612 +L 6.2593,0.701612,5.9822,1.044896 +L 0.0351,0.510958,0.144,1.636729 +L 0.144,1.636729,0.3503,3.821739 +L 0.3503,3.821739,0.4592,8.481368 +L 0.4592,8.481368,1.4361,8.481368 +L 1.4361,8.481368,2.4237,8.481368 +L 2.4237,8.481368,3.4184,8.481368 +L 3.4184,8.481368,3.4184,7.94749 +L 3.4184,7.94749,3.4184,7.41353 +L 3.4184,7.41353,3.4184,6.879658 +L 3.4184,6.879658,2.5673,6.879658 +L 2.5673,6.879658,1.7198,6.879658 +L 1.7198,6.879658,0.8897,6.879658 +L 0.8897,2.11263,1.1629,2.11263 +L 1.1629,2.11263,1.4431,2.11263 +L 1.4431,2.11263,1.7408,2.11263 +L 1.7408,2.11263,1.7408,2.646578 +L 1.7408,2.646578,1.7408,3.180461 +L 1.7408,3.180461,1.7408,3.714399 +L 1.7408,3.714399,1.4431,3.90363 +L 1.4431,3.90363,1.1629,4.084395 +L 1.1629,4.084395,0.8897,4.248271 +L 2.14,2.11263,2.4167,2.11263 +L 2.4167,2.11263,2.6969,2.11263 +L 2.6969,2.11263,2.9946,2.11263 +L 2.9946,2.11263,2.9946,2.835809 +L 2.9946,2.835809,2.9946,3.550523 +L 2.9946,3.550523,2.9946,4.248271 +L 2.9946,4.248271,2.07,4.424817 +L 2.07,4.424817,1.7688,4.9488 +L 1.7688,4.9488,1.7408,5.811842 +L 2.9946,4.782122,2.9946,5.125362 +L 2.9946,5.125362,2.9946,5.468641 +L 2.9946,5.468641,2.9946,5.811842 +L 4.2734,5.811842,4.5781,6.26662 +L 4.5781,6.26662,4.6863,6.958791 +L 4.6863,6.958791,4.7038,8.481368 +L 4.7038,8.481368,5.1245,8.481368 +L 5.1245,8.481368,5.5549,8.481368 +L 5.5549,8.481368,5.9822,8.481368 +L 5.9822,8.481368,5.9822,7.602838 +L 5.9822,7.602838,5.9822,6.715886 +L 5.9822,6.715886,5.9822,5.811842 +L 5.9822,5.811842,6.385,5.811842 +L 6.385,5.811842,6.8057,5.811842 +L 6.8057,5.811842,7.2361,5.811842 +L 7.2361,5.811842,7.2361,6.181943 +L 7.2361,6.181943,7.2361,6.535027 +L 7.2361,6.535027,7.2361,6.879658 + +[吐] 30 +L 2.1736,0.015186,3.0037,0.015186 +L 3.0037,0.015186,3.8481,0.015186 +L 3.8481,0.015186,4.6992,0.015186 +L 4.6992,0.015186,4.6218,1.88242 +L 4.6218,1.88242,4.5486,3.741209 +L 4.5486,3.741209,4.4887,5.583061 +L 4.4887,5.583061,3.8481,5.6593 +L 3.8481,5.6593,3.2138,5.735527 +L 3.2138,5.735527,2.5974,5.811842 +L 5.1296,0.015186,5.8301,0.015186 +L 5.8301,0.015186,6.5376,0.015186 +L 6.5376,0.015186,7.2626,0.015186 +L 0.0616,2.646578,0.0616,4.427597 +L 0.0616,4.427597,0.0616,6.191804 +L 0.0616,6.191804,0.0616,7.94749 +L 0.0616,7.94749,0.615,7.94749 +L 0.615,7.94749,1.1719,7.94749 +L 1.1719,7.94749,1.7431,7.94749 +L 1.7431,7.94749,1.7431,6.191804 +L 1.7431,6.191804,1.7431,4.427597 +L 1.7431,4.427597,1.7431,2.646578 +L 1.7431,2.646578,1.1719,2.646578 +L 1.1719,2.646578,0.615,2.646578 +L 0.615,2.646578,0.0616,2.646578 +L 5.1296,5.811842,4.8249,6.286397 +L 4.8249,6.286397,4.7164,7.116894 +L 4.7164,7.116894,4.6992,9.015201 +L 5.5569,5.811842,5.9846,5.811842 +L 5.9846,5.811842,6.4084,5.811842 +L 6.4084,5.811842,6.8388,5.811842 + +[塗] 48 +L 0.0639,0.015186,1.1914,0.015186 +L 1.1914,0.015186,2.3262,0.015186 +L 2.3262,0.015186,3.447,0.015186 +L 3.447,0.015186,3.447,0.54769 +L 3.447,0.54769,3.447,1.071695 +L 3.447,1.071695,3.447,1.578758 +L 3.447,1.578758,2.5959,1.578758 +L 2.5959,1.578758,1.7518,1.578758 +L 1.7518,1.578758,0.9217,1.578758 +L 3.8781,0.015186,4.8623,0.015186 +L 4.8623,0.015186,5.864,0.015186 +L 5.864,0.015186,6.8657,0.015186 +L 3.8781,1.578758,4.5818,1.578758 +L 4.5818,1.578758,5.2893,1.578758 +L 5.2893,1.578758,6.0146,1.578758 +L 0.0639,3.180461,0.4909,4.057628 +L 0.4909,4.057628,0.9217,4.934774 +L 0.9217,4.934774,1.3455,5.811842 +L 3.447,3.180461,3.7275,3.180461 +L 3.7275,3.180461,4.0074,3.180461 +L 4.0074,3.180461,4.3054,3.180461 +L 4.3054,3.180461,4.165,4.801987 +L 4.165,4.801987,3.6575,5.296309 +L 3.6575,5.296309,2.6309,5.316081 +L 1.9868,3.714399,2.2004,3.90363 +L 2.2004,3.90363,2.4137,4.084395 +L 2.4137,4.084395,2.6309,4.248271 +L 6.8657,3.714399,6.5715,3.90363 +L 6.5715,3.90363,6.2878,4.084395 +L 6.2878,4.084395,6.0146,4.248271 +L 4.7359,5.316081,4.4312,5.704421 +L 4.4312,5.704421,4.3226,6.109934 +L 4.3226,6.109934,4.3054,6.879658 +L 4.3054,6.879658,3.2368,7.235562 +L 3.2368,7.235562,2.5784,7.235562 +L 2.5784,7.235562,1.7731,6.879658 +L 5.1565,5.316081,5.4367,5.316081 +L 5.4367,5.316081,5.7166,5.316081 +L 5.7166,5.316081,6.0146,5.316081 +L 4.946,6.879658,5.1565,7.068878 +L 5.1565,7.068878,5.3733,7.249763 +L 5.3733,7.249763,5.587,7.41353 +L 5.587,7.41353,5.1565,7.94749 +L 5.1565,7.94749,4.7359,8.481368 +L 4.7359,8.481368,4.3054,9.015201 +L 4.3054,9.015201,4.0074,8.670582 +L 4.0074,8.670582,3.7275,8.317475 +L 3.7275,8.317475,3.447,7.94749 + +[斗] 15 +L 4.7624,0.015186,4.2549,3.070326 +L 4.2549,3.070326,2.6994,3.150773 +L 2.6994,3.150773,0.094,2.646578 +L 5.1932,3.180461,4.8885,3.752521 +L 4.8885,3.752521,4.7802,5.265219 +L 4.7802,5.265219,4.7624,9.015201 +L 5.5855,3.714399,6.1462,3.714399 +L 6.1462,3.714399,6.7167,3.714399 +L 6.7167,3.714399,7.2947,3.714399 +L 1.7751,5.316081,1.4946,5.6593 +L 1.4946,5.6593,1.2249,6.002507 +L 1.2249,6.002507,0.9482,6.345698 +L 2.6294,7.41353,2.3352,7.783614 +L 2.3352,7.783614,2.0483,8.136704 +L 2.0483,8.136704,1.7751,8.481368 + +[途] 54 +L 0.3093,0.015186,0.6525,0.358388 +L 0.6525,0.358388,1.0136,0.701612 +L 1.0136,0.701612,1.3775,1.044896 +L 1.3775,1.044896,1.3775,2.301948 +L 1.3775,2.301948,1.3775,3.550523 +L 1.3775,3.550523,1.3775,4.782122 +L 1.3775,4.782122,0.9541,4.782122 +L 0.9541,4.782122,0.5334,4.782122 +L 0.5334,4.782122,0.1271,4.782122 +L 2.6594,0.015186,2.3621,0.194605 +L 2.3621,0.194605,2.0815,0.357037 +L 2.0815,0.357037,1.8052,0.510958 +L 3.0867,0.015186,4.4912,0.015186 +L 4.4912,0.015186,5.903,0.015186 +L 5.903,0.015186,7.3247,0.015186 +L 2.2321,1.578758,2.5053,2.11263 +L 2.5053,2.11263,2.7925,2.646578 +L 2.7925,2.646578,3.0867,3.180461 +L 3.9417,1.578758,4.2148,1.578758 +L 4.2148,1.578758,4.488,1.578758 +L 4.488,1.578758,4.7644,1.578758 +L 4.7644,1.578758,4.6281,3.660719 +L 4.6281,3.660719,4.0327,4.251062 +L 4.0327,4.251062,2.6594,4.248271 +L 6.8977,1.578758,6.6035,2.11263 +L 6.6035,2.11263,6.3198,2.646578 +L 6.3198,2.646578,6.0428,3.180461 +L 5.1882,4.248271,4.894,4.662108 +L 4.894,4.662108,4.7822,5.067462 +L 4.7822,5.067462,4.7644,5.811842 +L 4.7644,5.811842,4.3371,5.811842 +L 4.3371,5.811842,3.9168,5.811842 +L 3.9168,5.811842,3.5105,5.811842 +L 5.6193,4.248271,6.0428,4.248271 +L 6.0428,4.248271,6.4736,4.248271 +L 6.4736,4.248271,6.8977,4.248271 +L 5.1882,5.811842,5.4687,5.811842 +L 5.4687,5.811842,5.7486,5.811842 +L 5.7486,5.811842,6.0428,5.811842 +L 2.4458,6.345698,3.2058,7.249763 +L 3.2058,7.249763,3.9802,8.136704 +L 3.9802,8.136704,4.7644,9.015201 +L 4.7644,9.015201,5.6193,8.136704 +L 5.6193,8.136704,6.4736,7.249763 +L 6.4736,7.249763,7.3247,6.345698 +L 1.3775,7.41353,1.0833,7.783614 +L 1.0833,7.783614,0.7961,8.136704 +L 0.7961,8.136704,0.5229,8.481368 +L 5.1812,0,7.311,0 +L 1.3603,1.067668,0.3093,0.015186 +L 0.1135,4.766908,1.3603,4.766908 +L 1.3603,1.067668,1.3603,4.766908 +L 0.5369,8.50433,1.3603,7.436438 +A 5.1812,7.363018,7.362973,238.75988,270 + +[奴] 40 +L 0.126,0.015186,0.5529,0.62539 +L 0.5529,0.62539,0.9802,1.235451 +L 0.9802,1.235451,1.4114,1.845737 +L 1.4114,1.845737,1.0783,2.419154 +L 1.0783,2.419154,0.7424,2.696028 +L 0.7424,2.696028,0.126,2.913553 +L 0.126,2.913553,0.4409,3.920628 +L 0.4409,3.920628,0.665,5.097129 +L 0.665,5.097129,0.9802,6.078806 +L 0.9802,6.078806,0.686,6.345698 +L 0.686,6.345698,0.4023,6.612689 +L 0.4023,6.612689,0.126,6.879658 +L 2.8716,0.015186,3.6421,0.892364 +L 3.6421,0.892364,4.4301,1.769422 +L 4.4301,1.769422,5.2217,2.646578 +L 5.2217,2.646578,4.4021,4.512367 +L 4.4021,4.512367,4.0312,6.157841 +L 4.0312,6.157841,3.9363,7.94749 +L 3.9363,7.94749,3.6421,7.94749 +L 3.6421,7.94749,3.3622,7.94749 +L 3.3622,7.94749,3.0852,7.94749 +L 6.8994,0.015186,6.4724,0.728472 +L 6.4724,0.728472,6.0556,1.424868 +L 6.0556,1.424868,5.6455,2.11263 +L 2.6579,1.044896,1.9189,2.913553 +L 1.9189,2.913553,2.045,4.833 +L 2.045,4.833,2.2621,6.879658 +L 2.2621,6.879658,1.2009,7.170657 +L 1.2009,7.170657,0.9456,7.936156 +L 0.9456,7.936156,0.9802,9.015201 +L 5.6455,3.44742,6.2483,5.190431 +L 6.2483,5.190431,6.4724,6.357049 +L 6.4724,6.357049,6.5004,7.94749 +L 6.5004,7.94749,5.7751,7.94749 +L 5.7751,7.94749,5.0676,7.94749 +L 5.0676,7.94749,4.3675,7.94749 +L 3.5269,6.345502,-0.074,6.345502 +L 0.7844,3.341717,1.4114,9.015081 +A -4.6097,-3.38437,8.620982,23.224227,51.278884 +A -6.4656,6.345502,9.138971,316.15783,0 + +[倒] 45 +L 1.0103,0.015186,0.9262,1.796309 +L 0.9262,1.796309,0.8596,3.560423 +L 0.8596,3.560423,0.7966,5.316081 +L 0.7966,5.316081,0.583,5.152314 +L 0.583,5.152314,0.3693,4.97144 +L 0.3693,4.97144,0.1592,4.782122 +L 6.0751,0.015186,6.3515,0.015186 +L 6.3515,0.015186,6.6352,0.015186 +L 6.6352,0.015186,6.9294,0.015186 +L 6.9294,0.015186,6.9294,3.026474 +L 6.9294,3.026474,6.9294,6.029383 +L 6.9294,6.029383,6.9294,9.015201 +L 1.8337,1.044896,2.2641,1.044896 +L 2.2641,1.044896,2.6848,1.044896 +L 2.6848,1.044896,3.1152,1.044896 +L 3.1152,1.044896,3.0347,2.479916 +L 3.0347,2.479916,2.6669,3.067442 +L 2.6669,3.067442,1.8337,3.180461 +L 3.5425,1.044896,3.8196,1.234116 +L 3.8196,1.234116,4.0994,1.41499 +L 4.0994,1.41499,4.3936,1.578758 +L 5.6475,2.11263,5.6475,4.057628 +L 5.6475,4.057628,5.6475,6.002507 +L 5.6475,6.002507,5.6475,7.94749 +L 3.5425,3.180461,3.3923,3.550523 +L 3.3923,3.550523,3.2448,3.90363 +L 3.2448,3.90363,3.1152,4.248271 +L 1.8337,5.316081,2.1104,5.316081 +L 2.1104,5.316081,2.3937,5.316081 +L 2.3937,5.316081,2.6848,5.316081 +L 2.6848,5.316081,2.7969,6.238381 +L 2.7969,6.238381,3.0066,7.177667 +L 3.0066,7.177667,3.1152,8.481368 +L 3.1152,8.481368,2.8179,8.481368 +L 2.8179,8.481368,2.5373,8.481368 +L 2.5373,8.481368,2.2641,8.481368 +L 3.1152,5.316081,3.5425,5.848619 +L 3.5425,5.848619,3.9733,6.37259 +L 3.9733,6.37259,4.3936,6.879658 +L 1.0103,5.811842,1.1157,7.116894 +L 1.1157,7.116894,1.3045,8.066162 +L 1.3045,8.066162,1.4099,9.015201 +L 3.5425,8.481368,3.9733,8.481368 +L 3.9733,8.481368,4.3936,8.481368 +L 4.3936,8.481368,4.8244,8.481368 + +[凍] 57 +L 0.1577,0.282172,0.585,1.426204 +L 0.585,1.426204,1.0123,2.570351 +L 1.0123,2.570351,1.436,3.714399 +L 4.8229,0.015186,4.7424,0.892364 +L 4.7424,0.892364,4.6758,1.769422 +L 4.6758,1.769422,4.6128,2.646578 +L 4.6128,2.646578,3.8286,1.948857 +L 3.8286,1.948857,3.0577,1.234116 +L 3.0577,1.234116,2.291,0.510958 +L 6.9629,0.510958,5.6845,2.2454 +L 5.6845,2.2454,4.7249,2.895127 +L 4.7249,2.895127,3.1421,3.180461 +L 3.1421,3.180461,3.1421,4.246903 +L 3.1421,4.246903,3.1421,5.304791 +L 3.1421,5.304791,3.1421,6.345698 +L 3.1421,6.345698,4.0454,6.375381 +L 4.0454,6.375381,4.4765,6.583028 +L 4.4765,6.583028,4.8229,7.14655 +L 4.8229,7.14655,4.6758,7.41353 +L 4.6758,7.41353,4.5291,7.68051 +L 4.5291,7.68051,4.3991,7.94749 +L 4.3991,7.94749,3.6951,7.94749 +L 3.6951,7.94749,2.9946,7.94749 +L 2.9946,7.94749,2.291,7.94749 +L 5.6775,3.180461,5.9546,3.180461 +L 5.9546,3.180461,6.2379,3.180461 +L 6.2379,3.180461,6.5325,3.180461 +L 6.5325,3.180461,6.5325,3.714399 +L 6.5325,3.714399,6.5325,4.248271 +L 6.5325,4.248271,6.5325,4.782122 +L 6.5325,4.782122,6.1052,4.782122 +L 6.1052,4.782122,5.6775,4.782122 +L 5.6775,4.782122,5.2537,4.782122 +L 5.2537,4.782122,5.0996,4.43748 +L 5.0996,4.43748,4.956,4.084395 +L 4.956,4.084395,4.8229,3.714399 +L 3.5725,4.782122,3.8496,4.782122 +L 3.8496,4.782122,4.1228,4.782122 +L 4.1228,4.782122,4.3991,4.782122 +L 4.3991,4.782122,4.6758,5.314642 +L 4.6758,5.314642,4.956,5.838724 +L 4.956,5.838724,5.2537,6.345698 +L 5.2537,6.345698,5.6775,6.345698 +L 5.6775,6.345698,6.1052,6.345698 +L 6.1052,6.345698,6.5325,6.345698 +L 6.5325,6.345698,6.5325,6.002507 +L 6.5325,6.002507,6.5325,5.6593 +L 6.5325,5.6593,6.5325,5.316081 +L 1.0123,7.41353,0.7145,7.783614 +L 0.7145,7.783614,0.4343,8.136704 +L 0.4343,8.136704,0.1577,8.481368 +L 5.2537,7.94749,5.0996,8.317475 +L 5.0996,8.317475,4.956,8.670582 +L 4.956,8.670582,4.8229,9.015201 +L 5.6775,7.94749,6.2379,7.94749 +L 6.2379,7.94749,6.8092,7.94749 +L 6.8092,7.94749,7.3867,7.94749 + +[唐] 42 +L 0.1915,0.282172,0.8707,2.947466 +L 0.8707,2.947466,1.0493,5.358429 +L 1.0493,5.358429,1.0426,7.94749 +L 1.0426,7.94749,1.8762,7.94749 +L 1.8762,7.94749,2.7203,7.94749 +L 2.7203,7.94749,3.5749,7.94749 +L 3.5749,7.94749,3.7041,8.317475 +L 3.7041,8.317475,3.8477,8.670582 +L 3.8477,8.670582,4.0022,9.015201 +L 2.2965,0.015186,2.2965,0.728472 +L 2.2965,0.728472,2.2965,1.424868 +L 2.2965,1.424868,2.2965,2.11263 +L 2.2965,2.11263,3.5749,2.11263 +L 3.5749,2.11263,4.8564,2.11263 +L 4.8564,2.11263,6.1348,2.11263 +L 6.1348,2.11263,6.1348,1.424868 +L 6.1348,1.424868,6.1348,0.728472 +L 6.1348,0.728472,6.1348,0.015186 +L 6.1348,0.015186,4.8564,0.015186 +L 4.8564,0.015186,3.5749,0.015186 +L 3.5749,0.015186,2.2965,0.015186 +L 2.2965,3.714399,2.8495,3.714399 +L 2.8495,3.714399,3.4239,3.714399 +L 3.4239,3.714399,4.0022,3.714399 +L 4.0022,3.714399,3.5959,5.197447 +L 3.5959,5.197447,2.6289,5.434749 +L 2.6289,5.434749,1.4699,5.316081 +L 4.426,3.714399,4.986,3.714399 +L 4.986,3.714399,5.5573,3.714399 +L 5.5573,3.714399,6.1348,3.714399 +L 6.1348,3.714399,5.3962,5.362653 +L 5.3962,5.362653,3.8057,6.1466 +L 3.8057,6.1466,2.2965,6.345698 +L 6.3205,5.583061,5.7286,6.030735 +L 5.7286,6.030735,4.7517,6.495466 +L 4.7517,6.495466,4.0022,7.14655 +L 4.0022,7.14655,4.1314,7.41353 +L 4.1314,7.41353,4.275,7.68051 +L 4.275,7.68051,4.426,7.94749 +L 4.426,7.94749,5.4063,7.94749 +L 5.4063,7.94749,6.3874,7.94749 +L 6.3874,7.94749,7.3887,7.94749 + +[塔] 39 +L 3.6046,0.015186,3.6046,0.892364 +L 3.6046,0.892364,3.6046,1.769422 +L 3.6046,1.769422,3.6046,2.646578 +L 3.6046,2.646578,4.5821,2.646578 +L 4.5821,2.646578,5.5659,2.646578 +L 5.5659,2.646578,6.5641,2.646578 +L 6.5641,2.646578,6.5641,1.769422 +L 6.5641,1.769422,6.5641,0.892364 +L 6.5641,0.892364,6.5641,0.015186 +L 6.5641,0.015186,5.5659,0.015186 +L 5.5659,0.015186,4.5821,0.015186 +L 4.5821,0.015186,3.6046,0.015186 +L 0.2177,2.11263,0.624,2.11263 +L 0.624,2.11263,1.0446,2.11263 +L 1.0446,2.11263,1.4649,2.11263 +L 1.4649,2.11263,1.5206,4.227038 +L 1.5206,4.227038,1.3,5.756832 +L 1.3,5.756832,0.2177,6.345698 +L 2.964,4.248271,3.6676,4.961557 +L 3.6676,4.961557,4.3681,5.657877 +L 4.3681,5.657877,5.0689,6.345698 +L 5.0689,6.345698,5.8395,5.657877 +L 5.8395,5.657877,6.6237,4.961557 +L 6.6237,4.961557,7.4191,4.248271 +L 4.0319,4.248271,4.7324,4.248271 +L 4.7324,4.248271,5.4332,4.248271 +L 5.4332,4.248271,6.1368,4.248271 +L 1.8957,6.345698,1.5945,6.800552 +L 1.5945,6.800552,1.4821,7.492636 +L 1.4821,7.492636,1.4649,9.015201 +L 4.0319,7.14655,3.6995,7.710193 +L 3.6995,7.710193,3.3664,7.917746 +L 3.3664,7.917746,2.7535,7.94749 +L 6.1368,7.14655,5.4962,7.749716 +L 5.4962,7.749716,4.6728,8.234253 +L 4.6728,8.234253,4.0319,9.015201 +L 6.5641,7.94749,6.4135,8.317475 +L 6.4135,8.317475,6.2703,8.670582 +L 6.2703,8.670582,6.1368,9.015201 + +[悼] 48 +L 1.5016,0.015186,1.5016,3.026474 +L 1.5016,3.026474,1.5016,6.029383 +L 1.5016,6.029383,1.5016,9.015201 +L 4.885,0.015186,4.465,1.488422 +L 4.465,1.488422,3.4875,1.707325 +L 3.4875,1.707325,2.3527,1.578758 +L 5.3126,1.578758,5.0114,1.994072 +L 5.0114,1.994072,4.9025,2.409276 +L 4.9025,2.409276,4.885,3.180461 +L 4.885,3.180461,4.3141,3.180461 +L 4.3141,3.180461,3.7575,3.180461 +L 3.7575,3.180461,3.2111,3.180461 +L 3.2111,3.180461,3.2111,4.246903 +L 3.2111,4.246903,3.2111,5.304791 +L 3.2111,5.304791,3.2111,6.345698 +L 3.2111,6.345698,3.7575,6.345698 +L 3.7575,6.345698,4.3141,6.345698 +L 4.3141,6.345698,4.885,6.345698 +L 4.885,6.345698,4.885,7.249763 +L 4.885,7.249763,4.885,8.136704 +L 4.885,8.136704,4.885,9.015201 +L 5.7434,1.578758,6.2898,1.578758 +L 6.2898,1.578758,6.8463,1.578758 +L 6.8463,1.578758,7.4176,1.578758 +L 5.3126,3.180461,5.7434,3.180461 +L 5.7434,3.180461,6.1672,3.180461 +L 6.1672,3.180461,6.5945,3.180461 +L 6.5945,3.180461,6.5945,3.714399 +L 6.5945,3.714399,6.5945,4.248271 +L 6.5945,4.248271,6.5945,4.782122 +L 6.5945,4.782122,5.589,4.782122 +L 5.589,4.782122,4.5876,4.782122 +L 4.5876,4.782122,3.6031,4.782122 +L 0.2165,5.049102,0.5178,5.64518 +L 0.5178,5.64518,0.6295,6.25817 +L 0.6295,6.25817,0.647,7.41353 +L 6.5945,5.316081,6.5945,5.6593 +L 6.5945,5.6593,6.5945,6.002507 +L 6.5945,6.002507,6.5945,6.345698 +L 6.5945,6.345698,6.1672,6.345698 +L 6.1672,6.345698,5.7434,6.345698 +L 5.7434,6.345698,5.3126,6.345698 +L 2.3527,6.612689,2.2021,6.879658 +L 2.2021,6.879658,2.062,7.14655 +L 2.062,7.14655,1.9219,7.41353 +L 5.3126,7.94749,5.8727,7.94749 +L 5.8727,7.94749,6.4436,7.94749 +L 6.4436,7.94749,7.0215,7.94749 + +[搭] 54 +L 0.2501,0.015186,0.5229,0.015186 +L 0.5229,0.015186,0.8101,0.015186 +L 0.8101,0.015186,1.1047,0.015186 +L 1.1047,0.015186,1.1047,1.262431 +L 1.1047,1.262431,1.1047,2.492613 +L 1.1047,2.492613,1.1047,3.714399 +L 1.1047,3.714399,0.8101,3.714399 +L 0.8101,3.714399,0.5229,3.714399 +L 0.5229,3.714399,0.2501,3.714399 +L 3.6369,0.015186,3.6369,0.892364 +L 3.6369,0.892364,3.6369,1.769422 +L 3.6369,1.769422,3.6369,2.646578 +L 3.6369,2.646578,4.467,2.646578 +L 4.467,2.646578,5.3146,2.646578 +L 5.3146,2.646578,6.1657,2.646578 +L 6.1657,2.646578,6.1657,1.769422 +L 6.1657,1.769422,6.1657,0.892364 +L 6.1657,0.892364,6.1657,0.015186 +L 6.1657,0.015186,5.3146,0.015186 +L 5.3146,0.015186,4.467,0.015186 +L 4.467,0.015186,3.6369,0.015186 +L 2.355,3.714399,2.022,4.090042 +L 2.022,4.090042,1.6962,4.228488 +L 1.6962,4.228488,1.1047,4.248271 +L 1.1047,4.248271,1.1047,4.961557 +L 1.1047,4.961557,1.1047,5.657877 +L 1.1047,5.657877,1.1047,6.345698 +L 1.1047,6.345698,0.8101,6.535027 +L 0.8101,6.535027,0.5229,6.715886 +L 0.5229,6.715886,0.2501,6.879658 +L 2.7823,3.714399,3.486,4.591567 +L 3.486,4.591567,4.1935,5.468641 +L 4.1935,5.468641,4.915,6.345698 +L 4.915,6.345698,5.7486,5.468641 +L 5.7486,5.468641,6.5962,4.591567 +L 6.5962,4.591567,7.4473,3.714399 +L 4.0607,4.248271,4.6138,4.248271 +L 4.6138,4.248271,5.1672,4.248271 +L 5.1672,4.248271,5.7419,4.248271 +L 1.5285,6.879658,1.2304,7.314722 +L 1.2304,7.314722,1.1183,7.868362 +L 1.1183,7.868362,1.1047,9.015201 +L 4.0607,7.14655,3.714,7.710193 +L 3.714,7.710193,3.2692,7.917746 +L 3.2692,7.917746,2.355,7.94749 +L 5.7419,7.14655,5.2232,7.749716 +L 5.2232,7.749716,4.5963,8.234253 +L 4.5963,8.234253,4.0607,9.015201 +L 6.1657,7.94749,6.0183,8.317475 +L 6.0183,8.317475,5.8676,8.670582 +L 5.8676,8.670582,5.7419,9.015201 +L 6.5962,7.94749,6.8697,7.94749 +L 6.8697,7.94749,7.1569,7.94749 +L 7.1569,7.94749,7.4473,7.94749 + +[桃] 45 +L 1.534,0.015186,1.4499,1.615424 +L 1.4499,1.615424,1.3795,3.207321 +L 1.3795,3.207321,1.3165,4.782122 +L 1.3165,4.782122,0.9596,4.084395 +L 0.9596,4.084395,0.6163,3.369758 +L 0.6163,3.369758,0.2797,2.646578 +L 2.5987,0.015186,3.2148,0.892364 +L 3.2148,0.892364,3.8487,1.769422 +L 3.8487,1.769422,4.4897,2.646578 +L 4.4897,2.646578,4.406,3.180461 +L 4.406,3.180461,4.3356,3.714399 +L 4.3356,3.714399,4.276,4.248271 +L 4.276,4.248271,3.9156,3.90363 +L 3.9156,3.90363,3.579,3.550523 +L 3.579,3.550523,3.2393,3.180461 +L 5.7681,0.015186,5.7681,3.026474 +L 5.7681,3.026474,5.7681,6.029383 +L 5.7681,6.029383,5.7681,9.015201 +L 6.1989,0.015186,6.6265,0.015186 +L 6.6265,0.015186,7.0538,0.015186 +L 7.0538,0.015186,7.4811,0.015186 +L 7.4811,0.015186,7.4811,0.54769 +L 7.4811,0.54769,7.4811,1.071695 +L 7.4811,1.071695,7.4811,1.578758 +L 7.0538,3.180461,6.7561,3.550523 +L 6.7561,3.550523,6.4756,3.90363 +L 6.4756,3.90363,6.1989,4.248271 +L 2.3847,4.782122,1.9084,5.215769 +L 1.9084,5.215769,1.5791,5.759617 +L 1.5791,5.759617,1.1032,6.879658 +L 1.1032,6.879658,0.8296,6.879658 +L 0.8296,6.879658,0.5529,6.879658 +L 0.5529,6.879658,0.2797,6.879658 +L 4.4897,4.782122,4.4897,6.193172 +L 4.4897,6.193172,4.4897,7.6042 +L 4.4897,7.6042,4.4897,9.015201 +L 3.6631,6.612689,3.5128,6.879658 +L 3.5128,6.879658,3.3692,7.14655 +L 3.3692,7.14655,3.2393,7.41353 +L 6.1989,6.345698,6.4756,6.715886 +L 6.4756,6.715886,6.7561,7.068878 +L 6.7561,7.068878,7.0538,7.41353 +L 1.9543,6.879658,1.6597,7.314722 +L 1.6597,7.314722,1.548,7.868362 +L 1.548,7.868362,1.534,9.015201 + +[棟] 66 +L 1.5601,0.015186,1.4761,1.615424 +L 1.4761,1.615424,1.4099,3.207321 +L 1.4099,3.207321,1.3468,4.782122 +L 1.3468,4.782122,0.9826,4.084395 +L 0.9826,4.084395,0.625,3.369758 +L 0.625,3.369758,0.2817,2.646578 +L 5.3746,0.015186,5.2906,0.892364 +L 5.2906,0.892364,5.2237,1.769422 +L 5.2237,1.769422,5.1575,2.646578 +L 5.1575,2.646578,4.5236,1.948857 +L 4.5236,1.948857,3.8823,1.234116 +L 3.8823,1.234116,3.2378,0.510958 +L 7.4796,0.510958,6.2149,2.2454 +L 6.2149,2.2454,5.2587,2.895127 +L 5.2587,2.895127,3.6651,3.180461 +L 3.6651,3.180461,3.6651,4.246903 +L 3.6651,4.246903,3.6651,5.304791 +L 3.6651,5.304791,3.6651,6.345698 +L 3.6651,6.345698,4.5831,6.375381 +L 4.5831,6.375381,5.0241,6.583028 +L 5.0241,6.583028,5.3746,7.14655 +L 5.3746,7.14655,5.2237,7.41353 +L 5.2237,7.41353,5.0766,7.68051 +L 5.0766,7.68051,4.9473,7.94749 +L 4.9473,7.94749,4.3691,7.94749 +L 4.3691,7.94749,3.7985,7.94749 +L 3.7985,7.94749,3.2378,7.94749 +L 6.2292,3.180461,6.5021,3.180461 +L 6.5021,3.180461,6.7788,3.180461 +L 6.7788,3.180461,7.0485,3.180461 +L 7.0485,3.180461,7.0485,3.714399 +L 7.0485,3.714399,7.0485,4.248271 +L 7.0485,4.248271,7.0485,4.782122 +L 7.0485,4.782122,6.6285,4.782122 +L 6.6285,4.782122,6.2082,4.782122 +L 6.2082,4.782122,5.8019,4.782122 +L 5.8019,4.782122,5.651,4.43748 +L 5.651,4.43748,5.5074,4.084395 +L 5.5074,4.084395,5.3746,3.714399 +L 2.4112,4.782122,1.9419,5.215769 +L 1.9419,5.215769,1.6095,5.759617 +L 1.6095,5.759617,1.1328,6.879658 +L 1.1328,6.879658,0.8351,6.879658 +L 0.8351,6.879658,0.5553,6.879658 +L 0.5553,6.879658,0.2817,6.879658 +L 4.0924,4.782122,4.3691,4.782122 +L 4.3691,4.782122,4.6528,4.782122 +L 4.6528,4.782122,4.9473,4.782122 +L 4.9473,4.782122,5.2237,5.314642 +L 5.2237,5.314642,5.5074,5.838724 +L 5.5074,5.838724,5.8019,6.345698 +L 5.8019,6.345698,6.2082,6.345698 +L 6.2082,6.345698,6.6285,6.345698 +L 6.6285,6.345698,7.0485,6.345698 +L 7.0485,6.345698,7.0485,6.002507 +L 7.0485,6.002507,7.0485,5.6593 +L 7.0485,5.6593,7.0485,5.316081 +L 1.9913,6.879658,1.6862,7.314722 +L 1.6862,7.314722,1.5776,7.868362 +L 1.5776,7.868362,1.5601,9.015201 +L 5.8019,7.94749,5.651,8.317475 +L 5.651,8.317475,5.5074,8.670582 +L 5.5074,8.670582,5.3746,9.015201 +L 6.2292,7.94749,6.6352,7.94749 +L 6.6352,7.94749,7.0558,7.94749 +L 7.0558,7.94749,7.4796,7.94749 + +[盗] 48 +L 0.3083,0.015186,0.5849,0.015186 +L 0.5849,0.015186,0.8686,0.015186 +L 0.8686,0.015186,1.1593,0.015186 +L 1.1593,0.015186,1.1593,0.892364 +L 1.1593,0.892364,1.1593,1.769422 +L 1.1593,1.769422,1.1593,2.646578 +L 1.1593,2.646578,2.8405,2.646578 +L 2.8405,2.646578,4.5291,2.646578 +L 4.5291,2.646578,6.2277,2.646578 +L 6.2277,2.646578,6.2277,1.769422 +L 6.2277,1.769422,6.2277,0.892364 +L 6.2277,0.892364,6.2277,0.015186 +L 6.2277,0.015186,6.655,0.015186 +L 6.655,0.015186,7.0855,0.015186 +L 7.0855,0.015186,7.5058,0.015186 +L 1.5621,0.015186,1.9859,0.015186 +L 1.9859,0.015186,2.4171,0.015186 +L 2.4171,0.015186,2.8405,0.015186 +L 2.8405,0.015186,2.8405,0.728472 +L 2.8405,0.728472,2.8405,1.424868 +L 2.8405,1.424868,2.8405,2.11263 +L 3.2717,0.015186,3.6955,0.015186 +L 3.6955,0.015186,4.1228,0.015186 +L 4.1228,0.015186,4.5501,0.015186 +L 4.5501,0.015186,4.5501,0.728472 +L 4.5501,0.728472,4.5501,1.424868 +L 4.5501,1.424868,4.5501,2.11263 +L 4.9805,0.015186,5.2506,0.015186 +L 5.2506,0.015186,5.5269,0.015186 +L 5.5269,0.015186,5.8004,0.015186 +L 0.3083,4.248271,0.7145,4.961557 +L 0.7145,4.961557,1.1348,5.657877 +L 1.1348,5.657877,1.5621,6.345698 +L 2.6304,4.248271,3.7652,5.351434 +L 3.7652,5.351434,4.4727,6.361273 +L 4.4727,6.361273,4.9805,7.94749 +L 4.9805,7.94749,3.7585,7.769505 +L 3.7585,7.769505,3.1491,7.388115 +L 3.1491,7.388115,2.4171,6.345698 +L 7.0855,4.248271,6.5041,4.961557 +L 6.5041,4.961557,5.9297,5.657877 +L 5.9297,5.657877,5.3766,6.345698 +L 6.655,6.879658,6.7878,7.14655 +L 6.7878,7.14655,6.9317,7.41353 +L 6.9317,7.41353,7.0855,7.68051 +L 7.0855,7.68051,6.5041,7.783614 +L 6.5041,7.783614,5.9297,7.869725 +L 5.9297,7.869725,5.3766,7.94749 + +[痘] 51 +L 0.3141,0.015186,1.0216,1.468556 +L 1.0216,1.468556,1.4205,2.718576 +L 1.4205,2.718576,1.3785,4.248271 +L 1.3785,4.248271,1.0142,3.90363 +L 1.0142,3.90363,0.6573,3.550523 +L 0.6573,3.550523,0.3141,3.180461 +L 2.0198,0.015186,2.5728,0.015186 +L 2.5728,0.015186,3.1511,0.015186 +L 3.1511,0.015186,3.7286,0.015186 +L 3.7286,0.015186,3.7115,0.759583 +L 3.7115,0.759583,3.6026,1.164888 +L 3.6026,1.164888,3.2978,1.578758 +L 4.1248,0.015186,4.5486,0.118366 +L 4.5486,0.118366,4.979,0.204505 +L 4.979,0.204505,5.4063,0.282172 +L 5.4063,0.282172,5.5363,0.728472 +L 5.5363,0.728472,5.6834,1.157889 +L 5.6834,1.157889,5.8336,1.578758 +L 5.8336,0.015186,6.394,0.015186 +L 6.394,0.015186,6.9614,0.015186 +L 6.9614,0.015186,7.5432,0.015186 +L 2.874,2.646578,2.874,3.369758 +L 2.874,3.369758,2.874,4.084395 +L 2.874,4.084395,2.874,4.782122 +L 2.874,4.782122,4.0022,4.782122 +L 4.0022,4.782122,5.1335,4.782122 +L 5.1335,4.782122,6.2574,4.782122 +L 6.2574,4.782122,6.2574,4.084395 +L 6.2574,4.084395,6.2574,3.369758 +L 6.2574,3.369758,6.2574,2.646578 +L 6.2574,2.646578,5.1335,2.646578 +L 5.1335,2.646578,4.0022,2.646578 +L 4.0022,2.646578,2.874,2.646578 +L 1.5925,4.782122,1.5925,5.848619 +L 1.5925,5.848619,1.5925,6.90644 +L 1.5925,6.90644,1.5925,7.94749 +L 1.5925,7.94749,2.5693,7.94749 +L 2.5693,7.94749,3.5539,7.94749 +L 3.5539,7.94749,4.5486,7.94749 +L 4.5486,7.94749,4.5486,8.317475 +L 4.5486,8.317475,4.5486,8.670582 +L 4.5486,8.670582,4.5486,9.015201 +L 0.734,6.078806,0.5834,6.345698 +L 0.5834,6.345698,0.4402,6.612689 +L 0.4402,6.612689,0.3141,6.879658 +L 2.4436,6.345698,4.0022,6.345698 +L 4.0022,6.345698,5.5538,6.345698 +L 5.5538,6.345698,7.1124,6.345698 +L 4.979,7.94749,5.8336,7.94749 +L 5.8336,7.94749,6.6847,7.94749 +L 6.6847,7.94749,7.5432,7.94749 + +[筒] 48 +L 1.1914,0.015186,1.1914,2.139505 +L 1.1914,2.139505,1.1914,4.246903 +L 1.1914,4.246903,1.1914,6.345698 +L 1.1914,6.345698,1.6012,6.448829 +L 1.6012,6.448829,2.0214,6.535027 +L 2.0214,6.535027,2.4452,6.612689 +L 2.4452,6.612689,2.1374,7.373996 +L 2.1374,7.373996,1.8117,7.72005 +L 1.8117,7.72005,1.1914,7.94749 +L 1.1914,7.94749,0.8972,7.602838 +L 0.8972,7.602838,0.6173,7.249763 +L 0.6173,7.249763,0.3403,6.879658 +L 5.4367,0.015186,5.843,0.015186 +L 5.843,0.015186,6.2594,0.015186 +L 6.2594,0.015186,6.6867,0.015186 +L 6.6867,0.015186,6.6867,2.139505 +L 6.6867,2.139505,6.6867,4.246903 +L 6.6867,4.246903,6.6867,6.345698 +L 6.6867,6.345698,5.4083,6.345698 +L 5.4083,6.345698,4.1334,6.345698 +L 4.1334,6.345698,2.8725,6.345698 +L 2.8725,1.578758,2.8725,2.11263 +L 2.8725,2.11263,2.8725,2.646578 +L 2.8725,2.646578,2.8725,3.180461 +L 2.8725,3.180461,3.5734,3.180461 +L 3.5734,3.180461,4.2875,3.180461 +L 4.2875,3.180461,5.0094,3.180461 +L 5.0094,3.180461,5.0094,2.646578 +L 5.0094,2.646578,5.0094,2.11263 +L 5.0094,2.11263,5.0094,1.578758 +L 5.0094,1.578758,4.2875,1.578758 +L 4.2875,1.578758,3.5734,1.578758 +L 3.5734,1.578758,2.8725,1.578758 +L 2.4452,4.782122,3.4333,4.782122 +L 3.4333,4.782122,4.4311,4.782122 +L 4.4311,4.782122,5.4367,4.782122 +L 3.7271,6.879658,4.3296,7.670632 +L 4.3296,7.670632,4.5506,8.22425 +L 4.5506,8.22425,4.5821,9.015201 +L 6.2913,6.879658,5.9586,7.453091 +L 5.9586,7.453091,5.6255,7.72996 +L 5.6255,7.72996,5.0094,7.94749 +L 2.4452,7.94749,2.7223,7.94749 +L 2.7223,7.94749,3.006,7.94749 +L 3.006,7.94749,3.2963,7.94749 +L 6.2913,7.94749,6.6972,7.94749 +L 6.6972,7.94749,7.1179,7.94749 +L 7.1179,7.94749,7.5382,7.94749 + +[謄] 54 +L 0.3703,0.282172,0.6715,1.094314 +L 0.6715,1.094314,0.7804,3.220001 +L 0.7804,3.220001,0.7979,8.481368 +L 0.7979,8.481368,1.2004,8.481368 +L 1.2004,8.481368,1.6207,8.481368 +L 1.6207,8.481368,2.0518,8.481368 +L 2.0518,8.481368,2.0518,5.6593 +L 2.0518,5.6593,2.0518,2.837232 +L 2.0518,2.837232,2.0518,0.015186 +L 3.761,0.015186,3.761,0.54769 +L 3.761,0.54769,3.761,1.071695 +L 3.761,1.071695,3.761,1.578758 +L 3.761,1.578758,4.7343,1.578758 +L 4.7343,1.578758,5.7189,1.578758 +L 5.7189,1.578758,6.7167,1.578758 +L 6.7167,1.578758,6.7167,1.071695 +L 6.7167,1.071695,6.7167,0.54769 +L 6.7167,0.54769,6.7167,0.015186 +L 6.7167,0.015186,5.7189,0.015186 +L 5.7189,0.015186,4.7343,0.015186 +L 4.7343,0.015186,3.761,0.015186 +L 4.1848,2.646578,4.885,2.646578 +L 4.885,2.646578,5.5854,2.646578 +L 5.5854,2.646578,6.2863,2.646578 +L 3.761,3.714399,4.7343,3.714399 +L 4.7343,3.714399,5.7189,3.714399 +L 5.7189,3.714399,6.7167,3.714399 +L 2.9029,4.248271,3.1793,4.704455 +L 3.1793,4.704455,3.463,5.152314 +L 3.463,5.152314,3.761,5.583061 +L 3.761,5.583061,3.463,5.6593 +L 3.463,5.6593,3.1793,5.735527 +L 3.1793,5.735527,2.9029,5.811842 +L 7.5748,4.248271,6.5104,5.494077 +L 6.5104,5.494077,5.5294,5.875385 +L 5.5294,5.875385,4.1848,6.078806 +L 4.1848,6.078806,4.3141,6.448829 +L 4.3141,6.448829,4.4615,6.801915 +L 4.4615,6.801915,4.6118,7.14655 +L 4.6118,7.14655,4.1848,7.249763 +L 4.1848,7.249763,3.761,7.335858 +L 3.761,7.335858,3.3302,7.41353 +L 4.6118,4.782122,5.0149,4.782122 +L 5.0149,4.782122,5.4352,4.782122 +L 5.4352,4.782122,5.866,4.782122 +L 6.2863,6.345698,5.9606,6.919219 +L 5.9606,6.919219,5.6275,7.196088 +L 5.6275,7.196088,5.0079,7.41353 +L 5.0079,7.41353,5.0079,7.783614 +L 5.0079,7.783614,5.0079,8.136704 +L 5.0079,8.136704,5.0079,8.481368 +L 6.2863,7.68051,6.419,7.94749 +L 6.419,7.94749,6.5665,8.214372 +L 6.5665,8.214372,6.7167,8.481368 + +[踏] 54 +L 0.7999,0.015186,0.7999,1.615424 +L 0.7999,1.615424,0.7999,3.207321 +L 0.7999,3.207321,0.7999,4.782122 +L 1.2237,0.015186,1.5246,0.560381 +L 1.5246,0.560381,1.6367,2.063289 +L 1.6367,2.063289,1.6545,5.811842 +L 1.6545,5.811842,1.353,5.811842 +L 1.353,5.811842,1.0728,5.811842 +L 1.0728,5.811842,0.7999,5.811842 +L 0.7999,5.811842,0.7999,6.715886 +L 0.7999,6.715886,0.7999,7.602838 +L 0.7999,7.602838,0.7999,8.481368 +L 0.7999,8.481368,1.353,8.481368 +L 1.353,8.481368,1.9312,8.481368 +L 1.9312,8.481368,2.5088,8.481368 +L 2.5088,8.481368,2.3547,7.602838 +L 2.3547,7.602838,2.2111,6.715886 +L 2.2111,6.715886,2.0783,5.811842 +L 3.7595,0.015186,3.7595,1.262431 +L 3.7595,1.262431,3.7595,2.492613 +L 3.7595,2.492613,3.7595,3.714399 +L 3.7595,3.714399,4.7434,3.714399 +L 4.7434,3.714399,5.7419,3.714399 +L 5.7419,3.714399,6.7433,3.714399 +L 6.7433,3.714399,6.7433,2.492613 +L 6.7433,2.492613,6.7433,1.262431 +L 6.7433,1.262431,6.7433,0.015186 +L 6.7433,0.015186,5.7419,0.015186 +L 5.7419,0.015186,4.7434,0.015186 +L 4.7434,0.015186,3.7595,0.015186 +L 2.0783,0.510958,2.3547,0.700255 +L 2.3547,0.700255,2.6384,0.881031 +L 2.6384,0.881031,2.9326,1.044896 +L 4.1833,2.11263,4.8873,2.11263 +L 4.8873,2.11263,5.5948,2.11263 +L 5.5948,2.11263,6.3233,2.11263 +L 2.0783,3.714399,2.3547,3.714399 +L 2.3547,3.714399,2.6384,3.714399 +L 2.6384,3.714399,2.9326,3.714399 +L 4.6138,5.316081,4.8873,5.316081 +L 4.8873,5.316081,5.1671,5.316081 +L 5.1671,5.316081,5.4649,5.316081 +L 5.4649,5.316081,5.4649,6.563255 +L 5.4649,6.563255,5.4649,7.793409 +L 5.4649,7.793409,5.4649,9.015201 +L 3.3599,5.811842,3.7662,6.448829 +L 3.7662,6.448829,4.1833,7.068878 +L 4.1833,7.068878,4.6138,7.68051 +L 4.6138,7.68051,4.1833,7.783614 +L 4.1833,7.783614,3.7662,7.869725 +L 3.7662,7.869725,3.3599,7.94749 +L 7.1744,5.811842,6.7433,6.345698 +L 6.7433,6.345698,6.3233,6.879658 +L 6.3233,6.879658,5.8922,7.41353 + +[逃] 54 +L 0.6163,0.015186,0.9596,0.358388 +L 0.9596,0.358388,1.3165,0.701612 +L 1.3165,0.701612,1.6807,1.044896 +L 1.6807,1.044896,1.6807,2.301948 +L 1.6807,2.301948,1.6807,3.550523 +L 1.6807,3.550523,1.6807,4.782122 +L 1.6807,4.782122,1.2569,4.782122 +L 1.2569,4.782122,0.8296,4.782122 +L 0.8296,4.782122,0.4023,4.782122 +L 2.9346,0.015186,2.6369,0.194605 +L 2.6369,0.194605,2.3532,0.357037 +L 2.3532,0.357037,2.0768,0.510958 +L 3.3619,0.015186,4.7629,0.015186 +L 4.7629,0.015186,6.1779,0.015186 +L 6.1779,0.015186,7.6037,0.015186 +L 2.7174,1.578758,3.2116,2.301948 +L 3.2116,2.301948,3.7086,3.016656 +L 3.7086,3.016656,4.2165,3.714399 +L 4.2165,3.714399,4.1324,4.248271 +L 4.1324,4.248271,4.0627,4.782122 +L 4.0627,4.782122,3.9997,5.316081 +L 3.9997,5.316081,3.4918,4.97144 +L 3.4918,4.97144,2.9976,4.618354 +L 2.9976,4.618354,2.5073,4.248271 +L 5.898,1.578758,5.614,2.210156 +L 5.614,2.210156,5.5089,4.138152 +L 5.5089,4.138152,5.4952,9.015201 +L 6.318,1.578758,6.7491,1.578758 +L 6.7491,1.578758,7.1726,1.578758 +L 7.1726,1.578758,7.6037,1.578758 +L 7.6037,1.578758,7.6037,1.948857 +L 7.6037,1.948857,7.6037,2.301948 +L 7.6037,2.301948,7.6037,2.646578 +L 7.1726,4.248271,6.7491,4.618354 +L 6.7491,4.618354,6.318,4.97144 +L 6.318,4.97144,5.898,5.316081 +L 4.2165,5.811842,4.2165,6.879658 +L 4.2165,6.879658,4.2165,7.94749 +L 4.2165,7.94749,4.2165,9.015201 +L 3.3619,6.879658,3.068,7.249763 +L 3.068,7.249763,2.7843,7.602838 +L 2.7843,7.602838,2.5073,7.94749 +L 5.898,6.879658,6.1677,7.249763 +L 6.1677,7.249763,6.4514,7.602838 +L 6.4514,7.602838,6.7491,7.94749 +L 1.6807,7.41353,1.3869,7.783614 +L 1.3869,7.783614,1.1032,8.136704 +L 1.1032,8.136704,0.8296,8.481368 +L 5.4879,0,7.6174,0 +L 1.6705,1.067668,0.6163,0.015186 +L 0.4202,4.766908,1.6705,4.766908 +L 1.6705,1.067668,1.6705,4.766908 +L 0.844,8.50433,1.6705,7.436438 +A 5.4879,7.363018,7.362973,238.75988,270 + +[透] 60 +L 0.6183,0.015186,0.9616,0.358388 +L 0.9616,0.358388,1.3185,0.701612 +L 1.3185,0.701612,1.6827,1.044896 +L 1.6827,1.044896,1.6827,2.301948 +L 1.6827,2.301948,1.6827,3.550523 +L 1.6827,3.550523,1.6827,4.782122 +L 1.6827,4.782122,1.2589,4.782122 +L 1.2589,4.782122,0.839,4.782122 +L 0.839,4.782122,0.4288,4.782122 +L 2.965,0.015186,2.6704,0.194605 +L 2.6704,0.194605,2.3867,0.357037 +L 2.3867,0.357037,2.11,0.510958 +L 3.3923,0.015186,4.7964,0.015186 +L 4.7964,0.015186,6.2047,0.015186 +L 6.2047,0.015186,7.6334,0.015186 +L 3.3923,1.044896,3.9943,2.231374 +L 3.9943,2.231374,4.215,3.061881 +L 4.215,3.061881,4.2469,4.248271 +L 4.2469,4.248271,3.9488,4.248271 +L 3.9488,4.248271,3.6686,4.248271 +L 3.6686,4.248271,3.3923,4.248271 +L 6.1378,1.044896,6.5865,1.479868 +L 6.5865,1.479868,6.7511,2.0336 +L 6.7511,2.0336,6.7756,3.180461 +L 6.7756,3.180461,6.4811,3.180461 +L 6.4811,3.180461,6.1974,3.180461 +L 6.1974,3.180461,5.9245,3.180461 +L 5.9245,3.180461,5.9245,3.550523 +L 5.9245,3.550523,5.9245,3.90363 +L 5.9245,3.90363,5.9245,4.248271 +L 5.9245,4.248271,5.4972,4.248271 +L 5.4972,4.248271,5.0661,4.248271 +L 5.0661,4.248271,4.6461,4.248271 +L 5.0661,4.782122,5.0451,5.902206 +L 5.0451,5.902206,4.8769,6.446032 +L 4.8769,6.446032,4.4321,6.879658 +L 4.4321,6.879658,3.8052,6.109934 +L 3.8052,6.109934,3.3184,5.704421 +L 3.3184,5.704421,2.5412,5.316081 +L 7.2061,5.316081,5.865,6.777918 +L 5.865,6.777918,4.8559,7.527962 +L 4.8559,7.527962,3.3923,7.94749 +L 2.965,6.879658,3.2413,6.879658 +L 3.2413,6.879658,3.525,6.879658 +L 3.525,6.879658,3.8196,6.879658 +L 6.355,6.879658,6.6247,6.879658 +L 6.6247,6.879658,6.9084,6.879658 +L 6.9084,6.879658,7.2061,6.879658 +L 1.6827,7.41353,1.3853,7.783614 +L 1.3853,7.783614,1.1052,8.136704 +L 1.1052,8.136704,0.8281,8.481368 +L 5.4972,8.481368,5.7736,8.481368 +L 5.7736,8.481368,6.0573,8.481368 +L 6.0573,8.481368,6.355,8.481368 +L 5.4864,0,7.6159,0 +L 1.669,1.067668,0.6183,0.015186 +L 0.4187,4.766908,1.669,4.766908 +L 1.669,1.067668,1.669,4.766908 +L 0.8425,8.50433,1.669,7.436438 +A 5.4864,7.363018,7.362973,238.75988,270 + +[陶] 45 +L 0.4347,0.015186,0.4347,2.837232 +L 0.4347,2.837232,0.4347,5.6593 +L 0.4347,5.6593,0.4347,8.481368 +L 0.4347,8.481368,0.9912,8.481368 +L 0.9912,8.481368,1.5621,8.481368 +L 1.5621,8.481368,2.1404,8.481368 +L 2.1404,8.481368,1.6921,6.112704 +L 1.6921,6.112704,1.9194,4.811892 +L 1.9194,4.811892,2.1404,2.646578 +L 2.1404,2.646578,1.8423,2.48279 +L 1.8423,2.48279,1.5621,2.301948 +L 1.5621,2.301948,1.2893,2.11263 +L 5.5234,0.015186,7.1695,1.59709 +L 7.1695,1.59709,7.3727,4.941768 +L 7.3727,4.941768,7.2046,7.94749 +L 7.2046,7.94749,5.9265,7.869725 +L 5.9265,7.869725,4.6516,7.783614 +L 4.6516,7.783614,3.3943,7.68051 +L 3.3943,7.68051,3.5235,7.068878 +L 3.5235,7.068878,3.6671,6.448829 +L 3.6671,6.448829,3.818,5.811842 +L 3.818,5.811842,4.522,5.811842 +L 4.522,5.811842,5.233,5.811842 +L 5.233,5.811842,5.9542,5.811842 +L 3.3943,1.578758,3.3943,2.11263 +L 3.3943,2.11263,3.3943,2.646578 +L 3.3943,2.646578,3.3943,3.180461 +L 3.818,1.578758,4.0944,1.578758 +L 4.0944,1.578758,4.3746,1.578758 +L 4.3746,1.578758,4.6723,1.578758 +L 4.6723,1.578758,4.5987,3.474306 +L 4.5987,3.474306,4.1364,4.157924 +L 4.1364,4.157924,2.9635,4.248271 +L 5.1031,1.578758,5.3766,1.578758 +L 5.3766,1.578758,5.6568,1.578758 +L 5.6568,1.578758,5.9542,1.578758 +L 5.9542,1.578758,5.9542,2.11263 +L 5.9542,2.11263,5.9542,2.646578 +L 5.9542,2.646578,5.9542,3.180461 +L 5.1031,4.248271,4.9493,4.618354 +L 4.9493,4.618354,4.8057,4.97144 +L 4.8057,4.97144,4.6723,5.316081 +L 5.5234,4.248271,5.8039,4.248271 +L 5.8039,4.248271,6.0841,4.248271 +L 6.0841,4.248271,6.3815,4.248271 + +[騰] 66 +L 0.4612,0.282172,0.7624,1.094314 +L 0.7624,1.094314,0.8741,3.220001 +L 0.8741,3.220001,0.8917,8.481368 +L 0.8917,8.481368,1.2944,8.481368 +L 1.2944,8.481368,1.7151,8.481368 +L 1.7151,8.481368,2.142,8.481368 +L 2.142,8.481368,2.142,5.6593 +L 2.142,5.6593,2.142,2.837232 +L 2.142,2.837232,2.142,0.015186 +L 2.9966,0.015186,3.1227,0.358388 +L 3.1227,0.358388,3.2737,0.701612 +L 3.2737,0.701612,3.4239,1.044896 +L 6.3835,0.015186,6.2297,0.358388 +L 6.2297,0.358388,6.0861,0.701612 +L 6.0861,0.701612,5.9527,1.044896 +L 6.8073,0.015186,7.1085,0.423381 +L 7.1085,0.423381,7.2209,0.967136 +L 7.2209,0.967136,7.2349,2.11263 +L 7.2349,2.11263,6.1072,2.11263 +L 6.1072,2.11263,4.979,2.11263 +L 4.979,2.11263,3.8512,2.11263 +L 3.8512,2.11263,3.8512,3.016656 +L 3.8512,3.016656,3.8512,3.90363 +L 3.8512,3.90363,3.8512,4.782122 +L 3.8512,4.782122,3.5539,4.782122 +L 3.5539,4.782122,3.2737,4.782122 +L 3.2737,4.782122,2.9966,4.782122 +L 5.5289,2.646578,5.2175,3.022233 +L 5.2175,3.022233,4.8918,3.160672 +L 4.8918,3.160672,4.275,3.180461 +L 5.9527,3.180461,5.3468,3.931847 +L 5.3468,3.931847,4.9093,4.20871 +L 4.9093,4.20871,4.275,4.248271 +L 5.9527,4.248271,5.5884,4.821678 +L 5.5884,4.821678,5.0494,5.098552 +L 5.0494,5.098552,3.8512,5.316081 +L 6.594,4.248271,6.8073,4.43748 +L 6.8073,4.43748,7.0209,4.618354 +L 7.0209,4.618354,7.2349,4.782122 +L 7.2349,4.782122,6.9054,5.157891 +L 6.9054,5.157891,6.5695,5.296309 +L 6.5695,5.296309,5.9527,5.316081 +L 4.275,6.078806,3.8512,6.181943 +L 3.8512,6.181943,3.4239,6.268048 +L 3.4239,6.268048,2.9966,6.345698 +L 6.3835,6.078806,5.8126,6.181943 +L 5.8126,6.181943,5.2526,6.268048 +L 5.2526,6.268048,4.7023,6.345698 +L 4.7023,6.345698,4.7023,6.715886 +L 4.7023,6.715886,4.7023,7.068878 +L 4.7023,7.068878,4.7023,7.41353 +L 4.7023,7.41353,4.0894,7.631081 +L 4.0894,7.631081,3.7535,7.907923 +L 3.7535,7.907923,3.4239,8.481368 +L 6.8073,6.345698,7.0875,6.345698 +L 7.0875,6.345698,7.3677,6.345698 +L 7.3677,6.345698,7.6622,6.345698 +L 5.9527,7.14655,5.6834,7.249763 +L 5.6834,7.249763,5.4063,7.335858 +L 5.4063,7.335858,5.13,7.41353 +L 5.13,7.41353,5.13,7.783614 +L 5.13,7.783614,5.13,8.136704 +L 5.13,8.136704,5.13,8.481368 +L 6.3835,7.68051,6.5134,7.94749 +L 6.5134,7.94749,6.6567,8.214372 +L 6.6567,8.214372,6.8073,8.481368 + +[闘] 69 +L 0.4628,0.015186,0.4628,2.837232 +L 0.4628,2.837232,0.4628,5.6593 +L 0.4628,5.6593,0.4628,8.481368 +L 0.4628,8.481368,1.3139,8.481368 +L 1.3139,8.481368,2.172,8.481368 +L 2.172,8.481368,3.0231,8.481368 +L 3.0231,8.481368,3.0231,7.783614 +L 3.0231,7.783614,3.0231,7.068878 +L 3.0231,7.068878,3.0231,6.345698 +L 3.0231,6.345698,2.3051,6.345698 +L 2.3051,6.345698,1.591,6.345698 +L 1.591,6.345698,0.8901,6.345698 +L 6.4135,0.015186,6.6867,0.015186 +L 6.6867,0.015186,6.9704,0.015186 +L 6.9704,0.015186,7.2646,0.015186 +L 7.2646,0.015186,7.2646,2.139505 +L 7.2646,2.139505,7.2646,4.246903 +L 7.2646,4.246903,7.2646,6.345698 +L 7.2646,6.345698,6.4135,6.345698 +L 6.4135,6.345698,5.5558,6.345698 +L 5.5558,6.345698,4.7047,6.345698 +L 4.7047,6.345698,4.7047,7.068878 +L 4.7047,7.068878,4.7047,7.783614 +L 4.7047,7.783614,4.7047,8.481368 +L 4.7047,8.481368,5.5558,8.481368 +L 5.5558,8.481368,6.4135,8.481368 +L 6.4135,8.481368,7.2646,8.481368 +L 7.2646,8.481368,7.2646,7.94749 +L 7.2646,7.94749,7.2646,7.41353 +L 7.2646,7.41353,7.2646,6.879658 +L 1.3139,0.510958,1.591,0.510958 +L 1.591,0.510958,1.8747,0.510958 +L 1.8747,0.510958,2.172,0.510958 +L 2.172,0.510958,2.0603,1.479868 +L 2.0603,1.479868,1.8572,2.567467 +L 1.8572,2.567467,1.7447,4.248271 +L 1.7447,4.248271,2.3051,4.248271 +L 2.3051,4.248271,2.8725,4.248271 +L 2.8725,4.248271,3.4543,4.248271 +L 3.4543,4.248271,3.3702,3.180461 +L 3.3702,3.180461,3.2998,2.11263 +L 3.2998,2.11263,3.2368,1.044896 +L 3.2368,1.044896,3.0231,0.881031 +L 3.0231,0.881031,2.813,0.700255 +L 2.813,0.700255,2.5997,0.510958 +L 4.7047,0.510958,4.9775,0.510958 +L 4.9775,0.510958,5.2612,0.510958 +L 5.2612,0.510958,5.5558,0.510958 +L 5.5558,0.510958,5.5768,2.564698 +L 5.5768,2.564698,5.3176,3.821739 +L 5.3176,3.821739,4.277,4.248271 +L 4.7047,2.379593,4.5537,2.646578 +L 4.5537,2.646578,4.407,2.913553 +L 4.407,2.913553,4.277,3.180461 +L 2.172,2.646578,2.4487,2.646578 +L 2.4487,2.646578,2.7293,2.646578 +L 2.7293,2.646578,3.0231,2.646578 +L 5.9866,4.248271,5.8356,4.618354 +L 5.8356,4.618354,5.6885,4.97144 +L 5.6885,4.97144,5.5558,5.316081 +L 1.3139,5.316081,2.172,5.316081 +L 2.172,5.316081,3.0231,5.316081 +L 3.0231,5.316081,3.8816,5.316081 +L 0.8901,7.41353,1.4509,7.41353 +L 1.4509,7.41353,2.0214,7.41353 +L 2.0214,7.41353,2.5997,7.41353 +L 5.1355,7.41353,5.6885,7.41353 +L 5.6885,7.41353,6.2633,7.41353 +L 6.2633,7.41353,6.8408,7.41353 + +[洞] 30 +L 0.4929,0.015186,0.7174,1.561869 +L 0.7174,1.561869,1.1272,2.955899 +L 1.1272,2.955899,1.3478,4.248271 +L 3.0255,0.015186,3.0255,2.837232 +L 3.0255,2.837232,3.0255,5.6593 +L 3.0255,5.6593,3.0255,8.481368 +L 3.0255,8.481368,4.4296,8.481368 +L 4.4296,8.481368,5.845,8.481368 +L 5.845,8.481368,7.2666,8.481368 +L 7.2666,8.481368,7.2666,5.6593 +L 7.2666,5.6593,7.2666,2.837232 +L 7.2666,2.837232,7.2666,0.015186 +L 7.2666,0.015186,6.8393,0.015186 +L 6.8393,0.015186,6.4225,0.015186 +L 6.4225,0.015186,6.0127,0.015186 +L 4.3039,2.646578,4.3039,3.369758 +L 4.3039,3.369758,4.3039,4.084395 +L 4.3039,4.084395,4.3039,4.782122 +L 4.3039,4.782122,4.8639,4.782122 +L 4.8639,4.782122,5.4352,4.782122 +L 5.4352,4.782122,6.0127,4.782122 +L 6.0127,4.782122,6.0127,4.084395 +L 6.0127,4.084395,6.0127,3.369758 +L 6.0127,3.369758,6.0127,2.646578 +L 6.0127,2.646578,5.4352,2.646578 +L 5.4352,2.646578,4.8639,2.646578 +L 4.8639,2.646578,4.3039,2.646578 +L 3.8832,6.879658,4.7133,6.879658 +L 4.7133,6.879658,5.5578,6.879658 +L 5.5578,6.879658,6.4089,6.879658 + +[胴] 45 +L 0.5264,0.282172,0.8244,1.094314 +L 0.8244,1.094314,0.9362,3.220001 +L 0.9362,3.220001,0.9502,8.481368 +L 0.9502,8.481368,1.5001,8.481368 +L 1.5001,8.481368,2.0608,8.481368 +L 2.0608,8.481368,2.6314,8.481368 +L 2.6314,8.481368,2.6314,5.6593 +L 2.6314,5.6593,2.6314,2.837232 +L 2.6314,2.837232,2.6314,0.015186 +L 2.6314,0.015186,2.3337,0.015186 +L 2.3337,0.015186,2.0538,0.015186 +L 2.0538,0.015186,1.7771,0.015186 +L 3.9098,0.015186,3.9098,2.837232 +L 3.9098,2.837232,3.9098,5.6593 +L 3.9098,5.6593,3.9098,8.481368 +L 3.9098,8.481368,5.0411,8.481368 +L 5.0411,8.481368,6.1723,8.481368 +L 6.1723,8.481368,7.297,8.481368 +L 7.297,8.481368,7.297,5.6593 +L 7.297,5.6593,7.297,2.837232 +L 7.297,2.837232,7.297,0.015186 +L 7.297,0.015186,7.0024,0.015186 +L 7.0024,0.015186,6.7187,0.015186 +L 6.7187,0.015186,6.442,0.015186 +L 4.7609,2.11263,4.7609,3.016656 +L 4.7609,3.016656,4.7609,3.90363 +L 4.7609,3.90363,4.7609,4.782122 +L 4.7609,4.782122,5.3146,4.782122 +L 5.3146,4.782122,5.8711,4.782122 +L 5.8711,4.782122,6.442,4.782122 +L 6.442,4.782122,6.442,3.90363 +L 6.442,3.90363,6.442,3.016656 +L 6.442,3.016656,6.442,2.11263 +L 6.442,2.11263,5.8711,2.11263 +L 5.8711,2.11263,5.3146,2.11263 +L 5.3146,2.11263,4.7609,2.11263 +L 1.3463,3.714399,1.6227,3.714399 +L 1.6227,3.714399,1.9029,3.714399 +L 1.9029,3.714399,2.2009,3.714399 +L 1.3463,6.345698,1.6227,6.345698 +L 1.6227,6.345698,1.9029,6.345698 +L 1.9029,6.345698,2.2009,6.345698 +L 4.7609,6.879658,5.3146,6.879658 +L 5.3146,6.879658,5.8711,6.879658 +L 5.8711,6.879658,6.442,6.879658 + +[峠] 39 +L 5.6213,0.015186,5.6213,1.426204 +L 5.6213,1.426204,5.6213,2.837232 +L 5.6213,2.837232,5.6213,4.248271 +L 5.6213,4.248271,4.9205,4.248271 +L 4.9205,4.248271,4.2165,4.248271 +L 4.2165,4.248271,3.5128,4.248271 +L 3.5128,4.248271,3.5128,3.550523 +L 3.5128,3.550523,3.5128,2.835809 +L 3.5128,2.835809,3.5128,2.11263 +L 3.5128,2.11263,2.6617,2.11263 +L 2.6617,2.11263,1.8033,2.11263 +L 1.8033,2.11263,0.9522,2.11263 +L 0.9522,2.11263,0.9522,3.712976 +L 0.9522,3.712976,0.9522,5.304791 +L 0.9522,5.304791,0.9522,6.879658 +L 7.3302,1.578758,6.8997,1.948857 +L 6.8997,1.948857,6.4724,2.301948 +L 6.4724,2.301948,6.0451,2.646578 +L 2.2344,2.646578,2.2344,4.780786 +L 2.2344,4.780786,2.2344,6.90644 +L 2.2344,6.90644,2.2344,9.015201 +L 6.0451,4.248271,6.595,4.248271 +L 6.595,4.248271,7.1554,4.248271 +L 7.1554,4.248271,7.7263,4.248271 +L 3.5128,4.782122,3.5128,5.495445 +L 3.5128,5.495445,3.5128,6.191804 +L 3.5128,6.191804,3.5128,6.879658 +L 3.9156,5.811842,4.469,5.811842 +L 4.469,5.811842,5.0431,5.811842 +L 5.0431,5.811842,5.6213,5.811842 +L 5.6213,5.811842,5.6213,6.879658 +L 5.6213,6.879658,5.6213,7.94749 +L 5.6213,7.94749,5.6213,9.015201 +L 6.0451,5.811842,6.595,5.811842 +L 6.595,5.811842,7.1554,5.811842 +L 7.1554,5.811842,7.7263,5.811842 +L 6.0451,7.94749,6.4724,7.94749 +L 6.4724,7.94749,6.8997,7.94749 +L 6.8997,7.94749,7.3302,7.94749 + +[匿] 36 +L 0.5588,0.015186,0.5588,2.837232 +L 0.5588,2.837232,0.5588,5.6593 +L 0.5588,5.6593,0.5588,8.481368 +L 0.5588,8.481368,2.814,8.481368 +L 2.814,8.481368,5.0734,8.481368 +L 5.0734,8.481368,7.3287,8.481368 +L 0.9826,0.015186,3.091,0.015186 +L 3.091,0.015186,5.2027,0.015186 +L 5.2027,0.015186,7.3287,0.015186 +L 2.6637,1.044896,2.5797,1.768076 +L 2.5797,1.768076,2.5093,2.48279 +L 2.5093,2.48279,2.4497,3.180461 +L 2.4497,3.180461,2.089,3.016656 +L 2.089,3.016656,1.7457,2.835809 +L 1.7457,2.835809,1.4099,2.646578 +L 3.0837,1.044896,3.9421,1.044896 +L 3.9421,1.044896,4.7932,1.044896 +L 4.7932,1.044896,5.651,1.044896 +L 5.651,1.044896,5.651,1.948857 +L 5.651,1.948857,5.651,2.835809 +L 5.651,2.835809,5.651,3.714399 +L 5.651,3.714399,4.6423,3.714399 +L 4.6423,3.714399,3.6441,3.714399 +L 3.6441,3.714399,2.6637,3.714399 +L 3.0837,4.248271,3.2168,4.515235 +L 3.2168,4.515235,3.3639,4.782122 +L 3.3639,4.782122,3.5148,5.049102 +L 3.5148,5.049102,2.814,5.152314 +L 2.814,5.152314,2.11,5.238415 +L 2.11,5.238415,1.4099,5.316081 +L 3.9421,5.316081,4.919,5.316081 +L 4.919,5.316081,5.9035,5.316081 +L 5.9035,5.316081,6.8982,5.316081 +L 1.4099,6.879658,3.091,6.879658 +L 3.091,6.879658,4.7754,6.879658 +L 4.7754,6.879658,6.4744,6.879658 + +[督] 54 +L 1.8357,0.015186,1.8357,1.262431 +L 1.8357,1.262431,1.8357,2.492613 +L 1.8357,2.492613,1.8357,3.714399 +L 1.8357,3.714399,3.3942,3.714399 +L 3.3942,3.714399,4.9528,3.714399 +L 4.9528,3.714399,6.5041,3.714399 +L 6.5041,3.714399,6.5041,2.492613 +L 6.5041,2.492613,6.5041,1.262431 +L 6.5041,1.262431,6.5041,0.015186 +L 6.5041,0.015186,4.9528,0.015186 +L 4.9528,0.015186,3.3942,0.015186 +L 3.3942,0.015186,1.8357,0.015186 +L 2.263,1.578758,3.5235,1.578758 +L 3.5235,1.578758,4.7949,1.578758 +L 4.7949,1.578758,6.0768,1.578758 +L 2.263,2.646578,3.5235,2.646578 +L 3.5235,2.646578,4.7949,2.646578 +L 4.7949,2.646578,6.0768,2.646578 +L 1.4119,4.782122,1.6847,4.782122 +L 1.6847,4.782122,1.9649,4.782122 +L 1.9649,4.782122,2.263,4.782122 +L 2.263,4.782122,2.1824,6.650816 +L 2.1824,6.650816,1.7232,7.324634 +L 1.7232,7.324634,0.5849,7.41353 +L 4.5812,4.782122,5.0719,5.314642 +L 5.0719,5.314642,5.5689,5.838724 +L 5.5689,5.838724,6.0768,6.345698 +L 6.0768,6.345698,5.4782,7.136672 +L 5.4782,7.136672,5.254,7.690306 +L 5.254,7.690306,5.2222,8.481368 +L 5.2222,8.481368,5.9265,8.40369 +L 5.9265,8.40369,6.6372,8.317475 +L 6.6372,8.317475,7.3625,8.214372 +L 7.3625,8.214372,7.0645,7.783614 +L 7.0645,7.783614,6.7808,7.335858 +L 6.7808,7.335858,6.5041,6.879658 +L 7.3625,4.782122,7.0645,5.125362 +L 7.0645,5.125362,6.7808,5.468641 +L 6.7808,5.468641,6.5041,5.811842 +L 0.7671,5.583061,0.8336,5.848619 +L 0.8336,5.848619,0.9005,6.105611 +L 0.9005,6.105611,0.9811,6.345698 +L 3.541,5.583061,3.3942,5.848619 +L 3.3942,5.848619,3.2506,6.105611 +L 3.2506,6.105611,3.1207,6.345698 +L 2.6899,7.41353,2.5396,7.68051 +L 2.5396,7.68051,2.3922,7.94749 +L 2.3922,7.94749,2.263,8.214372 +L 2.263,8.214372,2.6899,8.317475 +L 2.6899,8.317475,3.1207,8.40369 +L 3.1207,8.40369,3.541,8.481368 +L 3.1207,7.41353,3.3942,7.41353 +L 3.3942,7.41353,3.6744,7.41353 +L 3.6744,7.41353,3.9718,7.41353 + +[篤] 54 +L 0.5838,0.015186,0.8605,0.54769 +L 0.8605,0.54769,1.1403,1.071695 +L 1.1403,1.071695,1.4415,1.578758 +L 6.1103,0.015186,5.8126,0.54769 +L 5.8126,0.54769,5.5289,1.071695 +L 5.5289,1.071695,5.2525,1.578758 +L 6.7477,0.015186,7.0388,0.290616 +L 7.0388,0.290616,7.1964,0.9728 +L 7.1964,0.9728,7.361,2.646578 +L 7.361,2.646578,5.3751,2.646578 +L 5.3751,2.646578,3.4029,2.646578 +L 3.4029,2.646578,1.4415,2.646578 +L 1.4415,2.646578,1.4415,3.712976 +L 1.4415,3.712976,1.4415,4.770892 +L 1.4415,4.770892,1.4415,5.811842 +L 1.4415,5.811842,3.2702,5.811842 +L 3.2702,5.811842,5.1089,5.811842 +L 5.1089,5.811842,6.9614,5.811842 +L 3.1157,0.777916,2.9756,1.044896 +L 2.9756,1.044896,2.8429,1.311778 +L 2.8429,1.311778,2.7203,1.578758 +L 4.4014,0.777916,4.2473,1.044896 +L 4.2473,1.044896,4.1037,1.311778 +L 4.1037,1.311778,3.9703,1.578758 +L 3.9703,3.180461,3.606,3.556209 +L 3.606,3.556209,3.067,3.694611 +L 3.067,3.694611,1.8688,3.714399 +L 4.4014,3.714399,3.5255,4.618354 +L 3.5255,4.618354,2.8429,4.818876 +L 2.8429,4.818876,1.8688,4.782122 +L 4.8249,3.714399,5.3853,3.714399 +L 5.3853,3.714399,5.9562,3.714399 +L 5.9562,3.714399,6.5344,3.714399 +L 4.8249,4.782122,5.3853,4.782122 +L 5.3853,4.782122,5.9562,4.782122 +L 5.9562,4.782122,6.5344,4.782122 +L 0.5838,6.879658,1.1862,7.670632 +L 1.1862,7.670632,1.4069,8.22425 +L 1.4069,8.22425,1.4415,9.015201 +L 2.7203,6.879658,2.4292,7.249763 +L 2.4292,7.249763,2.1424,7.602838 +L 2.1424,7.602838,1.8688,7.94749 +L 3.9703,6.879658,4.5727,7.670632 +L 4.5727,7.670632,4.7937,8.22425 +L 4.7937,8.22425,4.8249,9.015201 +L 6.5344,6.879658,6.2052,7.453091 +L 6.2052,7.453091,5.8721,7.72996 +L 5.8721,7.72996,5.2525,7.94749 +L 2.7203,7.94749,2.9966,7.94749 +L 2.9966,7.94749,3.2702,7.94749 +L 3.2702,7.94749,3.5465,7.94749 +L 6.5344,7.94749,6.9404,7.94749 +L 6.9404,7.94749,7.361,7.94749 +L 7.361,7.94749,7.7848,7.94749 + +[凸] 24 +L 1.0446,0.015186,1.0446,1.615424 +L 1.0446,1.615424,1.0446,3.207321 +L 1.0446,3.207321,1.0446,4.782122 +L 1.0446,4.782122,1.5945,4.782122 +L 1.5945,4.782122,2.151,4.782122 +L 2.151,4.782122,2.7223,4.782122 +L 2.7223,4.782122,2.7223,6.029383 +L 2.7223,6.029383,2.7223,7.259641 +L 2.7223,7.259641,2.7223,8.481368 +L 2.7223,8.481368,3.6995,8.481368 +L 3.6995,8.481368,4.6833,8.481368 +L 4.6833,8.481368,5.6783,8.481368 +L 5.6783,8.481368,5.6783,7.259641 +L 5.6783,7.259641,5.6783,6.029383 +L 5.6783,6.029383,5.6783,4.782122 +L 5.6783,4.782122,6.2384,4.782122 +L 6.2384,4.782122,6.8131,4.782122 +L 6.8131,4.782122,7.3907,4.782122 +L 7.3907,4.782122,7.3907,3.207321 +L 7.3907,3.207321,7.3907,1.615424 +L 7.3907,1.615424,7.3907,0.015186 +L 7.3907,0.015186,5.2647,0.015186 +L 5.2647,0.015186,3.1531,0.015186 +L 3.1531,0.015186,1.0446,0.015186 + +[突] 42 +L 0.6158,0.015186,1.7257,0.423381 +L 1.7257,0.423381,2.5001,0.967136 +L 2.5001,0.967136,3.61,2.11263 +L 3.61,2.11263,3.61,2.48279 +L 3.61,2.48279,3.61,2.835809 +L 3.61,2.835809,3.61,3.180461 +L 3.61,3.180461,2.6017,3.180461 +L 2.6017,3.180461,1.6031,3.180461 +L 1.6031,3.180461,0.6158,3.180461 +L 6.5661,0.015186,5.046,1.581537 +L 5.046,1.581537,4.4121,2.783568 +L 4.4121,2.783568,4.0303,4.782122 +L 4.8569,3.180461,5.7115,3.180461 +L 5.7115,3.180461,6.5661,3.180461 +L 6.5661,3.180461,7.4211,3.180461 +L 1.2564,4.782122,1.9008,5.314642 +L 1.9008,5.314642,2.5386,5.838724 +L 2.5386,5.838724,3.1792,6.345698 +L 3.1792,6.345698,3.1792,6.879658 +L 3.1792,6.879658,3.1792,7.41353 +L 3.1792,7.41353,3.1792,7.94749 +L 3.1792,7.94749,2.3215,7.94749 +L 2.3215,7.94749,1.4704,7.94749 +L 1.4704,7.94749,0.6158,7.94749 +L 0.6158,7.94749,0.6158,7.602838 +L 0.6158,7.602838,0.6158,7.249763 +L 0.6158,7.249763,0.6158,6.879658 +L 5.2842,5.316081,4.983,5.74407 +L 4.983,5.74407,4.8713,6.426255 +L 4.8713,6.426255,4.8569,7.94749 +L 4.8569,7.94749,4.4331,7.94749 +L 4.4331,7.94749,4.0128,7.94749 +L 4.0128,7.94749,3.61,7.94749 +L 5.7115,5.316081,6.1427,5.316081 +L 6.1427,5.316081,6.5661,5.316081 +L 6.5661,5.316081,6.9938,5.316081 +L 6.9938,5.316081,7.1023,6.218608 +L 7.1023,6.218608,7.3086,7.019554 +L 7.3086,7.019554,7.4211,7.94749 +L 7.4211,7.94749,6.6961,7.94749 +L 6.6961,7.94749,5.9851,7.94749 +L 5.9851,7.94749,5.2842,7.94749 + +[屯] 30 +L 4.4596,0.015186,3.6754,1.835848 +L 3.6754,1.835848,3.5318,2.859796 +L 3.5318,2.859796,1.5001,3.180461 +L 1.5001,3.180461,1.5001,4.246903 +L 1.5001,4.246903,1.5001,5.304791 +L 1.5001,5.304791,1.5001,6.345698 +L 4.8908,0.015186,5.7209,0.015186 +L 5.7209,0.015186,6.5646,0.015186 +L 6.5646,0.015186,7.4157,0.015186 +L 7.4157,0.015186,7.4157,0.54769 +L 7.4157,0.54769,7.4157,1.071695 +L 7.4157,1.071695,7.4157,1.578758 +L 4.4596,3.180461,4.1623,3.69321 +L 4.1623,3.69321,4.0498,4.790664 +L 4.0498,4.790664,4.0323,7.41353 +L 4.0323,7.41353,2.9049,7.41353 +L 2.9049,7.41353,1.7771,7.41353 +L 1.7771,7.41353,0.649,7.41353 +L 4.8908,3.180461,5.4372,3.180461 +L 5.4372,3.180461,5.9972,3.180461 +L 5.9972,3.180461,6.5646,3.180461 +L 6.5646,3.180461,6.5646,4.246903 +L 6.5646,4.246903,6.5646,5.304791 +L 6.5646,5.304791,6.5646,6.345698 +L 4.0323,7.94749,4.0323,8.317475 +L 4.0323,8.317475,4.0323,8.670582 +L 4.0323,8.670582,4.0323,9.015201 +L 4.4596,7.94749,5.6925,7.967257 +L 5.6925,7.967257,6.3513,8.105598 +L 6.3513,8.105598,6.9958,8.481368 + +[曇] 57 +L 1.5021,0.015186,2.4201,0.24127 +L 2.4201,0.24127,2.861,0.577374 +L 2.861,0.577374,3.2081,1.311778 +L 3.2081,1.311778,2.5076,1.41499 +L 2.5076,1.41499,1.8068,1.50108 +L 1.8068,1.50108,1.1066,1.578758 +L 3.2081,0.015186,4.255,0.143737 +L 4.255,0.143737,5.0045,0.382473 +L 5.0045,0.382473,5.7439,0.510958 +L 5.7439,0.510958,5.7439,0.881031 +L 5.7439,0.881031,5.7439,1.234116 +L 5.7439,1.234116,5.7439,1.578758 +L 5.7439,1.578758,5.043,1.578758 +L 5.043,1.578758,4.3429,1.578758 +L 4.3429,1.578758,3.6389,1.578758 +L 6.1712,1.578758,6.444,1.578758 +L 6.444,1.578758,6.7242,1.578758 +L 6.7242,1.578758,7.0219,1.578758 +L 1.9332,2.646578,3.1906,2.646578 +L 3.1906,2.646578,4.4655,2.646578 +L 4.4655,2.646578,5.7439,2.646578 +L 4.0627,3.714399,3.4809,5.299193 +L 3.4809,5.299193,2.143,5.485644 +L 2.143,5.485644,0.6793,5.316081 +L 0.6793,5.316081,0.6793,4.97144 +L 0.6793,4.97144,0.6793,4.618354 +L 0.6793,4.618354,0.6793,4.248271 +L 1.9332,4.248271,2.3532,4.248271 +L 2.3532,4.248271,2.7843,4.248271 +L 2.7843,4.248271,3.2081,4.248271 +L 4.917,4.248271,5.3232,4.248271 +L 5.3232,4.248271,5.7439,4.248271 +L 5.7439,4.248271,6.1712,4.248271 +L 7.4527,4.248271,7.4527,4.618354 +L 7.4527,4.618354,7.4527,4.97144 +L 7.4527,4.97144,7.4527,5.316081 +L 7.4527,5.316081,6.4549,5.316081 +L 6.4549,5.316081,5.4703,5.316081 +L 5.4703,5.316081,4.49,5.316081 +L 4.49,5.316081,4.3429,5.581638 +L 4.3429,5.581638,4.1993,5.838724 +L 4.1993,5.838724,4.0627,6.078806 +L 4.0627,6.078806,3.068,6.181943 +L 3.068,6.181943,2.0803,6.268048 +L 2.0803,6.268048,1.1066,6.345698 +L 4.49,6.345698,5.043,6.345698 +L 5.043,6.345698,5.6038,6.345698 +L 5.6038,6.345698,6.1712,6.345698 +L 6.1712,6.345698,6.1712,6.715886 +L 6.1712,6.715886,6.1712,7.068878 +L 6.1712,7.068878,6.1712,7.41353 +L 6.1712,7.41353,4.7457,7.249763 +L 4.7457,7.249763,3.3342,7.068878 +L 3.3342,7.068878,1.9332,6.879658 +L 1.9332,8.214372,3.3342,8.136704 +L 3.3342,8.136704,4.7457,8.050593 +L 4.7457,8.050593,6.1712,7.94749 + +[鈍] 51 +L 0.6813,0.015186,1.1016,0.015186 +L 1.1016,0.015186,1.5324,0.015186 +L 1.5324,0.015186,1.9597,0.015186 +L 1.9597,0.015186,2.0368,2.301948 +L 2.0368,2.301948,1.8263,4.071709 +L 1.8263,4.071709,0.6813,4.782122 +L 6.2009,0.015186,5.6618,1.256784 +L 5.6618,1.256784,5.4762,2.244037 +L 5.4762,2.244037,4.4917,2.646578 +L 4.4917,2.646578,4.4917,3.712976 +L 4.4917,3.712976,4.4917,4.770892 +L 4.4917,4.770892,4.4917,5.811842 +L 6.6285,0.015186,7.0348,0.015186 +L 7.0348,0.015186,7.4547,0.015186 +L 7.4547,0.015186,7.8785,0.015186 +L 7.8785,0.015186,7.8785,0.54769 +L 7.8785,0.54769,7.8785,1.071695 +L 7.8785,1.071695,7.8785,1.578758 +L 2.6007,0.510958,2.814,0.700255 +L 2.814,0.700255,3.0245,0.881031 +L 3.0245,0.881031,3.2413,1.044896 +L 1.1016,1.845737,0.9542,2.301948 +L 0.9542,2.301948,0.8106,2.749682 +L 0.8106,2.749682,0.6813,3.180461 +L 2.814,2.379593,2.9474,2.835809 +L 2.9474,2.835809,3.091,3.283652 +L 3.091,3.283652,3.2413,3.714399 +L 6.2009,2.646578,5.6335,4.712893 +L 5.6335,4.712893,5.5844,6.592912 +L 5.5844,6.592912,4.0647,7.41353 +L 6.8386,2.646578,6.9013,3.712976 +L 6.9013,3.712976,6.9717,4.770892 +L 6.9717,4.770892,7.0558,5.811842 +L 2.3902,4.782122,2.0855,5.195991 +L 2.0855,5.195991,1.9737,5.601422 +L 1.9737,5.601422,1.9597,6.345698 +L 1.9597,6.345698,1.3394,6.36558 +L 1.3394,6.36558,1.0137,6.503927 +L 1.0137,6.503927,0.6813,6.879658 +L 0.6813,6.879658,1.1016,7.602838 +L 1.1016,7.602838,1.5324,8.317475 +L 1.5324,8.317475,1.9597,9.015201 +L 1.9597,9.015201,2.3902,8.481368 +L 2.3902,8.481368,2.814,7.94749 +L 2.814,7.94749,3.2413,7.41353 +L 6.2009,7.41353,5.9,7.828741 +L 5.9,7.828741,5.7876,8.244044 +L 5.7876,8.244044,5.7736,9.015201 +L 6.6285,7.94749,6.9013,7.94749 +L 6.9013,7.94749,7.1819,7.94749 +L 7.1819,7.94749,7.4796,7.94749 + +[縄] 81 +L 1.9894,0.015186,1.9894,1.615424 +L 1.9894,1.615424,1.9894,3.207321 +L 1.9894,3.207321,1.9894,4.782122 +L 1.9894,4.782122,1.5656,4.782122 +L 1.5656,4.782122,1.1383,4.782122 +L 1.1383,4.782122,0.7075,4.782122 +L 5.9861,0.282172,5.7756,0.892364 +L 5.7756,0.892364,5.5689,1.502541 +L 5.5689,1.502541,5.3801,2.11263 +L 5.3801,2.11263,4.9493,2.11263 +L 4.9493,2.11263,4.5217,2.11263 +L 4.5217,2.11263,4.0944,2.11263 +L 4.0944,2.11263,4.0944,3.016656 +L 4.0944,3.016656,4.0944,3.90363 +L 4.0944,3.90363,4.0944,4.782122 +L 4.0944,4.782122,5.0124,4.811892 +L 5.0124,4.811892,5.4572,5.019451 +L 5.4572,5.019451,5.8039,5.583061 +L 5.8039,5.583061,5.4747,6.11973 +L 5.4747,6.11973,5.1416,6.317476 +L 5.1416,6.317476,4.5217,6.345698 +L 4.5217,6.345698,4.5217,7.068878 +L 4.5217,7.068878,4.5217,7.783614 +L 4.5217,7.783614,4.5217,8.481368 +L 4.5217,8.481368,5.3556,8.481368 +L 5.3556,8.481368,6.2032,8.481368 +L 6.2032,8.481368,7.0543,8.481368 +L 7.0543,8.481368,7.0543,7.783614 +L 7.0543,7.783614,7.0543,7.068878 +L 7.0543,7.068878,7.0543,6.345698 +L 7.0543,6.345698,6.4063,6.385347 +L 6.4063,6.385347,5.86,6.662129 +L 5.86,6.662129,4.9493,7.41353 +L 6.6266,0.015186,7.0543,0.015186 +L 7.0543,0.015186,7.4851,0.015186 +L 7.4851,0.015186,7.9054,0.015186 +L 7.9054,0.015186,7.9054,0.358388 +L 7.9054,0.358388,7.9054,0.701612 +L 7.9054,0.701612,7.9054,1.044896 +L 0.7075,1.311778,0.8409,1.948857 +L 0.8409,1.948857,0.9846,2.568818 +L 0.9846,2.568818,1.1383,3.180461 +L 3.2398,1.845737,3.0895,2.301948 +L 3.0895,2.301948,2.9459,2.749682 +L 2.9459,2.749682,2.8125,3.180461 +L 6.1958,2.11263,5.9265,2.646578 +L 5.9265,2.646578,5.6495,3.180461 +L 5.6495,3.180461,5.3801,3.714399 +L 5.3801,3.714399,5.0821,3.714399 +L 5.0821,3.714399,4.7984,3.714399 +L 4.7984,3.714399,4.5217,3.714399 +L 6.6266,2.11263,6.9033,2.11263 +L 6.9033,2.11263,7.187,2.11263 +L 7.187,2.11263,7.4851,2.11263 +L 7.4851,2.11263,7.4851,2.646578 +L 7.4851,2.646578,7.4851,3.180461 +L 7.4851,3.180461,7.4851,3.714399 +L 7.4851,3.714399,6.5675,3.734177 +L 6.5675,3.734177,6.1297,3.872611 +L 6.1297,3.872611,5.8039,4.248271 +L 5.8039,4.248271,6.1297,4.604246 +L 6.1297,4.604246,6.5675,4.604246 +L 6.5675,4.604246,7.4851,4.248271 +L 3.2398,4.515235,3.0895,4.782122 +L 3.0895,4.782122,2.9459,5.049102 +L 2.9459,5.049102,2.8125,5.316081 +L 2.8125,5.316081,2.6657,5.152314 +L 2.6657,5.152314,2.5148,4.97144 +L 2.5148,4.97144,2.3855,4.782122 +L 1.5656,5.316081,1.6955,5.581638 +L 1.6955,5.581638,1.8391,5.838724 +L 1.8391,5.838724,1.9894,6.078806 +L 1.9894,6.078806,1.6955,6.448829 +L 1.6955,6.448829,1.4118,6.801915 +L 1.4118,6.801915,1.1383,7.14655 +L 1.1383,7.14655,1.4118,7.783614 +L 1.4118,7.783614,1.6955,8.40369 +L 1.6955,8.40369,1.9894,9.015201 +L 2.3855,7.14655,2.5148,7.41353 +L 2.5148,7.41353,2.6657,7.68051 +L 2.6657,7.68051,2.8125,7.94749 + +[軟] 66 +L 2.4191,0.015186,2.184,1.3019 +L 2.184,1.3019,1.5816,1.614099 +L 1.5816,1.614099,0.7379,1.578758 +L 4.1279,0.015186,4.4116,0.581588 +L 4.4116,0.581588,4.4116,0.986914 +L 4.4116,0.986914,4.1279,1.578758 +L 4.1279,1.578758,3.6974,1.578758 +L 3.6974,1.578758,3.2701,1.578758 +L 3.2701,1.578758,2.8428,1.578758 +L 2.8428,1.578758,2.5483,2.11263 +L 2.5483,2.11263,2.2649,2.646578 +L 2.2649,2.646578,1.9879,3.180461 +L 1.9879,3.180461,1.694,3.180461 +L 1.694,3.180461,1.4138,3.180461 +L 1.4138,3.180461,1.1333,3.180461 +L 1.1333,3.180461,1.1333,4.246903 +L 1.1333,4.246903,1.1333,5.304791 +L 1.1333,5.304791,1.1333,6.345698 +L 1.1333,6.345698,1.7536,6.375381 +L 1.7536,6.375381,2.086,6.583028 +L 2.086,6.583028,2.4191,7.14655 +L 2.4191,7.14655,2.072,7.710193 +L 2.072,7.710193,1.6345,7.917746 +L 1.6345,7.917746,0.7379,7.94749 +L 7.9421,0.015186,7.2136,1.426204 +L 7.2136,1.426204,6.5064,2.837232 +L 6.5064,2.837232,5.8024,4.248271 +L 5.8024,4.248271,5.5044,3.369758 +L 5.5044,3.369758,5.2242,2.48279 +L 5.2242,2.48279,4.9513,1.578758 +L 2.8428,3.180461,2.4191,3.714399 +L 2.4191,3.714399,1.9879,4.248271 +L 1.9879,4.248271,1.5641,4.782122 +L 3.487,3.180461,3.5465,3.714399 +L 3.5465,3.714399,3.6134,4.248271 +L 3.6134,4.248271,3.6974,4.782122 +L 3.6974,4.782122,3.0807,4.811892 +L 3.0807,4.811892,2.7514,5.019451 +L 2.7514,5.019451,2.4191,5.583061 +L 2.4191,5.583061,2.7514,6.11973 +L 2.7514,6.11973,3.0807,6.317476 +L 3.0807,6.317476,3.6974,6.345698 +L 3.6974,6.345698,3.6974,6.002507 +L 3.6974,6.002507,3.6974,5.6593 +L 3.6974,5.6593,3.6974,5.316081 +L 5.8024,4.782122,5.8024,5.495445 +L 5.8024,5.495445,5.8024,6.191804 +L 5.8024,6.191804,5.8024,6.879658 +L 5.8024,6.879658,5.1891,6.840129 +L 5.1891,6.840129,4.8634,6.563255 +L 4.8634,6.563255,4.5552,5.811842 +L 7.084,5.316081,7.3855,5.704421 +L 7.3855,5.704421,7.4938,6.109934 +L 7.4938,6.109934,7.5113,6.879658 +L 7.5113,6.879658,7.084,6.879658 +L 7.084,6.879658,6.6602,6.879658 +L 6.6602,6.879658,6.2329,6.879658 +L 4.9513,7.41353,5.2487,7.828741 +L 5.2487,7.828741,5.3611,8.244044 +L 5.3611,8.244044,5.3786,9.015201 +L 2.8428,7.94749,2.6919,8.317475 +L 2.6919,8.317475,2.5483,8.670582 +L 2.5483,8.670582,2.4191,9.015201 +L 3.2701,7.94749,3.5465,7.94749 +L 3.5465,7.94749,3.8302,7.94749 +L 3.8302,7.94749,4.1279,7.94749 + +[尼] 24 +L 0.7399,0.282172,1.4365,3.05191 +L 1.4365,3.05191,1.612,5.635302 +L 1.612,5.635302,1.5945,8.481368 +L 1.5945,8.481368,3.4259,8.481368 +L 3.4259,8.481368,5.2612,8.481368 +L 5.2612,8.481368,7.1178,8.481368 +L 7.1178,8.481368,7.1178,7.783614 +L 7.1178,7.783614,7.1178,7.068878 +L 7.1178,7.068878,7.1178,6.345698 +L 7.1178,6.345698,5.4083,6.345698 +L 5.4083,6.345698,3.7061,6.345698 +L 3.7061,6.345698,2.0218,6.345698 +L 4.1267,0.015186,3.8287,0.542048 +L 3.8287,0.542048,3.717,1.916377 +L 3.717,1.916377,3.7026,5.316081 +L 4.5537,0.015186,5.5309,0.015186 +L 5.5309,0.015186,6.5154,0.015186 +L 6.5154,0.015186,7.5133,0.015186 +L 7.5133,0.015186,7.5133,0.54769 +L 7.5133,0.54769,7.5133,1.071695 +L 7.5133,1.071695,7.5133,1.578758 +L 4.1267,3.180461,5.1109,3.550523 +L 5.1109,3.550523,6.1123,3.90363 +L 6.1123,3.90363,7.1178,4.248271 + +[弐] 24 +L 7.5436,0.015186,5.7675,4.605686 +L 5.7675,4.605686,4.4401,6.17914 +L 4.4401,6.17914,0.7695,6.345698 +L 7.9709,0.015186,7.9709,0.54769 +L 7.9709,0.54769,7.9709,1.071695 +L 7.9709,1.071695,7.9709,1.578758 +L 1.628,0.510958,2.6017,0.881031 +L 2.6017,0.881031,3.589,1.234116 +L 3.589,1.234116,4.5841,1.578758 +L 1.628,3.714399,2.4581,3.714399 +L 2.4581,3.714399,3.3018,3.714399 +L 3.3018,3.714399,4.1603,3.714399 +L 5.8341,6.345698,5.5577,6.800552 +L 5.5577,6.800552,5.4523,7.492636 +L 5.4523,7.492636,5.4387,9.015201 +L 6.2652,6.345698,6.8218,6.345698 +L 6.8218,6.345698,7.3927,6.345698 +L 7.3927,6.345698,7.9709,6.345698 +L 7.5436,7.41353,7.2456,7.783614 +L 7.2456,7.783614,6.9654,8.136704 +L 6.9654,8.136704,6.6925,8.481368 +L 1.628,7.94749,2.4581,7.94749 +L 2.4581,7.94749,3.3018,7.94749 +L 3.3018,7.94749,4.1603,7.94749 + +[如] 30 +L 1.1988,0.015186,1.6261,0.62539 +L 1.6261,0.62539,2.0499,1.235451 +L 2.0499,1.235451,2.4772,1.845737 +L 2.4772,1.845737,2.1305,2.419154 +L 2.1305,2.419154,1.6857,2.696028 +L 1.6857,2.696028,0.768,2.913553 +L 0.768,2.913553,1.0906,3.920628 +L 1.0906,3.920628,1.3113,5.097129 +L 1.3113,5.097129,1.6261,6.078806 +L 1.6261,6.078806,1.3288,6.345698 +L 1.3288,6.345698,1.0486,6.612689 +L 1.0486,6.612689,0.768,6.879658 +L 4.1868,0.510958,3.0201,2.611258 +L 3.0201,2.611258,3.0797,4.347133 +L 3.0797,4.347133,3.3357,6.879658 +L 3.3357,6.879658,2.0363,7.051984 +L 2.0363,7.051984,1.637,7.698854 +L 1.637,7.698854,1.6261,9.015201 +L 5.0134,0.510958,5.0134,2.826008 +L 5.0134,2.826008,5.0134,5.123994 +L 5.0134,5.123994,5.0134,7.41353 +L 5.0134,7.41353,5.8645,7.41353 +L 5.8645,7.41353,6.7222,7.41353 +L 6.7222,7.41353,7.5733,7.41353 +L 7.5733,7.41353,7.5733,5.123994 +L 7.5733,5.123994,7.5733,2.826008 +L 7.5733,2.826008,7.5733,0.510958 +L 7.5733,0.510958,6.7222,0.510958 +L 6.7222,0.510958,5.8645,0.510958 +L 5.8645,0.510958,5.0134,0.510958 + +[尿] 39 +L 0.8019,0.282172,1.4986,3.05191 +L 1.4986,3.05191,1.674,5.635302 +L 1.674,5.635302,1.6565,8.481368 +L 1.6565,8.481368,3.4879,8.481368 +L 3.4879,8.481368,5.3166,8.481368 +L 5.3166,8.481368,7.148,8.481368 +L 7.148,8.481368,7.148,7.602838 +L 7.148,7.602838,7.148,6.715886 +L 7.148,6.715886,7.148,5.811842 +L 7.148,5.811842,6.444,5.811842 +L 6.444,5.811842,5.7439,5.811842 +L 5.7439,5.811842,5.0395,5.811842 +L 5.0395,5.811842,5.1061,5.123994 +L 5.1061,5.123994,5.173,4.427597 +L 5.173,4.427597,5.257,3.714399 +L 5.257,3.714399,5.5334,3.550523 +L 5.5334,3.550523,5.8136,3.369758 +L 5.8136,3.369758,6.1113,3.180461 +L 6.1113,3.180461,6.5981,3.714399 +L 6.5981,3.714399,7.085,4.248271 +L 7.085,4.248271,7.5718,4.782122 +L 4.1884,0.015186,4.462,0.015186 +L 4.462,0.015186,4.7418,0.015186 +L 4.7418,0.015186,5.0395,0.015186 +L 5.0395,0.015186,5.0395,1.081562 +L 5.0395,1.081562,5.0395,2.139505 +L 5.0395,2.139505,5.0395,3.180461 +L 2.0835,0.510958,3.2603,2.053389 +L 3.2603,2.053389,3.6984,2.883815 +L 3.6984,2.883815,3.7615,3.714399 +L 3.7615,3.714399,3.3342,3.714399 +L 3.3342,3.714399,2.917,3.714399 +L 2.917,3.714399,2.5076,3.714399 +L 7.5718,0.510958,7.0044,1.234116 +L 7.0044,1.234116,6.444,1.948857 +L 6.444,1.948857,5.8976,2.646578 +L 2.0835,5.811842,2.917,5.811842 +L 2.917,5.811842,3.7615,5.811842 +L 3.7615,5.811842,4.6157,5.811842 + +[妊] 39 +L 0.8316,0.015186,1.2379,0.62539 +L 1.2379,0.62539,1.6582,1.235451 +L 1.6582,1.235451,2.0823,1.845737 +L 2.0823,1.845737,1.7531,2.419154 +L 1.7531,2.419154,1.4309,2.696028 +L 1.4309,2.696028,0.8316,2.913553 +L 0.8316,2.913553,1.1086,3.979924 +L 1.1086,3.979924,1.3815,5.037784 +L 1.3815,5.037784,1.655,6.078806 +L 1.655,6.078806,1.3815,6.345698 +L 1.3815,6.345698,1.1086,6.612689 +L 1.1086,6.612689,0.8316,6.879658 +L 4.2188,0.015186,4.7687,0.015186 +L 4.7687,0.015186,5.3252,0.015186 +L 5.3252,0.015186,5.8961,0.015186 +L 5.8961,0.015186,5.886,2.892341 +L 5.886,2.892341,5.4093,4.040718 +L 5.4093,4.040718,3.7912,4.248271 +L 6.3234,0.015186,6.7511,0.015186 +L 6.7511,0.015186,7.1784,0.015186 +L 7.1784,0.015186,7.6057,0.015186 +L 3.3639,1.044896,2.5898,2.922013 +L 2.5898,2.922013,2.7159,4.849894 +L 2.7159,4.849894,2.9401,6.879658 +L 2.9401,6.879658,1.8722,7.170657 +L 1.8722,7.170657,1.6231,7.936156 +L 1.6231,7.936156,1.655,9.015201 +L 6.3234,4.248271,6.0226,4.741241 +L 6.0226,4.741241,5.9136,5.7003 +L 5.9136,5.7003,5.8961,7.94749 +L 5.8961,7.94749,5.3252,7.94749 +L 5.3252,7.94749,4.7687,7.94749 +L 4.7687,7.94749,4.2188,7.94749 +L 6.7511,4.248271,7.1784,4.248271 +L 7.1784,4.248271,7.6057,4.248271 +L 7.6057,4.248271,8.0295,4.248271 +L 6.3234,7.94749,6.6565,8.323127 +L 6.6565,8.323127,6.9889,8.461485 +L 6.9889,8.461485,7.6057,8.481368 + +[忍] 39 +L 0.8301,0.282172,0.9635,0.892364 +L 0.9635,0.892364,1.1071,1.502541 +L 1.1071,1.502541,1.2574,2.11263 +L 3.3977,0.015186,3.093,0.44317 +L 3.093,0.44317,2.9806,1.125365 +L 2.9806,1.125365,2.9669,2.646578 +L 3.7932,0.015186,4.6446,0.015186 +L 4.6446,0.015186,5.5027,0.015186 +L 5.5027,0.015186,6.3538,0.015186 +L 6.3538,0.015186,6.3538,0.358388 +L 6.3538,0.358388,6.3538,0.701612 +L 6.3538,0.701612,6.3538,1.044896 +L 8.0346,0.777916,7.7579,1.234116 +L 7.7579,1.234116,7.4816,1.681861 +L 7.4816,1.681861,7.208,2.11263 +L 5.0719,2.379593,4.9209,2.646578 +L 4.9209,2.646578,4.7742,2.913553 +L 4.7742,2.913553,4.6446,3.180461 +L 0.8301,4.248271,1.9264,4.662108 +L 1.9264,4.662108,2.5887,5.067462 +L 2.5887,5.067462,3.3977,5.811842 +L 3.3977,5.811842,2.9669,6.181943 +L 2.9669,6.181943,2.5396,6.535027 +L 2.5396,6.535027,2.1158,6.879658 +L 5.5027,4.248271,6.9068,4.964331 +L 6.9068,4.964331,7.2501,6.621128 +L 7.2501,6.621128,7.208,8.481368 +L 7.208,8.481368,6.2032,8.481368 +L 6.2032,8.481368,5.2046,8.481368 +L 5.2046,8.481368,4.2208,8.481368 +L 4.2208,8.481368,4.0667,7.869725 +L 4.0667,7.869725,3.9231,7.249763 +L 3.9231,7.249763,3.7932,6.612689 +L 3.7932,6.612689,4.0667,6.191804 +L 4.0667,6.191804,4.3536,5.762404 +L 4.3536,5.762404,4.6446,5.316081 +L 1.2574,8.481368,2.091,8.481368 +L 2.091,8.481368,2.9386,8.481368 +L 2.9386,8.481368,3.7932,8.481368 + +[寧] 48 +L 2.9689,0.015186,3.3962,0.015186 +L 3.3962,0.015186,3.82,0.015186 +L 3.82,0.015186,4.2505,0.015186 +L 4.2505,0.015186,4.2505,0.728472 +L 4.2505,0.728472,4.2505,1.424868 +L 4.2505,1.424868,4.2505,2.11263 +L 4.2505,2.11263,3.1192,2.11263 +L 3.1192,2.11263,1.9914,2.11263 +L 1.9914,2.11263,0.864,2.11263 +L 4.6778,2.11263,5.6515,2.11263 +L 5.6515,2.11263,6.6391,2.11263 +L 6.6391,2.11263,7.6338,2.11263 +L 1.7151,3.180461,1.7151,3.714399 +L 1.7151,3.714399,1.7151,4.248271 +L 1.7151,4.248271,1.7151,4.782122 +L 1.7151,4.782122,3.3962,4.782122 +L 3.3962,4.782122,5.0806,4.782122 +L 5.0806,4.782122,6.7827,4.782122 +L 6.7827,4.782122,6.7827,4.248271 +L 6.7827,4.248271,6.7827,3.714399 +L 6.7827,3.714399,6.7827,3.180461 +L 6.7827,3.180461,5.0806,3.180461 +L 5.0806,3.180461,3.3962,3.180461 +L 3.3962,3.180461,1.7151,3.180461 +L 1.7151,5.811842,1.8478,6.181943 +L 1.8478,6.181943,1.9952,6.535027 +L 1.9952,6.535027,2.1455,6.879658 +L 3.82,5.811842,3.522,6.246836 +L 3.522,6.246836,3.4102,6.800552 +L 3.4102,6.800552,3.3962,7.94749 +L 3.3962,7.94749,2.5416,7.94749 +L 2.5416,7.94749,1.6975,7.94749 +L 1.6975,7.94749,0.864,7.94749 +L 0.864,7.94749,0.864,7.602838 +L 0.864,7.602838,0.864,7.249763 +L 0.864,7.249763,0.864,6.879658 +L 4.2505,5.811842,4.8112,5.811842 +L 4.8112,5.811842,5.3786,5.811842 +L 5.3786,5.811842,5.96,5.811842 +L 5.1016,6.879658,4.7727,7.453091 +L 4.7727,7.453091,4.4396,7.72996 +L 4.4396,7.72996,3.82,7.94749 +L 7.6338,6.879658,7.6338,7.249763 +L 7.6338,7.249763,7.6338,7.602838 +L 7.6338,7.602838,7.6338,7.94749 +L 7.6338,7.94749,6.7827,7.94749 +L 6.7827,7.94749,5.9387,7.94749 +L 5.9387,7.94749,5.1016,7.94749 + +[粘] 27 +L 4.2493,0.015186,4.2493,1.426204 +L 4.2493,1.426204,4.2493,2.837249 +L 4.2493,2.837249,4.2493,4.248271 +L 4.2493,4.248271,4.7989,4.248271 +L 4.7989,4.248271,5.3561,4.248271 +L 5.3561,4.248271,5.927,4.248271 +L 5.927,4.248271,5.927,5.848619 +L 5.927,5.848619,5.927,7.440401 +L 5.927,7.440401,5.927,9.015201 +L 4.6763,0.015186,5.6535,0.015186 +L 5.6535,0.015186,6.638,0.015186 +L 6.638,0.015186,7.6358,0.015186 +L 7.6358,0.015186,7.6358,1.426204 +L 7.6358,1.426204,7.6358,2.837249 +L 7.6358,2.837249,7.6358,4.248271 +L 7.6358,4.248271,7.2085,4.248271 +L 7.2085,4.248271,6.7812,4.248271 +L 6.7812,4.248271,6.3575,4.248271 +L 6.3575,6.879686,6.9108,6.879686 +L 6.9108,6.879686,7.4856,6.879686 +L 7.4856,6.879686,8.0631,6.879686 +L 2.1163,9.015283,2.1163,0.015186 +L 3.3629,8.48129,2.9391,7.184651 +L 0.8306,8.48129,1.2579,7.184651 +L 0.8306,5.849953,3.3629,5.849953 +L 0.8306,2.15073,2.1163,4.667766 +L 3.3629,3.714312,2.1163,5.249546 + +[悩] 39 +L 2.1428,0.015186,2.1428,3.026474 +L 2.1428,3.026474,2.1428,6.029383 +L 2.1428,6.029383,2.1428,9.015201 +L 3.3967,0.015186,3.3967,1.796309 +L 3.3967,1.796309,3.3967,3.560423 +L 3.3967,3.560423,3.3967,5.316081 +L 3.8205,0.015186,5.0811,0.015186 +L 5.0811,0.015186,6.3559,0.015186 +L 6.3559,0.015186,7.6378,0.015186 +L 7.6378,0.015186,7.6378,1.796309 +L 7.6378,1.796309,7.6378,3.560423 +L 7.6378,3.560423,7.6378,5.316081 +L 4.2478,1.578758,4.6748,2.21581 +L 4.6748,2.21581,5.1056,2.835809 +L 5.1056,2.835809,5.5294,3.44742 +L 5.5294,3.44742,5.2355,3.90363 +L 5.2355,3.90363,4.9518,4.351386 +L 4.9518,4.351386,4.6748,4.782122 +L 6.8151,1.845737,6.5171,2.301948 +L 6.5171,2.301948,6.2334,2.749714 +L 6.2334,2.749714,5.9567,3.180473 +L 5.9567,4.248271,6.2579,4.662108 +L 6.2579,4.662108,6.3703,5.067462 +L 6.3703,5.067462,6.384,5.811842 +L 0.8645,5.049129,1.1657,5.64518 +L 1.1657,5.64518,1.2739,6.25817 +L 1.2739,6.25817,1.2918,7.41353 +L 3.0006,6.612705,2.8468,6.879686 +L 2.8468,6.879686,2.7032,7.14655 +L 2.7032,7.14655,2.5733,7.41353 +L 4.2478,7.14655,3.9498,7.602838 +L 3.9498,7.602838,3.6696,8.050604 +L 3.6696,8.050604,3.3967,8.481368 +L 6.8151,6.879686,7.0845,7.602838 +L 7.0845,7.602838,7.3615,8.317491 +L 7.3615,8.317491,7.6378,9.015201 +L 5.5294,7.68051,5.2355,8.136704 +L 5.2355,8.136704,4.9518,8.584564 +L 4.9518,8.584564,4.6748,9.015201 + +[濃] 66 +L 0.8595,0.015186,1.0836,1.561869 +L 1.0836,1.561869,1.4965,2.955921 +L 1.4965,2.955921,1.7176,4.248271 +L 2.113,0.015186,2.796,1.632438 +L 2.796,1.632438,2.9781,3.063316 +L 2.9781,3.063316,2.9644,4.782122 +L 2.9644,4.782122,4.6558,4.782122 +L 4.6558,4.782122,6.3548,4.782122 +L 6.3548,4.782122,8.0636,4.782122 +L 3.3952,0.015186,3.6716,0.015186 +L 3.6716,0.015186,3.9553,0.015186 +L 3.9553,0.015186,4.2495,0.015186 +L 4.2495,0.015186,4.2495,0.892364 +L 4.2495,0.892364,4.2495,1.769422 +L 4.2495,1.769422,4.2495,2.646611 +L 4.2495,2.646611,3.9553,2.646611 +L 3.9553,2.646611,3.6716,2.646611 +L 3.6716,2.646611,3.3952,2.646611 +L 4.6736,0.015186,5.006,0.364074 +L 5.006,0.364074,5.3317,0.492592 +L 5.3317,0.492592,5.9275,0.510958 +L 7.6363,0.015186,6.6175,1.443108 +L 6.6175,1.443108,5.8361,2.210156 +L 5.8361,2.210156,4.6736,2.646611 +L 7.2055,1.578758,7.339,1.845737 +L 7.339,1.845737,7.4861,2.11263 +L 7.4861,2.11263,7.6363,2.379593 +L 7.6363,2.379593,7.2055,2.48279 +L 7.2055,2.48279,6.7852,2.568829 +L 6.7852,2.568829,6.3548,2.646611 +L 3.8225,3.714399,4.9503,3.714399 +L 4.9503,3.714399,6.0816,3.714399 +L 6.0816,3.714399,7.2055,3.714399 +L 3.3952,5.811842,3.3952,6.535044 +L 3.3952,6.535044,3.3952,7.249763 +L 3.3952,7.249763,3.3952,7.9475 +L 3.3952,7.9475,4.0113,7.987062 +L 4.0113,7.987062,4.3479,8.263833 +L 4.3479,8.263833,4.6736,9.015201 +L 3.8225,5.811842,4.0954,5.914968 +L 4.0954,5.914968,4.3791,6.001068 +L 4.3791,6.001068,4.6736,6.078806 +L 4.6736,6.078806,4.3791,6.345714 +L 4.3791,6.345714,4.0954,6.612705 +L 4.0954,6.612705,3.8225,6.879686 +L 5.1041,5.811842,5.3776,5.914968 +L 5.3776,5.914968,5.654,6.001068 +L 5.654,6.001068,5.9275,6.078806 +L 5.9275,6.078806,5.5037,6.535044 +L 5.5037,6.535044,5.0831,6.982788 +L 5.0831,6.982788,4.6736,7.41353 +L 4.6736,7.41353,5.0831,7.9475 +L 5.0831,7.9475,5.5037,8.481368 +L 5.5037,8.481368,5.9275,9.015201 +L 6.3548,5.811842,6.6315,5.811842 +L 6.6315,5.811842,6.9117,5.811842 +L 6.9117,5.811842,7.2055,5.811842 +L 7.2055,5.811842,7.2055,6.181943 +L 7.2055,6.181943,7.2055,6.535044 +L 7.2055,6.535044,7.2055,6.879686 +L 7.2055,6.879686,6.593,6.899463 +L 6.593,6.899463,6.2599,7.037788 +L 6.2599,7.037788,5.9275,7.41353 +L 5.9275,7.41353,6.2599,7.769505 +L 6.2599,7.769505,6.593,7.769505 +L 6.593,7.769505,7.2055,7.41353 + +[把] 36 +L 1.2887,0.015186,1.5651,0.015186 +L 1.5651,0.015186,1.8453,0.015186 +L 1.8453,0.015186,2.1433,0.015186 +L 2.1433,0.015186,2.129,2.638118 +L 2.129,2.638118,2.0173,3.735611 +L 2.0173,3.735611,1.716,4.248271 +L 1.716,4.248271,1.4215,4.084395 +L 1.4215,4.084395,1.1413,3.90363 +L 1.1413,3.90363,0.865,3.714399 +L 4.2798,0.015186,3.9786,0.659276 +L 3.9786,0.659276,3.8662,2.854143 +L 3.8662,2.854143,3.8522,8.481368 +L 3.8522,8.481368,4.98,8.481368 +L 4.98,8.481368,6.1116,8.481368 +L 6.1116,8.481368,7.2429,8.481368 +L 7.2429,8.481368,7.2429,7.070339 +L 7.2429,7.070339,7.2429,5.6593 +L 7.2429,5.6593,7.2429,4.248271 +L 7.2429,4.248271,6.2409,4.248271 +L 6.2409,4.248271,5.257,4.248271 +L 5.257,4.248271,4.2798,4.248271 +L 4.6788,0.015186,5.6633,0.015186 +L 5.6633,0.015186,6.6612,0.015186 +L 6.6612,0.015186,7.6632,0.015186 +L 7.6632,0.015186,7.6632,0.54769 +L 7.6632,0.54769,7.6632,1.071695 +L 7.6632,1.071695,7.6632,1.578758 +L 2.5703,4.248271,2.0309,5.523733 +L 2.0309,5.523733,1.8243,6.494043 +L 1.8243,6.494043,0.865,6.879686 +L 5.5334,4.782122,5.5334,5.848619 +L 5.5334,5.848619,5.5334,6.90644 +L 5.5334,6.90644,5.5334,7.9475 +L 2.5703,6.879686,2.2691,7.314722 +L 2.2691,7.314722,2.1574,7.868394 +L 2.1574,7.868394,2.1433,9.015201 + +# kan_35 ------------------------------------------------------- +# 覇婆廃排杯輩培媒賠陪伯拍舶薄迫漠爆縛肌鉢髪伐罰抜閥伴帆搬畔繁般藩販範煩頒盤蛮卑妃扉披泌碑罷被避尾微匹 + +[覇] 73 +L 2.1084,1.067739,1.4776,1.792336 +L 1.4776,1.792336,1.0433,2.059223 +L 1.0433,2.059223,0.4304,2.097449 +L 0.4304,2.097449,0.4304,2.467521 +L 0.4304,2.467521,0.4304,2.820628 +L 0.4304,2.820628,0.4304,3.165154 +L 0.4304,3.165154,1.0261,3.194925 +L 1.0261,3.194925,1.3515,3.402555 +L 1.3515,3.402555,1.6846,3.966089 +L 1.6846,3.966089,1.1133,4.422283 +L 1.1133,4.422283,0.5529,4.870039 +L 0.5529,4.870039,0.0034,5.300796 +L 2.5353,1.067739,3.3938,1.067739 +L 2.1084,2.097449,1.7578,2.916623 +L 1.7578,2.916623,2.2551,3.159595 +L 2.2551,3.159595,2.9626,3.165154 +L 2.9626,3.165154,2.9626,2.820628 +L 2.9626,2.820628,2.9626,2.467521 +L 2.9626,2.467521,2.9626,2.097449 +L 2.9626,2.097449,2.1084,2.097449 +L 5.0676,2.097449,6.3498,2.097449 +L 5.0676,3.699109,5.4988,3.699109 +L 5.4988,3.699109,5.9187,3.699109 +L 5.9187,3.699109,6.3498,3.699109 +L 2.322,4.232992,2.4583,4.450511 +L 2.4583,4.450511,2.4026,4.72739 +L 2.4026,4.72739,2.1084,5.300796 +L 2.1084,5.300796,1.8142,5.300796 +L 1.8142,5.300796,1.5305,5.300796 +L 1.5305,5.300796,1.2534,5.300796 +L 1.2534,5.300796,0.9767,6.014103 +L 0.9767,6.014103,0.7035,6.710407 +L 0.7035,6.710407,0.4304,7.398246 +L 0.4304,7.398246,1.6282,7.42801 +L 1.6282,7.42801,2.1746,7.635646 +L 2.1746,7.635646,2.5353,8.199184 +L 2.5353,8.199184,1.6846,8.302184 +L 1.6846,8.302184,0.8335,8.388393 +L 0.8335,8.388393,0.0034,8.466083 +L 2.9626,5.300796,2.3287,6.052302 +L 2.3287,6.052302,1.8842,6.329083 +L 1.8842,6.329083,1.2534,6.368716 +L 2.9626,6.368716,2.7525,7.182144 +L 2.7525,7.182144,3.7016,7.512677 +L 3.7016,7.512677,4.6718,8.199184 +L 4.6718,8.199184,4.0939,8.302184 +L 4.0939,8.302184,3.523,8.388393 +L 3.523,8.388393,2.9626,8.466083 +L 3.3938,6.368716,4.4582,6.754155 +L 4.4582,6.754155,5.4249,7.190779 +L 5.4249,7.190779,6.7768,7.398246 +L 6.7768,7.398246,6.7768,7.055043 +L 6.7768,7.055043,6.7768,6.711824 +L 6.7768,6.711824,6.7768,6.368716 +L 6.7768,6.368716,6.1989,6.368716 +L 6.1989,6.368716,5.6245,6.368716 +L 5.6245,6.368716,5.0676,6.368716 +L 5.0676,8.466083,5.7681,8.466083 +L 5.7681,8.466083,6.4794,8.466083 +L 6.4794,8.466083,7.2041,8.466083 +L 1.6846,0.266887,1.334,0.830508 +L 1.334,0.830508,0.8997,1.038072 +L 0.8997,1.038072,0.0034,1.067739 +L 3.8176,0,4.6371,1.637013 +L 4.6371,1.637013,4.7454,3.333267 +L 4.7454,3.333267,4.6718,5.300796 +L 4.6718,5.300796,5.3723,5.300796 +L 5.3723,5.300796,6.0728,5.300796 +L 6.0728,5.300796,6.7768,5.300796 +L 6.7768,5.300796,6.7768,3.545127 +L 6.7768,3.545127,6.7768,1.781024 +L 6.7768,1.781024,6.7768,0 +L 6.7768,0,5.9187,0 + +[婆] 57 +L 5.5249,3.165154,6.0818,3.165154 +L 6.0818,3.165154,6.6562,3.165154 +L 6.6562,3.165154,7.2341,3.165154 +L 0.0019,4.232992,0.4324,4.956155 +L 0.4324,4.956155,0.8562,5.67089 +L 0.8562,5.67089,1.2835,6.368716 +L 6.376,4.232992,5.9557,4.603152 +L 5.9557,4.603152,5.5249,4.956155 +L 5.5249,4.956155,5.0976,5.300796 +L 5.0976,5.300796,5.3743,5.757084 +L 5.3743,5.757084,5.658,6.20484 +L 5.658,6.20484,5.9557,6.635592 +L 5.9557,6.635592,5.3743,6.711824 +L 5.3743,6.711824,4.8003,6.788162 +L 4.8003,6.788162,4.2465,6.86446 +L 2.5653,7.398246,2.5653,7.768317 +L 2.5653,7.768317,2.5653,8.121501 +L 2.5653,8.121501,2.5653,8.466083 +L 2.5653,8.466083,3.9702,8.388393 +L 3.9702,8.388393,5.3813,8.302184 +L 5.3813,8.302184,6.8068,8.199184 +L 6.8068,8.199184,6.6562,7.9322 +L 6.6562,7.9322,6.5126,7.665214 +L 6.5126,7.665214,6.376,7.398246 +L 0.8562,0,2.103,0.039556 +L 2.103,0.039556,2.8736,0.316337 +L 2.8736,0.316337,3.8157,1.067739 +L 3.8157,1.067739,3.49,1.453359 +L 3.49,1.453359,3.0557,1.661016 +L 3.0557,1.661016,2.1416,1.868667 +L 2.1416,1.868667,2.2715,2.211776 +L 2.2715,2.211776,2.4147,2.55506 +L 2.4147,2.55506,2.5653,2.898268 +L 2.5653,2.898268,1.7107,3.001382 +L 1.7107,3.001382,0.8562,3.087521 +L 0.8562,3.087521,0.0019,3.165154 +L 5.9557,0,5.3743,0.456205 +L 5.3743,0.456205,4.8003,0.903944 +L 4.8003,0.903944,4.2465,1.334719 +L 4.2465,1.334719,4.5197,1.867135 +L 4.5197,1.867135,4.8003,2.391217 +L 4.8003,2.391217,5.0976,2.898268 +L 5.0976,2.898268,4.3971,3.001382 +L 4.3971,3.001382,3.6931,3.087521 +L 3.6931,3.087521,2.9926,3.165154 +L 2.9926,3.165154,3.1996,3.956216 +L 3.1996,3.956216,3.6301,4.509844 +L 3.6301,4.509844,4.6668,5.300796 +L 4.6668,5.300796,4.3765,5.757084 +L 4.3765,5.757084,4.0928,6.20484 +L 4.0928,6.20484,3.8157,6.635592 +L 3.8157,6.635592,3.3923,6.635592 +L 3.3923,6.635592,2.9716,6.635592 +L 2.9716,6.635592,2.5653,6.635592 +L 2.5653,6.635592,2.1416,5.834768 +L 2.1416,5.834768,1.7107,5.033844 +L 1.7107,5.033844,1.2835,4.232992 + +[廃] 48 +L 5.5549,2.631392,5.2537,3.046608 +L 5.2537,3.046608,5.1417,3.461905 +L 5.1417,3.461905,5.1245,4.232992 +L 5.1245,4.232992,4.7038,4.232992 +L 4.7038,4.232992,4.2734,4.232992 +L 4.2734,4.232992,3.8496,4.232992 +L 5.9822,2.631392,6.8057,2.631392 +L 5.7686,4.232992,5.8667,4.490061 +L 5.8667,4.490061,5.5308,5.043727 +L 5.5308,5.043727,4.4902,6.368716 +L 4.4902,6.368716,4.1259,6.02397 +L 4.1259,6.02397,3.7652,5.67089 +L 3.7652,5.67089,3.4184,5.300796 +L 6.8057,4.232992,6.522,4.826269 +L 6.522,4.826269,6.522,5.241462 +L 6.522,5.241462,6.8057,5.834768 +L 2.14,6.86446,2.844,6.86446 +L 2.844,6.86446,3.5554,6.86446 +L 3.5554,6.86446,4.2734,6.86446 +L 4.2734,7.9322,5.2537,7.9322 +L 5.2537,7.9322,6.2383,7.9322 +L 6.2383,7.9322,7.2361,7.9322 +L 0.0351,0.266887,0.7146,2.932165 +L 0.7146,2.932165,0.8967,5.343138 +L 0.8967,5.343138,0.8897,7.9322 +L 0.8897,7.9322,1.8637,7.9322 +L 1.8637,7.9322,2.851,7.9322 +L 2.851,7.9322,3.8496,7.9322 +L 3.8496,7.9322,3.8496,8.302184 +L 3.8496,8.302184,3.8496,8.655368 +L 3.8496,8.655368,3.8496,8.999922 +L 1.5271,0,2.1474,0.636948 +L 2.1474,0.636948,2.781,1.25703 +L 2.781,1.25703,3.4184,1.868667 +L 3.4184,1.868667,3.0752,2.405309 +L 3.0752,2.405309,2.6374,2.603071 +L 2.6374,2.603071,1.7408,2.631392 +L 5.5549,0,5.0191,1.275385 +L 5.0191,1.275385,4.8159,2.245761 +L 4.8159,2.245761,3.8496,2.631392 +L 3.8496,2.631392,3.4815,3.354473 +L 3.4815,3.354473,3.1242,4.069192 +L 3.1242,4.069192,2.781,4.766952 +L 2.781,4.766952,2.4237,4.603152 +L 2.4237,4.603152,2.0805,4.422283 +L 2.0805,4.422283,1.7408,4.232992 +L 5.9822,0,7.2361,0 +L 7.2361,0,7.2361,1.067739 + +[排] 46 +L 5.9846,2.631392,6.4084,2.631392 +L 6.4084,2.631392,6.8388,2.631392 +L 6.8388,2.631392,7.2626,2.631392 +L 4.3066,3.165154,4.3066,3.699109 +L 4.3066,3.699109,4.3066,4.232992 +L 4.3066,4.232992,4.3066,4.766952 +L 4.3066,4.766952,3.8796,4.766952 +L 3.8796,4.766952,3.452,4.766952 +L 3.452,4.766952,3.0247,4.766952 +L 1.7431,4.232992,1.2104,5.508454 +L 1.2104,5.508454,1.0213,6.47883 +L 1.0213,6.47883,0.0616,6.86446 +L 5.9846,4.766952,6.2578,4.766952 +L 6.2578,4.766952,6.5376,4.766952 +L 6.5376,4.766952,6.8388,4.766952 +L 4.3066,5.300796,4.3066,5.833246 +L 4.3066,5.833246,4.3066,6.357316 +L 4.3066,6.357316,4.3066,6.86446 +L 4.3066,6.86446,3.8796,6.86446 +L 3.8796,6.86446,3.452,6.86446 +L 3.452,6.86446,3.0247,6.86446 +L 1.7431,6.86446,1.4419,7.299448 +L 1.4419,7.299448,1.333,7.853083 +L 1.333,7.853083,1.3155,8.999922 +L 5.9846,6.86446,6.4084,6.86446 +L 6.4084,6.86446,6.8388,6.86446 +L 6.8388,6.86446,7.2626,6.86446 +L 4.3066,7.398246,4.3066,7.9322 +L 4.3066,7.9322,4.3066,8.466083 +L 4.3066,8.466083,4.3066,8.999922 +L 0.4924,0,1.3155,0 +L 1.3155,0,1.2983,2.622844 +L 1.2983,2.622844,1.1894,3.720337 +L 1.1894,3.720337,0.8882,4.232992 +L 0.8882,4.232992,0.615,4.069192 +L 0.615,4.069192,0.3418,3.888345 +L 0.3418,3.888345,0.0616,3.699109 +L 3.0247,0,3.452,0.799418 +L 3.452,0.799418,3.8796,1.590348 +L 3.8796,1.590348,4.3066,2.364401 +L 4.3066,2.364401,3.6765,2.532426 +L 3.6765,2.532426,3.2278,2.463302 +L 3.2278,2.463302,2.5974,2.097449 +L 5.5569,0,5.5569,3.011276 +L 5.5569,3.011276,5.5569,6.014103 +L 5.5569,6.014103,5.5569,8.999922 + +[杯] 8 +L 1.3455,0,1.3455,9.000042 +L 1.3455,5.150054,0.0639,3.165204 +L 2.1689,4.500049,1.3455,6.048334 +L 2.1689,6.902675,0.0639,6.902675 +L 3.0547,8.466083,7.2615,8.466083 +L 5.1565,0,5.1565,8.466083 +L 7.2615,3.432222,5.8602,5.864439 +L 2.6309,2.631392,5.1565,5.163621 + +[輩] 66 +L 3.9043,1.067739,3.0427,1.927996 +L 3.0427,1.927996,2.3247,2.127094 +L 2.3247,2.127094,1.3794,2.097449 +L 1.3794,2.097449,1.3794,2.820628 +L 1.3794,2.820628,1.3794,3.535254 +L 1.3794,3.535254,1.3794,4.232992 +L 1.3794,4.232992,0.9482,4.232992 +L 0.9482,4.232992,0.5209,4.232992 +L 0.5209,4.232992,0.094,4.232992 +L 4.3354,1.067739,5.1655,1.067739 +L 5.1655,1.067739,6.0166,1.067739 +L 6.0166,1.067739,6.8674,1.067739 +L 3.9043,2.097449,3.2598,2.848845 +L 3.2598,2.848845,2.7068,3.125703 +L 2.7068,3.125703,1.7751,3.165154 +L 4.3354,2.097449,4.7449,2.097449 +L 4.7449,2.097449,5.1582,2.097449 +L 5.1582,2.097449,5.5855,2.097449 +L 5.5855,2.097449,5.5855,2.467521 +L 5.5855,2.467521,5.5855,2.820628 +L 5.5855,2.820628,5.5855,3.165154 +L 5.5855,3.165154,4.0307,3.442122 +L 4.0307,3.442122,2.9866,3.956216 +L 2.9866,3.956216,1.7751,4.232992 +L 5.5855,3.966089,5.0181,4.069192 +L 5.0181,4.069192,4.458,4.155396 +L 4.458,4.155396,3.9043,4.232992 +L 3.9043,4.232992,3.7575,4.603152 +L 3.7575,4.603152,3.6136,4.956155 +L 3.6136,4.956155,3.4843,5.300796 +L 6.0166,4.232992,6.2898,4.232992 +L 6.2898,4.232992,6.5696,4.232992 +L 6.5696,4.232992,6.8674,4.232992 +L 0.5209,5.300796,1.4175,5.330485 +L 1.4175,5.330485,1.8557,5.538126 +L 1.8557,5.538126,2.1989,6.101654 +L 2.1989,6.101654,1.4946,6.20484 +L 1.4946,6.20484,0.7941,6.290972 +L 0.7941,6.290972,0.094,6.368716 +L 4.3354,5.300796,4.3354,6.367183 +L 4.3354,6.367183,4.3354,7.425121 +L 4.3354,7.425121,4.3354,8.466083 +L 4.3354,8.466083,5.1655,8.466083 +L 5.1655,8.466083,6.0166,8.466083 +L 6.0166,8.466083,6.8674,8.466083 +L 2.6294,6.368716,2.6294,6.711824 +L 2.6294,6.711824,2.6294,7.055043 +L 2.6294,7.055043,2.6294,7.398246 +L 2.6294,7.398246,1.9257,7.398246 +L 1.9257,7.398246,1.2249,7.398246 +L 1.2249,7.398246,0.5209,7.398246 +L 4.7624,6.368716,5.4629,6.368716 +L 5.4629,6.368716,6.1672,6.368716 +L 6.1672,6.368716,6.8674,6.368716 +L 4.7624,7.398246,5.3161,7.398246 +L 5.3161,7.398246,5.8692,7.398246 +L 5.8692,7.398246,6.4404,7.398246 +L 2.6294,8.199184,1.7751,8.302184 +L 1.7751,8.302184,0.9272,8.388393 +L 0.9272,8.388393,0.094,8.466083 +L 3.4843,0.266887,3.3299,0.533867 +L 3.3299,0.533867,3.1863,0.800841 +L 3.1863,0.800841,3.0532,1.067739 +L 3.0532,1.067739,2.055,1.067739 +L 2.055,1.067739,1.0747,1.067739 +L 1.0747,1.067739,0.094,1.067739 + +[培] 40 +L 6.4736,1.066376,6.4736,0 +L 6.4736,0,3.5105,0 +L 0.1271,2.631392,0.4003,2.631392 +L 0.4003,2.631392,0.6735,2.631392 +L 0.6735,2.631392,0.9467,2.631392 +L 0.9467,2.631392,0.9467,3.699109 +L 0.9467,3.699109,0.9467,4.766952 +L 0.9467,4.766952,0.9467,5.834768 +L 0.9467,5.834768,0.6735,6.02397 +L 0.6735,6.02397,0.4003,6.20484 +L 0.4003,6.20484,0.1271,6.368716 +L 2.2321,5.300796,2.7925,5.300796 +L 2.7925,5.300796,3.3638,5.300796 +L 3.3638,5.300796,3.9417,5.300796 +L 3.9417,5.300796,3.8296,6.220289 +L 3.8296,6.220289,3.6226,7.012702 +L 3.6226,7.012702,3.5105,7.9322 +L 3.5105,7.9322,3.2131,7.9322 +L 3.2131,7.9322,2.9326,7.9322 +L 2.9326,7.9322,2.6594,7.9322 +L 4.3371,5.300796,5.5388,5.74575 +L 5.5388,5.74575,5.9836,6.546607 +L 5.9836,6.546607,6.0428,7.9322 +L 6.0428,7.9322,5.3423,7.9322 +L 5.3423,7.9322,4.6418,7.9322 +L 4.6418,7.9322,3.9417,7.9322 +L 6.0428,5.300796,6.4736,5.300796 +L 6.4736,5.300796,6.8977,5.300796 +L 6.8977,5.300796,7.3247,5.300796 +L 1.3775,6.368716,1.0728,6.796595 +L 1.0728,6.796595,0.9646,7.478796 +L 0.9646,7.478796,0.9467,8.999922 +L 3.5105,0,3.5105,1.066376 +L 3.5105,1.066376,3.5105,2.124325 +L 3.5105,2.124325,3.5105,3.165154 +L 3.5105,3.165154,4.4912,3.165154 +L 4.4912,3.165154,5.4754,3.165154 +L 5.4754,3.165154,6.4736,3.165154 +L 6.4736,3.165154,6.4736,2.124325 +L 6.4736,2.124325,6.4736,1.066376 + +[媒] 67 +L 0.126,0,0.5529,0.636948 +L 0.5529,0.636948,0.9802,1.25703 +L 0.9802,1.25703,1.4114,1.868667 +L 1.4114,1.868667,1.0783,2.415291 +L 1.0783,2.415291,0.7424,2.682178 +L 0.7424,2.682178,0.126,2.898268 +L 0.126,2.898268,0.4409,3.906772 +L 0.4409,3.906772,0.665,5.093249 +L 0.665,5.093249,0.9802,6.101654 +L 0.9802,6.101654,0.686,6.367183 +L 0.686,6.367183,0.4023,6.624274 +L 0.4023,6.624274,0.126,6.86446 +L 5.2217,0,5.1411,0.87708 +L 5.1411,0.87708,5.0676,1.754236 +L 5.0676,1.754236,5.0081,2.631392 +L 5.0081,2.631392,4.3675,2.124325 +L 4.3675,2.124325,3.7265,1.600243 +L 3.7265,1.600243,3.0852,1.067739 +L 6.8994,1.067739,5.6665,2.620064 +L 5.6665,2.620064,4.6228,3.036713 +L 4.6228,3.036713,3.0852,3.165154 +L 2.2621,1.601682,2.045,3.025379 +L 2.045,3.025379,2.1574,5.23726 +L 2.1574,5.23726,2.2621,6.86446 +L 2.2621,6.86446,1.2009,7.155454 +L 1.2009,7.155454,0.9456,7.920861 +L 0.9456,7.920861,0.9802,8.999922 +L 6.0766,3.165154,6.4826,3.165154 +L 6.4826,3.165154,6.8994,3.165154 +L 6.8994,3.165154,7.3267,3.165154 +L 5.2217,3.699109,5.2217,4.069192 +L 5.2217,4.069192,5.2217,4.422283 +L 5.2217,4.422283,5.2217,4.766952 +L 5.2217,4.766952,4.7944,4.766952 +L 4.7944,4.766952,4.3675,4.766952 +L 4.3675,4.766952,3.9363,4.766952 +L 3.9363,4.766952,3.9363,5.64401 +L 3.9363,5.64401,3.9363,6.52116 +L 3.9363,6.52116,3.9363,7.398246 +L 3.9363,7.398246,3.6421,7.58757 +L 3.6421,7.58757,3.3622,7.768317 +L 3.3622,7.768317,3.0852,7.9322 +L 5.6455,4.766952,5.926,4.766952 +L 5.926,4.766952,6.2062,4.766952 +L 6.2062,4.766952,6.5004,4.766952 +L 6.5004,4.766952,6.5004,5.300796 +L 6.5004,5.300796,6.5004,5.834768 +L 6.5004,5.834768,6.5004,6.368716 +L 6.5004,6.368716,5.7751,6.368716 +L 5.7751,6.368716,5.0676,6.368716 +L 5.0676,6.368716,4.3675,6.368716 +L 6.5004,7.131347,6.353,7.398246 +L 6.353,7.398246,6.2062,7.665214 +L 6.2062,7.665214,6.0766,7.9322 +L 6.0766,7.9322,5.4949,7.9322 +L 5.4949,7.9322,4.924,7.9322 +L 4.924,7.9322,4.3675,7.9322 +L 4.3675,7.9322,4.2165,8.302184 +L 4.2165,8.302184,4.0694,8.655368 +L 4.0694,8.655368,3.9363,8.999922 +L 6.8994,7.9322,6.7561,8.302184 +L 6.7561,8.302184,6.6262,8.655368 +L 6.6262,8.655368,6.5004,8.999922 +L 3.5269,6.330309,-0.074,6.330309 +L 0.7844,3.326535,1.4114,8.999906 +A -4.6097,-3.399556,8.620982,23.224227,51.278884 +A -6.4656,6.330309,9.138971,316.15783,0 + +[賠] 55 +L 0.1592,0,0.4323,0.370094 +L 0.4323,0.370094,0.7129,0.723092 +L 0.7129,0.723092,1.0103,1.067739 +L 3.9733,0,3.9733,1.066376 +L 3.9733,1.066376,3.9733,2.124325 +L 3.9733,2.124325,3.9733,3.165154 +L 3.9733,3.165154,4.8034,3.165154 +L 4.8034,3.165154,5.6475,3.165154 +L 5.6475,3.165154,6.5056,3.165154 +L 6.5056,3.165154,6.5056,2.124325 +L 6.5056,2.124325,6.5056,1.066376 +L 6.5056,1.066376,6.5056,0 +L 6.5056,0,3.9733,0 +L 0.583,2.097449,0.583,4.231629 +L 0.583,4.231629,0.583,6.357316 +L 0.583,6.357316,0.583,8.466083 +L 0.583,8.466083,1.1328,8.466083 +L 1.1328,8.466083,1.6897,8.466083 +L 1.6897,8.466083,2.2641,8.466083 +L 2.2641,8.466083,2.2641,6.357316 +L 2.2641,6.357316,2.2641,4.231629 +L 2.2641,4.231629,2.2641,2.097449 +L 2.2641,2.097449,1.6897,2.097449 +L 1.6897,2.097449,1.1328,2.097449 +L 1.1328,2.097449,0.583,2.097449 +L 1.0103,4.232992,1.2834,4.232992 +L 1.2834,4.232992,1.5636,4.232992 +L 1.5636,4.232992,1.8337,4.232992 +L 3.1152,5.300796,3.5425,5.300796 +L 3.5425,5.300796,3.9733,5.300796 +L 3.9733,5.300796,4.3936,5.300796 +L 4.3936,5.300796,4.2885,6.220289 +L 4.2885,6.220289,4.0823,7.012702 +L 4.0823,7.012702,3.9733,7.9322 +L 3.9733,7.9322,4.3765,7.9322 +L 4.3765,7.9322,4.7964,7.9322 +L 4.7964,7.9322,5.2202,7.9322 +L 5.2202,7.9322,5.2202,8.302184 +L 5.2202,8.302184,5.2202,8.655368 +L 5.2202,8.655368,5.2202,8.999922 +L 4.8244,5.300796,5.2346,5.300796 +L 5.2346,5.300796,5.6475,5.300796 +L 5.6475,5.300796,6.0751,5.300796 +L 6.0751,5.300796,6.1872,6.220289 +L 6.1872,6.220289,6.3935,7.012702 +L 6.3935,7.012702,6.5056,7.9322 +L 6.5056,7.9322,6.2082,7.9322 +L 6.2082,7.9322,5.9245,7.9322 +L 5.9245,7.9322,5.6475,7.9322 +L 6.5056,5.300796,6.7756,5.300796 +L 6.7756,5.300796,7.0593,5.300796 +L 7.0593,5.300796,7.3567,5.300796 +L 1.0103,6.368716,1.2834,6.368716 +L 1.2834,6.368716,1.5636,6.368716 +L 1.5636,6.368716,1.8337,6.368716 + +[陪] 46 +L 0.1577,0,0.1577,2.822046 +L 0.1577,2.822046,0.1577,5.64401 +L 0.1577,5.64401,0.1577,8.466083 +L 0.1577,8.466083,0.7145,8.466083 +L 0.7145,8.466083,1.2854,8.466083 +L 1.2854,8.466083,1.8672,8.466083 +L 1.8672,8.466083,1.4189,6.097412 +L 1.4189,6.097412,1.643,4.796613 +L 1.643,4.796613,1.8672,2.631392 +L 1.8672,2.631392,1.573,2.467521 +L 1.573,2.467521,1.2854,2.286652 +L 1.2854,2.286652,1.0123,2.097449 +L 3.5725,0,3.5725,1.066376 +L 3.5725,1.066376,3.5725,2.124325 +L 3.5725,2.124325,3.5725,3.165154 +L 3.5725,3.165154,4.5532,3.165154 +L 4.5532,3.165154,5.5374,3.165154 +L 5.5374,3.165154,6.5325,3.165154 +L 6.5325,3.165154,6.5325,2.124325 +L 6.5325,2.124325,6.5325,1.066376 +L 6.5325,1.066376,6.5325,0 +L 6.5325,0,3.5725,0 +L 2.7214,5.300796,3.1242,5.300796 +L 3.1242,5.300796,3.5449,5.300796 +L 3.5449,5.300796,3.9683,5.300796 +L 3.9683,5.300796,3.8286,6.177952 +L 3.8286,6.177952,3.6951,7.055043 +L 3.6951,7.055043,3.5725,7.9322 +L 3.5725,7.9322,3.9827,7.9322 +L 3.9827,7.9322,4.3991,7.9322 +L 4.3991,7.9322,4.8229,7.9322 +L 4.8229,7.9322,4.8229,8.302184 +L 4.8229,8.302184,4.8229,8.655368 +L 4.8229,8.655368,4.8229,8.999922 +L 4.3991,5.300796,4.8229,5.300796 +L 4.8229,5.300796,5.2537,5.300796 +L 5.2537,5.300796,5.6775,5.300796 +L 5.6775,5.300796,5.7896,6.220289 +L 5.7896,6.220289,5.9966,7.012702 +L 5.9966,7.012702,6.1052,7.9322 +L 6.1052,7.9322,5.8071,7.9322 +L 5.8071,7.9322,5.5269,7.9322 +L 5.5269,7.9322,5.2537,7.9322 +L 6.1052,5.300796,6.5325,5.300796 +L 6.5325,5.300796,6.9629,5.300796 +L 6.9629,5.300796,7.3867,5.300796 + +[伯] 31 +L 1.0426,0,0.9586,1.944884 +L 0.9586,1.944884,0.8917,3.889779 +L 0.8917,3.889779,0.8251,5.834768 +L 0.8251,5.834768,0.6153,5.67089 +L 0.6153,5.67089,0.4013,5.49012 +L 0.4013,5.49012,0.1915,5.300796 +L 3.1476,0,3.1476,2.288097 +L 3.1476,2.288097,3.1476,4.5762 +L 3.1476,4.5762,3.1476,6.86446 +L 3.1476,6.86446,3.5749,6.86446 +L 3.5749,6.86446,4.0022,6.86446 +L 4.0022,6.86446,4.426,6.86446 +L 4.426,6.86446,4.5552,7.58757 +L 4.5552,7.58757,4.7062,8.302184 +L 4.7062,8.302184,4.8564,8.999922 +L 3.5749,0,6.9614,0 +L 6.9614,0,6.9614,1.247157 +L 6.9614,1.247157,6.9614,2.477328 +L 6.9614,2.477328,6.9614,3.699109 +L 6.9614,3.699109,5.8301,3.699109 +L 5.8301,3.699109,4.7062,3.699109 +L 4.7062,3.699109,3.5749,3.699109 +L 6.9614,4.232992,6.9614,5.110142 +L 6.9614,5.110142,6.9614,5.987299 +L 6.9614,5.987299,6.9614,6.86446 +L 6.9614,6.86446,6.2574,6.86446 +L 6.2574,6.86446,5.5573,6.86446 +L 5.5573,6.86446,4.8564,6.86446 +L 1.0426,6.635592,1.319,7.435004 +L 1.319,7.435004,1.5992,8.225967 +L 1.5992,8.225967,1.8972,8.999922 + +[拍] 33 +L 0.6485,0,0.9185,0 +L 0.9185,0,1.1949,0 +L 1.1949,0,1.4649,0 +L 1.4649,0,1.4509,2.622844 +L 1.4509,2.622844,1.3385,3.720337 +L 1.3385,3.720337,1.0446,4.232992 +L 1.0446,4.232992,0.7644,4.069192 +L 0.7644,4.069192,0.4909,3.888345 +L 0.4909,3.888345,0.2177,3.699109 +L 3.6046,0,3.7061,3.748575 +L 3.7061,3.748575,4.0844,6.242956 +L 4.0844,6.242956,4.8549,8.999922 +L 4.0319,0,5.0094,0 +L 5.0094,0,5.9932,0 +L 5.9932,0,6.9918,0 +L 6.9918,0,6.9918,1.247157 +L 6.9918,1.247157,6.9918,2.477328 +L 6.9918,2.477328,6.9918,3.699109 +L 6.9918,3.699109,5.9932,3.699109 +L 5.9932,3.699109,5.0094,3.699109 +L 5.0094,3.699109,4.0319,3.699109 +L 1.8957,4.232992,1.3668,5.508454 +L 1.3668,5.508454,1.1739,6.47883 +L 1.1739,6.47883,0.2177,6.86446 +L 6.9918,4.232992,6.9918,5.299456 +L 6.9918,5.299456,6.9918,6.357316 +L 6.9918,6.357316,6.9918,7.398246 +L 6.9918,7.398246,6.2703,7.398246 +L 6.2703,7.398246,5.5558,7.398246 +L 5.5558,7.398246,4.8549,7.398246 +L 1.8957,6.86446,1.5945,7.299448 +L 1.5945,7.299448,1.4821,7.853083 +L 1.4821,7.853083,1.4649,8.999922 + +[舶] 51 +L 0.2165,0.266887,0.5178,1.08472 +L 0.5178,1.08472,0.6295,3.072033 +L 0.6295,3.072033,0.647,7.9322 +L 0.647,7.9322,1.2638,8.149636 +L 1.2638,8.149636,1.5962,8.426592 +L 1.5962,8.426592,1.9219,8.999922 +L 1.9219,0,2.2021,0 +L 2.2021,0,2.4826,0 +L 2.4826,0,2.7803,0 +L 2.7803,0,2.7803,1.600243 +L 2.7803,1.600243,2.7803,3.192134 +L 2.7803,3.192134,2.7803,4.766952 +L 2.7803,4.766952,2.2021,4.603152 +L 2.2021,4.603152,1.6315,4.422283 +L 1.6315,4.422283,1.0708,4.232992 +L 4.0339,0,4.0339,2.477328 +L 4.0339,2.477328,4.0339,4.946359 +L 4.0339,4.946359,4.0339,7.398246 +L 4.0339,7.398246,4.4577,7.501354 +L 4.4577,7.501354,4.885,7.58757 +L 4.885,7.58757,5.3126,7.665214 +L 5.3126,7.665214,5.4454,8.121501 +L 5.4454,8.121501,5.589,8.569186 +L 5.589,8.569186,5.7434,8.999922 +L 4.4577,0,5.3126,0 +L 5.3126,0,6.1672,0 +L 6.1672,0,7.0215,0 +L 7.0215,0,7.0215,1.247157 +L 7.0215,1.247157,7.0215,2.477328 +L 7.0215,2.477328,7.0215,3.699109 +L 7.0215,3.699109,6.1672,3.699109 +L 6.1672,3.699109,5.3126,3.699109 +L 5.3126,3.699109,4.4577,3.699109 +L 1.5016,1.601682,1.5016,2.134186 +L 1.5016,2.134186,1.5016,2.658197 +L 1.5016,2.658197,1.5016,3.165154 +L 7.0215,4.232992,7.0215,5.299456 +L 7.0215,5.299456,7.0215,6.357316 +L 7.0215,6.357316,7.0215,7.398246 +L 7.0215,7.398246,6.5945,7.398246 +L 6.5945,7.398246,6.1672,7.398246 +L 6.1672,7.398246,5.7434,7.398246 +L 2.7803,5.300796,2.7803,6.177952 +L 2.7803,6.177952,2.7803,7.055043 +L 2.7803,7.055043,2.7803,7.9322 +L 2.7803,7.9322,2.4826,7.9322 +L 2.4826,7.9322,2.2021,7.9322 +L 2.2021,7.9322,1.9219,7.9322 +L 1.5016,5.834768,1.5016,6.177952 +L 1.5016,6.177952,1.5016,6.52116 +L 1.5016,6.52116,1.5016,6.86446 + +[薄] 60 +L 0.6774,0.266887,1.0836,1.411017 +L 1.0836,1.411017,1.5001,2.55506 +L 1.5001,2.55506,1.9274,3.699109 +L 5.3423,0,5.6158,0 +L 5.6158,0,5.8957,0 +L 5.8957,0,6.1657,0 +L 6.1657,0,6.1513,1.145477 +L 6.1513,1.145477,6.0396,1.689227 +L 6.0396,1.689227,5.7419,2.097449 +L 5.7419,2.097449,4.8873,2.021117 +L 4.8873,2.021117,4.0397,1.944884 +L 4.0397,1.944884,3.2061,1.868667 +L 3.2061,1.868667,3.486,1.437811 +L 3.486,1.437811,3.7662,0.990072 +L 3.7662,0.990072,4.0607,0.533867 +L 6.5962,2.097449,6.442,2.364401 +L 6.442,2.364401,6.2984,2.631392 +L 6.2984,2.631392,6.1657,2.898268 +L 6.1657,2.898268,5.3146,3.001382 +L 5.3146,3.001382,4.467,3.087521 +L 4.467,3.087521,3.6369,3.165154 +L 3.6369,3.165154,3.6369,3.888345 +L 3.6369,3.888345,3.6369,4.603152 +L 3.6369,4.603152,3.6369,5.300796 +L 3.6369,5.300796,4.5542,5.32058 +L 4.5542,5.32058,4.9955,5.459037 +L 4.9955,5.459037,5.3423,5.834768 +L 5.3423,5.834768,4.9605,6.210421 +L 4.9605,6.210421,4.2989,6.348861 +L 4.2989,6.348861,2.7823,6.368716 +L 6.8102,3.165154,6.8697,3.535254 +L 6.8697,3.535254,6.9394,3.888345 +L 6.9394,3.888345,7.02,4.232992 +L 7.02,4.232992,6.0256,4.232992 +L 6.0256,4.232992,5.0376,4.232992 +L 5.0376,4.232992,4.0607,4.232992 +L 1.5285,4.766952,1.2304,5.13703 +L 1.2304,5.13703,0.9502,5.49012 +L 0.9502,5.49012,0.6774,5.834768 +L 5.3423,4.766952,5.6715,5.122828 +L 5.6715,5.122828,6.1062,5.122828 +L 6.1062,5.122828,7.02,4.766952 +L 1.9274,6.368716,1.651,6.711824 +L 1.651,6.711824,1.381,7.055043 +L 1.381,7.055043,1.1047,7.398246 +L 5.5244,6.635592,5.3146,7.168124 +L 5.3146,7.168124,5.1115,7.692096 +L 5.1115,7.692096,4.915,8.199184 +L 4.915,8.199184,3.3599,8.302184 +L 3.3599,8.302184,1.8048,8.388393 +L 1.8048,8.388393,0.2501,8.466083 +L 6.1657,6.368716,6.442,6.471738 +L 6.442,6.471738,6.7257,6.557946 +L 6.7257,6.557946,7.02,6.635592 +L 7.02,6.635592,6.8697,6.901143 +L 6.8697,6.901143,6.7257,7.158141 +L 6.7257,7.158141,6.5962,7.398246 +L 5.3423,8.466083,6.0466,8.466083 +L 6.0466,8.466083,6.7468,8.466083 +L 6.7468,8.466083,7.4473,8.466083 + +[迫] 48 +L 0.4619,0,0.8051,0.370094 +L 0.8051,0.370094,1.1697,0.723092 +L 1.1697,0.723092,1.534,1.067739 +L 1.534,1.067739,1.534,2.314984 +L 1.534,2.314984,1.534,3.545127 +L 1.534,3.545127,1.534,4.766952 +L 1.534,4.766952,1.1032,4.766952 +L 1.1032,4.766952,0.6829,4.766952 +L 0.6829,4.766952,0.2797,4.766952 +L 2.812,0,2.5143,0.189225 +L 2.5143,0.189225,2.2345,0.370094 +L 2.2345,0.370094,1.9543,0.533867 +L 3.2393,0,4.6441,0 +L 4.6441,0,6.0553,0 +L 6.0553,0,7.4811,0 +L 3.2393,1.601682,3.2393,3.545127 +L 3.2393,3.545127,3.2393,5.480221 +L 3.2393,5.480221,3.2393,7.398246 +L 3.2393,7.398246,3.6456,7.501354 +L 3.6456,7.501354,4.0659,7.58757 +L 4.0659,7.58757,4.4897,7.665214 +L 4.4897,7.665214,4.6193,8.121501 +L 4.6193,8.121501,4.7667,8.569186 +L 4.7667,8.569186,4.917,8.999922 +L 3.6631,1.601682,4.6441,1.601682 +L 4.6441,1.601682,5.6245,1.601682 +L 5.6245,1.601682,6.6265,1.601682 +L 6.6265,1.601682,6.6265,2.668069 +L 6.6265,2.668069,6.6265,3.726007 +L 6.6265,3.726007,6.6265,4.766952 +L 6.6265,4.766952,5.6245,4.766952 +L 5.6245,4.766952,4.6441,4.766952 +L 4.6441,4.766952,3.6631,4.766952 +L 6.6265,5.300796,6.6265,6.014103 +L 6.6265,6.014103,6.6265,6.710407 +L 6.6265,6.710407,6.6265,7.398246 +L 6.6265,7.398246,6.0451,7.398246 +L 6.0451,7.398246,5.4742,7.398246 +L 5.4742,7.398246,4.917,7.398246 +L 1.534,7.398246,1.2359,7.768317 +L 1.2359,7.768317,0.9522,8.121501 +L 0.9522,8.121501,0.6759,8.466083 +L 5.3303,-0.015186,7.4636,-0.015186 +L 1.5161,1.052476,0.4619,0 +L 0.2622,4.751716,1.5161,4.751716 +L 1.5161,1.052476,1.5161,4.751716 +L 0.693,8.489144,1.5161,7.421258 +A 5.3303,7.347827,7.362973,238.75988,270 + +[漠] 57 +L 0.2817,0.266887,0.7024,1.411017 +L 0.7024,1.411017,1.1328,2.55506 +L 1.1328,2.55506,1.5601,3.699109 +L 2.6007,0,3.3677,0.713274 +L 3.3677,0.713274,4.1519,1.409589 +L 4.1519,1.409589,4.9473,2.097449 +L 4.9473,2.097449,4.5691,2.473174 +L 4.5691,2.473174,3.9103,2.611515 +L 3.9103,2.611515,2.4112,2.631392 +L 7.0485,0,6.4811,0.533867 +L 6.4811,0.533867,5.9277,1.067739 +L 5.9277,1.067739,5.3746,1.601682 +L 5.3746,2.631392,5.0734,3.046608 +L 5.0734,3.046608,4.961,3.461905 +L 4.961,3.461905,4.9473,4.232992 +L 4.9473,4.232992,4.3691,4.232992 +L 4.3691,4.232992,3.7985,4.232992 +L 3.7985,4.232992,3.2378,4.232992 +L 3.2378,4.232992,3.2378,4.956155 +L 3.2378,4.956155,3.2378,5.67089 +L 3.2378,5.67089,3.2378,6.368716 +L 3.2378,6.368716,3.5148,6.368716 +L 3.5148,6.368716,3.7985,6.368716 +L 3.7985,6.368716,4.0924,6.368716 +L 4.0924,6.368716,3.8581,7.655347 +L 3.8581,7.655347,3.2553,7.967508 +L 3.2553,7.967508,2.4112,7.9322 +L 5.8019,2.631392,6.3518,2.631392 +L 6.3518,2.631392,6.9084,2.631392 +L 6.9084,2.631392,7.4796,2.631392 +L 5.3746,4.232992,5.8019,4.232992 +L 5.8019,4.232992,6.2292,4.232992 +L 6.2292,4.232992,6.6562,4.232992 +L 6.6562,4.232992,6.6562,4.603152 +L 6.6562,4.603152,6.6562,4.956155 +L 6.6562,4.956155,6.6562,5.300796 +L 6.6562,5.300796,5.651,5.300796 +L 5.651,5.300796,4.6528,5.300796 +L 4.6528,5.300796,3.6651,5.300796 +L 1.1328,5.834768,0.8351,6.177952 +L 0.8351,6.177952,0.5553,6.52116 +L 0.5553,6.52116,0.2817,6.86446 +L 6.6562,6.101654,5.9312,6.20484 +L 5.9312,6.20484,5.2237,6.290972 +L 5.2237,6.290972,4.5236,6.368716 +L 5.8019,7.131347,5.2622,7.734519 +L 5.2622,7.734519,4.6286,8.218941 +L 4.6286,8.218941,4.0924,8.999922 +L 1.5601,7.9322,1.2628,8.302184 +L 1.2628,8.302184,0.9826,8.655368 +L 0.9826,8.655368,0.7024,8.999922 +L 6.2292,7.9322,6.0748,8.302184 +L 6.0748,8.302184,5.9312,8.655368 +L 5.9312,8.655368,5.8019,8.999922 +L 6.6562,7.9322,6.9332,7.9322 +L 6.9332,7.9322,7.2026,7.9322 +L 7.2026,7.9322,7.4796,7.9322 + +[爆] 63 +L 0.3083,0.266887,1.0476,3.25137 +L 1.0476,3.25137,1.2017,6.015526 +L 1.2017,6.015526,1.1593,8.999922 +L 4.9805,0.266887,4.7634,0.533867 +L 4.7634,0.533867,4.5501,0.800841 +L 4.5501,0.800841,4.3399,1.067739 +L 4.3399,1.067739,3.9718,0.903944 +L 3.9718,0.903944,3.6149,0.723092 +L 3.6149,0.723092,3.2717,0.533867 +L 6.2277,0.533867,5.8039,0.903944 +L 5.8039,0.903944,5.3833,1.25703 +L 5.3833,1.25703,4.9805,1.601682 +L 4.9805,1.601682,4.9805,1.944884 +L 4.9805,1.944884,4.9805,2.288097 +L 4.9805,2.288097,4.9805,2.631392 +L 1.9859,1.334719,1.8357,1.600243 +L 1.8357,1.600243,1.6921,1.857328 +L 1.6921,1.857328,1.5621,2.097449 +L 2.8405,1.601682,3.2717,2.134186 +L 3.2717,2.134186,3.6955,2.658197 +L 3.6955,2.658197,4.1228,3.165154 +L 4.1228,3.165154,3.776,3.541017 +L 3.776,3.541017,3.3347,3.679331 +L 3.3347,3.679331,2.4171,3.699109 +L 6.2277,1.601682,6.357,1.781024 +L 6.357,1.781024,6.5041,1.943456 +L 6.5041,1.943456,6.655,2.097449 +L 6.655,2.097449,5.4572,3.487249 +L 5.4572,3.487249,4.0842,4.750036 +L 4.0842,4.750036,2.8405,5.300796 +L 6.2277,3.699109,5.3623,5.052254 +L 5.3623,5.052254,4.4065,5.87996 +L 4.4065,5.87996,3.2717,6.368716 +L 3.2717,6.368716,3.2717,7.081908 +L 3.2717,7.081908,3.2717,7.778217 +L 3.2717,7.778217,3.2717,8.466083 +L 3.2717,8.466083,4.3956,8.466083 +L 4.3956,8.466083,5.5269,8.466083 +L 5.5269,8.466083,6.655,8.466083 +L 6.655,8.466083,6.655,7.778217 +L 6.655,7.778217,6.655,7.081908 +L 6.655,7.081908,6.655,6.368716 +L 6.655,6.368716,6.357,6.290972 +L 6.357,6.290972,6.0768,6.20484 +L 6.0768,6.20484,5.8004,6.101654 +L 5.8004,6.101654,6.1328,5.538126 +L 6.1328,5.538126,6.4659,5.330485 +L 6.4659,5.330485,7.0855,5.300796 +L 6.655,3.699109,6.9317,3.699109 +L 6.9317,3.699109,7.2154,3.699109 +L 7.2154,3.699109,7.5058,3.699109 +L 0.3083,5.300796,0.3083,5.833246 +L 0.3083,5.833246,0.3083,6.357316 +L 0.3083,6.357316,0.3083,6.86446 +L 1.5621,6.368716,1.8357,6.711824 +L 1.8357,6.711824,2.1159,7.055043 +L 2.1159,7.055043,2.4171,7.398246 +L 4.5501,6.368716,4.8268,6.368716 +L 4.8268,6.368716,5.0965,6.368716 +L 5.0965,6.368716,5.3766,6.368716 +L 3.6955,7.398246,4.5291,7.398246 +L 4.5291,7.398246,5.3766,7.398246 +L 5.3766,7.398246,6.2277,7.398246 + +[縛] 69 +L 1.5925,0,1.5925,1.600243 +L 1.5925,1.600243,1.5925,3.192134 +L 1.5925,3.192134,1.5925,4.766952 +L 1.5925,4.766952,1.1652,4.766952 +L 1.1652,4.766952,0.734,4.766952 +L 0.734,4.766952,0.3141,4.766952 +L 5.4063,0,5.6834,0 +L 5.6834,0,5.9636,0 +L 5.9636,0,6.2574,0 +L 6.2574,0,5.9737,2.292311 +L 5.9737,2.292311,5.0284,2.754268 +L 5.0284,2.754268,3.2978,2.631392 +L 3.2978,2.631392,3.1511,2.288097 +L 3.1511,2.288097,3.004,1.944884 +L 3.004,1.944884,2.874,1.601682 +L 0.3141,1.334719,0.4402,1.944884 +L 0.4402,1.944884,0.5834,2.55506 +L 0.5834,2.55506,0.734,3.165154 +L 6.6847,2.631392,6.3839,3.046608 +L 6.3839,3.046608,6.2714,3.461905 +L 6.2714,3.461905,6.2574,4.232992 +L 6.2574,4.232992,5.4063,4.232992 +L 5.4063,4.232992,4.5587,4.232992 +L 4.5587,4.232992,3.7286,4.232992 +L 3.7286,4.232992,3.7286,4.956155 +L 3.7286,4.956155,3.7286,5.67089 +L 3.7286,5.67089,3.7286,6.368716 +L 3.7286,6.368716,4.6256,6.396938 +L 4.6256,6.396938,5.0564,6.594613 +L 5.0564,6.594613,5.4063,7.131347 +L 5.4063,7.131347,5.0386,7.694892 +L 5.0386,7.694892,4.4992,7.902527 +L 4.4992,7.902527,3.2978,7.9322 +L 2.874,4.499972,2.7238,4.766952 +L 2.7238,4.766952,2.5728,5.033844 +L 2.5728,5.033844,2.4436,5.300796 +L 2.4436,5.300796,2.2926,5.13703 +L 2.2926,5.13703,2.149,4.956155 +L 2.149,4.956155,2.0198,4.766952 +L 6.8987,4.232992,6.9614,4.603152 +L 6.9614,4.603152,7.0318,4.956155 +L 7.0318,4.956155,7.1124,5.300796 +L 7.1124,5.300796,6.1072,5.300796 +L 6.1072,5.300796,5.1051,5.300796 +L 5.1051,5.300796,4.1248,5.300796 +L 1.1652,5.300796,1.2944,5.567787 +L 1.2944,5.567787,1.4415,5.834768 +L 1.4415,5.834768,1.5925,6.101654 +L 1.5925,6.101654,1.2944,6.44485 +L 1.2944,6.44485,1.0142,6.788162 +L 1.0142,6.788162,0.734,7.131347 +L 0.734,7.131347,1.0142,7.768317 +L 1.0142,7.768317,1.2944,8.388393 +L 1.2944,8.388393,1.5925,8.999922 +L 5.4063,5.834768,5.7531,6.190638 +L 5.7531,6.190638,6.1979,6.190638 +L 6.1979,6.190638,7.1124,5.834768 +L 2.0198,6.86446,2.149,7.234467 +L 2.149,7.234467,2.2926,7.58757 +L 2.2926,7.58757,2.4436,7.9322 +L 5.8336,7.9322,5.6834,8.302184 +L 5.6834,8.302184,5.5363,8.655368 +L 5.5363,8.655368,5.4063,8.999922 +L 6.2574,7.9322,6.5341,8.035292 +L 6.5341,8.035292,6.8147,8.121501 +L 6.8147,8.121501,7.1124,8.199184 +L 7.1124,8.199184,6.9614,8.466083 +L 6.9614,8.466083,6.8147,8.733133 +L 6.8147,8.733133,6.6847,8.999922 + +[肌] 33 +L 0.3403,0.266887,0.6418,1.104504 +L 0.6418,1.104504,0.7536,3.230234 +L 0.7536,3.230234,0.7711,8.466083 +L 0.7711,8.466083,1.3175,8.466083 +L 1.3175,8.466083,1.8747,8.466083 +L 1.8747,8.466083,2.4452,8.466083 +L 2.4452,8.466083,2.4452,5.64401 +L 2.4452,5.64401,2.4452,2.822046 +L 2.4452,2.822046,2.4452,0 +L 2.4452,0,2.1721,0 +L 2.1721,0,1.8957,0 +L 1.8957,0,1.6222,0 +L 3.2963,0.266887,3.9933,3.036713 +L 3.9933,3.036713,4.172,5.620001 +L 4.172,5.620001,4.1544,8.466083 +L 4.1544,8.466083,4.8549,8.466083 +L 4.8549,8.466083,5.5628,8.466083 +L 5.5628,8.466083,6.2913,8.466083 +L 6.2913,8.466083,6.2913,5.64401 +L 6.2913,5.64401,6.2913,2.822046 +L 6.2913,2.822046,6.2913,0 +L 6.2913,0,6.6972,0 +L 6.6972,0,7.1179,0 +L 7.1179,0,7.5382,0 +L 7.5382,0,7.5382,0.533867 +L 7.5382,0.533867,7.5382,1.067739 +L 7.5382,1.067739,7.5382,1.601682 +L 1.1914,3.699109,1.4719,3.699109 +L 1.4719,3.699109,1.7521,3.699109 +L 1.7521,3.699109,2.0495,3.699109 +L 1.1914,6.368716,1.4719,6.368716 +L 1.4719,6.368716,1.7521,6.368716 +L 1.7521,6.368716,2.0495,6.368716 + +[鉢] 48 +L 0.3703,0,0.7804,0 +L 0.7804,0,1.1934,0 +L 1.1934,0,1.6207,0 +L 1.6207,0,1.6977,2.269742 +L 1.6977,2.269742,1.4946,4.047986 +L 1.4946,4.047986,0.3703,4.766952 +L 5.4352,0,5.3581,1.391168 +L 5.3581,1.391168,4.997,1.977418 +L 4.997,1.977418,4.1848,2.097449 +L 2.262,0.533867,2.4753,0.723092 +L 2.4753,0.723092,2.6889,0.903944 +L 2.6889,0.903944,2.9029,1.067739 +L 0.7979,1.868667,0.647,2.314984 +L 0.647,2.314984,0.5002,2.744302 +L 0.5002,2.744302,0.3703,3.165154 +L 2.4753,2.364401,2.6052,2.820628 +L 2.6052,2.820628,2.752,3.268258 +L 2.752,3.268258,2.9029,3.699109 +L 5.866,2.097449,5.5469,3.185047 +L 5.5469,3.185047,5.3263,4.747174 +L 5.3263,4.747174,5.0079,5.834768 +L 5.0079,5.834768,4.4366,4.766952 +L 4.4366,4.766952,3.8832,3.699109 +L 3.8832,3.699109,3.3302,2.631392 +L 7.5748,2.631392,6.7167,4.042327 +L 6.7167,4.042327,5.866,5.453355 +L 5.866,5.453355,5.0079,6.86446 +L 5.0079,6.86446,4.5841,6.86446 +L 4.5841,6.86446,4.1638,6.86446 +L 4.1638,6.86446,3.761,6.86446 +L 2.0518,4.766952,1.7506,5.182233 +L 1.7506,5.182233,1.6382,5.597542 +L 1.6382,5.597542,1.6207,6.368716 +L 1.6207,6.368716,1.0288,6.386967 +L 1.0288,6.386967,0.7034,6.515501 +L 0.7034,6.515501,0.3703,6.86446 +L 0.3703,6.86446,0.7804,7.58757 +L 0.7804,7.58757,1.1934,8.302184 +L 1.1934,8.302184,1.6207,8.999922 +L 1.6207,8.999922,2.0518,8.466083 +L 2.0518,8.466083,2.4753,7.9322 +L 2.4753,7.9322,2.9029,7.398246 +L 5.866,6.86446,5.5613,7.299448 +L 5.5613,7.299448,5.4527,7.853083 +L 5.4527,7.853083,5.4352,8.999922 +L 6.2863,6.86446,6.7167,6.86446 +L 6.7167,6.86446,7.144,6.86446 +L 7.144,6.86446,7.5748,6.86446 + +[髪] 60 +L 2.0783,0,3.2793,0.019772 +L 3.2793,0.019772,3.8191,0.158119 +L 3.8191,0.158119,4.1833,0.533867 +L 4.1833,0.533867,3.8292,1.066376 +L 3.8292,1.066376,3.4825,1.590348 +L 3.4825,1.590348,3.1466,2.097449 +L 3.1466,2.097449,2.3547,1.590348 +L 2.3547,1.590348,1.5705,1.066376 +L 1.5705,1.066376,0.7999,0.533867 +L 5.4649,0,5.1671,0.189225 +L 5.1671,0.189225,4.8873,0.370094 +L 4.8873,0.370094,4.6138,0.533867 +L 5.8922,0,6.1692,0 +L 6.1692,0,6.4529,0 +L 6.4529,0,6.7433,0 +L 5.4649,1.067739,5.5948,1.334719 +L 5.5948,1.334719,5.7419,1.601682 +L 5.7419,1.601682,5.8922,1.868667 +L 5.8922,1.868667,5.1671,1.944884 +L 5.1671,1.944884,4.4597,2.021117 +L 4.4597,2.021117,3.7595,2.097449 +L 2.9326,2.898268,2.0783,3.001382 +L 2.0783,3.001382,1.2237,3.087521 +L 1.2237,3.087521,0.3726,3.165154 +L 3.3599,3.165154,3.3599,3.535254 +L 3.3599,3.535254,3.3599,3.888345 +L 3.3599,3.888345,3.3599,4.232992 +L 3.7595,3.165154,5.02,3.165154 +L 5.02,3.165154,6.2914,3.165154 +L 6.2914,3.165154,7.5698,3.165154 +L 0.3726,4.766952,0.9856,4.994354 +L 0.9856,4.994354,1.3215,5.340364 +L 1.3215,5.340364,1.6545,6.101654 +L 1.6545,6.101654,1.2237,6.20484 +L 1.2237,6.20484,0.7999,6.290972 +L 0.7999,6.290972,0.3726,6.368716 +L 1.8678,4.766952,2.3547,5.22314 +L 2.3547,5.22314,2.852,5.67089 +L 2.852,5.67089,3.3599,6.101654 +L 3.3599,6.101654,2.9326,6.20484 +L 2.9326,6.20484,2.5088,6.290972 +L 2.5088,6.290972,2.0783,6.368716 +L 4.6138,4.766952,5.5598,4.806496 +L 5.5598,4.806496,6.2252,5.083371 +L 6.2252,5.083371,7.1744,5.834768 +L 4.6138,6.368716,5.5598,6.406739 +L 5.5598,6.406739,6.2252,6.673724 +L 6.2252,6.673724,7.1744,7.398246 +L 1.2237,6.86446,1.2237,7.398246 +L 1.2237,7.398246,1.2237,7.9322 +L 1.2237,7.9322,1.2237,8.466083 +L 1.2237,8.466083,2.0573,8.466083 +L 2.0573,8.466083,2.9049,8.466083 +L 2.9049,8.466083,3.7595,8.466083 +L 1.6545,7.398246,2.2111,7.398246 +L 2.2111,7.398246,2.7823,7.398246 +L 2.7823,7.398246,3.3599,7.398246 +L 4.6138,7.9322,5.3146,8.302184 +L 5.3146,8.302184,6.0256,8.655368 +L 6.0256,8.655368,6.7433,8.999922 + +[伐] 36 +L 1.2569,0,1.1764,1.944884 +L 1.1764,1.944884,1.1032,3.889779 +L 1.1032,3.889779,1.0436,5.834768 +L 1.0436,5.834768,0.8296,5.67089 +L 0.8296,5.67089,0.6163,5.49012 +L 0.6163,5.49012,0.4023,5.300796 +L 7.1726,0,6.532,0.87708 +L 6.532,0.87708,5.9015,1.754236 +L 5.9015,1.754236,5.2847,2.631392 +L 5.2847,2.631392,4.4932,2.124325 +L 4.4932,2.124325,3.7086,1.600243 +L 3.7086,1.600243,2.9346,1.067739 +L 7.6037,0,7.6037,0.533867 +L 7.6037,0.533867,7.6037,1.067739 +L 7.6037,1.067739,7.6037,1.601682 +L 5.0714,3.432222,4.7702,4.055002 +L 4.7702,4.055002,4.6578,4.677945 +L 4.6578,4.677945,4.6441,5.834768 +L 4.6441,5.834768,3.9226,5.834768 +L 3.9226,5.834768,3.2116,5.834768 +L 3.2116,5.834768,2.5073,5.834768 +L 5.898,3.165154,6.1677,3.699109 +L 6.1677,3.699109,6.4514,4.232992 +L 6.4514,4.232992,6.7491,4.766952 +L 1.2569,6.635592,1.5305,7.435004 +L 1.5305,7.435004,1.8068,8.225967 +L 1.8068,8.225967,2.0768,8.999922 +L 4.6441,6.368716,4.6441,7.245697 +L 4.6441,7.245697,4.6441,8.122869 +L 4.6441,8.122869,4.6441,8.999922 +L 5.0714,6.368716,5.9015,6.368716 +L 5.9015,6.368716,6.7491,6.368716 +L 6.7491,6.368716,7.6037,6.368716 +L 6.7491,7.398246,6.4514,7.768317 +L 6.4514,7.768317,6.1677,8.121501 +L 6.1677,8.121501,5.898,8.466083 + +[罰] 45 +L 1.2554,0,1.2554,0.533867 +L 1.2554,0.533867,1.2554,1.067739 +L 1.2554,1.067739,1.2554,1.601682 +L 1.2554,1.601682,2.11,1.601682 +L 2.11,1.601682,2.965,1.601682 +L 2.965,1.601682,3.8196,1.601682 +L 3.8196,1.601682,3.8196,1.067739 +L 3.8196,1.067739,3.8196,0.533867 +L 3.8196,0.533867,3.8196,0 +L 3.8196,0,2.965,0 +L 2.965,0,2.11,0 +L 2.11,0,1.2554,0 +L 6.355,0,6.6247,0 +L 6.6247,0,6.9084,0 +L 6.9084,0,7.2061,0 +L 7.2061,0,7.2061,1.944884 +L 7.2061,1.944884,7.2061,3.889779 +L 7.2061,3.889779,7.2061,5.834768 +L 5.4972,1.601682,5.4972,2.848845 +L 5.4972,2.848845,5.4972,4.079098 +L 5.4972,4.079098,5.4972,5.300796 +L 1.2554,2.631392,2.11,2.631392 +L 2.11,2.631392,2.965,2.631392 +L 2.965,2.631392,3.8196,2.631392 +L 1.2554,3.699109,2.11,3.699109 +L 2.11,3.699109,2.965,3.699109 +L 2.965,3.699109,3.8196,3.699109 +L 0.4288,4.766952,1.8337,4.766952 +L 1.8337,4.766952,3.2413,4.766952 +L 3.2413,4.766952,4.6461,4.766952 +L 1.2554,5.834768,2.11,5.834768 +L 2.11,5.834768,2.965,5.834768 +L 2.965,5.834768,3.8196,5.834768 +L 0.8281,7.398246,0.8281,7.768317 +L 0.8281,7.768317,0.8281,8.121501 +L 0.8281,8.121501,0.8281,8.466083 +L 0.8281,8.466083,2.9439,8.466083 +L 2.9439,8.466083,5.0734,8.466083 +L 5.0734,8.466083,7.2061,8.466083 +L 7.2061,8.466083,7.2061,8.121501 +L 7.2061,8.121501,7.2061,7.768317 +L 7.2061,7.768317,7.2061,7.398246 +L 7.2061,7.398246,5.0734,7.398246 +L 5.0734,7.398246,2.9439,7.398246 +L 2.9439,7.398246,0.8281,7.398246 + +[抜] 45 +L 0.8585,0,1.1348,0 +L 1.1348,0,1.4185,0 +L 1.4185,0,1.7131,0 +L 1.7131,0,1.6987,2.622844 +L 1.6987,2.622844,1.587,3.720337 +L 1.587,3.720337,1.2893,4.232992 +L 1.2893,4.232992,0.9912,4.069192 +L 0.9912,4.069192,0.711,3.888345 +L 0.711,3.888345,0.4347,3.699109 +L 3.6076,0,4.2453,0.713274 +L 4.2453,0.713274,4.8898,1.409589 +L 4.8898,1.409589,5.5234,2.097449 +L 5.5234,2.097449,5.1031,3.001382 +L 5.1031,3.001382,4.6723,3.888345 +L 4.6723,3.888345,4.2453,4.766952 +L 4.2453,4.766952,3.6744,3.545127 +L 3.6744,3.545127,3.1207,2.314984 +L 3.1207,2.314984,2.5673,1.067739 +L 7.2046,0,6.7776,0.533867 +L 6.7776,0.533867,6.3643,1.067739 +L 6.3643,1.067739,5.9542,1.601682 +L 5.9542,2.631392,6.5566,3.797998 +L 6.5566,3.797998,6.7776,4.490061 +L 6.7776,4.490061,6.8126,5.300796 +L 6.8126,5.300796,5.9542,5.403911 +L 5.9542,5.403911,5.1031,5.49012 +L 5.1031,5.49012,4.2453,5.567787 +L 4.2453,5.567787,4.529,6.347406 +L 4.529,6.347406,4.529,6.822038 +L 4.529,6.822038,4.2453,7.398246 +L 4.2453,7.398246,3.9473,7.398246 +L 3.9473,7.398246,3.6671,7.398246 +L 3.6671,7.398246,3.3943,7.398246 +L 2.1404,4.232992,1.615,5.508454 +L 1.615,5.508454,1.422,6.47883 +L 1.422,6.47883,0.4347,6.86446 +L 2.1404,6.86446,1.8388,7.299448 +L 1.8388,7.299448,1.7267,7.853083 +L 1.7267,7.853083,1.7131,8.999922 +L 5.1031,7.398246,4.7984,7.813543 +L 4.7984,7.813543,4.6902,8.228846 +L 4.6902,8.228846,4.6723,8.999922 +L 5.5234,7.398246,6.2277,7.398246 +L 6.2277,7.398246,6.9279,7.398246 +L 6.9279,7.398246,7.6284,7.398246 + +[閥] 66 +L 0.4612,0,0.4612,2.822046 +L 0.4612,2.822046,0.4612,5.64401 +L 0.4612,5.64401,0.4612,8.466083 +L 0.4612,8.466083,1.2944,8.466083 +L 1.2944,8.466083,2.142,8.466083 +L 2.142,8.466083,2.9966,8.466083 +L 2.9966,8.466083,2.9966,7.778217 +L 2.9966,7.778217,2.9966,7.081908 +L 2.9966,7.081908,2.9966,6.368716 +L 2.9966,6.368716,2.2926,6.368716 +L 2.2926,6.368716,1.5925,6.368716 +L 1.5925,6.368716,0.8917,6.368716 +L 6.3835,0,6.6567,0 +L 6.6567,0,6.9372,0 +L 6.9372,0,7.2349,0 +L 7.2349,0,7.2349,2.134186 +L 7.2349,2.134186,7.2349,4.259955 +L 7.2349,4.259955,7.2349,6.368716 +L 7.2349,6.368716,6.3835,6.368716 +L 6.3835,6.368716,5.5363,6.368716 +L 5.5363,6.368716,4.7023,6.368716 +L 4.7023,6.368716,4.7023,7.081908 +L 4.7023,7.081908,4.7023,7.778217 +L 4.7023,7.778217,4.7023,8.466083 +L 4.7023,8.466083,5.5363,8.466083 +L 5.5363,8.466083,6.3835,8.466083 +L 6.3835,8.466083,7.2349,8.466083 +L 7.2349,8.466083,7.2349,7.9322 +L 7.2349,7.9322,7.2349,7.398246 +L 7.2349,7.398246,7.2349,6.86446 +L 2.142,0.533867,2.0583,1.600243 +L 2.0583,1.600243,1.9879,2.658197 +L 1.9879,2.658197,1.9284,3.699109 +L 1.9284,3.699109,1.7151,3.535254 +L 1.7151,3.535254,1.5084,3.354473 +L 1.5084,3.354473,1.3154,3.165154 +L 3.2071,1.067739,3.701,1.411017 +L 3.701,1.411017,4.1945,1.754236 +L 4.1945,1.754236,4.7023,2.097449 +L 4.7023,2.097449,4.4015,2.512653 +L 4.4015,2.512653,4.289,2.927929 +L 4.289,2.927929,4.275,3.699109 +L 4.275,3.699109,3.8512,3.699109 +L 3.8512,3.699109,3.4239,3.699109 +L 3.4239,3.699109,2.9966,3.699109 +L 5.9527,1.067739,5.9527,1.411017 +L 5.9527,1.411017,5.9527,1.754236 +L 5.9527,1.754236,5.9527,2.097449 +L 2.142,4.232992,2.2716,4.603152 +L 2.2716,4.603152,2.4152,4.956155 +L 2.4152,4.956155,2.5662,5.300796 +L 4.275,4.232992,4.275,4.603152 +L 4.275,4.603152,4.275,4.956155 +L 4.275,4.956155,4.275,5.300796 +L 4.7023,4.232992,5.1125,4.336079 +L 5.1125,4.336079,5.5289,4.422283 +L 5.5289,4.422283,5.9527,4.499972 +L 5.9527,4.499972,5.8059,4.766952 +L 5.8059,4.766952,5.6588,5.033844 +L 5.6588,5.033844,5.5289,5.300796 +L 0.8917,7.398246,1.4415,7.398246 +L 1.4415,7.398246,1.9953,7.398246 +L 1.9953,7.398246,2.5662,7.398246 +L 5.13,7.398246,5.6834,7.398246 +L 5.6834,7.398246,6.2364,7.398246 +L 6.2364,7.398246,6.8073,7.398246 + +[伴] 30 +L 1.3139,0,1.2369,1.944884 +L 1.2369,1.944884,1.1672,3.889779 +L 1.1672,3.889779,1.1041,5.834768 +L 1.1041,5.834768,0.8901,5.67089 +L 0.8901,5.67089,0.6804,5.49012 +L 0.6804,5.49012,0.4628,5.300796 +L 5.1355,0,4.9919,2.51551 +L 4.9919,2.51551,4.2844,3.192134 +L 4.2844,3.192134,2.5997,3.165154 +L 5.5558,3.165154,4.8199,4.772589 +L 4.8199,4.772589,4.6168,5.600239 +L 4.6168,5.600239,3.0231,5.834768 +L 5.9866,3.165154,6.5431,3.165154 +L 6.5431,3.165154,7.1144,3.165154 +L 7.1144,3.165154,7.6919,3.165154 +L 5.5558,5.834768,5.2546,6.30786 +L 5.2546,6.30786,5.1495,7.12848 +L 5.1495,7.12848,5.1355,8.999922 +L 5.9866,5.834768,6.4135,5.834768 +L 6.4135,5.834768,6.8408,5.834768 +L 6.8408,5.834768,7.2646,5.834768 +L 1.3139,6.635592,1.591,7.435004 +L 1.591,7.435004,1.8747,8.225967 +L 1.8747,8.225967,2.172,8.999922 +L 3.8816,7.131347,3.7306,7.58757 +L 3.7306,7.58757,3.58,8.035292 +L 3.58,8.035292,3.4543,8.466083 +L 6.4135,7.131347,6.5431,7.58757 +L 6.5431,7.58757,6.6867,8.035292 +L 6.6867,8.035292,6.8408,8.466083 + +[帆] 30 +L 1.7783,0,1.9219,2.782408 +L 1.9219,2.782408,1.7891,5.912434 +L 1.7891,5.912434,0.4929,7.398246 +L 0.4929,7.398246,0.4929,5.823455 +L 0.4929,5.823455,0.4929,4.231629 +L 0.4929,4.231629,0.4929,2.631392 +L 3.0255,0,4.188,2.754268 +L 4.188,2.754268,4.3879,5.381337 +L 4.3879,5.381337,4.3039,8.466083 +L 4.3039,8.466083,5.0079,8.466083 +L 5.0079,8.466083,5.708,8.466083 +L 5.708,8.466083,6.4089,8.466083 +L 6.4089,8.466083,6.4089,5.64401 +L 6.4089,5.64401,6.4089,2.822046 +L 6.4089,2.822046,6.4089,0 +L 6.4089,0,6.8393,0 +L 6.8393,0,7.2666,0 +L 7.2666,0,7.6939,0 +L 7.6939,0,7.6939,0.533867 +L 7.6939,0.533867,7.6939,1.067739 +L 7.6939,1.067739,7.6939,1.601682 +L 3.0255,2.631392,3.0255,4.231629 +L 3.0255,4.231629,3.0255,5.823455 +L 3.0255,5.823455,3.0255,7.398246 +L 3.0255,7.398246,2.104,7.584761 +L 2.104,7.584761,1.7993,8.127166 +L 1.7993,8.127166,1.7783,8.999922 +L 5.5924,4.232992,5.5753,5.004265 +L 5.5753,5.004265,5.4628,5.419469 +L 5.4628,5.419469,5.1616,5.834768 + +[搬] 69 +L 0.5264,0,0.7999,0 +L 0.7999,0,1.0728,0 +L 1.0728,0,1.3463,0 +L 1.3463,0,1.3463,1.411017 +L 1.3463,1.411017,1.3463,2.822046 +L 1.3463,2.822046,1.3463,4.232992 +L 1.3463,4.232992,1.0728,4.232992 +L 1.0728,4.232992,0.7999,4.232992 +L 0.7999,4.232992,0.5264,4.232992 +L 2.2009,0.266887,2.5056,0.927953 +L 2.5056,0.927953,2.6174,1.817778 +L 2.6174,1.817778,2.6314,3.699109 +L 2.6314,3.699109,1.7207,4.765496 +L 1.7207,4.765496,1.4615,5.594663 +L 1.4615,5.594663,1.3463,6.86446 +L 1.3463,6.86446,1.0728,6.86446 +L 1.0728,6.86446,0.7999,6.86446 +L 0.7999,6.86446,0.5264,6.86446 +L 3.4825,0,3.7595,0 +L 3.7595,0,4.0432,0 +L 4.0432,0,4.3409,0 +L 4.3409,0,4.3234,2.998602 +L 4.3234,2.998602,4.2145,4.234431 +L 4.2145,4.234431,3.9098,4.766952 +L 3.9098,4.766952,3.6124,4.293754 +L 3.6124,4.293754,3.5,3.473239 +L 3.5,3.473239,3.4825,1.601682 +L 5.1636,0,5.5874,0.533867 +L 5.5874,0.533867,6.0147,1.067739 +L 6.0147,1.067739,6.442,1.601682 +L 6.442,1.601682,5.3037,3.997096 +L 5.3037,3.997096,4.5861,5.587548 +L 4.5861,5.587548,4.3409,7.9322 +L 4.3409,7.9322,3.7595,7.9322 +L 3.7595,7.9322,3.1848,7.9322 +L 3.1848,7.9322,2.6314,7.9322 +L 2.6314,7.9322,2.6457,5.684999 +L 2.6457,5.684999,2.7575,4.725946 +L 2.7575,4.725946,3.0552,4.232992 +L 7.7243,0,7.4262,0.370094 +L 7.4262,0.370094,7.146,0.723092 +L 7.146,0.723092,6.8732,1.067739 +L 6.8732,2.364401,7.0024,3.001382 +L 7.0024,3.001382,7.146,3.621458 +L 7.146,3.621458,7.297,4.232992 +L 7.297,4.232992,6.8732,4.232992 +L 6.8732,4.232992,6.442,4.232992 +L 6.442,4.232992,6.0147,4.232992 +L 3.4825,5.834768,3.4825,6.177952 +L 3.4825,6.177952,3.4825,6.52116 +L 3.4825,6.52116,3.4825,6.86446 +L 5.1636,6.101654,5.4617,6.697711 +L 5.4617,6.697711,5.5734,7.31069 +L 5.5734,7.31069,5.5874,8.466083 +L 5.5874,8.466083,6.0147,8.466083 +L 6.0147,8.466083,6.442,8.466083 +L 6.442,8.466083,6.8732,8.466083 +L 6.8732,8.466083,6.8732,7.588992 +L 6.8732,7.588992,6.8732,6.711824 +L 6.8732,6.711824,6.8732,5.834768 +L 6.8732,5.834768,7.146,5.834768 +L 7.146,5.834768,7.4262,5.834768 +L 7.4262,5.834768,7.7243,5.834768 +L 7.7243,5.834768,7.7243,6.177952 +L 7.7243,6.177952,7.7243,6.52116 +L 7.7243,6.52116,7.7243,6.86446 +L 1.3463,7.398246,1.3463,7.9322 +L 1.3463,7.9322,1.3463,8.466083 +L 1.3463,8.466083,1.3463,8.999922 + +[畔] 45 +L 5.6213,0,5.4777,2.51551 +L 5.4777,2.51551,4.7737,3.192134 +L 4.7737,3.192134,3.089,3.165154 +L 3.089,3.165154,3.089,2.820628 +L 3.089,2.820628,3.089,2.467521 +L 3.089,2.467521,3.089,2.097449 +L 3.089,2.097449,2.2344,2.097449 +L 2.2344,2.097449,1.3795,2.097449 +L 1.3795,2.097449,0.5249,2.097449 +L 0.5249,2.097449,0.5249,4.231629 +L 0.5249,4.231629,0.5249,6.357316 +L 0.5249,6.357316,0.5249,8.466083 +L 0.5249,8.466083,1.3795,8.466083 +L 1.3795,8.466083,2.2344,8.466083 +L 2.2344,8.466083,3.089,8.466083 +L 3.089,8.466083,3.089,6.89126 +L 3.089,6.89126,3.089,5.299456 +L 3.089,5.299456,3.089,3.699109 +L 1.8033,2.631392,1.8033,3.354473 +L 1.8033,3.354473,1.8033,4.069192 +L 1.8033,4.069192,1.8033,4.766952 +L 1.8033,4.766952,1.5094,4.956155 +L 1.5094,4.956155,1.2257,5.13703 +L 1.2257,5.13703,0.9522,5.300796 +L 6.0451,3.165154,5.4493,4.569167 +L 5.4493,4.569167,5.236,5.498564 +L 5.236,5.498564,3.9156,5.834768 +L 6.4724,3.165154,6.8787,3.165154 +L 6.8787,3.165154,7.299,3.165154 +L 7.299,3.165154,7.7263,3.165154 +L 2.2344,5.300796,1.9294,5.754205 +L 1.9294,5.754205,1.8208,6.43639 +L 1.8208,6.43639,1.8033,7.9322 +L 6.0451,5.834768,5.7439,6.30786 +L 5.7439,6.30786,5.6388,7.12848 +L 5.6388,7.12848,5.6213,8.999922 +L 6.4724,5.834768,6.7491,5.834768 +L 6.7491,5.834768,7.0328,5.834768 +L 7.0328,5.834768,7.3302,5.834768 +L 4.3356,7.665214,4.1853,7.9322 +L 4.1853,7.9322,4.0417,8.199184 +L 4.0417,8.199184,3.9156,8.466083 +L 6.8997,7.398246,7.0328,7.768317 +L 7.0328,7.768317,7.1764,8.121501 +L 7.1764,8.121501,7.3302,8.466083 + +[繁] 66 +L 0.7686,0,1.2589,0.370094 +L 1.2589,0.370094,1.7457,0.723092 +L 1.7457,0.723092,2.2326,1.067739 +L 3.9421,0,3.4693,1.984456 +L 3.4693,1.984456,2.2434,2.274065 +L 2.2434,2.274065,0.5588,2.097449 +L 6.8982,0,6.4744,0.370094 +L 6.4744,0.370094,6.0538,0.723092 +L 6.0538,0.723092,5.651,1.067739 +L 7.3287,1.601682,6.355,1.970332 +L 6.355,1.970332,4.9123,2.237218 +L 4.9123,2.237218,3.9421,2.631392 +L 3.9421,2.631392,4.3726,3.165154 +L 4.3726,3.165154,4.7932,3.699109 +L 4.7932,3.699109,5.2237,4.232992 +L 5.2237,4.232992,4.7932,4.603152 +L 4.7932,4.603152,4.3726,4.956155 +L 4.3726,4.956155,3.9421,5.300796 +L 3.9421,5.300796,3.5148,4.689263 +L 3.5148,4.689263,3.0837,4.069192 +L 3.0837,4.069192,2.6637,3.432222 +L 2.6637,3.432222,2.793,3.165154 +L 2.793,3.165154,2.9366,2.898268 +L 2.9366,2.898268,3.0837,2.631392 +L 6.8982,4.766952,6.5339,5.13703 +L 6.5339,5.13703,6.1798,5.49012 +L 6.1798,5.49012,5.8331,5.834768 +L 5.8331,5.834768,5.6198,5.67089 +L 5.6198,5.67089,5.4167,5.49012 +L 5.4167,5.49012,5.2237,5.300796 +L 0.9826,5.300796,1.2663,6.796595 +L 1.2663,6.796595,1.2663,7.478796 +L 1.2663,7.478796,0.9826,7.9322 +L 0.9826,7.9322,0.8281,7.768317 +L 0.8281,7.768317,0.688,7.58757 +L 0.688,7.58757,0.5588,7.398246 +L 1.4099,5.300796,1.6827,5.300796 +L 1.6827,5.300796,1.9629,5.300796 +L 1.9629,5.300796,2.2326,5.300796 +L 2.2326,5.300796,2.089,5.67089 +L 2.089,5.67089,1.9629,6.02397 +L 1.9629,6.02397,1.8372,6.368716 +L 2.8735,5.300796,3.0837,5.567787 +L 3.0837,5.567787,3.3008,5.834768 +L 3.3008,5.834768,3.5148,6.101654 +L 3.5148,6.101654,2.8844,6.327732 +L 2.8844,6.327732,2.4497,6.663825 +L 2.4497,6.663825,1.8372,7.398246 +L 5.651,6.368716,5.3536,6.901143 +L 5.3536,6.901143,5.0734,7.425121 +L 5.0734,7.425121,4.7932,7.9322 +L 4.7932,7.9322,4.6423,7.768317 +L 4.6423,7.768317,4.4987,7.58757 +L 4.4987,7.58757,4.3726,7.398246 +L 6.0471,6.368716,6.3483,6.757055 +L 6.3483,6.757055,6.46,7.162459 +L 6.46,7.162459,6.4744,7.9322 +L 6.4744,7.9322,5.8751,7.971745 +L 5.8751,7.971745,5.5568,8.24852 +L 5.5568,8.24852,5.2237,8.999922 +L 3.5148,7.131347,3.2168,7.234467 +L 3.2168,7.234467,2.9366,7.320584 +L 2.9366,7.320584,2.6637,7.398246 +L 1.4099,8.466083,2.2434,8.466083 +L 2.2434,8.466083,3.091,8.466083 +L 3.091,8.466083,3.9421,8.466083 + +[般] 54 +L 0.5849,0.266887,0.9912,2.709059 +L 0.9912,2.709059,1.4119,6.557946 +L 1.4119,6.557946,1.8357,8.999922 +L 2.263,0,2.5396,0 +L 2.5396,0,2.8233,0 +L 2.8233,0,3.1207,0 +L 3.1207,0,3.1207,1.411017 +L 3.1207,1.411017,3.1207,2.822046 +L 3.1207,2.822046,3.1207,4.232992 +L 3.1207,4.232992,2.6304,4.588956 +L 2.6304,4.588956,2.1824,4.588956 +L 2.1824,4.588956,1.4119,4.232992 +L 4.1858,0,4.6726,0.456205 +L 4.6726,0.456205,5.1591,0.903944 +L 5.1591,0.903944,5.653,1.334719 +L 5.653,1.334719,5.0509,2.66241 +L 5.0509,2.66241,4.8303,3.413807 +L 4.8303,3.413807,4.7949,4.232992 +L 4.7949,4.232992,5.4992,4.232992 +L 5.4992,4.232992,6.2067,4.232992 +L 6.2067,4.232992,6.9317,4.232992 +L 6.9317,4.232992,6.6372,3.278245 +L 6.6372,3.278245,6.3535,2.314984 +L 6.3535,2.314984,6.0768,1.334719 +L 6.0768,1.334719,6.6372,0.903944 +L 6.6372,0.903944,7.2046,0.456205 +L 7.2046,0.456205,7.7863,0 +L 1.8357,1.601682,1.8357,2.134186 +L 1.8357,2.134186,1.8357,2.658197 +L 1.8357,2.658197,1.8357,3.165154 +L 3.541,4.766952,3.2471,5.240133 +L 3.2471,5.240133,3.1347,6.060653 +L 3.1347,6.060653,3.1207,7.9322 +L 3.1207,7.9322,2.6899,7.9322 +L 2.6899,7.9322,2.263,7.9322 +L 2.263,7.9322,1.8357,7.9322 +L 3.9718,5.300796,4.6198,6.316316 +L 4.6198,6.316316,4.8019,7.221684 +L 4.8019,7.221684,4.7949,8.466083 +L 4.7949,8.466083,5.3556,8.466083 +L 5.3556,8.466083,5.9265,8.466083 +L 5.9265,8.466083,6.5041,8.466083 +L 6.5041,8.466083,6.5041,7.588992 +L 6.5041,7.588992,6.5041,6.711824 +L 6.5041,6.711824,6.5041,5.834768 +L 6.5041,5.834768,6.9317,5.834768 +L 6.9317,5.834768,7.3625,5.834768 +L 7.3625,5.834768,7.7863,5.834768 +L 7.7863,5.834768,7.7863,6.177952 +L 7.7863,6.177952,7.7863,6.52116 +L 7.7863,6.52116,7.7863,6.86446 +L 1.8357,5.834768,1.8357,6.177952 +L 1.8357,6.177952,1.8357,6.52116 +L 1.8357,6.52116,1.8357,6.86446 + +[藩] 81 +L 0.5838,0,1.0142,1.066376 +L 1.0142,1.066376,1.4415,2.124325 +L 1.4415,2.124325,1.8688,3.165154 +L 3.5465,0,3.5465,1.066376 +L 3.5465,1.066376,3.5465,2.124325 +L 3.5465,2.124325,3.5465,3.165154 +L 3.5465,3.165154,3.2702,3.165154 +L 3.2702,3.165154,2.9966,3.165154 +L 2.9966,3.165154,2.7203,3.165154 +L 3.9703,0,4.4014,0 +L 4.4014,0,4.8249,0 +L 4.8249,0,5.2525,0 +L 5.2525,0,5.1051,1.194845 +L 5.1051,1.194845,4.6711,1.576235 +L 4.6711,1.576235,3.9703,1.601682 +L 5.6798,0,6.1103,0 +L 6.1103,0,6.5344,0 +L 6.5344,0,6.9614,0 +L 6.9614,0,6.9614,0.533867 +L 6.9614,0.533867,6.9614,1.067739 +L 6.9614,1.067739,6.9614,1.601682 +L 6.9614,1.601682,6.0441,1.620021 +L 6.0441,1.620021,5.6028,1.748555 +L 5.6028,1.748555,5.2525,2.097449 +L 5.2525,2.097449,5.2525,2.467521 +L 5.2525,2.467521,5.2525,2.820628 +L 5.2525,2.820628,5.2525,3.165154 +L 5.2525,3.165154,4.8249,3.268258 +L 4.8249,3.268258,4.4014,3.354473 +L 4.4014,3.354473,3.9703,3.432222 +L 3.9703,3.432222,4.1037,3.802229 +L 4.1037,3.802229,4.2473,4.155396 +L 4.2473,4.155396,4.4014,4.499972 +L 4.4014,4.499972,3.9703,4.603152 +L 3.9703,4.603152,3.5465,4.689263 +L 3.5465,4.689263,3.1157,4.766952 +L 6.9614,2.097449,6.9614,2.467521 +L 6.9614,2.467521,6.9614,2.820628 +L 6.9614,2.820628,6.9614,3.165154 +L 6.9614,3.165154,6.5344,3.165154 +L 6.5344,3.165154,6.1103,3.165154 +L 6.1103,3.165154,5.6798,3.165154 +L 6.5344,3.699109,6.1877,4.272537 +L 6.1877,4.272537,5.746,4.549394 +L 5.746,4.549394,4.8249,4.766952 +L 1.4415,4.232992,1.1403,4.603152 +L 1.1403,4.603152,0.8605,4.956155 +L 0.8605,4.956155,0.5838,5.300796 +L 6.5344,5.033844,6.8111,5.567787 +L 6.8111,5.567787,7.084,6.101654 +L 7.084,6.101654,7.361,6.635592 +L 7.361,6.635592,6.636,6.668066 +L 6.636,6.668066,5.9947,6.48874 +L 5.9947,6.48874,5.2525,6.368716 +L 5.2525,6.368716,5.2525,6.02397 +L 5.2525,6.02397,5.2525,5.67089 +L 5.2525,5.67089,5.2525,5.300796 +L 3.9703,5.300796,3.8232,5.567787 +L 3.8232,5.567787,3.6764,5.834768 +L 3.6764,5.834768,3.5465,6.101654 +L 3.5465,6.101654,3.9703,6.20484 +L 3.9703,6.20484,4.4014,6.290972 +L 4.4014,6.290972,4.8249,6.368716 +L 1.8688,5.834768,1.5715,6.177952 +L 1.5715,6.177952,1.2913,6.52116 +L 1.2913,6.52116,1.0142,6.86446 +L 0.5838,7.9322,1.4205,7.9322 +L 1.4205,7.9322,2.2646,7.9322 +L 2.2646,7.9322,3.1157,7.9322 +L 3.1157,7.9322,3.1157,8.302184 +L 3.1157,8.302184,3.1157,8.655368 +L 3.1157,8.655368,3.1157,8.999922 +L 3.5465,7.9322,4.1037,7.9322 +L 4.1037,7.9322,4.6743,7.9322 +L 4.6743,7.9322,5.2525,7.9322 +L 5.2525,7.9322,5.2525,8.302184 +L 5.2525,8.302184,5.2525,8.655368 +L 5.2525,8.655368,5.2525,8.999922 +L 5.6798,7.9322,6.3835,7.9322 +L 6.3835,7.9322,7.084,7.9322 +L 7.084,7.9322,7.7848,7.9322 + +[販] 51 +L 0.6173,0,0.8901,0.370094 +L 0.8901,0.370094,1.1773,0.723092 +L 1.1773,0.723092,1.4719,1.067739 +L 3.1531,0,2.8515,0.370094 +L 2.8515,0.370094,2.5713,0.723092 +L 2.5713,0.723092,2.2946,1.067739 +L 4.6451,0,5.132,0.636948 +L 5.132,0.636948,5.6188,1.25703 +L 5.6188,1.25703,6.1091,1.868667 +L 6.1091,1.868667,5.5274,3.591802 +L 5.5274,3.591802,5.3141,4.620046 +L 5.3141,4.620046,5.2822,5.834768 +L 5.2822,5.834768,4.9884,5.834768 +L 4.9884,5.834768,4.7047,5.834768 +L 4.7047,5.834768,4.4311,5.834768 +L 4.4311,5.834768,4.3996,3.858689 +L 4.3996,3.858689,4.1754,2.484431 +L 4.1754,2.484431,3.5734,0.533867 +L 7.818,0,7.3907,0.636948 +L 7.3907,0.636948,6.9634,1.25703 +L 6.9634,1.25703,6.5361,1.868667 +L 6.5361,1.868667,7.1389,3.235833 +L 7.1389,3.235833,7.3595,4.264082 +L 7.3595,4.264082,7.3907,5.834768 +L 7.3907,5.834768,6.8131,5.834768 +L 6.8131,5.834768,6.2384,5.834768 +L 6.2384,5.834768,5.6783,5.834768 +L 1.0446,2.097449,1.0446,4.231629 +L 1.0446,4.231629,1.0446,6.357316 +L 1.0446,6.357316,1.0446,8.466083 +L 1.0446,8.466083,1.5945,8.466083 +L 1.5945,8.466083,2.151,8.466083 +L 2.151,8.466083,2.7223,8.466083 +L 2.7223,8.466083,2.7223,6.357316 +L 2.7223,6.357316,2.7223,4.231629 +L 2.7223,4.231629,2.7223,2.097449 +L 2.7223,2.097449,2.151,2.097449 +L 2.151,2.097449,1.5945,2.097449 +L 1.5945,2.097449,1.0446,2.097449 +L 1.4719,4.232992,1.7482,4.232992 +L 1.7482,4.232992,2.0183,4.232992 +L 2.0183,4.232992,2.2946,4.232992 +L 1.4719,6.368716,1.7482,6.368716 +L 1.7482,6.368716,2.0183,6.368716 +L 2.0183,6.368716,2.2946,6.368716 +L 4.4311,6.368716,4.4311,7.081908 +L 4.4311,7.081908,4.4311,7.778217 +L 4.4311,7.778217,4.4311,8.466083 +L 4.4311,8.466083,5.5628,8.466083 +L 5.5628,8.466083,6.6832,8.466083 +L 6.6832,8.466083,7.818,8.466083 + +[範] 72 +L 2.3215,0,2.0938,1.330483 +L 2.0938,1.330483,1.4806,1.644116 +L 1.4806,1.644116,0.6158,1.601682 +L 5.2842,0,4.983,0.571983 +L 4.983,0.571983,4.8713,2.084763 +L 4.8713,2.084763,4.8569,5.834768 +L 4.8569,5.834768,5.7115,5.834768 +L 5.7115,5.834768,6.5661,5.834768 +L 6.5661,5.834768,7.4211,5.834768 +L 7.4211,5.834768,7.4211,4.603152 +L 7.4211,4.603152,7.4211,3.354473 +L 7.4211,3.354473,7.4211,2.097449 +L 7.4211,2.097449,7.123,2.097449 +L 7.123,2.097449,6.8428,2.097449 +L 6.8428,2.097449,6.5661,2.097449 +L 5.7115,0,6.4124,0 +L 6.4124,0,7.123,0 +L 7.123,0,7.8484,0 +L 7.8484,0,7.8484,0.370094 +L 7.8484,0.370094,7.8484,0.723092 +L 7.8484,0.723092,7.8484,1.067739 +L 2.7519,1.601682,2.1219,2.326202 +L 2.1219,2.326202,1.677,2.593182 +L 1.677,2.593182,1.0431,2.631392 +L 1.0431,2.631392,1.0431,3.354473 +L 1.0431,3.354473,1.0431,4.069192 +L 1.0431,4.069192,1.0431,4.766952 +L 1.0431,4.766952,1.6627,4.786702 +L 1.6627,4.786702,1.9958,4.925147 +L 1.9958,4.925147,2.3215,5.300796 +L 2.3215,5.300796,1.9783,5.676544 +L 1.9783,5.676544,1.5366,5.815 +L 1.5366,5.815,0.6158,5.834768 +L 3.1792,1.601682,3.4563,1.601682 +L 3.4563,1.601682,3.7365,1.601682 +L 3.7365,1.601682,4.0303,1.601682 +L 2.7519,2.631392,2.3215,3.001382 +L 2.3215,3.001382,1.9008,3.354473 +L 1.9008,3.354473,1.4704,3.699109 +L 3.3932,2.631392,3.4563,3.001382 +L 3.4563,3.001382,3.526,3.354473 +L 3.526,3.354473,3.61,3.699109 +L 3.61,3.699109,2.9905,3.718892 +L 2.9905,3.718892,2.6574,3.857327 +L 2.6574,3.857327,2.3215,4.232992 +L 2.3215,4.232992,2.6574,4.588956 +L 2.6574,4.588956,2.9905,4.588956 +L 2.9905,4.588956,3.61,4.232992 +L 2.7519,5.834768,2.5456,6.368716 +L 2.5456,6.368716,2.5313,6.95338 +L 2.5313,6.95338,2.3215,7.665214 +L 2.3215,7.665214,1.4109,7.635646 +L 1.4109,7.635646,0.9625,7.42801 +L 0.9625,7.42801,0.6158,6.86446 +L 3.1792,5.834768,3.4563,5.834768 +L 3.4563,5.834768,3.7365,5.834768 +L 3.7365,5.834768,4.0303,5.834768 +L 4.0303,6.86446,4.2965,7.259816 +L 4.2965,7.259816,4.2965,7.536783 +L 4.2965,7.536783,4.0303,7.9322 +L 4.0303,7.9322,3.61,7.9322 +L 3.61,7.9322,3.1792,7.9322 +L 3.1792,7.9322,2.7519,7.9322 +L 6.5661,6.86446,6.2194,7.437878 +L 6.2194,7.437878,5.7746,7.714653 +L 5.7746,7.714653,4.8569,7.9322 +L 4.8569,7.9322,4.8569,8.302184 +L 4.8569,8.302184,4.8569,8.655368 +L 4.8569,8.655368,4.8569,8.999922 +L 6.5661,7.9322,6.9938,7.9322 +L 6.9938,7.9322,7.4211,7.9322 +L 7.4211,7.9322,7.8484,7.9322 + +[煩] 51 +L 0.649,0,1.7277,3.045251 +L 1.7277,3.045251,1.9659,5.776801 +L 1.9659,5.776801,1.9274,8.999922 +L 3.819,0,4.1658,0.370094 +L 4.1658,0.370094,4.5265,0.723092 +L 4.5265,0.723092,4.8908,1.067739 +L 7.8469,0,7.5558,0.370094 +L 7.5558,0.370094,7.2686,0.723092 +L 7.2686,0.723092,6.9958,1.067739 +L 2.7504,1.334719,2.6103,1.600243 +L 2.6103,1.600243,2.4811,1.857328 +L 2.4811,1.857328,2.3585,2.097449 +L 4.4596,2.097449,4.4596,3.697768 +L 4.4596,3.697768,4.4596,5.289567 +L 4.4596,5.289567,4.4596,6.86446 +L 4.4596,6.86446,5.0796,7.091814 +L 5.0796,7.091814,5.4088,7.437878 +L 5.4088,7.437878,5.7419,8.199184 +L 5.7419,8.199184,5.1636,8.302184 +L 5.1636,8.302184,4.5927,8.388393 +L 4.5927,8.388393,4.0323,8.466083 +L 4.8908,2.097449,5.7209,2.097449 +L 5.7209,2.097449,6.5646,2.097449 +L 6.5646,2.097449,7.4157,2.097449 +L 7.4157,2.097449,7.4157,2.631392 +L 7.4157,2.631392,7.4157,3.165154 +L 7.4157,3.165154,7.4157,3.699109 +L 7.4157,3.699109,6.5646,3.699109 +L 6.5646,3.699109,5.7209,3.699109 +L 5.7209,3.699109,4.8908,3.699109 +L 7.4157,4.232992,7.4157,4.603152 +L 7.4157,4.603152,7.4157,4.956155 +L 7.4157,4.956155,7.4157,5.300796 +L 7.4157,5.300796,6.5646,5.300796 +L 6.5646,5.300796,5.7209,5.300796 +L 5.7209,5.300796,4.8908,5.300796 +L 0.649,5.033844,0.7789,5.64401 +L 0.7789,5.64401,0.9225,6.254181 +L 0.9225,6.254181,1.0763,6.86446 +L 2.3585,5.834768,2.6314,6.177952 +L 2.6314,6.177952,2.9049,6.52116 +L 2.9049,6.52116,3.1812,6.86446 +L 7.4157,5.834768,7.4157,6.177952 +L 7.4157,6.177952,7.4157,6.52116 +L 7.4157,6.52116,7.4157,6.86446 +L 7.4157,6.86446,6.8522,6.86446 +L 6.8522,6.86446,6.2949,6.86446 +L 6.2949,6.86446,5.7419,6.86446 +L 6.1692,8.466083,6.7187,8.466083 +L 6.7187,8.466083,7.276,8.466083 +L 7.276,8.466083,7.8469,8.466083 + +[頒] 57 +L 4.276,0,4.6126,0.370094 +L 4.6126,0.370094,4.959,0.723092 +L 4.959,0.723092,5.3166,1.067739 +L 7.88,0,7.5827,0.370094 +L 7.5827,0.370094,7.299,0.723092 +L 7.299,0.723092,7.0219,1.067739 +L 0.6793,0.533867,1.4919,2.012678 +L 1.4919,2.012678,1.8488,3.161028 +L 1.8488,3.161028,1.9332,4.766952 +L 1.9332,4.766952,1.3308,4.786702 +L 1.3308,4.786702,1.0086,4.925147 +L 1.0086,4.925147,0.6793,5.300796 +L 0.6793,5.300796,1.1133,6.30786 +L 1.1133,6.30786,1.3308,7.12848 +L 1.3308,7.12848,1.5021,8.466083 +L 2.5672,0.533867,3.3902,1.944884 +L 3.3902,1.944884,3.6281,3.101612 +L 3.6281,3.101612,3.6389,4.766952 +L 3.6389,4.766952,3.2081,4.766952 +L 3.2081,4.766952,2.7843,4.766952 +L 2.7843,4.766952,2.3532,4.766952 +L 4.917,2.097449,4.917,3.697768 +L 4.917,3.697768,4.917,5.289567 +L 4.917,5.289567,4.917,6.86446 +L 4.917,6.86446,5.5124,7.091814 +L 5.5124,7.091814,5.8385,7.437878 +L 5.8385,7.437878,6.1712,8.199184 +L 6.1712,8.199184,5.6038,8.302184 +L 5.6038,8.302184,5.043,8.388393 +L 5.043,8.388393,4.49,8.466083 +L 5.3166,2.097449,6.0167,2.097449 +L 6.0167,2.097449,6.7242,2.097449 +L 6.7242,2.097449,7.4527,2.097449 +L 7.4527,2.097449,7.4527,2.631392 +L 7.4527,2.631392,7.4527,3.165154 +L 7.4527,3.165154,7.4527,3.699109 +L 7.4527,3.699109,6.7242,3.699109 +L 6.7242,3.699109,6.0167,3.699109 +L 6.0167,3.699109,5.3166,3.699109 +L 7.4527,4.232992,7.4527,4.603152 +L 7.4527,4.603152,7.4527,4.956155 +L 7.4527,4.956155,7.4527,5.300796 +L 7.4527,5.300796,6.7242,5.300796 +L 6.7242,5.300796,6.0167,5.300796 +L 6.0167,5.300796,5.3166,5.300796 +L 4.0627,5.300796,3.6389,6.548041 +L 3.6389,6.548041,3.2081,7.778217 +L 3.2081,7.778217,2.7843,8.999922 +L 7.4527,5.834768,7.4527,6.177952 +L 7.4527,6.177952,7.4527,6.52116 +L 7.4527,6.52116,7.4527,6.86446 +L 7.4527,6.86446,7.0219,6.86446 +L 7.0219,6.86446,6.5981,6.86446 +L 6.5981,6.86446,6.1712,6.86446 +L 6.5981,8.466083,7.0219,8.466083 +L 7.0219,8.466083,7.4527,8.466083 +L 7.4527,8.466083,7.88,8.466083 + +[盤] 93 +L 0.6813,0,1.1016,0 +L 1.1016,0,1.5324,0 +L 1.5324,0,1.9597,0 +L 1.9597,0,1.9597,0.713274 +L 1.9597,0.713274,1.9597,1.409589 +L 1.9597,1.409589,1.9597,2.097449 +L 1.9597,2.097449,3.5183,2.097449 +L 3.5183,2.097449,5.0699,2.097449 +L 5.0699,2.097449,6.6285,2.097449 +L 6.6285,2.097449,6.6285,1.409589 +L 6.6285,1.409589,6.6285,0.713274 +L 6.6285,0.713274,6.6285,0 +L 6.6285,0,7.0348,0 +L 7.0348,0,7.4547,0 +L 7.4547,0,7.8785,0 +L 2.3902,0,2.814,0 +L 2.814,0,3.2413,0 +L 3.2413,0,3.6686,0 +L 3.6686,0,3.6686,0.533867 +L 3.6686,0.533867,3.6686,1.067739 +L 3.6686,1.067739,3.6686,1.601682 +L 4.0647,0,4.3414,0 +L 4.3414,0,4.6212,0 +L 4.6212,0,4.9225,0 +L 4.9225,0,4.9225,0.533867 +L 4.9225,0.533867,4.9225,1.067739 +L 4.9225,1.067739,4.9225,1.601682 +L 5.3463,0,5.6233,0 +L 5.6233,0,5.9035,0 +L 5.9035,0,6.2009,0 +L 0.6813,3.165154,0.9542,3.802229 +L 0.9542,3.802229,1.2379,4.422283 +L 1.2379,4.422283,1.5324,5.033844 +L 1.5324,5.033844,1.2379,5.300796 +L 1.2379,5.300796,0.9542,5.567787 +L 0.9542,5.567787,0.6813,5.834768 +L 2.814,3.165154,3.091,3.165154 +L 3.091,3.165154,3.3712,3.165154 +L 3.3712,3.165154,3.6686,3.165154 +L 3.6686,3.165154,3.6686,4.069192 +L 3.6686,4.069192,3.6686,4.956155 +L 3.6686,4.956155,3.6686,5.834768 +L 3.6686,5.834768,3.1926,6.190638 +L 3.1926,6.190638,2.8595,6.190638 +L 2.8595,6.190638,2.3902,5.834768 +L 2.3902,5.834768,2.3902,5.300796 +L 2.3902,5.300796,2.3902,4.766952 +L 2.3902,4.766952,2.3902,4.232992 +L 4.7057,3.165154,5.1925,3.535254 +L 5.1925,3.535254,5.6895,3.888345 +L 5.6895,3.888345,6.2009,4.232992 +L 6.2009,4.232992,5.9035,4.689263 +L 5.9035,4.689263,5.6233,5.13703 +L 5.6233,5.13703,5.3463,5.567787 +L 5.3463,5.567787,5.9035,5.567787 +L 5.9035,5.567787,6.4744,5.567787 +L 6.4744,5.567787,7.0558,5.567787 +L 7.0558,5.567787,6.9013,5.300796 +L 6.9013,5.300796,6.7612,5.033844 +L 6.7612,5.033844,6.6285,4.766952 +L 7.4796,3.165154,7.1819,3.354473 +L 7.1819,3.354473,6.9013,3.535254 +L 6.9013,3.535254,6.6285,3.699109 +L 1.9597,5.834768,1.8088,6.02397 +L 1.8088,6.02397,1.6617,6.20484 +L 1.6617,6.20484,1.5324,6.368716 +L 1.5324,6.368716,1.8088,7.245697 +L 1.8088,7.245697,2.0925,8.122869 +L 2.0925,8.122869,2.3902,8.999922 +L 3.8507,6.635592,3.7912,7.081908 +L 3.7912,7.081908,3.7281,7.511336 +L 3.7281,7.511336,3.6686,7.9322 +L 3.6686,7.9322,3.2413,7.9322 +L 3.2413,7.9322,2.814,7.9322 +L 2.814,7.9322,2.3902,7.9322 +L 2.3902,7.9322,2.3902,7.58757 +L 2.3902,7.58757,2.3902,7.234467 +L 2.3902,7.234467,2.3902,6.86446 +L 4.7057,6.86446,5.154,7.279681 +L 5.154,7.279681,5.3186,7.694892 +L 5.3186,7.694892,5.3463,8.466083 +L 5.3463,8.466083,5.7736,8.466083 +L 5.7736,8.466083,6.2009,8.466083 +L 6.2009,8.466083,6.6285,8.466083 +L 6.6285,8.466083,6.6285,7.9322 +L 6.6285,7.9322,6.6285,7.398246 +L 6.6285,7.398246,6.6285,6.86446 +L 6.6285,6.86446,7.0348,6.86446 +L 7.0348,6.86446,7.4547,6.86446 +L 7.4547,6.86446,7.8785,6.86446 +L 7.8785,6.86446,7.8785,7.234467 +L 7.8785,7.234467,7.8785,7.58757 +L 7.8785,7.58757,7.8785,7.9322 + +[蛮] 57 +L 0.7075,0,1.8391,0 +L 1.8391,0,2.9704,0 +L 2.9704,0,4.0944,0 +L 4.0944,0,3.797,1.831892 +L 3.797,1.831892,2.9351,2.197761 +L 2.9351,2.197761,1.5656,2.097449 +L 1.5656,2.097449,1.5656,2.631392 +L 1.5656,2.631392,1.5656,3.165154 +L 1.5656,3.165154,1.5656,3.699109 +L 1.5656,3.699109,2.2661,3.699109 +L 2.2661,3.699109,2.9704,3.699109 +L 2.9704,3.699109,3.6706,3.699109 +L 3.6706,3.699109,3.9441,4.232992 +L 3.9441,4.232992,4.2243,4.766952 +L 4.2243,4.766952,4.5217,5.300796 +L 4.5217,5.300796,4.7984,5.300796 +L 4.7984,5.300796,5.0821,5.300796 +L 5.0821,5.300796,5.3801,5.300796 +L 5.3801,5.300796,5.3801,6.177952 +L 5.3801,6.177952,5.3801,7.055043 +L 5.3801,7.055043,5.3801,7.9322 +L 5.3801,7.9322,4.6548,7.9322 +L 4.6548,7.9322,3.9441,7.9322 +L 3.9441,7.9322,3.2398,7.9322 +L 3.2398,7.9322,3.2398,7.425121 +L 3.2398,7.425121,3.2398,6.901143 +L 3.2398,6.901143,3.2398,6.368716 +L 3.2398,6.368716,2.8125,6.02397 +L 2.8125,6.02397,2.3995,5.67089 +L 2.3995,5.67089,1.9894,5.300796 +L 7.4851,0,7.0855,0.375643 +L 7.0855,0.375643,6.3219,0.514072 +L 6.3219,0.514072,4.5217,0.533867 +L 6.6266,1.067739,5.8771,1.720251 +L 5.8771,1.720251,4.8478,2.245761 +L 4.8478,2.245761,4.0944,2.898268 +L 4.0944,2.898268,4.2243,3.165154 +L 4.2243,3.165154,4.3711,3.432222 +L 4.3711,3.432222,4.5217,3.699109 +L 4.5217,3.699109,5.2222,3.699109 +L 5.2222,3.699109,5.9265,3.699109 +L 5.9265,3.699109,6.6266,3.699109 +L 6.6266,3.699109,6.6266,3.165154 +L 6.6266,3.165154,6.6266,2.631392 +L 6.6266,2.631392,6.6266,2.097449 +L 0.925,5.834768,1.2682,6.177952 +L 1.2682,6.177952,1.6251,6.52116 +L 1.6251,6.52116,1.9894,6.86446 +L 7.4851,5.834768,7.0543,6.177952 +L 7.0543,6.177952,6.6266,6.52116 +L 6.6266,6.52116,6.1958,6.86446 +L 0.7075,7.9322,1.4118,7.9322 +L 1.4118,7.9322,2.112,7.9322 +L 2.112,7.9322,2.8125,7.9322 +L 5.8039,7.9322,6.3538,7.9322 +L 6.3538,7.9322,6.9103,7.9322 +L 6.9103,7.9322,7.4851,7.9322 + +[卑] 45 +L 4.9513,0,4.8673,0.636948 +L 4.8673,0.636948,4.7969,1.25703 +L 4.7969,1.25703,4.7373,1.868667 +L 4.7373,1.868667,3.3927,1.944884 +L 3.3927,1.944884,2.0618,2.021117 +L 2.0618,2.021117,0.7379,2.097449 +L 5.3786,2.097449,5.0739,2.532426 +L 5.0739,2.532426,4.9688,3.086152 +L 4.9688,3.086152,4.9513,4.232992 +L 4.9513,4.232992,4.2505,4.232992 +L 4.2505,4.232992,3.543,4.232992 +L 3.543,4.232992,2.8428,4.232992 +L 2.8428,4.232992,2.8288,3.461905 +L 2.8288,3.461905,2.7199,3.046608 +L 2.7199,3.046608,2.4191,2.631392 +L 5.8024,2.097449,6.5064,2.097449 +L 6.5064,2.097449,7.2136,2.097449 +L 7.2136,2.097449,7.9421,2.097449 +L 1.5641,4.232992,1.5641,5.299456 +L 1.5641,5.299456,1.5641,6.357316 +L 1.5641,6.357316,1.5641,7.398246 +L 1.5641,7.398246,2.8078,7.525444 +L 2.8078,7.525444,3.6554,7.906676 +L 3.6554,7.906676,4.5552,8.999922 +L 5.3786,4.232992,5.8024,4.232992 +L 5.8024,4.232992,6.2329,4.232992 +L 6.2329,4.232992,6.6602,4.232992 +L 6.6602,4.232992,6.6602,4.766952 +L 6.6602,4.766952,6.6602,5.300796 +L 6.6602,5.300796,6.6602,5.834768 +L 6.6602,5.834768,5.96,5.834768 +L 5.96,5.834768,5.256,5.834768 +L 5.256,5.834768,4.5552,5.834768 +L 4.5552,5.834768,4.4014,5.49012 +L 4.4014,5.49012,4.2575,5.13703 +L 4.2575,5.13703,4.1279,4.766952 +L 1.9879,5.834768,3.1546,5.841767 +L 3.1546,5.841767,3.8796,6.196314 +L 3.8796,6.196314,4.1279,7.398246 +L 4.1279,7.398246,4.958,7.398246 +L 4.958,7.398246,5.8024,7.398246 +L 5.8024,7.398246,6.6602,7.398246 +L 6.6602,7.398246,6.6602,7.055043 +L 6.6602,7.055043,6.6602,6.711824 +L 6.6602,6.711824,6.6602,6.368716 + +[妃] 22 +L 4.981,0,4.6798,0.5522 +L 4.6798,0.5522,4.5681,1.926534 +L 4.5681,1.926534,4.5537,5.300796 +L 4.5537,5.300796,5.4083,5.300796 +L 5.4083,5.300796,6.2594,5.300796 +L 6.2594,5.300796,7.1178,5.300796 +L 7.1178,5.300796,7.1178,6.367183 +L 7.1178,6.367183,7.1178,7.425121 +L 7.1178,7.425121,7.1178,8.466083 +L 7.1178,8.466083,6.1123,8.466083 +L 6.1123,8.466083,5.1109,8.466083 +L 5.1109,8.466083,4.1267,8.466083 +L 5.4083,0,6.1123,0 +L 6.1123,0,6.8131,0 +L 6.8131,0,7.5133,0 +L 7.5133,0,7.5133,0.533867 +L 7.5133,0.533867,7.5133,1.067739 +L 7.5133,1.067739,7.5133,1.601682 +L 4.1408,6.330309,0.5402,6.330309 +L 1.398,3.326535,2.0218,8.999906 +A -3.9919,-3.399556,8.620982,23.224227,51.278884 +A -5.8521,6.330309,9.138971,316.15783,0 + +[扉] 51 +L 0.7695,0,1.5611,2.288097 +L 1.5611,2.288097,1.6872,4.449175 +L 1.6872,4.449175,1.628,6.86446 +L 1.628,6.86446,3.4563,6.86446 +L 3.4563,6.86446,5.2877,6.86446 +L 5.2877,6.86446,7.1163,6.86446 +L 7.1163,6.86446,7.1163,6.357316 +L 7.1163,6.357316,7.1163,5.833246 +L 7.1163,5.833246,7.1163,5.300796 +L 7.1163,5.300796,6.6925,5.300796 +L 6.6925,5.300796,6.2652,5.300796 +L 6.2652,5.300796,5.8341,5.300796 +L 5.8341,5.300796,5.8341,4.766952 +L 5.8341,4.766952,5.8341,4.232992 +L 5.8341,4.232992,5.8341,3.699109 +L 5.8341,3.699109,6.3913,3.699109 +L 6.3913,3.699109,6.9654,3.699109 +L 6.9654,3.699109,7.5436,3.699109 +L 3.0885,0,3.4353,0.456205 +L 3.4353,0.456205,3.7922,0.903944 +L 3.7922,0.903944,4.1603,1.334719 +L 4.1603,1.334719,3.5225,1.502804 +L 3.5225,1.502804,3.0812,1.433581 +L 3.0812,1.433581,2.4507,1.067739 +L 5.8341,0,5.8341,1.066376 +L 5.8341,1.066376,5.8341,2.124325 +L 5.8341,2.124325,5.8341,3.165154 +L 6.2652,1.067739,6.6925,1.067739 +L 6.6925,1.067739,7.1163,1.067739 +L 7.1163,1.067739,7.5436,1.067739 +L 4.1603,2.364401,3.7291,2.467521 +L 3.7291,2.467521,3.3018,2.553637 +L 3.3018,2.553637,2.8745,2.631392 +L 6.2652,2.631392,6.5349,2.631392 +L 6.5349,2.631392,6.8218,2.631392 +L 6.8218,2.631392,7.1163,2.631392 +L 4.1603,3.432222,3.5789,3.535254 +L 3.5789,3.535254,3.008,3.621458 +L 3.008,3.621458,2.4507,3.699109 +L 4.1603,4.232992,4.1603,4.603152 +L 4.1603,4.603152,4.1603,4.956155 +L 4.1603,4.956155,4.1603,5.300796 +L 4.1603,5.300796,3.4353,5.300796 +L 3.4353,5.300796,2.7208,5.300796 +L 2.7208,5.300796,2.0203,5.300796 +L 4.5841,5.300796,4.8604,5.300796 +L 4.8604,5.300796,5.1406,5.300796 +L 5.1406,5.300796,5.4387,5.300796 +L 1.1968,8.466083,3.4563,8.466083 +L 3.4563,8.466083,5.7115,8.466083 +L 5.7115,8.466083,7.9709,8.466083 + +[披] 51 +L 0.768,0,1.0486,0 +L 1.0486,0,1.3288,0 +L 1.3288,0,1.6261,0 +L 1.6261,0,1.6261,1.247157 +L 1.6261,1.247157,1.6261,2.477328 +L 1.6261,2.477328,1.6261,3.699109 +L 1.6261,3.699109,1.3288,3.699109 +L 1.3288,3.699109,1.0486,3.699109 +L 1.0486,3.699109,0.768,3.699109 +L 2.4772,0.266887,3.1357,2.725947 +L 3.1357,2.725947,3.3287,4.93925 +L 3.3287,4.93925,3.3357,7.398246 +L 3.3357,7.398246,4.5055,7.415326 +L 4.5055,7.415326,5.2057,7.78809 +L 5.2057,7.78809,5.4407,8.999922 +L 3.9728,0,4.5931,0.533867 +L 4.5931,0.533867,5.2232,1.067739 +L 5.2232,1.067739,5.8645,1.601682 +L 5.8645,1.601682,4.964,3.117264 +L 4.964,3.117264,4.6316,3.937861 +L 4.6316,3.937861,4.5822,4.766952 +L 4.5822,4.766952,4.3125,4.766952 +L 4.3125,4.766952,4.0358,4.766952 +L 4.0358,4.766952,3.7595,4.766952 +L 7.5733,0,7.1495,0.370094 +L 7.1495,0.370094,6.7222,0.723092 +L 6.7222,0.723092,6.2918,1.067739 +L 6.2918,2.097449,6.8942,3.264126 +L 6.8942,3.264126,7.1148,3.956216 +L 7.1148,3.956216,7.1495,4.766952 +L 7.1495,4.766952,6.4245,4.766952 +L 6.4245,4.766952,5.7135,4.766952 +L 5.7135,4.766952,5.0134,4.766952 +L 1.6261,4.232992,1.6261,4.956155 +L 1.6261,4.956155,1.6261,5.67089 +L 1.6261,5.67089,1.6261,6.368716 +L 1.6261,6.368716,1.3288,6.548041 +L 1.3288,6.548041,1.0486,6.710407 +L 1.0486,6.710407,0.768,6.86446 +L 5.4407,5.300796,5.4582,6.420859 +L 5.4582,6.420859,5.5664,6.964702 +L 5.5664,6.964702,5.8645,7.398246 +L 5.8645,7.398246,6.4245,7.320584 +L 6.4245,7.320584,6.9923,7.234467 +L 6.9923,7.234467,7.5733,7.131347 +L 7.5733,7.131347,7.4231,6.89126 +L 7.4231,6.89126,7.2795,6.634163 +L 7.2795,6.634163,7.1495,6.368716 +L 2.0499,6.86446,1.7491,7.299448 +L 1.7491,7.299448,1.637,7.853083 +L 1.637,7.853083,1.6261,8.999922 + +[泌] 36 +L 0.8019,0.266887,1.2257,1.411017 +L 1.2257,1.411017,1.6565,2.55506 +L 1.6565,2.55506,2.0835,3.699109 +L 2.6964,0,3.2501,0.533867 +L 3.2501,0.533867,3.8242,1.067739 +L 3.8242,1.067739,4.4059,1.601682 +L 4.4059,1.601682,4.462,3.355918 +L 4.462,3.355918,4.532,5.110142 +L 4.532,5.110142,4.6157,6.86446 +L 5.0395,0,4.8928,0.370094 +L 4.8928,0.370094,4.7418,0.723092 +L 4.7418,0.723092,4.6157,1.067739 +L 5.4703,0,6.0206,0 +L 6.0206,0,6.5771,0 +L 6.5771,0,7.148,0 +L 7.148,0,7.148,0.533867 +L 7.148,0.533867,7.148,1.067739 +L 7.148,1.067739,7.148,1.601682 +L 2.9069,2.898268,3.0361,3.535254 +L 3.0361,3.535254,3.1832,4.155396 +L 3.1832,4.155396,3.3342,4.766952 +L 5.0395,2.631392,6.5211,6.025421 +L 6.5211,6.025421,7.071,7.538102 +L 7.071,7.538102,7.148,8.466083 +L 8.0026,3.165154,7.9854,3.936345 +L 7.9854,3.936345,7.8765,4.351659 +L 7.8765,4.351659,7.5718,4.766952 +L 1.6565,5.834768,1.3585,6.177952 +L 1.3585,6.177952,1.0783,6.52116 +L 1.0783,6.52116,0.8019,6.86446 +L 2.0835,7.9322,1.7858,8.302184 +L 1.7858,8.302184,1.5056,8.655368 +L 1.5056,8.655368,1.2257,8.999922 +L 5.4703,8.199184,5.3166,8.466083 +L 5.3166,8.466083,5.173,8.733133 +L 5.173,8.733133,5.0395,8.999922 + +[碑] 63 +L 6.3234,0,5.9245,1.933572 +L 5.9245,1.933572,4.8629,2.248547 +L 4.8629,2.248547,3.3639,2.097449 +L 1.2589,1.067739,1.3815,3.545127 +L 1.3815,3.545127,1.5114,6.014103 +L 1.5114,6.014103,1.655,8.466083 +L 1.655,8.466083,1.3815,8.466083 +L 1.3815,8.466083,1.1086,8.466083 +L 1.1086,8.466083,0.8316,8.466083 +L 1.655,1.067739,1.9317,1.067739 +L 1.9317,1.067739,2.2154,1.067739 +L 2.2154,1.067739,2.5093,1.067739 +L 2.5093,1.067739,2.5093,2.478833 +L 2.5093,2.478833,2.5093,3.889779 +L 2.5093,3.889779,2.5093,5.300796 +L 2.5093,5.300796,2.2154,5.300796 +L 2.2154,5.300796,1.9317,5.300796 +L 1.9317,5.300796,1.655,5.300796 +L 6.7511,2.097449,6.4499,2.552214 +L 6.4499,2.552214,6.3374,3.244354 +L 6.3374,3.244354,6.3234,4.766952 +L 6.3234,4.766952,5.6198,4.766952 +L 5.6198,4.766952,4.9189,4.766952 +L 4.9189,4.766952,4.2188,4.766952 +L 4.2188,4.766952,4.2188,5.833246 +L 4.2188,5.833246,4.2188,6.89126 +L 4.2188,6.89126,4.2188,7.9322 +L 4.2188,7.9322,5.1154,8.149636 +L 5.1154,8.149636,5.5494,8.426592 +L 5.5494,8.426592,5.8961,8.999922 +L 7.1784,2.097449,7.4547,2.097449 +L 7.4547,2.097449,7.7349,2.097449 +L 7.7349,2.097449,8.0295,2.097449 +L 4.2188,2.631392,4.3484,3.001382 +L 4.3484,3.001382,4.4987,3.354473 +L 4.4987,3.354473,4.6461,3.699109 +L 6.7511,4.766952,7.0239,4.766952 +L 7.0239,4.766952,7.3111,4.766952 +L 7.3111,4.766952,7.6057,4.766952 +L 7.6057,4.766952,7.6057,5.300796 +L 7.6057,5.300796,7.6057,5.834768 +L 7.6057,5.834768,7.6057,6.368716 +L 7.6057,6.368716,7.1784,6.368716 +L 7.1784,6.368716,6.7511,6.368716 +L 6.7511,6.368716,6.3234,6.368716 +L 6.3234,6.368716,6.1728,6.02397 +L 6.1728,6.02397,6.0261,5.67089 +L 6.0261,5.67089,5.8961,5.300796 +L 4.6461,6.368716,5.2412,6.386967 +L 5.2412,6.386967,5.5637,6.515501 +L 5.5637,6.515501,5.8961,6.86446 +L 5.8961,6.86446,5.8961,7.234467 +L 5.8961,7.234467,5.8961,7.58757 +L 5.8961,7.58757,5.8961,7.9322 +L 5.8961,7.9322,6.4534,7.9322 +L 6.4534,7.9322,7.0239,7.9322 +L 7.0239,7.9322,7.6057,7.9322 +L 7.6057,7.9322,7.6057,7.58757 +L 7.6057,7.58757,7.6057,7.234467 +L 7.6057,7.234467,7.6057,6.86446 +L 2.0823,8.466083,2.359,8.466083 +L 2.359,8.466083,2.6389,8.466083 +L 2.6389,8.466083,2.9401,8.466083 + +[罷] 60 +L 1.2574,0,1.2574,1.247157 +L 1.2574,1.247157,1.2574,2.477328 +L 1.2574,2.477328,1.2574,3.699109 +L 1.2574,3.699109,1.9617,3.699109 +L 1.9617,3.699109,2.6724,3.699109 +L 2.6724,3.699109,3.3977,3.699109 +L 3.3977,3.699109,3.3977,2.477328 +L 3.3977,2.477328,3.3977,1.247157 +L 3.3977,1.247157,3.3977,0 +L 3.3977,0,3.0997,0 +L 3.0997,0,2.816,0 +L 2.816,0,2.5396,0 +L 5.5027,0,5.198,0.453316 +L 5.198,0.453316,5.0894,1.135599 +L 5.0894,1.135599,5.0719,2.631392 +L 5.9297,0,6.6305,0 +L 6.6305,0,7.3306,0 +L 7.3306,0,8.0346,0 +L 8.0346,0,8.0346,0.370094 +L 8.0346,0.370094,8.0346,0.723092 +L 8.0346,0.723092,8.0346,1.067739 +L 1.6885,1.601682,2.1158,1.601682 +L 2.1158,1.601682,2.5396,1.601682 +L 2.5396,1.601682,2.9669,1.601682 +L 5.5027,1.601682,6.2032,1.781024 +L 6.2032,1.781024,6.9103,1.943456 +L 6.9103,1.943456,7.6353,2.097449 +L 1.6885,2.631392,2.1158,2.631392 +L 2.1158,2.631392,2.5396,2.631392 +L 2.5396,2.631392,2.9669,2.631392 +L 5.5027,3.699109,5.198,4.11433 +L 5.198,4.11433,5.0894,4.529628 +L 5.0894,4.529628,5.0719,5.300796 +L 5.0719,5.300796,6.3048,5.32058 +L 6.3048,5.32058,6.9737,5.459037 +L 6.9737,5.459037,7.6353,5.834768 +L 5.9297,3.699109,6.6305,3.699109 +L 6.6305,3.699109,7.3306,3.699109 +L 7.3306,3.699109,8.0346,3.699109 +L 0.8301,5.300796,1.4504,5.528215 +L 1.4504,5.528215,1.7828,5.874241 +L 1.7828,5.874241,2.1158,6.635592 +L 2.1158,6.635592,1.8181,6.711824 +L 1.8181,6.711824,1.5376,6.788162 +L 1.5376,6.788162,1.2574,6.86446 +L 1.2574,6.86446,1.2574,7.398246 +L 1.2574,7.398246,1.2574,7.9322 +L 1.2574,7.9322,1.2574,8.466083 +L 1.2574,8.466083,3.3732,8.466083 +L 3.3732,8.466083,5.5027,8.466083 +L 5.5027,8.466083,7.6353,8.466083 +L 7.6353,8.466083,7.6353,7.9322 +L 7.6353,7.9322,7.6353,7.398246 +L 7.6353,7.398246,7.6353,6.86446 +L 7.6353,6.86446,5.9297,6.86446 +L 5.9297,6.86446,4.2278,6.86446 +L 4.2278,6.86446,2.5396,6.86446 +L 2.1158,5.300796,2.6622,5.300796 +L 2.6622,5.300796,3.2188,5.300796 +L 3.2188,5.300796,3.7932,5.300796 + +[被] 53 +L 1.7151,0,1.7007,2.622844 +L 1.7007,2.622844,1.589,3.720337 +L 1.589,3.720337,1.2878,4.232992 +L 1.2878,4.232992,1.1403,4.069192 +L 1.1403,4.069192,0.9967,3.888345 +L 0.9967,3.888345,0.864,3.699109 +L 3.3962,0.266887,4.1458,2.683611 +L 4.1458,2.683611,4.2925,4.90537 +L 4.2925,4.90537,4.2505,7.398246 +L 4.2505,7.398246,5.2872,7.46611 +L 5.2872,7.46611,5.8091,7.889771 +L 5.8091,7.889771,5.96,8.999922 +L 4.8918,0,5.3786,0.533867 +L 5.3786,0.533867,5.8655,1.067739 +L 5.8655,1.067739,6.3523,1.601682 +L 6.3523,1.601682,5.7849,2.668069 +L 5.7849,2.668069,5.2315,3.726007 +L 5.2315,3.726007,4.6778,4.766952 +L 7.6338,0,7.3435,0.370094 +L 7.3435,0.370094,7.0563,0.723092 +L 7.0563,0.723092,6.7827,1.067739 +L 6.7827,2.364401,7.0563,3.087521 +L 7.0563,3.087521,7.3435,3.802229 +L 7.3435,3.802229,7.6338,4.499972 +L 7.6338,4.499972,6.9337,4.603152 +L 6.9337,4.603152,6.2297,4.689263 +L 6.2297,4.689263,5.5289,4.766952 +L 2.9689,3.165154,2.5416,3.699109 +L 2.5416,3.699109,2.1213,4.232992 +L 2.1213,4.232992,1.7151,4.766952 +L 1.7151,4.766952,2.1213,5.566353 +L 2.1213,5.566353,2.5416,6.357316 +L 2.5416,6.357316,2.9689,7.131347 +L 2.9689,7.131347,2.2681,7.234467 +L 2.2681,7.234467,1.5641,7.320584 +L 1.5641,7.320584,0.864,7.398246 +L 5.96,5.300796,5.9737,6.420859 +L 5.9737,6.420859,6.0753,6.964702 +L 6.0753,6.964702,6.3523,7.398246 +L 6.3523,7.398246,6.7827,7.320584 +L 6.7827,7.320584,7.21,7.234467 +L 7.21,7.234467,7.6338,7.131347 +L 7.6338,7.131347,7.4836,6.89126 +L 7.4836,6.89126,7.3435,6.634163 +L 7.3435,6.634163,7.21,6.368716 +L 1.7151,7.9322,1.7151,8.302184 +L 1.7151,8.302184,1.7151,8.655368 +L 1.7151,8.655368,1.7151,8.999922 +L 0.4367,7.398261,2.9966,7.398261 +L 1.7151,8.999742,1.7151,7.398261 +L 2.9966,3.165308,1.7151,4.766837 +L 1.7151,4.766837,1.7151,0 +A -7.6785,10.968769,11.256284,316.1117,341.50627 + +[避] 57 +L 6.7812,1.067739,6.7812,1.600243 +L 6.7812,1.600243,6.7812,2.124325 +L 6.7812,2.124325,6.7812,2.631414 +L 6.7812,2.631414,6.4874,2.820628 +L 6.4874,2.820628,6.1998,3.001382 +L 6.1998,3.001382,5.927,3.165182 +L 3.8252,1.601682,3.7415,2.47886 +L 3.7415,2.47886,3.6711,3.355934 +L 3.6711,3.355934,3.608,4.232992 +L 3.608,4.232992,3.3947,3.888345 +L 3.3947,3.888345,3.1807,3.535254 +L 3.1807,3.535254,2.9674,3.165182 +L 4.2493,1.601682,4.526,1.601682 +L 4.526,1.601682,4.7989,1.601682 +L 4.7989,1.601682,5.0724,1.601682 +L 5.0724,1.601682,5.0724,2.66808 +L 5.0724,2.66808,5.0724,3.726007 +L 5.0724,3.726007,5.0724,4.766952 +L 5.0724,4.766952,4.5012,4.766952 +L 4.5012,4.766952,3.9478,4.766952 +L 3.9478,4.766952,3.3947,4.766952 +L 3.3947,4.766952,3.3947,6.014103 +L 3.3947,6.014103,3.3947,7.244356 +L 3.3947,7.244356,3.3947,8.466083 +L 3.3947,8.466083,4.526,8.302206 +L 4.526,8.302206,5.6535,8.121501 +L 5.6535,8.121501,6.7812,7.93221 +L 6.7812,7.93221,6.7812,8.302206 +L 6.7812,8.302206,6.7812,8.655368 +L 6.7812,8.655368,6.7812,8.999922 +L 7.2085,3.165182,6.9073,3.600247 +L 6.9073,3.600247,6.7956,4.15399 +L 6.7956,4.15399,6.7812,5.300796 +L 6.7812,5.300796,6.3575,5.300796 +L 6.3575,5.300796,5.927,5.300796 +L 5.927,5.300796,5.4997,5.300796 +L 7.2085,5.567787,7.3385,6.014103 +L 7.3385,6.014103,7.4856,6.443526 +L 7.4856,6.443526,7.6358,6.864477 +L 6.3575,6.101681,6.1998,6.367195 +L 6.1998,6.367195,6.0597,6.624274 +L 6.0597,6.624274,5.927,6.864477 +L 3.8252,6.368738,4.2283,6.368738 +L 4.2283,6.368738,4.6486,6.368738 +L 4.6486,6.368738,5.0724,6.368738 +L 5.0724,6.368738,5.0724,6.711847 +L 5.0724,6.711847,5.0724,7.055059 +L 5.0724,7.055059,5.0724,7.398246 +L 7.2085,7.93221,7.4856,7.93221 +L 7.4856,7.93221,7.7658,7.93221 +L 7.7658,7.93221,8.0631,7.93221 +L 5.9161,-0.015186,8.0495,-0.015186 +L 2.0988,1.052476,1.0446,0 +L 0.8449,4.751716,2.0988,4.751716 +L 2.0988,1.052476,2.0988,4.751716 +L 1.2754,8.489144,2.0988,7.421258 +A 5.9161,7.347827,7.362973,238.75988,270 + +[尾] 45 +L 5.1056,0,4.8009,0.415226 +L 4.8009,0.415226,4.6926,0.830508 +L 4.6926,0.830508,4.6748,1.601682 +L 4.6748,1.601682,3.824,1.601682 +L 3.824,1.601682,2.9761,1.601682 +L 2.9761,1.601682,2.1428,1.601682 +L 5.5294,0,6.3668,0 +L 6.3668,0,7.2105,0 +L 7.2105,0,8.0616,0 +L 8.0616,0,8.0616,0.370094 +L 8.0616,0.370094,8.0616,0.723092 +L 8.0616,0.723092,8.0616,1.067739 +L 0.8645,0.533867,1.67,2.895499 +L 1.67,2.895499,1.7888,5.926449 +L 1.7888,5.926449,1.7156,8.466083 +L 1.7156,8.466083,3.547,8.466083 +L 3.547,8.466083,5.3858,8.466083 +L 5.3858,8.466083,7.2389,8.466083 +L 7.2389,8.466083,7.2389,7.93221 +L 7.2389,7.93221,7.2389,7.398246 +L 7.2389,7.398246,7.2389,6.864477 +L 7.2389,6.864477,5.5329,6.864477 +L 5.5329,6.864477,3.8345,6.864477 +L 3.8345,6.864477,2.1428,6.864477 +L 4.6748,2.097449,4.6748,2.467537 +L 4.6748,2.467537,4.6748,2.820628 +L 4.6748,2.820628,4.6748,3.165182 +L 4.6748,3.165182,4.1077,3.165182 +L 4.1077,3.165182,3.547,3.165182 +L 3.547,3.165182,3.0006,3.165182 +L 5.1056,2.097449,5.9357,2.097449 +L 5.9357,2.097449,6.7797,2.097449 +L 6.7797,2.097449,7.6378,2.097449 +L 4.6748,3.699125,4.6748,4.069214 +L 4.6748,4.069214,4.6748,4.422283 +L 4.6748,4.422283,4.6748,4.766952 +L 4.6748,4.766952,3.9743,4.766952 +L 3.9743,4.766952,3.2741,4.766952 +L 3.2741,4.766952,2.5733,4.766952 +L 5.1056,3.699125,5.6593,3.699125 +L 5.6593,3.699125,6.2334,3.699125 +L 6.2334,3.699125,6.8151,3.699125 +L 5.1056,5.300796,5.6593,5.300796 +L 5.6593,5.300796,6.2334,5.300796 +L 6.2334,5.300796,6.8151,5.300796 + +[微] 51 +L 1.7176,0,1.6335,1.600243 +L 1.6335,1.600243,1.5666,3.192134 +L 1.5666,3.192134,1.5036,4.766952 +L 1.5036,4.766952,1.2903,4.603179 +L 1.2903,4.603179,1.0763,4.422283 +L 1.0763,4.422283,0.8595,4.232992 +L 5.5314,0,5.9342,0.799418 +L 5.9342,0.799418,6.3548,1.590354 +L 6.3548,1.590354,6.7852,2.364401 +L 6.7852,2.364401,6.1727,3.738686 +L 6.1727,3.738686,5.8956,4.638379 +L 5.8956,4.638379,5.7135,5.834768 +L 5.7135,5.834768,5.1114,5.597542 +L 5.1114,5.597542,4.3024,5.716099 +L 4.3024,5.716099,2.9644,5.834768 +L 2.9644,5.834768,2.9644,6.548041 +L 2.9644,6.548041,2.9644,7.244356 +L 2.9644,7.244356,2.9644,7.93221 +L 8.0636,0,7.7663,0.533867 +L 7.7663,0.533867,7.4861,1.067739 +L 7.4861,1.067739,7.2055,1.601682 +L 2.5406,0.800852,2.838,1.461803 +L 2.838,1.461803,2.9504,2.35165 +L 2.9504,2.35165,2.9644,4.232992 +L 2.9644,4.232992,3.6716,4.232992 +L 3.6716,4.232992,4.3791,4.232992 +L 4.3791,4.232992,5.1041,4.232992 +L 4.2495,1.601682,4.2495,2.314984 +L 4.2495,2.314984,4.2495,3.011287 +L 4.2495,3.011287,4.2495,3.699125 +L 7.2055,3.432238,7.5103,4.074862 +L 7.5103,4.074862,7.6188,4.83607 +L 7.6188,4.83607,7.6363,6.368738 +L 7.6363,6.368738,7.0553,6.471738 +L 7.0553,6.471738,6.4879,6.557946 +L 6.4879,6.557946,5.9275,6.635592 +L 5.9275,6.635592,6.2287,7.231693 +L 6.2287,7.231693,6.3369,7.844638 +L 6.3369,7.844638,6.3548,8.999922 +L 1.7176,5.567787,1.8401,6.014103 +L 1.8401,6.014103,1.9694,6.443526 +L 1.9694,6.443526,2.113,6.864477 +L 3.8225,6.368738,3.8225,7.245719 +L 3.8225,7.245719,3.8225,8.122869 +L 3.8225,8.122869,3.8225,8.999922 +L 4.6736,6.368738,4.6736,6.901143 +L 4.6736,6.901143,4.6736,7.425121 +L 4.6736,7.425121,4.6736,7.93221 +L 0.8595,7.398246,1.1393,7.93221 +L 1.1393,7.93221,1.4195,8.466083 +L 1.4195,8.466083,1.7176,8.999922 + +[匹] 21 +L 0.865,0,0.865,2.822073 +L 0.865,2.822073,0.865,5.64401 +L 0.865,5.64401,0.865,8.466083 +L 0.865,8.466083,2.9766,8.466083 +L 2.9766,8.466083,5.1026,8.466083 +L 5.1026,8.466083,7.2429,8.466083 +L 1.2887,0,3.4039,0 +L 3.4039,0,5.5334,0 +L 5.5334,0,7.6632,0 +L 1.716,2.097449,2.6754,3.949212 +L 2.6754,3.949212,2.9801,5.927888 +L 2.9801,5.927888,2.9976,7.93221 +L 5.1026,2.631414,4.8049,3.183592 +L 4.8049,3.183592,4.6931,4.557948 +L 4.6931,4.557948,4.6788,7.93221 +L 5.5334,2.631414,5.9537,2.631414 +L 5.9537,2.631414,6.3845,2.631414 +L 6.3845,2.631414,6.8121,2.631414 +L 6.8121,2.631414,6.8121,3.165182 +L 6.8121,3.165182,6.8121,3.699125 +L 6.8121,3.699125,6.8121,4.232992 + +# kan_36 ------------------------------------------------------- +# 姫漂描苗浜賓頻敏瓶怖扶敷浮腐譜賦赴附侮舞封伏幅覆沸噴墳憤紛雰丙併塀幣弊柄壁癖偏遍舗捕穂募慕簿倣俸奉峰 + +[姫] 12 +L 3.4043,6.330279,-0.1966,6.330279 +L 0.6619,3.3265,1.2815,8.999865 +L 6.7768,8.466074,3.3938,8.466074 +L 3.3938,8.466074,3.3938,0 +L 7.2041,0,3.3938,0 +L 6.3498,5.834764,6.3498,3.165256 +L 6.3498,5.834764,3.3938,5.834764 +L 6.3498,3.165256,3.3938,3.165256 +L 5.0676,0,5.0676,3.165256 +L 5.0676,5.834764,5.0676,8.466074 +A -4.7288,-3.399589,8.620982,23.224227,51.278884 +A -6.5886,6.330279,9.138971,316.15783,0 + +[漂] 31 +L 3.8157,0,4.6668,0 +L 4.6668,0,4.6668,2.669511 +L 4.6668,2.669511,2.5653,2.669511 +L 2.5653,0.533968,2.842,0.903947 +L 2.842,0.903947,3.1257,1.257131 +L 3.1257,1.257131,3.4199,1.60169 +L 6.8068,0.533968,5.9557,1.60169 +L 5.0976,2.669511,7.2341,2.669511 +L 3.4199,4.233082,6.376,4.233082 +L 2.9926,5.300794,2.9926,6.902574 +L 2.9926,6.902574,3.8157,7.053694 +L 3.8157,7.053694,4.1695,7.552323 +L 4.1695,7.552323,4.2465,8.466074 +L 4.2465,8.466074,2.5653,8.466074 +L 3.4199,5.300794,4.2465,5.300794 +L 4.2465,5.300794,4.2465,6.368632 +L 4.2465,6.368632,4.6668,6.738725 +L 4.6668,6.738725,5.0976,7.091817 +L 5.0976,7.091817,5.5249,7.436447 +L 5.5249,7.436447,5.5249,8.466074 +L 5.5249,8.466074,4.6668,8.466074 +L 4.6668,5.300794,5.5249,5.300794 +L 5.5249,5.300794,5.6055,6.427964 +L 5.6055,6.427964,5.9736,6.843251 +L 5.9736,6.843251,6.8068,6.902574 +L 6.8068,6.902574,6.8068,5.300794 +L 6.8068,5.300794,5.9557,5.300794 +L 5.9557,8.466074,7.2341,8.466074 +L 1.2519,7.970357,0.4324,8.999843 +L 0.8281,5.834638,0.0019,6.902421 +L 1.2519,3.470467,0.0019,0 + +[描] 13 +L 1.51,9.000165,1.51,0.000027 +L 1.51,0.000027,0.6935,0.000027 +L 0.0351,3.699216,2.9946,5.548855 +L 0.0351,6.902574,2.9946,6.902574 +L 2.732,7.500032,7.2361,7.500032 +L 2.732,4.500051,2.732,0.000027 +L 2.732,0.000027,7.2361,0.000027 +L 7.2361,0.000027,7.2361,4.500051 +L 7.2361,4.500051,2.732,4.500051 +L 7.2361,2.250049,2.732,2.250049 +L 4.9844,0.000027,4.9844,4.500051 +L 3.6321,9.000045,3.6321,6.000026 +L 6.336,9.000045,6.336,6.000026 + +[苗] 24 +L 0.8882,0,0.8882,5.834764 +L 0.8882,5.834764,5.9846,5.834764 +L 5.9846,5.834764,5.9846,0 +L 5.9846,0,0.8882,0 +L 3.452,0.533968,3.2979,2.605958 +L 3.2979,2.605958,2.6709,3.177936 +L 2.6709,3.177936,1.3155,3.165256 +L 3.8796,3.165256,3.5781,3.600337 +L 3.5781,3.600337,3.466,4.15397 +L 3.466,4.15397,3.452,5.300794 +L 4.3066,3.165256,5.5569,3.165256 +L 2.1736,7.169472,1.8062,7.706212 +L 1.8062,7.706212,1.2598,7.903964 +L 1.2598,7.903964,0.0616,7.932191 +L 4.6992,7.169472,4.4817,7.553669 +L 4.4817,7.553669,3.9353,7.751437 +L 3.9353,7.751437,2.5974,7.932191 +L 2.5974,7.932191,2.4436,8.302275 +L 2.4436,8.302275,2.3032,8.655365 +L 2.3032,8.655365,2.1736,9.000029 +L 5.1296,7.932191,4.979,8.302275 +L 4.979,8.302275,4.8323,8.655365 +L 4.8323,8.655365,4.6992,9.000029 +L 5.5569,7.932191,6.8388,7.932191 + +[浜] 15 +L 0.0639,0.26698,1.3455,3.699216 +L 2.4137,0,3.8781,1.60169 +L 6.8657,0,5.587,1.60169 +L 2.6309,2.669511,3.447,2.669511 +L 3.447,2.669511,3.447,7.932191 +L 3.447,7.932191,4.7954,8.070713 +L 4.7954,8.070713,5.664,8.327717 +L 5.664,8.327717,6.4419,8.466074 +L 3.8781,2.669511,5.587,2.669511 +L 5.587,2.669511,5.587,5.834764 +L 5.587,5.834764,3.8781,5.834764 +L 6.0146,2.669511,7.2615,2.669511 +L 0.9217,5.834764,0.0639,6.902574 +L 6.0146,5.834764,6.8657,5.834764 +L 1.3455,7.932191,0.4909,9.000029 + +[賓] 33 +L 0.094,0,0.6435,0.189316 +L 0.6435,0.189316,1.2039,0.370091 +L 1.2039,0.370091,1.7751,0.533968 +L 6.0166,0,5.7396,0.189316 +L 5.7396,0.189316,5.4629,0.370091 +L 5.4629,0.370091,5.1932,0.533968 +L 1.7751,1.60169,1.7751,4.233082 +L 1.7751,4.233082,0.094,4.233082 +L 2.1989,1.60169,5.5855,1.60169 +L 5.5855,1.60169,5.5855,2.669511 +L 5.5855,2.669511,2.1989,2.669511 +L 5.5855,3.432137,4.458,3.535339 +L 4.458,3.535339,3.3299,3.621543 +L 3.3299,3.621543,2.1989,3.699216 +L 5.5855,4.500056,4.3071,4.603154 +L 4.3071,4.603154,3.0357,4.689266 +L 3.0357,4.689266,1.7751,4.767031 +L 0.7381,5.300794,1.2249,5.757097 +L 1.2249,5.757097,1.7121,6.204842 +L 1.7121,6.204842,2.1989,6.635611 +L 2.1989,6.635611,1.9257,6.738725 +L 1.9257,6.738725,1.6526,6.824836 +L 1.6526,6.824836,1.3794,6.902574 +L 3.4843,5.300794,3.4843,6.902574 +L 3.4843,6.902574,2.6294,6.902574 +L 6.0166,5.300794,5.3862,6.250067 +L 5.3862,6.250067,4.8429,6.665272 +L 4.8429,6.665272,3.9043,6.902574 +L 0.094,6.902574,0.094,7.932191 +L 0.094,7.932191,3.4843,7.932191 +L 3.4843,7.932191,3.4843,9.000029 +L 6.8674,6.902574,6.8674,7.932191 +L 6.8674,7.932191,3.9043,7.932191 + +[頻] 38 +L 0.3093,0,1.2234,0.903947 +L 1.2234,0.903947,2.1484,1.790998 +L 2.1484,1.790998,3.0867,2.669511 +L 3.728,0,4.0639,0.370091 +L 4.0639,0.370091,4.4075,0.723177 +L 4.4075,0.723177,4.7644,1.067824 +L 7.3247,0,6.4736,1.067824 +L 4.3371,2.135557,4.3371,6.902574 +L 4.3371,6.902574,4.95,7.128559 +L 4.95,7.128559,5.2866,7.464668 +L 5.2866,7.464668,5.6193,8.199182 +L 5.6193,8.199182,5.0481,8.302275 +L 5.0481,8.302275,4.4912,8.388396 +L 4.4912,8.388396,3.9417,8.466074 +L 4.7644,2.135557,6.8977,2.135557 +L 6.8977,2.135557,6.8977,3.699216 +L 6.8977,3.699216,4.7644,3.699216 +L 0.9467,2.669511,1.8052,2.669511 +L 1.8052,2.669511,1.8052,4.524049 +L 1.8052,4.524049,1.5176,5.531118 +L 1.5176,5.531118,0.5229,5.834764 +L 0.5229,5.834764,0.5229,7.932191 +L 0.1271,3.432137,0.2497,3.888425 +L 0.2497,3.888425,0.3828,4.33618 +L 0.3828,4.33618,0.5229,4.767031 +L 3.5105,3.966102,3.3638,4.233082 +L 3.3638,4.233082,3.2131,4.500056 +L 3.2131,4.500056,3.0867,4.767031 +L 6.8977,4.233082,6.8977,5.300794 +L 6.8977,5.300794,4.7644,5.300794 +L 2.2321,5.834764,1.9309,6.307858 +L 1.9309,6.307858,1.8188,7.128559 +L 1.8188,7.128559,1.8052,9.000029 +L 2.6594,5.834764,3.5105,5.834764 +L 6.8977,5.834764,6.8977,6.902574 +L 6.8977,6.902574,5.6193,6.902574 +L 2.2321,7.436447,3.0867,7.436447 +L 6.0428,8.466074,7.3247,8.466074 + +[敏] 47 +L 2.2621,0,2.8579,0.029667 +L 2.8579,0.029667,3.1801,0.237332 +L 3.1801,0.237332,3.5164,0.800849 +L 3.5164,0.800849,3.3622,1.067824 +L 3.3622,1.067824,3.2183,1.334809 +L 3.2183,1.334809,3.0852,1.60169 +L 3.0852,1.60169,0.9802,1.60169 +L 0.9802,1.60169,0.9802,3.699216 +L 0.9802,3.699216,0.686,3.888425 +L 0.686,3.888425,0.4023,4.069206 +L 0.4023,4.069206,0.126,4.233082 +L 4.7944,0,5.2217,0.723177 +L 5.2217,0.723177,5.6455,1.437896 +L 5.6455,1.437896,6.0766,2.135557 +L 6.0766,2.135557,5.4182,3.639789 +L 5.4182,3.639789,5.187,5.19491 +L 5.187,5.19491,4.7944,6.368632 +L 4.7944,6.368632,4.6438,6.204842 +L 4.6438,6.204842,4.497,6.024072 +L 4.497,6.024072,4.3675,5.834764 +L 7.3267,0,6.5004,1.60169 +L 3.9363,1.60169,3.6179,2.40263 +L 3.6179,2.40263,3.3374,3.432137 +L 3.3374,3.432137,2.8716,4.233082 +L 2.8716,4.233082,2.4443,3.799457 +L 2.4443,3.799457,2.2831,3.255701 +L 2.2831,3.255701,2.2621,2.135557 +L 6.5004,2.936398,6.7803,3.591794 +L 6.7803,3.591794,6.8819,4.620076 +L 6.8819,4.620076,6.8994,6.902574 +L 6.8994,6.902574,4.7944,6.902574 +L 1.4114,4.233082,1.1067,4.668158 +L 1.1067,4.668158,0.9946,5.221791 +L 0.9946,5.221791,0.9802,6.368632 +L 0.9802,6.368632,3.5164,6.368632 +L 3.5164,6.368632,3.5164,4.767031 +L 3.5164,4.767031,3.7857,4.603154 +L 3.7857,4.603154,4.0694,4.422384 +L 4.0694,4.422384,4.3675,4.233082 +L 1.8352,4.233082,2.1325,4.648363 +L 2.1325,4.648363,2.2446,5.06359 +L 2.2446,5.06359,2.2621,5.834764 +L 0.126,6.902574,0.4023,7.615876 +L 0.4023,7.615876,0.686,8.312169 +L 0.686,8.312169,0.9802,9.000029 +L 5.2217,7.436447,5.2217,9.000029 +L 1.4114,7.932191,3.9363,7.932191 + +[瓶] 43 +L 0.1592,0.26698,0.4323,1.411031 +L 0.4323,1.411031,0.7129,2.555156 +L 0.7129,2.555156,1.0103,3.699216 +L 1.0103,3.699216,0.7129,3.888425 +L 0.7129,3.888425,0.4323,4.069206 +L 0.4323,4.069206,0.1592,4.233082 +L 2.2641,0,2.2641,3.699216 +L 2.2641,3.699216,1.8337,4.069206 +L 1.8337,4.069206,1.413,4.422384 +L 1.413,4.422384,1.0103,4.767031 +L 1.0103,4.767031,1.0103,6.902574 +L 1.0103,6.902574,0.1592,6.902574 +L 3.1152,0,3.9733,0 +L 3.9733,0,4.0823,2.203428 +L 4.0823,2.203428,4.2885,4.508501 +L 4.2885,4.508501,4.3936,8.466074 +L 4.3936,8.466074,3.5425,8.466074 +L 4.3936,0.533968,5.1221,0.672306 +L 5.1221,0.672306,5.7596,0.9294 +L 5.7596,0.9294,6.5056,1.067824 +L 6.5056,1.067824,6.3935,2.094556 +L 6.3935,2.094556,6.1872,3.587564 +L 6.1872,3.587564,6.0751,6.368632 +L 6.0751,6.368632,4.8244,6.368632 +L 7.1399,0.533968,7.2061,0.903947 +L 7.2061,0.903947,7.2726,1.257131 +L 7.2726,1.257131,7.3567,1.60169 +L 5.2202,3.966102,5.0766,4.233082 +L 5.0766,4.233082,4.947,4.500056 +L 4.947,4.500056,4.8244,4.767031 +L 2.6848,4.233082,2.3906,4.668158 +L 2.3906,4.668158,2.2781,5.221791 +L 2.2781,5.221791,2.2641,6.368632 +L 2.2641,6.368632,1.9668,6.557949 +L 1.9668,6.557949,1.6862,6.738725 +L 1.6862,6.738725,1.4099,6.902574 +L 2.6848,6.902574,2.4042,7.514201 +L 2.4042,7.514201,2.4042,8.057957 +L 2.4042,8.057957,2.6848,9.000029 +L 1.0103,8.199182,0.8596,8.466074 +L 0.8596,8.466074,0.7129,8.73313 +L 0.7129,8.73313,0.583,9.000029 +L 4.8244,8.466074,7.3567,8.466074 + +[怖] 24 +L 1.436,0,1.436,9.000029 +L 5.2537,0,5.3028,2.829064 +L 5.3028,2.829064,4.9844,4.327648 +L 4.9844,4.327648,3.5725,4.767031 +L 3.5725,4.767031,3.5725,1.60169 +L 6.1052,1.60169,6.9629,1.60169 +L 6.9629,1.60169,6.9629,4.767031 +L 6.9629,4.767031,5.8145,4.868701 +L 5.8145,4.868701,5.3413,5.326241 +L 5.3413,5.326241,5.2537,6.368632 +L 2.291,3.699216,2.844,4.870047 +L 2.844,4.870047,3.3974,6.024072 +L 3.3974,6.024072,3.9683,7.169472 +L 3.9683,7.169472,3.5449,7.272663 +L 3.5449,7.272663,3.1242,7.35878 +L 3.1242,7.35878,2.7214,7.436447 +L 2.7214,7.436447,2.5673,7.091817 +L 2.5673,7.091817,2.4241,6.738725 +L 2.4241,6.738725,2.291,6.368632 +L 0.1577,5.033918,0.4554,5.656786 +L 0.4554,5.656786,0.5674,6.279734 +L 0.5674,6.279734,0.585,7.436447 +L 4.3991,7.436447,4.3991,9.000029 +L 4.8229,7.436447,7.3867,7.436447 + +[扶] 30 +L 0.6153,0,1.4699,0 +L 1.4699,0,1.4556,2.62295 +L 1.4556,2.62295,1.3438,3.720334 +L 1.3438,3.720334,1.0426,4.233082 +L 1.0426,4.233082,0.7446,4.069206 +L 0.7446,4.069206,0.4609,3.888425 +L 0.4609,3.888425,0.1915,3.699216 +L 3.1476,0,3.8477,1.247174 +L 3.8477,1.247174,4.5552,2.477424 +L 4.5552,2.477424,5.2802,3.699216 +L 5.2802,3.699216,4.916,4.074876 +L 4.916,4.074876,4.3629,4.213304 +L 4.3629,4.213304,3.1476,4.233082 +L 7.3887,0,6.8178,1.06639 +L 6.8178,1.06639,6.2574,2.124322 +L 6.2574,2.124322,5.711,3.165256 +L 1.8972,4.233082,1.3715,5.518444 +L 1.3715,5.518444,1.1789,6.507153 +L 1.1789,6.507153,0.1915,6.902574 +L 5.711,4.233082,5.116,5.637094 +L 5.116,5.637094,4.902,6.566388 +L 4.902,6.566388,3.5749,6.902574 +L 6.1348,4.233082,7.3887,4.233082 +L 1.8972,6.902574,1.5957,7.336221 +L 1.5957,7.336221,1.4836,7.879961 +L 1.4836,7.879961,1.4699,9.000029 +L 5.711,6.902574,5.4098,7.336221 +L 5.4098,7.336221,5.2981,7.879961 +L 5.2981,7.879961,5.2802,9.000029 +L 6.1348,6.902574,6.9614,6.902574 + +[敷] 61 +L 0.2177,0,1.1007,1.560788 +L 1.1007,1.560788,1.4225,2.519754 +L 1.4225,2.519754,1.4649,3.699216 +L 1.4649,3.699216,0.2177,3.699216 +L 1.8957,0,2.8796,0.257088 +L 2.8796,0.257088,3.1738,0.988723 +L 3.1738,0.988723,3.1738,2.135557 +L 3.1738,2.135557,1.8957,2.135557 +L 4.0319,0,4.5821,0.903947 +L 4.5821,0.903947,5.1355,1.790998 +L 5.1355,1.790998,5.7095,2.669511 +L 5.7095,2.669511,5.1036,3.848885 +L 5.1036,3.848885,4.8273,4.807944 +L 4.8273,4.807944,4.6451,6.368632 +L 4.6451,6.368632,4.428,6.204842 +L 4.428,6.204842,4.2248,6.024072 +L 4.2248,6.024072,4.0319,5.834764 +L 7.4191,0,6.9918,0.723177 +L 6.9918,0.723177,6.5641,1.437896 +L 6.5641,1.437896,6.1368,2.135557 +L 6.1368,3.432137,6.438,4.094653 +L 6.438,4.094653,6.5505,4.994373 +L 6.5505,4.994373,6.5641,6.902574 +L 6.5641,6.902574,5.9866,7.005695 +L 5.9866,7.005695,5.4157,7.091817 +L 5.4157,7.091817,4.8549,7.169472 +L 4.8549,7.169472,4.9884,7.779753 +L 4.9884,7.779753,5.132,8.389918 +L 5.132,8.389918,5.2857,9.000029 +L 1.8957,3.966102,1.5665,4.529619 +L 1.5665,4.529619,1.2404,4.737277 +L 1.2404,4.737277,0.6485,4.767031 +L 0.6485,4.767031,0.6485,6.902574 +L 0.6485,6.902574,1.2404,6.922363 +L 1.2404,6.922363,1.5665,7.060804 +L 1.5665,7.060804,1.8957,7.436447 +L 1.8957,7.436447,1.549,7.785318 +L 1.549,7.785318,1.1143,7.913853 +L 1.1143,7.913853,0.2177,7.932191 +L 2.323,3.699216,3.6046,3.699216 +L 2.323,4.767031,1.8957,5.137021 +L 1.8957,5.137021,1.4649,5.490118 +L 1.4649,5.490118,1.0446,5.834764 +L 2.964,4.767031,3.0235,5.137021 +L 3.0235,5.137021,3.0967,5.490118 +L 3.0967,5.490118,3.1738,5.834764 +L 3.1738,5.834764,2.5612,5.854537 +L 2.5612,5.854537,2.2281,5.992966 +L 2.2281,5.992966,1.8957,6.368632 +L 1.8957,6.368632,2.2281,6.724601 +L 2.2281,6.724601,2.5612,6.724601 +L 2.5612,6.724601,3.1738,6.368632 +L 2.323,7.932191,2.1721,8.302275 +L 2.1721,8.302275,2.025,8.655365 +L 2.025,8.655365,1.8957,9.000029 +L 2.7535,7.932191,3.0235,8.035388 +L 3.0235,8.035388,3.3072,8.121427 +L 3.3072,8.121427,3.6046,8.199182 +L 3.6046,8.199182,3.4543,8.466074 +L 3.4543,8.466074,3.3072,8.73313 +L 3.3072,8.73313,3.1738,9.000029 + +[浮] 27 +L 0.2165,0.26698,1.5016,3.699216 +L 3.6031,0,4.885,0 +L 4.885,0,4.6923,2.183639 +L 4.6923,2.183639,3.9288,2.723181 +L 3.9288,2.723181,2.3527,2.669511 +L 5.3126,2.669511,5.1617,2.935046 +L 5.1617,2.935046,5.0181,3.192137 +L 5.0181,3.192137,4.885,3.432137 +L 4.885,3.432137,6.1672,5.033918 +L 6.1672,5.033918,5.0391,5.137021 +L 5.0391,5.137021,3.9113,5.223231 +L 3.9113,5.223231,2.7803,5.300794 +L 5.7434,2.669511,7.4176,2.669511 +L 1.0708,5.834764,0.2165,6.902574 +L 3.6031,6.635611,3.463,7.005695 +L 3.463,7.005695,3.3337,7.35878 +L 3.3337,7.35878,3.2111,7.703426 +L 3.2111,7.703426,4.8468,7.992981 +L 4.8468,7.992981,5.9322,8.240167 +L 5.9322,8.240167,7.0215,8.199182 +L 7.0215,8.199182,6.7276,7.588995 +L 6.7276,7.588995,6.4436,6.978802 +L 6.4436,6.978802,6.1672,6.368632 +L 4.885,6.635611,4.7344,6.902574 +L 4.7344,6.902574,4.5876,7.169472 +L 4.5876,7.169472,4.4577,7.436447 +L 1.5016,7.932191,0.647,9.000029 + +[腐] 39 +L 0.2501,0.26698,0.9152,2.923723 +L 0.9152,2.923723,1.1047,5.300794 +L 1.1047,5.300794,1.1047,7.932191 +L 1.1047,7.932191,4.0607,7.932191 +L 4.0607,7.932191,4.0607,9.000029 +L 2.355,0,2.355,3.699216 +L 2.355,3.699216,6.5962,3.699216 +L 6.5962,3.699216,6.5962,0 +L 6.5962,0,4.4912,1.60169 +L 4.4912,1.60169,4.0607,1.257131 +L 4.0607,1.257131,3.6369,0.903947 +L 3.6369,0.903947,3.2061,0.533968 +L 3.4194,2.135557,3.7662,2.478754 +L 3.7662,2.478754,4.1269,2.822048 +L 4.1269,2.822048,4.4912,3.165256 +L 4.4912,3.165256,4.8943,2.822048 +L 4.8943,2.822048,5.3146,2.478754 +L 5.3146,2.478754,5.7419,2.135557 +L 2.7823,4.767031,2.7018,5.300794 +L 2.7018,5.300794,2.6279,5.834764 +L 2.6279,5.834764,2.5683,6.368632 +L 2.5683,6.368632,2.355,6.204842 +L 2.355,6.204842,2.141,6.024072 +L 2.141,6.024072,1.9274,5.834764 +L 5.3423,4.767031,6.1657,4.767031 +L 6.1657,4.767031,6.1513,5.538123 +L 6.1513,5.538123,6.0396,5.953432 +L 6.0396,5.953432,5.7419,6.368632 +L 5.7419,6.368632,5.1672,6.290969 +L 5.1672,6.290969,4.6138,6.204842 +L 4.6138,6.204842,4.0607,6.101744 +L 4.0607,6.101744,4.1935,5.834764 +L 4.1935,5.834764,4.3371,5.567784 +L 4.3371,5.567784,4.4912,5.300794 +L 6.5962,6.368632,6.2949,6.782571 +L 6.2949,6.782571,6.1832,7.18781 +L 6.1832,7.18781,6.1657,7.932191 +L 6.1657,7.932191,4.4912,7.932191 +L 6.5962,7.932191,7.4473,7.932191 + +[譜] 23 +L 0.6759,0,0.6759,2.135557 +L 0.6759,2.135557,2.3847,2.135557 +L 2.3847,2.135557,2.3847,0 +L 2.3847,0,0.6759,0 +L 4.0939,0,4.0939,3.699216 +L 4.0939,3.699216,6.6265,3.699216 +L 6.6265,3.699216,6.6265,0 +L 6.6265,0,4.0939,0 +L 4.4897,2.135557,6.1989,2.135557 +L 0.6759,3.699216,2.3847,3.699216 +L 0.6759,5.300794,2.3847,5.300794 +L 3.2393,5.300794,4.917,5.300794 +L 4.917,5.300794,4.917,7.932191 +L 4.917,7.932191,3.6631,7.932191 +L 5.5583,5.300794,5.4742,6.177978 +L 5.4742,6.177978,5.4038,7.055128 +L 5.4038,7.055128,5.3443,7.932191 +L 6.1989,5.300794,7.4811,5.300794 +L 0.2797,6.902574,2.812,6.902574 +L 6.1989,8.199182,6.3253,8.466074 +L 6.3253,8.466074,6.4756,8.73313 +L 6.4756,8.73313,6.6265,9.000029 +L 0.6759,8.466074,2.3847,8.466074 + +[賦] 51 +L 0.2817,0,0.4113,0.370091 +L 0.4113,0.370091,0.5553,0.723177 +L 0.5553,0.723177,0.7024,1.067824 +L 7.0485,0,6.2643,1.394126 +L 6.2643,1.394126,5.8927,2.839052 +L 5.8927,2.839052,5.8019,4.233082 +L 5.8019,4.233082,5.3746,4.233082 +L 5.3746,4.233082,4.9473,4.233082 +L 4.9473,4.233082,4.5236,4.233082 +L 4.5236,4.233082,4.5236,3.356014 +L 4.5236,3.356014,4.5236,2.478754 +L 4.5236,2.478754,4.5236,1.60169 +L 4.5236,1.60169,4.7932,1.60169 +L 4.7932,1.60169,5.0766,1.60169 +L 5.0766,1.60169,5.3746,1.60169 +L 7.4796,0,7.4796,0.533968 +L 7.4796,0.533968,7.4796,1.067824 +L 7.4796,1.067824,7.4796,1.60169 +L 3.0245,1.067824,3.0875,2.134211 +L 3.0875,2.134211,3.1537,3.192137 +L 3.1537,3.192137,3.2378,4.233082 +L 3.6651,1.067824,3.9421,1.067824 +L 3.9421,1.067824,4.2258,1.067824 +L 4.2258,1.067824,4.5236,1.067824 +L 0.7024,2.135557,0.7024,4.25987 +L 0.7024,4.25987,0.7024,6.367268 +L 0.7024,6.367268,0.7024,8.466074 +L 0.7024,8.466074,1.1328,8.466074 +L 1.1328,8.466074,1.5601,8.466074 +L 1.5601,8.466074,1.9913,8.466074 +L 1.9913,8.466074,1.9913,6.367268 +L 1.9913,6.367268,1.9913,4.25987 +L 1.9913,4.25987,1.9913,2.135557 +L 1.9913,2.135557,1.5601,2.135557 +L 1.5601,2.135557,1.1328,2.135557 +L 1.1328,2.135557,0.7024,2.135557 +L 5.8019,4.767031,5.2906,6.300853 +L 5.2906,6.300853,4.1134,6.512811 +L 4.1134,6.512811,2.8105,6.368632 +L 6.2292,6.368632,5.9277,6.822034 +L 5.9277,6.822034,5.8156,7.504323 +L 5.8156,7.504323,5.8019,9.000029 +L 6.6562,6.368632,6.9332,6.368632 +L 6.9332,6.368632,7.2026,6.368632 +L 7.2026,6.368632,7.4796,6.368632 +L 7.4796,7.436447,7.2026,7.779753 +L 7.2026,7.779753,6.9332,8.122949 +L 6.9332,8.122949,6.6562,8.466074 +L 3.2378,7.932191,3.7985,7.932191 +L 3.7985,7.932191,4.3691,7.932191 +L 4.3691,7.932191,4.9473,7.932191 + +[赴] 33 +L 0.3083,0,0.9107,1.204832 +L 0.9107,1.204832,1.1313,2.163861 +L 1.1313,2.163861,1.1593,3.699216 +L 2.8405,0,2.4171,0.370091 +L 2.4171,0.370091,1.9859,0.723177 +L 1.9859,0.723177,1.5621,1.067824 +L 3.2717,0,4.6758,0 +L 4.6758,0,6.0841,0 +L 6.0841,0,7.5058,0 +L 2.4171,1.067824,2.4031,3.944968 +L 2.4031,3.944968,1.9302,5.093251 +L 1.9302,5.093251,0.3083,5.300794 +L 5.8004,1.067824,5.8004,3.726004 +L 5.8004,3.726004,5.8004,6.367268 +L 5.8004,6.367268,5.8004,9.000029 +L 2.8405,3.165256,3.2717,3.165256 +L 3.2717,3.165256,3.6955,3.165256 +L 3.6955,3.165256,4.1228,3.165256 +L 7.5058,4.233082,7.0855,4.603154 +L 7.0855,4.603154,6.655,4.956251 +L 6.655,4.956251,6.2277,5.300794 +L 2.8405,5.300794,2.1821,6.58338 +L 2.1821,6.58338,1.9302,7.247139 +L 1.9302,7.247139,0.7394,7.436447 +L 3.2717,5.300794,3.6955,5.300794 +L 3.6955,5.300794,4.1228,5.300794 +L 4.1228,5.300794,4.5501,5.300794 +L 2.8405,7.436447,2.5432,7.824863 +L 2.5432,7.824863,2.4307,8.230277 +L 2.4307,8.230277,2.4171,9.000029 +L 3.2717,7.436447,3.5445,7.436447 +L 3.5445,7.436447,3.8247,7.436447 +L 3.8247,7.436447,4.1228,7.436447 + +[附] 33 +L 0.3141,0,0.3141,2.822048 +L 0.3141,2.822048,0.3141,5.64411 +L 0.3141,5.64411,0.3141,8.466074 +L 0.3141,8.466074,0.8671,8.466074 +L 0.8671,8.466074,1.4415,8.466074 +L 1.4415,8.466074,2.0198,8.466074 +L 2.0198,8.466074,1.5746,6.09041 +L 1.5746,6.09041,1.7956,4.816388 +L 1.7956,4.816388,2.0198,2.669511 +L 2.0198,2.669511,1.7217,2.505635 +L 1.7217,2.505635,1.4415,2.324881 +L 1.4415,2.324881,1.1652,2.135557 +L 3.2978,0,3.2173,1.781109 +L 3.2173,1.781109,3.1511,3.545228 +L 3.1511,3.545228,3.088,5.300794 +L 3.088,5.300794,2.874,5.137021 +L 2.874,5.137021,2.6569,4.956251 +L 2.6569,4.956251,2.4436,4.767031 +L 5.8336,0,6.1072,0 +L 6.1072,0,6.394,0 +L 6.394,0,6.6847,0 +L 6.6847,0,6.7971,4.091851 +L 6.7971,4.091851,6.3345,5.937868 +L 6.3345,5.937868,4.1248,6.368632 +L 5.4063,3.699216,5.1051,4.069206 +L 5.1051,4.069206,4.8253,4.422384 +L 4.8253,4.422384,4.5486,4.767031 +L 3.2978,5.834764,3.4103,7.129922 +L 3.4103,7.129922,3.6201,8.060758 +L 3.6201,8.060758,3.7286,9.000029 +L 7.1124,6.368632,6.8147,6.822034 +L 6.8147,6.822034,6.7022,7.504323 +L 6.7022,7.504323,6.6847,9.000029 + +[侮] 51 +L 1.1914,0,1.1143,1.944887 +L 1.1143,1.944887,1.0411,3.88988 +L 1.0411,3.88988,0.9816,5.834764 +L 0.9816,5.834764,0.7711,5.670986 +L 0.7711,5.670986,0.5543,5.490118 +L 0.5543,5.490118,0.3403,5.300794 +L 5.0094,0,5.8566,0.161003 +L 5.8566,0.161003,6.2139,0.677968 +L 6.2139,0.677968,6.2913,1.60169 +L 6.2913,1.60169,5.1421,1.60169 +L 5.1421,1.60169,4.0038,1.60169 +L 4.0038,1.60169,2.8725,1.60169 +L 2.8725,1.60169,2.8725,2.478754 +L 2.8725,2.478754,2.8725,3.356014 +L 2.8725,3.356014,2.8725,4.233082 +L 2.8725,4.233082,2.5958,4.233082 +L 2.5958,4.233082,2.323,4.233082 +L 2.323,4.233082,2.0495,4.233082 +L 6.6867,1.60169,6.6696,3.097483 +L 6.6696,3.097483,6.568,3.779662 +L 6.568,3.779662,6.2913,4.233082 +L 6.2913,4.233082,5.713,4.233082 +L 5.713,4.233082,5.1421,4.233082 +L 5.1421,4.233082,4.5821,4.233082 +L 4.5821,4.233082,4.5821,3.545228 +L 4.5821,3.545228,4.5821,2.848848 +L 4.5821,2.848848,4.5821,2.135557 +L 3.2963,4.233082,3.2963,4.956251 +L 3.2963,4.956251,3.2963,5.670986 +L 3.2963,5.670986,3.2963,6.368632 +L 3.2963,6.368632,4.428,6.368632 +L 4.428,6.368632,5.5593,6.368632 +L 5.5593,6.368632,6.6867,6.368632 +L 6.6867,6.368632,6.6867,5.834764 +L 6.6867,5.834764,6.6867,5.300794 +L 6.6867,5.300794,6.6867,4.767031 +L 6.6867,4.767031,6.9599,4.603154 +L 6.9599,4.603154,7.2436,4.422384 +L 7.2436,4.422384,7.5382,4.233082 +L 5.0094,4.767031,5.0094,5.137021 +L 5.0094,5.137021,5.0094,5.490118 +L 5.0094,5.490118,5.0094,5.834764 +L 1.1914,6.635611,1.4719,7.435105 +L 1.4719,7.435105,1.7521,8.226042 +L 1.7521,8.226042,2.0495,9.000029 +L 2.4452,6.902574,2.7223,7.615876 +L 2.7223,7.615876,3.006,8.312169 +L 3.006,8.312169,3.2963,9.000029 +L 3.7271,7.932191,4.9884,7.932191 +L 4.9884,7.932191,6.2594,7.932191 +L 6.2594,7.932191,7.5382,7.932191 + +[舞] 69 +L 0.5839,0,1.0743,0.456202 +L 1.0743,0.456202,1.5611,0.903947 +L 1.5611,0.903947,2.0518,1.334809 +L 2.0518,1.334809,1.6802,1.790998 +L 1.6802,1.790998,1.3268,2.238754 +L 1.3268,2.238754,0.9801,2.669511 +L 0.9801,2.669511,0.7696,2.505635 +L 0.7696,2.505635,0.5664,2.324881 +L 0.5664,2.324881,0.3703,2.135557 +L 6.2863,0,5.8835,1.483039 +L 5.8835,1.483039,4.9165,1.720347 +L 4.9165,1.720347,3.761,1.60169 +L 2.4753,1.60169,2.752,2.057978 +L 2.752,2.057978,3.0357,2.505635 +L 3.0357,2.505635,3.3302,2.936398 +L 3.3302,2.936398,2.6052,3.012713 +L 2.6052,3.012713,1.8977,3.088941 +L 1.8977,3.088941,1.1934,3.165256 +L 6.7167,1.60169,6.419,2.134211 +L 6.419,2.134211,6.1388,2.658178 +L 6.1388,2.658178,5.866,3.165256 +L 5.866,3.165256,5.4352,3.165256 +L 5.4352,3.165256,5.0149,3.165256 +L 5.0149,3.165256,4.6118,3.165256 +L 4.6118,3.165256,4.6118,2.822048 +L 4.6118,2.822048,4.6118,2.478754 +L 4.6118,2.478754,4.6118,2.135557 +L 6.7167,3.165256,6.4155,3.580554 +L 6.4155,3.580554,6.3038,3.995857 +L 6.3038,3.995857,6.2863,4.767031 +L 6.2863,4.767031,4.7343,4.767031 +L 4.7343,4.767031,3.1758,4.767031 +L 3.1758,4.767031,1.6207,4.767031 +L 1.6207,4.767031,1.6207,4.422384 +L 1.6207,4.422384,1.6207,4.069206 +L 1.6207,4.069206,1.6207,3.699216 +L 2.0518,5.567784,1.7047,6.131405 +L 1.7047,6.131405,1.2673,6.338965 +L 1.2673,6.338965,0.3703,6.368632 +L 3.3302,5.567784,2.4262,6.545264 +L 2.4262,6.545264,2.0973,7.158237 +L 2.0973,7.158237,2.0518,7.932191 +L 2.0518,7.932191,1.6207,7.77822 +L 1.6207,7.77822,1.2004,7.615876 +L 1.2004,7.615876,0.7979,7.436447 +L 4.6118,5.567784,3.712,6.545264 +L 3.712,6.545264,3.3789,7.158237 +L 3.3789,7.158237,3.3302,7.932191 +L 3.3302,7.932191,3.0357,7.932191 +L 3.0357,7.932191,2.752,7.932191 +L 2.752,7.932191,2.4753,7.932191 +L 5.866,5.567784,4.983,6.545264 +L 4.983,6.545264,4.6608,7.158237 +L 4.6608,7.158237,4.6118,7.932191 +L 4.6118,7.932191,4.3141,7.932191 +L 4.3141,7.932191,4.0304,7.932191 +L 4.0304,7.932191,3.761,7.932191 +L 6.2863,6.368632,5.9917,6.782571 +L 5.9917,6.782571,5.88,7.18781 +L 5.88,7.18781,5.866,7.932191 +L 5.866,7.932191,5.5679,7.932191 +L 5.5679,7.932191,5.2842,7.932191 +L 5.2842,7.932191,5.0079,7.932191 +L 6.7167,6.368632,6.9938,6.368632 +L 6.9938,6.368632,7.2775,6.368632 +L 7.2775,6.368632,7.5748,6.368632 +L 6.2863,7.932191,6.5665,7.932191 +L 6.5665,7.932191,6.8463,7.932191 +L 6.8463,7.932191,7.144,7.932191 + +[封] 36 +L 0.3726,0,0.9292,0 +L 0.9292,0,1.5036,0 +L 1.5036,0,2.0783,0 +L 2.0783,0,2.05,1.692026 +L 2.05,1.692026,1.7417,2.477424 +L 1.7417,2.477424,0.7999,2.669511 +L 5.4649,0,5.8922,0 +L 5.8922,0,6.3233,0 +L 6.3233,0,6.7433,0 +L 6.7433,0,6.8557,4.091851 +L 6.8557,4.091851,6.3965,5.937868 +L 6.3965,5.937868,4.1833,6.368632 +L 2.5088,0.533968,2.9116,0.533968 +L 2.9116,0.533968,3.3322,0.533968 +L 3.3322,0.533968,3.7595,0.533968 +L 2.5088,2.669511,2.2076,3.057933 +L 2.2076,3.057933,2.0958,3.463249 +L 2.0958,3.463249,2.0783,4.233082 +L 5.0376,3.966102,4.8873,4.233082 +L 4.8873,4.233082,4.7434,4.500056 +L 4.7434,4.500056,4.6138,4.767031 +L 0.3726,5.300794,0.9292,5.300794 +L 0.9292,5.300794,1.5036,5.300794 +L 1.5036,5.300794,2.0783,5.300794 +L 2.0783,5.300794,1.9978,6.735836 +L 1.9978,6.735836,1.63,7.323448 +L 1.63,7.323448,0.7999,7.436447 +L 2.5088,5.300794,2.9116,5.300794 +L 2.9116,5.300794,3.3322,5.300794 +L 3.3322,5.300794,3.7595,5.300794 +L 7.1744,6.368632,6.8732,6.822034 +L 6.8732,6.822034,6.7608,7.504323 +L 6.7608,7.504323,6.7433,9.000029 +L 2.5088,7.436447,2.2076,7.824863 +L 2.2076,7.824863,2.0958,8.230277 +L 2.0958,8.230277,2.0783,9.000029 + +[伏] 27 +L 1.2569,0,1.1764,1.944887 +L 1.1764,1.944887,1.1032,3.88988 +L 1.1032,3.88988,1.0436,5.834764 +L 1.0436,5.834764,0.8296,5.670986 +L 0.8296,5.670986,0.6163,5.490118 +L 0.6163,5.490118,0.4023,5.300794 +L 2.5073,0,3.7405,2.153901 +L 3.7405,2.153901,4.406,3.528334 +L 4.406,3.528334,5.0714,5.300794 +L 5.0714,5.300794,4.6928,5.676563 +L 4.6928,5.676563,4.0242,5.814986 +L 4.0242,5.814986,2.5073,5.834764 +L 7.6037,0,6.3884,2.134211 +L 6.3884,2.134211,5.842,3.370035 +L 5.842,3.370035,5.4952,4.767031 +L 5.4952,5.834764,5.1975,6.307858 +L 5.1975,6.307858,5.0851,7.128559 +L 5.0851,7.128559,5.0714,9.000029 +L 5.898,5.834764,6.4514,5.834764 +L 6.4514,5.834764,7.0254,5.834764 +L 7.0254,5.834764,7.6037,5.834764 +L 1.2569,6.635611,1.5305,7.435105 +L 1.5305,7.435105,1.8068,8.226042 +L 1.8068,8.226042,2.0768,9.000029 +L 7.1726,7.436447,6.8787,7.779753 +L 6.8787,7.779753,6.5981,8.122949 +L 6.5981,8.122949,6.318,8.466074 + +[幅] 51 +L 1.2554,0,1.2554,2.314975 +L 1.2554,2.314975,1.2554,4.613038 +L 1.2554,4.613038,1.2554,6.902574 +L 1.2554,6.902574,1.0421,7.091817 +L 1.0421,7.091817,0.8281,7.272663 +L 0.8281,7.272663,0.6183,7.436447 +L 0.6183,7.436447,0.5553,5.680876 +L 0.5553,5.680876,0.4957,3.916658 +L 0.4957,3.916658,0.4288,2.135557 +L 3.8196,0,3.8196,1.247174 +L 3.8196,1.247174,3.8196,2.477424 +L 3.8196,2.477424,3.8196,3.699216 +L 3.8196,3.699216,4.9508,3.699216 +L 4.9508,3.699216,6.0748,3.699216 +L 6.0748,3.699216,7.2061,3.699216 +L 7.2061,3.699216,7.2061,2.477424 +L 7.2061,2.477424,7.2061,1.247174 +L 7.2061,1.247174,7.2061,0 +L 7.2061,0,6.0748,0 +L 6.0748,0,4.9508,0 +L 4.9508,0,3.8196,0 +L 5.4972,0.533968,5.3536,1.728791 +L 5.3536,1.728791,4.94,2.110202 +L 4.94,2.110202,4.2469,2.135557 +L 2.5412,2.135557,2.5412,3.916658 +L 2.5412,3.916658,2.5412,5.680876 +L 2.5412,5.680876,2.5412,7.436447 +L 2.5412,7.436447,1.9209,7.454786 +L 1.9209,7.454786,1.5885,7.583336 +L 1.5885,7.583336,1.2554,7.932191 +L 1.2554,7.932191,1.2554,8.302275 +L 1.2554,8.302275,1.2554,8.655365 +L 1.2554,8.655365,1.2554,9.000029 +L 5.9245,2.135557,5.7736,2.478754 +L 5.7736,2.478754,5.6265,2.822048 +L 5.6265,2.822048,5.4972,3.165256 +L 4.2469,5.300794,4.2469,5.834764 +L 4.2469,5.834764,4.2469,6.368632 +L 4.2469,6.368632,4.2469,6.902574 +L 4.2469,6.902574,5.0801,6.902574 +L 5.0801,6.902574,5.9245,6.902574 +L 5.9245,6.902574,6.7756,6.902574 +L 6.7756,6.902574,6.7756,6.368632 +L 6.7756,6.368632,6.7756,5.834764 +L 6.7756,5.834764,6.7756,5.300794 +L 6.7756,5.300794,5.9245,5.300794 +L 5.9245,5.300794,5.0801,5.300794 +L 5.0801,5.300794,4.2469,5.300794 +L 3.3923,8.466074,4.7964,8.466074 +L 4.7964,8.466074,6.2047,8.466074 +L 6.2047,8.466074,7.6334,8.466074 + +[覆] 87 +L 1.7131,0,1.629,0.903947 +L 1.629,0.903947,1.5621,1.790998 +L 1.5621,1.790998,1.4991,2.669511 +L 1.4991,2.669511,1.2893,2.505635 +L 1.2893,2.505635,1.0753,2.324881 +L 1.0753,2.324881,0.8585,2.135557 +L 3.3943,0,4.308,0.029667 +L 4.308,0.029667,4.7532,0.237332 +L 4.7532,0.237332,5.1031,0.800849 +L 5.1031,0.800849,4.8898,1.067824 +L 4.8898,1.067824,4.6723,1.334809 +L 4.6723,1.334809,4.4586,1.60169 +L 4.4586,1.60169,4.0944,1.437896 +L 4.0944,1.437896,3.7375,1.257131 +L 3.7375,1.257131,3.3943,1.067824 +L 6.3815,0,6.0841,0.189316 +L 6.0841,0.189316,5.8039,0.370091 +L 5.8039,0.370091,5.5234,0.533968 +L 6.8126,0,7.082,0 +L 7.082,0,7.359,0 +L 7.359,0,7.6284,0 +L 6.3815,1.067824,6.5146,1.334809 +L 6.5146,1.334809,6.655,1.60169 +L 6.655,1.60169,6.8126,1.868659 +L 6.8126,1.868659,6.0841,1.971779 +L 6.0841,1.971779,5.3766,2.057978 +L 5.3766,2.057978,4.6723,2.135557 +L 4.6723,2.135557,4.4586,3.012713 +L 4.4586,3.012713,4.2453,3.88988 +L 4.2453,3.88988,4.0313,4.767031 +L 4.0313,4.767031,3.818,4.603154 +L 3.818,4.603154,3.6076,4.422384 +L 3.6076,4.422384,3.3943,4.233082 +L 1.7131,3.165256,1.8423,3.535339 +L 1.8423,3.535339,1.9894,3.888425 +L 1.9894,3.888425,2.1404,4.233082 +L 5.1031,3.165256,5.6568,3.165256 +L 5.6568,3.165256,6.2312,3.165256 +L 6.2312,3.165256,6.8126,3.165256 +L 6.8126,3.165256,6.8126,3.535339 +L 6.8126,3.535339,6.8126,3.888425 +L 6.8126,3.888425,6.8126,4.233082 +L 6.8126,4.233082,6.0841,4.233082 +L 6.0841,4.233082,5.3766,4.233082 +L 5.3766,4.233082,4.6723,4.233082 +L 0.8585,4.233082,1.4605,5.024029 +L 1.4605,5.024029,1.6812,5.577662 +L 1.6812,5.577662,1.7131,6.368632 +L 1.7131,6.368632,1.4185,6.368632 +L 1.4185,6.368632,1.1348,6.368632 +L 1.1348,6.368632,0.8585,6.368632 +L 0.8585,6.368632,0.8585,6.738725 +L 0.8585,6.738725,0.8585,7.091817 +L 0.8585,7.091817,0.8585,7.436447 +L 0.8585,7.436447,2.1999,7.642653 +L 2.1999,7.642653,2.7428,7.84052 +L 2.7428,7.84052,2.9635,8.199182 +L 2.9635,8.199182,2.112,8.302275 +L 2.112,8.302275,1.2648,8.388396 +L 1.2648,8.388396,0.4347,8.466074 +L 6.8126,5.033918,5.9542,5.137021 +L 5.9542,5.137021,5.1031,5.223231 +L 5.1031,5.223231,4.2453,5.300794 +L 4.2453,5.300794,4.2453,5.670986 +L 4.2453,5.670986,4.2453,6.024072 +L 4.2453,6.024072,4.2453,6.368632 +L 4.2453,6.368632,3.5445,6.368632 +L 3.5445,6.368632,2.8444,6.368632 +L 2.8444,6.368632,2.1404,6.368632 +L 4.8898,6.368632,5.0225,6.586167 +L 5.0225,6.586167,4.9669,6.863035 +L 4.9669,6.863035,4.6723,7.436447 +L 4.6723,7.436447,3.755,7.416674 +L 3.755,7.416674,3.3137,7.278339 +L 3.3137,7.278339,2.9635,6.902574 +L 5.5234,6.368632,6.0768,6.368632 +L 6.0768,6.368632,6.634,6.368632 +L 6.634,6.368632,7.2046,6.368632 +L 7.2046,6.368632,7.2046,6.738725 +L 7.2046,6.738725,7.2046,7.091817 +L 7.2046,7.091817,7.2046,7.436447 +L 7.2046,7.436447,5.8491,7.644092 +L 5.8491,7.644092,4.7672,8.080515 +L 4.7672,8.080515,3.3943,8.466074 +L 5.5234,8.466074,6.2277,8.466074 +L 6.2277,8.466074,6.9279,8.466074 +L 6.9279,8.466074,7.6284,8.466074 + +[沸] 45 +L 0.4612,0,0.685,1.55513 +L 0.685,1.55513,1.0948,2.957615 +L 1.0948,2.957615,1.3154,4.233082 +L 2.7795,0,3.8376,1.540923 +L 3.8376,1.540923,4.2193,2.361629 +L 4.2193,2.361629,4.275,3.165256 +L 4.275,3.165256,3.9458,3.541009 +L 3.9458,3.541009,3.6134,3.67935 +L 3.6134,3.67935,2.9966,3.699216 +L 2.9966,3.699216,2.9966,4.422384 +L 2.9966,4.422384,2.9966,5.137021 +L 2.9966,5.137021,2.9966,5.834764 +L 2.9966,5.834764,3.6134,5.864415 +L 3.6134,5.864415,3.9458,6.072072 +L 3.9458,6.072072,4.275,6.635611 +L 4.275,6.635611,3.9318,7.199139 +L 3.9318,7.199139,3.487,7.406785 +L 3.487,7.406785,2.5662,7.436447 +L 5.5289,0,5.5289,1.06639 +L 5.5289,1.06639,5.5289,2.124322 +L 5.5289,2.124322,5.5289,3.165256 +L 5.5289,3.165256,5.1016,3.535339 +L 5.1016,3.535339,4.6813,3.888425 +L 4.6813,3.888425,4.275,4.233082 +L 4.275,4.233082,4.3244,5.033918 +L 4.3244,5.033918,4.6501,5.656786 +L 4.6501,5.656786,5.5289,6.635611 +L 5.5289,6.635611,4.6501,7.587648 +L 4.6501,7.587648,4.3244,8.20061 +L 4.3244,8.20061,4.275,9.000029 +L 6.594,1.067824,7.0455,1.521238 +L 7.0455,1.521238,7.2139,2.203428 +L 7.2139,2.203428,7.2349,3.699216 +L 7.2349,3.699216,5.6445,4.252854 +L 5.6445,4.252854,5.5709,5.281033 +L 5.5709,5.281033,6.8073,5.834764 +L 6.8073,5.834764,6.8073,6.368632 +L 6.8073,6.368632,6.8073,6.902574 +L 6.8073,6.902574,6.8073,7.436447 +L 6.8073,7.436447,6.1909,7.454786 +L 6.1909,7.454786,5.862,7.583336 +L 5.862,7.583336,5.5289,7.932191 +L 5.5289,7.932191,5.5289,8.302275 +L 5.5289,8.302275,5.5289,8.655365 +L 5.5289,8.655365,5.5289,9.000029 + +[噴] 57 +L 2.813,0,3.1597,0.189316 +L 3.1597,0.189316,3.5138,0.370091 +L 3.5138,0.370091,3.8816,0.533968 +L 7.2646,0,6.9704,0.189316 +L 6.9704,0.189316,6.6867,0.370091 +L 6.6867,0.370091,6.4135,0.533968 +L 3.4543,1.60169,3.58,3.202032 +L 3.58,3.202032,3.7306,4.79383 +L 3.7306,4.79383,3.8816,6.368632 +L 3.8816,6.368632,3.4543,6.368632 +L 3.4543,6.368632,3.0231,6.368632 +L 3.0231,6.368632,2.5997,6.368632 +L 3.8816,1.60169,4.8584,1.60169 +L 4.8584,1.60169,5.843,1.60169 +L 5.843,1.60169,6.8408,1.60169 +L 6.8408,1.60169,6.8408,1.971779 +L 6.8408,1.971779,6.8408,2.324881 +L 6.8408,2.324881,6.8408,2.669511 +L 6.8408,2.669511,5.843,2.669511 +L 5.843,2.669511,4.8584,2.669511 +L 4.8584,2.669511,3.8816,2.669511 +L 0.4628,2.669511,0.4628,4.423649 +L 0.4628,4.423649,0.4628,6.177978 +L 0.4628,6.177978,0.4628,7.932191 +L 0.4628,7.932191,0.8901,7.932191 +L 0.8901,7.932191,1.3139,7.932191 +L 1.3139,7.932191,1.7447,7.932191 +L 1.7447,7.932191,1.7447,6.177978 +L 1.7447,6.177978,1.7447,4.423649 +L 1.7447,4.423649,1.7447,2.669511 +L 1.7447,2.669511,1.3139,2.669511 +L 1.3139,2.669511,0.8901,2.669511 +L 0.8901,2.669511,0.4628,2.669511 +L 6.8408,3.432137,5.843,3.535339 +L 5.843,3.535339,4.8584,3.621543 +L 4.8584,3.621543,3.8816,3.699216 +L 6.8408,4.500056,5.9866,4.603154 +L 5.9866,4.603154,5.1355,4.689266 +L 5.1355,4.689266,4.277,4.767031 +L 6.4135,5.300794,6.4135,5.670986 +L 6.4135,5.670986,6.4135,6.024072 +L 6.4135,6.024072,6.4135,6.368632 +L 6.4135,6.368632,5.6885,6.368632 +L 5.6885,6.368632,4.9775,6.368632 +L 4.9775,6.368632,4.277,6.368632 +L 6.8408,6.368632,7.1144,6.368632 +L 7.1144,6.368632,7.3942,6.368632 +L 7.3942,6.368632,7.6919,6.368632 +L 3.0231,7.932191,3.7306,7.932191 +L 3.7306,7.932191,4.4311,7.932191 +L 4.4311,7.932191,5.1355,7.932191 +L 5.1355,7.932191,5.1355,8.302275 +L 5.1355,8.302275,5.1355,8.655365 +L 5.1355,8.655365,5.1355,9.000029 +L 5.5558,7.932191,6.1158,7.932191 +L 6.1158,7.932191,6.6867,7.932191 +L 6.6867,7.932191,7.2646,7.932191 + +[墳] 57 +L 2.8115,0,3.1547,0.189316 +L 3.1547,0.189316,3.519,0.370091 +L 3.519,0.370091,3.8832,0.533968 +L 7.2666,0,6.9689,0.189316 +L 6.9689,0.189316,6.6852,0.370091 +L 6.6852,0.370091,6.4089,0.533968 +L 3.4528,1.60169,3.5855,3.202032 +L 3.5855,3.202032,3.7291,4.79383 +L 3.7291,4.79383,3.8832,6.368632 +L 3.8832,6.368632,3.5855,6.368632 +L 3.5855,6.368632,3.3018,6.368632 +L 3.3018,6.368632,3.0255,6.368632 +L 3.8832,1.60169,4.8569,1.60169 +L 4.8569,1.60169,5.845,1.60169 +L 5.845,1.60169,6.8393,1.60169 +L 6.8393,1.60169,6.8393,1.971779 +L 6.8393,1.971779,6.8393,2.324881 +L 6.8393,2.324881,6.8393,2.669511 +L 6.8393,2.669511,5.845,2.669511 +L 5.845,2.669511,4.8569,2.669511 +L 4.8569,2.669511,3.8832,2.669511 +L 0.4929,2.135557,0.7696,2.135557 +L 0.7696,2.135557,1.0533,2.135557 +L 1.0533,2.135557,1.3478,2.135557 +L 1.3478,2.135557,1.3478,3.382797 +L 1.3478,3.382797,1.3478,4.613038 +L 1.3478,4.613038,1.3478,5.834764 +L 1.3478,5.834764,1.0533,6.024072 +L 1.0533,6.024072,0.7696,6.204842 +L 0.7696,6.204842,0.4929,6.368632 +L 6.8393,3.432137,5.845,3.535339 +L 5.845,3.535339,4.8569,3.621543 +L 4.8569,3.621543,3.8832,3.699216 +L 6.8393,4.500056,5.9851,4.603154 +L 5.9851,4.603154,5.1375,4.689266 +L 5.1375,4.689266,4.3039,4.767031 +L 6.4089,5.300794,6.4089,5.670986 +L 6.4089,5.670986,6.4089,6.024072 +L 6.4089,6.024072,6.4089,6.368632 +L 6.4089,6.368632,5.708,6.368632 +L 5.708,6.368632,5.0079,6.368632 +L 5.0079,6.368632,4.3039,6.368632 +L 1.7783,6.368632,1.4739,6.822034 +L 1.4739,6.822034,1.3653,7.504323 +L 1.3653,7.504323,1.3478,9.000029 +L 6.8393,6.368632,7.1164,6.368632 +L 7.1164,6.368632,7.4001,6.368632 +L 7.4001,6.368632,7.6939,6.368632 +L 3.0255,7.932191,3.7291,7.932191 +L 3.7291,7.932191,4.4366,7.932191 +L 4.4366,7.932191,5.1616,7.932191 +L 5.1616,7.932191,5.1616,8.302275 +L 5.1616,8.302275,5.1616,8.655365 +L 5.1616,8.655365,5.1616,9.000029 +L 5.5924,7.932191,6.1388,7.932191 +L 6.1388,7.932191,6.6961,7.932191 +L 6.6961,7.932191,7.2666,7.932191 + +[憤] 51 +L 1.7771,0,1.7771,3.011274 +L 1.7771,3.011274,1.7771,6.014189 +L 1.7771,6.014189,1.7771,9.000029 +L 2.8454,0,3.1848,0.189316 +L 3.1848,0.189316,3.5455,0.370091 +L 3.5455,0.370091,3.9098,0.533968 +L 7.297,0,7.0024,0.189316 +L 7.0024,0.189316,6.7187,0.370091 +L 6.7187,0.370091,6.442,0.533968 +L 3.4825,1.60169,3.6124,3.202032 +L 3.6124,3.202032,3.7595,4.79383 +L 3.7595,4.79383,3.9098,6.368632 +L 3.9098,6.368632,3.2762,6.408269 +L 3.2762,6.408269,2.838,6.685051 +L 2.838,6.685051,2.2009,7.436447 +L 3.9098,1.60169,4.8908,1.60169 +L 4.8908,1.60169,5.8711,1.60169 +L 5.8711,1.60169,6.8732,1.60169 +L 6.8732,1.60169,6.8732,1.971779 +L 6.8732,1.971779,6.8732,2.324881 +L 6.8732,2.324881,6.8732,2.669511 +L 6.8732,2.669511,5.8711,2.669511 +L 5.8711,2.669511,4.8908,2.669511 +L 4.8908,2.669511,3.9098,2.669511 +L 6.8732,3.432137,5.8711,3.535339 +L 5.8711,3.535339,4.8908,3.621543 +L 4.8908,3.621543,3.9098,3.699216 +L 6.8732,4.500056,6.0147,4.603154 +L 6.0147,4.603154,5.171,4.689266 +L 5.171,4.689266,4.3409,4.767031 +L 0.5264,5.033918,0.8244,5.656786 +L 0.8244,5.656786,0.9362,6.279734 +L 0.9362,6.279734,0.9502,7.436447 +L 6.442,5.300794,6.442,5.670986 +L 6.442,5.670986,6.442,6.024072 +L 6.442,6.024072,6.442,6.368632 +L 6.442,6.368632,5.7419,6.368632 +L 5.7419,6.368632,5.0411,6.368632 +L 5.0411,6.368632,4.3409,6.368632 +L 6.8732,6.368632,7.146,6.368632 +L 7.146,6.368632,7.4262,6.368632 +L 7.4262,6.368632,7.7243,6.368632 +L 3.0552,7.932191,3.756,7.932191 +L 3.756,7.932191,4.4561,7.932191 +L 4.4561,7.932191,5.1636,7.932191 +L 5.1636,7.932191,5.1636,8.302275 +L 5.1636,8.302275,5.1636,8.655365 +L 5.1636,8.655365,5.1636,9.000029 +L 5.5874,7.932191,6.1482,7.932191 +L 6.1482,7.932191,6.7187,7.932191 +L 6.7187,7.932191,7.297,7.932191 + +[紛] 51 +L 1.8033,0,1.8033,1.600339 +L 1.8033,1.600339,1.8033,3.192137 +L 1.8033,3.192137,1.8033,4.767031 +L 1.8033,4.767031,1.3795,4.767031 +L 1.3795,4.767031,0.9522,4.767031 +L 0.9522,4.767031,0.5249,4.767031 +L 3.089,0,4.0802,1.608788 +L 4.0802,1.608788,4.6056,2.929382 +L 4.6056,2.929382,4.7667,4.767031 +L 4.7667,4.767031,4.1499,4.786809 +L 4.1499,4.786809,3.8242,4.925161 +L 3.8242,4.925161,3.5128,5.300794 +L 3.5128,5.300794,3.3619,4.956251 +L 3.3619,4.956251,3.2183,4.603154 +L 3.2183,4.603154,3.089,4.233082 +L 5.1905,0,5.4668,0 +L 5.4668,0,5.7505,0 +L 5.7505,0,6.0451,0 +L 6.0451,0,6.7032,1.64268 +L 6.7032,1.64268,6.8997,3.048044 +L 6.8997,3.048044,6.8997,4.767031 +L 6.8997,4.767031,6.3253,4.767031 +L 6.3253,4.767031,5.7505,4.767031 +L 5.7505,4.767031,5.1905,4.767031 +L 0.5249,1.334809,0.6545,1.944887 +L 0.6545,1.944887,0.8019,2.555156 +L 0.8019,2.555156,0.9522,3.165256 +L 3.089,1.868659,2.9381,2.314975 +L 2.9381,2.314975,2.791,2.744376 +L 2.791,2.744376,2.6617,3.165256 +L 2.2344,4.767031,2.3605,5.137021 +L 2.3605,5.137021,2.5108,5.490118 +L 2.5108,5.490118,2.6617,5.834764 +L 7.7263,4.767031,6.8297,6.525491 +L 6.8297,6.525491,6.395,7.622974 +L 6.395,7.622974,6.0451,9.000029 +L 1.3795,5.300794,1.5094,5.567784 +L 1.5094,5.567784,1.653,5.834764 +L 1.653,5.834764,1.8033,6.101744 +L 1.8033,6.101744,1.5094,6.471827 +L 1.5094,6.471827,1.2257,6.824836 +L 1.2257,6.824836,0.9522,7.169472 +L 0.9522,7.169472,1.2257,7.779753 +L 1.2257,7.779753,1.5094,8.389918 +L 1.5094,8.389918,1.8033,9.000029 +L 3.9156,6.101744,4.2095,6.723161 +L 4.2095,6.723161,4.3219,7.336221 +L 4.3219,7.336221,4.3356,8.466074 +L 2.2344,7.169472,2.3605,7.435105 +L 2.3605,7.435105,2.5108,7.692109 +L 2.5108,7.692109,2.6617,7.932191 + +[雰] 51 +L 1.6232,0,2.2434,0.533968 +L 2.2434,0.533968,2.8735,1.067824 +L 2.8735,1.067824,3.5148,1.60169 +L 3.5148,1.60169,3.5148,1.971779 +L 3.5148,1.971779,3.5148,2.324881 +L 3.5148,2.324881,3.5148,2.669511 +L 3.5148,2.669511,2.145,3.000038 +L 2.145,3.000038,1.378,3.000038 +L 1.378,3.000038,0.5588,2.669511 +L 4.3726,0,5.5074,0.395429 +L 5.5074,0.395429,5.963,1.384155 +L 5.963,1.384155,6.0471,2.669511 +L 6.0471,2.669511,5.3463,2.669511 +L 5.3463,2.669511,4.6423,2.669511 +L 4.6423,2.669511,3.9421,2.669511 +L 6.8982,2.669511,6.334,3.202032 +L 6.334,3.202032,5.7736,3.726004 +L 5.7736,3.726004,5.2237,4.233082 +L 1.4099,5.300794,1.9629,5.300794 +L 1.9629,5.300794,2.5163,5.300794 +L 2.5163,5.300794,3.0837,5.300794 +L 3.9421,5.300794,3.4693,7.31223 +L 3.4693,7.31223,2.2434,7.611553 +L 2.2434,7.611553,0.5588,7.436447 +L 0.5588,7.436447,0.5588,6.902574 +L 0.5588,6.902574,0.5588,6.368632 +L 0.5588,6.368632,0.5588,5.834764 +L 4.7932,5.300794,5.3463,5.300794 +L 5.3463,5.300794,5.9035,5.300794 +L 5.9035,5.300794,6.4744,5.300794 +L 7.3287,5.834764,7.3287,6.368632 +L 7.3287,6.368632,7.3287,6.902574 +L 7.3287,6.902574,7.3287,7.436447 +L 7.3287,7.436447,6.334,7.436447 +L 6.334,7.436447,5.3463,7.436447 +L 5.3463,7.436447,4.3726,7.436447 +L 4.3726,7.436447,4.215,7.701987 +L 4.215,7.701987,4.0749,7.959089 +L 4.0749,7.959089,3.9421,8.199182 +L 3.9421,8.199182,2.9439,8.302275 +L 2.9439,8.302275,1.9629,8.388396 +L 1.9629,8.388396,0.9826,8.466074 +L 1.4099,6.368632,1.9629,6.368632 +L 1.9629,6.368632,2.5163,6.368632 +L 2.5163,6.368632,3.0837,6.368632 +L 4.7932,6.368632,5.3463,6.368632 +L 5.3463,6.368632,5.9035,6.368632 +L 5.9035,6.368632,6.4744,6.368632 +L 4.3726,8.466074,5.2027,8.466074 +L 5.2027,8.466074,6.0471,8.466074 +L 6.0471,8.466074,6.8982,8.466074 + +[丙] 30 +L 0.9811,0,0.9811,2.134211 +L 0.9811,2.134211,0.9811,4.25987 +L 0.9811,4.25987,0.9811,6.368632 +L 0.9811,6.368632,2.7354,6.319269 +L 2.7354,6.319269,3.6846,6.735836 +L 3.6846,6.735836,3.9718,8.466074 +L 3.9718,8.466074,2.8405,8.466074 +L 2.8405,8.466074,1.7166,8.466074 +L 1.7166,8.466074,0.5849,8.466074 +L 5.653,0,6.0768,0 +L 6.0768,0,6.5041,0 +L 6.5041,0,6.9317,0 +L 6.9317,0,6.9317,2.134211 +L 6.9317,2.134211,6.9317,4.25987 +L 6.9317,4.25987,6.9317,6.368632 +L 6.9317,6.368632,6.0806,6.368632 +L 6.0806,6.368632,5.233,6.368632 +L 5.233,6.368632,4.3991,6.368632 +L 4.3991,6.368632,4.2485,6.101744 +L 4.2485,6.101744,4.1017,5.834764 +L 4.1017,5.834764,3.9718,5.567784 +L 3.9718,5.567784,4.522,4.613038 +L 4.522,4.613038,5.0821,3.649771 +L 5.0821,3.649771,5.653,2.669511 +L 2.263,2.669511,2.6899,3.382797 +L 2.6899,3.382797,3.1207,4.079177 +L 3.1207,4.079177,3.541,4.767031 +L 4.3991,8.466074,5.3766,8.466074 +L 5.3766,8.466074,6.3605,8.466074 +L 6.3605,8.466074,7.3625,8.466074 + +[併] 33 +L 1.4415,0,1.3575,1.781109 +L 1.3575,1.781109,1.2913,3.545228 +L 1.2913,3.545228,1.2247,5.300794 +L 1.2247,5.300794,1.0142,5.137021 +L 1.0142,5.137021,0.7974,4.956251 +L 0.7974,4.956251,0.5838,4.767031 +L 2.7203,0,3.5994,1.560788 +L 3.5994,1.560788,3.9248,2.519754 +L 3.9248,2.519754,3.9703,3.699216 +L 3.9703,3.699216,3.6236,4.074876 +L 3.6236,4.074876,3.1931,4.213304 +L 3.1931,4.213304,2.2926,4.233082 +L 6.1103,0,5.5534,3.747215 +L 5.5534,3.747215,4.524,4.579163 +L 4.524,4.579163,3.9703,6.902574 +L 3.9703,6.902574,3.5465,6.902574 +L 3.5465,6.902574,3.1301,6.902574 +L 3.1301,6.902574,2.7203,6.902574 +L 6.5344,4.233082,5.939,5.637094 +L 5.939,5.637094,5.7254,6.566388 +L 5.7254,6.566388,4.4014,6.902574 +L 6.9614,4.233082,7.2349,4.233082 +L 7.2349,4.233082,7.5148,4.233082 +L 7.5148,4.233082,7.7848,4.233082 +L 1.4415,5.834764,1.5505,7.129922 +L 1.5505,7.129922,1.7571,8.060758 +L 1.7571,8.060758,1.8688,9.000029 +L 6.5344,6.902574,6.2539,7.514201 +L 6.2539,7.514201,6.2539,8.057957 +L 6.2539,8.057957,6.5344,9.000029 +L 3.9703,8.199182,3.8232,8.466074 +L 3.8232,8.466074,3.6764,8.73313 +L 3.6764,8.73313,3.5465,9.000029 + +[塀] 39 +L 4.0042,0,4.2809,0.637066 +L 4.2809,0.637066,4.5607,1.257131 +L 4.5607,1.257131,4.8584,1.868659 +L 4.8584,1.868659,4.5607,2.135557 +L 4.5607,2.135557,4.2809,2.40263 +L 4.2809,2.40263,4.0042,2.669511 +L 6.5361,0,6.0636,1.93931 +L 6.0636,1.93931,5.0265,3.717549 +L 5.0265,3.717549,4.0042,4.767031 +L 1.8638,0.533968,2.9885,3.09883 +L 2.9885,3.09883,3.2091,5.519784 +L 3.2091,5.519784,3.1531,8.466074 +L 3.1531,8.466074,4.5537,8.466074 +L 4.5537,8.466074,5.9655,8.466074 +L 5.9655,8.466074,7.3907,8.466074 +L 7.3907,8.466074,7.3907,7.959089 +L 7.3907,7.959089,7.3907,7.435105 +L 7.3907,7.435105,7.3907,6.902574 +L 7.3907,6.902574,6.1091,6.902574 +L 6.1091,6.902574,4.8343,6.902574 +L 4.8343,6.902574,3.5734,6.902574 +L 0.6173,2.669511,0.8901,2.669511 +L 0.8901,2.669511,1.1773,2.669511 +L 1.1773,2.669511,1.4719,2.669511 +L 1.4719,2.669511,1.4719,3.735882 +L 1.4719,3.735882,1.4719,4.79383 +L 1.4719,4.79383,1.4719,5.834764 +L 1.4719,5.834764,1.1773,6.024072 +L 1.1773,6.024072,0.8901,6.204842 +L 0.8901,6.204842,0.6173,6.368632 +L 6.9634,2.669511,6.1091,3.735882 +L 6.1091,3.735882,5.2647,4.79383 +L 5.2647,4.79383,4.4311,5.834764 +L 6.9634,4.767031,6.6797,5.162376 +L 6.6797,5.162376,6.6797,5.439333 +L 6.6797,5.439333,6.9634,5.834764 +L 1.8638,6.368632,1.5875,6.822034 +L 1.5875,6.822034,1.4859,7.504323 +L 1.4859,7.504323,1.4719,9.000029 + +[幣] 63 +L 4.0303,0,4.0303,1.06639 +L 4.0303,1.06639,4.0303,2.124322 +L 4.0303,2.124322,4.0303,3.165256 +L 4.0303,3.165256,3.029,3.165256 +L 3.029,3.165256,2.0304,3.165256 +L 2.0304,3.165256,1.0431,3.165256 +L 1.0431,3.165256,1.0431,2.288198 +L 1.0431,2.288198,1.0431,1.411031 +L 1.0431,1.411031,1.0431,0.533968 +L 6.1427,0.533968,6.4124,0.533968 +L 6.4124,0.533968,6.6961,0.533968 +L 6.6961,0.533968,6.9938,0.533968 +L 6.9938,0.533968,6.9938,1.411031 +L 6.9938,1.411031,6.9938,2.288198 +L 6.9938,2.288198,6.9938,3.165256 +L 6.9938,3.165256,6.1427,3.165256 +L 6.1427,3.165256,5.2842,3.165256 +L 5.2842,3.165256,4.4331,3.165256 +L 2.3215,4.767031,2.2476,6.662492 +L 2.2476,6.662492,1.7926,7.346023 +L 1.7926,7.346023,0.6158,7.436447 +L 0.6158,7.436447,0.6788,6.738725 +L 0.6788,6.738725,0.7454,6.024072 +L 0.7454,6.024072,0.8291,5.300794 +L 0.8291,5.300794,1.0431,5.670986 +L 1.0431,5.670986,1.2564,6.024072 +L 1.2564,6.024072,1.4704,6.368632 +L 3.61,4.767031,3.3127,5.300794 +L 3.3127,5.300794,3.029,5.834764 +L 3.029,5.834764,2.7519,6.368632 +L 4.0303,4.767031,4.0303,5.670986 +L 4.0303,5.670986,4.0303,6.557949 +L 4.0303,6.557949,4.0303,7.436447 +L 4.0303,7.436447,3.1162,7.454786 +L 3.1162,7.454786,2.6714,7.583336 +L 2.6714,7.583336,2.3215,7.932191 +L 2.3215,7.932191,2.3215,8.302275 +L 2.3215,8.302275,2.3215,8.655365 +L 2.3215,8.655365,2.3215,9.000029 +L 5.0709,4.767031,5.4177,5.137021 +L 5.4177,5.137021,5.7711,5.490118 +L 5.7711,5.490118,6.1427,5.834764 +L 6.1427,5.834764,5.7711,6.368632 +L 5.7711,6.368632,5.4177,6.902574 +L 5.4177,6.902574,5.0709,7.436447 +L 5.0709,7.436447,4.8569,7.272663 +L 4.8569,7.272663,4.6436,7.091817 +L 4.6436,7.091817,4.4331,6.902574 +L 6.5661,6.368632,6.8638,6.782571 +L 6.8638,6.782571,6.9762,7.18781 +L 6.9762,7.18781,6.9938,7.932191 +L 6.9938,7.932191,6.4124,7.932191 +L 6.4124,7.932191,5.8415,7.932191 +L 5.8415,7.932191,5.2842,7.932191 +L 5.2842,7.932191,5.2842,8.302275 +L 5.2842,8.302275,5.2842,8.655365 +L 5.2842,8.655365,5.2842,9.000029 +L 1.4704,8.199182,1.3194,8.466074 +L 1.3194,8.466074,1.1723,8.73313 +L 1.1723,8.73313,1.0431,9.000029 +L 3.1792,7.932191,3.3127,8.302275 +L 3.3127,8.302275,3.4563,8.655365 +L 3.4563,8.655365,3.61,9.000029 + +[弊] 66 +L 0.863,0,1.479,0.637066 +L 1.479,0.637066,2.1095,1.257131 +L 2.1095,1.257131,2.7504,1.868659 +L 2.7504,1.868659,2.6103,2.135557 +L 2.6103,2.135557,2.4811,2.40263 +L 2.4811,2.40263,2.3585,2.669511 +L 2.3585,2.669511,1.7771,2.669511 +L 1.7771,2.669511,1.2097,2.669511 +L 1.2097,2.669511,0.649,2.669511 +L 5.7419,0,5.5387,2.183639 +L 5.5387,2.183639,4.7682,2.723181 +L 4.7682,2.723181,3.1812,2.669511 +L 3.1812,2.669511,3.0275,3.012713 +L 3.0275,3.012713,2.8839,3.356014 +L 2.8839,3.356014,2.7504,3.699216 +L 6.1692,2.669511,6.0182,3.012713 +L 6.0182,3.012713,5.8746,3.356014 +L 5.8746,3.356014,5.7419,3.699216 +L 6.5646,2.669511,6.9958,2.669511 +L 6.9958,2.669511,7.4157,2.669511 +L 7.4157,2.669511,7.8469,2.669511 +L 2.3585,4.767031,2.278,6.662492 +L 2.278,6.662492,1.8223,7.346023 +L 1.8223,7.346023,0.649,7.436447 +L 0.649,7.436447,0.7054,6.738725 +L 0.7054,6.738725,0.7789,6.024072 +L 0.7789,6.024072,0.863,5.300794 +L 0.863,5.300794,1.0763,5.670986 +L 1.0763,5.670986,1.2868,6.024072 +L 1.2868,6.024072,1.5001,6.368632 +L 3.605,4.767031,3.3112,5.300794 +L 3.3112,5.300794,3.0275,5.834764 +L 3.0275,5.834764,2.7504,6.368632 +L 4.0323,4.767031,4.0323,5.670986 +L 4.0323,5.670986,4.0323,6.557949 +L 4.0323,6.557949,4.0323,7.436447 +L 4.0323,7.436447,3.5245,7.539648 +L 3.5245,7.539648,3.0275,7.625661 +L 3.0275,7.625661,2.5406,7.703426 +L 2.5406,7.703426,2.4811,8.149743 +L 2.4811,8.149743,2.4142,8.579149 +L 2.4142,8.579149,2.3585,9.000029 +L 5.5279,4.767031,5.8645,5.137021 +L 5.8645,5.137021,6.2112,5.490118 +L 6.2112,5.490118,6.5646,5.834764 +L 6.5646,5.834764,6.2112,6.368632 +L 6.2112,6.368632,5.8645,6.902574 +L 5.8645,6.902574,5.5279,7.436447 +L 5.5279,7.436447,5.1636,7.091817 +L 5.1636,7.091817,4.8067,6.738725 +L 4.8067,6.738725,4.4596,6.368632 +L 6.9958,6.635611,7.125,7.005695 +L 7.125,7.005695,7.2686,7.35878 +L 7.2686,7.35878,7.4157,7.703426 +L 7.4157,7.703426,6.8522,7.779753 +L 6.8522,7.779753,6.2949,7.855969 +L 6.2949,7.855969,5.7419,7.932191 +L 5.7419,7.932191,5.7419,8.302275 +L 5.7419,8.302275,5.7419,8.655365 +L 5.7419,8.655365,5.7419,9.000029 +L 1.0763,8.199182,0.9225,8.466074 +L 0.9225,8.466074,0.7789,8.73313 +L 0.7789,8.73313,0.649,9.000029 +L 3.605,7.932191,3.735,8.302275 +L 3.735,8.302275,3.8852,8.655365 +L 3.8852,8.655365,4.0323,9.000029 + +[柄] 42 +L 1.9332,0,1.8488,1.600339 +L 1.8488,1.600339,1.7756,3.192137 +L 1.7756,3.192137,1.7161,4.767031 +L 1.7161,4.767031,1.3585,4.079177 +L 1.3585,4.079177,1.0152,3.382797 +L 1.0152,3.382797,0.6793,2.669511 +L 4.0627,0,4.0627,2.134211 +L 4.0627,2.134211,4.0627,4.25987 +L 4.0627,4.25987,4.0627,6.368632 +L 4.0627,6.368632,5.2217,6.514158 +L 5.2217,6.514158,5.67,7.125708 +L 5.67,7.125708,5.7439,8.466074 +L 5.7439,8.466074,5.043,8.466074 +L 5.043,8.466074,4.3429,8.466074 +L 4.3429,8.466074,3.6389,8.466074 +L 6.5981,0,6.8752,0 +L 6.8752,0,7.1554,0 +L 7.1554,0,7.4527,0 +L 7.4527,0,7.4527,2.134211 +L 7.4527,2.134211,7.4527,4.25987 +L 7.4527,4.25987,7.4527,6.368632 +L 7.4527,6.368632,6.5319,6.338965 +L 6.5319,6.338965,6.0938,6.131405 +L 6.0938,6.131405,5.7439,5.567784 +L 5.7439,5.567784,6.0167,4.767031 +L 6.0167,4.767031,6.3043,3.966102 +L 6.3043,3.966102,6.5981,3.165256 +L 4.49,2.669511,4.7628,3.382797 +L 4.7628,3.382797,5.043,4.079177 +L 5.043,4.079177,5.3166,4.767031 +L 3.2081,4.233082,2.4337,5.043812 +L 2.4337,5.043812,1.9928,5.735897 +L 1.9928,5.735897,1.5021,6.902574 +L 1.5021,6.902574,1.2292,6.902574 +L 1.2292,6.902574,0.9522,6.902574 +L 0.9522,6.902574,0.6793,6.902574 +L 2.3532,6.902574,2.0593,7.336221 +L 2.0593,7.336221,1.9469,7.879961 +L 1.9469,7.879961,1.9332,9.000029 +L 6.1712,8.466074,6.7242,8.466074 +L 6.7242,8.466074,7.299,8.466074 +L 7.299,8.466074,7.88,8.466074 + +[壁] 63 +L 0.6813,0,1.8053,0 +L 1.8053,0,2.9366,0 +L 2.9366,0,4.0647,0 +L 4.0647,0,4.0468,0.771182 +L 4.0468,0.771182,3.9453,1.186486 +L 3.9453,1.186486,3.6686,1.60169 +L 3.6686,1.60169,3.091,1.60169 +L 3.091,1.60169,2.5163,1.60169 +L 2.5163,1.60169,1.9597,1.60169 +L 4.4917,0,5.4762,0 +L 5.4762,0,6.4744,0 +L 6.4744,0,7.4796,0 +L 4.4917,1.60169,4.3414,1.971779 +L 4.3414,1.971779,4.1975,2.324881 +L 4.1975,2.324881,4.0647,2.669511 +L 4.9225,1.60169,5.3463,1.60169 +L 5.3463,1.60169,5.7736,1.60169 +L 5.7736,1.60169,6.2009,1.60169 +L 1.9597,3.165256,1.9597,3.888425 +L 1.9597,3.888425,1.9597,4.603154 +L 1.9597,4.603154,1.9597,5.300794 +L 1.9597,5.300794,2.3902,5.300794 +L 2.3902,5.300794,2.814,5.300794 +L 2.814,5.300794,3.2413,5.300794 +L 3.2413,5.300794,3.2413,4.603154 +L 3.2413,4.603154,3.2413,3.888425 +L 3.2413,3.888425,3.2413,3.165256 +L 3.2413,3.165256,2.814,3.165256 +L 2.814,3.165256,2.3902,3.165256 +L 2.3902,3.165256,1.9597,3.165256 +L 5.7736,3.432137,5.4412,3.995857 +L 5.4412,3.995857,5.1081,4.203415 +L 5.1081,4.203415,4.4917,4.233082 +L 0.6813,3.966102,0.9787,4.66662 +L 0.9787,4.66662,1.0876,5.833326 +L 1.0876,5.833326,1.1016,8.466074 +L 1.1016,8.466074,1.8088,8.466074 +L 1.8088,8.466074,2.5163,8.466074 +L 2.5163,8.466074,3.2413,8.466074 +L 3.2413,8.466074,3.2413,7.959089 +L 3.2413,7.959089,3.2413,7.435105 +L 3.2413,7.435105,3.2413,6.902574 +L 3.2413,6.902574,2.6602,6.902574 +L 2.6602,6.902574,2.0925,6.902574 +L 2.0925,6.902574,1.5324,6.902574 +L 6.2009,4.233082,5.9,4.648363 +L 5.9,4.648363,5.7876,5.06359 +L 5.7876,5.06359,5.7736,5.834764 +L 5.7736,5.834764,5.1925,5.834764 +L 5.1925,5.834764,4.6212,5.834764 +L 4.6212,5.834764,4.0647,5.834764 +L 6.2009,6.101744,6.3308,6.711915 +L 6.3308,6.711915,6.4744,7.322014 +L 6.4744,7.322014,6.6285,7.932191 +L 6.6285,7.932191,6.0502,7.855969 +L 6.0502,7.855969,5.4762,7.779753 +L 5.4762,7.779753,4.9225,7.703426 +L 4.9225,7.703426,5.0524,7.272663 +L 5.0524,7.272663,5.1925,6.824836 +L 5.1925,6.824836,5.3463,6.368632 +L 6.6285,5.834764,6.9013,5.834764 +L 6.9013,5.834764,7.1819,5.834764 +L 7.1819,5.834764,7.4796,5.834764 + +[癖] 60 +L 0.7075,0,1.3488,1.377139 +L 1.3488,1.377139,1.7828,2.855946 +L 1.7828,2.855946,1.7761,4.233082 +L 1.7761,4.233082,1.4118,3.888425 +L 1.4118,3.888425,1.0542,3.535339 +L 1.0542,3.535339,0.7075,3.165256 +L 2.3855,0.26698,2.988,2.425182 +L 2.988,2.425182,3.2121,4.261304 +L 3.2121,4.261304,3.2398,6.368632 +L 3.2398,6.368632,3.6706,6.368632 +L 3.6706,6.368632,4.0944,6.368632 +L 4.0944,6.368632,4.5217,6.368632 +L 4.5217,6.368632,4.5217,5.670986 +L 4.5217,5.670986,4.5217,4.956251 +L 4.5217,4.956251,4.5217,4.233082 +L 4.5217,4.233082,4.2243,4.233082 +L 4.2243,4.233082,3.9441,4.233082 +L 3.9441,4.233082,3.6706,4.233082 +L 3.6706,0,3.6706,0.903947 +L 3.6706,0.903947,3.6706,1.790998 +L 3.6706,1.790998,3.6706,2.669511 +L 3.6706,2.669511,5.047,2.317767 +L 5.047,2.317767,6.1682,2.372864 +L 6.1682,2.372864,6.6266,3.699216 +L 6.6266,3.699216,6.2032,3.699216 +L 6.2032,3.699216,5.7829,3.699216 +L 5.7829,3.699216,5.3801,3.699216 +L 4.0944,0,4.3711,0 +L 4.3711,0,4.6548,0 +L 4.6548,0,4.9493,0 +L 4.9493,0,4.9493,0.533968 +L 4.9493,0.533968,4.9493,1.067824 +L 4.9493,1.067824,4.9493,1.60169 +L 6.6266,0,6.6442,1.367261 +L 6.6442,1.367261,6.9527,1.988668 +L 6.9527,1.988668,7.9054,2.135557 +L 7.0543,3.966102,7.187,4.603154 +L 7.187,4.603154,7.3306,5.223231 +L 7.3306,5.223231,7.4851,5.834764 +L 7.4851,5.834764,6.9103,5.757097 +L 6.9103,5.757097,6.3538,5.670986 +L 6.3538,5.670986,5.8039,5.567784 +L 5.8039,5.567784,5.9265,5.137021 +L 5.9265,5.137021,6.0557,4.689266 +L 6.0557,4.689266,6.1958,4.233082 +L 1.9894,4.767031,1.9894,5.833326 +L 1.9894,5.833326,1.9894,6.891251 +L 1.9894,6.891251,1.9894,7.932191 +L 1.9894,7.932191,2.9704,7.932191 +L 2.9704,7.932191,3.9508,7.932191 +L 3.9508,7.932191,4.9493,7.932191 +L 4.9493,7.932191,4.9493,8.302275 +L 4.9493,8.302275,4.9493,8.655365 +L 4.9493,8.655365,4.9493,9.000029 +L 1.1383,6.101744,0.9846,6.368632 +L 0.9846,6.368632,0.8409,6.635611 +L 0.8409,6.635611,0.7075,6.902574 +L 5.3801,7.932191,6.2102,7.932191 +L 6.2102,7.932191,7.0543,7.932191 +L 7.0543,7.932191,7.9054,7.932191 + +[偏] 63 +L 1.5641,0,1.48,1.781109 +L 1.48,1.781109,1.4138,3.545228 +L 1.4138,3.545228,1.3473,5.300794 +L 1.3473,5.300794,1.1368,5.137021 +L 1.1368,5.137021,0.9337,4.956251 +L 0.9337,4.956251,0.7379,4.767031 +L 3.6974,0,3.6134,1.247174 +L 3.6134,1.247174,3.5465,2.477424 +L 3.5465,2.477424,3.487,3.699216 +L 3.487,3.699216,3.0176,3.245714 +L 3.0176,3.245714,2.7448,2.563617 +L 2.7448,2.563617,2.4191,1.067824 +L 4.9513,0,4.9513,0.533968 +L 4.9513,0.533968,4.9513,1.067824 +L 4.9513,1.067824,4.9513,1.60169 +L 4.9513,1.60169,4.6743,1.790998 +L 4.6743,1.790998,4.4014,1.971779 +L 4.4014,1.971779,4.1279,2.135557 +L 6.2329,0,6.2329,0.533968 +L 6.2329,0.533968,6.2329,1.067824 +L 6.2329,1.067824,6.2329,1.60169 +L 6.2329,1.60169,5.8024,1.971779 +L 5.8024,1.971779,5.3786,2.324881 +L 5.3786,2.324881,4.9513,2.669511 +L 4.9513,2.669511,4.9513,3.012713 +L 4.9513,3.012713,4.9513,3.356014 +L 4.9513,3.356014,4.9513,3.699216 +L 4.9513,3.699216,4.6743,3.699216 +L 4.6743,3.699216,4.4014,3.699216 +L 4.4014,3.699216,4.1279,3.699216 +L 7.5113,0,7.5113,0.723177 +L 7.5113,0.723177,7.5113,1.437896 +L 7.5113,1.437896,7.5113,2.135557 +L 7.5113,2.135557,6.5554,2.31219 +L 6.5554,2.31219,6.2507,2.836162 +L 6.2507,2.836162,6.2329,3.699216 +L 6.2329,3.699216,5.9352,3.699216 +L 5.9352,3.699216,5.655,3.699216 +L 5.655,3.699216,5.3786,3.699216 +L 7.5113,2.669511,7.5113,3.012713 +L 7.5113,3.012713,7.5113,3.356014 +L 7.5113,3.356014,7.5113,3.699216 +L 7.5113,3.699216,7.2136,3.699216 +L 7.2136,3.699216,6.9337,3.699216 +L 6.9337,3.699216,6.6602,3.699216 +L 3.2701,4.233082,3.2701,5.137021 +L 3.2701,5.137021,3.2701,6.024072 +L 3.2701,6.024072,3.2701,6.902574 +L 3.2701,6.902574,4.531,6.902574 +L 4.531,6.902574,5.8024,6.902574 +L 5.8024,6.902574,7.084,6.902574 +L 7.084,6.902574,7.084,6.368632 +L 7.084,6.368632,7.084,5.834764 +L 7.084,5.834764,7.084,5.300794 +L 7.084,5.300794,5.96,5.300794 +L 5.96,5.300794,4.8287,5.300794 +L 4.8287,5.300794,3.6974,5.300794 +L 1.5641,5.834764,1.673,7.129922 +L 1.673,7.129922,1.8797,8.060758 +L 1.8797,8.060758,1.9879,9.000029 +L 3.2701,8.466074,4.6778,8.466074 +L 4.6778,8.466074,6.0896,8.466074 +L 6.0896,8.466074,7.5113,8.466074 + +[遍] 60 +L 3.7026,1.067824,3.6189,1.944887 +L 3.6189,1.944887,3.545,2.822048 +L 3.545,2.822048,3.4854,3.699216 +L 3.4854,3.699216,3.1321,3.192137 +L 3.1321,3.192137,2.7853,2.668061 +L 2.7853,2.668061,2.4487,2.135557 +L 4.981,1.067824,4.9498,1.838916 +L 4.9498,1.838916,4.7292,2.254214 +L 4.7292,2.254214,4.1267,2.669511 +L 6.2594,1.067824,6.2594,1.437896 +L 6.2594,1.437896,6.2594,1.790998 +L 6.2594,1.790998,6.2594,2.135557 +L 6.2594,2.135557,5.8356,2.478754 +L 5.8356,2.478754,5.4083,2.822048 +L 5.4083,2.822048,4.981,3.165256 +L 4.981,3.165256,4.981,3.535339 +L 4.981,3.535339,4.981,3.888425 +L 4.981,3.888425,4.981,4.233082 +L 4.981,4.233082,4.4034,4.233082 +L 4.4034,4.233082,3.8322,4.233082 +L 3.8322,4.233082,3.2721,4.233082 +L 3.2721,4.233082,3.2721,5.300794 +L 3.2721,5.300794,3.2721,6.368632 +L 3.2721,6.368632,3.2721,7.436447 +L 3.2721,7.436447,4.6763,7.436447 +L 4.6763,7.436447,6.0881,7.436447 +L 6.0881,7.436447,7.5133,7.436447 +L 7.5133,7.436447,7.5133,6.902574 +L 7.5133,6.902574,7.5133,6.368632 +L 7.5133,6.368632,7.5133,5.834764 +L 7.5133,5.834764,6.2317,5.834764 +L 6.2317,5.834764,4.9568,5.834764 +L 4.9568,5.834764,3.7026,5.834764 +L 7.5133,1.067824,7.5133,1.60169 +L 7.5133,1.60169,7.5133,2.135557 +L 7.5133,2.135557,7.5133,2.669511 +L 7.5133,2.669511,6.9147,2.687839 +L 6.9147,2.687839,6.5925,2.81639 +L 6.5925,2.81639,6.2594,3.165256 +L 6.2594,3.165256,6.2594,3.535339 +L 6.2594,3.535339,6.2594,3.888425 +L 6.2594,3.888425,6.2594,4.233082 +L 6.2594,4.233082,5.962,4.233082 +L 5.962,4.233082,5.6818,4.233082 +L 5.6818,4.233082,5.4083,4.233082 +L 7.5133,3.165256,7.5133,3.535339 +L 7.5133,3.535339,7.5133,3.888425 +L 7.5133,3.888425,7.5133,4.233082 +L 7.5133,4.233082,7.2369,4.233082 +L 7.2369,4.233082,6.9634,4.233082 +L 6.9634,4.233082,6.6905,4.233082 +L 2.876,8.466074,4.5537,8.466074 +L 4.5537,8.466074,6.2419,8.466074 +L 6.2419,8.466074,7.9371,8.466074 +L 5.8254,-0.015186,7.9514,-0.015186 +L 2.0039,1.052476,0.9532,0 +L 0.7535,4.751719,2.0039,4.751719 +L 2.0039,1.052476,2.0039,4.751719 +L 1.1847,8.489135,2.0039,7.421254 +A 5.8254,7.347823,7.362973,238.75988,270 + +[舗] 81 +L 1.1968,0,1.1968,0.903947 +L 1.1968,0.903947,1.1968,1.790998 +L 1.1968,1.790998,1.1968,2.669511 +L 1.1968,2.669511,1.7467,2.669511 +L 1.7467,2.669511,2.304,2.669511 +L 2.304,2.669511,2.8745,2.669511 +L 2.8745,2.669511,2.8745,1.790998 +L 2.8745,1.790998,2.8745,0.903947 +L 2.8745,0.903947,2.8745,0 +L 2.8745,0,2.304,0 +L 2.304,0,1.7467,0 +L 1.7467,0,1.1968,0 +L 4.1603,0,4.1603,1.944887 +L 4.1603,1.944887,4.1603,3.88988 +L 4.1603,3.88988,4.1603,5.834764 +L 4.1603,5.834764,5.0744,5.864415 +L 5.0744,5.864415,5.5084,6.072072 +L 5.5084,6.072072,5.8341,6.635611 +L 5.8341,6.635611,5.6905,6.902574 +L 5.6905,6.902574,5.5613,7.169472 +L 5.5613,7.169472,5.4387,7.436447 +L 5.4387,7.436447,4.8604,7.436447 +L 4.8604,7.436447,4.2895,7.436447 +L 4.2895,7.436447,3.7291,7.436447 +L 5.8341,0,5.8166,1.522573 +L 5.8166,1.522573,5.7189,2.214745 +L 5.7189,2.214745,5.4387,2.669511 +L 5.4387,2.669511,5.1406,2.669511 +L 5.1406,2.669511,4.8604,2.669511 +L 4.8604,2.669511,4.5841,2.669511 +L 6.6925,0,6.9654,0 +L 6.9654,0,7.2456,0 +L 7.2456,0,7.5436,0 +L 7.5436,0,7.5436,0.903947 +L 7.5436,0.903947,7.5436,1.790998 +L 7.5436,1.790998,7.5436,2.669511 +L 7.5436,2.669511,7.1163,2.669511 +L 7.1163,2.669511,6.6925,2.669511 +L 6.6925,2.669511,6.2652,2.669511 +L 6.2652,2.669511,5.9885,3.202032 +L 5.9885,3.202032,5.7115,3.726004 +L 5.7115,3.726004,5.4387,4.233082 +L 5.4387,4.233082,5.1406,4.233082 +L 5.1406,4.233082,4.8604,4.233082 +L 4.8604,4.233082,4.5841,4.233082 +L 7.5436,3.165256,7.5436,3.535339 +L 7.5436,3.535339,7.5436,3.888425 +L 7.5436,3.888425,7.5436,4.233082 +L 7.5436,4.233082,6.6295,4.262744 +L 6.6295,4.262744,6.1808,4.47039 +L 6.1808,4.47039,5.8341,5.033918 +L 5.8341,5.033918,6.1808,5.597457 +L 6.1808,5.597457,6.6295,5.805081 +L 6.6295,5.805081,7.5436,5.834764 +L 7.5436,5.834764,7.5436,5.490118 +L 7.5436,5.490118,7.5436,5.137021 +L 7.5436,5.137021,7.5436,4.767031 +L 0.7695,4.233082,1.1793,4.233082 +L 1.1793,4.233082,1.593,4.233082 +L 1.593,4.233082,2.0203,4.233082 +L 2.0203,4.233082,2.0203,4.956251 +L 2.0203,4.956251,2.0203,5.670986 +L 2.0203,5.670986,2.0203,6.368632 +L 2.0203,6.368632,1.4284,6.388497 +L 1.4284,6.388497,1.1026,6.526832 +L 1.1026,6.526832,0.7695,6.902574 +L 0.7695,6.902574,1.1793,7.615876 +L 1.1793,7.615876,1.593,8.312169 +L 1.593,8.312169,2.0203,9.000029 +L 2.0203,9.000029,2.297,8.655365 +L 2.297,8.655365,2.5807,8.302275 +L 2.5807,8.302275,2.8745,7.932191 +L 2.4507,4.233082,2.7208,4.233082 +L 2.7208,4.233082,3.008,4.233082 +L 3.008,4.233082,3.3018,4.233082 +L 6.2652,7.436447,5.9605,7.824863 +L 5.9605,7.824863,5.8516,8.230277 +L 5.8516,8.230277,5.8341,9.000029 +L 6.6925,7.436447,7.1163,7.436447 +L 7.1163,7.436447,7.5436,7.436447 +L 7.5436,7.436447,7.9709,7.436447 + +[捕] 60 +L 1.1988,0,1.4724,0 +L 1.4724,0,1.7592,0 +L 1.7592,0,2.0499,0 +L 2.0499,0,2.0363,2.62295 +L 2.0363,2.62295,1.9239,3.720334 +L 1.9239,3.720334,1.6261,4.233082 +L 1.6261,4.233082,1.3288,4.069206 +L 1.3288,4.069206,1.0486,3.888425 +L 1.0486,3.888425,0.768,3.699216 +L 4.1868,0,4.1868,1.944887 +L 4.1868,1.944887,4.1868,3.88988 +L 4.1868,3.88988,4.1868,5.834764 +L 4.1868,5.834764,5.0831,5.864415 +L 5.0831,5.864415,5.5177,6.072072 +L 5.5177,6.072072,5.8645,6.635611 +L 5.8645,6.635611,5.5037,7.199139 +L 5.5037,7.199139,4.9573,7.406785 +L 4.9573,7.406785,3.7595,7.436447 +L 5.8645,0,5.8399,1.692026 +L 5.8399,1.692026,5.5279,2.477424 +L 5.5279,2.477424,4.5822,2.669511 +L 6.7222,0,6.9923,0 +L 6.9923,0,7.2795,0 +L 7.2795,0,7.5733,0 +L 7.5733,0,7.5733,0.903947 +L 7.5733,0.903947,7.5733,1.790998 +L 7.5733,1.790998,7.5733,2.669511 +L 7.5733,2.669511,7.1495,2.669511 +L 7.1495,2.669511,6.7222,2.669511 +L 6.7222,2.669511,6.2918,2.669511 +L 6.2918,2.669511,5.9937,3.202032 +L 5.9937,3.202032,5.7135,3.726004 +L 5.7135,3.726004,5.4407,4.233082 +L 5.4407,4.233082,5.1426,4.233082 +L 5.1426,4.233082,4.8589,4.233082 +L 4.8589,4.233082,4.5822,4.233082 +L 7.5733,3.165256,7.5733,3.535339 +L 7.5733,3.535339,7.5733,3.888425 +L 7.5733,3.888425,7.5733,4.233082 +L 7.5733,4.233082,6.656,4.262744 +L 6.656,4.262744,6.2144,4.47039 +L 6.2144,4.47039,5.8645,5.033918 +L 5.8645,5.033918,6.2144,5.597457 +L 6.2144,5.597457,6.656,5.805081 +L 6.656,5.805081,7.5733,5.834764 +L 7.5733,5.834764,7.5733,5.490118 +L 7.5733,5.490118,7.5733,5.137021 +L 7.5733,5.137021,7.5733,4.767031 +L 2.4772,4.233082,1.9557,5.518444 +L 1.9557,5.518444,1.7627,6.507153 +L 1.7627,6.507153,0.768,6.902574 +L 2.4772,6.902574,2.1799,7.336221 +L 2.1799,7.336221,2.0675,7.879961 +L 2.0675,7.879961,2.0499,9.000029 +L 6.2918,7.436447,5.9937,7.824863 +L 5.9937,7.824863,5.882,8.230277 +L 5.882,8.230277,5.8645,9.000029 +L 6.7222,7.436447,7.1495,7.436447 +L 7.1495,7.436447,7.5733,7.436447 +L 7.5733,7.436447,8.0006,7.436447 + +[穂] 69 +L 2.0835,0,1.9998,1.411031 +L 1.9998,1.411031,1.9294,2.822048 +L 1.9294,2.822048,1.8698,4.233082 +L 1.8698,4.233082,1.5056,3.545228 +L 1.5056,3.545228,1.1452,2.848848 +L 1.1452,2.848848,0.8019,2.135557 +L 3.3342,0.26698,3.4634,0.723177 +L 3.4634,0.723177,3.6105,1.170941 +L 3.6105,1.170941,3.7615,1.60169 +L 5.0395,0,4.7418,0.43507 +L 4.7418,0.43507,4.6301,0.988723 +L 4.6301,0.988723,4.6157,2.135557 +L 5.4703,0,5.8731,0 +L 5.8731,0,6.2934,0 +L 6.2934,0,6.7176,0 +L 6.7176,0,6.7176,0.370091 +L 6.7176,0.370091,6.7176,0.723177 +L 6.7176,0.723177,6.7176,1.067824 +L 8.0026,0.800849,7.8524,1.067824 +L 7.8524,1.067824,7.7052,1.334809 +L 7.7052,1.334809,7.5718,1.60169 +L 3.3342,3.699216,2.5812,4.509858 +L 2.5812,4.509858,2.1434,5.202014 +L 2.1434,5.202014,1.6565,6.368632 +L 1.6565,6.368632,1.3585,6.368632 +L 1.3585,6.368632,1.0783,6.368632 +L 1.0783,6.368632,0.8019,6.368632 +L 4.1884,3.699216,4.1884,4.603154 +L 4.1884,4.603154,4.1884,5.490118 +L 4.1884,5.490118,4.1884,6.368632 +L 4.1884,6.368632,5.1061,6.398281 +L 5.1061,6.398281,5.5474,6.605939 +L 5.5474,6.605939,5.8976,7.169472 +L 5.8976,7.169472,5.1271,7.726077 +L 5.1271,7.726077,4.0308,8.062165 +L 4.0308,8.062165,3.1167,8.466074 +L 3.1167,8.466074,2.5318,8.052281 +L 2.5318,8.052281,2.2624,7.646894 +L 2.2624,7.646894,2.0835,6.902574 +L 2.0835,6.902574,2.4127,6.526832 +L 2.4127,6.526832,2.7384,6.388497 +L 2.7384,6.388497,3.3342,6.368632 +L 4.6157,3.699216,5.0395,3.699216 +L 5.0395,3.699216,5.4703,3.699216 +L 5.4703,3.699216,5.8976,3.699216 +L 5.8976,3.699216,5.747,4.894055 +L 5.747,4.894055,5.3166,5.275456 +L 5.3166,5.275456,4.6157,5.300794 +L 6.3214,3.699216,6.7316,3.699216 +L 6.7316,3.699216,7.1515,3.699216 +L 7.1515,3.699216,7.5718,3.699216 +L 7.5718,3.699216,7.5718,4.233082 +L 7.5718,4.233082,7.5718,4.767031 +L 7.5718,4.767031,7.5718,5.300794 +L 7.5718,5.300794,6.6787,5.320675 +L 6.6787,5.320675,6.2409,5.459011 +L 6.2409,5.459011,5.8976,5.834764 +L 5.8976,5.834764,6.2409,6.190734 +L 6.2409,6.190734,6.6787,6.190734 +L 6.6787,6.190734,7.5718,5.834764 +L 0.8019,7.932191,1.0783,7.932191 +L 1.0783,7.932191,1.3585,7.932191 +L 1.3585,7.932191,1.6565,7.932191 +L 6.3214,7.932191,6.1712,8.302275 +L 6.1712,8.302275,6.0307,8.655365 +L 6.0307,8.655365,5.8976,9.000029 +L 6.7176,7.932191,7.148,7.932191 +L 7.148,7.932191,7.5718,7.932191 +L 7.5718,7.932191,8.0026,7.932191 + +[募] 60 +L 1.655,0,2.7478,0.425096 +L 2.7478,0.425096,3.4097,0.909622 +L 3.4097,0.909622,4.2188,1.868659 +L 4.2188,1.868659,2.3835,2.036673 +L 2.3835,2.036673,1.5079,1.967543 +L 1.5079,1.967543,0.8316,1.60169 +L 5.0734,0,6.2642,0.553732 +L 6.2642,0.553732,6.0783,1.581923 +L 6.0783,1.581923,4.6461,2.135557 +L 7.6057,1.60169,5.984,3.093258 +L 5.984,3.093258,4.7193,3.466128 +L 4.7193,3.466128,2.9401,3.432137 +L 2.9401,3.432137,2.7898,3.192137 +L 2.7898,3.192137,2.6389,2.935046 +L 2.6389,2.935046,2.5093,2.669511 +L 0.8316,3.699216,1.3815,3.699216 +L 1.3815,3.699216,1.9387,3.699216 +L 1.9387,3.699216,2.5093,3.699216 +L 6.3234,3.699216,6.8807,3.699216 +L 6.8807,3.699216,7.4547,3.699216 +L 7.4547,3.699216,8.0295,3.699216 +L 3.3639,4.500056,2.9401,4.603154 +L 2.9401,4.603154,2.5093,4.689266 +L 2.5093,4.689266,2.0823,4.767031 +L 2.0823,4.767031,2.0823,5.490118 +L 2.0823,5.490118,2.0823,6.204842 +L 2.0823,6.204842,2.0823,6.902574 +L 2.0823,6.902574,2.5093,7.005695 +L 2.5093,7.005695,2.9401,7.091817 +L 2.9401,7.091817,3.3639,7.169472 +L 3.3639,7.169472,3.2101,7.435105 +L 3.2101,7.435105,3.07,7.692109 +L 3.07,7.692109,2.9401,7.932191 +L 2.9401,7.932191,2.2364,7.932191 +L 2.2364,7.932191,1.5359,7.932191 +L 1.5359,7.932191,0.8316,7.932191 +L 3.7912,4.767031,4.7687,4.767031 +L 4.7687,4.767031,5.7525,4.767031 +L 5.7525,4.767031,6.7511,4.767031 +L 6.7511,4.767031,6.7511,5.137021 +L 6.7511,5.137021,6.7511,5.490118 +L 6.7511,5.490118,6.7511,5.834764 +L 6.7511,5.834764,5.3252,5.834764 +L 5.3252,5.834764,3.9137,5.834764 +L 3.9137,5.834764,2.5093,5.834764 +L 6.7511,6.635611,5.7525,6.738725 +L 5.7525,6.738725,4.7687,6.824836 +L 4.7687,6.824836,3.7912,6.902574 +L 5.2555,7.703426,4.7687,7.779753 +L 4.7687,7.779753,4.278,7.855969 +L 4.278,7.855969,3.7912,7.932191 +L 3.7912,7.932191,3.6409,8.302275 +L 3.6409,8.302275,3.4973,8.655365 +L 3.4973,8.655365,3.3639,9.000029 +L 5.8961,7.932191,5.7459,8.302275 +L 5.7459,8.302275,5.6023,8.655365 +L 5.6023,8.655365,5.4723,9.000029 +L 6.3234,7.932191,6.8807,7.932191 +L 6.8807,7.932191,7.4547,7.932191 +L 7.4547,7.932191,8.0295,7.932191 + +[慕] 69 +L 2.9669,0,3.2398,0 +L 3.2398,0,3.5168,0 +L 3.5168,0,3.7932,0 +L 3.7932,0,3.7932,0.903947 +L 3.7932,0.903947,3.7932,1.790998 +L 3.7932,1.790998,3.7932,2.669511 +L 1.6885,0.533968,1.9824,0.949173 +L 1.9824,0.949173,2.0353,1.364374 +L 2.0353,1.364374,1.9018,2.135557 +L 1.9018,2.135557,1.5376,1.971779 +L 1.5376,1.971779,1.1733,1.790998 +L 1.1733,1.790998,0.8301,1.60169 +L 5.5027,0.800849,5.3482,1.067824 +L 5.3482,1.067824,5.2046,1.334809 +L 5.2046,1.334809,5.0719,1.60169 +L 6.7807,0.800849,6.5569,1.550905 +L 6.5569,1.550905,6.4309,2.35174 +L 6.4309,2.35174,5.9297,3.432137 +L 5.9297,3.432137,4.9283,3.432137 +L 4.9283,3.432137,3.9473,3.432137 +L 3.9473,3.432137,2.9669,3.432137 +L 2.9669,3.432137,2.816,3.192137 +L 2.816,3.192137,2.6724,2.935046 +L 2.6724,2.935046,2.5396,2.669511 +L 0.8301,3.699216,1.3908,3.699216 +L 1.3908,3.699216,1.9617,3.699216 +L 1.9617,3.699216,2.5396,3.699216 +L 6.3538,3.699216,6.9033,3.699216 +L 6.9033,3.699216,7.4641,3.699216 +L 7.4641,3.699216,8.0346,3.699216 +L 3.3977,4.500056,2.9669,4.603154 +L 2.9669,4.603154,2.5396,4.689266 +L 2.5396,4.689266,2.1158,4.767031 +L 2.1158,4.767031,2.1158,5.490118 +L 2.1158,5.490118,2.1158,6.204842 +L 2.1158,6.204842,2.1158,6.902574 +L 2.1158,6.902574,2.5396,7.005695 +L 2.5396,7.005695,2.9669,7.091817 +L 2.9669,7.091817,3.3977,7.169472 +L 3.3977,7.169472,3.2468,7.435105 +L 3.2468,7.435105,3.0997,7.692109 +L 3.0997,7.692109,2.9669,7.932191 +L 2.9669,7.932191,2.2451,7.932191 +L 2.2451,7.932191,1.5376,7.932191 +L 1.5376,7.932191,0.8301,7.932191 +L 3.7932,4.767031,4.7742,4.767031 +L 4.7742,4.767031,5.772,4.767031 +L 5.772,4.767031,6.7807,4.767031 +L 6.7807,4.767031,6.7807,5.137021 +L 6.7807,5.137021,6.7807,5.490118 +L 6.7807,5.490118,6.7807,5.834764 +L 6.7807,5.834764,5.3591,5.834764 +L 5.3591,5.834764,3.9473,5.834764 +L 3.9473,5.834764,2.5396,5.834764 +L 6.7807,6.635611,5.772,6.738725 +L 5.772,6.738725,4.7742,6.824836 +L 4.7742,6.824836,3.7932,6.902574 +L 5.5027,7.436447,5.1525,7.785318 +L 5.1525,7.785318,4.7076,7.913853 +L 4.7076,7.913853,3.7932,7.932191 +L 3.7932,7.932191,3.6496,8.302275 +L 3.6496,8.302275,3.5168,8.655365 +L 3.5168,8.655365,3.3977,9.000029 +L 5.9297,7.932191,5.772,8.302275 +L 5.772,8.302275,5.6284,8.655365 +L 5.6284,8.655365,5.5027,9.000029 +L 6.3538,7.932191,6.9033,7.932191 +L 6.9033,7.932191,7.4641,7.932191 +L 7.4641,7.932191,8.0346,7.932191 + +[簿] 60 +L 0.864,0,1.2878,1.06639 +L 1.2878,1.06639,1.7151,2.124322 +L 1.7151,2.124322,2.1455,3.165256 +L 5.5289,0,5.8059,0 +L 5.8059,0,6.0826,0 +L 6.0826,0,6.3523,0 +L 6.3523,0,6.3379,1.146932 +L 6.3379,1.146932,6.2364,1.700574 +L 6.2364,1.700574,5.96,2.135557 +L 5.96,2.135557,5.3786,2.057978 +L 5.3786,2.057978,4.8112,1.971779 +L 4.8112,1.971779,4.2505,1.868659 +L 4.2505,1.868659,4.3801,1.60169 +L 4.3801,1.60169,4.524,1.334809 +L 4.524,1.334809,4.6778,1.067824 +L 2.9689,2.135557,3.2418,2.135557 +L 3.2418,2.135557,3.529,2.135557 +L 3.529,2.135557,3.82,2.135557 +L 6.7827,2.135557,6.6325,2.40263 +L 6.6325,2.40263,6.485,2.669511 +L 6.485,2.669511,6.3523,2.936398 +L 6.3523,2.936398,5.5012,3.012713 +L 5.5012,3.012713,4.6536,3.088941 +L 4.6536,3.088941,3.82,3.165256 +L 3.82,3.165256,3.82,3.888425 +L 3.82,3.888425,3.82,4.603154 +L 3.82,4.603154,3.82,5.300794 +L 3.82,5.300794,4.7408,5.320675 +L 4.7408,5.320675,5.1821,5.459011 +L 5.1821,5.459011,5.5289,5.834764 +L 5.5289,5.834764,5.1471,6.210517 +L 5.1471,6.210517,4.489,6.348858 +L 4.489,6.348858,2.9689,6.368632 +L 7.21,2.135557,7.4836,2.135557 +L 7.4836,2.135557,7.7673,2.135557 +L 7.7673,2.135557,8.0611,2.135557 +L 6.9967,3.165256,7.0563,3.535339 +L 7.0563,3.535339,7.126,3.888425 +L 7.126,3.888425,7.21,4.233082 +L 7.21,4.233082,6.2122,4.233082 +L 6.2122,4.233082,5.2315,4.233082 +L 5.2315,4.233082,4.2505,4.233082 +L 5.5289,4.767031,5.8795,5.122924 +L 5.8795,5.122924,6.3103,5.122924 +L 6.3103,5.122924,7.21,4.767031 +L 5.96,6.368632,5.8059,6.738725 +L 5.8059,6.738725,5.6623,7.091817 +L 5.6623,7.091817,5.5289,7.436447 +L 6.3523,6.368632,6.7827,6.471827 +L 6.7827,6.471827,7.21,6.557949 +L 7.21,6.557949,7.6338,6.635611 +L 7.6338,6.635611,7.4836,6.902574 +L 7.4836,6.902574,7.3435,7.169472 +L 7.3435,7.169472,7.21,7.436447 +L 0.864,7.436447,1.7151,8.279716 +L 1.7151,8.279716,2.5416,8.487281 +L 2.5416,8.487281,3.82,8.466074 +L 4.2505,7.436447,5.3576,8.364404 +L 5.3576,8.364404,6.5236,8.529704 +L 6.5236,8.529704,8.0611,8.466074 + +[倣] 38 +L 2.5436,0.26698,3.1671,2.597519 +L 3.1671,2.597519,3.3772,4.597502 +L 3.3772,4.597502,3.3947,6.902601 +L 3.3947,6.902601,3.0967,6.902601 +L 3.0967,6.902601,2.8165,6.902601 +L 2.8165,6.902601,2.5436,6.902601 +L 4.0353,0,4.2493,0.189316 +L 4.2493,0.189316,4.4591,0.370091 +L 4.4591,0.370091,4.6763,0.533968 +L 4.6763,0.533968,4.6763,1.944887 +L 4.6763,1.944887,4.6763,3.356014 +L 4.6763,3.356014,4.6763,4.767031 +L 4.6763,4.767031,4.3824,4.767031 +L 4.3824,4.767031,4.0949,4.767031 +L 4.0949,4.767031,3.8252,4.767031 +L 5.4997,0,5.927,0.723182 +L 5.927,0.723182,6.3575,1.437929 +L 6.3575,1.437929,6.7812,2.135573 +L 6.7812,2.135573,5.969,4.601742 +L 5.969,4.601742,6.1123,6.6865 +L 6.1123,6.6865,6.3575,9.000045 +L 8.0631,0,7.7658,0.533968 +L 7.7658,0.533968,7.4856,1.067837 +L 7.4856,1.067837,7.2085,1.601701 +L 7.2085,2.669511,7.3175,3.611671 +L 7.3175,3.611671,7.5241,4.689287 +L 7.5241,4.689287,7.6358,6.368632 +L 7.6358,6.368632,7.2085,6.368632 +L 7.2085,6.368632,6.7812,6.368632 +L 6.7812,6.368632,6.3575,6.368632 +L 3.8252,6.902601,3.8252,7.615876 +L 3.8252,7.615876,3.8252,8.312185 +L 3.8252,8.312185,3.8252,9.000045 +L 4.2493,6.902601,4.526,6.902601 +L 4.526,6.902601,4.7989,6.902601 +L 4.7989,6.902601,5.0724,6.902601 +L 1.6852,0,1.6852,6.597517 +A -5.8451,10.627759,8.540417,321.41046,349.01228 + +[俸] 60 +L 1.7156,0,1.635,1.781109 +L 1.635,1.781109,1.5646,3.545228 +L 1.5646,3.545228,1.5016,5.300794 +L 1.5016,5.300794,1.2918,5.137043 +L 1.2918,5.137043,1.0778,4.956251 +L 1.0778,4.956251,0.8645,4.767031 +L 5.1056,0,4.7872,1.449148 +L 4.7872,1.449148,4.0062,1.703344 +L 4.0062,1.703344,3.0006,1.601701 +L 5.5294,1.601701,5.2355,2.134211 +L 5.2355,2.134211,4.9518,2.658189 +L 4.9518,2.658189,4.6748,3.165256 +L 4.6748,3.165256,4.3809,3.165256 +L 4.3809,3.165256,4.1007,3.165256 +L 4.1007,3.165256,3.8205,3.165256 +L 5.9567,1.601701,6.384,1.601701 +L 6.384,1.601701,6.8151,1.601701 +L 6.8151,1.601701,7.2389,1.601701 +L 2.5733,3.165256,2.8468,3.621554 +L 2.8468,3.621554,3.1197,4.069206 +L 3.1197,4.069206,3.3967,4.500073 +L 3.3967,4.500073,3.1197,4.603176 +L 3.1197,4.603176,2.8468,4.689287 +L 2.8468,4.689287,2.5733,4.767031 +L 5.5294,3.165256,5.232,3.580554 +L 5.232,3.580554,5.1231,3.995857 +L 5.1231,3.995857,5.1056,4.767031 +L 5.1056,4.767031,4.6748,4.870063 +L 4.6748,4.870063,4.2478,4.956251 +L 4.2478,4.956251,3.8205,5.03394 +L 3.8205,5.03394,3.9498,5.404001 +L 3.9498,5.404001,4.1007,5.757125 +L 4.1007,5.757125,4.2478,6.101744 +L 4.2478,6.101744,3.9498,6.204858 +L 3.9498,6.204858,3.6696,6.290969 +L 3.6696,6.290969,3.3967,6.368632 +L 7.6378,3.165256,7.0074,4.11442 +L 7.0074,4.11442,6.4645,4.529619 +L 6.4645,4.529619,5.5294,4.767031 +L 7.2389,4.767031,7.5153,4.767031 +L 7.5153,4.767031,7.7888,4.767031 +L 7.7888,4.767031,8.0616,4.767031 +L 6.384,5.300794,6.0337,5.884209 +L 6.0337,5.884209,5.5924,6.230197 +L 5.5924,6.230197,4.6748,6.635611 +L 4.6748,6.635611,4.7833,7.802316 +L 4.7833,7.802316,3.8482,8.011313 +L 3.8482,8.011313,3.0006,7.932208 +L 1.7156,5.834764,1.8273,7.129922 +L 1.8273,7.129922,2.0343,8.060758 +L 2.0343,8.060758,2.1428,9.000045 +L 6.384,6.368632,6.6607,6.368632 +L 6.6607,6.368632,6.9444,6.368632 +L 6.9444,6.368632,7.2389,6.368632 +L 5.5294,7.932208,5.3791,8.302302 +L 5.3791,8.302302,5.2355,8.655365 +L 5.2355,8.655365,5.1056,9.000045 +L 5.9567,7.932208,6.5104,7.932208 +L 6.5104,7.932208,7.0669,7.932208 +L 7.0669,7.932208,7.6378,7.932208 + +[奉] 54 +L 4.2495,0,3.756,1.550916 +L 3.756,1.550916,2.5963,1.754233 +L 2.5963,1.754233,1.2903,1.601701 +L 4.6736,1.601701,4.3791,2.134211 +L 4.3791,2.134211,4.0954,2.658189 +L 4.0954,2.658189,3.8225,3.165256 +L 3.8225,3.165256,3.3952,3.165256 +L 3.3952,3.165256,2.9644,3.165256 +L 2.9644,3.165256,2.5406,3.165256 +L 5.1041,1.601701,5.8049,1.601701 +L 5.8049,1.601701,6.5051,1.601701 +L 6.5051,1.601701,7.2055,1.601701 +L 1.0763,3.165256,1.5631,3.80233 +L 1.5631,3.80233,2.0538,4.422384 +L 2.0538,4.422384,2.5406,5.03394 +L 2.5406,5.03394,1.9694,5.137043 +L 1.9694,5.137043,1.4128,5.223231 +L 1.4128,5.223231,0.8595,5.300794 +L 4.6736,3.165256,4.523,3.535339 +L 4.523,3.535339,4.3791,3.888441 +L 4.3791,3.888441,4.2495,4.233082 +L 5.1041,3.165256,5.3776,3.165256 +L 5.3776,3.165256,5.654,3.165256 +L 5.654,3.165256,5.9275,3.165256 +L 7.2055,3.165256,5.861,4.779711 +L 5.861,4.779711,4.7051,5.300794 +L 4.7051,5.300794,2.9644,5.567807 +L 2.9644,5.567807,3.0972,5.937868 +L 3.0972,5.937868,3.2408,6.290969 +L 3.2408,6.290969,3.3952,6.635611 +L 3.3952,6.635611,2.8243,6.738725 +L 2.8243,6.738725,2.2671,6.824836 +L 2.2671,6.824836,1.7176,6.902601 +L 6.3548,5.300794,6.7852,5.300794 +L 6.7852,5.300794,7.2055,5.300794 +L 7.2055,5.300794,7.6363,5.300794 +L 5.5314,5.834764,5.1811,6.408269 +L 5.1811,6.408269,4.7398,6.685066 +L 4.7398,6.685066,3.8225,6.902601 +L 3.8225,6.902601,3.8225,7.245782 +L 3.8225,7.245782,3.8225,7.588995 +L 3.8225,7.588995,3.8225,7.932208 +L 3.8225,7.932208,2.9714,7.932208 +L 2.9714,7.932208,2.1203,7.932208 +L 2.1203,7.932208,1.2903,7.932208 +L 5.5314,6.902601,5.9342,6.902601 +L 5.9342,6.902601,6.3548,6.902601 +L 6.3548,6.902601,6.7852,6.902601 +L 4.2495,7.932208,4.2495,8.302302 +L 4.2495,8.302302,4.2495,8.655365 +L 4.2495,8.655365,4.2495,9.000045 +L 4.6736,7.932208,5.5104,7.932208 +L 5.5104,7.932208,6.3548,7.932208 +L 6.3548,7.932208,7.2055,7.932208 + +[峰] 42 +L 5.9537,0,4.9204,1.757101 +L 4.9204,1.757101,2.7524,2.183655 +L 2.7524,2.183655,0.865,2.135573 +L 0.865,2.135573,0.865,3.916658 +L 0.865,3.916658,0.865,5.680876 +L 0.865,5.680876,0.865,7.436469 +L 6.3845,1.601701,5.7505,2.353103 +L 5.7505,2.353103,5.3092,2.629972 +L 5.3092,2.629972,4.6788,2.669511 +L 6.8121,1.601701,7.2429,1.601701 +L 7.2429,1.601701,7.6632,1.601701 +L 7.6632,1.601701,8.094,1.601701 +L 2.1433,2.669511,2.1433,4.79383 +L 2.1433,4.79383,2.1433,6.901163 +L 2.1433,6.901163,2.1433,9.000045 +L 3.4284,2.669511,3.4284,4.080534 +L 3.4284,4.080534,3.4284,5.491552 +L 3.4284,5.491552,3.4284,6.902601 +L 3.4284,6.902601,4.469,7.302242 +L 4.469,7.302242,5.043,7.888438 +L 5.043,7.888438,5.5334,9.000045 +L 6.3845,2.669511,5.7505,3.39413 +L 5.7505,3.39413,5.3092,3.661017 +L 5.3092,3.661017,4.6788,3.699216 +L 6.3845,3.699216,6.2339,4.069206 +L 6.2339,4.069206,6.0871,4.422384 +L 6.0871,4.422384,5.9537,4.767031 +L 4.0662,4.767031,4.6823,5.300794 +L 4.6823,5.300794,5.3201,5.834764 +L 5.3201,5.834764,5.9537,6.368632 +L 5.9537,6.368632,5.8069,6.557949 +L 5.8069,6.557949,5.6633,6.738725 +L 5.6633,6.738725,5.5334,6.902601 +L 7.6632,4.767031,7.2429,5.223231 +L 7.2429,5.223231,6.8121,5.670986 +L 6.8121,5.670986,6.3845,6.101744 +L 6.3845,6.101744,6.6612,6.635611 +L 6.6612,6.635611,6.9449,7.169477 +L 6.9449,7.169477,7.2429,7.703426 +L 7.2429,7.703426,6.8121,7.779753 +L 6.8121,7.779753,6.3845,7.855986 +L 6.3845,7.855986,5.9537,7.932208 + + +# kan_37 ------------------------------------------------------- +# 崩抱泡砲縫胞芳褒邦飽乏傍剖坊妨帽房某冒紡肪膨謀僕墨撲朴没堀奔翻凡盆摩磨魔麻埋膜又抹繭慢漫魅岬妙矛霧婿 + + +[崩] 21 +L 0.0034,0.266966,0.3043,1.007048 +L 0.3043,1.007048,0.4128,2.450528 +L 0.4128,2.450528,0.4304,5.834849 +L 0.4304,5.834849,2.5353,5.834849 +L 2.5353,5.834849,2.5353,0 +L 2.5353,0,1.6846,0 +L 3.3938,0,4.1254,1.98731 +L 4.1254,1.98731,4.2795,3.771207 +L 4.2795,3.771207,4.2449,5.834849 +L 4.2449,5.834849,6.3498,5.834849 +L 6.3498,5.834849,6.3498,0 +L 6.3498,0,5.4988,0 +L 0.8615,2.66959,2.1084,2.66959 +L 4.6718,2.66959,5.9187,2.66959 +L 0.8615,4.271182,2.1084,4.271182 +L 4.6718,4.271182,5.9187,4.271182 +L 0.8615,7.436523,0.8615,8.504262 +L 1.2534,7.436523,3.3938,7.436523 +L 3.3938,7.436523,3.3938,9.038221 +L 3.8176,7.436523,5.9187,7.436523 +L 5.9187,7.436523,5.9187,8.504262 + +[抱] 15 +L 1.4831,9.000162,1.4831,0.000025 +L 1.4831,0.000025,0.6604,0.000025 +L 0.0019,3.699218,2.9611,5.548853 +L 0.0019,6.902569,2.9611,6.902569 +L 7.2341,3.000011,6.3203,2.088868 +L 7.2341,7.500005,7.2341,3.000011 +L 3.6511,7.500005,7.2341,7.500005 +L 3.8613,6.000003,6.334,6.000003 +L 6.334,6.000003,6.334,4.000016 +L 6.334,4.000016,3.8613,4.000016 +L 7.2341,1.500004,7.2341,0 +L 3.8613,4.000016,3.8613,2.000007 +L 7.2341,0,4.366,0 +A -1.5886,9.000012,5.4502,326.60272,0 +A 8.1132,2.000007,4.249821,180,208.07389 + +[泡] 14 +L 1.2855,7.97036,0.4592,8.999843 +L 0.8582,5.834644,0.0351,6.902427 +L 1.2855,3.470462,0.0351,0 +L 7.2361,3.000011,6.3255,2.088868 +L 7.2361,7.500005,7.2361,3.000011 +L 2.5222,7.500005,7.2361,7.500005 +L 2.732,6.000003,6.336,6.000003 +L 6.336,6.000003,6.336,4.000016 +L 6.336,4.000016,2.732,4.000016 +L 7.2361,1.500004,7.2361,0 +L 2.732,4.000016,2.732,2.000007 +L 7.2361,0,3.2332,0 +A -2.7179,9.000012,5.4502,326.60272,0 +A 6.9839,2.000007,4.249821,180,208.07389 + +[砲] 25 +L 3.8796,0,3.5781,0.494404 +L 3.5781,0.494404,3.466,1.463245 +L 3.466,1.463245,3.452,3.737321 +L 3.452,3.737321,5.1296,3.737321 +L 5.1296,3.737321,5.1296,5.834849 +L 5.1296,5.834849,3.9318,5.854613 +L 3.9318,5.854613,3.3889,5.992966 +L 3.3889,5.992966,3.0247,6.368718 +L 3.0247,6.368718,3.4838,7.179437 +L 3.4838,7.179437,3.7041,7.871514 +L 3.7041,7.871514,3.8796,9.038221 +L 4.3066,0,7.2626,0 +L 7.2626,0,7.2626,1.601778 +L 0.4924,1.067821,0.594,4.995796 +L 0.594,4.995796,0.7834,7.042443 +L 0.7834,7.042443,0.8882,8.504262 +L 0.8882,8.504262,0.0616,8.504262 +L 0.8882,1.067821,1.7431,1.067821 +L 1.7431,1.067821,1.7431,5.300898 +L 1.7431,5.300898,0.8882,5.300898 +L 5.5569,2.135628,6.8388,3.103046 +L 6.8388,3.103046,6.9789,5.248668 +L 6.9789,5.248668,6.8388,7.436523 +L 6.8388,7.436523,4.3066,7.436523 +L 1.3155,8.504262,2.1736,8.504262 + +[縫] 55 +L 1.3455,0,1.3455,4.766938 +L 1.3455,4.766938,0.0639,4.766938 +L 0.9217,5.300898,1.0513,5.567861 +L 1.0513,5.567861,1.1914,5.834849 +L 1.1914,5.834849,1.3455,6.101733 +L 1.3455,6.101733,0.4909,7.169557 +L 0.4909,7.169557,0.7676,7.806618 +L 0.7676,7.806618,1.0513,8.426584 +L 1.0513,8.426584,1.3455,9.038221 +L 2.0495,7.703514,2.2004,7.97039 +L 1.9062,7.436523,2.0495,7.703514 +L 1.7731,7.169557,1.9062,7.436523 +L 4.0918,7.0918,3.8781,6.902569 +L 4.3054,7.272658,4.0918,7.0918 +L 4.5187,7.436523,4.3054,7.272658 +L 5.2893,6.738796,4.5187,7.436523 +L 6.0777,6.024066,5.2893,6.738796 +L 6.8657,5.300898,6.0777,6.024066 +L 6.7151,5.137021,6.8657,5.300898 +L 6.5715,4.956245,6.7151,5.137021 +L 6.4419,4.766938,6.5715,4.956245 +L 6.0146,4.766938,5.587,5.137021 +L 5.587,5.137021,5.1565,5.4902 +L 5.1565,5.4902,4.7359,5.834849 +L 5.2893,4.269834,4.5818,4.793808 +L 6.0146,3.737321,5.2893,4.269834 +L 6.0146,2.66959,5.587,3.039589 +L 5.587,3.039589,5.1565,3.39268 +L 5.1565,3.39268,4.7359,3.737321 +L 4.5818,4.793808,3.8781,5.300898 +L 3.51,2.672373,3.447,4.271182 +L 3.3804,1.370118,3.51,2.672373 +L 2.6309,0,3.3804,1.370118 +L 4.1545,0.37008,3.8781,0.533957 +L 4.4382,0.189217,4.1545,0.37008 +L 4.7359,0,4.4382,0.189217 +L 5.1565,0,7.2615,0 +L 3.447,4.271182,2.8796,4.450705 +L 2.8796,4.450705,2.3262,4.613041 +L 2.3262,4.613041,1.7731,4.766938 +L 0.0639,1.334792,0.197,1.97185 +L 0.197,1.97185,0.3403,2.591828 +L 0.3403,2.591828,0.4909,3.203466 +L 5.587,1.067821,5.4399,2.262745 +L 5.4399,2.262745,5.0024,2.644064 +L 5.0024,2.644064,4.3054,2.66959 +L 2.6309,1.868665,2.4736,2.324864 +L 2.4736,2.324864,2.33,2.772609 +L 2.33,2.772609,2.2004,3.203466 +L 6.0146,6.902569,6.1438,7.169557 +L 6.1438,7.169557,6.2878,7.436523 +L 6.2878,7.436523,6.4419,7.703514 +L 6.4419,7.703514,5.864,7.806618 +L 5.864,7.806618,5.2893,7.892729 +L 5.2893,7.892729,4.7359,7.97039 + +[胞] 22 +L 0.094,0.266966,0.3948,1.106011 +L 0.3948,1.106011,0.5069,3.241574 +L 0.5069,3.241574,0.5209,8.504262 +L 0.5209,8.504262,1.7751,8.504262 +L 1.7751,8.504262,1.7751,0 +L 3.9043,0,3.6101,0.494404 +L 3.6101,0.494404,3.498,1.463245 +L 3.498,1.463245,3.4843,3.737321 +L 3.4843,3.737321,5.1932,3.737321 +L 5.1932,3.737321,5.1932,5.834849 +L 5.1932,5.834849,3.8591,5.953399 +L 3.8591,5.953399,3.1022,6.072072 +L 3.1022,6.072072,2.6294,5.834849 +L 4.6086,7.0918,3.4843,6.902569 +L 5.7396,7.272658,4.6086,7.0918 +L 6.8674,7.436523,5.7396,7.272658 +L 7.011,5.248668,6.8674,7.436523 +L 6.8674,3.103046,7.011,5.248668 +L 5.5855,2.135628,6.8674,3.103046 +L 7.2947,0,7.2947,1.067821 +L 4.3354,0,7.2947,0 +L 3.9043,7.97039,3.9043,9.038221 + +[芳] 24 +L 0.7366,0,2.0083,1.670995 +L 2.0083,1.670995,2.8069,3.12147 +L 2.8069,3.12147,3.0867,5.300898 +L 3.0867,5.300898,0.1271,5.300898 +L 3.9417,0,4.7644,0 +L 4.7644,0,5.3633,1.20625 +L 5.3633,1.20625,5.584,2.175198 +L 5.584,2.175198,5.6193,3.737321 +L 5.6193,3.737321,3.5105,3.737321 +L 3.5105,5.300898,3.5105,6.902569 +L 3.9417,5.300898,6.8977,5.300898 +L 2.2321,7.169557,1.8679,7.733165 +L 1.8679,7.733165,1.3215,7.940731 +L 1.3215,7.940731,0.1271,7.97039 +L 4.7644,7.169557,4.4001,7.733165 +L 4.4001,7.733165,3.8537,7.940731 +L 3.8537,7.940731,2.6594,7.97039 +L 2.6594,7.97039,2.5053,8.340476 +L 2.5053,8.340476,2.3621,8.693581 +L 2.3621,8.693581,2.2321,9.038221 +L 5.1882,7.97039,5.0376,8.340476 +L 5.0376,8.340476,4.894,8.693581 +L 4.894,8.693581,4.7644,9.038221 +L 5.6193,7.97039,6.8977,7.97039 + +[褒] 40 +L 0.9802,0,2.2621,0 +L 2.2621,0,2.2621,2.135628 +L 2.2621,2.135628,1.5161,1.997205 +L 1.5161,1.997205,0.8682,1.740207 +L 0.8682,1.740207,0.126,1.601778 +L 2.6579,0,2.9906,0.375756 +L 2.9906,0.375756,3.3237,0.514174 +L 3.3237,0.514174,3.9363,0.533957 +L 6.5004,0,5.6455,0.99014 +L 5.6455,0.99014,4.7944,1.97185 +L 4.7944,1.97185,3.9363,2.936486 +L 3.9363,2.936486,3.5164,2.85881 +L 3.5164,2.85881,3.0852,2.772609 +L 3.0852,2.772609,2.6579,2.66959 +L 0.9802,3.203466,0.8962,3.916743 +L 0.8962,3.916743,0.8296,4.613041 +L 0.8296,4.613041,0.7666,5.300898 +L 0.7666,5.300898,0.5529,5.137021 +L 0.5529,5.137021,0.3393,4.956245 +L 0.3393,4.956245,0.126,4.766938 +L 2.8716,3.737321,3.5164,4.538162 +L 3.5164,4.538162,3.2183,4.614472 +L 3.2183,4.614472,2.9346,4.690705 +L 2.9346,4.690705,2.6579,4.766938 +L 4.7944,4.004287,4.497,4.269834 +L 4.497,4.269834,4.2165,4.526837 +L 4.2165,4.526837,3.9363,4.766938 +L 6.5004,3.737321,5.5793,4.891253 +L 5.5793,4.891253,4.5181,5.519864 +L 4.5181,5.519864,3.5164,5.834849 +L 3.5164,5.834849,3.5164,6.902569 +L 3.5164,6.902569,6.0766,6.902569 +L 6.0766,6.902569,6.0766,5.834849 +L 6.0766,5.834849,5.2217,5.834849 +L 0.9802,5.834849,1.2534,6.204842 +L 1.2534,6.204842,1.541,6.557934 +L 1.541,6.557934,1.8352,6.902569 +L 0.126,7.97039,3.5164,7.97039 +L 3.5164,7.97039,3.5164,9.038221 +L 3.9363,7.97039,6.8994,7.97039 + +[邦] 24 +L 0.1592,0,0.7055,0.99014 +L 0.7055,0.99014,1.2659,1.97185 +L 1.2659,1.97185,1.8337,2.936486 +L 1.8337,2.936486,1.4866,3.500101 +L 1.4866,3.500101,1.0561,3.707657 +L 1.0561,3.707657,0.1592,3.737321 +L 4.8244,0,4.8244,8.504262 +L 4.8244,8.504262,6.9294,8.504262 +L 6.9294,8.504262,6.513,5.785405 +L 6.513,5.785405,6.9788,4.396937 +L 6.9788,4.396937,7.3567,2.135628 +L 7.3567,2.135628,7.024,1.759897 +L 7.024,1.759897,6.6912,1.62155 +L 6.6912,1.62155,6.0751,1.601778 +L 2.2641,3.737321,1.7531,4.823475 +L 1.7531,4.823475,1.522,5.562205 +L 1.522,5.562205,0.583,5.834849 +L 2.6848,3.737321,3.5425,3.737321 +L 2.2641,5.834849,1.6025,7.117324 +L 1.6025,7.117324,1.3465,7.781176 +L 1.3465,7.781176,0.1592,7.97039 +L 2.2641,7.97039,1.9668,8.693581 +L 1.9668,8.693581,1.8337,9.038221 +L 2.6848,7.97039,3.5425,7.97039 + +[飽] 34 +L 4.3991,0,4.0944,0.494404 +L 4.0944,0.494404,3.9827,1.463245 +L 3.9827,1.463245,3.9683,3.737321 +L 3.9683,3.737321,5.6775,3.737321 +L 5.6775,3.737321,5.6775,5.834849 +L 5.6775,5.834849,4.4587,5.854613 +L 4.4587,5.854613,3.9158,5.992966 +L 3.9158,5.992966,3.5725,6.368718 +L 3.5725,6.368718,4.0107,7.179437 +L 4.0107,7.179437,4.2205,7.871514 +L 4.2205,7.871514,4.3991,9.038221 +L 4.8229,0,7.3867,0 +L 7.3867,0,7.3867,1.067821 +L 0.585,0.533957,0.5674,4.659599 +L 0.5674,4.659599,0.4554,6.310732 +L 0.4554,6.310732,0.1577,6.902569 +L 0.1577,6.902569,0.648,7.625749 +L 0.648,7.625749,1.1418,8.340476 +L 1.1418,8.340476,1.6497,9.038221 +L 1.6497,9.038221,1.9929,8.693581 +L 1.9929,8.693581,2.3572,8.340476 +L 2.3572,8.340476,2.7214,7.97039 +L 1.2259,0.533957,1.7131,1.067821 +L 1.7131,1.067821,2.2104,1.601778 +L 2.2104,1.601778,2.7214,2.135628 +L 5.6775,2.135628,6.9629,3.103046 +L 6.9629,3.103046,7.1065,5.248668 +L 7.1065,5.248668,6.9629,7.436523 +L 6.9629,7.436523,4.8229,7.436523 +L 1.0123,3.203466,2.7214,3.203466 +L 2.7214,3.203466,2.7214,4.766938 +L 2.7214,4.766938,1.0123,4.766938 +L 2.7214,5.300898,2.7214,6.368718 +L 2.7214,6.368718,1.0123,6.368718 + +[乏] 16 +L 0.1915,0,0.6153,0.90404 +L 0.6153,0.90404,1.0426,1.790998 +L 1.0426,1.790998,1.4699,2.66959 +L 3.5749,0,3.004,0.533957 +L 3.004,0.533957,2.4436,1.067821 +L 2.4436,1.067821,1.8972,1.601778 +L 4.0022,0,7.3887,0 +L 2.9304,2.135628,6.1348,5.567861 +L 6.1348,5.567861,4.2859,5.670981 +L 4.2859,5.670981,2.4436,5.757084 +L 2.4436,5.757084,0.6153,5.834849 +L 3.5749,6.368718,3.5749,7.97039 +L 3.5749,7.97039,1.0426,7.97039 +L 4.0022,7.97039,4.7447,8.108911 +L 4.7447,8.108911,5.3927,8.365828 +L 5.3927,8.365828,6.1348,8.504262 + +[傍] 34 +L 1.0446,0,0.9606,1.781104 +L 0.9606,1.781104,0.8902,3.545305 +L 0.8902,3.545305,0.8306,5.300898 +L 0.8306,5.300898,0.6135,5.137021 +L 0.6135,5.137021,0.4103,4.956245 +L 0.4103,4.956245,0.2177,4.766938 +L 2.5363,0,3.1738,0.723172 +L 3.1738,0.723172,3.8186,1.437901 +L 3.8186,1.437901,4.4592,2.135628 +L 4.4592,2.135628,4.4592,3.737321 +L 4.4592,3.737321,2.7535,3.737321 +L 4.8549,0,5.8286,0.257181 +L 5.8286,0.257181,6.3859,0.988717 +L 6.3859,0.988717,6.5641,2.135628 +L 6.5641,2.135628,4.8549,2.135628 +L 4.8549,3.737321,4.8549,4.766938 +L 5.2857,3.737321,6.9918,3.737321 +L 2.323,4.766938,2.323,5.834849 +L 2.323,5.834849,4.0319,5.834849 +L 4.0319,5.834849,3.8816,6.471909 +L 3.8816,6.471909,3.7345,7.0918 +L 3.7345,7.0918,3.6046,7.703514 +L 3.6046,7.703514,3.3072,7.806618 +L 3.3072,7.806618,3.0235,7.892729 +L 3.0235,7.892729,2.7535,7.97039 +L 7.4191,4.766938,7.4191,5.834849 +L 7.4191,5.834849,4.4592,5.834849 +L 1.0446,5.834849,1.1564,7.139895 +L 1.1564,7.139895,1.356,8.089047 +L 1.356,8.089047,1.4649,9.038221 +L 5.7095,6.368718,6.0107,6.783921 +L 6.0107,6.783921,6.1193,7.199224 +L 6.1193,7.199224,6.1368,7.97039 +L 6.1368,7.97039,4.0319,7.97039 + +[剖] 21 +L 0.647,0,0.647,3.203466 +L 0.647,3.203466,3.2111,3.203466 +L 3.2111,3.203466,3.2111,0 +L 3.2111,0,0.647,0 +L 5.7434,0,7.0215,0 +L 7.0215,0,7.0215,9.038221 +L 5.3126,2.135628,5.3126,7.97039 +L 0.2165,4.766938,1.0708,4.766938 +L 1.0708,4.766938,1.0568,5.538112 +L 1.0568,5.538112,0.9451,5.953399 +L 0.9451,5.953399,0.647,6.368718 +L 1.5016,4.766938,1.9219,4.870134 +L 1.9219,4.870134,2.3527,4.956245 +L 2.3527,4.956245,2.7803,5.03391 +L 2.7803,5.03391,2.9131,5.4902 +L 2.9131,5.4902,3.0567,5.937955 +L 3.0567,5.937955,3.2111,6.368718 +L 3.2111,4.766938,4.0339,4.766938 +L 0.2165,7.436523,1.9219,7.436523 +L 1.9219,7.436523,1.9219,9.038221 +L 2.3527,7.436523,3.6031,7.436523 + +[坊] 17 +L 2.141,0,3.6856,2.521188 +L 3.6856,2.521188,4.3476,4.45771 +L 4.3476,4.45771,4.4912,7.436523 +L 4.4912,7.436523,2.7823,7.436523 +L 4.915,0,6.3443,0.837598 +L 6.3443,0.837598,6.6525,2.734496 +L 6.6525,2.734496,6.5962,4.766938 +L 6.5962,4.766938,4.915,4.766938 +L 0.2501,2.66959,1.5285,2.66959 +L 1.5285,2.66959,1.5495,4.679382 +L 1.5495,4.679382,1.2868,5.935066 +L 1.2868,5.935066,0.2501,6.368718 +L 1.9274,6.368718,1.651,6.823474 +L 1.651,6.823474,1.546,7.515643 +L 1.546,7.515643,1.5285,9.038221 +L 4.915,7.436523,4.915,9.038221 +L 5.3423,7.436523,7.4473,7.436523 + +[妨] 30 +L 0.2797,0,0.6829,0.637049 +L 0.6829,0.637049,1.1032,1.257035 +L 1.1032,1.257035,1.534,1.868665 +L 1.534,1.868665,1.1974,2.442073 +L 1.1974,2.442073,0.8752,2.718939 +L 0.8752,2.718939,0.2797,2.936486 +L 0.2797,2.936486,0.5704,3.935084 +L 0.5704,3.935084,0.7876,5.103217 +L 0.7876,5.103217,1.1032,6.101733 +L 1.1032,6.101733,0.2797,6.902569 +L 3.2393,0,4.42,2.538172 +L 4.42,2.538172,4.8539,4.796681 +L 4.8539,4.796681,4.917,7.436523 +L 4.917,7.436523,3.6631,7.436523 +L 5.3443,0,6.8013,0.846044 +L 6.8013,0.846044,7.1169,2.751403 +L 7.1169,2.751403,7.0538,4.766938 +L 7.0538,4.766938,5.3443,4.766938 +L 2.3847,1.601778,2.1641,3.052261 +L 2.1641,3.052261,2.2765,5.274019 +L 2.2765,5.274019,2.3847,6.902569 +L 2.3847,6.902569,1.3238,7.193557 +L 1.3238,7.193557,1.0681,7.959157 +L 1.0681,7.959157,1.1032,9.038221 +L 5.3443,7.436523,5.3443,9.038221 +L 5.7681,7.436523,7.4811,7.436523 +L 3.6775,6.330306,0.0801,6.330306 +L 0.9385,3.326524,1.5616,8.999889 +A -4.4521,-3.399564,8.620982,23.224227,51.278884 +A -6.3119,6.330306,9.138971,316.15783,0 + +[帽] 48 +L 1.1328,0,1.1328,2.315055 +L 1.1328,2.315055,1.1328,4.613041 +L 1.1328,4.613041,1.1328,6.902569 +L 1.1328,6.902569,0.9195,7.0918 +L 0.9195,7.0918,0.7024,7.272658 +L 0.7024,7.272658,0.4919,7.436523 +L 0.4919,7.436523,0.4113,5.861643 +L 0.4113,5.861643,0.3381,4.269834 +L 0.3381,4.269834,0.2817,2.66959 +L 4.0924,0,4.0924,1.437901 +L 4.0924,1.437901,4.0924,2.85881 +L 4.0924,2.85881,4.0924,4.271182 +L 4.0924,4.271182,4.9473,4.271182 +L 4.9473,4.271182,5.8019,4.271182 +L 5.8019,4.271182,6.6562,4.271182 +L 6.6562,4.271182,6.6562,2.85881 +L 6.6562,2.85881,6.6562,1.437901 +L 6.6562,1.437901,6.6562,0 +L 6.6562,0,5.8019,0 +L 5.8019,0,4.9473,0 +L 4.9473,0,4.0924,0 +L 4.5236,1.601778,5.0766,1.601778 +L 5.0766,1.601778,5.651,1.601778 +L 5.651,1.601778,6.2292,1.601778 +L 2.4112,2.66959,2.4112,4.269834 +L 2.4112,4.269834,2.4112,5.861643 +L 2.4112,5.861643,2.4112,7.436523 +L 2.4112,7.436523,1.4586,7.622966 +L 1.4586,7.622966,1.1503,8.16529 +L 1.1503,8.16529,1.1328,9.038221 +L 4.5236,2.66959,5.0766,2.66959 +L 5.0766,2.66959,5.651,2.66959 +L 5.651,2.66959,6.2292,2.66959 +L 3.6651,5.834849,3.6651,6.738796 +L 3.6651,6.738796,3.6651,7.625749 +L 3.6651,7.625749,3.6651,8.504262 +L 3.6651,8.504262,4.7932,8.504262 +L 4.7932,8.504262,5.9277,8.504262 +L 5.9277,8.504262,7.0485,8.504262 +L 7.0485,8.504262,7.0485,7.625749 +L 7.0485,7.625749,7.0485,6.738796 +L 7.0485,6.738796,7.0485,5.834849 +L 7.0485,5.834849,5.9277,5.834849 +L 5.9277,5.834849,4.7932,5.834849 +L 4.7932,5.834849,3.6651,5.834849 +L 4.0924,7.436523,4.9473,7.436523 +L 4.9473,7.436523,5.8019,7.436523 +L 5.8019,7.436523,6.6562,7.436523 + +[房,,] 36 +L 0.3083,0.266966,0.9352,2.597495 +L 0.9352,2.597495,1.1457,4.597488 +L 1.1457,4.597488,1.1593,6.902569 +L 1.1593,6.902569,2.9946,6.902569 +L 2.9946,6.902569,4.8268,6.902569 +L 4.8268,6.902569,6.655,6.902569 +L 6.655,6.902569,6.655,6.368718 +L 6.655,6.368718,6.655,5.834849 +L 6.655,5.834849,6.655,5.300898 +L 6.655,5.300898,5.8039,5.300898 +L 5.8039,5.300898,4.956,5.300898 +L 4.956,5.300898,4.1228,5.300898 +L 4.1228,5.300898,4.1228,4.793808 +L 4.1228,4.793808,4.1228,4.269834 +L 4.1228,4.269834,4.1228,3.737321 +L 4.1228,3.737321,5.2506,3.737321 +L 5.2506,3.737321,6.3854,3.737321 +L 6.3854,3.737321,7.5058,3.737321 +L 1.7726,0,2.7179,1.197704 +L 2.7179,1.197704,3.3169,2.259864 +L 3.3169,2.259864,3.6955,3.737321 +L 3.6955,3.737321,3.1172,3.737321 +L 3.1172,3.737321,2.5463,3.737321 +L 2.5463,3.737321,1.9859,3.737321 +L 4.9805,0,6.1472,0.146876 +L 6.1472,0.146876,6.5885,0.768397 +L 6.5885,0.768397,6.655,2.135628 +L 6.655,2.135628,5.8039,2.135628 +L 5.8039,2.135628,4.956,2.135628 +L 4.956,2.135628,4.1228,2.135628 +L 1.5621,5.300898,2.2661,5.300898 +L 2.2661,5.300898,2.9736,5.300898 +L 2.9736,5.300898,3.6955,5.300898 +L 0.3083,8.504262,2.7008,8.504262 +L 2.7008,8.504262,5.1031,8.504262 +L 5.1031,8.504262,7.5058,8.504262 + +[某] 45 +L 3.7286,0,3.6446,0.90404 +L 3.6446,0.90404,3.5749,1.790998 +L 3.5749,1.790998,3.5153,2.66959 +L 3.5153,2.66959,1.8307,1.166708 +L 1.8307,1.166708,0.9967,0.613049 +L 0.9967,0.613049,0.3141,0.533957 +L 6.2574,0.533957,4.268,2.471836 +L 4.268,2.471836,2.6678,3.045152 +L 2.6678,3.045152,0.3141,3.203466 +L 4.5486,3.203466,5.4063,3.203466 +L 5.4063,3.203466,6.2574,3.203466 +L 6.2574,3.203466,7.1124,3.203466 +L 3.7286,3.737321,3.7286,4.080528 +L 3.7286,4.080528,3.7286,4.423733 +L 3.7286,4.423733,3.7286,4.766938 +L 3.7286,4.766938,3.1511,4.766938 +L 3.1511,4.766938,2.5728,4.766938 +L 2.5728,4.766938,2.0198,4.766938 +L 2.0198,4.766938,1.9879,6.885681 +L 1.9879,6.885681,1.5781,7.783969 +L 1.5781,7.783969,0.3141,7.97039 +L 4.1248,4.766938,4.5486,4.766938 +L 4.5486,4.766938,4.979,4.766938 +L 4.979,4.766938,5.4063,4.766938 +L 5.4063,4.766938,5.4063,5.300898 +L 5.4063,5.300898,5.4063,5.834849 +L 5.4063,5.834849,5.4063,6.368718 +L 5.4063,6.368718,4.405,6.368718 +L 4.405,6.368718,3.4239,6.368718 +L 3.4239,6.368718,2.4436,6.368718 +L 5.4063,7.169557,5.2561,7.436523 +L 5.2561,7.436523,5.1051,7.703514 +L 5.1051,7.703514,4.979,7.97039 +L 4.979,7.97039,4.1248,7.97039 +L 4.1248,7.97039,3.2768,7.97039 +L 3.2768,7.97039,2.4436,7.97039 +L 2.4436,7.97039,2.2926,8.340476 +L 2.2926,8.340476,2.149,8.693581 +L 2.149,8.693581,2.0198,9.038221 +L 5.8336,7.97039,5.6834,8.340476 +L 5.6834,8.340476,5.5363,8.693581 +L 5.5363,8.693581,5.4063,9.038221 +L 6.2574,7.97039,6.5341,7.97039 +L 6.5341,7.97039,6.8147,7.97039 +L 6.8147,7.97039,7.1124,7.97039 + +[冒] 33 +L 2.0495,0,2.0495,1.437901 +L 2.0495,1.437901,2.0495,2.85881 +L 2.0495,2.85881,2.0495,4.271182 +L 2.0495,4.271182,3.3107,4.271182 +L 3.3107,4.271182,4.5821,4.271182 +L 4.5821,4.271182,5.864,4.271182 +L 5.864,4.271182,5.864,2.85881 +L 5.864,2.85881,5.864,1.437901 +L 5.864,1.437901,5.864,0 +L 5.864,0,4.5821,0 +L 4.5821,0,3.3107,0 +L 3.3107,0,2.0495,0 +L 2.4452,1.601778,3.4333,1.601778 +L 3.4333,1.601778,4.4311,1.601778 +L 4.4311,1.601778,5.4367,1.601778 +L 2.4452,2.66959,3.4333,2.66959 +L 3.4333,2.66959,4.4311,2.66959 +L 4.4311,2.66959,5.4367,2.66959 +L 1.1914,5.834849,1.1914,6.738796 +L 1.1914,6.738796,1.1914,7.625749 +L 1.1914,7.625749,1.1914,8.504262 +L 1.1914,8.504262,3.027,8.504262 +L 3.027,8.504262,4.8549,8.504262 +L 4.8549,8.504262,6.6867,8.504262 +L 6.6867,8.504262,6.6867,7.625749 +L 6.6867,7.625749,6.6867,6.738796 +L 6.6867,6.738796,6.6867,5.834849 +L 6.6867,5.834849,4.8549,5.834849 +L 4.8549,5.834849,3.027,5.834849 +L 3.027,5.834849,1.1914,5.834849 +L 1.6222,7.436523,3.1808,7.436523 +L 3.1808,7.436523,4.7327,7.436523 +L 4.7327,7.436523,6.2913,7.436523 + +[紡] 48 +L 1.6207,0,1.6207,1.600333 +L 1.6207,1.600333,1.6207,3.192129 +L 1.6207,3.192129,1.6207,4.766938 +L 1.6207,4.766938,1.1934,4.766938 +L 1.1934,4.766938,0.7804,4.766938 +L 0.7804,4.766938,0.3703,4.766938 +L 3.3302,0,4.5245,2.521188 +L 4.5245,2.521188,4.9554,4.788161 +L 4.9554,4.788161,5.0079,7.436523 +L 5.0079,7.436523,4.5841,7.436523 +L 4.5841,7.436523,4.1638,7.436523 +L 4.1638,7.436523,3.761,7.436523 +L 5.4352,0,6.8957,0.846044 +L 6.8957,0.846044,7.2071,2.751403 +L 7.2071,2.751403,7.144,4.766938 +L 7.144,4.766938,6.5665,4.766938 +L 6.5665,4.766938,5.9952,4.766938 +L 5.9952,4.766938,5.4352,4.766938 +L 0.3703,1.334792,0.5002,1.97185 +L 0.5002,1.97185,0.647,2.591828 +L 0.647,2.591828,0.7979,3.203466 +L 2.9029,1.868665,2.752,2.324864 +L 2.752,2.324864,2.6052,2.772609 +L 2.6052,2.772609,2.4753,3.203466 +L 2.9029,4.538162,2.752,4.803695 +L 2.752,4.803695,2.6052,5.060876 +L 2.6052,5.060876,2.4753,5.300898 +L 2.4753,5.300898,2.3247,5.137021 +L 2.3247,5.137021,2.1814,4.956245 +L 2.1814,4.956245,2.0518,4.766938 +L 1.1934,5.300898,1.3268,5.567861 +L 1.3268,5.567861,1.4736,5.834849 +L 1.4736,5.834849,1.6207,6.101733 +L 1.6207,6.101733,1.3443,6.471909 +L 1.3443,6.471909,1.0743,6.824913 +L 1.0743,6.824913,0.7979,7.169557 +L 0.7979,7.169557,1.0743,7.806618 +L 1.0743,7.806618,1.3443,8.426584 +L 1.3443,8.426584,1.6207,9.038221 +L 2.0518,7.169557,2.1814,7.436523 +L 2.1814,7.436523,2.3247,7.703514 +L 2.3247,7.703514,2.4753,7.97039 +L 5.4352,7.436523,5.4352,7.97039 +L 5.4352,7.97039,5.4352,8.504262 +L 5.4352,8.504262,5.4352,9.038221 +L 5.866,7.436523,6.419,7.436523 +L 6.419,7.436523,6.9938,7.436523 +L 6.9938,7.436523,7.5748,7.436523 + +[肪] 36 +L 0.3726,0.266966,0.6735,1.106011 +L 0.6735,1.106011,0.7856,3.241574 +L 0.7856,3.241574,0.7999,8.504262 +L 0.7999,8.504262,1.353,8.504262 +L 1.353,8.504262,1.9312,8.504262 +L 1.9312,8.504262,2.5088,8.504262 +L 2.5088,8.504262,2.5088,5.680769 +L 2.5088,5.680769,2.5088,2.84893 +L 2.5088,2.84893,2.5088,0 +L 2.5088,0,2.2111,0 +L 2.2111,0,1.9312,0 +L 1.9312,0,1.6545,0 +L 3.3599,0,4.5441,2.538172 +L 4.5441,2.538172,4.978,4.796681 +L 4.978,4.796681,5.0376,7.436523 +L 5.0376,7.436523,4.467,7.436523 +L 4.467,7.436523,3.9133,7.436523 +L 3.9133,7.436523,3.3599,7.436523 +L 5.4649,0,6.9254,0.846044 +L 6.9254,0.846044,7.2409,2.751403 +L 7.2409,2.751403,7.1744,4.766938 +L 7.1744,4.766938,6.5961,4.766938 +L 6.5961,4.766938,6.0256,4.766938 +L 6.0256,4.766938,5.4649,4.766938 +L 1.2237,3.737321,1.5036,3.737321 +L 1.5036,3.737321,1.7838,3.737321 +L 1.7838,3.737321,2.0783,3.737321 +L 1.2237,6.368718,1.5036,6.368718 +L 1.5036,6.368718,1.7838,6.368718 +L 1.7838,6.368718,2.0783,6.368718 +L 5.4649,7.436523,5.4649,7.97039 +L 5.4649,7.97039,5.4649,8.504262 +L 5.4649,8.504262,5.4649,9.038221 +L 5.8922,7.436523,6.4459,7.436523 +L 6.4459,7.436523,6.9993,7.436523 +L 6.9993,7.436523,7.5698,7.436523 + +[膨] 48 +L 0.4023,0.266966,0.7004,1.106011 +L 0.7004,1.106011,0.8121,3.241574 +L 0.8121,3.241574,0.8296,8.504262 +L 0.8296,8.504262,1.2324,8.504262 +L 1.2324,8.504262,1.653,8.504262 +L 1.653,8.504262,2.0768,8.504262 +L 2.0768,8.504262,2.0768,5.680769 +L 2.0768,5.680769,2.0768,2.84893 +L 2.0768,2.84893,2.0768,0 +L 5.6809,0,6.318,0.723172 +L 6.318,0.723172,6.9624,1.437901 +L 6.9624,1.437901,7.6037,2.135628 +L 2.9346,0.533957,3.3619,0.533957 +L 3.3619,0.533957,3.7857,0.533957 +L 3.7857,0.533957,4.2165,0.533957 +L 4.2165,0.533957,4.4932,1.257035 +L 4.4932,1.257035,4.7734,1.97185 +L 4.7734,1.97185,5.0714,2.66959 +L 3.7857,1.868665,3.6354,2.135628 +L 3.6354,2.135628,3.4918,2.40252 +L 3.4918,2.40252,3.3619,2.66959 +L 3.3619,3.737321,3.3619,4.269834 +L 3.3619,4.269834,3.3619,4.793808 +L 3.3619,4.793808,3.3619,5.300898 +L 3.3619,5.300898,3.9226,5.300898 +L 3.9226,5.300898,4.4932,5.300898 +L 4.4932,5.300898,5.0714,5.300898 +L 5.0714,5.300898,5.0714,4.793808 +L 5.0714,4.793808,5.0714,4.269834 +L 5.0714,4.269834,5.0714,3.737321 +L 5.0714,3.737321,4.4932,3.737321 +L 4.4932,3.737321,3.9226,3.737321 +L 3.9226,3.737321,3.3619,3.737321 +L 6.1082,3.737321,6.5981,4.269834 +L 6.5981,4.269834,7.0923,4.793808 +L 7.0923,4.793808,7.6037,5.300898 +L 3.3619,6.368718,3.6354,6.368718 +L 3.6354,6.368718,3.9226,6.368718 +L 3.9226,6.368718,4.2165,6.368718 +L 4.2165,6.368718,4.0659,7.563641 +L 4.0659,7.563641,3.6319,7.944958 +L 3.6319,7.944958,2.9346,7.97039 +L 6.1082,6.902569,6.5981,7.436523 +L 6.5981,7.436523,7.0923,7.97039 +L 7.0923,7.97039,7.6037,8.504262 +L 4.6441,7.97039,4.4932,8.340476 +L 4.4932,8.340476,4.3429,8.693581 +L 4.3429,8.693581,4.2165,9.038221 + +[謀] 77 +L 0.8281,0,0.8281,0.723172 +L 0.8281,0.723172,0.8281,1.437901 +L 0.8281,1.437901,0.8281,2.135628 +L 0.8281,2.135628,1.2554,2.135628 +L 1.2554,2.135628,1.6827,2.135628 +L 1.6827,2.135628,2.11,2.135628 +L 2.11,2.135628,2.11,1.437901 +L 2.11,1.437901,2.11,0.723172 +L 2.11,0.723172,2.11,0 +L 2.11,0,1.6827,0 +L 1.6827,0,1.2554,0 +L 1.2554,0,0.8281,0 +L 5.4972,0,5.4132,0.90404 +L 5.4132,0.90404,5.3463,1.790998 +L 5.3463,1.790998,5.2832,2.66959 +L 5.2832,2.66959,4.6461,2.135628 +L 4.6461,2.135628,4.0118,1.601778 +L 4.0118,1.601778,3.3923,1.067821 +L 7.2061,1.067821,5.9385,2.646841 +L 5.9385,2.646841,4.9645,3.073481 +L 4.9645,3.073481,3.3923,3.203466 +L 6.355,3.203466,6.7756,3.203466 +L 6.7756,3.203466,7.2061,3.203466 +L 7.2061,3.203466,7.6334,3.203466 +L 0.8281,3.737321,1.2554,3.737321 +L 1.2554,3.737321,1.6827,3.737321 +L 1.6827,3.737321,2.11,3.737321 +L 5.4972,3.737321,5.4972,4.080528 +L 5.4972,4.080528,5.4972,4.423733 +L 5.4972,4.423733,5.4972,4.766938 +L 5.4972,4.766938,5.0734,4.766938 +L 5.0734,4.766938,4.6528,4.766938 +L 4.6528,4.766938,4.2469,4.766938 +L 4.2469,4.766938,4.2469,5.670981 +L 4.2469,5.670981,4.2469,6.557934 +L 4.2469,6.557934,4.2469,7.436523 +L 4.2469,7.436523,3.9488,7.625749 +L 3.9488,7.625749,3.6686,7.806618 +L 3.6686,7.806618,3.3923,7.97039 +L 5.9245,4.766938,6.1974,4.766938 +L 6.1974,4.766938,6.4811,4.766938 +L 6.4811,4.766938,6.7756,4.766938 +L 6.7756,4.766938,6.7756,5.300898 +L 6.7756,5.300898,6.7756,5.834849 +L 6.7756,5.834849,6.7756,6.368718 +L 6.7756,6.368718,6.0573,6.368718 +L 6.0573,6.368718,5.3463,6.368718 +L 5.3463,6.368718,4.6461,6.368718 +L 0.8281,5.300898,1.2554,5.300898 +L 1.2554,5.300898,1.6827,5.300898 +L 1.6827,5.300898,2.11,5.300898 +L 0.4288,6.902569,1.1328,6.902569 +L 1.1328,6.902569,1.8337,6.902569 +L 1.8337,6.902569,2.5412,6.902569 +L 6.7756,7.169557,6.6247,7.436523 +L 6.6247,7.436523,6.4811,7.703514 +L 6.4811,7.703514,6.355,7.97039 +L 6.355,7.97039,5.7736,7.97039 +L 5.7736,7.97039,5.1992,7.97039 +L 5.1992,7.97039,4.6461,7.97039 +L 4.6461,7.97039,4.4987,8.340476 +L 4.4987,8.340476,4.3691,8.693581 +L 4.3691,8.693581,4.2469,9.038221 +L 7.2061,7.97039,7.0558,8.340476 +L 7.0558,8.340476,6.9084,8.693581 +L 6.9084,8.693581,6.7756,9.038221 +L 0.8281,8.504262,1.2554,8.504262 +L 1.2554,8.504262,1.6827,8.504262 +L 1.6827,8.504262,2.11,8.504262 +L 0.4012,6.902523,2.9366,6.902523 +L 0.8281,8.504319,2.5061,8.504319 +L 0.8281,5.300969,2.5061,5.300969 +L 0.8281,4.233038,2.5061,4.233038 +L 0.8281,2.669536,2.5061,2.669536 +L 0.8281,0,0.8281,2.669536 +L 2.5061,0,0.8281,0 +L 2.5061,2.669536,2.5061,0 + +[僕] 60 +L 1.2893,0,1.2052,1.781104 +L 1.2052,1.781104,1.1348,3.545305 +L 1.1348,3.545305,1.0753,5.300898 +L 1.0753,5.300898,0.8585,5.137021 +L 0.8585,5.137021,0.648,4.956245 +L 0.648,4.956245,0.4347,4.766938 +L 2.7495,0,3.5235,0.723172 +L 3.5235,0.723172,4.308,1.437901 +L 4.308,1.437901,5.1031,2.135628 +L 5.1031,2.135628,4.7388,2.511378 +L 4.7388,2.511378,4.1823,2.64973 +L 4.1823,2.64973,2.9635,2.66959 +L 7.2046,0,6.634,0.533957 +L 6.634,0.533957,6.0768,1.067821 +L 6.0768,1.067821,5.5234,1.601778 +L 5.5234,2.66959,5.233,3.203466 +L 5.233,3.203466,4.9493,3.737321 +L 4.9493,3.737321,4.6723,4.271182 +L 4.6723,4.271182,4.2453,4.271182 +L 4.2453,4.271182,3.818,4.271182 +L 3.818,4.271182,3.3943,4.271182 +L 5.9542,2.66959,6.3643,2.66959 +L 6.3643,2.66959,6.7776,2.66959 +L 6.7776,2.66959,7.2046,2.66959 +L 5.5234,4.271182,5.1486,4.817817 +L 5.1486,4.817817,4.4835,5.084796 +L 4.4835,5.084796,2.9635,5.300898 +L 5.9542,4.271182,6.2312,4.271182 +L 6.2312,4.271182,6.5146,4.271182 +L 6.5146,4.271182,6.8126,4.271182 +L 5.7409,5.300898,5.9542,5.670981 +L 5.9542,5.670981,6.1682,6.024066 +L 6.1682,6.024066,6.3815,6.368718 +L 6.3815,6.368718,6.0001,6.734474 +L 6.0001,6.734474,5.3413,6.803693 +L 5.3413,6.803693,3.818,6.635597 +L 3.818,6.635597,3.9473,6.368718 +L 3.9473,6.368718,4.0944,6.101733 +L 4.0944,6.101733,4.2453,5.834849 +L 6.3815,5.300898,6.655,5.300898 +L 6.655,5.300898,6.9279,5.300898 +L 6.9279,5.300898,7.2046,5.300898 +L 1.2893,5.834849,1.394,7.139895 +L 1.394,7.139895,1.6006,8.089047 +L 1.6006,8.089047,1.7131,9.038221 +L 2.5673,6.902569,2.8444,6.902569 +L 2.8444,6.902569,3.1137,6.902569 +L 3.1137,6.902569,3.3943,6.902569 +L 3.3943,6.902569,3.3799,7.673751 +L 3.3799,7.673751,3.2682,8.089047 +L 3.2682,8.089047,2.9635,8.504262 +L 6.8126,6.902569,6.5251,7.317872 +L 6.5251,7.317872,6.5251,7.733165 +L 6.5251,7.733165,6.8126,8.504262 +L 4.2453,7.436523,4.2453,7.97039 +L 4.2453,7.97039,4.2453,8.504262 +L 4.2453,8.504262,4.2453,9.038221 +L 5.5234,7.436523,5.5234,7.97039 +L 5.5234,7.97039,5.5234,8.504262 +L 5.5234,8.504262,5.5234,9.038221 + +[墨] 63 +L 0.4612,0,1.5925,0 +L 1.5925,0,2.7203,0 +L 2.7203,0,3.8512,0 +L 3.8512,0,3.4449,1.483124 +L 3.4449,1.483124,2.4748,1.720341 +L 2.4748,1.720341,1.3154,1.601778 +L 4.275,0,5.2526,0 +L 5.2526,0,6.2364,0 +L 6.2364,0,7.2349,0 +L 4.275,1.601778,4.1248,1.97185 +L 4.1248,1.97185,3.9812,2.324864 +L 3.9812,2.324864,3.8512,2.66959 +L 4.7023,1.601778,5.2526,1.601778 +L 5.2526,1.601778,5.8126,1.601778 +L 5.8126,1.601778,6.3835,1.601778 +L 0.4612,2.66959,0.7624,3.084891 +L 0.7624,3.084891,0.8741,3.500101 +L 0.8741,3.500101,0.8917,4.271182 +L 0.8917,4.271182,1.8688,4.374381 +L 1.8688,4.374381,2.853,4.460492 +L 2.853,4.460492,3.8512,4.538162 +L 3.8512,4.538162,3.701,4.803695 +L 3.701,4.803695,3.5539,5.060876 +L 3.5539,5.060876,3.4239,5.300898 +L 3.4239,5.300898,2.7203,5.300898 +L 2.7203,5.300898,2.0198,5.300898 +L 2.0198,5.300898,1.3154,5.300898 +L 2.9966,2.936486,2.8429,3.203466 +L 2.8429,3.203466,2.6989,3.470352 +L 2.6989,3.470352,2.5662,3.737321 +L 5.13,2.936486,4.8323,3.39268 +L 4.8323,3.39268,4.5517,3.840424 +L 4.5517,3.840424,4.275,4.271182 +L 7.2349,2.936486,7.0875,3.306558 +L 7.0875,3.306558,6.9372,3.65966 +L 6.9372,3.65966,6.8073,4.004287 +L 6.8073,4.004287,6.2364,4.107492 +L 6.2364,4.107492,5.6834,4.193527 +L 5.6834,4.193527,5.13,4.271182 +L 4.275,5.300898,3.2912,6.238821 +L 3.2912,6.238821,2.4436,6.422375 +L 2.4436,6.422375,1.3154,6.368718 +L 1.3154,6.368718,1.3154,7.0918 +L 1.3154,7.0918,1.3154,7.806618 +L 1.3154,7.806618,1.3154,8.504262 +L 1.3154,8.504262,2.9966,8.504262 +L 2.9966,8.504262,4.6813,8.504262 +L 4.6813,8.504262,6.3835,8.504262 +L 6.3835,8.504262,6.3835,7.806618 +L 6.3835,7.806618,6.3835,7.0918 +L 6.3835,7.0918,6.3835,6.368718 +L 6.3835,6.368718,5.6834,6.368718 +L 5.6834,6.368718,4.979,6.368718 +L 4.979,6.368718,4.275,6.368718 +L 4.275,6.368718,3.3963,7.272658 +L 3.3963,7.272658,2.6989,7.473204 +L 2.6989,7.473204,1.7151,7.436523 +L 4.7023,5.300898,5.2526,5.300898 +L 5.2526,5.300898,5.8126,5.300898 +L 5.8126,5.300898,6.3835,5.300898 +L 4.7023,7.436523,5.1125,7.436523 +L 5.1125,7.436523,5.5289,7.436523 +L 5.5289,7.436523,5.9527,7.436523 + +[撲] 66 +L 0.4628,0,0.7399,0 +L 0.7399,0,1.0236,0 +L 1.0236,0,1.3139,0 +L 1.3139,0,1.3139,1.257035 +L 1.3139,1.257035,1.3139,2.505717 +L 1.3139,2.505717,1.3139,3.737321 +L 1.3139,3.737321,1.0236,3.737321 +L 1.0236,3.737321,0.7399,3.737321 +L 0.7399,3.737321,0.4628,3.737321 +L 2.813,0,3.5769,0.723172 +L 3.5769,0.723172,4.3474,1.437901 +L 4.3474,1.437901,5.1355,2.135628 +L 5.1355,2.135628,4.7677,2.511378 +L 4.7677,2.511378,4.2213,2.64973 +L 4.2213,2.64973,3.0231,2.66959 +L 7.2646,0,6.6867,0.533957 +L 6.6867,0.533957,6.1158,1.067821 +L 6.1158,1.067821,5.5558,1.601778 +L 5.5558,2.66959,5.2612,3.203466 +L 5.2612,3.203466,4.9775,3.737321 +L 4.9775,3.737321,4.7047,4.271182 +L 4.7047,4.271182,4.277,4.271182 +L 4.277,4.271182,3.8606,4.271182 +L 3.8606,4.271182,3.4543,4.271182 +L 5.9866,2.66959,6.4135,2.66959 +L 6.4135,2.66959,6.8408,2.66959 +L 6.8408,2.66959,7.2646,2.66959 +L 1.3139,4.271182,1.3139,4.984478 +L 1.3139,4.984478,1.3139,5.680769 +L 1.3139,5.680769,1.3139,6.368718 +L 1.3139,6.368718,1.0236,6.557934 +L 1.0236,6.557934,0.7399,6.738796 +L 0.7399,6.738796,0.4628,6.902569 +L 5.5558,4.271182,5.1807,4.817817 +L 5.1807,4.817817,4.5225,5.084796 +L 4.5225,5.084796,3.0231,5.300898 +L 5.9866,4.271182,6.2633,4.271182 +L 6.2633,4.271182,6.5431,4.271182 +L 6.5431,4.271182,6.8408,4.271182 +L 5.7691,5.300898,5.9866,5.670981 +L 5.9866,5.670981,6.1999,6.024066 +L 6.1999,6.024066,6.4135,6.368718 +L 6.4135,6.368718,6.0317,6.734474 +L 6.0317,6.734474,5.3771,6.803693 +L 5.3771,6.803693,3.8816,6.635597 +L 3.8816,6.635597,4.0007,6.368718 +L 4.0007,6.368718,4.1334,6.101733 +L 4.1334,6.101733,4.277,5.834849 +L 6.4135,5.300898,6.6867,5.300898 +L 6.6867,5.300898,6.9704,5.300898 +L 6.9704,5.300898,7.2646,5.300898 +L 1.7447,6.902569,1.4435,7.337652 +L 1.4435,7.337652,1.3318,7.891294 +L 1.3318,7.891294,1.3139,9.038221 +L 3.4543,6.902569,3.4368,7.673751 +L 3.4368,7.673751,3.3282,8.089047 +L 3.3282,8.089047,3.0231,8.504262 +L 6.8408,6.902569,6.554,7.317872 +L 6.554,7.317872,6.554,7.733165 +L 6.554,7.733165,6.8408,8.504262 +L 4.277,7.436523,4.277,7.97039 +L 4.277,7.97039,4.277,8.504262 +L 4.277,8.504262,4.277,9.038221 +L 5.5558,7.436523,5.5558,7.97039 +L 5.5558,7.97039,5.5558,8.504262 +L 5.5558,8.504262,5.5558,9.038221 + +[朴] 21 +L 2.2024,0,2.1184,1.600333 +L 2.1184,1.600333,2.048,3.192129 +L 2.048,3.192129,1.9884,4.766938 +L 1.9884,4.766938,1.4806,4.079081 +L 1.4806,4.079081,0.9836,3.382783 +L 0.9836,3.382783,0.4929,2.66959 +L 5.5924,0,5.5924,3.012708 +L 5.5924,3.012708,5.5924,6.025506 +L 5.5924,6.025506,5.5924,9.038221 +L 7.6939,3.737321,7.123,4.269834 +L 7.123,4.269834,6.5665,4.793808 +L 6.5665,4.793808,6.0127,5.300898 +L 3.4528,4.271182,2.6784,5.055129 +L 2.6784,5.055129,2.2441,5.737314 +L 2.2441,5.737314,1.7783,6.902569 +L 1.7783,6.902569,1.3478,6.902569 +L 1.3478,6.902569,0.9205,6.902569 +L 0.9205,6.902569,0.4929,6.902569 +L 2.5978,6.902569,2.3215,7.337652 +L 2.3215,7.337652,2.2164,7.891294 +L 2.2164,7.891294,2.2024,9.038221 + +[没] 39 +L 0.5264,0.266966,0.9292,1.437901 +L 0.9292,1.437901,1.3498,2.591828 +L 1.3498,2.591828,1.7771,3.737321 +L 2.6314,0,3.721,0.41529 +L 3.721,0.41529,4.3756,0.830508 +L 4.3756,0.830508,5.1636,1.601778 +L 5.1636,1.601778,4.2814,2.768472 +L 4.2814,2.768472,3.9591,3.460458 +L 3.9591,3.460458,3.9098,4.271182 +L 3.9098,4.271182,3.6124,4.271182 +L 3.6124,4.271182,3.3322,4.271182 +L 3.3322,4.271182,3.0552,4.271182 +L 6.8732,0,6.442,0.37008 +L 6.442,0.37008,6.0147,0.723172 +L 6.0147,0.723172,5.5874,1.067821 +L 5.5874,2.135628,6.0147,2.772609 +L 6.0147,2.772609,6.442,3.39268 +L 6.442,3.39268,6.8732,4.004287 +L 6.8732,4.004287,6.0147,4.107492 +L 6.0147,4.107492,5.171,4.193527 +L 5.171,4.193527,4.3409,4.271182 +L 3.0552,5.300898,3.7101,6.317832 +L 3.7101,6.317832,3.9063,7.233102 +L 3.9063,7.233102,3.9098,8.504262 +L 3.9098,8.504262,4.6138,8.504262 +L 4.6138,8.504262,5.3146,8.504262 +L 5.3146,8.504262,6.0147,8.504262 +L 6.0147,8.504262,6.0221,6.795246 +L 6.0221,6.795246,6.414,6.018405 +L 6.414,6.018405,7.7243,5.834849 +L 7.7243,5.834849,7.7243,6.204842 +L 7.7243,6.204842,7.7243,6.557934 +L 7.7243,6.557934,7.7243,6.902569 +L 1.3463,5.834849,1.0728,6.204842 +L 1.0728,6.204842,0.7999,6.557934 +L 0.7999,6.557934,0.5264,6.902569 +L 1.7771,7.97039,1.5001,8.340476 +L 1.5001,8.340476,1.2272,8.693581 +L 1.2272,8.693581,0.9502,9.038221 + +[堀] 48 +L 1.8033,0,2.9626,2.764159 +L 2.9626,2.764159,3.1696,5.409575 +L 3.1696,5.409575,3.089,8.504262 +L 3.089,8.504262,4.49,8.504262 +L 4.49,8.504262,5.905,8.504262 +L 5.905,8.504262,7.3302,8.504262 +L 7.3302,8.504262,7.3302,7.97039 +L 7.3302,7.97039,7.3302,7.436523 +L 7.3302,7.436523,7.3302,6.902569 +L 7.3302,6.902569,6.0486,6.902569 +L 6.0486,6.902569,4.7737,6.902569 +L 4.7737,6.902569,3.5128,6.902569 +L 3.9156,0,3.9156,0.90404 +L 3.9156,0.90404,3.9156,1.790998 +L 3.9156,1.790998,3.9156,2.66959 +L 4.3356,0,4.7667,0 +L 4.7667,0,5.1905,0 +L 5.1905,0,5.6213,0 +L 5.6213,0,5.6388,2.053657 +L 5.6388,2.053657,5.3761,3.310785 +L 5.3761,3.310785,4.3356,3.737321 +L 4.3356,3.737321,4.3356,4.269834 +L 4.3356,4.269834,4.3356,4.793808 +L 4.3356,4.793808,4.3356,5.300898 +L 6.0451,0,6.4724,0 +L 6.4724,0,6.8997,0 +L 6.8997,0,7.3302,0 +L 7.3302,0,7.3302,0.90404 +L 7.3302,0.90404,7.3302,1.790998 +L 7.3302,1.790998,7.3302,2.66959 +L 0.5249,2.66959,0.8019,2.66959 +L 0.8019,2.66959,1.0856,2.66959 +L 1.0856,2.66959,1.3795,2.66959 +L 1.3795,2.66959,1.3795,3.735882 +L 1.3795,3.735882,1.3795,4.793808 +L 1.3795,4.793808,1.3795,5.834849 +L 1.3795,5.834849,1.0856,6.024066 +L 1.0856,6.024066,0.8019,6.204842 +L 0.8019,6.204842,0.5249,6.368718 +L 6.0451,3.737321,5.7439,4.170957 +L 5.7439,4.170957,5.6388,4.714801 +L 5.6388,4.714801,5.6213,5.834849 +L 6.6896,3.737321,6.7491,4.269834 +L 6.7491,4.269834,6.8156,4.793808 +L 6.8156,4.793808,6.8997,5.300898 +L 1.8033,6.368718,1.5059,6.823474 +L 1.5059,6.823474,1.3935,7.515643 +L 1.3935,7.515643,1.3795,9.038221 + +[奔] 39 +L 0.7686,0,1.2589,0.637049 +L 1.2589,0.637049,1.7457,1.257035 +L 1.7457,1.257035,2.2326,1.868665 +L 2.2326,1.868665,1.9069,2.43228 +L 1.9069,2.43228,1.4729,2.639836 +L 1.4729,2.639836,0.5588,2.66959 +L 5.651,0,4.7652,2.819266 +L 4.7652,2.819266,3.1187,2.774131 +L 3.1187,2.774131,2.2326,4.271182 +L 6.0471,2.66959,5.7701,3.084891 +L 5.7701,3.084891,5.665,3.500101 +L 5.665,3.500101,5.651,4.271182 +L 6.4744,2.66959,6.7472,2.66959 +L 6.7472,2.66959,7.0348,2.66959 +L 7.0348,2.66959,7.3287,2.66959 +L 3.9421,3.737321,3.2872,5.337655 +L 3.2872,5.337655,1.8792,5.658208 +L 1.8792,5.658208,0.5588,5.300898 +L 4.3726,5.300898,4.215,5.670981 +L 4.215,5.670981,4.0749,6.024066 +L 4.0749,6.024066,3.9421,6.368718 +L 4.7932,5.300898,5.4132,5.320673 +L 5.4132,5.320673,5.7389,5.459102 +L 5.7389,5.459102,6.0471,5.834849 +L 6.0471,5.834849,5.6198,6.471909 +L 5.6198,6.471909,5.2027,7.0918 +L 5.2027,7.0918,4.7932,7.703514 +L 4.7932,7.703514,4.215,7.703514 +L 4.215,7.703514,3.6441,7.703514 +L 3.6441,7.703514,3.0837,7.703514 +L 3.0837,7.703514,2.793,7.272658 +L 2.793,7.272658,2.5093,6.824913 +L 2.5093,6.824913,2.2326,6.368718 +L 0.5588,7.97039,1.2589,7.97039 +L 1.2589,7.97039,1.9629,7.97039 +L 1.9629,7.97039,2.6637,7.97039 +L 5.2237,7.97039,5.9245,7.97039 +L 5.9245,7.97039,6.6285,7.97039 +L 6.6285,7.97039,7.3287,7.97039 + +[翻] 93 +L 0.9811,0,0.967,2.64973 +L 0.967,2.64973,0.8655,3.757102 +L 0.8655,3.757102,0.5849,4.271182 +L 0.5849,4.271182,0.9912,4.881367 +L 0.9912,4.881367,1.4119,5.491554 +L 1.4119,5.491554,1.8357,6.101733 +L 1.8357,6.101733,1.4119,6.204842 +L 1.4119,6.204842,0.9912,6.291041 +L 0.9912,6.291041,0.5849,6.368718 +L 1.4119,0,1.6847,0 +L 1.6847,0,1.9649,0 +L 1.9649,0,2.263,0 +L 2.263,0,2.263,0.533957 +L 2.263,0.533957,2.263,1.067821 +L 2.263,1.067821,2.263,1.601778 +L 2.263,1.601778,1.9649,1.790998 +L 1.9649,1.790998,1.6847,1.97185 +L 1.6847,1.97185,1.4119,2.135628 +L 2.6899,0,2.9669,0 +L 2.9669,0,3.2506,0 +L 3.2506,0,3.541,0 +L 3.541,0,3.541,0.723172 +L 3.541,0.723172,3.541,1.437901 +L 3.541,1.437901,3.541,2.135628 +L 3.541,2.135628,2.5883,2.322071 +L 2.5883,2.322071,2.2805,2.86439 +L 2.2805,2.86439,2.263,3.737321 +L 2.263,3.737321,1.9649,3.737321 +L 1.9649,3.737321,1.6847,3.737321 +L 1.6847,3.737321,1.4119,3.737321 +L 4.3991,0,4.6726,0 +L 4.6726,0,4.9528,0 +L 4.9528,0,5.2222,0 +L 5.2222,0,5.1385,1.257035 +L 5.1385,1.257035,5.0719,2.505717 +L 5.0719,2.505717,5.0124,3.737321 +L 5.0124,3.737321,4.5812,3.39268 +L 4.5812,3.39268,4.1648,3.039589 +L 4.1648,3.039589,3.7585,2.66959 +L 3.7585,2.66959,3.6744,3.039589 +L 3.6744,3.039589,3.6075,3.39268 +L 3.6075,3.39268,3.541,3.737321 +L 3.541,3.737321,3.2506,3.737321 +L 3.2506,3.737321,2.9669,3.737321 +L 2.9669,3.737321,2.6899,3.737321 +L 6.5041,0,6.7808,0 +L 6.7808,0,7.0645,0 +L 7.0645,0,7.3625,0 +L 7.3625,0,7.2785,1.257035 +L 7.2785,1.257035,7.2046,2.505717 +L 7.2046,2.505717,7.145,3.737321 +L 7.145,3.737321,6.7808,3.39268 +L 6.7808,3.39268,6.42,3.039589 +L 6.42,3.039589,6.0768,2.66959 +L 5.2222,4.271182,5.2222,5.682293 +L 5.2222,5.682293,5.2222,7.093233 +L 5.2222,7.093233,5.2222,8.504262 +L 5.2222,8.504262,4.9528,8.504262 +L 4.9528,8.504262,4.6726,8.504262 +L 4.6726,8.504262,4.3991,8.504262 +L 7.3625,4.271182,7.3625,5.682293 +L 7.3625,5.682293,7.3625,7.093233 +L 7.3625,7.093233,7.3625,8.504262 +L 7.3625,8.504262,7.0645,8.504262 +L 7.0645,8.504262,6.7808,8.504262 +L 6.7808,8.504262,6.5041,8.504262 +L 2.263,4.766938,2.263,5.834849 +L 2.263,5.834849,2.263,6.902569 +L 2.263,6.902569,2.263,7.97039 +L 2.263,7.97039,1.8357,7.892729 +L 1.8357,7.892729,1.4119,7.806618 +L 1.4119,7.806618,0.9811,7.703514 +L 0.9811,7.703514,1.1138,7.436523 +L 1.1138,7.436523,1.2574,7.169557 +L 1.2574,7.169557,1.4119,6.902569 +L 3.541,4.766938,3.2506,5.223226 +L 3.2506,5.223226,2.9669,5.670981 +L 2.9669,5.670981,2.6899,6.101733 +L 2.6899,6.101733,3.1207,6.368718 +L 3.1207,6.368718,3.541,6.635597 +L 3.541,6.635597,3.9718,6.902569 +L 3.9718,6.902569,4.1017,6.557934 +L 4.1017,6.557934,4.2485,6.204842 +L 4.2485,6.204842,4.3991,5.834849 +L 6.5041,6.101733,6.3535,6.368718 +L 6.3535,6.368718,6.2067,6.635597 +L 6.2067,6.635597,6.0768,6.902569 +L 3.1207,7.436523,3.2506,7.703514 +L 3.2506,7.703514,3.3942,7.97039 +L 3.3942,7.97039,3.541,8.237277 +L 3.541,8.237277,3.2506,8.340476 +L 3.2506,8.340476,2.9669,8.426584 +L 2.9669,8.426584,2.6899,8.504262 + +[凡] 15 +L 0.5838,0,1.7326,2.620064 +L 1.7326,2.620064,1.9424,5.604541 +L 1.9424,5.604541,1.8688,8.504262 +L 1.8688,8.504262,3.1301,8.504262 +L 3.1301,8.504262,4.4014,8.504262 +L 4.4014,8.504262,5.6798,8.504262 +L 5.6798,8.504262,5.4137,4.48594 +L 5.4137,4.48594,5.6129,1.298028 +L 5.6129,1.298028,7.7848,0 +L 7.7848,0,7.7848,0.533957 +L 7.7848,0.533957,7.7848,1.067821 +L 7.7848,1.067821,7.7848,1.601778 +L 3.9703,4.004287,3.6764,4.614472 +L 3.6764,4.614472,3.3962,5.224664 +L 3.3962,5.224664,3.1157,5.834849 + +[盆] 54 +L 0.6173,0,0.8901,0 +L 0.8901,0,1.1773,0 +L 1.1773,0,1.4719,0 +L 1.4719,0,1.4719,0.90404 +L 1.4719,0.90404,1.4719,1.790998 +L 1.4719,1.790998,1.4719,2.66959 +L 1.4719,2.66959,3.2998,2.66959 +L 3.2998,2.66959,5.132,2.66959 +L 5.132,2.66959,6.9634,2.66959 +L 6.9634,2.66959,6.9634,1.790998 +L 6.9634,1.790998,6.9634,0.90404 +L 6.9634,0.90404,6.9634,0 +L 6.9634,0,7.2369,0 +L 7.2369,0,7.5241,0 +L 7.5241,0,7.818,0 +L 1.8638,0,2.2946,0 +L 2.2946,0,2.7223,0 +L 2.7223,0,3.1531,0 +L 3.1531,0,3.1531,0.723172 +L 3.1531,0.723172,3.1531,1.437901 +L 3.1531,1.437901,3.1531,2.135628 +L 3.5734,0,4.0042,0 +L 4.0042,0,4.4311,0 +L 4.4311,0,4.8584,0 +L 4.8584,0,4.8584,0.723172 +L 4.8584,0.723172,4.8584,1.437901 +L 4.8584,1.437901,4.8584,2.135628 +L 5.2822,0,5.6885,0 +L 5.6885,0,6.1091,0 +L 6.1091,0,6.5361,0 +L 1.0446,3.737321,2.1163,4.151185 +L 2.1163,4.151185,2.771,4.556501 +L 2.771,4.556501,3.5734,5.300898 +L 3.5734,5.300898,3.5734,5.670981 +L 3.5734,5.670981,3.5734,6.024066 +L 3.5734,6.024066,3.5734,6.368718 +L 3.5734,6.368718,2.6589,6.388483 +L 2.6589,6.388483,2.2144,6.526835 +L 2.2144,6.526835,1.8638,6.902569 +L 1.8638,6.902569,1.4435,6.557934 +L 1.4435,6.557934,1.0236,6.204842 +L 1.0236,6.204842,0.6173,5.834849 +L 4.4311,3.737321,5.5729,4.097428 +L 5.5729,4.097428,6.0251,5.042356 +L 6.0251,5.042356,6.1091,6.368718 +L 6.1091,6.368718,5.4083,6.368718 +L 5.4083,6.368718,4.7047,6.368718 +L 4.7047,6.368718,4.0042,6.368718 +L 7.3907,5.834849,6.6832,6.902569 +L 6.6832,6.902569,5.9831,7.97039 +L 5.9831,7.97039,5.2822,9.038221 +L 2.2946,7.436523,2.4246,7.806618 +L 2.4246,7.806618,2.5713,8.159698 +L 2.5713,8.159698,2.7223,8.504262 + +[摩] 51 +L 0.6158,0,0.7244,1.125792 +L 0.7244,1.125792,0.9342,3.310785 +L 0.9342,3.310785,1.0431,7.97039 +L 1.0431,7.97039,2.1744,7.97039 +L 2.1744,7.97039,3.3018,7.97039 +L 3.3018,7.97039,4.4331,7.97039 +L 4.4331,7.97039,4.4331,8.340476 +L 4.4331,8.340476,4.4331,8.693581 +L 4.4331,8.693581,4.4331,9.038221 +L 3.61,0,4.0128,0 +L 4.0128,0,4.4331,0 +L 4.4331,0,4.8569,0 +L 4.8569,0,4.3596,1.550888 +L 4.3596,1.550888,3.2076,1.754233 +L 3.2076,1.754233,1.9008,1.601778 +L 5.2842,1.601778,4.4121,2.505717 +L 4.4121,2.505717,3.7256,2.706175 +L 3.7256,2.706175,2.7519,2.66959 +L 5.7115,1.601778,6.4124,1.601778 +L 6.4124,1.601778,7.123,1.601778 +L 7.123,1.601778,7.8484,1.601778 +L 5.2842,2.66959,4.9098,3.242914 +L 4.9098,3.242914,4.251,3.519783 +L 4.251,3.519783,2.7519,3.737321 +L 5.7115,2.66959,6.1427,2.66959 +L 6.1427,2.66959,6.5661,2.66959 +L 6.5661,2.66959,6.9938,2.66959 +L 5.2842,3.737321,5.736,4.19073 +L 5.736,4.19073,5.9045,4.87292 +L 5.9045,4.87292,5.9255,6.368718 +L 5.9255,6.368718,5.5613,6.024066 +L 5.5613,6.024066,5.2002,5.670981 +L 5.2002,5.670981,4.8569,5.300898 +L 3.1792,4.766938,3.0952,5.300898 +L 3.0952,5.300898,3.029,5.834849 +L 3.029,5.834849,2.9659,6.368718 +L 2.9659,6.368718,2.6017,6.024066 +L 2.6017,6.024066,2.2441,5.670981 +L 2.2441,5.670981,1.9008,5.300898 +L 7.4211,5.300898,6.5525,6.453387 +L 6.5525,6.453387,5.887,6.766928 +L 5.887,6.766928,4.8569,6.902569 +L 1.9008,6.902569,2.3215,7.0918 +L 2.3215,7.0918,2.7519,7.272658 +L 2.7519,7.272658,3.1792,7.436523 +L 6.1427,7.703514,5.7115,7.806618 +L 5.7115,7.806618,5.2842,7.892729 +L 5.2842,7.892729,4.8569,7.97039 +L 6.5661,7.97039,6.9938,7.97039 +L 6.9938,7.97039,7.4211,7.97039 +L 7.4211,7.97039,7.8484,7.97039 + +[磨] 60 +L 0.649,0,0.7614,1.125792 +L 0.7614,1.125792,0.9645,3.310785 +L 0.9645,3.310785,1.0763,7.97039 +L 1.0763,7.97039,2.2041,7.97039 +L 2.2041,7.97039,3.3322,7.97039 +L 3.3322,7.97039,4.4596,7.97039 +L 4.4596,7.97039,4.4596,8.340476 +L 4.4596,8.340476,4.4596,8.693581 +L 4.4596,8.693581,4.4596,9.038221 +L 3.1812,0,3.1676,0.771177 +L 3.1676,0.771177,3.0552,1.186472 +L 3.0552,1.186472,2.7504,1.601778 +L 2.7504,1.601778,2.3266,1.257035 +L 2.3266,1.257035,1.9099,0.90404 +L 1.9099,0.90404,1.5001,0.533957 +L 3.605,0,4.5861,0 +L 4.5861,0,5.5664,0 +L 5.5664,0,6.5646,0 +L 6.5646,0,6.5646,0.533957 +L 6.5646,0.533957,6.5646,1.067821 +L 6.5646,1.067821,6.5646,1.601778 +L 6.5646,1.601778,4.4705,1.62155 +L 4.4705,1.62155,3.5914,1.759897 +L 3.5914,1.759897,3.1812,2.135628 +L 3.1812,2.135628,3.3112,2.40252 +L 3.3112,2.40252,3.4548,2.66959 +L 3.4548,2.66959,3.605,2.936486 +L 3.605,2.936486,3.0341,3.039589 +L 3.0341,3.039589,2.4811,3.1257 +L 2.4811,3.1257,1.9274,3.203466 +L 4.0323,3.203466,5.1636,3.203466 +L 5.1636,3.203466,6.2949,3.203466 +L 6.2949,3.203466,7.4157,3.203466 +L 3.1812,4.271182,3.1007,4.803695 +L 3.1007,4.803695,3.0275,5.32776 +L 3.0275,5.32776,2.9679,5.834849 +L 2.9679,5.834849,2.4811,5.4902 +L 2.4811,5.4902,1.9869,5.137021 +L 1.9869,5.137021,1.5001,4.766938 +L 6.1692,4.271182,6.0851,4.803695 +L 6.0851,4.803695,6.0182,5.32776 +L 6.0182,5.32776,5.9552,5.834849 +L 5.9552,5.834849,5.5279,5.4902 +L 5.5279,5.4902,5.1041,5.137021 +L 5.1041,5.137021,4.6768,4.766938 +L 4.6768,4.766938,3.6965,5.809319 +L 3.6965,5.809319,2.9679,6.266954 +L 2.9679,6.266954,1.9274,6.368718 +L 7.4157,4.766938,6.5646,5.902625 +L 6.5646,5.902625,5.903,6.224614 +L 5.903,6.224614,4.8908,6.368718 +L 6.1692,6.902569,6.1692,7.272658 +L 6.1692,7.272658,6.1692,7.625749 +L 6.1692,7.625749,6.1692,7.97039 +L 6.1692,7.97039,5.7419,7.97039 +L 5.7419,7.97039,5.3146,7.97039 +L 5.3146,7.97039,4.8908,7.97039 +L 6.5646,7.97039,6.9958,7.97039 +L 6.9958,7.97039,7.4157,7.97039 +L 7.4157,7.97039,7.8469,7.97039 + +[魔] 78 +L 0.6793,0,0.7876,1.125792 +L 0.7876,1.125792,0.9942,3.310785 +L 0.9942,3.310785,1.1066,7.97039 +L 1.1066,7.97039,2.2341,7.97039 +L 2.2341,7.97039,3.3619,7.97039 +L 3.3619,7.97039,4.49,7.97039 +L 4.49,7.97039,4.49,8.340476 +L 4.49,8.340476,4.49,8.693581 +L 4.49,8.693581,4.49,9.038221 +L 2.143,0,2.6334,0.533957 +L 2.6334,0.533957,3.1276,1.067821 +L 3.1276,1.067821,3.6389,1.601778 +L 3.6389,1.601778,3.6389,1.97185 +L 3.6389,1.97185,3.6389,2.324864 +L 3.6389,2.324864,3.6389,2.66959 +L 3.6389,2.66959,3.2081,2.66959 +L 3.2081,2.66959,2.7843,2.66959 +L 2.7843,2.66959,2.3532,2.66959 +L 2.3532,2.66959,2.3395,4.165206 +L 2.3395,4.165206,2.2271,4.847484 +L 2.2271,4.847484,1.9332,5.300898 +L 1.9332,5.300898,2.2029,5.757084 +L 2.2029,5.757084,2.4866,6.204842 +L 2.4866,6.204842,2.7843,6.635597 +L 2.7843,6.635597,2.4866,6.738796 +L 2.4866,6.738796,2.2029,6.824913 +L 2.2029,6.824913,1.9332,6.902569 +L 5.3166,0,5.0395,0.454843 +L 5.0395,0.454843,4.9348,1.146919 +L 4.9348,1.146919,4.917,2.66959 +L 4.917,2.66959,4.6227,2.66959 +L 4.6227,2.66959,4.3429,2.66959 +L 4.3429,2.66959,4.0627,2.66959 +L 5.7439,0,6.444,0 +L 6.444,0,7.1554,0 +L 7.1554,0,7.88,0 +L 7.88,0,7.88,0.37008 +L 7.88,0.37008,7.88,0.723172 +L 7.88,0.723172,7.88,1.067821 +L 5.7439,1.334792,5.8731,1.704788 +L 5.8731,1.704788,6.0167,2.057972 +L 6.0167,2.057972,6.1712,2.40252 +L 6.1712,2.40252,5.8731,2.505717 +L 5.8731,2.505717,5.5929,2.591828 +L 5.5929,2.591828,5.3166,2.66959 +L 6.1712,1.067821,6.444,1.067821 +L 6.444,1.067821,6.7242,1.067821 +L 6.7242,1.067821,7.0219,1.067821 +L 6.5981,2.66959,6.5981,3.039589 +L 6.5981,3.039589,6.5981,3.39268 +L 6.5981,3.39268,6.5981,3.737321 +L 6.5981,3.737321,5.3166,3.737321 +L 5.3166,3.737321,4.0452,3.737321 +L 4.0452,3.737321,2.7843,3.737321 +L 4.49,4.271182,4.1433,4.620062 +L 4.1433,4.620062,3.702,4.748605 +L 3.702,4.748605,2.7843,4.766938 +L 6.5981,4.538162,5.1656,4.868695 +L 5.1656,4.868695,4.3289,5.427993 +L 4.3289,5.427993,3.4249,6.368718 +L 3.4249,6.368718,3.3409,6.024066 +L 3.3409,6.024066,3.2747,5.670981 +L 3.2747,5.670981,3.2081,5.300898 +L 6.1712,5.300898,6.0906,5.670981 +L 6.0906,5.670981,6.0167,6.024066 +L 6.0167,6.024066,5.9572,6.368718 +L 5.9572,6.368718,5.7439,6.204842 +L 5.7439,6.204842,5.5299,6.024066 +L 5.5299,6.024066,5.3166,5.834849 +L 7.4527,5.300898,6.5981,6.436573 +L 6.5981,6.436573,5.9327,6.758473 +L 5.9327,6.758473,4.917,6.902569 +L 6.1712,7.703514,5.7439,7.806618 +L 5.7439,7.806618,5.3232,7.892729 +L 5.3232,7.892729,4.917,7.97039 +L 6.5981,7.97039,7.0219,7.97039 +L 7.0219,7.97039,7.4527,7.97039 +L 7.4527,7.97039,7.88,7.97039 + +[麻] 36 +L 0.6813,0,0.7931,1.125792 +L 0.7931,1.125792,0.9962,3.310785 +L 0.9962,3.310785,1.1016,7.97039 +L 1.1016,7.97039,2.2326,7.97039 +L 2.2326,7.97039,3.3639,7.97039 +L 3.3639,7.97039,4.4917,7.97039 +L 4.4917,7.97039,4.4917,8.340476 +L 4.4917,8.340476,4.4917,8.693581 +L 4.4917,8.693581,4.4917,9.038221 +L 3.2413,0,3.1572,1.257035 +L 3.1572,1.257035,3.091,2.505717 +L 3.091,2.505717,3.0245,3.737321 +L 3.0245,3.737321,2.5163,3.039589 +L 2.5163,3.039589,2.0224,2.324864 +L 2.0224,2.324864,1.5324,1.601778 +L 6.2009,0,6.1872,2.274079 +L 6.1872,2.274079,6.0748,3.242914 +L 6.0748,3.242914,5.7736,3.737321 +L 5.7736,3.737321,5.3463,3.039589 +L 5.3463,3.039589,4.9225,2.324864 +L 4.9225,2.324864,4.4917,1.601778 +L 7.8785,1.601778,6.6632,3.696414 +L 6.6632,3.696414,6.0117,4.65538 +L 6.0117,4.65538,5.3463,5.300898 +L 4.4917,3.203466,3.2798,4.679382 +L 3.2798,4.679382,2.6217,5.223226 +L 2.6217,5.223226,1.9597,5.300898 +L 3.6686,5.300898,3.3674,5.716099 +L 3.3674,5.716099,3.2556,6.131395 +L 3.2556,6.131395,3.2413,6.902569 +L 6.6285,5.300898,6.3273,5.716099 +L 6.3273,5.716099,6.2149,6.131395 +L 6.2149,6.131395,6.2009,6.902569 +L 4.9225,7.97039,5.8961,7.97039 +L 5.8961,7.97039,6.8772,7.97039 +L 6.8772,7.97039,7.8785,7.97039 + +[埋] 48 +L 3.6706,0,4.3711,0 +L 4.3711,0,5.0821,0 +L 5.0821,0,5.8039,0 +L 5.8039,0,5.667,1.62155 +L 5.667,1.62155,5.1486,2.115861 +L 5.1486,2.115861,4.0944,2.135628 +L 6.1958,0,6.7566,0 +L 6.7566,0,7.3306,0 +L 7.3306,0,7.9054,0 +L 0.7075,2.135628,1.1383,2.135628 +L 1.1383,2.135628,1.5656,2.135628 +L 1.5656,2.135628,1.9894,2.135628 +L 1.9894,2.135628,2.0454,4.317841 +L 2.0454,4.317841,1.8146,5.813534 +L 1.8146,5.813534,0.7075,6.368718 +L 6.1958,2.135628,5.5412,3.485894 +L 5.5412,3.485894,5.2852,4.115854 +L 5.2852,4.115854,4.0944,4.271182 +L 4.0944,4.271182,4.0944,5.682293 +L 4.0944,5.682293,4.0944,7.093233 +L 4.0944,7.093233,4.0944,8.504262 +L 4.0944,8.504262,5.2222,8.504262 +L 5.2222,8.504262,6.3538,8.504262 +L 6.3538,8.504262,7.4851,8.504262 +L 7.4851,8.504262,7.4851,7.093233 +L 7.4851,7.093233,7.4851,5.682293 +L 7.4851,5.682293,7.4851,4.271182 +L 7.4851,4.271182,6.9699,4.374381 +L 6.9699,4.374381,6.476,4.460492 +L 6.476,4.460492,5.9861,4.538162 +L 5.9861,4.538162,5.7756,5.148355 +L 5.7756,5.148355,5.5689,5.758526 +L 5.5689,5.758526,5.3801,6.368718 +L 5.3801,6.368718,5.0821,6.368718 +L 5.0821,6.368718,4.7984,6.368718 +L 4.7984,6.368718,4.5217,6.368718 +L 6.6266,2.135628,6.9033,2.135628 +L 6.9033,2.135628,7.187,2.135628 +L 7.187,2.135628,7.4851,2.135628 +L 2.3855,2.66959,2.6657,2.66959 +L 2.6657,2.66959,2.9459,2.66959 +L 2.9459,2.66959,3.2398,2.66959 +L 2.3855,6.368718,2.1085,6.823474 +L 2.1085,6.823474,2.0069,7.515643 +L 2.0069,7.515643,1.9894,9.038221 +L 6.1958,6.368718,5.9195,6.783921 +L 5.9195,6.783921,5.8179,7.199224 +L 5.8179,7.199224,5.8039,7.97039 + +[膜] 54 +L 0.7379,0.266966,1.0216,1.106011 +L 1.0216,1.106011,1.1231,3.241574 +L 1.1231,3.241574,1.1333,8.504262 +L 1.1333,8.504262,1.5641,8.504262 +L 1.5641,8.504262,1.9879,8.504262 +L 1.9879,8.504262,2.4191,8.504262 +L 2.4191,8.504262,2.4191,5.680769 +L 2.4191,5.680769,2.4191,2.84893 +L 2.4191,2.84893,2.4191,0 +L 3.9142,0,4.944,1.166708 +L 4.944,1.166708,5.3222,1.858776 +L 5.3222,1.858776,5.3786,2.66959 +L 5.3786,2.66959,4.8039,2.66959 +L 4.8039,2.66959,4.2505,2.66959 +L 4.2505,2.66959,3.6974,2.66959 +L 7.5113,0,6.4815,1.471875 +L 6.4815,1.471875,6.0651,2.646841 +L 6.0651,2.646841,5.8024,4.271182 +L 5.8024,4.271182,5.235,4.271182 +L 5.235,4.271182,4.6778,4.271182 +L 4.6778,4.271182,4.1279,4.271182 +L 4.1279,4.271182,4.1279,4.984478 +L 4.1279,4.984478,4.1279,5.680769 +L 4.1279,5.680769,4.1279,6.368718 +L 4.1279,6.368718,5.256,6.368718 +L 5.256,6.368718,6.3835,6.368718 +L 6.3835,6.368718,7.5113,6.368718 +L 7.5113,6.368718,7.5113,5.680769 +L 7.5113,5.680769,7.5113,4.984478 +L 7.5113,4.984478,7.5113,4.271182 +L 7.5113,4.271182,7.084,4.271182 +L 7.084,4.271182,6.6602,4.271182 +L 6.6602,4.271182,6.2329,4.271182 +L 6.6602,2.66959,7.084,2.66959 +L 7.084,2.66959,7.5113,2.66959 +L 7.5113,2.66959,7.9421,2.66959 +L 4.5552,5.300898,5.3888,5.300898 +L 5.3888,5.300898,6.2329,5.300898 +L 6.2329,5.300898,7.084,5.300898 +L 3.6974,7.97039,4.1037,7.97039 +L 4.1037,7.97039,4.524,7.97039 +L 4.524,7.97039,4.9513,7.97039 +L 4.9513,7.97039,4.9513,8.340476 +L 4.9513,8.340476,4.9513,8.693581 +L 4.9513,8.693581,4.9513,9.038221 +L 5.3786,7.97039,5.8024,7.97039 +L 5.8024,7.97039,6.2329,7.97039 +L 6.2329,7.97039,6.6602,7.97039 +L 6.6602,7.97039,6.6602,8.340476 +L 6.6602,8.340476,6.6602,8.693581 +L 6.6602,8.693581,6.6602,9.038221 +L 7.084,7.97039,7.361,7.97039 +L 7.361,7.97039,7.6447,7.97039 +L 7.6447,7.97039,7.9421,7.97039 + +[又] 18 +L 0.9532,0,2.0008,1.067821 +L 2.0008,1.067821,3.0581,2.135628 +L 3.0581,2.135628,4.1267,3.203466 +L 4.1267,3.203466,3.2301,4.854581 +L 3.2301,4.854581,2.6554,6.268392 +L 2.6554,6.268392,2.4487,7.97039 +L 2.4487,7.97039,2.0218,7.97039 +L 2.0218,7.97039,1.5945,7.97039 +L 1.5945,7.97039,1.1707,7.97039 +L 7.1178,0,6.2594,0.90404 +L 6.2594,0.90404,5.4083,1.790998 +L 5.4083,1.790998,4.5537,2.66959 +L 4.5537,3.737321,5.4713,5.470335 +L 5.4713,5.470335,5.9126,6.567819 +L 5.9126,6.567819,6.2594,7.97039 +L 6.2594,7.97039,5.132,7.97039 +L 5.132,7.97039,4.0042,7.97039 +L 4.0042,7.97039,2.876,7.97039 + +[抹] 42 +L 0.7695,0,1.0466,0 +L 1.0466,0,1.3303,0 +L 1.3303,0,1.628,0 +L 1.628,0,1.628,1.257035 +L 1.628,1.257035,1.628,2.505717 +L 1.628,2.505717,1.628,3.737321 +L 1.628,3.737321,1.3303,3.737321 +L 1.3303,3.737321,1.0466,3.737321 +L 1.0466,3.737321,0.7695,3.737321 +L 5.4387,0,5.3546,1.437901 +L 5.3546,1.437901,5.2877,2.85881 +L 5.2877,2.85881,5.2247,4.271182 +L 5.2247,4.271182,4.43,3.39268 +L 4.43,3.39268,3.6451,2.505717 +L 3.6451,2.505717,2.8745,1.601778 +L 7.5436,1.601778,6.9654,2.591828 +L 6.9654,2.591828,6.3913,3.573529 +L 6.3913,3.573529,5.8341,4.538162 +L 5.8341,4.538162,5.134,4.614472 +L 5.134,4.614472,4.43,4.690705 +L 4.43,4.690705,3.7291,4.766938 +L 1.628,4.271182,1.628,4.984478 +L 1.628,4.984478,1.628,5.680769 +L 1.628,5.680769,1.628,6.368718 +L 1.628,6.368718,1.3303,6.557934 +L 1.3303,6.557934,1.0466,6.738796 +L 1.0466,6.738796,0.7695,6.902569 +L 6.2652,4.766938,6.5349,4.766938 +L 6.5349,4.766938,6.8218,4.766938 +L 6.8218,4.766938,7.1163,4.766938 +L 5.4387,5.300898,5.2282,7.057916 +L 5.2282,7.057916,4.5455,7.484536 +L 4.5455,7.484536,3.3018,7.436523 +L 2.0203,6.902569,1.7432,7.337652 +L 1.7432,7.337652,1.6417,7.891294 +L 1.6417,7.891294,1.628,9.038221 +L 5.8341,7.436523,5.5577,7.851733 +L 5.5577,7.851733,5.4523,8.267045 +L 5.4523,8.267045,5.4387,9.038221 +L 6.2652,7.436523,6.6925,7.436523 +L 6.6925,7.436523,7.1163,7.436523 +L 7.1163,7.436523,7.5436,7.436523 + +[繭] 75 +L 0.768,0,0.768,2.315055 +L 0.768,2.315055,0.768,4.613041 +L 0.768,4.613041,0.768,6.902569 +L 0.768,6.902569,1.4724,7.00568 +L 1.4724,7.00568,2.1834,7.0918 +L 2.1834,7.0918,2.9084,7.169557 +L 2.9084,7.169557,2.7574,7.436523 +L 2.7574,7.436523,2.6103,7.703514 +L 2.6103,7.703514,2.4772,7.97039 +L 2.4772,7.97039,1.9028,7.97039 +L 1.9028,7.97039,1.3288,7.97039 +L 1.3288,7.97039,0.768,7.97039 +L 2.4772,0,2.4772,0.90404 +L 2.4772,0.90404,2.4772,1.790998 +L 2.4772,1.790998,2.4772,2.66959 +L 2.4772,2.66959,2.0499,2.66959 +L 2.0499,2.66959,1.6261,2.66959 +L 1.6261,2.66959,1.1988,2.66959 +L 4.1868,0,4.0148,0.771177 +L 4.0148,0.771177,3.7907,1.186472 +L 3.7907,1.186472,3.3357,1.601778 +L 6.7222,0,6.9923,0 +L 6.9923,0,7.2795,0 +L 7.2795,0,7.5733,0 +L 7.5733,0,7.3985,0.771177 +L 7.3985,0.771177,7.1814,1.186472 +L 7.1814,1.186472,6.7222,1.601778 +L 6.7222,1.601778,6.3723,1.225937 +L 6.3723,1.225937,5.9275,1.087585 +L 5.9275,1.087585,5.0134,1.067821 +L 4.1868,1.601778,4.0148,2.37295 +L 4.0148,2.37295,3.7907,2.788159 +L 3.7907,2.788159,3.3357,3.203466 +L 3.3357,3.203466,3.1812,3.039589 +L 3.1812,3.039589,3.0376,2.85881 +L 3.0376,2.85881,2.9084,2.66959 +L 5.8645,1.868665,5.1461,3.337664 +L 5.1461,3.337664,5.2796,4.620062 +L 5.2796,4.620062,5.8645,5.834849 +L 7.5733,1.601778,7.5733,3.382783 +L 7.5733,3.382783,7.5733,5.146908 +L 7.5733,5.146908,7.5733,6.902569 +L 7.5733,6.902569,6.4459,6.902569 +L 6.4459,6.902569,5.3181,6.902569 +L 5.3181,6.902569,4.1868,6.902569 +L 4.1868,6.902569,4.1868,5.680769 +L 4.1868,5.680769,4.1868,4.450705 +L 4.1868,4.450705,4.1868,3.203466 +L 6.2918,2.66959,5.9937,3.084891 +L 5.9937,3.084891,5.882,3.500101 +L 5.882,3.500101,5.8645,4.271182 +L 5.8645,4.271182,6.0778,4.450705 +L 6.0778,4.450705,6.2918,4.613041 +L 6.2918,4.613041,6.5051,4.766938 +L 6.5051,4.766938,6.4245,4.079081 +L 6.4245,4.079081,6.358,3.382783 +L 6.358,3.382783,6.2918,2.66959 +L 2.0499,3.203466,2.1834,3.39268 +L 2.1834,3.39268,2.3266,3.573529 +L 2.3266,3.573529,2.4772,3.737321 +L 2.4772,3.737321,2.0499,4.269834 +L 2.0499,4.269834,1.6261,4.793808 +L 1.6261,4.793808,1.1988,5.300898 +L 5.4407,7.436523,5.0764,7.812188 +L 5.0764,7.812188,4.53,7.950524 +L 4.53,7.950524,3.3357,7.97039 +L 3.3357,7.97039,3.1812,8.340476 +L 3.1812,8.340476,3.0376,8.693581 +L 3.0376,8.693581,2.9084,9.038221 +L 5.8645,7.97039,5.7135,8.340476 +L 5.7135,8.340476,5.5734,8.693581 +L 5.5734,8.693581,5.4407,9.038221 +L 6.2918,7.97039,6.7222,7.97039 +L 6.7222,7.97039,7.1495,7.97039 +L 7.1495,7.97039,7.5733,7.97039 + +[慢] 51 +L 2.0835,0,2.0835,3.012708 +L 2.0835,3.012708,2.0835,6.025506 +L 2.0835,6.025506,2.0835,9.038221 +L 3.3342,0,4.0343,0.37008 +L 4.0343,0.37008,4.7418,0.723172 +L 4.7418,0.723172,5.4703,1.067821 +L 5.4703,1.067821,4.8364,2.016977 +L 4.8364,2.016977,4.3951,2.43228 +L 4.3951,2.43228,3.7615,2.66959 +L 7.148,0,6.7207,0.37008 +L 6.7207,0.37008,6.3004,0.723172 +L 6.3004,0.723172,5.8976,1.067821 +L 5.8976,1.067821,6.1712,1.524103 +L 6.1712,1.524103,6.444,1.97185 +L 6.444,1.97185,6.7176,2.40252 +L 6.7176,2.40252,6.1502,2.505717 +L 6.1502,2.505717,5.5929,2.591828 +L 5.5929,2.591828,5.0395,2.66959 +L 3.7615,3.737321,3.7615,4.269834 +L 3.7615,4.269834,3.7615,4.793808 +L 3.7615,4.793808,3.7615,5.300898 +L 3.7615,5.300898,5.022,5.300898 +L 5.022,5.300898,6.2934,5.300898 +L 6.2934,5.300898,7.5718,5.300898 +L 7.5718,5.300898,7.5718,4.793808 +L 7.5718,4.793808,7.5718,4.269834 +L 7.5718,4.269834,7.5718,3.737321 +L 7.5718,3.737321,6.2934,3.737321 +L 6.2934,3.737321,5.022,3.737321 +L 5.022,3.737321,3.7615,3.737321 +L 0.8019,5.03391,1.0993,5.656772 +L 1.0993,5.656772,1.2117,6.279716 +L 1.2117,6.279716,1.2257,7.436523 +L 2.9069,6.635597,2.7633,6.902569 +L 2.7633,6.902569,2.6298,7.169557 +L 2.6298,7.169557,2.5076,7.436523 +L 4.1884,6.368718,4.1884,7.0918 +L 4.1884,7.0918,4.1884,7.806618 +L 4.1884,7.806618,4.1884,8.504262 +L 4.1884,8.504262,5.1621,8.504262 +L 5.1621,8.504262,6.1502,8.504262 +L 6.1502,8.504262,7.148,8.504262 +L 7.148,8.504262,7.148,7.806618 +L 7.148,7.806618,7.148,7.0918 +L 7.148,7.0918,7.148,6.368718 +L 7.148,6.368718,6.1502,6.368718 +L 6.1502,6.368718,5.1621,6.368718 +L 5.1621,6.368718,4.1884,6.368718 +L 4.6157,7.436523,5.3166,7.436523 +L 5.3166,7.436523,6.0167,7.436523 +L 6.0167,7.436523,6.7176,7.436523 + +[漫] 51 +L 0.8316,0.266966,1.2379,1.437901 +L 1.2379,1.437901,1.6582,2.591828 +L 1.6582,2.591828,2.0823,3.737321 +L 2.5093,0,3.4588,0.039548 +L 3.4588,0.039548,4.1242,0.316422 +L 4.1242,0.316422,5.0734,1.067821 +L 5.0734,1.067821,4.443,2.016977 +L 4.443,2.016977,3.9943,2.43228 +L 3.9943,2.43228,3.3639,2.66959 +L 7.1784,0,6.6001,0.37008 +L 6.6001,0.37008,6.0261,0.723172 +L 6.0261,0.723172,5.4723,1.067821 +L 6.3234,1.601778,6.4534,1.868665 +L 6.4534,1.868665,6.6001,2.135628 +L 6.6001,2.135628,6.7511,2.40252 +L 6.7511,2.40252,6.0506,2.505717 +L 6.0506,2.505717,5.3497,2.591828 +L 5.3497,2.591828,4.6461,2.66959 +L 2.9401,3.737321,2.9401,4.269834 +L 2.9401,4.269834,2.9401,4.793808 +L 2.9401,4.793808,2.9401,5.300898 +L 2.9401,5.300898,4.492,5.300898 +L 4.492,5.300898,6.0506,5.300898 +L 6.0506,5.300898,7.6057,5.300898 +L 7.6057,5.300898,7.6057,4.793808 +L 7.6057,4.793808,7.6057,4.269834 +L 7.6057,4.269834,7.6057,3.737321 +L 7.6057,3.737321,6.0506,3.737321 +L 6.0506,3.737321,4.492,3.737321 +L 4.492,3.737321,2.9401,3.737321 +L 1.655,5.834849,1.3815,6.204842 +L 1.3815,6.204842,1.1086,6.557934 +L 1.1086,6.557934,0.8316,6.902569 +L 3.3639,6.368718,3.3639,7.0918 +L 3.3639,7.0918,3.3639,7.806618 +L 3.3639,7.806618,3.3639,8.504262 +L 3.3639,8.504262,4.6251,8.504262 +L 4.6251,8.504262,5.9,8.504262 +L 5.9,8.504262,7.1784,8.504262 +L 7.1784,8.504262,7.1784,7.806618 +L 7.1784,7.806618,7.1784,7.0918 +L 7.1784,7.0918,7.1784,6.368718 +L 7.1784,6.368718,5.9,6.368718 +L 5.9,6.368718,4.6251,6.368718 +L 4.6251,6.368718,3.3639,6.368718 +L 3.7912,7.436523,4.7687,7.436523 +L 4.7687,7.436523,5.7525,7.436523 +L 5.7525,7.436523,6.7511,7.436523 +L 2.0823,7.97039,1.8088,8.340476 +L 1.8088,8.340476,1.5359,8.693581 +L 1.5359,8.693581,1.2589,9.038221 + +[魅] 66 +L 0.8301,0.266966,1.4329,1.661101 +L 1.4329,1.661101,1.657,2.69917 +L 1.657,2.69917,1.6885,4.271182 +L 1.6885,4.271182,1.3908,4.271182 +L 1.3908,4.271182,1.1071,4.271182 +L 1.1071,4.271182,0.8301,4.271182 +L 0.8301,4.271182,0.8301,5.518342 +L 0.8301,5.518342,0.8301,6.748688 +L 0.8301,6.748688,0.8301,7.97039 +L 0.8301,7.97039,1.4504,8.187936 +L 1.4504,8.187936,1.7828,8.464698 +L 1.7828,8.464698,2.1158,9.038221 +L 2.9669,0,2.6514,0.572065 +L 2.6514,0.572065,2.4272,2.084755 +L 2.4272,2.084755,2.1158,5.834849 +L 2.1158,5.834849,1.8181,6.024066 +L 1.8181,6.024066,1.5376,6.204842 +L 1.5376,6.204842,1.2574,6.368718 +L 3.3977,0,4.9283,0 +L 4.9283,0,6.476,0 +L 6.476,0,8.0346,0 +L 8.0346,0,8.0346,0.533957 +L 8.0346,0.533957,8.0346,1.067821 +L 8.0346,1.067821,8.0346,1.601778 +L 3.1802,1.601778,3.611,2.39273 +L 3.611,2.39273,3.7686,2.946369 +L 3.7686,2.946369,3.7932,3.737321 +L 3.7932,3.737321,3.5168,3.926536 +L 3.5168,3.926536,3.2398,4.107492 +L 3.2398,4.107492,2.9669,4.271182 +L 3.7932,1.601778,4.0667,1.704788 +L 4.0667,1.704788,4.3536,1.790998 +L 4.3536,1.790998,4.6446,1.868665 +L 4.6446,1.868665,4.4936,2.135628 +L 4.4936,2.135628,4.3536,2.40252 +L 4.3536,2.40252,4.2208,2.66959 +L 4.2208,2.66959,4.7742,3.649762 +L 4.7742,3.649762,5.3482,4.613041 +L 5.3482,4.613041,5.9297,5.567861 +L 5.9297,5.567861,5.5027,5.670981 +L 5.5027,5.670981,5.0719,5.757084 +L 5.0719,5.757084,4.6446,5.834849 +L 6.3538,1.601778,6.4659,4.097428 +L 6.4659,4.097428,6.2873,6.415272 +L 6.2873,6.415272,5.0719,7.436523 +L 8.0346,3.203466,7.6042,4.002862 +L 7.6042,4.002862,7.1839,4.793808 +L 7.1839,4.793808,6.7807,5.567861 +L 6.7807,5.567861,7.1839,5.670981 +L 7.1839,5.670981,7.6042,5.757084 +L 7.6042,5.757084,8.0346,5.834849 +L 3.3977,4.766938,3.3977,5.300898 +L 3.3977,5.300898,3.3977,5.834849 +L 3.3977,5.834849,3.3977,6.368718 +L 3.3977,6.368718,2.4416,6.555147 +L 2.4416,6.555147,2.1368,7.097469 +L 2.1368,7.097469,2.1158,7.97039 +L 2.1158,7.97039,2.5396,7.97039 +L 2.5396,7.97039,2.9669,7.97039 +L 2.9669,7.97039,3.3977,7.97039 +L 3.3977,7.97039,3.3977,7.625749 +L 3.3977,7.625749,3.3977,7.272658 +L 3.3977,7.272658,3.3977,6.902569 +L 6.7807,7.436523,6.4795,7.851733 +L 6.4795,7.851733,6.3713,8.267045 +L 6.3713,8.267045,6.3538,9.038221 + +[岬] 30 +L 5.96,0,5.9317,2.118734 +L 5.9317,2.118734,5.5187,3.017025 +L 5.5187,3.017025,4.2505,3.203466 +L 4.2505,3.203466,4.2505,4.984478 +L 4.2505,4.984478,4.2505,6.748688 +L 4.2505,6.748688,4.2505,8.504262 +L 4.2505,8.504262,5.3786,8.504262 +L 5.3786,8.504262,6.5064,8.504262 +L 6.5064,8.504262,7.6338,8.504262 +L 7.6338,8.504262,7.6338,6.748688 +L 7.6338,6.748688,7.6338,4.984478 +L 7.6338,4.984478,7.6338,3.203466 +L 7.6338,3.203466,5.9947,3.885639 +L 5.9947,3.885639,5.8091,5.152574 +L 5.8091,5.152574,4.6778,5.834849 +L 0.864,2.66959,0.864,4.269834 +L 0.864,4.269834,0.864,5.861643 +L 0.864,5.861643,0.864,7.436523 +L 1.5046,2.66959,1.5641,4.803695 +L 1.5641,4.803695,1.631,6.92945 +L 1.631,6.92945,1.7151,9.038221 +L 2.1455,2.66959,2.419,2.66959 +L 2.419,2.66959,2.6919,2.66959 +L 2.6919,2.66959,2.9689,2.66959 +L 2.9689,2.66959,2.9689,4.269834 +L 2.9689,4.269834,2.9689,5.861643 +L 2.9689,5.861643,2.9689,7.436523 +L 6.3523,5.834849,6.0753,6.269741 +L 6.0753,6.269741,5.9737,6.823474 +L 5.9737,6.823474,5.96,7.97039 + +[妙] 19 +L 3.3947,0,4.9883,0.477417 +L 4.9883,0.477417,6.2913,1.785331 +L 6.2913,1.785331,7.2085,3.737321 +L 5.0724,3.203455,5.3487,3.203455 +L 5.3487,3.203455,5.6324,3.203455 +L 5.6324,3.203455,5.927,3.203455 +L 5.927,3.203455,5.927,5.148347 +L 5.927,5.148347,5.927,7.093233 +L 5.927,7.093233,5.927,9.038227 +L 3.8252,4.271194,4.4206,5.411093 +L 4.4206,5.411093,4.6451,6.093279 +L 4.6451,6.093279,4.6763,6.902577 +L 8.0631,5.033918,7.7658,5.670989 +L 7.7658,5.670989,7.4856,6.291046 +L 7.4856,6.291046,7.2085,6.902577 +L 4.2633,6.330312,0.6628,6.330312 +L 1.5206,3.326533,2.144,8.999906 +A -3.8694,-3.399556,8.620982,23.224227,51.278884 +A -5.7295,6.330312,9.138971,316.15783,0 + +[矛] 27 +L 3.3967,0,3.8205,0 +L 3.8205,0,4.2478,0 +L 4.2478,0,4.6748,0 +L 4.6748,0,4.5942,1.437907 +L 4.5942,1.437907,4.5245,2.85881 +L 4.5245,2.85881,4.465,4.271194 +L 4.465,4.271194,3.2496,3.203455 +L 3.2496,3.203455,2.0553,2.135628 +L 2.0553,2.135628,0.8645,1.067813 +L 6.8151,3.737321,7.0845,4.183649 +L 7.0845,4.183649,7.3615,4.613041 +L 7.3615,4.613041,7.6378,5.033918 +L 7.6378,5.033918,6.6365,4.956254 +L 6.6365,4.956254,5.6555,4.870143 +L 5.6555,4.870143,4.6748,4.766938 +L 0.8645,5.300898,1.9957,5.300898 +L 1.9957,5.300898,3.1197,5.300898 +L 3.1197,5.300898,4.2478,5.300898 +L 5.1056,5.834846,4.5245,6.368714 +L 4.5245,6.368714,3.9498,6.902577 +L 3.9498,6.902577,3.3967,7.436523 +L 5.1056,6.902577,5.5294,7.358859 +L 5.5294,7.358859,5.9567,7.806606 +L 5.9567,7.806606,6.384,8.237277 +L 6.384,8.237277,4.8292,8.340484 +L 4.8292,8.340484,3.2741,8.426595 +L 3.2741,8.426595,1.7156,8.504262 + +[霧] 84 +L 1.7176,0,1.9904,0 +L 1.9904,0,2.2639,0 +L 2.2639,0,2.5406,0 +L 2.5406,0,2.4562,0.723172 +L 2.4562,0.723172,2.3865,1.437907 +L 2.3865,1.437907,2.3301,2.135628 +L 2.3301,2.135628,1.8401,1.790998 +L 1.8401,1.790998,1.3498,1.437907 +L 1.3498,1.437907,0.8595,1.067813 +L 4.4635,0,4.8102,0.456285 +L 4.8102,0.456285,5.1671,0.90404 +L 5.1671,0.90404,5.5314,1.334792 +L 5.5314,1.334792,5.234,1.437907 +L 5.234,1.437907,4.9503,1.524117 +L 4.9503,1.524117,4.6736,1.601781 +L 6.5684,0,7.0168,0.415284 +L 7.0168,0.415284,7.1849,0.830508 +L 7.1849,0.830508,7.2055,1.601781 +L 7.2055,1.601781,6.7852,1.601781 +L 6.7852,1.601781,6.3548,1.601781 +L 6.3548,1.601781,5.9275,1.601781 +L 3.3952,2.135628,3.5245,2.402528 +L 3.5245,2.402528,3.6716,2.66959 +L 3.6716,2.66959,3.8225,2.936474 +L 3.8225,2.936474,3.3952,2.85881 +L 3.3952,2.85881,2.9644,2.772598 +L 2.9644,2.772598,2.5406,2.66959 +L 4.8908,2.66959,5.2267,3.039578 +L 5.2267,3.039578,5.5699,3.39268 +L 5.5699,3.39268,5.9275,3.737321 +L 5.9275,3.737321,5.7135,4.080534 +L 5.7135,4.080534,5.5104,4.423747 +L 5.5104,4.423747,5.3146,4.766938 +L 5.3146,4.766938,5.1041,4.613041 +L 5.1041,4.613041,4.8908,4.450705 +L 4.8908,4.450705,4.6736,4.271194 +L 7.2055,2.66959,6.9117,3.039578 +L 6.9117,3.039578,6.6315,3.39268 +L 6.6315,3.39268,6.3548,3.737321 +L 6.3548,3.737321,6.4879,4.004287 +L 6.4879,4.004287,6.6315,4.271194 +L 6.6315,4.271194,6.7852,4.538154 +L 6.7852,4.538154,6.4879,4.61448 +L 6.4879,4.61448,6.2042,4.690705 +L 6.2042,4.690705,5.9275,4.766938 +L 0.8595,3.203455,1.2692,3.306569 +L 1.2692,3.306569,1.6857,3.39268 +L 1.6857,3.39268,2.113,3.470341 +L 2.113,3.470341,1.9694,3.840435 +L 1.9694,3.840435,1.8401,4.193527 +L 1.8401,4.193527,1.7176,4.538154 +L 1.7176,4.538154,2.1203,4.538154 +L 2.1203,4.538154,2.5406,4.538154 +L 2.5406,4.538154,2.9644,4.538154 +L 2.9644,4.538154,2.817,4.271194 +L 2.817,4.271194,2.6734,4.004287 +L 2.6734,4.004287,2.5406,3.737321 +L 4.2495,5.834846,3.6614,7.419553 +L 3.6614,7.419553,2.3235,7.605973 +L 2.3235,7.605973,0.8595,7.436523 +L 0.8595,7.436523,0.8595,7.0918 +L 0.8595,7.0918,0.8595,6.738802 +L 0.8595,6.738802,0.8595,6.368714 +L 1.7176,6.368714,2.2671,6.368714 +L 2.2671,6.368714,2.8243,6.368714 +L 2.8243,6.368714,3.3952,6.368714 +L 5.1041,6.368714,5.654,6.368714 +L 5.654,6.368714,6.2112,6.368714 +L 6.2112,6.368714,6.7852,6.368714 +L 7.6363,6.368714,7.6363,6.738802 +L 7.6363,6.738802,7.6363,7.0918 +L 7.6363,7.0918,7.6363,7.436523 +L 7.6363,7.436523,6.635,7.436523 +L 6.635,7.436523,5.654,7.436523 +L 5.654,7.436523,4.6736,7.436523 +L 4.6736,7.436523,4.523,7.703503 +L 4.523,7.703503,4.3791,7.97039 +L 4.3791,7.97039,4.2495,8.237277 +L 4.2495,8.237277,3.2516,8.340484 +L 3.2516,8.340484,2.2671,8.426595 +L 2.2671,8.426595,1.2903,8.504262 +L 4.6736,8.504262,5.5104,8.504262 +L 5.5104,8.504262,6.3548,8.504262 +L 6.3548,8.504262,7.2055,8.504262 + +[婿] 40 +L 4.6788,0,4.6788,1.437907 +L 4.6788,1.437907,4.6788,2.85881 +L 4.6788,2.85881,4.6788,4.271194 +L 4.6788,4.271194,5.5334,4.271194 +L 5.5334,4.271194,6.3845,4.271194 +L 6.3845,4.271194,7.2429,4.271194 +L 7.2429,4.271194,7.2429,2.85881 +L 7.2429,2.85881,7.2429,1.437907 +L 7.2429,1.437907,7.2429,0 +L 7.2429,0,6.9449,0 +L 6.9449,0,6.6612,0 +L 6.6612,0,6.3845,0 +L 5.1026,2.135628,5.6633,2.135628 +L 5.6633,2.135628,6.2339,2.135628 +L 6.2339,2.135628,6.8121,2.135628 +L 5.1026,3.203455,5.6633,3.203455 +L 5.6633,3.203455,6.2339,3.203455 +L 6.2339,3.203455,6.8121,3.203455 +L 3.8522,5.300898,4.4336,6.091845 +L 4.4336,6.091845,4.6437,6.645576 +L 4.6437,6.645576,4.6788,7.436523 +L 5.9537,5.300898,5.9537,6.368714 +L 5.9537,6.368714,5.9537,7.436523 +L 5.9537,7.436523,5.9537,8.504262 +L 5.9537,8.504262,5.2535,8.504262 +L 5.2535,8.504262,4.553,8.504262 +L 4.553,8.504262,3.8522,8.504262 +L 6.3845,5.300898,6.9449,5.300898 +L 6.9449,5.300898,7.5123,5.300898 +L 7.5123,5.300898,8.094,5.300898 +L 6.3845,6.902577,6.6612,6.902577 +L 6.6612,6.902577,6.9449,6.902577 +L 6.9449,6.902577,7.2429,6.902577 +L 6.3845,8.504262,6.8121,8.504262 +L 6.8121,8.504262,7.2429,8.504262 +L 7.2429,8.504262,7.6632,8.504262 +L 4.2623,6.330312,0.6653,6.330312 +L 1.5196,3.326533,2.1433,8.999906 +A -3.8672,-3.399556,8.620982,23.224227,51.278884 +A -5.7302,6.330312,9.138971,316.15783,0 + + +# kan_38 ------------------------------------------------------- +# 娘銘滅免茂妄猛盲網耗黙戻紋匁厄躍柳愉癒諭唯幽悠憂猶裕誘雄融与誉庸揚揺擁溶窯謡踊抑翼羅裸頼雷酪欄濫吏履 + +[娘] 23 +L 2.9626,0.000025,3.8176,0.000025 +L 3.8176,0.000025,3.8176,7.39835 +L 3.8176,7.39835,5.0676,7.39835 +L 5.0676,7.39835,5.0676,9.000032 +L 4.2449,0.000025,4.5776,0.375715 +L 4.5776,0.375715,4.896,0.514106 +L 4.896,0.514106,5.4988,0.533893 +L 7.2041,0.000025,5.7019,2.266989 +L 5.7019,2.266989,5.1482,3.36442 +L 5.1482,3.36442,5.0676,4.233093 +L 5.0676,4.233093,4.2449,4.233093 +L 6.3498,2.631406,6.6262,3.001451 +L 6.6262,3.001451,6.9067,3.354504 +L 6.9067,3.354504,7.2041,3.699188 +L 5.4988,4.233093,6.3498,4.233093 +L 6.3498,4.233093,6.3498,5.796623 +L 6.3498,5.796623,4.2449,5.796623 +L 6.3498,6.330574,6.3498,7.39835 +L 6.3498,7.39835,5.4988,7.39835 +L 3.4043,6.330328,-0.1966,6.330328 +L 0.6619,3.32655,1.2815,8.999913 +A -4.7288,-3.399539,8.620982,23.224227,51.278884 +A -6.5886,6.330328,9.138971,316.15783,0 + +[銘] 17 +L 0.5059,4.500043,3.1047,4.500043 +L 0.5059,6.330574,3.1047,6.330574 +L 0.9052,1.500026,0.4113,3.33889 +L 2.4568,2.080607,2.9475,3.919462 +L 1.8057,6.330574,1.8057,0.482333 +L 7.2026,0.000025,7.2026,3.000034 +L 7.2026,3.000034,4.5022,3.000034 +L 4.5022,3.000034,4.5022,0.000025 +L 4.5022,0.000025,7.2026,0.000025 +L 4.4076,7.500029,7.2026,7.500029 +L 4.2434,6.546159,6.5862,5.193838 +L 1.8057,9.000036,0.0019,6.000028 +L 0.0019,0.000025,3.6021,0.964658 +L 1.8057,9.000036,3.6021,7.199998 +L 7.2026,8.00003,7.2026,7.500029 +A 2.5937,7.500029,4.612374,282.67915,0 +A -7.1995,9.000036,11.700344,337.38085,0 + +[滅] 17 +L 1.2855,7.970385,0.4592,8.999869 +L 0.8582,5.834666,0.0351,6.90245 +L 1.2855,3.470481,0.0351,0.000025 +L 1.8318,7.500029,7.2361,7.500029 +L 1.8318,7.500029,1.8318,4.500043 +L 7.2361,1.500026,7.2361,0.000025 +L 5.4324,9.000036,5.4324,6.000028 +L 6.336,9.000036,6.6025,8.00003 +L 7.2361,4.500043,5.4324,0.000025 +L 2.3327,6.000028,4.9319,6.000028 +L 2.732,4.500043,2.732,3.000034 +L 4.5322,3.000034,4.9385,4.500043 +L 3.6321,5.500023,3.6321,4.500043 +L 4.9385,1.098109,3.4815,2.550483 +A -10.8716,4.500043,12.703326,339.25315,0 +A 16.332,6.000028,10.900319,180,213.39739 +A -9.0713,4.500043,12.703326,339.25315,0 + +[免] 29 +L 0.2756,0.000025,1.0423,0.713354 +L 1.0423,0.713354,1.8132,1.409603 +L 1.8132,1.409603,2.5974,2.097454 +L 2.5974,2.097454,2.5974,3.699188 +L 2.5974,3.699188,0.8882,3.699188 +L 0.8882,3.699188,0.8882,5.796623 +L 0.8882,5.796623,0.615,5.985922 +L 0.615,5.985922,0.3418,6.166706 +L 0.3418,6.166706,0.0616,6.330574 +L 3.0247,6.330574,1.3155,6.330574 +L 3.452,6.967587,3.0247,6.330574 +L 3.8796,7.587563,3.452,6.967587 +L 4.3066,8.199191,3.8796,7.587563 +L 3.5816,8.302295,4.3066,8.199191 +L 2.8741,8.388406,3.5816,8.302295 +L 2.1736,8.466162,2.8741,8.388406 +L 0.8882,6.864438,2.1736,8.466162 +L 1.3155,6.330574,0.8882,6.864438 +L 4.3521,6.354613,3.6201,5.912439 +L 5.9846,6.330574,4.3521,6.354613 +L 5.9846,3.699188,5.9846,6.330574 +L 4.6992,3.699188,5.9846,3.699188 +L 4.3206,1.451996,4.3066,3.699188 +L 4.4221,0.49294,4.3206,1.451996 +L 4.6992,0.000025,4.4221,0.49294 +L 5.1296,0.000025,6.8388,0.000025 +L 6.8388,0.000025,6.8388,1.563593 +L 4.3066,3.699188,3.0247,3.699188 +L 3.6201,5.912439,3.452,4.233093 + +[茂] 37 +L 0.7851,1.781134,0.9497,3.392694 +L 0.9497,3.392694,0.9217,5.300868 +L 0.9217,5.300868,3.447,5.300868 +L 3.447,5.300868,3.5801,5.644073 +L 3.5801,5.644073,3.7275,5.987333 +L 3.7275,5.987333,3.8781,6.330574 +L 4.2595,5.152498,4.925,5.360245 +L 4.925,5.360245,6.4419,5.567801 +L 6.4419,5.567801,6.1438,6.01415 +L 6.1438,6.01415,5.864,6.443518 +L 5.864,6.443518,5.587,6.864438 +L 5.587,7.932307,7.2615,7.932307 +L 5.1565,7.932307,5.0056,8.302295 +L 5.0056,8.302295,4.8623,8.655481 +L 4.8623,8.655481,4.7359,9.000032 +L 4.7359,7.13138,4.0918,7.73446 +L 4.0918,7.73446,3.2648,8.218973 +L 3.2648,8.218973,2.6309,9.000032 +L 2.33,7.665236,2.2004,7.932307 +L 2.4736,7.39835,2.33,7.665236 +L 2.6309,7.13138,2.4736,7.39835 +L 2.2004,7.932307,0.0639,7.932307 +L 0.0639,0.000025,0.7851,1.781134 +L 1.7731,0.000025,2.8589,0.423722 +L 2.8589,0.423722,3.6291,0.898341 +L 3.6291,0.898341,4.7359,1.830535 +L 4.7359,1.830535,4.1338,3.185045 +L 4.1338,3.185045,3.9096,3.946295 +L 3.9096,3.946295,3.8781,4.766908 +L 3.8781,4.766908,4.2595,5.152498 +L 6.8657,0.000025,6.2878,0.610203 +L 6.2878,0.610203,5.7166,1.220388 +L 5.7166,1.220388,5.1565,1.830535 +L 5.1565,1.830535,5.587,2.467538 +L 5.587,2.467538,6.0146,3.087609 +L 6.0146,3.087609,6.4419,3.699188 +L 7.2615,0.000025,7.2615,1.563593 + +[妄] 33 +L 3.4843,7.932307,3.4843,9.000032 +L 1.7751,7.932307,3.4843,7.932307 +L 1.4421,6.480247,1.3794,7.932307 +L 1.9709,5.901119,1.4421,6.480247 +L 3.4843,5.796623,1.9709,5.901119 +L 3.3299,5.186491,3.4843,5.796623 +L 3.1863,4.576298,3.3299,5.186491 +L 3.0532,3.96616,3.1863,4.576298 +L 3.7575,3.888458,3.0532,3.96616 +L 4.465,3.802284,3.7575,3.888458 +L 5.1932,3.699188,4.465,3.802284 +L 5.1582,2.908234,5.1932,3.699188 +L 4.9375,2.354586,5.1582,2.908234 +L 4.3354,1.563593,4.9375,2.354586 +L 4.885,1.05652,4.3354,1.563593 +L 5.4454,0.532484,4.885,1.05652 +L 6.0166,0.000025,5.4454,0.532484 +L 3.9043,5.796623,6.0166,5.796623 +L 0.9482,0.000025,2.1811,0.03813 +L 2.1811,0.03813,2.9446,0.305072 +L 2.9446,0.305072,3.9043,1.029642 +L 3.9043,1.029642,3.5474,1.415224 +L 3.5474,1.415224,2.9936,1.622919 +L 2.9936,1.622919,1.7751,1.830535 +L 1.7751,1.830535,2.0483,2.364388 +L 2.0483,2.364388,2.3352,2.898293 +L 2.3352,2.898293,2.6294,3.4322 +L 2.6294,3.4322,1.7751,3.53532 +L 1.7751,3.53532,0.9272,3.621516 +L 0.9272,3.621516,0.094,3.699188 +L 1.3794,7.932307,0.5209,7.932307 +L 5.5855,3.699188,6.8674,3.699188 +L 3.9043,7.932307,6.8674,7.932307 + +[猛] 45 +L 0.1271,0.000025,0.7366,0.03813 +L 0.7366,0.03813,1.1744,0.305072 +L 1.1744,0.305072,1.8052,1.029642 +L 1.8052,1.029642,1.7208,2.467538 +L 1.7208,2.467538,1.6546,3.888458 +L 1.6546,3.888458,1.5877,5.300868 +L 1.5877,5.300868,1.1008,4.603177 +L 1.1008,4.603177,0.614,3.888458 +L 0.614,3.888458,0.1271,3.165273 +L 3.0867,3.165273,6.4736,3.165273 +L 6.4736,3.165273,6.4736,0.000025 +L 6.4736,0.000025,7.3247,0.000025 +L 4.9745,0.000025,5.0376,0.877137 +L 5.0376,0.877137,5.1076,1.754247 +L 5.1076,1.754247,5.1882,2.631406 +L 4.3371,0.000025,4.3371,2.631406 +L 3.5105,0.000025,4.3371,0.000025 +L 3.0867,0.000025,3.0867,3.165273 +L 3.9417,4.766908,4.7644,4.766908 +L 4.7644,4.766908,4.418,6.172328 +L 4.418,6.172328,3.6121,6.425182 +L 3.6121,6.425182,2.6594,6.330574 +L 1.3775,5.796623,1.3603,6.567807 +L 1.3603,6.567807,1.2514,6.983058 +L 1.2514,6.983058,0.9467,7.39835 +L 0.9467,7.39835,0.6735,7.053654 +L 0.6735,7.053654,0.4003,6.700654 +L 0.4003,6.700654,0.1271,6.330574 +L 0.9467,7.932307,0.6735,8.302295 +L 0.6735,8.302295,0.4003,8.655481 +L 0.4003,8.655481,0.1271,9.000032 +L 1.9348,8.655481,2.2321,9.000032 +L 1.6546,8.302295,1.9348,8.655481 +L 1.3775,7.932307,1.6546,8.302295 +L 3.9168,8.388406,3.0867,8.466162 +L 4.7644,8.302295,3.9168,8.388406 +L 5.6193,8.199191,4.7644,8.302295 +L 5.3181,7.854554,5.6193,8.199191 +L 5.0376,7.501408,5.3181,7.854554 +L 4.7644,7.13138,5.0376,7.501408 +L 4.894,6.864438,4.7644,7.13138 +L 5.0376,6.59747,4.894,6.864438 +L 5.1882,6.330574,5.0376,6.59747 +L 5.6193,6.330574,6.8977,6.330574 +L 2.2321,0.000025,3.0867,0.000025 + +[盲] 14 +L 1.4114,5.796623,1.1067,6.231644 +L 1.8352,5.796623,6.0766,5.796623 +L 1.4114,4.766908,5.6455,4.766908 +L 1.4114,0.000025,1.4114,4.766908 +L 5.6455,0.000025,1.4114,0.000025 +L 5.6455,4.766908,5.6455,0.000025 +L 1.8352,3.165273,5.2217,3.165273 +L 1.8352,1.563593,5.2217,1.563593 +L 1.1067,6.231644,0.9946,6.785334 +L 0.9946,6.785334,0.9802,7.932307 +L 0.9802,7.932307,0.126,7.932307 +L 1.4114,7.932307,3.5164,7.932307 +L 3.5164,7.932307,3.5164,9.000032 +L 3.9363,7.932307,6.8994,7.932307 + +[網] 36 +L 0.1592,1.296567,0.2887,1.933676 +L 0.2887,1.933676,0.4323,2.553703 +L 0.4323,2.553703,0.583,3.165273 +L 1.4099,0.000025,1.4099,4.766908 +L 3.5425,0.000025,3.5425,8.466162 +L 3.5425,8.466162,6.9294,8.466162 +L 6.9294,8.466162,6.9294,0.000025 +L 6.9294,0.000025,5.6475,0.000025 +L 5.2202,2.097454,6.0751,2.097454 +L 4.8244,2.097454,4.8244,4.233093 +L 4.8244,4.233093,3.9733,4.233093 +L 5.2202,4.233093,5.2202,5.796623 +L 5.2202,5.796623,3.9733,5.796623 +L 5.6475,5.796623,5.665,6.567807 +L 5.665,6.567807,5.7739,6.983058 +L 5.7739,6.983058,6.0751,7.39835 +L 1.8337,7.13138,1.9668,7.39835 +L 1.9668,7.39835,2.1104,7.665236 +L 2.1104,7.665236,2.2641,7.932307 +L 0.583,7.13138,0.8596,7.768431 +L 1.0141,6.539616,0.583,7.13138 +L 1.1714,6.134262,1.0141,6.539616 +L 1.1924,5.567801,1.1714,6.134262 +L 2.3937,5.033943,2.2641,5.300868 +L 0.8596,7.768431,1.1328,8.388406 +L 1.1328,8.388406,1.4099,9.000032 +L 1.4099,4.766908,0.1592,4.766908 +L 2.6848,1.830535,2.5373,2.286768 +L 2.5373,2.286768,2.3937,2.734556 +L 2.3937,2.734556,2.2641,3.165273 +L 2.6848,4.500019,2.5373,4.766908 +L 2.5373,4.766908,2.3937,5.033943 +L 2.2641,5.300868,2.1104,5.137046 +L 2.1104,5.137046,1.9668,4.956271 +L 1.9668,4.956271,1.8337,4.766908 +L 5.6475,4.233093,6.5056,4.233093 + +[耗] 40 +L 5.2537,5.796623,4.9529,6.231644 +L 4.9529,6.231644,4.8408,6.785334 +L 4.8408,6.785334,4.8229,7.932307 +L 4.8229,7.932307,3.5725,7.932307 +L 5.6775,5.796623,6.0103,6.172328 +L 6.0103,6.172328,6.3433,6.31071 +L 6.3433,6.31071,6.9629,6.330574 +L 1.436,0.000025,1.3555,1.066406 +L 1.3555,1.066406,1.2854,2.124287 +L 1.2854,2.124287,1.2259,3.165273 +L 1.2259,3.165273,0.862,2.631406 +L 0.862,2.631406,0.5012,2.097454 +L 0.5012,2.097454,0.1577,1.563593 +L 5.2537,0.000025,4.7287,1.699198 +L 4.7287,1.699198,4.1543,3.347482 +L 4.1543,3.347482,2.7214,2.631406 +L 2.7214,2.631406,1.4851,4.134171 +L 1.4851,4.134171,0.8235,4.687865 +L 0.8235,4.687865,0.1577,4.766908 +L 5.6775,0.000025,7.3867,0.000025 +L 7.3867,0.000025,7.3867,1.563593 +L 5.2537,3.165273,4.7249,4.440696 +L 4.7249,4.440696,4.5322,5.411039 +L 4.5322,5.411039,3.5725,5.796623 +L 5.6775,3.165273,6.0278,3.540979 +L 6.0278,3.540979,6.4694,3.679408 +L 6.4694,3.679408,7.3867,3.699188 +L 1.8672,4.766908,1.436,5.299475 +L 1.436,5.299475,1.0123,5.823455 +L 1.0123,5.823455,0.585,6.330574 +L 1.8672,6.330574,1.573,6.864438 +L 1.573,6.864438,1.2854,7.39835 +L 1.2854,7.39835,1.0123,7.932307 +L 1.0123,7.932307,0.1577,7.932307 +L 1.8672,7.932307,1.7131,8.302295 +L 1.7131,8.302295,1.573,8.655481 +L 1.573,8.655481,1.436,9.000032 +L 5.2537,8.466162,5.8666,8.485944 +L 5.8666,8.485944,6.1994,8.624288 +L 6.1994,8.624288,6.5325,9.000032 + +[黙] 40 +L 0.1915,0.000025,0.4609,0.532484 +L 0.4609,0.532484,0.7446,1.05652 +L 0.7446,1.05652,1.0426,1.563593 +L 3.1476,0.267008,2.9966,0.713354 +L 2.9966,0.713354,2.8495,1.14267 +L 2.8495,1.14267,2.7164,1.563593 +L 5.2802,0.267008,5.1335,0.713354 +L 5.1335,0.713354,4.986,1.14267 +L 4.986,1.14267,4.8564,1.563593 +L 7.3887,0.267008,7.0875,0.713354 +L 7.0875,0.713354,6.8073,1.14267 +L 6.8073,1.14267,6.531,1.563593 +L 4.0022,2.631406,4.916,4.420924 +L 4.916,4.420924,5.3643,5.608748 +L 5.3643,5.608748,5.711,6.330574 +L 5.711,6.330574,5.3643,6.706284 +L 5.3643,6.706284,4.916,6.844617 +L 4.916,6.844617,4.0022,6.864438 +L 7.3887,2.631406,6.5064,4.172291 +L 6.5064,4.172291,6.1804,4.992989 +L 6.1804,4.992989,6.1348,5.796623 +L 0.1915,3.165273,1.8972,3.165273 +L 1.8972,3.165273,1.7463,4.360244 +L 1.7463,4.360244,1.312,4.741562 +L 1.312,4.741562,0.6153,4.766908 +L 2.2965,3.699188,3.5749,3.699188 +L 2.2965,4.766908,2.0163,5.299475 +L 2.0163,5.299475,1.7428,5.823455 +L 1.7428,5.823455,1.4699,6.330574 +L 1.4699,6.330574,0.6153,6.330574 +L 0.6153,6.330574,0.6153,8.466162 +L 0.6153,8.466162,3.1476,8.466162 +L 3.1476,8.466162,3.1476,6.330574 +L 3.1476,6.330574,2.4996,6.370082 +L 2.4996,6.370082,1.9533,6.646866 +L 1.9533,6.646866,1.0426,7.39835 +L 6.1348,6.864438,5.8375,7.299466 +L 5.8375,7.299466,5.7286,7.853115 +L 5.7286,7.853115,5.711,9.000032 +L 6.531,6.864438,7.3887,6.864438 + +[戻] 20 +L 5.4157,1.409603,4.8549,2.097454 +L 0.2177,0.000025,0.9991,2.24577 +L 0.9991,2.24577,1.1143,4.466144 +L 1.1143,4.466144,1.0446,6.864438 +L 1.0446,6.864438,6.5641,6.864438 +L 6.5641,6.864438,6.5641,5.300868 +L 6.5641,5.300868,1.4649,5.300868 +L 2.109,0.000025,2.8796,0.877137 +L 2.8796,0.877137,3.6676,1.754247 +L 3.6676,1.754247,4.4592,2.631406 +L 4.4592,2.631406,4.0812,3.00711 +L 4.0812,3.00711,3.4123,3.145454 +L 3.4123,3.145454,1.8957,3.165273 +L 6.5641,0.000025,5.9866,0.713354 +L 5.9866,0.713354,5.4157,1.409603 +L 4.8549,3.165273,4.7148,3.53532 +L 4.7148,3.53532,4.5821,3.888458 +L 4.5821,3.888458,4.4592,4.233093 +L 5.2857,3.165273,6.9918,3.165273 +L 0.2177,8.466162,7.4191,8.466162 + +[紋] 37 +L 1.0708,5.300868,1.2042,5.566408 +L 1.2042,5.566408,1.3478,5.823455 +L 1.3478,5.823455,1.5016,6.06354 +L 1.5016,6.06354,0.647,7.13138 +L 0.647,7.13138,0.924,7.768431 +L 0.924,7.768431,1.2042,8.388406 +L 1.2042,8.388406,1.5016,9.000032 +L 1.5016,0.000025,1.5016,4.766908 +L 1.5016,4.766908,0.2165,4.766908 +L 3.3933,0.000025,5.3126,2.63136 +L 5.3126,2.631406,4.5592,4.316425 +L 4.5592,4.316425,4.1494,5.865925 +L 4.1494,5.865925,4.0339,7.39835 +L 4.0339,7.39835,3.2111,7.39835 +L 7.0215,0.000025,6.5945,0.713354 +L 6.5945,0.713354,6.1672,1.409603 +L 6.1672,1.409603,5.7434,2.097454 +L 0.2165,1.296567,0.3458,1.933676 +L 0.3458,1.933676,0.4932,2.553703 +L 0.4932,2.553703,0.647,3.165273 +L 2.7803,1.830535,2.6294,2.286768 +L 2.6294,2.286768,2.4826,2.734556 +L 2.4826,2.734556,2.3527,3.165273 +L 5.7434,3.4322,6.3385,5.15538 +L 6.3385,5.15538,6.5626,6.183693 +L 6.5626,6.183693,6.5945,7.39835 +L 6.5945,7.39835,4.4577,7.39835 +L 2.7803,4.500019,2.6294,4.766908 +L 2.6294,4.766908,2.4826,5.033943 +L 2.4826,5.033943,2.3527,5.300868 +L 2.3527,5.300868,2.2021,5.137046 +L 2.2021,5.137046,2.062,4.956271 +L 2.062,4.956271,1.9219,4.766908 +L 1.9219,7.13138,2.062,7.39835 +L 2.062,7.39835,2.2021,7.665236 +L 2.2021,7.665236,2.3527,7.932307 +L 5.3126,7.932307,5.3126,9.000032 + +[匁] 25 +L 0.8872,0.000025,1.8048,1.066406 +L 1.8048,1.066406,2.7189,2.124287 +L 2.7189,2.124287,3.6369,3.165273 +L 3.6369,3.165273,3.4194,3.994385 +L 3.4194,3.994385,2.9259,4.815007 +L 2.9259,4.815007,1.7106,6.330574 +L 1.7106,6.330574,1.2237,5.823455 +L 1.2237,5.823455,0.7369,5.299475 +L 0.7369,5.299475,0.2501,4.766908 +L 4.4912,0.000025,5.1216,0.048024 +L 5.1216,0.048024,5.5598,0.384169 +L 5.5598,0.384169,6.1657,1.296567 +L 6.1657,1.296567,5.4649,1.933676 +L 5.4649,1.933676,4.7647,2.553703 +L 4.7647,2.553703,4.0607,3.165273 +L 7.02,1.563593,6.1657,2.631406 +L 6.1657,2.631406,6.4704,3.163872 +L 6.4704,3.163872,6.5821,4.399712 +L 6.5821,4.399712,6.5962,7.39835 +L 6.5962,7.39835,4.0607,7.39835 +L 4.0607,7.39835,4.0607,4.766908 +L 1.9274,7.13138,2.0573,7.768431 +L 2.0573,7.768431,2.2041,8.388406 +L 2.2041,8.388406,2.355,9.000032 +L 2.7823,7.39835,3.6369,7.39835 + +[厄] 12 +L 0.2797,0.267008,0.9697,3.045224 +L 0.9697,3.045224,1.1277,5.637068 +L 1.1277,5.637068,1.1032,8.466162 +L 1.1032,8.466162,7.4811,8.466162 +L 3.2393,0.000025,2.9381,0.590377 +L 2.9381,0.590377,2.8264,2.231711 +L 2.8264,2.231711,2.812,6.330574 +L 2.812,6.330574,5.7681,6.330574 +L 5.7681,6.330574,5.7681,2.631406 +L 5.7681,2.631406,4.4897,2.631406 +L 3.6631,0.000025,7.0538,0.000025 +L 7.0538,0.000025,7.0538,1.563593 + +[躍] 78 +L 0.7024,0.000025,0.7024,1.600312 +L 0.7024,1.600312,0.7024,3.192107 +L 0.7024,3.192107,0.7024,4.766908 +L 1.1328,0.000025,1.434,0.570651 +L 1.434,0.570651,1.5426,2.073408 +L 1.5426,2.073408,1.5601,5.796623 +L 1.5601,5.796623,1.2628,5.796623 +L 1.2628,5.796623,0.9826,5.796623 +L 0.9826,5.796623,0.7024,5.796623 +L 0.7024,5.796623,0.7024,6.700654 +L 0.7024,6.700654,0.7024,7.587563 +L 0.7024,7.587563,0.7024,8.466162 +L 0.7024,8.466162,1.2628,8.466162 +L 1.2628,8.466162,1.8372,8.466162 +L 1.8372,8.466162,2.4112,8.466162 +L 2.4112,8.466162,2.261,7.587563 +L 2.261,7.587563,2.1174,6.700654 +L 2.1174,6.700654,1.9913,5.796623 +L 3.6651,0.000025,3.581,1.247174 +L 3.581,1.247174,3.5148,2.477377 +L 3.5148,2.477377,3.4518,3.699188 +L 3.4518,3.699188,2.9716,3.343208 +L 2.9716,3.343208,2.5934,3.343208 +L 2.5934,3.343208,1.9913,3.699188 +L 4.0924,0.000025,4.5236,0.000025 +L 4.5236,0.000025,4.9473,0.000025 +L 4.9473,0.000025,5.3746,0.000025 +L 5.3746,0.000025,5.2237,1.151084 +L 5.2237,1.151084,4.7932,1.531048 +L 4.7932,1.531048,4.0924,1.563593 +L 5.8019,0.000025,6.3518,0.000025 +L 6.3518,0.000025,6.9084,0.000025 +L 6.9084,0.000025,7.4796,0.000025 +L 5.8019,1.563593,5.1677,2.314987 +L 5.1677,2.314987,4.7228,2.591814 +L 4.7228,2.591814,4.0924,2.631406 +L 6.2292,1.563593,6.5021,1.563593 +L 6.5021,1.563593,6.7788,1.563593 +L 6.7788,1.563593,7.0485,1.563593 +L 5.8019,2.631406,5.5074,3.165273 +L 5.5074,3.165273,5.2237,3.699188 +L 5.2237,3.699188,4.9473,4.233093 +L 4.9473,4.233093,4.5236,4.233093 +L 4.5236,4.233093,4.0924,4.233093 +L 4.0924,4.233093,3.6651,4.233093 +L 6.2292,2.631406,6.5021,2.631406 +L 6.5021,2.631406,6.7788,2.631406 +L 6.7788,2.631406,7.0485,2.631406 +L 5.8019,4.233093,5.5182,4.628531 +L 5.5182,4.628531,5.5182,4.905384 +L 5.5182,4.905384,5.8019,5.300868 +L 6.2292,4.233093,6.6352,4.233093 +L 6.6352,4.233093,7.0558,4.233093 +L 7.0558,4.233093,7.4796,4.233093 +L 3.2378,6.330574,3.6651,6.330574 +L 3.6651,6.330574,4.0924,6.330574 +L 4.0924,6.330574,4.5236,6.330574 +L 4.5236,6.330574,4.5236,6.700654 +L 4.5236,6.700654,4.5236,7.053654 +L 4.5236,7.053654,4.5236,7.39835 +L 4.5236,7.39835,4.0924,7.39835 +L 4.0924,7.39835,3.6651,7.39835 +L 3.6651,7.39835,3.2378,7.39835 +L 5.8019,6.330574,6.2082,6.330574 +L 6.2082,6.330574,6.6285,6.330574 +L 6.6285,6.330574,7.0485,6.330574 +L 7.0485,6.330574,7.0485,6.700654 +L 7.0485,6.700654,7.0485,7.053654 +L 7.0485,7.053654,7.0485,7.39835 +L 7.0485,7.39835,6.6285,7.39835 +L 6.6285,7.39835,6.2082,7.39835 +L 6.2082,7.39835,5.8019,7.39835 +L 4.5236,8.199191,4.0924,8.302295 +L 4.0924,8.302295,3.6651,8.388406 +L 3.6651,8.388406,3.2378,8.466162 +L 7.0485,8.199191,6.6285,8.302295 +L 6.6285,8.302295,6.2082,8.388406 +L 6.2082,8.388406,5.8019,8.466162 + +[柳] 42 +L 1.1593,0.000025,1.0826,1.600312 +L 1.0826,1.600312,1.0122,3.192107 +L 1.0122,3.192107,0.9527,4.766908 +L 0.9527,4.766908,0.7394,4.422401 +L 0.7394,4.422401,0.5254,4.069272 +L 0.5254,4.069272,0.3083,3.699188 +L 2.6304,0.000025,3.1172,0.713354 +L 3.1172,0.713354,3.6149,1.409603 +L 3.6149,1.409603,4.1228,2.097454 +L 4.1228,2.097454,4.0422,2.467538 +L 4.0422,2.467538,3.9718,2.820628 +L 3.9718,2.820628,3.9088,3.165273 +L 3.9088,3.165273,3.4118,2.789569 +L 3.4118,2.789569,2.9141,2.651187 +L 2.9141,2.651187,1.9859,2.631406 +L 5.3766,0.000025,5.3766,2.658246 +L 5.3766,2.658246,5.3766,5.299475 +L 5.3766,5.299475,5.3766,7.932307 +L 5.3766,7.932307,5.9297,7.932307 +L 5.9297,7.932307,6.5041,7.932307 +L 6.5041,7.932307,7.0855,7.932307 +L 7.0855,7.932307,7.0855,5.987333 +L 7.0855,5.987333,7.0855,4.04244 +L 7.0855,4.04244,7.0855,2.097454 +L 7.0855,2.097454,6.7878,2.097454 +L 6.7878,2.097454,6.5041,2.097454 +L 6.5041,2.097454,6.2277,2.097454 +L 2.8405,3.165273,2.8405,4.765568 +L 2.8405,4.765568,2.8405,6.357448 +L 2.8405,6.357448,2.8405,7.932307 +L 2.8405,7.932307,3.4009,8.121526 +L 3.4009,8.121526,3.9718,8.302295 +L 3.9718,8.302295,4.5501,8.466162 +L 4.1228,3.699188,4.1228,4.765568 +L 4.1228,4.765568,4.1228,5.823455 +L 4.1228,5.823455,4.1228,6.864438 +L 1.9859,4.766908,1.4606,5.429318 +L 1.4606,5.429318,0.9846,6.202025 +L 0.9846,6.202025,0.3083,6.864438 +L 1.5621,6.864438,1.2823,7.299466 +L 1.2823,7.299466,1.1769,7.853115 +L 1.1769,7.853115,1.1593,9.000032 + +[愉] 42 +L 1.5925,0.000025,1.5925,3.011329 +L 1.5925,3.011329,1.5925,6.01415 +L 1.5925,6.01415,1.5925,9.000032 +L 2.874,0.000025,2.874,1.781134 +L 2.874,1.781134,2.874,3.545198 +L 2.874,3.545198,2.874,5.300868 +L 2.874,5.300868,3.4239,5.300868 +L 3.4239,5.300868,3.9777,5.300868 +L 3.9777,5.300868,4.5486,5.300868 +L 4.5486,5.300868,4.5486,3.545198 +L 4.5486,3.545198,4.5486,1.781134 +L 4.5486,1.781134,4.5486,0.000025 +L 6.2574,0.000025,6.5341,0.000025 +L 6.5341,0.000025,6.8147,0.000025 +L 6.8147,0.000025,7.1124,0.000025 +L 7.1124,0.000025,7.1124,1.781134 +L 7.1124,1.781134,7.1124,3.545198 +L 7.1124,3.545198,7.1124,5.300868 +L 5.8336,1.029642,5.8336,2.286768 +L 5.8336,2.286768,5.8336,3.53532 +L 5.8336,3.53532,5.8336,4.766908 +L 3.2978,2.097454,3.5749,2.097454 +L 3.5749,2.097454,3.8477,2.097454 +L 3.8477,2.097454,4.1248,2.097454 +L 3.2978,3.699188,3.5749,3.699188 +L 3.5749,3.699188,3.8477,3.699188 +L 3.8477,3.699188,4.1248,3.699188 +L 0.3141,5.033943,0.608,5.629997 +L 0.608,5.629997,0.7204,6.242969 +L 0.7204,6.242969,0.734,7.39835 +L 2.4436,6.59747,2.2926,6.864438 +L 2.2926,6.864438,2.149,7.13138 +L 2.149,7.13138,2.0198,7.39835 +L 2.874,6.330574,3.5749,7.234474 +L 3.5749,7.234474,4.275,8.121526 +L 4.275,8.121526,4.979,9.000032 +L 4.979,9.000032,5.8336,8.121526 +L 5.8336,8.121526,6.6847,7.234474 +L 6.6847,7.234474,7.5432,6.330574 +L 4.1248,6.864438,4.6852,6.864438 +L 4.6852,6.864438,5.2561,6.864438 +L 5.2561,6.864438,5.8336,6.864438 + +[癒] 60 +L 0.7711,6.06354,0.6173,6.330574 +L 0.6173,6.330574,0.4737,6.59747 +L 0.4737,6.59747,0.3403,6.864438 +L 2.4452,5.796623,4.1373,6.613009 +L 4.1373,6.613009,5.5029,7.395517 +L 5.5029,7.395517,7.5382,7.932307 +L 4.5821,5.796623,5.1982,5.816404 +L 5.1982,5.816404,5.5309,5.954786 +L 5.5309,5.954786,5.864,6.330574 +L 5.864,6.330574,5.713,6.519797 +L 5.713,6.519797,5.5628,6.700654 +L 5.5628,6.700654,5.4367,6.864438 +L 0.3403,0.000025,0.9991,1.377151 +L 0.9991,1.377151,1.4225,2.855954 +L 1.4225,2.855954,1.4089,4.233093 +L 1.4089,4.233093,1.0411,3.888458 +L 1.0411,3.888458,0.687,3.53532 +L 0.687,3.53532,0.3403,3.165273 +L 2.0495,0.000025,2.7114,1.634206 +L 2.7114,1.634206,2.8834,3.081942 +L 2.8834,3.081942,2.8725,4.766908 +L 2.8725,4.766908,3.4333,4.766908 +L 3.4333,4.766908,4.0038,4.766908 +L 4.0038,4.766908,4.5821,4.766908 +L 4.5821,4.766908,4.6413,3.699188 +L 4.6413,3.699188,4.7117,2.631406 +L 4.7117,2.631406,4.7954,1.563593 +L 4.7954,1.563593,5.0094,1.399725 +L 5.0094,1.399725,5.2192,1.218988 +L 5.2192,1.218988,5.4367,1.029642 +L 3.7271,0.000025,3.7412,0.744414 +L 3.7412,0.744414,3.8536,1.149729 +L 3.8536,1.149729,4.1544,1.563593 +L 4.1544,0.000025,4.8549,0.000025 +L 4.8549,0.000025,5.5628,0.000025 +L 5.5628,0.000025,6.2913,0.000025 +L 7.5382,0.267008,7.3872,0.532484 +L 7.3872,0.532484,7.2436,0.789579 +L 7.2436,0.789579,7.1179,1.029642 +L 7.1179,2.097454,7.1179,3.001451 +L 7.1179,3.001451,7.1179,3.888458 +L 7.1179,3.888458,7.1179,4.766908 +L 3.2963,2.631406,3.5734,2.631406 +L 3.5734,2.631406,3.8571,2.631406 +L 3.8571,2.631406,4.1544,2.631406 +L 5.864,2.631406,5.864,3.165273 +L 5.864,3.165273,5.864,3.699188 +L 5.864,3.699188,5.864,4.233093 +L 3.2963,3.699188,3.5734,3.699188 +L 3.5734,3.699188,3.8571,3.699188 +L 3.8571,3.699188,4.1544,3.699188 +L 1.6222,4.766908,1.6222,5.83335 +L 1.6222,5.83335,1.6222,6.891277 +L 1.6222,6.891277,1.6222,7.932307 +L 1.6222,7.932307,2.5997,7.932307 +L 2.5997,7.932307,3.5835,7.932307 +L 3.5835,7.932307,4.5821,7.932307 +L 4.5821,7.932307,4.5821,8.302295 +L 4.5821,8.302295,4.5821,8.655481 +L 4.5821,8.655481,4.5821,9.000032 + +[諭] 62 +L 0.7979,5.300868,1.2004,5.300868 +L 1.2004,5.300868,1.6207,5.300868 +L 1.6207,5.300868,2.0518,5.300868 +L 0.7979,0.000025,0.7979,0.713354 +L 0.7979,0.713354,0.7979,1.409603 +L 0.7979,1.409603,0.7979,2.097454 +L 0.7979,2.097454,1.2004,2.097454 +L 1.2004,2.097454,1.6207,2.097454 +L 1.6207,2.097454,2.0518,2.097454 +L 2.0518,2.097454,2.0518,1.409603 +L 2.0518,1.409603,2.0518,0.713354 +L 2.0518,0.713354,2.0518,0.000025 +L 2.0518,0.000025,1.6207,0.000025 +L 1.6207,0.000025,1.2004,0.000025 +L 1.2004,0.000025,0.7979,0.000025 +L 3.3302,0.000025,3.3302,1.600312 +L 3.3302,1.600312,3.3302,3.192107 +L 3.3302,3.192107,3.3302,4.766908 +L 3.3302,4.766908,3.761,4.766908 +L 3.761,4.766908,4.1848,4.766908 +L 4.1848,4.766908,4.6118,4.766908 +L 4.6118,4.766908,4.6118,3.192107 +L 4.6118,3.192107,4.6118,1.600312 +L 4.6118,1.600312,4.6118,0.000025 +L 6.2863,0.000025,6.5665,0.000025 +L 6.5665,0.000025,6.8463,0.000025 +L 6.8463,0.000025,7.144,0.000025 +L 7.144,0.000025,7.144,1.781134 +L 7.144,1.781134,7.144,3.545198 +L 7.144,3.545198,7.144,5.300868 +L 5.866,1.563593,5.866,2.631406 +L 5.866,2.631406,5.866,3.699188 +L 5.866,3.699188,5.866,4.766908 +L 0.7979,3.699188,1.2004,3.699188 +L 1.2004,3.699188,1.6207,3.699188 +L 1.6207,3.699188,2.0518,3.699188 +L 4.1848,6.330574,3.8903,6.519797 +L 3.8903,6.519797,3.6066,6.700654 +L 3.6066,6.700654,3.3302,6.864438 +L 4.6118,6.330574,6.1108,6.350395 +L 6.1108,6.350395,6.7623,6.488748 +L 6.7623,6.488748,7.144,6.864438 +L 7.144,6.864438,6.5665,7.587563 +L 6.5665,7.587563,5.9952,8.302295 +L 5.9952,8.302295,5.4352,9.000032 +L 5.4352,9.000032,5.0079,8.466162 +L 5.0079,8.466162,4.5911,7.932307 +L 4.5911,7.932307,4.1848,7.39835 +L 0.3703,6.864438,1.0743,6.864438 +L 1.0743,6.864438,1.7751,6.864438 +L 1.7751,6.864438,2.4753,6.864438 +L 0.7979,8.466162,1.2004,8.466162 +L 1.2004,8.466162,1.6207,8.466162 +L 1.6207,8.466162,2.0518,8.466162 +L 0.3703,6.902547,2.9029,6.902547 +L 0.7979,8.504345,2.4753,8.504345 +L 0.7979,5.300991,2.4753,5.300991 +L 0.7979,4.233064,2.4753,4.233064 +L 0.7979,2.669558,2.4753,2.669558 +L 0.7979,0.000025,0.7979,2.669558 +L 2.4753,0.000025,0.7979,0.000025 +L 2.4753,2.669558,2.4753,0.000025 + +[唯] 48 +L 3.7595,0.000025,3.6755,2.124287 +L 3.6755,2.124287,3.6051,4.231663 +L 3.6051,4.231663,3.542,6.330574 +L 3.542,6.330574,3.3322,6.166706 +L 3.3322,6.166706,3.1291,5.985922 +L 3.1291,5.985922,2.9326,5.796623 +L 4.1833,0.000025,4.7434,0.000025 +L 4.7434,0.000025,5.3146,0.000025 +L 5.3146,0.000025,5.8922,0.000025 +L 5.8922,0.000025,5.8081,1.885578 +L 5.8081,1.885578,5.3458,2.550869 +L 5.3458,2.550869,4.1833,2.631406 +L 6.3233,0.000025,6.7257,0.000025 +L 6.7257,0.000025,7.146,0.000025 +L 7.146,0.000025,7.5698,0.000025 +L 0.3726,2.631406,0.3726,4.412422 +L 0.3726,4.412422,0.3726,6.176601 +L 0.3726,6.176601,0.3726,7.932307 +L 0.3726,7.932307,0.9292,7.932307 +L 0.9292,7.932307,1.5036,7.932307 +L 1.5036,7.932307,2.0783,7.932307 +L 2.0783,7.932307,2.0783,6.176601 +L 2.0783,6.176601,2.0783,4.412422 +L 2.0783,4.412422,2.0783,2.631406 +L 2.0783,2.631406,1.5036,2.631406 +L 1.5036,2.631406,0.9292,2.631406 +L 0.9292,2.631406,0.3726,2.631406 +L 6.3233,2.631406,5.6613,3.91388 +L 5.6613,3.91388,5.3987,4.577694 +L 5.3987,4.577694,4.1833,4.766908 +L 6.7433,2.631406,7.0234,2.631406 +L 7.0234,2.631406,7.297,2.631406 +L 7.297,2.631406,7.5698,2.631406 +L 6.3233,4.766908,5.5104,6.151107 +L 5.5104,6.151107,5.1955,6.738736 +L 5.1955,6.738736,3.7595,7.13138 +L 3.7595,7.13138,3.8853,7.768431 +L 3.8853,7.768431,4.0362,8.388406 +L 4.0362,8.388406,4.1833,9.000032 +L 6.7433,4.766908,7.0234,4.766908 +L 7.0234,4.766908,7.297,4.766908 +L 7.297,4.766908,7.5698,4.766908 +L 6.3233,6.864438,6.0358,7.477414 +L 6.0358,7.477414,6.0358,8.031102 +L 6.0358,8.031102,6.3233,9.000032 +L 6.7433,6.864438,7.0234,6.864438 +L 7.0234,6.864438,7.297,6.864438 +L 7.297,6.864438,7.5698,6.864438 + +[幽] 54 +L 2.5073,5.567801,2.6369,6.01415 +L 2.6369,6.01415,2.7843,6.443518 +L 2.7843,6.443518,2.9346,6.864438 +L 5.898,5.567801,6.0241,6.01415 +L 6.0241,6.01415,6.1677,6.443518 +L 6.1677,6.443518,6.318,6.864438 +L 0.4023,0.000025,0.4023,2.658246 +L 0.4023,2.658246,0.4023,5.299475 +L 0.4023,5.299475,0.4023,7.932307 +L 0.8296,0.000025,1.8068,0.000025 +L 1.8068,0.000025,2.791,0.000025 +L 2.791,0.000025,3.7857,0.000025 +L 3.7857,0.000025,3.7857,0.532484 +L 3.7857,0.532484,3.7857,1.05652 +L 3.7857,1.05652,3.7857,1.563593 +L 3.7857,1.563593,3.4214,1.933676 +L 3.4214,1.933676,3.068,2.286768 +L 3.068,2.286768,2.7174,2.631406 +L 2.7174,2.631406,2.2271,2.255708 +L 2.2271,2.255708,1.7336,2.117271 +L 1.7336,2.117271,0.8296,2.097454 +L 4.2165,0.000025,5.194,0.000025 +L 5.194,0.000025,6.1779,0.000025 +L 6.1779,0.000025,7.1726,0.000025 +L 7.1726,0.000025,7.0923,0.713354 +L 7.0923,0.713354,7.0254,1.409603 +L 7.0254,1.409603,6.9624,2.097454 +L 6.9624,2.097454,6.1533,2.334768 +L 6.1533,2.334768,5.3092,2.216119 +L 5.3092,2.216119,4.2165,2.097454 +L 4.2165,2.097454,3.9118,2.709078 +L 3.9118,2.709078,3.8032,4.498596 +L 3.8032,4.498596,3.7857,9.000032 +L 1.2569,2.631406,1.5305,3.268384 +L 1.5305,3.268384,1.8068,3.888458 +L 1.8068,3.888458,2.0768,4.500019 +L 2.0768,4.500019,1.653,5.110168 +L 1.653,5.110168,1.2324,5.720398 +L 1.2324,5.720398,0.8296,6.330574 +L 4.6441,2.631406,4.9205,3.268384 +L 4.9205,3.268384,5.2007,3.888458 +L 5.2007,3.888458,5.4952,4.500019 +L 5.4952,4.500019,5.0714,5.110168 +L 5.0714,5.110168,4.6441,5.720398 +L 4.6441,5.720398,4.2165,6.330574 +L 7.1726,2.631406,7.1726,4.412422 +L 7.1726,4.412422,7.1726,6.176601 +L 7.1726,6.176601,7.1726,7.932307 +L 1.6807,6.330574,1.8068,7.053654 +L 1.8068,7.053654,1.9332,7.768431 +L 1.9332,7.768431,2.0768,8.466162 +L 5.0714,6.330574,5.2007,7.053654 +L 5.2007,7.053654,5.3443,7.768431 +L 5.3443,7.768431,5.4952,8.466162 + +[悠] 48 +L 5.9245,5.796623,6.2257,6.231644 +L 6.2257,6.231644,6.3375,6.785334 +L 6.3375,6.785334,6.355,7.932307 +L 6.355,7.932307,5.651,7.932307 +L 5.651,7.932307,4.9508,7.932307 +L 4.9508,7.932307,4.2469,7.932307 +L 0.4288,0.267008,0.5553,0.877137 +L 0.5553,0.877137,0.6845,1.487314 +L 0.6845,1.487314,0.8281,2.097454 +L 2.965,0.000025,2.6637,0.453442 +L 2.6637,0.453442,2.5548,1.13561 +L 2.5548,1.13561,2.5412,2.631406 +L 3.3923,0.000025,4.2258,0.000025 +L 4.2258,0.000025,5.0734,0.000025 +L 5.0734,0.000025,5.9245,0.000025 +L 5.9245,0.000025,5.9245,0.532484 +L 5.9245,0.532484,5.9245,1.05652 +L 5.9245,1.05652,5.9245,1.563593 +L 7.6334,0.800811,7.336,1.247174 +L 7.336,1.247174,7.0558,1.676536 +L 7.0558,1.676536,6.7756,2.097454 +L 4.6461,1.830535,4.4987,2.097454 +L 4.4987,2.097454,4.3691,2.364388 +L 4.3691,2.364388,4.2469,2.631406 +L 1.2554,3.165273,1.1713,4.231663 +L 1.1713,4.231663,1.1052,5.289589 +L 1.1052,5.289589,1.0421,6.330574 +L 1.0421,6.330574,0.8316,6.166706 +L 0.8316,6.166706,0.625,5.985922 +L 0.625,5.985922,0.4288,5.796623 +L 3.6056,3.699188,4.2258,4.233093 +L 4.2258,4.233093,4.8559,4.766908 +L 4.8559,4.766908,5.4972,5.300868 +L 5.4972,5.300868,5.0734,6.01415 +L 5.0734,6.01415,4.6528,6.7105 +L 4.6528,6.7105,4.2469,7.39835 +L 4.2469,7.39835,3.9488,7.053654 +L 3.9488,7.053654,3.6686,6.700654 +L 3.6686,6.700654,3.3923,6.330574 +L 7.2061,3.699188,6.7756,4.069272 +L 6.7756,4.069272,6.355,4.422401 +L 6.355,4.422401,5.9245,4.766908 +L 2.5412,4.233093,2.5412,5.480204 +L 2.5412,5.480204,2.5412,6.7105 +L 2.5412,6.7105,2.5412,7.932307 +L 1.2554,7.13138,1.3853,7.768431 +L 1.3853,7.768431,1.5325,8.388406 +L 1.5325,8.388406,1.6827,9.000032 + +[憂] 69 +L 5.5234,6.06354,4.529,6.166706 +L 4.529,6.166706,3.5445,6.252864 +L 3.5445,6.252864,2.5673,6.330574 +L 0.4347,0.000025,1.2648,0.000025 +L 1.2648,0.000025,2.112,0.000025 +L 2.112,0.000025,2.9635,0.000025 +L 2.9635,0.000025,3.0962,0.267008 +L 3.0962,0.267008,3.2398,0.533893 +L 3.2398,0.533893,3.3943,0.800811 +L 3.3943,0.800811,3.0367,1.247174 +L 3.0367,1.247174,2.6934,1.676536 +L 2.6934,1.676536,2.3575,2.097454 +L 2.3575,2.097454,1.8423,1.933676 +L 1.8423,1.933676,1.3488,1.752808 +L 1.3488,1.752808,0.8585,1.563593 +L 4.6723,0.000025,4.3746,0.189279 +L 4.3746,0.189279,4.0944,0.370104 +L 4.0944,0.370104,3.818,0.533893 +L 5.1031,0.000025,5.8039,0.000025 +L 5.8039,0.000025,6.5041,0.000025 +L 6.5041,0.000025,7.2046,0.000025 +L 4.6723,1.029642,4.8057,1.296567 +L 4.8057,1.296567,4.9493,1.563593 +L 4.9493,1.563593,5.1031,1.830535 +L 5.1031,1.830535,3.3449,2.258496 +L 3.3449,2.258496,3.1526,2.915238 +L 3.1526,2.915238,2.9635,4.233093 +L 1.2893,3.165273,1.4185,3.53532 +L 1.4185,3.53532,1.5621,3.888458 +L 1.5621,3.888458,1.7131,4.233093 +L 3.818,3.165273,4.3746,3.165273 +L 4.3746,3.165273,4.9493,3.165273 +L 4.9493,3.165273,5.5234,3.165273 +L 6.8126,3.4322,6.655,3.699188 +L 6.655,3.699188,6.5146,3.96616 +L 6.5146,3.96616,6.3815,4.233093 +L 0.4347,4.233093,0.4347,4.603177 +L 0.4347,4.603177,0.4347,4.956271 +L 0.4347,4.956271,0.4347,5.300868 +L 0.4347,5.300868,0.9912,5.300868 +L 0.9912,5.300868,1.5621,5.300868 +L 1.5621,5.300868,2.1404,5.300868 +L 2.1404,5.300868,2.1404,6.01415 +L 2.1404,6.01415,2.1404,6.7105 +L 2.1404,6.7105,2.1404,7.39835 +L 2.1404,7.39835,2.6934,7.39835 +L 2.6934,7.39835,3.2472,7.39835 +L 3.2472,7.39835,3.818,7.39835 +L 3.818,7.39835,3.818,7.768431 +L 3.818,7.768431,3.818,8.121526 +L 3.818,8.121526,3.818,8.466162 +L 3.818,8.466162,2.6934,8.466162 +L 2.6934,8.466162,1.5621,8.466162 +L 1.5621,8.466162,0.4347,8.466162 +L 4.6723,4.233093,4.308,4.806505 +L 4.308,4.806505,3.7652,5.083374 +L 3.7652,5.083374,2.5673,5.300868 +L 7.2046,4.233093,7.2046,4.603177 +L 7.2046,4.603177,7.2046,4.956271 +L 7.2046,4.956271,7.2046,5.300868 +L 7.2046,5.300868,6.3535,5.300868 +L 6.3535,5.300868,5.5059,5.300868 +L 5.5059,5.300868,4.6723,5.300868 +L 5.5234,7.13138,5.1031,7.234474 +L 5.1031,7.234474,4.6723,7.32064 +L 4.6723,7.32064,4.2453,7.39835 +L 4.2453,8.466162,5.2257,8.466162 +L 5.2257,8.466162,6.2102,8.466162 +L 6.2102,8.466162,7.2046,8.466162 + +[猶] 66 +L 1.7151,5.796623,1.6972,6.567807 +L 1.6972,6.567807,1.5956,6.983058 +L 1.5956,6.983058,1.3154,7.39835 +L 1.3154,7.39835,1.0216,7.053654 +L 1.0216,7.053654,0.7414,6.700654 +L 0.7414,6.700654,0.4612,6.330574 +L 0.4612,0.000025,1.0948,0.03813 +L 1.0948,0.03813,1.5259,0.305072 +L 1.5259,0.305072,2.142,1.029642 +L 2.142,1.029642,2.0583,2.467538 +L 2.0583,2.467538,1.9879,3.888458 +L 1.9879,3.888458,1.9284,5.300868 +L 1.9284,5.300868,1.4415,4.603177 +L 1.4415,4.603177,0.9512,3.888458 +L 0.9512,3.888458,0.4612,3.165273 +L 3.4239,0.000025,3.4239,1.943464 +L 3.4239,1.943464,3.4239,3.878563 +L 3.4239,3.878563,3.4239,5.796623 +L 3.4239,5.796623,4.2715,5.95761 +L 4.2715,5.95761,4.6291,6.474577 +L 4.6291,6.474577,4.7023,7.39835 +L 4.7023,7.39835,4.1248,7.39835 +L 4.1248,7.39835,3.5539,7.39835 +L 3.5539,7.39835,2.9966,7.39835 +L 3.8512,0.000025,4.979,0.000025 +L 4.979,0.000025,6.1072,0.000025 +L 6.1072,0.000025,7.2349,0.000025 +L 7.2349,0.000025,7.2349,0.713354 +L 7.2349,0.713354,7.2349,1.409603 +L 7.2349,1.409603,7.2349,2.097454 +L 7.2349,2.097454,6.1072,2.097454 +L 6.1072,2.097454,4.979,2.097454 +L 4.979,2.097454,3.8512,2.097454 +L 7.2349,2.631406,7.2349,3.001451 +L 7.2349,3.001451,7.2349,3.354504 +L 7.2349,3.354504,7.2349,3.699188 +L 7.2349,3.699188,6.8073,3.699188 +L 6.8073,3.699188,6.3835,3.699188 +L 6.3835,3.699188,5.9527,3.699188 +L 5.9527,3.699188,5.9317,4.844627 +L 5.9317,4.844627,5.7671,5.388419 +L 5.7671,5.388419,5.3121,5.796623 +L 5.3121,5.796623,4.8533,5.131418 +L 4.8533,5.131418,4.4712,4.211882 +L 4.4712,4.211882,3.8512,3.165273 +L 7.2349,4.233093,7.2349,4.765568 +L 7.2349,4.765568,7.2349,5.289589 +L 7.2349,5.289589,7.2349,5.796623 +L 7.2349,5.796623,6.5905,5.855992 +L 6.5905,5.855992,6.0441,6.271159 +L 6.0441,6.271159,5.13,7.39835 +L 6.3835,7.39835,6.0963,7.813652 +L 6.0963,7.813652,6.0963,8.228858 +L 6.0963,8.228858,6.3835,9.000032 +L 6.8073,7.39835,7.0875,7.39835 +L 7.0875,7.39835,7.3677,7.39835 +L 7.3677,7.39835,7.6622,7.39835 +L 1.3154,7.932307,1.0216,8.302295 +L 1.0216,8.302295,0.7414,8.655481 +L 0.7414,8.655481,0.4612,9.000032 +L 1.7151,7.932307,1.9879,8.302295 +L 1.9879,8.302295,2.2716,8.655481 +L 2.2716,8.655481,2.5662,9.000032 +L 4.275,8.199191,4.1248,8.466162 +L 4.1248,8.466162,3.9812,8.733058 +L 3.9812,8.733058,3.8512,9.000032 + +[裕] 42 +L 1.3139,0.000025,1.2999,2.622913 +L 1.2999,2.622913,1.1914,3.7204 +L 1.1914,3.7204,0.8901,4.233093 +L 0.8901,4.233093,0.7399,4.069272 +L 0.7399,4.069272,0.5963,3.888458 +L 0.5963,3.888458,0.4628,3.699188 +L 4.277,0.000025,4.277,1.066406 +L 4.277,1.066406,4.277,2.124287 +L 4.277,2.124287,4.277,3.165273 +L 4.277,3.165273,5.1355,3.165273 +L 5.1355,3.165273,5.9866,3.165273 +L 5.9866,3.165273,6.8408,3.165273 +L 6.8408,3.165273,6.8408,2.124287 +L 6.8408,2.124287,6.8408,1.066406 +L 6.8408,1.066406,6.8408,0.000025 +L 6.8408,0.000025,5.9866,0.000025 +L 5.9866,0.000025,5.1355,0.000025 +L 5.1355,0.000025,4.277,0.000025 +L 2.5997,3.165273,2.172,3.699188 +L 2.172,3.699188,1.7447,4.233093 +L 1.7447,4.233093,1.3139,4.766908 +L 1.3139,4.766908,1.7447,5.566408 +L 1.7447,5.566408,2.172,6.357448 +L 2.172,6.357448,2.5997,7.13138 +L 2.5997,7.13138,1.8747,7.234474 +L 1.8747,7.234474,1.1672,7.32064 +L 1.1672,7.32064,0.4628,7.39835 +L 3.4543,3.699188,4.0704,4.765568 +L 4.0704,4.765568,4.7047,5.823455 +L 4.7047,5.823455,5.3453,6.864438 +L 5.3453,6.864438,6.1158,5.823455 +L 6.1158,5.823455,6.9004,4.765568 +L 6.9004,4.765568,7.6919,3.699188 +L 3.4543,6.864438,3.7306,7.39835 +L 3.7306,7.39835,4.0007,7.932307 +L 4.0007,7.932307,4.277,8.466162 +L 7.2646,6.864438,6.9704,7.39835 +L 6.9704,7.39835,6.6867,7.932307 +L 6.6867,7.932307,6.4135,8.466162 +L 1.3139,7.932307,1.3139,8.302295 +L 1.3139,8.302295,1.3139,8.655481 +L 1.3139,8.655481,1.3139,9.000032 + +[誘] 71 +L 0.9205,5.300868,1.3478,5.300868 +L 1.3478,5.300868,1.7783,5.300868 +L 1.7783,5.300868,2.2024,5.300868 +L 0.9205,0.000025,0.9205,0.713354 +L 0.9205,0.713354,0.9205,1.409603 +L 0.9205,1.409603,0.9205,2.097454 +L 0.9205,2.097454,1.3478,2.097454 +L 1.3478,2.097454,1.7783,2.097454 +L 1.7783,2.097454,2.2024,2.097454 +L 2.2024,2.097454,2.2024,1.409603 +L 2.2024,1.409603,2.2024,0.713354 +L 2.2024,0.713354,2.2024,0.000025 +L 2.2024,0.000025,1.7783,0.000025 +L 1.7783,0.000025,1.3478,0.000025 +L 1.3478,0.000025,0.9205,0.000025 +L 3.2388,0.000025,4.1007,1.204844 +L 4.1007,1.204844,4.5841,2.240155 +L 4.5841,2.240155,4.7343,3.699188 +L 4.7343,3.699188,4.3039,3.699188 +L 4.3039,3.699188,3.8832,3.699188 +L 3.8832,3.699188,3.4528,3.699188 +L 6.0127,0.000025,6.9798,0.272618 +L 6.9798,0.272618,7.2635,1.0113 +L 7.2635,1.0113,7.2666,2.097454 +L 7.2666,2.097454,6.9689,2.097454 +L 6.9689,2.097454,6.6852,2.097454 +L 6.6852,2.097454,6.4089,2.097454 +L 6.4089,2.097454,6.4089,2.631406 +L 6.4089,2.631406,6.4089,3.165273 +L 6.4089,3.165273,6.4089,3.699188 +L 6.4089,3.699188,5.9851,3.699188 +L 5.9851,3.699188,5.5644,3.699188 +L 5.5644,3.699188,5.1616,3.699188 +L 0.9205,3.699188,1.3478,3.699188 +L 1.3478,3.699188,1.7783,3.699188 +L 1.7783,3.699188,2.2024,3.699188 +L 3.6696,4.766908,4.1564,5.377147 +L 4.1564,5.377147,4.6506,5.987333 +L 4.6506,5.987333,5.1616,6.59747 +L 5.1616,6.59747,4.5841,6.700654 +L 4.5841,6.700654,4.0128,6.786772 +L 4.0128,6.786772,3.4528,6.864438 +L 5.5924,4.766908,5.5924,6.01415 +L 5.5924,6.01415,5.5924,7.244367 +L 5.5924,7.244367,5.5924,8.466162 +L 5.5924,8.466162,4.8639,8.466162 +L 4.8639,8.466162,4.1564,8.466162 +L 4.1564,8.466162,3.4528,8.466162 +L 7.2666,4.766908,6.8393,5.377147 +L 6.8393,5.377147,6.4225,5.987333 +L 6.4225,5.987333,6.0127,6.59747 +L 6.0127,6.59747,6.5665,6.700654 +L 6.5665,6.700654,7.123,6.786772 +L 7.123,6.786772,7.6939,6.864438 +L 0.4929,6.864438,1.1934,6.864438 +L 1.1934,6.864438,1.8942,6.864438 +L 1.8942,6.864438,2.5978,6.864438 +L 0.9205,8.466162,1.3478,8.466162 +L 1.3478,8.466162,1.7783,8.466162 +L 1.7783,8.466162,2.2024,8.466162 +L 6.1984,8.466162,6.5451,8.655481 +L 6.5451,8.655481,6.9024,8.836245 +L 6.9024,8.836245,7.2666,9.000032 +L 0.4929,6.902547,3.0255,6.902547 +L 0.9205,8.504345,2.5978,8.504345 +L 0.9205,5.300991,2.5978,5.300991 +L 0.9205,4.233064,2.5978,4.233064 +L 0.9205,2.669558,2.5978,2.669558 +L 0.9205,0.000025,0.9205,2.669558 +L 2.5978,0.000025,0.9205,0.000025 +L 2.5978,2.669558,2.5978,0.000025 + +[雄] 42 +L 4.7609,0.000025,4.6842,2.124287 +L 4.6842,2.124287,4.6138,4.231663 +L 4.6138,4.231663,4.5511,6.330574 +L 4.5511,6.330574,4.3409,6.166706 +L 4.3409,6.166706,4.1269,5.985922 +L 4.1269,5.985922,3.9098,5.796623 +L 5.1636,0.000025,5.5874,0.000025 +L 5.5874,0.000025,6.0147,0.000025 +L 6.0147,0.000025,6.442,0.000025 +L 6.442,0.000025,6.414,1.648325 +L 6.414,1.648325,6.1026,2.432204 +L 6.1026,2.432204,5.1636,2.631406 +L 6.8732,0.000025,7.146,0.000025 +L 7.146,0.000025,7.4262,0.000025 +L 7.4262,0.000025,7.7243,0.000025 +L 0.5264,0.800811,1.3113,3.135655 +L 1.3113,3.135655,1.7106,5.673778 +L 1.7106,5.673778,0.5264,6.864438 +L 1.7771,0.800811,2.3795,2.524037 +L 2.3795,2.524037,2.6002,3.552258 +L 2.6002,3.552258,2.6314,4.766908 +L 2.4181,0.533893,2.7613,1.066406 +L 2.7613,1.066406,3.1182,1.590464 +L 3.1182,1.590464,3.4825,2.097454 +L 6.8732,2.631406,6.3443,3.744313 +L 6.3443,3.744313,6.1163,4.493006 +L 6.1163,4.493006,5.1636,4.766908 +L 6.8732,4.766908,6.1622,6.024042 +L 6.1622,6.024042,5.8995,6.662454 +L 5.8995,6.662454,4.7609,7.13138 +L 4.7609,7.13138,4.8908,7.768431 +L 4.8908,7.768431,5.0169,8.388406 +L 5.0169,8.388406,5.1636,9.000032 +L 2.2009,6.864438,1.9029,7.299466 +L 1.9029,7.299466,1.7911,7.853115 +L 1.7911,7.853115,1.7771,9.000032 +L 2.6314,6.864438,2.9049,6.864438 +L 2.9049,6.864438,3.1848,6.864438 +L 3.1848,6.864438,3.4825,6.864438 +L 6.8732,6.864438,6.6802,7.418083 +L 6.6802,7.418083,6.7783,8.090426 +L 6.7783,8.090426,6.8732,9.000032 + +[融] 60 +L 0.9522,5.796623,0.9522,6.166706 +L 0.9522,6.166706,0.9522,6.519797 +L 0.9522,6.519797,0.9522,6.864438 +L 0.9522,6.864438,1.8033,6.864438 +L 1.8033,6.864438,2.6617,6.864438 +L 2.6617,6.864438,3.5128,6.864438 +L 3.5128,6.864438,3.5128,6.519797 +L 3.5128,6.519797,3.5128,6.166706 +L 3.5128,6.166706,3.5128,5.796623 +L 3.5128,5.796623,2.6617,5.796623 +L 2.6617,5.796623,1.8033,5.796623 +L 1.8033,5.796623,0.9522,5.796623 +L 0.5249,0.000025,0.5249,1.410996 +L 0.5249,1.410996,0.5249,2.82203 +L 0.5249,2.82203,0.5249,4.233093 +L 0.5249,4.233093,1.653,4.233093 +L 1.653,4.233093,2.7808,4.233093 +L 2.7808,4.233093,3.9156,4.233093 +L 3.9156,4.233093,3.9156,2.82203 +L 3.9156,2.82203,3.9156,1.410996 +L 3.9156,1.410996,3.9156,0.000025 +L 3.9156,0.000025,3.6354,0.000025 +L 3.6354,0.000025,3.3619,0.000025 +L 3.3619,0.000025,3.089,0.000025 +L 4.7667,0.000025,5.1905,0.000025 +L 5.1905,0.000025,5.6213,0.000025 +L 5.6213,0.000025,6.0451,0.000025 +L 6.0451,0.000025,6.0451,1.854565 +L 6.0451,1.854565,5.7614,2.861574 +L 5.7614,2.861574,4.7667,3.165273 +L 4.7667,3.165273,4.7667,4.412422 +L 4.7667,4.412422,4.7667,5.642718 +L 4.7667,5.642718,4.7667,6.864438 +L 4.7667,6.864438,5.7505,7.121486 +L 5.7505,7.121486,6.0416,7.853115 +L 6.0416,7.853115,6.0451,9.000032 +L 7.7263,0.267008,7.5368,0.632808 +L 7.5368,0.632808,7.2111,0.701982 +L 7.2111,0.701982,6.4724,0.533893 +L 2.2344,0.533893,2.2344,1.066406 +L 2.2344,1.066406,2.2344,1.590464 +L 2.2344,1.590464,2.2344,2.097454 +L 2.2344,2.097454,1.6177,2.117271 +L 1.6177,2.117271,1.2853,2.255708 +L 1.2853,2.255708,0.9522,2.631406 +L 0.9522,2.631406,1.2257,3.001451 +L 1.2257,3.001451,1.5094,3.354504 +L 1.5094,3.354504,1.8033,3.699188 +L 6.4724,3.165273,5.9712,4.615813 +L 5.9712,4.615813,6.2482,6.151107 +L 6.2482,6.151107,7.3302,6.864438 +L 7.3302,6.864438,7.3302,5.642718 +L 7.3302,5.642718,7.3302,4.412422 +L 7.3302,4.412422,7.3302,3.165273 +L 7.3302,3.165273,7.0328,3.165273 +L 7.0328,3.165273,6.7491,3.165273 +L 6.7491,3.165273,6.4724,3.165273 +L 0.5249,8.466162,1.653,8.466162 +L 1.653,8.466162,2.7808,8.466162 +L 2.7808,8.466162,3.9156,8.466162 + +[与] 21 +L 3.9421,0.000025,4.3726,0.000025 +L 4.3726,0.000025,4.7932,0.000025 +L 4.7932,0.000025,5.2237,0.000025 +L 5.2237,0.000025,5.6198,2.939293 +L 5.6198,2.939293,3.3117,3.403981 +L 3.3117,3.403981,0.5588,3.165273 +L 6.4744,3.165273,6.1728,3.600348 +L 6.1728,3.600348,6.0646,4.153982 +L 6.0646,4.153982,6.0471,5.300868 +L 6.0471,5.300868,4.7652,5.300868 +L 4.7652,5.300868,3.4938,5.300868 +L 3.4938,5.300868,2.2326,5.300868 +L 2.2326,5.300868,2.345,6.598898 +L 2.345,6.598898,2.5513,7.676574 +L 2.5513,7.676574,2.6637,9.000032 +L 6.8982,3.165273,7.1749,3.165273 +L 7.1749,3.165273,7.4586,3.165273 +L 7.4586,3.165273,7.7559,3.165273 +L 3.0837,7.39835,4.215,7.39835 +L 4.215,7.39835,5.3463,7.39835 +L 5.3463,7.39835,6.4744,7.39835 + +[誉] 42 +L 3.1207,5.796623,4.6127,5.816404 +L 4.6127,5.816404,5.2716,5.954786 +L 5.2716,5.954786,5.653,6.330574 +L 5.653,6.330574,5.2887,6.903996 +L 5.2887,6.903996,4.7423,7.180812 +L 4.7423,7.180812,3.541,7.39835 +L 2.263,0.000025,2.263,0.532484 +L 2.263,0.532484,2.263,1.05652 +L 2.263,1.05652,2.263,1.563593 +L 2.263,1.563593,3.5235,1.563593 +L 3.5235,1.563593,4.7949,1.563593 +L 4.7949,1.563593,6.0768,1.563593 +L 6.0768,1.563593,6.0768,1.05652 +L 6.0768,1.05652,6.0768,0.532484 +L 6.0768,0.532484,6.0768,0.000025 +L 6.0768,0.000025,4.7949,0.000025 +L 4.7949,0.000025,3.5235,0.000025 +L 3.5235,0.000025,2.263,0.000025 +L 2.6899,2.631406,3.6706,2.631406 +L 3.6706,2.631406,4.6516,2.631406 +L 4.6516,2.631406,5.653,2.631406 +L 2.6899,3.699188,3.6706,3.699188 +L 3.6706,3.699188,4.6516,3.699188 +L 4.6516,3.699188,5.653,3.699188 +L 0.7671,4.233093,1.5411,5.213317 +L 1.5411,5.213317,2.3256,6.176601 +L 2.3256,6.176601,3.1207,7.13138 +L 3.1207,7.13138,2.263,7.234474 +L 2.263,7.234474,1.4185,7.32064 +L 1.4185,7.32064,0.5849,7.39835 +L 7.3625,4.233093,7.0645,4.603177 +L 7.0645,4.603177,6.7808,4.956271 +L 6.7808,4.956271,6.5041,5.300868 +L 6.5041,5.300868,6.0631,4.92517 +L 6.0631,4.92517,4.963,4.786732 +L 4.963,4.786732,2.263,4.766908 +L 5.8635,7.39835,6.0768,7.932307 +L 6.0768,7.932307,6.2908,8.466162 +L 6.2908,8.466162,6.5041,9.000032 +L 6.5041,7.39835,6.9317,7.39835 +L 6.9317,7.39835,7.3625,7.39835 +L 7.3625,7.39835,7.7863,7.39835 + +[庸] 51 +L 6.9614,5.796623,6.3103,6.459024 +L 6.3103,6.459024,5.4767,7.002922 +L 5.4767,7.002922,4.8249,7.665236 +L 4.8249,7.665236,5.8059,7.768431 +L 5.8059,7.768431,6.7863,7.854554 +L 6.7863,7.854554,7.7848,7.932307 +L 0.5838,0.267008,1.2703,2.932272 +L 1.2703,2.932272,1.4489,5.343253 +L 1.4489,5.343253,1.4415,7.932307 +L 1.4415,7.932307,2.4191,7.932307 +L 2.4191,7.932307,3.4029,7.932307 +L 3.4029,7.932307,4.4014,7.932307 +L 4.4014,7.932307,4.4014,8.302295 +L 4.4014,8.302295,4.4014,8.655481 +L 4.4014,8.655481,4.4014,9.000032 +L 2.7203,0.000025,2.7203,1.247174 +L 2.7203,1.247174,2.7203,2.477377 +L 2.7203,2.477377,2.7203,3.699188 +L 2.7203,3.699188,3.9181,3.718999 +L 3.9181,3.718999,4.4645,3.857344 +L 4.4645,3.857344,4.8249,4.233093 +L 4.8249,4.233093,4.482,4.6088 +L 4.482,4.6088,4.0372,4.747182 +L 4.0372,4.747182,3.1157,4.766908 +L 4.8249,0.000025,4.5972,1.286765 +L 4.5972,1.286765,3.9812,1.598927 +L 3.9812,1.598927,3.1157,1.563593 +L 6.1103,0.000025,6.3835,0.000025 +L 6.3835,0.000025,6.6637,0.000025 +L 6.6637,0.000025,6.9614,0.000025 +L 6.9614,0.000025,6.9614,0.532484 +L 6.9614,0.532484,6.9614,1.05652 +L 6.9614,1.05652,6.9614,1.563593 +L 6.9614,1.563593,5.4098,1.840366 +L 5.4098,1.840366,4.3454,2.354586 +L 4.3454,2.354586,3.1157,2.631406 +L 6.9614,2.364388,5.746,2.572034 +L 5.746,2.572034,5.1892,2.779691 +L 5.1892,2.779691,4.8249,3.165273 +L 4.8249,3.165273,5.1892,3.521152 +L 5.1892,3.521152,5.746,3.521152 +L 5.746,3.521152,6.9614,3.165273 +L 5.2525,4.766908,4.1423,5.728845 +L 4.1423,5.728845,3.1157,5.87716 +L 3.1157,5.87716,1.8688,5.796623 +L 5.6798,4.766908,5.9562,4.870075 +L 5.9562,4.870075,6.2399,4.956271 +L 6.2399,4.956271,6.5344,5.033943 +L 6.5344,5.033943,5.5187,6.118656 +L 5.5187,6.118656,4.254,6.694996 +L 4.254,6.694996,3.1157,6.864438 + +[揚] 54 +L 5.8321,4.766908,6.8233,4.766908 +L 6.8233,4.766908,7.818,4.766908 +L 1.0446,0.000025,1.3174,0.000025 +L 1.3174,0.000025,1.5945,0.000025 +L 1.5945,0.000025,1.8638,0.000025 +L 1.8638,0.000025,1.8537,2.998611 +L 1.8537,2.998611,1.7521,4.234486 +L 1.7521,4.234486,1.4719,4.766908 +L 1.4719,4.766908,1.1773,4.603177 +L 1.1773,4.603177,0.8901,4.422401 +L 0.8901,4.422401,0.6173,4.233093 +L 3.7867,0.000025,4.5537,0.713354 +L 4.5537,0.713354,5.3242,1.409603 +L 5.3242,1.409603,6.1091,2.097454 +L 6.1091,2.097454,6.1091,2.467538 +L 6.1091,2.467538,6.1091,2.820628 +L 6.1091,2.820628,6.1091,3.165273 +L 6.1091,3.165273,5.1495,2.908234 +L 5.1495,2.908234,4.2735,2.354586 +L 4.2735,2.354586,2.7223,1.029642 +L 5.6783,0.000025,7.0054,0.498561 +L 7.0054,0.498561,7.3872,1.700629 +L 7.3872,1.700629,7.3907,3.165273 +L 7.3907,3.165273,7.0933,3.165273 +L 7.0933,3.165273,6.8131,3.165273 +L 6.8131,3.165273,6.5361,3.165273 +L 2.9356,2.631406,3.6995,3.234539 +L 3.6995,3.234539,4.0914,3.718999 +L 4.0914,3.718999,4.4311,4.500019 +L 4.4311,4.500019,2.6207,4.960496 +L 2.6207,4.960496,2.1829,5.539576 +L 2.1829,5.539576,1.4719,6.864438 +L 1.4719,6.864438,1.1773,6.864438 +L 1.1773,6.864438,0.8901,6.864438 +L 0.8901,6.864438,0.6173,6.864438 +L 4.8584,4.766908,5.8321,4.766908 +L 4.0042,6.330574,4.0042,7.053654 +L 4.0042,7.053654,4.0042,7.768431 +L 4.0042,7.768431,4.0042,8.466162 +L 4.0042,8.466162,4.981,8.466162 +L 4.981,8.466162,5.9655,8.466162 +L 5.9655,8.466162,6.9634,8.466162 +L 6.9634,8.466162,6.9634,7.768431 +L 6.9634,7.768431,6.9634,7.053654 +L 6.9634,7.053654,6.9634,6.330574 +L 6.9634,6.330574,5.9655,6.330574 +L 5.9655,6.330574,4.981,6.330574 +L 4.981,6.330574,4.0042,6.330574 +L 2.2946,6.864438,1.9938,7.299466 +L 1.9938,7.299466,1.8813,7.853115 +L 1.8813,7.853115,1.8638,9.000032 +L 4.4311,7.39835,5.132,7.39835 +L 5.132,7.39835,5.8321,7.39835 +L 5.8321,7.39835,6.5361,7.39835 + +[揺] 51 +L 6.3528,4.766908,6.6961,5.644073 +L 6.6961,5.644073,7.0568,6.521187 +L 7.0568,6.521187,7.4211,7.39835 +L 4.4331,6.06354,4.2864,6.330574 +L 4.2864,6.330574,4.1564,6.59747 +L 4.1564,6.59747,4.0303,6.864438 +L 5.7115,6.06354,5.5613,6.330574 +L 5.5613,6.330574,5.4177,6.59747 +L 5.4177,6.59747,5.2842,6.864438 +L 1.0431,0.000025,1.3194,0.000025 +L 1.3194,0.000025,1.6031,0.000025 +L 1.6031,0.000025,1.9008,0.000025 +L 1.9008,0.000025,1.8833,2.622913 +L 1.8833,2.622913,1.7751,3.7204 +L 1.7751,3.7204,1.4704,4.233093 +L 1.4704,4.233093,1.1723,4.069272 +L 1.1723,4.069272,0.8921,3.888458 +L 0.8921,3.888458,0.6158,3.699188 +L 4.0303,0.000025,4.0303,0.713354 +L 4.0303,0.713354,4.0303,1.409603 +L 4.0303,1.409603,4.0303,2.097454 +L 4.4331,0.000025,4.8569,0.000025 +L 4.8569,0.000025,5.2842,0.000025 +L 5.2842,0.000025,5.7115,0.000025 +L 5.7115,0.000025,5.6345,2.312207 +L 5.6345,2.312207,5.0846,3.090444 +L 5.0846,3.090444,3.61,3.165273 +L 6.1427,0.000025,6.5661,0.000025 +L 6.5661,0.000025,6.9938,0.000025 +L 6.9938,0.000025,7.4211,0.000025 +L 7.4211,0.000025,7.4211,0.713354 +L 7.4211,0.713354,7.4211,1.409603 +L 7.4211,1.409603,7.4211,2.097454 +L 6.1427,3.165273,5.838,3.580571 +L 5.838,3.580571,5.7259,3.995827 +L 5.7259,3.995827,5.7115,4.766908 +L 5.7115,4.766908,5.1406,4.766908 +L 5.1406,4.766908,4.5841,4.766908 +L 4.5841,4.766908,4.0303,4.766908 +L 6.5661,3.165273,6.9938,3.165273 +L 6.9938,3.165273,7.4211,3.165273 +L 7.4211,3.165273,7.8484,3.165273 +L 2.3215,4.233093,1.7888,5.508517 +L 1.7888,5.508517,1.5821,6.478851 +L 1.5821,6.478851,0.6158,6.864438 +L 2.3215,6.864438,2.0269,7.299466 +L 2.0269,7.299466,1.9152,7.853115 +L 1.9152,7.853115,1.9008,9.000032 +L 4.0303,7.932307,5.6558,8.070654 +L 5.6558,8.070654,6.633,8.327649 +L 6.633,8.327649,7.4211,8.466162 + +[擁] 78 +L 1.5001,4.766908,1.5001,5.299475 +L 1.5001,5.299475,1.5001,5.823455 +L 1.5001,5.823455,1.5001,6.330574 +L 1.5001,6.330574,1.2097,6.519797 +L 1.2097,6.519797,0.9225,6.700654 +L 0.9225,6.700654,0.649,6.864438 +L 6.9958,5.300868,6.8028,5.827721 +L 6.8028,5.827721,6.8977,6.490078 +L 6.8977,6.490078,6.9958,7.39835 +L 6.9958,7.39835,6.7156,7.39835 +L 6.7156,7.39835,6.442,7.39835 +L 6.442,7.39835,6.1692,7.39835 +L 0.649,0.000025,0.9225,0.000025 +L 0.9225,0.000025,1.2097,0.000025 +L 1.2097,0.000025,1.5001,0.000025 +L 1.5001,0.000025,1.5001,1.410996 +L 1.5001,1.410996,1.5001,2.82203 +L 1.5001,2.82203,1.5001,4.233093 +L 1.5001,4.233093,1.2097,4.233093 +L 1.2097,4.233093,0.9225,4.233093 +L 0.9225,4.233093,0.649,4.233093 +L 3.1812,0.000025,3.7805,0.76414 +L 3.7805,0.76414,4.0012,1.307939 +L 4.0012,1.307939,4.0323,2.097454 +L 4.0323,2.097454,3.4649,2.097454 +L 3.4649,2.097454,2.9084,2.097454 +L 2.9084,2.097454,2.3585,2.097454 +L 5.3146,0.000025,5.234,1.600312 +L 5.234,1.600312,5.1636,3.192107 +L 5.1636,3.192107,5.1041,4.766908 +L 5.1041,4.766908,4.8908,4.956271 +L 4.8908,4.956271,4.6768,5.137046 +L 4.6768,5.137046,4.4596,5.300868 +L 4.4596,5.300868,4.0323,4.422401 +L 4.0323,4.422401,3.605,3.53532 +L 3.605,3.53532,3.1812,2.631406 +L 5.7419,0.000025,6.0147,0.000025 +L 6.0147,0.000025,6.2949,0.000025 +L 6.2949,0.000025,6.5646,0.000025 +L 6.5646,0.000025,6.5646,0.532484 +L 6.5646,0.532484,6.5646,1.05652 +L 6.5646,1.05652,6.5646,1.563593 +L 6.5646,1.563593,6.2949,1.752808 +L 6.2949,1.752808,6.0147,1.933676 +L 6.0147,1.933676,5.7419,2.097454 +L 6.9958,0.000025,7.2686,0.000025 +L 7.2686,0.000025,7.5558,0.000025 +L 7.5558,0.000025,7.8469,0.000025 +L 4.4596,2.097454,4.4596,2.467538 +L 4.4596,2.467538,4.4596,2.820628 +L 4.4596,2.820628,4.4596,3.165273 +L 6.9958,2.097454,6.5646,2.631406 +L 6.5646,2.631406,6.1447,3.165273 +L 6.1447,3.165273,5.7419,3.699188 +L 6.9958,3.699188,6.379,4.836219 +L 6.379,4.836219,5.9485,5.320648 +L 5.9485,5.320648,5.3146,5.567801 +L 5.3146,5.567801,5.4438,6.177987 +L 5.4438,6.177987,5.5909,6.788126 +L 5.5909,6.788126,5.7419,7.39835 +L 5.7419,7.39835,5.02,7.32064 +L 5.02,7.32064,4.309,7.234474 +L 4.309,7.234474,3.605,7.13138 +L 3.605,7.13138,3.3112,6.521187 +L 3.3112,6.521187,3.0275,5.911052 +L 3.0275,5.911052,2.7504,5.300868 +L 2.7504,5.300868,2.8839,5.137046 +L 2.8839,5.137046,3.0275,4.956271 +L 3.0275,4.956271,3.1812,4.766908 +L 1.9274,6.864438,1.63,7.299466 +L 1.63,7.299466,1.5176,7.853115 +L 1.5176,7.853115,1.5001,9.000032 +L 2.3585,6.864438,2.6314,7.053654 +L 2.6314,7.053654,2.9049,7.234474 +L 2.9049,7.234474,3.1812,7.39835 +L 5.3146,7.932307,5.3146,8.302295 +L 5.3146,8.302295,5.3146,8.655481 +L 5.3146,8.655481,5.3146,9.000032 + +[溶] 51 +L 1.5021,5.796623,1.2292,6.166706 +L 1.2292,6.166706,0.9522,6.519797 +L 0.9522,6.519797,0.6793,6.864438 +L 3.4249,5.796623,3.7682,6.166706 +L 3.7682,6.166706,4.1258,6.519797 +L 4.1258,6.519797,4.49,6.864438 +L 7.0219,5.796623,6.7242,6.166706 +L 6.7242,6.166706,6.444,6.519797 +L 6.444,6.519797,6.1712,6.864438 +L 0.6793,0.267008,1.0821,1.410996 +L 1.0821,1.410996,1.5021,2.555096 +L 1.5021,2.555096,1.9332,3.699188 +L 4.0627,0.000025,4.0483,2.247209 +L 4.0483,2.247209,3.9366,3.206213 +L 3.9366,3.206213,3.6389,3.699188 +L 3.6389,3.699188,3.3409,3.53532 +L 3.3409,3.53532,3.0607,3.354504 +L 3.0607,3.354504,2.7843,3.165273 +L 4.49,0.000025,5.194,0.000025 +L 5.194,0.000025,5.8941,0.000025 +L 5.8941,0.000025,6.5981,0.000025 +L 6.5981,0.000025,6.5981,1.066406 +L 6.5981,1.066406,6.5981,2.124287 +L 6.5981,2.124287,6.5981,3.165273 +L 6.5981,3.165273,5.8941,3.165273 +L 5.8941,3.165273,5.194,3.165273 +L 5.194,3.165273,4.49,3.165273 +L 7.4527,3.165273,6.7242,4.04244 +L 6.7242,4.04244,6.0167,4.919503 +L 6.0167,4.919503,5.3166,5.796623 +L 5.3166,5.796623,4.8893,5.289589 +L 4.8893,5.289589,4.469,4.765568 +L 4.469,4.765568,4.0627,4.233093 +L 2.7843,6.864438,2.7843,7.234474 +L 2.7843,7.234474,2.7843,7.587563 +L 2.7843,7.587563,2.7843,7.932307 +L 2.7843,7.932307,3.6144,7.932307 +L 3.6144,7.932307,4.4655,7.932307 +L 4.4655,7.932307,5.3166,7.932307 +L 5.3166,7.932307,5.3166,8.302295 +L 5.3166,8.302295,5.3166,8.655481 +L 5.3166,8.655481,5.3166,9.000032 +L 7.88,6.864438,7.88,7.234474 +L 7.88,7.234474,7.88,7.587563 +L 7.88,7.587563,7.88,7.932307 +L 7.88,7.932307,7.1554,7.932307 +L 7.1554,7.932307,6.444,7.932307 +L 6.444,7.932307,5.7439,7.932307 +L 1.9332,7.932307,1.653,8.302295 +L 1.653,8.302295,1.3795,8.655481 +L 1.3795,8.655481,1.1066,9.000032 + +[窯] 54 +L 4.7057,4.766908,5.175,5.935052 +L 5.175,5.935052,5.1816,6.789604 +L 5.1816,6.789604,4.9225,7.932307 +L 4.9225,7.932307,3.6759,7.694905 +L 3.6759,7.694905,2.7965,7.2797 +L 2.7965,7.2797,1.5324,6.330574 +L 5.3463,4.766908,5.9035,4.766908 +L 5.9035,4.766908,6.4744,4.766908 +L 6.4744,4.766908,7.0558,4.766908 +L 0.6813,0.000025,0.9787,0.413883 +L 0.9787,0.413883,1.0876,0.819246 +L 1.0876,0.819246,1.1016,1.563593 +L 1.1016,1.563593,2.0823,1.563593 +L 2.0823,1.563593,3.0665,1.563593 +L 3.0665,1.563593,4.0647,1.563593 +L 4.0647,1.563593,4.0468,2.334768 +L 4.0468,2.334768,3.9453,2.750062 +L 3.9453,2.750062,3.6686,3.165273 +L 3.6686,3.165273,3.091,3.165273 +L 3.091,3.165273,2.5163,3.165273 +L 2.5163,3.165273,1.9597,3.165273 +L 3.2413,0.267008,3.091,0.532484 +L 3.091,0.532484,2.9474,0.789579 +L 2.9474,0.789579,2.814,1.029642 +L 5.3463,0.267008,5.0524,0.713354 +L 5.0524,0.713354,4.7652,1.14267 +L 4.7652,1.14267,4.4917,1.563593 +L 7.4796,0.000025,6.8351,0.922349 +L 6.8351,0.922349,6.2814,1.327665 +L 6.2814,1.327665,5.3463,1.563593 +L 4.4917,3.165273,4.1904,3.580571 +L 4.1904,3.580571,4.0822,3.995827 +L 4.0822,3.995827,4.0647,4.766908 +L 4.0647,4.766908,3.0665,4.766908 +L 3.0665,4.766908,2.0823,4.766908 +L 2.0823,4.766908,1.1016,4.766908 +L 4.9225,3.165273,5.3463,3.165273 +L 5.3463,3.165273,5.7736,3.165273 +L 5.7736,3.165273,6.2009,3.165273 +L 5.7736,6.330574,6.0502,6.330574 +L 6.0502,6.330574,6.3308,6.330574 +L 6.3308,6.330574,6.6285,6.330574 +L 0.6813,6.864438,0.6813,7.234474 +L 0.6813,7.234474,0.6813,7.587563 +L 0.6813,7.587563,0.6813,7.932307 +L 0.6813,7.932307,1.3815,7.932307 +L 1.3815,7.932307,2.0925,7.932307 +L 2.0925,7.932307,2.814,7.932307 +L 7.4796,6.864438,7.4796,7.234474 +L 7.4796,7.234474,7.4796,7.587563 +L 7.4796,7.587563,7.4796,7.932307 +L 7.4796,7.932307,6.7612,7.932307 +L 6.7612,7.932307,6.0502,7.932307 +L 6.0502,7.932307,5.3463,7.932307 + +[謡] 44 +L 6.4134,5.796623,6.7566,6.519797 +L 6.7566,6.519797,7.1208,7.234474 +L 7.1208,7.234474,7.4851,7.932307 +L 4.0944,0.000025,4.0944,0.713354 +L 4.0944,0.713354,4.0944,1.409603 +L 4.0944,1.409603,4.0944,2.097454 +L 4.5217,0.000025,4.9493,0.000025 +L 4.9493,0.000025,5.3801,0.000025 +L 5.3801,0.000025,5.8039,0.000025 +L 5.8039,0.000025,5.751,2.637034 +L 5.751,2.637034,5.2222,3.579137 +L 5.2222,3.579137,3.6706,3.699188 +L 6.1958,0.000025,6.6266,0.000025 +L 6.6266,0.000025,7.0543,0.000025 +L 7.0543,0.000025,7.4851,0.000025 +L 7.4851,0.000025,7.4851,0.713354 +L 7.4851,0.713354,7.4851,1.409603 +L 7.4851,1.409603,7.4851,2.097454 +L 6.1958,3.699188,5.9195,4.132776 +L 5.9195,4.132776,5.8179,4.676578 +L 5.8179,4.676578,5.8039,5.796623 +L 5.8039,5.796623,5.2222,5.796623 +L 5.2222,5.796623,4.6548,5.796623 +L 4.6548,5.796623,4.0944,5.796623 +L 6.6266,3.699188,7.0543,3.699188 +L 7.0543,3.699188,7.4851,3.699188 +L 7.4851,3.699188,7.9054,3.699188 +L 4.5217,7.13138,4.3711,7.501408 +L 4.3711,7.501408,4.2243,7.854554 +L 4.2243,7.854554,4.0944,8.199191 +L 4.0944,8.199191,5.7199,8.525497 +L 5.7199,8.525497,6.69,8.851713 +L 6.69,8.851713,7.4851,9.000032 +L 5.8039,7.13138,5.6495,7.39835 +L 5.6495,7.39835,5.5094,7.665236 +L 5.5094,7.665236,5.3801,7.932307 +L 0.7075,6.902547,3.2398,6.902547 +L 1.1383,8.504345,2.8125,8.504345 +L 1.1383,5.300991,2.8125,5.300991 +L 1.1383,4.233064,2.8125,4.233064 +L 1.1383,2.669558,2.8125,2.669558 +L 1.1383,0.000025,1.1383,2.669558 +L 2.8125,0.000025,1.1383,0.000025 +L 2.8125,2.669558,2.8125,0.000025 + +[踊] 69 +L 1.1333,0.000025,1.1333,1.600312 +L 1.1333,1.600312,1.1333,3.192107 +L 1.1333,3.192107,1.1333,4.766908 +L 1.7781,0.000025,1.8408,1.943464 +L 1.8408,1.943464,1.9073,3.878563 +L 1.9073,3.878563,1.9879,5.796623 +L 1.9879,5.796623,1.694,5.796623 +L 1.694,5.796623,1.4138,5.796623 +L 1.4138,5.796623,1.1333,5.796623 +L 1.1333,5.796623,1.1333,6.700654 +L 1.1333,6.700654,1.1333,7.587563 +L 1.1333,7.587563,1.1333,8.466162 +L 1.1333,8.466162,1.694,8.466162 +L 1.694,8.466162,2.2649,8.466162 +L 2.2649,8.466162,2.8428,8.466162 +L 2.8428,8.466162,2.6919,7.587563 +L 2.6919,7.587563,2.5483,6.700654 +L 2.5483,6.700654,2.4191,5.796623 +L 4.1279,0.000025,4.1279,1.943464 +L 4.1279,1.943464,4.1279,3.878563 +L 4.1279,3.878563,4.1279,5.796623 +L 4.1279,5.796623,5.0245,5.816404 +L 5.0245,5.816404,5.4592,5.954786 +L 5.4592,5.954786,5.8024,6.330574 +L 5.8024,6.330574,5.3786,6.700654 +L 5.3786,6.700654,4.958,7.053654 +L 4.958,7.053654,4.5552,7.39835 +L 5.8024,0.000025,5.7814,1.631363 +L 5.7814,1.631363,5.4767,2.423804 +L 5.4767,2.423804,4.5552,2.631406 +L 6.6602,0.000025,6.9337,0.000025 +L 6.9337,0.000025,7.2136,0.000025 +L 7.2136,0.000025,7.5113,0.000025 +L 7.5113,0.000025,7.5113,0.877137 +L 7.5113,0.877137,7.5113,1.754247 +L 7.5113,1.754247,7.5113,2.631406 +L 7.5113,2.631406,7.084,2.631406 +L 7.084,2.631406,6.6602,2.631406 +L 6.6602,2.631406,6.2329,2.631406 +L 6.2329,2.631406,5.9352,3.165273 +L 5.9352,3.165273,5.655,3.699188 +L 5.655,3.699188,5.3786,4.233093 +L 5.3786,4.233093,5.1016,4.233093 +L 5.1016,4.233093,4.8287,4.233093 +L 4.8287,4.233093,4.5552,4.233093 +L 2.6324,0.533893,2.8428,0.713354 +L 2.8428,0.713354,3.0561,0.875736 +L 3.0561,0.875736,3.2701,1.029642 +L 7.5113,3.165273,7.5113,3.53532 +L 7.5113,3.53532,7.5113,3.888458 +L 7.5113,3.888458,7.5113,4.233093 +L 7.5113,4.233093,6.5971,4.262761 +L 6.5971,4.262761,6.1523,4.470316 +L 6.1523,4.470316,5.8024,5.033943 +L 5.8024,5.033943,6.1523,5.570628 +L 6.1523,5.570628,6.5971,5.768395 +L 6.5971,5.768395,7.5113,5.796623 +L 7.5113,5.796623,7.5113,5.45341 +L 7.5113,5.45341,7.5113,5.110168 +L 7.5113,5.110168,7.5113,4.766908 +L 2.4191,3.699188,2.6919,3.699188 +L 2.6919,3.699188,2.9791,3.699188 +L 2.9791,3.699188,3.2701,3.699188 +L 6.2329,6.864438,6.5064,7.32064 +L 6.5064,7.32064,6.7936,7.768431 +L 6.7936,7.768431,7.084,8.199191 +L 7.084,8.199191,6.0896,8.302295 +L 6.0896,8.302295,5.1016,8.388406 +L 5.1016,8.388406,4.1279,8.466162 + +[抑] 42 +L 0.7399,0.000025,1.0162,0.000025 +L 1.0162,0.000025,1.2964,0.000025 +L 1.2964,0.000025,1.5945,0.000025 +L 1.5945,0.000025,1.5945,1.247174 +L 1.5945,1.247174,1.5945,2.477377 +L 1.5945,2.477377,1.5945,3.699188 +L 1.5945,3.699188,1.2964,3.699188 +L 1.2964,3.699188,1.0162,3.699188 +L 1.0162,3.699188,0.7399,3.699188 +L 5.4083,0.000025,5.4083,2.477377 +L 5.4083,2.477377,5.4083,4.946384 +L 5.4083,4.946384,5.4083,7.39835 +L 5.4083,7.39835,6.1123,7.39835 +L 6.1123,7.39835,6.8131,7.39835 +L 6.8131,7.39835,7.5133,7.39835 +L 7.5133,7.39835,7.5133,5.45341 +L 7.5133,5.45341,7.5133,3.508485 +L 7.5133,3.508485,7.5133,1.563593 +L 7.5133,1.563593,7.2369,1.563593 +L 7.2369,1.563593,6.9634,1.563593 +L 6.9634,1.563593,6.6905,1.563593 +L 2.4487,1.563593,2.7223,1.563593 +L 2.7223,1.563593,2.9986,1.563593 +L 2.9986,1.563593,3.2721,1.563593 +L 3.2721,1.563593,3.2721,3.697746 +L 3.2721,3.697746,3.2721,5.823455 +L 3.2721,5.823455,3.2721,7.932307 +L 3.2721,7.932307,3.8322,8.121526 +L 3.8322,8.121526,4.4034,8.302295 +L 4.4034,8.302295,4.981,8.466162 +L 3.9127,2.097454,4.1267,2.286768 +L 4.1267,2.286768,4.3365,2.467538 +L 4.3365,2.467538,4.5537,2.631406 +L 1.5945,4.233093,1.5945,4.946384 +L 1.5945,4.946384,1.5945,5.642718 +L 1.5945,5.642718,1.5945,6.330574 +L 1.5945,6.330574,1.2964,6.519797 +L 1.2964,6.519797,1.0162,6.700654 +L 1.0162,6.700654,0.7399,6.864438 +L 2.0218,6.864438,1.7171,7.299466 +L 1.7171,7.299466,1.612,7.853115 +L 1.612,7.853115,1.5945,9.000032 + +[翼] 69 +L 5.0114,4.766908,5.4176,4.766908 +L 5.4176,4.766908,5.8341,4.766908 +L 5.8341,4.766908,6.2652,4.766908 +L 0.7695,0.000025,1.3194,0.189279 +L 1.3194,0.189279,1.8802,0.370104 +L 1.8802,0.370104,2.4507,0.533893 +L 6.6925,0.000025,6.3913,0.189279 +L 6.3913,0.189279,6.1111,0.370104 +L 6.1111,0.370104,5.8341,0.533893 +L 0.7695,1.563593,1.4704,1.666658 +L 1.4704,1.666658,2.1744,1.752808 +L 2.1744,1.752808,2.8745,1.830535 +L 2.8745,1.830535,2.5456,2.394098 +L 2.5456,2.394098,2.2199,2.601739 +L 2.2199,2.601739,1.628,2.631406 +L 3.3018,1.563593,4.0093,1.666658 +L 4.0093,1.666658,4.7168,1.752808 +L 4.7168,1.752808,5.4387,1.830535 +L 5.4387,1.830535,5.2877,2.097454 +L 5.2877,2.097454,5.1406,2.364388 +L 5.1406,2.364388,5.0114,2.631406 +L 5.0114,2.631406,3.5999,2.840409 +L 3.5999,2.840409,2.7309,3.286717 +L 2.7309,3.286717,1.628,3.699188 +L 1.628,3.699188,1.628,4.412422 +L 1.628,4.412422,1.628,5.108767 +L 1.628,5.108767,1.628,5.796623 +L 1.628,5.796623,3.3018,5.796623 +L 3.3018,5.796623,4.9904,5.796623 +L 4.9904,5.796623,6.6925,5.796623 +L 6.6925,5.796623,6.6925,5.108767 +L 6.6925,5.108767,6.6925,4.412422 +L 6.6925,4.412422,6.6925,3.699188 +L 6.6925,3.699188,6.2652,3.621516 +L 6.2652,3.621516,5.8449,3.53532 +L 5.8449,3.53532,5.4387,3.4322 +L 5.4387,3.4322,5.7469,2.868626 +L 5.7469,2.868626,6.0723,2.661026 +L 6.0723,2.661026,6.6925,2.631406 +L 5.8341,1.563593,6.3913,1.563593 +L 6.3913,1.563593,6.9654,1.563593 +L 6.9654,1.563593,7.5436,1.563593 +L 3.3018,3.699188,3.5789,3.802284 +L 3.5789,3.802284,3.8591,3.888458 +L 3.8591,3.888458,4.1603,3.96616 +L 4.1603,3.96616,4.0093,4.233093 +L 4.0093,4.233093,3.8591,4.500019 +L 3.8591,4.500019,3.7291,4.766908 +L 3.7291,4.766908,3.1516,4.766908 +L 3.1516,4.766908,2.5807,4.766908 +L 2.5807,4.766908,2.0203,4.766908 +L 0.7695,6.864438,1.3194,7.053654 +L 1.3194,7.053654,1.8802,7.234474 +L 1.8802,7.234474,2.4507,7.39835 +L 3.3018,6.864438,3.3018,7.39835 +L 3.3018,7.39835,3.3018,7.932307 +L 3.3018,7.932307,3.3018,8.466162 +L 3.3018,8.466162,2.6017,8.466162 +L 2.6017,8.466162,1.8977,8.466162 +L 1.8977,8.466162,1.1968,8.466162 +L 4.5841,6.864438,5.134,7.053654 +L 5.134,7.053654,5.6905,7.234474 +L 5.6905,7.234474,6.2652,7.39835 +L 7.1163,6.864438,7.1163,7.39835 +L 7.1163,7.39835,7.1163,7.932307 +L 7.1163,7.932307,7.1163,8.466162 +L 7.1163,8.466162,6.4155,8.466162 +L 6.4155,8.466162,5.7115,8.466162 +L 5.7115,8.466162,5.0114,8.466162 + +[羅] 81 +L 6.7222,4.766908,6.5299,5.310754 +L 6.5299,5.310754,6.6241,5.964672 +L 6.6241,5.964672,6.7222,6.864438 +L 6.7222,6.864438,6.2918,6.864438 +L 6.2918,6.864438,5.8645,6.864438 +L 5.8645,6.864438,5.4407,6.864438 +L 5.4407,6.864438,5.4407,7.39835 +L 5.4407,7.39835,5.4407,7.932307 +L 5.4407,7.932307,5.4407,8.466162 +L 5.4407,8.466162,4.7363,8.466162 +L 4.7363,8.466162,4.0358,8.466162 +L 4.0358,8.466162,3.3357,8.466162 +L 3.3357,8.466162,3.3357,8.121526 +L 3.3357,8.121526,3.3357,7.768431 +L 3.3357,7.768431,3.3357,7.39835 +L 7.1495,4.766908,7.4231,4.766908 +L 7.4231,4.766908,7.7032,4.766908 +L 7.7032,4.766908,8.0006,4.766908 +L 2.0499,0.000025,2.0499,1.066406 +L 2.0499,1.066406,2.0499,2.124287 +L 2.0499,2.124287,2.0499,3.165273 +L 2.0499,3.165273,1.6261,3.165273 +L 1.6261,3.165273,1.1988,3.165273 +L 1.1988,3.165273,0.768,3.165273 +L 4.5822,0.000025,4.5686,2.998611 +L 4.5686,2.998611,4.467,4.234486 +L 4.467,4.234486,4.1868,4.766908 +L 4.1868,4.766908,3.6085,4.233093 +L 3.6085,4.233093,3.0376,3.699188 +L 3.0376,3.699188,2.4772,3.165273 +L 5.0134,0.000025,5.4407,0.000025 +L 5.4407,0.000025,5.8645,0.000025 +L 5.8645,0.000025,6.2918,0.000025 +L 6.2918,0.000025,6.1408,1.151084 +L 6.1408,1.151084,5.71,1.531048 +L 5.71,1.531048,5.0134,1.563593 +L 6.7222,0.000025,7.1495,0.000025 +L 7.1495,0.000025,7.5733,0.000025 +L 7.5733,0.000025,8.0006,0.000025 +L 0.768,0.800811,0.9015,1.247174 +L 0.9015,1.247174,1.0486,1.676536 +L 1.0486,1.676536,1.1988,2.097454 +L 3.3357,0.800811,3.1812,1.247174 +L 3.1812,1.247174,3.0376,1.676536 +L 3.0376,1.676536,2.9084,2.097454 +L 6.7222,1.563593,6.4245,2.097454 +L 6.4245,2.097454,6.1408,2.631406 +L 6.1408,2.631406,5.8645,3.165273 +L 5.8645,3.165273,5.5734,3.165273 +L 5.5734,3.165273,5.2862,3.165273 +L 5.2862,3.165273,5.0134,3.165273 +L 6.7222,3.165273,5.8886,4.371523 +L 5.8886,4.371523,5.234,4.781074 +L 5.234,4.781074,4.5822,5.300868 +L 4.5822,5.300868,4.8873,5.689339 +L 4.8873,5.689339,4.9959,6.094647 +L 4.9959,6.094647,5.0134,6.864438 +L 5.0134,6.864438,4.0148,6.786772 +L 4.0148,6.786772,3.031,6.700654 +L 3.031,6.700654,2.0499,6.59747 +L 2.0499,6.59747,1.7592,5.987333 +L 1.7592,5.987333,1.4724,5.377147 +L 1.4724,5.377147,1.1988,4.766908 +L 1.1988,4.766908,1.4128,4.603177 +L 1.4128,4.603177,1.6261,4.422401 +L 1.6261,4.422401,1.8366,4.233093 +L 1.8366,4.233093,2.1834,4.765568 +L 2.1834,4.765568,2.5441,5.289589 +L 2.5441,5.289589,2.9084,5.796623 +L 1.1988,6.864438,1.1988,7.39835 +L 1.1988,7.39835,1.1988,7.932307 +L 1.1988,7.932307,1.1988,8.466162 +L 1.1988,8.466162,1.7592,8.466162 +L 1.7592,8.466162,2.3266,8.466162 +L 2.3266,8.466162,2.9084,8.466162 +L 7.3635,6.864438,7.4231,7.39835 +L 7.4231,7.39835,7.4928,7.932307 +L 7.4928,7.932307,7.5733,8.466162 +L 7.5733,8.466162,6.9923,8.466162 +L 6.9923,8.466162,6.4245,8.466162 +L 6.4245,8.466162,5.8645,8.466162 + +[裸] 54 +L 1.6565,0.000025,1.6422,2.622913 +L 1.6422,2.622913,1.5304,3.7204 +L 1.5304,3.7204,1.2257,4.233093 +L 1.2257,4.233093,1.0783,4.069272 +L 1.0783,4.069272,0.9312,3.888458 +L 0.9312,3.888458,0.8019,3.699188 +L 5.8976,0.000025,5.8136,0.877137 +L 5.8136,0.877137,5.7439,1.754247 +L 5.7439,1.754247,5.6843,2.631406 +L 5.6843,2.631406,5.0395,2.097454 +L 5.0395,2.097454,4.4059,1.563593 +L 4.4059,1.563593,3.7615,1.029642 +L 7.5718,1.029642,6.3498,2.60876 +L 6.3498,2.60876,5.3302,3.035337 +L 5.3302,3.035337,3.7615,3.165273 +L 2.9069,3.165273,2.4831,3.699188 +L 2.4831,3.699188,2.0628,4.233093 +L 2.0628,4.233093,1.6565,4.766908 +L 1.6565,4.766908,2.0628,5.566408 +L 2.0628,5.566408,2.4831,6.357448 +L 2.4831,6.357448,2.9069,7.13138 +L 2.9069,7.13138,2.2029,7.234474 +L 2.2029,7.234474,1.5021,7.32064 +L 1.5021,7.32064,0.8019,7.39835 +L 6.7176,3.165273,7.148,3.165273 +L 7.148,3.165273,7.5718,3.165273 +L 7.5718,3.165273,8.0026,3.165273 +L 5.8976,3.699188,5.6633,5.029715 +L 5.6633,5.029715,5.0504,5.343253 +L 5.0504,5.343253,4.1884,5.300868 +L 4.1884,5.300868,4.1884,6.367296 +L 4.1884,6.367296,4.1884,7.425181 +L 4.1884,7.425181,4.1884,8.466162 +L 4.1884,8.466162,5.3166,8.466162 +L 5.3166,8.466162,6.444,8.466162 +L 6.444,8.466162,7.5718,8.466162 +L 7.5718,8.466162,7.5718,7.425181 +L 7.5718,7.425181,7.5718,6.367296 +L 7.5718,6.367296,7.5718,5.300868 +L 7.5718,5.300868,7.1515,5.300868 +L 7.1515,5.300868,6.7316,5.300868 +L 6.7316,5.300868,6.3214,5.300868 +L 6.3214,5.300868,6.0307,5.83335 +L 6.0307,5.83335,5.7439,6.357448 +L 5.7439,6.357448,5.4703,6.864438 +L 5.4703,6.864438,5.173,6.864438 +L 5.173,6.864438,4.8928,6.864438 +L 4.8928,6.864438,4.6157,6.864438 +L 6.3214,6.864438,6.1712,7.234474 +L 6.1712,7.234474,6.0307,7.587563 +L 6.0307,7.587563,5.8976,7.932307 +L 1.6565,7.932307,1.6565,8.302295 +L 1.6565,8.302295,1.6565,8.655481 +L 1.6565,8.655481,1.6565,9.000032 + +[頼] 72 +L 7.6057,5.796623,7.6057,6.166706 +L 7.6057,6.166706,7.6057,6.519797 +L 7.6057,6.519797,7.6057,6.864438 +L 7.6057,6.864438,7.1784,6.864438 +L 7.1784,6.864438,6.7511,6.864438 +L 6.7511,6.864438,6.3234,6.864438 +L 2.5093,0.000025,2.4953,1.495807 +L 2.4953,1.495807,2.3835,2.178006 +L 2.3835,2.178006,2.0823,2.631406 +L 2.0823,2.631406,1.6582,2.097454 +L 1.6582,2.097454,1.2379,1.563593 +L 1.2379,1.563593,0.8316,1.029642 +L 4.4321,0.000025,4.7687,0.343223 +L 4.7687,0.343223,5.1119,0.686434 +L 5.1119,0.686434,5.4723,1.029642 +L 8.0295,0.000025,7.7349,0.343223 +L 7.7349,0.343223,7.4547,0.686434 +L 7.4547,0.686434,7.1784,1.029642 +L 3.7912,1.563593,3.2101,2.467538 +L 3.2101,2.467538,2.6389,3.354504 +L 2.6389,3.354504,2.0823,4.233093 +L 2.0823,4.233093,1.8088,4.233093 +L 1.8088,4.233093,1.5359,4.233093 +L 1.5359,4.233093,1.2589,4.233093 +L 1.2589,4.233093,1.2589,4.946384 +L 1.2589,4.946384,1.2589,5.642718 +L 1.2589,5.642718,1.2589,6.330574 +L 1.2589,6.330574,1.8547,6.360196 +L 1.8547,6.360196,2.1769,6.567807 +L 2.1769,6.567807,2.5093,7.13138 +L 2.5093,7.13138,2.1594,7.694905 +L 2.1594,7.694905,1.7282,7.902553 +L 1.7282,7.902553,0.8316,7.932307 +L 5.0734,2.097454,5.0734,3.697746 +L 5.0734,3.697746,5.0734,5.289589 +L 5.0734,5.289589,5.0734,6.864438 +L 5.0734,6.864438,5.6685,7.091827 +L 5.6685,7.091827,5.9942,7.437848 +L 5.9942,7.437848,6.3234,8.199191 +L 6.3234,8.199191,5.7525,8.302295 +L 5.7525,8.302295,5.1995,8.388406 +L 5.1995,8.388406,4.6461,8.466162 +L 5.4723,2.097454,6.1728,2.097454 +L 6.1728,2.097454,6.8807,2.097454 +L 6.8807,2.097454,7.6057,2.097454 +L 7.6057,2.097454,7.6057,2.631406 +L 7.6057,2.631406,7.6057,3.165273 +L 7.6057,3.165273,7.6057,3.699188 +L 7.6057,3.699188,6.8807,3.699188 +L 6.8807,3.699188,6.1728,3.699188 +L 6.1728,3.699188,5.4723,3.699188 +L 2.9401,4.233093,2.4816,5.336193 +L 2.4816,5.336193,2.8879,6.066429 +L 2.8879,6.066429,3.7912,6.330574 +L 3.7912,6.330574,3.7912,5.642718 +L 3.7912,5.642718,3.7912,4.946384 +L 3.7912,4.946384,3.7912,4.233093 +L 3.7912,4.233093,3.4973,4.233093 +L 3.4973,4.233093,3.2101,4.233093 +L 3.2101,4.233093,2.9401,4.233093 +L 7.6057,4.233093,7.6057,4.603177 +L 7.6057,4.603177,7.6057,4.956271 +L 7.6057,4.956271,7.6057,5.300868 +L 7.6057,5.300868,6.8807,5.300868 +L 6.8807,5.300868,6.1728,5.300868 +L 6.1728,5.300868,5.4723,5.300868 +L 2.9401,7.932307,2.7898,8.302295 +L 2.7898,8.302295,2.6389,8.655481 +L 2.6389,8.655481,2.5093,9.000032 +L 6.7511,8.466162,7.1784,8.466162 +L 7.1784,8.466162,7.6057,8.466162 +L 7.6057,8.466162,8.0295,8.466162 + +[雷] 54 +L 4.2208,4.766908,3.8492,7.161084 +L 3.8492,7.161084,2.7288,7.572114 +L 2.7288,7.572114,0.8301,7.39835 +L 0.8301,7.39835,0.8301,6.864438 +L 0.8301,6.864438,0.8301,6.330574 +L 0.8301,6.330574,0.8301,5.796623 +L 1.6885,5.300868,2.2451,5.300868 +L 2.2451,5.300868,2.816,5.300868 +L 2.816,5.300868,3.3977,5.300868 +L 5.0719,5.300868,5.6284,5.300868 +L 5.6284,5.300868,6.2032,5.300868 +L 6.2032,5.300868,6.7807,5.300868 +L 7.6353,5.796623,7.6353,6.330574 +L 7.6353,6.330574,7.6353,6.864438 +L 7.6353,6.864438,7.6353,7.39835 +L 7.6353,7.39835,6.6305,7.39835 +L 6.6305,7.39835,5.6284,7.39835 +L 5.6284,7.39835,4.6446,7.39835 +L 4.6446,7.39835,4.4936,7.665236 +L 4.4936,7.665236,4.3536,7.932307 +L 4.3536,7.932307,4.2208,8.199191 +L 4.2208,8.199191,3.2188,8.302295 +L 3.2188,8.302295,2.2384,8.388406 +L 2.2384,8.388406,1.2574,8.466162 +L 1.6885,0.000025,1.6885,1.247174 +L 1.6885,1.247174,1.6885,2.477377 +L 1.6885,2.477377,1.6885,3.699188 +L 1.6885,3.699188,3.3732,3.699188 +L 3.3732,3.699188,5.0719,3.699188 +L 5.0719,3.699188,6.7807,3.699188 +L 6.7807,3.699188,6.7807,2.477377 +L 6.7807,2.477377,6.7807,1.247174 +L 6.7807,1.247174,6.7807,0.000025 +L 6.7807,0.000025,5.0719,0.000025 +L 5.0719,0.000025,3.3732,0.000025 +L 3.3732,0.000025,1.6885,0.000025 +L 4.2208,0.533893,3.8776,1.939292 +L 3.8776,1.939292,3.065,2.192111 +L 3.065,2.192111,2.1158,2.097454 +L 4.6446,2.097454,4.4936,2.467538 +L 4.4936,2.467538,4.3536,2.820628 +L 4.3536,2.820628,4.2208,3.165273 +L 5.0719,2.097454,5.5027,2.097454 +L 5.5027,2.097454,5.9297,2.097454 +L 5.9297,2.097454,6.3538,2.097454 +L 1.6885,6.330574,2.2451,6.330574 +L 2.2451,6.330574,2.816,6.330574 +L 2.816,6.330574,3.3977,6.330574 +L 5.0719,6.330574,5.6284,6.330574 +L 5.6284,6.330574,6.2032,6.330574 +L 6.2032,6.330574,6.7807,6.330574 +L 4.6446,8.466162,5.5027,8.466162 +L 5.5027,8.466162,6.3538,8.466162 +L 6.3538,8.466162,7.208,8.466162 + +[酪] 60 +L 6.7827,5.796623,7.0563,6.433626 +L 1.2878,0.000025,1.5396,3.008458 +L 1.5396,3.008458,1.9357,5.940765 +L 1.9357,5.940765,2.1455,8.466162 +L 2.1455,8.466162,1.7151,8.466162 +L 1.7151,8.466162,1.2878,8.466162 +L 1.2878,8.466162,0.864,8.466162 +L 1.7151,0.000025,2.419,0.000025 +L 2.419,0.000025,3.1192,0.000025 +L 3.1192,0.000025,3.82,0.000025 +L 3.82,0.000025,3.82,0.532484 +L 3.82,0.532484,3.82,1.05652 +L 3.82,1.05652,3.82,1.563593 +L 3.82,1.563593,3.1192,1.563593 +L 3.1192,1.563593,2.419,1.563593 +L 2.419,1.563593,1.7151,1.563593 +L 5.1016,0.000025,5.0704,2.314987 +L 5.0704,2.314987,5.3121,3.723186 +L 5.3121,3.723186,6.3523,5.300868 +L 6.3523,5.300868,5.9317,5.83335 +L 5.9317,5.83335,5.5114,6.357448 +L 5.5114,6.357448,5.1016,6.864438 +L 5.1016,6.864438,4.9513,6.700654 +L 4.9513,6.700654,4.8112,6.519797 +L 4.8112,6.519797,4.6778,6.330574 +L 5.5289,0.000025,6.2297,0.000025 +L 6.2297,0.000025,6.9337,0.000025 +L 6.9337,0.000025,7.6338,0.000025 +L 7.6338,0.000025,7.6338,1.066406 +L 7.6338,1.066406,7.6338,2.124287 +L 7.6338,2.124287,7.6338,3.165273 +L 7.6338,3.165273,6.9337,3.165273 +L 6.9337,3.165273,6.2297,3.165273 +L 6.2297,3.165273,5.5289,3.165273 +L 3.82,2.097454,3.82,2.631406 +L 3.82,2.631406,3.82,3.165273 +L 3.82,3.165273,3.82,3.699188 +L 3.82,3.699188,3.529,3.699188 +L 3.529,3.699188,3.2418,3.699188 +L 3.2418,3.699188,2.9689,3.699188 +L 2.9689,3.699188,2.9546,5.19493 +L 2.9546,5.19493,2.8428,5.87716 +L 2.8428,5.87716,2.5416,6.330574 +L 2.5416,6.330574,2.2471,5.391206 +L 2.2471,5.391206,2.0338,4.104551 +L 2.0338,4.104551,1.7151,3.165273 +L 7.6338,3.699188,7.3435,4.069272 +L 7.3435,4.069272,7.0563,4.422401 +L 7.0563,4.422401,6.7827,4.766908 +L 3.82,4.233093,3.4908,5.906778 +L 3.4908,5.906778,3.0176,7.12293 +L 3.0176,7.12293,2.5416,8.466162 +L 7.0563,6.433626,7.3435,7.053654 +L 7.3435,7.053654,7.6338,7.665236 +L 7.6338,7.665236,6.9337,7.587563 +L 6.9337,7.587563,6.2297,7.501408 +L 6.2297,7.501408,5.5289,7.39835 +L 3.3962,8.466162,3.6729,8.466162 +L 3.6729,8.466162,3.9528,8.466162 +L 3.9528,8.466162,4.2505,8.466162 + +[欄] 73 +L 5.927,5.30086,6.1998,5.30086 +L 6.1998,5.30086,6.4874,5.30086 +L 6.4874,5.30086,6.7812,5.30086 +L 3.3947,0.00002,3.3947,2.82203 +L 3.3947,2.82203,3.3947,5.644073 +L 3.3947,5.644073,3.3947,8.466162 +L 3.3947,8.466162,3.9478,8.466162 +L 3.9478,8.466162,4.5012,8.466162 +L 4.5012,8.466162,5.0724,8.466162 +L 5.0724,8.466162,5.0861,6.943494 +L 5.0861,6.943494,5.1985,6.251418 +L 5.1985,6.251418,5.4997,5.796631 +L 5.4997,5.796631,5.8009,6.251418 +L 5.8009,6.251418,5.9126,6.943494 +L 5.9126,6.943494,5.927,8.466162 +L 5.927,8.466162,6.4874,8.466162 +L 6.4874,8.466162,7.0583,8.466162 +L 7.0583,8.466162,7.6358,8.466162 +L 7.6358,8.466162,7.5518,5.644073 +L 7.5518,5.644073,7.4856,2.82203 +L 7.4856,2.82203,7.4225,0.00002 +L 7.4225,0.00002,6.8443,0.532502 +L 6.8443,0.532502,6.2737,1.056504 +L 6.2737,1.056504,5.713,1.563593 +L 5.713,1.563593,5.6324,1.056504 +L 5.6324,1.056504,5.5627,0.532502 +L 5.5627,0.532502,5.4997,0.00002 +L 4.2493,0.533886,4.526,0.980279 +L 4.526,0.980279,4.7989,1.409603 +L 4.7989,1.409603,5.0724,1.830526 +L 5.0724,1.830526,4.7989,1.933685 +L 4.7989,1.933685,4.526,2.019796 +L 4.526,2.019796,4.2493,2.09746 +L 4.2493,2.09746,4.2493,2.820621 +L 4.2493,2.820621,4.2493,3.535312 +L 4.2493,3.535312,4.2493,4.233102 +L 4.2493,4.233102,4.8482,4.252819 +L 4.8482,4.252819,5.1705,4.391257 +L 5.1705,4.391257,5.4997,4.766922 +L 5.4997,4.766922,5.1705,5.142713 +L 5.1705,5.142713,4.8482,5.281095 +L 4.8482,5.281095,4.2493,5.30086 +L 5.4997,2.364396,5.2262,2.631398 +L 5.2262,2.631398,4.9533,2.898285 +L 4.9533,2.898285,4.6763,3.165267 +L 5.927,2.09746,6.1998,2.09746 +L 6.1998,2.09746,6.4874,2.09746 +L 6.4874,2.09746,6.7812,2.09746 +L 6.7812,2.09746,6.7812,2.467554 +L 6.7812,2.467554,6.7812,2.820621 +L 6.7812,2.820621,6.7812,3.165267 +L 6.7812,3.165267,6.1652,3.185037 +L 6.1652,3.185037,5.8321,3.323397 +L 5.8321,3.323397,5.4997,3.699188 +L 5.4997,3.699188,5.8321,4.055103 +L 5.8321,4.055103,6.1652,4.055103 +L 6.1652,4.055103,6.7812,3.699188 +L 3.8252,6.330566,4.0949,6.330566 +L 4.0949,6.330566,4.3824,6.330566 +L 4.3824,6.330566,4.6763,6.330566 +L 6.3575,6.330566,6.6271,6.330566 +L 6.6271,6.330566,6.9108,6.330566 +L 6.9108,6.330566,7.2085,6.330566 +L 3.8252,7.39836,4.0949,7.39836 +L 4.0949,7.39836,4.3824,7.39836 +L 4.3824,7.39836,4.6763,7.39836 +L 6.3575,7.39836,6.6271,7.39836 +L 6.6271,7.39836,6.9108,7.39836 +L 6.9108,7.39836,7.2085,7.39836 +L 1.6852,0.00002,1.6852,9.000061 +L 1.6852,5.150068,0.4068,3.165221 +L 2.5086,4.50006,1.6852,6.048351 +L 2.5086,6.902688,0.4068,6.902688 + +[濫] 66 +L 6.384,4.766922,6.9377,4.766922 +L 6.9377,4.766922,7.4907,4.766922 +L 7.4907,4.766922,8.0616,4.766922 +L 2.5733,0.00002,2.8468,0.00002 +L 2.8468,0.00002,3.1197,0.00002 +L 3.1197,0.00002,3.3967,0.00002 +L 3.3967,0.00002,3.3967,0.877146 +L 3.3967,0.877146,3.3967,1.754247 +L 3.3967,1.754247,3.3967,2.631398 +L 3.3967,2.631398,4.6748,2.631398 +L 4.6748,2.631398,5.9567,2.631398 +L 5.9567,2.631398,7.2389,2.631398 +L 7.2389,2.631398,7.2389,1.754247 +L 7.2389,1.754247,7.2389,0.877146 +L 7.2389,0.877146,7.2389,0.00002 +L 7.2389,0.00002,7.5153,0.00002 +L 7.5153,0.00002,7.7888,0.00002 +L 7.7888,0.00002,8.0616,0.00002 +L 3.8205,0.00002,4.1007,0.00002 +L 4.1007,0.00002,4.3809,0.00002 +L 4.3809,0.00002,4.6748,0.00002 +L 4.6748,0.00002,4.6748,0.713346 +L 4.6748,0.713346,4.6748,1.409603 +L 4.6748,1.409603,4.6748,2.09746 +L 5.1056,0.00002,5.3791,0.00002 +L 5.3791,0.00002,5.6593,0.00002 +L 5.6593,0.00002,5.9567,0.00002 +L 5.9567,0.00002,5.9567,0.713346 +L 5.9567,0.713346,5.9567,1.409603 +L 5.9567,1.409603,5.9567,2.09746 +L 3.0006,4.233102,3.0006,5.644073 +L 3.0006,5.644073,3.0006,7.055147 +L 3.0006,7.055147,3.0006,8.466162 +L 3.0006,8.466162,3.8345,8.466162 +L 3.8345,8.466162,4.6748,8.466162 +L 4.6748,8.466162,5.5294,8.466162 +L 3.3967,4.233102,3.6696,4.233102 +L 3.6696,4.233102,3.9498,4.233102 +L 3.9498,4.233102,4.2478,4.233102 +L 4.2478,4.233102,4.2478,4.765559 +L 4.2478,4.765559,4.2478,5.289589 +L 4.2478,5.289589,4.2478,5.796631 +L 4.2478,5.796631,3.9498,5.796631 +L 3.9498,5.796631,3.6696,5.796631 +L 3.6696,5.796631,3.3967,5.796631 +L 4.6748,4.233102,4.9518,4.233102 +L 4.9518,4.233102,5.2355,4.233102 +L 5.2355,4.233102,5.5294,4.233102 +L 4.6748,5.796631,4.9518,5.796631 +L 4.9518,5.796631,5.2355,5.796631 +L 5.2355,5.796631,5.5294,5.796631 +L 5.5294,5.796631,5.5294,6.166723 +L 5.5294,6.166723,5.5294,6.519793 +L 5.5294,6.519793,5.5294,6.864438 +L 5.5294,6.864438,4.8082,6.864438 +L 4.8082,6.864438,4.1007,6.864438 +L 4.1007,6.864438,3.3967,6.864438 +L 6.384,6.06354,6.6852,6.706286 +L 6.6852,6.706286,6.7976,7.467574 +L 6.7976,7.467574,6.8151,9.000032 +L 7.2389,7.39836,7.5153,7.39836 +L 7.5153,7.39836,7.7888,7.39836 +L 7.7888,7.39836,8.0616,7.39836 +L 2.111,7.970376,1.2918,8.99986 +L 1.691,5.834657,0.8645,6.90244 +L 2.111,3.470476,0.8645,0.00002 + +[吏] 42 +L 0.8595,0.00002,1.9904,0.186461 +L 1.9904,0.186461,2.817,0.779684 +L 2.817,0.779684,3.8225,1.830526 +L 3.8225,1.830526,3.3952,2.286754 +L 3.3952,2.286754,2.9644,2.734556 +L 2.9644,2.734556,2.5406,3.165267 +L 6.3548,0.00002,5.654,0.532502 +L 5.654,0.532502,4.9503,1.056504 +L 4.9503,1.056504,4.2495,1.563593 +L 6.7852,0.00002,7.0553,0.00002 +L 7.0553,0.00002,7.339,0.00002 +L 7.339,0.00002,7.6363,0.00002 +L 4.2495,2.631398,3.8435,4.114437 +L 3.8435,4.114437,2.8765,4.351698 +L 2.8765,4.351698,1.7176,4.233102 +L 1.7176,4.233102,1.7176,4.946384 +L 1.7176,4.946384,1.7176,5.64271 +L 1.7176,5.64271,1.7176,6.330566 +L 1.7176,6.330566,2.418,6.330566 +L 2.418,6.330566,3.1217,6.330566 +L 3.1217,6.330566,3.8225,6.330566 +L 3.8225,6.330566,4.1094,6.923724 +L 4.1094,6.923724,4.1094,7.338971 +L 4.1094,7.338971,3.8225,7.932295 +L 3.8225,7.932295,2.8243,7.932295 +L 2.8243,7.932295,1.8401,7.932295 +L 1.8401,7.932295,0.8595,7.932295 +L 4.6736,4.233102,4.2393,5.759888 +L 4.2393,5.759888,5.4473,6.278295 +L 5.4473,6.278295,6.7852,6.330566 +L 6.7852,6.330566,6.7852,5.64271 +L 6.7852,5.64271,6.7852,4.946384 +L 6.7852,4.946384,6.7852,4.233102 +L 6.7852,4.233102,6.0816,4.233102 +L 6.0816,4.233102,5.3776,4.233102 +L 5.3776,4.233102,4.6736,4.233102 +L 4.6736,7.932295,4.523,8.302285 +L 4.523,8.302285,4.3791,8.655487 +L 4.3791,8.655487,4.2495,9.000032 +L 5.1041,7.932295,5.9342,7.932295 +L 5.9342,7.932295,6.7852,7.932295 +L 6.7852,7.932295,7.6363,7.932295 + +[履] 66 +L 7.2429,5.033926,6.5144,5.137038 +L 6.5144,5.137038,5.8069,5.223149 +L 5.8069,5.223149,5.1026,5.30086 +L 2.1433,5.30086,2.5703,5.91106 +L 2.5703,5.91106,2.9976,6.521176 +L 2.9976,6.521176,3.4284,7.131369 +L 3.4284,7.131369,2.9976,7.234485 +L 2.9976,7.234485,2.5703,7.32064 +L 2.5703,7.32064,2.1433,7.39836 +L 0.865,0.266999,1.5616,3.036722 +L 1.5616,3.036722,1.7301,5.620067 +L 1.7301,5.620067,1.716,8.466162 +L 1.716,8.466162,3.7019,8.466162 +L 3.7019,8.466162,5.6843,8.466162 +L 5.6843,8.466162,7.6632,8.466162 +L 7.6632,8.466162,7.6632,8.12152 +L 7.6632,8.12152,7.6632,7.768418 +L 7.6632,7.768418,7.6632,7.39836 +L 7.6632,7.39836,6.6612,7.39836 +L 6.6612,7.39836,5.6633,7.39836 +L 5.6633,7.39836,4.6788,7.39836 +L 4.6788,7.39836,4.6788,7.053658 +L 4.6788,7.053658,4.6788,6.70066 +L 4.6788,6.70066,4.6788,6.330566 +L 4.6788,6.330566,5.6633,6.330566 +L 5.6633,6.330566,6.6612,6.330566 +L 6.6612,6.330566,7.6632,6.330566 +L 2.9976,0.00002,2.9135,1.24716 +L 2.9135,1.24716,2.8473,2.477386 +L 2.8473,2.477386,2.7878,3.699188 +L 2.7878,3.699188,2.5703,3.535312 +L 2.5703,3.535312,2.357,3.35449 +L 2.357,3.35449,2.1433,3.165267 +L 3.8522,0.00002,4.7492,0.029692 +L 4.7492,0.029692,5.1831,0.237293 +L 5.1831,0.237293,5.5334,0.800819 +L 5.5334,0.800819,5.236,1.24716 +L 5.236,1.24716,4.9558,1.676536 +L 4.9558,1.676536,4.6788,2.09746 +L 4.6788,2.09746,4.4024,1.752808 +L 4.4024,1.752808,4.1289,1.399717 +L 4.1289,1.399717,3.8522,1.029625 +L 6.8121,0.00002,6.5144,0.189289 +L 6.5144,0.189289,6.2339,0.370111 +L 6.2339,0.370111,5.9537,0.533886 +L 7.2429,0.00002,7.5123,0.00002 +L 7.5123,0.00002,7.796,0.00002 +L 7.796,0.00002,8.094,0.00002 +L 6.3845,1.029625,6.5144,1.296559 +L 6.5144,1.296559,6.6612,1.563593 +L 6.6612,1.563593,6.8121,1.830526 +L 6.8121,1.830526,5.2745,2.587603 +L 5.2745,2.587603,4.7208,3.870024 +L 4.7208,3.870024,4.462,5.567794 +L 4.462,5.567794,3.7159,5.162431 +L 3.7159,5.162431,3.3342,4.816391 +L 3.3342,4.816391,2.9976,4.233102 +L 5.5334,3.165267,6.0871,3.165267 +L 6.0871,3.165267,6.6612,3.165267 +L 6.6612,3.165267,7.2429,3.165267 +L 7.2429,3.165267,7.2429,3.535312 +L 7.2429,3.535312,7.2429,3.888458 +L 7.2429,3.888458,7.2429,4.233102 +L 7.2429,4.233102,6.5144,4.233102 +L 6.5144,4.233102,5.8069,4.233102 +L 5.8069,4.233102,5.1026,4.233102 + +# kan_39 ------------------------------------------------------- +# 痢硫粒隆竜慮虜了僚寮猟療糧陵倫厘隣塁涙累励鈴隷零霊麗暦劣烈裂廉恋錬炉露L楼浪漏郎賄惑枠湾腕於霞嬉稀沙 + +[痢] 25 +L 6.7768,0.000004,6.7768,6.902544 +L 5.9187,0.000004,6.7768,0.000004 +L 5.4988,1.60173,5.4988,5.834721 +L 4.3745,6.204797,4.6718,6.368674 +L 4.0939,6.023983,4.3745,6.204797 +L 3.8176,5.834721,4.0939,6.023983 +L 3.3938,5.834721,2.1084,5.834721 +L 3.4074,5.063532,3.3938,5.834721 +L 3.5125,4.648292,3.4074,5.063532 +L 3.8176,4.233034,3.5125,4.648292 +L 3.439,3.600243,2.7735,4.153928 +L 2.7735,4.153928,2.1084,4.233034 +L 2.9626,3.16526,2.5353,2.47741 +L 2.5353,2.47741,2.1084,1.781105 +L 2.1084,1.781105,1.6846,1.067739 +L 3.3759,1.871452,3.2638,2.692117 +L 3.2638,2.692117,2.9626,3.16526 +L 4.6718,2.097486,3.439,3.600243 +L 3.3938,0.000004,3.3759,1.871452 +L 4.2449,7.932289,4.2449,9.000148 +L 1.2815,4.500021,1.2815,7.932289 +L 1.2815,7.932289,7.2041,7.932289 +L 0.0034,3.165329,1.2815,4.446512 +L 0.0034,6.000007,1.2815,6.000007 +A -7.261,4.500021,8.542338,328.21115,0 + +[硫] 28 +L 6.376,7.932197,7.2341,7.932197 +L 6.0328,7.449122,5.5915,7.716094 +L 5.5915,7.716094,4.6668,7.932197 +L 4.6668,7.932197,4.6668,9.000024 +L 4.2465,7.932197,2.9226,8.070627 +L 2.9226,8.070627,2.0578,8.327721 +L 2.0578,8.327721,1.2835,8.466102 +L 0.8562,8.466102,0.0019,8.466102 +L 0.7441,7.031085,0.8562,8.466102 +L 0.5378,4.994378,0.7441,7.031085 +L 0.4324,1.067739,0.5378,4.994378 +L 0.8562,1.067739,1.7107,1.067739 +L 1.7107,1.067739,1.7107,5.300901 +L 1.7107,5.300901,0.8562,5.300901 +L 4.3691,6.087588,2.9926,5.834721 +L 5.7561,6.281078,4.3691,6.087588 +L 6.8068,5.567789,5.7561,6.281078 +L 6.376,6.902544,6.0328,7.449122 +L 4.229,7.187847,4.2465,7.932197 +L 4.1208,6.782483,4.229,7.187847 +L 3.8157,6.368674,4.1208,6.782483 +L 3.3537,2.644065,3.4199,4.233034 +L 3,1.4873,3.3537,2.644065 +L 2.1416,0.000004,3,1.4873 +L 4.6668,0.533911,4.6668,4.233034 +L 5.9557,0.000004,5.9557,4.233034 +L 6.376,0.000004,7.2341,0.000004 +L 7.2341,0.000004,7.2341,1.60173 + +[粒] 11 +L 1.3135,9.000094,1.3135,0.000004 +L 2.5673,8.466102,2.14,7.169461 +L 0.0351,8.466102,0.4592,7.169461 +L 0.0351,5.834769,2.5673,5.834769 +L 0.0351,2.135552,1.3135,4.652579 +L 2.5673,3.699129,1.3135,5.234361 +L 3.2332,7.970464,6.7321,7.970464 +L 4.9844,7.970464,4.9844,9.000024 +L 2.732,0.000004,7.2361,0.000004 +A -14.5313,0.027735,19.118712,4.416534,18.202606 +A -11.7188,7.224411,18.09557,338.47752,356.12022 + +[隆] 35 +L 5.5569,6.902544,5.6865,7.168074 +L 5.6865,7.168074,5.8301,7.425115 +L 5.8301,7.425115,5.9846,7.665224 +L 5.9846,7.665224,5.5569,7.768376 +L 5.5569,7.768376,5.1296,7.854532 +L 5.1296,7.854532,4.6992,7.932197 +L 2.5974,2.097486,2.8741,2.820569 +L 2.8741,2.820569,3.1543,3.535344 +L 3.1543,3.535344,3.452,4.233034 +L 3.452,4.233034,3.1543,4.422296 +L 3.1543,4.422296,2.8741,4.603118 +L 2.8741,4.603118,2.5974,4.766948 +L 3.9392,5.670939,3.452,5.300901 +L 4.426,6.023983,3.9392,5.670939 +L 4.9128,6.368674,4.426,6.023983 +L 6.8388,4.766948,4.9128,6.368674 +L 5.5569,3.16526,6.8388,3.16526 +L 5.1296,3.16526,4.8249,3.580462 +L 4.8249,3.580462,4.7164,3.995759 +L 4.7164,3.995759,4.6992,4.766948 +L 5.1296,1.60173,3.8796,3.16526 +L 5.5569,1.60173,6.4084,1.60173 +L 5.1296,0.000004,7.2626,0.000004 +L 4.6992,0.000004,4.3486,1.509906 +L 4.3486,1.509906,3.522,1.706236 +L 3.522,1.706236,2.5974,2.097486 +L 2.1736,0.000004,4.6992,0.000004 +L 2.5974,6.368674,3.6586,7.508446 +L 3.6586,7.508446,4.0964,8.190683 +L 4.0964,8.190683,4.3066,9.000024 +L 0.0616,8.466102,1.7708,8.466102 +L 0.0616,0.000004,0.0616,8.466102 +L 1.7708,8.466102,1.326,6.097391 +L 1.326,6.097391,1.7708,2.631214 +L 1.7708,2.631214,0.0616,1.563603 + +[竜] 31 +L 5.1565,7.932197,6.0146,7.932197 +L 3.8781,0.000004,3.6641,0.636976 +L 3.6641,0.636976,3.447,1.257085 +L 3.447,1.257085,3.2368,1.868618 +L 3.2368,1.868618,2.5959,1.944943 +L 2.5959,1.944943,1.9658,2.02116 +L 1.9658,2.02116,1.3455,2.097486 +L 1.3455,2.097486,1.3455,5.300901 +L 1.3455,5.300901,5.587,5.300901 +L 5.587,5.300901,5.587,2.097486 +L 5.587,2.097486,3.8781,2.097486 +L 3.8781,2.097486,3.0547,3.699129 +L 3.0547,3.699129,1.7731,3.699129 +L 4.3054,0.000004,6.8657,0.000004 +L 6.8657,0.000004,6.8657,1.60173 +L 3.8781,3.699129,3.5874,4.42235 +L 3.5801,4.422296,3.447,4.766948 +L 4.3054,3.699129,5.1565,3.699129 +L 0.0639,6.368674,0.9217,6.471732 +L 0.9217,6.471732,1.7731,6.557936 +L 1.7731,6.557936,2.6309,6.635609 +L 2.6309,6.635609,2.281,7.370055 +L 2.281,7.370055,1.8362,7.706208 +L 1.8362,7.706208,0.9217,7.932197 +L 3.0547,6.368674,3.9517,6.594617 +L 3.9517,6.594617,4.386,6.930853 +L 4.386,6.930853,4.7359,7.665224 +L 4.7359,7.665224,4.0322,7.768376 +L 4.0322,7.768376,3.3317,7.854532 +L 3.3317,7.854532,2.6309,7.932197 +L 4.7359,6.368674,6.8657,6.368674 + +[慮] 45 +L 0.094,0.266939,0.7524,2.725965 +L 0.7524,2.725965,0.9482,4.939263 +L 0.9482,4.939263,0.9482,7.398291 +L 0.9482,7.398291,3.0532,7.398291 +L 3.0532,7.398291,3.1863,7.665224 +L 3.1863,7.665224,3.3299,7.932197 +L 3.3299,7.932197,3.4843,8.19913 +L 3.4843,8.19913,4.3144,8.302281 +L 4.3144,8.302281,5.1582,8.388398 +L 5.1582,8.388398,6.0166,8.466102 +L 1.3794,0.266939,1.5019,0.723179 +L 1.5019,0.723179,1.6277,1.170882 +L 1.6277,1.170882,1.7751,1.60173 +L 3.4843,0.000004,3.1828,0.433547 +L 3.1828,0.433547,3.071,0.97744 +L 3.071,0.97744,3.0532,2.097486 +L 3.9043,0.000004,5.5855,0.000004 +L 5.5855,0.000004,5.5855,1.067739 +L 7.2947,0.266939,7.0004,0.723179 +L 7.0004,0.723179,6.7167,1.170882 +L 6.7167,1.170882,6.4404,1.60173 +L 2.1989,3.16526,2.1989,5.300901 +L 2.1989,5.300901,2.6294,5.403912 +L 2.6294,5.403912,3.0532,5.490125 +L 3.0532,5.490125,3.4843,5.567789 +L 3.4843,5.567789,3.1337,6.131369 +L 3.1337,6.131369,2.6889,6.338972 +L 2.6889,6.338972,1.7751,6.368674 +L 2.6294,3.16526,3.1863,3.26841 +L 3.1863,3.26841,3.7575,3.354528 +L 3.7575,3.354528,4.3354,3.432194 +L 4.3354,3.432194,3.9883,3.995759 +L 3.9883,3.995759,3.5474,4.203368 +L 3.5474,4.203368,2.6294,4.233034 +L 4.7624,3.16526,6.4404,3.16526 +L 6.4404,3.16526,6.4404,4.233034 +L 6.4404,4.233034,4.7624,4.233034 +L 4.7624,4.233034,3.9043,5.300901 +L 6.4404,5.033881,5.8692,5.137024 +L 5.8692,5.137024,5.3161,5.223189 +L 5.3161,5.223189,4.7624,5.300901 +L 3.9043,6.368674,3.9397,7.364396 +L 3.9397,7.364396,5.4982,7.495772 +L 5.4982,7.495772,6.8674,7.398291 +L 4.3354,6.368674,5.5855,6.368674 + +[虜] 48 +L 0.1271,0.266939,0.7751,2.700518 +L 0.7751,2.700518,0.9541,4.91383 +L 0.9541,4.91383,0.9467,7.398291 +L 0.9467,7.398291,3.0867,7.398291 +L 3.0867,7.398291,3.2131,7.665224 +L 3.2131,7.665224,3.3638,7.932197 +L 3.3638,7.932197,3.5105,8.19913 +L 3.5105,8.19913,4.3444,8.302281 +L 4.3444,8.302281,5.1917,8.388398 +L 5.1917,8.388398,6.0428,8.466102 +L 1.8052,0.000004,2.5053,0.370041 +L 2.5053,0.370041,3.2131,0.723179 +L 3.2131,0.723179,3.9417,1.067739 +L 3.9417,1.067739,3.9417,2.097486 +L 3.9417,2.097486,1.8052,2.097486 +L 5.1882,0.000004,6.393,0.145494 +L 6.393,0.145494,6.8347,0.757018 +L 6.8347,0.757018,6.8977,2.097486 +L 6.8977,2.097486,6.0428,2.20059 +L 6.0428,2.20059,5.1882,2.286701 +L 5.1882,2.286701,4.3371,2.364373 +L 4.3371,2.364373,4.1938,2.631346 +L 4.1938,2.631346,4.0639,2.898326 +L 4.0639,2.898326,3.9417,3.16526 +L 3.9417,3.16526,2.2321,3.16526 +L 2.2321,3.16526,2.2321,5.300901 +L 2.2321,5.300901,2.6594,5.403912 +L 2.6594,5.403912,3.0867,5.490125 +L 3.0867,5.490125,3.5105,5.567789 +L 3.5105,5.567789,3.1638,6.131369 +L 3.1638,6.131369,2.7189,6.338972 +L 2.7189,6.338972,1.8052,6.368674 +L 4.7644,3.16526,4.1343,3.916654 +L 4.1343,3.916654,3.5911,4.193482 +L 3.5911,4.193482,2.6594,4.233034 +L 5.1882,3.16526,6.4736,3.16526 +L 6.4736,3.16526,6.4736,4.233034 +L 6.4736,4.233034,4.7644,4.233034 +L 4.7644,4.233034,4.488,4.603118 +L 4.488,4.603118,4.2148,4.956209 +L 4.2148,4.956209,3.9417,5.300901 +L 6.4736,5.033881,5.8957,5.137024 +L 5.8957,5.137024,5.3181,5.223189 +L 5.3181,5.223189,4.7644,5.300901 +L 3.9417,6.368674,3.9697,7.364396 +L 3.9697,7.364396,5.5283,7.495772 +L 5.5283,7.495772,6.8977,7.398291 +L 4.3371,6.368674,5.6193,6.368674 + +[了] 10 +L 2.2621,0.000004,3.5164,0.000004 +L 3.5164,0.000004,3.572,1.944943 +L 3.572,1.944943,3.6421,3.889875 +L 3.6421,3.889875,3.7265,5.834721 +L 3.7265,5.834721,4.497,6.634115 +L 4.497,6.634115,5.2812,7.425115 +L 5.2812,7.425115,6.0766,8.19913 +L 6.0766,8.19913,4.2239,8.302281 +L 4.2239,8.302281,2.3847,8.388398 +L 2.3847,8.388398,0.5529,8.466102 + +[僚] 38 +L 2.6848,8.466102,6.9294,8.466102 +L 1.0103,0.000004,0.9262,1.781105 +L 0.9262,1.781105,0.8596,3.545185 +L 0.8596,3.545185,0.7966,5.300901 +L 0.7966,5.300901,0.583,5.137024 +L 0.583,5.137024,0.3693,4.956209 +L 0.3693,4.956209,0.1592,4.766948 +L 3.9733,0.000004,4.8244,0.000004 +L 4.8244,0.000004,4.8244,3.16526 +L 4.8244,3.16526,3.5425,3.16526 +L 3.5425,3.16526,3.5254,4.687835 +L 3.5254,4.687835,3.4164,5.379966 +L 3.4164,5.379966,3.1152,5.834721 +L 3.1152,5.834721,2.8179,5.670939 +L 2.8179,5.670939,2.5373,5.490125 +L 2.5373,5.490125,2.2641,5.300901 +L 2.2641,0.533911,2.5373,1.066385 +L 2.5373,1.066385,2.8179,1.590365 +L 2.8179,1.590365,3.1152,2.097486 +L 6.9294,0.533911,6.6352,1.066385 +L 6.6352,1.066385,6.3515,1.590365 +L 6.3515,1.590365,6.0751,2.097486 +L 5.2202,3.16526,6.0751,3.16526 +L 6.0751,3.16526,6.0751,4.233034 +L 6.0751,4.233034,3.9733,4.233034 +L 6.0751,5.033881,5.3743,5.137024 +L 5.3743,5.137024,4.6738,5.223189 +L 4.6738,5.223189,3.9733,5.300901 +L 6.9294,5.300901,4.8244,7.932197 +L 4.8244,7.932197,4.3936,7.425115 +L 4.3936,7.425115,3.9733,6.90115 +L 3.9733,6.90115,3.5425,6.368674 +L 3.5425,6.368674,3.2448,6.711833 +L 3.2448,6.711833,2.9646,7.055038 +L 2.9646,7.055038,2.6848,7.398291 +L 1.0103,5.834721,1.1157,7.112978 +L 1.1157,7.112978,1.3045,8.052287 +L 1.3045,8.052287,1.4099,9.000024 + +[寮] 47 +L 6.9629,6.902544,6.9629,7.932197 +L 6.9629,7.932197,3.9683,7.932197 +L 3.9683,7.932197,3.8286,8.302281 +L 3.8286,8.302281,3.6951,8.655333 +L 3.6951,8.655333,3.5725,9.000024 +L 2.7214,0.000004,3.5725,0.000004 +L 3.5725,0.000004,3.5725,2.631346 +L 3.5725,2.631346,1.8672,2.631346 +L 1.8672,2.631346,1.7831,3.354528 +L 1.7831,3.354528,1.7131,4.069212 +L 1.7131,4.069212,1.6497,4.766948 +L 1.6497,4.766948,1.1418,4.422296 +L 1.1418,4.422296,0.648,4.069212 +L 0.648,4.069212,0.1577,3.699129 +L 0.7986,0.533911,1.1418,0.904002 +L 1.1418,0.904002,1.4991,1.257085 +L 1.4991,1.257085,1.8672,1.60173 +L 6.1052,0.533911,5.2537,1.60173 +L 3.9683,2.631346,5.2537,2.631346 +L 5.2537,2.631346,5.2537,3.699129 +L 5.2537,3.699129,2.291,3.699129 +L 6.5325,3.699129,5.7724,4.430795 +L 5.7724,4.430795,5.4397,4.569232 +L 5.4397,4.569232,5.2537,4.233034 +L 2.291,5.033881,2.4241,5.403912 +L 2.4241,5.403912,2.5673,5.757058 +L 2.5673,5.757058,2.7214,6.101648 +L 2.7214,6.101648,1.0123,6.101648 +L 1.0123,6.101648,1.1418,5.834721 +L 1.1418,5.834721,1.2854,5.567789 +L 1.2854,5.567789,1.436,5.300901 +L 2.7214,4.766948,3.4219,4.87009 +L 3.4219,4.87009,4.1228,4.956209 +L 4.1228,4.956209,4.8229,5.033881 +L 4.8229,5.033881,4.4765,5.805056 +L 4.4765,5.805056,4.0454,6.220305 +L 4.0454,6.220305,3.1421,6.635609 +L 3.1421,6.635609,3.0157,7.903932 +L 3.0157,7.903932,1.4466,8.062143 +L 1.4466,8.062143,0.1577,7.932197 +L 0.1577,7.932197,0.1577,6.902544 +L 5.6775,5.300901,5.8071,5.567789 +L 5.8071,5.567789,5.9546,5.834721 +L 5.9546,5.834721,6.1052,6.101648 +L 6.1052,6.101648,5.6775,6.204797 +L 5.6775,6.204797,5.2537,6.290963 +L 5.2537,6.290963,4.8229,6.368674 + +[猟] 48 +L 1.0426,7.932197,0.1915,9.000024 +L 1.4699,7.932197,1.7428,8.302281 +L 1.7428,8.302281,2.0163,8.655333 +L 2.0163,8.655333,2.2965,9.000024 +L 3.5749,8.19913,3.4239,8.466102 +L 3.4239,8.466102,3.2768,8.733035 +L 3.2768,8.733035,3.1476,9.000024 +L 4.8564,8.19913,4.7062,8.466102 +L 4.7062,8.466102,4.5552,8.733035 +L 4.5552,8.733035,4.426,9.000024 +L 6.1348,7.932197,6.2574,8.302281 +L 6.2574,8.302281,6.3874,8.655333 +L 6.3874,8.655333,6.531,9.000024 +L 0.1915,0.000004,0.8185,0.03951 +L 0.8185,0.03951,1.2633,0.316376 +L 1.2633,0.316376,1.8972,1.067739 +L 1.8972,1.067739,1.8167,2.478803 +L 1.8167,2.478803,1.7428,3.889875 +L 1.7428,3.889875,1.6832,5.300901 +L 1.6832,5.300901,1.1719,4.603118 +L 1.1719,4.603118,0.6784,3.888343 +L 0.6784,3.888343,0.1915,3.16526 +L 2.2965,0.000004,3.0705,2.289488 +L 3.0705,2.289488,3.2033,4.460453 +L 3.2033,4.460453,3.1476,6.902544 +L 3.1476,6.902544,6.531,6.902544 +L 6.531,6.902544,6.531,1.067739 +L 6.531,1.067739,6.7443,0.904002 +L 6.7443,0.904002,6.9614,0.723179 +L 6.9614,0.723179,7.1716,0.533911 +L 7.1716,0.533911,7.2385,0.904002 +L 7.2385,0.904002,7.3047,1.257085 +L 7.3047,1.257085,7.3887,1.60173 +L 4.8564,0.000004,4.8288,1.648258 +L 4.8288,1.648258,4.5167,2.43219 +L 4.5167,2.43219,3.5749,2.631346 +L 5.2802,2.631346,4.7619,3.744339 +L 4.7619,3.744339,4.5241,4.492954 +L 4.5241,4.492954,3.5749,4.766948 +L 5.2802,4.766948,4.9825,5.182198 +L 4.9825,5.182198,4.8708,5.597484 +L 4.8708,5.597484,4.8564,6.368674 +L 1.4699,5.834721,1.4556,6.604494 +L 1.4556,6.604494,1.3438,7.009911 +L 1.3438,7.009911,1.0426,7.398291 +L 1.0426,7.398291,0.7446,7.055038 +L 0.7446,7.055038,0.4609,6.711833 +L 0.4609,6.711833,0.1915,6.368674 + +[療] 53 +L 0.2177,0.000004,0.8341,1.377144 +L 0.8341,1.377144,1.2509,2.855901 +L 1.2509,2.855901,1.2544,4.233034 +L 1.2544,4.233034,0.8975,3.888343 +L 0.8975,3.888343,0.5543,3.535344 +L 0.5543,3.535344,0.2177,3.16526 +L 4.0319,0.000004,4.8549,0.000004 +L 4.8549,0.000004,4.8549,2.631346 +L 4.8549,2.631346,3.6046,2.631346 +L 3.6046,2.631346,3.5871,3.778224 +L 3.5871,3.778224,3.4785,4.331965 +L 3.4785,4.331965,3.1738,4.766948 +L 3.1738,4.766948,2.8796,4.603118 +L 2.8796,4.603118,2.5997,4.422296 +L 2.5997,4.422296,2.323,4.233034 +L 2.5363,0.533911,2.8796,0.904002 +L 2.8796,0.904002,3.2403,1.257085 +L 3.2403,1.257085,3.6046,1.60173 +L 6.9918,0.533911,6.1368,1.601692 +L 5.2857,2.631346,6.1368,2.631346 +L 6.1368,2.631346,6.1368,3.699129 +L 6.1368,3.699129,4.0319,3.699129 +L 6.1368,4.500013,4.6378,4.707616 +L 4.6378,4.707616,3.9863,4.915263 +L 3.9863,4.915263,3.6046,5.300901 +L 3.6046,5.300901,3.7345,5.567789 +L 3.7345,5.567789,3.8816,5.834721 +L 3.8816,5.834721,4.0319,6.101648 +L 4.0319,6.101648,3.1111,6.269697 +L 3.1111,6.269697,2.6694,6.200571 +L 2.6694,6.200571,2.323,5.834721 +L 2.323,5.834721,2.7535,5.300901 +L 6.9918,4.233034,6.7886,5.023995 +L 6.7886,5.023995,6.7711,5.755663 +L 6.7711,5.755663,6.5641,6.368674 +L 6.5641,6.368674,6.1368,6.290963 +L 6.1368,6.290963,5.7095,6.204797 +L 5.7095,6.204797,5.2857,6.101648 +L 5.2857,6.101648,5.4157,5.834721 +L 5.4157,5.834721,5.5558,5.567789 +L 5.5558,5.567789,5.7095,5.300901 +L 1.4649,4.766948,1.4649,7.932197 +L 1.4649,7.932197,4.0319,7.932197 +L 4.0319,7.932197,4.1618,8.302281 +L 4.1618,8.302281,4.3054,8.655333 +L 4.3054,8.655333,4.4592,9.000024 +L 0.6485,6.101648,0.4909,6.368674 +L 0.4909,6.368674,0.3473,6.635609 +L 0.3473,6.635609,0.2177,6.902544 +L 4.4592,6.368674,4.4732,7.112978 +L 4.4732,7.112978,4.5747,7.518341 +L 4.5747,7.518341,4.8549,7.932197 +L 4.8549,7.932197,7.4191,7.932197 + +[糧] 40 +L 0.647,7.169461,0.4932,7.615878 +L 0.4932,7.615878,0.3458,8.045194 +L 0.3458,8.045194,0.2165,8.466102 +L 2.3527,7.169461,2.4826,7.615878 +L 2.4826,7.615878,2.6294,8.045194 +L 2.6294,8.045194,2.7803,8.466102 +L 4.4577,7.398291,6.1672,7.398291 +L 1.5016,0.000004,1.4175,1.411022 +L 1.4175,1.411022,1.3478,2.822008 +L 1.3478,2.822008,1.2883,4.233034 +L 1.2883,4.233034,0.924,3.535344 +L 0.924,3.535344,0.5629,2.820569 +L 0.5629,2.820569,0.2165,2.097486 +L 3.2111,0.000004,3.9113,0.103108 +L 3.9113,0.103108,4.6118,0.189227 +L 4.6118,0.189227,5.3126,0.266939 +L 5.3126,0.266939,4.9795,0.830518 +L 4.9795,0.830518,4.6471,1.038119 +L 4.6471,1.038119,4.0339,1.067739 +L 5.7434,0.000004,7.4176,0.000004 +L 5.7434,1.067739,5.1056,1.792347 +L 5.1056,1.792347,4.6647,2.059374 +L 4.6647,2.059374,4.0339,2.097486 +L 4.0339,2.097486,4.0339,4.233034 +L 4.0339,4.233034,6.5945,4.233034 +L 6.5945,4.233034,6.5945,2.097486 +L 6.5945,2.097486,5.943,2.136944 +L 5.943,2.136944,5.3932,2.413804 +L 5.3932,2.413804,4.4577,3.16526 +L 2.7803,3.699129,1.5475,5.201977 +L 1.5475,5.201977,0.882,5.755663 +L 0.882,5.755663,0.2165,5.834721 +L 3.2111,5.300901,2.02,6.353168 +L 2.02,6.353168,1.5685,6.829096 +L 1.5685,6.829096,1.5016,9.000024 +L 3.6031,5.300901,7.4176,5.300901 +L 4.0339,6.368674,4.0339,8.466102 +L 4.0339,8.466102,6.5945,8.466102 +L 6.5945,8.466102,6.5945,6.368674 +L 6.5945,6.368674,4.0339,6.368674 + +[陵] 43 +L 4.915,7.169461,4.5686,7.706208 +L 4.5686,7.706208,4.1269,7.903932 +L 4.1269,7.903932,3.2061,7.932197 +L 5.3423,7.932197,5.192,8.302281 +L 5.192,8.302281,5.0446,8.655333 +L 5.0446,8.655333,4.915,9.000024 +L 5.7419,7.932197,7.02,7.932197 +L 0.2501,0.000004,0.2501,8.466102 +L 0.2501,8.466102,1.9274,8.466102 +L 1.9274,8.466102,1.4966,6.131369 +L 1.4966,6.131369,1.7067,4.762721 +L 1.7067,4.762721,1.9274,2.631346 +L 1.9274,2.631346,1.651,2.467524 +L 1.651,2.467524,1.381,2.286701 +L 1.381,2.286701,1.1047,2.097486 +L 2.355,0.000004,3.3039,0.03951 +L 3.3039,0.03951,3.9658,0.316376 +L 3.9658,0.316376,4.915,1.067739 +L 4.915,1.067739,4.5507,1.600252 +L 4.5507,1.600252,4.1935,2.124318 +L 4.1935,2.124318,3.8502,2.631346 +L 3.8502,2.631346,3.486,2.467524 +L 3.486,2.467524,3.1256,2.286701 +L 3.1256,2.286701,2.7823,2.097486 +L 6.1657,0.000004,5.8957,0.189227 +L 5.8957,0.189227,5.6158,0.370041 +L 5.6158,0.370041,5.3423,0.533911 +L 6.5962,0.000004,7.4473,0.000004 +L 5.3423,1.60173,5.6158,2.048002 +L 5.6158,2.048002,5.8957,2.47741 +L 5.8957,2.47741,6.1657,2.898326 +L 6.1657,2.898326,5.4649,3.001431 +L 5.4649,3.001431,4.7647,3.087548 +L 4.7647,3.087548,4.0607,3.16526 +L 2.9921,4.233034,3.7452,5.023995 +L 3.7452,5.023995,4.0222,5.577722 +L 4.0222,5.577722,4.0607,6.368674 +L 4.0607,6.368674,2.7823,6.368674 +L 5.7419,4.233034,5.7419,6.368674 +L 5.7419,6.368674,4.4912,6.368674 +L 6.1657,4.233034,7.4473,4.233034 +L 7.4473,4.233034,7.4473,5.300901 +L 6.1657,6.368674,7.4473,6.368674 + +[倫] 30 +L 1.1032,0.000004,1.0191,1.781105 +L 1.0191,1.781105,0.9522,3.545185 +L 0.9522,3.545185,0.8892,5.300901 +L 0.8892,5.300901,0.6759,5.137024 +L 0.6759,5.137024,0.4727,4.956209 +L 0.4727,4.956209,0.2797,4.766948 +L 2.812,0.000004,2.812,4.766948 +L 2.812,4.766948,7.0538,4.766948 +L 7.0538,4.766948,7.0538,0.000004 +L 7.0538,0.000004,6.1989,0.000004 +L 4.0939,0.000004,4.0939,2.097486 +L 4.0939,2.097486,3.793,2.286701 +L 3.793,2.286701,3.5128,2.467524 +L 3.5128,2.467524,3.2393,2.631346 +L 5.3443,0.000004,5.3443,2.097486 +L 5.3443,2.097486,4.917,2.467524 +L 4.917,2.467524,4.4967,2.820569 +L 4.4967,2.820569,4.0939,3.16526 +L 4.0939,3.16526,4.0939,4.233034 +L 5.7681,2.631346,5.4704,3.046602 +L 5.4704,3.046602,5.3586,3.461906 +L 5.3586,3.461906,5.3443,4.233034 +L 1.1032,5.834721,1.2149,7.112978 +L 1.2149,7.112978,1.4215,8.052287 +L 1.4215,8.052287,1.534,9.000024 +L 2.5987,6.368674,3.3619,7.245747 +L 3.3619,7.245747,4.1324,8.122904 +L 4.1324,8.122904,4.917,9.000024 +L 4.917,9.000024,7.4776,6.368674 +L 3.6631,6.368674,6.1989,6.368674 + +[厘] 48 +L 0.2817,0.266939,0.9752,3.036763 +L 0.9752,3.036763,1.1503,5.62006 +L 1.1503,5.62006,1.1328,8.466102 +L 1.1328,8.466102,3.2413,8.466102 +L 3.2413,8.466102,5.3536,8.466102 +L 5.3536,8.466102,7.4796,8.466102 +L 1.5601,0.000004,2.5377,0.000004 +L 2.5377,0.000004,3.5215,0.000004 +L 3.5215,0.000004,4.5236,0.000004 +L 4.5236,0.000004,4.3064,1.713289 +L 4.3064,1.713289,3.6266,2.138432 +L 3.6266,2.138432,2.4112,2.097486 +L 4.9473,0.000004,5.7774,0.000004 +L 5.7774,0.000004,6.6285,0.000004 +L 6.6285,0.000004,7.4796,0.000004 +L 4.9473,2.097486,4.6528,2.631346 +L 4.6528,2.631346,4.3691,3.16526 +L 4.3691,3.16526,4.0924,3.699129 +L 4.0924,3.699129,3.5215,3.699129 +L 3.5215,3.699129,2.965,3.699129 +L 2.965,3.699129,2.4112,3.699129 +L 2.4112,3.699129,2.4112,4.766948 +L 2.4112,4.766948,2.4112,5.834721 +L 2.4112,5.834721,2.4112,6.902544 +L 2.4112,6.902544,3.8196,6.902544 +L 3.8196,6.902544,5.231,6.902544 +L 5.231,6.902544,6.6562,6.902544 +L 6.6562,6.902544,6.6562,5.834721 +L 6.6562,5.834721,6.6562,4.766948 +L 6.6562,4.766948,6.6562,3.699129 +L 6.6562,3.699129,6.0748,3.699129 +L 6.0748,3.699129,5.5074,3.699129 +L 5.5074,3.699129,4.9473,3.699129 +L 4.9473,3.699129,4.6528,4.233034 +L 4.6528,4.233034,4.3691,4.766948 +L 4.3691,4.766948,4.0924,5.300901 +L 4.0924,5.300901,3.6651,5.300901 +L 3.6651,5.300901,3.2378,5.300901 +L 3.2378,5.300901,2.8105,5.300901 +L 5.3746,2.097486,5.8019,2.097486 +L 5.8019,2.097486,6.2292,2.097486 +L 6.2292,2.097486,6.6562,2.097486 +L 4.9473,5.300901,4.7932,5.670939 +L 4.7932,5.670939,4.6528,6.023983 +L 4.6528,6.023983,4.5236,6.368674 +L 5.3746,5.300901,5.651,5.300901 +L 5.651,5.300901,5.9312,5.300901 +L 5.9312,5.300901,6.2292,5.300901 + +[隣] 48 +L 0.3083,0.000004,0.3083,2.822008 +L 0.3083,2.822008,0.3083,5.644105 +L 0.3083,5.644105,0.3083,8.466102 +L 0.3083,8.466102,0.862,8.466102 +L 0.862,8.466102,1.415,8.466102 +L 1.415,8.466102,1.9859,8.466102 +L 1.9859,8.466102,1.4536,6.348896 +L 1.4536,6.348896,1.4259,4.214693 +L 1.4259,4.214693,2.4171,2.097486 +L 2.4171,2.097486,3.1768,3.264183 +L 3.1768,3.264183,3.506,3.95616 +L 3.506,3.95616,3.6955,4.766948 +L 2.6304,0.000004,2.9736,0.456207 +L 2.9736,0.456207,3.3312,0.904002 +L 3.3312,0.904002,3.6955,1.334712 +L 3.6955,1.334712,3.5445,1.600252 +L 3.5445,1.600252,3.4009,1.857346 +L 3.4009,1.857346,3.2717,2.097486 +L 6.655,0.000004,6.5041,1.194936 +L 6.5041,1.194936,6.0733,1.576253 +L 6.0733,1.576253,5.3766,1.60173 +L 5.3766,1.60173,5.3766,2.314935 +L 5.3766,2.314935,5.3766,3.011323 +L 5.3766,3.011323,5.3766,3.699129 +L 5.3766,3.699129,5.0965,3.699129 +L 5.0965,3.699129,4.8268,3.699129 +L 4.8268,3.699129,4.5501,3.699129 +L 4.5501,3.699129,4.3991,3.011323 +L 4.3991,3.011323,4.2555,2.314935 +L 4.2555,2.314935,4.1228,1.60173 +L 7.0855,1.60173,6.7496,2.247156 +L 6.7496,2.247156,6.4165,3.028169 +L 6.4165,3.028169,5.8004,3.699129 +L 7.0855,3.699129,6.9317,4.069212 +L 6.9317,4.069212,6.7878,4.422296 +L 6.7878,4.422296,6.655,4.766948 +L 3.4815,5.834721,3.8247,6.290963 +L 3.8247,6.290963,4.1858,6.738751 +L 4.1858,6.738751,4.5501,7.169461 +L 4.5501,7.169461,4.2555,7.245747 +L 4.2555,7.245747,3.9718,7.322058 +L 3.9718,7.322058,3.6955,7.398291 +L 5.3766,5.834721,5.3766,6.90115 +L 5.3766,6.90115,5.3766,7.959074 +L 5.3766,7.959074,5.3766,9.000024 +L 7.0855,5.834721,6.655,6.367227 +L 6.655,6.367227,6.2277,6.891301 +L 6.2277,6.891301,5.8004,7.398291 + +[塁] 45 +L 4.5486,7.398291,4.8253,7.398291 +L 4.8253,7.398291,5.1051,7.398291 +L 5.1051,7.398291,5.4063,7.398291 +L 0.3141,0.000004,1.4415,0.000004 +L 1.4415,0.000004,2.5728,0.000004 +L 2.5728,0.000004,3.7286,0.000004 +L 3.7286,0.000004,3.3189,1.499973 +L 3.3189,1.499973,2.3452,1.728796 +L 2.3452,1.728796,1.1652,1.60173 +L 4.1248,0.000004,5.1051,0.000004 +L 5.1051,0.000004,6.1072,0.000004 +L 6.1072,0.000004,7.1124,0.000004 +L 3.9108,1.868618,3.8477,2.314935 +L 3.8477,2.314935,3.7882,2.744352 +L 3.7882,2.744352,3.7286,3.16526 +L 4.5486,1.60173,5.1051,1.60173 +L 5.1051,1.60173,5.6834,1.60173 +L 5.6834,1.60173,6.2574,1.60173 +L 1.3785,2.631346,1.7217,2.820569 +L 1.7217,2.820569,2.0793,3.001431 +L 2.0793,3.001431,2.4436,3.16526 +L 5.8336,2.631346,5.5363,2.820569 +L 5.5363,2.820569,5.2561,3.001431 +L 5.2561,3.001431,4.979,3.16526 +L 2.4436,4.233034,2.149,4.422296 +L 2.149,4.422296,1.8653,4.603118 +L 1.8653,4.603118,1.5925,4.766948 +L 5.1895,4.233034,5.5363,4.422296 +L 5.5363,4.422296,5.8932,4.603118 +L 5.8932,4.603118,6.2574,4.766948 +L 1.5925,5.834721,1.5925,6.711833 +L 1.5925,6.711833,1.5925,7.588992 +L 1.5925,7.588992,1.5925,8.466102 +L 1.5925,8.466102,2.9931,8.466102 +L 2.9931,8.466102,4.405,8.466102 +L 4.405,8.466102,5.8336,8.466102 +L 5.8336,8.466102,5.8336,7.588992 +L 5.8336,7.588992,5.8336,6.711833 +L 5.8336,6.711833,5.8336,5.834721 +L 5.8336,5.834721,4.405,5.834721 +L 4.405,5.834721,2.9931,5.834721 +L 2.9931,5.834721,1.5925,5.834721 +L 3.7286,6.635609,3.3819,7.172302 +L 3.3819,7.172302,2.9336,7.370055 +L 2.9336,7.370055,2.0198,7.398291 + +[涙] 39 +L 1.6222,7.932197,1.3248,8.302281 +L 1.3248,8.302281,1.0411,8.655333 +L 1.0411,8.655333,0.7711,9.000024 +L 2.8725,8.466102,4.428,8.466102 +L 4.428,8.466102,5.9831,8.466102 +L 5.9831,8.466102,7.5382,8.466102 +L 0.3403,0.266939,0.7711,1.411022 +L 0.7711,1.411022,1.1914,2.555121 +L 1.1914,2.555121,1.6222,3.699129 +L 2.0495,0.000004,2.9429,2.297988 +L 2.9429,2.297988,3.2648,4.477355 +L 3.2648,4.477355,3.2963,6.902544 +L 3.2963,6.902544,4.5572,6.902544 +L 4.5572,6.902544,5.8356,6.902544 +L 5.8356,6.902544,7.1179,6.902544 +L 7.1179,6.902544,7.1179,6.368674 +L 7.1179,6.368674,7.1179,5.834721 +L 7.1179,5.834721,7.1179,5.300901 +L 7.1179,5.300901,5.9831,5.300901 +L 5.9831,5.300901,4.8549,5.300901 +L 4.8549,5.300901,3.7271,5.300901 +L 3.5138,0.000004,4.1544,0.877116 +L 4.1544,0.877116,4.7954,1.754273 +L 4.7954,1.754273,5.4367,2.631346 +L 5.4367,2.631346,5.0861,3.007004 +L 5.0861,3.007004,4.6451,3.145441 +L 4.6451,3.145441,3.7271,3.16526 +L 7.1179,0.000004,6.6867,0.713247 +L 6.6867,0.713247,6.2668,1.409598 +L 6.2668,1.409598,5.864,2.097486 +L 5.864,3.16526,5.713,3.535344 +L 5.713,3.535344,5.5628,3.888343 +L 5.5628,3.888343,5.4367,4.233034 +L 6.2913,3.16526,6.5641,3.16526 +L 6.5641,3.16526,6.8377,3.16526 +L 6.8377,3.16526,7.1179,3.16526 +L 1.1914,5.834721,0.8972,6.204797 +L 0.8972,6.204797,0.6173,6.557936 +L 0.6173,6.557936,0.3403,6.902544 + +[累] 45 +L 4.6118,7.398291,5.0149,7.398291 +L 5.0149,7.398291,5.4352,7.398291 +L 5.4352,7.398291,5.866,7.398291 +L 3.761,0.000004,3.761,0.877116 +L 3.761,0.877116,3.761,1.754273 +L 3.761,1.754273,3.761,2.631346 +L 3.761,2.631346,2.6294,2.631346 +L 2.6294,2.631346,1.4981,2.631346 +L 1.4981,2.631346,0.3703,2.631346 +L 0.5839,0.533911,1.0743,0.904002 +L 1.0743,0.904002,1.5611,1.257085 +L 1.5611,1.257085,2.0518,1.60173 +L 6.7167,0.533911,6.2863,0.904002 +L 6.2863,0.904002,5.866,1.257085 +L 5.866,1.257085,5.4352,1.60173 +L 4.1848,2.631346,4.5491,3.016937 +L 4.5491,3.016937,5.0919,3.224594 +L 5.0919,3.224594,6.2863,3.432194 +L 6.2863,3.432194,6.1388,3.699129 +L 6.1388,3.699129,5.9952,3.966053 +L 5.9952,3.966053,5.866,4.233034 +L 3.3302,3.16526,2.6052,3.699129 +L 2.6052,3.699129,1.8977,4.233034 +L 1.8977,4.233034,1.1934,4.766948 +L 3.761,3.699129,4.1638,4.233034 +L 4.1638,4.233034,4.5841,4.766948 +L 4.5841,4.766948,5.0079,5.300901 +L 2.4753,4.766948,2.752,5.223189 +L 2.752,5.223189,3.0357,5.670939 +L 3.0357,5.670939,3.3302,6.101648 +L 3.3302,6.101648,2.6052,6.204797 +L 2.6052,6.204797,1.8977,6.290963 +L 1.8977,6.290963,1.1934,6.368674 +L 1.1934,6.368674,1.1934,7.081956 +L 1.1934,7.081956,1.1934,7.778214 +L 1.1934,7.778214,1.1934,8.466102 +L 1.1934,8.466102,2.8819,8.466102 +L 2.8819,8.466102,4.5841,8.466102 +L 4.5841,8.466102,6.2863,8.466102 +L 6.2863,8.466102,6.2863,7.778214 +L 6.2863,7.778214,6.2863,7.081956 +L 6.2863,7.081956,6.2863,6.368674 +L 6.2863,6.368674,4.3351,6.754258 +L 4.3351,6.754258,3.029,7.19068 +L 3.029,7.19068,1.6207,7.398291 + +[励] 33 +L 0.3726,0.000004,0.4812,1.144095 +L 0.4812,1.144095,0.691,3.457671 +L 0.691,3.457671,0.7999,8.466102 +L 0.7999,8.466102,1.9239,8.466102 +L 1.9239,8.466102,3.0552,8.466102 +L 3.0552,8.466102,4.1833,8.466102 +L 1.2237,0.000004,2.1554,2.314935 +L 2.1554,2.314935,2.4703,4.485894 +L 2.4703,4.485894,2.5088,6.902544 +L 2.5088,6.902544,2.0783,6.902544 +L 2.0783,6.902544,1.6545,6.902544 +L 1.6545,6.902544,1.2237,6.902544 +L 2.7189,0.000004,3.5595,1.651083 +L 3.5595,1.651083,3.7735,2.988664 +L 3.7735,2.988664,3.7595,4.766948 +L 3.7595,4.766948,3.4825,4.766948 +L 3.4825,4.766948,3.2096,4.766948 +L 3.2096,4.766948,2.9326,4.766948 +L 4.1833,0.000004,5.0344,2.004221 +L 5.0344,2.004221,5.3913,3.855945 +L 5.3913,3.855945,5.4649,5.834721 +L 5.4649,5.834721,4.5157,6.586163 +L 4.5157,6.586163,3.8576,6.862982 +L 3.8576,6.862982,2.9326,6.902544 +L 5.4649,0.000004,5.7419,0.000004 +L 5.7419,0.000004,6.0256,0.000004 +L 6.0256,0.000004,6.3233,0.000004 +L 6.3233,0.000004,7.083,2.134213 +L 7.083,2.134213,7.2266,4.107362 +L 7.2266,4.107362,7.1744,6.368674 +L 7.1744,6.368674,5.7696,6.635609 +L 5.7696,6.635609,5.4263,7.48728 +L 5.4263,7.48728,5.4649,9.000024 + +[鈴] 51 +L 0.4023,0.000004,0.8296,0.000004 +L 0.8296,0.000004,1.2569,0.000004 +L 1.2569,0.000004,1.6807,0.000004 +L 1.6807,0.000004,1.7578,2.286701 +L 1.7578,2.286701,1.548,4.056484 +L 1.548,4.056484,0.4023,4.766948 +L 5.0714,0.000004,5.0714,1.411022 +L 5.0714,1.411022,5.0714,2.822008 +L 5.0714,2.822008,5.0714,4.233034 +L 5.0714,4.233034,4.6441,4.233034 +L 4.6441,4.233034,4.2165,4.233034 +L 4.2165,4.233034,3.7857,4.233034 +L 2.2936,0.533911,2.5073,0.723179 +L 2.5073,0.723179,2.7174,0.904002 +L 2.7174,0.904002,2.9346,1.067739 +L 6.318,1.067739,6.5981,1.067739 +L 6.5981,1.067739,6.8787,1.067739 +L 6.8787,1.067739,7.1726,1.067739 +L 7.1726,1.067739,7.1726,2.134213 +L 7.1726,2.134213,7.1726,3.192084 +L 7.1726,3.192084,7.1726,4.233034 +L 7.1726,4.233034,6.6052,4.233034 +L 6.6052,4.233034,6.0451,4.233034 +L 6.0451,4.233034,5.4952,4.233034 +L 0.8296,1.868618,0.6794,2.314935 +L 0.6794,2.314935,0.5319,2.744352 +L 0.5319,2.744352,0.4023,3.16526 +L 2.5073,2.364373,2.6369,2.820569 +L 2.6369,2.820569,2.7843,3.26841 +L 2.7843,3.26841,2.9346,3.699129 +L 2.0768,4.766948,1.7998,5.182198 +L 1.7998,5.182198,1.6951,5.597484 +L 1.6951,5.597484,1.6807,6.368674 +L 1.6807,6.368674,1.0681,6.3884 +L 1.0681,6.3884,0.735,6.526838 +L 0.735,6.526838,0.4023,6.902544 +L 0.4023,6.902544,0.8296,7.615878 +L 0.8296,7.615878,1.2569,8.312167 +L 1.2569,8.312167,1.6807,9.000024 +L 1.6807,9.000024,2.0905,8.466102 +L 2.0905,8.466102,2.5073,7.932197 +L 2.5073,7.932197,2.9346,7.398291 +L 3.3619,5.834721,3.9997,6.90115 +L 3.9997,6.90115,4.6441,7.959074 +L 4.6441,7.959074,5.2847,9.000024 +L 5.2847,9.000024,6.0451,7.959074 +L 6.0451,7.959074,6.8188,6.90115 +L 6.8188,6.90115,7.6037,5.834721 +L 4.6441,5.834721,5.194,5.834721 +L 5.194,5.834721,5.7471,5.834721 +L 5.7471,5.834721,6.318,5.834721 + +[隷] 63 +L 2.11,7.932197,1.9598,8.302281 +L 1.9598,8.302281,1.8161,8.655333 +L 1.8161,8.655333,1.6827,9.000024 +L 0.8281,0.000004,1.1052,0.000004 +L 1.1052,0.000004,1.3853,0.000004 +L 1.3853,0.000004,1.6827,0.000004 +L 1.6827,0.000004,1.6827,1.2472 +L 1.6827,1.2472,1.6827,2.47741 +L 1.6827,2.47741,1.6827,3.699129 +L 1.6827,3.699129,1.2589,3.699129 +L 1.2589,3.699129,0.839,3.699129 +L 0.839,3.699129,0.4288,3.699129 +L 4.6461,0.000004,4.919,0.000004 +L 4.919,0.000004,5.1992,0.000004 +L 5.1992,0.000004,5.4972,0.000004 +L 5.4972,0.000004,5.4972,0.713247 +L 5.4972,0.713247,5.4972,1.409598 +L 5.4972,1.409598,5.4972,2.097486 +L 5.4972,2.097486,4.9263,1.943504 +L 4.9263,1.943504,4.3691,1.781105 +L 4.3691,1.781105,3.8196,1.60173 +L 7.2061,1.067739,6.1452,2.524023 +L 6.1452,2.524023,5.7039,2.929339 +L 5.7039,2.929339,5.4972,2.631346 +L 0.6183,1.868618,0.6779,2.134213 +L 0.6779,2.134213,0.7476,2.391244 +L 0.7476,2.391244,0.8281,2.631346 +L 2.965,1.868618,2.8105,2.134213 +L 2.8105,2.134213,2.6704,2.391244 +L 2.6704,2.391244,2.5412,2.631346 +L 6.7756,2.631346,7.0558,3.001431 +L 7.0558,3.001431,7.336,3.354528 +L 7.336,3.354528,7.6334,3.699129 +L 2.11,3.699129,2.3867,3.699129 +L 2.3867,3.699129,2.6704,3.699129 +L 2.6704,3.699129,2.965,3.699129 +L 5.4972,3.966053,5.1676,4.529673 +L 5.1676,4.529673,4.8419,4.737229 +L 4.8419,4.737229,4.2469,4.766948 +L 0.8281,4.766948,1.3853,4.766948 +L 1.3853,4.766948,1.9598,4.766948 +L 1.9598,4.766948,2.5412,4.766948 +L 5.9245,4.766948,5.6265,5.300901 +L 5.6265,5.300901,5.3463,5.834721 +L 5.3463,5.834721,5.0661,6.368674 +L 5.0661,6.368674,4.6461,6.368674 +L 4.6461,6.368674,4.2258,6.368674 +L 4.2258,6.368674,3.8196,6.368674 +L 6.5651,4.766948,6.6247,5.137024 +L 6.6247,5.137024,6.6982,5.490125 +L 6.6982,5.490125,6.7756,5.834721 +L 6.7756,5.834721,5.5428,7.310739 +L 5.5428,7.310739,4.8913,7.854532 +L 4.8913,7.854532,4.2469,7.932197 +L 0.8281,6.368674,1.1052,6.368674 +L 1.1052,6.368674,1.3853,6.368674 +L 1.3853,6.368674,1.6827,6.368674 +L 1.6827,6.368674,1.5391,7.51982 +L 1.5391,7.51982,1.1262,7.899712 +L 1.1262,7.899712,0.4288,7.932197 +L 7.2061,6.368674,6.6247,7.245747 +L 6.6247,7.245747,6.0573,8.122904 +L 6.0573,8.122904,5.4972,9.000024 + +[零] 54 +L 4.2453,8.466102,5.1031,8.466102 +L 5.1031,8.466102,5.9542,8.466102 +L 5.9542,8.466102,6.8126,8.466102 +L 3.3943,0.000004,3.3943,0.713247 +L 3.3943,0.713247,3.3943,1.409598 +L 3.3943,1.409598,3.3943,2.097486 +L 3.3943,2.097486,2.6934,2.097486 +L 2.6934,2.097486,1.9894,2.097486 +L 1.9894,2.097486,1.2893,2.097486 +L 5.5234,0.533911,5.8039,0.533911 +L 5.8039,0.533911,6.0841,0.533911 +L 6.0841,0.533911,6.3815,0.533911 +L 6.3815,0.533911,6.3815,1.066385 +L 6.3815,1.066385,6.3815,1.590365 +L 6.3815,1.590365,6.3815,2.097486 +L 6.3815,2.097486,5.5234,2.097486 +L 5.5234,2.097486,4.6723,2.097486 +L 4.6723,2.097486,3.818,2.097486 +L 0.4347,3.16526,1.4119,3.699129 +L 1.4119,3.699129,2.3961,4.233034 +L 2.3961,4.233034,3.3943,4.766948 +L 3.3943,4.766948,3.03,5.142645 +L 3.03,5.142645,2.4836,5.281027 +L 2.4836,5.281027,1.2893,5.300901 +L 2.5673,3.16526,4.3644,3.184986 +L 4.3644,3.184986,5.1315,3.32347 +L 5.1315,3.32347,5.5234,3.699129 +L 5.5234,3.699129,3.8527,6.014182 +L 3.8527,6.014182,3.1417,7.117243 +L 3.1417,7.117243,0.4347,7.398291 +L 0.4347,7.398291,0.4347,7.055038 +L 0.4347,7.055038,0.4347,6.711833 +L 0.4347,6.711833,0.4347,6.368674 +L 4.6723,5.300901,5.233,5.300901 +L 5.233,5.300901,5.8039,5.300901 +L 5.8039,5.300901,6.3815,5.300901 +L 1.2893,6.368674,1.8357,6.368674 +L 1.8357,6.368674,2.3961,6.368674 +L 2.3961,6.368674,2.9635,6.368674 +L 4.6723,6.368674,5.233,6.368674 +L 5.233,6.368674,5.8039,6.368674 +L 5.8039,6.368674,6.3815,6.368674 +L 7.2046,6.368674,7.2046,6.711833 +L 7.2046,6.711833,7.2046,7.055038 +L 7.2046,7.055038,7.2046,7.398291 +L 7.2046,7.398291,6.2102,7.398291 +L 6.2102,7.398291,5.2257,7.398291 +L 5.2257,7.398291,4.2453,7.398291 +L 4.2453,7.398291,4.0944,7.665224 +L 4.0944,7.665224,3.9473,7.932197 +L 3.9473,7.932197,3.818,8.19913 +L 3.818,8.19913,2.8234,8.302281 +L 2.8234,8.302281,1.8357,8.388398 +L 1.8357,8.388398,0.8585,8.466102 + +[霊] 66 +L 4.275,8.466102,5.1125,8.466102 +L 5.1125,8.466102,5.9527,8.466102 +L 5.9527,8.466102,6.8073,8.466102 +L 0.4612,0.000004,1.0107,0.103108 +L 1.0107,0.103108,1.5715,0.189227 +L 1.5715,0.189227,2.142,0.266939 +L 2.142,0.266939,1.8653,0.723179 +L 1.8653,0.723179,1.5925,1.170882 +L 1.5925,1.170882,1.3154,1.60173 +L 2.7795,0.000004,2.8429,0.877116 +L 2.8429,0.877116,2.9126,1.754273 +L 2.9126,1.754273,2.9966,2.631346 +L 2.9966,2.631346,2.2926,2.631346 +L 2.2926,2.631346,1.5925,2.631346 +L 1.5925,2.631346,0.8917,2.631346 +L 3.4239,0.000004,3.8512,0.000004 +L 3.8512,0.000004,4.275,0.000004 +L 4.275,0.000004,4.7023,0.000004 +L 4.7023,0.000004,4.7023,0.877116 +L 4.7023,0.877116,4.7023,1.754273 +L 4.7023,1.754273,4.7023,2.631346 +L 4.7023,2.631346,4.275,2.631346 +L 4.275,2.631346,3.8512,2.631346 +L 3.8512,2.631346,3.4239,2.631346 +L 5.3121,0.000004,5.6588,0.533911 +L 5.6588,0.533911,6.0157,1.067739 +L 6.0157,1.067739,6.3835,1.60173 +L 5.9527,0.000004,6.3835,0.000004 +L 6.3835,0.000004,6.8073,0.000004 +L 6.8073,0.000004,7.2349,0.000004 +L 5.13,2.631346,5.6834,2.631346 +L 5.6834,2.631346,6.2364,2.631346 +L 6.2364,2.631346,6.8073,2.631346 +L 1.7151,3.699129,3.1192,3.699129 +L 3.1192,3.699129,4.5275,3.699129 +L 4.5275,3.699129,5.9527,3.699129 +L 3.8512,4.766948,3.4768,7.161015 +L 3.4768,7.161015,2.356,7.5721 +L 2.356,7.5721,0.4612,7.398291 +L 0.4612,7.398291,0.4612,7.055038 +L 0.4612,7.055038,0.4612,6.711833 +L 0.4612,6.711833,0.4612,6.368674 +L 1.3154,5.300901,1.8688,5.300901 +L 1.8688,5.300901,2.4226,5.300901 +L 2.4226,5.300901,2.9966,5.300901 +L 4.7023,5.300901,5.2526,5.300901 +L 5.2526,5.300901,5.8126,5.300901 +L 5.8126,5.300901,6.3835,5.300901 +L 1.3154,6.368674,1.8688,6.368674 +L 1.8688,6.368674,2.4226,6.368674 +L 2.4226,6.368674,2.9966,6.368674 +L 4.7023,6.368674,5.2526,6.368674 +L 5.2526,6.368674,5.8126,6.368674 +L 5.8126,6.368674,6.3835,6.368674 +L 7.2349,6.368674,7.2349,6.711833 +L 7.2349,6.711833,7.2349,7.055038 +L 7.2349,7.055038,7.2349,7.398291 +L 7.2349,7.398291,6.2364,7.398291 +L 6.2364,7.398291,5.2526,7.398291 +L 5.2526,7.398291,4.275,7.398291 +L 4.275,7.398291,4.1248,7.665224 +L 4.1248,7.665224,3.9812,7.932197 +L 3.9812,7.932197,3.8512,8.19913 +L 3.8512,8.19913,2.853,8.302281 +L 2.853,8.302281,1.8688,8.388398 +L 1.8688,8.388398,0.8917,8.466102 + +[麗] 72 +L 0.4628,8.466102,1.4509,8.466102 +L 1.4509,8.466102,2.4487,8.466102 +L 2.4487,8.466102,3.4543,8.466102 +L 4.7047,8.466102,5.6885,8.466102 +L 5.6885,8.466102,6.6867,8.466102 +L 6.6867,8.466102,7.6919,8.466102 +L 0.4628,0.266939,1.1041,2.02116 +L 1.1041,2.02116,1.3073,3.495747 +L 1.3073,3.495747,1.3139,5.300901 +L 1.3139,5.300901,2.295,5.403912 +L 2.295,5.403912,3.2788,5.490125 +L 3.2788,5.490125,4.277,5.567789 +L 4.277,5.567789,4.407,6.177957 +L 4.407,6.177957,4.5537,6.78815 +L 4.5537,6.78815,4.7047,7.398291 +L 4.7047,7.398291,5.5558,7.398291 +L 5.5558,7.398291,6.4135,7.398291 +L 6.4135,7.398291,7.2646,7.398291 +L 7.2646,7.398291,7.2646,7.055038 +L 7.2646,7.055038,7.2646,6.711833 +L 7.2646,6.711833,7.2646,6.368674 +L 1.7447,0.000004,2.0214,0.000004 +L 2.0214,0.000004,2.3051,0.000004 +L 2.3051,0.000004,2.5997,0.000004 +L 2.5997,0.000004,2.5997,1.066385 +L 2.5997,1.066385,2.5997,2.124318 +L 2.5997,2.124318,2.5997,3.16526 +L 2.5997,3.16526,2.3051,3.16526 +L 2.3051,3.16526,2.0214,3.16526 +L 2.0214,3.16526,1.7447,3.16526 +L 3.0231,0.000004,3.3562,0.375708 +L 3.3562,0.375708,3.6816,0.514092 +L 3.6816,0.514092,4.277,0.533911 +L 5.5558,0.000004,4.7712,1.894058 +L 4.7712,1.894058,4.0949,3.533858 +L 4.0949,3.533858,1.7447,4.233034 +L 5.9866,0.000004,6.5431,0.000004 +L 6.5431,0.000004,7.1144,0.000004 +L 7.1144,0.000004,7.6919,0.000004 +L 7.6919,0.000004,7.6919,0.370041 +L 7.6919,0.370041,7.6919,0.723179 +L 7.6919,0.723179,7.6919,1.067739 +L 5.5558,1.60173,6.1158,1.781105 +L 6.1158,1.781105,6.6867,1.943504 +L 6.6867,1.943504,7.2646,2.097486 +L 3.0231,2.097486,3.4333,2.097486 +L 3.4333,2.097486,3.8536,2.097486 +L 3.8536,2.097486,4.277,2.097486 +L 5.5558,3.16526,4.6168,3.936433 +L 4.6168,3.936433,3.6816,4.351692 +L 3.6816,4.351692,3.0231,4.766948 +L 5.9866,3.16526,6.2633,3.16526 +L 6.2633,3.16526,6.5431,3.16526 +L 6.5431,3.16526,6.8408,3.16526 +L 6.8408,3.16526,6.8408,3.535344 +L 6.8408,3.535344,6.8408,3.888343 +L 6.8408,3.888343,6.8408,4.233034 +L 6.8408,4.233034,5.906,4.27254 +L 5.906,4.27254,5.3488,4.549406 +L 5.3488,4.549406,4.7047,5.300901 +L 5.5558,5.300901,6.1158,5.300901 +L 6.1158,5.300901,6.6867,5.300901 +L 6.6867,5.300901,7.2646,5.300901 +L 0.8901,6.368674,0.8901,6.711833 +L 0.8901,6.711833,0.8901,7.055038 +L 0.8901,7.055038,0.8901,7.398291 +L 0.8901,7.398291,1.7447,7.398291 +L 1.7447,7.398291,2.5997,7.398291 +L 2.5997,7.398291,3.4543,7.398291 +L 3.4543,7.398291,3.4543,7.055038 +L 3.4543,7.055038,3.4543,6.711833 +L 3.4543,6.711833,3.4543,6.368674 + +[暦] 45 +L 2.2024,6.902544,2.9029,6.902544 +L 2.9029,6.902544,3.603,6.902544 +L 3.603,6.902544,4.3039,6.902544 +L 5.1616,6.902544,5.4352,6.902544 +L 5.4352,6.902544,5.7189,6.902544 +L 5.7189,6.902544,6.0127,6.902544 +L 3.0255,0.000004,3.0255,1.2472 +L 3.0255,1.2472,3.0255,2.47741 +L 3.0255,2.47741,3.0255,3.699129 +L 3.0255,3.699129,4.2864,3.699129 +L 4.2864,3.699129,5.5578,3.699129 +L 5.5578,3.699129,6.8393,3.699129 +L 6.8393,3.699129,6.8393,2.47741 +L 6.8393,2.47741,6.8393,1.2472 +L 6.8393,1.2472,6.8393,0.000004 +L 6.8393,0.000004,5.5578,0.000004 +L 5.5578,0.000004,4.2864,0.000004 +L 4.2864,0.000004,3.0255,0.000004 +L 0.4929,0.800852,1.1758,3.466078 +L 1.1758,3.466078,1.358,5.8771 +L 1.358,5.8771,1.3478,8.466102 +L 1.3478,8.466102,3.4528,8.466102 +L 3.4528,8.466102,5.5644,8.466102 +L 5.5644,8.466102,7.6939,8.466102 +L 3.4528,2.097486,4.4296,2.097486 +L 4.4296,2.097486,5.4142,2.097486 +L 5.4142,2.097486,6.4089,2.097486 +L 3.4528,4.766948,3.3687,5.300901 +L 3.3687,5.300901,3.3018,5.834721 +L 3.3018,5.834721,3.2388,6.368674 +L 3.2388,6.368674,2.8815,6.023983 +L 2.8815,6.023983,2.5387,5.670939 +L 2.5387,5.670939,2.2024,5.300901 +L 6.4089,4.766948,6.3318,5.300901 +L 6.3318,5.300901,6.2614,5.834721 +L 6.2614,5.834721,6.1984,6.368674 +L 6.1984,6.368674,5.845,6.023983 +L 5.845,6.023983,5.4982,5.670939 +L 5.4982,5.670939,5.1616,5.300901 +L 7.6939,5.300901,7.4001,5.757058 +L 7.4001,5.757058,7.1164,6.204797 +L 7.1164,6.204797,6.8393,6.635609 +L 6.8393,6.635609,7.1164,6.738751 +L 7.1164,6.738751,7.4001,6.824878 +L 7.4001,6.824878,7.6939,6.902544 + +[劣] 33 +L 3.9098,6.902544,3.9098,7.615878 +L 3.9098,7.615878,3.9098,8.312167 +L 3.9098,8.312167,3.9098,9.000024 +L 0.7369,7.398291,1.0728,7.768376 +L 1.0728,7.768376,1.416,8.121467 +L 1.416,8.121467,1.7771,8.466102 +L 7.297,7.398291,6.8732,7.768376 +L 6.8732,7.768376,6.442,8.121467 +L 6.442,8.121467,6.0147,8.466102 +L 0.5264,0.000004,1.8433,0.290984 +L 1.8433,0.290984,2.817,1.107377 +L 2.817,1.107377,3.9098,2.364373 +L 3.9098,2.364373,3.7595,2.631346 +L 3.7595,2.631346,3.6124,2.898326 +L 3.6124,2.898326,3.4825,3.16526 +L 3.4825,3.16526,2.6314,3.16526 +L 2.6314,3.16526,1.7838,3.16526 +L 1.7838,3.16526,0.9502,3.16526 +L 5.1636,0.000004,6.442,0.498632 +L 6.442,0.498632,6.8483,1.700569 +L 6.8483,1.700569,6.8732,3.16526 +L 6.8732,3.16526,6.0147,3.16526 +L 6.0147,3.16526,5.171,3.16526 +L 5.171,3.16526,4.3409,3.16526 +L 4.3409,3.16526,4.1868,3.535344 +L 4.1868,3.535344,4.0432,3.888343 +L 4.0432,3.888343,3.9098,4.233034 +L 0.5264,4.766948,2.3795,5.182198 +L 2.3795,5.182198,4.0464,5.95338 +L 4.0464,5.95338,3.0552,6.368674 +L 4.7609,5.834721,5.171,6.204797 +L 5.171,6.204797,5.5909,6.557936 +L 5.5909,6.557936,6.0147,6.902544 + +[烈] 45 +L 2.2344,7.398291,2.2344,7.768376 +L 2.2344,7.768376,2.2344,8.121467 +L 2.2344,8.121467,2.2344,8.466102 +L 2.2344,8.466102,1.653,8.466102 +L 1.653,8.466102,1.0856,8.466102 +L 1.0856,8.466102,0.5249,8.466102 +L 2.6617,8.466102,3.2116,8.466102 +L 3.2116,8.466102,3.7647,8.466102 +L 3.7647,8.466102,4.3356,8.466102 +L 0.5249,0.000004,0.8019,0.533911 +L 0.8019,0.533911,1.0856,1.067739 +L 1.0856,1.067739,1.3795,1.60173 +L 3.5128,0.266939,3.3619,0.723179 +L 3.3619,0.723179,3.2183,1.170882 +L 3.2183,1.170882,3.089,1.60173 +L 5.6213,0.266939,5.4668,0.723179 +L 5.4668,0.723179,5.3232,1.170882 +L 5.3232,1.170882,5.1905,1.60173 +L 7.7263,0.266939,7.4461,0.723179 +L 7.4461,0.723179,7.1764,1.170882 +L 7.1764,1.170882,6.8997,1.60173 +L 1.1662,2.631346,1.8033,3.16526 +L 1.8033,3.16526,2.4446,3.699129 +L 2.4446,3.699129,3.089,4.233034 +L 3.089,4.233034,2.5108,4.766948 +L 2.5108,4.766948,1.9399,5.300901 +L 1.9399,5.300901,1.3795,5.834721 +L 1.3795,5.834721,1.2257,5.670939 +L 1.2257,5.670939,1.0856,5.490125 +L 1.0856,5.490125,0.9522,5.300901 +L 6.4724,2.631346,6.7491,2.631346 +L 6.7491,2.631346,7.0328,2.631346 +L 7.0328,2.631346,7.3302,2.631346 +L 7.3302,2.631346,7.3302,4.765555 +L 7.3302,4.765555,7.3302,6.891301 +L 7.3302,6.891301,7.3302,9.000024 +L 5.6213,4.233034,5.6213,5.48023 +L 5.6213,5.48023,5.6213,6.710439 +L 5.6213,6.710439,5.6213,7.932197 +L 3.5128,5.033881,3.6389,5.670939 +L 3.6389,5.670939,3.7647,6.290963 +L 3.7647,6.290963,3.9156,6.902544 +L 3.9156,6.902544,3.2116,6.738751 +L 3.2116,6.738751,2.5041,6.557936 +L 2.5041,6.557936,1.8033,6.368674 + +[裂] 60 +L 2.2326,8.466102,2.9366,8.466102 +L 2.9366,8.466102,3.6441,8.466102 +L 3.6441,8.466102,4.3726,8.466102 +L 1.4099,0.000004,1.8126,0.000004 +L 1.8126,0.000004,2.2326,0.000004 +L 2.2326,0.000004,2.6637,0.000004 +L 2.6637,0.000004,2.6637,0.713247 +L 2.6637,0.713247,2.6637,1.409598 +L 2.6637,1.409598,2.6637,2.097486 +L 2.6637,2.097486,1.9352,1.968943 +L 1.9352,1.968943,1.2974,1.730188 +L 1.2974,1.730188,0.5588,1.60173 +L 3.0837,0.000004,3.4343,0.375708 +L 3.4343,0.375708,3.8791,0.514092 +L 3.8791,0.514092,4.7932,0.533911 +L 6.8982,0.000004,6.0471,0.877116 +L 6.0471,0.877116,5.2027,1.754273 +L 5.2027,1.754273,4.3726,2.631346 +L 4.3726,2.631346,4.3726,3.001431 +L 4.3726,3.001431,4.3726,3.354528 +L 4.3726,3.354528,4.3726,3.699129 +L 4.3726,3.699129,3.7912,3.354528 +L 3.7912,3.354528,3.2168,3.001431 +L 3.2168,3.001431,2.6637,2.631346 +L 0.5588,3.699129,1.3888,3.699129 +L 1.3888,3.699129,2.2326,3.699129 +L 2.2326,3.699129,3.0837,3.699129 +L 4.7932,3.699129,5.6265,3.699129 +L 5.6265,3.699129,6.4744,3.699129 +L 6.4744,3.699129,7.3287,3.699129 +L 0.5588,4.766948,1.1051,5.033881 +L 1.1051,5.033881,1.6617,5.300901 +L 1.6617,5.300901,2.2326,5.567789 +L 2.2326,5.567789,1.9629,6.023983 +L 1.9629,6.023983,1.6827,6.471732 +L 1.6827,6.471732,1.4099,6.902544 +L 1.4099,6.902544,1.1118,6.738751 +L 1.1118,6.738751,0.8281,6.557936 +L 0.8281,6.557936,0.5588,6.368674 +L 6.0471,4.766948,6.3238,4.766948 +L 6.3238,4.766948,6.6036,4.766948 +L 6.6036,4.766948,6.8982,4.766948 +L 6.8982,4.766948,6.8982,6.177957 +L 6.8982,6.177957,6.8982,7.588992 +L 6.8982,7.588992,6.8982,9.000024 +L 2.6637,5.834721,2.9366,6.290963 +L 2.9366,6.290963,3.2168,6.738751 +L 3.2168,6.738751,3.5148,7.169461 +L 3.5148,7.169461,2.9439,7.245747 +L 2.9439,7.245747,2.3867,7.322058 +L 2.3867,7.322058,1.8372,7.398291 +L 1.8372,7.398291,1.8372,7.768376 +L 1.8372,7.768376,1.8372,8.121467 +L 1.8372,8.121467,1.8372,8.466102 +L 1.8372,8.466102,1.4099,8.466102 +L 1.4099,8.466102,0.9826,8.466102 +L 0.9826,8.466102,0.5588,8.466102 +L 5.2237,5.834721,5.2237,6.711833 +L 5.2237,6.711833,5.2237,7.588992 +L 5.2237,7.588992,5.2237,8.466102 + +[廉] 57 +L 6.0768,7.932197,6.6372,7.932197 +L 6.6372,7.932197,7.2046,7.932197 +L 7.2046,7.932197,7.7863,7.932197 +L 0.5849,0.266939,1.2574,2.915233 +L 1.2574,2.915233,1.4259,5.334739 +L 1.4259,5.334739,1.4119,7.932197 +L 1.4119,7.932197,2.3922,7.932197 +L 2.3922,7.932197,3.3942,7.932197 +L 3.3942,7.932197,4.3991,7.932197 +L 4.3991,7.932197,4.3991,8.302281 +L 4.3991,8.302281,4.3991,8.655333 +L 4.3991,8.655333,4.3991,9.000024 +L 3.9718,0.000004,3.8877,0.713247 +L 3.8877,0.713247,3.8215,1.409598 +L 3.8215,1.409598,3.7585,2.097486 +L 3.7585,2.097486,3.1207,1.590365 +L 3.1207,1.590365,2.4763,1.066385 +L 2.4763,1.066385,1.8357,0.533911 +L 5.2222,0.000004,5.2222,0.877116 +L 5.2222,0.877116,5.2222,1.754273 +L 5.2222,1.754273,5.2222,2.631346 +L 5.2222,2.631346,4.3711,2.631346 +L 4.3711,2.631346,3.5235,2.631346 +L 3.5235,2.631346,2.6899,2.631346 +L 7.3625,0.533911,6.42,1.781105 +L 6.42,1.781105,5.4992,3.011323 +L 5.4992,3.011323,4.5812,4.233034 +L 4.5812,4.233034,4.3711,3.888343 +L 4.3711,3.888343,4.1648,3.535344 +L 4.1648,3.535344,3.9718,3.16526 +L 6.0768,2.631346,6.3535,2.631346 +L 6.3535,2.631346,6.6372,2.631346 +L 6.6372,2.631346,6.9317,2.631346 +L 6.9317,2.631346,5.9577,4.622852 +L 5.9577,4.622852,3.9473,4.605952 +L 3.9473,4.605952,2.263,4.233034 +L 7.3625,4.233034,6.6862,4.905424 +L 6.6862,4.905424,5.6848,5.518426 +L 5.6848,5.518426,4.5812,6.368674 +L 4.5812,6.368674,3.8215,5.617221 +L 3.8215,5.617221,3.3312,5.340406 +L 3.3312,5.340406,2.6899,5.300901 +L 2.263,6.368674,3.1837,6.3884 +L 3.1837,6.3884,3.6251,6.526838 +L 3.6251,6.526838,3.9718,6.902544 +L 3.9718,6.902544,3.8215,7.081956 +L 3.8215,7.081956,3.6744,7.244402 +L 3.6744,7.244402,3.541,7.398291 +L 5.653,6.368674,5.3658,6.772598 +L 5.3658,6.772598,5.3658,7.108788 +L 5.3658,7.108788,5.653,7.665224 +L 5.653,7.665224,5.3556,7.768376 +L 5.3556,7.768376,5.0719,7.854532 +L 5.0719,7.854532,4.7949,7.932197 +L 6.0768,6.368674,6.6372,6.368674 +L 6.6372,6.368674,7.2046,6.368674 +L 7.2046,6.368674,7.7863,6.368674 + +[恋] 45 +L 5.2525,7.932197,5.9562,7.932197 +L 5.9562,7.932197,6.657,7.932197 +L 6.657,7.932197,7.361,7.932197 +L 0.5838,0.266939,0.7204,0.877116 +L 0.7204,0.877116,0.8605,1.4873 +L 0.8605,1.4873,1.0142,2.097486 +L 3.1157,0.000004,2.839,0.453374 +L 2.839,0.453374,2.7374,1.135603 +L 2.7374,1.135603,2.7203,2.631346 +L 3.5465,0.000004,4.2473,0.000004 +L 4.2473,0.000004,4.9548,0.000004 +L 4.9548,0.000004,5.6798,0.000004 +L 5.6798,0.000004,5.6798,0.370041 +L 5.6798,0.370041,5.6798,0.723179 +L 5.6798,0.723179,5.6798,1.067739 +L 7.361,0.800852,7.084,1.2472 +L 7.084,1.2472,6.8111,1.676562 +L 6.8111,1.676562,6.5344,2.097486 +L 4.4014,1.868618,4.2473,2.134213 +L 4.2473,2.134213,4.1037,2.391244 +L 4.1037,2.391244,3.9703,2.631346 +L 1.2247,3.699129,1.8443,4.422296 +L 1.8443,4.422296,2.4786,5.137024 +L 2.4786,5.137024,3.1157,5.834721 +L 3.1157,5.834721,3.1157,6.548043 +L 3.1157,6.548043,3.1157,7.244402 +L 3.1157,7.244402,3.1157,7.932197 +L 3.1157,7.932197,2.2646,7.932197 +L 2.2646,7.932197,1.4205,7.932197 +L 1.4205,7.932197,0.5838,7.932197 +L 3.9703,3.699129,4.2473,3.699129 +L 4.2473,3.699129,4.531,3.699129 +L 4.531,3.699129,4.8249,3.699129 +L 4.8249,3.699129,4.8249,5.110144 +L 4.8249,5.110144,4.8249,6.521217 +L 4.8249,6.521217,4.8249,7.932197 +L 4.8249,7.932197,4.4014,7.932197 +L 4.4014,7.932197,3.9703,7.932197 +L 3.9703,7.932197,3.5465,7.932197 +L 0.5838,5.300901,0.8605,5.834721 +L 0.8605,5.834721,1.1403,6.368674 +L 1.1403,6.368674,1.4415,6.902544 +L 6.9614,5.567789,6.6637,6.023983 +L 6.6637,6.023983,6.3835,6.471732 +L 6.3835,6.471732,6.1103,6.902544 + +[錬] 75 +L 6.1091,7.932197,5.9547,8.302281 +L 5.9547,8.302281,5.8146,8.655333 +L 5.8146,8.655333,5.6783,9.000024 +L 6.5361,7.932197,6.9634,7.932197 +L 6.9634,7.932197,7.3907,7.932197 +L 7.3907,7.932197,7.818,7.932197 +L 0.6173,0.000004,1.0236,0.000004 +L 1.0236,0.000004,1.4435,0.000004 +L 1.4435,0.000004,1.8638,0.000004 +L 1.8638,0.000004,1.8537,2.998597 +L 1.8537,2.998597,1.7521,4.234429 +L 1.7521,4.234429,1.4719,4.766948 +L 1.4719,4.766948,1.1773,4.766948 +L 1.1773,4.766948,0.8901,4.766948 +L 0.8901,4.766948,0.6173,4.766948 +L 5.6783,0.000004,5.6013,0.877116 +L 5.6013,0.877116,5.5274,1.754273 +L 5.5274,1.754273,5.4678,2.631346 +L 5.4678,2.631346,4.8272,2.124318 +L 4.8272,2.124318,4.1965,1.600252 +L 4.1965,1.600252,3.5734,1.067739 +L 7.3907,1.067739,6.2524,2.52681 +L 6.2524,2.52681,5.4016,2.97743 +L 5.4016,2.97743,4.0042,3.16526 +L 4.0042,3.16526,4.0042,4.233034 +L 4.0042,4.233034,4.0042,5.300901 +L 4.0042,5.300901,4.0042,6.368674 +L 4.0042,6.368674,4.918,6.398287 +L 4.918,6.398287,5.3526,6.605943 +L 5.3526,6.605943,5.6783,7.169461 +L 5.6783,7.169461,5.3386,7.706208 +L 5.3386,7.706208,4.7922,7.903932 +L 4.7922,7.903932,3.5734,7.932197 +L 1.0446,1.868618,0.8901,2.314935 +L 0.8901,2.314935,0.7465,2.744352 +L 0.7465,2.744352,0.6173,3.16526 +L 2.7223,2.097486,2.7223,2.467524 +L 2.7223,2.467524,2.7223,2.820569 +L 2.7223,2.820569,2.7223,3.16526 +L 6.5361,3.16526,6.8131,3.16526 +L 6.8131,3.16526,7.0933,3.16526 +L 7.0933,3.16526,7.3907,3.16526 +L 7.3907,3.16526,7.3907,3.699129 +L 7.3907,3.699129,7.3907,4.233034 +L 7.3907,4.233034,7.3907,4.766948 +L 7.3907,4.766948,6.9634,4.766948 +L 6.9634,4.766948,6.5361,4.766948 +L 6.5361,4.766948,6.1091,4.766948 +L 6.1091,4.766948,5.9547,4.422296 +L 5.9547,4.422296,5.8146,4.069212 +L 5.8146,4.069212,5.6783,3.699129 +L 2.2946,4.766948,1.9938,5.182198 +L 1.9938,5.182198,1.8813,5.597484 +L 1.8813,5.597484,1.8638,6.368674 +L 1.8638,6.368674,1.2723,6.3884 +L 1.2723,6.3884,0.9465,6.526838 +L 0.9465,6.526838,0.6173,6.902544 +L 0.6173,6.902544,1.0236,7.615878 +L 1.0236,7.615878,1.4435,8.312167 +L 1.4435,8.312167,1.8638,9.000024 +L 1.8638,9.000024,2.144,8.655333 +L 2.144,8.655333,2.4246,8.302281 +L 2.4246,8.302281,2.7223,7.932197 +L 4.4311,4.766948,4.7047,4.766948 +L 4.7047,4.766948,4.9884,4.766948 +L 4.9884,4.766948,5.2822,4.766948 +L 5.2822,4.766948,5.5628,5.300901 +L 5.5628,5.300901,5.8321,5.834721 +L 5.8321,5.834721,6.1091,6.368674 +L 6.1091,6.368674,6.5361,6.368674 +L 6.5361,6.368674,6.9634,6.368674 +L 6.9634,6.368674,7.3907,6.368674 +L 7.3907,6.368674,7.3907,6.023983 +L 7.3907,6.023983,7.3907,5.670939 +L 7.3907,5.670939,7.3907,5.300901 + +[炉] 24 +L 3.61,8.466102,5.0114,8.466102 +L 5.0114,8.466102,6.4225,8.466102 +L 6.4225,8.466102,7.8484,8.466102 +L 0.6158,0.000004,1.691,3.04521 +L 1.691,3.04521,1.9397,5.776783 +L 1.9397,5.776783,1.9008,9.000024 +L 2.7519,0.000004,3.7922,2.134213 +L 3.7922,2.134213,4.0549,3.980166 +L 4.0549,3.980166,4.0303,6.368674 +L 4.0303,6.368674,5.1616,6.368674 +L 5.1616,6.368674,6.2898,6.368674 +L 6.2898,6.368674,7.4211,6.368674 +L 7.4211,6.368674,7.4211,5.490125 +L 7.4211,5.490125,7.4211,4.603118 +L 7.4211,4.603118,7.4211,3.699129 +L 7.4211,3.699129,6.4124,3.699129 +L 6.4124,3.699129,5.4177,3.699129 +L 5.4177,3.699129,4.4331,3.699129 +L 0.6158,5.033881,0.7454,5.670939 +L 0.7454,5.670939,0.8921,6.290963 +L 0.8921,6.290963,1.0431,6.902544 +L 2.3215,6.368674,2.6017,6.711833 +L 2.6017,6.711833,2.8815,7.055038 +L 2.8815,7.055038,3.1792,7.398291 + +[露] 90 +L 4.4596,8.466102,5.2936,8.466102 +L 5.2936,8.466102,6.1408,8.466102 +L 6.1408,8.466102,6.9958,8.466102 +L 1.0763,0.000004,1.0763,0.713247 +L 1.0763,0.713247,1.0763,1.409598 +L 1.0763,1.409598,1.0763,2.097486 +L 1.7141,0.000004,1.7771,1.066385 +L 1.7771,1.066385,1.8433,2.124318 +L 1.8433,2.124318,1.9274,3.16526 +L 1.9274,3.16526,1.63,3.16526 +L 1.63,3.16526,1.3498,3.16526 +L 1.3498,3.16526,1.0763,3.16526 +L 1.0763,3.16526,1.0763,3.535344 +L 1.0763,3.535344,1.0763,3.888343 +L 1.0763,3.888343,1.0763,4.233034 +L 1.0763,4.233034,1.7771,4.233034 +L 1.7771,4.233034,2.4811,4.233034 +L 2.4811,4.233034,3.1812,4.233034 +L 3.1812,4.233034,3.1812,3.888343 +L 3.1812,3.888343,3.1812,3.535344 +L 3.1812,3.535344,3.1812,3.16526 +L 3.1812,3.16526,2.9049,3.16526 +L 2.9049,3.16526,2.6314,3.16526 +L 2.6314,3.16526,2.3585,3.16526 +L 4.8908,0.000004,4.8908,0.713247 +L 4.8908,0.713247,4.8908,1.409598 +L 4.8908,1.409598,4.8908,2.097486 +L 4.8908,2.097486,4.5927,2.097486 +L 4.5927,2.097486,4.309,2.097486 +L 4.309,2.097486,4.0323,2.097486 +L 5.3146,0.000004,5.7209,0.000004 +L 5.7209,0.000004,6.1408,0.000004 +L 6.1408,0.000004,6.5646,0.000004 +L 6.5646,0.000004,6.5646,0.533911 +L 6.5646,0.533911,6.5646,1.067739 +L 6.5646,1.067739,6.5646,1.60173 +L 6.5646,1.60173,6.1408,1.60173 +L 6.1408,1.60173,5.7209,1.60173 +L 5.7209,1.60173,5.3146,1.60173 +L 2.3585,0.533911,2.6314,0.533911 +L 2.6314,0.533911,2.9049,0.533911 +L 2.9049,0.533911,3.1812,0.533911 +L 2.3585,2.097486,2.6314,2.097486 +L 2.6314,2.097486,2.9049,2.097486 +L 2.9049,2.097486,3.1812,2.097486 +L 6.5646,2.097486,5.9307,2.631346 +L 5.9307,2.631346,5.2936,3.16526 +L 5.2936,3.16526,4.6768,3.699129 +L 4.6768,3.699129,4.4596,3.535344 +L 4.4596,3.535344,4.2495,3.354528 +L 4.2495,3.354528,4.0323,3.16526 +L 6.1692,3.16526,6.2949,3.432194 +L 6.2949,3.432194,6.421,3.699129 +L 6.421,3.699129,6.5646,3.966053 +L 6.5646,3.966053,5.9972,4.069212 +L 5.9972,4.069212,5.4372,4.155363 +L 5.4372,4.155363,4.8908,4.233034 +L 4.8908,4.233034,4.8908,4.603118 +L 4.8908,4.603118,4.8908,4.956209 +L 4.8908,4.956209,4.8908,5.300901 +L 4.8908,5.300901,5.4372,5.300901 +L 5.4372,5.300901,5.9972,5.300901 +L 5.9972,5.300901,6.5646,5.300901 +L 1.5001,5.300901,2.0499,5.300901 +L 2.0499,5.300901,2.6103,5.300901 +L 2.6103,5.300901,3.1812,5.300901 +L 4.0323,5.300901,3.563,7.2853 +L 3.563,7.2853,2.341,7.574879 +L 2.341,7.574879,0.649,7.398291 +L 0.649,7.398291,0.649,7.055038 +L 0.649,7.055038,0.649,6.711833 +L 0.649,6.711833,0.649,6.368674 +L 1.5001,6.368674,2.0499,6.368674 +L 2.0499,6.368674,2.6103,6.368674 +L 2.6103,6.368674,3.1812,6.368674 +L 4.8908,6.368674,5.4372,6.368674 +L 5.4372,6.368674,5.9972,6.368674 +L 5.9972,6.368674,6.5646,6.368674 +L 7.4157,6.368674,7.4157,6.711833 +L 7.4157,6.711833,7.4157,7.055038 +L 7.4157,7.055038,7.4157,7.398291 +L 7.4157,7.398291,6.421,7.398291 +L 6.421,7.398291,5.4372,7.398291 +L 5.4372,7.398291,4.4596,7.398291 +L 4.4596,7.398291,4.309,7.665224 +L 4.309,7.665224,4.1658,7.932197 +L 4.1658,7.932197,4.0323,8.19913 +L 4.0323,8.19913,3.0341,8.302281 +L 3.0341,8.302281,2.0499,8.388398 +L 2.0499,8.388398,1.0763,8.466102 + +[廊] 51 +L 4.917,7.932197,5.8976,7.932197 +L 5.8976,7.932197,6.8787,7.932197 +L 6.8787,7.932197,7.88,7.932197 +L 0.6793,0.266939,1.3518,2.915233 +L 1.3518,2.915233,1.5161,5.334739 +L 1.5161,5.334739,1.5021,7.932197 +L 1.5021,7.932197,2.4866,7.932197 +L 2.4866,7.932197,3.4845,7.932197 +L 3.4845,7.932197,4.49,7.932197 +L 4.49,7.932197,4.49,8.302281 +L 4.49,8.302281,4.49,8.655333 +L 4.49,8.655333,4.49,9.000024 +L 1.9332,0.000004,2.2029,0.000004 +L 2.2029,0.000004,2.4866,0.000004 +L 2.4866,0.000004,2.7843,0.000004 +L 2.7843,0.000004,2.7843,2.134213 +L 2.7843,2.134213,2.7843,4.259905 +L 2.7843,4.259905,2.7843,6.368674 +L 2.7843,6.368674,3.4845,6.368674 +L 3.4845,6.368674,4.1993,6.368674 +L 4.1993,6.368674,4.917,6.368674 +L 4.917,6.368674,4.917,5.300901 +L 4.917,5.300901,4.917,4.233034 +L 4.917,4.233034,4.917,3.16526 +L 4.917,3.16526,4.3429,3.16526 +L 4.3429,3.16526,3.7682,3.16526 +L 3.7682,3.16526,3.2081,3.16526 +L 4.917,0.266939,4.7072,0.533911 +L 4.7072,0.533911,4.49,0.800852 +L 4.49,0.800852,4.276,1.067739 +L 4.276,1.067739,3.9118,0.904002 +L 3.9118,0.904002,3.5584,0.723179 +L 3.5584,0.723179,3.2081,0.533911 +L 6.1712,0.000004,6.1712,2.134213 +L 6.1712,2.134213,6.1712,4.259905 +L 6.1712,4.259905,6.1712,6.368674 +L 6.1712,6.368674,6.7242,6.290963 +L 6.7242,6.290963,7.299,6.204797 +L 7.299,6.204797,7.88,6.101648 +L 7.88,6.101648,7.5827,5.490125 +L 7.5827,5.490125,7.299,4.87009 +L 7.299,4.87009,7.0219,4.233034 +L 7.0219,4.233034,7.6247,3.067722 +L 7.6247,3.067722,7.8489,2.385578 +L 7.8489,2.385578,7.88,1.60173 +L 7.88,1.60173,7.5827,1.437862 +L 7.5827,1.437862,7.299,1.257085 +L 7.299,1.257085,7.0219,1.067739 +L 3.2081,4.766948,3.6389,4.766948 +L 3.6389,4.766948,4.0627,4.766948 +L 4.0627,4.766948,4.49,4.766948 + +[楼] 54 +L 2.3902,6.902544,2.0855,7.310739 +L 2.0855,7.310739,1.9737,7.854532 +L 1.9737,7.854532,1.9597,9.000024 +L 6.6285,6.902544,7.0348,6.902544 +L 7.0348,6.902544,7.4547,6.902544 +L 7.4547,6.902544,7.8785,6.902544 +L 5.7736,7.398291,5.7736,7.932197 +L 5.7736,7.932197,5.7736,8.466102 +L 5.7736,8.466102,5.7736,9.000024 +L 1.9597,0.000004,1.8757,1.600252 +L 1.8757,1.600252,1.8088,3.192084 +L 1.8088,3.192084,1.7457,4.766948 +L 1.7457,4.766948,1.3815,4.069212 +L 1.3815,4.069212,1.0246,3.354528 +L 1.0246,3.354528,0.6813,2.631346 +L 3.6686,0.000004,4.3694,0.370041 +L 4.3694,0.370041,5.0699,0.723179 +L 5.0699,0.723179,5.7736,1.067739 +L 5.7736,1.067739,5.3463,1.334712 +L 5.3463,1.334712,4.9225,1.60173 +L 4.9225,1.60173,4.4917,1.868618 +L 4.4917,1.868618,4.6212,2.211823 +L 4.6212,2.211823,4.7652,2.555121 +L 4.7652,2.555121,4.9225,2.898326 +L 4.9225,2.898326,4.4917,3.001431 +L 4.4917,3.001431,4.0714,3.087548 +L 4.0714,3.087548,3.6686,3.16526 +L 7.8785,0.000004,7.3076,0.456207 +L 7.3076,0.456207,6.7511,0.904002 +L 6.7511,0.904002,6.2009,1.334712 +L 6.2009,1.334712,6.3308,1.944943 +L 6.3308,1.944943,6.4744,2.555121 +L 6.4744,2.555121,6.6285,3.16526 +L 6.6285,3.16526,6.2009,3.16526 +L 6.2009,3.16526,5.7736,3.16526 +L 5.7736,3.16526,5.3463,3.16526 +L 5.3463,3.16526,5.4478,4.114424 +L 5.4478,4.114424,5.5988,5.063532 +L 5.5988,5.063532,5.5568,6.368674 +L 5.5568,6.368674,4.9225,5.834721 +L 4.9225,5.834721,4.2854,5.300901 +L 4.2854,5.300901,3.6686,4.766948 +L 7.0558,3.16526,7.3321,3.16526 +L 7.3321,3.16526,7.6022,3.16526 +L 7.6022,3.16526,7.8785,3.16526 +L 2.814,4.766948,2.3415,5.201977 +L 2.3415,5.201977,2.0084,5.755663 +L 2.0084,5.755663,1.5324,6.902544 +L 1.5324,6.902544,1.2379,6.902544 +L 1.2379,6.902544,0.9542,6.902544 +L 0.9542,6.902544,0.6813,6.902544 +L 7.4796,4.766948,6.2149,6.346024 +L 6.2149,6.346024,5.2412,6.772598 +L 5.2412,6.772598,3.6686,6.902544 + +[浪] 48 +L 7.0543,6.902544,7.0543,7.245747 +L 7.0543,7.245747,7.0543,7.588992 +L 7.0543,7.588992,7.0543,7.932197 +L 7.0543,7.932197,6.483,7.932197 +L 6.483,7.932197,5.9265,7.932197 +L 5.9265,7.932197,5.3801,7.932197 +L 1.9894,7.932197,1.6955,8.302281 +L 1.6955,8.302281,1.4118,8.655333 +L 1.4118,8.655333,1.1383,9.000024 +L 0.7075,0.266939,1.1383,1.411022 +L 1.1383,1.411022,1.5656,2.555121 +L 1.5656,2.555121,1.9894,3.699129 +L 2.3855,0.000004,2.6657,0.000004 +L 2.6657,0.000004,2.9459,0.000004 +L 2.9459,0.000004,3.2398,0.000004 +L 3.2398,0.000004,3.2398,2.658178 +L 3.2398,2.658178,3.2398,5.299413 +L 3.2398,5.299413,3.2398,7.932197 +L 3.2398,7.932197,3.8005,7.932197 +L 3.8005,7.932197,4.3711,7.932197 +L 4.3711,7.932197,4.9493,7.932197 +L 4.9493,7.932197,4.9493,8.302281 +L 4.9493,8.302281,4.9493,8.655333 +L 4.9493,8.655333,4.9493,9.000024 +L 3.6706,0.000004,3.9967,0.375708 +L 3.9967,0.375708,4.3325,0.514092 +L 4.3325,0.514092,4.9493,0.533911 +L 7.4851,0.000004,6.3394,1.634138 +L 6.3394,1.634138,5.6218,3.03105 +L 5.6218,3.03105,5.3801,4.766948 +L 5.3801,4.766948,4.7984,4.766948 +L 4.7984,4.766948,4.2243,4.766948 +L 4.2243,4.766948,3.6706,4.766948 +L 6.6266,2.097486,6.9033,2.467524 +L 6.9033,2.467524,7.187,2.820569 +L 7.187,2.820569,7.4851,3.16526 +L 5.8039,4.766948,6.2102,4.766948 +L 6.2102,4.766948,6.6305,4.766948 +L 6.6305,4.766948,7.0543,4.766948 +L 7.0543,4.766948,7.0543,5.300901 +L 7.0543,5.300901,7.0543,5.834721 +L 7.0543,5.834721,7.0543,6.368674 +L 7.0543,6.368674,5.9265,6.368674 +L 5.9265,6.368674,4.7952,6.368674 +L 4.7952,6.368674,3.6706,6.368674 +L 1.5656,5.834721,1.2682,6.204797 +L 1.2682,6.204797,0.9846,6.557936 +L 0.9846,6.557936,0.7075,6.902544 + +[漏] 39 +L 1.9879,7.932197,1.694,8.302281 +L 1.694,8.302281,1.4138,8.655333 +L 1.4138,8.655333,1.1333,9.000024 +L 0.7379,0.266939,1.1477,1.411022 +L 1.1477,1.411022,1.5641,2.555121 +L 1.5641,2.555121,1.9879,3.699129 +L 2.4191,0.266939,3.1125,3.036763 +L 3.1125,3.036763,3.2877,5.62006 +L 3.2877,5.62006,3.2701,8.466102 +L 3.2701,8.466102,4.6778,8.466102 +L 4.6778,8.466102,6.0896,8.466102 +L 6.0896,8.466102,7.5113,8.466102 +L 7.5113,8.466102,7.5113,8.121467 +L 7.5113,8.121467,7.5113,7.768376 +L 7.5113,7.768376,7.5113,7.398291 +L 7.5113,7.398291,6.2329,7.398291 +L 6.2329,7.398291,4.958,7.398291 +L 4.958,7.398291,3.6974,7.398291 +L 4.1279,0.000004,4.1279,1.411022 +L 4.1279,1.411022,4.1279,2.822008 +L 4.1279,2.822008,4.1279,4.233034 +L 4.1279,4.233034,5.13,4.300859 +L 5.13,4.300859,5.655,4.724601 +L 5.655,4.724601,5.8024,5.834721 +L 5.8024,5.834721,5.1016,5.834721 +L 5.1016,5.834721,4.4014,5.834721 +L 4.4014,5.834721,3.6974,5.834721 +L 5.8024,0.000004,5.7254,2.538136 +L 5.7254,2.538136,6.0266,3.855945 +L 6.0266,3.855945,7.5113,4.233034 +L 7.5113,4.233034,7.5113,2.822008 +L 7.5113,2.822008,7.5113,1.411022 +L 7.5113,1.411022,7.5113,0.000004 +L 1.5641,5.834721,1.2878,6.204797 +L 1.2878,6.204797,1.0142,6.557936 +L 1.0142,6.557936,0.7379,6.902544 +L 6.2329,5.834721,6.7936,5.834721 +L 6.7936,5.834721,7.361,5.834721 +L 7.361,5.834721,7.9421,5.834721 + +[郎] 48 +L 3.7026,6.902544,3.7026,7.245747 +L 3.7026,7.245747,3.7026,7.588992 +L 3.7026,7.588992,3.7026,7.932197 +L 3.7026,7.932197,3.4259,7.932197 +L 3.4259,7.932197,3.1496,7.932197 +L 3.1496,7.932197,2.876,7.932197 +L 5.4083,0.000004,5.4083,2.822008 +L 5.4083,2.822008,5.4083,5.644105 +L 5.4083,5.644105,5.4083,8.466102 +L 5.4083,8.466102,6.1123,8.466102 +L 6.1123,8.466102,6.8131,8.466102 +L 6.8131,8.466102,7.5133,8.466102 +L 7.5133,8.466102,7.2369,7.511287 +L 7.2369,7.511287,6.9634,6.548043 +L 6.9634,6.548043,6.6905,5.567789 +L 6.6905,5.567789,7.1665,4.447743 +L 7.1665,4.447743,7.3907,3.395468 +L 7.3907,3.395468,7.3,1.868618 +L 7.3,1.868618,6.9424,1.790915 +L 6.9424,1.790915,6.5991,1.704795 +L 6.5991,1.704795,6.2594,1.60173 +L 1.1707,0.533911,1.1707,3.011323 +L 1.1707,3.011323,1.1707,5.48023 +L 1.1707,5.48023,1.1707,7.932197 +L 1.1707,7.932197,1.5945,7.932197 +L 1.5945,7.932197,2.0218,7.932197 +L 2.0218,7.932197,2.4487,7.932197 +L 2.4487,7.932197,2.4487,8.302281 +L 2.4487,8.302281,2.4487,8.655333 +L 2.4487,8.655333,2.4487,9.000024 +L 1.5945,0.533911,2.2141,0.904002 +L 2.2141,0.904002,2.8449,1.257085 +L 2.8449,1.257085,3.4854,1.60173 +L 3.4854,1.60173,3.622,2.346033 +L 3.622,2.346033,3.566,2.751358 +L 3.566,2.751358,3.2721,3.16526 +L 4.1267,0.533911,4.1267,0.904002 +L 4.1267,0.904002,4.1267,1.257085 +L 4.1267,1.257085,4.1267,1.60173 +L 1.5945,4.766948,2.2985,4.766948 +L 2.2985,4.766948,2.9986,4.766948 +L 2.9986,4.766948,3.7026,4.766948 +L 3.7026,4.766948,3.7026,5.300901 +L 3.7026,5.300901,3.7026,5.834721 +L 3.7026,5.834721,3.7026,6.368674 +L 3.7026,6.368674,2.9986,6.368674 +L 2.9986,6.368674,2.2985,6.368674 +L 2.2985,6.368674,1.5945,6.368674 + +[賄] 60 +L 5.8341,7.398291,5.8341,7.932197 +L 5.8341,7.932197,5.8341,8.466102 +L 5.8341,8.466102,5.8341,9.000024 +L 6.2652,7.398291,6.8218,7.398291 +L 6.8218,7.398291,7.3927,7.398291 +L 7.3927,7.398291,7.9709,7.398291 +L 0.7695,0.000004,1.0466,0.370041 +L 1.0466,0.370041,1.3303,0.723179 +L 1.3303,0.723179,1.628,1.067739 +L 5.0114,0.000004,4.9273,1.600252 +L 4.9273,1.600252,4.8604,3.192084 +L 4.8604,3.192084,4.7942,4.766948 +L 4.7942,4.766948,4.43,4.422296 +L 4.43,4.422296,4.0759,4.069212 +L 4.0759,4.069212,3.7291,3.699129 +L 6.6925,0.000004,6.9654,0.000004 +L 6.9654,0.000004,7.2456,0.000004 +L 7.2456,0.000004,7.5436,0.000004 +L 7.5436,0.000004,7.5436,0.713247 +L 7.5436,0.713247,7.5436,1.409598 +L 7.5436,1.409598,7.5436,2.097486 +L 7.5436,2.097486,6.8396,2.097486 +L 6.8396,2.097486,6.1388,2.097486 +L 6.1388,2.097486,5.4387,2.097486 +L 1.1968,2.097486,1.1968,4.231641 +L 1.1968,4.231641,1.1968,6.357348 +L 1.1968,6.357348,1.1968,8.466102 +L 1.1968,8.466102,1.7467,8.466102 +L 1.7467,8.466102,2.304,8.466102 +L 2.304,8.466102,2.8745,8.466102 +L 2.8745,8.466102,2.8745,6.357348 +L 2.8745,6.357348,2.8745,4.231641 +L 2.8745,4.231641,2.8745,2.097486 +L 2.8745,2.097486,2.304,2.097486 +L 2.304,2.097486,1.7467,2.097486 +L 1.7467,2.097486,1.1968,2.097486 +L 7.5436,2.631346,7.5436,3.001431 +L 7.5436,3.001431,7.5436,3.354528 +L 7.5436,3.354528,7.5436,3.699129 +L 7.5436,3.699129,6.8396,3.699129 +L 6.8396,3.699129,6.1388,3.699129 +L 6.1388,3.699129,5.4387,3.699129 +L 1.628,4.233034,1.8977,4.233034 +L 1.8977,4.233034,2.1744,4.233034 +L 2.1744,4.233034,2.4507,4.233034 +L 7.5436,4.233034,7.5436,4.603118 +L 7.5436,4.603118,7.5436,4.956209 +L 7.5436,4.956209,7.5436,5.300901 +L 7.5436,5.300901,6.6925,5.403912 +L 6.6925,5.403912,5.8449,5.490125 +L 5.8449,5.490125,5.0114,5.567789 +L 5.0114,5.567789,5.1406,6.177957 +L 5.1406,6.177957,5.2877,6.78815 +L 5.2877,6.78815,5.4387,7.398291 +L 5.4387,7.398291,4.8604,7.398291 +L 4.8604,7.398291,4.2895,7.398291 +L 4.2895,7.398291,3.7291,7.398291 +L 1.628,6.368674,1.8977,6.368674 +L 1.8977,6.368674,2.1744,6.368674 +L 2.1744,6.368674,2.4507,6.368674 + +[惑] 57 +L 5.4407,7.932197,5.2862,8.302281 +L 5.2862,8.302281,5.1426,8.655333 +L 5.1426,8.655333,5.0134,9.000024 +L 5.8645,7.932197,6.1408,8.035346 +L 6.1408,8.035346,6.4245,8.121467 +L 6.4245,8.121467,6.7222,8.19913 +L 6.7222,8.19913,6.5685,8.466102 +L 6.5685,8.466102,6.4245,8.733035 +L 6.4245,8.733035,6.2918,9.000024 +L 0.768,0.266939,0.9015,0.877116 +L 0.9015,0.877116,1.0486,1.4873 +L 1.0486,1.4873,1.1988,2.097486 +L 3.3357,0.000004,3.0345,0.453374 +L 3.0345,0.453374,2.9259,1.135603 +L 2.9259,1.135603,2.9084,2.631346 +L 3.7595,0.000004,4.5931,0.000004 +L 4.5931,0.000004,5.4407,0.000004 +L 5.4407,0.000004,6.2918,0.000004 +L 6.2918,0.000004,6.2918,0.370041 +L 6.2918,0.370041,6.2918,0.723179 +L 6.2918,0.723179,6.2918,1.067739 +L 8.0006,0.800852,7.7032,1.2472 +L 7.7032,1.2472,7.4231,1.676562 +L 7.4231,1.676562,7.1495,2.097486 +L 5.0134,1.868618,4.8589,2.134213 +L 4.8589,2.134213,4.7153,2.391244 +L 4.7153,2.391244,4.5822,2.631346 +L 7.5733,3.16526,6.9923,3.699129 +L 6.9923,3.699129,6.4245,4.233034 +L 6.4245,4.233034,5.8645,4.766948 +L 5.8645,4.766948,4.2673,3.863005 +L 4.2673,3.863005,2.4492,3.662455 +L 2.4492,3.662455,0.768,3.699129 +L 8.0006,3.16526,8.0006,3.699129 +L 8.0006,3.699129,8.0006,4.233034 +L 8.0006,4.233034,8.0006,4.766948 +L 1.6261,5.300901,1.6261,5.834721 +L 1.6261,5.834721,1.6261,6.368674 +L 1.6261,6.368674,1.6261,6.902544 +L 1.6261,6.902544,2.3266,6.902544 +L 2.3266,6.902544,3.0376,6.902544 +L 3.0376,6.902544,3.7595,6.902544 +L 3.7595,6.902544,3.7595,6.368674 +L 3.7595,6.368674,3.7595,5.834721 +L 3.7595,5.834721,3.7595,5.300901 +L 3.7595,5.300901,3.0376,5.300901 +L 3.0376,5.300901,2.3266,5.300901 +L 2.3266,5.300901,1.6261,5.300901 +L 5.4407,5.300901,5.1426,6.177957 +L 5.1426,6.177957,4.8589,7.055038 +L 4.8589,7.055038,4.5822,7.932197 +L 4.5822,7.932197,3.3038,7.932197 +L 3.3038,7.932197,2.0289,7.932197 +L 2.0289,7.932197,0.768,7.932197 +L 6.2918,5.300901,6.5685,5.670939 +L 6.5685,5.670939,6.8483,6.023983 +L 6.8483,6.023983,7.1495,6.368674 + +[枠] 42 +L 2.5076,6.902544,2.206,7.310739 +L 2.206,7.310739,2.1013,7.854532 +L 2.1013,7.854532,2.0835,9.000024 +L 2.0835,0.000004,1.9998,1.600252 +L 1.9998,1.600252,1.9294,3.192084 +L 1.9294,3.192084,1.8698,4.766948 +L 1.8698,4.766948,1.5056,4.069212 +L 1.5056,4.069212,1.1452,3.354528 +L 1.1452,3.354528,0.8019,2.631346 +L 5.4703,0.000004,5.3828,2.329094 +L 5.3828,2.329094,4.8262,3.098835 +L 4.8262,3.098835,3.3342,3.16526 +L 5.8976,3.16526,5.5968,3.580462 +L 5.5968,3.580462,5.4843,3.995759 +L 5.4843,3.995759,5.4703,4.766948 +L 6.3214,3.16526,6.7316,3.16526 +L 6.7316,3.16526,7.1515,3.16526 +L 7.1515,3.16526,7.5718,3.16526 +L 3.3342,4.233034,2.5812,5.043769 +L 2.5812,5.043769,2.1434,5.735885 +L 2.1434,5.735885,1.6565,6.902544 +L 1.6565,6.902544,1.3585,6.902544 +L 1.3585,6.902544,1.0783,6.902544 +L 1.0783,6.902544,0.8019,6.902544 +L 3.7615,5.300901,4.1884,5.937872 +L 4.1884,5.937872,4.6157,6.557936 +L 4.6157,6.557936,5.0395,7.169461 +L 5.0395,7.169461,4.7107,7.706208 +L 4.7107,7.706208,4.3776,7.903932 +L 4.3776,7.903932,3.7615,7.932197 +L 6.7176,5.300901,6.4405,5.75427 +L 6.4405,5.75427,6.3389,6.436454 +L 6.3389,6.436454,6.3214,7.932197 +L 6.3214,7.932197,5.7085,7.971703 +L 5.7085,7.971703,5.3726,8.248576 +L 5.3726,8.248576,5.0395,9.000024 +L 7.148,5.300901,7.4251,5.300901 +L 7.4251,5.300901,7.7052,5.300901 +L 7.7052,5.300901,8.0026,5.300901 +L 8.0026,5.300901,8.0026,5.670939 +L 8.0026,5.670939,8.0026,6.023983 +L 8.0026,6.023983,8.0026,6.368674 + +[湾] 42 +L 2.0823,7.932197,1.8088,8.302281 +L 1.8088,8.302281,1.5359,8.655333 +L 1.5359,8.655333,1.2589,9.000024 +L 6.7511,7.932197,7.1784,7.932197 +L 7.1784,7.932197,7.6057,7.932197 +L 7.6057,7.932197,8.0295,7.932197 +L 0.8316,0.266939,1.2379,1.411022 +L 1.2379,1.411022,1.6582,2.555121 +L 1.6582,2.555121,2.0823,3.699129 +L 5.8961,0.000004,7.1013,0.145494 +L 7.1013,0.145494,7.5391,0.757018 +L 7.5391,0.757018,7.6057,2.097486 +L 7.6057,2.097486,6.3234,2.097486 +L 6.3234,2.097486,5.0524,2.097486 +L 5.0524,2.097486,3.7912,2.097486 +L 3.7912,2.097486,3.7912,2.631346 +L 3.7912,2.631346,3.7912,3.16526 +L 3.7912,3.16526,3.7912,3.699129 +L 3.7912,3.699129,4.9189,3.699129 +L 4.9189,3.699129,6.0506,3.699129 +L 6.0506,3.699129,7.1784,3.699129 +L 7.1784,3.699129,7.1784,4.069212 +L 7.1784,4.069212,7.1784,4.422296 +L 7.1784,4.422296,7.1784,4.766948 +L 7.1784,4.766948,5.9,4.766948 +L 5.9,4.766948,4.6251,4.766948 +L 4.6251,4.766948,3.3639,4.766948 +L 1.655,5.834721,1.3815,6.204797 +L 1.3815,6.204797,1.1086,6.557936 +L 1.1086,6.557936,0.8316,6.902544 +L 3.7912,5.834721,4.3936,6.624321 +L 4.3936,6.624321,4.6142,7.168074 +L 4.6142,7.168074,4.6461,7.932197 +L 4.6461,7.932197,4.0679,7.932197 +L 4.0679,7.932197,3.4973,7.932197 +L 3.4973,7.932197,2.9401,7.932197 +L 6.3234,5.834721,6.3234,6.548043 +L 6.3234,6.548043,6.3234,7.244402 +L 6.3234,7.244402,6.3234,7.932197 +L 6.3234,7.932197,5.9,7.932197 +L 5.9,7.932197,5.4797,7.932197 +L 5.4797,7.932197,5.0734,7.932197 + +[腕] 57 +L 3.3977,6.902544,3.3977,7.245747 +L 3.3977,7.245747,3.3977,7.588992 +L 3.3977,7.588992,3.3977,7.932197 +L 3.3977,7.932197,4.0982,7.932197 +L 4.0982,7.932197,4.7984,7.932197 +L 4.7984,7.932197,5.5027,7.932197 +L 5.5027,7.932197,5.5027,8.302281 +L 5.5027,8.302281,5.5027,8.655333 +L 5.5027,8.655333,5.5027,9.000024 +L 8.0346,6.902544,8.0346,7.245747 +L 8.0346,7.245747,8.0346,7.588992 +L 8.0346,7.588992,8.0346,7.932197 +L 8.0346,7.932197,7.3306,7.932197 +L 7.3306,7.932197,6.6305,7.932197 +L 6.6305,7.932197,5.9297,7.932197 +L 0.8301,0.266939,1.1316,1.104497 +L 1.1316,1.104497,1.2437,3.230196 +L 1.2437,3.230196,1.2574,8.466102 +L 1.2574,8.466102,1.6885,8.466102 +L 1.6885,8.466102,2.1158,8.466102 +L 2.1158,8.466102,2.5396,8.466102 +L 2.5396,8.466102,2.5396,5.644105 +L 2.5396,5.644105,2.5396,2.822008 +L 2.5396,2.822008,2.5396,0.000004 +L 3.3977,0.000004,3.9473,0.980227 +L 3.9473,0.980227,4.5007,1.943504 +L 4.5007,1.943504,5.0719,2.898326 +L 5.0719,2.898326,4.7076,3.16526 +L 4.7076,3.16526,4.3536,3.432194 +L 4.3536,3.432194,4.0037,3.699129 +L 4.0037,3.699129,3.7932,3.535344 +L 3.7932,3.535344,3.5865,3.354528 +L 3.5865,3.354528,3.3977,3.16526 +L 6.7807,0.000004,6.4795,0.571977 +L 6.4795,0.571977,6.3713,2.084813 +L 6.3713,2.084813,6.3538,5.834721 +L 6.3538,5.834721,6.7807,5.834721 +L 6.7807,5.834721,7.208,5.834721 +L 7.208,5.834721,7.6353,5.834721 +L 7.6353,5.834721,7.6353,4.766948 +L 7.6353,4.766948,7.6353,3.699129 +L 7.6353,3.699129,7.6353,2.631346 +L 7.208,0.000004,7.4816,0.000004 +L 7.4816,0.000004,7.7579,0.000004 +L 7.7579,0.000004,8.0346,0.000004 +L 8.0346,0.000004,8.0346,0.370041 +L 8.0346,0.370041,8.0346,0.723179 +L 8.0346,0.723179,8.0346,1.067739 +L 5.0719,3.699129,5.3766,4.134197 +L 5.3766,4.134197,5.4848,4.687835 +L 5.4848,4.687835,5.5027,5.834721 +L 5.5027,5.834721,5.0719,5.834721 +L 5.0719,5.834721,4.6446,5.834721 +L 4.6446,5.834721,4.2208,5.834721 +L 4.2208,5.834721,4.2033,5.063532 +L 4.2033,5.063532,4.0944,4.648292 +L 4.0944,4.648292,3.7932,4.233034 + +[於] 30 +L 2.1455,7.398291,2.1455,7.932197 +L 2.1455,7.932197,2.1455,8.466102 +L 2.1455,8.466102,2.1455,9.000024 +L 2.5416,7.398291,2.9689,7.398291 +L 2.9689,7.398291,3.3962,7.398291 +L 3.3962,7.398291,3.82,7.398291 +L 0.864,0.266939,1.5186,2.725965 +L 1.5186,2.725965,1.7151,4.939263 +L 1.7151,4.939263,1.7151,7.398291 +L 1.7151,7.398291,1.4205,7.398291 +L 1.4205,7.398291,1.1403,7.398291 +L 1.1403,7.398291,0.864,7.398291 +L 2.1455,0.000004,3.3892,0.984453 +L 3.3892,0.984453,3.5328,3.146927 +L 3.5328,3.146927,3.3962,5.300901 +L 3.3962,5.300901,2.9689,5.300901 +L 2.9689,5.300901,2.5486,5.300901 +L 2.5486,5.300901,2.1455,5.300901 +L 7.21,0.000004,6.5064,0.533911 +L 6.5064,0.533911,5.8059,1.067739 +L 5.8059,1.067739,5.1016,1.60173 +L 6.7827,3.16526,6.5064,3.535344 +L 6.5064,3.535344,6.2297,3.888343 +L 6.2297,3.888343,5.96,4.233034 +L 4.2505,4.766948,5.1755,6.347416 +L 5.1755,6.347416,5.6658,7.444903 +L 5.6658,7.444903,6.1422,9.000024 +L 6.1422,9.000024,6.6391,8.487275 +L 6.6391,8.487275,7.1368,7.389844 +L 7.1368,7.389844,8.0611,4.766948 + +[霞] 51 +L 1.2579,-0.000004,1.2579,1.411022 +L 1.2579,1.411022,1.2579,2.822016 +L 1.2579,2.822016,1.2579,4.233034 +L 1.2579,4.233034,1.9619,4.233034 +L 1.9619,4.233034,2.6729,4.233034 +L 2.6729,4.233034,3.3947,4.233034 +L 3.3947,4.233034,3.3947,3.888336 +L 3.3947,3.888336,3.3947,3.535344 +L 3.3947,3.535344,3.3947,3.165252 +L 3.3947,3.165252,2.8165,3.165252 +L 2.8165,3.165252,2.2456,3.165252 +L 2.2456,3.165252,1.6852,3.165252 +L 4.4591,-0.000004,4.9533,0.370041 +L 4.9533,0.370041,5.4402,0.723187 +L 5.4402,0.723187,5.927,1.067731 +L 5.927,1.067731,5.5939,1.639851 +L 5.5939,1.639851,5.272,1.906784 +L 5.272,1.906784,4.6763,2.097494 +L 7.6358,-0.000004,7.2085,0.370041 +L 7.2085,0.370041,6.7812,0.723187 +L 6.7812,0.723187,6.3575,1.067731 +L 6.3575,1.067731,6.4874,1.334719 +L 6.4874,1.334719,6.6271,1.601723 +L 6.6271,1.601723,6.7812,1.86861 +L 6.7812,1.86861,6.4874,1.944935 +L 6.4874,1.944935,6.1998,2.02116 +L 6.1998,2.02116,5.927,2.097494 +L 1.6852,1.067731,2.2456,1.067731 +L 2.2456,1.067731,2.8165,1.067731 +L 2.8165,1.067731,3.3947,1.067731 +L 1.6852,2.097494,2.2456,2.097494 +L 2.2456,2.097494,2.8165,2.097494 +L 2.8165,2.097494,3.3947,2.097494 +L 4.6763,3.165252,5.5064,3.165252 +L 5.5064,3.165252,6.3575,3.165252 +L 6.3575,3.165252,7.2085,3.165252 +L 7.2085,3.165252,7.2085,3.535344 +L 7.2085,3.535344,7.2085,3.888336 +L 7.2085,3.888336,7.2085,4.233034 +L 7.2085,4.233034,6.3575,4.233034 +L 6.3575,4.233034,5.5064,4.233034 +L 5.5064,4.233034,4.6763,4.233034 +L 0.8625,5.999978,0.8625,7.500009 +L 0.8625,7.500009,8.0631,7.500009 +L 8.0631,7.500009,8.0631,5.999978 +L 7.1634,9.000041,1.7622,9.000041 +L 1.7237,6.500005,3.5593,6.500005 +L 1.7622,5.500003,3.5593,5.500003 +L 7.1984,6.500005,5.3663,6.500005 +L 7.1634,5.500003,5.3663,5.500003 +L 4.4591,9.000041,4.4591,4.49999 + +[嬉] 52 +L 4.2478,6.902552,4.8082,7.005677 +L 4.8082,7.005677,5.3791,7.091821 +L 5.3791,7.091821,5.9567,7.169453 +L 5.9567,7.169453,5.5924,7.706224 +L 5.5924,7.706224,5.039,7.903939 +L 5.039,7.903939,3.8205,7.932205 +L 6.384,6.902552,6.7906,6.902552 +L 6.7906,6.902552,7.2105,6.902552 +L 7.2105,6.902552,7.6378,6.902552 +L 6.384,7.932205,6.2334,8.302274 +L 6.2334,8.302274,6.0901,8.65534 +L 6.0901,8.65534,5.9567,9.000016 +L 6.8151,7.932205,7.2179,7.932205 +L 7.2179,7.932205,7.6378,7.932205 +L 7.6378,7.932205,8.0616,7.932205 +L 4.6748,-0.000004,4.6748,0.533918 +L 4.6748,0.533918,4.6748,1.067731 +L 4.6748,1.067731,4.6748,1.601723 +L 4.6748,1.601723,5.5294,1.601723 +L 5.5294,1.601723,6.384,1.601723 +L 6.384,1.601723,7.2389,1.601723 +L 7.2389,1.601723,7.2389,1.067731 +L 7.2389,1.067731,7.2389,0.533918 +L 7.2389,0.533918,7.2389,-0.000004 +L 7.2389,-0.000004,6.384,-0.000004 +L 6.384,-0.000004,5.5294,-0.000004 +L 5.5294,-0.000004,4.6748,-0.000004 +L 3.8205,2.631331,4.2478,2.734466 +L 4.2478,2.734466,4.6748,2.820577 +L 4.6748,2.820577,5.1056,2.898342 +L 5.1056,2.898342,4.8009,3.540964 +L 4.8009,3.540964,4.6926,4.302252 +L 4.6926,4.302252,4.6748,5.834715 +L 4.6748,5.834715,5.5294,5.834715 +L 5.5294,5.834715,6.384,5.834715 +L 6.384,5.834715,7.2389,5.834715 +L 7.2389,5.834715,7.2214,4.302252 +L 7.2214,4.302252,7.1125,3.540964 +L 7.1125,3.540964,6.8151,2.898342 +L 6.8151,2.898342,7.2179,2.820577 +L 7.2179,2.820577,7.6378,2.734466 +L 7.6378,2.734466,8.0616,2.631331 +L 5.5294,2.631331,5.8064,2.631331 +L 5.8064,2.631331,6.0901,2.631331 +L 6.0901,2.631331,6.384,2.631331 +L 5.1056,4.233034,5.6593,4.233034 +L 5.6593,4.233034,6.2334,4.233034 +L 6.2334,4.233034,6.8151,4.233034 +L 4.2653,6.330307,0.668,6.330307 +L 1.5226,3.326528,2.1428,8.999893 +A -3.8709,-3.399561,8.620981,23.224227,51.278884 +A -5.7275,6.330307,9.138971,316.15783,0 + +[稀] 50 +L 4.0358,6.902552,4.523,7.245732 +L 4.523,7.245732,5.02,7.588992 +L 5.02,7.588992,5.5314,7.932205 +L 5.5314,7.932205,5.199,8.307947 +L 5.199,8.307947,4.8659,8.446277 +L 4.8659,8.446277,4.2495,8.466095 +L 7.6363,6.902552,7.0553,7.245732 +L 7.0553,7.245732,6.4879,7.588992 +L 6.4879,7.588992,5.9275,7.932205 +L 6.5684,8.466095,6.7852,8.65534 +L 6.7852,8.65534,6.9957,8.836187 +L 6.9957,8.836187,7.2055,9.000016 +L 5.9275,-0.000004,5.9275,1.247192 +L 5.9275,1.247192,5.9275,2.477417 +L 5.9275,2.477417,5.9275,3.699122 +L 5.9275,3.699122,5.3566,3.699122 +L 5.3566,3.699122,4.7962,3.699122 +L 4.7962,3.699122,4.2495,3.699122 +L 4.2495,3.699122,4.2495,2.822016 +L 4.2495,2.822016,4.2495,1.944935 +L 4.2495,1.944935,4.2495,1.067731 +L 6.7852,1.067731,7.0553,1.067731 +L 7.0553,1.067731,7.339,1.067731 +L 7.339,1.067731,7.6363,1.067731 +L 7.6363,1.067731,7.6363,1.944935 +L 7.6363,1.944935,7.6363,2.822016 +L 7.6363,2.822016,7.6363,3.699122 +L 7.6363,3.699122,7.2055,3.699122 +L 7.2055,3.699122,6.7852,3.699122 +L 6.7852,3.699122,6.3548,3.699122 +L 2.9644,2.097494,3.2408,2.467531 +L 3.2408,2.467531,3.5245,2.820577 +L 3.5245,2.820577,3.8225,3.165252 +L 4.6736,4.233034,4.8102,4.500021 +L 4.8102,4.500021,4.9503,4.766955 +L 4.9503,4.766955,5.1041,5.033891 +L 5.1041,5.033891,4.523,5.137016 +L 4.523,5.137016,3.9553,5.223182 +L 3.9553,5.223182,3.3952,5.300892 +L 5.5314,5.56778,5.654,5.834715 +L 5.654,5.834715,5.7839,6.101648 +L 5.7839,6.101648,5.9275,6.368682 +L 5.9275,5.300892,6.6315,5.300892 +L 6.6315,5.300892,7.339,5.300892 +L 7.339,5.300892,8.0636,5.300892 +L 0.4392,5.834784,3.8225,5.834784 +L 0.4392,1.6018,2.113,5.13169 +L 2.113,-0.000004,2.113,8.051713 +L 3.3952,2.436215,2.113,5.13169 +A 1.1813,12.731809,4.772113,266.17535,297.6407 + +[沙] 8 +L 2.1153,7.970309,1.2887,8.999792 +L 1.6877,5.834591,0.865,6.902374 +L 2.1153,3.470406,0.865,-0.00005 +L 5.3621,9.000016,5.3621,2.999958 +L 5.3621,2.999958,4.511,2.999958 +A -0.9178,7.499962,4.480028,323.04571,0 +A 3.5825,4.806662,4.480028,0,36.954284 +A 2.6617,4.499967,4.500046,270,0 + + +# kan_40 ------------------------------------------------------- +# 蒔梢爽汰只旦蝶憧瞳那眉湧嵐呂 + +[蒔] 32 +L 2.1084,1.067867,0.4304,1.067867 +L 2.1084,5.834807,2.1084,1.067867 +L 0.4304,5.834807,2.1084,5.834807 +L 0.4304,1.067867,0.4304,5.834807 +L 0.8615,3.699212,1.6846,3.699212 +L 5.9187,4.233033,2.9626,4.233033 +L 5.9362,3.488692,5.9187,4.233033 +L 6.0451,3.083368,5.9362,3.488692 +L 6.3498,2.669504,6.0451,3.083368 +L 5.4988,2.669504,4.924,2.59184 +L 4.924,2.59184,4.3671,2.505674 +L 4.3671,2.505674,3.8176,2.402574 +L 3.8176,2.402574,4.0939,1.971769 +L 4.0939,1.971769,4.3745,1.524019 +L 4.3745,1.524019,4.6718,1.067867 +L 5.0676,0,5.9187,0 +L 5.9187,0,5.905,1.522626 +L 5.905,1.522626,5.793,2.214703 +L 5.793,2.214703,5.4988,2.669504 +L 6.3498,4.233033,7.2041,4.233033 +L 5.9187,5.834807,6.7768,5.834807 +L 5.4988,5.834807,5.0676,6.557881 +L 5.0676,6.557881,4.6477,7.272657 +L 4.6477,7.272657,4.2449,7.970309 +L 4.2449,7.970309,0.0034,7.970309 +L 4.7314,8.759923,4.6718,9.000016 +L 4.7944,8.502876,4.7314,8.759923 +L 4.854,8.237334,4.7944,8.502876 +L 5.4988,7.970309,7.2041,7.970309 +L 5.0676,5.033912,4.7419,5.597493 +L 4.7419,5.597493,4.3076,5.805094 +L 4.3076,5.805094,3.3938,5.834807 + +[梢] 13 +L 1.2835,0,1.2835,9.000047 +L 1.2835,5.150061,0.0019,3.165205 +L 2.11,4.500053,1.2835,6.048346 +L 2.11,6.902681,0.0019,6.902681 +L 2.7058,6.000007,2.7058,0.000008 +L 2.7058,6.000007,7.2026,6.000007 +L 7.2026,6.000007,7.2026,0 +L 7.2026,0,6.3025,0 +L 2.7058,4.500029,7.2026,4.500029 +L 7.2026,3.000013,2.7058,3.000013 +L 4.954,6.000007,4.954,9.000047 +L 3.9523,7.00001,2.7058,8.250031 +L 5.9557,7.00001,7.2026,8.250031 + +[爽] 35 +L 0.2487,0,1.0123,0.723133 +L 1.0123,0.723133,1.7831,1.437908 +L 1.7831,1.437908,2.5673,2.135641 +L 2.5673,2.135641,1.3135,3.699212 +L 1.3135,3.699212,0.0351,2.669551 +L 0.8897,4.233033,0.4592,4.767033 +L 0.4592,4.766986,0.7356,5.137063 +L 0.7356,5.137063,1.0193,5.490169 +L 1.0193,5.490169,1.3135,5.834807 +L 1.3135,5.834807,0.4592,6.902627 +L 2.2942,8.06074,0.0351,7.970309 +L 3.2332,7.320664,2.2942,8.06074 +L 3.4184,4.233033,3.2332,7.320664 +L 3.4184,3.699212,3.2678,3.355961 +L 3.2678,3.355961,3.1242,3.012755 +L 3.1242,3.012755,2.9946,2.669504 +L 6.3815,0,3.4184,3.699212 +L 3.5554,8.656811,3.4184,9.000016 +L 3.6951,8.31356,3.5554,8.656811 +L 3.8496,7.970309,3.6951,8.31356 +L 4.2734,7.970309,6.8057,7.970309 +L 5.5549,5.834807,4.7038,6.902627 +L 5.2646,5.490169,5.5549,5.834807 +L 4.977,5.137063,5.2646,5.490169 +L 4.7038,4.766986,4.977,5.137063 +L 5.5549,3.699212,4.7038,4.766986 +L 5.2646,3.355961,5.5549,3.699212 +L 4.977,3.012755,5.2646,3.355961 +L 4.7038,2.669504,4.977,3.012755 +L 5.9822,4.233033,6.2488,4.628557 +L 6.2488,4.628557,6.2488,4.905369 +L 6.2488,4.905369,5.9822,5.300901 +L 2.0073,4.905369,1.7408,5.300901 +L 2.0073,4.628557,2.0073,4.905369 +L 1.7408,4.233033,2.0073,4.628557 + +[汰] 20 +L 2.1736,0,3.4033,2.163863 +L 3.4033,2.163863,4.0579,3.607396 +L 4.0579,3.607396,4.6992,5.567873 +L 4.6992,5.567873,4.5591,5.834807 +L 4.5591,5.834807,4.426,6.101732 +L 4.426,6.101732,4.3066,6.368674 +L 4.3066,6.368674,2.1736,6.368674 +L 7.2626,0,6.0473,2.134247 +L 6.0473,2.134247,5.4939,3.370074 +L 5.4939,3.370074,5.1296,4.766986 +L 5.1296,0.533906,4.8529,0.903952 +L 4.8529,0.903952,4.5833,1.257136 +L 4.5833,1.257136,4.3066,1.601727 +L 5.1296,6.368674,4.8249,6.82209 +L 4.8249,6.82209,4.7164,7.504266 +L 4.7164,7.504266,4.6992,9.000016 +L 5.5569,6.368674,7.2626,6.368674 +L 1.3155,7.970355,0.4924,8.999838 +L 0.8882,5.834636,0.0616,6.902418 +L 1.3155,3.470461,0.0616,-0.000004 + +[只] 10 +L 0.2807,0,0.9217,0.723133 +L 0.9217,0.723133,1.5591,1.437908 +L 1.5591,1.437908,2.2004,2.135641 +L 7.2615,0,6.561,0.723133 +L 6.561,0.723133,5.8602,1.437908 +L 5.8602,1.437908,5.1565,2.135641 +L 1.3455,3.699212,1.3455,8.466102 +L 1.3455,8.466102,6.0146,8.466102 +L 6.0146,8.466102,6.0146,3.699212 +L 6.0146,3.699212,1.3455,3.699212 + +[旦] 6 +L 0.094,0,7.2947,0 +L 1.3794,2.135641,1.3794,8.466102 +L 1.3794,8.466102,6.0166,8.466102 +L 6.0166,8.466102,6.0166,2.135641 +L 6.0166,2.135641,1.3794,2.135641 +L 1.7751,5.300901,5.5855,5.300901 + +[蝶] 38 +L 5.1882,0,5.1076,0.903952 +L 5.1076,0.903952,5.0376,1.790961 +L 5.0376,1.790961,4.9745,2.669504 +L 4.9745,2.669504,3.4128,1.327748 +L 3.4128,1.327748,1.9729,0.807908 +L 1.9729,0.807908,0.1271,0.533906 +L 6.8977,1.067867,5.633,2.646899 +L 5.633,2.646899,4.6558,3.073474 +L 4.6558,3.073474,3.0867,3.203418 +L 1.3775,1.601727,1.3498,3.233084 +L 1.3498,3.233084,1.0451,4.025432 +L 1.0451,4.025432,0.1271,4.233033 +L 0.1271,4.233033,0.1271,6.902627 +L 0.1271,6.902627,1.0872,7.175174 +L 1.0872,7.175174,1.3709,7.913903 +L 1.3709,7.913903,1.3775,9.000016 +L 6.0428,3.203418,7.3247,3.203418 +L 5.1882,3.699212,5.1882,4.766986 +L 5.1882,4.766986,3.9417,4.766986 +L 3.9417,4.766986,3.9417,9.000016 +L 1.8052,4.233033,1.332,5.450609 +L 1.332,5.450609,1.6857,6.47321 +L 1.6857,6.47321,2.6594,6.902627 +L 2.6594,6.902627,2.6594,4.233033 +L 2.6594,4.233033,1.8052,4.233033 +L 5.6193,4.766986,7.3247,4.766986 +L 5.1882,5.834807,5.1567,6.605989 +L 5.1567,6.605989,4.936,7.0212 +L 4.936,7.0212,4.3371,7.436487 +L 5.6193,5.834807,6.4736,5.834807 +L 6.4736,5.834807,6.4736,6.902627 +L 6.4736,6.902627,6.0428,7.272657 +L 6.0428,7.272657,5.6193,7.625802 +L 5.6193,7.625802,5.1882,7.970309 +L 5.1882,7.970309,5.1882,9.000016 +L 6.8977,7.436487,6.5997,7.850351 +L 6.5997,7.850351,6.4914,8.255667 +L 6.4914,8.255667,6.4736,9.000016 + +[憧] 37 +L 0.9802,0,0.9802,9.000016 +L 2.2621,0,4.7944,0 +L 4.7944,0,4.5597,1.330527 +L 4.5597,1.330527,3.9507,1.644066 +L 3.9507,1.644066,3.0852,1.601727 +L 5.2217,0,7.3267,0 +L 5.2217,1.601727,4.924,2.135641 +L 4.924,2.135641,4.6438,2.669504 +L 4.6438,2.669504,4.3675,3.203418 +L 4.3675,3.203418,3.0852,3.203418 +L 3.0852,3.203418,3.0852,5.300901 +L 3.0852,5.300901,6.5004,5.300901 +L 6.5004,5.300901,6.5004,3.203418 +L 6.5004,3.203418,5.3513,3.470391 +L 5.3513,3.470391,4.385,3.966146 +L 4.385,3.966146,3.5164,4.233033 +L 5.6455,1.601727,6.5004,1.601727 +L 0.126,5.300901,0.126,7.436487 +L 1.8352,6.635608,1.6807,6.902627 +L 1.6807,6.902627,1.541,7.169568 +L 1.541,7.169568,1.4114,7.436487 +L 2.2621,6.368674,2.812,6.471786 +L 2.812,6.471786,3.3654,6.557881 +L 3.3654,6.557881,3.9363,6.635608 +L 3.9363,6.635608,3.6106,7.396943 +L 3.6106,7.396943,3.2778,7.742981 +L 3.2778,7.742981,2.6579,7.970309 +L 4.3675,6.368674,4.7944,6.471786 +L 4.7944,6.471786,5.2217,6.557881 +L 5.2217,6.557881,5.6455,6.635608 +L 5.6455,6.635608,5.7751,7.005724 +L 5.7751,7.005724,5.926,7.358775 +L 5.926,7.358775,6.0766,7.703421 +L 6.0766,7.703421,5.3513,7.806532 +L 5.3513,7.806532,4.6438,7.892738 +L 4.6438,7.892738,3.9363,7.970309 +L 6.0766,6.368674,7.3267,6.368674 + +[瞳] 34 +L 2.2641,0,4.8244,0 +L 4.8244,0,4.5901,1.330527 +L 4.5901,1.330527,3.9807,1.644066 +L 3.9807,1.644066,3.1152,1.601727 +L 5.2202,0,7.3567,0 +L 0.1592,1.601727,0.1592,8.466102 +L 0.1592,8.466102,1.4099,8.466102 +L 1.4099,8.466102,1.4099,1.601727 +L 1.4099,1.601727,0.1592,1.601727 +L 5.2202,1.601727,4.3936,3.203418 +L 4.3936,3.203418,3.1152,3.203418 +L 3.1152,3.203418,3.1152,5.300901 +L 3.1152,5.300901,6.5056,5.300901 +L 6.5056,5.300901,6.5056,3.203418 +L 6.5056,3.203418,5.3533,3.470391 +L 5.3533,3.470391,4.4045,3.966146 +L 4.4045,3.966146,3.5425,4.233033 +L 5.6475,1.601727,6.5056,1.601727 +L 2.2641,6.368674,2.8179,6.471786 +L 2.8179,6.471786,3.3923,6.557881 +L 3.3923,6.557881,3.9733,6.635608 +L 3.9733,6.635608,3.6374,7.396943 +L 3.6374,7.396943,3.3047,7.742981 +L 3.3047,7.742981,2.6848,7.970309 +L 4.3936,6.368674,4.8034,6.471786 +L 4.8034,6.471786,5.2237,6.557881 +L 5.2237,6.557881,5.6475,6.635608 +L 5.6475,6.635608,5.7809,7.005724 +L 5.7809,7.005724,5.9245,7.358775 +L 5.9245,7.358775,6.0751,7.703421 +L 6.0751,7.703421,5.3743,7.806532 +L 5.3743,7.806532,4.6738,7.892738 +L 4.6738,7.892738,3.9733,7.970309 +L 6.0751,6.368674,7.3567,6.368674 + +[那] 26 +L 0.1577,0,0.9107,1.272643 +L 0.9107,1.272643,1.317,2.350345 +L 1.317,2.350345,1.436,3.699212 +L 1.436,3.699212,0.1577,3.699212 +L 1.8672,0,3.2332,0.594671 +L 3.2332,0.594671,3.5901,2.01132 +L 3.5901,2.01132,3.5725,3.699212 +L 3.5725,3.699212,1.8672,3.699212 +L 1.8672,3.699212,1.7898,5.594705 +L 1.7898,5.594705,1.3345,6.278291 +L 1.3345,6.278291,0.1577,6.368674 +L 5.2537,0,5.2537,8.466102 +L 5.2537,8.466102,7.3867,8.466102 +L 7.3867,8.466102,6.9244,5.985917 +L 6.9244,5.985917,7.1559,4.514165 +L 7.1559,4.514165,7.3867,2.135641 +L 7.3867,2.135641,7.0578,1.759851 +L 7.0578,1.759851,6.7248,1.621503 +L 6.7248,1.621503,6.1052,1.601727 +L 3.5725,4.233033,3.5725,6.368674 +L 3.5725,6.368674,2.2766,6.539549 +L 2.2766,6.539549,1.8809,7.176568 +L 1.8809,7.176568,1.8672,8.466102 +L 1.8672,8.466102,0.1577,8.466102 +L 3.5725,6.902627,3.5725,8.466102 +L 3.5725,8.466102,2.291,8.466102 + +[眉] 12 +L 2.7164,0,2.7164,5.300901 +L 2.7164,5.300901,6.531,5.300901 +L 6.531,5.300901,6.531,0 +L 6.531,0,2.7164,0 +L 0.1915,0.533906,0.9897,2.929378 +L 0.9897,2.929378,1.1123,5.994364 +L 1.1123,5.994364,1.0426,8.466102 +L 1.0426,8.466102,6.9614,8.466102 +L 6.9614,8.466102,6.9614,6.902627 +L 6.9614,6.902627,1.4699,6.902627 +L 3.1476,2.135641,6.1348,2.135641 +L 3.1476,3.699212,6.1348,3.699212 + +[湧] 40 +L 0.2177,0.26698,0.624,1.411072 +L 0.624,1.411072,1.0446,2.555113 +L 1.0446,2.555113,1.4649,3.699212 +L 2.5363,0,4.4592,1.601727 +L 4.4592,1.601727,4.4592,2.669504 +L 4.4592,2.669504,2.323,2.669504 +L 5.2857,0,6.4836,0.403977 +L 6.4836,0.403977,6.9284,1.401182 +L 6.9284,1.401182,6.9918,2.669504 +L 6.9918,2.669504,4.8549,2.669504 +L 4.8549,2.669504,4.8409,3.4139 +L 4.8409,3.4139,4.7359,3.819217 +L 4.7359,3.819217,4.4592,4.233033 +L 4.4592,4.233033,2.7535,4.233033 +L 2.7535,4.233033,2.7535,6.368674 +L 2.7535,6.368674,3.9688,6.388494 +L 3.9688,6.388494,4.5117,6.526884 +L 4.5117,6.526884,4.8549,6.902627 +L 4.8549,6.902627,4.1544,7.909637 +L 4.1544,7.909637,3.6154,8.2981 +L 3.6154,8.2981,2.7535,8.466102 +L 5.2857,4.233033,4.6553,4.98452 +L 4.6553,4.98452,4.1124,5.261348 +L 4.1124,5.261348,3.1738,5.300901 +L 5.7095,4.233033,6.9918,4.233033 +L 6.9918,4.233033,6.9918,5.300901 +L 6.9918,5.300901,5.7726,5.32068 +L 5.7726,5.32068,5.2192,5.459009 +L 5.2192,5.459009,4.8549,5.834807 +L 4.8549,5.834807,5.2192,6.190686 +L 5.2192,6.190686,5.7726,6.190686 +L 5.7726,6.190686,6.9918,5.834807 +L 1.0446,5.834807,0.7644,6.204844 +L 0.7644,6.204844,0.4909,6.557881 +L 0.4909,6.557881,0.2177,6.902627 +L 5.4962,7.436487,6.1368,8.237334 +L 6.1368,8.237334,5.5659,8.31356 +L 5.5659,8.31356,5.0094,8.389878 +L 5.0094,8.389878,4.4592,8.466102 +L 1.4649,7.970309,0.6485,9.000016 + +[嵐] 37 +L 0.2165,0,0.9552,1.987321 +L 0.9552,1.987321,1.1093,3.77121 +L 1.1093,3.77121,1.0708,5.834807 +L 1.0708,5.834807,6.1672,5.834807 +L 6.1672,5.834807,6.1672,1.067867 +L 6.1672,1.067867,6.3805,0.903952 +L 6.3805,0.903952,6.5945,0.723133 +L 6.5945,0.723133,6.8078,0.533906 +L 6.8078,0.533906,6.8712,0.903952 +L 6.8712,0.903952,6.9377,1.257136 +L 6.9377,1.257136,7.0215,1.601727 +L 1.9219,0,3.6031,0 +L 3.6031,0,3.5891,1.146933 +L 3.5891,1.146933,3.4875,1.700569 +L 3.4875,1.700569,3.2111,2.135641 +L 3.2111,2.135641,2.3527,2.135641 +L 2.3527,2.135641,2.3527,3.203418 +L 2.3527,3.203418,3.0886,3.409634 +L 3.0886,3.409634,3.4143,3.607396 +L 3.4143,3.607396,3.6031,3.966146 +L 3.6031,3.966146,3.1758,4.06925 +L 3.1758,4.06925,2.7628,4.155369 +L 2.7628,4.155369,2.3527,4.233033 +L 5.7434,0,5.3932,0.375751 +L 5.3932,0.375751,4.9484,0.514138 +L 4.9484,0.514138,4.0339,0.533906 +L 4.0339,2.135641,3.6871,2.954817 +L 3.6871,2.954817,4.1778,3.197705 +L 4.1778,3.197705,4.885,3.203418 +L 4.885,3.203418,4.885,2.135641 +L 4.885,2.135641,4.0339,2.135641 +L 4.0339,4.766986,4.885,4.766986 +L 1.0708,7.436487,1.0708,8.466102 +L 1.5016,7.436487,3.6031,7.436487 +L 3.6031,7.436487,3.6031,9.000016 +L 4.0339,7.436487,6.1672,7.436487 +L 6.1672,7.436487,6.1672,8.466102 + +[呂] 15 +L 0.6774,0,0.6774,3.203418 +L 0.6774,3.203418,1.5109,3.306522 +L 1.5109,3.306522,2.355,3.392687 +L 2.355,3.392687,3.2061,3.470391 +L 3.2061,3.470391,3.3354,4.08053 +L 3.3354,4.08053,3.486,4.690715 +L 3.486,4.690715,3.6369,5.300901 +L 3.6369,5.300901,1.5285,5.300901 +L 1.5285,5.300901,1.5285,8.466102 +L 1.5285,8.466102,5.7419,8.466102 +L 5.7419,8.466102,5.7419,5.300901 +L 5.7419,5.300901,4.0607,5.300901 +L 1.1047,0,6.5962,0 +L 6.5962,0,6.5962,3.203418 +L 6.5962,3.203418,3.6369,3.203418 + +[] 4 +L 0,0,3,9 +L 3,9,6,0 +L 0.833252,2.5,5.166748,2.5 +A 3,10.5,0.35,0,360 + +[] 7 +L 0.5,6,2.5,6 +A 2.5,4.5,1.5,0,90 +L 4,4.5,4,0 +L 4,0,1.5,0 +A 1.5,1.5,1.5,90,270 +L 1.5,3,4,3 +A 2,8.75,0.35,0,360 + +#EOF diff --git a/pycam/share/mime/application-sla.svg b/pycam/share/mime/application-sla.svg new file mode 100644 index 00000000..5a8b6948 --- /dev/null +++ b/pycam/share/mime/application-sla.svg @@ -0,0 +1,381 @@ + + + + + PyCAM logo + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + PyCAM logo + + + + Lars Kruse <devel@sumpfralle.de> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/pycam/share/mime/icons/128x128/application-sla.png b/pycam/share/mime/icons/128x128/application-sla.png new file mode 100644 index 00000000..496a6da5 Binary files /dev/null and b/pycam/share/mime/icons/128x128/application-sla.png differ diff --git a/pycam/share/mime/icons/32x32/application-sla.png b/pycam/share/mime/icons/32x32/application-sla.png new file mode 100644 index 00000000..49f2d682 Binary files /dev/null and b/pycam/share/mime/icons/32x32/application-sla.png differ diff --git a/pycam/share/mime/icons/64x64/application-sla.png b/pycam/share/mime/icons/64x64/application-sla.png new file mode 100644 index 00000000..8a447fa1 Binary files /dev/null and b/pycam/share/mime/icons/64x64/application-sla.png differ diff --git a/pycam/share/mime/pycam.mime b/pycam/share/mime/pycam.mime new file mode 100644 index 00000000..1fba43ad --- /dev/null +++ b/pycam/share/mime/pycam.mime @@ -0,0 +1,4 @@ +application/sla; pycam '%s'; description="Stereo Lithographic File"; test=test -n "$DISPLAY"; nametemplate=%s.stl +image/vnd.dxf; pycam '%s'; description="Drawing Interchange File"; test=test -n "$DISPLAY"; nametemplate=%s.dxf +image/svg+xml; pycam '%s'; description="Vector Graphics"; test=test -n "$DISPLAY" && which inkscape pstoedit >/dev/null; nametemplate=%s.svg +application/postscript; pycam '%s'; description="Postscript"; test=test -n "$DISPLAY" && which pstoedit >/dev/null diff --git a/pycam/share/mime/pycam.xml b/pycam/share/mime/pycam.xml new file mode 100644 index 00000000..0c9e9205 --- /dev/null +++ b/pycam/share/mime/pycam.xml @@ -0,0 +1,18 @@ + + + + Stereo Lithographic Files (solid 3D models) + + + + + + + Drawing Interchange Files (2D or 3D models) + + + + + + + diff --git a/pycam/share/misc/DXF.gpl b/pycam/share/misc/DXF.gpl new file mode 100644 index 00000000..a3372a96 --- /dev/null +++ b/pycam/share/misc/DXF.gpl @@ -0,0 +1,265 @@ +GIMP Palette +Name: DXF + +# +# Based on the color table defined in pstoedit. +# Copyright 2011 Lars Kruse +# placed in the Public Domain +# + + 0 0 0 #000000 + 255 0 0 #FF0000 + 255 255 0 #FFFF00 + 0 255 0 #00FF00 + 0 255 255 #00FFFF + 0 0 255 #0000FF + 255 0 255 #FF00FF + 255 255 255 #FFFFFF + 65 65 65 #414141 + 128 128 128 #808080 + 255 0 0 #FF0000 + 255 170 170 #FFAAAA + 189 0 0 #BD0000 + 189 126 126 #BD7E7E + 129 0 0 #810000 + 129 86 86 #815656 + 104 0 0 #680000 + 104 69 69 #684545 + 79 0 0 #4F0000 + 79 53 53 #4F3535 + 255 63 0 #FF3F00 + 255 191 170 #FFBFAA + 189 46 0 #BD2E00 + 189 141 126 #BD8D7E + 129 31 0 #811F00 + 129 96 86 #816056 + 104 25 0 #681900 + 104 78 69 #684E45 + 79 19 0 #4F1300 + 79 59 53 #4F3B35 + 255 127 0 #FF7F00 + 255 212 170 #FFD4AA + 189 94 0 #BD5E00 + 189 157 126 #BD9D7E + 129 64 0 #814000 + 129 107 86 #816B56 + 104 52 0 #683400 + 104 86 69 #685645 + 79 39 0 #4F2700 + 79 66 53 #4F4235 + 255 191 0 #FFBF00 + 255 234 170 #FFEAAA + 189 141 0 #BD8D00 + 189 173 126 #BDAD7E + 129 96 0 #816000 + 129 118 86 #817656 + 104 78 0 #684E00 + 104 95 69 #685F45 + 79 59 0 #4F3B00 + 79 73 53 #4F4935 + 255 255 0 #FFFF00 + 255 255 170 #FFFFAA + 189 189 0 #BDBD00 + 189 189 126 #BDBD7E + 129 129 0 #818100 + 129 129 86 #818156 + 104 104 0 #686800 + 104 104 69 #686845 + 79 79 0 #4F4F00 + 79 79 53 #4F4F35 + 191 255 0 #BFFF00 + 234 255 170 #EAFFAA + 141 189 0 #8DBD00 + 173 189 126 #ADBD7E + 96 129 0 #608100 + 118 129 86 #768156 + 78 104 0 #4E6800 + 95 104 69 #5F6845 + 59 79 0 #3B4F00 + 73 79 53 #494F35 + 127 255 0 #7FFF00 + 212 255 170 #D4FFAA + 94 189 0 #5EBD00 + 157 189 126 #9DBD7E + 64 129 0 #408100 + 107 129 86 #6B8156 + 52 104 0 #346800 + 86 104 69 #566845 + 39 79 0 #274F00 + 66 79 53 #424F35 + 63 255 0 #3FFF00 + 191 255 170 #BFFFAA + 46 189 0 #2EBD00 + 141 189 126 #8DBD7E + 31 129 0 #1F8100 + 96 129 86 #608156 + 25 104 0 #196800 + 78 104 69 #4E6845 + 19 79 0 #134F00 + 59 79 53 #3B4F35 + 0 255 0 #00FF00 + 170 255 170 #AAFFAA + 0 189 0 #00BD00 + 126 189 126 #7EBD7E + 0 129 0 #008100 + 86 129 86 #568156 + 0 104 0 #006800 + 69 104 69 #456845 + 0 79 0 #004F00 + 53 79 53 #354F35 + 0 255 63 #00FF3F + 170 255 191 #AAFFBF + 0 189 46 #00BD2E + 126 189 141 #7EBD8D + 0 129 31 #00811F + 86 129 96 #568160 + 0 104 25 #006819 + 69 104 78 #45684E + 0 79 19 #004F13 + 53 79 59 #354F3B + 0 255 127 #00FF7F + 170 255 212 #AAFFD4 + 0 189 94 #00BD5E + 126 189 157 #7EBD9D + 0 129 64 #008140 + 86 129 107 #56816B + 0 104 52 #006834 + 69 104 86 #456856 + 0 79 39 #004F27 + 53 79 66 #354F42 + 0 255 191 #00FFBF + 170 255 234 #AAFFEA + 0 189 141 #00BD8D + 126 189 173 #7EBDAD + 0 129 96 #008160 + 86 129 118 #568176 + 0 104 78 #00684E + 69 104 95 #45685F + 0 79 59 #004F3B + 53 79 73 #354F49 + 0 255 255 #00FFFF + 170 255 255 #AAFFFF + 0 189 189 #00BDBD + 126 189 189 #7EBDBD + 0 129 129 #008181 + 86 129 129 #568181 + 0 104 104 #006868 + 69 104 104 #456868 + 0 79 79 #004F4F + 53 79 79 #354F4F + 0 191 255 #00BFFF + 170 234 255 #AAEAFF + 0 141 189 #008DBD + 126 173 189 #7EADBD + 0 96 129 #006081 + 86 118 129 #567681 + 0 78 104 #004E68 + 69 95 104 #455F68 + 0 59 79 #003B4F + 53 73 79 #35494F + 0 127 255 #007FFF + 170 212 255 #AAD4FF + 0 94 189 #005EBD + 126 157 189 #7E9DBD + 0 64 129 #004081 + 86 107 129 #566B81 + 0 52 104 #003468 + 69 86 104 #455668 + 0 39 79 #00274F + 53 66 79 #35424F + 0 63 255 #003FFF + 170 191 255 #AABFFF + 0 46 189 #002EBD + 126 141 189 #7E8DBD + 0 31 129 #001F81 + 86 96 129 #566081 + 0 25 104 #001968 + 69 78 104 #454E68 + 0 19 79 #00134F + 53 59 79 #353B4F + 0 0 255 #0000FF + 170 170 255 #AAAAFF + 0 0 189 #0000BD + 126 126 189 #7E7EBD + 0 0 129 #000081 + 86 86 129 #565681 + 0 0 104 #000068 + 69 69 104 #454568 + 0 0 79 #00004F + 53 53 79 #35354F + 63 0 255 #3F00FF + 191 170 255 #BFAAFF + 46 0 189 #2E00BD + 141 126 189 #8D7EBD + 31 0 129 #1F0081 + 96 86 129 #605681 + 25 0 104 #190068 + 78 69 104 #4E4568 + 19 0 79 #13004F + 59 53 79 #3B354F + 127 0 255 #7F00FF + 212 170 255 #D4AAFF + 94 0 189 #5E00BD + 157 126 189 #9D7EBD + 64 0 129 #400081 + 107 86 129 #6B5681 + 52 0 104 #340068 + 86 69 104 #564568 + 39 0 79 #27004F + 66 53 79 #42354F + 191 0 255 #BF00FF + 234 170 255 #EAAAFF + 141 0 189 #8D00BD + 173 126 189 #AD7EBD + 96 0 129 #600081 + 118 86 129 #765681 + 78 0 104 #4E0068 + 95 69 104 #5F4568 + 59 0 79 #3B004F + 73 53 79 #49354F + 255 0 255 #FF00FF + 255 170 255 #FFAAFF + 189 0 189 #BD00BD + 189 126 189 #BD7EBD + 129 0 129 #810081 + 129 86 129 #815681 + 104 0 104 #680068 + 104 69 104 #684568 + 79 0 79 #4F004F + 79 53 79 #4F354F + 255 0 191 #FF00BF + 255 170 234 #FFAAEA + 189 0 141 #BD008D + 189 126 173 #BD7EAD + 129 0 96 #810060 + 129 86 118 #815676 + 104 0 78 #68004E + 104 69 95 #68455F + 79 0 59 #4F003B + 79 53 73 #4F3549 + 255 0 127 #FF007F + 255 170 212 #FFAAD4 + 189 0 94 #BD005E + 189 126 157 #BD7E9D + 129 0 64 #810040 + 129 86 107 #81566B + 104 0 52 #680034 + 104 69 86 #684556 + 79 0 39 #4F0027 + 79 53 66 #4F3542 + 255 0 63 #FF003F + 255 170 191 #FFAABF + 189 0 46 #BD002E + 189 126 141 #BD7E8D + 129 0 31 #81001F + 129 86 96 #815660 + 104 0 25 #680019 + 104 69 78 #68454E + 79 0 19 #4F0013 + 79 53 59 #4F353B + 51 51 51 #333333 + 80 80 80 #505050 + 105 105 105 #696969 + 130 130 130 #828282 + 190 190 190 #BEBEBE + 255 255 255 #FFFFFF diff --git a/pycam/share/pycam.ico b/pycam/share/pycam.ico new file mode 100644 index 00000000..aefdbd0d Binary files /dev/null and b/pycam/share/pycam.ico differ diff --git a/pycam/share/ui/bounds.ui b/pycam/share/ui/bounds.ui new file mode 100644 index 00000000..9c4e12de --- /dev/null +++ b/pycam/share/ui/bounds.ui @@ -0,0 +1,874 @@ + + + + + + -2000 + 2000 + 1 + + + -2000 + 2000 + 1 + + + -2000 + 2000 + 1 + + + -2000 + 2000 + 1 + + + -2000 + 2000 + 1 + + + -2000 + 2000 + 1 + + + + + + + + + + + + + + + % + + + mm/inch + + + + + + + + + + + move inside limits + + + move along limits + + + move around limits + + + + + True + True + vertical + + + True + False + 2 + + + True + True + etched-in + + + True + True + BoundsList + False + 0 + + + + + + Name + True + + + True + + + + + + + Size + True + + + + + + + + + + True + True + 0 + + + + + True + False + vertical + + + True + False + vertical + center + + + gtk-new + True + True + True + True + + + False + False + 0 + + + + + gtk-delete + True + True + True + True + + + False + False + 1 + + + + + gtk-go-up + True + True + True + True + + + False + False + 2 + + + + + gtk-go-down + True + True + True + True + + + False + False + 3 + + + + + True + True + 0 + + + + + True + False + vertical + end + + + gtk-help + True + True + True + none + True + http://pycam.sourceforge.net/bounding-box + + + False + False + 0 + + + + + False + True + 1 + + + + + False + True + 1 + + + + + True + False + + + + + True + False + vertical + 3 + + + True + False + vertical + 3 + + + True + False + 3 + + + True + False + vertical + 3 + + + True + False + 0 + none + + + True + False + 12 + + + True + False + vertical + start + + + Relative margin + True + True + False + 0.5 + True + True + + + False + False + 0 + + + + + Custom + True + True + False + 0.5 + True + TypeRelativeMargin + + + False + False + 1 + + + + + + + + + True + False + <b>Type</b> + True + + + + + True + True + 0 + + + + + True + False + vertical + + + False + True + 1 + + + + + True + False + 0 + none + + + True + False + 12 + + + True + False + ToolLimitModeList + 0 + + + + 0 + + + + + + + + + True + False + <b>Tool move limit</b> + True + + + + + True + True + 2 + + + + + False + True + 0 + + + + + True + False + vertical + + + False + True + 1 + + + + + True + False + 3 + 3 + + + True + True + + 6 + BoundaryLowXValue + 2 + + + 1 + 1 + + + + + True + True + + 6 + BoundaryHighYValue + 2 + + + 2 + 2 + + + + + True + True + + 6 + BoundaryLowZValue + 2 + + + 1 + 3 + + + + + True + True + + 6 + BoundaryHighZValue + 2 + + + 2 + 3 + + + + + True + True + + 6 + BoundaryLowYValue + 2 + + + 1 + 2 + + + + + True + True + + 6 + BoundaryHighXValue + 2 + + + 2 + 1 + + + + + True + False + z: + 2 + + + 0 + 3 + + + + + True + False + y: + 2 + + + 0 + 2 + + + + + True + False + upper + + + 2 + 0 + + + + + True + False + x: + 2 + + + 0 + 1 + + + + + True + False + lower + + + 1 + 0 + + + + + True + False + RelativeUnitModel + + + center + + + 0 + + + + + 3 + 0 + + + + + True + False + 3 + True + + + + + True + True + True + + + True + True + 0 + + + + + 0 + True + True + True + + + True + True + 1 + + + + + - + True + True + True + + + True + True + 2 + + + + + 3 + 1 + + + + + True + False + 3 + True + + + + + True + True + True + + + True + True + 0 + + + + + 0 + True + True + True + + + True + True + 1 + + + + + - + True + True + True + + + True + True + 2 + + + + + 3 + 2 + + + + + True + False + 3 + True + + + + + True + True + True + + + True + True + 0 + + + + + 0 + True + True + True + + + True + True + 1 + + + + + - + True + True + True + + + True + True + 2 + + + + + 3 + 3 + + + + + + + + False + True + 2 + + + + + False + True + 0 + + + + + True + False + 0 + none + + + True + False + queue + etched-in + + + True + False + 3 + + + True + False + vertical + + + True + False + vertical + + + + + + True + True + 3 + 0 + + + + + True + False + 3 + 3 + Do not select a model if you want to use all models involved in this task. + True + 21 + 0 + 0 + + + False + False + 1 + + + + + False + False + 3 + 0 + + + + + True + False + 3 + 3 + <i>Relative margins are given in percent respectively mm/inch relative to the size of the selected models. Positive values create a margin around the model. Negative values create a bounding box that is smaller than the models.</i> + True + True + 30 + 0 + + + False + True + 1 + + + + + + + + + True + False + <b>Referenced Models</b> + True + + + + + False + True + 1 + + + + + True + False + 3 + 3 + <i>These values are absolute coordinates of the processing bounding box. They do not depend on any model.</i> + True + True + 0 + + + False + True + 2 + + + + + True + True + 0 + + + + + False + False + + + + diff --git a/pycam/share/ui/clipboard.ui b/pycam/share/ui/clipboard.ui new file mode 100644 index 00000000..3065ea17 --- /dev/null +++ b/pycam/share/ui/clipboard.ui @@ -0,0 +1,17 @@ + + + + + + _Copy + _Copy + Copy model to clipboard + gtk-copy + + + _Paste + _Paste + Paste a model from clipboard + gtk-paste + + diff --git a/pycam/share/ui/emc_tool_export.ui b/pycam/share/ui/emc_tool_export.ui new file mode 100644 index 00000000..d9857290 --- /dev/null +++ b/pycam/share/ui/emc_tool_export.ui @@ -0,0 +1,9 @@ + + + + + + _Export tools for LinuxCNC ... + _Export tools for LinuxCNC ... + + diff --git a/pycam/share/ui/export_settings.ui b/pycam/share/ui/export_settings.ui new file mode 100644 index 00000000..0d52c3ae --- /dev/null +++ b/pycam/share/ui/export_settings.ui @@ -0,0 +1,155 @@ + + + + + + + + + + + + True + True + vertical + + + True + False + 5 + + + True + True + etched-in + + + True + True + ExportSettingListModel + False + 0 + + + + + + Name + + + True + + + + + + + + + True + True + 0 + + + + + True + False + vertical + center + + + gtk-new + True + True + True + True + + + False + False + 0 + + + + + gtk-delete + True + True + True + True + + + False + False + 1 + + + + + gtk-clear + True + True + True + True + + + False + False + 2 + + + + + gtk-go-up + True + True + True + True + + + False + False + 3 + + + + + gtk-go-down + True + True + True + True + + + False + False + 4 + + + + + False + True + 1 + + + + + True + False + + + + + True + True + left + + + False + False + + + + diff --git a/pycam/share/ui/extrusion_chamfer.png b/pycam/share/ui/extrusion_chamfer.png new file mode 100644 index 00000000..3985fe04 Binary files /dev/null and b/pycam/share/ui/extrusion_chamfer.png differ diff --git a/pycam/share/ui/extrusion_radius_down.png b/pycam/share/ui/extrusion_radius_down.png new file mode 100644 index 00000000..66df642b Binary files /dev/null and b/pycam/share/ui/extrusion_radius_down.png differ diff --git a/pycam/share/ui/extrusion_radius_up.png b/pycam/share/ui/extrusion_radius_up.png new file mode 100644 index 00000000..d02b4aa1 Binary files /dev/null and b/pycam/share/ui/extrusion_radius_up.png differ diff --git a/pycam/share/ui/extrusion_sigmoidal.png b/pycam/share/ui/extrusion_sigmoidal.png new file mode 100644 index 00000000..648c48b6 Binary files /dev/null and b/pycam/share/ui/extrusion_sigmoidal.png differ diff --git a/pycam/share/ui/extrusion_sine.png b/pycam/share/ui/extrusion_sine.png new file mode 100644 index 00000000..a0d172a6 Binary files /dev/null and b/pycam/share/ui/extrusion_sine.png differ diff --git a/pycam/share/ui/fonts.ui b/pycam/share/ui/fonts.ui new file mode 100644 index 00000000..d9014572 --- /dev/null +++ b/pycam/share/ui/fonts.ui @@ -0,0 +1,534 @@ + + + + + + -1 + 5 + 0.10000000000000001 + + + + -1 + 5 + 0.10000000000000001 + + + -100 + 100 + 5 + + + False + 5 + Engrave text + pycam-fonts + center + True + accessories-character-map + dialog + + + True + False + vertical + 4 + + + True + False + end + + + gtk-cancel + True + True + True + True + + + False + False + 0 + + + + + gtk-copy + True + True + True + True + + + False + False + 1 + + + + + Save as SVG + True + True + True + + + False + False + 2 + + + + + gtk-apply + True + True + True + True + + + False + False + 3 + + + + + False + False + end + 11 + + + + + True + False + <b>Font properties:</b> + True + 0 + + + False + False + 0 + + + + + True + False + + + + + + True + False + 3 + + + True + True + FontSideSkewValue + 0 + 0 + bottom + + + 0 + 1 + + + + + True + False + Horiz. skew + + + 0 + 0 + + + + + True + False + Line spacing + + + 1 + 0 + + + + + True + True + FontLineSpacingValue + 2 + 2 + bottom + + + 1 + 1 + + + + + True + False + Pitch + + + 2 + 0 + + + + + True + True + FontCharacterSpacingValue + 2 + 2 + bottom + + + 2 + 1 + + + + + False + True + end + 1 + + + + + False + True + 1 + + + + + True + False + 3 + + + True + False + Font author: + + + False + True + 0 + + + + + True + False + FontAuthor + 0 + + + False + False + 1 + + + + + False + False + 5 + 2 + + + + + True + False + + + True + True + Thanks to the + True + 0 + + + False + True + 0 + + + + + QCAD developers + True + True + True + none + http://qcad.org + + + False + True + 1 + + + + + True + True + for these single-line fonts! + True + 0 + + + False + True + 2 + + + + + False + True + 3 + + + + + True + False + 3 + + + True + False + Rendered overview of all fonts: + 0 + + + False + False + 0 + + + + + gtk-index + True + True + True + none + True + http://pycam.sourceforge.net/engrave-fonts + + + False + False + 1 + + + + + False + False + 4 + + + + + True + False + + + False + False + 5 + + + + + True + False + + + True + False + <b>Text:</b> + True + 0 + + + False + False + 0 + + + + + True + False + + + gtk-justify-left + True + True + False + True + 0.5 + True + True + + + False + False + 0 + + + + + gtk-justify-center + True + True + False + True + 0.5 + True + FontTextAlignLeft + + + False + False + 1 + + + + + gtk-justify-right + True + True + False + True + 0.5 + True + FontTextAlignLeft + + + False + False + 2 + + + + + False + False + end + 1 + + + + + False + True + 6 + + + + + True + False + queue + + + True + True + 3 + word + FontDialogInputBuffer + False + + + + + False + False + 7 + + + + + True + False + + + False + False + 8 + + + + + True + False + <b>Preview:</b> + True + 0 + + + False + False + 9 + + + + + 120 + True + False + 3 + queue + etched-in + + + True + False + + + + + False + True + 10 + + + + + + FontDialogCancel + FontDialogCopy + FontDialogSave + FontDialogApply + + + + _Engrave text ... + _Engrave text ... + gtk-select-font + + diff --git a/pycam/share/ui/gtk_console.ui b/pycam/share/ui/gtk_console.ui new file mode 100644 index 00000000..996e7666 --- /dev/null +++ b/pycam/share/ui/gtk_console.ui @@ -0,0 +1,159 @@ + + + + + + + False + 5 + Console + console + 480 + 320 + normal + + + True + False + vertical + 2 + + + True + False + end + + + gtk-copy + True + True + True + True + + + False + False + 0 + + + + + gtk-clear + True + True + True + True + + + False + False + 1 + + + + + gtk-close + True + True + True + True + + + False + False + 2 + + + + + False + False + end + 0 + + + + + True + True + etched-out + + + True + True + False + word-char + ConsoleViewBuffer + + + + + False + True + 1 + + + + + True + False + 3 + + + True + False + Input: + + + False + True + 0 + + + + + True + True + True + GDK_KEY_PRESS_MASK | GDK_STRUCTURE_MASK + + + + False + True + 1 + + + + + gtk-apply + True + True + True + True + + + False + True + 2 + + + + + False + True + 2 + + + + + + CopyConsoleButton + WipeConsoleButton + CloseConsoleButton + + + + _Console + + diff --git a/pycam/share/ui/gtkrc_windows b/pycam/share/ui/gtkrc_windows new file mode 100644 index 00000000..f79f72b2 --- /dev/null +++ b/pycam/share/ui/gtkrc_windows @@ -0,0 +1,68 @@ +gtk-theme-name = "MS-Windows" + +gtk-icon-sizes = "gtk-menu=13,13:gtk-small-toolbar=16,16:gtk-large-toolbar=24,24:gtk-dnd=32,32" +gtk-toolbar-icon-size = small-toolbar + +# disable images in buttons. i've only seen ugly delphi apps use this feature. +gtk-button-images = 0 + +# enable/disable images in menus. most "stock" microsoft apps don't use these, except sparingly. +# the office apps use them heavily, though. +gtk-menu-images = 1 + +# use the win32 button ordering instead of the GNOME HIG one, where applicable +gtk-alternative-button-order = 1 + +# use the win32 sort indicators direction, as in Explorer +gtk-alternative-sort-arrows = 1 + +# Windows users don't expect the PC Speaker beeping at them when they backspace in an empty textview and stuff like that +gtk-error-bell = 0 + +style "msw-default" +{ + GtkWidget::interior-focus = 1 + GtkOptionMenu::indicator-size = { 9, 5 } + GtkOptionMenu::indicator-spacing = { 7, 5, 2, 2 } + GtkSpinButton::shadow-type = in + + # Owen and I disagree that these should be themable + #GtkUIManager::add-tearoffs = 0 + #GtkComboBox::add-tearoffs = 0 + + GtkComboBox::appears-as-list = 1 + GtkComboBox::focus-on-click = 0 + + GOComboBox::add_tearoffs = 0 + + GtkTreeView::allow-rules = 0 + GtkTreeView::expander-size = 12 + + GtkExpander::expander-size = 12 + + GtkScrolledWindow::scrollbar_spacing = 1 + + GtkSeparatorMenuItem::horizontal-padding = 2 + + engine "wimp" + { + } +} +class "*" style "msw-default" + +binding "ms-windows-tree-view" +{ + bind "Right" { "expand-collapse-cursor-row" (1,1,0) } + bind "Left" { "expand-collapse-cursor-row" (1,0,0) } +} + +class "GtkTreeView" binding "ms-windows-tree-view" + +style "msw-combobox-thickness" = "msw-default" +{ + xthickness = 0 + ythickness = 0 +} + +widget_class "*TreeView*ComboBox*" style "msw-combobox-thickness" +widget_class "*ComboBox*GtkFrame*" style "msw-combobox-thickness" diff --git a/pycam/share/ui/log.ui b/pycam/share/ui/log.ui new file mode 100644 index 00000000..2aa2f01e --- /dev/null +++ b/pycam/share/ui/log.ui @@ -0,0 +1,193 @@ + + + + + + + + + + + + + + + + False + 5 + PyCAM event log + pycam-log + center + normal + + + True + False + vertical + 2 + + + True + False + end + + + gtk-copy + True + True + True + True + + + False + False + 0 + + + + + gtk-clear + True + True + True + True + + + False + False + 1 + + + + + gtk-close + True + True + True + True + + + False + False + 2 + + + + + False + False + end + 0 + + + + + True + True + etched-in + + + True + True + LogWindowList + 1 + vertical + + + + + + Time + True + 0 + + + + 0 + + + + + + + Type + True + 1 + + + + 1 + + + + + + + Message + True + 2 + + + + 2 + + + + + + + + + True + True + 1 + + + + + + LogWindowCopyToClipboard + LogWindowClear + LogWindowClose + + + + True + False + Click here to show the log window. + + + True + False + + + False + gtk-dialog-warning + + + False + True + 0 + + + + + True + False + 2 + + + False + True + 1 + + + + + + + _Log Window + _Log Window + Show the event protocol of PyCAM. + + diff --git a/pycam/share/ui/logo_128px.png b/pycam/share/ui/logo_128px.png new file mode 100644 index 00000000..317165e8 Binary files /dev/null and b/pycam/share/ui/logo_128px.png differ diff --git a/pycam/share/ui/logo_16px.png b/pycam/share/ui/logo_16px.png new file mode 100644 index 00000000..9dedd249 Binary files /dev/null and b/pycam/share/ui/logo_16px.png differ diff --git a/pycam/share/ui/logo_32px.png b/pycam/share/ui/logo_32px.png new file mode 100644 index 00000000..fd590cfb Binary files /dev/null and b/pycam/share/ui/logo_32px.png differ diff --git a/pycam/share/ui/logo_48px.png b/pycam/share/ui/logo_48px.png new file mode 100644 index 00000000..7555a920 Binary files /dev/null and b/pycam/share/ui/logo_48px.png differ diff --git a/pycam/share/ui/logo_64px.png b/pycam/share/ui/logo_64px.png new file mode 100644 index 00000000..b99dca67 Binary files /dev/null and b/pycam/share/ui/logo_64px.png differ diff --git a/pycam/share/ui/logo_gui.bmp b/pycam/share/ui/logo_gui.bmp new file mode 100644 index 00000000..062fd2af Binary files /dev/null and b/pycam/share/ui/logo_gui.bmp differ diff --git a/pycam/share/ui/logo_gui.png b/pycam/share/ui/logo_gui.png new file mode 100644 index 00000000..87c33b60 Binary files /dev/null and b/pycam/share/ui/logo_gui.png differ diff --git a/pycam/share/ui/logo_gui_vertical.bmp b/pycam/share/ui/logo_gui_vertical.bmp new file mode 100644 index 00000000..3c3a2aba Binary files /dev/null and b/pycam/share/ui/logo_gui_vertical.bmp differ diff --git a/pycam/share/ui/logo_scalable.svg b/pycam/share/ui/logo_scalable.svg new file mode 100644 index 00000000..f52955df --- /dev/null +++ b/pycam/share/ui/logo_scalable.svg @@ -0,0 +1,361 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/pycam/share/ui/memory_analyzer.ui b/pycam/share/ui/memory_analyzer.ui new file mode 100644 index 00000000..88cfacc7 --- /dev/null +++ b/pycam/share/ui/memory_analyzer.ui @@ -0,0 +1,216 @@ + + + + + + + + + + + + + + + + + + False + 5 + Memory Analyzer + normal + + + True + False + vertical + 4 + + + True + False + end + + + gtk-copy + True + True + True + True + + + False + False + 0 + + + + + gtk-refresh + True + True + True + True + + + False + False + 1 + + + + + gtk-close + True + True + True + True + + + False + False + 2 + + + + + False + False + end + 0 + + + + + True + False + vertical + 3 + + + True + True + etched-in + + + True + True + MemoryAnalyzerModel + True + 0 + + + + + + Size (all) [kB] + True + 2 + + + + 2 + + + + + + + Count + True + descending + 1 + + + + 1 + + + + + + + Average size [B] + True + 3 + + + + 3 + + + + + + + Type + True + 0 + + + + 0 + + + + + + + + + False + True + 0 + + + + + True + False + Updating memory usage data ... + + + + + + False + False + 1 + + + + + False + True + 1 + + + + + True + False + The memory analyzer requires the Python module <i>guppy</i>, but it seems to be missing. + True + center + True + + + False + True + 2 + + + + + + MemoryAnalyzerCopyButton + MemoryAnalyzerRefreshButton + MemoryAnalyzerCloseButton + + + + _Memory Analyzer + Memory + Show an analysis of PyCAM's memory consumption + + diff --git a/pycam/share/ui/menubar.xml b/pycam/share/ui/menubar.xml new file mode 100644 index 00000000..b1f680ad --- /dev/null +++ b/pycam/share/ui/menubar.xml @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/pycam/share/ui/model_export.ui b/pycam/share/ui/model_export.ui new file mode 100644 index 00000000..ea168b80 --- /dev/null +++ b/pycam/share/ui/model_export.ui @@ -0,0 +1,16 @@ + + + + + + Save Model _as ... + Save Model as ... + Save the current model to a new STL file. + gtk-save-as + + + _Save Model + _Save Model + Save the current model to the STL file. + + diff --git a/pycam/share/ui/model_extrusion.ui b/pycam/share/ui/model_extrusion.ui new file mode 100644 index 00000000..92a44158 --- /dev/null +++ b/pycam/share/ui/model_extrusion.ui @@ -0,0 +1,239 @@ + + + + + + True + False + extrusion_chamfer.png + + + 0.001 + 1000 + 0.10000000000000001 + + + 0.001 + 1000 + 0.5 + + + True + False + extrusion_radius_down.png + + + True + False + extrusion_radius_up.png + + + True + False + extrusion_sigmoidal.png + + + True + False + extrusion_sine.png + + + + + + + + + + + + + 0.001 + 1000 + 0.5 + + + False + + + True + False + 0 + none + + + True + False + 12 + + + True + False + vertical + 3 + + + True + False + 4 + 3 + + + True + False + Type: + 0 + + + 0 + 0 + + + + + True + False + Height: + 0 + + + 1 + 1 + + + + + True + False + Width: + 0 + + + 1 + 2 + + + + + True + False + ExtrusionTypeModel + 0 + + + + 1 + + + + + + 2 + + + + + 1 + 0 + + + + + True + True + + ExtrusionHeightValue + 3 + + + 0 + 1 + + + + + True + True + + ExtrusionWidthValue + 3 + + + 0 + 2 + + + + + True + False + Accuracy: + 0 + + + 1 + 3 + + + + + True + True + + ExtrusionGridValue + 3 + + + 0 + 3 + + + + + False + True + 0 + + + + + True + False + start + + + Extrude model + True + True + True + True + + + False + False + 0 + + + + + False + True + 1 + + + + + + + + + True + False + <b>Extrusion parameters</b> + True + + + + + + diff --git a/pycam/share/ui/model_plane_mirror.ui b/pycam/share/ui/model_plane_mirror.ui new file mode 100644 index 00000000..c255f057 --- /dev/null +++ b/pycam/share/ui/model_plane_mirror.ui @@ -0,0 +1,138 @@ + + + + + + False + + + True + False + vertical + 5 + + + True + False + 0 + none + + + True + False + 0 + 0 + 12 + + + True + False + vertical + + + True + False + vertical + + + X-Y + True + True + False + 0.5 + True + True + + + False + False + 0 + + + + + X-Z + True + True + False + 0.5 + True + MirrorPlaneXY + + + False + False + 1 + + + + + Y-Z + True + True + False + 0.5 + True + MirrorPlaneXY + + + False + False + 2 + + + + + False + True + 0 + + + + + True + False + start + + + Mirror + True + True + True + + + False + False + 0 + + + + + False + True + 1 + + + + + + + + + True + False + <b>Plane</b> + True + + + + + False + True + 0 + + + + + + diff --git a/pycam/share/ui/model_polygons.ui b/pycam/share/ui/model_polygons.ui new file mode 100644 index 00000000..544461b1 --- /dev/null +++ b/pycam/share/ui/model_polygons.ui @@ -0,0 +1,78 @@ + + + + + + False + + + True + False + 0 + none + + + True + False + 12 + + + True + False + vertical + + + True + False + 3 + start + + + Toggle direction + True + True + True + + + False + False + 2 + 0 + + + + + Revise directions + True + True + True + + + False + False + 1 + + + + + False + True + 0 + + + + + + + + + True + False + <b>Polygon winding</b> + True + + + + + + diff --git a/pycam/share/ui/model_position.ui b/pycam/share/ui/model_position.ui new file mode 100644 index 00000000..bfac2ef9 --- /dev/null +++ b/pycam/share/ui/model_position.ui @@ -0,0 +1,507 @@ + + + + + + -2000 + 2000 + 1 + + + -2000 + 2000 + 1 + + + -2000 + 2000 + 1 + + + -2000 + 2000 + 1 + + + -2000 + 2000 + 1 + + + -2000 + 2000 + 1 + + + False + + + True + False + vertical + 5 + + + True + False + 0 + none + + + True + False + 12 + + + True + False + vertical + 3 + + + True + False + 1 + 2 + + + True + True + + True + 5 + ShiftPositionXValue + 2 + + + 1 + 0 + + + + + True + True + + True + 5 + ShiftPositionYValue + 2 + + + 1 + 1 + + + + + True + True + + True + 5 + ShiftPositionZValue + 2 + + + 1 + 2 + + + + + True + False + x: + + + 0 + 0 + + + + + True + False + y: + + + 0 + 1 + + + + + True + False + z: + + + 0 + 2 + + + + + False + True + 0 + + + + + True + False + start + + + Shift model + True + True + True + True + + + False + False + 0 + + + + + False + True + 1 + + + + + + + + + True + False + <b>Relative shift</b> + True + + + + + False + True + 0 + + + + + True + False + + + False + True + 1 + + + + + True + False + 0 + none + + + True + False + 12 + + + True + False + vertical + 3 + + + True + False + 3 + 3 + + + True + True + + True + 5 + AlignPositionXValue + 2 + + + 1 + 0 + + + + + True + True + + True + 5 + AlignPositionYValue + 2 + + + 1 + 1 + + + + + True + True + + True + 5 + AlignPositionZValue + 2 + + + 1 + 2 + + + + + True + False + x: + + + 0 + 0 + + + + + True + False + y: + + + 0 + 1 + + + + + True + False + z: + + + 0 + 2 + + + + + Left + True + True + False + 0.5 + top + True + True + + + 2 + 0 + + + + + Center + True + True + False + 0.5 + top + True + AlignPositionXMin + + + 3 + 0 + + + + + Right + True + True + False + 0.5 + top + True + AlignPositionXMin + + + 4 + 0 + + + + + Front + True + True + False + 0.5 + top + True + True + + + 2 + 1 + + + + + Center + True + True + False + 0.5 + top + True + AlignPositionYMin + + + 3 + 1 + + + + + Back + True + True + False + 0.5 + top + True + AlignPositionYMin + + + 4 + 1 + + + + + Bottom + True + True + False + 0.5 + top + True + AlignPositionZMax + + + 2 + 2 + + + + + Center + True + True + False + 0.5 + top + True + AlignPositionZMax + + + 3 + 2 + + + + + Top + True + True + False + 0.5 + top + True + True + + + 4 + 2 + + + + + False + True + 0 + + + + + True + False + start + + + Align position + True + True + True + True + + + False + False + 0 + + + + + False + True + 1 + + + + + + + + + True + False + <b>Align position</b> + True + + + + + False + True + 2 + + + + + + diff --git a/pycam/share/ui/model_projection.ui b/pycam/share/ui/model_projection.ui new file mode 100644 index 00000000..2a2fd4e1 --- /dev/null +++ b/pycam/share/ui/model_projection.ui @@ -0,0 +1,158 @@ + + + + + + -2000 + 2000 + 1 + + + False + + + True + False + 0 + none + + + True + False + 12 + + + True + False + vertical + 3 + + + Top + True + True + False + 0.5 + True + True + + + False + True + 0 + + + + + Middle + True + True + False + 0.5 + True + ProjectionModelTop + + + False + True + 1 + + + + + Bottom + True + True + False + 0.5 + True + ProjectionModelTop + + + False + True + 2 + + + + + True + False + 2 + + + custom z: + True + True + False + 0.5 + True + ProjectionModelTop + + + False + True + 0 + + + + + True + True + + ProjectionZLevelValue + + + False + True + 1 + + + + + False + True + 3 + + + + + True + False + start + + + Calculate 2D projection + True + True + True + + + True + True + 0 + + + + + False + True + 4 + + + + + + + + + True + False + <b>2D Projection</b> + True + + + + + + diff --git a/pycam/share/ui/model_rotation.ui b/pycam/share/ui/model_rotation.ui new file mode 100644 index 00000000..22e78373 --- /dev/null +++ b/pycam/share/ui/model_rotation.ui @@ -0,0 +1,270 @@ + + + + + + -360 + 360 + 15 + + + False + + + True + False + vertical + 5 + + + True + False + 0 + none + + + True + False + 0 + 0 + 12 + + + True + False + True + start + + + X + True + True + False + 0.5 + True + True + + + False + False + 0 + + + + + Y + True + True + False + 0.5 + True + RotationAxisX + + + False + False + 1 + + + + + Z + True + True + False + 0.5 + True + RotationAxisX + + + False + False + 2 + + + + + + + + + True + False + <b>Axis</b> + True + + + + + False + False + 0 + + + + + True + False + 0 + none + + + True + False + 12 + + + True + False + vertical + 1 + True + + + 90° Clockwise + True + True + False + 0.5 + True + + + False + True + 0 + + + + + 90° Counter-Clockwise + True + True + False + 0.5 + True + True + RotationAngle90CKW + + + False + True + 1 + + + + + 180° + True + True + False + 0.5 + True + RotationAngle90CKW + + + False + True + 2 + + + + + True + False + + + True + True + False + 0.5 + True + RotationAngle90CKW + + + False + True + 0 + + + + + True + True + + RotationAngleValue + + + False + True + 1 + + + + + True + False + ° Clockwise + 0 + + + False + True + 2 + + + + + False + True + 3 + + + + + + + + + True + False + <b>Angle</b> + True + + + + + False + True + 1 + + + + + True + False + start + + + Rotate + True + True + True + True + + + False + True + 0 + + + + + False + True + 2 + + + + + + diff --git a/pycam/share/ui/model_scaling.ui b/pycam/share/ui/model_scaling.ui new file mode 100644 index 00000000..34a5d9a9 --- /dev/null +++ b/pycam/share/ui/model_scaling.ui @@ -0,0 +1,363 @@ + + + + + + + + + + + + x + + + y + + + z + + + + + 0.001 + 10000 + 1 + + + 1 + 10000 + 25 + + + False + + + True + False + vertical + 5 + + + True + False + 0 + none + + + True + False + 12 + + + True + False + vertical + 3 + + + True + False + 1 + + + True + False + Factor: + + + False + True + 3 + 0 + + + + + True + True + + True + ScalePercentValue + + + False + True + 1 + + + + + True + False + % + + + False + True + 2 + + + + + False + True + 0 + + + + + True + False + start + + + Scale Model + True + False + True + True + + + False + False + 0 + + + + + False + True + 1 + + + + + + + + + True + False + <b>Proportional Scaling</b> + True + + + + + False + True + 0 + + + + + True + False + + + False + True + 2 + 1 + + + + + True + False + 0 + none + + + True + False + 12 + + + True + False + vertical + 5 + + + True + False + 3 + + + True + False + ScaleDimensionAxesList + 0 + + + + 0 + + + + + False + True + 0 + + + + + True + True + + True + ScaleDimensionValue + 3 + + + False + True + 1 + + + + + False + True + 0 + + + + + True + False + 3 + start + + + Scale selected Axis + True + True + True + + + False + False + 0 + + + + + Scale all Axes + True + True + True + True + + + False + False + 1 + + + + + False + True + 1 + + + + + + + + + True + False + <b>Scale to Size</b> + True + + + + + False + True + 2 + + + + + True + False + + + False + True + 3 + + + + + True + False + 0 + none + + + True + False + 12 + + + True + False + 3 + start + + + mm -> Inch + True + True + True + + + False + False + 0 + + + + + Inch -> mm + True + True + True + + + False + False + 1 + + + + + + + + + True + False + <b>Metric &amp; Imperial</b> + True + + + + + False + True + 4 + + + + + + diff --git a/pycam/share/ui/model_support.ui b/pycam/share/ui/model_support.ui new file mode 100644 index 00000000..6d7b767f --- /dev/null +++ b/pycam/share/ui/model_support.ui @@ -0,0 +1,227 @@ + + + + + + 0.01 + 100 + 0.10000000000000001 + + + 0.01 + 100 + 0.10000000000000001 + + + + + + + + + + + False + + + True + False + 0 + none + + + True + False + 12 + + + True + False + vertical + 5 + + + True + False + 3 + + + True + False + SupportGridTypesList + 0 + + + + 1 + + + + + False + False + 0 + + + + + Create support model + True + True + True + + + False + False + 1 + + + + + False + True + 0 + + + + + True + False + vertical + + + True + True + + + True + False + 30 + + + True + False + 3 + + + True + False + thickness: + 0 + + + False + True + 0 + + + + + True + True + + SupportGridThickness + 2 + + + False + True + 1 + + + + + True + False + vertical + + + False + True + 3 + 2 + + + + + True + False + height: + + + False + True + 3 + + + + + True + True + + SupportGridHeight + 2 + + + False + True + 4 + + + + + + + + + True + False + Profile + + + + + False + True + 0 + + + + + True + False + vertical + 5 + + + + + + False + True + 1 + + + + + False + True + 1 + + + + + + + + + True + False + <b>Support bridges</b> + True + + + + + + diff --git a/pycam/share/ui/model_support_distributed.ui b/pycam/share/ui/model_support_distributed.ui new file mode 100644 index 00000000..e60fca81 --- /dev/null +++ b/pycam/share/ui/model_support_distributed.ui @@ -0,0 +1,125 @@ + + + + + + 0.01 + 500 + 1 + + + -100 + 100 + 1 + + + 1 + 20 + 1 + + + False + + + True + True + + + True + False + 30 + + + True + False + 2 + 3 + + + True + True + + SupportGridMinBridgesPerPolygon + + + 1 + 1 + + + + + True + False + Minimum bridges per polygon: + 0 + + + 0 + 1 + + + + + True + True + + SupportGridAverageDistance + 2 + + + 1 + 0 + + + + + True + False + Average distance between bridges: + 0 + + + 0 + 0 + + + + + True + False + Length of each bridge: + 0 + + + 0 + 2 + + + + + True + True + + SupportGridLength + 2 + + + 1 + 2 + + + + + + + + + True + False + Distribution + + + + + + diff --git a/pycam/share/ui/model_support_grid.ui b/pycam/share/ui/model_support_grid.ui new file mode 100644 index 00000000..9e48e560 --- /dev/null +++ b/pycam/share/ui/model_support_grid.ui @@ -0,0 +1,466 @@ + + + + + + 1000 + 1 + + + 1000 + 1 + + + -1000 + 1000 + 1 + + + -1000 + 1000 + 1 + + + 1 + + + + + + + + + + + 17.3mm (-2.0) + -2.0 + + + + + False + + + True + False + vertical + + + True + True + True + + + True + False + 30 + + + True + False + 1 + 4 + + + True + False + distance x: + 0 + + + 0 + 0 + + + + + True + False + distance y: + 0 + + + 0 + 1 + + + + + True + True + + SupportGridDistanceX + 2 + + + 1 + 0 + + + + + True + True + + SupportGridDistanceY + 2 + + + 1 + 1 + + + + + square grid + True + True + False + 0.5 + True + + + 2 + 1 + + + + + + + + + + + + True + False + Pattern + + + + + False + True + 0 + + + + + True + True + + + True + False + 30 + + + True + False + 4 + + + True + False + offset x: + 0 + + + False + True + 0 + + + + + True + True + + SupportGridOffsetX + 2 + + + False + True + 1 + + + + + True + False + vertical + + + False + True + 2 + + + + + True + False + offset y: + 0 + + + False + True + 3 + + + + + True + True + + SupportGridOffsetY + 2 + + + False + True + 4 + + + + + + + + + True + False + Position offset + + + + + False + True + 1 + + + + + True + True + + + True + False + 30 + + + True + False + vertical + + + True + False + 3 + + + x + True + True + False + 0.5 + True + True + + + False + True + 10 + 0 + + + + + y + True + True + False + 0.5 + True + SupportGridPositionManualAxisX + + + False + True + 10 + 1 + + + + + True + False + vertical + + + False + True + 2 + + + + + True + False + Grid item: + 0 + + + False + True + 3 + + + + + True + False + SupportGridPositionManualList + + + + 0 + + + + + + 1 + + + + + False + True + 4 + + + + + False + True + 0 + + + + + True + False + vertical + + + True + False + + + True + True + SupportGridPositionManualAdjustment + 2 + False + right + + + False + True + 0 + + + + + True + True + + SupportGridPositionManualAdjustment + 1 + + + False + True + 1 + + + + + False + True + 0 + + + + + True + False + spread + + + Reset all items + True + True + True + + + True + False + 0 + + + + + Reset this item + True + True + True + + + True + False + 1 + + + + + False + True + 1 + + + + + False + True + 1 + + + + + + + + + True + False + Manual position adjustment + + + + + False + True + 2 + + + + + + diff --git a/pycam/share/ui/model_swap_axes.ui b/pycam/share/ui/model_swap_axes.ui new file mode 100644 index 00000000..13bafdc8 --- /dev/null +++ b/pycam/share/ui/model_swap_axes.ui @@ -0,0 +1,126 @@ + + + + + + False + + + True + False + vertical + 5 + + + True + False + 0 + none + + + True + False + 0 + 0 + 12 + + + True + False + vertical + + + True + False + vertical + + + X <-> Y + True + True + False + 0.5 + True + True + + + False + False + 0 + + + + + X <-> Z + True + True + False + 0.5 + True + SwapAxesXY + + + False + False + 1 + + + + + Y <-> Z + True + True + False + 0.5 + True + SwapAxesXY + + + False + False + 2 + + + + + False + True + 0 + + + + + Swap + True + True + True + + + False + True + 1 + + + + + + + + + True + False + <b>Axes pair</b> + True + + + + + False + True + 0 + + + + + + diff --git a/pycam/share/ui/models.ui b/pycam/share/ui/models.ui new file mode 100644 index 00000000..e381d617 --- /dev/null +++ b/pycam/share/ui/models.ui @@ -0,0 +1,195 @@ + + + + + + + + + + + + False + + + True + True + vertical + + + True + False + + + True + True + etched-out + + + True + True + ModelList + False + + + + + + + + 2 + + + + + + + + + True + + + + + + + + + True + True + 5 + 0 + + + + + True + False + vertical + + + True + False + vertical + center + + + True + True + True + True + 65535 + + + False + False + 0 + + + + + gtk-delete + True + True + True + True + + + False + False + 1 + + + + + gtk-clear + True + True + True + True + + + False + False + 2 + + + + + gtk-go-up + True + True + True + True + + + False + False + 3 + + + + + gtk-go-down + True + True + True + True + + + False + False + 4 + + + + + False + True + 0 + + + + + gtk-help + True + True + True + none + True + http://pycam.sourceforge.net/model-transformations + + + False + False + 1 + + + + + False + True + 1 + + + + + True + False + + + + + True + True + left + + + False + False + + + + + + diff --git a/pycam/share/ui/opengl.ui b/pycam/share/ui/opengl.ui new file mode 100644 index 00000000..e60ee6a1 --- /dev/null +++ b/pycam/share/ui/opengl.ui @@ -0,0 +1,408 @@ + + + + + + True + False + 0 + none + + + True + False + 12 + + + True + False + 3 + 3 + + + + + + + + + + + + + True + False + <b>Color Selection</b> + True + + + + + True + False + 0 + none + + + True + False + 12 + + + True + False + vertical + 2 + + + + + + + + + + True + False + <b>Display settings</b> + True + + + + + 1 + 50 + 1 + 1 + + + True + False + 0 + none + + + True + False + 12 + + + True + False + vertical + 2 + + + Polygon fill + True + True + False + 0.5 + True + + + False + True + 0 + + + + + Lighting + True + True + False + 0.5 + True + + + False + True + 1 + + + + + Shadows + True + True + False + 0.5 + True + + + False + True + 2 + + + + + Perspective view + True + True + False + 0.5 + True + + + False + True + 3 + + + + + Use caching + True + True + False + OpenGL caching (via Display Lists) works without problems for most users. But if your 3D view is distorted or not usable at all, then you should consider to disable caching. The cache improves performance significantly. + 0.5 + True + + + False + True + 4 + + + + + True + False + 2 + + + True + False + Maximum Frames per Second: + + + False + True + 0 + + + + + True + True + + DrillProgressMaxFPS + + + False + True + 1 + + + + + False + True + 4 + + + + + + + + + True + False + <b>OpenGL Settings</b> + True + + + + + False + PyCAM Visualization + pycam-view + + + True + False + vertical + + + True + False + 2 + + + True + False + vertical + 1 + + + + + + + + False + True + 0 + + + + + + + 3D _View + 3D _View + Display the model in the 3D view window. + + + True + False + 4 + + + True + False + text + + + False + True + 0 + + + + + True + False + vertical + + + False + True + 1 + + + + + True + False + + + True + False + Center + True + + + False + False + 0 + + + + + True + False + Front + True + + + False + False + 1 + + + + + True + False + Back + True + + + False + False + 2 + + + + + True + False + Left + True + + + False + False + 3 + + + + + True + False + Right + True + + + False + False + 4 + + + + + True + False + Top + True + + + False + False + 5 + + + + + True + False + Bottom + True + + + False + False + 6 + + + + + False + True + 2 + + + + + gtk-help + True + True + True + none + True + 1 + http://pycam.sourceforge.net/3d-view + + + False + True + 3 + + + + diff --git a/pycam/share/ui/opengl_view_dimension.ui b/pycam/share/ui/opengl_view_dimension.ui new file mode 100644 index 00000000..a5614821 --- /dev/null +++ b/pycam/share/ui/opengl_view_dimension.ui @@ -0,0 +1,314 @@ + + + + + + True + False + 3 + + + True + False + Model corners: + 0 + + + 0 + 1 + + + + + True + False + vertical + + + 2 + 0 + + + + + True + False + vertical + + + 4 + 0 + + + + + True + False + 2 + + + True + False + xmin + + + False + True + 0 + + + + + True + False + .. + + + False + True + 1 + + + + + True + False + xmax + + + False + True + 2 + + + + + 1 + 1 + + + + + True + False + 2 + + + True + False + zmin + + + False + True + 0 + + + + + True + False + .. + + + False + True + 1 + + + + + True + False + zmax + + + False + True + 2 + + + + + 5 + 1 + + + + + True + False + Bounding Box: + 0 + + + 0 + 0 + + + + + True + False + 2 + + + True + False + Δx: + 0 + + + False + True + 0 + + + + + True + False + True + 0 + + + False + True + 1 + + + + + 1 + 0 + + + + + True + False + 2 + + + True + False + Δz: + 0 + + + False + True + 0 + + + + + True + False + True + 0 + + + False + True + 1 + + + + + 5 + 0 + + + + + True + False + 2 + + + True + False + Δy: + 0 + + + False + True + 0 + + + + + True + False + True + 0 + + + False + True + 1 + + + + + 3 + 0 + + + + + True + False + 2 + + + True + False + ymin + + + False + True + 0 + + + + + True + False + .. + + + False + True + 1 + + + + + True + False + ymax + + + False + True + 2 + + + + + 3 + 1 + + + + + + + + + + diff --git a/pycam/share/ui/opengl_view_grid.ui b/pycam/share/ui/opengl_view_grid.ui new file mode 100644 index 00000000..158e98e2 --- /dev/null +++ b/pycam/share/ui/opengl_view_grid.ui @@ -0,0 +1,71 @@ + + + + + + True + False + 3 + + + True + False + Major grid: + + + False + True + 0 + + + + + True + False + 100mm + + + False + True + 1 + + + + + True + False + vertical + + + False + True + 3 + 2 + + + + + True + False + Minor grid: + + + False + True + 3 + + + + + True + False + 20mm + + + False + True + 4 + + + + diff --git a/pycam/share/ui/parallel_processing.ui b/pycam/share/ui/parallel_processing.ui new file mode 100644 index 00000000..73c34ac2 --- /dev/null +++ b/pycam/share/ui/parallel_processing.ui @@ -0,0 +1,812 @@ + + + + + + 1000 + 1 + + + 1 + 60 + 1 + + + + + + + + + + + + + + + + + + + False + 5 + PyCAM pool of processes + pycam-processes + normal + + + True + False + vertical + 2 + + + True + False + end + + + True + False + + + True + False + Refresh interval: + + + False + True + 0 + + + + + True + True + + ProcessPoolRefreshIntervalValue + True + + + False + True + 1 + + + + + False + False + 0 + + + + + gtk-close + True + True + True + True + + + False + False + 1 + + + + + False + False + end + 0 + + + + + True + False + vertical + + + True + False + vertical + 3 + + + True + True + etched-in + + + True + True + ProcessPoolStatisticsModel + 0 + + + + + + True + Name + True + True + 0 + + + + 0 + + + + + + + True + Ping age + True + True + 1 + + + + 1 + + + + + + + True + Processed + True + True + 2 + + + + 2 + + + + + + + True + Processing time + True + True + 3 + + + + 3 + + + + + + + True + Avg. process time + True + True + 4 + + + + 4 + + + + + + + True + Avg. transfer time + True + True + 5 + + + + 5 + + + + + + + + + False + True + 0 + + + + + True + False + 3 + + + True + False + Number of connected workers: + <b>____</b> + 0 + + + False + False + 0 + + + + + True + False + 0 + True + + + False + False + 1 + + + + + False + False + 1 + + + + + True + False + True + 0 + + + False + False + 2 + + + + + False + True + 0 + + + + + True + False + vertical + + + True + False + The server mode is currently not enabled on your system. +Take a look at the <i>Preferences</i> for <i>Parallel processing</i> if you want to enable it. +Please read the description of the Server Mode (linked below) to understand the related security implications. + True + True + 60 + 0 + + + False + False + 0 + + + + + Read more about the Server Mode. + True + True + True + none + 0 + http://pycam.sourceforge.net/server-mode + + + False + False + 1 + + + + + False + False + 1 + + + + + False + True + 1 + + + + + + ProcessPoolWindowClose + + + + 65535 + 1 + + + 65535 + 1 + + + True + False + 0 + none + + + True + False + 12 + + + True + False + vertical + 5 + + + Enable parallel processes + True + True + False + 0.5 + True + + + False + True + 0 + + + + + True + False + vertical + 5 + + + True + False + 0 + 0 + 10 + + + True + False + 2 + 3 + + + True + False + Available cores: + 0 + + + 0 + 2 + + + + + True + False + 1 + 0 + + + 1 + 2 + + + + + True + True + + NumberOfProcessesValue + True + if-valid + + + 1 + 0 + + + + + True + False + Number of processes: + 0 + + + 0 + 0 + + + + + True + False + <span foreground="red">Warning: no local processes enabled. +You will need remote workers.</span> + True + True + 0 + + + 0 + 1 + + + + + + + + + + False + False + 0 + + + + + True + False + + + False + True + 1 + + + + + True + True + Server mode is currently not available on your system. +You are probably using the Windows standalone executable. +Instead you could use the PyCAM installer package along with the all-in-one installer of all dependencies. + +See the <a href="http://pycam.sourceforge.net/parallel-processing">platform feature matrix</a> for details. + True + True + 0 + + + False + True + 2 + + + + + True + False + 0 + none + + + True + False + vertical + + + True + False + + + gtk-connect + True + True + False + True + 0.5 + True + + + False + False + 0 + + + + + True + False + + + + + + False + True + 1 + + + + + False + False + 0 + + + + + True + False + 0 + 0 + 10 + + + True + False + 2 + 3 + + + True + True + + RemoteServerPortValue + + + 2 + 0 + + + + + True + True + + 18 + True + + + 1 + 0 + + + + + True + False + Remote server: + 0 + + + 0 + 0 + + + + + True + False + Local port: + 0 + + + 0 + 1 + + + + + True + False + Password: + 0 + 0 + + + 0 + 2 + + + + + Generate + True + True + True + 0 + 0 + + + 2 + 2 + + + + + Show password + True + True + False + 0.5 + True + + + 1 + 3 + + + + + True + True + False + + True + + + 1 + 2 + + + + + True + False + + + + + + 2 + 3 + + + + + gtk-help + True + True + True + none + True + http://pycam.sourceforge.net/server-mode + + + 2 + 4 + + + + + True + True + + ServerPortLocalValue + + + 2 + 1 + + + + + True + False + + + + + + 1 + 1 + + + + + + + + + + + + + + + + False + False + 1 + + + + + + + True + False + <b>Distributed processing</b> + True + + + + + False + False + 3 + + + + + False + False + 1 + + + + + True + False + Parallel processing is currently not available on your system. +You need to switch to Python v2.6 (or higher) or install the Python module "multiprocessing". + +Note: The Windows standalone executable does not support parallel processing. Please install PyCAM's package for Windows and its dependencies if you need this feature. + + True + 0 + + + False + True + 2 + + + + + + + + + True + False + <b>Settings for parallel processing</b> + True + + + + + _Process Pool + _Process Pool + Show the current pool of workers + + diff --git a/pycam/share/ui/plugin_selector.ui b/pycam/share/ui/plugin_selector.ui new file mode 100644 index 00000000..f58be833 --- /dev/null +++ b/pycam/share/ui/plugin_selector.ui @@ -0,0 +1,267 @@ + + + + + + + + + + + + Model + + + + + + + + + + + + + + + + + + + + + ModelPosition + Shifting and alignment + True + Models + True + /home/... + + + OpenGLWindow + Visualize the scene via OpenGL + False + Many + False + http://somewher.org + + + + + + + + + + + + + All + all + + + Enabled + enabled + + + Disabled + disabled + + + Dependencies missing + dep_missing + + + Dependencies satisfied + dep_satisfied + + + Not required + not_required + + + + + 640 + 500 + False + 5 + Plugins + pycam-plugins + center + normal + + + True + False + vertical + 3 + + + True + False + end + + + gtk-close + True + True + True + True + + + False + False + 0 + + + + + False + False + end + 0 + + + + + True + False + spread + + + True + False + StatusList + + + + 0 + + + + + False + False + 0 + + + + + True + False + CategoryList + + + + 0 + + + + + False + False + 1 + + + + + False + True + 1 + + + + + True + True + etched-out + + + True + True + PluginsModel + True + True + 0 + 5 + + + + + + Enabled + 2 + + + 1 + + + 4 + 4 + 2 + + + + + + + Name + 0 + + + + 0 + + + + + + + autosize + Description + True + 1 + + + word-char + + + 1 + + + + + + + Dependencies + 3 + + + + 3 + + + + + + + + + True + True + 2 + + + + + + ClosePluginManager + + + + Plugin Manager + Plugin Manager + preferences-other + + diff --git a/pycam/share/ui/processes.ui b/pycam/share/ui/processes.ui new file mode 100644 index 00000000..f8683080 --- /dev/null +++ b/pycam/share/ui/processes.ui @@ -0,0 +1,261 @@ + + + + + + + + + + + + + + + + + + + + Slicing + slicing + + + + + True + True + vertical + + + True + False + 3 + + + True + True + etched-in + + + True + True + ProcessList + False + False + 0 + + + + + + Name + + + True + + + + + + + False + Description + True + + + + + + + + + + True + True + 0 + + + + + True + False + vertical + + + True + False + vertical + center + + + gtk-new + True + True + True + True + + + False + False + 0 + + + + + gtk-delete + True + True + True + True + + + False + False + 1 + + + + + gtk-go-up + True + True + True + True + + + False + False + 2 + + + + + gtk-go-down + True + True + True + True + + + False + False + 3 + + + + + False + True + 0 + + + + + gtk-help + True + True + True + none + True + http://pycam.sourceforge.net/process-settings + + + False + False + 1 + + + + + False + True + 1 + + + + + True + False + + + + + True + False + vertical + 4 + + + True + False + 0 + 0 + + + True + False + 3 + + + True + False + Strategy: + 0 + + + False + True + 0 + + + + + True + False + StrategyModel + + + + 0 + + + + + False + False + 1 + + + + + + + False + True + 0 + + + + + True + False + vertical + + + + + + False + True + 1 + + + + + False + False + + + + diff --git a/pycam/share/ui/progress_bar.ui b/pycam/share/ui/progress_bar.ui new file mode 100644 index 00000000..66ceb714 --- /dev/null +++ b/pycam/share/ui/progress_bar.ui @@ -0,0 +1,79 @@ + + + + + + False + + + False + False + vertical + + + False + end + + + False + True + 0 + + + + + True + False + end + + + False + True + 1 + + + + + True + False + vertical + + + Show Progress + True + True + True + + + False + True + 0 + + + + + Cancel + True + True + True + + + False + True + 1 + + + + + False + True + 2 + + + + + + + + + diff --git a/pycam/share/ui/pycam-project.ui b/pycam/share/ui/pycam-project.ui new file mode 100644 index 00000000..133cb31f --- /dev/null +++ b/pycam/share/ui/pycam-project.ui @@ -0,0 +1,517 @@ + + + + + + _About + gtk-about + + + Report a _Bug + + + _Development Blog + + + _Edit + + + _Export + _Export + + + Re_quest a Feature + + + _File + + + _Forum + + + _Preferences + Configure PyCAM + gtk-preferences + + + 3D _View + + + _Bounds Settings + + + _Command Line Usage + + + _GCode Export + + + _Keyboard Shortcuts + + + _Introduction + + + _Help + + + _GUI description + + + Mis_cellaneous + + + _Model Transformations + + + _Process Settings + + + Server Mode + + + _Simulation + + + Supported _Formats + + + _Project Setup + + + T_ool Types + + + _Touch off and tool change + _Touch off + + + User _Manual: Overview + gtk-help + + + Reset Workspace to Defaults + Reset models, tools, processes, bounds and task definitions to their default values. + + + _Load Workspace ... + Load model, tool, process, bound and task definitions from a file. + + + True + True + + + _Open Model ... + Opens a model file. + gtk-open + + + Open _Recent + + + Project _Website + gtk-network + + + False + PyCAM + pycam-main + True + + + True + False + vertical + 2 + + + + + False + 5 + About PyCAM + pycam-about + center-on-parent + normal + center + ProjectWindow + PyCAM + 0.1 + Copyright © 2008-2010 Lode Leroy +Copyright © 2010-2011 Lars Kruse + Toolpath Generation for 3-Axis CNC machining + http://pycam.sourceforge.net/ + Website of the PyCAM project + This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. + +PyCAM is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +See the GNU General Public License for more details. + +You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. + logo_gui.png + True + + + True + False + vertical + 2 + + + True + False + end + + + False + False + end + 0 + + + + + + + + + + False + 5 + PyCAM Preferences + pycam-preferences + center-on-parent + True + preferences-desktop + normal + ProjectWindow + + + True + False + vertical + 2 + + + True + False + end + + + gtk-revert-to-saved + True + True + True + True + + + False + False + 0 + + + + + gtk-close + True + True + True + True + + + False + False + 1 + + + + + False + False + end + 0 + + + + + + False + False + 2 + + + + + True + True + left + + + True + False + 0 + none + + + True + False + 12 + + + True + False + vertical + 2 + + + + + + + True + False + <b>General Settings</b> + True + + + + + + + True + False + General + + + False + + + + + True + False + 0 + none + + + True + False + 12 + + + True + False + 3 + + + Inkscape + True + True + True + True + Inkscape is a vector drawing program. It can be used to convert 2D SVG files into DXF contour models. + 0 + http://inkscape.org + + + 0 + 0 + + + + + pstoedit + True + True + True + pstoedit is a postscript conversion tool. It can be used to convert 2D SVG files into DXF contour models. + none + 0 + http://www.pstoedit.net/pstoedit + + + 0 + 1 + + + + + Detect + True + True + True + + + 3 + 0 + + + + + Detect + True + True + True + + + 3 + 1 + + + + + Browse + True + True + True + + + 2 + 0 + + + + + Browse + True + True + True + + + 2 + 1 + + + + + True + True + + + + 1 + 0 + + + + + True + True + + + + 1 + 1 + + + + + gtk-help + True + True + True + True + none + True + 1 + http://pycam.sourceforge.net/requirements/#optional-external-programs + + + 4 + 2 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + True + False + <b>External programs</b> + True + + + + + 1 + + + + + True + False + Programs + + + 1 + False + + + + + False + False + 3 + + + + + + ResetPreferencesButton + CloseSettingsWindow + + + + _Quit + Exit PyCAM + gtk-quit + + + Save Workspace _as ... + Save the models, tools, processes, bounds and tasks definitions to a new file. + + + _Save Workspace + Save the models, tools, processes, bounds and tasks definitions. + gtk-save-as + + + _Settings + + + Undo latest workspace change + gtk-undo + + + _View + + diff --git a/pycam/share/ui/tasks.ui b/pycam/share/ui/tasks.ui new file mode 100644 index 00000000..a47a1c62 --- /dev/null +++ b/pycam/share/ui/tasks.ui @@ -0,0 +1,295 @@ + + + + + + True + False + gtk-execute + + + + + + + + + + + + + + + + + Test + sfd + + + + + True + True + vertical + + + True + False + 2 + + + True + True + etched-in + + + True + True + TaskList + False + False + False + 0 + + + + + + Name + + + True + + + + + + + + + True + True + 0 + + + + + True + False + vertical + + + True + False + vertical + center + + + _Generate Toolpath + True + True + True + GenerateOneToolPathIcon + True + + + False + False + 0 + + + + + Generate _All + True + True + True + True + + + False + False + 1 + + + + + gtk-new + True + True + True + True + + + False + False + 2 + + + + + gtk-delete + True + True + True + True + + + False + False + 3 + + + + + gtk-go-up + True + True + True + True + + + False + False + 4 + + + + + gtk-go-down + True + True + True + True + + + False + False + 5 + + + + + False + True + 0 + + + + + gtk-help + True + True + True + none + True + http://pycam.sourceforge.net/task-settings + + + False + True + 1 + + + + + False + True + 1 + + + + + True + False + + + + + True + False + vertical + 5 + + + True + False + 0 + 0 + + + True + False + 3 + + + True + False + Task type: + + + False + True + 0 + + + + + True + False + TaskTypeList + + + + 0 + + + + + False + True + 1 + + + + + + + False + True + 0 + + + + + True + False + 5 + + + + + + False + True + 1 + + + + + False + False + + + + + 1 + 10000 + 1 + + + 1 + 100000 + 1 + + diff --git a/pycam/share/ui/toolpath_crop.ui b/pycam/share/ui/toolpath_crop.ui new file mode 100644 index 00000000..3e769460 --- /dev/null +++ b/pycam/share/ui/toolpath_crop.ui @@ -0,0 +1,208 @@ + + + + + + -1000 + 1000 + 1 + + + -1000 + 1000 + 1 + + + True + False + 0 + none + + + True + False + 12 + + + True + False + vertical + 3 + + + True + False + Reduce the toolpath moves to the area enclosed by the outer limits of a selected model. +BEWARE: currently only 2D models are supported. + True + 45 + 0 + + + False + True + 0 + + + + + True + False + + + + + + False + True + 1 + + + + + True + False + queue + etched-out + + + True + False + /* to be overwritten with hints during runtime */ + True + 45 + 0 + + + + + + + + + False + True + 2 + + + + + True + False + 3 + 3 + + + True + False + Margin: + 0 + + + 0 + 1 + + + + + True + True + + 5 + ToolpathCropMarginValue + 2 + + + 1 + 1 + + + + + True + False + Slicing level (z): + 0 + + + 0 + 0 + + + + + True + True + + 5 + ToolpathCropZSliceValue + 2 + + + 1 + 0 + + + + + False + True + 3 + + + + + Keep original toolpath + True + True + False + 0.5 + True + True + + + False + True + 4 + + + + + True + False + start + + + gtk-execute + True + True + True + True + + + False + False + 0 + + + + + False + True + 5 + + + + + + + + + True + False + <b>Crop toolpath</b> + True + + + + diff --git a/pycam/share/ui/toolpath_export.ui b/pycam/share/ui/toolpath_export.ui new file mode 100644 index 00000000..855a596b --- /dev/null +++ b/pycam/share/ui/toolpath_export.ui @@ -0,0 +1,87 @@ + + + + + + + + + + + + + + LinuxCNC + linuxcnc + + + + + True + False + 0 + none + + + True + False + 12 + + + True + False + center + + + _Export all + True + True + True + True + + + False + False + 0 + + + + + Export selected + True + True + True + + + False + False + 1 + + + + + Export visible + True + True + True + + + False + False + 2 + + + + + + + + + True + False + <b>Save toolpath as GCode</b> + True + + + + diff --git a/pycam/share/ui/toolpath_grid.ui b/pycam/share/ui/toolpath_grid.ui new file mode 100644 index 00000000..899d0597 --- /dev/null +++ b/pycam/share/ui/toolpath_grid.ui @@ -0,0 +1,223 @@ + + + + + + 1 + 1000 + 1 + + + -1000 + 1000 + 1 + + + 1 + 1000 + 1 + + + -1000 + 1000 + 1 + + + True + False + 0 + none + + + True + False + 12 + + + True + False + vertical + 3 + + + True + False + 3 + 3 + + + True + False + Rows + + + 1 + 0 + + + + + True + False + Columns + + + 2 + 0 + + + + + True + False + Count: + + + 0 + 1 + + + + + True + False + Distance: + + + 0 + 2 + + + + + True + True + + GridYCountValue + + + 1 + 1 + + + + + True + True + + GridXCountValue + + + 2 + 1 + + + + + True + True + + GridYDistanceValue + 3 + + + 1 + 2 + + + + + True + True + + GridXDistanceValue + 3 + + + 2 + 2 + + + + + True + False + Width: + + + 0 + 3 + + + + + True + False + ? + + + 1 + 3 + + + + + True + False + ? + + + 2 + 3 + + + + + + + + False + True + 0 + + + + + True + False + start + + + gtk-execute + True + True + True + True + + + False + False + 0 + + + + + False + True + 2 + + + + + + + + + True + False + <b>Clone toolpath as grid</b> + True + + + + diff --git a/pycam/share/ui/toolpath_simulation.ui b/pycam/share/ui/toolpath_simulation.ui new file mode 100644 index 00000000..f2f134d2 --- /dev/null +++ b/pycam/share/ui/toolpath_simulation.ui @@ -0,0 +1,203 @@ + + + + + + 1 + 10 + 1 + + + 1 + 1 + + + 0.01 + 100000 + 0.25 + + + True + False + 0 + none + + + True + False + 3 + 12 + + + True + False + vertical + 3 + + + True + False + + + True + False + Progress: + 0 + + + False + True + 0 + + + + + True + False + 0:20 / 4:45 + 1 + + + False + True + 1 + + + + + False + True + 0 + + + + + True + True + SimulationProgressTimelineValue + False + + + False + True + 1 + + + + + True + False + 3 + + + gtk-media-play + True + True + True + True + + + False + False + 0 + + + + + gtk-media-pause + True + True + True + True + + + False + False + 1 + + + + + gtk-stop + True + True + True + True + + + False + False + 2 + + + + + False + False + 2 + + + + + True + False + + + False + True + 3 + + + + + True + False + 4 + + + True + False + Simulation speed: + 0 + + + False + True + 0 + + + + + True + True + + SimulationSpeedFactorValue + 2 + + + False + False + 1 + + + + + False + False + 4 + + + + + + + + + True + False + <b>Simulation</b> + True + + + + diff --git a/pycam/share/ui/toolpaths.ui b/pycam/share/ui/toolpaths.ui new file mode 100644 index 00000000..db3ba5c7 --- /dev/null +++ b/pycam/share/ui/toolpaths.ui @@ -0,0 +1,159 @@ + + + + + + + + + + + + True + True + vertical + + + True + False + 5 + + + True + True + etched-in + + + True + True + ToolpathListModel + False + 0 + + + + + + Visible + + + 2 + + + + + + + Name + + + True + + + + + + + Machine Time + + + + + + + + + + True + True + 0 + + + + + True + False + vertical + center + + + gtk-delete + True + True + True + True + + + False + False + 0 + + + + + gtk-clear + True + True + True + True + + + False + False + 1 + + + + + gtk-go-up + True + True + True + True + + + False + False + 2 + + + + + gtk-go-down + True + True + True + True + + + False + False + 3 + + + + + False + True + 1 + + + + + True + False + + + + + True + True + left + + + False + False + + + + diff --git a/pycam/share/ui/tools.ui b/pycam/share/ui/tools.ui new file mode 100644 index 00000000..35bfdbed --- /dev/null +++ b/pycam/share/ui/tools.ui @@ -0,0 +1,291 @@ + + + + + + + + + + + + + + + + + + + + Ball nose + ballnose + + + + + True + True + vertical + + + True + False + 4 + + + True + True + etched-in + + + True + True + ToolList + False + 0 + + + + + + Tool ID + + + True + + + + + + + Name + True + + + True + + + + + + + Shape + + + right + + + + + + + + + True + True + 0 + + + + + True + False + vertical + + + True + False + vertical + center + + + gtk-new + True + True + True + True + + + False + False + 0 + + + + + gtk-delete + True + True + True + True + + + False + False + 1 + + + + + gtk-go-up + True + True + True + True + + + False + False + 2 + + + + + gtk-go-down + True + True + True + True + + + False + False + 3 + + + + + False + True + 0 + + + + + gtk-help + True + True + True + none + True + http://pycam.sourceforge.net/tool-types + + + False + False + 1 + + + + + False + True + 1 + + + + + True + False + + + + + True + False + vertical + 4 + + + True + False + 0 + 0 + + + True + False + 3 + + + True + False + Tool shape: + + + False + True + 0 + + + + + True + False + ToolShapeList + + + + 0 + + + + + False + True + 1 + + + + + + + False + True + 0 + + + + + True + False + 10 + 10 + 10 + 10 + + + True + False + vertical + 5 + + + + + + + + False + True + 1 + + + + + True + False + + + + + 0.0001 + 500 + 0.10000000000000001 + + + 0.0001 + 500 + 0.050000000000000003 + + diff --git a/pycam/share/ui/units.ui b/pycam/share/ui/units.ui new file mode 100644 index 00000000..7aa8e869 --- /dev/null +++ b/pycam/share/ui/units.ui @@ -0,0 +1,257 @@ + + + + + + False + 5 + Unit change compensation + pycam-units + True + accessories-calculator + normal + + + True + False + vertical + 2 + + + True + False + end + + + + + + gtk-apply + True + True + True + True + + + False + False + 1 + + + + + False + False + end + 0 + + + + + True + False + 0 + none + + + True + False + 12 + + + True + False + vertical + + + True + False + Switching the unit size causes a change of the real world size of the various dimensions within PyCAM. +This change can be compensated by applying the unit conversion factor to the current dimensions. +Any selected group of dimensions will be scaled accordingly. + True + 40 + 0 + + + False + True + 0 + + + + + Model + True + True + False + 0.5 + True + + + False + True + 1 + + + + + Tools + True + True + False + 0.5 + True + + + False + True + 2 + + + + + Processes + True + True + False + 0.5 + True + + + False + True + 3 + + + + + Bounds + True + True + False + 0.5 + True + + + False + True + 4 + + + + + True + False + + + gtk-select-all + True + True + True + True + + + False + False + 0 + + + + + gtk-clear + True + True + True + True + + + False + False + 1 + + + + + False + True + 4 + 5 + + + + + + + + + True + False + <b>Change of unit size</b> + True + + + + + False + True + 1 + + + + + + UnitChangeApply + + + + + + + + + + mm + + + inch + + + + + True + False + + + True + False + Unit (for all dimensions): + 0 + + + False + True + 0 + + + + + True + False + UnitModel + 0 + + + + 0 + + + + + False + True + 1 + + + + diff --git a/pycam/share/ui/visible.svg b/pycam/share/ui/visible.svg new file mode 100644 index 00000000..89cca7ba --- /dev/null +++ b/pycam/share/ui/visible.svg @@ -0,0 +1,231 @@ + + + +Occhio verdeimage/svg+xmlOcchio verdeArch. Emilie Rollandin + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/pycam/share/ui/visible_off.svg b/pycam/share/ui/visible_off.svg new file mode 100644 index 00000000..695fa1a3 --- /dev/null +++ b/pycam/share/ui/visible_off.svg @@ -0,0 +1,372 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + diff --git a/pycam/technical_details.txt b/pycam/technical_details.txt new file mode 100644 index 00000000..8d7cba1c --- /dev/null +++ b/pycam/technical_details.txt @@ -0,0 +1,33 @@ + +The DropCutter goes as folows: +1) make lines along the X-axis (Lines) +2) for each line, take a number of samples (Samples) +3) at each sample, drop the cutter until it hits the model, this is a cutter location point +4) connect the cutter location points along the line + + +The PushCutter goes as follows: +1) make slices along the Z-axis (Levels) +2) make lines along the X-axis (Lines) +3) push the cutter along the line until it hits the model, this is a cutter location + if we do not hit anything, we're finished +4) skip the parts where the model is above the current z-level +5) go back to 3 + + +The PathAccumulator connects the cutter locations by cutting in between, +it is useful mainly for debugging + +The SimpleCutter connects the cutter locations in an on-off (cut/don't cut) pattern, +it is useful only for debugging + +The ZigZagCutter connects the cutter locations by cutting in between points, +then come back along the next line in reverse direction. +it is useful mainly in combination with the DropCutter + +The PolygonCutter extracts polygonial sections from the cutter scanlines, +then cuts those in a zig-zag pattern +it is useful mainly in combination with the PushCutter + +The ContourCutter extracts contours from the cutter scanlines, +it is useful only in combination with the PushCutter diff --git a/pycam/yaml_flow_example.yml b/pycam/yaml_flow_example.yml new file mode 100644 index 00000000..fd22a961 --- /dev/null +++ b/pycam/yaml_flow_example.yml @@ -0,0 +1,248 @@ +--- +# example processing flow description (not implemented) + +models: + model1: + source: + type: file + location: samples/Box0.stl + transformations: + - action: scale + scale_target: factor + axes: + x: 1.25 + - action: scale + scale_target: factor + axes: 0.7 + - action: scale + scale_target: size + axes: + x: 10 + - action: shift + shift_target: distance + axes: + x: -20 + - action: shift + shift_target: align_max + axes: + z: 0 + - action: shift + shift_target: align_min + axes: [10, 20, 0] + - action: shift + shift_target: center + axes: + x: 50 + - action: rotate + center: [10, 10, 0] + vector: [0, 0, 1] + angle: 90 + - action: projection + center: + z: 0 + vector: + x: 0 + y: 0 + z: 1 + - action: multiply_matrix + matrix: + - [1, 0, 0] + - [0, 1, 0] + - [0, 0, -1] + model2: + source: + type: copy + original: model1 + transformations: + - action: toggle_polygon_directions + - action: revise_polygon_directions + - action: extrude + shape: bulge + height: 1.0 + width: 2.3 + accuracy: 0.2 + model2_support_grid: + source: + type: support_bridges + models: + - model1 + layout: grid + grid: + distances: {x: 10, y: 20} + offsets: + x: [5, 10, 0] + y: [-5] + shape: + height: 2 + width: 1 + length: 10 + model3: + source: + type: url + location: http://foo.example.org/baz.stl + model3_support_grid: + source: + type: support_bridges + models: + - model3 + layout: distributed + distribution: corners + minimum_count: 3 + average_distance: 4 + shape: + height: 2 + width: 1 + length: 10 + +tools: + tool1: + shape: flat_bottom + tool_id: 1 + diameter: 3 + feed: 300 + spindle: + spin_up_enabled: true + spin_up_delay: 3 + speed: 1200 + +processes: + process_slicing: + strategy: slice + path_pattern: grid + overlap: 0.10 + step_down: 1.0 + grid_direction: x + milling_style: ignore + process_engrave: + strategy: engrave + step_down: 1.0 + trace_models: + - model2 + +bounds: + bounds1: + specification: absolute + lower: + x: -10 + y: 0 + z: -5 + upper: + x: 30 + y: 20 + z: 0 + bounds2: + specification: margins + reference_models: + - model1 + lower: + x: 10% + y: 10% + z: 0 + upper: + x: 10% + y: 10% + z: 5 + +tasks: + task1: + type: milling + tool: tool1 + process: process_slicing + bounds: bounds1 + collision_models: + - model1 + task2: + type: milling + tool: tool1 + process: process_engrave + bounds: bounds2 + +toolpaths: + toolpath1: + source: + type: task + item: task1 + transformations: + - action: crop + lower: + x: 0 + y: 0 + upper: + x: 30 + y: 40 + - action: clone + offset: [20, 110%, 0] + clone_count: 1 + - action: shift + shift_target: align_min + axes: + x: 0 + y: 0 + - action: shift + shift_target: align_max + axes: [null, null, 0] + + toolpath2: + source: + type: copy + original: toolpath1 + transformations: + - action: clone + offset: + x: 102% + count: 5 + - action: clone + offset: + y: 105% + count: 3 + +export_settings: + tp_settings1: + gcode: + safety_height: 25 + plunge_feedrate: 50 + step_width: + x: 0.1 + y: 0.1 + z: 0.1 + corner_style: + mode: optimize_tolerance + naive_tolerance: 0.1 + motion_tolerance: 0.05 + +exports: + export1: + source: + type: toolpath + items: + - toolpath1 + format: + type: gcode + dialect: linuxcnc + comment: Complete grid of 5x3 toolpaths. + export_settings: tp_settings1 + target: + type: file + location: grid_5x3.ngc + export2: + source: + type: toolpath + items: + - toolpath1 + - toolpath2 + format: + type: preview_2d + filetype: png + target: + type: clipboard + export_support_model: + source: + type: model + models: + - model1_support + format: + type: model + filetype: stl + target: + type: file + location: model1_support.stl diff --git a/pycam/yaml_flow_working.yml b/pycam/yaml_flow_working.yml new file mode 100644 index 00000000..7caef7b6 --- /dev/null +++ b/pycam/yaml_flow_working.yml @@ -0,0 +1,189 @@ +--- +# currently implemented features +# see "yaml_flow_example.yml" for a full format description (not fully implemented) + +models: + model1: + source: + type: file + location: samples/Box0.stl + transformations: + - action: scale + scale_target: factor + axes: + x: 1.25 + - action: scale + scale_target: factor + axes: 0.7 + - action: scale + scale_target: size + axes: + x: 10 + - action: shift + shift_target: distance + axes: + x: -20 + - action: shift + shift_target: align_max + axes: + z: 0 + - action: shift + shift_target: align_min + axes: [10, 20, 0] + - action: shift + shift_target: center + axes: + x: 50 + - action: rotate + center: [10, 10, 0] + vector: [0, 0, 1] + angle: 90 + - action: multiply_matrix + matrix: + - [1, 0, 0] + - [0, 1, 0] + - [0, 0, -1] + model1_support: + source: + type: support_bridges + models: + - model1 + layout: grid + grid: + distances: {x: 5, y: 7} + offsets: + x: [1, 2, 0] + y: [-3] + shape: + height: 2 + width: 0.5 + length: 4 + model2: + source: + type: copy + original: model1 + transformations: + - action: projection + center: [0, 0, 2] + vector: + x: 0 + y: 0 + z: 1 + - action: toggle_polygon_directions + - action: revise_polygon_directions + +tools: + tool1: + shape: flat_bottom + diameter: 3 + feed: 300 + spindle: + spin_up_enabled: true + spin_up_delay: 3 + speed: 1200 + +processes: + process_slicing: + strategy: slice + path_pattern: grid + overlap: 0.10 + step_down: 1.0 + grid_direction: x + milling_style: ignore + process_engrave: + strategy: engrave + step_down: 1.0 + trace_models: + - model2 + +bounds: + bounds1: + specification: absolute + lower: + x: -5 + y: -5 + z: 0 + upper: + x: 5 + y: 5 + z: 1 + reference_models: + - model1 + bounds2: + specification: margins + lower: [2, 2, 2] + upper: [2, 2, 2] + reference_models: + - model1 + +tasks: + task1: + type: milling + tool: tool1 + process: process_slicing + bounds: bounds1 + collision_models: + - model1 + - model1_support + task2: + type: milling + tool: tool1 + process: process_engrave + bounds: bounds2 + + +toolpaths: + toolpath1: + source: + type: task + item: task1 + transformations: + - action: clone + offset: [20, 0, 0] + clone_count: 1 + - action: shift + shift_target: align_min + axes: [0, 0, null] + - action: shift + shift_target: align_max + axes: [null, null, 0] + +export_settings: + tp_settings1: + gcode: + safety_height: 25 + plunge_feedrate: 50 + step_width: + x: 0.1 + y: 0.1 + z: 0.1 + corner_style: + mode: optimize_tolerance + naive_tolerance: 0.1 + motion_tolerance: 0.05 + +exports: + export1: + format: + type: gcode + dialect: linuxcnc + comment: Some GCode export + export_settings: tp_settings1 + source: + type: toolpath + items: + - toolpath1 + target: + type: file + location: test.ngc + export_support_model: + source: + type: model + items: + - model1_support + format: + type: model + filetype: stl + target: + type: file + location: model1_support.stl diff --git a/sdf/__init__.py b/sdf/__init__.py index 8f6055b5..5ae08116 100644 --- a/sdf/__init__.py +++ b/sdf/__init__.py @@ -16,6 +16,8 @@ from .mesh import ( generate, save, + save_mesh, + read_mesh, sample_slice, show_slice, ) @@ -23,3 +25,16 @@ from .stl import ( write_binary_stl, ) + +from .step import ( + write_step, +) +from .simplify import ( + simplify, +) +from .slic3r import ( + slic3r, +) +from .pycam import ( + pycam, +) diff --git a/sdf/d2.py b/sdf/d2.py index ba3272d2..df6e8574 100644 --- a/sdf/d2.py +++ b/sdf/d2.py @@ -56,14 +56,34 @@ def wrapper(*args, **kwargs): # Helpers -def _length(a): - return np.linalg.norm(a, axis=1) +def _length(a, axis=1): + #return np.linalg.norm(a, axis=axis) + return np.sum(a * a, axis=axis) ** 0.5 + +def _length2(a, axis=1): + return np.sum(a * a, axis=axis) def _normalize(a): return a / np.linalg.norm(a) -def _dot(a, b): - return np.sum(a * b, axis=1) +def _dot(a, b, axis=1): + return np.sum(a * b, axis=axis) + +def _unit(a, axis=1): + return a / _length(a, axis=axis) + +def _project(a,b,axis=1): + #print(a,b) + #print(a*b, a*a, b*b) + #print(np.sum(a * b, axis=axis),np.sum(b * b, axis=axis),b) + return _dot(a,b,axis=axis)/_dot(b,b,axis=axis)*b + +def _is_rh(a,b): + r = _unit(a,axis=0) + return (r[1]*b[0]-r[0]*b[1]) > 0 + +#def _T(a): +# return np.transpose(a) def _vec(*arrs): return np.stack(arrs, axis=-1) @@ -71,6 +91,61 @@ def _vec(*arrs): _min = np.minimum _max = np.maximum +# Winding curve function, TODO: could be used for bounding box checks +def _wn(pnts, poly): + # Winding number algorithm + #print("points: {}".format(pnts.shape)) + #print("points: {}".format(pnts)) + #print("min: {}".format(np.min(poly, axis=0))) + + x0 = poly[:-1,0] # polygon `from` coordinates + y0 = poly[:-1,1] # polygon `from` coordinates + x1 = poly[1 :,0] # polygon `to` coordinates + y1 = poly[1 :,1] # polygon `to` coordinates + #pp = np.atleast_2d(points).reshape(2, -1) + #del_tails = pp.T[:, None] - self.v[:, :-1].T # shaped (n, m, 2) + #b1 = del_tails[:, :, 1] >= 0.0 + #b2 = np.less.outer(pp[1], self.v[1, 1:]) + #sides = np.sign(np.einsum("ijk, kj -> ij", del_tails, self._ie)) + #wn_pos = (b1 & b2 & (sides > 0)).sum(axis=1, dtype=int) + #wn_neg = (~b1 & ~b2 & (sides < 0)).sum(axis=1, dtype=int) + #wn = wn_pos - wn_neg + + x = pnts[:,0] # point coordinates + y = pnts[:,1] # point coordinates + #print("x0: {} y0: {} x1: {} y1: {} x: {} y: {}".format(x0,y0,x1,y1,x,y)) + y_y0 = y[:,None] - y0 + x_x0 = x[:,None] - x0 + #print("y_y0: {}".format(y_y0)) + #print("x_x0: {}".format(x_x0)) + diff_ = (x1 - x0) * y_y0 - (y1 - y0) * x_x0 # diff => einsum in original + chk1 = (y_y0 >= 0.0) + chk2 = np.less(y[:, None], y1) # pnts[:, 1][:, None], poly[1:, 1]) + chk3 = np.sign(diff_).astype(np.int) + #print("chk1: {}".format(chk1)) + pos = (chk1 & chk2 & (chk3 > 0)).sum(axis=1, dtype=int) + neg = (~chk1 & ~chk2 & (chk3 < 0)).sum(axis=1, dtype=int) + #print("pos: {}".format(pos)) + #print("neg: {}".format(neg)) + #print("wn size: {} {}".format(pos.shape,neg.shape)) + return (pos - neg) + #print("wn : {}".format(wn)) + #out_ = pnts[np.nonzero(wn)] + #if return_winding: + # return out_, wn + #return out_ + +def _mindist(a, b): + outside = (a > 0) & (b > 0) + return np.where(outside, _min(a,b), _max(a,b)) + +def _additive(a, b): + outside = (a > 0) & (b > 0) + return np.where(outside, _min(a,b), _max(a,b)) +def _subtractive(a, b): + inside = (a < 0) & (b < 0) + return np.where(inside, _max(a,b), _min(a,b)) + # Primitives @sdf2 @@ -87,7 +162,7 @@ def f(p): return f @sdf2 -def slab(x0=None, y0=None, x1=None, y1=None, k=None): +def crop(x0=None, y0=None, x1=None, y1=None, k=None): fs = [] if x0 is not None: fs.append(line(X, (x0, 0))) @@ -107,18 +182,25 @@ def rectangle(size=1, center=ORIGIN, a=None, b=None): size = b - a center = a + size / 2 return rectangle(size, center) - size = np.array(size) + size = np.abs(np.array(size)) def f(p): q = np.abs(p - center) - size / 2 return _length(_max(q, 0)) + _min(np.amax(q, axis=1), 0) return f @sdf2 -def rounded_rectangle(size, radius, center=ORIGIN): +def rounded_rectangle(size=1, radius=0.1, center=ORIGIN, a=None, b=None): + if a is not None and b is not None: + a = np.array(a) + b = np.array(b) + size = b - a + center = a + size / 2 + return rounded_rectangle(size, radius, center) try: r0, r1, r2, r3 = radius except TypeError: r0 = r1 = r2 = r3 = radius + size = np.abs(np.array(size)) def f(p): x = p[:,0] y = p[:,1] @@ -127,19 +209,19 @@ def f(p): r[np.logical_and(x > 0, y <= 0)] = r1 r[np.logical_and(x <= 0, y <= 0)] = r2 r[np.logical_and(x <= 0, y > 0)] = r3 - q = np.abs(p) - size / 2 + r + q = np.abs(p - center) - size / 2 + r return ( _min(_max(q[:,0], q[:,1]), 0).reshape((-1, 1)) + _length(_max(q, 0)).reshape((-1, 1)) - r) return f @sdf2 -def equilateral_triangle(): +def equilateral_triangle(r=1, center=ORIGIN): + k = 3 ** 0.5 def f(p): - k = 3 ** 0.5 p = _vec( - np.abs(p[:,0]) - 1, - p[:,1] + 1 / k) + np.abs((p[:,0]-center[0])/r) - 1, + (p[:,1]-center[1])/r + 1 / k) w = p[:,0] + k * p[:,1] > 0 q = _vec( p[:,0] - k * p[:,1], @@ -148,7 +230,34 @@ def f(p): p = _vec( p[:,0] - np.clip(p[:,0], -2, 0), p[:,1]) - return -_length(p) * np.sign(p[:,1]) + return -_length(p) * np.sign(p[:,1]) * r + return f + +@sdf2 +def equilateral_polygon(n, r): + sw = np.tan(np.pi/n)*r + ang = np.pi/n + ang2 = 2*np.pi/n + #points = [np.array(p) for p in points] + def f(p): + a = np.arctan2(p[:,1], p[:,0]) + edge = np.round(a / ang2) * ang2 + s = np.sin(edge) + c = np.cos(edge) + x = c*p[:,0]+s*p[:,1] - r + y = _max(np.abs(-s*p[:,0]+c*p[:,1]) - sw, 0) + #rot = a - np.abs(np.mod(a,2*np.pi/n) - np.pi/n) + #s = np.sin(rot) + #c = np.cos(rot) + #matrix = np.array([ + # [c, -s], + # [s, c], + #]).T + #pt = np.dot(p, matrix) + #x = pt[:,0] - r + #y = _min(pt[:,1] - sw,0) + #print("p: {} c: {} s: {} x: {} y: {}".format(p.shape,c.shape,s.shape,x.shape,y.shape)) + return np.sign(x) * _length(_vec(x, y)) return f @sdf2 @@ -183,6 +292,8 @@ def f(p): j = (i + n - 1) % n vi = points[i] vj = points[j] + if np.array_equal(vi, vj): + continue e = vj - vi w = p - vi b = w - e * np.clip(np.dot(w, e) / np.dot(e, e), 0, 1).reshape((-1, 1)) @@ -195,6 +306,481 @@ def f(p): return s * np.sqrt(d) return f +@sdf2 +def rounded_polygon(points): + points = [np.array(pt) for pt in points] + #print("size p:{}".format(p.shape)) + n = len(points) + centers = np.zeros((n, 2)) + curve_left = np.zeros(n, dtype=bool) + for i in range(n): + if points[i][2] != 0: + j = (i + n - 1) % n + vi = points[i][0:2] + vj = points[j][0:2] + curve = points[i][2] + if np.array_equal(vi, vj): + continue + e = vj - vi + + seg_len = np.sum(e*e)**0.5/2 + if abs(curve) < seg_len: + raise Exception("radius too small on segment {} - {} => {}".format(vi, vj, seg_len)) + + # find the center point, radius vector, and if in circle + t = np.sign(curve) * _vec(-e[1],e[0]) # perpendicular to linesegment pointing away from center + middle = (vi + vj)/2 + center = middle - ((curve**2 - seg_len**2) ** 0.5) * t / (np.dot(t,t) ** 0.5) + centers[i,:] = center + curve_left[i] = t[0] < 0 + def f(p): + s = np.ones(len(p)) + d = np.inf * s + for i in range(n): + j = (i + n - 1) % n + vi = points[i][0:2] + vj = points[j][0:2] + curve = points[i][2] + if np.array_equal(vi, vj): + continue + e = vj - vi + w = p - vi + if curve == 0: + b = w - e * np.clip(np.dot(w, e) / np.dot(e, e), 0, 1).reshape((-1, 1)) + d = _min(d, _dot(b, b)) + c1 = p[:,1] >= vi[1] + c2 = p[:,1] < vj[1] + c3 = e[0] * w[:,1] > e[1] * w[:,0] + c = _vec(c1, c2, c3) + s = np.where(np.all(c, axis=1) | np.all(~c, axis=1), -s, s) + else: + center = centers[i,:] + CL = curve_left[i] + pc = p - center + + # build use rotation tensors to find point location with respect to arc + ri = (vi - center) + #Tiy = ri[1]*pc[:,0]-ri[0]*pc[:,1] + c_iy = ri[1]*pc[:,0] > ri[0]*pc[:,1] + rj = (vj - center) + #Tjy = rj[1]*pc[:,0]-rj[0]*pc[:,1] + c_jy = rj[1]*pc[:,0] < rj[0]*pc[:,1] + in_arc = np.logical_and(np.logical_xor(curve < 0, c_iy), np.logical_xor(curve < 0, c_jy)) + + # determine distance for in arc points + r = _length(pc[in_arc],axis=1) + d[in_arc] = _min((abs(curve)-r)**2,d[in_arc]) + + # distance to the arc endpoints + vi_d = _length2(p[~in_arc] - vi) # we only really need to do one side + #vj_d = _length2(p[~in_arc] - vj) + + # minimum distance to anchor + #d = _min(_length2(p - vi), d) + d[~in_arc] = _min(vi_d, d[~in_arc]) + + # check if point is in the arc circle + in_circle = np.zeros(len(p), dtype=bool) + in_circle[in_arc] = r <= abs(curve) + + # check if x axis crossing exists and right handed if on the positive x axis + c1 = p[:,1] >= vi[1] + c2 = p[:,1] < vj[1] + # check if line segment crosses the positive side of the x axis + c3 = e[0] * w[:,1] > e[1] * w[:,0] + + c = _vec(c1, c2, c3) + below = (p[:,1] < vj[1]) & (p[:,1] < vi[1]) & (p[:,1] < center[1]) + above = (p[:,1] > vj[1]) & (p[:,1] > vi[1]) & (p[:,1] > center[1]) + #horizon = _vec(p[:,1] < vj[1], p[:,1] < vi[1], p[:,1] < center[1]) + + s = np.where( + (~CL & in_circle & ((c1 & c2) | (~c1 & ~c2))) + | (np.all( c, axis=1) & ~in_circle) # right handed axis cross and not in circle + | (np.all(~c, axis=1) & ~in_circle) # left handed axis cross and not in circle + | ((above | below) & in_circle) # in arc below or above + #| ((np.all(horizon) | np.all(~horizon)) & in_circle) # in arc below or above + , -s, s) + return s * np.sqrt(d) + return f + +# Rounding + +def round_polygon_smooth_ends(points, sides=None): + # This moves the points on either end of the segment to smooth out edges + points = [np.array(pt) for pt in points] + out = [] + if not sides or not isinstance(sides, list): + raise Exception("Sides must be a list of sides to round, [0,...N]") + + #print("size p:{}".format(p.shape)) + n = len(points) + for i in range(n): + j = (i + n - 1) % n + k = (i + 1) % n + l = (i + 2) % n + + if j in sides: + # we shouldn't do this twice in a row + continue + + if not i in sides: + # go to next side if it isn't specified + out.append(points[i]) + continue + + vj = points[j][0:2] + vi = points[i][0:2] + vk = points[k][0:2] + vl = points[l][0:2] + + va = vi - vj + vb = vk - vi + vc = vl - vk + + if (points[i][2] > 0) & (points[k][2] < 0) & (points[l][2] > 0): + va_p = _vec(-va[1],va[0]) # perpendicular to linesegment pointing to center + middle_a = (vi + vj)/2 + center_a = middle_a + ((points[i][2]**2 - (_length(va,axis=0)/2)**2) ** 0.5) * _unit(va_p,axis=0) + #print("center_a",center_a) + + vc_p = _vec(-vc[1],vc[0]) # perpendicular to linesegment pointing away from center + middle_c = (vk + vl)/2 + center_c = middle_c + ((points[l][2]**2 - (_length(vc,axis=0)/2)**2) ** 0.5) * _unit(vc_p,axis=0) + #print("center_c",center_c) + + center_ac = center_c-center_a + + a = abs(points[i][2]) + abs(points[k][2]) + b = abs(points[k][2]) + abs(points[l][2]) + d2 = _length2(center_c-center_a,axis=0) + + x = (d2 + a**2 - b**2) / (2 * (d2**0.5)) + h = (a**2 - x**2) ** 0.5 + #print("a=",a,"b=",b,"d2=",d2,"x=",x,"h=",h, ) + c2 = center_a + x*_unit(center_ac,axis=0) + h*_unit(_vec(center_ac[1],-center_ac[0]),axis=0) + #print("c2=",c2) + p0=c2+_unit(center_a-c2,axis=0)*abs(points[k][2]) + p1=c2+_unit(center_c-c2,axis=0)*abs(points[k][2]) + out.append(np.array([p0[0],p0[1],points[i][2]])) + out.append(np.array([p1[0],p1[1],points[k][2]])) + + + elif (points[i][2] < 0) & (points[k][2] > 0) & (points[l][2] < 0): + va_p = -_vec(-va[1],va[0]) # perpendicular to linesegment pointing to center + middle_a = (vi + vj)/2 + center_a = middle_a + ((points[i][2]**2 - (_length(va,axis=0)/2)**2) ** 0.5) * _unit(va_p,axis=0) + #print("center_a",center_a) + + vc_p = -_vec(-vc[1],vc[0]) # perpendicular to linesegment pointing away from center + middle_c = (vk + vl)/2 + center_c = middle_c + ((points[l][2]**2 - (_length(vc,axis=0)/2)**2) ** 0.5) * _unit(vc_p,axis=0) + #print("center_c",center_c) + + center_ac = center_c-center_a + + a = abs(points[i][2]) + abs(points[k][2]) + b = abs(points[k][2]) + abs(points[l][2]) + d2 = _length2(center_c-center_a,axis=0) + + x = (d2 + a**2 - b**2) / (2 * (d2**0.5)) + h = (a**2 - x**2) ** 0.5 + #print("a=",a,"b=",b,"d2=",d2,"x=",x,"h=",h, ) + c2 = center_a + x*_unit(center_ac,axis=0) - h*_unit(_vec(center_ac[1],-center_ac[0]),axis=0) + #print("c2=",c2) + p0=c2+_unit(center_a-c2,axis=0)*abs(points[k][2]) + p1=c2+_unit(center_c-c2,axis=0)*abs(points[k][2]) + out.append(np.array([p0[0],p0[1],points[i][2]])) + out.append(np.array([p1[0],p1[1],points[k][2]])) + else: + raise Exception("Cannot smooth ends when not alternating concave and convex at {} {} {}", + points[i][2],points[k][2],points[l][2]) + + #if points[i][2] < 0) & points[k][2] < 0 + return np.vstack(out).tolist() + + +def round_polygon_corners(points, radii, corners=None): + points = [np.array(pt) for pt in points] + out = [] + #print("size p:{}".format(p.shape)) + n = len(points) + for i in range(n): + j = (i + n - 1) % n + k = (i + 1) % n + + if corners: + if not isinstance(corners, list): + raise Exception("Corners must be a list of corners to round, [0,...N]") + + if not i in corners: + # go to next vertex if it isn't specified + out.append(points[i]) + continue + + if isinstance(radii, list): + radius = radii[corners.index(i)] + #print("radius=",radius, " index=", corners.index(i)) + else: + radius = radii + + #print(i,j,k) + vj = points[j][0:2] + vi = points[i][0:2] + vk = points[k][0:2] + + va = vj - vi + vb = vk - vi + + if (va[0]*vb[1] == va[1]*vb[0]) | (va[0]*vb[1] == -va[1]*vb[0]): + # points are along a line, do nothing! + out.append(points[i]) + continue + + rh = 1 + if _is_rh(va, vb): + rh = -1 + # rh_radius = -radius + #else: + # rh_radius = radius + #print("rh=",rh) + + reverse = False + #print("rounding corner {}".format(points[i])) + # line-line + #print("test", points[i][2] == 0 , points[k][2] == 0) + if (points[i][2] == 0) & (points[k][2] == 0): + #print("found line-line") + #print("vi ", vj-vi, vk-vi) + bisector = _unit(va,axis=0) + _unit(vb,axis=0) + va_p = -_unit(np.array((va[1],-va[0])),axis=0)*rh*radius # perpendicular to linesegment + #print("va_p=",va_p) + #print("pvk=",pvk, "bisector=", bisector) + rk = _unit(_project(va_p,bisector,axis=0),axis=0) + #print("rk=",rk) + #print("dot", _dot(bisector,va_p,axis=0)) + center = bisector / _dot(bisector,va_p,axis=0) + #center = _project(rk,bisector,axis=0) + #print("center=",center) + p0 = vi + _project(center,va,axis=0) + p1 = vi + _project(center,vb,axis=0) + out.append(np.array([p0[0],p0[1],0])) + out.append(np.array([p1[0],p1[1],-rh*radius])) + continue + + elif (points[i][2] == 0) & (rh*points[k][2] > 0): + #print("found line-convex") + vb_p = _vec(-vb[1],vb[0])*rh # perpendicular to linesegment pointing away from center + middle_b = (vi + vk)/2 + center_b = middle_b + ((points[k][2]**2 - (_length(vb,axis=0)/2)**2) ** 0.5) * _unit(vb_p,axis=0) + #print("center_b=",center_b) + va_p = -rh*_unit(np.array((va[1],-va[0])),axis=0)*radius # perpendicular to linesegment + #print("va_p=",va_p) + h2 = _length2(_project(center_b-vi-va_p,va_p,axis=0),axis=0) + #print("h2=",h2) + vi_d = ((abs(radius) + rh*points[k][2])**2 - h2) ** 0.5 + #print("vi_d=",vi_d,"first",(_dot(center_b-vi,_unit(va,axis=0),axis=0))) + p0 = vi + _unit(va,axis=0) * (_dot(center_b-vi,_unit(va,axis=0),axis=0) + vi_d) + #print("p0=",p0,"vi=",vi) + c2 = p0 + va_p + #print("c2=",c2) + p1 = c2 + radius * _unit(center_b-c2,axis=0) + out.append(np.array([p0[0],p0[1],0])) + out.append(np.array([p1[0],p1[1],-rh*radius])) + continue + + elif (points[i][2] == 0) & (rh*points[k][2] < 0): + #print("found line-concave") + vb_p = -_vec(-vb[1],vb[0])*rh # perpendicular to linesegment pointing to center + middle_b = (vi + vk)/2 + center_b = middle_b + ((points[k][2]**2 - (_length(vb,axis=0)/2)**2) ** 0.5) * _unit(vb_p,axis=0) + #print("center_b=",center_b) + va_p = -rh*_unit(np.array((va[1],-va[0])),axis=0)*radius # perpendicular to linesegment + #print("va_p=",va_p) + h2 = _length2(_project(center_b-vi-va_p,va_p,axis=0),axis=0) + #print("h2=",h2) + vi_d = ((abs(radius) + rh*points[k][2])**2 - h2) ** 0.5 + #print("vi_d=",vi_d,"first",(_dot(center_b-vi,_unit(va,axis=0),axis=0))) + p0 = vi + _unit(va,axis=0) * (_dot(center_b-vi,_unit(va,axis=0),axis=0) - vi_d) + #print("p0=",p0,"vi=",vi) + c2 = p0 + va_p + #print("c2=",c2) + p1 = c2 - radius * _unit(center_b-c2,axis=0) + out.append(np.array([p0[0],p0[1],0])) + out.append(np.array([p1[0],p1[1],-rh*radius])) + continue + + elif (rh*points[i][2] > 0) & (rh*points[k][2] > 0): + #print("found convex-convex") + vb_p = rh*_vec(-vb[1],vb[0]) # perpendicular to linesegment pointing to center + middle_b = (vi + vk)/2 + #print("middle_b", middle_b, "vec", ((points[k][2]**2 - (_length(vb,axis=0)/2)**2) ** 0.5) * _unit(vb_p,axis=0)) + center_b = middle_b + ((points[k][2]**2 - (_length(vb,axis=0)/2)**2) ** 0.5) * _unit(vb_p,axis=0) + #print("center_b=",center_b) + va_p = rh*_vec(-va[1],va[0]) # perpendicular to linesegment pointing to center + middle_a = (vi + vj)/2 + #print("middle_a", middle_a, "vec", ((points[i][2]**2 - (_length(va,axis=0)/2)**2) ** 0.5) * _unit(va_p,axis=0)) + center_a = middle_a - ((points[i][2]**2 - (_length(va,axis=0)/2)**2) ** 0.5) * _unit(va_p,axis=0) + #print("center_a=",center_a) + center_ab = center_b-center_a + #print("center_ab=",center_ab, _unit(center_ab,axis=0)) + d2 = _length2(center_ab,axis=0) + if d2 < 1e-10: + out.append(points[i]) + continue + a2 = (abs(points[i][2]) + radius) **2 + b2 = (abs(points[k][2]) + radius) **2 + x = (d2 + a2 - b2) / (2 * (d2**0.5)) + h = (a2 - x**2) ** 0.5 + #print("a2=",a2,"b2=",b2,"d2=",d2,"x=",x,"h=",h, ) + c2 = center_a + x*_unit(center_ab,axis=0) + rh*h*_unit(_vec(center_ab[1],-center_ab[0]),axis=0) + #print("first",x*_unit(center_ab,axis=0),"second",h*_unit(_vec(center_ab[1],-center_ab[0]),axis=0)) + #print("c2=",c2) + p0 = radius*_unit(center_a-c2,axis=0)+c2 + #print("p0=",p0) + p1 = radius*_unit(center_b-c2,axis=0)+c2 + #print("p1=",p1) + out.append(np.array([p0[0],p0[1],points[i][2]])) + out.append(np.array([p1[0],p1[1],-rh*radius])) + elif (rh*points[i][2] < 0) & (rh*points[k][2] < 0): + #print("found concave-concave", vi) + vb_p = rh*_vec(-vb[1],vb[0]) # perpendicular to linesegment pointing to center + middle_b = (vi + vk)/2 + #print("middle_b", middle_b, "vec", ((points[k][2]**2 - (_length(vb,axis=0)/2)**2) ** 0.5) * _unit(vb_p,axis=0)) + center_b = middle_b - ((points[k][2]**2 - (_length(vb,axis=0)/2)**2) ** 0.5) * _unit(vb_p,axis=0) + #print("center_b=",center_b) + va_p = rh*_vec(-va[1],va[0]) # perpendicular to linesegment pointing to center + middle_a = (vi + vj)/2 + #print("middle_a", middle_a, "vec", ((points[i][2]**2 - (_length(va,axis=0)/2)**2) ** 0.5) * _unit(va_p,axis=0)) + center_a = middle_a + ((points[i][2]**2 - (_length(va,axis=0)/2)**2) ** 0.5) * _unit(va_p,axis=0) + #print("center_a=",center_a) + center_ab = center_b-center_a + #print("center_ab=",center_ab, _unit(center_ab,axis=0)) + d2 = _length2(center_ab,axis=0) + if d2 < 1e-10: + out.append(points[i]) + continue + a2 = (abs(points[i][2]) - radius) **2 + b2 = (abs(points[k][2]) - radius) **2 + x = (d2 + a2 - b2) / (2 * (d2**0.5)) + h = (a2 - x**2) ** 0.5 + #print("a2=",a2,"b2=",b2,"d2=",d2,"x=",x,"h=",h, ) + c2 = center_a + x*_unit(center_ab,axis=0) + rh*h*_unit(_vec(center_ab[1],-center_ab[0]),axis=0) + #print("first",x*_unit(center_ab,axis=0),"second",h*_unit(_vec(center_ab[1],-center_ab[0]),axis=0)) + #print("c2=",c2) + p0 = -radius*_unit(center_a-c2,axis=0)+c2 + #print("p0=",p0) + p1 = -radius*_unit(center_b-c2,axis=0)+c2 + #print("p1=",p1) + out.append(np.array([p0[0],p0[1],points[i][2]])) + out.append(np.array([p1[0],p1[1],-rh*radius])) + elif (rh*points[i][2] < 0) & (rh*points[k][2] > 0): + #print("found concave-convex", vi) + vb_p = rh*_vec(-vb[1],vb[0]) # perpendicular to linesegment pointing to center + middle_b = (vi + vk)/2 + #print("middle_b", middle_b, "vec", ((points[k][2]**2 - (_length(vb,axis=0)/2)**2) ** 0.5) * _unit(vb_p,axis=0)) + center_b = middle_b + ((points[k][2]**2 - (_length(vb,axis=0)/2)**2) ** 0.5) * _unit(vb_p,axis=0) + #print("center_b=",center_b) + va_p = rh*_vec(-va[1],va[0]) # perpendicular to linesegment pointing to center + middle_a = (vi + vj)/2 + #print("middle_a", middle_a, "vec", ((points[i][2]**2 - (_length(va,axis=0)/2)**2) ** 0.5) * _unit(va_p,axis=0)) + center_a = middle_a + ((points[i][2]**2 - (_length(va,axis=0)/2)**2) ** 0.5) * _unit(va_p,axis=0) + #print("center_a=",center_a) + center_ab = center_b-center_a + #print("center_ab=",center_ab, _unit(center_ab,axis=0)) + d2 = _length2(center_ab,axis=0) + if d2 < 1e-10: + out.append(points[i]) + continue + a2 = (abs(points[i][2]) - radius) **2 + b2 = (abs(points[k][2]) + radius) **2 + x = (d2 + a2 - b2) / (2 * (d2**0.5)) + h = (a2 - x**2) ** 0.5 + #print("a2=",a2,"b2=",b2,"d2=",d2,"x=",x,"h=",h, ) + c2 = center_a + x*_unit(center_ab,axis=0) - rh*h*_unit(_vec(center_ab[1],-center_ab[0]),axis=0) + #print("first",x*_unit(center_ab,axis=0),"second",h*_unit(_vec(center_ab[1],-center_ab[0]),axis=0)) + #print("c2=",c2) + #p0 = c2 + p0 = -radius*_unit(center_a-c2,axis=0)+c2 + #print("p0=",p0) + p1 = radius*_unit(center_b-c2,axis=0)+c2 + #print("p1=",p1) + out.append(np.array([p0[0],p0[1],points[i][2]])) + out.append(np.array([p1[0],p1[1],-rh*radius])) + elif (points[k][2] == 0) | ((rh*points[i][2] > 0) & (rh*points[k][2] < 0)): + #print([ + # [vk[0],vk[1],0], + # [vi[0],vi[1],0], + # [vj[0],vj[1],-points[i][2]] + # ], [radius], [1]) + p = round_polygon_corners([ + [vk[0],vk[1],0], + [vi[0],vi[1],-points[k][2]], + [vj[0],vj[1],-points[i][2]] + ], [radius], [1]) + #print("p",p) + out.append(np.array([p[2][0],p[2][1],points[i][2]])) + out.append(np.array([p[1][0],p[1][1],-rh*radius])) + else: + out.append(points[i]) + + #va_p = np.sign(points[i][2]) * _vec(-va[1],va[0]) + #vb_p = np.sign(points[k][2]) * _vec(-vb[1],vb[0]) + + #va_middle = (vi + vj)/2 + #vb_middle = (vi + vk)/2 + + #e = vj - vi + #va_center = va_middle - ((curve**2 - seg_len**2) ** 0.5) * t / (np.dot(t,t) ** 0.5) + + #if points[j][2] != 0: + # vap = _project(vb,[va[1],-va[0]]) + # vj_curve = + + #if reverse == False: + # out.append(np.array([p0[0],p0[1],points[j][2]])) + # out.append(np.array([p1[0],p1[1],rh_radius])) + #else: + # out.append(np.array([p1[0],p1[1],points[j][2]])) + # out.append(np.array([p0[0],p0[1],rh_radius])) + return np.vstack(out).tolist() + +def rounded_cog(outer_r, cog_r, num, center=ORIGIN): + num = int(num) + half_ang = 360/num/4 + b = outer_r - cog_r + f = sinD(half_ang)*b + if (cog_r <= 0) | (outer_r <= 0): + raise Exception("rounded_cog: radii must be positive") + if cog_r <= f: + raise Exception("rounded_cog: cog radius too small") + outer_center = (b**2-f**2)**0.5+(cog_r**2-f**2)**0.5 + pts = [[outer_r, 0, cog_r]] + s = 1 + for i in range(2*num): + if (i % 2 == 0) & (i > 0): + pts = np.vstack((pts,[ + outer_r*cosD((i*2)*half_ang), + outer_r*sinD((i*2)*half_ang), + s*cog_r])) + pts = np.vstack((pts,[ + outer_center*cosD((i*2+1)*half_ang), + outer_center*sinD((i*2+1)*half_ang), + s*cog_r])) + s = -s + pts = round_polygon_smooth_ends(pts, list(range(1,3*num,3))) + return rounded_polygon(pts) + # TODO: simplify this function into angle driven + #def fun(p): + # p_ang = np.arctan2(p[:,1]-center[1],p[:,0]-center[0]) + # p_ang = half_ang - np.abs(np.mod(p_ang,2*half_ang) - half_ang) + # p_len = _length(p - center) + # px = np.sin(p_ang)*p_len + # py = np.cos(p_ang)*p_len + # return _length(p - center) - radius + #return fun + + # Positioning @op2 @@ -215,11 +801,30 @@ def f(p): return other(p / s) * m return f +@op2 +def edge(other, width): + def f(p): + return np.abs(other(p)) - width + return f + @op2 def rotate(other, angle): s = np.sin(angle) c = np.cos(angle) - m = 1 - c + #m = 1 - c + matrix = np.array([ + [c, -s], + [s, c], + ]).T + def f(p): + return other(np.dot(p, matrix)) + return f + +@op2 +def rotateD(other, angle): + s = np.sin(angle*(180/np.pi)) + c = np.cos(angle*(180/np.pi)) + #m = 1 - c matrix = np.array([ [c, -s], [s, c], @@ -228,6 +833,45 @@ def f(p): return other(np.dot(p, matrix)) return f +@op2 +def mirror(other, axis=Y, center=ORIGIN): + u = _normalize(np.array(axis)) + #m = 1 - c + matrix_a = np.array([ + [u[0], u[1]], + [-u[1], u[0]], + ]).T + matrix_b = [[-1,0],[0,1]] + matrix_c = np.array([ + [u[0], -u[1]], + [u[1], u[0]], + ]).T + # Create the overall transformation matrix + matrix = np.matmul(np.matmul(matrix_a,matrix_b),matrix_c) + def f(p): + return other(np.dot(p-center, matrix)+center) + return f + +@op2 +def mirror_copy(other, axis=Y, center=ORIGIN): + u = _normalize(np.array(axis)) + #m = 1 - c + matrix_a = np.array([ + [u[0], u[1]], + [-u[1], u[0]], + ]).T + matrix_b = [[-1,0],[0,1]] + matrix_c = np.array([ + [u[0], -u[1]], + [u[1], u[0]], + ]).T + # Create the overall transformation matrix + matrix = np.matmul(np.matmul(matrix_a,matrix_b),matrix_c) + def f(p): + return _min(other(np.dot(p-center, matrix)+center),other(p)) + return f + + @op2 def circular_array(other, count): angles = [i / count * 2 * np.pi for i in range(count)] @@ -255,6 +899,117 @@ def f(p): return _min(_max(w[:,0], w[:,1]), 0) + _length(_max(w, 0)) return f +@op23 +def rounded_extrude_stack(obj1,obj2,h1,h2,radius=1,weld_radius=None): + h_mid = (h1+h2)/2 + if weld_radius is None: + weld_radius = radius + + def f(p): + d1 = obj1(p[:,[0,1]]).reshape(-1) + d2 = obj2(p[:,[0,1]]).reshape(-1) + mid_d = (d2-d1)/2 + + w = (p[:,2]) - h1 + out = np.abs(p[:,2] - h_mid) - h_mid + + # top of bottom + xyplane = (d2 <= 0) & (d1 > 0) + out[xyplane] = np.abs(w[xyplane]-h2/2) - h2/2 + xyplane = (d2 > 0) & (d1 <= 0) + out[xyplane] = np.abs(w[xyplane]+h1/2) - h1/2 + + # sides of bottom + side = (w < 0) & (w > -h1) + out[side] = _mindist(d1[side],out[side]) + # sides of top + side = (w > 0) & (w < h2) + out[side] = _mindist(d2[side],out[side]) + + # top crown space + crown = (w > h2-radius) & (d2 > -radius) + out[crown] = _length(_vec(_max(d2[crown]+radius,0),_max(w[crown]-h2+radius,0))) - radius + # top bottom-crown space + #crown = (w < radius) & (w > 0) & (d2 > -radius) & (mid_d < 0) & (d1 > 0) + crown = (w <= radius) & (d2 > -radius) & (mid_d < 0) & (d1 > 0) + crown_radius = _min(-mid_d[crown],radius) + out[crown & (d2 <= 0) & (w >= 0)] = 2*radius + out[crown] = _min(_length(_vec(_max(d2[crown]+crown_radius,0),_max(-w[crown]+crown_radius,0))) - crown_radius, out[crown]) + # bottom top-crown space + #crown = (w > -radius) & (w <= 0) & (d1 >= -radius) & (mid_d > 0) & (d2 > 0) + crown = (w >= -radius) & (d1 >= -radius) & (mid_d >= 0) & (d2 > 0) + crown_radius = _min(mid_d[crown],radius) + out[crown & (d1 <= 0) & (w <= 0)] = 2*radius + out[crown] = _min(_length(_vec(_max(d1[crown]+crown_radius,0),_max(w[crown]+crown_radius,0))) - crown_radius, out[crown]) + # bottom bottom-crown space + crown = (-w > h1-radius) & (d1 > -radius) + out[crown] = _length(_vec(_max(d1[crown]+radius,0),_max(-w[crown]-h1+radius,0))) - radius + + # weld top joint + g = _max(weld_radius**2 - _max(weld_radius - np.abs(mid_d),0)**2,0)**0.5 + mid = (mid_d > 0) & (d2 < weld_radius) & (abs(w) < g) & ((d2 < mid_d + w * (weld_radius-mid_d)/_max(g,1e-20))) + out[mid] = _min(weld_radius - ((g[mid] - w[mid])**2+(weld_radius-d2[mid])**2)**0.5, out[mid]) + + # weld bottom joint + mid = (mid_d < 0) & (d1 < weld_radius) & (abs(w) < g) & ((d1 < -mid_d - w * (weld_radius+mid_d)/_max(g,1e-20))) + out[mid] = _min(weld_radius - ((g[mid] + w[mid])**2+(weld_radius-d1[mid])**2)**0.5, out[mid]) + + return out + return f + +@op23 +def rounded_extrude(other,h,radius=1): + if radius == 0: + return extrude(other,h) + elif radius > 0: + def f(p): + d = other(p[:,[0,1]]).reshape(-1) + w = np.abs(p[:,2]) - h/2 + out = _mindist(w,d) + # head space + #head = (w > -2*radius) & (w <= -radius) & (d >= -radius) & (d <= 0) + #out[head] = _max(w[head] + (radius - (radius**2 - (radius + d[head])**2)**0.5), d[head]) + # crown space + crown = np.logical_and(w > -radius,d > -radius) + out[crown] = _length(_vec(_max(d[crown]+radius,0),_max(w[crown]+radius,0))) - radius + return out + return f + elif radius < 0: + radius = -radius + def f(p): + d = other(p[:,[0,1]]).reshape(-1) + w = np.abs(p[:,2]) - h/2 + out = _mindist(w,d) + # inside space + inside = (w <= 0) & (d <= 0) + out[inside] = _max(radius - _length(_vec(d[inside], w[inside])), out[inside]) + # crown space + crown = (w+radius > 0) & (d >= 0) & (w <= d) + out[crown] = _length(_vec(d[crown], w[crown]+radius)) + crown = (w >= 0) & (d+radius > 0) & (d <= w) + out[crown] = _length(_vec(d[crown]+radius, w[crown])) + return out + return f + + +@op23 +def taper_extrude(other, h, slope=0, e=ease.linear): + def f(p): + d = other(p[:,[0,1]]).reshape(-1) + e(np.clip(p[:,2]/h,0,1))*h*slope + w = _vec(d, np.abs(p[:,2] - h/2) - h / 2) + return _min(_max(w[:,0], w[:,1]), 0) + _length(_max(w, 0)) + return f + +@op23 +def scale_extrude(other, h, top=1, bottom=1, e=ease.linear): + def f(p): + q = e(np.clip(p[:,[2]]/h,0,1)) + sc = ((1 - q)*top + q * bottom) + d = other(p[:,[0,1]] * sc) / sc + w = _vec(d.reshape(-1), np.abs(p[:,2] - h/2) - h / 2) + return _min(_max(w[:,0], w[:,1]), 0) + _length(_max(w, 0)) + return f + @op23 def extrude_to(a, b, h, e=ease.linear): def f(p): @@ -274,6 +1029,50 @@ def f(p): return other(q) return f +@op23 +def helix_revolve(other, offset=0, pitch=1, rotations=1): + # Note: Use a negative pitch to reverse the helix direction. + abs_pitch = abs(pitch) + sgn_pitch = np.sign(pitch) + s = np.sin(rotations*2*np.pi) + c = np.cos(rotations*2*np.pi) + top_rotation = np.array([ + [c, s], + [-s, c], + ]).T + + def f(p): + a = -np.arctan2(p[:,1], -p[:,0]) / (sgn_pitch*2*np.pi) + 1/2 + z = p[:,2] - a*abs_pitch + n0 = np.floor(z/abs_pitch) + n1 = np.ceil(z/abs_pitch) + #z -= (_max(n,0) - np.ceil(_max(n+a-rotations,0))) * abs_pitch + z0 = z-(_max(n0,0) - np.ceil(_max(n0+a-rotations,0))) * abs_pitch + z1 = z-(_max(n1,0) - np.ceil(_max(n1+a-rotations,0))) * abs_pitch + + # Climing distance + xy = p[:,[0,1]] + #q = _vec(_length(xy) - offset, z) + d = _min(other(_vec(_length(xy) - offset, z0)),other(_vec(_length(xy) - offset, z1))) + + # Base distance + d_xz = _max(other(p[:,[0,2]]),0) + base_d = _vec(_length(np.hstack((d_xz,_vec(p[:,1]))))) + + #np.dot(p, matrix) + # Top distance + top_xy = np.dot(p[:,[0,1]], top_rotation) + d_xz = _max(other(np.hstack((top_xy[:,[0]],p[:,[2]]-pitch*rotations))),0) + top_d = _vec(_length(np.hstack((d_xz,_vec(top_xy[:,1]))))) + #base_d = _vec(_length(np.hstack((base,_vec(p[:,1]))))) + + #return base_d + return _min(_min(d, base_d),top_d) + #return _min(top_d, base_d) + #w = _vec(d.reshape(-1), np.abs(p[:,2]) - h / 2) + #return _min(_max(w[:,0], w[:,1]), 0) + _length(_max(w, 0)) + return f + # Common union = op2(dn.union) @@ -285,3 +1084,22 @@ def f(p): erode = op2(dn.erode) shell = op2(dn.shell) repeat = op2(dn.repeat) + +def arc_sinD(slope): + return np.arcsin(slope)*(180.0/np.pi) +def arc_cosD(slope): + return np.arccos(slope)*(180.0/np.pi) +def arc_tanD(slope): + return np.arctan(slope)*(180.0/np.pi) +def arc_tan2D(y,x): + return np.arctan2(y,x)*(180.0/np.pi) +def sinD(ang): + return np.sin(ang*(np.pi/180)) +def cosD(ang): + return np.cos(ang*(np.pi/180)) +def tanD(ang): + return np.tan(ang*(np.pi/180)) +def arc_lenD(ang, radius): + return 2*radius*sinD(ang/2) +def arc_depthD(ang, radius): + return radius*(1-cosD(ang/2)) diff --git a/sdf/d3.py b/sdf/d3.py index 237c1cd6..6c44a165 100644 --- a/sdf/d3.py +++ b/sdf/d3.py @@ -133,19 +133,20 @@ def f(p): return f @sdf3 -def rounded_box(size, radius): +def rounded_box(size, radius, center=ORIGIN): size = np.array(size) def f(p): - q = np.abs(p) - size / 2 + radius + q = np.abs(p-center) - size / 2 + radius return _length(_max(q, 0)) + _min(np.amax(q, axis=1), 0) - radius return f @sdf3 -def wireframe_box(size, thickness): +def wireframe_box(size, thickness, center=ORIGIN): size = np.array(size) def g(a, b, c): return _length(_max(_vec(a, b, c), 0)) + _min(_max(a, _max(b, c)), 0) def f(p): + p = p - center p = np.abs(p) - size / 2 - thickness / 2 q = np.abs(p + thickness / 2) - thickness / 2 px, py, pz = p[:,0], p[:,1], p[:,2] @@ -203,11 +204,13 @@ def f(p): return f @sdf3 -def rounded_cylinder(ra, rb, h): +def rounded_cylinder(a, b, ra, rb): + h = abs(a - b) + z = (a + b) / 2 def f(p): d = _vec( _length(p[:,[0,1]]) - ra + rb, - np.abs(p[:,2]) - h / 2 + rb) + np.abs(p[:,2] - z) - h / 2 + rb) return ( _min(_max(d[:,0], d[:,1]), 0) + _length(_max(d, 0)) - rb) @@ -343,6 +346,12 @@ def f(p): return other(p / s) * m return f +@op3 +def skin(other, depth): + def f(p): + return _max(other(p) - depth, 0) + return f + @op3 def rotate(other, angle, vector=Z): x, y, z = _normalize(vector) @@ -358,6 +367,21 @@ def f(p): return other(np.dot(p, matrix)) return f +@op3 +def rotateD(other, angle, vector=Z): + x, y, z = _normalize(vector) + s = np.sin(angle*(180/np.pi)) + c = np.cos(angle*(180/np.pi)) + m = 1 - c + matrix = np.array([ + [m*x*x + c, m*x*y + z*s, m*z*x - y*s], + [m*x*y - z*s, m*y*y + c, m*y*z + x*s], + [m*z*x + y*s, m*y*z - x*s, m*z*z + c], + ]).T + def f(p): + return other(np.dot(p, matrix)) + return f + @op3 def rotate_to(other, a, b): a = _normalize(np.array(a)) @@ -375,6 +399,81 @@ def rotate_to(other, a, b): def orient(other, axis): return rotate_to(other, UP, axis) +@op3 +def mirror(other, axis=Z, center=ORIGIN): + a = _normalize(np.array(axis)) + dot = np.dot(UP, a) + if (dot == 1) | (dot == -1): + def f(p): + return other(np.dot(p-center,[[1,0,0],[0,1,0],[0,0,-1]])+center) + return f + angle = np.arccos(dot) + x, y, z = _normalize(np.cross(UP, a)) + + # Rotate to the Z axis + s = np.sin(angle) + c = np.cos(angle) + m = 1 - c + matrix_a = np.array([ + [m*x*x + c, m*x*y + z*s, m*z*x - y*s], + [m*x*y - z*s, m*y*y + c, m*y*z + x*s], + [m*z*x + y*s, m*y*z - x*s, m*z*z + c], + ]).T + # Do the flip + matrix_b = np.array([[1,0,0],[0,1,0],[0,0,-1]]).T + # Rotate back + s = np.sin(-angle) + c = np.cos(-angle) + m = 1 - c + matrix_c = np.array([ + [m*x*x + c, m*x*y + z*s, m*z*x - y*s], + [m*x*y - z*s, m*y*y + c, m*y*z + x*s], + [m*z*x + y*s, m*y*z - x*s, m*z*z + c], + ]).T + # Create the overall transformation matrix + matrix = np.matmul(np.matmul(matrix_a,matrix_b),matrix_c) + def f(p): + return other(np.dot(p-center, matrix)+center) + return f + +@op3 +def mirror_copy(other, axis=Z, center=ORIGIN): + a = _normalize(np.array(axis)) + dot = np.dot(UP, a) + if (dot == 1) | (dot == -1): + def f(p): + return _min(other(np.dot(p-center,[[1,0,0],[0,1,0],[0,0,-1]])+center),other(p)) + return f + angle = np.arccos(dot) + x, y, z = _normalize(np.cross(UP, a)) + + # Rotate to the Z axis + s = np.sin(angle) + c = np.cos(angle) + m = 1 - c + matrix_a = np.array([ + [m*x*x + c, m*x*y + z*s, m*z*x - y*s], + [m*x*y - z*s, m*y*y + c, m*y*z + x*s], + [m*z*x + y*s, m*y*z - x*s, m*z*z + c], + ]).T + # Do the flip + matrix_b = np.array([[1,0,0],[0,1,0],[0,0,-1]]).T + # Rotate back + s = np.sin(-angle) + c = np.cos(-angle) + m = 1 - c + matrix_c = np.array([ + [m*x*x + c, m*x*y + z*s, m*z*x - y*s], + [m*x*y - z*s, m*y*y + c, m*y*z + x*s], + [m*z*x + y*s, m*y*z - x*s, m*z*z + c], + ]).T + # Create the overall transformation matrix + matrix = np.matmul(np.matmul(matrix_a,matrix_b),matrix_c) + def f(p): + return _min(other(np.dot(p-center, matrix)+center),other(p)) + return f + + @op3 def circular_array(other, count, offset=0): other = other.translate(X * offset) diff --git a/sdf/dn.py b/sdf/dn.py index 9c245e82..9090a2e6 100644 --- a/sdf/dn.py +++ b/sdf/dn.py @@ -112,3 +112,32 @@ def f(p): a = _min(a, b) return a return f + +#def _project(a,b,axis=1): +# return b*_dot(a,b,axis=axis)/_dot(b,b,axis=axis) +# +#def round_polygon_vertex(points, corners, radii): +# points = [np.array(pt) for pt in points] +# out = [] +# #print("size p:{}".format(p.shape)) +# n = len(points) +# for i in range(n): +# j = (i + n - 1) % n +# k = (i + 1) % n +# if not i in corners: +# out.append(points[i]) +# else: +# radius = radii[corners.index(i)] +# vj = points[j][0:2] +# vi = points[i][0:2] +# vk = points[k][0:2] +# print("rounding corner {}".format(points[i])) +# # line-line +# if points[i][2] == 0 & points[k][2] == 0: +# print("found line-line") +# bisector = _unit(vj - vi,axis=0) + _unit(vk - vi,axis=0) +# pvk = [vk[1],-vk[0]] +# rk = _unit(_project(bisector,pvk,axis=0),axis=0) * radius +# center = _project(rk,bisector) +# out.append(vi + _project(center,vj)) +# out.append(vi + _project(center,vk)) diff --git a/sdf/mesh.py b/sdf/mesh.py index 8895d23c..f6e536b5 100644 --- a/sdf/mesh.py +++ b/sdf/mesh.py @@ -7,7 +7,8 @@ import numpy as np import time -from . import progress, stl +from . import progress, stl, step +from . import simplify as simp WORKERS = multiprocessing.cpu_count() SAMPLES = 2 ** 22 @@ -84,7 +85,9 @@ def generate( sdf, step=None, bounds=None, samples=SAMPLES, workers=WORKERS, batch_size=BATCH_SIZE, - verbose=True, sparse=True): + verbose=True, sparse=True, + simplify=False, simp_ratio=0.5, simp_agressive=7, + simp_add_random=None, simp_smooth=False, simp_cut=False): start = time.time() @@ -146,16 +149,41 @@ def generate( seconds = time.time() - start print('%d triangles in %g seconds' % (triangles, seconds)) + if simplify: + points = simp.simplify(sdf,points,simp_ratio=simp_ratio, simp_agressive=simp_agressive, + simp_add_random=simp_add_random, simp_smooth=simp_smooth, simp_cut=simp_cut) + return points def save(path, *args, **kwargs): points = generate(*args, **kwargs) if path.lower().endswith('.stl'): stl.write_binary_stl(path, points) + elif path.lower().endswith('.step') or path.lower().endswith('.stp'): + step.write_step(path, points) else: mesh = _mesh(points) mesh.write(path) +def save_mesh(path, points): + if path.lower().endswith('.stl'): + stl.write_binary_stl(path, points) + elif path.lower().endswith('.step') or path.lower().endswith('.stp'): + step.write_step(path, points) + else: + mesh = _mesh(points) + mesh.write(path) + +def read_mesh(path): + import meshio + if path.lower().endswith('.stl'): + return stl.read_binary_stl(path) + elif path.lower().endswith('.step') or path.lower().endswith('.stp'): + print("read of step not implemented, please convert to stp or other meshio format") + else: + out = meshio.read(path) + return out.points[out.cells[0][1].reshape(-1,1),:].reshape(-1,3) + def _mesh(points): import meshio points, cells = np.unique(points, axis=0, return_inverse=True) diff --git a/sdf/pycam.py b/sdf/pycam.py new file mode 100644 index 00000000..9c3d1a48 --- /dev/null +++ b/sdf/pycam.py @@ -0,0 +1,30 @@ +import numpy as np +import subprocess +import os +import sys +import tempfile +import shutil +import sdf + +def pycam(settings_file, points): + prefile = tempfile.NamedTemporaryFile(suffix=".stl") + prefile.close() + sdf.save_mesh(prefile.name, points) + exe_path = os.path.dirname(os.path.realpath(__file__)) + if os.name == 'nt': + print("Calling pycam: ", settings_file) + #print([exe_path+"/../slic3r/linux/Slic3r"] + opt) + #DIR=exe_path+"/../pycam/pycam" + DIR=exe_path+"\\..\\pycam\\pycam" + my_env = os.environ.copy() + my_env["PYTHONPATH"] = DIR + #subprocess.run(["PYTHONPATH="+DIR, DIR+"/run_cli.py", "--log-level", "info", settings_file]) + subprocess.run([sys.executable, DIR+"\\run_cli.py", "--log-level", "info", settings_file], env=my_env) + elif os.name == 'posix': + print("Calling pycam: ", settings_file) + #print([exe_path+"/../slic3r/linux/Slic3r"] + opt) + DIR=exe_path+"/../pycam/pycam" + my_env = os.environ.copy() + my_env["PYTHONPATH"] = DIR + #subprocess.run(["PYTHONPATH="+DIR, DIR+"/run_cli.py", "--log-level", "info", settings_file]) + subprocess.run([DIR+"/run_cli.py", "--log-level", "info", settings_file], env=my_env) diff --git a/sdf/simplify b/sdf/simplify new file mode 100755 index 00000000..7fe50abc Binary files /dev/null and b/sdf/simplify differ diff --git a/sdf/simplify.exe b/sdf/simplify.exe new file mode 100644 index 00000000..b43094e7 Binary files /dev/null and b/sdf/simplify.exe differ diff --git a/sdf/simplify.py b/sdf/simplify.py new file mode 100644 index 00000000..fed6c15c --- /dev/null +++ b/sdf/simplify.py @@ -0,0 +1,203 @@ +import numpy as np +import subprocess +import os +import tempfile +import meshio +import shutil +from scipy import optimize + +#def simplify(points, ratio=0.5, agressive=7): +# prefile = tempfile.NamedTemporaryFile(suffix=".obj") +# postfile = tempfile.NamedTemporaryFile(suffix=".obj") +# print("Writing out {} for simplification.".format(prefile.name)) +# _mesh(points).write(prefile.name) +# exe_path = os.path.dirname(os.path.realpath(__file__)) +# if os.name == 'nt': +# subprocess.run([exe_path+"\simplify.exe",prefile.name,postfile.name,str(ratio),str(agressive)]) +# elif os.name == 'posix': +# subprocess.run([exe_path+"/simplify",prefile.name,postfile.name,str(ratio),str(agressive)]) +# #os.remove(prefile.name) +# #shutil.copyfile(prefile.name,"test1.obj") +# if os.path.getsize(postfile.name) > 0: +# #print("Reading {}".format(postfile.name)) +# out = meshio.read(postfile.name) +# #print("out.points: {}".format(out.points)) +# #print("out.cells: {}".format(out.cells[0][1])) +# points = out.points[out.cells[0][1].reshape(-1,1),:].reshape(-1,3) +# #print("points: {}".format(points)) +# #os.remove(postfile.name) +# #shutil.copyfile(postfile.name,"test2.obj") +# prefile.close() +# postfile.close() +# return points +# +#def simplify_and_cut(sdf, points, ratio=0.5, agressive=7): +# prefile = tempfile.NamedTemporaryFile(suffix=".obj") +# postfile = tempfile.NamedTemporaryFile(suffix=".obj") +# _mesh(points).write(prefile.name) +# exe_path = os.path.dirname(os.path.realpath(__file__)) +# if os.name == 'nt': +# subprocess.run([exe_path+"\simplify.exe",prefile.name,postfile.name,str(ratio),str(agressive)]) +# elif os.name == 'posix': +# subprocess.run([exe_path+"/simplify",prefile.name,postfile.name,str(ratio),str(agressive)]) +# if os.path.getsize(postfile.name) > 0: +# #print("Reading {}".format(postfile.name)) +# out = meshio.read(postfile.name) +# tri_points = out.points[out.cells[0][1].reshape(-1,1),:].reshape(-1,3,3) +# +# centroid = np.average(tri_points,axis=1) +# +# normals = np.cross(tri_points[:,1] - tri_points[:,0], tri_points[:,2] - tri_points[:,0]) +# normals_len = np.linalg.norm(normals, axis=1).reshape((-1, 1)) +# normals /= normals_len +# normals_step = normals * 0.0025 +# +# d1 = sdf(centroid + normals_step).reshape((-1, 1)) +# d2 = sdf(centroid - normals_step).reshape((-1, 1)) +# d21 = np.abs(d2 - d1) +# dp21 = np.abs(d2 + d1) / 2 +# #print("size d21", d21.shape) +# #print("size normals {}".format(list(normals))) +# valid = ((d21 > 0.0035) & (d21 < 0.0055) & (dp21 > 0.0025))[:,0] +# #print("size valid {}".format(valid)) +# #t = normals[valid[:,0]] +# #print("size normals t" , t.shape) +# #print("size valid", valid.shape) +# direction = np.where(np.abs(d1[valid]) < np.abs(d2[valid]), normals[valid], -normals[valid]) +# centroid = centroid[valid] + direction * dp21[valid] # * 0.005 / d21[valid] +# +# points = [] +# points.append(tri_points[~valid]) +# points.append(np.transpose([tri_points[valid,1,:],tri_points[valid,0,:],centroid],[1,0,2])) +# points.append(np.transpose([centroid,tri_points[valid,0],tri_points[valid,2]],[1,0,2])) +# points.append(np.transpose([tri_points[valid,2],tri_points[valid,1],centroid],[1,0,2])) +# points = np.concatenate(points).astype(np.float32).reshape((-1,3)) +# prefile.close() +# postfile.close() +# return points + +def _mesh(points): + points, cells = np.unique(points, axis=0, return_inverse=True) + cells = [('triangle', cells.reshape((-1, 3)))] + return meshio.Mesh(points, cells) + +def simplify(sdf, points, simp_agressive=7, simp_ratio=0.5, simp_add_random=None, simp_smooth=False, simp_cut=False): + prefile = tempfile.NamedTemporaryFile(suffix=".obj") + postfile = tempfile.NamedTemporaryFile(suffix=".obj") + prefile.close() + postfile.close() + _mesh(points).write(prefile.name) + exe_path = os.path.dirname(os.path.realpath(__file__)) + print("Simplifying...") + if os.name == 'nt': + subprocess.run([exe_path+"\simplify.exe",prefile.name,postfile.name,str(simp_ratio),str(simp_agressive)]) + elif os.name == 'posix': + subprocess.run([exe_path+"/simplify",prefile.name,postfile.name,str(simp_ratio),str(simp_agressive)]) + if os.path.getsize(postfile.name) > 0: + #print("Reading {}".format(postfile.name)) + out = meshio.read(postfile.name) + points = out.points + cells = out.cells[0][1] + +# points_x = points + [[0.00125,0,0]] +# points_y = points + [[0,0.00125,0]] +# points_z = points + [[0,0,0.00125]] +# d = sdf(points) +# dx = sdf(points_x) +# dy = sdf(points_y) +# dz = sdf(points_z) +# sx = (dx-d)/0.00125 +# sy = (dy-d)/0.00125 +# sz = (dz-d)/0.00125 +# points = out.points+d*np.transpose([sx[:,0],sy[:,0],sz[:,0]],[1,0]) + + if simp_cut: + print("Cutting...") + tri_points = points[cells.reshape(-1,1),:].reshape(-1,3,3) + + centroid = np.average(tri_points,axis=1) + + normals = np.cross(tri_points[:,1] - tri_points[:,0], tri_points[:,2] - tri_points[:,0]) + normals_len = np.linalg.norm(normals, axis=1).reshape((-1, 1)) + normals /= normals_len + normals_step = normals * 0.00125 + + d1 = sdf(centroid - normals_step).reshape((-1, 1)) + d2 = sdf(centroid + normals_step).reshape((-1, 1)) + d21 = np.abs(d2 - d1) + dp21 = (d2 + d1) / 2 + valid = ((d21 > 0.0017) & (d21 < 0.0026))[:,0] #& (dp21 > 0.0025))[:,0] + direction = normals[valid] * dp21[valid] + + left = (tri_points[:,2]+tri_points[:,0])/2 + right = (tri_points[:,1]+tri_points[:,0])/2 + top = (tri_points[:,1]+tri_points[:,2])/2 + #left[valid] += direction + #right[valid] += direction + #top[valid] += direction + centroid[valid] -= direction + #centroid = centroid[valid] + direction * dp21[valid] # * 0.005 / d21[valid] + + points = np.transpose([centroid, + tri_points[:,0], + right, + tri_points[:,1], + top, + tri_points[:,2], + left, + ],[1,0,2]).astype(np.float32).reshape((-1,3)) + s = len(tri_points)*7 + cells = np.transpose([ + [range(0,s,7),range(1,s,7),range(2,s,7)], + [range(0,s,7),range(2,s,7),range(3,s,7)], + [range(0,s,7),range(3,s,7),range(4,s,7)], + [range(0,s,7),range(4,s,7),range(5,s,7)], + [range(0,s,7),range(5,s,7),range(6,s,7)], + [range(0,s,7),range(6,s,7),range(1,s,7)], + ],[2,0,1]) + points = points[cells.reshape(-1,1),:].reshape(-1,3).astype(np.float32) + points, cells = np.unique(points, axis=0, return_inverse=True) + + if simp_add_random: + print("Adding Random...") + points += np.random.normal(scale=simp_add_random, size=((points.shape))) + + if simp_smooth: + print("Smoothing...") + d = sdf(points) + for i in range(3): + rpoints = points + np.random.normal(scale=0.00125, size=((points.shape))) + d2 = sdf(rpoints) + vec = np.abs(d) < np.abs(d2) + points = np.where(vec, points, rpoints) + d = np.where(vec, d, d2) +# dx = sdf(points + [[0.00125,0,0]]) +# dy = sdf(points + [[0,0.00125,0]]) +# dz = sdf(points + [[0,0,0.00125]]) +# dmx = sdf(points - [[0.00125,0,0]]) +# dmy = sdf(points - [[0,0.00125,0]]) +# dmz = sdf(points - [[0,0,0.00125]]) +# print("Shifting...") +# sx = (d-dx)[:,0] +# sy = (d-dy)[:,0] +# sz = (d-dz)[:,0] +# smx = (dmx-d)[:,0] +# smy = (dmy-d)[:,0] +# smz = (dmz-d)[:,0] +# points = points+d*_normalize(np.transpose([ +# np.where(np.abs(sx) > np.abs(smx), sx, smx), +# np.where(np.abs(sy) > np.abs(smy), sy, smy), +# np.where(np.abs(sz) > np.abs(smz), sz, smz), +# ],[1,0])) +# print("points", points.shape) +# def fun(p): +# #print("p", p.shape) +# return sdf(p.reshape((-1,3))).repeat(3,1).flat +# sol = optimize.root(fun, points, options={'eps':0.00125, 'maxfev':10}) +# points = sol.x.reshape(-1,3) + + points = points[cells.reshape(-1,1),:].reshape(-1,3) + return points + +def _normalize(a): + return a / np.linalg.norm(a) diff --git a/sdf/slic3r.py b/sdf/slic3r.py new file mode 100644 index 00000000..44d313a7 --- /dev/null +++ b/sdf/slic3r.py @@ -0,0 +1,37 @@ +import numpy as np +import subprocess +import os +import tempfile +import shutil +import sdf + +def slic3r(path, points, options={}): + prefile = tempfile.NamedTemporaryFile(suffix=".stl") + prefile.close() + sdf.save_mesh(prefile.name, points) + exe_path = os.path.dirname(os.path.realpath(__file__)) + if os.name == 'nt': + opt = [] + if "output" not in options: + options["output"] = path + for k in options: + opt += ["--"+k,str(options[k])] + print("Calling slic3r:", opt) + #print([exe_path+"/../slic3r/linux/Slic3r"] + opt) + DIR=exe_path+"\..\slic3r\win" + #os.environ["LD_LIBRARY_PATH"] = DIR+"/bin" + subprocess.run([DIR+"\Slic3r-console.exe"]+opt+[prefile.name]) + #os.environ["LD_LIBRARY_PATH"] = DIR+"/bin" + #subprocess.run([DIR+"/perl-local", "-I"+DIR+"/local-lib/lib/perl5", DIR+"/slic3r.pl"]+opt+[prefile.name]) + #subprocess.run([DIR+"/Slic3r-console.exe", "-I"+DIR+"/local-lib/lib/perl5", DIR+"/slic3r.pl"]+opt+[prefile.name]) + elif os.name == 'posix': + opt = [] + if "output" not in options: + options["output"] = path + for k in options: + opt += ["--"+k,str(options[k])] + print("Calling slic3r:", opt) + #print([exe_path+"/../slic3r/linux/Slic3r"] + opt) + DIR=exe_path+"/../slic3r/linux" + os.environ["LD_LIBRARY_PATH"] = DIR+"/bin" + subprocess.run([DIR+"/perl-local", "-I"+DIR+"/local-lib/lib/perl5", DIR+"/slic3r.pl"]+opt+[prefile.name]) diff --git a/sdf/step.py b/sdf/step.py new file mode 100644 index 00000000..3eda7f92 --- /dev/null +++ b/sdf/step.py @@ -0,0 +1,112 @@ +import numpy as np +import struct +import getpass +import struct +from datetime import datetime + +edge_curve = {} + +def _make_edge_curve(i,a,b,fp,v0,v1,s01): + a_str = struct.pack(' +# by Ned Konz, perl@bike-nomad.com +# Updates by Tye McQueen, http://perlmonks.org/?node=tye + +# Create a hash that maps each element of $aCollection to the set of +# positions it occupies in $aCollection, restricted to the elements +# within the range of indexes specified by $start and $end. +# The fourth parameter is a subroutine reference that will be called to +# generate a string to use as a key. +# Additional parameters, if any, will be passed to this subroutine. +# +# my $hashRef = _withPositionsOfInInterval( \@array, $start, $end, $keyGen ); + +sub _withPositionsOfInInterval +{ + my $aCollection = shift; # array ref + my $start = shift; + my $end = shift; + my $keyGen = shift; + my %d; + my $index; + for ( $index = $start ; $index <= $end ; $index++ ) + { + my $element = $aCollection->[$index]; + my $key = &$keyGen( $element, @_ ); + if ( exists( $d{$key} ) ) + { + unshift ( @{ $d{$key} }, $index ); + } + else + { + $d{$key} = [$index]; + } + } + return wantarray ? %d : \%d; +} + +# Find the place at which aValue would normally be inserted into the +# array. If that place is already occupied by aValue, do nothing, and +# return undef. If the place does not exist (i.e., it is off the end of +# the array), add it to the end, otherwise replace the element at that +# point with aValue. It is assumed that the array's values are numeric. +# This is where the bulk (75%) of the time is spent in this module, so +# try to make it fast! + +sub _replaceNextLargerWith +{ + my ( $array, $aValue, $high ) = @_; + $high ||= $#$array; + + # off the end? + if ( $high == -1 || $aValue > $array->[-1] ) + { + push ( @$array, $aValue ); + return $high + 1; + } + + # binary search for insertion point... + my $low = 0; + my $index; + my $found; + while ( $low <= $high ) + { + $index = ( $high + $low ) / 2; + + # $index = int(( $high + $low ) / 2); # without 'use integer' + $found = $array->[$index]; + + if ( $aValue == $found ) + { + return undef; + } + elsif ( $aValue > $found ) + { + $low = $index + 1; + } + else + { + $high = $index - 1; + } + } + + # now insertion point is in $low. + $array->[$low] = $aValue; # overwrite next larger + return $low; +} + +# This method computes the longest common subsequence in $a and $b. + +# Result is array or ref, whose contents is such that +# $a->[ $i ] == $b->[ $result[ $i ] ] +# foreach $i in ( 0 .. $#result ) if $result[ $i ] is defined. + +# An additional argument may be passed; this is a hash or key generating +# function that should return a string that uniquely identifies the given +# element. It should be the case that if the key is the same, the elements +# will compare the same. If this parameter is undef or missing, the key +# will be the element as a string. + +# By default, comparisons will use "eq" and elements will be turned into keys +# using the default stringizing operator '""'. + +# Additional parameters, if any, will be passed to the key generation +# routine. + +sub _longestCommonSubsequence +{ + my $a = shift; # array ref or hash ref + my $b = shift; # array ref or hash ref + my $counting = shift; # scalar + my $keyGen = shift; # code ref + my $compare; # code ref + + if ( ref($a) eq 'HASH' ) + { # prepared hash must be in $b + my $tmp = $b; + $b = $a; + $a = $tmp; + } + + # Check for bogus (non-ref) argument values + if ( !ref($a) || !ref($b) ) + { + my @callerInfo = caller(1); + die 'error: must pass array or hash references to ' . $callerInfo[3]; + } + + # set up code refs + # Note that these are optimized. + if ( !defined($keyGen) ) # optimize for strings + { + $keyGen = sub { $_[0] }; + $compare = sub { my ( $a, $b ) = @_; $a eq $b }; + } + else + { + $compare = sub { + my $a = shift; + my $b = shift; + &$keyGen( $a, @_ ) eq &$keyGen( $b, @_ ); + }; + } + + my ( $aStart, $aFinish, $matchVector ) = ( 0, $#$a, [] ); + my ( $prunedCount, $bMatches ) = ( 0, {} ); + + if ( ref($b) eq 'HASH' ) # was $bMatches prepared for us? + { + $bMatches = $b; + } + else + { + my ( $bStart, $bFinish ) = ( 0, $#$b ); + + # First we prune off any common elements at the beginning + while ( $aStart <= $aFinish + and $bStart <= $bFinish + and &$compare( $a->[$aStart], $b->[$bStart], @_ ) ) + { + $matchVector->[ $aStart++ ] = $bStart++; + $prunedCount++; + } + + # now the end + while ( $aStart <= $aFinish + and $bStart <= $bFinish + and &$compare( $a->[$aFinish], $b->[$bFinish], @_ ) ) + { + $matchVector->[ $aFinish-- ] = $bFinish--; + $prunedCount++; + } + + # Now compute the equivalence classes of positions of elements + $bMatches = + _withPositionsOfInInterval( $b, $bStart, $bFinish, $keyGen, @_ ); + } + my $thresh = []; + my $links = []; + + my ( $i, $ai, $j, $k ); + for ( $i = $aStart ; $i <= $aFinish ; $i++ ) + { + $ai = &$keyGen( $a->[$i], @_ ); + if ( exists( $bMatches->{$ai} ) ) + { + $k = 0; + for $j ( @{ $bMatches->{$ai} } ) + { + + # optimization: most of the time this will be true + if ( $k and $thresh->[$k] > $j and $thresh->[ $k - 1 ] < $j ) + { + $thresh->[$k] = $j; + } + else + { + $k = _replaceNextLargerWith( $thresh, $j, $k ); + } + + # oddly, it's faster to always test this (CPU cache?). + if ( defined($k) ) + { + $links->[$k] = + [ ( $k ? $links->[ $k - 1 ] : undef ), $i, $j ]; + } + } + } + } + + if (@$thresh) + { + return $prunedCount + @$thresh if $counting; + for ( my $link = $links->[$#$thresh] ; $link ; $link = $link->[0] ) + { + $matchVector->[ $link->[1] ] = $link->[2]; + } + } + elsif ($counting) + { + return $prunedCount; + } + + return wantarray ? @$matchVector : $matchVector; +} + +sub traverse_sequences +{ + my $a = shift; # array ref + my $b = shift; # array ref + my $callbacks = shift || {}; + my $keyGen = shift; + my $matchCallback = $callbacks->{'MATCH'} || sub { }; + my $discardACallback = $callbacks->{'DISCARD_A'} || sub { }; + my $finishedACallback = $callbacks->{'A_FINISHED'}; + my $discardBCallback = $callbacks->{'DISCARD_B'} || sub { }; + my $finishedBCallback = $callbacks->{'B_FINISHED'}; + my $matchVector = _longestCommonSubsequence( $a, $b, 0, $keyGen, @_ ); + + # Process all the lines in @$matchVector + my $lastA = $#$a; + my $lastB = $#$b; + my $bi = 0; + my $ai; + + for ( $ai = 0 ; $ai <= $#$matchVector ; $ai++ ) + { + my $bLine = $matchVector->[$ai]; + if ( defined($bLine) ) # matched + { + &$discardBCallback( $ai, $bi++, @_ ) while $bi < $bLine; + &$matchCallback( $ai, $bi++, @_ ); + } + else + { + &$discardACallback( $ai, $bi, @_ ); + } + } + + # The last entry (if any) processed was a match. + # $ai and $bi point just past the last matching lines in their sequences. + + while ( $ai <= $lastA or $bi <= $lastB ) + { + + # last A? + if ( $ai == $lastA + 1 and $bi <= $lastB ) + { + if ( defined($finishedACallback) ) + { + &$finishedACallback( $lastA, @_ ); + $finishedACallback = undef; + } + else + { + &$discardBCallback( $ai, $bi++, @_ ) while $bi <= $lastB; + } + } + + # last B? + if ( $bi == $lastB + 1 and $ai <= $lastA ) + { + if ( defined($finishedBCallback) ) + { + &$finishedBCallback( $lastB, @_ ); + $finishedBCallback = undef; + } + else + { + &$discardACallback( $ai++, $bi, @_ ) while $ai <= $lastA; + } + } + + &$discardACallback( $ai++, $bi, @_ ) if $ai <= $lastA; + &$discardBCallback( $ai, $bi++, @_ ) if $bi <= $lastB; + } + + return 1; +} + +sub traverse_balanced +{ + my $a = shift; # array ref + my $b = shift; # array ref + my $callbacks = shift || {}; + my $keyGen = shift; + my $matchCallback = $callbacks->{'MATCH'} || sub { }; + my $discardACallback = $callbacks->{'DISCARD_A'} || sub { }; + my $discardBCallback = $callbacks->{'DISCARD_B'} || sub { }; + my $changeCallback = $callbacks->{'CHANGE'}; + my $matchVector = _longestCommonSubsequence( $a, $b, 0, $keyGen, @_ ); + + # Process all the lines in match vector + my $lastA = $#$a; + my $lastB = $#$b; + my $bi = 0; + my $ai = 0; + my $ma = -1; + my $mb; + + while (1) + { + + # Find next match indices $ma and $mb + do { + $ma++; + } while( + $ma <= $#$matchVector + && !defined $matchVector->[$ma] + ); + + last if $ma > $#$matchVector; # end of matchVector? + $mb = $matchVector->[$ma]; + + # Proceed with discard a/b or change events until + # next match + while ( $ai < $ma || $bi < $mb ) + { + + if ( $ai < $ma && $bi < $mb ) + { + + # Change + if ( defined $changeCallback ) + { + &$changeCallback( $ai++, $bi++, @_ ); + } + else + { + &$discardACallback( $ai++, $bi, @_ ); + &$discardBCallback( $ai, $bi++, @_ ); + } + } + elsif ( $ai < $ma ) + { + &$discardACallback( $ai++, $bi, @_ ); + } + else + { + + # $bi < $mb + &$discardBCallback( $ai, $bi++, @_ ); + } + } + + # Match + &$matchCallback( $ai++, $bi++, @_ ); + } + + while ( $ai <= $lastA || $bi <= $lastB ) + { + if ( $ai <= $lastA && $bi <= $lastB ) + { + + # Change + if ( defined $changeCallback ) + { + &$changeCallback( $ai++, $bi++, @_ ); + } + else + { + &$discardACallback( $ai++, $bi, @_ ); + &$discardBCallback( $ai, $bi++, @_ ); + } + } + elsif ( $ai <= $lastA ) + { + &$discardACallback( $ai++, $bi, @_ ); + } + else + { + + # $bi <= $lastB + &$discardBCallback( $ai, $bi++, @_ ); + } + } + + return 1; +} + +sub prepare +{ + my $a = shift; # array ref + my $keyGen = shift; # code ref + + # set up code ref + $keyGen = sub { $_[0] } unless defined($keyGen); + + return scalar _withPositionsOfInInterval( $a, 0, $#$a, $keyGen, @_ ); +} + +sub LCS +{ + my $a = shift; # array ref + my $b = shift; # array ref or hash ref + my $matchVector = _longestCommonSubsequence( $a, $b, 0, @_ ); + my @retval; + my $i; + for ( $i = 0 ; $i <= $#$matchVector ; $i++ ) + { + if ( defined( $matchVector->[$i] ) ) + { + push ( @retval, $a->[$i] ); + } + } + return wantarray ? @retval : \@retval; +} + +sub LCS_length +{ + my $a = shift; # array ref + my $b = shift; # array ref or hash ref + return _longestCommonSubsequence( $a, $b, 1, @_ ); +} + +sub LCSidx +{ + my $a= shift @_; + my $b= shift @_; + my $match= _longestCommonSubsequence( $a, $b, 0, @_ ); + my @am= grep defined $match->[$_], 0..$#$match; + my @bm= @{$match}[@am]; + return \@am, \@bm; +} + +sub compact_diff +{ + my $a= shift @_; + my $b= shift @_; + my( $am, $bm )= LCSidx( $a, $b, @_ ); + my @cdiff; + my( $ai, $bi )= ( 0, 0 ); + push @cdiff, $ai, $bi; + while( 1 ) { + while( @$am && $ai == $am->[0] && $bi == $bm->[0] ) { + shift @$am; + shift @$bm; + ++$ai, ++$bi; + } + push @cdiff, $ai, $bi; + last if ! @$am; + $ai = $am->[0]; + $bi = $bm->[0]; + push @cdiff, $ai, $bi; + } + push @cdiff, 0+@$a, 0+@$b + if $ai < @$a || $bi < @$b; + return wantarray ? @cdiff : \@cdiff; +} + +sub diff +{ + my $a = shift; # array ref + my $b = shift; # array ref + my $retval = []; + my $hunk = []; + my $discard = sub { + push @$hunk, [ '-', $_[0], $a->[ $_[0] ] ]; + }; + my $add = sub { + push @$hunk, [ '+', $_[1], $b->[ $_[1] ] ]; + }; + my $match = sub { + push @$retval, $hunk + if 0 < @$hunk; + $hunk = [] + }; + traverse_sequences( $a, $b, + { MATCH => $match, DISCARD_A => $discard, DISCARD_B => $add }, @_ ); + &$match(); + return wantarray ? @$retval : $retval; +} + +sub sdiff +{ + my $a = shift; # array ref + my $b = shift; # array ref + my $retval = []; + my $discard = sub { push ( @$retval, [ '-', $a->[ $_[0] ], "" ] ) }; + my $add = sub { push ( @$retval, [ '+', "", $b->[ $_[1] ] ] ) }; + my $change = sub { + push ( @$retval, [ 'c', $a->[ $_[0] ], $b->[ $_[1] ] ] ); + }; + my $match = sub { + push ( @$retval, [ 'u', $a->[ $_[0] ], $b->[ $_[1] ] ] ); + }; + traverse_balanced( + $a, + $b, + { + MATCH => $match, + DISCARD_A => $discard, + DISCARD_B => $add, + CHANGE => $change, + }, + @_ + ); + return wantarray ? @$retval : $retval; +} + +######################################## +my $Root= __PACKAGE__; +package Algorithm::Diff::_impl; +use strict; + +sub _Idx() { 0 } # $me->[_Idx]: Ref to array of hunk indices + # 1 # $me->[1]: Ref to first sequence + # 2 # $me->[2]: Ref to second sequence +sub _End() { 3 } # $me->[_End]: Diff between forward and reverse pos +sub _Same() { 4 } # $me->[_Same]: 1 if pos 1 contains unchanged items +sub _Base() { 5 } # $me->[_Base]: Added to range's min and max +sub _Pos() { 6 } # $me->[_Pos]: Which hunk is currently selected +sub _Off() { 7 } # $me->[_Off]: Offset into _Idx for current position +sub _Min() { -2 } # Added to _Off to get min instead of max+1 + +sub Die +{ + require Carp; + Carp::confess( @_ ); +} + +sub _ChkPos +{ + my( $me )= @_; + return if $me->[_Pos]; + my $meth= ( caller(1) )[3]; + Die( "Called $meth on 'reset' object" ); +} + +sub _ChkSeq +{ + my( $me, $seq )= @_; + return $seq + $me->[_Off] + if 1 == $seq || 2 == $seq; + my $meth= ( caller(1) )[3]; + Die( "$meth: Invalid sequence number ($seq); must be 1 or 2" ); +} + +sub getObjPkg +{ + my( $us )= @_; + return ref $us if ref $us; + return $us . "::_obj"; +} + +sub new +{ + my( $us, $seq1, $seq2, $opts ) = @_; + my @args; + for( $opts->{keyGen} ) { + push @args, $_ if $_; + } + for( $opts->{keyGenArgs} ) { + push @args, @$_ if $_; + } + my $cdif= Algorithm::Diff::compact_diff( $seq1, $seq2, @args ); + my $same= 1; + if( 0 == $cdif->[2] && 0 == $cdif->[3] ) { + $same= 0; + splice @$cdif, 0, 2; + } + my @obj= ( $cdif, $seq1, $seq2 ); + $obj[_End] = (1+@$cdif)/2; + $obj[_Same] = $same; + $obj[_Base] = 0; + my $me = bless \@obj, $us->getObjPkg(); + $me->Reset( 0 ); + return $me; +} + +sub Reset +{ + my( $me, $pos )= @_; + $pos= int( $pos || 0 ); + $pos += $me->[_End] + if $pos < 0; + $pos= 0 + if $pos < 0 || $me->[_End] <= $pos; + $me->[_Pos]= $pos || !1; + $me->[_Off]= 2*$pos - 1; + return $me; +} + +sub Base +{ + my( $me, $base )= @_; + my $oldBase= $me->[_Base]; + $me->[_Base]= 0+$base if defined $base; + return $oldBase; +} + +sub Copy +{ + my( $me, $pos, $base )= @_; + my @obj= @$me; + my $you= bless \@obj, ref($me); + $you->Reset( $pos ) if defined $pos; + $you->Base( $base ); + return $you; +} + +sub Next { + my( $me, $steps )= @_; + $steps= 1 if ! defined $steps; + if( $steps ) { + my $pos= $me->[_Pos]; + my $new= $pos + $steps; + $new= 0 if $pos && $new < 0; + $me->Reset( $new ) + } + return $me->[_Pos]; +} + +sub Prev { + my( $me, $steps )= @_; + $steps= 1 if ! defined $steps; + my $pos= $me->Next(-$steps); + $pos -= $me->[_End] if $pos; + return $pos; +} + +sub Diff { + my( $me )= @_; + $me->_ChkPos(); + return 0 if $me->[_Same] == ( 1 & $me->[_Pos] ); + my $ret= 0; + my $off= $me->[_Off]; + for my $seq ( 1, 2 ) { + $ret |= $seq + if $me->[_Idx][ $off + $seq + _Min ] + < $me->[_Idx][ $off + $seq ]; + } + return $ret; +} + +sub Min { + my( $me, $seq, $base )= @_; + $me->_ChkPos(); + my $off= $me->_ChkSeq($seq); + $base= $me->[_Base] if !defined $base; + return $base + $me->[_Idx][ $off + _Min ]; +} + +sub Max { + my( $me, $seq, $base )= @_; + $me->_ChkPos(); + my $off= $me->_ChkSeq($seq); + $base= $me->[_Base] if !defined $base; + return $base + $me->[_Idx][ $off ] -1; +} + +sub Range { + my( $me, $seq, $base )= @_; + $me->_ChkPos(); + my $off = $me->_ChkSeq($seq); + if( !wantarray ) { + return $me->[_Idx][ $off ] + - $me->[_Idx][ $off + _Min ]; + } + $base= $me->[_Base] if !defined $base; + return ( $base + $me->[_Idx][ $off + _Min ] ) + .. ( $base + $me->[_Idx][ $off ] - 1 ); +} + +sub Items { + my( $me, $seq )= @_; + $me->_ChkPos(); + my $off = $me->_ChkSeq($seq); + if( !wantarray ) { + return $me->[_Idx][ $off ] + - $me->[_Idx][ $off + _Min ]; + } + return + @{$me->[$seq]}[ + $me->[_Idx][ $off + _Min ] + .. ( $me->[_Idx][ $off ] - 1 ) + ]; +} + +sub Same { + my( $me )= @_; + $me->_ChkPos(); + return wantarray ? () : 0 + if $me->[_Same] != ( 1 & $me->[_Pos] ); + return $me->Items(1); +} + +my %getName; +BEGIN { + %getName= ( + same => \&Same, + diff => \&Diff, + base => \&Base, + min => \&Min, + max => \&Max, + range=> \&Range, + items=> \&Items, # same thing + ); +} + +sub Get +{ + my $me= shift @_; + $me->_ChkPos(); + my @value; + for my $arg ( @_ ) { + for my $word ( split ' ', $arg ) { + my $meth; + if( $word !~ /^(-?\d+)?([a-zA-Z]+)([12])?$/ + || not $meth= $getName{ lc $2 } + ) { + Die( $Root, ", Get: Invalid request ($word)" ); + } + my( $base, $name, $seq )= ( $1, $2, $3 ); + push @value, scalar( + 4 == length($name) + ? $meth->( $me ) + : $meth->( $me, $seq, $base ) + ); + } + } + if( wantarray ) { + return @value; + } elsif( 1 == @value ) { + return $value[0]; + } + Die( 0+@value, " values requested from ", + $Root, "'s Get in scalar context" ); +} + + +my $Obj= getObjPkg($Root); +no strict 'refs'; + +for my $meth ( qw( new getObjPkg ) ) { + *{$Root."::".$meth} = \&{$meth}; + *{$Obj ."::".$meth} = \&{$meth}; +} +for my $meth ( qw( + Next Prev Reset Copy Base Diff + Same Items Range Min Max Get + _ChkPos _ChkSeq +) ) { + *{$Obj."::".$meth} = \&{$meth}; +} + +1; +__END__ + +=head1 NAME + +Algorithm::Diff - Compute `intelligent' differences between two files / lists + +=head1 SYNOPSIS + + require Algorithm::Diff; + + # This example produces traditional 'diff' output: + + my $diff = Algorithm::Diff->new( \@seq1, \@seq2 ); + + $diff->Base( 1 ); # Return line numbers, not indices + while( $diff->Next() ) { + next if $diff->Same(); + my $sep = ''; + if( ! $diff->Items(2) ) { + printf "%d,%dd%d\n", + $diff->Get(qw( Min1 Max1 Max2 )); + } elsif( ! $diff->Items(1) ) { + printf "%da%d,%d\n", + $diff->Get(qw( Max1 Min2 Max2 )); + } else { + $sep = "---\n"; + printf "%d,%dc%d,%d\n", + $diff->Get(qw( Min1 Max1 Min2 Max2 )); + } + print "< $_" for $diff->Items(1); + print $sep; + print "> $_" for $diff->Items(2); + } + + + # Alternate interfaces: + + use Algorithm::Diff qw( + LCS LCS_length LCSidx + diff sdiff compact_diff + traverse_sequences traverse_balanced ); + + @lcs = LCS( \@seq1, \@seq2 ); + $lcsref = LCS( \@seq1, \@seq2 ); + $count = LCS_length( \@seq1, \@seq2 ); + + ( $seq1idxref, $seq2idxref ) = LCSidx( \@seq1, \@seq2 ); + + + # Complicated interfaces: + + @diffs = diff( \@seq1, \@seq2 ); + + @sdiffs = sdiff( \@seq1, \@seq2 ); + + @cdiffs = compact_diff( \@seq1, \@seq2 ); + + traverse_sequences( + \@seq1, + \@seq2, + { MATCH => \&callback1, + DISCARD_A => \&callback2, + DISCARD_B => \&callback3, + }, + \&key_generator, + @extra_args, + ); + + traverse_balanced( + \@seq1, + \@seq2, + { MATCH => \&callback1, + DISCARD_A => \&callback2, + DISCARD_B => \&callback3, + CHANGE => \&callback4, + }, + \&key_generator, + @extra_args, + ); + + +=head1 INTRODUCTION + +(by Mark-Jason Dominus) + +I once read an article written by the authors of C; they said +that they worked very hard on the algorithm until they found the +right one. + +I think what they ended up using (and I hope someone will correct me, +because I am not very confident about this) was the `longest common +subsequence' method. In the LCS problem, you have two sequences of +items: + + a b c d f g h j q z + + a b c d e f g i j k r x y z + +and you want to find the longest sequence of items that is present in +both original sequences in the same order. That is, you want to find +a new sequence I which can be obtained from the first sequence by +deleting some items, and from the second sequence by deleting other +items. You also want I to be as long as possible. In this case I +is + + a b c d f g j z + +From there it's only a small step to get diff-like output: + + e h i k q r x y + + - + + - + + + + +This module solves the LCS problem. It also includes a canned function +to generate C-like output. + +It might seem from the example above that the LCS of two sequences is +always pretty obvious, but that's not always the case, especially when +the two sequences have many repeated elements. For example, consider + + a x b y c z p d q + a b c a x b y c z + +A naive approach might start by matching up the C and C that +appear at the beginning of each sequence, like this: + + a x b y c z p d q + a b c a b y c z + +This finds the common subsequence C. But actually, the LCS +is C: + + a x b y c z p d q + a b c a x b y c z + +or + + a x b y c z p d q + a b c a x b y c z + +=head1 USAGE + +(See also the README file and several example +scripts include with this module.) + +This module now provides an object-oriented interface that uses less +memory and is easier to use than most of the previous procedural +interfaces. It also still provides several exportable functions. We'll +deal with these in ascending order of difficulty: C, +C, C, OO interface, C, C, C, +C, and C. + +=head2 C + +Given references to two lists of items, LCS returns an array containing +their longest common subsequence. In scalar context, it returns a +reference to such a list. + + @lcs = LCS( \@seq1, \@seq2 ); + $lcsref = LCS( \@seq1, \@seq2 ); + +C may be passed an optional third parameter; this is a CODE +reference to a key generation function. See L. + + @lcs = LCS( \@seq1, \@seq2, \&keyGen, @args ); + $lcsref = LCS( \@seq1, \@seq2, \&keyGen, @args ); + +Additional parameters, if any, will be passed to the key generation +routine. + +=head2 C + +This is just like C except it only returns the length of the +longest common subsequence. This provides a performance gain of about +9% compared to C. + +=head2 C + +Like C except it returns references to two arrays. The first array +contains the indices into @seq1 where the LCS items are located. The +second array contains the indices into @seq2 where the LCS items are located. + +Therefore, the following three lists will contain the same values: + + my( $idx1, $idx2 ) = LCSidx( \@seq1, \@seq2 ); + my @list1 = @seq1[ @$idx1 ]; + my @list2 = @seq2[ @$idx2 ]; + my @list3 = LCS( \@seq1, \@seq2 ); + +=head2 C + + $diff = Algorithm::Diffs->new( \@seq1, \@seq2 ); + $diff = Algorithm::Diffs->new( \@seq1, \@seq2, \%opts ); + +C computes the smallest set of additions and deletions necessary +to turn the first sequence into the second and compactly records them +in the object. + +You use the object to iterate over I, where each hunk represents +a contiguous section of items which should be added, deleted, replaced, +or left unchanged. + +=over 4 + +The following summary of all of the methods looks a lot like Perl code +but some of the symbols have different meanings: + + [ ] Encloses optional arguments + : Is followed by the default value for an optional argument + | Separates alternate return results + +Method summary: + + $obj = Algorithm::Diff->new( \@seq1, \@seq2, [ \%opts ] ); + $pos = $obj->Next( [ $count : 1 ] ); + $revPos = $obj->Prev( [ $count : 1 ] ); + $obj = $obj->Reset( [ $pos : 0 ] ); + $copy = $obj->Copy( [ $pos, [ $newBase ] ] ); + $oldBase = $obj->Base( [ $newBase ] ); + +Note that all of the following methods C if used on an object that +is "reset" (not currently pointing at any hunk). + + $bits = $obj->Diff( ); + @items|$cnt = $obj->Same( ); + @items|$cnt = $obj->Items( $seqNum ); + @idxs |$cnt = $obj->Range( $seqNum, [ $base ] ); + $minIdx = $obj->Min( $seqNum, [ $base ] ); + $maxIdx = $obj->Max( $seqNum, [ $base ] ); + @values = $obj->Get( @names ); + +Passing in C for an optional argument is always treated the same +as if no argument were passed in. + +=item C + + $pos = $diff->Next(); # Move forward 1 hunk + $pos = $diff->Next( 2 ); # Move forward 2 hunks + $pos = $diff->Next(-5); # Move backward 5 hunks + +C moves the object to point at the next hunk. The object starts +out "reset", which means it isn't pointing at any hunk. If the object +is reset, then C moves to the first hunk. + +C returns a true value iff the move didn't go past the last hunk. +So C will return true iff the object is not reset. + +Actually, C returns the object's new position, which is a number +between 1 and the number of hunks (inclusive), or returns a false value. + +=item C + +C is almost identical to C; it moves to the $Nth +previous hunk. On a 'reset' object, C [and C] move +to the last hunk. + +The position returned by C is relative to the I of the +hunks; -1 for the last hunk, -2 for the second-to-last, etc. + +=item C + + $diff->Reset(); # Reset the object's position + $diff->Reset($pos); # Move to the specified hunk + $diff->Reset(1); # Move to the first hunk + $diff->Reset(-1); # Move to the last hunk + +C returns the object, so, for example, you could use +C<< $diff->Reset()->Next(-1) >> to get the number of hunks. + +=item C + + $copy = $diff->Copy( $newPos, $newBase ); + +C returns a copy of the object. The copy and the original object +share most of their data, so making copies takes very little memory. +The copy maintains its own position (separate from the original), which +is the main purpose of copies. It also maintains its own base. + +By default, the copy's position starts out the same as the original +object's position. But C takes an optional first argument to set the +new position, so the following three snippets are equivalent: + + $copy = $diff->Copy($pos); + + $copy = $diff->Copy(); + $copy->Reset($pos); + + $copy = $diff->Copy()->Reset($pos); + +C takes an optional second argument to set the base for +the copy. If you wish to change the base of the copy but leave +the position the same as in the original, here are two +equivalent ways: + + $copy = $diff->Copy(); + $copy->Base( 0 ); + + $copy = $diff->Copy(undef,0); + +Here are two equivalent way to get a "reset" copy: + + $copy = $diff->Copy(0); + + $copy = $diff->Copy()->Reset(); + +=item C + + $bits = $obj->Diff(); + +C returns a true value iff the current hunk contains items that are +different between the two sequences. It actually returns one of the +follow 4 values: + +=over 4 + +=item 3 + +C<3==(1|2)>. This hunk contains items from @seq1 and the items +from @seq2 that should replace them. Both sequence 1 and 2 +contain changed items so both the 1 and 2 bits are set. + +=item 2 + +This hunk only contains items from @seq2 that should be inserted (not +items from @seq1). Only sequence 2 contains changed items so only the 2 +bit is set. + +=item 1 + +This hunk only contains items from @seq1 that should be deleted (not +items from @seq2). Only sequence 1 contains changed items so only the 1 +bit is set. + +=item 0 + +This means that the items in this hunk are the same in both sequences. +Neither sequence 1 nor 2 contain changed items so neither the 1 nor the +2 bits are set. + +=back + +=item C + +C returns a true value iff the current hunk contains items that +are the same in both sequences. It actually returns the list of items +if they are the same or an empty list if they aren't. In a scalar +context, it returns the size of the list. + +=item C + + $count = $diff->Items(2); + @items = $diff->Items($seqNum); + +C returns the (number of) items from the specified sequence that +are part of the current hunk. + +If the current hunk contains only insertions, then +C<< $diff->Items(1) >> will return an empty list (0 in a scalar context). +If the current hunk contains only deletions, then C<< $diff->Items(2) >> +will return an empty list (0 in a scalar context). + +If the hunk contains replacements, then both C<< $diff->Items(1) >> and +C<< $diff->Items(2) >> will return different, non-empty lists. + +Otherwise, the hunk contains identical items and all of the following +will return the same lists: + + @items = $diff->Items(1); + @items = $diff->Items(2); + @items = $diff->Same(); + +=item C + + $count = $diff->Range( $seqNum ); + @indices = $diff->Range( $seqNum ); + @indices = $diff->Range( $seqNum, $base ); + +C is like C except that it returns a list of I to +the items rather than the items themselves. By default, the index of +the first item (in each sequence) is 0 but this can be changed by +calling the C method. So, by default, the following two snippets +return the same lists: + + @list = $diff->Items(2); + @list = @seq2[ $diff->Range(2) ]; + +You can also specify the base to use as the second argument. So the +following two snippets I return the same lists: + + @list = $diff->Items(1); + @list = @seq1[ $diff->Range(1,0) ]; + +=item C + + $curBase = $diff->Base(); + $oldBase = $diff->Base($newBase); + +C sets and/or returns the current base (usually 0 or 1) that is +used when you request range information. The base defaults to 0 so +that range information is returned as array indices. You can set the +base to 1 if you want to report traditional line numbers instead. + +=item C + + $min1 = $diff->Min(1); + $min = $diff->Min( $seqNum, $base ); + +C returns the first value that C would return (given the +same arguments) or returns C if C would return an empty +list. + +=item C + +C returns the last value that C would return or C. + +=item C + + ( $n, $x, $r ) = $diff->Get(qw( min1 max1 range1 )); + @values = $diff->Get(qw( 0min2 1max2 range2 same base )); + +C returns one or more scalar values. You pass in a list of the +names of the values you want returned. Each name must match one of the +following regexes: + + /^(-?\d+)?(min|max)[12]$/i + /^(range[12]|same|diff|base)$/i + +The 1 or 2 after a name says which sequence you want the information +for (and where allowed, it is required). The optional number before +"min" or "max" is the base to use. So the following equalities hold: + + $diff->Get('min1') == $diff->Min(1) + $diff->Get('0min2') == $diff->Min(2,0) + +Using C in a scalar context when you've passed in more than one +name is a fatal error (C is called). + +=back + +=head2 C + +Given a reference to a list of items, C returns a reference +to a hash which can be used when comparing this sequence to other +sequences with C or C. + + $prep = prepare( \@seq1 ); + for $i ( 0 .. 10_000 ) + { + @lcs = LCS( $prep, $seq[$i] ); + # do something useful with @lcs + } + +C may be passed an optional third parameter; this is a CODE +reference to a key generation function. See L. + + $prep = prepare( \@seq1, \&keyGen ); + for $i ( 0 .. 10_000 ) + { + @lcs = LCS( $seq[$i], $prep, \&keyGen ); + # do something useful with @lcs + } + +Using C provides a performance gain of about 50% when calling LCS +many times compared with not preparing. + +=head2 C + + @diffs = diff( \@seq1, \@seq2 ); + $diffs_ref = diff( \@seq1, \@seq2 ); + +C computes the smallest set of additions and deletions necessary +to turn the first sequence into the second, and returns a description +of these changes. The description is a list of I; each hunk +represents a contiguous section of items which should be added, +deleted, or replaced. (Hunks containing unchanged items are not +included.) + +The return value of C is a list of hunks, or, in scalar context, a +reference to such a list. If there are no differences, the list will be +empty. + +Here is an example. Calling C for the following two sequences: + + a b c e h j l m n p + b c d e f j k l m r s t + +would produce the following list: + + ( + [ [ '-', 0, 'a' ] ], + + [ [ '+', 2, 'd' ] ], + + [ [ '-', 4, 'h' ], + [ '+', 4, 'f' ] ], + + [ [ '+', 6, 'k' ] ], + + [ [ '-', 8, 'n' ], + [ '-', 9, 'p' ], + [ '+', 9, 'r' ], + [ '+', 10, 's' ], + [ '+', 11, 't' ] ], + ) + +There are five hunks here. The first hunk says that the C at +position 0 of the first sequence should be deleted (C<->). The second +hunk says that the C at position 2 of the second sequence should +be inserted (C<+>). The third hunk says that the C at position 4 +of the first sequence should be removed and replaced with the C +from position 4 of the second sequence. And so on. + +C may be passed an optional third parameter; this is a CODE +reference to a key generation function. See L. + +Additional parameters, if any, will be passed to the key generation +routine. + +=head2 C + + @sdiffs = sdiff( \@seq1, \@seq2 ); + $sdiffs_ref = sdiff( \@seq1, \@seq2 ); + +C computes all necessary components to show two sequences +and their minimized differences side by side, just like the +Unix-utility I does: + + same same + before | after + old < - + - > new + +It returns a list of array refs, each pointing to an array of +display instructions. In scalar context it returns a reference +to such a list. If there are no differences, the list will have one +entry per item, each indicating that the item was unchanged. + +Display instructions consist of three elements: A modifier indicator +(C<+>: Element added, C<->: Element removed, C: Element unmodified, +C: Element changed) and the value of the old and new elements, to +be displayed side-by-side. + +An C of the following two sequences: + + a b c e h j l m n p + b c d e f j k l m r s t + +results in + + ( [ '-', 'a', '' ], + [ 'u', 'b', 'b' ], + [ 'u', 'c', 'c' ], + [ '+', '', 'd' ], + [ 'u', 'e', 'e' ], + [ 'c', 'h', 'f' ], + [ 'u', 'j', 'j' ], + [ '+', '', 'k' ], + [ 'u', 'l', 'l' ], + [ 'u', 'm', 'm' ], + [ 'c', 'n', 'r' ], + [ 'c', 'p', 's' ], + [ '+', '', 't' ], + ) + +C may be passed an optional third parameter; this is a CODE +reference to a key generation function. See L. + +Additional parameters, if any, will be passed to the key generation +routine. + +=head2 C + +C is much like C except it returns a much more +compact description consisting of just one flat list of indices. An +example helps explain the format: + + my @a = qw( a b c e h j l m n p ); + my @b = qw( b c d e f j k l m r s t ); + @cdiff = compact_diff( \@a, \@b ); + # Returns: + # @a @b @a @b + # start start values values + ( 0, 0, # = + 0, 0, # a ! + 1, 0, # b c = b c + 3, 2, # ! d + 3, 3, # e = e + 4, 4, # f ! h + 5, 5, # j = j + 6, 6, # ! k + 6, 7, # l m = l m + 8, 9, # n p ! r s t + 10, 12, # + ); + +The 0th, 2nd, 4th, etc. entries are all indices into @seq1 (@a in the +above example) indicating where a hunk begins. The 1st, 3rd, 5th, etc. +entries are all indices into @seq2 (@b in the above example) indicating +where the same hunk begins. + +So each pair of indices (except the last pair) describes where a hunk +begins (in each sequence). Since each hunk must end at the item just +before the item that starts the next hunk, the next pair of indices can +be used to determine where the hunk ends. + +So, the first 4 entries (0..3) describe the first hunk. Entries 0 and 1 +describe where the first hunk begins (and so are always both 0). +Entries 2 and 3 describe where the next hunk begins, so subtracting 1 +from each tells us where the first hunk ends. That is, the first hunk +contains items C<$diff[0]> through C<$diff[2] - 1> of the first sequence +and contains items C<$diff[1]> through C<$diff[3] - 1> of the second +sequence. + +In other words, the first hunk consists of the following two lists of items: + + # 1st pair 2nd pair + # of indices of indices + @list1 = @a[ $cdiff[0] .. $cdiff[2]-1 ]; + @list2 = @b[ $cdiff[1] .. $cdiff[3]-1 ]; + # Hunk start Hunk end + +Note that the hunks will always alternate between those that are part of +the LCS (those that contain unchanged items) and those that contain +changes. This means that all we need to be told is whether the first +hunk is a 'same' or 'diff' hunk and we can determine which of the other +hunks contain 'same' items or 'diff' items. + +By convention, we always make the first hunk contain unchanged items. +So the 1st, 3rd, 5th, etc. hunks (all odd-numbered hunks if you start +counting from 1) all contain unchanged items. And the 2nd, 4th, 6th, +etc. hunks (all even-numbered hunks if you start counting from 1) all +contain changed items. + +Since @a and @b don't begin with the same value, the first hunk in our +example is empty (otherwise we'd violate the above convention). Note +that the first 4 index values in our example are all zero. Plug these +values into our previous code block and we get: + + @hunk1a = @a[ 0 .. 0-1 ]; + @hunk1b = @b[ 0 .. 0-1 ]; + +And C<0..-1> returns the empty list. + +Move down one pair of indices (2..5) and we get the offset ranges for +the second hunk, which contains changed items. + +Since C<@diff[2..5]> contains (0,0,1,0) in our example, the second hunk +consists of these two lists of items: + + @hunk2a = @a[ $cdiff[2] .. $cdiff[4]-1 ]; + @hunk2b = @b[ $cdiff[3] .. $cdiff[5]-1 ]; + # or + @hunk2a = @a[ 0 .. 1-1 ]; + @hunk2b = @b[ 0 .. 0-1 ]; + # or + @hunk2a = @a[ 0 .. 0 ]; + @hunk2b = @b[ 0 .. -1 ]; + # or + @hunk2a = ( 'a' ); + @hunk2b = ( ); + +That is, we would delete item 0 ('a') from @a. + +Since C<@diff[4..7]> contains (1,0,3,2) in our example, the third hunk +consists of these two lists of items: + + @hunk3a = @a[ $cdiff[4] .. $cdiff[6]-1 ]; + @hunk3a = @b[ $cdiff[5] .. $cdiff[7]-1 ]; + # or + @hunk3a = @a[ 1 .. 3-1 ]; + @hunk3a = @b[ 0 .. 2-1 ]; + # or + @hunk3a = @a[ 1 .. 2 ]; + @hunk3a = @b[ 0 .. 1 ]; + # or + @hunk3a = qw( b c ); + @hunk3a = qw( b c ); + +Note that this third hunk contains unchanged items as our convention demands. + +You can continue this process until you reach the last two indices, +which will always be the number of items in each sequence. This is +required so that subtracting one from each will give you the indices to +the last items in each sequence. + +=head2 C + +C used to be the most general facility provided by +this module (the new OO interface is more powerful and much easier to +use). + +Imagine that there are two arrows. Arrow A points to an element of +sequence A, and arrow B points to an element of the sequence B. +Initially, the arrows point to the first elements of the respective +sequences. C will advance the arrows through the +sequences one element at a time, calling an appropriate user-specified +callback function before each advance. It will advance the arrows in +such a way that if there are equal elements C<$A[$i]> and C<$B[$j]> +which are equal and which are part of the LCS, there will be some moment +during the execution of C when arrow A is pointing +to C<$A[$i]> and arrow B is pointing to C<$B[$j]>. When this happens, +C will call the C callback function and then +it will advance both arrows. + +Otherwise, one of the arrows is pointing to an element of its sequence +that is not part of the LCS. C will advance that +arrow and will call the C or the C callback, +depending on which arrow it advanced. If both arrows point to elements +that are not part of the LCS, then C will advance +one of them and call the appropriate callback, but it is not specified +which it will call. + +The arguments to C are the two sequences to +traverse, and a hash which specifies the callback functions, like this: + + traverse_sequences( + \@seq1, \@seq2, + { MATCH => $callback_1, + DISCARD_A => $callback_2, + DISCARD_B => $callback_3, + } + ); + +Callbacks for MATCH, DISCARD_A, and DISCARD_B are invoked with at least +the indices of the two arrows as their arguments. They are not expected +to return any values. If a callback is omitted from the table, it is +not called. + +Callbacks for A_FINISHED and B_FINISHED are invoked with at least the +corresponding index in A or B. + +If arrow A reaches the end of its sequence, before arrow B does, +C will call the C callback when it +advances arrow B, if there is such a function; if not it will call +C instead. Similarly if arrow B finishes first. +C returns when both arrows are at the ends of their +respective sequences. It returns true on success and false on failure. +At present there is no way to fail. + +C may be passed an optional fourth parameter; this +is a CODE reference to a key generation function. See L. + +Additional parameters, if any, will be passed to the key generation function. + +If you want to pass additional parameters to your callbacks, but don't +need a custom key generation function, you can get the default by +passing undef: + + traverse_sequences( + \@seq1, \@seq2, + { MATCH => $callback_1, + DISCARD_A => $callback_2, + DISCARD_B => $callback_3, + }, + undef, # default key-gen + $myArgument1, + $myArgument2, + $myArgument3, + ); + +C does not have a useful return value; you are +expected to plug in the appropriate behavior with the callback +functions. + +=head2 C + +C is an alternative to C. It +uses a different algorithm to iterate through the entries in the +computed LCS. Instead of sticking to one side and showing element changes +as insertions and deletions only, it will jump back and forth between +the two sequences and report I occurring as deletions on one +side followed immediately by an insertion on the other side. + +In addition to the C, C, and C callbacks +supported by C, C supports +a C callback indicating that one element got C by another: + + traverse_balanced( + \@seq1, \@seq2, + { MATCH => $callback_1, + DISCARD_A => $callback_2, + DISCARD_B => $callback_3, + CHANGE => $callback_4, + } + ); + +If no C callback is specified, C +will map C events to C and C actions, +therefore resulting in a similar behaviour as C +with different order of events. + +C might be a bit slower than C, +noticeable only while processing huge amounts of data. + +The C function of this module +is implemented as call to C. + +C does not have a useful return value; you are expected to +plug in the appropriate behavior with the callback functions. + +=head1 KEY GENERATION FUNCTIONS + +Most of the functions accept an optional extra parameter. This is a +CODE reference to a key generating (hashing) function that should return +a string that uniquely identifies a given element. It should be the +case that if two elements are to be considered equal, their keys should +be the same (and the other way around). If no key generation function +is provided, the key will be the element as a string. + +By default, comparisons will use "eq" and elements will be turned into keys +using the default stringizing operator '""'. + +Where this is important is when you're comparing something other than +strings. If it is the case that you have multiple different objects +that should be considered to be equal, you should supply a key +generation function. Otherwise, you have to make sure that your arrays +contain unique references. + +For instance, consider this example: + + package Person; + + sub new + { + my $package = shift; + return bless { name => '', ssn => '', @_ }, $package; + } + + sub clone + { + my $old = shift; + my $new = bless { %$old }, ref($old); + } + + sub hash + { + return shift()->{'ssn'}; + } + + my $person1 = Person->new( name => 'Joe', ssn => '123-45-6789' ); + my $person2 = Person->new( name => 'Mary', ssn => '123-47-0000' ); + my $person3 = Person->new( name => 'Pete', ssn => '999-45-2222' ); + my $person4 = Person->new( name => 'Peggy', ssn => '123-45-9999' ); + my $person5 = Person->new( name => 'Frank', ssn => '000-45-9999' ); + +If you did this: + + my $array1 = [ $person1, $person2, $person4 ]; + my $array2 = [ $person1, $person3, $person4, $person5 ]; + Algorithm::Diff::diff( $array1, $array2 ); + +everything would work out OK (each of the objects would be converted +into a string like "Person=HASH(0x82425b0)" for comparison). + +But if you did this: + + my $array1 = [ $person1, $person2, $person4 ]; + my $array2 = [ $person1, $person3, $person4->clone(), $person5 ]; + Algorithm::Diff::diff( $array1, $array2 ); + +$person4 and $person4->clone() (which have the same name and SSN) +would be seen as different objects. If you wanted them to be considered +equivalent, you would have to pass in a key generation function: + + my $array1 = [ $person1, $person2, $person4 ]; + my $array2 = [ $person1, $person3, $person4->clone(), $person5 ]; + Algorithm::Diff::diff( $array1, $array2, \&Person::hash ); + +This would use the 'ssn' field in each Person as a comparison key, and +so would consider $person4 and $person4->clone() as equal. + +You may also pass additional parameters to the key generation function +if you wish. + +=head1 ERROR CHECKING + +If you pass these routines a non-reference and they expect a reference, +they will die with a message. + +=head1 AUTHOR + +This version released by Tye McQueen (http://perlmonks.org/?node=tye). + +=head1 LICENSE + +Parts Copyright (c) 2000-2004 Ned Konz. All rights reserved. +Parts by Tye McQueen. + +This program is free software; you can redistribute it and/or modify it +under the same terms as Perl. + +=head1 MAILING LIST + +Mark-Jason still maintains a mailing list. To join a low-volume mailing +list for announcements related to diff and Algorithm::Diff, send an +empty mail message to mjd-perl-diff-request@plover.com. + +=head1 CREDITS + +Versions through 0.59 (and much of this documentation) were written by: + +Mark-Jason Dominus, mjd-perl-diff@plover.com + +This version borrows some documentation and routine names from +Mark-Jason's, but Diff.pm's code was completely replaced. + +This code was adapted from the Smalltalk code of Mario Wolczko +, which is available at +ftp://st.cs.uiuc.edu/pub/Smalltalk/MANCHESTER/manchester/4.0/diff.st + +C and C were written by Mike Schilli +. + +The algorithm is that described in +I, +CACM, vol.20, no.5, pp.350-353, May 1977, with a few +minor improvements to improve the speed. + +Much work was done by Ned Konz (perl@bike-nomad.com). + +The OO interface and some other changes are by Tye McQueen. + +=cut diff --git a/slic3r/linux/local-lib/lib/perl5/Algorithm/DiffOld.pm b/slic3r/linux/local-lib/lib/perl5/Algorithm/DiffOld.pm new file mode 100644 index 00000000..1ff9c916 --- /dev/null +++ b/slic3r/linux/local-lib/lib/perl5/Algorithm/DiffOld.pm @@ -0,0 +1,306 @@ +# This is a version of Algorithm::Diff that uses only a comparison function, +# like versions <= 0.59 used to. +# $Revision: 1.3 $ + +package # don't index + Algorithm::DiffOld; +use strict; +use vars qw($VERSION @EXPORT_OK @ISA @EXPORT); +use integer; # see below in _replaceNextLargerWith() for mod to make + # if you don't use this +require Exporter; +@ISA = qw(Exporter); +@EXPORT = qw(); +@EXPORT_OK = qw(LCS diff traverse_sequences); +$VERSION = 1.10; # manually tracking Algorithm::Diff + +# McIlroy-Hunt diff algorithm +# Adapted from the Smalltalk code of Mario I. Wolczko, +# by Ned Konz, perl@bike-nomad.com + +=head1 NAME + +Algorithm::DiffOld - Compute `intelligent' differences between two files / lists +but use the old (<=0.59) interface. + +=head1 NOTE + +This has been provided as part of the Algorithm::Diff package by Ned Konz. +This particular module is B for people who B to have the old +interface, which uses a comparison function rather than a key generating +function. + +Because each of the lines in one array have to be compared with each +of the lines in the other array, this does M*N comparisons. This can +be very slow. I clocked it at taking 18 times as long as the stock +version of Algorithm::Diff for a 4000-line file. It will get worse +quadratically as array sizes increase. + +=head1 SYNOPSIS + + use Algorithm::DiffOld qw(diff LCS traverse_sequences); + + @lcs = LCS( \@seq1, \@seq2, $comparison_function ); + + $lcsref = LCS( \@seq1, \@seq2, $comparison_function ); + + @diffs = diff( \@seq1, \@seq2, $comparison_function ); + + traverse_sequences( \@seq1, \@seq2, + { MATCH => $callback, + DISCARD_A => $callback, + DISCARD_B => $callback, + }, + $comparison_function ); + +=head1 COMPARISON FUNCTIONS + +Each of the main routines should be passed a comparison function. If you +aren't passing one in, B. + +These functions should return a true value when two items should compare +as equal. + +For instance, + + @lcs = LCS( \@seq1, \@seq2, sub { my ($a, $b) = @_; $a eq $b } ); + +but if that is all you're doing with your comparison function, just use +Algorithm::Diff and let it do this (this is its default). + +Or: + + sub someFunkyComparisonFunction + { + my ($a, $b) = @_; + $a =~ m{$b}; + } + + @diffs = diff( \@lines, \@patterns, \&someFunkyComparisonFunction ); + +which would allow you to diff an array @lines which consists of text +lines with an array @patterns which consists of regular expressions. + +This is actually the reason I wrote this version -- there is no way +to do this with a key generation function as in the stock Algorithm::Diff. + +=cut + +# Find the place at which aValue would normally be inserted into the array. If +# that place is already occupied by aValue, do nothing, and return undef. If +# the place does not exist (i.e., it is off the end of the array), add it to +# the end, otherwise replace the element at that point with aValue. +# It is assumed that the array's values are numeric. +# This is where the bulk (75%) of the time is spent in this module, so try to +# make it fast! + +sub _replaceNextLargerWith +{ + my ( $array, $aValue, $high ) = @_; + $high ||= $#$array; + + # off the end? + if ( $high == -1 || $aValue > $array->[ -1 ] ) + { + push( @$array, $aValue ); + return $high + 1; + } + + # binary search for insertion point... + my $low = 0; + my $index; + my $found; + while ( $low <= $high ) + { + $index = ( $high + $low ) / 2; +# $index = int(( $high + $low ) / 2); # without 'use integer' + $found = $array->[ $index ]; + + if ( $aValue == $found ) + { + return undef; + } + elsif ( $aValue > $found ) + { + $low = $index + 1; + } + else + { + $high = $index - 1; + } + } + + # now insertion point is in $low. + $array->[ $low ] = $aValue; # overwrite next larger + return $low; +} + +# This method computes the longest common subsequence in $a and $b. + +# Result is array or ref, whose contents is such that +# $a->[ $i ] == $b->[ $result[ $i ] ] +# foreach $i in ( 0 .. $#result ) if $result[ $i ] is defined. + +# An additional argument may be passed; this is a CODE ref to a comparison +# routine. By default, comparisons will use "eq" . +# Note that this routine will be called as many as M*N times, so make it fast! + +# Additional parameters, if any, will be passed to the key generation routine. + +sub _longestCommonSubsequence +{ + my $a = shift; # array ref + my $b = shift; # array ref + my $compare = shift || sub { my $a = shift; my $b = shift; $a eq $b }; + + my $aStart = 0; + my $aFinish = $#$a; + my $bStart = 0; + my $bFinish = $#$b; + my $matchVector = []; + + # First we prune off any common elements at the beginning + while ( $aStart <= $aFinish + and $bStart <= $bFinish + and &$compare( $a->[ $aStart ], $b->[ $bStart ], @_ ) ) + { + $matchVector->[ $aStart++ ] = $bStart++; + } + + # now the end + while ( $aStart <= $aFinish + and $bStart <= $bFinish + and &$compare( $a->[ $aFinish ], $b->[ $bFinish ], @_ ) ) + { + $matchVector->[ $aFinish-- ] = $bFinish--; + } + + my $thresh = []; + my $links = []; + + my ( $i, $ai, $j, $k ); + for ( $i = $aStart; $i <= $aFinish; $i++ ) + { + $k = 0; + # look for each element of @b between $bStart and $bFinish + # that matches $a->[ $i ], in reverse order + for ($j = $bFinish; $j >= $bStart; $j--) + { + next if ! &$compare( $a->[$i], $b->[$j], @_ ); + # optimization: most of the time this will be true + if ( $k + and $thresh->[ $k ] > $j + and $thresh->[ $k - 1 ] < $j ) + { + $thresh->[ $k ] = $j; + } + else + { + $k = _replaceNextLargerWith( $thresh, $j, $k ); + } + + # oddly, it's faster to always test this (CPU cache?). + if ( defined( $k ) ) + { + $links->[ $k ] = + [ ( $k ? $links->[ $k - 1 ] : undef ), $i, $j ]; + } + } + } + + if ( @$thresh ) + { + for ( my $link = $links->[ $#$thresh ]; $link; $link = $link->[ 0 ] ) + { + $matchVector->[ $link->[ 1 ] ] = $link->[ 2 ]; + } + } + + return wantarray ? @$matchVector : $matchVector; +} + +sub traverse_sequences +{ + my $a = shift; # array ref + my $b = shift; # array ref + my $callbacks = shift || { }; + my $compare = shift; + my $matchCallback = $callbacks->{'MATCH'} || sub { }; + my $discardACallback = $callbacks->{'DISCARD_A'} || sub { }; + my $finishedACallback = $callbacks->{'A_FINISHED'}; + my $discardBCallback = $callbacks->{'DISCARD_B'} || sub { }; + my $finishedBCallback = $callbacks->{'B_FINISHED'}; + my $matchVector = _longestCommonSubsequence( $a, $b, $compare, @_ ); + # Process all the lines in match vector + my $lastA = $#$a; + my $lastB = $#$b; + my $bi = 0; + my $ai; + for ( $ai = 0; $ai <= $#$matchVector; $ai++ ) + { + my $bLine = $matchVector->[ $ai ]; + if ( defined( $bLine ) ) # matched + { + &$discardBCallback( $ai, $bi++, @_ ) while $bi < $bLine; + &$matchCallback( $ai, $bi++, @_ ); + } + else + { + &$discardACallback( $ai, $bi, @_ ); + } + } + # the last entry (if any) processed was a match. + + if ( defined( $finishedBCallback ) && $ai <= $lastA ) + { + &$finishedBCallback( $bi, @_ ); + } + else + { + &$discardACallback( $ai++, $bi, @_ ) while ( $ai <= $lastA ); + } + + if ( defined( $finishedACallback ) && $bi <= $lastB ) + { + &$finishedACallback( $ai, @_ ); + } + else + { + &$discardBCallback( $ai, $bi++, @_ ) while ( $bi <= $lastB ); + } + return 1; +} + +sub LCS +{ + my $a = shift; # array ref + my $matchVector = _longestCommonSubsequence( $a, @_ ); + my @retval; + my $i; + for ( $i = 0; $i <= $#$matchVector; $i++ ) + { + if ( defined( $matchVector->[ $i ] ) ) + { + push( @retval, $a->[ $i ] ); + } + } + return wantarray ? @retval : \@retval; +} + +sub diff +{ + my $a = shift; # array ref + my $b = shift; # array ref + my $retval = []; + my $hunk = []; + my $discard = sub { push( @$hunk, [ '-', $_[ 0 ], $a->[ $_[ 0 ] ] ] ) }; + my $add = sub { push( @$hunk, [ '+', $_[ 1 ], $b->[ $_[ 1 ] ] ] ) }; + my $match = sub { push( @$retval, $hunk ) if scalar(@$hunk); $hunk = [] }; + traverse_sequences( $a, $b, + { MATCH => $match, DISCARD_A => $discard, DISCARD_B => $add }, + @_ ); + &$match(); + return wantarray ? @$retval : $retval; +} + +1; diff --git a/slic3r/linux/local-lib/lib/perl5/Archive/Zip.pm b/slic3r/linux/local-lib/lib/perl5/Archive/Zip.pm new file mode 100644 index 00000000..ca82e311 --- /dev/null +++ b/slic3r/linux/local-lib/lib/perl5/Archive/Zip.pm @@ -0,0 +1,2164 @@ +package Archive::Zip; + +use 5.006; +use strict; +use Carp (); +use Cwd (); +use IO::File (); +use IO::Seekable (); +use Compress::Raw::Zlib (); +use File::Spec (); +use File::Temp (); +use FileHandle (); + +use vars qw( $VERSION @ISA ); + +BEGIN { + $VERSION = '1.60'; + + require Exporter; + @ISA = qw( Exporter ); +} + +use vars qw( $ChunkSize $ErrorHandler ); + +BEGIN { + # This is the size we'll try to read, write, and (de)compress. + # You could set it to something different if you had lots of memory + # and needed more speed. + $ChunkSize ||= 32768; + + $ErrorHandler = \&Carp::carp; +} + +# BEGIN block is necessary here so that other modules can use the constants. +use vars qw( @EXPORT_OK %EXPORT_TAGS ); + +BEGIN { + @EXPORT_OK = ('computeCRC32'); + %EXPORT_TAGS = ( + CONSTANTS => [ + qw( + FA_MSDOS + FA_UNIX + GPBF_ENCRYPTED_MASK + GPBF_DEFLATING_COMPRESSION_MASK + GPBF_HAS_DATA_DESCRIPTOR_MASK + COMPRESSION_STORED + COMPRESSION_DEFLATED + COMPRESSION_LEVEL_NONE + COMPRESSION_LEVEL_DEFAULT + COMPRESSION_LEVEL_FASTEST + COMPRESSION_LEVEL_BEST_COMPRESSION + IFA_TEXT_FILE_MASK + IFA_TEXT_FILE + IFA_BINARY_FILE + ) + ], + + MISC_CONSTANTS => [ + qw( + FA_AMIGA + FA_VAX_VMS + FA_VM_CMS + FA_ATARI_ST + FA_OS2_HPFS + FA_MACINTOSH + FA_Z_SYSTEM + FA_CPM + FA_TOPS20 + FA_WINDOWS_NTFS + FA_QDOS + FA_ACORN + FA_VFAT + FA_MVS + FA_BEOS + FA_TANDEM + FA_THEOS + GPBF_IMPLODING_8K_SLIDING_DICTIONARY_MASK + GPBF_IMPLODING_3_SHANNON_FANO_TREES_MASK + GPBF_IS_COMPRESSED_PATCHED_DATA_MASK + COMPRESSION_SHRUNK + DEFLATING_COMPRESSION_NORMAL + DEFLATING_COMPRESSION_MAXIMUM + DEFLATING_COMPRESSION_FAST + DEFLATING_COMPRESSION_SUPER_FAST + COMPRESSION_REDUCED_1 + COMPRESSION_REDUCED_2 + COMPRESSION_REDUCED_3 + COMPRESSION_REDUCED_4 + COMPRESSION_IMPLODED + COMPRESSION_TOKENIZED + COMPRESSION_DEFLATED_ENHANCED + COMPRESSION_PKWARE_DATA_COMPRESSION_LIBRARY_IMPLODED + ) + ], + + ERROR_CODES => [ + qw( + AZ_OK + AZ_STREAM_END + AZ_ERROR + AZ_FORMAT_ERROR + AZ_IO_ERROR + ) + ], + + # For Internal Use Only + PKZIP_CONSTANTS => [ + qw( + SIGNATURE_FORMAT + SIGNATURE_LENGTH + + LOCAL_FILE_HEADER_SIGNATURE + LOCAL_FILE_HEADER_FORMAT + LOCAL_FILE_HEADER_LENGTH + + DATA_DESCRIPTOR_SIGNATURE + DATA_DESCRIPTOR_FORMAT + DATA_DESCRIPTOR_LENGTH + + DATA_DESCRIPTOR_FORMAT_NO_SIG + DATA_DESCRIPTOR_LENGTH_NO_SIG + + CENTRAL_DIRECTORY_FILE_HEADER_SIGNATURE + CENTRAL_DIRECTORY_FILE_HEADER_FORMAT + CENTRAL_DIRECTORY_FILE_HEADER_LENGTH + + ZIP64_END_OF_CENTRAL_DIRECTORY_RECORD_SIGNATURE + ZIP64_END_OF_CENTRAL_DIRECTORY_RECORD_FORMAT + ZIP64_END_OF_CENTRAL_DIRECTORY_RECORD_LENGTH + + ZIP64_END_OF_CENTRAL_DIRECTORY_LOCATOR_SIGNATURE + ZIP64_END_OF_CENTRAL_DIRECTORY_LOCATOR_FORMAT + ZIP64_END_OF_CENTRAL_DIRECTORY_LOCATOR_LENGTH + + END_OF_CENTRAL_DIRECTORY_SIGNATURE + END_OF_CENTRAL_DIRECTORY_FORMAT + END_OF_CENTRAL_DIRECTORY_LENGTH + + END_OF_CENTRAL_DIRECTORY_SIGNATURE_STRING + ) + ], + + # For Internal Use Only + UTILITY_METHODS => [ + qw( + _error + _printError + _ioError + _formatError + _subclassResponsibility + _binmode + _isSeekable + _newFileHandle + _readSignature + _asZipDirName + ) + ], + ); + + # Add all the constant names and error code names to @EXPORT_OK + Exporter::export_ok_tags( + qw( + CONSTANTS + ERROR_CODES + PKZIP_CONSTANTS + UTILITY_METHODS + MISC_CONSTANTS + )); + +} + +# Error codes +use constant AZ_OK => 0; +use constant AZ_STREAM_END => 1; +use constant AZ_ERROR => 2; +use constant AZ_FORMAT_ERROR => 3; +use constant AZ_IO_ERROR => 4; + +# File types +# Values of Archive::Zip::Member->fileAttributeFormat() + +use constant FA_MSDOS => 0; +use constant FA_AMIGA => 1; +use constant FA_VAX_VMS => 2; +use constant FA_UNIX => 3; +use constant FA_VM_CMS => 4; +use constant FA_ATARI_ST => 5; +use constant FA_OS2_HPFS => 6; +use constant FA_MACINTOSH => 7; +use constant FA_Z_SYSTEM => 8; +use constant FA_CPM => 9; +use constant FA_TOPS20 => 10; +use constant FA_WINDOWS_NTFS => 11; +use constant FA_QDOS => 12; +use constant FA_ACORN => 13; +use constant FA_VFAT => 14; +use constant FA_MVS => 15; +use constant FA_BEOS => 16; +use constant FA_TANDEM => 17; +use constant FA_THEOS => 18; + +# general-purpose bit flag masks +# Found in Archive::Zip::Member->bitFlag() + +use constant GPBF_ENCRYPTED_MASK => 1 << 0; +use constant GPBF_DEFLATING_COMPRESSION_MASK => 3 << 1; +use constant GPBF_HAS_DATA_DESCRIPTOR_MASK => 1 << 3; + +# deflating compression types, if compressionMethod == COMPRESSION_DEFLATED +# ( Archive::Zip::Member->bitFlag() & GPBF_DEFLATING_COMPRESSION_MASK ) + +use constant DEFLATING_COMPRESSION_NORMAL => 0 << 1; +use constant DEFLATING_COMPRESSION_MAXIMUM => 1 << 1; +use constant DEFLATING_COMPRESSION_FAST => 2 << 1; +use constant DEFLATING_COMPRESSION_SUPER_FAST => 3 << 1; + +# compression method + +# these two are the only ones supported in this module +use constant COMPRESSION_STORED => 0; # file is stored (no compression) +use constant COMPRESSION_DEFLATED => 8; # file is Deflated +use constant COMPRESSION_LEVEL_NONE => 0; +use constant COMPRESSION_LEVEL_DEFAULT => -1; +use constant COMPRESSION_LEVEL_FASTEST => 1; +use constant COMPRESSION_LEVEL_BEST_COMPRESSION => 9; + +# internal file attribute bits +# Found in Archive::Zip::Member::internalFileAttributes() + +use constant IFA_TEXT_FILE_MASK => 1; +use constant IFA_TEXT_FILE => 1; +use constant IFA_BINARY_FILE => 0; + +# PKZIP file format miscellaneous constants (for internal use only) +use constant SIGNATURE_FORMAT => "V"; +use constant SIGNATURE_LENGTH => 4; + +# these lengths are without the signature. +use constant LOCAL_FILE_HEADER_SIGNATURE => 0x04034b50; +use constant LOCAL_FILE_HEADER_FORMAT => "v3 V4 v2"; +use constant LOCAL_FILE_HEADER_LENGTH => 26; + +# PKZIP docs don't mention the signature, but Info-Zip writes it. +use constant DATA_DESCRIPTOR_SIGNATURE => 0x08074b50; +use constant DATA_DESCRIPTOR_FORMAT => "V3"; +use constant DATA_DESCRIPTOR_LENGTH => 12; + +# but the signature is apparently optional. +use constant DATA_DESCRIPTOR_FORMAT_NO_SIG => "V2"; +use constant DATA_DESCRIPTOR_LENGTH_NO_SIG => 8; + +use constant CENTRAL_DIRECTORY_FILE_HEADER_SIGNATURE => 0x02014b50; +use constant CENTRAL_DIRECTORY_FILE_HEADER_FORMAT => "C2 v3 V4 v5 V2"; +use constant CENTRAL_DIRECTORY_FILE_HEADER_LENGTH => 42; + +# zip64 support +use constant ZIP64_END_OF_CENTRAL_DIRECTORY_RECORD_SIGNATURE => 0x06064b50; +use constant ZIP64_END_OF_CENTRAL_DIRECTORY_RECORD_FORMAT => 0; +use constant ZIP64_END_OF_CENTRAL_DIRECTORY_RECORD_LENGTH => 0; + +use constant ZIP64_END_OF_CENTRAL_DIRECTORY_LOCATOR_SIGNATURE => 0x07064b50; +use constant ZIP64_END_OF_CENTRAL_DIRECTORY_LOCATOR_FORMAT => 0; +use constant ZIP64_END_OF_CENTRAL_DIRECTORY_LOCATOR_LENGTH => 0; + + +use constant END_OF_CENTRAL_DIRECTORY_SIGNATURE => 0x06054b50; +use constant END_OF_CENTRAL_DIRECTORY_SIGNATURE_STRING => + pack("V", END_OF_CENTRAL_DIRECTORY_SIGNATURE); +use constant END_OF_CENTRAL_DIRECTORY_FORMAT => "v4 V2 v"; +use constant END_OF_CENTRAL_DIRECTORY_LENGTH => 18; + +use constant GPBF_IMPLODING_8K_SLIDING_DICTIONARY_MASK => 1 << 1; +use constant GPBF_IMPLODING_3_SHANNON_FANO_TREES_MASK => 1 << 2; +use constant GPBF_IS_COMPRESSED_PATCHED_DATA_MASK => 1 << 5; + +# the rest of these are not supported in this module +use constant COMPRESSION_SHRUNK => 1; # file is Shrunk +use constant COMPRESSION_REDUCED_1 => 2; # file is Reduced CF=1 +use constant COMPRESSION_REDUCED_2 => 3; # file is Reduced CF=2 +use constant COMPRESSION_REDUCED_3 => 4; # file is Reduced CF=3 +use constant COMPRESSION_REDUCED_4 => 5; # file is Reduced CF=4 +use constant COMPRESSION_IMPLODED => 6; # file is Imploded +use constant COMPRESSION_TOKENIZED => 7; # reserved for Tokenizing compr. +use constant COMPRESSION_DEFLATED_ENHANCED => 9; # reserved for enh. Deflating +use constant COMPRESSION_PKWARE_DATA_COMPRESSION_LIBRARY_IMPLODED => 10; + +# Load the various required classes +require Archive::Zip::Archive; +require Archive::Zip::Member; +require Archive::Zip::FileMember; +require Archive::Zip::DirectoryMember; +require Archive::Zip::ZipFileMember; +require Archive::Zip::NewFileMember; +require Archive::Zip::StringMember; + +# Convenience functions + +sub _ISA ($$) { + + # Can't rely on Scalar::Util, so use the next best way + local $@; + !!eval { ref $_[0] and $_[0]->isa($_[1]) }; +} + +sub _CAN ($$) { + local $@; + !!eval { ref $_[0] and $_[0]->can($_[1]) }; +} + +##################################################################### +# Methods + +sub new { + my $class = shift; + return Archive::Zip::Archive->new(@_); +} + +sub computeCRC32 { + my ($data, $crc); + + if (ref($_[0]) eq 'HASH') { + $data = $_[0]->{string}; + $crc = $_[0]->{checksum}; + } else { + $data = shift; + $data = shift if ref($data); + $crc = shift; + } + + return Compress::Raw::Zlib::crc32($data, $crc); +} + +# Report or change chunk size used for reading and writing. +# Also sets Zlib's default buffer size (eventually). +sub setChunkSize { + shift if ref($_[0]) eq 'Archive::Zip::Archive'; + my $chunkSize = (ref($_[0]) eq 'HASH') ? shift->{chunkSize} : shift; + my $oldChunkSize = $Archive::Zip::ChunkSize; + $Archive::Zip::ChunkSize = $chunkSize if ($chunkSize); + return $oldChunkSize; +} + +sub chunkSize { + return $Archive::Zip::ChunkSize; +} + +sub setErrorHandler { + my $errorHandler = (ref($_[0]) eq 'HASH') ? shift->{subroutine} : shift; + $errorHandler = \&Carp::carp unless defined($errorHandler); + my $oldErrorHandler = $Archive::Zip::ErrorHandler; + $Archive::Zip::ErrorHandler = $errorHandler; + return $oldErrorHandler; +} + +###################################################################### +# Private utility functions (not methods). + +sub _printError { + my $string = join(' ', @_, "\n"); + my $oldCarpLevel = $Carp::CarpLevel; + $Carp::CarpLevel += 2; + &{$ErrorHandler}($string); + $Carp::CarpLevel = $oldCarpLevel; +} + +# This is called on format errors. +sub _formatError { + shift if ref($_[0]); + _printError('format error:', @_); + return AZ_FORMAT_ERROR; +} + +# This is called on IO errors. +sub _ioError { + shift if ref($_[0]); + _printError('IO error:', @_, ':', $!); + return AZ_IO_ERROR; +} + +# This is called on generic errors. +sub _error { + shift if ref($_[0]); + _printError('error:', @_); + return AZ_ERROR; +} + +# Called when a subclass should have implemented +# something but didn't +sub _subclassResponsibility { + Carp::croak("subclass Responsibility\n"); +} + +# Try to set the given file handle or object into binary mode. +sub _binmode { + my $fh = shift; + return _CAN($fh, 'binmode') ? $fh->binmode() : binmode($fh); +} + +# Attempt to guess whether file handle is seekable. +# Because of problems with Windows, this only returns true when +# the file handle is a real file. +sub _isSeekable { + my $fh = shift; + return 0 unless ref $fh; + _ISA($fh, "IO::Scalar") # IO::Scalar objects are brokenly-seekable + and return 0; + _ISA($fh, "IO::String") + and return 1; + if (_ISA($fh, "IO::Seekable")) { + + # Unfortunately, some things like FileHandle objects + # return true for Seekable, but AREN'T!!!!! + _ISA($fh, "FileHandle") + and return 0; + return 1; + } + + # open my $fh, "+<", \$data; + ref $fh eq "GLOB" && eval { seek $fh, 0, 1 } and return 1; + _CAN($fh, "stat") + and return -f $fh; + return (_CAN($fh, "seek") and _CAN($fh, "tell")) ? 1 : 0; +} + +# Print to the filehandle, while making sure the pesky Perl special global +# variables don't interfere. +sub _print { + my ($self, $fh, @data) = @_; + + local $\; + + return $fh->print(@data); +} + +# Return an opened IO::Handle +# my ( $status, fh ) = _newFileHandle( 'fileName', 'w' ); +# Can take a filename, file handle, or ref to GLOB +# Or, if given something that is a ref but not an IO::Handle, +# passes back the same thing. +sub _newFileHandle { + my $fd = shift; + my $status = 1; + my $handle; + + if (ref($fd)) { + if (_ISA($fd, 'IO::Scalar') or _ISA($fd, 'IO::String')) { + $handle = $fd; + } elsif (_ISA($fd, 'IO::Handle') or ref($fd) eq 'GLOB') { + $handle = IO::File->new; + $status = $handle->fdopen($fd, @_); + } else { + $handle = $fd; + } + } else { + $handle = IO::File->new; + $status = $handle->open($fd, @_); + } + + return ($status, $handle); +} + +# Returns next signature from given file handle, leaves +# file handle positioned afterwards. +# In list context, returns ($status, $signature) +# ( $status, $signature) = _readSignature( $fh, $fileName ); + +sub _readSignature { + my $fh = shift; + my $fileName = shift; + my $expectedSignature = shift; # optional + + my $signatureData; + my $bytesRead = $fh->read($signatureData, SIGNATURE_LENGTH); + if ($bytesRead != SIGNATURE_LENGTH) { + return _ioError("reading header signature"); + } + my $signature = unpack(SIGNATURE_FORMAT, $signatureData); + my $status = AZ_OK; + + # compare with expected signature, if any, or any known signature. + if ( + (defined($expectedSignature) && $signature != $expectedSignature) + || ( !defined($expectedSignature) + && $signature != CENTRAL_DIRECTORY_FILE_HEADER_SIGNATURE + && $signature != LOCAL_FILE_HEADER_SIGNATURE + && $signature != END_OF_CENTRAL_DIRECTORY_SIGNATURE + && $signature != DATA_DESCRIPTOR_SIGNATURE + && $signature != ZIP64_END_OF_CENTRAL_DIRECTORY_RECORD_SIGNATURE + && $signature != ZIP64_END_OF_CENTRAL_DIRECTORY_LOCATOR_SIGNATURE + ) + ) { + my $errmsg = sprintf("bad signature: 0x%08x", $signature); + if (_isSeekable($fh)) { + $errmsg .= sprintf(" at offset %d", $fh->tell() - SIGNATURE_LENGTH); + } + + $status = _formatError("$errmsg in file $fileName"); + } + + return ($status, $signature); +} + +# Utility method to make and open a temp file. +# Will create $temp_dir if it does not exist. +# Returns file handle and name: +# +# my ($fh, $name) = Archive::Zip::tempFile(); +# my ($fh, $name) = Archive::Zip::tempFile('mytempdir'); +# + +sub tempFile { + my $dir = (ref($_[0]) eq 'HASH') ? shift->{tempDir} : shift; + my ($fh, $filename) = File::Temp::tempfile( + SUFFIX => '.zip', + UNLINK => 1, + $dir ? (DIR => $dir) : ()); + return (undef, undef) unless $fh; + my ($status, $newfh) = _newFileHandle($fh, 'w+'); + $fh->close(); + return ($newfh, $filename); +} + +# Return the normalized directory name as used in a zip file (path +# separators become slashes, etc.). +# Will translate internal slashes in path components (i.e. on Macs) to +# underscores. Discards volume names. +# When $forceDir is set, returns paths with trailing slashes (or arrays +# with trailing blank members). +# +# If third argument is a reference, returns volume information there. +# +# input output +# . ('.') '.' +# ./a ('a') a +# ./a/b ('a','b') a/b +# ./a/b/ ('a','b') a/b +# a/b/ ('a','b') a/b +# /a/b/ ('','a','b') a/b +# c:\a\b\c.doc ('','a','b','c.doc') a/b/c.doc # on Windows +# "i/o maps:whatever" ('i_o maps', 'whatever') "i_o maps/whatever" # on Macs +sub _asZipDirName { + my $name = shift; + my $forceDir = shift; + my $volReturn = shift; + my ($volume, $directories, $file) = + File::Spec->splitpath(File::Spec->canonpath($name), $forceDir); + $$volReturn = $volume if (ref($volReturn)); + my @dirs = map { $_ =~ s{/}{_}g; $_ } File::Spec->splitdir($directories); + if (@dirs > 0) { pop(@dirs) unless $dirs[-1] } # remove empty component + push(@dirs, defined($file) ? $file : ''); + + #return wantarray ? @dirs : join ( '/', @dirs ); + + my $normalised_path = join '/', @dirs; + + # Leading directory separators should not be stored in zip archives. + # Example: + # C:\a\b\c\ a/b/c + # C:\a\b\c.txt a/b/c.txt + # /a/b/c/ a/b/c + # /a/b/c.txt a/b/c.txt + $normalised_path =~ s{^/}{}; # remove leading separator + + return $normalised_path; +} + +# Return an absolute local name for a zip name. +# Assume a directory if zip name has trailing slash. +# Takes an optional volume name in FS format (like 'a:'). +# +sub _asLocalName { + my $name = shift; # zip format + my $volume = shift; + $volume = '' unless defined($volume); # local FS format + + my @paths = split(/\//, $name); + my $filename = pop(@paths); + $filename = '' unless defined($filename); + my $localDirs = @paths ? File::Spec->catdir(@paths) : ''; + my $localName = File::Spec->catpath($volume, $localDirs, $filename); + unless ($volume) { + $localName = File::Spec->rel2abs($localName, Cwd::getcwd()); + } + return $localName; +} + +1; + +__END__ + +=pod + +=encoding utf8 + +=head1 NAME + +Archive::Zip - Provide an interface to ZIP archive files. + +=head1 SYNOPSIS + + # Create a Zip file + use Archive::Zip qw( :ERROR_CODES :CONSTANTS ); + my $zip = Archive::Zip->new(); + + # Add a directory + my $dir_member = $zip->addDirectory( 'dirname/' ); + + # Add a file from a string with compression + my $string_member = $zip->addString( 'This is a test', 'stringMember.txt' ); + $string_member->desiredCompressionMethod( COMPRESSION_DEFLATED ); + + # Add a file from disk + my $file_member = $zip->addFile( 'xyz.pl', 'AnotherName.pl' ); + + # Save the Zip file + unless ( $zip->writeToFileNamed('someZip.zip') == AZ_OK ) { + die 'write error'; + } + + # Read a Zip file + my $somezip = Archive::Zip->new(); + unless ( $somezip->read( 'someZip.zip' ) == AZ_OK ) { + die 'read error'; + } + + # Change the compression type for a file in the Zip + my $member = $somezip->memberNamed( 'stringMember.txt' ); + $member->desiredCompressionMethod( COMPRESSION_STORED ); + unless ( $zip->writeToFileNamed( 'someOtherZip.zip' ) == AZ_OK ) { + die 'write error'; + } + +=head1 DESCRIPTION + +The Archive::Zip module allows a Perl program to create, manipulate, read, +and write Zip archive files. + +Zip archives can be created, or you can read from existing zip files. + +Once created, they can be written to files, streams, or strings. Members +can be added, removed, extracted, replaced, rearranged, and enumerated. +They can also be renamed or have their dates, comments, or other attributes +queried or modified. Their data can be compressed or uncompressed as needed. + +Members can be created from members in existing Zip files, or from existing +directories, files, or strings. + +This module uses the L library to read and write the +compressed streams inside the files. + +One can use L to read the zip file archive members +as if they were files. + +=head2 File Naming + +Regardless of what your local file system uses for file naming, names in a +Zip file are in Unix format (I slashes (/) separating directory +names, etc.). + +C tries to be consistent with file naming conventions, and will +translate back and forth between native and Zip file names. + +However, it can't guess which format names are in. So two rules control what +kind of file name you must pass various routines: + +=over 4 + +=item Names of files are in local format. + +C and C are used for various file +operations. When you're referring to a file on your system, use its +file naming conventions. + +=item Names of archive members are in Unix format. + +This applies to every method that refers to an archive member, or +provides a name for new archive members. The C methods +that can take one or two names will convert from local to zip names +if you call them with a single name. + +=back + +=head2 Archive::Zip Object Model + +=head3 Overview + +Archive::Zip::Archive objects are what you ordinarily deal with. +These maintain the structure of a zip file, without necessarily +holding data. When a zip is read from a disk file, the (possibly +compressed) data still lives in the file, not in memory. Archive +members hold information about the individual members, but not +(usually) the actual member data. When the zip is written to a +(different) file, the member data is compressed or copied as needed. +It is possible to make archive members whose data is held in a string +in memory, but this is not done when a zip file is read. Directory +members don't have any data. + +=head2 Inheritance + + Exporter + Archive::Zip Common base class, has defs. + Archive::Zip::Archive A Zip archive. + Archive::Zip::Member Abstract superclass for all members. + Archive::Zip::StringMember Member made from a string + Archive::Zip::FileMember Member made from an external file + Archive::Zip::ZipFileMember Member that lives in a zip file + Archive::Zip::NewFileMember Member whose data is in a file + Archive::Zip::DirectoryMember Member that is a directory + +=head1 EXPORTS + +=over 4 + +=item :CONSTANTS + +Exports the following constants: + +FA_MSDOS FA_UNIX GPBF_ENCRYPTED_MASK +GPBF_DEFLATING_COMPRESSION_MASK GPBF_HAS_DATA_DESCRIPTOR_MASK +COMPRESSION_STORED COMPRESSION_DEFLATED IFA_TEXT_FILE_MASK +IFA_TEXT_FILE IFA_BINARY_FILE COMPRESSION_LEVEL_NONE +COMPRESSION_LEVEL_DEFAULT COMPRESSION_LEVEL_FASTEST +COMPRESSION_LEVEL_BEST_COMPRESSION + +=item :MISC_CONSTANTS + +Exports the following constants (only necessary for extending the +module): + +FA_AMIGA FA_VAX_VMS FA_VM_CMS FA_ATARI_ST FA_OS2_HPFS +FA_MACINTOSH FA_Z_SYSTEM FA_CPM FA_WINDOWS_NTFS +GPBF_IMPLODING_8K_SLIDING_DICTIONARY_MASK +GPBF_IMPLODING_3_SHANNON_FANO_TREES_MASK +GPBF_IS_COMPRESSED_PATCHED_DATA_MASK COMPRESSION_SHRUNK +DEFLATING_COMPRESSION_NORMAL DEFLATING_COMPRESSION_MAXIMUM +DEFLATING_COMPRESSION_FAST DEFLATING_COMPRESSION_SUPER_FAST +COMPRESSION_REDUCED_1 COMPRESSION_REDUCED_2 COMPRESSION_REDUCED_3 +COMPRESSION_REDUCED_4 COMPRESSION_IMPLODED COMPRESSION_TOKENIZED +COMPRESSION_DEFLATED_ENHANCED +COMPRESSION_PKWARE_DATA_COMPRESSION_LIBRARY_IMPLODED + +=item :ERROR_CODES + +Explained below. Returned from most methods. + +AZ_OK AZ_STREAM_END AZ_ERROR AZ_FORMAT_ERROR AZ_IO_ERROR + +=back + +=head1 ERROR CODES + +Many of the methods in Archive::Zip return error codes. These are implemented +as inline subroutines, using the C pragma. They can be imported +into your namespace using the C<:ERROR_CODES> tag: + + use Archive::Zip qw( :ERROR_CODES ); + + ... + + unless ( $zip->read( 'myfile.zip' ) == AZ_OK ) { + die "whoops!"; + } + +=over 4 + +=item AZ_OK (0) + +Everything is fine. + +=item AZ_STREAM_END (1) + +The read stream (or central directory) ended normally. + +=item AZ_ERROR (2) + +There was some generic kind of error. + +=item AZ_FORMAT_ERROR (3) + +There is a format error in a ZIP file being read. + +=item AZ_IO_ERROR (4) + +There was an IO error. + +=back + +=head2 Compression + +Archive::Zip allows each member of a ZIP file to be compressed (using the +Deflate algorithm) or uncompressed. + +Other compression algorithms that some versions of ZIP have been able to +produce are not supported. Each member has two compression methods: the +one it's stored as (this is always COMPRESSION_STORED for string and external +file members), and the one you desire for the member in the zip file. + +These can be different, of course, so you can make a zip member that is not +compressed out of one that is, and vice versa. + +You can inquire about the current compression and set the desired +compression method: + + my $member = $zip->memberNamed( 'xyz.txt' ); + $member->compressionMethod(); # return current compression + + # set to read uncompressed + $member->desiredCompressionMethod( COMPRESSION_STORED ); + + # set to read compressed + $member->desiredCompressionMethod( COMPRESSION_DEFLATED ); + +There are two different compression methods: + +=over 4 + +=item COMPRESSION_STORED + +File is stored (no compression) + +=item COMPRESSION_DEFLATED + +File is Deflated + +=back + +=head2 Compression Levels + +If a member's desiredCompressionMethod is COMPRESSION_DEFLATED, you +can choose different compression levels. This choice may affect the +speed of compression and decompression, as well as the size of the +compressed member data. + + $member->desiredCompressionLevel( 9 ); + +The levels given can be: + +=over 4 + +=item * 0 or COMPRESSION_LEVEL_NONE + +This is the same as saying + + $member->desiredCompressionMethod( COMPRESSION_STORED ); + +=item * 1 .. 9 + +1 gives the best speed and worst compression, and 9 gives the +best compression and worst speed. + +=item * COMPRESSION_LEVEL_FASTEST + +This is a synonym for level 1. + +=item * COMPRESSION_LEVEL_BEST_COMPRESSION + +This is a synonym for level 9. + +=item * COMPRESSION_LEVEL_DEFAULT + +This gives a good compromise between speed and compression, +and is currently equivalent to 6 (this is in the zlib code). +This is the level that will be used if not specified. + +=back + +=head1 Archive::Zip Methods + +The Archive::Zip class (and its invisible subclass Archive::Zip::Archive) +implement generic zip file functionality. Creating a new Archive::Zip object +actually makes an Archive::Zip::Archive object, but you don't have to worry +about this unless you're subclassing. + +=head2 Constructor + +=over 4 + +=item new( [$fileName] ) + +=item new( { filename => $fileName } ) + +Make a new, empty zip archive. + + my $zip = Archive::Zip->new(); + +If an additional argument is passed, new() will call read() +to read the contents of an archive: + + my $zip = Archive::Zip->new( 'xyz.zip' ); + +If a filename argument is passed and the read fails for any +reason, new will return undef. For this reason, it may be +better to call read separately. + +=back + +=head2 Zip Archive Utility Methods + +These Archive::Zip methods may be called as functions or as object +methods. Do not call them as class methods: + + $zip = Archive::Zip->new(); + $crc = Archive::Zip::computeCRC32( 'ghijkl' ); # OK + $crc = $zip->computeCRC32( 'ghijkl' ); # also OK + $crc = Archive::Zip->computeCRC32( 'ghijkl' ); # NOT OK + +=over 4 + +=item Archive::Zip::computeCRC32( $string [, $crc] ) + +=item Archive::Zip::computeCRC32( { string => $string [, checksum => $crc ] } ) + +This is a utility function that uses the Compress::Raw::Zlib CRC +routine to compute a CRC-32. You can get the CRC of a string: + + $crc = Archive::Zip::computeCRC32( $string ); + +Or you can compute the running CRC: + + $crc = 0; + $crc = Archive::Zip::computeCRC32( 'abcdef', $crc ); + $crc = Archive::Zip::computeCRC32( 'ghijkl', $crc ); + +=item Archive::Zip::setChunkSize( $number ) + +=item Archive::Zip::setChunkSize( { chunkSize => $number } ) + +Report or change chunk size used for reading and writing. +This can make big differences in dealing with large files. +Currently, this defaults to 32K. This also changes the chunk +size used for Compress::Raw::Zlib. You must call setChunkSize() +before reading or writing. This is not exportable, so you +must call it like: + + Archive::Zip::setChunkSize( 4096 ); + +or as a method on a zip (though this is a global setting). +Returns old chunk size. + +=item Archive::Zip::chunkSize() + +Returns the current chunk size: + + my $chunkSize = Archive::Zip::chunkSize(); + +=item Archive::Zip::setErrorHandler( \&subroutine ) + +=item Archive::Zip::setErrorHandler( { subroutine => \&subroutine } ) + +Change the subroutine called with error strings. This +defaults to \&Carp::carp, but you may want to change it to +get the error strings. This is not exportable, so you must +call it like: + + Archive::Zip::setErrorHandler( \&myErrorHandler ); + +If myErrorHandler is undef, resets handler to default. +Returns old error handler. Note that if you call Carp::carp +or a similar routine or if you're chaining to the default +error handler from your error handler, you may want to +increment the number of caller levels that are skipped (do +not just set it to a number): + + $Carp::CarpLevel++; + +=item Archive::Zip::tempFile( [ $tmpdir ] ) + +=item Archive::Zip::tempFile( { tempDir => $tmpdir } ) + +Create a uniquely named temp file. It will be returned open +for read/write. If C<$tmpdir> is given, it is used as the +name of a directory to create the file in. If not given, +creates the file using C. Generally, you can +override this choice using the + + $ENV{TMPDIR} + +environment variable. But see the L +documentation for your system. Note that on many systems, if you're +running in taint mode, then you must make sure that C<$ENV{TMPDIR}> is +untainted for it to be used. +Will I create C<$tmpdir> if it does not exist (this is a change +from prior versions!). Returns file handle and name: + + my ($fh, $name) = Archive::Zip::tempFile(); + my ($fh, $name) = Archive::Zip::tempFile('myTempDir'); + my $fh = Archive::Zip::tempFile(); # if you don't need the name + +=back + +=head2 Zip Archive Accessors + +=over 4 + +=item members() + +Return a copy of the members array + + my @members = $zip->members(); + +=item numberOfMembers() + +Return the number of members I have + +=item memberNames() + +Return a list of the (internal) file names of the zip members + +=item memberNamed( $string ) + +=item memberNamed( { zipName => $string } ) + +Return ref to member whose filename equals given filename or +undef. C<$string> must be in Zip (Unix) filename format. + +=item membersMatching( $regex ) + +=item membersMatching( { regex => $regex } ) + +Return array of members whose filenames match given regular +expression in list context. Returns number of matching +members in scalar context. + + my @textFileMembers = $zip->membersMatching( '.*\.txt' ); + # or + my $numberOfTextFiles = $zip->membersMatching( '.*\.txt' ); + +=item diskNumber() + +Return the disk that I start on. Not used for writing zips, +but might be interesting if you read a zip in. This should be +0, as Archive::Zip does not handle multi-volume archives. + +=item diskNumberWithStartOfCentralDirectory() + +Return the disk number that holds the beginning of the +central directory. Not used for writing zips, but might be +interesting if you read a zip in. This should be 0, as +Archive::Zip does not handle multi-volume archives. + +=item numberOfCentralDirectoriesOnThisDisk() + +Return the number of CD structures in the zipfile last read in. +Not used for writing zips, but might be interesting if you read a zip +in. + +=item numberOfCentralDirectories() + +Return the number of CD structures in the zipfile last read in. +Not used for writing zips, but might be interesting if you read a zip +in. + +=item centralDirectorySize() + +Returns central directory size, as read from an external zip +file. Not used for writing zips, but might be interesting if +you read a zip in. + +=item centralDirectoryOffsetWRTStartingDiskNumber() + +Returns the offset into the zip file where the CD begins. Not +used for writing zips, but might be interesting if you read a +zip in. + +=item zipfileComment( [ $string ] ) + +=item zipfileComment( [ { comment => $string } ] ) + +Get or set the zipfile comment. Returns the old comment. + + print $zip->zipfileComment(); + $zip->zipfileComment( 'New Comment' ); + +=item eocdOffset() + +Returns the (unexpected) number of bytes between where the +EOCD was found and where it expected to be. This is normally +0, but would be positive if something (a virus, perhaps) had +added bytes somewhere before the EOCD. Not used for writing +zips, but might be interesting if you read a zip in. Here is +an example of how you can diagnose this: + + my $zip = Archive::Zip->new('somefile.zip'); + if ($zip->eocdOffset()) + { + warn "A virus has added ", $zip->eocdOffset, " bytes of garbage\n"; + } + +The C is used to adjust the starting position of member +headers, if necessary. + +=item fileName() + +Returns the name of the file last read from. If nothing has +been read yet, returns an empty string; if read from a file +handle, returns the handle in string form. + +=back + +=head2 Zip Archive Member Operations + +Various operations on a zip file modify members. When a member is +passed as an argument, you can either use a reference to the member +itself, or the name of a member. Of course, using the name requires +that names be unique within a zip (this is not enforced). + +=over 4 + +=item removeMember( $memberOrName ) + +=item removeMember( { memberOrZipName => $memberOrName } ) + +Remove and return the given member, or match its name and +remove it. Returns undef if member or name does not exist in this +Zip. No-op if member does not belong to this zip. + +=item replaceMember( $memberOrName, $newMember ) + +=item replaceMember( { memberOrZipName => $memberOrName, + newMember => $newMember } ) + +Remove and return the given member, or match its name and +remove it. Replace with new member. Returns undef if member or +name does not exist in this Zip, or if C<$newMember> is undefined. + +It is an (undiagnosed) error to provide a C<$newMember> that is a +member of the zip being modified. + + my $member1 = $zip->removeMember( 'xyz' ); + my $member2 = $zip->replaceMember( 'abc', $member1 ); + # now, $member2 (named 'abc') is not in $zip, + # and $member1 (named 'xyz') is, having taken $member2's place. + +=item extractMember( $memberOrName [, $extractedName ] ) + +=item extractMember( { memberOrZipName => $memberOrName + [, name => $extractedName ] } ) + +Extract the given member, or match its name and extract it. +Returns undef if member does not exist in this Zip. If +optional second arg is given, use it as the name of the +extracted member. Otherwise, the internal filename of the +member is used as the name of the extracted file or +directory. +If you pass C<$extractedName>, it should be in the local file +system's format. +All necessary directories will be created. Returns C +on success. + +=item extractMemberWithoutPaths( $memberOrName [, $extractedName ] ) + +=item extractMemberWithoutPaths( { memberOrZipName => $memberOrName + [, name => $extractedName ] } ) + +Extract the given member, or match its name and extract it. +Does not use path information (extracts into the current +directory). Returns undef if member does not exist in this +Zip. +If optional second arg is given, use it as the name of the +extracted member (its paths will be deleted too). Otherwise, +the internal filename of the member (minus paths) is used as +the name of the extracted file or directory. Returns C +on success. + +=item addMember( $member ) + +=item addMember( { member => $member } ) + +Append a member (possibly from another zip file) to the zip +file. Returns the new member. Generally, you will use +addFile(), addDirectory(), addFileOrDirectory(), addString(), +or read() to add members. + + # Move member named 'abc' to end of zip: + my $member = $zip->removeMember( 'abc' ); + $zip->addMember( $member ); + +=item updateMember( $memberOrName, $fileName ) + +=item updateMember( { memberOrZipName => $memberOrName, name => $fileName } ) + +Update a single member from the file or directory named C<$fileName>. +Returns the (possibly added or updated) member, if any; C on +errors. +The comparison is based on C and (in the case of a +non-directory) the size of the file. + +=item addFile( $fileName [, $newName, $compressionLevel ] ) + +=item addFile( { filename => $fileName + [, zipName => $newName, compressionLevel => $compressionLevel } ] ) + +Append a member whose data comes from an external file, +returning the member or undef. The member will have its file +name set to the name of the external file, and its +desiredCompressionMethod set to COMPRESSION_DEFLATED. The +file attributes and last modification time will be set from +the file. +If the name given does not represent a readable plain file or +symbolic link, undef will be returned. C<$fileName> must be +in the format required for the local file system. +The optional C<$newName> argument sets the internal file name +to something different than the given $fileName. C<$newName>, +if given, must be in Zip name format (i.e. Unix). +The text mode bit will be set if the contents appears to be +text (as returned by the C<-T> perl operator). + + +I that you should not (generally) use absolute path names +in zip member names, as this will cause problems with some zip +tools as well as introduce a security hole and make the zip +harder to use. + +=item addDirectory( $directoryName [, $fileName ] ) + +=item addDirectory( { directoryName => $directoryName + [, zipName => $fileName ] } ) + + +Append a member created from the given directory name. The +directory name does not have to name an existing directory. +If the named directory exists, the file modification time and +permissions are set from the existing directory, otherwise +they are set to now and permissive default permissions. +C<$directoryName> must be in local file system format. +The optional second argument sets the name of the archive +member (which defaults to C<$directoryName>). If given, it +must be in Zip (Unix) format. +Returns the new member. + +=item addFileOrDirectory( $name [, $newName, $compressionLevel ] ) + +=item addFileOrDirectory( { name => $name [, zipName => $newName, + compressionLevel => $compressionLevel ] } ) + + +Append a member from the file or directory named $name. If +$newName is given, use it for the name of the new member. +Will add or remove trailing slashes from $newName as needed. +C<$name> must be in local file system format. +The optional second argument sets the name of the archive +member (which defaults to C<$name>). If given, it must be in +Zip (Unix) format. + +=item addString( $stringOrStringRef, $name, [$compressionLevel] ) + +=item addString( { string => $stringOrStringRef [, zipName => $name, + compressionLevel => $compressionLevel ] } ) + +Append a member created from the given string or string +reference. The name is given by the second argument. +Returns the new member. The last modification time will be +set to now, and the file attributes will be set to permissive +defaults. + + my $member = $zip->addString( 'This is a test', 'test.txt' ); + +=item contents( $memberOrMemberName [, $newContents ] ) + +=item contents( { memberOrZipName => $memberOrMemberName + [, contents => $newContents ] } ) + + +Returns the uncompressed data for a particular member, or +undef. + + print "xyz.txt contains " . $zip->contents( 'xyz.txt' ); + +Also can change the contents of a member: + + $zip->contents( 'xyz.txt', 'This is the new contents' ); + +If called expecting an array as the return value, it will include +the status as the second value in the array. + + ($content, $status) = $zip->contents( 'xyz.txt'); + +=back + +=head2 Zip Archive I/O operations + + +A Zip archive can be written to a file or file handle, or read from +one. + +=over 4 + +=item writeToFileNamed( $fileName ) + +=item writeToFileNamed( { fileName => $fileName } ) + +Write a zip archive to named file. Returns C on +success. + + my $status = $zip->writeToFileNamed( 'xx.zip' ); + die "error somewhere" if $status != AZ_OK; + +Note that if you use the same name as an existing zip file +that you read in, you will clobber ZipFileMembers. So +instead, write to a different file name, then delete the +original. +If you use the C or C methods, you can +re-write the original zip in this way. +C<$fileName> should be a valid file name on your system. + +=item writeToFileHandle( $fileHandle [, $seekable] ) + +Write a zip archive to a file handle. Return AZ_OK on +success. The optional second arg tells whether or not to try +to seek backwards to re-write headers. If not provided, it is +set if the Perl C<-f> test returns true. This could fail on +some operating systems, though. + + my $fh = IO::File->new( 'someFile.zip', 'w' ); + unless ( $zip->writeToFileHandle( $fh ) == AZ_OK ) { + # error handling + } + +If you pass a file handle that is not seekable (like if +you're writing to a pipe or a socket), pass a false second +argument: + + my $fh = IO::File->new( '| cat > somefile.zip', 'w' ); + $zip->writeToFileHandle( $fh, 0 ); # fh is not seekable + +If this method fails during the write of a member, that +member and all following it will return false from +C. See writeCentralDirectory() for a way to +deal with this. +If you want, you can write data to the file handle before +passing it to writeToFileHandle(); this could be used (for +instance) for making self-extracting archives. However, this +only works reliably when writing to a real file (as opposed +to STDOUT or some other possible non-file). + +See examples/selfex.pl for how to write a self-extracting +archive. + +=item writeCentralDirectory( $fileHandle [, $offset ] ) + +=item writeCentralDirectory( { fileHandle => $fileHandle + [, offset => $offset ] } ) + +Writes the central directory structure to the given file +handle. + +Returns AZ_OK on success. If given an $offset, will +seek to that point before writing. This can be used for +recovery in cases where writeToFileHandle or writeToFileNamed +returns an IO error because of running out of space on the +destination file. + +You can truncate the zip by seeking backwards and then writing the +directory: + + my $fh = IO::File->new( 'someFile.zip', 'w' ); + my $retval = $zip->writeToFileHandle( $fh ); + if ( $retval == AZ_IO_ERROR ) { + my @unwritten = grep { not $_->wasWritten() } $zip->members(); + if (@unwritten) { + $zip->removeMember( $member ) foreach my $member ( @unwritten ); + $zip->writeCentralDirectory( $fh, + $unwritten[0]->writeLocalHeaderRelativeOffset()); + } + } + +=item overwriteAs( $newName ) + +=item overwriteAs( { filename => $newName } ) + +Write the zip to the specified file, as safely as possible. +This is done by first writing to a temp file, then renaming +the original if it exists, then renaming the temp file, then +deleting the renamed original if it exists. Returns AZ_OK if +successful. + +=item overwrite() + +Write back to the original zip file. See overwriteAs() above. +If the zip was not ever read from a file, this generates an +error. + +=item read( $fileName ) + +=item read( { filename => $fileName } ) + +Read zipfile headers from a zip file, appending new members. +Returns C or error code. + + my $zipFile = Archive::Zip->new(); + my $status = $zipFile->read( '/some/FileName.zip' ); + +=item readFromFileHandle( $fileHandle, $filename ) + +=item readFromFileHandle( { fileHandle => $fileHandle, filename => $filename } ) + +Read zipfile headers from an already-opened file handle, +appending new members. Does not close the file handle. +Returns C or error code. Note that this requires a +seekable file handle; reading from a stream is not yet +supported, but using in-memory data is. + + my $fh = IO::File->new( '/some/FileName.zip', 'r' ); + my $zip1 = Archive::Zip->new(); + my $status = $zip1->readFromFileHandle( $fh ); + my $zip2 = Archive::Zip->new(); + $status = $zip2->readFromFileHandle( $fh ); + +Read zip using in-memory data (recursable): + + open my $fh, "<", "archive.zip" or die $!; + my $zip_data = do { local $.; <$fh> }; + my $zip = Archive::Zip->new; + open my $dh, "+<", \$zip_data; + $zip->readFromFileHandle ($dh); + +=back + +=head2 Zip Archive Tree operations + +These used to be in Archive::Zip::Tree but got moved into +Archive::Zip. They enable operation on an entire tree of members or +files. +A usage example: + + use Archive::Zip; + my $zip = Archive::Zip->new(); + + # add all readable files and directories below . as xyz/* + $zip->addTree( '.', 'xyz' ); + + # add all readable plain files below /abc as def/* + $zip->addTree( '/abc', 'def', sub { -f && -r } ); + + # add all .c files below /tmp as stuff/* + $zip->addTreeMatching( '/tmp', 'stuff', '\.c$' ); + + # add all .o files below /tmp as stuff/* if they aren't writable + $zip->addTreeMatching( '/tmp', 'stuff', '\.o$', sub { ! -w } ); + + # add all .so files below /tmp that are smaller than 200 bytes as stuff/* + $zip->addTreeMatching( '/tmp', 'stuff', '\.o$', sub { -s < 200 } ); + + # and write them into a file + $zip->writeToFileNamed('xxx.zip'); + + # now extract the same files into /tmpx + $zip->extractTree( 'stuff', '/tmpx' ); + +=over 4 + +=item $zip->addTree( $root, $dest [, $pred, $compressionLevel ] ) -- Add tree of files to a zip + +=item $zip->addTree( { root => $root, zipName => $dest [, select => $pred, + compressionLevel => $compressionLevel ] ) + +C<$root> is the root of the tree of files and directories to be +added. It is a valid directory name on your system. C<$dest> is +the name for the root in the zip file (undef or blank means +to use relative pathnames). It is a valid ZIP directory name +(that is, it uses forward slashes (/) for separating +directory components). C<$pred> is an optional subroutine +reference to select files: it is passed the name of the +prospective file or directory using C<$_>, and if it returns +true, the file or directory will be included. The default is +to add all readable files and directories. For instance, +using + + my $pred = sub { /\.txt/ }; + $zip->addTree( '.', '', $pred ); + +will add all the .txt files in and below the current +directory, using relative names, and making the names +identical in the zipfile: + + original name zip member name + ./xyz xyz + ./a/ a/ + ./a/b a/b + +To translate absolute to relative pathnames, just pass them +in: $zip->addTree( '/c/d', 'a' ); + + original name zip member name + /c/d/xyz a/xyz + /c/d/a/ a/a/ + /c/d/a/b a/a/b + +Returns AZ_OK on success. Note that this will not follow +symbolic links to directories. Note also that this does not +check for the validity of filenames. + +Note that you generally I want to make zip archive member names +absolute. + +=item $zip->addTreeMatching( $root, $dest, $pattern [, $pred, $compressionLevel ] ) + +=item $zip->addTreeMatching( { root => $root, zipName => $dest, pattern => + $pattern [, select => $pred, compressionLevel => $compressionLevel ] } ) + +$root is the root of the tree of files and directories to be +added $dest is the name for the root in the zip file (undef +means to use relative pathnames) $pattern is a (non-anchored) +regular expression for filenames to match $pred is an +optional subroutine reference to select files: it is passed +the name of the prospective file or directory in C<$_>, and +if it returns true, the file or directory will be included. +The default is to add all readable files and directories. To +add all files in and below the current directory whose names +end in C<.pl>, and make them extract into a subdirectory +named C, do this: + + $zip->addTreeMatching( '.', 'xyz', '\.pl$' ) + +To add all I files in and below the directory named +C whose names end in C<.pl>, and make them extract into +a subdirectory named C, do this: + + $zip->addTreeMatching( '/abc', 'xyz', '\.pl$', sub { -w } ) + +Returns AZ_OK on success. Note that this will not follow +symbolic links to directories. + +=item $zip->updateTree( $root [, $dest , $pred , $mirror, $compressionLevel ] ); + +=item $zip->updateTree( { root => $root [, zipName => $dest, select => $pred, + mirror => $mirror, compressionLevel => $compressionLevel ] } ); + +Update a zip file from a directory tree. + +C takes the same arguments as C, but first +checks to see whether the file or directory already exists in the zip +file, and whether it has been changed. + +If the fourth argument C<$mirror> is true, then delete all my members +if corresponding files were not found. + +Returns an error code or AZ_OK if all is well. + +=item $zip->extractTree( [ $root, $dest, $volume } ] ) + +=item $zip->extractTree( [ { root => $root, zipName => $dest, volume => $volume } ] ) + +If you don't give any arguments at all, will extract all the +files in the zip with their original names. + +If you supply one argument for C<$root>, C will extract +all the members whose names start with C<$root> into the current +directory, stripping off C<$root> first. +C<$root> is in Zip (Unix) format. +For instance, + + $zip->extractTree( 'a' ); + +when applied to a zip containing the files: +a/x a/b/c ax/d/e d/e will extract: + +a/x as ./x + +a/b/c as ./b/c + +If you give two arguments, C extracts all the members +whose names start with C<$root>. It will translate C<$root> into +C<$dest> to construct the destination file name. +C<$root> and C<$dest> are in Zip (Unix) format. +For instance, + + $zip->extractTree( 'a', 'd/e' ); + +when applied to a zip containing the files: +a/x a/b/c ax/d/e d/e will extract: + +a/x to d/e/x + +a/b/c to d/e/b/c and ignore ax/d/e and d/e + +If you give three arguments, C extracts all the members +whose names start with C<$root>. It will translate C<$root> into +C<$dest> to construct the destination file name, and then it will +convert to local file system format, using C<$volume> as the name of +the destination volume. + +C<$root> and C<$dest> are in Zip (Unix) format. + +C<$volume> is in local file system format. + +For instance, under Windows, + + $zip->extractTree( 'a', 'd/e', 'f:' ); + +when applied to a zip containing the files: +a/x a/b/c ax/d/e d/e will extract: + +a/x to f:d/e/x + +a/b/c to f:d/e/b/c and ignore ax/d/e and d/e + +If you want absolute paths (the prior example used paths relative to +the current directory on the destination volume, you can specify these +in C<$dest>: + + $zip->extractTree( 'a', '/d/e', 'f:' ); + +when applied to a zip containing the files: +a/x a/b/c ax/d/e d/e will extract: + +a/x to f:\d\e\x + +a/b/c to f:\d\e\b\c and ignore ax/d/e and d/e + +Returns an error code or AZ_OK if everything worked OK. + +=back + +=head1 Archive::Zip Global Variables + +=over 4 + +=item $Archive::Zip::UNICODE + +This variable governs how Unicode file and directory names are added +to or extracted from an archive. If set, file and directory names are considered +to be UTF-8 encoded. This is I. Please report problems. + + { + local $Archive::Zip::UNICODE = 1; + $zip->addFile('Déjà vu.txt'); + } + +=back + +=head1 MEMBER OPERATIONS + +=head2 Member Class Methods + +Several constructors allow you to construct members without adding +them to a zip archive. These work the same as the addFile(), +addDirectory(), and addString() zip instance methods described above, +but they don't add the new members to a zip. + +=over 4 + +=item Archive::Zip::Member->newFromString( $stringOrStringRef [, $fileName ] ) + +=item Archive::Zip::Member->newFromString( { string => $stringOrStringRef + [, zipName => $fileName ] ) + +Construct a new member from the given string. Returns undef +on error. + + my $member = Archive::Zip::Member->newFromString( 'This is a test', + +=item newFromFile( $fileName [, $zipName ] ) + +=item newFromFile( { filename => $fileName [, zipName => $zipName ] } ) + +Construct a new member from the given file. Returns undef on +error. + + my $member = Archive::Zip::Member->newFromFile( 'xyz.txt' ); + +=item newDirectoryNamed( $directoryName [, $zipname ] ) + +=item newDirectoryNamed( { directoryName => $directoryName + [, zipName => $zipname ] } ) + +Construct a new member from the given directory. +C<$directoryName> must be a valid name on your file system; it does not +have to exist. + +If given, C<$zipname> will be the name of the zip member; it must be a +valid Zip (Unix) name. If not given, it will be converted from +C<$directoryName>. + +Returns undef on error. + + my $member = Archive::Zip::Member->newDirectoryNamed( 'CVS/' ); + +=back + +=head2 Member Simple accessors + +These methods get (and/or set) member attribute values. + +=over 4 + +=item versionMadeBy() + +Gets the field from the member header. + +=item fileAttributeFormat( [ $format ] ) + +=item fileAttributeFormat( [ { format => $format ] } ) + +Gets or sets the field from the member header. These are +C values. + +=item versionNeededToExtract() + +Gets the field from the member header. + +=item bitFlag() + +Gets the general purpose bit field from the member header. +This is where the C bits live. + +=item compressionMethod() + +Returns the member compression method. This is the method +that is currently being used to compress the member data. +This will be COMPRESSION_STORED for added string or file +members, or any of the C values for members +from a zip file. However, this module can only handle members +whose data is in COMPRESSION_STORED or COMPRESSION_DEFLATED +format. + +=item desiredCompressionMethod( [ $method ] ) + +=item desiredCompressionMethod( [ { compressionMethod => $method } ] ) + +Get or set the member's C. This is +the compression method that will be used when the member is +written. Returns prior desiredCompressionMethod. Only +COMPRESSION_DEFLATED or COMPRESSION_STORED are valid +arguments. Changing to COMPRESSION_STORED will change the +member desiredCompressionLevel to 0; changing to +COMPRESSION_DEFLATED will change the member +desiredCompressionLevel to COMPRESSION_LEVEL_DEFAULT. + +=item desiredCompressionLevel( [ $level ] ) + +=item desiredCompressionLevel( [ { compressionLevel => $level } ] ) + +Get or set the member's desiredCompressionLevel This is the +method that will be used to write. Returns prior +desiredCompressionLevel. Valid arguments are 0 through 9, +COMPRESSION_LEVEL_NONE, COMPRESSION_LEVEL_DEFAULT, +COMPRESSION_LEVEL_BEST_COMPRESSION, and +COMPRESSION_LEVEL_FASTEST. 0 or COMPRESSION_LEVEL_NONE will +change the desiredCompressionMethod to COMPRESSION_STORED. +All other arguments will change the desiredCompressionMethod +to COMPRESSION_DEFLATED. + +=item externalFileName() + +Return the member's external file name, if any, or undef. + +=item fileName() + +Get or set the member's internal filename. Returns the +(possibly new) filename. Names will have backslashes +converted to forward slashes, and will have multiple +consecutive slashes converted to single ones. + +=item lastModFileDateTime() + +Return the member's last modification date/time stamp in +MS-DOS format. + +=item lastModTime() + +Return the member's last modification date/time stamp, +converted to unix localtime format. + + print "Mod Time: " . scalar( localtime( $member->lastModTime() ) ); + +=item setLastModFileDateTimeFromUnix() + +Set the member's lastModFileDateTime from the given unix +time. + + $member->setLastModFileDateTimeFromUnix( time() ); + +=item internalFileAttributes() + +Return the internal file attributes field from the zip +header. This is only set for members read from a zip file. + +=item externalFileAttributes() + +Return member attributes as read from the ZIP file. Note that +these are NOT UNIX! + +=item unixFileAttributes( [ $newAttributes ] ) + +=item unixFileAttributes( [ { attributes => $newAttributes } ] ) + +Get or set the member's file attributes using UNIX file +attributes. Returns old attributes. + + my $oldAttribs = $member->unixFileAttributes( 0666 ); + +Note that the return value has more than just the file +permissions, so you will have to mask off the lowest bits for +comparisons. + +=item localExtraField( [ $newField ] ) + +=item localExtraField( [ { field => $newField } ] ) + +Gets or sets the extra field that was read from the local +header. This is not set for a member from a zip file until +after the member has been written out. The extra field must +be in the proper format. + +=item cdExtraField( [ $newField ] ) + +=item cdExtraField( [ { field => $newField } ] ) + +Gets or sets the extra field that was read from the central +directory header. The extra field must be in the proper +format. + +=item extraFields() + +Return both local and CD extra fields, concatenated. + +=item fileComment( [ $newComment ] ) + +=item fileComment( [ { comment => $newComment } ] ) + +Get or set the member's file comment. + +=item hasDataDescriptor() + +Get or set the data descriptor flag. If this is set, the +local header will not necessarily have the correct data +sizes. Instead, a small structure will be stored at the end +of the member data with these values. This should be +transparent in normal operation. + +=item crc32() + +Return the CRC-32 value for this member. This will not be set +for members that were constructed from strings or external +files until after the member has been written. + +=item crc32String() + +Return the CRC-32 value for this member as an 8 character +printable hex string. This will not be set for members that +were constructed from strings or external files until after +the member has been written. + +=item compressedSize() + +Return the compressed size for this member. This will not be +set for members that were constructed from strings or +external files until after the member has been written. + +=item uncompressedSize() + +Return the uncompressed size for this member. + +=item password( [ $password ] ) + +Returns the password for this member to be used on decryption. +If $password is given, it will set the password for the decryption. + +=item isEncrypted() + +Return true if this member is encrypted. The Archive::Zip +module does not currently support creation of encrypted +members. Decryption works more or less like this: + + my $zip = Archive::Zip->new; + $zip->read ("encrypted.zip"); + for my $m (map { $zip->memberNamed ($_) } $zip->memberNames) { + $m->password ("secret"); + $m->contents; # is "" when password was wrong + +That shows that the password has to be set per member, and not per +archive. This might change in the future. + +=item isTextFile( [ $flag ] ) + +=item isTextFile( [ { flag => $flag } ] ) + +Returns true if I am a text file. Also can set the status if +given an argument (then returns old state). Note that this +module does not currently do anything with this flag upon +extraction or storage. That is, bytes are stored in native +format whether or not they came from a text file. + +=item isBinaryFile() + +Returns true if I am a binary file. Also can set the status +if given an argument (then returns old state). Note that this +module does not currently do anything with this flag upon +extraction or storage. That is, bytes are stored in native +format whether or not they came from a text file. + +=item extractToFileNamed( $fileName ) + +=item extractToFileNamed( { name => $fileName } ) + +Extract me to a file with the given name. The file will be +created with default modes. Directories will be created as +needed. +The C<$fileName> argument should be a valid file name on your +file system. +Returns AZ_OK on success. + +=item isDirectory() + +Returns true if I am a directory. + +=item writeLocalHeaderRelativeOffset() + +Returns the file offset in bytes the last time I was written. + +=item wasWritten() + +Returns true if I was successfully written. Reset at the +beginning of a write attempt. + +=back + +=head2 Low-level member data reading + +It is possible to use lower-level routines to access member data +streams, rather than the extract* methods and contents(). For +instance, here is how to print the uncompressed contents of a member +in chunks using these methods: + + my ( $member, $status, $bufferRef ); + $member = $zip->memberNamed( 'xyz.txt' ); + $member->desiredCompressionMethod( COMPRESSION_STORED ); + $status = $member->rewindData(); + die "error $status" unless $status == AZ_OK; + while ( ! $member->readIsDone() ) + { + ( $bufferRef, $status ) = $member->readChunk(); + die "error $status" + if $status != AZ_OK && $status != AZ_STREAM_END; + # do something with $bufferRef: + print $$bufferRef; + } + $member->endRead(); + +=over 4 + +=item readChunk( [ $chunkSize ] ) + +=item readChunk( [ { chunkSize => $chunkSize } ] ) + +This reads the next chunk of given size from the member's +data stream and compresses or uncompresses it as necessary, +returning a reference to the bytes read and a status. If size +argument is not given, defaults to global set by +Archive::Zip::setChunkSize. Status is AZ_OK on success until +the last chunk, where it returns AZ_STREAM_END. Returns C<( +\$bytes, $status)>. + + my ( $outRef, $status ) = $self->readChunk(); + print $$outRef if $status != AZ_OK && $status != AZ_STREAM_END; + +=item rewindData() + +Rewind data and set up for reading data streams or writing +zip files. Can take options for C or +C, but this is not likely to be necessary. +Subclass overrides should call this method. Returns C +on success. + +=item endRead() + +Reset the read variables and free the inflater or deflater. +Must be called to close files, etc. Returns AZ_OK on success. + +=item readIsDone() + +Return true if the read has run out of data or encountered an error. + +=item contents() + +Return the entire uncompressed member data or undef in scalar +context. When called in array context, returns C<( $string, +$status )>; status will be AZ_OK on success: + + my $string = $member->contents(); + # or + my ( $string, $status ) = $member->contents(); + die "error $status" unless $status == AZ_OK; + +Can also be used to set the contents of a member (this may +change the class of the member): + + $member->contents( "this is my new contents" ); + +=item extractToFileHandle( $fh ) + +=item extractToFileHandle( { fileHandle => $fh } ) + +Extract (and uncompress, if necessary) the member's contents +to the given file handle. Return AZ_OK on success. + +=back + +=head1 Archive::Zip::FileMember methods + +The Archive::Zip::FileMember class extends Archive::Zip::Member. It is the +base class for both ZipFileMember and NewFileMember classes. This class adds +an C and an C member to keep track of the external +file. + +=over 4 + +=item externalFileName() + +Return the member's external filename. + +=item fh() + +Return the member's read file handle. Automatically opens file if +necessary. + +=back + +=head1 Archive::Zip::ZipFileMember methods + +The Archive::Zip::ZipFileMember class represents members that have been read +from external zip files. + +=over 4 + +=item diskNumberStart() + +Returns the disk number that the member's local header resides in. +Should be 0. + +=item localHeaderRelativeOffset() + +Returns the offset into the zip file where the member's local header +is. + +=item dataOffset() + +Returns the offset from the beginning of the zip file to the member's +data. + +=back + +=head1 REQUIRED MODULES + +L requires several other modules: + +L + +L + +L + +L + +L + +L + +L + +L + +L + +L + +L + +=head1 BUGS AND CAVEATS + +=head2 When not to use Archive::Zip + +If you are just going to be extracting zips (and/or other archives) you +are recommended to look at using L instead, as it is much +easier to use and factors out archive-specific functionality. + +=head2 Try to avoid IO::Scalar + +One of the most common ways to use Archive::Zip is to generate Zip files +in-memory. Most people use L for this purpose. + +Unfortunately, as of 1.11 this module no longer works with L +as it incorrectly implements seeking. + +Anybody using L should consider porting to L, +which is smaller, lighter, and is implemented to be perfectly compatible +with regular seekable filehandles. + +Support for L most likely will B be restored in the +future, as L itself cannot change the way it is implemented +due to back-compatibility issues. + +=head2 Wrong password for encrypted members + +When an encrypted member is read using the wrong password, you currently +have to re-read the entire archive to try again with the correct password. + +=head1 TO DO + +* auto-choosing storing vs compression + +* extra field hooks (see notes.txt) + +* check for duplicates on addition/renaming? + +* Text file extraction (line end translation) + +* Reading zip files from non-seekable inputs + (Perhaps by proxying through IO::String?) + +* separate unused constants into separate module + +* cookbook style docs + +* Handle tainted paths correctly + +* Work on better compatibility with other IO:: modules + +* Support encryption + +* More user-friendly decryption + +=head1 SUPPORT + +Bugs should be reported via the CPAN bug tracker + +L + +For other issues contact the maintainer + +=head1 AUTHOR + +Currently maintained by Fred Moyer + +Previously maintained by Adam Kennedy + +Previously maintained by Steve Peters Esteve@fisharerojo.orgE. + +File attributes code by Maurice Aubrey Emaurice@lovelyfilth.comE. + +Originally by Ned Konz Enedkonz@cpan.orgE. + +=head1 COPYRIGHT + +Some parts copyright 2006 - 2012 Adam Kennedy. + +Some parts copyright 2005 Steve Peters. + +Original work copyright 2000 - 2004 Ned Konz. + +This program is free software; you can redistribute it and/or modify +it under the same terms as Perl itself. + +=head1 SEE ALSO + +Look at L which is a wrapper that allows one to +read Zip archive members as if they were files. + +L, L, L + +=cut diff --git a/slic3r/linux/local-lib/lib/perl5/Archive/Zip/Archive.pm b/slic3r/linux/local-lib/lib/perl5/Archive/Zip/Archive.pm new file mode 100644 index 00000000..48f0d1a4 --- /dev/null +++ b/slic3r/linux/local-lib/lib/perl5/Archive/Zip/Archive.pm @@ -0,0 +1,1019 @@ +package Archive::Zip::Archive; + +# Represents a generic ZIP archive + +use strict; +use File::Path; +use File::Find (); +use File::Spec (); +use File::Copy (); +use File::Basename; +use Cwd; +use Encode qw(encode_utf8 decode_utf8); + +use vars qw( $VERSION @ISA ); + +BEGIN { + $VERSION = '1.60'; + @ISA = qw( Archive::Zip ); +} + +use Archive::Zip qw( + :CONSTANTS + :ERROR_CODES + :PKZIP_CONSTANTS + :UTILITY_METHODS +); + +our $UNICODE; + +# Note that this returns undef on read errors, else new zip object. + +sub new { + my $class = shift; + my $self = bless( + { + 'diskNumber' => 0, + 'diskNumberWithStartOfCentralDirectory' => 0, + 'numberOfCentralDirectoriesOnThisDisk' => + 0, # should be # of members + 'numberOfCentralDirectories' => 0, # should be # of members + 'centralDirectorySize' => 0, # must re-compute on write + 'centralDirectoryOffsetWRTStartingDiskNumber' => + 0, # must re-compute + 'writeEOCDOffset' => 0, + 'writeCentralDirectoryOffset' => 0, + 'zipfileComment' => '', + 'eocdOffset' => 0, + 'fileName' => '' + }, + $class + ); + $self->{'members'} = []; + my $fileName = (ref($_[0]) eq 'HASH') ? shift->{filename} : shift; + if ($fileName) { + my $status = $self->read($fileName); + return $status == AZ_OK ? $self : undef; + } + return $self; +} + +sub storeSymbolicLink { + my $self = shift; + $self->{'storeSymbolicLink'} = shift; +} + +sub members { + @{shift->{'members'}}; +} + +sub numberOfMembers { + scalar(shift->members()); +} + +sub memberNames { + my $self = shift; + return map { $_->fileName() } $self->members(); +} + +# return ref to member with given name or undef +sub memberNamed { + my $self = shift; + my $fileName = (ref($_[0]) eq 'HASH') ? shift->{zipName} : shift; + foreach my $member ($self->members()) { + return $member if $member->fileName() eq $fileName; + } + return undef; +} + +sub membersMatching { + my $self = shift; + my $pattern = (ref($_[0]) eq 'HASH') ? shift->{regex} : shift; + return grep { $_->fileName() =~ /$pattern/ } $self->members(); +} + +sub diskNumber { + shift->{'diskNumber'}; +} + +sub diskNumberWithStartOfCentralDirectory { + shift->{'diskNumberWithStartOfCentralDirectory'}; +} + +sub numberOfCentralDirectoriesOnThisDisk { + shift->{'numberOfCentralDirectoriesOnThisDisk'}; +} + +sub numberOfCentralDirectories { + shift->{'numberOfCentralDirectories'}; +} + +sub centralDirectorySize { + shift->{'centralDirectorySize'}; +} + +sub centralDirectoryOffsetWRTStartingDiskNumber { + shift->{'centralDirectoryOffsetWRTStartingDiskNumber'}; +} + +sub zipfileComment { + my $self = shift; + my $comment = $self->{'zipfileComment'}; + if (@_) { + my $new_comment = (ref($_[0]) eq 'HASH') ? shift->{comment} : shift; + $self->{'zipfileComment'} = pack('C0a*', $new_comment); # avoid Unicode + } + return $comment; +} + +sub eocdOffset { + shift->{'eocdOffset'}; +} + +# Return the name of the file last read. +sub fileName { + shift->{'fileName'}; +} + +sub removeMember { + my $self = shift; + my $member = (ref($_[0]) eq 'HASH') ? shift->{memberOrZipName} : shift; + $member = $self->memberNamed($member) unless ref($member); + return undef unless $member; + my @newMembers = grep { $_ != $member } $self->members(); + $self->{'members'} = \@newMembers; + return $member; +} + +sub replaceMember { + my $self = shift; + + my ($oldMember, $newMember); + if (ref($_[0]) eq 'HASH') { + $oldMember = $_[0]->{memberOrZipName}; + $newMember = $_[0]->{newMember}; + } else { + ($oldMember, $newMember) = @_; + } + + $oldMember = $self->memberNamed($oldMember) unless ref($oldMember); + return undef unless $oldMember; + return undef unless $newMember; + my @newMembers = + map { ($_ == $oldMember) ? $newMember : $_ } $self->members(); + $self->{'members'} = \@newMembers; + return $oldMember; +} + +sub extractMember { + my $self = shift; + + my ($member, $name); + if (ref($_[0]) eq 'HASH') { + $member = $_[0]->{memberOrZipName}; + $name = $_[0]->{name}; + } else { + ($member, $name) = @_; + } + + $member = $self->memberNamed($member) unless ref($member); + return _error('member not found') unless $member; + my $originalSize = $member->compressedSize(); + my ($volumeName, $dirName, $fileName); + if (defined($name)) { + ($volumeName, $dirName, $fileName) = File::Spec->splitpath($name); + $dirName = File::Spec->catpath($volumeName, $dirName, ''); + } else { + $name = $member->fileName(); + ($dirName = $name) =~ s{[^/]*$}{}; + $dirName = Archive::Zip::_asLocalName($dirName); + $name = Archive::Zip::_asLocalName($name); + } + if ($dirName && !-d $dirName) { + mkpath($dirName); + return _ioError("can't create dir $dirName") if (!-d $dirName); + } + my $rc = $member->extractToFileNamed($name, @_); + + # TODO refactor this fix into extractToFileNamed() + $member->{'compressedSize'} = $originalSize; + return $rc; +} + +sub extractMemberWithoutPaths { + my $self = shift; + + my ($member, $name); + if (ref($_[0]) eq 'HASH') { + $member = $_[0]->{memberOrZipName}; + $name = $_[0]->{name}; + } else { + ($member, $name) = @_; + } + + $member = $self->memberNamed($member) unless ref($member); + return _error('member not found') unless $member; + my $originalSize = $member->compressedSize(); + return AZ_OK if $member->isDirectory(); + unless ($name) { + $name = $member->fileName(); + $name =~ s{.*/}{}; # strip off directories, if any + $name = Archive::Zip::_asLocalName($name); + } + my $rc = $member->extractToFileNamed($name, @_); + $member->{'compressedSize'} = $originalSize; + return $rc; +} + +sub addMember { + my $self = shift; + my $newMember = (ref($_[0]) eq 'HASH') ? shift->{member} : shift; + push(@{$self->{'members'}}, $newMember) if $newMember; + if($newMember && ($newMember->{bitFlag} & 0x800) + && !utf8::is_utf8($newMember->{fileName})){ + $newMember->{fileName} = Encode::decode_utf8( $newMember->{fileName} ); + } + return $newMember; +} + +sub addFile { + my $self = shift; + + my ($fileName, $newName, $compressionLevel); + if (ref($_[0]) eq 'HASH') { + $fileName = $_[0]->{filename}; + $newName = $_[0]->{zipName}; + $compressionLevel = $_[0]->{compressionLevel}; + } else { + ($fileName, $newName, $compressionLevel) = @_; + } + + if ($^O eq 'MSWin32' && $Archive::Zip::UNICODE) { + $fileName = Win32::GetANSIPathName($fileName); + } + + my $newMember = Archive::Zip::Member->newFromFile($fileName, $newName); + $newMember->desiredCompressionLevel($compressionLevel); + if ($self->{'storeSymbolicLink'} && -l $fileName) { + my $newMember = + Archive::Zip::Member->newFromString(readlink $fileName, $newName); + + # For symbolic links, External File Attribute is set to 0xA1FF0000 by Info-ZIP + $newMember->{'externalFileAttributes'} = 0xA1FF0000; + $self->addMember($newMember); + } else { + $self->addMember($newMember); + } + + return $newMember; +} + +sub addString { + my $self = shift; + + my ($stringOrStringRef, $name, $compressionLevel); + if (ref($_[0]) eq 'HASH') { + $stringOrStringRef = $_[0]->{string}; + $name = $_[0]->{zipName}; + $compressionLevel = $_[0]->{compressionLevel}; + } else { + ($stringOrStringRef, $name, $compressionLevel) = @_; + } + + my $newMember = + Archive::Zip::Member->newFromString($stringOrStringRef, $name); + $newMember->desiredCompressionLevel($compressionLevel); + return $self->addMember($newMember); +} + +sub addDirectory { + my $self = shift; + + my ($name, $newName); + if (ref($_[0]) eq 'HASH') { + $name = $_[0]->{directoryName}; + $newName = $_[0]->{zipName}; + } else { + ($name, $newName) = @_; + } + + if ($^O eq 'MSWin32' && $Archive::Zip::UNICODE) { + $name = Win32::GetANSIPathName($name); + } + + my $newMember = Archive::Zip::Member->newDirectoryNamed($name, $newName); + if ($self->{'storeSymbolicLink'} && -l $name) { + my $link = readlink $name; + ($newName =~ s{/$}{}) if $newName; # Strip trailing / + my $newMember = Archive::Zip::Member->newFromString($link, $newName); + + # For symbolic links, External File Attribute is set to 0xA1FF0000 by Info-ZIP + $newMember->{'externalFileAttributes'} = 0xA1FF0000; + $self->addMember($newMember); + } else { + $self->addMember($newMember); + } + + return $newMember; +} + +# add either a file or a directory. + +sub addFileOrDirectory { + my $self = shift; + + my ($name, $newName, $compressionLevel); + if (ref($_[0]) eq 'HASH') { + $name = $_[0]->{name}; + $newName = $_[0]->{zipName}; + $compressionLevel = $_[0]->{compressionLevel}; + } else { + ($name, $newName, $compressionLevel) = @_; + } + + if ($^O eq 'MSWin32' && $Archive::Zip::UNICODE) { + $name = Win32::GetANSIPathName($name); + } + + $name =~ s{/$}{}; + if ($newName) { + $newName =~ s{/$}{}; + } else { + $newName = $name; + } + if (-f $name) { + return $self->addFile($name, $newName, $compressionLevel); + } elsif (-d $name) { + return $self->addDirectory($name, $newName); + } else { + return _error("$name is neither a file nor a directory"); + } +} + +sub contents { + my $self = shift; + + my ($member, $newContents); + if (ref($_[0]) eq 'HASH') { + $member = $_[0]->{memberOrZipName}; + $newContents = $_[0]->{contents}; + } else { + ($member, $newContents) = @_; + } + + return _error('No member name given') unless $member; + $member = $self->memberNamed($member) unless ref($member); + return undef unless $member; + return $member->contents($newContents); +} + +sub writeToFileNamed { + my $self = shift; + my $fileName = + (ref($_[0]) eq 'HASH') ? shift->{filename} : shift; # local FS format + foreach my $member ($self->members()) { + if ($member->_usesFileNamed($fileName)) { + return _error("$fileName is needed by member " + . $member->fileName() + . "; consider using overwrite() or overwriteAs() instead."); + } + } + my ($status, $fh) = _newFileHandle($fileName, 'w'); + return _ioError("Can't open $fileName for write") unless $status; + my $retval = $self->writeToFileHandle($fh, 1); + $fh->close(); + $fh = undef; + + return $retval; +} + +# It is possible to write data to the FH before calling this, +# perhaps to make a self-extracting archive. +sub writeToFileHandle { + my $self = shift; + + my ($fh, $fhIsSeekable); + if (ref($_[0]) eq 'HASH') { + $fh = $_[0]->{fileHandle}; + $fhIsSeekable = + exists($_[0]->{seek}) ? $_[0]->{seek} : _isSeekable($fh); + } else { + $fh = shift; + $fhIsSeekable = @_ ? shift : _isSeekable($fh); + } + + return _error('No filehandle given') unless $fh; + return _ioError('filehandle not open') unless $fh->opened(); + _binmode($fh); + + # Find out where the current position is. + my $offset = $fhIsSeekable ? $fh->tell() : 0; + $offset = 0 if $offset < 0; + + foreach my $member ($self->members()) { + my $retval = $member->_writeToFileHandle($fh, $fhIsSeekable, $offset); + $member->endRead(); + return $retval if $retval != AZ_OK; + $offset += $member->_localHeaderSize() + $member->_writeOffset(); + $offset += + $member->hasDataDescriptor() + ? DATA_DESCRIPTOR_LENGTH + SIGNATURE_LENGTH + : 0; + + # changed this so it reflects the last successful position + $self->{'writeCentralDirectoryOffset'} = $offset; + } + return $self->writeCentralDirectory($fh); +} + +# Write zip back to the original file, +# as safely as possible. +# Returns AZ_OK if successful. +sub overwrite { + my $self = shift; + return $self->overwriteAs($self->{'fileName'}); +} + +# Write zip to the specified file, +# as safely as possible. +# Returns AZ_OK if successful. +sub overwriteAs { + my $self = shift; + my $zipName = (ref($_[0]) eq 'HASH') ? $_[0]->{filename} : shift; + return _error("no filename in overwriteAs()") unless defined($zipName); + + my ($fh, $tempName) = Archive::Zip::tempFile(); + return _error("Can't open temp file", $!) unless $fh; + + (my $backupName = $zipName) =~ s{(\.[^.]*)?$}{.zbk}; + + my $status = $self->writeToFileHandle($fh); + $fh->close(); + $fh = undef; + + if ($status != AZ_OK) { + unlink($tempName); + _printError("Can't write to $tempName"); + return $status; + } + + my $err; + + # rename the zip + if (-f $zipName && !rename($zipName, $backupName)) { + $err = $!; + unlink($tempName); + return _error("Can't rename $zipName as $backupName", $err); + } + + # move the temp to the original name (possibly copying) + unless (File::Copy::move($tempName, $zipName) + || File::Copy::copy($tempName, $zipName)) { + $err = $!; + rename($backupName, $zipName); + unlink($tempName); + return _error("Can't move $tempName to $zipName", $err); + } + + # unlink the backup + if (-f $backupName && !unlink($backupName)) { + $err = $!; + return _error("Can't unlink $backupName", $err); + } + + return AZ_OK; +} + +# Used only during writing +sub _writeCentralDirectoryOffset { + shift->{'writeCentralDirectoryOffset'}; +} + +sub _writeEOCDOffset { + shift->{'writeEOCDOffset'}; +} + +# Expects to have _writeEOCDOffset() set +sub _writeEndOfCentralDirectory { + my ($self, $fh) = @_; + + $self->_print($fh, END_OF_CENTRAL_DIRECTORY_SIGNATURE_STRING) + or return _ioError('writing EOCD Signature'); + my $zipfileCommentLength = length($self->zipfileComment()); + + my $header = pack( + END_OF_CENTRAL_DIRECTORY_FORMAT, + 0, # {'diskNumber'}, + 0, # {'diskNumberWithStartOfCentralDirectory'}, + $self->numberOfMembers(), # {'numberOfCentralDirectoriesOnThisDisk'}, + $self->numberOfMembers(), # {'numberOfCentralDirectories'}, + $self->_writeEOCDOffset() - $self->_writeCentralDirectoryOffset(), + $self->_writeCentralDirectoryOffset(), + $zipfileCommentLength + ); + $self->_print($fh, $header) + or return _ioError('writing EOCD header'); + if ($zipfileCommentLength) { + $self->_print($fh, $self->zipfileComment()) + or return _ioError('writing zipfile comment'); + } + return AZ_OK; +} + +# $offset can be specified to truncate a zip file. +sub writeCentralDirectory { + my $self = shift; + + my ($fh, $offset); + if (ref($_[0]) eq 'HASH') { + $fh = $_[0]->{fileHandle}; + $offset = $_[0]->{offset}; + } else { + ($fh, $offset) = @_; + } + + if (defined($offset)) { + $self->{'writeCentralDirectoryOffset'} = $offset; + $fh->seek($offset, IO::Seekable::SEEK_SET) + or return _ioError('seeking to write central directory'); + } else { + $offset = $self->_writeCentralDirectoryOffset(); + } + + foreach my $member ($self->members()) { + my $status = $member->_writeCentralDirectoryFileHeader($fh); + return $status if $status != AZ_OK; + $offset += $member->_centralDirectoryHeaderSize(); + $self->{'writeEOCDOffset'} = $offset; + } + return $self->_writeEndOfCentralDirectory($fh); +} + +sub read { + my $self = shift; + my $fileName = (ref($_[0]) eq 'HASH') ? shift->{filename} : shift; + return _error('No filename given') unless $fileName; + my ($status, $fh) = _newFileHandle($fileName, 'r'); + return _ioError("opening $fileName for read") unless $status; + + $status = $self->readFromFileHandle($fh, $fileName); + return $status if $status != AZ_OK; + + $fh->close(); + $self->{'fileName'} = $fileName; + return AZ_OK; +} + +sub readFromFileHandle { + my $self = shift; + + my ($fh, $fileName); + if (ref($_[0]) eq 'HASH') { + $fh = $_[0]->{fileHandle}; + $fileName = $_[0]->{filename}; + } else { + ($fh, $fileName) = @_; + } + + $fileName = $fh unless defined($fileName); + return _error('No filehandle given') unless $fh; + return _ioError('filehandle not open') unless $fh->opened(); + + _binmode($fh); + $self->{'fileName'} = "$fh"; + + # TODO: how to support non-seekable zips? + return _error('file not seekable') + unless _isSeekable($fh); + + $fh->seek(0, 0); # rewind the file + + my $status = $self->_findEndOfCentralDirectory($fh); + return $status if $status != AZ_OK; + + my $eocdPosition = $fh->tell(); + + $status = $self->_readEndOfCentralDirectory($fh); + return $status if $status != AZ_OK; + + $fh->seek($eocdPosition - $self->centralDirectorySize(), + IO::Seekable::SEEK_SET) + or return _ioError("Can't seek $fileName"); + + # Try to detect garbage at beginning of archives + # This should be 0 + $self->{'eocdOffset'} = $eocdPosition - $self->centralDirectorySize() # here + - $self->centralDirectoryOffsetWRTStartingDiskNumber(); + + for (; ;) { + my $newMember = + Archive::Zip::Member->_newFromZipFile($fh, $fileName, + $self->eocdOffset()); + my $signature; + ($status, $signature) = _readSignature($fh, $fileName); + return $status if $status != AZ_OK; + last if $signature == END_OF_CENTRAL_DIRECTORY_SIGNATURE; + $status = $newMember->_readCentralDirectoryFileHeader(); + return $status if $status != AZ_OK; + $status = $newMember->endRead(); + return $status if $status != AZ_OK; + $newMember->_becomeDirectoryIfNecessary(); + + if(($newMember->{bitFlag} & 0x800) && !utf8::is_utf8($newMember->{fileName})){ + $newMember->{fileName} = Encode::decode_utf8($newMember->{fileName}); + } + + push(@{$self->{'members'}}, $newMember); + } + + return AZ_OK; +} + +# Read EOCD, starting from position before signature. +# Return AZ_OK on success. +sub _readEndOfCentralDirectory { + my $self = shift; + my $fh = shift; + + # Skip past signature + $fh->seek(SIGNATURE_LENGTH, IO::Seekable::SEEK_CUR) + or return _ioError("Can't seek past EOCD signature"); + + my $header = ''; + my $bytesRead = $fh->read($header, END_OF_CENTRAL_DIRECTORY_LENGTH); + if ($bytesRead != END_OF_CENTRAL_DIRECTORY_LENGTH) { + return _ioError("reading end of central directory"); + } + + my $zipfileCommentLength; + ( + $self->{'diskNumber'}, + $self->{'diskNumberWithStartOfCentralDirectory'}, + $self->{'numberOfCentralDirectoriesOnThisDisk'}, + $self->{'numberOfCentralDirectories'}, + $self->{'centralDirectorySize'}, + $self->{'centralDirectoryOffsetWRTStartingDiskNumber'}, + $zipfileCommentLength + ) = unpack(END_OF_CENTRAL_DIRECTORY_FORMAT, $header); + + if ($self->{'diskNumber'} == 0xFFFF || + $self->{'diskNumberWithStartOfCentralDirectory'} == 0xFFFF || + $self->{'numberOfCentralDirectoriesOnThisDisk'} == 0xFFFF || + $self->{'numberOfCentralDirectories'} == 0xFFFF || + $self->{'centralDirectorySize'} == 0xFFFFFFFF || + $self->{'centralDirectoryOffsetWRTStartingDiskNumber'} == 0xFFFFFFFF) { + return _formatError("zip64 not supported" . Dumper($self)); + } +use Data::Dumper; + if ($zipfileCommentLength) { + my $zipfileComment = ''; + $bytesRead = $fh->read($zipfileComment, $zipfileCommentLength); + if ($bytesRead != $zipfileCommentLength) { + return _ioError("reading zipfile comment"); + } + $self->{'zipfileComment'} = $zipfileComment; + } + + return AZ_OK; +} + +# Seek in my file to the end, then read backwards until we find the +# signature of the central directory record. Leave the file positioned right +# before the signature. Returns AZ_OK if success. +sub _findEndOfCentralDirectory { + my $self = shift; + my $fh = shift; + my $data = ''; + $fh->seek(0, IO::Seekable::SEEK_END) + or return _ioError("seeking to end"); + + my $fileLength = $fh->tell(); + if ($fileLength < END_OF_CENTRAL_DIRECTORY_LENGTH + 4) { + return _formatError("file is too short"); + } + + my $seekOffset = 0; + my $pos = -1; + for (; ;) { + $seekOffset += 512; + $seekOffset = $fileLength if ($seekOffset > $fileLength); + $fh->seek(-$seekOffset, IO::Seekable::SEEK_END) + or return _ioError("seek failed"); + my $bytesRead = $fh->read($data, $seekOffset); + if ($bytesRead != $seekOffset) { + return _ioError("read failed"); + } + $pos = rindex($data, END_OF_CENTRAL_DIRECTORY_SIGNATURE_STRING); + last + if ( $pos >= 0 + or $seekOffset == $fileLength + or $seekOffset >= $Archive::Zip::ChunkSize); + } + + if ($pos >= 0) { + $fh->seek($pos - $seekOffset, IO::Seekable::SEEK_CUR) + or return _ioError("seeking to EOCD"); + return AZ_OK; + } else { + return _formatError("can't find EOCD signature"); + } +} + +# Used to avoid taint problems when chdir'ing. +# Not intended to increase security in any way; just intended to shut up the -T +# complaints. If your Cwd module is giving you unreliable returns from cwd() +# you have bigger problems than this. +sub _untaintDir { + my $dir = shift; + $dir =~ m/\A(.+)\z/s; + return $1; +} + +sub addTree { + my $self = shift; + + my ($root, $dest, $pred, $compressionLevel); + if (ref($_[0]) eq 'HASH') { + $root = $_[0]->{root}; + $dest = $_[0]->{zipName}; + $pred = $_[0]->{select}; + $compressionLevel = $_[0]->{compressionLevel}; + } else { + ($root, $dest, $pred, $compressionLevel) = @_; + } + + return _error("root arg missing in call to addTree()") + unless defined($root); + $dest = '' unless defined($dest); + $pred = sub { -r } + unless defined($pred); + + my @files; + my $startDir = _untaintDir(cwd()); + + return _error('undef returned by _untaintDir on cwd ', cwd()) + unless $startDir; + + # This avoids chdir'ing in Find, in a way compatible with older + # versions of File::Find. + my $wanted = sub { + local $main::_ = $File::Find::name; + my $dir = _untaintDir($File::Find::dir); + chdir($startDir); + if ($^O eq 'MSWin32' && $Archive::Zip::UNICODE) { + push(@files, Win32::GetANSIPathName($File::Find::name)) if (&$pred); + $dir = Win32::GetANSIPathName($dir); + } else { + push(@files, $File::Find::name) if (&$pred); + } + chdir($dir); + }; + + if ($^O eq 'MSWin32' && $Archive::Zip::UNICODE) { + $root = Win32::GetANSIPathName($root); + } + File::Find::find($wanted, $root); + + my $rootZipName = _asZipDirName($root, 1); # with trailing slash + my $pattern = $rootZipName eq './' ? '^' : "^\Q$rootZipName\E"; + + $dest = _asZipDirName($dest, 1); # with trailing slash + + foreach my $fileName (@files) { + my $isDir; + if ($^O eq 'MSWin32' && $Archive::Zip::UNICODE) { + $isDir = -d Win32::GetANSIPathName($fileName); + } else { + $isDir = -d $fileName; + } + + # normalize, remove leading ./ + my $archiveName = _asZipDirName($fileName, $isDir); + if ($archiveName eq $rootZipName) { $archiveName = $dest } + else { $archiveName =~ s{$pattern}{$dest} } + next if $archiveName =~ m{^\.?/?$}; # skip current dir + my $member = + $isDir + ? $self->addDirectory($fileName, $archiveName) + : $self->addFile($fileName, $archiveName); + $member->desiredCompressionLevel($compressionLevel); + + return _error("add $fileName failed in addTree()") if !$member; + } + return AZ_OK; +} + +sub addTreeMatching { + my $self = shift; + + my ($root, $dest, $pattern, $pred, $compressionLevel); + if (ref($_[0]) eq 'HASH') { + $root = $_[0]->{root}; + $dest = $_[0]->{zipName}; + $pattern = $_[0]->{pattern}; + $pred = $_[0]->{select}; + $compressionLevel = $_[0]->{compressionLevel}; + } else { + ($root, $dest, $pattern, $pred, $compressionLevel) = @_; + } + + return _error("root arg missing in call to addTreeMatching()") + unless defined($root); + $dest = '' unless defined($dest); + return _error("pattern missing in call to addTreeMatching()") + unless defined($pattern); + my $matcher = + $pred ? sub { m{$pattern} && &$pred } : sub { m{$pattern} && -r }; + return $self->addTree($root, $dest, $matcher, $compressionLevel); +} + +# $zip->extractTree( $root, $dest [, $volume] ); +# +# $root and $dest are Unix-style. +# $volume is in local FS format. +# +sub extractTree { + my $self = shift; + + my ($root, $dest, $volume); + if (ref($_[0]) eq 'HASH') { + $root = $_[0]->{root}; + $dest = $_[0]->{zipName}; + $volume = $_[0]->{volume}; + } else { + ($root, $dest, $volume) = @_; + } + + $root = '' unless defined($root); + if (defined $dest) { + if ($dest !~ m{/$}) { + $dest .= '/'; + } + } else { + $dest = './'; + } + + my $pattern = "^\Q$root"; + my @members = $self->membersMatching($pattern); + + foreach my $member (@members) { + my $fileName = $member->fileName(); # in Unix format + $fileName =~ s{$pattern}{$dest}; # in Unix format + # convert to platform format: + $fileName = Archive::Zip::_asLocalName($fileName, $volume); + my $status = $member->extractToFileNamed($fileName); + return $status if $status != AZ_OK; + } + return AZ_OK; +} + +# $zip->updateMember( $memberOrName, $fileName ); +# Returns (possibly updated) member, if any; undef on errors. + +sub updateMember { + my $self = shift; + + my ($oldMember, $fileName); + if (ref($_[0]) eq 'HASH') { + $oldMember = $_[0]->{memberOrZipName}; + $fileName = $_[0]->{name}; + } else { + ($oldMember, $fileName) = @_; + } + + if (!defined($fileName)) { + _error("updateMember(): missing fileName argument"); + return undef; + } + + my @newStat = stat($fileName); + if (!@newStat) { + _ioError("Can't stat $fileName"); + return undef; + } + + my $isDir = -d _; + + my $memberName; + + if (ref($oldMember)) { + $memberName = $oldMember->fileName(); + } else { + $oldMember = $self->memberNamed($memberName = $oldMember) + || $self->memberNamed($memberName = + _asZipDirName($oldMember, $isDir)); + } + + unless (defined($oldMember) + && $oldMember->lastModTime() == $newStat[9] + && $oldMember->isDirectory() == $isDir + && ($isDir || ($oldMember->uncompressedSize() == $newStat[7]))) { + + # create the new member + my $newMember = + $isDir + ? Archive::Zip::Member->newDirectoryNamed($fileName, $memberName) + : Archive::Zip::Member->newFromFile($fileName, $memberName); + + unless (defined($newMember)) { + _error("creation of member $fileName failed in updateMember()"); + return undef; + } + + # replace old member or append new one + if (defined($oldMember)) { + $self->replaceMember($oldMember, $newMember); + } else { + $self->addMember($newMember); + } + + return $newMember; + } + + return $oldMember; +} + +# $zip->updateTree( $root, [ $dest, [ $pred [, $mirror]]] ); +# +# This takes the same arguments as addTree, but first checks to see +# whether the file or directory already exists in the zip file. +# +# If the fourth argument $mirror is true, then delete all my members +# if corresponding files were not found. + +sub updateTree { + my $self = shift; + + my ($root, $dest, $pred, $mirror, $compressionLevel); + if (ref($_[0]) eq 'HASH') { + $root = $_[0]->{root}; + $dest = $_[0]->{zipName}; + $pred = $_[0]->{select}; + $mirror = $_[0]->{mirror}; + $compressionLevel = $_[0]->{compressionLevel}; + } else { + ($root, $dest, $pred, $mirror, $compressionLevel) = @_; + } + + return _error("root arg missing in call to updateTree()") + unless defined($root); + $dest = '' unless defined($dest); + $pred = sub { -r } + unless defined($pred); + + $dest = _asZipDirName($dest, 1); + my $rootZipName = _asZipDirName($root, 1); # with trailing slash + my $pattern = $rootZipName eq './' ? '^' : "^\Q$rootZipName\E"; + + my @files; + my $startDir = _untaintDir(cwd()); + + return _error('undef returned by _untaintDir on cwd ', cwd()) + unless $startDir; + + # This avoids chdir'ing in Find, in a way compatible with older + # versions of File::Find. + my $wanted = sub { + local $main::_ = $File::Find::name; + my $dir = _untaintDir($File::Find::dir); + chdir($startDir); + push(@files, $File::Find::name) if (&$pred); + chdir($dir); + }; + + File::Find::find($wanted, $root); + + # Now @files has all the files that I could potentially be adding to + # the zip. Only add the ones that are necessary. + # For each file (updated or not), add its member name to @done. + my %done; + foreach my $fileName (@files) { + my @newStat = stat($fileName); + my $isDir = -d _; + + # normalize, remove leading ./ + my $memberName = _asZipDirName($fileName, $isDir); + if ($memberName eq $rootZipName) { $memberName = $dest } + else { $memberName =~ s{$pattern}{$dest} } + next if $memberName =~ m{^\.?/?$}; # skip current dir + + $done{$memberName} = 1; + my $changedMember = $self->updateMember($memberName, $fileName); + $changedMember->desiredCompressionLevel($compressionLevel); + return _error("updateTree failed to update $fileName") + unless ref($changedMember); + } + + # @done now has the archive names corresponding to all the found files. + # If we're mirroring, delete all those members that aren't in @done. + if ($mirror) { + foreach my $member ($self->members()) { + $self->removeMember($member) + unless $done{$member->fileName()}; + } + } + + return AZ_OK; +} + +1; diff --git a/slic3r/linux/local-lib/lib/perl5/Archive/Zip/BufferedFileHandle.pm b/slic3r/linux/local-lib/lib/perl5/Archive/Zip/BufferedFileHandle.pm new file mode 100644 index 00000000..eaa8c081 --- /dev/null +++ b/slic3r/linux/local-lib/lib/perl5/Archive/Zip/BufferedFileHandle.pm @@ -0,0 +1,131 @@ +package Archive::Zip::BufferedFileHandle; + +# File handle that uses a string internally and can seek +# This is given as a demo for getting a zip file written +# to a string. +# I probably should just use IO::Scalar instead. +# Ned Konz, March 2000 + +use strict; +use IO::File; +use Carp; + +use vars qw{$VERSION}; + +BEGIN { + $VERSION = '1.60'; + $VERSION = eval $VERSION; +} + +sub new { + my $class = shift || __PACKAGE__; + $class = ref($class) || $class; + my $self = bless( + { + content => '', + position => 0, + size => 0 + }, + $class + ); + return $self; +} + +# Utility method to read entire file +sub readFromFile { + my $self = shift; + my $fileName = shift; + my $fh = IO::File->new($fileName, "r"); + CORE::binmode($fh); + if (!$fh) { + Carp::carp("Can't open $fileName: $!\n"); + return undef; + } + local $/ = undef; + $self->{content} = <$fh>; + $self->{size} = length($self->{content}); + return $self; +} + +sub contents { + my $self = shift; + if (@_) { + $self->{content} = shift; + $self->{size} = length($self->{content}); + } + return $self->{content}; +} + +sub binmode { 1 } + +sub close { 1 } + +sub opened { 1 } + +sub eof { + my $self = shift; + return $self->{position} >= $self->{size}; +} + +sub seek { + my $self = shift; + my $pos = shift; + my $whence = shift; + + # SEEK_SET + if ($whence == 0) { $self->{position} = $pos; } + + # SEEK_CUR + elsif ($whence == 1) { $self->{position} += $pos; } + + # SEEK_END + elsif ($whence == 2) { $self->{position} = $self->{size} + $pos; } + else { return 0; } + + return 1; +} + +sub tell { return shift->{position}; } + +# Copy my data to given buffer +sub read { + my $self = shift; + my $buf = \($_[0]); + shift; + my $len = shift; + my $offset = shift || 0; + + $$buf = '' if not defined($$buf); + my $bytesRead = + ($self->{position} + $len > $self->{size}) + ? ($self->{size} - $self->{position}) + : $len; + substr($$buf, $offset, $bytesRead) = + substr($self->{content}, $self->{position}, $bytesRead); + $self->{position} += $bytesRead; + return $bytesRead; +} + +# Copy given buffer to me +sub write { + my $self = shift; + my $buf = \($_[0]); + shift; + my $len = shift; + my $offset = shift || 0; + + $$buf = '' if not defined($$buf); + my $bufLen = length($$buf); + my $bytesWritten = + ($offset + $len > $bufLen) + ? $bufLen - $offset + : $len; + substr($self->{content}, $self->{position}, $bytesWritten) = + substr($$buf, $offset, $bytesWritten); + $self->{size} = length($self->{content}); + return $bytesWritten; +} + +sub clearerr() { 1 } + +1; diff --git a/slic3r/linux/local-lib/lib/perl5/Archive/Zip/DirectoryMember.pm b/slic3r/linux/local-lib/lib/perl5/Archive/Zip/DirectoryMember.pm new file mode 100644 index 00000000..e77ae8cd --- /dev/null +++ b/slic3r/linux/local-lib/lib/perl5/Archive/Zip/DirectoryMember.pm @@ -0,0 +1,80 @@ +package Archive::Zip::DirectoryMember; + +use strict; +use File::Path; + +use vars qw( $VERSION @ISA ); + +BEGIN { + $VERSION = '1.60'; + @ISA = qw( Archive::Zip::Member ); +} + +use Archive::Zip qw( + :ERROR_CODES + :UTILITY_METHODS +); + +sub _newNamed { + my $class = shift; + my $fileName = shift; # FS name + my $newName = shift; # Zip name + $newName = _asZipDirName($fileName) unless $newName; + my $self = $class->new(@_); + $self->{'externalFileName'} = $fileName; + $self->fileName($newName); + + if (-e $fileName) { + + # -e does NOT do a full stat, so we need to do one now + if (-d _ ) { + my @stat = stat(_); + $self->unixFileAttributes($stat[2]); + my $mod_t = $stat[9]; + if ($^O eq 'MSWin32' and !$mod_t) { + $mod_t = time(); + } + $self->setLastModFileDateTimeFromUnix($mod_t); + + } else { # hmm.. trying to add a non-directory? + _error($fileName, ' exists but is not a directory'); + return undef; + } + } else { + $self->unixFileAttributes($self->DEFAULT_DIRECTORY_PERMISSIONS); + $self->setLastModFileDateTimeFromUnix(time()); + } + return $self; +} + +sub externalFileName { + shift->{'externalFileName'}; +} + +sub isDirectory { + return 1; +} + +sub extractToFileNamed { + my $self = shift; + my $name = shift; # local FS name + my $attribs = $self->unixFileAttributes() & 07777; + mkpath($name, 0, $attribs); # croaks on error + utime($self->lastModTime(), $self->lastModTime(), $name); + return AZ_OK; +} + +sub fileName { + my $self = shift; + my $newName = shift; + $newName =~ s{/?$}{/} if defined($newName); + return $self->SUPER::fileName($newName); +} + +# So people don't get too confused. This way it looks like the problem +# is in their code... +sub contents { + return wantarray ? (undef, AZ_OK) : undef; +} + +1; diff --git a/slic3r/linux/local-lib/lib/perl5/Archive/Zip/FAQ.pod b/slic3r/linux/local-lib/lib/perl5/Archive/Zip/FAQ.pod new file mode 100644 index 00000000..d03f883c --- /dev/null +++ b/slic3r/linux/local-lib/lib/perl5/Archive/Zip/FAQ.pod @@ -0,0 +1,344 @@ +=head1 NAME + +Archive::Zip::FAQ - Answers to a few frequently asked questions about Archive::Zip + +=head1 DESCRIPTION + +It seems that I keep answering the same questions over and over again. I +assume that this is because my documentation is deficient, rather than that +people don't read the documentation. + +So this FAQ is an attempt to cut down on the number of personal answers I have +to give. At least I can now say "You I read the FAQ, right?". + +The questions are not in any particular order. The answers assume the current +version of Archive::Zip; some of the answers depend on newly added/fixed +functionality. + +=head1 Install problems on RedHat 8 or 9 with Perl 5.8.0 + +B Archive::Zip won't install on my RedHat 9 system! It's broke! + +B This has become something of a FAQ. +Basically, RedHat broke some versions of Perl by setting LANG to UTF8. +They apparently have a fixed version out as an update. + +You might try running CPAN or creating your Makefile after exporting the LANG +environment variable as + +C + +L + +=head1 Why is my zip file so big? + +B My zip file is actually bigger than what I stored in it! Why? + +B Some things to make sure of: + +=over 4 + +=item Make sure that you are requesting COMPRESSION_DEFLATED if you are storing strings. + +$member->desiredCompressionMethod( COMPRESSION_DEFLATED ); + +=item Don't make lots of little files if you can help it. + +Since zip computes the compression tables for each member, small +members without much entropy won't compress well. Instead, if you've +got lots of repeated strings in your data, try to combine them into +one big member. + +=item Make sure that you are requesting COMPRESSION_STORED if you are storing things that are already compressed. + +If you're storing a .zip, .jpg, .mp3, or other compressed file in a zip, +then don't compress them again. They'll get bigger. + +=back + +=head1 Sample code? + +B Can you send me code to do (whatever)? + +B Have you looked in the C directory yet? It contains: + +=over 4 + +=item examples/calcSizes.pl -- How to find out how big a Zip file will be before writing it + +=item examples/copy.pl -- Copies one Zip file to another + +=item examples/extract.pl -- extract file(s) from a Zip + +=item examples/mailZip.pl -- make and mail a zip file + +=item examples/mfh.pl -- demo for use of MockFileHandle + +=item examples/readScalar.pl -- shows how to use IO::Scalar as the source of a Zip read + +=item examples/selfex.pl -- a brief example of a self-extracting Zip + +=item examples/unzipAll.pl -- uses Archive::Zip::Tree to unzip an entire Zip + +=item examples/updateZip.pl -- shows how to read/modify/write a Zip + +=item examples/updateTree.pl -- shows how to update a Zip in place + +=item examples/writeScalar.pl -- shows how to use IO::Scalar as the destination of a Zip write + +=item examples/writeScalar2.pl -- shows how to use IO::String as the destination of a Zip write + +=item examples/zip.pl -- Constructs a Zip file + +=item examples/zipcheck.pl -- One way to check a Zip file for validity + +=item examples/zipinfo.pl -- Prints out information about a Zip archive file + +=item examples/zipGrep.pl -- Searches for text in Zip files + +=item examples/ziptest.pl -- Lists a Zip file and checks member CRCs + +=item examples/ziprecent.pl -- Puts recent files into a zipfile + +=item examples/ziptest.pl -- Another way to check a Zip file for validity + +=back + +=head1 Can't Read/modify/write same Zip file + +B Why can't I open a Zip file, add a member, and write it back? I get an +error message when I try. + +B Because Archive::Zip doesn't (and can't, generally) read file contents into memory, +the original Zip file is required to stay around until the writing of the new +file is completed. + +The best way to do this is to write the Zip to a temporary file and then +rename the temporary file to have the old name (possibly after deleting the +old one). + +Archive::Zip v1.02 added the archive methods C and +C to do this simply and carefully. + +See C for an example of this technique. + +=head1 File creation time not set + +B Upon extracting files, I see that their modification (and access) times are +set to the time in the Zip archive. However, their creation time is not set to +the same time. Why? + +B Mostly because Perl doesn't give cross-platform access to I. +Indeed, many systems (like Unix) don't support such a concept. +However, if yours does, you can easily set it. Get the modification time from +the member using C. + +=head1 Can't use Archive::Zip on gzip files + +B Can I use Archive::Zip to extract Unix gzip files? + +B No. + +There is a distinction between Unix gzip files, and Zip archives that +also can use the gzip compression. + +Depending on the format of the gzip file, you can use L, or +L to decompress it (and de-archive it in the case of Tar files). + +You can unzip PKZIP/WinZip/etc/ archives using Archive::Zip (that's what +it's for) as long as any compressed members are compressed using +Deflate compression. + +=head1 Add a directory/tree to a Zip + +B How can I add a directory (or tree) full of files to a Zip? + +B You can use the Archive::Zip::addTree*() methods: + + use Archive::Zip; + my $zip = Archive::Zip->new(); + # add all readable files and directories below . as xyz/* + $zip->addTree( '.', 'xyz' ); + # add all readable plain files below /abc as def/* + $zip->addTree( '/abc', 'def', sub { -f && -r } ); + # add all .c files below /tmp as stuff/* + $zip->addTreeMatching( '/tmp', 'stuff', '\.c$' ); + # add all .o files below /tmp as stuff/* if they aren't writable + $zip->addTreeMatching( '/tmp', 'stuff', '\.o$', sub { ! -w } ); + # add all .so files below /tmp that are smaller than 200 bytes as stuff/* + $zip->addTreeMatching( '/tmp', 'stuff', '\.o$', sub { -s < 200 } ); + # and write them into a file + $zip->writeToFileNamed('xxx.zip'); + +=head1 Extract a directory/tree + +B How can I extract some (or all) files from a Zip into a different +directory? + +B You can use the Archive::Zip::extractTree() method: +??? || + + # now extract the same files into /tmpx + $zip->extractTree( 'stuff', '/tmpx' ); + +=head1 Update a directory/tree + +B How can I update a Zip from a directory tree, adding or replacing only +the newer files? + +B You can use the Archive::Zip::updateTree() method that was added in version 1.09. + +=head1 Zip times might be off by 1 second + +B It bothers me greatly that my file times are wrong by one second about half +the time. Why don't you do something about it? + +B Get over it. This is a result of the Zip format storing times in DOS +format, which has a resolution of only two seconds. + +=head1 Zip times don't include time zone information + +B My file times don't respect time zones. What gives? + +B If this is important to you, please submit patches to read the various +Extra Fields that encode times with time zones. I'm just using the DOS +Date/Time, which doesn't have a time zone. + +=head1 How do I make a self-extracting Zip + +B I want to make a self-extracting Zip file. Can I do this? + +B Yes. You can write a self-extracting archive stub (that is, a version of +unzip) to the output filehandle that you pass to writeToFileHandle(). See +examples/selfex.pl for how to write a self-extracting archive. + +However, you should understand that this will only work on one kind of +platform (the one for which the stub was compiled). + +=head1 How can I deal with Zips with prepended garbage (i.e. from Sircam) + +B How can I tell if a Zip has been damaged by adding garbage to the +beginning or inside the file? + +B I added code for this for the Amavis virus scanner. You can query archives +for their 'eocdOffset' property, which should be 0: + + if ($zip->eocdOffset > 0) + { warn($zip->eocdOffset . " bytes of garbage at beginning or within Zip") } + +When members are extracted, this offset will be used to adjust the start of +the member if necessary. + +=head1 Can't extract Shrunk files + +B I'm trying to extract a file out of a Zip produced by PKZIP, and keep +getting this error message: + + error: Unsupported compression combination: read 6, write 0 + +B You can't uncompress this archive member. Archive::Zip only supports uncompressed +members, and compressed members that are compressed using the compression +supported by Compress::Raw::Zlib. That means only Deflated and Stored members. + +Your file is compressed using the Shrink format, which is not supported by +Compress::Raw::Zlib. + +You could, perhaps, use a command-line UnZip program (like the Info-Zip +one) to extract this. + +=head1 Can't do decryption + +B How do I decrypt encrypted Zip members? + +B With some other program or library. Archive::Zip doesn't support decryption, +and probably never will (unless I write it). + +=head1 How to test file integrity? + +B How can Archive::Zip can test the validity of a Zip file? + +B If you try to decompress the file, the gzip streams will report errors +if you have garbage. Most of the time. + +If you try to open the file and a central directory structure can't be +found, an error will be reported. + +When a file is being read, if we can't find a proper PK.. signature in +the right places we report a format error. + +If there is added garbage at the beginning of a Zip file (as inserted +by some viruses), you can find out about it, but Archive::Zip will ignore it, +and you can still use the archive. When it gets written back out the +added stuff will be gone. + +There are two ready-to-use utilities in the examples directory that can +be used to test file integrity, or that you can use as examples +for your own code: + +=over 4 + +=item examples/zipcheck.pl shows how to use an attempted extraction to test a file. + +=item examples/ziptest.pl shows how to test CRCs in a file. + +=back + +=head1 Duplicate files in Zip? + +B Archive::Zip let me put the same file in my Zip twice! Why don't you prevent this? + +B As far as I can tell, this is not disallowed by the Zip spec. If you +think it's a bad idea, check for it yourself: + + $zip->addFile($someFile, $someName) unless $zip->memberNamed($someName); + +I can even imagine cases where this might be useful (for instance, multiple +versions of files). + +=head1 File ownership/permissions/ACLS/etc + +B Why doesn't Archive::Zip deal with file ownership, ACLs, etc.? + +B There is no standard way to represent these in the Zip file format. If +you want to send me code to properly handle the various extra fields that +have been used to represent these through the years, I'll look at it. + +=head1 I can't compile but ActiveState only has an old version of Archive::Zip + +B I've only installed modules using ActiveState's PPM program and +repository. But they have a much older version of Archive::Zip than is in CPAN. Will +you send me a newer PPM? + +B Probably not, unless I get lots of extra time. But there's no reason you +can't install the version from CPAN. Archive::Zip is pure Perl, so all you need is +NMAKE, which you can get for free from Microsoft (see the FAQ in the +ActiveState documentation for details on how to install CPAN modules). + +=head1 My JPEGs (or MP3's) don't compress when I put them into Zips! + +B How come my JPEGs and MP3's don't compress much when I put them into Zips? + +B Because they're already compressed. + +=head1 Under Windows, things lock up/get damaged + +B I'm using Windows. When I try to use Archive::Zip, my machine locks up/makes +funny sounds/displays a BSOD/corrupts data. How can I fix this? + +B First, try the newest version of Compress::Raw::Zlib. I know of +Windows-related problems prior to v1.14 of that library. + +=head1 Zip contents in a scalar + +B I want to read a Zip file from (or write one to) a scalar variable instead +of a file. How can I do this? + +B Use C and the C and +C methods. +See C and C. + +=head1 Reading from streams + +B How do I read from a stream (like for the Info-Zip C program)? + +B This is not currently supported, though writing to a stream is. diff --git a/slic3r/linux/local-lib/lib/perl5/Archive/Zip/FileMember.pm b/slic3r/linux/local-lib/lib/perl5/Archive/Zip/FileMember.pm new file mode 100644 index 00000000..072c96c9 --- /dev/null +++ b/slic3r/linux/local-lib/lib/perl5/Archive/Zip/FileMember.pm @@ -0,0 +1,64 @@ +package Archive::Zip::FileMember; + +use strict; +use vars qw( $VERSION @ISA ); + +BEGIN { + $VERSION = '1.60'; + @ISA = qw ( Archive::Zip::Member ); +} + +use Archive::Zip qw( + :UTILITY_METHODS +); + +sub externalFileName { + shift->{'externalFileName'}; +} + +# Return true if I depend on the named file +sub _usesFileNamed { + my $self = shift; + my $fileName = shift; + my $xfn = $self->externalFileName(); + return undef if ref($xfn); + return $xfn eq $fileName; +} + +sub fh { + my $self = shift; + $self->_openFile() + if !defined($self->{'fh'}) || !$self->{'fh'}->opened(); + return $self->{'fh'}; +} + +# opens my file handle from my file name +sub _openFile { + my $self = shift; + my ($status, $fh) = _newFileHandle($self->externalFileName(), 'r'); + if (!$status) { + _ioError("Can't open", $self->externalFileName()); + return undef; + } + $self->{'fh'} = $fh; + _binmode($fh); + return $fh; +} + +# Make sure I close my file handle +sub endRead { + my $self = shift; + undef $self->{'fh'}; # _closeFile(); + return $self->SUPER::endRead(@_); +} + +sub _become { + my $self = shift; + my $newClass = shift; + return $self if ref($self) eq $newClass; + delete($self->{'externalFileName'}); + delete($self->{'fh'}); + return $self->SUPER::_become($newClass); +} + +1; diff --git a/slic3r/linux/local-lib/lib/perl5/Archive/Zip/Member.pm b/slic3r/linux/local-lib/lib/perl5/Archive/Zip/Member.pm new file mode 100644 index 00000000..f913efe3 --- /dev/null +++ b/slic3r/linux/local-lib/lib/perl5/Archive/Zip/Member.pm @@ -0,0 +1,1256 @@ +package Archive::Zip::Member; + +# A generic member of an archive + +use strict; +use vars qw( $VERSION @ISA ); + +BEGIN { + $VERSION = '1.60'; + @ISA = qw( Archive::Zip ); + + if ($^O eq 'MSWin32') { + require Win32; + require Encode; + Encode->import(qw{ decode_utf8 }); + } +} + +use Archive::Zip qw( + :CONSTANTS + :MISC_CONSTANTS + :ERROR_CODES + :PKZIP_CONSTANTS + :UTILITY_METHODS +); + +use Time::Local (); +use Compress::Raw::Zlib qw( Z_OK Z_STREAM_END MAX_WBITS ); +use File::Path; +use File::Basename; + +# Unix perms for default creation of files/dirs. +use constant DEFAULT_DIRECTORY_PERMISSIONS => 040755; +use constant DEFAULT_FILE_PERMISSIONS => 0100666; +use constant DIRECTORY_ATTRIB => 040000; +use constant FILE_ATTRIB => 0100000; + +# Returns self if successful, else undef +# Assumes that fh is positioned at beginning of central directory file header. +# Leaves fh positioned immediately after file header or EOCD signature. +sub _newFromZipFile { + my $class = shift; + my $self = Archive::Zip::ZipFileMember->_newFromZipFile(@_); + return $self; +} + +sub newFromString { + my $class = shift; + + my ($stringOrStringRef, $fileName); + if (ref($_[0]) eq 'HASH') { + $stringOrStringRef = $_[0]->{string}; + $fileName = $_[0]->{zipName}; + } else { + ($stringOrStringRef, $fileName) = @_; + } + + my $self = + Archive::Zip::StringMember->_newFromString($stringOrStringRef, $fileName); + return $self; +} + +sub newFromFile { + my $class = shift; + + my ($fileName, $zipName); + if (ref($_[0]) eq 'HASH') { + $fileName = $_[0]->{fileName}; + $zipName = $_[0]->{zipName}; + } else { + ($fileName, $zipName) = @_; + } + + my $self = + Archive::Zip::NewFileMember->_newFromFileNamed($fileName, $zipName); + return $self; +} + +sub newDirectoryNamed { + my $class = shift; + + my ($directoryName, $newName); + if (ref($_[0]) eq 'HASH') { + $directoryName = $_[0]->{directoryName}; + $newName = $_[0]->{zipName}; + } else { + ($directoryName, $newName) = @_; + } + + my $self = + Archive::Zip::DirectoryMember->_newNamed($directoryName, $newName); + return $self; +} + +sub new { + my $class = shift; + my $self = { + 'lastModFileDateTime' => 0, + 'fileAttributeFormat' => FA_UNIX, + 'versionMadeBy' => 20, + 'versionNeededToExtract' => 20, + 'bitFlag' => ($Archive::Zip::UNICODE ? 0x0800 : 0), + 'compressionMethod' => COMPRESSION_STORED, + 'desiredCompressionMethod' => COMPRESSION_STORED, + 'desiredCompressionLevel' => COMPRESSION_LEVEL_NONE, + 'internalFileAttributes' => 0, + 'externalFileAttributes' => 0, # set later + 'fileName' => '', + 'cdExtraField' => '', + 'localExtraField' => '', + 'fileComment' => '', + 'crc32' => 0, + 'compressedSize' => 0, + 'uncompressedSize' => 0, + 'isSymbolicLink' => 0, + 'password' => undef, # password for encrypted data + 'crc32c' => -1, # crc for decrypted data + @_ + }; + bless($self, $class); + $self->unixFileAttributes($self->DEFAULT_FILE_PERMISSIONS); + return $self; +} + +sub _becomeDirectoryIfNecessary { + my $self = shift; + $self->_become('Archive::Zip::DirectoryMember') + if $self->isDirectory(); + return $self; +} + +# Morph into given class (do whatever cleanup I need to do) +sub _become { + return bless($_[0], $_[1]); +} + +sub versionMadeBy { + shift->{'versionMadeBy'}; +} + +sub fileAttributeFormat { + my $self = shift; + + if (@_) { + $self->{fileAttributeFormat} = + (ref($_[0]) eq 'HASH') ? $_[0]->{format} : $_[0]; + } else { + return $self->{fileAttributeFormat}; + } +} + +sub versionNeededToExtract { + shift->{'versionNeededToExtract'}; +} + +sub bitFlag { + my $self = shift; + +# Set General Purpose Bit Flags according to the desiredCompressionLevel setting + if ( $self->desiredCompressionLevel == 1 + || $self->desiredCompressionLevel == 2) { + $self->{'bitFlag'} |= DEFLATING_COMPRESSION_FAST; + } elsif ($self->desiredCompressionLevel == 3 + || $self->desiredCompressionLevel == 4 + || $self->desiredCompressionLevel == 5 + || $self->desiredCompressionLevel == 6 + || $self->desiredCompressionLevel == 7) { + $self->{'bitFlag'} |= DEFLATING_COMPRESSION_NORMAL; + } elsif ($self->desiredCompressionLevel == 8 + || $self->desiredCompressionLevel == 9) { + $self->{'bitFlag'} |= DEFLATING_COMPRESSION_MAXIMUM; + } + + if ($Archive::Zip::UNICODE) { + $self->{'bitFlag'} |= 0x0800; + } + $self->{'bitFlag'}; +} + +sub password { + my $self = shift; + $self->{'password'} = shift if @_; + $self->{'password'}; +} + +sub compressionMethod { + shift->{'compressionMethod'}; +} + +sub desiredCompressionMethod { + my $self = shift; + my $newDesiredCompressionMethod = + (ref($_[0]) eq 'HASH') ? shift->{compressionMethod} : shift; + my $oldDesiredCompressionMethod = $self->{'desiredCompressionMethod'}; + if (defined($newDesiredCompressionMethod)) { + $self->{'desiredCompressionMethod'} = $newDesiredCompressionMethod; + if ($newDesiredCompressionMethod == COMPRESSION_STORED) { + $self->{'desiredCompressionLevel'} = 0; + $self->{'bitFlag'} &= ~GPBF_HAS_DATA_DESCRIPTOR_MASK + if $self->uncompressedSize() == 0; + } elsif ($oldDesiredCompressionMethod == COMPRESSION_STORED) { + $self->{'desiredCompressionLevel'} = COMPRESSION_LEVEL_DEFAULT; + } + } + return $oldDesiredCompressionMethod; +} + +sub desiredCompressionLevel { + my $self = shift; + my $newDesiredCompressionLevel = + (ref($_[0]) eq 'HASH') ? shift->{compressionLevel} : shift; + my $oldDesiredCompressionLevel = $self->{'desiredCompressionLevel'}; + if (defined($newDesiredCompressionLevel)) { + $self->{'desiredCompressionLevel'} = $newDesiredCompressionLevel; + $self->{'desiredCompressionMethod'} = ( + $newDesiredCompressionLevel + ? COMPRESSION_DEFLATED + : COMPRESSION_STORED + ); + } + return $oldDesiredCompressionLevel; +} + +sub fileName { + my $self = shift; + my $newName = shift; + if (defined $newName) { + $newName =~ s{[\\/]+}{/}g; # deal with dos/windoze problems + $self->{'fileName'} = $newName; + } + return $self->{'fileName'}; +} + +sub fileNameAsBytes { + my $self = shift; + my $bytes = $self->{'fileName'}; + if($self->{'bitFlag'} & 0x800){ + $bytes = Encode::encode_utf8($bytes); + } + return $bytes; +} + +sub lastModFileDateTime { + my $modTime = shift->{'lastModFileDateTime'}; + $modTime =~ m/^(\d+)$/; # untaint + return $1; +} + +sub lastModTime { + my $self = shift; + return _dosToUnixTime($self->lastModFileDateTime()); +} + +sub setLastModFileDateTimeFromUnix { + my $self = shift; + my $time_t = shift; + $self->{'lastModFileDateTime'} = _unixToDosTime($time_t); +} + +sub internalFileAttributes { + shift->{'internalFileAttributes'}; +} + +sub externalFileAttributes { + shift->{'externalFileAttributes'}; +} + +# Convert UNIX permissions into proper value for zip file +# Usable as a function or a method +sub _mapPermissionsFromUnix { + my $self = shift; + my $mode = shift; + my $attribs = $mode << 16; + + # Microsoft Windows Explorer needs this bit set for directories + if ($mode & DIRECTORY_ATTRIB) { + $attribs |= 16; + } + + return $attribs; + + # TODO: map more MS-DOS perms +} + +# Convert ZIP permissions into Unix ones +# +# This was taken from Info-ZIP group's portable UnZip +# zipfile-extraction program, version 5.50. +# http://www.info-zip.org/pub/infozip/ +# +# See the mapattr() function in unix/unix.c +# See the attribute format constants in unzpriv.h +# +# XXX Note that there's one situation that is not implemented +# yet that depends on the "extra field." +sub _mapPermissionsToUnix { + my $self = shift; + + my $format = $self->{'fileAttributeFormat'}; + my $attribs = $self->{'externalFileAttributes'}; + + my $mode = 0; + + if ($format == FA_AMIGA) { + $attribs = $attribs >> 17 & 7; # Amiga RWE bits + $mode = $attribs << 6 | $attribs << 3 | $attribs; + return $mode; + } + + if ($format == FA_THEOS) { + $attribs &= 0xF1FFFFFF; + if (($attribs & 0xF0000000) != 0x40000000) { + $attribs &= 0x01FFFFFF; # not a dir, mask all ftype bits + } else { + $attribs &= 0x41FFFFFF; # leave directory bit as set + } + } + + if ( $format == FA_UNIX + || $format == FA_VAX_VMS + || $format == FA_ACORN + || $format == FA_ATARI_ST + || $format == FA_BEOS + || $format == FA_QDOS + || $format == FA_TANDEM) { + $mode = $attribs >> 16; + return $mode if $mode != 0 or not $self->localExtraField; + + # warn("local extra field is: ", $self->localExtraField, "\n"); + + # XXX This condition is not implemented + # I'm just including the comments from the info-zip section for now. + + # Some (non-Info-ZIP) implementations of Zip for Unix and + # VMS (and probably others ??) leave 0 in the upper 16-bit + # part of the external_file_attributes field. Instead, they + # store file permission attributes in some extra field. + # As a work-around, we search for the presence of one of + # these extra fields and fall back to the MSDOS compatible + # part of external_file_attributes if one of the known + # e.f. types has been detected. + # Later, we might implement extraction of the permission + # bits from the VMS extra field. But for now, the work-around + # should be sufficient to provide "readable" extracted files. + # (For ASI Unix e.f., an experimental remap from the e.f. + # mode value IS already provided!) + } + + # PKWARE's PKZip for Unix marks entries as FA_MSDOS, but stores the + # Unix attributes in the upper 16 bits of the external attributes + # field, just like Info-ZIP's Zip for Unix. We try to use that + # value, after a check for consistency with the MSDOS attribute + # bits (see below). + if ($format == FA_MSDOS) { + $mode = $attribs >> 16; + } + + # FA_MSDOS, FA_OS2_HPFS, FA_WINDOWS_NTFS, FA_MACINTOSH, FA_TOPS20 + $attribs = !($attribs & 1) << 1 | ($attribs & 0x10) >> 4; + + # keep previous $mode setting when its "owner" + # part appears to be consistent with DOS attribute flags! + return $mode if ($mode & 0700) == (0400 | $attribs << 6); + $mode = 0444 | $attribs << 6 | $attribs << 3 | $attribs; + return $mode; +} + +sub unixFileAttributes { + my $self = shift; + my $oldPerms = $self->_mapPermissionsToUnix; + + my $perms; + if (@_) { + $perms = (ref($_[0]) eq 'HASH') ? $_[0]->{attributes} : $_[0]; + + if ($self->isDirectory) { + $perms &= ~FILE_ATTRIB; + $perms |= DIRECTORY_ATTRIB; + } else { + $perms &= ~DIRECTORY_ATTRIB; + $perms |= FILE_ATTRIB; + } + $self->{externalFileAttributes} = + $self->_mapPermissionsFromUnix($perms); + } + + return $oldPerms; +} + +sub localExtraField { + my $self = shift; + + if (@_) { + $self->{localExtraField} = + (ref($_[0]) eq 'HASH') ? $_[0]->{field} : $_[0]; + } else { + return $self->{localExtraField}; + } +} + +sub cdExtraField { + my $self = shift; + + if (@_) { + $self->{cdExtraField} = (ref($_[0]) eq 'HASH') ? $_[0]->{field} : $_[0]; + } else { + return $self->{cdExtraField}; + } +} + +sub extraFields { + my $self = shift; + return $self->localExtraField() . $self->cdExtraField(); +} + +sub fileComment { + my $self = shift; + + if (@_) { + $self->{fileComment} = + (ref($_[0]) eq 'HASH') + ? pack('C0a*', $_[0]->{comment}) + : pack('C0a*', $_[0]); + } else { + return $self->{fileComment}; + } +} + +sub hasDataDescriptor { + my $self = shift; + if (@_) { + my $shouldHave = shift; + if ($shouldHave) { + $self->{'bitFlag'} |= GPBF_HAS_DATA_DESCRIPTOR_MASK; + } else { + $self->{'bitFlag'} &= ~GPBF_HAS_DATA_DESCRIPTOR_MASK; + } + } + return $self->{'bitFlag'} & GPBF_HAS_DATA_DESCRIPTOR_MASK; +} + +sub crc32 { + shift->{'crc32'}; +} + +sub crc32String { + sprintf("%08x", shift->{'crc32'}); +} + +sub compressedSize { + shift->{'compressedSize'}; +} + +sub uncompressedSize { + shift->{'uncompressedSize'}; +} + +sub isEncrypted { + shift->{'bitFlag'} & GPBF_ENCRYPTED_MASK; +} + +sub isTextFile { + my $self = shift; + my $bit = $self->internalFileAttributes() & IFA_TEXT_FILE_MASK; + if (@_) { + my $flag = (ref($_[0]) eq 'HASH') ? shift->{flag} : shift; + $self->{'internalFileAttributes'} &= ~IFA_TEXT_FILE_MASK; + $self->{'internalFileAttributes'} |= + ($flag ? IFA_TEXT_FILE : IFA_BINARY_FILE); + } + return $bit == IFA_TEXT_FILE; +} + +sub isBinaryFile { + my $self = shift; + my $bit = $self->internalFileAttributes() & IFA_TEXT_FILE_MASK; + if (@_) { + my $flag = shift; + $self->{'internalFileAttributes'} &= ~IFA_TEXT_FILE_MASK; + $self->{'internalFileAttributes'} |= + ($flag ? IFA_BINARY_FILE : IFA_TEXT_FILE); + } + return $bit == IFA_BINARY_FILE; +} + +sub extractToFileNamed { + my $self = shift; + + # local FS name + my $name = (ref($_[0]) eq 'HASH') ? $_[0]->{name} : $_[0]; + $self->{'isSymbolicLink'} = 0; + + # Check if the file / directory is a symbolic link or not + if ($self->{'externalFileAttributes'} == 0xA1FF0000) { + $self->{'isSymbolicLink'} = 1; + $self->{'newName'} = $name; + my ($status, $fh) = _newFileHandle($name, 'r'); + my $retval = $self->extractToFileHandle($fh); + $fh->close(); + } else { + + #return _writeSymbolicLink($self, $name) if $self->isSymbolicLink(); + + my ($status, $fh); + if ($^O eq 'MSWin32' && $Archive::Zip::UNICODE) { + $name = decode_utf8(Win32::GetFullPathName($name)); + mkpath_win32($name); + Win32::CreateFile($name); + ($status, $fh) = _newFileHandle(Win32::GetANSIPathName($name), 'w'); + } else { + mkpath(dirname($name)); # croaks on error + ($status, $fh) = _newFileHandle($name, 'w'); + } + return _ioError("Can't open file $name for write") unless $status; + my $retval = $self->extractToFileHandle($fh); + $fh->close(); + chmod($self->unixFileAttributes(), $name) + or return _error("Can't chmod() ${name}: $!"); + utime($self->lastModTime(), $self->lastModTime(), $name); + return $retval; + } +} + +sub mkpath_win32 { + my $path = shift; + use File::Spec; + + my ($volume, @path) = File::Spec->splitdir($path); + $path = File::Spec->catfile($volume, shift @path); + pop @path; + while (@path) { + $path = File::Spec->catfile($path, shift @path); + Win32::CreateDirectory($path); + } +} + +sub _writeSymbolicLink { + my $self = shift; + my $name = shift; + my $chunkSize = $Archive::Zip::ChunkSize; + + #my ( $outRef, undef ) = $self->readChunk($chunkSize); + my $fh; + my $retval = $self->extractToFileHandle($fh); + my ($outRef, undef) = $self->readChunk(100); +} + +sub isSymbolicLink { + my $self = shift; + if ($self->{'externalFileAttributes'} == 0xA1FF0000) { + $self->{'isSymbolicLink'} = 1; + } else { + return 0; + } + 1; +} + +sub isDirectory { + return 0; +} + +sub externalFileName { + return undef; +} + +# The following are used when copying data +sub _writeOffset { + shift->{'writeOffset'}; +} + +sub _readOffset { + shift->{'readOffset'}; +} + +sub writeLocalHeaderRelativeOffset { + shift->{'writeLocalHeaderRelativeOffset'}; +} + +sub wasWritten { shift->{'wasWritten'} } + +sub _dataEnded { + shift->{'dataEnded'}; +} + +sub _readDataRemaining { + shift->{'readDataRemaining'}; +} + +sub _inflater { + shift->{'inflater'}; +} + +sub _deflater { + shift->{'deflater'}; +} + +# Return the total size of my local header +sub _localHeaderSize { + my $self = shift; + { + use bytes; + return SIGNATURE_LENGTH + + LOCAL_FILE_HEADER_LENGTH + + length($self->fileName()) + + length($self->localExtraField()); + } +} + +# Return the total size of my CD header +sub _centralDirectoryHeaderSize { + my $self = shift; + { + use bytes; + return SIGNATURE_LENGTH + + CENTRAL_DIRECTORY_FILE_HEADER_LENGTH + + length($self->fileName()) + + length($self->cdExtraField()) + + length($self->fileComment()); + } +} + +# DOS date/time format +# 0-4 (5) Second divided by 2 +# 5-10 (6) Minute (0-59) +# 11-15 (5) Hour (0-23 on a 24-hour clock) +# 16-20 (5) Day of the month (1-31) +# 21-24 (4) Month (1 = January, 2 = February, etc.) +# 25-31 (7) Year offset from 1980 (add 1980 to get actual year) + +# Convert DOS date/time format to unix time_t format +# NOT AN OBJECT METHOD! +sub _dosToUnixTime { + my $dt = shift; + return time() unless defined($dt); + + my $year = (($dt >> 25) & 0x7f) + 80; + my $mon = (($dt >> 21) & 0x0f) - 1; + my $mday = (($dt >> 16) & 0x1f); + + my $hour = (($dt >> 11) & 0x1f); + my $min = (($dt >> 5) & 0x3f); + my $sec = (($dt << 1) & 0x3e); + + # catch errors + my $time_t = + eval { Time::Local::timelocal($sec, $min, $hour, $mday, $mon, $year); }; + return time() if ($@); + return $time_t; +} + +# Note, this is not exactly UTC 1980, it's 1980 + 12 hours and 1 +# minute so that nothing timezoney can muck us up. +my $safe_epoch = 31.606060; + +# convert a unix time to DOS date/time +# NOT AN OBJECT METHOD! +sub _unixToDosTime { + my $time_t = shift; + unless ($time_t) { + _error("Tried to add member with zero or undef value for time"); + $time_t = $safe_epoch; + } + if ($time_t < $safe_epoch) { + _ioError("Unsupported date before 1980 encountered, moving to 1980"); + $time_t = $safe_epoch; + } + my ($sec, $min, $hour, $mday, $mon, $year) = localtime($time_t); + my $dt = 0; + $dt += ($sec >> 1); + $dt += ($min << 5); + $dt += ($hour << 11); + $dt += ($mday << 16); + $dt += (($mon + 1) << 21); + $dt += (($year - 80) << 25); + return $dt; +} + +sub head { + my ($self, $mode) = (@_, 0); + + use bytes; + return pack LOCAL_FILE_HEADER_FORMAT, + $self->versionNeededToExtract(), + $self->{'bitFlag'}, + $self->desiredCompressionMethod(), + $self->lastModFileDateTime(), + $self->hasDataDescriptor() + ? (0,0,0) # crc, compr & uncompr all zero if data descriptor present + : ( + $self->crc32(), + $mode + ? $self->_writeOffset() # compressed size + : $self->compressedSize(), # may need to be re-written later + $self->uncompressedSize(), + ), + length($self->fileNameAsBytes()), + length($self->localExtraField()); +} + +# Write my local header to a file handle. +# Stores the offset to the start of the header in my +# writeLocalHeaderRelativeOffset member. +# Returns AZ_OK on success. +sub _writeLocalFileHeader { + my $self = shift; + my $fh = shift; + + my $signatureData = pack(SIGNATURE_FORMAT, LOCAL_FILE_HEADER_SIGNATURE); + $self->_print($fh, $signatureData) + or return _ioError("writing local header signature"); + + my $header = $self->head(1); + + $self->_print($fh, $header) or return _ioError("writing local header"); + + # Check for a valid filename or a filename equal to a literal `0' + if ($self->fileName() || $self->fileName eq '0') { + $self->_print($fh, $self->fileNameAsBytes()) + or return _ioError("writing local header filename"); + } + if ($self->localExtraField()) { + $self->_print($fh, $self->localExtraField()) + or return _ioError("writing local extra field"); + } + + return AZ_OK; +} + +sub _writeCentralDirectoryFileHeader { + my $self = shift; + my $fh = shift; + + my $sigData = + pack(SIGNATURE_FORMAT, CENTRAL_DIRECTORY_FILE_HEADER_SIGNATURE); + $self->_print($fh, $sigData) + or return _ioError("writing central directory header signature"); + + my ($fileNameLength, $extraFieldLength, $fileCommentLength); + { + use bytes; + $fileNameLength = length($self->fileNameAsBytes()); + $extraFieldLength = length($self->cdExtraField()); + $fileCommentLength = length($self->fileComment()); + } + + my $header = pack( + CENTRAL_DIRECTORY_FILE_HEADER_FORMAT, + $self->versionMadeBy(), + $self->fileAttributeFormat(), + $self->versionNeededToExtract(), + $self->bitFlag(), + $self->desiredCompressionMethod(), + $self->lastModFileDateTime(), + $self->crc32(), # these three fields should have been updated + $self->_writeOffset(), # by writing the data stream out + $self->uncompressedSize(), # + $fileNameLength, + $extraFieldLength, + $fileCommentLength, + 0, # {'diskNumberStart'}, + $self->internalFileAttributes(), + $self->externalFileAttributes(), + $self->writeLocalHeaderRelativeOffset()); + + $self->_print($fh, $header) + or return _ioError("writing central directory header"); + if ($fileNameLength) { + $self->_print($fh, $self->fileNameAsBytes()) + or return _ioError("writing central directory header signature"); + } + if ($extraFieldLength) { + $self->_print($fh, $self->cdExtraField()) + or return _ioError("writing central directory extra field"); + } + if ($fileCommentLength) { + $self->_print($fh, $self->fileComment()) + or return _ioError("writing central directory file comment"); + } + + return AZ_OK; +} + +# This writes a data descriptor to the given file handle. +# Assumes that crc32, writeOffset, and uncompressedSize are +# set correctly (they should be after a write). +# Further, the local file header should have the +# GPBF_HAS_DATA_DESCRIPTOR_MASK bit set. +sub _writeDataDescriptor { + my $self = shift; + my $fh = shift; + my $header = pack( + SIGNATURE_FORMAT . DATA_DESCRIPTOR_FORMAT, + DATA_DESCRIPTOR_SIGNATURE, + $self->crc32(), + $self->_writeOffset(), # compressed size + $self->uncompressedSize()); + + $self->_print($fh, $header) + or return _ioError("writing data descriptor"); + return AZ_OK; +} + +# Re-writes the local file header with new crc32 and compressedSize fields. +# To be called after writing the data stream. +# Assumes that filename and extraField sizes didn't change since last written. +sub _refreshLocalFileHeader { + my $self = shift; + my $fh = shift; + + my $here = $fh->tell(); + $fh->seek($self->writeLocalHeaderRelativeOffset() + SIGNATURE_LENGTH, + IO::Seekable::SEEK_SET) + or return _ioError("seeking to rewrite local header"); + + my $header = $self->head(1); + + $self->_print($fh, $header) + or return _ioError("re-writing local header"); + $fh->seek($here, IO::Seekable::SEEK_SET) + or return _ioError("seeking after rewrite of local header"); + + return AZ_OK; +} + +sub readChunk { + my $self = shift; + my $chunkSize = (ref($_[0]) eq 'HASH') ? $_[0]->{chunkSize} : $_[0]; + + if ($self->readIsDone()) { + $self->endRead(); + my $dummy = ''; + return (\$dummy, AZ_STREAM_END); + } + + $chunkSize = $Archive::Zip::ChunkSize if not defined($chunkSize); + $chunkSize = $self->_readDataRemaining() + if $chunkSize > $self->_readDataRemaining(); + + my $buffer = ''; + my $outputRef; + my ($bytesRead, $status) = $self->_readRawChunk(\$buffer, $chunkSize); + return (\$buffer, $status) unless $status == AZ_OK; + + $buffer && $self->isEncrypted and $buffer = $self->_decode($buffer); + $self->{'readDataRemaining'} -= $bytesRead; + $self->{'readOffset'} += $bytesRead; + + if ($self->compressionMethod() == COMPRESSION_STORED) { + $self->{'crc32'} = $self->computeCRC32($buffer, $self->{'crc32'}); + } + + ($outputRef, $status) = &{$self->{'chunkHandler'}}($self, \$buffer); + $self->{'writeOffset'} += length($$outputRef); + + $self->endRead() + if $self->readIsDone(); + + return ($outputRef, $status); +} + +# Read the next raw chunk of my data. Subclasses MUST implement. +# my ( $bytesRead, $status) = $self->_readRawChunk( \$buffer, $chunkSize ); +sub _readRawChunk { + my $self = shift; + return $self->_subclassResponsibility(); +} + +# A place holder to catch rewindData errors if someone ignores +# the error code. +sub _noChunk { + my $self = shift; + return (\undef, _error("trying to copy chunk when init failed")); +} + +# Basically a no-op so that I can have a consistent interface. +# ( $outputRef, $status) = $self->_copyChunk( \$buffer ); +sub _copyChunk { + my ($self, $dataRef) = @_; + return ($dataRef, AZ_OK); +} + +# ( $outputRef, $status) = $self->_deflateChunk( \$buffer ); +sub _deflateChunk { + my ($self, $buffer) = @_; + my ($status) = $self->_deflater()->deflate($buffer, my $out); + + if ($self->_readDataRemaining() == 0) { + my $extraOutput; + ($status) = $self->_deflater()->flush($extraOutput); + $out .= $extraOutput; + $self->endRead(); + return (\$out, AZ_STREAM_END); + } elsif ($status == Z_OK) { + return (\$out, AZ_OK); + } else { + $self->endRead(); + my $retval = _error('deflate error', $status); + my $dummy = ''; + return (\$dummy, $retval); + } +} + +# ( $outputRef, $status) = $self->_inflateChunk( \$buffer ); +sub _inflateChunk { + my ($self, $buffer) = @_; + my ($status) = $self->_inflater()->inflate($buffer, my $out); + my $retval; + $self->endRead() unless $status == Z_OK; + if ($status == Z_OK || $status == Z_STREAM_END) { + $retval = ($status == Z_STREAM_END) ? AZ_STREAM_END : AZ_OK; + return (\$out, $retval); + } else { + $retval = _error('inflate error', $status); + my $dummy = ''; + return (\$dummy, $retval); + } +} + +sub rewindData { + my $self = shift; + my $status; + + # set to trap init errors + $self->{'chunkHandler'} = $self->can('_noChunk'); + + # Work around WinZip bug with 0-length DEFLATED files + $self->desiredCompressionMethod(COMPRESSION_STORED) + if $self->uncompressedSize() == 0; + + # assume that we're going to read the whole file, and compute the CRC anew. + $self->{'crc32'} = 0 + if ($self->compressionMethod() == COMPRESSION_STORED); + + # These are the only combinations of methods we deal with right now. + if ( $self->compressionMethod() == COMPRESSION_STORED + and $self->desiredCompressionMethod() == COMPRESSION_DEFLATED) { + ($self->{'deflater'}, $status) = Compress::Raw::Zlib::Deflate->new( + '-Level' => $self->desiredCompressionLevel(), + '-WindowBits' => -MAX_WBITS(), # necessary magic + '-Bufsize' => $Archive::Zip::ChunkSize, + @_ + ); # pass additional options + return _error('deflateInit error:', $status) + unless $status == Z_OK; + $self->{'chunkHandler'} = $self->can('_deflateChunk'); + } elsif ($self->compressionMethod() == COMPRESSION_DEFLATED + and $self->desiredCompressionMethod() == COMPRESSION_STORED) { + ($self->{'inflater'}, $status) = Compress::Raw::Zlib::Inflate->new( + '-WindowBits' => -MAX_WBITS(), # necessary magic + '-Bufsize' => $Archive::Zip::ChunkSize, + @_ + ); # pass additional options + return _error('inflateInit error:', $status) + unless $status == Z_OK; + $self->{'chunkHandler'} = $self->can('_inflateChunk'); + } elsif ($self->compressionMethod() == $self->desiredCompressionMethod()) { + $self->{'chunkHandler'} = $self->can('_copyChunk'); + } else { + return _error( + sprintf( + "Unsupported compression combination: read %d, write %d", + $self->compressionMethod(), + $self->desiredCompressionMethod())); + } + + $self->{'readDataRemaining'} = + ($self->compressionMethod() == COMPRESSION_STORED) + ? $self->uncompressedSize() + : $self->compressedSize(); + $self->{'dataEnded'} = 0; + $self->{'readOffset'} = 0; + + return AZ_OK; +} + +sub endRead { + my $self = shift; + delete $self->{'inflater'}; + delete $self->{'deflater'}; + $self->{'dataEnded'} = 1; + $self->{'readDataRemaining'} = 0; + return AZ_OK; +} + +sub readIsDone { + my $self = shift; + return ($self->_dataEnded() or !$self->_readDataRemaining()); +} + +sub contents { + my $self = shift; + my $newContents = shift; + + if (defined($newContents)) { + + # change our type and call the subclass contents method. + $self->_become('Archive::Zip::StringMember'); + return $self->contents(pack('C0a*', $newContents)); # in case of Unicode + } else { + my $oldCompression = + $self->desiredCompressionMethod(COMPRESSION_STORED); + my $status = $self->rewindData(@_); + if ($status != AZ_OK) { + $self->endRead(); + return $status; + } + my $retval = ''; + while ($status == AZ_OK) { + my $ref; + ($ref, $status) = $self->readChunk($self->_readDataRemaining()); + + # did we get it in one chunk? + if (length($$ref) == $self->uncompressedSize()) { + $retval = $$ref; + } else { + $retval .= $$ref + } + } + $self->desiredCompressionMethod($oldCompression); + $self->endRead(); + $status = AZ_OK if $status == AZ_STREAM_END; + $retval = undef unless $status == AZ_OK; + return wantarray ? ($retval, $status) : $retval; + } +} + +sub extractToFileHandle { + my $self = shift; + my $fh = (ref($_[0]) eq 'HASH') ? shift->{fileHandle} : shift; + _binmode($fh); + my $oldCompression = $self->desiredCompressionMethod(COMPRESSION_STORED); + my $status = $self->rewindData(@_); + $status = $self->_writeData($fh) if $status == AZ_OK; + $self->desiredCompressionMethod($oldCompression); + $self->endRead(); + return $status; +} + +# write local header and data stream to file handle +sub _writeToFileHandle { + my $self = shift; + my $fh = shift; + my $fhIsSeekable = shift; + my $offset = shift; + + return _error("no member name given for $self") + if $self->fileName() eq ''; + + $self->{'writeLocalHeaderRelativeOffset'} = $offset; + $self->{'wasWritten'} = 0; + + # Determine if I need to write a data descriptor + # I need to do this if I can't refresh the header + # and I don't know compressed size or crc32 fields. + my $headerFieldsUnknown = ( + ($self->uncompressedSize() > 0) + and ($self->compressionMethod() == COMPRESSION_STORED + or $self->desiredCompressionMethod() == COMPRESSION_DEFLATED)); + + my $shouldWriteDataDescriptor = + ($headerFieldsUnknown and not $fhIsSeekable); + + $self->hasDataDescriptor(1) + if ($shouldWriteDataDescriptor); + + $self->{'writeOffset'} = 0; + + my $status = $self->rewindData(); + ($status = $self->_writeLocalFileHeader($fh)) + if $status == AZ_OK; + ($status = $self->_writeData($fh)) + if $status == AZ_OK; + if ($status == AZ_OK) { + $self->{'wasWritten'} = 1; + if ($self->hasDataDescriptor()) { + $status = $self->_writeDataDescriptor($fh); + } elsif ($headerFieldsUnknown) { + $status = $self->_refreshLocalFileHeader($fh); + } + } + + return $status; +} + +# Copy my (possibly compressed) data to given file handle. +# Returns C on success +sub _writeData { + my $self = shift; + my $writeFh = shift; + +# If symbolic link, just create one if the operating system is Linux, Unix, BSD or VMS +# TODO: Add checks for other operating systems + if ($self->{'isSymbolicLink'} == 1 && $^O eq 'linux') { + my $chunkSize = $Archive::Zip::ChunkSize; + my ($outRef, $status) = $self->readChunk($chunkSize); + symlink $$outRef, $self->{'newName'}; + } else { + return AZ_OK if ($self->uncompressedSize() == 0); + my $status; + my $chunkSize = $Archive::Zip::ChunkSize; + while ($self->_readDataRemaining() > 0) { + my $outRef; + ($outRef, $status) = $self->readChunk($chunkSize); + return $status if ($status != AZ_OK and $status != AZ_STREAM_END); + + if (length($$outRef) > 0) { + $self->_print($writeFh, $$outRef) + or return _ioError("write error during copy"); + } + + last if $status == AZ_STREAM_END; + } + } + return AZ_OK; +} + +# Return true if I depend on the named file +sub _usesFileNamed { + return 0; +} + +# ############################################################################## +# +# Decrypt section +# +# H.Merijn Brand (Tux) 2011-06-28 +# +# ############################################################################## + +# This code is derived from the crypt source of unzip-6.0 dated 05 Jan 2007 +# Its license states: +# +# --8<--- +# Copyright (c) 1990-2007 Info-ZIP. All rights reserved. + +# See the accompanying file LICENSE, version 2005-Feb-10 or later +# (the contents of which are also included in (un)zip.h) for terms of use. +# If, for some reason, all these files are missing, the Info-ZIP license +# also may be found at: ftp://ftp.info-zip.org/pub/infozip/license.html +# +# crypt.c (full version) by Info-ZIP. Last revised: [see crypt.h] + +# The main encryption/decryption source code for Info-Zip software was +# originally written in Europe. To the best of our knowledge, it can +# be freely distributed in both source and object forms from any country, +# including the USA under License Exception TSU of the U.S. Export +# Administration Regulations (section 740.13(e)) of 6 June 2002. + +# NOTE on copyright history: +# Previous versions of this source package (up to version 2.8) were +# not copyrighted and put in the public domain. If you cannot comply +# with the Info-Zip LICENSE, you may want to look for one of those +# public domain versions. +# +# This encryption code is a direct transcription of the algorithm from +# Roger Schlafly, described by Phil Katz in the file appnote.txt. This +# file (appnote.txt) is distributed with the PKZIP program (even in the +# version without encryption capabilities). +# -->8--- + +# As of January 2000, US export regulations were amended to allow export +# of free encryption source code from the US. As of June 2002, these +# regulations were further relaxed to allow export of encryption binaries +# associated with free encryption source code. The Zip 2.31, UnZip 5.52 +# and Wiz 5.02 archives now include full crypto source code. As of the +# Zip 2.31 release, all official binaries include encryption support; the +# former "zcr" archives ceased to exist. +# (Note that restrictions may still exist in other countries, of course.) + +# For now, we just support the decrypt stuff +# All below methods are supposed to be private + +# use Data::Peek; + +my @keys; +my @crct = do { + my $xor = 0xedb88320; + my @crc = (0) x 1024; + + # generate a crc for every 8-bit value + foreach my $n (0 .. 255) { + my $c = $n; + $c = $c & 1 ? $xor ^ ($c >> 1) : $c >> 1 for 1 .. 8; + $crc[$n] = _revbe($c); + } + + # generate crc for each value followed by one, two, and three zeros */ + foreach my $n (0 .. 255) { + my $c = ($crc[($crc[$n] >> 24) ^ 0] ^ ($crc[$n] << 8)) & 0xffffffff; + $crc[$_ * 256 + $n] = $c for 1 .. 3; + } + map { _revbe($crc[$_]) } 0 .. 1023; +}; + +sub _crc32 { + my ($c, $b) = @_; + return ($crct[($c ^ $b) & 0xff] ^ ($c >> 8)); +} # _crc32 + +sub _revbe { + my $w = shift; + return (($w >> 24) + + (($w >> 8) & 0xff00) + + (($w & 0xff00) << 8) + + (($w & 0xff) << 24)); +} # _revbe + +sub _update_keys { + use integer; + my $c = shift; # signed int + $keys[0] = _crc32($keys[0], $c); + $keys[1] = (($keys[1] + ($keys[0] & 0xff)) * 0x08088405 + 1) & 0xffffffff; + my $keyshift = $keys[1] >> 24; + $keys[2] = _crc32($keys[2], $keyshift); +} # _update_keys + +sub _zdecode ($) { + my $c = shift; + my $t = ($keys[2] & 0xffff) | 2; + _update_keys($c ^= ((($t * ($t ^ 1)) >> 8) & 0xff)); + return $c; +} # _zdecode + +sub _decode { + my $self = shift; + my $buff = shift; + + $self->isEncrypted or return $buff; + + my $pass = $self->password; + defined $pass or return ""; + + @keys = (0x12345678, 0x23456789, 0x34567890); + _update_keys($_) for unpack "C*", $pass; + + # DDumper { uk => [ @keys ] }; + + my $head = substr $buff, 0, 12, ""; + my @head = map { _zdecode($_) } unpack "C*", $head; + my $x = + $self->{externalFileAttributes} + ? ($self->{lastModFileDateTime} >> 8) & 0xff + : $self->{crc32} >> 24; + $head[-1] == $x or return ""; # Password fail + + # Worth checking ... + $self->{crc32c} = (unpack LOCAL_FILE_HEADER_FORMAT, pack "C*", @head)[3]; + + # DHexDump ($buff); + $buff = pack "C*" => map { _zdecode($_) } unpack "C*" => $buff; + + # DHexDump ($buff); + return $buff; +} # _decode + +1; diff --git a/slic3r/linux/local-lib/lib/perl5/Archive/Zip/MemberRead.pm b/slic3r/linux/local-lib/lib/perl5/Archive/Zip/MemberRead.pm new file mode 100644 index 00000000..0ed6a9b3 --- /dev/null +++ b/slic3r/linux/local-lib/lib/perl5/Archive/Zip/MemberRead.pm @@ -0,0 +1,348 @@ +package Archive::Zip::MemberRead; + +=head1 NAME + +Archive::Zip::MemberRead - A wrapper that lets you read Zip archive members as if they were files. + +=cut + +=head1 SYNOPSIS + + use Archive::Zip; + use Archive::Zip::MemberRead; + $zip = Archive::Zip->new("file.zip"); + $fh = Archive::Zip::MemberRead->new($zip, "subdir/abc.txt"); + while (defined($line = $fh->getline())) + { + print $fh->input_line_number . "#: $line\n"; + } + + $read = $fh->read($buffer, 32*1024); + print "Read $read bytes as :$buffer:\n"; + +=head1 DESCRIPTION + +The Archive::Zip::MemberRead module lets you read Zip archive member data +just like you read data from files. + +=head1 METHODS + +=over 4 + +=cut + +use strict; + +use Archive::Zip qw( :ERROR_CODES :CONSTANTS ); + +use vars qw{$VERSION}; + +my $nl; + +BEGIN { + $VERSION = '1.60'; + $VERSION = eval $VERSION; + +# Requirement for newline conversion. Should check for e.g., DOS and OS/2 as well, but am too lazy. + $nl = $^O eq 'MSWin32' ? "\r\n" : "\n"; +} + +=item Archive::Zip::Member::readFileHandle() + +You can get a C from an archive member by +calling C: + + my $member = $zip->memberNamed('abc/def.c'); + my $fh = $member->readFileHandle(); + while (defined($line = $fh->getline())) + { + # ... + } + $fh->close(); + +=cut + +sub Archive::Zip::Member::readFileHandle { + return Archive::Zip::MemberRead->new(shift()); +} + +=item Archive::Zip::MemberRead->new($zip, $fileName) + +=item Archive::Zip::MemberRead->new($zip, $member) + +=item Archive::Zip::MemberRead->new($member) + +Construct a new Archive::Zip::MemberRead on the specified member. + + my $fh = Archive::Zip::MemberRead->new($zip, 'fred.c') + +=cut + +sub new { + my ($class, $zip, $file) = @_; + my ($self, $member); + + if ($zip && $file) # zip and filename, or zip and member + { + $member = ref($file) ? $file : $zip->memberNamed($file); + } elsif ($zip && !$file && ref($zip)) # just member + { + $member = $zip; + } else { + die( + 'Archive::Zip::MemberRead::new needs a zip and filename, zip and member, or member' + ); + } + + $self = {}; + bless($self, $class); + $self->set_member($member); + return $self; +} + +sub set_member { + my ($self, $member) = @_; + + $self->{member} = $member; + $self->set_compression(COMPRESSION_STORED); + $self->rewind(); +} + +sub set_compression { + my ($self, $compression) = @_; + $self->{member}->desiredCompressionMethod($compression) if $self->{member}; +} + +=item setLineEnd(expr) + +Set the line end character to use. This is set to \n by default +except on Windows systems where it is set to \r\n. You will +only need to set this on systems which are not Windows or Unix +based and require a line end different from \n. +This is a class method so call as C->C + +=cut + +sub setLineEnd { + shift; + $nl = shift; +} + +=item rewind() + +Rewinds an C so that you can read from it again +starting at the beginning. + +=cut + +sub rewind { + my $self = shift; + + $self->_reset_vars(); + $self->{member}->rewindData() if $self->{member}; +} + +sub _reset_vars { + my $self = shift; + + $self->{line_no} = 0; + $self->{at_end} = 0; + + delete $self->{buffer}; +} + +=item input_record_separator(expr) + +If the argument is given, input_record_separator for this +instance is set to it. The current setting (which may be +the global $/) is always returned. + +=cut + +sub input_record_separator { + my $self = shift; + if (@_) { + $self->{sep} = shift; + $self->{sep_re} = + _sep_as_re($self->{sep}); # Cache the RE as an optimization + } + return exists $self->{sep} ? $self->{sep} : $/; +} + +# Return the input_record_separator in use as an RE fragment +# Note that if we have a per-instance input_record_separator +# we can just return the already converted value. Otherwise, +# the conversion must be done on $/ every time since we cannot +# know whether it has changed or not. +sub _sep_re { + my $self = shift; + + # Important to phrase this way: sep's value may be undef. + return exists $self->{sep} ? $self->{sep_re} : _sep_as_re($/); +} + +# Convert the input record separator into an RE and return it. +sub _sep_as_re { + my $sep = shift; + if (defined $sep) { + if ($sep eq '') { + return "(?:$nl){2,}"; + } else { + $sep =~ s/\n/$nl/og; + return quotemeta $sep; + } + } else { + return undef; + } +} + +=item input_line_number() + +Returns the current line number, but only if you're using C. +Using C will not update the line number. + +=cut + +sub input_line_number { + my $self = shift; + return $self->{line_no}; +} + +=item close() + +Closes the given file handle. + +=cut + +sub close { + my $self = shift; + + $self->_reset_vars(); + $self->{member}->endRead(); +} + +=item buffer_size([ $size ]) + +Gets or sets the buffer size used for reads. +Default is the chunk size used by Archive::Zip. + +=cut + +sub buffer_size { + my ($self, $size) = @_; + + if (!$size) { + return $self->{chunkSize} || Archive::Zip::chunkSize(); + } else { + $self->{chunkSize} = $size; + } +} + +=item getline() + +Returns the next line from the currently open member. +Makes sense only for text files. +A read error is considered fatal enough to die. +Returns undef on eof. All subsequent calls would return undef, +unless a rewind() is called. +Note: The line returned has the input_record_separator (default: newline) removed. + +=item getline( { preserve_line_ending => 1 } ) + +Returns the next line including the line ending. + +=cut + +sub getline { + my ($self, $argref) = @_; + + my $size = $self->buffer_size(); + my $sep = $self->_sep_re(); + + my $preserve_line_ending; + if (ref $argref eq 'HASH') { + $preserve_line_ending = $argref->{'preserve_line_ending'}; + $sep =~ s/\\([^A-Za-z_0-9])+/$1/g; + } + + for (; ;) { + if ( $sep + && defined($self->{buffer}) + && $self->{buffer} =~ s/^(.*?)$sep//s) { + my $line = $1; + $self->{line_no}++; + if ($preserve_line_ending) { + return $line . $sep; + } else { + return $line; + } + } elsif ($self->{at_end}) { + $self->{line_no}++ if $self->{buffer}; + return delete $self->{buffer}; + } + my ($temp, $status) = $self->{member}->readChunk($size); + if ($status != AZ_OK && $status != AZ_STREAM_END) { + die "ERROR: Error reading chunk from archive - $status"; + } + $self->{at_end} = $status == AZ_STREAM_END; + $self->{buffer} .= $$temp; + } +} + +=item read($buffer, $num_bytes_to_read) + +Simulates a normal C system call. +Returns the no. of bytes read. C on error, 0 on eof, I: + + $fh = Archive::Zip::MemberRead->new($zip, "sreeji/secrets.bin"); + while (1) + { + $read = $fh->read($buffer, 1024); + die "FATAL ERROR reading my secrets !\n" if (!defined($read)); + last if (!$read); + # Do processing. + .... + } + +=cut + +# +# All these $_ are required to emulate read(). +# +sub read { + my $self = $_[0]; + my $size = $_[2]; + my ($temp, $status, $ret); + + ($temp, $status) = $self->{member}->readChunk($size); + if ($status != AZ_OK && $status != AZ_STREAM_END) { + $_[1] = undef; + $ret = undef; + } else { + $_[1] = $$temp; + $ret = length($$temp); + } + return $ret; +} + +1; + +=back + +=head1 AUTHOR + +Sreeji K. Das Esreeji_k@yahoo.comE + +See L by Ned Konz without which this module does not make +any sense! + +Minor mods by Ned Konz. + +=head1 COPYRIGHT + +Copyright 2002 Sreeji K. Das. + +This program is free software; you can redistribute it and/or modify it under +the same terms as Perl itself. + +=cut diff --git a/slic3r/linux/local-lib/lib/perl5/Archive/Zip/MockFileHandle.pm b/slic3r/linux/local-lib/lib/perl5/Archive/Zip/MockFileHandle.pm new file mode 100644 index 00000000..b8b11e5f --- /dev/null +++ b/slic3r/linux/local-lib/lib/perl5/Archive/Zip/MockFileHandle.pm @@ -0,0 +1,69 @@ +package Archive::Zip::MockFileHandle; + +# Output file handle that calls a custom write routine +# Ned Konz, March 2000 +# This is provided to help with writing zip files +# when you have to process them a chunk at a time. + +use strict; + +use vars qw{$VERSION}; + +BEGIN { + $VERSION = '1.60'; + $VERSION = eval $VERSION; +} + +sub new { + my $class = shift || __PACKAGE__; + $class = ref($class) || $class; + my $self = bless( + { + 'position' => 0, + 'size' => 0 + }, + $class + ); + return $self; +} + +sub eof { + my $self = shift; + return $self->{'position'} >= $self->{'size'}; +} + +# Copy given buffer to me +sub print { + my $self = shift; + my $bytes = join('', @_); + my $bytesWritten = $self->writeHook($bytes); + if ($self->{'position'} + $bytesWritten > $self->{'size'}) { + $self->{'size'} = $self->{'position'} + $bytesWritten; + } + $self->{'position'} += $bytesWritten; + return $bytesWritten; +} + +# Called on each write. +# Override in subclasses. +# Return number of bytes written (0 on error). +sub writeHook { + my $self = shift; + my $bytes = shift; + return length($bytes); +} + +sub binmode { 1 } + +sub close { 1 } + +sub clearerr { 1 } + +# I'm write-only! +sub read { 0 } + +sub tell { return shift->{'position'} } + +sub opened { 1 } + +1; diff --git a/slic3r/linux/local-lib/lib/perl5/Archive/Zip/NewFileMember.pm b/slic3r/linux/local-lib/lib/perl5/Archive/Zip/NewFileMember.pm new file mode 100644 index 00000000..7cce8962 --- /dev/null +++ b/slic3r/linux/local-lib/lib/perl5/Archive/Zip/NewFileMember.pm @@ -0,0 +1,77 @@ +package Archive::Zip::NewFileMember; + +use strict; +use vars qw( $VERSION @ISA ); + +BEGIN { + $VERSION = '1.60'; + @ISA = qw ( Archive::Zip::FileMember ); +} + +use Archive::Zip qw( + :CONSTANTS + :ERROR_CODES + :UTILITY_METHODS +); + +# Given a file name, set up for eventual writing. +sub _newFromFileNamed { + my $class = shift; + my $fileName = shift; # local FS format + my $newName = shift; + $newName = _asZipDirName($fileName) unless defined($newName); + return undef unless (stat($fileName) && -r _ && !-d _ ); + my $self = $class->new(@_); + $self->{'fileName'} = $newName; + $self->{'externalFileName'} = $fileName; + $self->{'compressionMethod'} = COMPRESSION_STORED; + my @stat = stat(_); + $self->{'compressedSize'} = $self->{'uncompressedSize'} = $stat[7]; + $self->desiredCompressionMethod( + ($self->compressedSize() > 0) + ? COMPRESSION_DEFLATED + : COMPRESSION_STORED + ); + $self->unixFileAttributes($stat[2]); + $self->setLastModFileDateTimeFromUnix($stat[9]); + $self->isTextFile(-T _ ); + return $self; +} + +sub rewindData { + my $self = shift; + + my $status = $self->SUPER::rewindData(@_); + return $status unless $status == AZ_OK; + + return AZ_IO_ERROR unless $self->fh(); + $self->fh()->clearerr(); + $self->fh()->seek(0, IO::Seekable::SEEK_SET) + or return _ioError("rewinding", $self->externalFileName()); + return AZ_OK; +} + +# Return bytes read. Note that first parameter is a ref to a buffer. +# my $data; +# my ( $bytesRead, $status) = $self->readRawChunk( \$data, $chunkSize ); +sub _readRawChunk { + my ($self, $dataRef, $chunkSize) = @_; + return (0, AZ_OK) unless $chunkSize; + my $bytesRead = $self->fh()->read($$dataRef, $chunkSize) + or return (0, _ioError("reading data")); + return ($bytesRead, AZ_OK); +} + +# If I already exist, extraction is a no-op. +sub extractToFileNamed { + my $self = shift; + my $name = shift; # local FS name + if (File::Spec->rel2abs($name) eq + File::Spec->rel2abs($self->externalFileName()) and -r $name) { + return AZ_OK; + } else { + return $self->SUPER::extractToFileNamed($name, @_); + } +} + +1; diff --git a/slic3r/linux/local-lib/lib/perl5/Archive/Zip/StringMember.pm b/slic3r/linux/local-lib/lib/perl5/Archive/Zip/StringMember.pm new file mode 100644 index 00000000..55833efa --- /dev/null +++ b/slic3r/linux/local-lib/lib/perl5/Archive/Zip/StringMember.pm @@ -0,0 +1,64 @@ +package Archive::Zip::StringMember; + +use strict; +use vars qw( $VERSION @ISA ); + +BEGIN { + $VERSION = '1.60'; + @ISA = qw( Archive::Zip::Member ); +} + +use Archive::Zip qw( + :CONSTANTS + :ERROR_CODES +); + +# Create a new string member. Default is COMPRESSION_STORED. +# Can take a ref to a string as well. +sub _newFromString { + my $class = shift; + my $string = shift; + my $name = shift; + my $self = $class->new(@_); + $self->contents($string); + $self->fileName($name) if defined($name); + + # Set the file date to now + $self->setLastModFileDateTimeFromUnix(time()); + $self->unixFileAttributes($self->DEFAULT_FILE_PERMISSIONS); + return $self; +} + +sub _become { + my $self = shift; + my $newClass = shift; + return $self if ref($self) eq $newClass; + delete($self->{'contents'}); + return $self->SUPER::_become($newClass); +} + +# Get or set my contents. Note that we do not call the superclass +# version of this, because it calls us. +sub contents { + my $self = shift; + my $string = shift; + if (defined($string)) { + $self->{'contents'} = + pack('C0a*', (ref($string) eq 'SCALAR') ? $$string : $string); + $self->{'uncompressedSize'} = $self->{'compressedSize'} = + length($self->{'contents'}); + $self->{'compressionMethod'} = COMPRESSION_STORED; + } + return $self->{'contents'}; +} + +# Return bytes read. Note that first parameter is a ref to a buffer. +# my $data; +# my ( $bytesRead, $status) = $self->readRawChunk( \$data, $chunkSize ); +sub _readRawChunk { + my ($self, $dataRef, $chunkSize) = @_; + $$dataRef = substr($self->contents(), $self->_readOffset(), $chunkSize); + return (length($$dataRef), AZ_OK); +} + +1; diff --git a/slic3r/linux/local-lib/lib/perl5/Archive/Zip/Tree.pm b/slic3r/linux/local-lib/lib/perl5/Archive/Zip/Tree.pm new file mode 100644 index 00000000..0f347823 --- /dev/null +++ b/slic3r/linux/local-lib/lib/perl5/Archive/Zip/Tree.pm @@ -0,0 +1,48 @@ +package Archive::Zip::Tree; + +use strict; +use vars qw{$VERSION}; + +BEGIN { + $VERSION = '1.60'; +} + +use Archive::Zip; + +warn( + "Archive::Zip::Tree is deprecated; its methods have been moved into Archive::Zip." +) if $^W; + +1; + +__END__ + +=head1 NAME + +Archive::Zip::Tree - (DEPRECATED) methods for adding/extracting trees using Archive::Zip + +=head1 DESCRIPTION + +This module is deprecated, because all its methods were moved into the main +Archive::Zip module. + +It is included in the distribution merely to avoid breaking old code. + +See L. + +=head1 AUTHOR + +Ned Konz, perl@bike-nomad.com + +=head1 COPYRIGHT + +Copyright (c) 2000-2002 Ned Konz. All rights reserved. This program is free +software; you can redistribute it and/or modify it under the same terms +as Perl itself. + +=head1 SEE ALSO + +L + +=cut + diff --git a/slic3r/linux/local-lib/lib/perl5/Archive/Zip/ZipFileMember.pm b/slic3r/linux/local-lib/lib/perl5/Archive/Zip/ZipFileMember.pm new file mode 100644 index 00000000..863b56eb --- /dev/null +++ b/slic3r/linux/local-lib/lib/perl5/Archive/Zip/ZipFileMember.pm @@ -0,0 +1,416 @@ +package Archive::Zip::ZipFileMember; + +use strict; +use vars qw( $VERSION @ISA ); + +BEGIN { + $VERSION = '1.60'; + @ISA = qw ( Archive::Zip::FileMember ); +} + +use Archive::Zip qw( + :CONSTANTS + :ERROR_CODES + :PKZIP_CONSTANTS + :UTILITY_METHODS +); + +# Create a new Archive::Zip::ZipFileMember +# given a filename and optional open file handle +# +sub _newFromZipFile { + my $class = shift; + my $fh = shift; + my $externalFileName = shift; + my $possibleEocdOffset = shift; # normally 0 + + my $self = $class->new( + 'crc32' => 0, + 'diskNumberStart' => 0, + 'localHeaderRelativeOffset' => 0, + 'dataOffset' => 0, # localHeaderRelativeOffset + header length + @_ + ); + $self->{'externalFileName'} = $externalFileName; + $self->{'fh'} = $fh; + $self->{'possibleEocdOffset'} = $possibleEocdOffset; + return $self; +} + +sub isDirectory { + my $self = shift; + return (substr($self->fileName, -1, 1) eq '/' + and $self->uncompressedSize == 0); +} + +# Seek to the beginning of the local header, just past the signature. +# Verify that the local header signature is in fact correct. +# Update the localHeaderRelativeOffset if necessary by adding the possibleEocdOffset. +# Returns status. + +sub _seekToLocalHeader { + my $self = shift; + my $where = shift; # optional + my $previousWhere = shift; # optional + + $where = $self->localHeaderRelativeOffset() unless defined($where); + + # avoid loop on certain corrupt files (from Julian Field) + return _formatError("corrupt zip file") + if defined($previousWhere) && $where == $previousWhere; + + my $status; + my $signature; + + $status = $self->fh()->seek($where, IO::Seekable::SEEK_SET); + return _ioError("seeking to local header") unless $status; + + ($status, $signature) = + _readSignature($self->fh(), $self->externalFileName(), + LOCAL_FILE_HEADER_SIGNATURE); + return $status if $status == AZ_IO_ERROR; + + # retry with EOCD offset if any was given. + if ($status == AZ_FORMAT_ERROR && $self->{'possibleEocdOffset'}) { + $status = $self->_seekToLocalHeader( + $self->localHeaderRelativeOffset() + $self->{'possibleEocdOffset'}, + $where + ); + if ($status == AZ_OK) { + $self->{'localHeaderRelativeOffset'} += + $self->{'possibleEocdOffset'}; + $self->{'possibleEocdOffset'} = 0; + } + } + + return $status; +} + +# Because I'm going to delete the file handle, read the local file +# header if the file handle is seekable. If it is not, I assume that +# I've already read the local header. +# Return ( $status, $self ) + +sub _become { + my $self = shift; + my $newClass = shift; + return $self if ref($self) eq $newClass; + + my $status = AZ_OK; + + if (_isSeekable($self->fh())) { + my $here = $self->fh()->tell(); + $status = $self->_seekToLocalHeader(); + $status = $self->_readLocalFileHeader() if $status == AZ_OK; + $self->fh()->seek($here, IO::Seekable::SEEK_SET); + return $status unless $status == AZ_OK; + } + + delete($self->{'eocdCrc32'}); + delete($self->{'diskNumberStart'}); + delete($self->{'localHeaderRelativeOffset'}); + delete($self->{'dataOffset'}); + + return $self->SUPER::_become($newClass); +} + +sub diskNumberStart { + shift->{'diskNumberStart'}; +} + +sub localHeaderRelativeOffset { + shift->{'localHeaderRelativeOffset'}; +} + +sub dataOffset { + shift->{'dataOffset'}; +} + +# Skip local file header, updating only extra field stuff. +# Assumes that fh is positioned before signature. +sub _skipLocalFileHeader { + my $self = shift; + my $header; + my $bytesRead = $self->fh()->read($header, LOCAL_FILE_HEADER_LENGTH); + if ($bytesRead != LOCAL_FILE_HEADER_LENGTH) { + return _ioError("reading local file header"); + } + my $fileNameLength; + my $extraFieldLength; + my $bitFlag; + ( + undef, # $self->{'versionNeededToExtract'}, + $bitFlag, + undef, # $self->{'compressionMethod'}, + undef, # $self->{'lastModFileDateTime'}, + undef, # $crc32, + undef, # $compressedSize, + undef, # $uncompressedSize, + $fileNameLength, + $extraFieldLength + ) = unpack(LOCAL_FILE_HEADER_FORMAT, $header); + + if ($fileNameLength) { + $self->fh()->seek($fileNameLength, IO::Seekable::SEEK_CUR) + or return _ioError("skipping local file name"); + } + + if ($extraFieldLength) { + $bytesRead = + $self->fh()->read($self->{'localExtraField'}, $extraFieldLength); + if ($bytesRead != $extraFieldLength) { + return _ioError("reading local extra field"); + } + } + + $self->{'dataOffset'} = $self->fh()->tell(); + + if ($bitFlag & GPBF_HAS_DATA_DESCRIPTOR_MASK) { + + # Read the crc32, compressedSize, and uncompressedSize from the + # extended data descriptor, which directly follows the compressed data. + # + # Skip over the compressed file data (assumes that EOCD compressedSize + # was correct) + $self->fh()->seek($self->{'compressedSize'}, IO::Seekable::SEEK_CUR) + or return _ioError("seeking to extended local header"); + + # these values should be set correctly from before. + my $oldCrc32 = $self->{'eocdCrc32'}; + my $oldCompressedSize = $self->{'compressedSize'}; + my $oldUncompressedSize = $self->{'uncompressedSize'}; + + my $status = $self->_readDataDescriptor(); + return $status unless $status == AZ_OK; + + # The buffer withe encrypted data is prefixed with a new + # encrypted 12 byte header. The size only changes when + # the buffer is also compressed + $self->isEncrypted && $oldUncompressedSize > $self->{uncompressedSize} + and $oldUncompressedSize -= DATA_DESCRIPTOR_LENGTH; + + return _formatError( + "CRC or size mismatch while skipping data descriptor") + if ( $oldCrc32 != $self->{'crc32'} + || $oldUncompressedSize != $self->{'uncompressedSize'}); + + $self->{'crc32'} = 0 + if $self->compressionMethod() == COMPRESSION_STORED ; + } + + return AZ_OK; +} + +# Read from a local file header into myself. Returns AZ_OK if successful. +# Assumes that fh is positioned after signature. +# Note that crc32, compressedSize, and uncompressedSize will be 0 if +# GPBF_HAS_DATA_DESCRIPTOR_MASK is set in the bitFlag. + +sub _readLocalFileHeader { + my $self = shift; + my $header; + my $bytesRead = $self->fh()->read($header, LOCAL_FILE_HEADER_LENGTH); + if ($bytesRead != LOCAL_FILE_HEADER_LENGTH) { + return _ioError("reading local file header"); + } + my $fileNameLength; + my $crc32; + my $compressedSize; + my $uncompressedSize; + my $extraFieldLength; + ( + $self->{'versionNeededToExtract'}, $self->{'bitFlag'}, + $self->{'compressionMethod'}, $self->{'lastModFileDateTime'}, + $crc32, $compressedSize, + $uncompressedSize, $fileNameLength, + $extraFieldLength + ) = unpack(LOCAL_FILE_HEADER_FORMAT, $header); + + if ($fileNameLength) { + my $fileName; + $bytesRead = $self->fh()->read($fileName, $fileNameLength); + if ($bytesRead != $fileNameLength) { + return _ioError("reading local file name"); + } + $self->fileName($fileName); + } + + if ($extraFieldLength) { + $bytesRead = + $self->fh()->read($self->{'localExtraField'}, $extraFieldLength); + if ($bytesRead != $extraFieldLength) { + return _ioError("reading local extra field"); + } + } + + $self->{'dataOffset'} = $self->fh()->tell(); + + if ($self->hasDataDescriptor()) { + + # Read the crc32, compressedSize, and uncompressedSize from the + # extended data descriptor. + # Skip over the compressed file data (assumes that EOCD compressedSize + # was correct) + $self->fh()->seek($self->{'compressedSize'}, IO::Seekable::SEEK_CUR) + or return _ioError("seeking to extended local header"); + + my $status = $self->_readDataDescriptor(); + return $status unless $status == AZ_OK; + } else { + return _formatError( + "CRC or size mismatch after reading data descriptor") + if ( $self->{'crc32'} != $crc32 + || $self->{'uncompressedSize'} != $uncompressedSize); + } + + return AZ_OK; +} + +# This will read the data descriptor, which is after the end of compressed file +# data in members that have GPBF_HAS_DATA_DESCRIPTOR_MASK set in their bitFlag. +# The only reliable way to find these is to rely on the EOCD compressedSize. +# Assumes that file is positioned immediately after the compressed data. +# Returns status; sets crc32, compressedSize, and uncompressedSize. +sub _readDataDescriptor { + my $self = shift; + my $signatureData; + my $header; + my $crc32; + my $compressedSize; + my $uncompressedSize; + + my $bytesRead = $self->fh()->read($signatureData, SIGNATURE_LENGTH); + return _ioError("reading header signature") + if $bytesRead != SIGNATURE_LENGTH; + my $signature = unpack(SIGNATURE_FORMAT, $signatureData); + + # unfortunately, the signature appears to be optional. + if ($signature == DATA_DESCRIPTOR_SIGNATURE + && ($signature != $self->{'crc32'})) { + $bytesRead = $self->fh()->read($header, DATA_DESCRIPTOR_LENGTH); + return _ioError("reading data descriptor") + if $bytesRead != DATA_DESCRIPTOR_LENGTH; + + ($crc32, $compressedSize, $uncompressedSize) = + unpack(DATA_DESCRIPTOR_FORMAT, $header); + } else { + $bytesRead = $self->fh()->read($header, DATA_DESCRIPTOR_LENGTH_NO_SIG); + return _ioError("reading data descriptor") + if $bytesRead != DATA_DESCRIPTOR_LENGTH_NO_SIG; + + $crc32 = $signature; + ($compressedSize, $uncompressedSize) = + unpack(DATA_DESCRIPTOR_FORMAT_NO_SIG, $header); + } + + $self->{'eocdCrc32'} = $self->{'crc32'} + unless defined($self->{'eocdCrc32'}); + $self->{'crc32'} = $crc32; + $self->{'compressedSize'} = $compressedSize; + $self->{'uncompressedSize'} = $uncompressedSize; + + return AZ_OK; +} + +# Read a Central Directory header. Return AZ_OK on success. +# Assumes that fh is positioned right after the signature. + +sub _readCentralDirectoryFileHeader { + my $self = shift; + my $fh = $self->fh(); + my $header = ''; + my $bytesRead = $fh->read($header, CENTRAL_DIRECTORY_FILE_HEADER_LENGTH); + if ($bytesRead != CENTRAL_DIRECTORY_FILE_HEADER_LENGTH) { + return _ioError("reading central dir header"); + } + my ($fileNameLength, $extraFieldLength, $fileCommentLength); + ( + $self->{'versionMadeBy'}, + $self->{'fileAttributeFormat'}, + $self->{'versionNeededToExtract'}, + $self->{'bitFlag'}, + $self->{'compressionMethod'}, + $self->{'lastModFileDateTime'}, + $self->{'crc32'}, + $self->{'compressedSize'}, + $self->{'uncompressedSize'}, + $fileNameLength, + $extraFieldLength, + $fileCommentLength, + $self->{'diskNumberStart'}, + $self->{'internalFileAttributes'}, + $self->{'externalFileAttributes'}, + $self->{'localHeaderRelativeOffset'} + ) = unpack(CENTRAL_DIRECTORY_FILE_HEADER_FORMAT, $header); + + $self->{'eocdCrc32'} = $self->{'crc32'}; + + if ($fileNameLength) { + $bytesRead = $fh->read($self->{'fileName'}, $fileNameLength); + if ($bytesRead != $fileNameLength) { + _ioError("reading central dir filename"); + } + } + if ($extraFieldLength) { + $bytesRead = $fh->read($self->{'cdExtraField'}, $extraFieldLength); + if ($bytesRead != $extraFieldLength) { + return _ioError("reading central dir extra field"); + } + } + if ($fileCommentLength) { + $bytesRead = $fh->read($self->{'fileComment'}, $fileCommentLength); + if ($bytesRead != $fileCommentLength) { + return _ioError("reading central dir file comment"); + } + } + + # NK 10/21/04: added to avoid problems with manipulated headers + if ( $self->{'uncompressedSize'} != $self->{'compressedSize'} + and $self->{'compressionMethod'} == COMPRESSION_STORED) { + $self->{'uncompressedSize'} = $self->{'compressedSize'}; + } + + $self->desiredCompressionMethod($self->compressionMethod()); + + return AZ_OK; +} + +sub rewindData { + my $self = shift; + + my $status = $self->SUPER::rewindData(@_); + return $status unless $status == AZ_OK; + + return AZ_IO_ERROR unless $self->fh(); + + $self->fh()->clearerr(); + + # Seek to local file header. + # The only reason that I'm doing this this way is that the extraField + # length seems to be different between the CD header and the LF header. + $status = $self->_seekToLocalHeader(); + return $status unless $status == AZ_OK; + + # skip local file header + $status = $self->_skipLocalFileHeader(); + return $status unless $status == AZ_OK; + + # Seek to beginning of file data + $self->fh()->seek($self->dataOffset(), IO::Seekable::SEEK_SET) + or return _ioError("seeking to beginning of file data"); + + return AZ_OK; +} + +# Return bytes read. Note that first parameter is a ref to a buffer. +# my $data; +# my ( $bytesRead, $status) = $self->readRawChunk( \$data, $chunkSize ); +sub _readRawChunk { + my ($self, $dataRef, $chunkSize) = @_; + return (0, AZ_OK) unless $chunkSize; + my $bytesRead = $self->fh()->read($$dataRef, $chunkSize) + or return (0, _ioError("reading data")); + return ($bytesRead, AZ_OK); +} + +1; diff --git a/slic3r/linux/local-lib/lib/perl5/B.pm b/slic3r/linux/local-lib/lib/perl5/B.pm new file mode 100644 index 00000000..9dd9d9f1 --- /dev/null +++ b/slic3r/linux/local-lib/lib/perl5/B.pm @@ -0,0 +1,282 @@ +#line 1 "B.pm" +# B.pm +# +# Copyright (c) 1996, 1997, 1998 Malcolm Beattie +# +# You may distribute under the terms of either the GNU General Public +# License or the Artistic License, as specified in the README file. +# +package B; +use strict; + +require Exporter; +@B::ISA = qw(Exporter); + +# walkoptree_slow comes from B.pm (you are there), +# walkoptree comes from B.xs + +BEGIN { + $B::VERSION = '1.62'; + @B::EXPORT_OK = (); + + # Our BOOT code needs $VERSION set, and will append to @EXPORT_OK. + # Want our constants loaded before the compiler meets OPf_KIDS below, as + # the combination of having the constant stay a Proxy Constant Subroutine + # and its value being inlined saves a little over .5K + + require XSLoader; + XSLoader::load(); +} + +push @B::EXPORT_OK, (qw(minus_c ppname save_BEGINs + class peekop cast_I32 cstring cchar hash threadsv_names + main_root main_start main_cv svref_2object opnumber + sub_generation amagic_generation perlstring + walkoptree_slow walkoptree walkoptree_exec walksymtable + parents comppadlist sv_undef compile_stats timing_info + begin_av init_av check_av end_av regex_padav dowarn + defstash curstash warnhook diehook inc_gv @optype + @specialsv_name unitcheck_av safename)); + +@B::SV::ISA = 'B::OBJECT'; +@B::NULL::ISA = 'B::SV'; +@B::PV::ISA = 'B::SV'; +@B::IV::ISA = 'B::SV'; +@B::NV::ISA = 'B::SV'; +# RV is eliminated with 5.11.0, but effectively is a specialisation of IV now. +@B::RV::ISA = $] >= 5.011 ? 'B::IV' : 'B::SV'; +@B::PVIV::ISA = qw(B::PV B::IV); +@B::PVNV::ISA = qw(B::PVIV B::NV); +@B::PVMG::ISA = 'B::PVNV'; +@B::REGEXP::ISA = 'B::PVMG' if $] >= 5.011; +@B::INVLIST::ISA = 'B::PV' if $] >= 5.019; +@B::PVLV::ISA = 'B::GV'; +@B::BM::ISA = 'B::GV'; +@B::AV::ISA = 'B::PVMG'; +@B::GV::ISA = 'B::PVMG'; +@B::HV::ISA = 'B::PVMG'; +@B::CV::ISA = 'B::PVMG'; +@B::IO::ISA = 'B::PVMG'; +@B::FM::ISA = 'B::CV'; + +@B::OP::ISA = 'B::OBJECT'; +@B::UNOP::ISA = 'B::OP'; +@B::UNOP_AUX::ISA = 'B::UNOP'; +@B::BINOP::ISA = 'B::UNOP'; +@B::LOGOP::ISA = 'B::UNOP'; +@B::LISTOP::ISA = 'B::BINOP'; +@B::SVOP::ISA = 'B::OP'; +@B::PADOP::ISA = 'B::OP'; +@B::PVOP::ISA = 'B::OP'; +@B::LOOP::ISA = 'B::LISTOP'; +@B::PMOP::ISA = 'B::LISTOP'; +@B::COP::ISA = 'B::OP'; +@B::METHOP::ISA = 'B::OP'; + +@B::SPECIAL::ISA = 'B::OBJECT'; + +@B::optype = qw(OP UNOP BINOP LOGOP LISTOP PMOP SVOP PADOP PVOP LOOP COP + METHOP UNOP_AUX); +# bytecode.pl contained the following comment: +# Nullsv *must* come first in the following so that the condition +# ($$sv == 0) can continue to be used to test (sv == Nullsv). +@B::specialsv_name = qw(Nullsv &PL_sv_undef &PL_sv_yes &PL_sv_no + (SV*)pWARN_ALL (SV*)pWARN_NONE (SV*)pWARN_STD); + +{ + # Stop "-w" from complaining about the lack of a real B::OBJECT class + package B::OBJECT; +} + +sub B::GV::SAFENAME { + safename(shift()->NAME); +} + +sub safename { + my $name = shift; + + # The regex below corresponds to the isCONTROLVAR macro + # from toke.c + + $name =~ s/^\c?/^?/ + or $name =~ s/^([\cA-\cZ\c\\c[\c]\c_\c^])/ + "^" . chr( utf8::unicode_to_native( 64 ^ ord($1) ))/e; + + # When we say unicode_to_native we really mean ascii_to_native, + # which matters iff this is a non-ASCII platform (EBCDIC). '\c?' would + # not have to be special cased, except for non-ASCII. + + return $name; +} + +sub B::IV::int_value { + my ($self) = @_; + return (($self->FLAGS() & SVf_IVisUV()) ? $self->UVX : $self->IV); +} + +sub B::NULL::as_string() {""} +*B::IV::as_string = \*B::IV::int_value; +*B::PV::as_string = \*B::PV::PV; + +# The input typemap checking makes no distinction between different SV types, +# so the XS body will generate the same C code, despite the different XS +# "types". So there is no change in behaviour from doing "newXS" like this, +# compared with the old approach of having a (near) duplicate XS body. +# We should fix the typemap checking. +*B::IV::RV = \*B::PV::RV if $] > 5.012; + +my $debug; +my $op_count = 0; +my @parents = (); + +sub debug { + my ($class, $value) = @_; + $debug = $value; + walkoptree_debug($value); +} + +sub class { + my $obj = shift; + my $name = ref $obj; + $name =~ s/^.*:://; + return $name; +} + +sub parents { \@parents } + +# For debugging +sub peekop { + my $op = shift; + return sprintf("%s (0x%x) %s", class($op), $$op, $op->name); +} + +sub walkoptree_slow { + my($op, $method, $level) = @_; + $op_count++; # just for statistics + $level ||= 0; + warn(sprintf("walkoptree: %d. %s\n", $level, peekop($op))) if $debug; + $op->$method($level) if $op->can($method); + if ($$op && ($op->flags & OPf_KIDS)) { + my $kid; + unshift(@parents, $op); + for ($kid = $op->first; $$kid; $kid = $kid->sibling) { + walkoptree_slow($kid, $method, $level + 1); + } + shift @parents; + } + if (class($op) eq 'PMOP' + && ref($op->pmreplroot) + && ${$op->pmreplroot} + && $op->pmreplroot->isa( 'B::OP' )) + { + unshift(@parents, $op); + walkoptree_slow($op->pmreplroot, $method, $level + 1); + shift @parents; + } +} + +sub compile_stats { + return "Total number of OPs processed: $op_count\n"; +} + +sub timing_info { + my ($sec, $min, $hr) = localtime; + my ($user, $sys) = times; + sprintf("%02d:%02d:%02d user=$user sys=$sys", + $hr, $min, $sec, $user, $sys); +} + +my %symtable; + +sub clearsym { + %symtable = (); +} + +sub savesym { + my ($obj, $value) = @_; +# warn(sprintf("savesym: sym_%x => %s\n", $$obj, $value)); # debug + $symtable{sprintf("sym_%x", $$obj)} = $value; +} + +sub objsym { + my $obj = shift; + return $symtable{sprintf("sym_%x", $$obj)}; +} + +sub walkoptree_exec { + my ($op, $method, $level) = @_; + $level ||= 0; + my ($sym, $ppname); + my $prefix = " " x $level; + for (; $$op; $op = $op->next) { + $sym = objsym($op); + if (defined($sym)) { + print $prefix, "goto $sym\n"; + return; + } + savesym($op, sprintf("%s (0x%lx)", class($op), $$op)); + $op->$method($level); + $ppname = $op->name; + if ($ppname =~ + /^(d?or(assign)?|and(assign)?|mapwhile|grepwhile|entertry|range|cond_expr)$/) + { + print $prefix, uc($1), " => {\n"; + walkoptree_exec($op->other, $method, $level + 1); + print $prefix, "}\n"; + } elsif ($ppname eq "match" || $ppname eq "subst") { + my $pmreplstart = $op->pmreplstart; + if ($$pmreplstart) { + print $prefix, "PMREPLSTART => {\n"; + walkoptree_exec($pmreplstart, $method, $level + 1); + print $prefix, "}\n"; + } + } elsif ($ppname eq "substcont") { + print $prefix, "SUBSTCONT => {\n"; + walkoptree_exec($op->other->pmreplstart, $method, $level + 1); + print $prefix, "}\n"; + $op = $op->other; + } elsif ($ppname eq "enterloop") { + print $prefix, "REDO => {\n"; + walkoptree_exec($op->redoop, $method, $level + 1); + print $prefix, "}\n", $prefix, "NEXT => {\n"; + walkoptree_exec($op->nextop, $method, $level + 1); + print $prefix, "}\n", $prefix, "LAST => {\n"; + walkoptree_exec($op->lastop, $method, $level + 1); + print $prefix, "}\n"; + } elsif ($ppname eq "subst") { + my $replstart = $op->pmreplstart; + if ($$replstart) { + print $prefix, "SUBST => {\n"; + walkoptree_exec($replstart, $method, $level + 1); + print $prefix, "}\n"; + } + } + } +} + +sub walksymtable { + my ($symref, $method, $recurse, $prefix) = @_; + my $sym; + my $ref; + my $fullname; + no strict 'refs'; + $prefix = '' unless defined $prefix; + foreach my $sym ( sort keys %$symref ) { + $ref= $symref->{$sym}; + $fullname = "*main::".$prefix.$sym; + if ($sym =~ /::$/) { + $sym = $prefix . $sym; + if (svref_2object(\*$sym)->NAME ne "main::" && $sym ne "::" && &$recurse($sym)) { + walksymtable(\%$fullname, $method, $recurse, $sym); + } + } else { + svref_2object(\*$fullname)->$method(); + } + } +} + +1; + +__END__ + +#line 1419 diff --git a/slic3r/linux/local-lib/lib/perl5/Capture/Tiny.pm b/slic3r/linux/local-lib/lib/perl5/Capture/Tiny.pm new file mode 100644 index 00000000..8907ec3e --- /dev/null +++ b/slic3r/linux/local-lib/lib/perl5/Capture/Tiny.pm @@ -0,0 +1,901 @@ +use 5.006; +use strict; +use warnings; +package Capture::Tiny; +# ABSTRACT: Capture STDOUT and STDERR from Perl, XS or external programs +our $VERSION = '0.46'; +use Carp (); +use Exporter (); +use IO::Handle (); +use File::Spec (); +use File::Temp qw/tempfile tmpnam/; +use Scalar::Util qw/reftype blessed/; +# Get PerlIO or fake it +BEGIN { + local $@; + eval { require PerlIO; PerlIO->can('get_layers') } + or *PerlIO::get_layers = sub { return () }; +} + +#--------------------------------------------------------------------------# +# create API subroutines and export them +# [do STDOUT flag, do STDERR flag, do merge flag, do tee flag] +#--------------------------------------------------------------------------# + +my %api = ( + capture => [1,1,0,0], + capture_stdout => [1,0,0,0], + capture_stderr => [0,1,0,0], + capture_merged => [1,1,1,0], + tee => [1,1,0,1], + tee_stdout => [1,0,0,1], + tee_stderr => [0,1,0,1], + tee_merged => [1,1,1,1], +); + +for my $sub ( keys %api ) { + my $args = join q{, }, @{$api{$sub}}; + eval "sub $sub(&;@) {unshift \@_, $args; goto \\&_capture_tee;}"; ## no critic +} + +our @ISA = qw/Exporter/; +our @EXPORT_OK = keys %api; +our %EXPORT_TAGS = ( 'all' => \@EXPORT_OK ); + +#--------------------------------------------------------------------------# +# constants and fixtures +#--------------------------------------------------------------------------# + +my $IS_WIN32 = $^O eq 'MSWin32'; + +##our $DEBUG = $ENV{PERL_CAPTURE_TINY_DEBUG}; +## +##my $DEBUGFH; +##open $DEBUGFH, "> DEBUG" if $DEBUG; +## +##*_debug = $DEBUG ? sub(@) { print {$DEBUGFH} @_ } : sub(){0}; + +our $TIMEOUT = 30; + +#--------------------------------------------------------------------------# +# command to tee output -- the argument is a filename that must +# be opened to signal that the process is ready to receive input. +# This is annoying, but seems to be the best that can be done +# as a simple, portable IPC technique +#--------------------------------------------------------------------------# +my @cmd = ($^X, '-C0', '-e', <<'HERE'); +use Fcntl; +$SIG{HUP}=sub{exit}; +if ( my $fn=shift ) { + sysopen(my $fh, qq{$fn}, O_WRONLY|O_CREAT|O_EXCL) or die $!; + print {$fh} $$; + close $fh; +} +my $buf; while (sysread(STDIN, $buf, 2048)) { + syswrite(STDOUT, $buf); syswrite(STDERR, $buf); +} +HERE + +#--------------------------------------------------------------------------# +# filehandle manipulation +#--------------------------------------------------------------------------# + +sub _relayer { + my ($fh, $apply_layers) = @_; + # _debug("# requested layers (@{$layers}) for @{[fileno $fh]}\n"); + + # eliminate pseudo-layers + binmode( $fh, ":raw" ); + # strip off real layers until only :unix is left + while ( 1 < ( my $layers =()= PerlIO::get_layers( $fh, output => 1 ) ) ) { + binmode( $fh, ":pop" ); + } + # apply other layers + my @to_apply = @$apply_layers; + shift @to_apply; # eliminate initial :unix + # _debug("# applying layers (unix @to_apply) to @{[fileno $fh]}\n"); + binmode($fh, ":" . join(":",@to_apply)); +} + +sub _name { + my $glob = shift; + no strict 'refs'; ## no critic + return *{$glob}{NAME}; +} + +sub _open { + open $_[0], $_[1] or Carp::confess "Error from open(" . join(q{, }, @_) . "): $!"; + # _debug( "# open " . join( ", " , map { defined $_ ? _name($_) : 'undef' } @_ ) . " as " . fileno( $_[0] ) . "\n" ); +} + +sub _close { + # _debug( "# closing " . ( defined $_[0] ? _name($_[0]) : 'undef' ) . " on " . fileno( $_[0] ) . "\n" ); + close $_[0] or Carp::confess "Error from close(" . join(q{, }, @_) . "): $!"; +} + +my %dup; # cache this so STDIN stays fd0 +my %proxy_count; +sub _proxy_std { + my %proxies; + if ( ! defined fileno STDIN ) { + $proxy_count{stdin}++; + if (defined $dup{stdin}) { + _open \*STDIN, "<&=" . fileno($dup{stdin}); + # _debug( "# restored proxy STDIN as " . (defined fileno STDIN ? fileno STDIN : 'undef' ) . "\n" ); + } + else { + _open \*STDIN, "<" . File::Spec->devnull; + # _debug( "# proxied STDIN as " . (defined fileno STDIN ? fileno STDIN : 'undef' ) . "\n" ); + _open $dup{stdin} = IO::Handle->new, "<&=STDIN"; + } + $proxies{stdin} = \*STDIN; + binmode(STDIN, ':utf8') if $] >= 5.008; ## no critic + } + if ( ! defined fileno STDOUT ) { + $proxy_count{stdout}++; + if (defined $dup{stdout}) { + _open \*STDOUT, ">&=" . fileno($dup{stdout}); + # _debug( "# restored proxy STDOUT as " . (defined fileno STDOUT ? fileno STDOUT : 'undef' ) . "\n" ); + } + else { + _open \*STDOUT, ">" . File::Spec->devnull; + # _debug( "# proxied STDOUT as " . (defined fileno STDOUT ? fileno STDOUT : 'undef' ) . "\n" ); + _open $dup{stdout} = IO::Handle->new, ">&=STDOUT"; + } + $proxies{stdout} = \*STDOUT; + binmode(STDOUT, ':utf8') if $] >= 5.008; ## no critic + } + if ( ! defined fileno STDERR ) { + $proxy_count{stderr}++; + if (defined $dup{stderr}) { + _open \*STDERR, ">&=" . fileno($dup{stderr}); + # _debug( "# restored proxy STDERR as " . (defined fileno STDERR ? fileno STDERR : 'undef' ) . "\n" ); + } + else { + _open \*STDERR, ">" . File::Spec->devnull; + # _debug( "# proxied STDERR as " . (defined fileno STDERR ? fileno STDERR : 'undef' ) . "\n" ); + _open $dup{stderr} = IO::Handle->new, ">&=STDERR"; + } + $proxies{stderr} = \*STDERR; + binmode(STDERR, ':utf8') if $] >= 5.008; ## no critic + } + return %proxies; +} + +sub _unproxy { + my (%proxies) = @_; + # _debug( "# unproxying: " . join(" ", keys %proxies) . "\n" ); + for my $p ( keys %proxies ) { + $proxy_count{$p}--; + # _debug( "# unproxied " . uc($p) . " ($proxy_count{$p} left)\n" ); + if ( ! $proxy_count{$p} ) { + _close $proxies{$p}; + _close $dup{$p} unless $] < 5.008; # 5.6 will have already closed this as dup + delete $dup{$p}; + } + } +} + +sub _copy_std { + my %handles; + for my $h ( qw/stdout stderr stdin/ ) { + next if $h eq 'stdin' && ! $IS_WIN32; # WIN32 hangs on tee without STDIN copied + my $redir = $h eq 'stdin' ? "<&" : ">&"; + _open $handles{$h} = IO::Handle->new(), $redir . uc($h); # ">&STDOUT" or "<&STDIN" + } + return \%handles; +} + +# In some cases we open all (prior to forking) and in others we only open +# the output handles (setting up redirection) +sub _open_std { + my ($handles) = @_; + _open \*STDIN, "<&" . fileno $handles->{stdin} if defined $handles->{stdin}; + _open \*STDOUT, ">&" . fileno $handles->{stdout} if defined $handles->{stdout}; + _open \*STDERR, ">&" . fileno $handles->{stderr} if defined $handles->{stderr}; +} + +#--------------------------------------------------------------------------# +# private subs +#--------------------------------------------------------------------------# + +sub _start_tee { + my ($which, $stash) = @_; # $which is "stdout" or "stderr" + # setup pipes + $stash->{$_}{$which} = IO::Handle->new for qw/tee reader/; + pipe $stash->{reader}{$which}, $stash->{tee}{$which}; + # _debug( "# pipe for $which\: " . _name($stash->{tee}{$which}) . " " . fileno( $stash->{tee}{$which} ) . " => " . _name($stash->{reader}{$which}) . " " . fileno( $stash->{reader}{$which}) . "\n" ); + select((select($stash->{tee}{$which}), $|=1)[0]); # autoflush + # setup desired redirection for parent and child + $stash->{new}{$which} = $stash->{tee}{$which}; + $stash->{child}{$which} = { + stdin => $stash->{reader}{$which}, + stdout => $stash->{old}{$which}, + stderr => $stash->{capture}{$which}, + }; + # flag file is used to signal the child is ready + $stash->{flag_files}{$which} = scalar tmpnam(); + # execute @cmd as a separate process + if ( $IS_WIN32 ) { + my $old_eval_err=$@; + undef $@; + + eval "use Win32API::File qw/GetOsFHandle SetHandleInformation fileLastError HANDLE_FLAG_INHERIT INVALID_HANDLE_VALUE/ "; + # _debug( "# Win32API::File loaded\n") unless $@; + my $os_fhandle = GetOsFHandle( $stash->{tee}{$which} ); + # _debug( "# Couldn't get OS handle: " . fileLastError() . "\n") if ! defined $os_fhandle || $os_fhandle == INVALID_HANDLE_VALUE(); + my $result = SetHandleInformation( $os_fhandle, HANDLE_FLAG_INHERIT(), 0); + # _debug( $result ? "# set no-inherit flag on $which tee\n" : ("# can't disable tee handle flag inherit: " . fileLastError() . "\n")); + _open_std( $stash->{child}{$which} ); + $stash->{pid}{$which} = system(1, @cmd, $stash->{flag_files}{$which}); + # not restoring std here as it all gets redirected again shortly anyway + $@=$old_eval_err; + } + else { # use fork + _fork_exec( $which, $stash ); + } +} + +sub _fork_exec { + my ($which, $stash) = @_; # $which is "stdout" or "stderr" + my $pid = fork; + if ( not defined $pid ) { + Carp::confess "Couldn't fork(): $!"; + } + elsif ($pid == 0) { # child + # _debug( "# in child process ...\n" ); + untie *STDIN; untie *STDOUT; untie *STDERR; + _close $stash->{tee}{$which}; + # _debug( "# redirecting handles in child ...\n" ); + _open_std( $stash->{child}{$which} ); + # _debug( "# calling exec on command ...\n" ); + exec @cmd, $stash->{flag_files}{$which}; + } + $stash->{pid}{$which} = $pid +} + +my $have_usleep = eval "use Time::HiRes 'usleep'; 1"; +sub _files_exist { + return 1 if @_ == grep { -f } @_; + Time::HiRes::usleep(1000) if $have_usleep; + return 0; +} + +sub _wait_for_tees { + my ($stash) = @_; + my $start = time; + my @files = values %{$stash->{flag_files}}; + my $timeout = defined $ENV{PERL_CAPTURE_TINY_TIMEOUT} + ? $ENV{PERL_CAPTURE_TINY_TIMEOUT} : $TIMEOUT; + 1 until _files_exist(@files) || ($timeout && (time - $start > $timeout)); + Carp::confess "Timed out waiting for subprocesses to start" if ! _files_exist(@files); + unlink $_ for @files; +} + +sub _kill_tees { + my ($stash) = @_; + if ( $IS_WIN32 ) { + # _debug( "# closing handles\n"); + close($_) for values %{ $stash->{tee} }; + # _debug( "# waiting for subprocesses to finish\n"); + my $start = time; + 1 until wait == -1 || (time - $start > 30); + } + else { + _close $_ for values %{ $stash->{tee} }; + waitpid $_, 0 for values %{ $stash->{pid} }; + } +} + +sub _slurp { + my ($name, $stash) = @_; + my ($fh, $pos) = map { $stash->{$_}{$name} } qw/capture pos/; + # _debug( "# slurping captured $name from " . fileno($fh) . " at pos $pos with layers: @{[PerlIO::get_layers($fh)]}\n"); + seek( $fh, $pos, 0 ) or die "Couldn't seek on capture handle for $name\n"; + my $text = do { local $/; scalar readline $fh }; + return defined($text) ? $text : ""; +} + +#--------------------------------------------------------------------------# +# _capture_tee() -- generic main sub for capturing or teeing +#--------------------------------------------------------------------------# + +sub _capture_tee { + # _debug( "# starting _capture_tee with (@_)...\n" ); + my ($do_stdout, $do_stderr, $do_merge, $do_tee, $code, @opts) = @_; + my %do = ($do_stdout ? (stdout => 1) : (), $do_stderr ? (stderr => 1) : ()); + Carp::confess("Custom capture options must be given as key/value pairs\n") + unless @opts % 2 == 0; + my $stash = { capture => { @opts } }; + for ( keys %{$stash->{capture}} ) { + my $fh = $stash->{capture}{$_}; + Carp::confess "Custom handle for $_ must be seekable\n" + unless ref($fh) eq 'GLOB' || (blessed($fh) && $fh->isa("IO::Seekable")); + } + # save existing filehandles and setup captures + local *CT_ORIG_STDIN = *STDIN ; + local *CT_ORIG_STDOUT = *STDOUT; + local *CT_ORIG_STDERR = *STDERR; + # find initial layers + my %layers = ( + stdin => [PerlIO::get_layers(\*STDIN) ], + stdout => [PerlIO::get_layers(\*STDOUT, output => 1)], + stderr => [PerlIO::get_layers(\*STDERR, output => 1)], + ); + # _debug( "# existing layers for $_\: @{$layers{$_}}\n" ) for qw/stdin stdout stderr/; + # get layers from underlying glob of tied filehandles if we can + # (this only works for things that work like Tie::StdHandle) + $layers{stdout} = [PerlIO::get_layers(tied *STDOUT)] + if tied(*STDOUT) && (reftype tied *STDOUT eq 'GLOB'); + $layers{stderr} = [PerlIO::get_layers(tied *STDERR)] + if tied(*STDERR) && (reftype tied *STDERR eq 'GLOB'); + # _debug( "# tied object corrected layers for $_\: @{$layers{$_}}\n" ) for qw/stdin stdout stderr/; + # bypass scalar filehandles and tied handles + # localize scalar STDIN to get a proxy to pick up FD0, then restore later to CT_ORIG_STDIN + my %localize; + $localize{stdin}++, local(*STDIN) + if grep { $_ eq 'scalar' } @{$layers{stdin}}; + $localize{stdout}++, local(*STDOUT) + if $do_stdout && grep { $_ eq 'scalar' } @{$layers{stdout}}; + $localize{stderr}++, local(*STDERR) + if ($do_stderr || $do_merge) && grep { $_ eq 'scalar' } @{$layers{stderr}}; + $localize{stdin}++, local(*STDIN), _open( \*STDIN, "<&=0") + if tied *STDIN && $] >= 5.008; + $localize{stdout}++, local(*STDOUT), _open( \*STDOUT, ">&=1") + if $do_stdout && tied *STDOUT && $] >= 5.008; + $localize{stderr}++, local(*STDERR), _open( \*STDERR, ">&=2") + if ($do_stderr || $do_merge) && tied *STDERR && $] >= 5.008; + # _debug( "# localized $_\n" ) for keys %localize; + # proxy any closed/localized handles so we don't use fds 0, 1 or 2 + my %proxy_std = _proxy_std(); + # _debug( "# proxy std: @{ [%proxy_std] }\n" ); + # update layers after any proxying + $layers{stdout} = [PerlIO::get_layers(\*STDOUT, output => 1)] if $proxy_std{stdout}; + $layers{stderr} = [PerlIO::get_layers(\*STDERR, output => 1)] if $proxy_std{stderr}; + # _debug( "# post-proxy layers for $_\: @{$layers{$_}}\n" ) for qw/stdin stdout stderr/; + # store old handles and setup handles for capture + $stash->{old} = _copy_std(); + $stash->{new} = { %{$stash->{old}} }; # default to originals + for ( keys %do ) { + $stash->{new}{$_} = ($stash->{capture}{$_} ||= File::Temp->new); + seek( $stash->{capture}{$_}, 0, 2 ) or die "Could not seek on capture handle for $_\n"; + $stash->{pos}{$_} = tell $stash->{capture}{$_}; + # _debug("# will capture $_ on " . fileno($stash->{capture}{$_})."\n" ); + _start_tee( $_ => $stash ) if $do_tee; # tees may change $stash->{new} + } + _wait_for_tees( $stash ) if $do_tee; + # finalize redirection + $stash->{new}{stderr} = $stash->{new}{stdout} if $do_merge; + # _debug( "# redirecting in parent ...\n" ); + _open_std( $stash->{new} ); + # execute user provided code + my ($exit_code, $inner_error, $outer_error, $orig_pid, @result); + { + $orig_pid = $$; + local *STDIN = *CT_ORIG_STDIN if $localize{stdin}; # get original, not proxy STDIN + # _debug( "# finalizing layers ...\n" ); + _relayer(\*STDOUT, $layers{stdout}) if $do_stdout; + _relayer(\*STDERR, $layers{stderr}) if $do_stderr; + # _debug( "# running code $code ...\n" ); + my $old_eval_err=$@; + undef $@; + eval { @result = $code->(); $inner_error = $@ }; + $exit_code = $?; # save this for later + $outer_error = $@; # save this for later + STDOUT->flush if $do_stdout; + STDERR->flush if $do_stderr; + $@ = $old_eval_err; + } + # restore prior filehandles and shut down tees + # _debug( "# restoring filehandles ...\n" ); + _open_std( $stash->{old} ); + _close( $_ ) for values %{$stash->{old}}; # don't leak fds + # shouldn't need relayering originals, but see rt.perl.org #114404 + _relayer(\*STDOUT, $layers{stdout}) if $do_stdout; + _relayer(\*STDERR, $layers{stderr}) if $do_stderr; + _unproxy( %proxy_std ); + # _debug( "# killing tee subprocesses ...\n" ) if $do_tee; + _kill_tees( $stash ) if $do_tee; + # return captured output, but shortcut in void context + # unless we have to echo output to tied/scalar handles; + my %got; + if ( $orig_pid == $$ and ( defined wantarray or ($do_tee && keys %localize) ) ) { + for ( keys %do ) { + _relayer($stash->{capture}{$_}, $layers{$_}); + $got{$_} = _slurp($_, $stash); + # _debug("# slurped " . length($got{$_}) . " bytes from $_\n"); + } + print CT_ORIG_STDOUT $got{stdout} + if $do_stdout && $do_tee && $localize{stdout}; + print CT_ORIG_STDERR $got{stderr} + if $do_stderr && $do_tee && $localize{stderr}; + } + $? = $exit_code; + $@ = $inner_error if $inner_error; + die $outer_error if $outer_error; + # _debug( "# ending _capture_tee with (@_)...\n" ); + return unless defined wantarray; + my @return; + push @return, $got{stdout} if $do_stdout; + push @return, $got{stderr} if $do_stderr && ! $do_merge; + push @return, @result; + return wantarray ? @return : $return[0]; +} + +1; + +__END__ + +=pod + +=encoding UTF-8 + +=head1 NAME + +Capture::Tiny - Capture STDOUT and STDERR from Perl, XS or external programs + +=head1 VERSION + +version 0.46 + +=head1 SYNOPSIS + + use Capture::Tiny ':all'; + + # capture from external command + + ($stdout, $stderr, $exit) = capture { + system( $cmd, @args ); + }; + + # capture from arbitrary code (Perl or external) + + ($stdout, $stderr, @result) = capture { + # your code here + }; + + # capture partial or merged output + + $stdout = capture_stdout { ... }; + $stderr = capture_stderr { ... }; + $merged = capture_merged { ... }; + + # tee output + + ($stdout, $stderr) = tee { + # your code here + }; + + $stdout = tee_stdout { ... }; + $stderr = tee_stderr { ... }; + $merged = tee_merged { ... }; + +=head1 DESCRIPTION + +Capture::Tiny provides a simple, portable way to capture almost anything sent +to STDOUT or STDERR, regardless of whether it comes from Perl, from XS code or +from an external program. Optionally, output can be teed so that it is +captured while being passed through to the original filehandles. Yes, it even +works on Windows (usually). Stop guessing which of a dozen capturing modules +to use in any particular situation and just use this one. + +=head1 USAGE + +The following functions are available. None are exported by default. + +=head2 capture + + ($stdout, $stderr, @result) = capture \&code; + $stdout = capture \&code; + +The C function takes a code reference and returns what is sent to +STDOUT and STDERR as well as any return values from the code reference. In +scalar context, it returns only STDOUT. If no output was received for a +filehandle, it returns an empty string for that filehandle. Regardless of calling +context, all output is captured -- nothing is passed to the existing filehandles. + +It is prototyped to take a subroutine reference as an argument. Thus, it +can be called in block form: + + ($stdout, $stderr) = capture { + # your code here ... + }; + +Note that the coderef is evaluated in list context. If you wish to force +scalar context on the return value, you must use the C keyword. + + ($stdout, $stderr, $count) = capture { + my @list = qw/one two three/; + return scalar @list; # $count will be 3 + }; + +Also note that within the coderef, the C<@_> variable will be empty. So don't +use arguments from a surrounding subroutine without copying them to an array +first: + + sub wont_work { + my ($stdout, $stderr) = capture { do_stuff( @_ ) }; # WRONG + ... + } + + sub will_work { + my @args = @_; + my ($stdout, $stderr) = capture { do_stuff( @args ) }; # RIGHT + ... + } + +Captures are normally done to an anonymous temporary filehandle. To +capture via a named file (e.g. to externally monitor a long-running capture), +provide custom filehandles as a trailing list of option pairs: + + my $out_fh = IO::File->new("out.txt", "w+"); + my $err_fh = IO::File->new("out.txt", "w+"); + capture { ... } stdout => $out_fh, stderr => $err_fh; + +The filehandles must be read/write and seekable. Modifying the files or +filehandles during a capture operation will give unpredictable results. +Existing IO layers on them may be changed by the capture. + +When called in void context, C saves memory and time by +not reading back from the capture handles. + +=head2 capture_stdout + + ($stdout, @result) = capture_stdout \&code; + $stdout = capture_stdout \&code; + +The C function works just like C except only +STDOUT is captured. STDERR is not captured. + +=head2 capture_stderr + + ($stderr, @result) = capture_stderr \&code; + $stderr = capture_stderr \&code; + +The C function works just like C except only +STDERR is captured. STDOUT is not captured. + +=head2 capture_merged + + ($merged, @result) = capture_merged \&code; + $merged = capture_merged \&code; + +The C function works just like C except STDOUT and +STDERR are merged. (Technically, STDERR is redirected to the same capturing +handle as STDOUT before executing the function.) + +Caution: STDOUT and STDERR output in the merged result are not guaranteed to be +properly ordered due to buffering. + +=head2 tee + + ($stdout, $stderr, @result) = tee \&code; + $stdout = tee \&code; + +The C function works just like C, except that output is captured +as well as passed on to the original STDOUT and STDERR. + +When called in void context, C saves memory and time by +not reading back from the capture handles, except when the +original STDOUT OR STDERR were tied or opened to a scalar +handle. + +=head2 tee_stdout + + ($stdout, @result) = tee_stdout \&code; + $stdout = tee_stdout \&code; + +The C function works just like C except only +STDOUT is teed. STDERR is not teed (output goes to STDERR as usual). + +=head2 tee_stderr + + ($stderr, @result) = tee_stderr \&code; + $stderr = tee_stderr \&code; + +The C function works just like C except only +STDERR is teed. STDOUT is not teed (output goes to STDOUT as usual). + +=head2 tee_merged + + ($merged, @result) = tee_merged \&code; + $merged = tee_merged \&code; + +The C function works just like C except that output +is captured as well as passed on to STDOUT. + +Caution: STDOUT and STDERR output in the merged result are not guaranteed to be +properly ordered due to buffering. + +=head1 LIMITATIONS + +=head2 Portability + +Portability is a goal, not a guarantee. C requires fork, except on +Windows where C is used instead. Not tested on any +particularly esoteric platforms yet. See the +L +for test result by platform. + +=head2 PerlIO layers + +Capture::Tiny does its best to preserve PerlIO layers such as ':utf8' or +':crlf' when capturing (only for Perl 5.8.1+) . Layers should be applied to +STDOUT or STDERR I the call to C or C. This may not work +for tied filehandles (see below). + +=head2 Modifying filehandles before capturing + +Generally speaking, you should do little or no manipulation of the standard IO +filehandles prior to using Capture::Tiny. In particular, closing, reopening, +localizing or tying standard filehandles prior to capture may cause a variety of +unexpected, undesirable and/or unreliable behaviors, as described below. +Capture::Tiny does its best to compensate for these situations, but the +results may not be what you desire. + +=head3 Closed filehandles + +Capture::Tiny will work even if STDIN, STDOUT or STDERR have been previously +closed. However, since they will be reopened to capture or tee output, any +code within the captured block that depends on finding them closed will, of +course, not find them to be closed. If they started closed, Capture::Tiny will +close them again when the capture block finishes. + +Note that this reopening will happen even for STDIN or a filehandle not being +captured to ensure that the filehandle used for capture is not opened to file +descriptor 0, as this causes problems on various platforms. + +Prior to Perl 5.12, closed STDIN combined with PERL_UNICODE=D leaks filehandles +and also breaks tee() for undiagnosed reasons. So don't do that. + +=head3 Localized filehandles + +If code localizes any of Perl's standard filehandles before capturing, the capture +will affect the localized filehandles and not the original ones. External system +calls are not affected by localizing a filehandle in Perl and will continue +to send output to the original filehandles (which will thus not be captured). + +=head3 Scalar filehandles + +If STDOUT or STDERR are reopened to scalar filehandles prior to the call to +C or C, then Capture::Tiny will override the output filehandle for +the duration of the C or C call and then, for C, send captured +output to the output filehandle after the capture is complete. (Requires Perl +5.8) + +Capture::Tiny attempts to preserve the semantics of STDIN opened to a scalar +reference, but note that external processes will not be able to read from such +a handle. Capture::Tiny tries to ensure that external processes will read from +the null device instead, but this is not guaranteed. + +=head3 Tied output filehandles + +If STDOUT or STDERR are tied prior to the call to C or C, then +Capture::Tiny will attempt to override the tie for the duration of the +C or C call and then send captured output to the tied filehandle after +the capture is complete. (Requires Perl 5.8) + +Capture::Tiny may not succeed resending UTF-8 encoded data to a tied +STDOUT or STDERR filehandle. Characters may appear as bytes. If the tied filehandle +is based on L, then Capture::Tiny will attempt to determine +appropriate layers like C<:utf8> from the underlying filehandle and do the right +thing. + +=head3 Tied input filehandle + +Capture::Tiny attempts to preserve the semantics of tied STDIN, but this +requires Perl 5.8 and is not entirely predictable. External processes +will not be able to read from such a handle. + +Unless having STDIN tied is crucial, it may be safest to localize STDIN when +capturing: + + my ($out, $err) = do { local *STDIN; capture { ... } }; + +=head2 Modifying filehandles during a capture + +Attempting to modify STDIN, STDOUT or STDERR I C or C is +almost certainly going to cause problems. Don't do that. + +=head3 Forking inside a capture + +Forks aren't portable. The behavior of filehandles during a fork is even +less so. If Capture::Tiny detects that a fork has occurred within a +capture, it will shortcut in the child process and return empty strings for +captures. Other problems may occur in the child or parent, as well. +Forking in a capture block is not recommended. + +=head3 Using threads + +Filehandles are global. Mixing up I/O and captures in different threads +without coordination is going to cause problems. Besides, threads are +officially discouraged. + +=head3 Dropping privileges during a capture + +If you drop privileges during a capture, temporary files created to +facilitate the capture may not be cleaned up afterwards. + +=head2 No support for Perl 5.8.0 + +It's just too buggy when it comes to layers and UTF-8. Perl 5.8.1 or later +is recommended. + +=head2 Limited support for Perl 5.6 + +Perl 5.6 predates PerlIO. UTF-8 data may not be captured correctly. + +=head1 ENVIRONMENT + +=head2 PERL_CAPTURE_TINY_TIMEOUT + +Capture::Tiny uses subprocesses internally for C. By default, +Capture::Tiny will timeout with an error if such subprocesses are not ready to +receive data within 30 seconds (or whatever is the value of +C<$Capture::Tiny::TIMEOUT>). An alternate timeout may be specified by setting +the C environment variable. Setting it to zero will +disable timeouts. B, this does not timeout the code reference being +captured -- this only prevents Capture::Tiny itself from hanging your process +waiting for its child processes to be ready to proceed. + +=head1 SEE ALSO + +This module was inspired by L, which provides +similar functionality without the ability to tee output and with more +complicated code and API. L does not handle layers +or most of the unusual cases described in the L section and +I no longer recommend it. + +There are many other CPAN modules that provide some sort of output capture, +albeit with various limitations that make them appropriate only in particular +circumstances. I'm probably missing some. The long list is provided to show +why I felt Capture::Tiny was necessary. + +=over 4 + +=item * + +L + +=item * + +L + +=item * + +L + +=item * + +L + +=item * + +L + +=item * + +L + +=item * + +L + +=item * + +L + +=item * + +L + +=item * + +L + +=item * + +L + +=item * + +L + +=item * + +L + +=item * + +L + +=item * + +L + +=item * + +L + +=item * + +L + +=item * + +L + +=item * + +L + +=item * + +L + +=item * + +L + +=back + +=for :stopwords cpan testmatrix url annocpan anno bugtracker rt cpants kwalitee diff irc mailto metadata placeholders metacpan + +=head1 SUPPORT + +=head2 Bugs / Feature Requests + +Please report any bugs or feature requests through the issue tracker +at L. +You will be notified automatically of any progress on your issue. + +=head2 Source Code + +This is open source software. The code repository is available for +public review and contribution under the terms of the license. + +L + + git clone https://github.com/dagolden/Capture-Tiny.git + +=head1 AUTHOR + +David Golden + +=head1 CONTRIBUTORS + +=for stopwords Dagfinn Ilmari Mannsåker David E. Wheeler fecundf Graham Knop Peter Rabbitson + +=over 4 + +=item * + +Dagfinn Ilmari Mannsåker + +=item * + +David E. Wheeler + +=item * + +fecundf + +=item * + +Graham Knop + +=item * + +Peter Rabbitson + +=back + +=head1 COPYRIGHT AND LICENSE + +This software is Copyright (c) 2009 by David Golden. + +This is free software, licensed under: + + The Apache License, Version 2.0, January 2004 + +=cut diff --git a/slic3r/linux/local-lib/lib/perl5/Carp.pm b/slic3r/linux/local-lib/lib/perl5/Carp.pm new file mode 100644 index 00000000..4182a5b2 --- /dev/null +++ b/slic3r/linux/local-lib/lib/perl5/Carp.pm @@ -0,0 +1,621 @@ +#line 1 "Carp.pm" +package Carp; + +{ use 5.006; } +use strict; +use warnings; +BEGIN { + # Very old versions of warnings.pm load Carp. This can go wrong due + # to the circular dependency. If warnings is invoked before Carp, + # then warnings starts by loading Carp, then Carp (above) tries to + # invoke warnings, and gets nothing because warnings is in the process + # of loading and hasn't defined its import method yet. If we were + # only turning on warnings ("use warnings" above) this wouldn't be too + # bad, because Carp would just gets the state of the -w switch and so + # might not get some warnings that it wanted. The real problem is + # that we then want to turn off Unicode warnings, but "no warnings + # 'utf8'" won't be effective if we're in this circular-dependency + # situation. So, if warnings.pm is an affected version, we turn + # off all warnings ourselves by directly setting ${^WARNING_BITS}. + # On unaffected versions, we turn off just Unicode warnings, via + # the proper API. + if(!defined($warnings::VERSION) || eval($warnings::VERSION) < 1.06) { + ${^WARNING_BITS} = ""; + } else { + "warnings"->unimport("utf8"); + } +} + +sub _fetch_sub { # fetch sub without autovivifying + my($pack, $sub) = @_; + $pack .= '::'; + # only works with top-level packages + return unless exists($::{$pack}); + for ($::{$pack}) { + return unless ref \$_ eq 'GLOB' && *$_{HASH} && exists $$_{$sub}; + for ($$_{$sub}) { + return ref \$_ eq 'GLOB' ? *$_{CODE} : undef + } + } +} + +# UTF8_REGEXP_PROBLEM is a compile-time constant indicating whether Carp +# must avoid applying a regular expression to an upgraded (is_utf8) +# string. There are multiple problems, on different Perl versions, +# that require this to be avoided. All versions prior to 5.13.8 will +# load utf8_heavy.pl for the swash system, even if the regexp doesn't +# use character classes. Perl 5.6 and Perls [5.11.2, 5.13.11) exhibit +# specific problems when Carp is being invoked in the aftermath of a +# syntax error. +BEGIN { + if("$]" < 5.013011) { + *UTF8_REGEXP_PROBLEM = sub () { 1 }; + } else { + *UTF8_REGEXP_PROBLEM = sub () { 0 }; + } +} + +# is_utf8() is essentially the utf8::is_utf8() function, which indicates +# whether a string is represented in the upgraded form (using UTF-8 +# internally). As utf8::is_utf8() is only available from Perl 5.8 +# onwards, extra effort is required here to make it work on Perl 5.6. +BEGIN { + if(defined(my $sub = _fetch_sub utf8 => 'is_utf8')) { + *is_utf8 = $sub; + } else { + # black magic for perl 5.6 + *is_utf8 = sub { unpack("C", "\xaa".$_[0]) != 170 }; + } +} + +# The downgrade() function defined here is to be used for attempts to +# downgrade where it is acceptable to fail. It must be called with a +# second argument that is a true value. +BEGIN { + if(defined(my $sub = _fetch_sub utf8 => 'downgrade')) { + *downgrade = \&{"utf8::downgrade"}; + } else { + *downgrade = sub { + my $r = ""; + my $l = length($_[0]); + for(my $i = 0; $i != $l; $i++) { + my $o = ord(substr($_[0], $i, 1)); + return if $o > 255; + $r .= chr($o); + } + $_[0] = $r; + }; + } +} + +our $VERSION = '1.40'; +$VERSION =~ tr/_//d; + +our $MaxEvalLen = 0; +our $Verbose = 0; +our $CarpLevel = 0; +our $MaxArgLen = 64; # How much of each argument to print. 0 = all. +our $MaxArgNums = 8; # How many arguments to print. 0 = all. +our $RefArgFormatter = undef; # allow caller to format reference arguments + +require Exporter; +our @ISA = ('Exporter'); +our @EXPORT = qw(confess croak carp); +our @EXPORT_OK = qw(cluck verbose longmess shortmess); +our @EXPORT_FAIL = qw(verbose); # hook to enable verbose mode + +# The members of %Internal are packages that are internal to perl. +# Carp will not report errors from within these packages if it +# can. The members of %CarpInternal are internal to Perl's warning +# system. Carp will not report errors from within these packages +# either, and will not report calls *to* these packages for carp and +# croak. They replace $CarpLevel, which is deprecated. The +# $Max(EvalLen|(Arg(Len|Nums)) variables are used to specify how the eval +# text and function arguments should be formatted when printed. + +our %CarpInternal; +our %Internal; + +# disable these by default, so they can live w/o require Carp +$CarpInternal{Carp}++; +$CarpInternal{warnings}++; +$Internal{Exporter}++; +$Internal{'Exporter::Heavy'}++; + +# if the caller specifies verbose usage ("perl -MCarp=verbose script.pl") +# then the following method will be called by the Exporter which knows +# to do this thanks to @EXPORT_FAIL, above. $_[1] will contain the word +# 'verbose'. + +sub export_fail { shift; $Verbose = shift if $_[0] eq 'verbose'; @_ } + +sub _cgc { + no strict 'refs'; + return \&{"CORE::GLOBAL::caller"} if defined &{"CORE::GLOBAL::caller"}; + return; +} + +sub longmess { + local($!, $^E); + # Icky backwards compatibility wrapper. :-( + # + # The story is that the original implementation hard-coded the + # number of call levels to go back, so calls to longmess were off + # by one. Other code began calling longmess and expecting this + # behaviour, so the replacement has to emulate that behaviour. + my $cgc = _cgc(); + my $call_pack = $cgc ? $cgc->() : caller(); + if ( $Internal{$call_pack} or $CarpInternal{$call_pack} ) { + return longmess_heavy(@_); + } + else { + local $CarpLevel = $CarpLevel + 1; + return longmess_heavy(@_); + } +} + +our @CARP_NOT; + +sub shortmess { + local($!, $^E); + my $cgc = _cgc(); + + # Icky backwards compatibility wrapper. :-( + local @CARP_NOT = $cgc ? $cgc->() : caller(); + shortmess_heavy(@_); +} + +sub croak { die shortmess @_ } +sub confess { die longmess @_ } +sub carp { warn shortmess @_ } +sub cluck { warn longmess @_ } + +BEGIN { + if("$]" >= 5.015002 || ("$]" >= 5.014002 && "$]" < 5.015) || + ("$]" >= 5.012005 && "$]" < 5.013)) { + *CALLER_OVERRIDE_CHECK_OK = sub () { 1 }; + } else { + *CALLER_OVERRIDE_CHECK_OK = sub () { 0 }; + } +} + +sub caller_info { + my $i = shift(@_) + 1; + my %call_info; + my $cgc = _cgc(); + { + # Some things override caller() but forget to implement the + # @DB::args part of it, which we need. We check for this by + # pre-populating @DB::args with a sentinel which no-one else + # has the address of, so that we can detect whether @DB::args + # has been properly populated. However, on earlier versions + # of perl this check tickles a bug in CORE::caller() which + # leaks memory. So we only check on fixed perls. + @DB::args = \$i if CALLER_OVERRIDE_CHECK_OK; + package DB; + @call_info{ + qw(pack file line sub has_args wantarray evaltext is_require) } + = $cgc ? $cgc->($i) : caller($i); + } + + unless ( defined $call_info{file} ) { + return (); + } + + my $sub_name = Carp::get_subname( \%call_info ); + if ( $call_info{has_args} ) { + my @args; + if (CALLER_OVERRIDE_CHECK_OK && @DB::args == 1 + && ref $DB::args[0] eq ref \$i + && $DB::args[0] == \$i ) { + @DB::args = (); # Don't let anyone see the address of $i + local $@; + my $where = eval { + my $func = $cgc or return ''; + my $gv = + (_fetch_sub B => 'svref_2object' or return '') + ->($func)->GV; + my $package = $gv->STASH->NAME; + my $subname = $gv->NAME; + return unless defined $package && defined $subname; + + # returning CORE::GLOBAL::caller isn't useful for tracing the cause: + return if $package eq 'CORE::GLOBAL' && $subname eq 'caller'; + " in &${package}::$subname"; + } || ''; + @args + = "** Incomplete caller override detected$where; \@DB::args were not set **"; + } + else { + @args = @DB::args; + my $overflow; + if ( $MaxArgNums and @args > $MaxArgNums ) + { # More than we want to show? + $#args = $MaxArgNums - 1; + $overflow = 1; + } + + @args = map { Carp::format_arg($_) } @args; + + if ($overflow) { + push @args, '...'; + } + } + + # Push the args onto the subroutine + $sub_name .= '(' . join( ', ', @args ) . ')'; + } + $call_info{sub_name} = $sub_name; + return wantarray() ? %call_info : \%call_info; +} + +# Transform an argument to a function into a string. +our $in_recurse; +sub format_arg { + my $arg = shift; + + if ( ref($arg) ) { + # legitimate, let's not leak it. + if (!$in_recurse && + do { + local $@; + local $in_recurse = 1; + local $SIG{__DIE__} = sub{}; + eval {$arg->can('CARP_TRACE') } + }) + { + return $arg->CARP_TRACE(); + } + elsif (!$in_recurse && + defined($RefArgFormatter) && + do { + local $@; + local $in_recurse = 1; + local $SIG{__DIE__} = sub{}; + eval {$arg = $RefArgFormatter->($arg); 1} + }) + { + return $arg; + } + else + { + my $sub = _fetch_sub(overload => 'StrVal'); + return $sub ? &$sub($arg) : "$arg"; + } + } + return "undef" if !defined($arg); + downgrade($arg, 1); + return $arg if !(UTF8_REGEXP_PROBLEM && is_utf8($arg)) && + $arg =~ /\A-?[0-9]+(?:\.[0-9]*)?(?:[eE][-+]?[0-9]+)?\z/; + my $suffix = ""; + if ( 2 < $MaxArgLen and $MaxArgLen < length($arg) ) { + substr ( $arg, $MaxArgLen - 3 ) = ""; + $suffix = "..."; + } + if(UTF8_REGEXP_PROBLEM && is_utf8($arg)) { + for(my $i = length($arg); $i--; ) { + my $c = substr($arg, $i, 1); + my $x = substr($arg, 0, 0); # work around bug on Perl 5.8.{1,2} + if($c eq "\"" || $c eq "\\" || $c eq "\$" || $c eq "\@") { + substr $arg, $i, 0, "\\"; + next; + } + my $o = ord($c); + + # This code is repeated in Regexp::CARP_TRACE() + if ($] ge 5.007_003) { + substr $arg, $i, 1, sprintf("\\x{%x}", $o) + if utf8::native_to_unicode($o) < utf8::native_to_unicode(0x20) + || utf8::native_to_unicode($o) > utf8::native_to_unicode(0x7e); + } elsif (ord("A") == 65) { + substr $arg, $i, 1, sprintf("\\x{%x}", $o) + if $o < 0x20 || $o > 0x7e; + } else { # Early EBCDIC + + # 3 EBCDIC code pages supported then; all controls but one + # are the code points below SPACE. The other one is 0x5F on + # POSIX-BC; FF on the other two. + substr $arg, $i, 1, sprintf("\\x{%x}", $o) + if $o < ord(" ") || ((ord ("^") == 106) + ? $o == 0x5f + : $o == 0xff); + } + } + } else { + $arg =~ s/([\"\\\$\@])/\\$1/g; + # This is all the ASCII printables spelled-out. It is portable to all + # Perl versions and platforms (such as EBCDIC). There are other more + # compact ways to do this, but may not work everywhere every version. + $arg =~ s/([^ !"\$\%#'()*+,\-.\/0123456789:;<=>?\@ABCDEFGHIJKLMNOPQRSTUVWXYZ\[\\\]^_`abcdefghijklmnopqrstuvwxyz\{|}~])/sprintf("\\x{%x}",ord($1))/eg; + } + downgrade($arg, 1); + return "\"".$arg."\"".$suffix; +} + +sub Regexp::CARP_TRACE { + my $arg = "$_[0]"; + downgrade($arg, 1); + if(UTF8_REGEXP_PROBLEM && is_utf8($arg)) { + for(my $i = length($arg); $i--; ) { + my $o = ord(substr($arg, $i, 1)); + my $x = substr($arg, 0, 0); # work around bug on Perl 5.8.{1,2} + + # This code is repeated in format_arg() + if ($] ge 5.007_003) { + substr $arg, $i, 1, sprintf("\\x{%x}", $o) + if utf8::native_to_unicode($o) < utf8::native_to_unicode(0x20) + || utf8::native_to_unicode($o) > utf8::native_to_unicode(0x7e); + } elsif (ord("A") == 65) { + substr $arg, $i, 1, sprintf("\\x{%x}", $o) + if $o < 0x20 || $o > 0x7e; + } else { # Early EBCDIC + substr $arg, $i, 1, sprintf("\\x{%x}", $o) + if $o < ord(" ") || ((ord ("^") == 106) + ? $o == 0x5f + : $o == 0xff); + } + } + } else { + # See comment in format_arg() about this same regex. + $arg =~ s/([^ !"\$\%#'()*+,\-.\/0123456789:;<=>?\@ABCDEFGHIJKLMNOPQRSTUVWXYZ\[\\\]^_`abcdefghijklmnopqrstuvwxyz\{|}~])/sprintf("\\x{%x}",ord($1))/eg; + } + downgrade($arg, 1); + my $suffix = ""; + if($arg =~ /\A\(\?\^?([a-z]*)(?:-[a-z]*)?:(.*)\)\z/s) { + ($suffix, $arg) = ($1, $2); + } + if ( 2 < $MaxArgLen and $MaxArgLen < length($arg) ) { + substr ( $arg, $MaxArgLen - 3 ) = ""; + $suffix = "...".$suffix; + } + return "qr($arg)$suffix"; +} + +# Takes an inheritance cache and a package and returns +# an anon hash of known inheritances and anon array of +# inheritances which consequences have not been figured +# for. +sub get_status { + my $cache = shift; + my $pkg = shift; + $cache->{$pkg} ||= [ { $pkg => $pkg }, [ trusts_directly($pkg) ] ]; + return @{ $cache->{$pkg} }; +} + +# Takes the info from caller() and figures out the name of +# the sub/require/eval +sub get_subname { + my $info = shift; + if ( defined( $info->{evaltext} ) ) { + my $eval = $info->{evaltext}; + if ( $info->{is_require} ) { + return "require $eval"; + } + else { + $eval =~ s/([\\\'])/\\$1/g; + return "eval '" . str_len_trim( $eval, $MaxEvalLen ) . "'"; + } + } + + # this can happen on older perls when the sub (or the stash containing it) + # has been deleted + if ( !defined( $info->{sub} ) ) { + return '__ANON__::__ANON__'; + } + + return ( $info->{sub} eq '(eval)' ) ? 'eval {...}' : $info->{sub}; +} + +# Figures out what call (from the point of view of the caller) +# the long error backtrace should start at. +sub long_error_loc { + my $i; + my $lvl = $CarpLevel; + { + ++$i; + my $cgc = _cgc(); + my @caller = $cgc ? $cgc->($i) : caller($i); + my $pkg = $caller[0]; + unless ( defined($pkg) ) { + + # This *shouldn't* happen. + if (%Internal) { + local %Internal; + $i = long_error_loc(); + last; + } + elsif (defined $caller[2]) { + # this can happen when the stash has been deleted + # in that case, just assume that it's a reasonable place to + # stop (the file and line data will still be intact in any + # case) - the only issue is that we can't detect if the + # deleted package was internal (so don't do that then) + # -doy + redo unless 0 > --$lvl; + last; + } + else { + return 2; + } + } + redo if $CarpInternal{$pkg}; + redo unless 0 > --$lvl; + redo if $Internal{$pkg}; + } + return $i - 1; +} + +sub longmess_heavy { + if ( ref( $_[0] ) ) { # don't break references as exceptions + return wantarray ? @_ : $_[0]; + } + my $i = long_error_loc(); + return ret_backtrace( $i, @_ ); +} + +# Returns a full stack backtrace starting from where it is +# told. +sub ret_backtrace { + my ( $i, @error ) = @_; + my $mess; + my $err = join '', @error; + $i++; + + my $tid_msg = ''; + if ( defined &threads::tid ) { + my $tid = threads->tid; + $tid_msg = " thread $tid" if $tid; + } + + my %i = caller_info($i); + $mess = "$err at $i{file} line $i{line}$tid_msg"; + if( defined $. ) { + local $@ = ''; + local $SIG{__DIE__}; + eval { + CORE::die; + }; + if($@ =~ /^Died at .*(, <.*?> line \d+).$/ ) { + $mess .= $1; + } + } + $mess .= "\.\n"; + + while ( my %i = caller_info( ++$i ) ) { + $mess .= "\t$i{sub_name} called at $i{file} line $i{line}$tid_msg\n"; + } + + return $mess; +} + +sub ret_summary { + my ( $i, @error ) = @_; + my $err = join '', @error; + $i++; + + my $tid_msg = ''; + if ( defined &threads::tid ) { + my $tid = threads->tid; + $tid_msg = " thread $tid" if $tid; + } + + my %i = caller_info($i); + return "$err at $i{file} line $i{line}$tid_msg\.\n"; +} + +sub short_error_loc { + # You have to create your (hash)ref out here, rather than defaulting it + # inside trusts *on a lexical*, as you want it to persist across calls. + # (You can default it on $_[2], but that gets messy) + my $cache = {}; + my $i = 1; + my $lvl = $CarpLevel; + { + my $cgc = _cgc(); + my $called = $cgc ? $cgc->($i) : caller($i); + $i++; + my $caller = $cgc ? $cgc->($i) : caller($i); + + if (!defined($caller)) { + my @caller = $cgc ? $cgc->($i) : caller($i); + if (@caller) { + # if there's no package but there is other caller info, then + # the package has been deleted - treat this as a valid package + # in this case + redo if defined($called) && $CarpInternal{$called}; + redo unless 0 > --$lvl; + last; + } + else { + return 0; + } + } + redo if $Internal{$caller}; + redo if $CarpInternal{$caller}; + redo if $CarpInternal{$called}; + redo if trusts( $called, $caller, $cache ); + redo if trusts( $caller, $called, $cache ); + redo unless 0 > --$lvl; + } + return $i - 1; +} + +sub shortmess_heavy { + return longmess_heavy(@_) if $Verbose; + return @_ if ref( $_[0] ); # don't break references as exceptions + my $i = short_error_loc(); + if ($i) { + ret_summary( $i, @_ ); + } + else { + longmess_heavy(@_); + } +} + +# If a string is too long, trims it with ... +sub str_len_trim { + my $str = shift; + my $max = shift || 0; + if ( 2 < $max and $max < length($str) ) { + substr( $str, $max - 3 ) = '...'; + } + return $str; +} + +# Takes two packages and an optional cache. Says whether the +# first inherits from the second. +# +# Recursive versions of this have to work to avoid certain +# possible endless loops, and when following long chains of +# inheritance are less efficient. +sub trusts { + my $child = shift; + my $parent = shift; + my $cache = shift; + my ( $known, $partial ) = get_status( $cache, $child ); + + # Figure out consequences until we have an answer + while ( @$partial and not exists $known->{$parent} ) { + my $anc = shift @$partial; + next if exists $known->{$anc}; + $known->{$anc}++; + my ( $anc_knows, $anc_partial ) = get_status( $cache, $anc ); + my @found = keys %$anc_knows; + @$known{@found} = (); + push @$partial, @$anc_partial; + } + return exists $known->{$parent}; +} + +# Takes a package and gives a list of those trusted directly +sub trusts_directly { + my $class = shift; + no strict 'refs'; + my $stash = \%{"$class\::"}; + for my $var (qw/ CARP_NOT ISA /) { + # Don't try using the variable until we know it exists, + # to avoid polluting the caller's namespace. + if ( $stash->{$var} && *{$stash->{$var}}{ARRAY} && @{$stash->{$var}} ) { + return @{$stash->{$var}} + } + } + return; +} + +if(!defined($warnings::VERSION) || + do { no warnings "numeric"; $warnings::VERSION < 1.03 }) { + # Very old versions of warnings.pm import from Carp. This can go + # wrong due to the circular dependency. If Carp is invoked before + # warnings, then Carp starts by loading warnings, then warnings + # tries to import from Carp, and gets nothing because Carp is in + # the process of loading and hasn't defined its import method yet. + # So we work around that by manually exporting to warnings here. + no strict "refs"; + *{"warnings::$_"} = \&$_ foreach @EXPORT; +} + +1; + +__END__ + +#line 934 \ No newline at end of file diff --git a/slic3r/linux/local-lib/lib/perl5/Carp/Heavy.pm b/slic3r/linux/local-lib/lib/perl5/Carp/Heavy.pm new file mode 100644 index 00000000..34e31fae --- /dev/null +++ b/slic3r/linux/local-lib/lib/perl5/Carp/Heavy.pm @@ -0,0 +1,22 @@ +#line 1 "Carp/Heavy.pm" +package Carp::Heavy; + +use Carp (); + +our $VERSION = '1.40'; +$VERSION =~ tr/_//d; + +# Carp::Heavy was merged into Carp in version 1.12. Any mismatched versions +# after this point are not significant and can be ignored. +if(($Carp::VERSION || 0) < 1.12) { + my $cv = defined($Carp::VERSION) ? $Carp::VERSION : "undef"; + die "Version mismatch between Carp $cv ($INC{q(Carp.pm)}) and Carp::Heavy $VERSION ($INC{q(Carp/Heavy.pm)}). Did you alter \@INC after Carp was loaded?\n"; +} + +1; + +# Most of the machinery of Carp used to be here. +# It has been moved in Carp.pm now, but this placeholder remains for +# the benefit of modules that like to preload Carp::Heavy directly. +# This must load Carp, because some modules rely on the historical +# behaviour of Carp::Heavy loading Carp. diff --git a/slic3r/linux/local-lib/lib/perl5/Class/Accessor.pm b/slic3r/linux/local-lib/lib/perl5/Class/Accessor.pm new file mode 100644 index 00000000..6c4f6b12 --- /dev/null +++ b/slic3r/linux/local-lib/lib/perl5/Class/Accessor.pm @@ -0,0 +1,744 @@ +package Class::Accessor; +require 5.00502; +use strict; +$Class::Accessor::VERSION = '0.34'; + +sub new { + my($proto, $fields) = @_; + my($class) = ref $proto || $proto; + + $fields = {} unless defined $fields; + + # make a copy of $fields. + bless {%$fields}, $class; +} + +sub mk_accessors { + my($self, @fields) = @_; + + $self->_mk_accessors('rw', @fields); +} + +if (eval { require Sub::Name }) { + Sub::Name->import; +} + +{ + no strict 'refs'; + + sub import { + my ($class, @what) = @_; + my $caller = caller; + for (@what) { + if (/^(?:antlers|moose-?like)$/i) { + *{"${caller}::has"} = sub { + my ($f, %args) = @_; + $caller->_mk_accessors(($args{is}||"rw"), $f); + }; + *{"${caller}::extends"} = sub { + @{"${caller}::ISA"} = @_; + unless (grep $_->can("_mk_accessors"), @_) { + push @{"${caller}::ISA"}, $class; + } + }; + # we'll use their @ISA as a default, in case it happens to be + # set already + &{"${caller}::extends"}(@{"${caller}::ISA"}); + } + } + } + + sub follow_best_practice { + my($self) = @_; + my $class = ref $self || $self; + *{"${class}::accessor_name_for"} = \&best_practice_accessor_name_for; + *{"${class}::mutator_name_for"} = \&best_practice_mutator_name_for; + } + + sub _mk_accessors { + my($self, $access, @fields) = @_; + my $class = ref $self || $self; + my $ra = $access eq 'rw' || $access eq 'ro'; + my $wa = $access eq 'rw' || $access eq 'wo'; + + foreach my $field (@fields) { + my $accessor_name = $self->accessor_name_for($field); + my $mutator_name = $self->mutator_name_for($field); + if( $accessor_name eq 'DESTROY' or $mutator_name eq 'DESTROY' ) { + $self->_carp("Having a data accessor named DESTROY in '$class' is unwise."); + } + if ($accessor_name eq $mutator_name) { + my $accessor; + if ($ra && $wa) { + $accessor = $self->make_accessor($field); + } elsif ($ra) { + $accessor = $self->make_ro_accessor($field); + } else { + $accessor = $self->make_wo_accessor($field); + } + my $fullname = "${class}::$accessor_name"; + my $subnamed = 0; + unless (defined &{$fullname}) { + subname($fullname, $accessor) if defined &subname; + $subnamed = 1; + *{$fullname} = $accessor; + } + if ($accessor_name eq $field) { + # the old behaviour + my $alias = "${class}::_${field}_accessor"; + subname($alias, $accessor) if defined &subname and not $subnamed; + *{$alias} = $accessor unless defined &{$alias}; + } + } else { + my $fullaccname = "${class}::$accessor_name"; + my $fullmutname = "${class}::$mutator_name"; + if ($ra and not defined &{$fullaccname}) { + my $accessor = $self->make_ro_accessor($field); + subname($fullaccname, $accessor) if defined &subname; + *{$fullaccname} = $accessor; + } + if ($wa and not defined &{$fullmutname}) { + my $mutator = $self->make_wo_accessor($field); + subname($fullmutname, $mutator) if defined &subname; + *{$fullmutname} = $mutator; + } + } + } + } + +} + +sub mk_ro_accessors { + my($self, @fields) = @_; + + $self->_mk_accessors('ro', @fields); +} + +sub mk_wo_accessors { + my($self, @fields) = @_; + + $self->_mk_accessors('wo', @fields); +} + +sub best_practice_accessor_name_for { + my ($class, $field) = @_; + return "get_$field"; +} + +sub best_practice_mutator_name_for { + my ($class, $field) = @_; + return "set_$field"; +} + +sub accessor_name_for { + my ($class, $field) = @_; + return $field; +} + +sub mutator_name_for { + my ($class, $field) = @_; + return $field; +} + +sub set { + my($self, $key) = splice(@_, 0, 2); + + if(@_ == 1) { + $self->{$key} = $_[0]; + } + elsif(@_ > 1) { + $self->{$key} = [@_]; + } + else { + $self->_croak("Wrong number of arguments received"); + } +} + +sub get { + my $self = shift; + + if(@_ == 1) { + return $self->{$_[0]}; + } + elsif( @_ > 1 ) { + return @{$self}{@_}; + } + else { + $self->_croak("Wrong number of arguments received"); + } +} + +sub make_accessor { + my ($class, $field) = @_; + + return sub { + my $self = shift; + + if(@_) { + return $self->set($field, @_); + } else { + return $self->get($field); + } + }; +} + +sub make_ro_accessor { + my($class, $field) = @_; + + return sub { + my $self = shift; + + if (@_) { + my $caller = caller; + $self->_croak("'$caller' cannot alter the value of '$field' on objects of class '$class'"); + } + else { + return $self->get($field); + } + }; +} + +sub make_wo_accessor { + my($class, $field) = @_; + + return sub { + my $self = shift; + + unless (@_) { + my $caller = caller; + $self->_croak("'$caller' cannot access the value of '$field' on objects of class '$class'"); + } + else { + return $self->set($field, @_); + } + }; +} + + +use Carp (); + +sub _carp { + my ($self, $msg) = @_; + Carp::carp($msg || $self); + return; +} + +sub _croak { + my ($self, $msg) = @_; + Carp::croak($msg || $self); + return; +} + +1; + +__END__ + +=head1 NAME + + Class::Accessor - Automated accessor generation + +=head1 SYNOPSIS + + package Foo; + use base qw(Class::Accessor); + Foo->follow_best_practice; + Foo->mk_accessors(qw(name role salary)); + + # or if you prefer a Moose-like interface... + + package Foo; + use Class::Accessor "antlers"; + has name => ( is => "rw", isa => "Str" ); + has role => ( is => "rw", isa => "Str" ); + has salary => ( is => "rw", isa => "Num" ); + + # Meanwhile, in a nearby piece of code! + # Class::Accessor provides new(). + my $mp = Foo->new({ name => "Marty", role => "JAPH" }); + + my $job = $mp->role; # gets $mp->{role} + $mp->salary(400000); # sets $mp->{salary} = 400000 # I wish + + # like my @info = @{$mp}{qw(name role)} + my @info = $mp->get(qw(name role)); + + # $mp->{salary} = 400000 + $mp->set('salary', 400000); + + +=head1 DESCRIPTION + +This module automagically generates accessors/mutators for your class. + +Most of the time, writing accessors is an exercise in cutting and +pasting. You usually wind up with a series of methods like this: + + sub name { + my $self = shift; + if(@_) { + $self->{name} = $_[0]; + } + return $self->{name}; + } + + sub salary { + my $self = shift; + if(@_) { + $self->{salary} = $_[0]; + } + return $self->{salary}; + } + + # etc... + +One for each piece of data in your object. While some will be unique, +doing value checks and special storage tricks, most will simply be +exercises in repetition. Not only is it Bad Style to have a bunch of +repetitious code, but it's also simply not lazy, which is the real +tragedy. + +If you make your module a subclass of Class::Accessor and declare your +accessor fields with mk_accessors() then you'll find yourself with a +set of automatically generated accessors which can even be +customized! + +The basic set up is very simple: + + package Foo; + use base qw(Class::Accessor); + Foo->mk_accessors( qw(far bar car) ); + +Done. Foo now has simple far(), bar() and car() accessors +defined. + +Alternatively, if you want to follow Damian's I guidelines +you can use: + + package Foo; + use base qw(Class::Accessor); + Foo->follow_best_practice; + Foo->mk_accessors( qw(far bar car) ); + +B you must call C before calling C. + +=head2 Moose-like + +By popular demand we now have a simple Moose-like interface. You can now do: + + package Foo; + use Class::Accessor "antlers"; + has far => ( is => "rw" ); + has bar => ( is => "rw" ); + has car => ( is => "rw" ); + +Currently only the C attribute is supported. + +=head1 CONSTRUCTOR + +Class::Accessor provides a basic constructor, C. It generates a +hash-based object and can be called as either a class method or an +object method. + +=head2 new + + my $obj = Foo->new; + my $obj = $other_obj->new; + + my $obj = Foo->new(\%fields); + my $obj = $other_obj->new(\%fields); + +It takes an optional %fields hash which is used to initialize the +object (handy if you use read-only accessors). The fields of the hash +correspond to the names of your accessors, so... + + package Foo; + use base qw(Class::Accessor); + Foo->mk_accessors('foo'); + + my $obj = Foo->new({ foo => 42 }); + print $obj->foo; # 42 + +however %fields can contain anything, new() will shove them all into +your object. + +=head1 MAKING ACCESSORS + +=head2 follow_best_practice + +In Damian's Perl Best Practices book he recommends separate get and set methods +with the prefix set_ and get_ to make it explicit what you intend to do. If you +want to create those accessor methods instead of the default ones, call: + + __PACKAGE__->follow_best_practice + +B you call any of the accessor-making methods. + +=head2 accessor_name_for / mutator_name_for + +You may have your own crazy ideas for the names of the accessors, so you can +make those happen by overriding C and C in +your subclass. (I copied that idea from Class::DBI.) + +=head2 mk_accessors + + __PACKAGE__->mk_accessors(@fields); + +This creates accessor/mutator methods for each named field given in +@fields. Foreach field in @fields it will generate two accessors. +One called "field()" and the other called "_field_accessor()". For +example: + + # Generates foo(), _foo_accessor(), bar() and _bar_accessor(). + __PACKAGE__->mk_accessors(qw(foo bar)); + +See L +for details. + +=head2 mk_ro_accessors + + __PACKAGE__->mk_ro_accessors(@read_only_fields); + +Same as mk_accessors() except it will generate read-only accessors +(ie. true accessors). If you attempt to set a value with these +accessors it will throw an exception. It only uses get() and not +set(). + + package Foo; + use base qw(Class::Accessor); + Foo->mk_ro_accessors(qw(foo bar)); + + # Let's assume we have an object $foo of class Foo... + print $foo->foo; # ok, prints whatever the value of $foo->{foo} is + $foo->foo(42); # BOOM! Naughty you. + + +=head2 mk_wo_accessors + + __PACKAGE__->mk_wo_accessors(@write_only_fields); + +Same as mk_accessors() except it will generate write-only accessors +(ie. mutators). If you attempt to read a value with these accessors +it will throw an exception. It only uses set() and not get(). + +B I'm not entirely sure why this is useful, but I'm sure someone +will need it. If you've found a use, let me know. Right now it's here +for orthoginality and because it's easy to implement. + + package Foo; + use base qw(Class::Accessor); + Foo->mk_wo_accessors(qw(foo bar)); + + # Let's assume we have an object $foo of class Foo... + $foo->foo(42); # OK. Sets $self->{foo} = 42 + print $foo->foo; # BOOM! Can't read from this accessor. + +=head1 Moose! + +If you prefer a Moose-like interface to create accessors, you can use C by +importing this module like this: + + use Class::Accessor "antlers"; + +or + + use Class::Accessor "moose-like"; + +Then you can declare accessors like this: + + has alpha => ( is => "rw", isa => "Str" ); + has beta => ( is => "ro", isa => "Str" ); + has gamma => ( is => "wo", isa => "Str" ); + +Currently only the C attribute is supported. And our C also supports +the "wo" value to make a write-only accessor. + +If you are using the Moose-like interface then you should use the C +rather than tweaking your C<@ISA> directly. Basically, replace + + @ISA = qw/Foo Bar/; + +with + + extends(qw/Foo Bar/); + +=head1 DETAILS + +An accessor generated by Class::Accessor looks something like +this: + + # Your foo may vary. + sub foo { + my($self) = shift; + if(@_) { # set + return $self->set('foo', @_); + } + else { + return $self->get('foo'); + } + } + +Very simple. All it does is determine if you're wanting to set a +value or get a value and calls the appropriate method. +Class::Accessor provides default get() and set() methods which +your class can override. They're detailed later. + +=head2 Modifying the behavior of the accessor + +Rather than actually modifying the accessor itself, it is much more +sensible to simply override the two key methods which the accessor +calls. Namely set() and get(). + +If you -really- want to, you can override make_accessor(). + +=head2 set + + $obj->set($key, $value); + $obj->set($key, @values); + +set() defines how generally one stores data in the object. + +override this method to change how data is stored by your accessors. + +=head2 get + + $value = $obj->get($key); + @values = $obj->get(@keys); + +get() defines how data is retreived from your objects. + +override this method to change how it is retreived. + +=head2 make_accessor + + $accessor = __PACKAGE__->make_accessor($field); + +Generates a subroutine reference which acts as an accessor for the given +$field. It calls get() and set(). + +If you wish to change the behavior of your accessors, try overriding +get() and set() before you start mucking with make_accessor(). + +=head2 make_ro_accessor + + $read_only_accessor = __PACKAGE__->make_ro_accessor($field); + +Generates a subroutine refrence which acts as a read-only accessor for +the given $field. It only calls get(). + +Override get() to change the behavior of your accessors. + +=head2 make_wo_accessor + + $read_only_accessor = __PACKAGE__->make_wo_accessor($field); + +Generates a subroutine refrence which acts as a write-only accessor +(mutator) for the given $field. It only calls set(). + +Override set() to change the behavior of your accessors. + +=head1 EXCEPTIONS + +If something goes wrong Class::Accessor will warn or die by calling Carp::carp +or Carp::croak. If you don't like this you can override _carp() and _croak() in +your subclass and do whatever else you want. + +=head1 EFFICIENCY + +Class::Accessor does not employ an autoloader, thus it is much faster +than you'd think. Its generated methods incur no special penalty over +ones you'd write yourself. + + accessors: + Rate Basic Fast Faster Direct + Basic 367589/s -- -51% -55% -89% + Fast 747964/s 103% -- -9% -77% + Faster 819199/s 123% 10% -- -75% + Direct 3245887/s 783% 334% 296% -- + + mutators: + Rate Acc Fast Faster Direct + Acc 265564/s -- -54% -63% -91% + Fast 573439/s 116% -- -21% -80% + Faster 724710/s 173% 26% -- -75% + Direct 2860979/s 977% 399% 295% -- + +Class::Accessor::Fast is faster than methods written by an average programmer +(where "average" is based on Schwern's example code). + +Class::Accessor is slower than average, but more flexible. + +Class::Accessor::Faster is even faster than Class::Accessor::Fast. It uses an +array internally, not a hash. This could be a good or bad feature depending on +your point of view. + +Direct hash access is, of course, much faster than all of these, but it +provides no encapsulation. + +Of course, it's not as simple as saying "Class::Accessor is slower than +average". These are benchmarks for a simple accessor. If your accessors do +any sort of complicated work (such as talking to a database or writing to a +file) the time spent doing that work will quickly swamp the time spend just +calling the accessor. In that case, Class::Accessor and the ones you write +will be roughly the same speed. + + +=head1 EXAMPLES + +Here's an example of generating an accessor for every public field of +your class. + + package Altoids; + + use base qw(Class::Accessor Class::Fields); + use fields qw(curiously strong mints); + Altoids->mk_accessors( Altoids->show_fields('Public') ); + + sub new { + my $proto = shift; + my $class = ref $proto || $proto; + return fields::new($class); + } + + my Altoids $tin = Altoids->new; + + $tin->curiously('Curiouser and curiouser'); + print $tin->{curiously}; # prints 'Curiouser and curiouser' + + + # Subclassing works, too. + package Mint::Snuff; + use base qw(Altoids); + + my Mint::Snuff $pouch = Mint::Snuff->new; + $pouch->strong('Blow your head off!'); + print $pouch->{strong}; # prints 'Blow your head off!' + + +Here's a simple example of altering the behavior of your accessors. + + package Foo; + use base qw(Class::Accessor); + Foo->mk_accessors(qw(this that up down)); + + sub get { + my $self = shift; + + # Note every time someone gets some data. + print STDERR "Getting @_\n"; + + $self->SUPER::get(@_); + } + + sub set { + my ($self, $key) = splice(@_, 0, 2); + + # Note every time someone sets some data. + print STDERR "Setting $key to @_\n"; + + $self->SUPER::set($key, @_); + } + + +=head1 CAVEATS AND TRICKS + +Class::Accessor has to do some internal wackiness to get its +job done quickly and efficiently. Because of this, there's a few +tricks and traps one must know about. + +Hey, nothing's perfect. + +=head2 Don't make a field called DESTROY + +This is bad. Since DESTROY is a magical method it would be bad for us +to define an accessor using that name. Class::Accessor will +carp if you try to use it with a field named "DESTROY". + +=head2 Overriding autogenerated accessors + +You may want to override the autogenerated accessor with your own, yet +have your custom accessor call the default one. For instance, maybe +you want to have an accessor which checks its input. Normally, one +would expect this to work: + + package Foo; + use base qw(Class::Accessor); + Foo->mk_accessors(qw(email this that whatever)); + + # Only accept addresses which look valid. + sub email { + my($self) = shift; + my($email) = @_; + + if( @_ ) { # Setting + require Email::Valid; + unless( Email::Valid->address($email) ) { + carp("$email doesn't look like a valid address."); + return; + } + } + + return $self->SUPER::email(@_); + } + +There's a subtle problem in the last example, and it's in this line: + + return $self->SUPER::email(@_); + +If we look at how Foo was defined, it called mk_accessors() which +stuck email() right into Foo's namespace. There *is* no +SUPER::email() to delegate to! Two ways around this... first is to +make a "pure" base class for Foo. This pure class will generate the +accessors and provide the necessary super class for Foo to use: + + package Pure::Organic::Foo; + use base qw(Class::Accessor); + Pure::Organic::Foo->mk_accessors(qw(email this that whatever)); + + package Foo; + use base qw(Pure::Organic::Foo); + +And now Foo::email() can override the generated +Pure::Organic::Foo::email() and use it as SUPER::email(). + +This is probably the most obvious solution to everyone but me. +Instead, what first made sense to me was for mk_accessors() to define +an alias of email(), _email_accessor(). Using this solution, +Foo::email() would be written with: + + return $self->_email_accessor(@_); + +instead of the expected SUPER::email(). + + +=head1 AUTHORS + +Copyright 2009 Marty Pauley + +This program is free software; you can redistribute it and/or modify it under +the same terms as Perl itself. That means either (a) the GNU General Public +License or (b) the Artistic License. + +=head2 ORIGINAL AUTHOR + +Michael G Schwern + +=head2 THANKS + +Liz and RUZ for performance tweaks. + +Tels, for his big feature request/bug report. + +Various presenters at YAPC::Asia 2009 for criticising the non-Moose interface. + +=head1 SEE ALSO + +See L and L if speed is more +important than flexibility. + +These are some modules which do similar things in different ways +L, L, L, +L, L, L, L + +See L for an example of this module in use. + +=cut diff --git a/slic3r/linux/local-lib/lib/perl5/Class/Accessor/Fast.pm b/slic3r/linux/local-lib/lib/perl5/Class/Accessor/Fast.pm new file mode 100644 index 00000000..444373b4 --- /dev/null +++ b/slic3r/linux/local-lib/lib/perl5/Class/Accessor/Fast.pm @@ -0,0 +1,93 @@ +package Class::Accessor::Fast; +use base 'Class::Accessor'; +use strict; +$Class::Accessor::Fast::VERSION = '0.34'; + +sub make_accessor { + my($class, $field) = @_; + + return sub { + return $_[0]->{$field} if scalar(@_) == 1; + return $_[0]->{$field} = scalar(@_) == 2 ? $_[1] : [@_[1..$#_]]; + }; +} + + +sub make_ro_accessor { + my($class, $field) = @_; + + return sub { + return $_[0]->{$field} if @_ == 1; + my $caller = caller; + $_[0]->_croak("'$caller' cannot alter the value of '$field' on objects of class '$class'"); + }; +} + + +sub make_wo_accessor { + my($class, $field) = @_; + + return sub { + if (@_ == 1) { + my $caller = caller; + $_[0]->_croak("'$caller' cannot access the value of '$field' on objects of class '$class'"); + } + else { + return $_[0]->{$field} = $_[1] if @_ == 2; + return (shift)->{$field} = \@_; + } + }; +} + + +1; + +__END__ + +=head1 NAME + +Class::Accessor::Fast - Faster, but less expandable, accessors + +=head1 SYNOPSIS + + package Foo; + use base qw(Class::Accessor::Fast); + + # The rest is the same as Class::Accessor but without set() and get(). + +=head1 DESCRIPTION + +This is a faster but less expandable version of Class::Accessor. +Class::Accessor's generated accessors require two method calls to accompish +their task (one for the accessor, another for get() or set()). +Class::Accessor::Fast eliminates calling set()/get() and does the access itself, +resulting in a somewhat faster accessor. + +The downside is that you can't easily alter the behavior of your +accessors, nor can your subclasses. Of course, should you need this +later, you can always swap out Class::Accessor::Fast for +Class::Accessor. + +Read the documentation for Class::Accessor for more info. + +=head1 EFFICIENCY + +L for an efficiency comparison. + +=head1 AUTHORS + +Copyright 2007 Marty Pauley + +This program is free software; you can redistribute it and/or modify it under +the same terms as Perl itself. That means either (a) the GNU General Public +License or (b) the Artistic License. + +=head2 ORIGINAL AUTHOR + +Michael G Schwern + +=head1 SEE ALSO + +L + +=cut diff --git a/slic3r/linux/local-lib/lib/perl5/Class/Accessor/Faster.pm b/slic3r/linux/local-lib/lib/perl5/Class/Accessor/Faster.pm new file mode 100644 index 00000000..e4d7c92f --- /dev/null +++ b/slic3r/linux/local-lib/lib/perl5/Class/Accessor/Faster.pm @@ -0,0 +1,101 @@ +package Class::Accessor::Faster; +use base 'Class::Accessor'; +use strict; +$Class::Accessor::Faster::VERSION = '0.34'; + +my %slot; +sub _slot { + my($class, $field) = @_; + my $n = $slot{$class}->{$field}; + return $n if defined $n; + $n = keys %{$slot{$class}}; + $slot{$class}->{$field} = $n; + return $n; +} + +sub new { + my($proto, $fields) = @_; + my($class) = ref $proto || $proto; + my $self = bless [], $class; + + $fields = {} unless defined $fields; + for my $k (keys %$fields) { + my $n = $class->_slot($k); + $self->[$n] = $fields->{$k}; + } + return $self; +} + +sub make_accessor { + my($class, $field) = @_; + my $n = $class->_slot($field); + return sub { + return $_[0]->[$n] if scalar(@_) == 1; + return $_[0]->[$n] = scalar(@_) == 2 ? $_[1] : [@_[1..$#_]]; + }; +} + +sub make_ro_accessor { + my($class, $field) = @_; + my $n = $class->_slot($field); + return sub { + return $_[0]->[$n] if @_ == 1; + my $caller = caller; + $_[0]->_croak("'$caller' cannot alter the value of '$field' on objects of class '$class'"); + }; +} + +sub make_wo_accessor { + my($class, $field) = @_; + my $n = $class->_slot($field); + return sub { + if (@_ == 1) { + my $caller = caller; + $_[0]->_croak("'$caller' cannot access the value of '$field' on objects of class '$class'"); + } else { + return $_[0]->[$n] = $_[1] if @_ == 2; + return (shift)->[$n] = \@_; + } + }; +} + +1; + +__END__ + +=head1 NAME + +Class::Accessor::Faster - Even faster, but less expandable, accessors + +=head1 SYNOPSIS + + package Foo; + use base qw(Class::Accessor::Faster); + +=head1 DESCRIPTION + +This is a faster but less expandable version of Class::Accessor::Fast. + +Class::Accessor's generated accessors require two method calls to accompish +their task (one for the accessor, another for get() or set()). + +Class::Accessor::Fast eliminates calling set()/get() and does the access itself, +resulting in a somewhat faster accessor. + +Class::Accessor::Faster uses an array reference underneath to be faster. + +Read the documentation for Class::Accessor for more info. + +=head1 AUTHORS + +Copyright 2007 Marty Pauley + +This program is free software; you can redistribute it and/or modify it under +the same terms as Perl itself. That means either (a) the GNU General Public +License or (b) the Artistic License. + +=head1 SEE ALSO + +L + +=cut diff --git a/slic3r/linux/local-lib/lib/perl5/Class/Method/Modifiers.pm b/slic3r/linux/local-lib/lib/perl5/Class/Method/Modifiers.pm new file mode 100644 index 00000000..0dbcef68 --- /dev/null +++ b/slic3r/linux/local-lib/lib/perl5/Class/Method/Modifiers.pm @@ -0,0 +1,565 @@ +use strict; +use warnings; +package Class::Method::Modifiers; # git description: v2.11-20-g6902f76 +# ABSTRACT: Provides Moose-like method modifiers +# KEYWORDS: method wrap modification patch +# vim: set ts=8 sts=4 sw=4 tw=115 et : + +our $VERSION = '2.12'; + +use base 'Exporter'; + +our @EXPORT = qw(before after around); +our @EXPORT_OK = (@EXPORT, qw(fresh install_modifier)); +our %EXPORT_TAGS = ( + moose => [qw(before after around)], + all => \@EXPORT_OK, +); + +BEGIN { + *_HAS_READONLY = $] >= 5.008 ? sub(){1} : sub(){0}; +} + +our %MODIFIER_CACHE; + +# for backward compatibility +sub _install_modifier; # -w +*_install_modifier = \&install_modifier; + +sub install_modifier { + my $into = shift; + my $type = shift; + my $code = pop; + my @names = @_; + + @names = @{ $names[0] } if ref($names[0]) eq 'ARRAY'; + + return _fresh($into, $code, @names) if $type eq 'fresh'; + + for my $name (@names) { + my $hit = $into->can($name) or do { + require Carp; + Carp::confess("The method '$name' is not found in the inheritance hierarchy for class $into"); + }; + + my $qualified = $into.'::'.$name; + my $cache = $MODIFIER_CACHE{$into}{$name} ||= { + before => [], + after => [], + around => [], + }; + + # this must be the first modifier we're installing + if (!exists($cache->{"orig"})) { + no strict 'refs'; + + # grab the original method (or undef if the method is inherited) + $cache->{"orig"} = *{$qualified}{CODE}; + + # the "innermost" method, the one that "around" will ultimately wrap + $cache->{"wrapped"} = $cache->{"orig"} || $hit; #sub { + # # we can't cache this, because new methods or modifiers may be + # # added between now and when this method is called + # for my $package (@{ mro::get_linear_isa($into) }) { + # next if $package eq $into; + # my $code = *{$package.'::'.$name}{CODE}; + # goto $code if $code; + # } + # require Carp; + # Carp::confess("$qualified\::$name disappeared?"); + #}; + } + + # keep these lists in the order the modifiers are called + if ($type eq 'after') { + push @{ $cache->{$type} }, $code; + } + else { + unshift @{ $cache->{$type} }, $code; + } + + # wrap the method with another layer of around. much simpler than + # the Moose equivalent. :) + if ($type eq 'around') { + my $method = $cache->{wrapped}; + my $attrs = _sub_attrs($code); + # a bare "sub :lvalue {...}" will be parsed as a label and an + # indirect method call. force it to be treated as an expression + # using + + $cache->{wrapped} = eval "package $into; +sub $attrs { \$code->(\$method, \@_); };"; + } + + # install our new method which dispatches the modifiers, but only + # if a new type was added + if (@{ $cache->{$type} } == 1) { + + # avoid these hash lookups every method invocation + my $before = $cache->{"before"}; + my $after = $cache->{"after"}; + + # this is a coderef that changes every new "around". so we need + # to take a reference to it. better a deref than a hash lookup + my $wrapped = \$cache->{"wrapped"}; + + my $attrs = _sub_attrs($cache->{wrapped}); + + my $generated = "package $into;\n"; + $generated .= "sub $name $attrs {"; + + # before is easy, it doesn't affect the return value(s) + if (@$before) { + $generated .= ' + for my $method (@$before) { + $method->(@_); + } + '; + } + + if (@$after) { + $generated .= ' + my $ret; + if (wantarray) { + $ret = [$$wrapped->(@_)]; + '.(_HAS_READONLY ? 'Internals::SvREADONLY(@$ret, 1);' : '').' + } + elsif (defined wantarray) { + $ret = \($$wrapped->(@_)); + } + else { + $$wrapped->(@_); + } + + for my $method (@$after) { + $method->(@_); + } + + wantarray ? @$ret : $ret ? $$ret : (); + ' + } + else { + $generated .= '$$wrapped->(@_);'; + } + + $generated .= '}'; + + no strict 'refs'; + no warnings 'redefine'; + no warnings 'closure'; + eval $generated; + }; + } +} + +sub before { + _install_modifier(scalar(caller), 'before', @_); +} + +sub after { + _install_modifier(scalar(caller), 'after', @_); +} + +sub around { + _install_modifier(scalar(caller), 'around', @_); +} + +sub fresh { + my $code = pop; + my @names = @_; + + @names = @{ $names[0] } if ref($names[0]) eq 'ARRAY'; + + _fresh(scalar(caller), $code, @names); +} + +sub _fresh { + my ($into, $code, @names) = @_; + + for my $name (@names) { + if ($name !~ /\A [a-zA-Z_] [a-zA-Z0-9_]* \z/xms) { + require Carp; + Carp::confess("Invalid method name '$name'"); + } + if ($into->can($name)) { + require Carp; + Carp::confess("Class $into already has a method named '$name'"); + } + + # We need to make sure that the installed method has its CvNAME in + # the appropriate package; otherwise, it would be subject to + # deletion if callers use namespace::autoclean. If $code was + # compiled in the target package, we can just install it directly; + # otherwise, we'll need a different approach. Using Sub::Name would + # be fine in all cases, at the cost of introducing a dependency on + # an XS-using, non-core module. So instead we'll use string-eval to + # create a new subroutine that wraps $code. + if (_is_in_package($code, $into)) { + no strict 'refs'; + *{"$into\::$name"} = $code; + } + else { + no warnings 'closure'; # for 5.8.x + my $attrs = _sub_attrs($code); + eval "package $into; sub $name $attrs { \$code->(\@_) }"; + } + } +} + +sub _sub_attrs { + my ($coderef) = @_; + local *_sub = $coderef; + local $@; + (eval 'sub { _sub = 1 }') ? ':lvalue' : ''; +} + +sub _is_in_package { + my ($coderef, $package) = @_; + require B; + my $cv = B::svref_2object($coderef); + return $cv->GV->STASH->NAME eq $package; +} + +1; + +__END__ + +=pod + +=encoding UTF-8 + +=head1 NAME + +Class::Method::Modifiers - Provides Moose-like method modifiers + +=head1 VERSION + +version 2.12 + +=head1 SYNOPSIS + + package Child; + use parent 'Parent'; + use Class::Method::Modifiers; + + sub new_method { } + + before 'old_method' => sub { + carp "old_method is deprecated, use new_method"; + }; + + around 'other_method' => sub { + my $orig = shift; + my $ret = $orig->(@_); + return $ret =~ /\d/ ? $ret : lc $ret; + }; + + after 'private', 'protected' => sub { + debug "finished calling a dangerous method"; + }; + + use Class::Method::Modifiers qw(fresh); + + fresh 'not_in_hierarchy' => sub { + warn "freshly added method\n"; + }; + +=head1 DESCRIPTION + +=for stopwords CLOS + +Method modifiers are a convenient feature from the CLOS (Common Lisp Object +System) world. + +In its most basic form, a method modifier is just a method that calls +C<< $self->SUPER::foo(@_) >>. I for one have trouble remembering that exact +invocation, so my classes seldom re-dispatch to their base classes. Very bad! + +C provides three modifiers: C, C, and +C. C and C are run just before and after the method they +modify, but can not really affect that original method. C is run in +place of the original method, with a hook to easily call that original method. +See the C section for more details on how the particular modifiers +work. + +One clear benefit of using C is that you can define +multiple modifiers in a single namespace. These separate modifiers don't need +to know about each other. This makes top-down design easy. Have a base class +that provides the skeleton methods of each operation, and have plugins modify +those methods to flesh out the specifics. + +Parent classes need not know about C. This means you +should be able to modify methods in I subclass. See +L for an example of subclassing with +C. + +In short, C solves the problem of making sure you +call C<< $self->SUPER::foo(@_) >>, and provides a cleaner interface for it. + +As of version 1.00, C is faster in some cases than +L. See C in the L distribution. + +C also provides an additional "modifier" type, +C; see below. + +=head1 MODIFIERS + +All modifiers let you modify one or multiple methods at a time. The names of +multiple methods can be provided as a list or as an array-reference. Examples: + + before 'method' => sub { ... }; + before 'method1', 'method2' => sub { ... }; + before [ 'method1', 'method2' ] => sub { ... }; + +=head2 before method(s) => sub { ... }; + +C is called before the method it is modifying. Its return value is +totally ignored. It receives the same C<@_> as the method it is modifying +would have received. You can modify the C<@_> the original method will receive +by changing C<$_[0]> and friends (or by changing anything inside a reference). +This is a feature! + +=head2 after method(s) => sub { ... }; + +C is called after the method it is modifying. Its return value is +totally ignored. It receives the same C<@_> as the method it is modifying +received, mostly. The original method can modify C<@_> (such as by changing +C<$_[0]> or references) and C will see the modified version. If you +don't like this behavior, specify both a C and C, and copy the +C<@_> during C for C to use. + +=head2 around method(s) => sub { ... }; + +C is called instead of the method it is modifying. The method you're +overriding is passed in as the first argument (called C<$orig> by convention). +Watch out for contextual return values of C<$orig>. + +You can use C to: + +=over 4 + +=item Pass C<$orig> a different C<@_> + + around 'method' => sub { + my $orig = shift; + my $self = shift; + $orig->($self, reverse @_); + }; + +=item Munge the return value of C<$orig> + + around 'method' => sub { + my $orig = shift; + ucfirst $orig->(@_); + }; + +=item Avoid calling C<$orig> -- conditionally + + around 'method' => sub { + my $orig = shift; + return $orig->(@_) if time() % 2; + return "no dice, captain"; + }; + +=back + +=head2 fresh method(s) => sub { ... }; + +(Available since version 2.00) + +Unlike the other modifiers, this does not modify an existing method. +Ordinarily, C merely installs the coderef as a method in the +appropriate class; but if the class hierarchy already contains a method of +the same name, an exception is thrown. The idea of this "modifier" is to +increase safety when subclassing. Suppose you're writing a subclass of a +class Some::Base, and adding a new method: + + package My::Subclass; + use base 'Some::Base'; + + sub foo { ... } + +If a later version of Some::Base also adds a new method named C, your +method will shadow that method. Alternatively, you can use C +to install the additional method into your subclass: + + package My::Subclass; + use base 'Some::Base'; + + use Class::Method::Modifiers 'fresh'; + + fresh 'foo' => sub { ... }; + +Now upgrading Some::Base to a version with a conflicting C method will +cause an exception to be thrown; seeing that error will give you the +opportunity to fix the problem (perhaps by picking a different method name +in your subclass, or similar). + +Creating fresh methods with C (see below) provides a way +to get similar safety benefits when adding local monkeypatches to existing +classes; see L. + +For API compatibility reasons, this function is exported only when you ask +for it specifically, or for C<:all>. + +=head2 install_modifier $package, $type, @names, sub { ... } + +C is like C, C, C, and C but +it also lets you dynamically select the modifier type ('before', 'after', +'around', 'fresh') +and package that the method modifiers are installed into. This expert-level +function is exported only when you ask for it specifically, or for C<:all>. + +=head1 NOTES + +All three normal modifiers; C, C, and C; are exported +into your namespace by default. You may C to +avoid modifying your namespace. I may steal more features from L, namely +C, C, C, C, and whatever the L folks +come up with next. + +Note that the syntax and semantics for these modifiers is directly borrowed +from L (the implementations, however, are not). + +L shares a few similarities with C, +and they even have some overlap in purpose -- both can be used to implement +highly pluggable applications. The difference is that L +provides a mechanism for easily letting parent classes to invoke hooks defined +by other code. C provides a way of +overriding/augmenting methods safely, and the parent class need not know about +it. + +=head2 :lvalue METHODS + +When adding C or C modifiers, the wrapper method will be +an lvalue method if the wrapped sub is, and assigning to the method +will propagate to the wrapped method as expected. For C +modifiers, it is the modifier sub that determines if the wrapper +method is an lvalue method. + +=head1 CAVEATS + +It is erroneous to modify a method that doesn't exist in your class's +inheritance hierarchy. If this occurs, an exception will be thrown when +the modifier is defined. + +It doesn't yet play well with C. There are some C tests for this. +Don't get your hopes up though! + +Applying modifiers to array lvalue methods is not fully supported. Attempting +to assign to an array lvalue method that has an C modifier applied will +result in an error. Array lvalue methods are not well supported by perl in +general, and should be avoided. + +=head1 MAJOR VERSION CHANGES + +=for stopwords reimplementation + +This module was bumped to 1.00 following a complete reimplementation, to +indicate breaking backwards compatibility. The "guard" modifier was removed, +and the internals are completely different. + +The new version is a few times faster with half the code. It's now even faster +than Moose. + +Any code that just used modifiers should not change in behavior, except to +become more correct. And, of course, faster. :) + +=head1 SEE ALSO + +=over 4 + +=item * + +L + +=item * + +L + +=item * + +L + +=item * + +L + +=item * + +L, + +=item * + +L + +=back + +=head1 ACKNOWLEDGEMENTS + +=for stopwords Stevan + +Thanks to Stevan Little for L, I would never have known about +method modifiers otherwise. + +Thanks to Matt Trout and Stevan Little for their advice. + +=head1 SUPPORT + +Bugs may be submitted through L +(or L). + +=head1 AUTHOR + +Shawn M Moore + +=head1 CONTRIBUTORS + +=for stopwords Karen Etheridge Shawn M Moore Graham Knop Aaron Crane Peter Rabbitson Justin Hunter David Steinbrunner gfx mannih + +=over 4 + +=item * + +Karen Etheridge + +=item * + +Shawn M Moore + +=item * + +Graham Knop + +=item * + +Aaron Crane + +=item * + +Peter Rabbitson + +=item * + +Justin Hunter + +=item * + +David Steinbrunner + +=item * + +gfx + +=item * + +mannih + +=back + +=head1 COPYRIGHT AND LICENSE + +This software is copyright (c) 2007 by Shawn M Moore. + +This is free software; you can redistribute it and/or modify it under +the same terms as the Perl 5 programming language system itself. + +=cut diff --git a/slic3r/linux/local-lib/lib/perl5/Class/Struct.pm b/slic3r/linux/local-lib/lib/perl5/Class/Struct.pm new file mode 100644 index 00000000..7d6d63e7 --- /dev/null +++ b/slic3r/linux/local-lib/lib/perl5/Class/Struct.pm @@ -0,0 +1,248 @@ +#line 1 "Class/Struct.pm" +package Class::Struct; + +## See POD after __END__ + +use 5.006_001; + +use strict; +use warnings::register; +our(@ISA, @EXPORT, $VERSION); + +use Carp; + +require Exporter; +@ISA = qw(Exporter); +@EXPORT = qw(struct); + +$VERSION = '0.65'; + +my $print = 0; +sub printem { + if (@_) { $print = shift } + else { $print++ } +} + +{ + package Class::Struct::Tie_ISA; + + sub TIEARRAY { + my $class = shift; + return bless [], $class; + } + + sub STORE { + my ($self, $index, $value) = @_; + Class::Struct::_subclass_error(); + } + + sub FETCH { + my ($self, $index) = @_; + $self->[$index]; + } + + sub FETCHSIZE { + my $self = shift; + return scalar(@$self); + } + + sub DESTROY { } +} + +sub import { + my $self = shift; + + if ( @_ == 0 ) { + $self->export_to_level( 1, $self, @EXPORT ); + } elsif ( @_ == 1 ) { + # This is admittedly a little bit silly: + # do we ever export anything else than 'struct'...? + $self->export_to_level( 1, $self, @_ ); + } else { + goto &struct; + } +} + +sub struct { + + # Determine parameter list structure, one of: + # struct( class => [ element-list ]) + # struct( class => { element-list }) + # struct( element-list ) + # Latter form assumes current package name as struct name. + + my ($class, @decls); + my $base_type = ref $_[1]; + if ( $base_type eq 'HASH' ) { + $class = shift; + @decls = %{shift()}; + _usage_error() if @_; + } + elsif ( $base_type eq 'ARRAY' ) { + $class = shift; + @decls = @{shift()}; + _usage_error() if @_; + } + else { + $base_type = 'ARRAY'; + $class = (caller())[0]; + @decls = @_; + } + + _usage_error() if @decls % 2 == 1; + + # Ensure we are not, and will not be, a subclass. + + my $isa = do { + no strict 'refs'; + \@{$class . '::ISA'}; + }; + _subclass_error() if @$isa; + tie @$isa, 'Class::Struct::Tie_ISA'; + + # Create constructor. + + croak "function 'new' already defined in package $class" + if do { no strict 'refs'; defined &{$class . "::new"} }; + + my @methods = (); + my %refs = (); + my %arrays = (); + my %hashes = (); + my %classes = (); + my $got_class = 0; + my $out = ''; + + $out = "{\n package $class;\n use Carp;\n sub new {\n"; + $out .= " my (\$class, \%init) = \@_;\n"; + $out .= " \$class = __PACKAGE__ unless \@_;\n"; + + my $cnt = 0; + my $idx = 0; + my( $cmt, $name, $type, $elem ); + + if( $base_type eq 'HASH' ){ + $out .= " my(\$r) = {};\n"; + $cmt = ''; + } + elsif( $base_type eq 'ARRAY' ){ + $out .= " my(\$r) = [];\n"; + } + + $out .= " bless \$r, \$class;\n\n"; + + while( $idx < @decls ){ + $name = $decls[$idx]; + $type = $decls[$idx+1]; + push( @methods, $name ); + if( $base_type eq 'HASH' ){ + $elem = "{'${class}::$name'}"; + } + elsif( $base_type eq 'ARRAY' ){ + $elem = "[$cnt]"; + ++$cnt; + $cmt = " # $name"; + } + if( $type =~ /^\*(.)/ ){ + $refs{$name}++; + $type = $1; + } + my $init = "defined(\$init{'$name'}) ? \$init{'$name'} :"; + if( $type eq '@' ){ + $out .= " croak 'Initializer for $name must be array reference'\n"; + $out .= " if defined(\$init{'$name'}) && ref(\$init{'$name'}) ne 'ARRAY';\n"; + $out .= " \$r->$name( $init [] );$cmt\n"; + $arrays{$name}++; + } + elsif( $type eq '%' ){ + $out .= " croak 'Initializer for $name must be hash reference'\n"; + $out .= " if defined(\$init{'$name'}) && ref(\$init{'$name'}) ne 'HASH';\n"; + $out .= " \$r->$name( $init {} );$cmt\n"; + $hashes{$name}++; + } + elsif ( $type eq '$') { + $out .= " \$r->$name( $init undef );$cmt\n"; + } + elsif( $type =~ /^\w+(?:::\w+)*$/ ){ + $out .= " if (defined(\$init{'$name'})) {\n"; + $out .= " if (ref \$init{'$name'} eq 'HASH')\n"; + $out .= " { \$r->$name( $type->new(\%{\$init{'$name'}}) ) } $cmt\n"; + $out .= " elsif (UNIVERSAL::isa(\$init{'$name'}, '$type'))\n"; + $out .= " { \$r->$name( \$init{'$name'} ) } $cmt\n"; + $out .= " else { croak 'Initializer for $name must be hash or $type reference' }\n"; + $out .= " }\n"; + $classes{$name} = $type; + $got_class = 1; + } + else{ + croak "'$type' is not a valid struct element type"; + } + $idx += 2; + } + + $out .= "\n \$r;\n}\n"; + + # Create accessor methods. + + my( $pre, $pst, $sel ); + $cnt = 0; + foreach $name (@methods){ + if ( do { no strict 'refs'; defined &{$class . "::$name"} } ) { + warnings::warnif("function '$name' already defined, overrides struct accessor method"); + } + else { + $pre = $pst = $cmt = $sel = ''; + if( defined $refs{$name} ){ + $pre = "\\("; + $pst = ")"; + $cmt = " # returns ref"; + } + $out .= " sub $name {$cmt\n my \$r = shift;\n"; + if( $base_type eq 'ARRAY' ){ + $elem = "[$cnt]"; + ++$cnt; + } + elsif( $base_type eq 'HASH' ){ + $elem = "{'${class}::$name'}"; + } + if( defined $arrays{$name} ){ + $out .= " my \$i;\n"; + $out .= " \@_ ? (\$i = shift) : return \$r->$elem;\n"; + $out .= " if (ref(\$i) eq 'ARRAY' && !\@_) { \$r->$elem = \$i; return \$r }\n"; + $sel = "->[\$i]"; + } + elsif( defined $hashes{$name} ){ + $out .= " my \$i;\n"; + $out .= " \@_ ? (\$i = shift) : return \$r->$elem;\n"; + $out .= " if (ref(\$i) eq 'HASH' && !\@_) { \$r->$elem = \$i; return \$r }\n"; + $sel = "->{\$i}"; + } + elsif( defined $classes{$name} ){ + $out .= " croak '$name argument is wrong class' if \@_ && ! UNIVERSAL::isa(\$_[0], '$classes{$name}');\n"; + } + $out .= " croak 'Too many args to $name' if \@_ > 1;\n"; + $out .= " \@_ ? ($pre\$r->$elem$sel = shift$pst) : $pre\$r->$elem$sel$pst;\n"; + $out .= " }\n"; + } + } + $out .= "}\n1;\n"; + + print $out if $print; + my $result = eval $out; + carp $@ if $@; +} + +sub _usage_error { + confess "struct usage error"; +} + +sub _subclass_error { + croak 'struct class cannot be a subclass (@ISA not allowed)'; +} + +1; # for require + + +__END__ + +#line 638 diff --git a/slic3r/linux/local-lib/lib/perl5/Config.pm b/slic3r/linux/local-lib/lib/perl5/Config.pm new file mode 100644 index 00000000..710951e8 --- /dev/null +++ b/slic3r/linux/local-lib/lib/perl5/Config.pm @@ -0,0 +1,112 @@ +#line 1 "Config.pm" +# This file was created by configpm when Perl was built. Any changes +# made to this file will be lost the next time perl is built. + +# for a description of the variables, please have a look at the +# Glossary file, as written in the Porting folder, or use the url: +# http://perl5.git.perl.org/perl.git/blob/HEAD:/Porting/Glossary + +package Config; +use strict; +use warnings; +use vars '%Config', '$VERSION'; + +$VERSION = "5.024000"; + +# Skip @Config::EXPORT because it only contains %Config, which we special +# case below as it's not a function. @Config::EXPORT won't change in the +# lifetime of Perl 5. +my %Export_Cache = (myconfig => 1, config_sh => 1, config_vars => 1, + config_re => 1, compile_date => 1, local_patches => 1, + bincompat_options => 1, non_bincompat_options => 1, + header_files => 1); + +@Config::EXPORT = qw(%Config); +@Config::EXPORT_OK = keys %Export_Cache; + +# Need to stub all the functions to make code such as print Config::config_sh +# keep working + +sub bincompat_options; +sub compile_date; +sub config_re; +sub config_sh; +sub config_vars; +sub header_files; +sub local_patches; +sub myconfig; +sub non_bincompat_options; + +# Define our own import method to avoid pulling in the full Exporter: +sub import { + shift; + @_ = @Config::EXPORT unless @_; + + my @funcs = grep $_ ne '%Config', @_; + my $export_Config = @funcs < @_ ? 1 : 0; + + no strict 'refs'; + my $callpkg = caller(0); + foreach my $func (@funcs) { + die qq{"$func" is not exported by the Config module\n} + unless $Export_Cache{$func}; + *{$callpkg.'::'.$func} = \&{$func}; + } + + *{"$callpkg\::Config"} = \%Config if $export_Config; + return; +} + +die "$0: Perl lib version (5.24.0) doesn't match executable '$^X' version ($])" + unless $^V; + +$^V eq 5.24.0 + or die sprintf "%s: Perl lib version (5.24.0) doesn't match executable '$^X' version (%vd)", $0, $^V; + + +sub FETCH { + my($self, $key) = @_; + + # check for cached value (which may be undef so we use exists not defined) + return exists $self->{$key} ? $self->{$key} : $self->fetch_string($key); +} + +sub TIEHASH { + bless $_[1], $_[0]; +} + +sub DESTROY { } + +sub AUTOLOAD { + require 'Config_heavy.pl'; + goto \&launcher unless $Config::AUTOLOAD =~ /launcher$/; + die "&Config::AUTOLOAD failed on $Config::AUTOLOAD"; +} + +# tie returns the object, so the value returned to require will be true. +tie %Config, 'Config', { + archlibexp => '/home/travis/perl5/perlbrew/perls/slic3r-perl/lib/5.24.0/x86_64-linux-thread-multi', + archname => 'x86_64-linux-thread-multi', + cc => 'gcc-4.9', + d_readlink => 'define', + d_symlink => 'define', + dlext => 'so', + dlsrc => 'dl_dlopen.xs', + dont_use_nlink => undef, + exe_ext => '', + inc_version_list => ' ', + intsize => '4', + ldlibpthname => 'LD_LIBRARY_PATH', + libpth => '/usr/local/lib /usr/lib/gcc/x86_64-linux-gnu/4.9/include-fixed /usr/include/x86_64-linux-gnu /usr/lib /lib/x86_64-linux-gnu /lib/../lib /usr/lib/x86_64-linux-gnu /usr/lib/../lib /lib', + osname => 'linux', + osvers => '3.16.0-4-amd64', + path_sep => ':', + privlibexp => '/home/travis/perl5/perlbrew/perls/slic3r-perl/lib/5.24.0', + scriptdir => '/home/travis/perl5/perlbrew/perls/slic3r-perl/bin', + sitearchexp => '/home/travis/perl5/perlbrew/perls/slic3r-perl/lib/site_perl/5.24.0/x86_64-linux-thread-multi', + sitelibexp => '/home/travis/perl5/perlbrew/perls/slic3r-perl/lib/site_perl/5.24.0', + so => 'so', + useithreads => 'define', + usevendorprefix => undef, + version => '5.24.0', +}; diff --git a/slic3r/linux/local-lib/lib/perl5/Config_git.pl b/slic3r/linux/local-lib/lib/perl5/Config_git.pl new file mode 100644 index 00000000..6aacc4c1 --- /dev/null +++ b/slic3r/linux/local-lib/lib/perl5/Config_git.pl @@ -0,0 +1,12 @@ +###################################################################### +# WARNING: 'lib/Config_git.pl' is generated by make_patchnum.pl +# DO NOT EDIT DIRECTLY - edit make_patchnum.pl instead +###################################################################### +$Config::Git_Data=<<'ENDOFGIT'; +git_commit_id='' +git_describe='' +git_branch='' +git_uncommitted_changes='' +git_commit_id_title='' + +ENDOFGIT diff --git a/slic3r/linux/local-lib/lib/perl5/Config_heavy.pl b/slic3r/linux/local-lib/lib/perl5/Config_heavy.pl new file mode 100644 index 00000000..4d51996b --- /dev/null +++ b/slic3r/linux/local-lib/lib/perl5/Config_heavy.pl @@ -0,0 +1,1442 @@ +# This file was created by configpm when Perl was built. Any changes +# made to this file will be lost the next time perl is built. + +package Config; +use strict; +use warnings; +use vars '%Config'; + +sub bincompat_options { + return split ' ', (Internals::V())[0]; +} + +sub non_bincompat_options { + return split ' ', (Internals::V())[1]; +} + +sub compile_date { + return (Internals::V())[2] +} + +sub local_patches { + my (undef, undef, undef, @patches) = Internals::V(); + return @patches; +} + +sub _V { + die "Perl lib was built for 'linux' but is being run on '$^O'" + unless "linux" eq $^O; + + my ($bincompat, $non_bincompat, $date, @patches) = Internals::V(); + + my $opts = join ' ', sort split ' ', "$bincompat $non_bincompat"; + + # wrap at 76 columns. + + $opts =~ s/(?=.{53})(.{1,53}) /$1\n /mg; + + print Config::myconfig(); + print "\nCharacteristics of this binary (from libperl): \n"; + + print " Compile-time options: $opts\n"; + + if (@patches) { + print " Locally applied patches:\n"; + print "\t$_\n" foreach @patches; + } + + print " Built under linux\n"; + + print " $date\n" if defined $date; + + my @env = map { "$_=\"$ENV{$_}\"" } sort grep {/^PERL/} keys %ENV; + + if (@env) { + print " \%ENV:\n"; + print " $_\n" foreach @env; + } + print " \@INC:\n"; + print " $_\n" foreach @INC; +} + +sub header_files { + return qw(EXTERN.h INTERN.h XSUB.h av.h config.h cop.h cv.h + dosish.h embed.h embedvar.h form.h gv.h handy.h hv.h hv_func.h + intrpvar.h iperlsys.h keywords.h mg.h nostdio.h op.h opcode.h + pad.h parser.h patchlevel.h perl.h perlio.h perliol.h perlsdio.h + perlvars.h perly.h pp.h pp_proto.h proto.h regcomp.h regexp.h + regnodes.h scope.h sv.h thread.h time64.h unixish.h utf8.h + util.h); +} + +## +## This file was produced by running the Configure script. It holds all the +## definitions figured out by Configure. Should you modify one of these values, +## do not forget to propagate your changes by running "Configure -der". You may +## instead choose to run each of the .SH files by yourself, or "Configure -S". +## +# +## Package name : perl5 +## Source directory : . +## Configuration time: Fri Mar 31 04:30:16 UTC 2017 +## Configured by : travis +## Target system : linux 5bf2cbbebde7 3.16.0-4-amd64 #1 smp debian 3.16.39-1+deb8u2 (2017-03-07) x86_64 x86_64 x86_64 gnulinux +# +#: Configure command line arguments. +# +#: Variables propagated from previous config.sh file. + +our $summary = <<'!END!'; +Summary of my $package (revision $revision $version_patchlevel_string) configuration: + $git_commit_id_title $git_commit_id$git_ancestor_line + Platform: + osname=$osname, osvers=$osvers, archname=$archname + uname='$myuname' + config_args='$config_args' + hint=$hint, useposix=$useposix, d_sigaction=$d_sigaction + useithreads=$useithreads, usemultiplicity=$usemultiplicity + use64bitint=$use64bitint, use64bitall=$use64bitall, uselongdouble=$uselongdouble + usemymalloc=$usemymalloc, bincompat5005=undef + Compiler: + cc='$cc', ccflags ='$ccflags', + optimize='$optimize', + cppflags='$cppflags' + ccversion='$ccversion', gccversion='$gccversion', gccosandvers='$gccosandvers' + intsize=$intsize, longsize=$longsize, ptrsize=$ptrsize, doublesize=$doublesize, byteorder=$byteorder, doublekind=$doublekind + d_longlong=$d_longlong, longlongsize=$longlongsize, d_longdbl=$d_longdbl, longdblsize=$longdblsize, longdblkind=$longdblkind + ivtype='$ivtype', ivsize=$ivsize, nvtype='$nvtype', nvsize=$nvsize, Off_t='$lseektype', lseeksize=$lseeksize + alignbytes=$alignbytes, prototype=$prototype + Linker and Libraries: + ld='$ld', ldflags ='$ldflags' + libpth=$libpth + libs=$libs + perllibs=$perllibs + libc=$libc, so=$so, useshrplib=$useshrplib, libperl=$libperl + gnulibc_version='$gnulibc_version' + Dynamic Linking: + dlsrc=$dlsrc, dlext=$dlext, d_dlsymun=$d_dlsymun, ccdlflags='$ccdlflags' + cccdlflags='$cccdlflags', lddlflags='$lddlflags' + +!END! +my $summary_expanded; + +sub myconfig { + return $summary_expanded if $summary_expanded; + ($summary_expanded = $summary) =~ s{\$(\w+)} + { + my $c; + if ($1 eq 'git_ancestor_line') { + if ($Config::Config{git_ancestor}) { + $c= "\n Ancestor: $Config::Config{git_ancestor}"; + } else { + $c= ""; + } + } else { + $c = $Config::Config{$1}; + } + defined($c) ? $c : 'undef' + }ge; + $summary_expanded; +} + +local *_ = \my $a; +$_ = <<'!END!'; +Author='' +CONFIG='true' +Date='' +Header='' +Id='' +Locker='' +Log='' +PATCHLEVEL='24' +PERL_API_REVISION='5' +PERL_API_SUBVERSION='0' +PERL_API_VERSION='24' +PERL_CONFIG_SH='true' +PERL_PATCHLEVEL='' +PERL_REVISION='5' +PERL_SUBVERSION='0' +PERL_VERSION='24' +RCSfile='' +Revision='' +SUBVERSION='0' +Source='' +State='' +_a='.a' +_exe='' +_o='.o' +afs='false' +afsroot='/afs' +alignbytes='8' +ansi2knr='' +aphostname='/bin/hostname' +api_revision='5' +api_subversion='0' +api_version='24' +api_versionstring='5.24.0' +ar='ar' +archlib='/home/travis/perl5/perlbrew/perls/slic3r-perl/lib/5.24.0/x86_64-linux-thread-multi' +archlibexp='/home/travis/perl5/perlbrew/perls/slic3r-perl/lib/5.24.0/x86_64-linux-thread-multi' +archname64='' +archname='x86_64-linux-thread-multi' +archobjs='' +asctime_r_proto='REENTRANT_PROTO_B_SB' +awk='awk' +baserev='5.0' +bash='' +bin='/home/travis/perl5/perlbrew/perls/slic3r-perl/bin' +bin_ELF='define' +binexp='/home/travis/perl5/perlbrew/perls/slic3r-perl/bin' +bison='bison' +byacc='byacc' +byteorder='12345678' +c='' +castflags='0' +cat='cat' +cc='gcc-4.9' +cccdlflags='-fPIC' +ccdlflags='-Wl,-E' +ccflags='-D_REENTRANT -D_GNU_SOURCE -fwrapv -fno-strict-aliasing -pipe -fstack-protector-strong -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64' +ccflags_uselargefiles='-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64' +ccname='gcc' +ccsymbols='' +ccversion='' +cf_by='travis' +cf_email='travis@5bf2cbbebde7.tech' +cf_time='Fri Mar 31 04:30:16 UTC 2017' +charbits='8' +charsize='1' +chgrp='' +chmod='chmod' +chown='' +clocktype='clock_t' +comm='comm' +compress='' +config_arg0='Configure' +config_arg1='-de' +config_arg2='-Dprefix=/home/travis/perl5/perlbrew/perls/slic3r-perl' +config_arg3='-Dcc=gcc-4.9' +config_arg4='-Dusethreads' +config_arg5='-Acflags=-static-libgcc -static-libstdc++' +config_arg6='-Aeval:scriptdir=/home/travis/perl5/perlbrew/perls/slic3r-perl/bin' +config_argc='6' +config_args='-de -Dprefix=/home/travis/perl5/perlbrew/perls/slic3r-perl -Dcc=gcc-4.9 -Dusethreads -Acflags=-static-libgcc -static-libstdc++ -Aeval:scriptdir=/home/travis/perl5/perlbrew/perls/slic3r-perl/bin' +contains='grep' +cp='cp' +cpio='' +cpp='cpp' +cpp_stuff='42' +cppccsymbols='' +cppflags='-D_REENTRANT -D_GNU_SOURCE -fwrapv -fno-strict-aliasing -pipe -fstack-protector-strong -I/usr/local/include' +cpplast='-' +cppminus='-' +cpprun='gcc-4.9 -E' +cppstdin='gcc-4.9 -E' +cppsymbols='__amd64=1 __amd64__=1 __ATOMIC_ACQ_REL=4 __ATOMIC_ACQUIRE=2 __ATOMIC_CONSUME=1 __ATOMIC_HLE_ACQUIRE=65536 __ATOMIC_HLE_RELEASE=131072 __ATOMIC_RELAXED=0 __ATOMIC_RELEASE=3 __ATOMIC_SEQ_CST=5 __BIGGEST_ALIGNMENT__=16 __BYTE_ORDER__=1234 __CHAR16_TYPE__=short\ unsigned\ int __CHAR32_TYPE__=unsigned\ int __CHAR_BIT__=8 __code_model_small__=1 __DBL_DECIMAL_DIG__=17 __DBL_DENORM_MIN__=((double)4.94065645841246544177e-324L) __DBL_DIG__=15 __DBL_EPSILON__=((double)2.22044604925031308085e-16L) __DBL_HAS_DENORM__=1 __DBL_HAS_INFINITY__=1 __DBL_HAS_QUIET_NAN__=1 __DBL_MANT_DIG__=53 __DBL_MAX_10_EXP__=308 __DBL_MAX__=((double)1.79769313486231570815e+308L) __DBL_MAX_EXP__=1024 __DBL_MIN_10_EXP__=(-307) __DBL_MIN__=((double)2.22507385850720138309e-308L) __DBL_MIN_EXP__=(-1021) __DEC128_EPSILON__=1E-33DL __DEC128_MANT_DIG__=34 __DEC128_MAX__=9.999999999999999999999999999999999E6144DL __DEC128_MAX_EXP__=6145 __DEC128_MIN__=1E-6143DL __DEC128_MIN_EXP__=(-6142) __DEC128_SUBNORMAL_MIN__=0.000000000000000000000000000000001E-6143DL __DEC32_EPSILON__=1E-6DF __DEC32_MANT_DIG__=7 __DEC32_MAX__=9.999999E96DF __DEC32_MAX_EXP__=97 __DEC32_MIN__=1E-95DF __DEC32_MIN_EXP__=(-94) __DEC32_SUBNORMAL_MIN__=0.000001E-95DF __DEC64_EPSILON__=1E-15DD __DEC64_MANT_DIG__=16 __DEC64_MAX__=9.999999999999999E384DD __DEC64_MAX_EXP__=385 __DEC64_MIN__=1E-383DD __DEC64_MIN_EXP__=(-382) __DEC64_SUBNORMAL_MIN__=0.000000000000001E-383DD __DEC_EVAL_METHOD__=2 __DECIMAL_BID_FORMAT__=1 __DECIMAL_DIG__=21 __ELF__=1 _FILE_OFFSET_BITS=64 __FINITE_MATH_ONLY__=0 __FLOAT_WORD_ORDER__=1234 __FLT_DECIMAL_DIG__=9 __FLT_DENORM_MIN__=1.40129846432481707092e-45F __FLT_DIG__=6 __FLT_EPSILON__=1.19209289550781250000e-7F __FLT_EVAL_METHOD__=0 __FLT_HAS_DENORM__=1 __FLT_HAS_INFINITY__=1 __FLT_HAS_QUIET_NAN__=1 __FLT_MANT_DIG__=24 __FLT_MAX_10_EXP__=38 __FLT_MAX__=3.40282346638528859812e+38F __FLT_MAX_EXP__=128 __FLT_MIN_10_EXP__=(-37) __FLT_MIN__=1.17549435082228750797e-38F __FLT_MIN_EXP__=(-125) __FLT_RADIX__=2 _FORTIFY_SOURCE=2 __FXSR__=1 __GCC_ATOMIC_BOOL_LOCK_FREE=2 __GCC_ATOMIC_CHAR16_T_LOCK_FREE=2 __GCC_ATOMIC_CHAR32_T_LOCK_FREE=2 __GCC_ATOMIC_CHAR_LOCK_FREE=2 __GCC_ATOMIC_INT_LOCK_FREE=2 __GCC_ATOMIC_LLONG_LOCK_FREE=2 __GCC_ATOMIC_LONG_LOCK_FREE=2 __GCC_ATOMIC_POINTER_LOCK_FREE=2 __GCC_ATOMIC_SHORT_LOCK_FREE=2 __GCC_ATOMIC_TEST_AND_SET_TRUEVAL=1 __GCC_ATOMIC_WCHAR_T_LOCK_FREE=2 __GCC_HAVE_DWARF2_CFI_ASM=1 __GCC_HAVE_SYNC_COMPARE_AND_SWAP_1=1 __GCC_HAVE_SYNC_COMPARE_AND_SWAP_2=1 __GCC_HAVE_SYNC_COMPARE_AND_SWAP_4=1 __GCC_HAVE_SYNC_COMPARE_AND_SWAP_8=1 __GLIBC__=2 __GLIBC_MINOR__=19 __GNUC__=4 __GNUC_GNU_INLINE__=1 __GNUC_MINOR__=9 __GNUC_PATCHLEVEL__=4 __GNU_LIBRARY__=6 __gnu_linux__=1 _GNU_SOURCE=1 __GXX_ABI_VERSION=1002 __INT16_C=__INT16_C __INT16_MAX__=32767 __INT16_TYPE__=short\ int __INT32_C=__INT32_C __INT32_MAX__=2147483647 __INT32_TYPE__=int __INT64_C=__INT64_C __INT64_MAX__=9223372036854775807L __INT64_TYPE__=long\ int __INT8_C=__INT8_C __INT8_MAX__=127 __INT8_TYPE__=signed\ char __INT_FAST16_MAX__=9223372036854775807L __INT_FAST16_TYPE__=long\ int __INT_FAST32_MAX__=9223372036854775807L __INT_FAST32_TYPE__=long\ int __INT_FAST64_MAX__=9223372036854775807L __INT_FAST64_TYPE__=long\ int __INT_FAST8_MAX__=127 __INT_FAST8_TYPE__=signed\ char __INT_LEAST16_MAX__=32767 __INT_LEAST16_TYPE__=short\ int __INT_LEAST32_MAX__=2147483647 __INT_LEAST32_TYPE__=int __INT_LEAST64_MAX__=9223372036854775807L __INT_LEAST64_TYPE__=long\ int __INT_LEAST8_MAX__=127 __INT_LEAST8_TYPE__=signed\ char __INT_MAX__=2147483647 __INTMAX_C=__INTMAX_C __INTMAX_MAX__=9223372036854775807L __INTMAX_TYPE__=long\ int __INTPTR_MAX__=9223372036854775807L __INTPTR_TYPE__=long\ int __k8=1 __k8__=1 _LARGEFILE64_SOURCE=1 _LARGEFILE_SOURCE=1 __LDBL_DENORM_MIN__=3.64519953188247460253e-4951L __LDBL_DIG__=18 __LDBL_EPSILON__=1.08420217248550443401e-19L __LDBL_HAS_DENORM__=1 __LDBL_HAS_INFINITY__=1 __LDBL_HAS_QUIET_NAN__=1 __LDBL_MANT_DIG__=64 __LDBL_MAX_10_EXP__=4932 __LDBL_MAX__=1.18973149535723176502e+4932L __LDBL_MAX_EXP__=16384 __LDBL_MIN_10_EXP__=(-4931) __LDBL_MIN__=3.36210314311209350626e-4932L __LDBL_MIN_EXP__=(-16381) __linux=1 __linux__=1 linux=1 __LONG_LONG_MAX__=9223372036854775807LL __LONG_MAX__=9223372036854775807L __LP64__=1 _LP64=1 __MMX__=1 __ORDER_BIG_ENDIAN__=4321 __ORDER_LITTLE_ENDIAN__=1234 __ORDER_PDP_ENDIAN__=3412 _POSIX_C_SOURCE=200809L _POSIX_SOURCE=1 __PRAGMA_REDEFINE_EXTNAME=1 __PTRDIFF_MAX__=9223372036854775807L __PTRDIFF_TYPE__=long\ int _REENTRANT=1 __REGISTER_PREFIX__= __SCHAR_MAX__=127 __SHRT_MAX__=32767 __SIG_ATOMIC_MAX__=2147483647 __SIG_ATOMIC_MIN__=(-2147483647\ -\ 1) __SIG_ATOMIC_TYPE__=int __SIZE_MAX__=18446744073709551615UL __SIZEOF_DOUBLE__=8 __SIZEOF_FLOAT__=4 __SIZEOF_INT128__=16 __SIZEOF_INT__=4 __SIZEOF_LONG__=8 __SIZEOF_LONG_DOUBLE__=16 __SIZEOF_LONG_LONG__=8 __SIZEOF_POINTER__=8 __SIZEOF_PTRDIFF_T__=8 __SIZEOF_SHORT__=2 __SIZEOF_SIZE_T__=8 __SIZEOF_WCHAR_T__=4 __SIZEOF_WINT_T__=4 __SIZE_TYPE__=long\ unsigned\ int __SSE__=1 __SSE2__=1 __SSE2_MATH__=1 __SSE_MATH__=1 __SSP__=1 __STDC__=1 __STDC_HOSTED__=1 __STDC_IEC_559__=1 __STDC_IEC_559_COMPLEX__=1 __STDC_ISO_10646__=201103L __STDC_NO_THREADS__=1 _STDC_PREDEF_H=1 __UINT16_C=__UINT16_C __UINT16_MAX__=65535 __UINT16_TYPE__=short\ unsigned\ int __UINT32_C=__UINT32_C __UINT32_MAX__=4294967295U __UINT32_TYPE__=unsigned\ int __UINT64_C=__UINT64_C __UINT64_MAX__=18446744073709551615UL __UINT64_TYPE__=long\ unsigned\ int __UINT8_C=__UINT8_C __UINT8_MAX__=255 __UINT8_TYPE__=unsigned\ char __UINT_FAST16_MAX__=18446744073709551615UL __UINT_FAST16_TYPE__=long\ unsigned\ int __UINT_FAST32_MAX__=18446744073709551615UL __UINT_FAST32_TYPE__=long\ unsigned\ int __UINT_FAST64_MAX__=18446744073709551615UL __UINT_FAST64_TYPE__=long\ unsigned\ int __UINT_FAST8_MAX__=255 __UINT_FAST8_TYPE__=unsigned\ char __UINT_LEAST16_MAX__=65535 __UINT_LEAST16_TYPE__=short\ unsigned\ int __UINT_LEAST32_MAX__=4294967295U __UINT_LEAST32_TYPE__=unsigned\ int __UINT_LEAST64_MAX__=18446744073709551615UL __UINT_LEAST64_TYPE__=long\ unsigned\ int __UINT_LEAST8_MAX__=255 __UINT_LEAST8_TYPE__=unsigned\ char __UINTMAX_C=__UINTMAX_C __UINTMAX_MAX__=18446744073709551615UL __UINTMAX_TYPE__=long\ unsigned\ int __UINTPTR_MAX__=18446744073709551615UL __UINTPTR_TYPE__=long\ unsigned\ int __unix=1 __unix__=1 unix=1 __USE_BSD=1 __USE_FILE_OFFSET64=1 __USE_GNU=1 __USE_LARGEFILE=1 __USE_LARGEFILE64=1 __USE_MISC=1 __USE_POSIX=1 __USE_POSIX199309=1 __USE_POSIX199506=1 __USE_POSIX2=1 __USE_REENTRANT=1 __USER_LABEL_PREFIX__= __USE_SVID=1 __USE_UNIX98=1 __USE_XOPEN=1 __USE_XOPEN_EXTENDED=1 __VERSION__="4.9.4" __WCHAR_MAX__=2147483647 __WCHAR_MIN__=(-2147483647\ -\ 1) __WCHAR_TYPE__=int __WINT_MAX__=4294967295U __WINT_MIN__=0U __WINT_TYPE__=unsigned\ int __x86_64=1 __x86_64__=1 _XOPEN_SOURCE=700 _XOPEN_SOURCE_EXTENDED=1' +crypt_r_proto='REENTRANT_PROTO_B_CCS' +cryptlib='' +csh='csh' +ctermid_r_proto='0' +ctime_r_proto='REENTRANT_PROTO_B_SB' +d_Gconvert='gcvt((x),(n),(b))' +d_PRIEUldbl='define' +d_PRIFUldbl='define' +d_PRIGUldbl='define' +d_PRIXU64='define' +d_PRId64='define' +d_PRIeldbl='define' +d_PRIfldbl='define' +d_PRIgldbl='define' +d_PRIi64='define' +d_PRIo64='define' +d_PRIu64='define' +d_PRIx64='define' +d_SCNfldbl='define' +d__fwalk='undef' +d_access='define' +d_accessx='undef' +d_acosh='define' +d_aintl='undef' +d_alarm='define' +d_archlib='define' +d_asctime64='undef' +d_asctime_r='define' +d_asinh='define' +d_atanh='define' +d_atolf='undef' +d_atoll='define' +d_attribute_deprecated='define' +d_attribute_format='define' +d_attribute_malloc='define' +d_attribute_nonnull='define' +d_attribute_noreturn='define' +d_attribute_pure='define' +d_attribute_unused='define' +d_attribute_warn_unused_result='define' +d_backtrace='define' +d_bcmp='define' +d_bcopy='define' +d_bsd='undef' +d_bsdgetpgrp='undef' +d_bsdsetpgrp='undef' +d_builtin_choose_expr='define' +d_builtin_expect='define' +d_bzero='define' +d_c99_variadic_macros='define' +d_casti32='undef' +d_castneg='define' +d_cbrt='define' +d_charvspr='undef' +d_chown='define' +d_chroot='define' +d_chsize='undef' +d_class='undef' +d_clearenv='define' +d_closedir='define' +d_cmsghdr_s='define' +d_const='define' +d_copysign='define' +d_copysignl='define' +d_cplusplus='undef' +d_crypt='define' +d_crypt_r='define' +d_csh='undef' +d_ctermid='define' +d_ctermid_r='undef' +d_ctime64='undef' +d_ctime_r='define' +d_cuserid='define' +d_dbl_dig='define' +d_dbminitproto='define' +d_difftime64='undef' +d_difftime='define' +d_dir_dd_fd='undef' +d_dirfd='define' +d_dirnamlen='undef' +d_dladdr='define' +d_dlerror='define' +d_dlopen='define' +d_dlsymun='undef' +d_dosuid='undef' +d_drand48_r='define' +d_drand48proto='define' +d_dup2='define' +d_duplocale='define' +d_eaccess='define' +d_endgrent='define' +d_endgrent_r='undef' +d_endhent='define' +d_endhostent_r='undef' +d_endnent='define' +d_endnetent_r='undef' +d_endpent='define' +d_endprotoent_r='undef' +d_endpwent='define' +d_endpwent_r='undef' +d_endsent='define' +d_endservent_r='undef' +d_eofnblk='define' +d_erf='define' +d_erfc='define' +d_eunice='undef' +d_exp2='define' +d_expm1='define' +d_faststdio='define' +d_fchdir='define' +d_fchmod='define' +d_fchown='define' +d_fcntl='define' +d_fcntl_can_lock='define' +d_fd_macros='define' +d_fd_set='define' +d_fdclose='undef' +d_fdim='define' +d_fds_bits='define' +d_fegetround='define' +d_fgetpos='define' +d_finite='define' +d_finitel='define' +d_flexfnam='define' +d_flock='define' +d_flockproto='define' +d_fma='define' +d_fmax='define' +d_fmin='define' +d_fork='define' +d_fp_class='undef' +d_fp_classify='undef' +d_fp_classl='undef' +d_fpathconf='define' +d_fpclass='undef' +d_fpclassify='define' +d_fpclassl='undef' +d_fpgetround='undef' +d_fpos64_t='undef' +d_freelocale='define' +d_frexpl='define' +d_fs_data_s='undef' +d_fseeko='define' +d_fsetpos='define' +d_fstatfs='define' +d_fstatvfs='define' +d_fsync='define' +d_ftello='define' +d_ftime='undef' +d_futimes='define' +d_gdbm_ndbm_h_uses_prototypes='undef' +d_gdbmndbm_h_uses_prototypes='undef' +d_getaddrinfo='define' +d_getcwd='define' +d_getespwnam='undef' +d_getfsstat='undef' +d_getgrent='define' +d_getgrent_r='define' +d_getgrgid_r='define' +d_getgrnam_r='define' +d_getgrps='define' +d_gethbyaddr='define' +d_gethbyname='define' +d_gethent='define' +d_gethname='define' +d_gethostbyaddr_r='define' +d_gethostbyname_r='define' +d_gethostent_r='define' +d_gethostprotos='define' +d_getitimer='define' +d_getlogin='define' +d_getlogin_r='define' +d_getmnt='undef' +d_getmntent='define' +d_getnameinfo='define' +d_getnbyaddr='define' +d_getnbyname='define' +d_getnent='define' +d_getnetbyaddr_r='define' +d_getnetbyname_r='define' +d_getnetent_r='define' +d_getnetprotos='define' +d_getpagsz='define' +d_getpbyname='define' +d_getpbynumber='define' +d_getpent='define' +d_getpgid='define' +d_getpgrp2='undef' +d_getpgrp='define' +d_getppid='define' +d_getprior='define' +d_getprotobyname_r='define' +d_getprotobynumber_r='define' +d_getprotoent_r='define' +d_getprotoprotos='define' +d_getprpwnam='undef' +d_getpwent='define' +d_getpwent_r='define' +d_getpwnam_r='define' +d_getpwuid_r='define' +d_getsbyname='define' +d_getsbyport='define' +d_getsent='define' +d_getservbyname_r='define' +d_getservbyport_r='define' +d_getservent_r='define' +d_getservprotos='define' +d_getspnam='define' +d_getspnam_r='define' +d_gettimeod='define' +d_gmtime64='undef' +d_gmtime_r='define' +d_gnulibc='define' +d_grpasswd='define' +d_hasmntopt='define' +d_htonl='define' +d_hypot='define' +d_ilogb='define' +d_ilogbl='define' +d_inc_version_list='undef' +d_index='undef' +d_inetaton='define' +d_inetntop='define' +d_inetpton='define' +d_int64_t='define' +d_ip_mreq='define' +d_ip_mreq_source='define' +d_ipv6_mreq='define' +d_ipv6_mreq_source='undef' +d_isascii='define' +d_isblank='define' +d_isfinite='define' +d_isfinitel='undef' +d_isinf='define' +d_isinfl='define' +d_isless='undef' +d_isnan='define' +d_isnanl='define' +d_isnormal='define' +d_j0='define' +d_j0l='define' +d_killpg='define' +d_lc_monetary_2008='define' +d_lchown='define' +d_ldbl_dig='define' +d_ldexpl='define' +d_lgamma='define' +d_lgamma_r='define' +d_libm_lib_version='define' +d_libname_unique='undef' +d_link='define' +d_llrint='define' +d_llrintl='define' +d_llround='define' +d_llroundl='define' +d_localtime64='undef' +d_localtime_r='define' +d_localtime_r_needs_tzset='define' +d_locconv='define' +d_lockf='define' +d_log1p='define' +d_log2='define' +d_logb='define' +d_longdbl='define' +d_longlong='define' +d_lrint='define' +d_lrintl='define' +d_lround='define' +d_lroundl='define' +d_lseekproto='define' +d_lstat='define' +d_madvise='define' +d_malloc_good_size='undef' +d_malloc_size='undef' +d_mblen='define' +d_mbstowcs='define' +d_mbtowc='define' +d_memchr='define' +d_memcmp='define' +d_memcpy='define' +d_memmem='define' +d_memmove='define' +d_memset='define' +d_mkdir='define' +d_mkdtemp='define' +d_mkfifo='define' +d_mkstemp='define' +d_mkstemps='define' +d_mktime64='undef' +d_mktime='define' +d_mmap='define' +d_modfl='define' +d_modflproto='define' +d_mprotect='define' +d_msg='define' +d_msg_ctrunc='define' +d_msg_dontroute='define' +d_msg_oob='define' +d_msg_peek='define' +d_msg_proxy='define' +d_msgctl='define' +d_msgget='define' +d_msghdr_s='define' +d_msgrcv='define' +d_msgsnd='define' +d_msync='define' +d_munmap='define' +d_mymalloc='undef' +d_nan='define' +d_ndbm='define' +d_ndbm_h_uses_prototypes='undef' +d_nearbyint='define' +d_newlocale='define' +d_nextafter='define' +d_nexttoward='define' +d_nice='define' +d_nl_langinfo='define' +d_nv_preserves_uv='undef' +d_nv_zero_is_allbits_zero='define' +d_off64_t='define' +d_old_pthread_create_joinable='undef' +d_oldpthreads='undef' +d_oldsock='undef' +d_open3='define' +d_pathconf='define' +d_pause='define' +d_perl_otherlibdirs='undef' +d_phostname='undef' +d_pipe='define' +d_poll='define' +d_portable='define' +d_prctl='define' +d_prctl_set_name='define' +d_printf_format_null='undef' +d_procselfexe='define' +d_pseudofork='undef' +d_pthread_atfork='define' +d_pthread_attr_setscope='define' +d_pthread_yield='define' +d_ptrdiff_t='define' +d_pwage='undef' +d_pwchange='undef' +d_pwclass='undef' +d_pwcomment='undef' +d_pwexpire='undef' +d_pwgecos='define' +d_pwpasswd='define' +d_pwquota='undef' +d_qgcvt='define' +d_quad='define' +d_random_r='define' +d_re_comp='undef' +d_readdir64_r='define' +d_readdir='define' +d_readdir_r='define' +d_readlink='define' +d_readv='define' +d_recvmsg='define' +d_regcmp='undef' +d_regcomp='define' +d_remainder='define' +d_remquo='define' +d_rename='define' +d_rewinddir='define' +d_rint='define' +d_rmdir='define' +d_round='define' +d_safebcpy='undef' +d_safemcpy='undef' +d_sanemcmp='define' +d_sbrkproto='define' +d_scalbn='define' +d_scalbnl='define' +d_sched_yield='define' +d_scm_rights='define' +d_seekdir='define' +d_select='define' +d_sem='define' +d_semctl='define' +d_semctl_semid_ds='define' +d_semctl_semun='define' +d_semget='define' +d_semop='define' +d_sendmsg='define' +d_setegid='define' +d_seteuid='define' +d_setgrent='define' +d_setgrent_r='undef' +d_setgrps='define' +d_sethent='define' +d_sethostent_r='undef' +d_setitimer='define' +d_setlinebuf='define' +d_setlocale='define' +d_setlocale_r='undef' +d_setnent='define' +d_setnetent_r='undef' +d_setpent='define' +d_setpgid='define' +d_setpgrp2='undef' +d_setpgrp='define' +d_setprior='define' +d_setproctitle='undef' +d_setprotoent_r='undef' +d_setpwent='define' +d_setpwent_r='undef' +d_setregid='define' +d_setresgid='define' +d_setresuid='define' +d_setreuid='define' +d_setrgid='undef' +d_setruid='undef' +d_setsent='define' +d_setservent_r='undef' +d_setsid='define' +d_setvbuf='define' +d_shm='define' +d_shmat='define' +d_shmatprototype='define' +d_shmctl='define' +d_shmdt='define' +d_shmget='define' +d_sigaction='define' +d_siginfo_si_addr='define' +d_siginfo_si_band='define' +d_siginfo_si_errno='define' +d_siginfo_si_fd='define' +d_siginfo_si_pid='define' +d_siginfo_si_status='define' +d_siginfo_si_uid='define' +d_siginfo_si_value='define' +d_signbit='define' +d_sigprocmask='define' +d_sigsetjmp='define' +d_sin6_scope_id='define' +d_sitearch='define' +d_snprintf='define' +d_sockaddr_in6='define' +d_sockaddr_sa_len='undef' +d_sockatmark='define' +d_sockatmarkproto='define' +d_socket='define' +d_socklen_t='define' +d_sockpair='define' +d_socks5_init='undef' +d_sprintf_returns_strlen='define' +d_sqrtl='define' +d_srand48_r='define' +d_srandom_r='define' +d_sresgproto='define' +d_sresuproto='define' +d_stat='define' +d_statblks='define' +d_statfs_f_flags='define' +d_statfs_s='define' +d_static_inline='define' +d_statvfs='define' +d_stdio_cnt_lval='undef' +d_stdio_ptr_lval='define' +d_stdio_ptr_lval_nochange_cnt='undef' +d_stdio_ptr_lval_sets_cnt='define' +d_stdio_stream_array='undef' +d_stdiobase='define' +d_stdstdio='define' +d_strchr='define' +d_strcoll='define' +d_strctcpy='define' +d_strerrm='strerror(e)' +d_strerror='define' +d_strerror_r='define' +d_strftime='define' +d_strlcat='undef' +d_strlcpy='undef' +d_strtod='define' +d_strtol='define' +d_strtold='define' +d_strtoll='define' +d_strtoq='define' +d_strtoul='define' +d_strtoull='define' +d_strtouq='define' +d_strxfrm='define' +d_suidsafe='undef' +d_symlink='define' +d_syscall='define' +d_syscallproto='define' +d_sysconf='define' +d_sysernlst='' +d_syserrlst='define' +d_system='define' +d_tcgetpgrp='define' +d_tcsetpgrp='define' +d_telldir='define' +d_telldirproto='define' +d_tgamma='define' +d_time='define' +d_timegm='define' +d_times='define' +d_tm_tm_gmtoff='define' +d_tm_tm_zone='define' +d_tmpnam_r='define' +d_trunc='define' +d_truncate='define' +d_truncl='define' +d_ttyname_r='define' +d_tzname='define' +d_u32align='define' +d_ualarm='define' +d_umask='define' +d_uname='define' +d_union_semun='undef' +d_unordered='undef' +d_unsetenv='define' +d_uselocale='define' +d_usleep='define' +d_usleepproto='define' +d_ustat='define' +d_vendorarch='undef' +d_vendorbin='undef' +d_vendorlib='undef' +d_vendorscript='undef' +d_vfork='undef' +d_void_closedir='undef' +d_voidsig='define' +d_voidtty='' +d_volatile='define' +d_vprintf='define' +d_vsnprintf='define' +d_wait4='define' +d_waitpid='define' +d_wcscmp='define' +d_wcstombs='define' +d_wcsxfrm='define' +d_wctomb='define' +d_writev='define' +d_xenix='undef' +date='date' +db_hashtype='u_int32_t' +db_prefixtype='size_t' +db_version_major='' +db_version_minor='' +db_version_patch='' +direntrytype='struct dirent' +dlext='so' +dlsrc='dl_dlopen.xs' +doubleinfbytes='0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x7f' +doublekind='3' +doublemantbits='52' +doublenanbytes='0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf8, 0xff' +doublesize='8' +drand01='Perl_drand48()' +drand48_r_proto='REENTRANT_PROTO_I_ST' +dtrace='' +dtraceobject='' +dynamic_ext='arybase attributes B Compress/Raw/Bzip2 Compress/Raw/Zlib Cwd Data/Dumper Devel/Peek Devel/PPPort Digest/MD5 Digest/SHA Encode Fcntl File/DosGlob File/Glob Filter/Util/Call GDBM_File Hash/Util Hash/Util/FieldHash I18N/Langinfo IO IPC/SysV List/Util Math/BigInt/FastCalc MIME/Base64 mro NDBM_File ODBM_File Opcode PerlIO/encoding PerlIO/mmap PerlIO/scalar PerlIO/via POSIX re SDBM_File Socket Storable Sys/Hostname Sys/Syslog threads threads/shared Tie/Hash/NamedCapture Time/HiRes Time/Piece Unicode/Collate Unicode/Normalize XS/APItest XS/Typemap' +eagain='EAGAIN' +ebcdic='undef' +echo='echo' +egrep='egrep' +emacs='' +endgrent_r_proto='0' +endhostent_r_proto='0' +endnetent_r_proto='0' +endprotoent_r_proto='0' +endpwent_r_proto='0' +endservent_r_proto='0' +eunicefix=':' +exe_ext='' +expr='expr' +extensions='arybase attributes B Compress/Raw/Bzip2 Compress/Raw/Zlib Cwd Data/Dumper Devel/Peek Devel/PPPort Digest/MD5 Digest/SHA Encode Fcntl File/DosGlob File/Glob Filter/Util/Call GDBM_File Hash/Util Hash/Util/FieldHash I18N/Langinfo IO IPC/SysV List/Util Math/BigInt/FastCalc MIME/Base64 mro NDBM_File ODBM_File Opcode PerlIO/encoding PerlIO/mmap PerlIO/scalar PerlIO/via POSIX re SDBM_File Socket Storable Sys/Hostname Sys/Syslog threads threads/shared Tie/Hash/NamedCapture Time/HiRes Time/Piece Unicode/Collate Unicode/Normalize XS/APItest XS/Typemap Archive/Tar Attribute/Handlers autodie AutoLoader autouse base B/Debug bignum Carp Config/Perl/V constant CPAN CPAN/Meta CPAN/Meta/Requirements CPAN/Meta/YAML Devel/SelfStubber Digest Dumpvalue encoding/warnings Env Errno experimental Exporter ExtUtils/CBuilder ExtUtils/Constant ExtUtils/Install ExtUtils/MakeMaker ExtUtils/Manifest ExtUtils/Miniperl ExtUtils/ParseXS FileCache File/Fetch File/Find File/Path File/Temp Filter/Simple Getopt/Long HTTP/Tiny I18N/Collate I18N/LangTags if IO/Compress IO/Socket/IP IO/Zlib IPC/Cmd IPC/Open3 JSON/PP lib libnet Locale/Codes Locale/Maketext Locale/Maketext/Simple Math/BigInt Math/BigRat Math/Complex Memoize Module/CoreList Module/Load Module/Load/Conditional Module/Loaded Module/Metadata Net/Ping NEXT Params/Check parent Parse/CPAN/Meta perlfaq PerlIO/via/QuotedPrint Perl/OSType Pod/Checker Pod/Escapes Pod/Functions Pod/Html podlators Pod/Parser Pod/Perldoc Pod/Simple Pod/Usage Safe Search/Dict SelfLoader Term/ANSIColor Term/Cap Term/Complete Term/ReadLine Test Test/Harness Test/Simple Text/Abbrev Text/Balanced Text/ParseWords Text/Tabs Thread/Queue Thread/Semaphore Tie/File Tie/Memoize Tie/RefHash Time/Local version XSLoader' +extern_C='extern' +extras='' +fflushNULL='define' +fflushall='undef' +find='' +firstmakefile='makefile' +flex='' +fpossize='16' +fpostype='fpos_t' +freetype='void' +from=':' +full_ar='/usr/bin/ar' +full_csh='csh' +full_sed='/bin/sed' +gccansipedantic='' +gccosandvers='' +gccversion='4.9.4' +getgrent_r_proto='REENTRANT_PROTO_I_SBWR' +getgrgid_r_proto='REENTRANT_PROTO_I_TSBWR' +getgrnam_r_proto='REENTRANT_PROTO_I_CSBWR' +gethostbyaddr_r_proto='REENTRANT_PROTO_I_TsISBWRE' +gethostbyname_r_proto='REENTRANT_PROTO_I_CSBWRE' +gethostent_r_proto='REENTRANT_PROTO_I_SBWRE' +getlogin_r_proto='REENTRANT_PROTO_I_BW' +getnetbyaddr_r_proto='REENTRANT_PROTO_I_uISBWRE' +getnetbyname_r_proto='REENTRANT_PROTO_I_CSBWRE' +getnetent_r_proto='REENTRANT_PROTO_I_SBWRE' +getprotobyname_r_proto='REENTRANT_PROTO_I_CSBWR' +getprotobynumber_r_proto='REENTRANT_PROTO_I_ISBWR' +getprotoent_r_proto='REENTRANT_PROTO_I_SBWR' +getpwent_r_proto='REENTRANT_PROTO_I_SBWR' +getpwnam_r_proto='REENTRANT_PROTO_I_CSBWR' +getpwuid_r_proto='REENTRANT_PROTO_I_TSBWR' +getservbyname_r_proto='REENTRANT_PROTO_I_CCSBWR' +getservbyport_r_proto='REENTRANT_PROTO_I_ICSBWR' +getservent_r_proto='REENTRANT_PROTO_I_SBWR' +getspnam_r_proto='REENTRANT_PROTO_I_CSBWR' +gidformat='"u"' +gidsign='1' +gidsize='4' +gidtype='gid_t' +glibpth='/usr/shlib /lib /usr/lib /usr/lib/386 /lib/386 /usr/ccs/lib /usr/ucblib /usr/local/lib ' +gmake='gmake' +gmtime_r_proto='REENTRANT_PROTO_S_TS' +gnulibc_version='2.19' +grep='grep' +groupcat='cat /etc/group' +groupstype='gid_t' +gzip='gzip' +h_fcntl='false' +h_sysfile='true' +hint='recommended' +hostcat='cat /etc/hosts' +hostgenerate='' +hostosname='' +hostperl='' +html1dir=' ' +html1direxp='' +html3dir=' ' +html3direxp='' +i16size='2' +i16type='short' +i32size='4' +i32type='int' +i64size='8' +i64type='long' +i8size='1' +i8type='signed char' +i_arpainet='define' +i_assert='define' +i_bfd='undef' +i_bsdioctl='' +i_crypt='define' +i_db='undef' +i_dbm='define' +i_dirent='define' +i_dlfcn='define' +i_execinfo='define' +i_fcntl='undef' +i_fenv='define' +i_float='define' +i_fp='undef' +i_fp_class='undef' +i_gdbm='define' +i_gdbm_ndbm='define' +i_gdbmndbm='undef' +i_grp='define' +i_ieeefp='undef' +i_inttypes='define' +i_langinfo='define' +i_libutil='undef' +i_limits='define' +i_locale='define' +i_machcthr='undef' +i_malloc='define' +i_mallocmalloc='undef' +i_math='define' +i_memory='undef' +i_mntent='define' +i_ndbm='undef' +i_netdb='define' +i_neterrno='undef' +i_netinettcp='define' +i_niin='define' +i_poll='define' +i_prot='undef' +i_pthread='define' +i_pwd='define' +i_quadmath='define' +i_rpcsvcdbm='undef' +i_sgtty='undef' +i_shadow='define' +i_socks='undef' +i_stdarg='define' +i_stdbool='define' +i_stddef='define' +i_stdint='define' +i_stdlib='define' +i_string='define' +i_sunmath='undef' +i_sysaccess='undef' +i_sysdir='define' +i_sysfile='define' +i_sysfilio='undef' +i_sysin='undef' +i_sysioctl='define' +i_syslog='define' +i_sysmman='define' +i_sysmode='undef' +i_sysmount='define' +i_sysndir='undef' +i_sysparam='define' +i_syspoll='define' +i_sysresrc='define' +i_syssecrt='undef' +i_sysselct='define' +i_syssockio='undef' +i_sysstat='define' +i_sysstatfs='define' +i_sysstatvfs='define' +i_systime='define' +i_systimek='undef' +i_systimes='define' +i_systypes='define' +i_sysuio='define' +i_sysun='define' +i_sysutsname='define' +i_sysvfs='define' +i_syswait='define' +i_termio='undef' +i_termios='define' +i_time='define' +i_unistd='define' +i_ustat='define' +i_utime='define' +i_values='define' +i_varargs='undef' +i_varhdr='stdarg.h' +i_vfork='undef' +i_xlocale='define' +ignore_versioned_solibs='y' +inc_version_list=' ' +inc_version_list_init='0' +incpath='' +incpth='/usr/lib/gcc/x86_64-linux-gnu/4.9/include /usr/local/include /usr/lib/gcc/x86_64-linux-gnu/4.9/include-fixed /usr/include/x86_64-linux-gnu /usr/include' +inews='' +initialinstalllocation='/home/travis/perl5/perlbrew/perls/slic3r-perl/bin' +installarchlib='/home/travis/perl5/perlbrew/perls/slic3r-perl/lib/5.24.0/x86_64-linux-thread-multi' +installbin='/home/travis/perl5/perlbrew/perls/slic3r-perl/bin' +installhtml1dir='' +installhtml3dir='' +installman1dir='/home/travis/perl5/perlbrew/perls/slic3r-perl/man/man1' +installman3dir='/home/travis/perl5/perlbrew/perls/slic3r-perl/man/man3' +installprefix='/home/travis/perl5/perlbrew/perls/slic3r-perl' +installprefixexp='/home/travis/perl5/perlbrew/perls/slic3r-perl' +installprivlib='/home/travis/perl5/perlbrew/perls/slic3r-perl/lib/5.24.0' +installscript='/home/travis/perl5/perlbrew/perls/slic3r-perl/bin' +installsitearch='/home/travis/perl5/perlbrew/perls/slic3r-perl/lib/site_perl/5.24.0/x86_64-linux-thread-multi' +installsitebin='/home/travis/perl5/perlbrew/perls/slic3r-perl/bin' +installsitehtml1dir='' +installsitehtml3dir='' +installsitelib='/home/travis/perl5/perlbrew/perls/slic3r-perl/lib/site_perl/5.24.0' +installsiteman1dir='/home/travis/perl5/perlbrew/perls/slic3r-perl/man/man1' +installsiteman3dir='/home/travis/perl5/perlbrew/perls/slic3r-perl/man/man3' +installsitescript='/home/travis/perl5/perlbrew/perls/slic3r-perl/bin' +installstyle='lib' +installusrbinperl='undef' +installvendorarch='' +installvendorbin='' +installvendorhtml1dir='' +installvendorhtml3dir='' +installvendorlib='' +installvendorman1dir='' +installvendorman3dir='' +installvendorscript='' +intsize='4' +issymlink='test -h' +ivdformat='"ld"' +ivsize='8' +ivtype='long' +known_extensions='Amiga/ARexx Amiga/Exec Archive/Tar arybase Attribute/Handlers attributes autodie AutoLoader autouse B base B/Debug bignum Carp Compress/Raw/Bzip2 Compress/Raw/Zlib Config/Perl/V constant CPAN CPAN/Meta CPAN/Meta/Requirements CPAN/Meta/YAML Cwd Data/Dumper DB_File Devel/Peek Devel/PPPort Devel/SelfStubber Digest Digest/MD5 Digest/SHA Dumpvalue Encode encoding/warnings Env Errno experimental Exporter ExtUtils/CBuilder ExtUtils/Constant ExtUtils/Install ExtUtils/MakeMaker ExtUtils/Manifest ExtUtils/Miniperl ExtUtils/ParseXS Fcntl FileCache File/DosGlob File/Fetch File/Find File/Glob File/Path File/Temp Filter/Simple Filter/Util/Call GDBM_File Getopt/Long Hash/Util Hash/Util/FieldHash HTTP/Tiny I18N/Collate I18N/Langinfo I18N/LangTags if IO IO/Compress IO/Socket/IP IO/Zlib IPC/Cmd IPC/Open3 IPC/SysV JSON/PP lib libnet List/Util Locale/Codes Locale/Maketext Locale/Maketext/Simple Math/BigInt Math/BigInt/FastCalc Math/BigRat Math/Complex Memoize MIME/Base64 Module/CoreList Module/Load Module/Load/Conditional Module/Loaded Module/Metadata mro NDBM_File Net/Ping NEXT ODBM_File Opcode Params/Check parent Parse/CPAN/Meta perlfaq PerlIO/encoding PerlIO/mmap PerlIO/scalar PerlIO/via PerlIO/via/QuotedPrint Perl/OSType Pod/Checker Pod/Escapes Pod/Functions Pod/Html podlators Pod/Parser Pod/Perldoc Pod/Simple Pod/Usage POSIX re Safe SDBM_File Search/Dict SelfLoader Socket Storable Sys/Hostname Sys/Syslog Term/ANSIColor Term/Cap Term/Complete Term/ReadLine Test Test/Harness Test/Simple Text/Abbrev Text/Balanced Text/ParseWords Text/Tabs Thread/Queue threads Thread/Semaphore threads/shared Tie/File Tie/Hash/NamedCapture Tie/Memoize Tie/RefHash Time/HiRes Time/Local Time/Piece Unicode/Collate Unicode/Normalize version VMS/DCLsym VMS/Filespec VMS/Stdio Win32 Win32API/File Win32CORE XS/APItest XSLoader XS/Typemap ' +ksh='' +ld='gcc-4.9' +ld_can_script='define' +lddlflags='-shared -O2 -L/usr/local/lib -fstack-protector-strong' +ldflags=' -fstack-protector-strong -L/usr/local/lib' +ldflags_uselargefiles='' +ldlibpthname='LD_LIBRARY_PATH' +less='less' +lib_ext='.a' +libc='libc-2.19.so' +libdb_needs_pthread='N' +libperl='libperl.a' +libpth='/usr/local/lib /usr/lib/gcc/x86_64-linux-gnu/4.9/include-fixed /usr/include/x86_64-linux-gnu /usr/lib /lib/x86_64-linux-gnu /lib/../lib /usr/lib/x86_64-linux-gnu /usr/lib/../lib /lib' +libs='-lpthread -lnsl -lgdbm -ldl -lm -lcrypt -lutil -lc -lgdbm_compat' +libsdirs=' /usr/lib/x86_64-linux-gnu' +libsfiles=' libpthread.so libnsl.so libgdbm.so libdl.so libm.so libcrypt.so libutil.so libc.so libgdbm_compat.so' +libsfound=' /usr/lib/x86_64-linux-gnu/libpthread.so /usr/lib/x86_64-linux-gnu/libnsl.so /usr/lib/x86_64-linux-gnu/libgdbm.so /usr/lib/x86_64-linux-gnu/libdl.so /usr/lib/x86_64-linux-gnu/libm.so /usr/lib/x86_64-linux-gnu/libcrypt.so /usr/lib/x86_64-linux-gnu/libutil.so /usr/lib/x86_64-linux-gnu/libc.so /usr/lib/x86_64-linux-gnu/libgdbm_compat.so' +libspath=' /usr/local/lib /usr/lib/gcc/x86_64-linux-gnu/4.9/include-fixed /usr/include/x86_64-linux-gnu /usr/lib /lib/x86_64-linux-gnu /lib/../lib /usr/lib/x86_64-linux-gnu /usr/lib/../lib /lib' +libswanted='cl pthread socket inet nsl gdbm dbm db malloc dl ld sun m crypt sec util c cposix posix ucb BSD gdbm_compat' +libswanted_uselargefiles='' +line='' +lint='' +lkflags='' +ln='ln' +lns='/bin/ln -s' +localtime_r_proto='REENTRANT_PROTO_S_TS' +locincpth='/usr/local/include /opt/local/include /usr/gnu/include /opt/gnu/include /usr/GNU/include /opt/GNU/include' +loclibpth='/usr/local/lib /opt/local/lib /usr/gnu/lib /opt/gnu/lib /usr/GNU/lib /opt/GNU/lib' +longdblinfbytes='0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0xff, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00' +longdblkind='3' +longdblmantbits='64' +longdblnanbytes='0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0xff, 0xff, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00' +longdblsize='16' +longlongsize='8' +longsize='8' +lp='' +lpr='' +ls='ls' +lseeksize='8' +lseektype='off_t' +mail='' +mailx='' +make='make' +make_set_make='#' +mallocobj='' +mallocsrc='' +malloctype='void *' +man1dir='/home/travis/perl5/perlbrew/perls/slic3r-perl/man/man1' +man1direxp='/home/travis/perl5/perlbrew/perls/slic3r-perl/man/man1' +man1ext='1' +man3dir='/home/travis/perl5/perlbrew/perls/slic3r-perl/man/man3' +man3direxp='/home/travis/perl5/perlbrew/perls/slic3r-perl/man/man3' +man3ext='3' +mips_type='' +mistrustnm='' +mkdir='mkdir' +mmaptype='void *' +modetype='mode_t' +more='more' +multiarch='undef' +mv='' +myarchname='x86_64-linux' +mydomain='.tech' +myhostname='5bf2cbbebde7' +myuname='linux 5bf2cbbebde7 3.16.0-4-amd64 #1 smp debian 3.16.39-1+deb8u2 (2017-03-07) x86_64 x86_64 x86_64 gnulinux ' +n='-n' +need_va_copy='define' +netdb_hlen_type='size_t' +netdb_host_type='char *' +netdb_name_type='const char *' +netdb_net_type='in_addr_t' +nm='nm' +nm_opt='' +nm_so_opt='--dynamic' +nonxs_ext='Archive/Tar Attribute/Handlers autodie AutoLoader autouse base B/Debug bignum Carp Config/Perl/V constant CPAN CPAN/Meta CPAN/Meta/Requirements CPAN/Meta/YAML Devel/SelfStubber Digest Dumpvalue encoding/warnings Env Errno experimental Exporter ExtUtils/CBuilder ExtUtils/Constant ExtUtils/Install ExtUtils/MakeMaker ExtUtils/Manifest ExtUtils/Miniperl ExtUtils/ParseXS FileCache File/Fetch File/Find File/Path File/Temp Filter/Simple Getopt/Long HTTP/Tiny I18N/Collate I18N/LangTags if IO/Compress IO/Socket/IP IO/Zlib IPC/Cmd IPC/Open3 JSON/PP lib libnet Locale/Codes Locale/Maketext Locale/Maketext/Simple Math/BigInt Math/BigRat Math/Complex Memoize Module/CoreList Module/Load Module/Load/Conditional Module/Loaded Module/Metadata Net/Ping NEXT Params/Check parent Parse/CPAN/Meta perlfaq PerlIO/via/QuotedPrint Perl/OSType Pod/Checker Pod/Escapes Pod/Functions Pod/Html podlators Pod/Parser Pod/Perldoc Pod/Simple Pod/Usage Safe Search/Dict SelfLoader Term/ANSIColor Term/Cap Term/Complete Term/ReadLine Test Test/Harness Test/Simple Text/Abbrev Text/Balanced Text/ParseWords Text/Tabs Thread/Queue Thread/Semaphore Tie/File Tie/Memoize Tie/RefHash Time/Local version XSLoader' +nroff='nroff' +nvEUformat='"E"' +nvFUformat='"F"' +nvGUformat='"G"' +nv_overflows_integers_at='256.0*256.0*256.0*256.0*256.0*256.0*2.0*2.0*2.0*2.0*2.0' +nv_preserves_uv_bits='53' +nveformat='"e"' +nvfformat='"f"' +nvgformat='"g"' +nvmantbits='52' +nvsize='8' +nvtype='double' +o_nonblock='O_NONBLOCK' +obj_ext='.o' +old_pthread_create_joinable='' +optimize='-O2' +orderlib='false' +osname='linux' +osvers='3.16.0-4-amd64' +otherlibdirs=' ' +package='perl5' +pager='/usr/bin/less -R' +passcat='cat /etc/passwd' +patchlevel='24' +path_sep=':' +perl5='/usr/bin/perl' +perl='perl' +perl_patchlevel='' +perl_static_inline='static __inline__' +perladmin='travis@5bf2cbbebde7.tech' +perllibs='-lpthread -lnsl -ldl -lm -lcrypt -lutil -lc' +perlpath='/home/travis/perl5/perlbrew/perls/slic3r-perl/bin/perl' +pg='pg' +phostname='hostname' +pidtype='pid_t' +plibpth='/lib/x86_64-linux-gnu/4.8 /lib/x86_64-linux-gnu /lib/../lib /usr/lib/x86_64-linux-gnu/4.8 /usr/lib/x86_64-linux-gnu /usr/lib/../lib /lib /usr/lib' +pmake='' +pr='' +prefix='/home/travis/perl5/perlbrew/perls/slic3r-perl' +prefixexp='/home/travis/perl5/perlbrew/perls/slic3r-perl' +privlib='/home/travis/perl5/perlbrew/perls/slic3r-perl/lib/5.24.0' +privlibexp='/home/travis/perl5/perlbrew/perls/slic3r-perl/lib/5.24.0' +procselfexe='"/proc/self/exe"' +prototype='define' +ptrsize='8' +quadkind='2' +quadtype='long' +randbits='48' +randfunc='Perl_drand48' +random_r_proto='REENTRANT_PROTO_I_St' +randseedtype='U32' +ranlib=':' +rd_nodata='-1' +readdir64_r_proto='REENTRANT_PROTO_I_TSR' +readdir_r_proto='REENTRANT_PROTO_I_TSR' +revision='5' +rm='rm' +rm_try='/bin/rm -f try try a.out .out try.[cho] try..o core core.try* try.core*' +rmail='' +run='' +runnm='false' +sGMTIME_max='67768036191676799' +sGMTIME_min='-62167219200' +sLOCALTIME_max='67768036191676799' +sLOCALTIME_min='-62167219200' +sPRIEUldbl='"LE"' +sPRIFUldbl='"LF"' +sPRIGUldbl='"LG"' +sPRIXU64='"lX"' +sPRId64='"ld"' +sPRIeldbl='"Le"' +sPRIfldbl='"Lf"' +sPRIgldbl='"Lg"' +sPRIi64='"li"' +sPRIo64='"lo"' +sPRIu64='"lu"' +sPRIx64='"lx"' +sSCNfldbl='"Lf"' +sched_yield='sched_yield()' +scriptdir='/home/travis/perl5/perlbrew/perls/slic3r-perl/bin' +scriptdirexp='/home/travis/perl5/perlbrew/perls/slic3r-perl/bin' +sed='sed' +seedfunc='Perl_drand48_init' +selectminbits='64' +selecttype='fd_set *' +sendmail='' +setgrent_r_proto='0' +sethostent_r_proto='0' +setlocale_r_proto='0' +setnetent_r_proto='0' +setprotoent_r_proto='0' +setpwent_r_proto='0' +setservent_r_proto='0' +sh='/bin/sh' +shar='' +sharpbang='#!' +shmattype='void *' +shortsize='2' +shrpenv='' +shsharp='true' +sig_count='65' +sig_name='ZERO HUP INT QUIT ILL TRAP ABRT BUS FPE KILL USR1 SEGV USR2 PIPE ALRM TERM STKFLT CHLD CONT STOP TSTP TTIN TTOU URG XCPU XFSZ VTALRM PROF WINCH IO PWR SYS NUM32 NUM33 RTMIN NUM35 NUM36 NUM37 NUM38 NUM39 NUM40 NUM41 NUM42 NUM43 NUM44 NUM45 NUM46 NUM47 NUM48 NUM49 NUM50 NUM51 NUM52 NUM53 NUM54 NUM55 NUM56 NUM57 NUM58 NUM59 NUM60 NUM61 NUM62 NUM63 RTMAX IOT CLD POLL UNUSED ' +sig_name_init='"ZERO", "HUP", "INT", "QUIT", "ILL", "TRAP", "ABRT", "BUS", "FPE", "KILL", "USR1", "SEGV", "USR2", "PIPE", "ALRM", "TERM", "STKFLT", "CHLD", "CONT", "STOP", "TSTP", "TTIN", "TTOU", "URG", "XCPU", "XFSZ", "VTALRM", "PROF", "WINCH", "IO", "PWR", "SYS", "NUM32", "NUM33", "RTMIN", "NUM35", "NUM36", "NUM37", "NUM38", "NUM39", "NUM40", "NUM41", "NUM42", "NUM43", "NUM44", "NUM45", "NUM46", "NUM47", "NUM48", "NUM49", "NUM50", "NUM51", "NUM52", "NUM53", "NUM54", "NUM55", "NUM56", "NUM57", "NUM58", "NUM59", "NUM60", "NUM61", "NUM62", "NUM63", "RTMAX", "IOT", "CLD", "POLL", "UNUSED", 0' +sig_num='0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 6 17 29 31 ' +sig_num_init='0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 6, 17, 29, 31, 0' +sig_size='69' +signal_t='void' +sitearch='/home/travis/perl5/perlbrew/perls/slic3r-perl/lib/site_perl/5.24.0/x86_64-linux-thread-multi' +sitearchexp='/home/travis/perl5/perlbrew/perls/slic3r-perl/lib/site_perl/5.24.0/x86_64-linux-thread-multi' +sitebin='/home/travis/perl5/perlbrew/perls/slic3r-perl/bin' +sitebinexp='/home/travis/perl5/perlbrew/perls/slic3r-perl/bin' +sitehtml1dir='' +sitehtml1direxp='' +sitehtml3dir='' +sitehtml3direxp='' +sitelib='/home/travis/perl5/perlbrew/perls/slic3r-perl/lib/site_perl/5.24.0' +sitelib_stem='/home/travis/perl5/perlbrew/perls/slic3r-perl/lib/site_perl' +sitelibexp='/home/travis/perl5/perlbrew/perls/slic3r-perl/lib/site_perl/5.24.0' +siteman1dir='/home/travis/perl5/perlbrew/perls/slic3r-perl/man/man1' +siteman1direxp='/home/travis/perl5/perlbrew/perls/slic3r-perl/man/man1' +siteman3dir='/home/travis/perl5/perlbrew/perls/slic3r-perl/man/man3' +siteman3direxp='/home/travis/perl5/perlbrew/perls/slic3r-perl/man/man3' +siteprefix='/home/travis/perl5/perlbrew/perls/slic3r-perl' +siteprefixexp='/home/travis/perl5/perlbrew/perls/slic3r-perl' +sitescript='/home/travis/perl5/perlbrew/perls/slic3r-perl/bin' +sitescriptexp='/home/travis/perl5/perlbrew/perls/slic3r-perl/bin' +sizesize='8' +sizetype='size_t' +sleep='' +smail='' +so='so' +sockethdr='' +socketlib='' +socksizetype='socklen_t' +sort='sort' +spackage='Perl5' +spitshell='cat' +srand48_r_proto='REENTRANT_PROTO_I_LS' +srandom_r_proto='REENTRANT_PROTO_I_TS' +src='.' +ssizetype='ssize_t' +st_ino_sign='1' +st_ino_size='8' +startperl='#!/home/travis/perl5/perlbrew/perls/slic3r-perl/bin/perl' +startsh='#!/bin/sh' +static_ext=' ' +stdchar='char' +stdio_base='((fp)->_IO_read_base)' +stdio_bufsiz='((fp)->_IO_read_end - (fp)->_IO_read_base)' +stdio_cnt='((fp)->_IO_read_end - (fp)->_IO_read_ptr)' +stdio_filbuf='' +stdio_ptr='((fp)->_IO_read_ptr)' +stdio_stream_array='' +strerror_r_proto='REENTRANT_PROTO_B_IBW' +strings='/usr/include/string.h' +submit='' +subversion='0' +sysman='/usr/share/man/man1' +sysroot='' +tail='' +tar='' +targetarch='' +targetdir='' +targetenv='' +targethost='' +targetmkdir='' +targetport='' +targetsh='/bin/sh' +tbl='' +tee='' +test='test' +timeincl='/usr/include/x86_64-linux-gnu/sys/time.h /usr/include/time.h ' +timetype='time_t' +tmpnam_r_proto='REENTRANT_PROTO_B_B' +to=':' +touch='touch' +tr='tr' +trnl='\n' +troff='' +ttyname_r_proto='REENTRANT_PROTO_I_IBW' +u16size='2' +u16type='unsigned short' +u32size='4' +u32type='unsigned int' +u64size='8' +u64type='unsigned long' +u8size='1' +u8type='unsigned char' +uidformat='"u"' +uidsign='1' +uidsize='4' +uidtype='uid_t' +uname='uname' +uniq='uniq' +uquadtype='unsigned long' +use5005threads='undef' +use64bitall='define' +use64bitint='define' +usecbacktrace='undef' +usecrosscompile='undef' +usedevel='undef' +usedl='define' +usedtrace='undef' +usefaststdio='undef' +useithreads='define' +usekernprocpathname='undef' +uselargefiles='define' +uselongdouble='undef' +usemallocwrap='define' +usemorebits='undef' +usemultiplicity='define' +usemymalloc='n' +usenm='false' +usensgetexecutablepath='undef' +useopcode='true' +useperlio='define' +useposix='true' +usequadmath='undef' +usereentrant='undef' +userelocatableinc='undef' +useshrplib='false' +usesitecustomize='undef' +usesocks='undef' +usethreads='define' +usevendorprefix='undef' +useversionedarchname='undef' +usevfork='false' +usrinc='/usr/include' +uuname='' +uvXUformat='"lX"' +uvoformat='"lo"' +uvsize='8' +uvtype='unsigned long' +uvuformat='"lu"' +uvxformat='"lx"' +vaproto='define' +vendorarch='' +vendorarchexp='' +vendorbin='' +vendorbinexp='' +vendorhtml1dir=' ' +vendorhtml1direxp='' +vendorhtml3dir=' ' +vendorhtml3direxp='' +vendorlib='' +vendorlib_stem='' +vendorlibexp='' +vendorman1dir=' ' +vendorman1direxp='' +vendorman3dir=' ' +vendorman3direxp='' +vendorprefix='' +vendorprefixexp='' +vendorscript='' +vendorscriptexp='' +version='5.24.0' +version_patchlevel_string='version 24 subversion 0' +versiononly='undef' +vi='' +xlibpth='/usr/lib/386 /lib/386' +yacc='yacc' +yaccflags='' +zcat='' +zip='zip' +!END! + +my $i = ord(8); +foreach my $c (7,6,5,4,3,2,1) { $i <<= 8; $i |= ord($c); } +our $byteorder = join('', unpack('aaaaaaaa', pack('L!', $i))); +s/(byteorder=)(['"]).*?\2/$1$2$Config::byteorder$2/m; + +my $config_sh_len = length $_; + +our $Config_SH_expanded = "\n$_" . << 'EOVIRTUAL'; +ccflags_nolargefiles='-D_REENTRANT -D_GNU_SOURCE -fwrapv -fno-strict-aliasing -pipe -fstack-protector-strong -I/usr/local/include ' +ldflags_nolargefiles=' -fstack-protector-strong -L/usr/local/lib' +libs_nolargefiles='-lpthread -lnsl -lgdbm -ldl -lm -lcrypt -lutil -lc -lgdbm_compat' +libswanted_nolargefiles='cl pthread socket inet nsl gdbm dbm db malloc dl ld sun m crypt sec util c cposix posix ucb BSD gdbm_compat' +ccwarnflags=' -Wall -Werror=declaration-after-statement -Wextra -Wc++-compat -Wwrite-strings' +ccstdflags=' -std=c89' +EOVIRTUAL +eval { + # do not have hairy conniptions if this isnt available + require 'Config_git.pl'; + $Config_SH_expanded .= $Config::Git_Data; + 1; +} or warn "Warning: failed to load Config_git.pl, something strange about this perl...\n"; + +# Search for it in the big string +sub fetch_string { + my($self, $key) = @_; + + return undef unless $Config_SH_expanded =~ /\n$key=\'(.*?)\'\n/s; + # So we can say "if $Config{'foo'}". + $self->{$key} = $1 eq 'undef' ? undef : $1; +} + +my $prevpos = 0; + +sub FIRSTKEY { + $prevpos = 0; + substr($Config_SH_expanded, 1, index($Config_SH_expanded, '=') - 1 ); +} + +sub NEXTKEY { + my $pos = index($Config_SH_expanded, qq('\n), $prevpos) + 2; + my $len = index($Config_SH_expanded, "=", $pos) - $pos; + $prevpos = $pos; + $len > 0 ? substr($Config_SH_expanded, $pos, $len) : undef; +} + +sub EXISTS { + return 1 if exists($_[0]->{$_[1]}); + + return(index($Config_SH_expanded, "\n$_[1]='") != -1 + ); +} + +sub STORE { die "\%Config::Config is read-only\n" } +*DELETE = *CLEAR = \*STORE; # Typeglob aliasing uses less space + +sub config_sh { + substr $Config_SH_expanded, 1, $config_sh_len; +} + +sub config_re { + my $re = shift; + return map { chomp; $_ } grep eval{ /^(?:$re)=/ }, split /^/, + $Config_SH_expanded; +} + +sub config_vars { + # implements -V:cfgvar option (see perlrun -V:) + foreach (@_) { + # find optional leading, trailing colons; and query-spec + my ($notag,$qry,$lncont) = m/^(:)?(.*?)(:)?$/; # flags fore and aft, + # map colon-flags to print decorations + my $prfx = $notag ? '': "$qry="; # tag-prefix for print + my $lnend = $lncont ? ' ' : ";\n"; # line ending for print + + # all config-vars are by definition \w only, any \W means regex + if ($qry =~ /\W/) { + my @matches = config_re($qry); + print map "$_$lnend", @matches ? @matches : "$qry: not found" if !$notag; + print map { s/\w+=//; "$_$lnend" } @matches ? @matches : "$qry: not found" if $notag; + } else { + my $v = (exists $Config::Config{$qry}) ? $Config::Config{$qry} + : 'UNKNOWN'; + $v = 'undef' unless defined $v; + print "${prfx}'${v}'$lnend"; + } + } +} + +# Called by the real AUTOLOAD +sub launcher { + undef &AUTOLOAD; + goto \&$Config::AUTOLOAD; +} + +1; diff --git a/slic3r/linux/local-lib/lib/perl5/Crypt/CBC.pm b/slic3r/linux/local-lib/lib/perl5/Crypt/CBC.pm new file mode 100644 index 00000000..39ff251d --- /dev/null +++ b/slic3r/linux/local-lib/lib/perl5/Crypt/CBC.pm @@ -0,0 +1,1064 @@ +package Crypt::CBC; + +use Digest::MD5 'md5'; +use Carp; +use strict; +use bytes; +use vars qw($VERSION); +$VERSION = '2.33'; + +use constant RANDOM_DEVICE => '/dev/urandom'; + +sub new { + my $class = shift; + + my $options = {}; + + # hashref arguments + if (ref $_[0] eq 'HASH') { + $options = shift; + } + + # CGI style arguments + elsif ($_[0] =~ /^-[a-zA-Z_]{1,20}$/) { + my %tmp = @_; + while ( my($key,$value) = each %tmp) { + $key =~ s/^-//; + $options->{lc $key} = $value; + } + } + + else { + $options->{key} = shift; + $options->{cipher} = shift; + } + + my $cipher_object_provided = $options->{cipher} && ref $options->{cipher}; + + # "key" is a misnomer here, because it is actually usually a passphrase that is used + # to derive the true key + my $pass = $options->{key}; + + if ($cipher_object_provided) { + carp "Both a key and a pre-initialized Crypt::* object were passed. The key will be ignored" + if defined $pass; + $pass ||= ''; + } + elsif (!defined $pass) { + croak "Please provide an encryption/decryption passphrase or key using -key" + } + + # header mode + my %valid_modes = map {$_=>1} qw(none salt randomiv); + my $header_mode = $options->{header}; + $header_mode ||= 'none' if exists $options->{prepend_iv} && !$options->{prepend_iv}; + $header_mode ||= 'none' if exists $options->{add_header} && !$options->{add_header}; + $header_mode ||= 'salt'; # default + croak "Invalid -header mode '$header_mode'" unless $valid_modes{$header_mode}; + + croak "The -salt argument is incompatible with a -header mode of $header_mode" + if exists $options->{salt} && $header_mode ne 'salt'; + + my $cipher = $options->{cipher}; + $cipher = 'Crypt::DES' unless $cipher; + my $cipherclass = ref $cipher || $cipher; + + unless (ref $cipher) { # munge the class name if no object passed + $cipher = $cipher=~/^Crypt::/ ? $cipher : "Crypt::$cipher"; + $cipher->can('encrypt') or eval "require $cipher; 1" or croak "Couldn't load $cipher: $@"; + # some crypt modules use the class Crypt::, and others don't + $cipher =~ s/^Crypt::// unless $cipher->can('keysize'); + } + + # allow user to override these values + my $ks = $options->{keysize}; + my $bs = $options->{blocksize}; + + # otherwise we get the values from the cipher + $ks ||= eval {$cipher->keysize}; + $bs ||= eval {$cipher->blocksize}; + + # Some of the cipher modules are busted and don't report the + # keysize (well, Crypt::Blowfish in any case). If we detect + # this, and find the blowfish module in use, then assume 56. + # Otherwise assume the least common denominator of 8. + $ks ||= $cipherclass =~ /blowfish/i ? 56 : 8; + $bs ||= $ks; + + my $pcbc = $options->{'pcbc'}; + + # Default behavior is to treat -key as a passphrase. + # But if the literal_key option is true, then use key as is + croak "The options -literal_key and -regenerate_key are incompatible with each other" + if exists $options->{literal_key} && exists $options->{regenerate_key}; + my $key; + $key = $pass if $options->{literal_key}; + $key = $pass if exists $options->{regenerate_key} && !$options->{regenerate_key}; + + # Get the salt. + my $salt = $options->{salt}; + my $random_salt = 1 unless defined $salt && $salt ne '1'; + croak "Argument to -salt must be exactly 8 bytes long" if defined $salt && length $salt != 8 && $salt ne '1'; + + # note: iv will be autogenerated by start() if not specified in options + my $iv = $options->{iv}; + my $random_iv = 1 unless defined $iv; + croak "Initialization vector must be exactly $bs bytes long when using the $cipherclass cipher" if defined $iv and length($iv) != $bs; + + my $literal_key = $options->{literal_key} || (exists $options->{regenerate_key} && !$options->{regenerate_key}); + my $legacy_hack = $options->{insecure_legacy_decrypt}; + my $padding = $options->{padding} || 'standard'; + + if ($padding && ref($padding) eq 'CODE') { + # check to see that this code does its padding correctly + for my $i (1..$bs-1) { + my $rbs = length($padding->(" "x$i,$bs,'e')); + croak "padding method callback does not behave properly: expected $bs bytes back, got $rbs bytes back." + unless ($rbs == $bs); + } + } else { + $padding = $padding eq 'none' ? \&_no_padding + :$padding eq 'null' ? \&_null_padding + :$padding eq 'space' ? \&_space_padding + :$padding eq 'oneandzeroes' ? \&_oneandzeroes_padding + :$padding eq 'rijndael_compat'? \&_rijndael_compat + :$padding eq 'standard' ? \&_standard_padding + :croak "'$padding' padding not supported. See perldoc Crypt::CBC for instructions on creating your own."; + } + + # CONSISTENCY CHECKS + # HEADER consistency + if ($header_mode eq 'salt') { + croak "Cannot use salt-based key generation if literal key is specified" + if $options->{literal_key}; + croak "Cannot use salt-based IV generation if literal IV is specified" + if exists $options->{iv}; + } + elsif ($header_mode eq 'randomiv') { + croak "Cannot encrypt using a non-8 byte blocksize cipher when using randomiv header mode" + unless $bs == 8 || $legacy_hack; + } + elsif ($header_mode eq 'none') { + croak "You must provide an initialization vector using -iv when using -header=>'none'" + unless exists $options->{iv}; + } + + # KEYSIZE consistency + if (defined $key && length($key) != $ks) { + croak "If specified by -literal_key, then the key length must be equal to the chosen cipher's key length of $ks bytes"; + } + + # IV consistency + if (defined $iv && length($iv) != $bs) { + croak "If specified by -iv, then the initialization vector length must be equal to the chosen cipher's blocksize of $bs bytes"; + } + + + return bless {'cipher' => $cipher, + 'passphrase' => $pass, + 'key' => $key, + 'iv' => $iv, + 'salt' => $salt, + 'padding' => $padding, + 'blocksize' => $bs, + 'keysize' => $ks, + 'header_mode' => $header_mode, + 'legacy_hack' => $legacy_hack, + 'literal_key' => $literal_key, + 'pcbc' => $pcbc, + 'make_random_salt' => $random_salt, + 'make_random_iv' => $random_iv, + },$class; +} + +sub encrypt (\$$) { + my ($self,$data) = @_; + $self->start('encrypting'); + my $result = $self->crypt($data); + $result .= $self->finish; + $result; +} + +sub decrypt (\$$){ + my ($self,$data) = @_; + $self->start('decrypting'); + my $result = $self->crypt($data); + $result .= $self->finish; + $result; +} + +sub encrypt_hex (\$$) { + my ($self,$data) = @_; + return join('',unpack 'H*',$self->encrypt($data)); +} + +sub decrypt_hex (\$$) { + my ($self,$data) = @_; + return $self->decrypt(pack'H*',$data); +} + +# call to start a series of encryption/decryption operations +sub start (\$$) { + my $self = shift; + my $operation = shift; + croak "Specify ncryption or ecryption" unless $operation=~/^[ed]/i; + + $self->{'buffer'} = ''; + $self->{'decrypt'} = $operation=~/^d/i; +} + +# call to encrypt/decrypt a bit of data +sub crypt (\$$){ + my $self = shift; + my $data = shift; + + my $result; + + croak "crypt() called without a preceding start()" + unless exists $self->{'buffer'}; + + my $d = $self->{'decrypt'}; + + unless ($self->{civ}) { # block cipher has not yet been initialized + $result = $self->_generate_iv_and_cipher_from_datastream(\$data) if $d; + $result = $self->_generate_iv_and_cipher_from_options() unless $d; + } + + my $iv = $self->{'civ'}; + $self->{'buffer'} .= $data; + + my $bs = $self->{'blocksize'}; + + croak "When using no padding, plaintext size must be a multiple of $bs" + if $self->{'padding'} eq \&_no_padding + and length($data) % $bs; + + croak "When using rijndael_compat padding, plaintext size must be a multiple of $bs" + if $self->{'padding'} eq \&_rijndael_compat + and length($data) % $bs; + + return $result unless (length($self->{'buffer'}) >= $bs); + + my @blocks = unpack("a$bs "x(int(length($self->{'buffer'})/$bs)) . "a*", $self->{'buffer'}); + $self->{'buffer'} = ''; + + if ($d) { # when decrypting, always leave a free block at the end + $self->{'buffer'} = length($blocks[-1]) < $bs ? join '',splice(@blocks,-2) : pop(@blocks); + } else { + $self->{'buffer'} = pop @blocks if length($blocks[-1]) < $bs; # what's left over + } + + foreach my $block (@blocks) { + if ($d) { # decrypting + $result .= $iv = $iv ^ $self->{'crypt'}->decrypt($block); + $iv = $block unless $self->{pcbc}; + } else { # encrypting + $result .= $iv = $self->{'crypt'}->encrypt($iv ^ $block); + } + $iv = $iv ^ $block if $self->{pcbc}; + } + $self->{'civ'} = $iv; # remember the iv + return $result; +} + +# this is called at the end to flush whatever's left +sub finish (\$) { + my $self = shift; + my $bs = $self->{'blocksize'}; + my $block = defined $self->{'buffer'} ? $self->{'buffer'} : ''; + + $self->{civ} ||= ''; + + my $result; + if ($self->{'decrypt'}) { #decrypting + $block = length $block ? pack("a$bs",$block) : ''; # pad and truncate to block size + + if (length($block)) { + $result = $self->{'civ'} ^ $self->{'crypt'}->decrypt($block); + $result = $self->{'padding'}->($result, $bs, 'd'); + } else { + $result = ''; + } + + } else { # encrypting + $block = $self->{'padding'}->($block,$bs,'e') || ''; + $result = length $block ? $self->{'crypt'}->encrypt($self->{'civ'} ^ $block) : ''; + } + delete $self->{'civ'}; + delete $self->{'buffer'}; + return $result; +} + +# this subroutine will generate the actual {en,de}cryption key, the iv +# and the block cipher object. This is called when reading from a datastream +# and so it uses previous values of salt or iv if they are encoded in datastream +# header +sub _generate_iv_and_cipher_from_datastream { + my $self = shift; + my $input_stream = shift; + my $bs = $self->blocksize; + + # use our header mode to figure out what to do with the data stream + my $header_mode = $self->header_mode; + + if ($header_mode eq 'none') { + croak "You must specify a $bs byte initialization vector by passing the -iv option to new() when using -header_mode=>'none'" + unless exists $self->{iv}; + $self->{civ} = $self->{iv}; # current IV equals saved IV + $self->{key} ||= $self->_key_from_key($self->{passphrase}); + } + + elsif ($header_mode eq 'salt') { + my ($salt) = $$input_stream =~ /^Salted__(.{8})/s; + croak "Ciphertext does not begin with a valid header for 'salt' header mode" unless defined $salt; + $self->{salt} = $salt; # new salt + substr($$input_stream,0,16) = ''; + my ($key,$iv) = $self->_salted_key_and_iv($self->{passphrase},$salt); + $self->{iv} = $self->{civ} = $iv; + $self->{key} = $key; + } + + elsif ($header_mode eq 'randomiv') { + my ($iv) = $$input_stream =~ /^RandomIV(.{8})/s; + croak "Ciphertext does not begin with a valid header for 'randomiv' header mode" unless defined $iv; + croak "randomiv header mode cannot be used securely when decrypting with a >8 byte block cipher.\nUse the -insecure_legacy_decrypt flag if you are sure you want to do this" unless $self->blocksize == 8 || $self->legacy_hack; + $self->{iv} = $self->{civ} = $iv; + $self->{key} = $self->_key_from_key($self->{passphrase}); + undef $self->{salt}; # paranoia + substr($$input_stream,0,16) = ''; # truncate + } + + else { + croak "Invalid header mode '$header_mode'"; + } + + # we should have the key and iv now, or we are dead in the water + croak "Cipher stream did not contain IV or salt, and you did not specify these values in new()" + unless $self->{key} && $self->{civ}; + + # now we can generate the crypt object itself + $self->{crypt} = ref $self->{cipher} ? $self->{cipher} + : $self->{cipher}->new($self->{key}) + or croak "Could not create $self->{cipher} object: $@"; + return ''; +} + +sub _generate_iv_and_cipher_from_options { + my $self = shift; + my $blocksize = $self->blocksize; + + my $result = ''; + + my $header_mode = $self->header_mode; + if ($header_mode eq 'none') { + croak "You must specify a $blocksize byte initialization vector by passing the -iv option to new() when using -header_mode=>'none'" + unless exists $self->{iv}; + $self->{civ} = $self->{iv}; + $self->{key} ||= $self->_key_from_key($self->{passphrase}); + } + + elsif ($header_mode eq 'salt') { + $self->{salt} = $self->_get_random_bytes(8) if $self->{make_random_salt}; + defined (my $salt = $self->{salt}) or croak "No header_mode of 'salt' specified, but no salt value provided"; # shouldn't happen + length($salt) == 8 or croak "Salt must be exactly 8 bytes long"; + my ($key,$iv) = $self->_salted_key_and_iv($self->{passphrase},$salt); + $self->{key} = $key; + $self->{civ} = $self->{iv} = $iv; + $result = "Salted__${salt}"; + } + + elsif ($header_mode eq 'randomiv') { + croak "randomiv header mode cannot be used when encrypting with a >8 byte block cipher. There is no option to allow this" + unless $blocksize == 8; + $self->{key} ||= $self->_key_from_key($self->{passphrase}); + $self->{iv} = $self->_get_random_bytes(8) if $self->{make_random_iv}; + length($self->{iv}) == 8 or croak "IV must be exactly 8 bytes long when used with header mode of 'randomiv'"; + $self->{civ} = $self->{iv}; + $result = "RandomIV$self->{iv}"; + } + + croak "key and/or iv are missing" unless defined $self->{key} && defined $self->{civ}; + + $self->_taintcheck($self->{key}); + $self->{crypt} = ref $self->{cipher} ? $self->{cipher} + : $self->{cipher}->new($self->{key}) + or croak "Could not create $self->{cipher} object: $@"; + return $result; +} + +sub _taintcheck { + my $self = shift; + my $key = shift; + return unless ${^TAINT}; + + my $has_scalar_util = eval "require Scalar::Util; 1"; + my $tainted; + + + if ($has_scalar_util) { + $tainted = Scalar::Util::tainted($key); + } else { + local($@, $SIG{__DIE__}, $SIG{__WARN__}); + local $^W = 0; + eval { kill 0 * $key }; + $tainted = $@ =~ /^Insecure/; + } + + croak "Taint checks are turned on and your key is tainted. Please untaint the key and try again" + if $tainted; +} + +sub _key_from_key { + my $self = shift; + my $pass = shift; + my $ks = $self->{keysize}; + + return $pass if $self->{literal_key}; + + my $material = md5($pass); + while (length($material) < $ks) { + $material .= md5($material); + } + return substr($material,0,$ks); +} + +sub _salted_key_and_iv { + my $self = shift; + my ($pass,$salt) = @_; + + croak "Salt must be 8 bytes long" unless length $salt == 8; + + my $key_len = $self->{keysize}; + my $iv_len = $self->{blocksize}; + + my $desired_len = $key_len+$iv_len; + + my $data = ''; + my $d = ''; + + while (length $data < $desired_len) { + $d = md5($d . $pass . $salt); + $data .= $d; + } + return (substr($data,0,$key_len),substr($data,$key_len,$iv_len)); +} + +sub random_bytes { + my $self = shift; + my $bytes = shift or croak "usage: random_bytes(\$byte_length)"; + $self->_get_random_bytes($bytes); +} + +sub _get_random_bytes { + my $self = shift; + my $length = shift; + my $result; + + if (-r RANDOM_DEVICE && open(F,RANDOM_DEVICE)) { + read(F,$result,$length); + close F; + } else { + $result = pack("C*",map {rand(256)} 1..$length); + } + # Clear taint and check length + $result =~ /^(.+)$/s; + length($1) == $length or croak "Invalid length while gathering $length random bytes"; + return $1; +} + +sub _standard_padding ($$$) { + my ($b,$bs,$decrypt) = @_; + $b = length $b ? $b : ''; + if ($decrypt eq 'd') { + my $pad_length = unpack("C",substr($b,-1)); + + # sanity check for implementations that don't pad correctly + return $b unless $pad_length >= 0 && $pad_length <= $bs; + my @pad_chars = unpack("C*",substr($b,-$pad_length)); + return $b if grep {$pad_length != $_} @pad_chars; + + return substr($b,0,$bs-$pad_length); + } + my $pad = $bs - length($b) % $bs; + return $b . pack("C*",($pad)x$pad); +} + +sub _space_padding ($$$) { + my ($b,$bs,$decrypt) = @_; + return unless length $b; + $b = length $b ? $b : ''; + if ($decrypt eq 'd') { + $b=~ s/ *\z//s; + return $b; + } + return $b . pack("C*", (32) x ($bs - length($b) % $bs)); +} + +sub _no_padding ($$$) { + my ($b,$bs,$decrypt) = @_; + return $b; +} + +sub _null_padding ($$$) { + my ($b,$bs,$decrypt) = @_; + return unless length $b; + $b = length $b ? $b : ''; + if ($decrypt eq 'd') { + $b=~ s/\0*\z//s; + return $b; + } + return $b . pack("C*", (0) x ($bs - length($b) % $bs)); +} + +sub _oneandzeroes_padding ($$$) { + my ($b,$bs,$decrypt) = @_; + $b = length $b ? $b : ''; + if ($decrypt eq 'd') { + $b=~ s/\x80\0*\z//s; + return $b; + } + return $b . pack("C*", 128, (0) x ($bs - length($b) % $bs - 1) ); +} + +sub _rijndael_compat ($$$) { + my ($b,$bs,$decrypt) = @_; + return unless length $b; + if ($decrypt eq 'd') { + $b=~ s/\x80\0*\z//s; + return $b; + } + return $b . pack("C*", 128, (0) x ($bs - length($b) % $bs - 1) ); +} + +sub get_initialization_vector (\$) { + my $self = shift; + $self->iv(); +} + +sub set_initialization_vector (\$$) { + my $self = shift; + my $iv = shift; + my $bs = $self->blocksize; + croak "Initialization vector must be $bs bytes in length" unless length($iv) == $bs; + $self->iv($iv); +} + +sub salt { + my $self = shift; + my $d = $self->{salt}; + $self->{salt} = shift if @_; + $d; +} + +sub iv { + my $self = shift; + my $d = $self->{iv}; + $self->{iv} = shift if @_; + $d; +} + +sub key { + my $self = shift; + my $d = $self->{key}; + $self->{key} = shift if @_; + $d; +} + +sub passphrase { + my $self = shift; + my $d = $self->{passphrase}; + if (@_) { + undef $self->{key}; + undef $self->{iv}; + $self->{passphrase} = shift; + } + $d; +} + +sub cipher { shift->{cipher} } +sub padding { shift->{padding} } +sub keysize { shift->{keysize} } +sub blocksize { shift->{blocksize} } +sub pcbc { shift->{pcbc} } +sub header_mode {shift->{header_mode} } +sub legacy_hack { shift->{legacy_hack} } + +1; +__END__ + +=head1 NAME + +Crypt::CBC - Encrypt Data with Cipher Block Chaining Mode + +=head1 SYNOPSIS + + use Crypt::CBC; + $cipher = Crypt::CBC->new( -key => 'my secret key', + -cipher => 'Blowfish' + ); + + $ciphertext = $cipher->encrypt("This data is hush hush"); + $plaintext = $cipher->decrypt($ciphertext); + + $cipher->start('encrypting'); + open(F,"./BIG_FILE"); + while (read(F,$buffer,1024)) { + print $cipher->crypt($buffer); + } + print $cipher->finish; + + # do-it-yourself mode -- specify key, initialization vector yourself + $key = Crypt::CBC->random_bytes(8); # assuming a 8-byte block cipher + $iv = Crypt::CBC->random_bytes(8); + $cipher = Crypt::CBC->new(-literal_key => 1, + -key => $key, + -iv => $iv, + -header => 'none'); + + $ciphertext = $cipher->encrypt("This data is hush hush"); + $plaintext = $cipher->decrypt($ciphertext); + + # RANDOMIV-compatible mode + $cipher = Crypt::CBC->new(-key => 'Super Secret!' + -header => 'randomiv'); + + +=head1 DESCRIPTION + +This module is a Perl-only implementation of the cryptographic cipher +block chaining mode (CBC). In combination with a block cipher such as +DES or IDEA, you can encrypt and decrypt messages of arbitrarily long +length. The encrypted messages are compatible with the encryption +format used by the B package. + +To use this module, you will first create a Crypt::CBC cipher object +with new(). At the time of cipher creation, you specify an encryption +key to use and, optionally, a block encryption algorithm. You will +then call the start() method to initialize the encryption or +decryption process, crypt() to encrypt or decrypt one or more blocks +of data, and lastly finish(), to pad and encrypt the final block. For +your convenience, you can call the encrypt() and decrypt() methods to +operate on a whole data value at once. + +=head2 new() + + $cipher = Crypt::CBC->new( -key => 'my secret key', + -cipher => 'Blowfish', + ); + + # or (for compatibility with versions prior to 2.13) + $cipher = Crypt::CBC->new( { + key => 'my secret key', + cipher => 'Blowfish' + } + ); + + + # or (for compatibility with versions prior to 2.0) + $cipher = new Crypt::CBC('my secret key' => 'Blowfish'); + +The new() method creates a new Crypt::CBC object. It accepts a list of +-argument => value pairs selected from the following list: + + Argument Description + -------- ----------- + + -key The encryption/decryption key (required) + + -cipher The cipher algorithm (defaults to Crypt::DES), or + a preexisting cipher object. + + -salt Enables OpenSSL-compatibility. If equal to a value + of "1" then causes a random salt to be generated + and used to derive the encryption key and IV. Other + true values are taken to be the literal salt. + + -iv The initialization vector (IV) + + -header What type of header to prepend to ciphertext. One of + 'salt' -- use OpenSSL-compatible salted header + 'randomiv' -- Randomiv-compatible "RandomIV" header + 'none' -- prepend no header at all + + -padding The padding method, one of "standard" (default), + "space", "oneandzeroes", "rijndael_compat", + "null", or "none" (default "standard"). + + -literal_key If true, the key provided by "key" is used directly + for encryption/decryption. Otherwise the actual + key used will be a hash of the provided key. + (default false) + + -pcbc Whether to use the PCBC chaining algorithm rather than + the standard CBC algorithm (default false). + + -keysize Force the cipher keysize to the indicated number of bytes. + + -blocksize Force the cipher blocksize to the indicated number of bytes. + + -insecure_legacy_decrypt + Allow decryption of data encrypted using the "RandomIV" header + produced by pre-2.17 versions of Crypt::CBC. + + -add_header [deprecated; use -header instread] + Whether to add the salt and IV to the header of the output + cipher text. + + -regenerate_key [deprecated; use literal_key instead] + Whether to use a hash of the provided key to generate + the actual encryption key (default true) + + -prepend_iv [deprecated; use add_header instead] + Whether to prepend the IV to the beginning of the + encrypted stream (default true) + +Crypt::CBC requires three pieces of information to do its job. First +it needs the name of the block cipher algorithm that will encrypt or +decrypt the data in blocks of fixed length known as the cipher's +"blocksize." Second, it needs an encryption/decryption key to pass to +the block cipher. Third, it needs an initialization vector (IV) that +will be used to propagate information from one encrypted block to the +next. Both the key and the IV must be exactly the same length as the +chosen cipher's blocksize. + +Crypt::CBC can derive the key and the IV from a passphrase that you +provide, or can let you specify the true key and IV manually. In +addition, you have the option of embedding enough information to +regenerate the IV in a short header that is emitted at the start of +the encrypted stream, or outputting a headerless encryption stream. In +the first case, Crypt::CBC will be able to decrypt the stream given +just the original key or passphrase. In the second case, you will have +to provide the original IV as well as the key/passphrase. + +The B<-cipher> option specifies which block cipher algorithm to use to +encode each section of the message. This argument is optional and +will default to the quick-but-not-very-secure DES algorithm unless +specified otherwise. You may use any compatible block encryption +algorithm that you have installed. Currently, this includes +Crypt::DES, Crypt::DES_EDE3, Crypt::IDEA, Crypt::Blowfish, +Crypt::CAST5 and Crypt::Rijndael. You may refer to them using their +full names ("Crypt::IDEA") or in abbreviated form ("IDEA"). + +Instead of passing the name of a cipher class, you may pass an +already-created block cipher object. This allows you to take advantage +of cipher algorithms that have parameterized new() methods, such as +Crypt::Eksblowfish: + + my $eksblowfish = Crypt::Eksblowfish->new(8,$salt,$key); + my $cbc = Crypt::CBC->new(-cipher=>$eksblowfish); + +The B<-key> argument provides either a passphrase to use to generate +the encryption key, or the literal value of the block cipher key. If +used in passphrase mode (which is the default), B<-key> can be any +number of characters; the actual key will be derived by passing the +passphrase through a series of MD5 hash operations. To take full +advantage of a given block cipher, the length of the passphrase should +be at least equal to the cipher's blocksize. To skip this hashing +operation and specify the key directly, pass a true value to the +B<-literal_key> option. In this case, you should choose a key of +length exactly equal to the cipher's key length. You should also +specify the IV yourself and a -header mode of 'none'. + +If you pass an existing Crypt::* object to new(), then the -key +argument is ignored and the module will generate a warning. + +The B<-header> argument specifies what type of header, if any, to +prepend to the beginning of the encrypted data stream. The header +allows Crypt::CBC to regenerate the original IV and correctly decrypt +the data without your having to provide the same IV used to encrypt +the data. Valid values for the B<-header> are: + + "salt" -- Combine the passphrase with an 8-byte random value to + generate both the block cipher key and the IV from the + provided passphrase. The salt will be appended to the + beginning of the data stream allowing decryption to + regenerate both the key and IV given the correct passphrase. + This method is compatible with current versions of OpenSSL. + + "randomiv" -- Generate the block cipher key from the passphrase, and + choose a random 8-byte value to use as the IV. The IV will + be prepended to the data stream. This method is compatible + with ciphertext produced by versions of the library prior to + 2.17, but is incompatible with block ciphers that have non + 8-byte block sizes, such as Rijndael. Crypt::CBC will exit + with a fatal error if you try to use this header mode with a + non 8-byte cipher. + + "none" -- Do not generate a header. To decrypt a stream encrypted + in this way, you will have to provide the original IV + manually. + +B + +When using a "salt" header, you may specify your own value of the +salt, by passing the desired 8-byte salt to the B<-salt> +argument. Otherwise, the module will generate a random salt for +you. Crypt::CBC will generate a fatal error if you specify a salt +value that isn't exactly 8 bytes long. For backward compatibility +reasons, passing a value of "1" will generate a random salt, the same +as if no B<-salt> argument was provided. + +The B<-padding> argument controls how the last few bytes of the +encrypted stream are dealt with when they not an exact multiple of the +cipher block length. The default is "standard", the method specified +in PKCS#5. + +The B<-pcbc> argument, if true, activates a modified chaining mode +known as PCBC. It provides better error propagation characteristics +than the default CBC encryption and is required for authenticating to +Kerberos4 systems (see RFC 2222). + +The B<-keysize> and B<-blocksize> arguments can be used to force the +cipher's keysize and/or blocksize. This is only currently useful for +the Crypt::Blowfish module, which accepts a variable length +keysize. If -keysize is not specified, then Crypt::CBC will use the +maximum length Blowfish key size of 56 bytes (448 bits). The Openssl +library defaults to 16 byte Blowfish key sizes, so for compatibility +with Openssl you may wish to set -keysize=>16. There are currently no +Crypt::* modules that have variable block sizes, but an option to +change the block size is provided just in case. + +For compatibility with earlier versions of this module, you can +provide new() with a hashref containing key/value pairs. The key names +are the same as the arguments described earlier, but without the +initial hyphen. You may also call new() with one or two positional +arguments, in which case the first argument is taken to be the key and +the second to be the optional block cipher algorithm. + +B Versions of this module prior to 2.17 were +incorrectly using 8-byte IVs when generating the "randomiv" style of +header, even when the chosen cipher's blocksize was greater than 8 +bytes. This primarily affects the Rijndael algorithm. Such encrypted +data streams were B. From versions 2.17 onward, Crypt::CBC +will refuse to encrypt or decrypt using the "randomiv" header and non-8 +byte block ciphers. To decrypt legacy data encrypted with earlier +versions of the module, you can override the check using the +B<-insecure_legacy_decrypt> option. It is not possible to override +encryption. Please use the default "salt" header style, or no headers +at all. + +=head2 start() + + $cipher->start('encrypting'); + $cipher->start('decrypting'); + +The start() method prepares the cipher for a series of encryption or +decryption steps, resetting the internal state of the cipher if +necessary. You must provide a string indicating whether you wish to +encrypt or decrypt. "E" or any word that begins with an "e" indicates +encryption. "D" or any word that begins with a "d" indicates +decryption. + +=head2 crypt() + + $ciphertext = $cipher->crypt($plaintext); + +After calling start(), you should call crypt() as many times as +necessary to encrypt the desired data. + +=head2 finish() + + $ciphertext = $cipher->finish(); + +The CBC algorithm must buffer data blocks internally until they are +even multiples of the encryption algorithm's blocksize (typically 8 +bytes). After the last call to crypt() you should call finish(). +This flushes the internal buffer and returns any leftover ciphertext. + +In a typical application you will read the plaintext from a file or +input stream and write the result to standard output in a loop that +might look like this: + + $cipher = new Crypt::CBC('hey jude!'); + $cipher->start('encrypting'); + print $cipher->crypt($_) while <>; + print $cipher->finish(); + +=head2 encrypt() + + $ciphertext = $cipher->encrypt($plaintext) + +This convenience function runs the entire sequence of start(), crypt() +and finish() for you, processing the provided plaintext and returning +the corresponding ciphertext. + +=head2 decrypt() + + $plaintext = $cipher->decrypt($ciphertext) + +This convenience function runs the entire sequence of start(), crypt() +and finish() for you, processing the provided ciphertext and returning +the corresponding plaintext. + +=head2 encrypt_hex(), decrypt_hex() + + $ciphertext = $cipher->encrypt_hex($plaintext) + $plaintext = $cipher->decrypt_hex($ciphertext) + +These are convenience functions that operate on ciphertext in a +hexadecimal representation. B is exactly +equivalent to B. These functions +can be useful if, for example, you wish to place the encrypted in an +email message. + +=head2 get_initialization_vector() + + $iv = $cipher->get_initialization_vector() + +This function will return the IV used in encryption and or decryption. +The IV is not guaranteed to be set when encrypting until start() is +called, and when decrypting until crypt() is called the first +time. Unless the IV was manually specified in the new() call, the IV +will change with every complete encryption operation. + +=head2 set_initialization_vector() + + $cipher->set_initialization_vector('76543210') + +This function sets the IV used in encryption and/or decryption. This +function may be useful if the IV is not contained within the +ciphertext string being decrypted, or if a particular IV is desired +for encryption. Note that the IV must match the chosen cipher's +blocksize bytes in length. + +=head2 iv() + + $iv = $cipher->iv(); + $cipher->iv($new_iv); + +As above, but using a single method call. + +=head2 key() + + $key = $cipher->key(); + $cipher->key($new_key); + +Get or set the block cipher key used for encryption/decryption. When +encrypting, the key is not guaranteed to exist until start() is +called, and when decrypting, the key is not guaranteed to exist until +after the first call to crypt(). The key must match the length +required by the underlying block cipher. + +When salted headers are used, the block cipher key will change after +each complete sequence of encryption operations. + +=head2 salt() + + $salt = $cipher->salt(); + $cipher->salt($new_salt); + +Get or set the salt used for deriving the encryption key and IV when +in OpenSSL compatibility mode. + +=head2 passphrase() + + $passphrase = $cipher->passphrase(); + $cipher->passphrase($new_passphrase); + +This gets or sets the value of the B passed to new() when +B is false. + +=head2 $data = random_bytes($numbytes) + +Return $numbytes worth of random data. On systems that support the +"/dev/urandom" device file, this data will be read from the +device. Otherwise, it will be generated by repeated calls to the Perl +rand() function. + +=head2 cipher(), padding(), keysize(), blocksize(), pcbc() + +These read-only methods return the identity of the chosen block cipher +algorithm, padding method, key and block size of the chosen block +cipher, and whether PCBC chaining is in effect. + +=head2 Padding methods + +Use the 'padding' option to change the padding method. + +When the last block of plaintext is shorter than the block size, +it must be padded. Padding methods include: "standard" (i.e., PKCS#5), +"oneandzeroes", "space", "rijndael_compat", "null", and "none". + + standard: (default) Binary safe + pads with the number of bytes that should be truncated. So, if + blocksize is 8, then "0A0B0C" will be padded with "05", resulting + in "0A0B0C0505050505". If the final block is a full block of 8 + bytes, then a whole block of "0808080808080808" is appended. + + oneandzeroes: Binary safe + pads with "80" followed by as many "00" necessary to fill the + block. If the last block is a full block and blocksize is 8, a + block of "8000000000000000" will be appended. + + rijndael_compat: Binary safe, with caveats + similar to oneandzeroes, except that no padding is performed if + the last block is a full block. This is provided for + compatibility with Crypt::Rijndael only and can only be used + with messages that are a multiple of the Rijndael blocksize + of 16 bytes. + + null: text only + pads with as many "00" necessary to fill the block. If the last + block is a full block and blocksize is 8, a block of + "0000000000000000" will be appended. + + space: text only + same as "null", but with "20". + + none: + no padding added. Useful for special-purpose applications where + you wish to add custom padding to the message. + +Both the standard and oneandzeroes paddings are binary safe. The +space and null paddings are recommended only for text data. Which +type of padding you use depends on whether you wish to communicate +with an external (non Crypt::CBC library). If this is the case, use +whatever padding method is compatible. + +You can also pass in a custom padding function. To do this, create a +function that takes the arguments: + + $padded_block = function($block,$blocksize,$direction); + +where $block is the current block of data, $blocksize is the size to +pad it to, $direction is "e" for encrypting and "d" for decrypting, +and $padded_block is the result after padding or depadding. + +When encrypting, the function should always return a string of + length, and when decrypting, can expect the string coming +in to always be that length. See _standard_padding(), _space_padding(), +_null_padding(), or _oneandzeroes_padding() in the source for examples. + +Standard and oneandzeroes padding are recommended, as both space and +null padding can potentially truncate more characters than they should. + +=head1 EXAMPLES + +Two examples, des.pl and idea.pl can be found in the eg/ subdirectory +of the Crypt-CBC distribution. These implement command-line DES and +IDEA encryption algorithms. + +=head1 LIMITATIONS + +The encryption and decryption process is about a tenth the speed of +the equivalent SSLeay programs (compiled C). This could be improved +by implementing this module in C. It may also be worthwhile to +optimize the DES and IDEA block algorithms further. + +=head1 BUGS + +Please report them. + +=head1 AUTHOR + +Lincoln Stein, lstein@cshl.org + +This module is distributed under the ARTISTIC LICENSE using the same +terms as Perl itself. + +=head1 SEE ALSO + +perl(1), Crypt::DES(3), Crypt::IDEA(3), rfc2898 (PKCS#5) + +=cut diff --git a/slic3r/linux/local-lib/lib/perl5/Cwd.pm b/slic3r/linux/local-lib/lib/perl5/Cwd.pm new file mode 100644 index 00000000..ca01272b --- /dev/null +++ b/slic3r/linux/local-lib/lib/perl5/Cwd.pm @@ -0,0 +1,674 @@ +#line 1 "Cwd.pm" +package Cwd; +use strict; +use Exporter; + + +our $VERSION = '3.74'; +my $xs_version = $VERSION; +$VERSION =~ tr/_//d; + +our @ISA = qw/ Exporter /; +our @EXPORT = qw(cwd getcwd fastcwd fastgetcwd); +push @EXPORT, qw(getdcwd) if $^O eq 'MSWin32'; +our @EXPORT_OK = qw(chdir abs_path fast_abs_path realpath fast_realpath); + +# sys_cwd may keep the builtin command + +# All the functionality of this module may provided by builtins, +# there is no sense to process the rest of the file. +# The best choice may be to have this in BEGIN, but how to return from BEGIN? + +if ($^O eq 'os2') { + local $^W = 0; + + *cwd = defined &sys_cwd ? \&sys_cwd : \&_os2_cwd; + *getcwd = \&cwd; + *fastgetcwd = \&cwd; + *fastcwd = \&cwd; + + *fast_abs_path = \&sys_abspath if defined &sys_abspath; + *abs_path = \&fast_abs_path; + *realpath = \&fast_abs_path; + *fast_realpath = \&fast_abs_path; + + return 1; +} + +# Need to look up the feature settings on VMS. The preferred way is to use the +# VMS::Feature module, but that may not be available to dual life modules. + +my $use_vms_feature; +BEGIN { + if ($^O eq 'VMS') { + if (eval { local $SIG{__DIE__}; + local @INC = @INC; + pop @INC if $INC[-1] eq '.'; + require VMS::Feature; }) { + $use_vms_feature = 1; + } + } +} + +# Need to look up the UNIX report mode. This may become a dynamic mode +# in the future. +sub _vms_unix_rpt { + my $unix_rpt; + if ($use_vms_feature) { + $unix_rpt = VMS::Feature::current("filename_unix_report"); + } else { + my $env_unix_rpt = $ENV{'DECC$FILENAME_UNIX_REPORT'} || ''; + $unix_rpt = $env_unix_rpt =~ /^[ET1]/i; + } + return $unix_rpt; +} + +# Need to look up the EFS character set mode. This may become a dynamic +# mode in the future. +sub _vms_efs { + my $efs; + if ($use_vms_feature) { + $efs = VMS::Feature::current("efs_charset"); + } else { + my $env_efs = $ENV{'DECC$EFS_CHARSET'} || ''; + $efs = $env_efs =~ /^[ET1]/i; + } + return $efs; +} + + +# If loading the XS stuff doesn't work, we can fall back to pure perl +if(! defined &getcwd && defined &DynaLoader::boot_DynaLoader) { # skipped on miniperl + require XSLoader; + XSLoader::load( __PACKAGE__, $xs_version); +} + +# Big nasty table of function aliases +my %METHOD_MAP = + ( + VMS => + { + cwd => '_vms_cwd', + getcwd => '_vms_cwd', + fastcwd => '_vms_cwd', + fastgetcwd => '_vms_cwd', + abs_path => '_vms_abs_path', + fast_abs_path => '_vms_abs_path', + }, + + MSWin32 => + { + # We assume that &_NT_cwd is defined as an XSUB or in the core. + cwd => '_NT_cwd', + getcwd => '_NT_cwd', + fastcwd => '_NT_cwd', + fastgetcwd => '_NT_cwd', + abs_path => 'fast_abs_path', + realpath => 'fast_abs_path', + }, + + dos => + { + cwd => '_dos_cwd', + getcwd => '_dos_cwd', + fastgetcwd => '_dos_cwd', + fastcwd => '_dos_cwd', + abs_path => 'fast_abs_path', + }, + + # QNX4. QNX6 has a $os of 'nto'. + qnx => + { + cwd => '_qnx_cwd', + getcwd => '_qnx_cwd', + fastgetcwd => '_qnx_cwd', + fastcwd => '_qnx_cwd', + abs_path => '_qnx_abs_path', + fast_abs_path => '_qnx_abs_path', + }, + + cygwin => + { + getcwd => 'cwd', + fastgetcwd => 'cwd', + fastcwd => 'cwd', + abs_path => 'fast_abs_path', + realpath => 'fast_abs_path', + }, + + amigaos => + { + getcwd => '_backtick_pwd', + fastgetcwd => '_backtick_pwd', + fastcwd => '_backtick_pwd', + abs_path => 'fast_abs_path', + } + ); + +$METHOD_MAP{NT} = $METHOD_MAP{MSWin32}; + + +# Find the pwd command in the expected locations. We assume these +# are safe. This prevents _backtick_pwd() consulting $ENV{PATH} +# so everything works under taint mode. +my $pwd_cmd; +if($^O ne 'MSWin32') { + foreach my $try ('/bin/pwd', + '/usr/bin/pwd', + '/QOpenSys/bin/pwd', # OS/400 PASE. + ) { + if( -x $try ) { + $pwd_cmd = $try; + last; + } + } +} + +# Android has a built-in pwd. Using $pwd_cmd will DTRT if +# this perl was compiled with -Dd_useshellcmds, which is the +# default for Android, but the block below is needed for the +# miniperl running on the host when cross-compiling, and +# potentially for native builds with -Ud_useshellcmds. +if ($^O =~ /android/) { + # If targetsh is executable, then we're either a full + # perl, or a miniperl for a native build. + if (-x $Config::Config{targetsh}) { + $pwd_cmd = "$Config::Config{targetsh} -c pwd" + } + else { + my $sh = $Config::Config{sh} || (-x '/system/bin/sh' ? '/system/bin/sh' : 'sh'); + $pwd_cmd = "$sh -c pwd" + } +} + +my $found_pwd_cmd = defined($pwd_cmd); +unless ($pwd_cmd) { + # Isn't this wrong? _backtick_pwd() will fail if someone has + # pwd in their path but it is not /bin/pwd or /usr/bin/pwd? + # See [perl #16774]. --jhi + $pwd_cmd = 'pwd'; +} + +# Lazy-load Carp +sub _carp { require Carp; Carp::carp(@_) } +sub _croak { require Carp; Carp::croak(@_) } + +# The 'natural and safe form' for UNIX (pwd may be setuid root) +sub _backtick_pwd { + + # Localize %ENV entries in a way that won't create new hash keys. + # Under AmigaOS we don't want to localize as it stops perl from + # finding 'sh' in the PATH. + my @localize = grep exists $ENV{$_}, qw(PATH IFS CDPATH ENV BASH_ENV) if $^O ne "amigaos"; + local @ENV{@localize} if @localize; + + my $cwd = `$pwd_cmd`; + # Belt-and-suspenders in case someone said "undef $/". + local $/ = "\n"; + # `pwd` may fail e.g. if the disk is full + chomp($cwd) if defined $cwd; + $cwd; +} + +# Since some ports may predefine cwd internally (e.g., NT) +# we take care not to override an existing definition for cwd(). + +unless ($METHOD_MAP{$^O}{cwd} or defined &cwd) { + # The pwd command is not available in some chroot(2)'ed environments + my $sep = $Config::Config{path_sep} || ':'; + my $os = $^O; # Protect $^O from tainting + + + # Try again to find a pwd, this time searching the whole PATH. + if (defined $ENV{PATH} and $os ne 'MSWin32') { # no pwd on Windows + my @candidates = split($sep, $ENV{PATH}); + while (!$found_pwd_cmd and @candidates) { + my $candidate = shift @candidates; + $found_pwd_cmd = 1 if -x "$candidate/pwd"; + } + } + + if( $found_pwd_cmd ) + { + *cwd = \&_backtick_pwd; + } + else { + *cwd = \&getcwd; + } +} + +if ($^O eq 'cygwin') { + # We need to make sure cwd() is called with no args, because it's + # got an arg-less prototype and will die if args are present. + local $^W = 0; + my $orig_cwd = \&cwd; + *cwd = sub { &$orig_cwd() } +} + + +# set a reasonable (and very safe) default for fastgetcwd, in case it +# isn't redefined later (20001212 rspier) +*fastgetcwd = \&cwd; + +# A non-XS version of getcwd() - also used to bootstrap the perl build +# process, when miniperl is running and no XS loading happens. +sub _perl_getcwd +{ + abs_path('.'); +} + +# By John Bazik +# +# Usage: $cwd = &fastcwd; +# +# This is a faster version of getcwd. It's also more dangerous because +# you might chdir out of a directory that you can't chdir back into. + +sub fastcwd_ { + my($odev, $oino, $cdev, $cino, $tdev, $tino); + my(@path, $path); + local(*DIR); + + my($orig_cdev, $orig_cino) = stat('.'); + ($cdev, $cino) = ($orig_cdev, $orig_cino); + for (;;) { + my $direntry; + ($odev, $oino) = ($cdev, $cino); + CORE::chdir('..') || return undef; + ($cdev, $cino) = stat('.'); + last if $odev == $cdev && $oino == $cino; + opendir(DIR, '.') || return undef; + for (;;) { + $direntry = readdir(DIR); + last unless defined $direntry; + next if $direntry eq '.'; + next if $direntry eq '..'; + + ($tdev, $tino) = lstat($direntry); + last unless $tdev != $odev || $tino != $oino; + } + closedir(DIR); + return undef unless defined $direntry; # should never happen + unshift(@path, $direntry); + } + $path = '/' . join('/', @path); + if ($^O eq 'apollo') { $path = "/".$path; } + # At this point $path may be tainted (if tainting) and chdir would fail. + # Untaint it then check that we landed where we started. + $path =~ /^(.*)\z/s # untaint + && CORE::chdir($1) or return undef; + ($cdev, $cino) = stat('.'); + die "Unstable directory path, current directory changed unexpectedly" + if $cdev != $orig_cdev || $cino != $orig_cino; + $path; +} +if (not defined &fastcwd) { *fastcwd = \&fastcwd_ } + + +# Keeps track of current working directory in PWD environment var +# Usage: +# use Cwd 'chdir'; +# chdir $newdir; + +my $chdir_init = 0; + +sub chdir_init { + if ($ENV{'PWD'} and $^O ne 'os2' and $^O ne 'dos' and $^O ne 'MSWin32') { + my($dd,$di) = stat('.'); + my($pd,$pi) = stat($ENV{'PWD'}); + if (!defined $dd or !defined $pd or $di != $pi or $dd != $pd) { + $ENV{'PWD'} = cwd(); + } + } + else { + my $wd = cwd(); + $wd = Win32::GetFullPathName($wd) if $^O eq 'MSWin32'; + $ENV{'PWD'} = $wd; + } + # Strip an automounter prefix (where /tmp_mnt/foo/bar == /foo/bar) + if ($^O ne 'MSWin32' and $ENV{'PWD'} =~ m|(/[^/]+(/[^/]+/[^/]+))(.*)|s) { + my($pd,$pi) = stat($2); + my($dd,$di) = stat($1); + if (defined $pd and defined $dd and $di == $pi and $dd == $pd) { + $ENV{'PWD'}="$2$3"; + } + } + $chdir_init = 1; +} + +sub chdir { + my $newdir = @_ ? shift : ''; # allow for no arg (chdir to HOME dir) + if ($^O eq "cygwin") { + $newdir =~ s|\A///+|//|; + $newdir =~ s|(?<=[^/])//+|/|g; + } + elsif ($^O ne 'MSWin32') { + $newdir =~ s|///*|/|g; + } + chdir_init() unless $chdir_init; + my $newpwd; + if ($^O eq 'MSWin32') { + # get the full path name *before* the chdir() + $newpwd = Win32::GetFullPathName($newdir); + } + + return 0 unless CORE::chdir $newdir; + + if ($^O eq 'VMS') { + return $ENV{'PWD'} = $ENV{'DEFAULT'} + } + elsif ($^O eq 'MSWin32') { + $ENV{'PWD'} = $newpwd; + return 1; + } + + if (ref $newdir eq 'GLOB') { # in case a file/dir handle is passed in + $ENV{'PWD'} = cwd(); + } elsif ($newdir =~ m#^/#s) { + $ENV{'PWD'} = $newdir; + } else { + my @curdir = split(m#/#,$ENV{'PWD'}); + @curdir = ('') unless @curdir; + my $component; + foreach $component (split(m#/#, $newdir)) { + next if $component eq '.'; + pop(@curdir),next if $component eq '..'; + push(@curdir,$component); + } + $ENV{'PWD'} = join('/',@curdir) || '/'; + } + 1; +} + + +sub _perl_abs_path +{ + my $start = @_ ? shift : '.'; + my($dotdots, $cwd, @pst, @cst, $dir, @tst); + + unless (@cst = stat( $start )) + { + return undef; + } + + unless (-d _) { + # Make sure we can be invoked on plain files, not just directories. + # NOTE that this routine assumes that '/' is the only directory separator. + + my ($dir, $file) = $start =~ m{^(.*)/(.+)$} + or return cwd() . '/' . $start; + + # Can't use "-l _" here, because the previous stat was a stat(), not an lstat(). + if (-l $start) { + my $link_target = readlink($start); + die "Can't resolve link $start: $!" unless defined $link_target; + + require File::Spec; + $link_target = $dir . '/' . $link_target + unless File::Spec->file_name_is_absolute($link_target); + + return abs_path($link_target); + } + + return $dir ? abs_path($dir) . "/$file" : "/$file"; + } + + $cwd = ''; + $dotdots = $start; + do + { + $dotdots .= '/..'; + @pst = @cst; + local *PARENT; + unless (opendir(PARENT, $dotdots)) + { + return undef; + } + unless (@cst = stat($dotdots)) + { + my $e = $!; + closedir(PARENT); + $! = $e; + return undef; + } + if ($pst[0] == $cst[0] && $pst[1] == $cst[1]) + { + $dir = undef; + } + else + { + do + { + unless (defined ($dir = readdir(PARENT))) + { + closedir(PARENT); + require Errno; + $! = Errno::ENOENT(); + return undef; + } + $tst[0] = $pst[0]+1 unless (@tst = lstat("$dotdots/$dir")) + } + while ($dir eq '.' || $dir eq '..' || $tst[0] != $pst[0] || + $tst[1] != $pst[1]); + } + $cwd = (defined $dir ? "$dir" : "" ) . "/$cwd" ; + closedir(PARENT); + } while (defined $dir); + chop($cwd) unless $cwd eq '/'; # drop the trailing / + $cwd; +} + + +my $Curdir; +sub fast_abs_path { + local $ENV{PWD} = $ENV{PWD} || ''; # Guard against clobberage + my $cwd = getcwd(); + defined $cwd or return undef; + require File::Spec; + my $path = @_ ? shift : ($Curdir ||= File::Spec->curdir); + + # Detaint else we'll explode in taint mode. This is safe because + # we're not doing anything dangerous with it. + ($path) = $path =~ /(.*)/s; + ($cwd) = $cwd =~ /(.*)/s; + + unless (-e $path) { + require Errno; + $! = Errno::ENOENT(); + return undef; + } + + unless (-d _) { + # Make sure we can be invoked on plain files, not just directories. + + my ($vol, $dir, $file) = File::Spec->splitpath($path); + return File::Spec->catfile($cwd, $path) unless length $dir; + + if (-l $path) { + my $link_target = readlink($path); + defined $link_target or return undef; + + $link_target = File::Spec->catpath($vol, $dir, $link_target) + unless File::Spec->file_name_is_absolute($link_target); + + return fast_abs_path($link_target); + } + + return $dir eq File::Spec->rootdir + ? File::Spec->catpath($vol, $dir, $file) + : fast_abs_path(File::Spec->catpath($vol, $dir, '')) . '/' . $file; + } + + if (!CORE::chdir($path)) { + return undef; + } + my $realpath = getcwd(); + if (! ((-d $cwd) && (CORE::chdir($cwd)))) { + _croak("Cannot chdir back to $cwd: $!"); + } + $realpath; +} + +# added function alias to follow principle of least surprise +# based on previous aliasing. --tchrist 27-Jan-00 +*fast_realpath = \&fast_abs_path; + + +# --- PORTING SECTION --- + +# VMS: $ENV{'DEFAULT'} points to default directory at all times +# 06-Mar-1996 Charles Bailey bailey@newman.upenn.edu +# Note: Use of Cwd::chdir() causes the logical name PWD to be defined +# in the process logical name table as the default device and directory +# seen by Perl. This may not be the same as the default device +# and directory seen by DCL after Perl exits, since the effects +# the CRTL chdir() function persist only until Perl exits. + +sub _vms_cwd { + return $ENV{'DEFAULT'}; +} + +sub _vms_abs_path { + return $ENV{'DEFAULT'} unless @_; + my $path = shift; + + my $efs = _vms_efs; + my $unix_rpt = _vms_unix_rpt; + + if (defined &VMS::Filespec::vmsrealpath) { + my $path_unix = 0; + my $path_vms = 0; + + $path_unix = 1 if ($path =~ m#(?<=\^)/#); + $path_unix = 1 if ($path =~ /^\.\.?$/); + $path_vms = 1 if ($path =~ m#[\[<\]]#); + $path_vms = 1 if ($path =~ /^--?$/); + + my $unix_mode = $path_unix; + if ($efs) { + # In case of a tie, the Unix report mode decides. + if ($path_vms == $path_unix) { + $unix_mode = $unix_rpt; + } else { + $unix_mode = 0 if $path_vms; + } + } + + if ($unix_mode) { + # Unix format + return VMS::Filespec::unixrealpath($path); + } + + # VMS format + + my $new_path = VMS::Filespec::vmsrealpath($path); + + # Perl expects directories to be in directory format + $new_path = VMS::Filespec::pathify($new_path) if -d $path; + return $new_path; + } + + # Fallback to older algorithm if correct ones are not + # available. + + if (-l $path) { + my $link_target = readlink($path); + die "Can't resolve link $path: $!" unless defined $link_target; + + return _vms_abs_path($link_target); + } + + # may need to turn foo.dir into [.foo] + my $pathified = VMS::Filespec::pathify($path); + $path = $pathified if defined $pathified; + + return VMS::Filespec::rmsexpand($path); +} + +sub _os2_cwd { + my $pwd = `cmd /c cd`; + chomp $pwd; + $pwd =~ s:\\:/:g ; + $ENV{'PWD'} = $pwd; + return $pwd; +} + +sub _win32_cwd_simple { + my $pwd = `cd`; + chomp $pwd; + $pwd =~ s:\\:/:g ; + $ENV{'PWD'} = $pwd; + return $pwd; +} + +sub _win32_cwd { + my $pwd; + $pwd = Win32::GetCwd(); + $pwd =~ s:\\:/:g ; + $ENV{'PWD'} = $pwd; + return $pwd; +} + +*_NT_cwd = defined &Win32::GetCwd ? \&_win32_cwd : \&_win32_cwd_simple; + +sub _dos_cwd { + my $pwd; + if (!defined &Dos::GetCwd) { + chomp($pwd = `command /c cd`); + $pwd =~ s:\\:/:g ; + } else { + $pwd = Dos::GetCwd(); + } + $ENV{'PWD'} = $pwd; + return $pwd; +} + +sub _qnx_cwd { + local $ENV{PATH} = ''; + local $ENV{CDPATH} = ''; + local $ENV{ENV} = ''; + my $pwd = `/usr/bin/fullpath -t`; + chomp $pwd; + $ENV{'PWD'} = $pwd; + return $pwd; +} + +sub _qnx_abs_path { + local $ENV{PATH} = ''; + local $ENV{CDPATH} = ''; + local $ENV{ENV} = ''; + my $path = @_ ? shift : '.'; + local *REALPATH; + + defined( open(REALPATH, '-|') || exec '/usr/bin/fullpath', '-t', $path ) or + die "Can't open /usr/bin/fullpath: $!"; + my $realpath = ; + close REALPATH; + chomp $realpath; + return $realpath; +} + +# Now that all the base-level functions are set up, alias the +# user-level functions to the right places + +if (exists $METHOD_MAP{$^O}) { + my $map = $METHOD_MAP{$^O}; + foreach my $name (keys %$map) { + local $^W = 0; # assignments trigger 'subroutine redefined' warning + no strict 'refs'; + *{$name} = \&{$map->{$name}}; + } +} + +# In case the XS version doesn't load. +*abs_path = \&_perl_abs_path unless defined &abs_path; +*getcwd = \&_perl_getcwd unless defined &getcwd; + +# added function alias for those of us more +# used to the libc function. --tchrist 27-Jan-00 +*realpath = \&abs_path; + +1; +__END__ + +#line 841 diff --git a/slic3r/linux/local-lib/lib/perl5/Devel/GlobalDestruction.pm b/slic3r/linux/local-lib/lib/perl5/Devel/GlobalDestruction.pm new file mode 100644 index 00000000..2468b45d --- /dev/null +++ b/slic3r/linux/local-lib/lib/perl5/Devel/GlobalDestruction.pm @@ -0,0 +1,110 @@ +package Devel::GlobalDestruction; + +use strict; +use warnings; + +our $VERSION = '0.14'; + +use Sub::Exporter::Progressive -setup => { + exports => [ qw(in_global_destruction) ], + groups => { default => [ -all ] }, +}; + +# we run 5.14+ - everything is in core +# +if (defined ${^GLOBAL_PHASE}) { + eval 'sub in_global_destruction () { ${^GLOBAL_PHASE} eq q[DESTRUCT] }; 1' + or die $@; +} +# try to load the xs version if it was compiled +# +elsif (eval { + require Devel::GlobalDestruction::XS; + no warnings 'once'; + *in_global_destruction = \&Devel::GlobalDestruction::XS::in_global_destruction; + 1; +}) { + # the eval already installed everything, nothing to do +} +else { + # internally, PL_main_cv is set to Nullcv immediately before entering + # global destruction and we can use B to detect that. B::main_cv will + # only ever be a B::CV or a B::SPECIAL that is a reference to 0 + require B; + eval 'sub in_global_destruction () { ${B::main_cv()} == 0 }; 1' + or die $@; +} + +1; # keep require happy + + +__END__ + +=head1 NAME + +Devel::GlobalDestruction - Provides function returning the equivalent of +C<${^GLOBAL_PHASE} eq 'DESTRUCT'> for older perls. + +=head1 SYNOPSIS + + package Foo; + use Devel::GlobalDestruction; + + use namespace::clean; # to avoid having an "in_global_destruction" method + + sub DESTROY { + return if in_global_destruction; + + do_something_a_little_tricky(); + } + +=head1 DESCRIPTION + +Perl's global destruction is a little tricky to deal with WRT finalizers +because it's not ordered and objects can sometimes disappear. + +Writing defensive destructors is hard and annoying, and usually if global +destruction is happening you only need the destructors that free up non +process local resources to actually execute. + +For these constructors you can avoid the mess by simply bailing out if global +destruction is in effect. + +=head1 EXPORTS + +This module uses L so the exports may be renamed, +aliased, etc. if L is present. + +=over 4 + +=item in_global_destruction + +Returns true if the interpreter is in global destruction. In perl 5.14+, this +returns C<${^GLOBAL_PHASE} eq 'DESTRUCT'>, and on earlier perls, detects it using +the value of C or C. + +=back + +=head1 AUTHORS + +Yuval Kogman Enothingmuch@woobling.orgE + +Florian Ragwitz Erafl@debian.orgE + +Jesse Luehrs Edoy@tozt.netE + +Peter Rabbitson Eribasushi@cpan.orgE + +Arthur Axel 'fREW' Schmidt Efrioux@gmail.comE + +Elizabeth Mattijsen Eliz@dijkmat.nlE + +Greham Knop Ehaarg@haarg.orgE + +=head1 COPYRIGHT + + Copyright (c) 2008 Yuval Kogman. All rights reserved + This program is free software; you can redistribute + it and/or modify it under the same terms as Perl itself. + +=cut diff --git a/slic3r/linux/local-lib/lib/perl5/Devel/InnerPackage.pm b/slic3r/linux/local-lib/lib/perl5/Devel/InnerPackage.pm new file mode 100755 index 00000000..9bcd4775 --- /dev/null +++ b/slic3r/linux/local-lib/lib/perl5/Devel/InnerPackage.pm @@ -0,0 +1,129 @@ +package Devel::InnerPackage; + +use strict; +use Exporter 5.57 'import'; +use vars qw($VERSION @EXPORT_OK); + +use if $] > 5.017, 'deprecate'; + +$VERSION = '0.4'; +@EXPORT_OK = qw(list_packages); + +=pod + +=head1 NAME + +Devel::InnerPackage - find all the inner packages of a package + +=head1 SYNOPSIS + + use Foo::Bar; + use Devel::InnerPackage qw(list_packages); + + my @inner_packages = list_packages('Foo::Bar'); + + +=head1 DESCRIPTION + + +Given a file like this + + + package Foo::Bar; + + sub foo {} + + + package Foo::Bar::Quux; + + sub quux {} + + package Foo::Bar::Quirka; + + sub quirka {} + + 1; + +then + + list_packages('Foo::Bar'); + +will return + + Foo::Bar::Quux + Foo::Bar::Quirka + +=head1 METHODS + +=head2 list_packages + +Return a list of all inner packages of that package. + +=cut + +sub list_packages { + my $pack = shift; $pack .= "::" unless $pack =~ m!::$!; + + no strict 'refs'; + my @packs; + my @stuff = grep !/^(main|)::$/, keys %{$pack}; + for my $cand (grep /::$/, @stuff) + { + $cand =~ s!::$!!; + my @children = list_packages($pack.$cand); + + push @packs, "$pack$cand" unless $cand =~ /^::/ || + !__PACKAGE__->_loaded($pack.$cand); # or @children; + push @packs, @children; + } + return grep {$_ !~ /::(::ISA::CACHE|SUPER)/} @packs; +} + +### XXX this is an inlining of the Class-Inspector->loaded() +### method, but inlined to remove the dependency. +sub _loaded { + my ($class, $name) = @_; + + no strict 'refs'; + + # Handle by far the two most common cases + # This is very fast and handles 99% of cases. + return 1 if defined ${"${name}::VERSION"}; + return 1 if @{"${name}::ISA"}; + + # Are there any symbol table entries other than other namespaces + foreach ( keys %{"${name}::"} ) { + next if substr($_, -2, 2) eq '::'; + return 1 if defined &{"${name}::$_"}; + } + + # No functions, and it doesn't have a version, and isn't anything. + # As an absolute last resort, check for an entry in %INC + my $filename = join( '/', split /(?:'|::)/, $name ) . '.pm'; + return 1 if defined $INC{$filename}; + + ''; +} + + +=head1 AUTHOR + +Simon Wistow + +=head1 COPYING + +Copyright, 2005 Simon Wistow + +Distributed under the same terms as Perl itself. + +=head1 BUGS + +None known. + +=cut + + + + + +1; diff --git a/slic3r/linux/local-lib/lib/perl5/Digest/HMAC.pm b/slic3r/linux/local-lib/lib/perl5/Digest/HMAC.pm new file mode 100644 index 00000000..9a164f8e --- /dev/null +++ b/slic3r/linux/local-lib/lib/perl5/Digest/HMAC.pm @@ -0,0 +1,120 @@ +package Digest::HMAC; +$VERSION = "1.03"; + +use strict; + +# OO interface + +sub new +{ + my($class, $key, $hasher, $block_size) = @_; + $block_size ||= 64; + $key = $hasher->new->add($key)->digest if length($key) > $block_size; + + my $self = bless {}, $class; + $self->{k_ipad} = $key ^ (chr(0x36) x $block_size); + $self->{k_opad} = $key ^ (chr(0x5c) x $block_size); + $self->{hasher} = $hasher->new->add($self->{k_ipad}); + $self; +} + +sub reset +{ + my $self = shift; + $self->{hasher}->reset->add($self->{k_ipad}); + $self; +} + +sub add { my $self = shift; $self->{hasher}->add(@_); $self; } +sub addfile { my $self = shift; $self->{hasher}->addfile(@_); $self; } + +sub _digest +{ + my $self = shift; + my $inner_digest = $self->{hasher}->digest; + $self->{hasher}->reset->add($self->{k_opad}, $inner_digest); +} + +sub digest { shift->_digest->digest; } +sub hexdigest { shift->_digest->hexdigest; } +sub b64digest { shift->_digest->b64digest; } + + +# Functional interface + +require Exporter; +*import = \&Exporter::import; +use vars qw(@EXPORT_OK); +@EXPORT_OK = qw(hmac hmac_hex); + +sub hmac +{ + my($data, $key, $hash_func, $block_size) = @_; + $block_size ||= 64; + $key = &$hash_func($key) if length($key) > $block_size; + + my $k_ipad = $key ^ (chr(0x36) x $block_size); + my $k_opad = $key ^ (chr(0x5c) x $block_size); + + &$hash_func($k_opad, &$hash_func($k_ipad, $data)); +} + +sub hmac_hex { unpack("H*", &hmac); } + +1; + +__END__ + +=head1 NAME + +Digest::HMAC - Keyed-Hashing for Message Authentication + +=head1 SYNOPSIS + + # Functional style + use Digest::HMAC qw(hmac hmac_hex); + $digest = hmac($data, $key, \&myhash); + print hmac_hex($data, $key, \&myhash); + + # OO style + use Digest::HMAC; + $hmac = Digest::HMAC->new($key, "Digest::MyHash"); + + $hmac->add($data); + $hmac->addfile(*FILE); + + $digest = $hmac->digest; + $digest = $hmac->hexdigest; + $digest = $hmac->b64digest; + +=head1 DESCRIPTION + +HMAC is used for message integrity checks between two parties that +share a secret key, and works in combination with some other Digest +algorithm, usually MD5 or SHA-1. The HMAC mechanism is described in +RFC 2104. + +HMAC follow the common C interface, but the constructor +takes the secret key and the name of some other simple C +as argument. + +The hmac() and hmac_hex() functions and the Digest::HMAC->new() constructor +takes an optional $blocksize argument as well. The HMAC algorithm assumes the +digester to hash by iterating a basic compression function on blocks of data +and the $blocksize should match the byte-length of such blocks. + +The default $blocksize is 64 which is suitable for the MD5 and SHA-1 digest +functions. For stronger algorithms the blocksize probably needs to be +increased. + +=head1 SEE ALSO + +L, L + +RFC 2104 + +=head1 AUTHORS + +Graham Barr , Gisle Aas + +=cut diff --git a/slic3r/linux/local-lib/lib/perl5/Digest/HMAC_MD5.pm b/slic3r/linux/local-lib/lib/perl5/Digest/HMAC_MD5.pm new file mode 100644 index 00000000..6efa0a12 --- /dev/null +++ b/slic3r/linux/local-lib/lib/perl5/Digest/HMAC_MD5.pm @@ -0,0 +1,71 @@ +package Digest::HMAC_MD5; +$VERSION="1.01"; + +use strict; +use Digest::MD5 qw(md5); +use Digest::HMAC qw(hmac); + +# OO interface +use vars qw(@ISA); +@ISA=qw(Digest::HMAC); +sub new +{ + my $class = shift; + $class->SUPER::new($_[0], "Digest::MD5", 64); +} + +# Functional interface +require Exporter; +*import = \&Exporter::import; +use vars qw(@EXPORT_OK); +@EXPORT_OK=qw(hmac_md5 hmac_md5_hex); + +sub hmac_md5 +{ + hmac($_[0], $_[1], \&md5, 64); +} + +sub hmac_md5_hex +{ + unpack("H*", &hmac_md5) +} + +1; + +__END__ + +=head1 NAME + +Digest::HMAC_MD5 - Keyed-Hashing for Message Authentication + +=head1 SYNOPSIS + + # Functional style + use Digest::HMAC_MD5 qw(hmac_md5 hmac_md5_hex); + $digest = hmac_md5($data, $key); + print hmac_md5_hex($data, $key); + + # OO style + use Digest::HMAC_MD5; + $hmac = Digest::HMAC_MD5->new($key); + + $hmac->add($data); + $hmac->addfile(*FILE); + + $digest = $hmac->digest; + $digest = $hmac->hexdigest; + $digest = $hmac->b64digest; + +=head1 DESCRIPTION + +This module provide HMAC-MD5 hashing. + +=head1 SEE ALSO + +L, L, L + +=head1 AUTHOR + +Gisle Aas + +=cut diff --git a/slic3r/linux/local-lib/lib/perl5/Digest/HMAC_SHA1.pm b/slic3r/linux/local-lib/lib/perl5/Digest/HMAC_SHA1.pm new file mode 100644 index 00000000..c63b00fc --- /dev/null +++ b/slic3r/linux/local-lib/lib/perl5/Digest/HMAC_SHA1.pm @@ -0,0 +1,71 @@ +package Digest::HMAC_SHA1; +$VERSION="1.03"; + +use strict; +use Digest::SHA qw(sha1); +use Digest::HMAC qw(hmac); + +# OO interface +use vars qw(@ISA); +@ISA=qw(Digest::HMAC); +sub new +{ + my $class = shift; + $class->SUPER::new($_[0], "Digest::SHA", 64); # Digest::SHA defaults to SHA-1 +} + +# Functional interface +require Exporter; +*import = \&Exporter::import; +use vars qw(@EXPORT_OK); +@EXPORT_OK=qw(hmac_sha1 hmac_sha1_hex); + +sub hmac_sha1 +{ + hmac($_[0], $_[1], \&sha1, 64); +} + +sub hmac_sha1_hex +{ + unpack("H*", &hmac_sha1) +} + +1; + +__END__ + +=head1 NAME + +Digest::HMAC_SHA1 - Keyed-Hashing for Message Authentication + +=head1 SYNOPSIS + + # Functional style + use Digest::HMAC_SHA1 qw(hmac_sha1 hmac_sha1_hex); + $digest = hmac_sha1($data, $key); + print hmac_sha1_hex($data, $key); + + # OO style + use Digest::HMAC_SHA1; + $hmac = Digest::HMAC_SHA1->new($key); + + $hmac->add($data); + $hmac->addfile(*FILE); + + $digest = $hmac->digest; + $digest = $hmac->hexdigest; + $digest = $hmac->b64digest; + +=head1 DESCRIPTION + +This module provide HMAC-SHA-1 hashing. + +=head1 SEE ALSO + +L, L, L + +=head1 AUTHOR + +Gisle Aas + +=cut diff --git a/slic3r/linux/local-lib/lib/perl5/DynaLoader.pm b/slic3r/linux/local-lib/lib/perl5/DynaLoader.pm new file mode 100644 index 00000000..200dd84c --- /dev/null +++ b/slic3r/linux/local-lib/lib/perl5/DynaLoader.pm @@ -0,0 +1,324 @@ +#line 1 "DynaLoader.pm" + +# Generated from DynaLoader_pm.PL, this file is unique for every OS + +package DynaLoader; + +# And Gandalf said: 'Many folk like to know beforehand what is to +# be set on the table; but those who have laboured to prepare the +# feast like to keep their secret; for wonder makes the words of +# praise louder.' + +# (Quote from Tolkien suggested by Anno Siegel.) +# +# See pod text at end of file for documentation. +# See also ext/DynaLoader/README in source tree for other information. +# +# Tim.Bunce@ig.co.uk, August 1994 + +BEGIN { + $VERSION = '1.38'; +} + +use Config; + +# enable debug/trace messages from DynaLoader perl code +$dl_debug = $ENV{PERL_DL_DEBUG} || 0 unless defined $dl_debug; + +# +# Flags to alter dl_load_file behaviour. Assigned bits: +# 0x01 make symbols available for linking later dl_load_file's. +# (only known to work on Solaris 2 using dlopen(RTLD_GLOBAL)) +# (ignored under VMS; effect is built-in to image linking) +# (ignored under Android; the linker always uses RTLD_LOCAL) +# +# This is called as a class method $module->dl_load_flags. The +# definition here will be inherited and result on "default" loading +# behaviour unless a sub-class of DynaLoader defines its own version. +# + +sub dl_load_flags { 0x00 } + +($dl_dlext, $dl_so, $dlsrc) = @Config::Config{qw(dlext so dlsrc)}; + + +$do_expand = 0; + +@dl_require_symbols = (); # names of symbols we need +@dl_library_path = (); # path to look for files + +#XSLoader.pm may have added elements before we were required +#@dl_shared_objects = (); # shared objects for symbols we have +#@dl_librefs = (); # things we have loaded +#@dl_modules = (); # Modules we have loaded + +# Initialise @dl_library_path with the 'standard' library path +# for this platform as determined by Configure. + +push(@dl_library_path, split(' ', $Config::Config{libpth})); + + +my $ldlibpthname = $Config::Config{ldlibpthname}; +my $ldlibpthname_defined = defined $Config::Config{ldlibpthname}; +my $pthsep = $Config::Config{path_sep}; + +# Add to @dl_library_path any extra directories we can gather from environment +# during runtime. + +if ($ldlibpthname_defined && + exists $ENV{$ldlibpthname}) { + push(@dl_library_path, split(/$pthsep/, $ENV{$ldlibpthname})); +} + +# E.g. HP-UX supports both its native SHLIB_PATH *and* LD_LIBRARY_PATH. + +if ($ldlibpthname_defined && + $ldlibpthname ne 'LD_LIBRARY_PATH' && + exists $ENV{LD_LIBRARY_PATH}) { + push(@dl_library_path, split(/$pthsep/, $ENV{LD_LIBRARY_PATH})); +} + + +# No prizes for guessing why we don't say 'bootstrap DynaLoader;' here. +# NOTE: All dl_*.xs (including dl_none.xs) define a dl_error() XSUB +boot_DynaLoader('DynaLoader') if defined(&boot_DynaLoader) && + !defined(&dl_error); + +if ($dl_debug) { + print STDERR "DynaLoader.pm loaded (@INC, @dl_library_path)\n"; + print STDERR "DynaLoader not linked into this perl\n" + unless defined(&boot_DynaLoader); +} + +1; # End of main code + + +sub croak { require Carp; Carp::croak(@_) } + +sub bootstrap_inherit { + my $module = $_[0]; + local *isa = *{"$module\::ISA"}; + local @isa = (@isa, 'DynaLoader'); + # Cannot goto due to delocalization. Will report errors on a wrong line? + bootstrap(@_); +} + +sub bootstrap { + # use local vars to enable $module.bs script to edit values + local(@args) = @_; + local($module) = $args[0]; + local(@dirs, $file); + + unless ($module) { + require Carp; + Carp::confess("Usage: DynaLoader::bootstrap(module)"); + } + + # A common error on platforms which don't support dynamic loading. + # Since it's fatal and potentially confusing we give a detailed message. + croak("Can't load module $module, dynamic loading not available in this perl.\n". + " (You may need to build a new perl executable which either supports\n". + " dynamic loading or has the $module module statically linked into it.)\n") + unless defined(&dl_load_file); + + + + my @modparts = split(/::/,$module); + my $modfname = $modparts[-1]; + my $modfname_orig = $modfname; # For .bs file search + + # Some systems have restrictions on files names for DLL's etc. + # mod2fname returns appropriate file base name (typically truncated) + # It may also edit @modparts if required. + $modfname = &mod2fname(\@modparts) if defined &mod2fname; + + + + my $modpname = join('/',@modparts); + + print STDERR "DynaLoader::bootstrap for $module ", + "(auto/$modpname/$modfname.$dl_dlext)\n" + if $dl_debug; + + my $dir; + foreach (@INC) { + + $dir = "$_/auto/$modpname"; + + next unless -d $dir; # skip over uninteresting directories + + # check for common cases to avoid autoload of dl_findfile + my $try = "$dir/$modfname.$dl_dlext"; + last if $file = ($do_expand) ? dl_expandspec($try) : ((-f $try) && $try); + + # no luck here, save dir for possible later dl_findfile search + push @dirs, $dir; + } + # last resort, let dl_findfile have a go in all known locations + $file = dl_findfile(map("-L$_",@dirs,@INC), $modfname) unless $file; + + croak("Can't locate loadable object for module $module in \@INC (\@INC contains: @INC)") + unless $file; # wording similar to error from 'require' + + + my $bootname = "boot_$module"; + $bootname =~ s/\W/_/g; + @dl_require_symbols = ($bootname); + + # Execute optional '.bootstrap' perl script for this module. + # The .bs file can be used to configure @dl_resolve_using etc to + # match the needs of the individual module on this architecture. + # N.B. The .bs file does not following the naming convention used + # by mod2fname. + my $bs = "$dir/$modfname_orig"; + $bs =~ s/(\.\w+)?(;\d*)?$/\.bs/; # look for .bs 'beside' the library + if (-s $bs) { # only read file if it's not empty + print STDERR "BS: $bs ($^O, $dlsrc)\n" if $dl_debug; + eval { do $bs; }; + warn "$bs: $@\n" if $@; + } + + my $boot_symbol_ref; + + + + # Many dynamic extension loading problems will appear to come from + # this section of code: XYZ failed at line 123 of DynaLoader.pm. + # Often these errors are actually occurring in the initialisation + # C code of the extension XS file. Perl reports the error as being + # in this perl code simply because this was the last perl code + # it executed. + + my $flags = $module->dl_load_flags; + + my $libref = dl_load_file($file, $flags) or + croak("Can't load '$file' for module $module: ".dl_error()); + + push(@dl_librefs,$libref); # record loaded object + + $boot_symbol_ref = dl_find_symbol($libref, $bootname) or + croak("Can't find '$bootname' symbol in $file\n"); + + push(@dl_modules, $module); # record loaded module + + boot: + my $xs = dl_install_xsub("${module}::bootstrap", $boot_symbol_ref, $file); + + # See comment block above + + push(@dl_shared_objects, $file); # record files loaded + + &$xs(@args); +} + +sub dl_findfile { + # This function does not automatically consider the architecture + # or the perl library auto directories. + my (@args) = @_; + my (@dirs, $dir); # which directories to search + my (@found); # full paths to real files we have found + #my $dl_ext= 'so'; # $Config::Config{'dlext'} suffix for perl extensions + #my $dl_so = 'so'; # $Config::Config{'so'} suffix for shared libraries + + print STDERR "dl_findfile(@args)\n" if $dl_debug; + + # accumulate directories but process files as they appear + arg: foreach(@args) { + # Special fast case: full filepath requires no search + + + if (m:/: && -f $_) { + push(@found,$_); + last arg unless wantarray; + next; + } + + + # Deal with directories first: + # Using a -L prefix is the preferred option (faster and more robust) + if (m:^-L:) { s/^-L//; push(@dirs, $_); next; } + + # Otherwise we try to try to spot directories by a heuristic + # (this is a more complicated issue than it first appears) + if (m:/: && -d $_) { push(@dirs, $_); next; } + + + + # Only files should get this far... + my(@names, $name); # what filenames to look for + if (m:-l: ) { # convert -lname to appropriate library name + s/-l//; + push(@names,"lib$_.$dl_so"); + push(@names,"lib$_.a"); + } else { # Umm, a bare name. Try various alternatives: + # these should be ordered with the most likely first + push(@names,"$_.$dl_dlext") unless m/\.$dl_dlext$/o; + push(@names,"$_.$dl_so") unless m/\.$dl_so$/o; + + push(@names,"lib$_.$dl_so") unless m:/:; + push(@names, $_); + } + my $dirsep = '/'; + + foreach $dir (@dirs, @dl_library_path) { + next unless -d $dir; + + foreach $name (@names) { + my($file) = "$dir$dirsep$name"; + print STDERR " checking in $dir for $name\n" if $dl_debug; + $file = ($do_expand) ? dl_expandspec($file) : (-f $file && $file); + #$file = _check_file($file); + if ($file) { + push(@found, $file); + next arg; # no need to look any further + } + } + } + } + if ($dl_debug) { + foreach(@dirs) { + print STDERR " dl_findfile ignored non-existent directory: $_\n" unless -d $_; + } + print STDERR "dl_findfile found: @found\n"; + } + return $found[0] unless wantarray; + @found; +} + + + +sub dl_expandspec { + my($spec) = @_; + # Optional function invoked if DynaLoader.pm sets $do_expand. + # Most systems do not require or use this function. + # Some systems may implement it in the dl_*.xs file in which case + # this Perl version should be excluded at build time. + + # This function is designed to deal with systems which treat some + # 'filenames' in a special way. For example VMS 'Logical Names' + # (something like unix environment variables - but different). + # This function should recognise such names and expand them into + # full file paths. + # Must return undef if $spec is invalid or file does not exist. + + my $file = $spec; # default output to input + + return undef unless -f $file; + print STDERR "dl_expandspec($spec) => $file\n" if $dl_debug; + $file; +} + +sub dl_find_symbol_anywhere +{ + my $sym = shift; + my $libref; + foreach $libref (@dl_librefs) { + my $symref = dl_find_symbol($libref,$sym,1); + return $symref if $symref; + } + return undef; +} + +__END__ + +#line 761 diff --git a/slic3r/linux/local-lib/lib/perl5/Encode/Locale.pm b/slic3r/linux/local-lib/lib/perl5/Encode/Locale.pm new file mode 100644 index 00000000..1933778f --- /dev/null +++ b/slic3r/linux/local-lib/lib/perl5/Encode/Locale.pm @@ -0,0 +1,373 @@ +package Encode::Locale; + +use strict; +our $VERSION = "1.05"; + +use base 'Exporter'; +our @EXPORT_OK = qw( + decode_argv env + $ENCODING_LOCALE $ENCODING_LOCALE_FS + $ENCODING_CONSOLE_IN $ENCODING_CONSOLE_OUT +); + +use Encode (); +use Encode::Alias (); + +our $ENCODING_LOCALE; +our $ENCODING_LOCALE_FS; +our $ENCODING_CONSOLE_IN; +our $ENCODING_CONSOLE_OUT; + +sub DEBUG () { 0 } + +sub _init { + if ($^O eq "MSWin32") { + unless ($ENCODING_LOCALE) { + # Try to obtain what the Windows ANSI code page is + eval { + unless (defined &GetACP) { + require Win32; + eval { Win32::GetACP() }; + *GetACP = sub { &Win32::GetACP } unless $@; + } + unless (defined &GetACP) { + require Win32::API; + Win32::API->Import('kernel32', 'int GetACP()'); + } + if (defined &GetACP) { + my $cp = GetACP(); + $ENCODING_LOCALE = "cp$cp" if $cp; + } + }; + } + + unless ($ENCODING_CONSOLE_IN) { + # only test one since set together + unless (defined &GetInputCP) { + eval { + require Win32; + eval { Win32::GetConsoleCP() }; + # manually "import" it since Win32->import refuses + *GetInputCP = sub { &Win32::GetConsoleCP } unless $@; + *GetOutputCP = sub { &Win32::GetConsoleOutputCP } unless $@; + }; + unless (defined &GetInputCP) { + eval { + # try Win32::Console module for codepage to use + require Win32::Console; + eval { Win32::Console::InputCP() }; + *GetInputCP = sub { &Win32::Console::InputCP } + unless $@; + *GetOutputCP = sub { &Win32::Console::OutputCP } + unless $@; + }; + } + unless (defined &GetInputCP) { + # final fallback + *GetInputCP = *GetOutputCP = sub { + # another fallback that could work is: + # reg query HKLM\System\CurrentControlSet\Control\Nls\CodePage /v ACP + ((qx(chcp) || '') =~ /^Active code page: (\d+)/) + ? $1 : (); + }; + } + } + my $cp = GetInputCP(); + $ENCODING_CONSOLE_IN = "cp$cp" if $cp; + $cp = GetOutputCP(); + $ENCODING_CONSOLE_OUT = "cp$cp" if $cp; + } + } + + unless ($ENCODING_LOCALE) { + eval { + require I18N::Langinfo; + $ENCODING_LOCALE = I18N::Langinfo::langinfo(I18N::Langinfo::CODESET()); + + # Workaround of Encode < v2.25. The "646" encoding alias was + # introduced in Encode-2.25, but we don't want to require that version + # quite yet. Should avoid the CPAN testers failure reported from + # openbsd-4.7/perl-5.10.0 combo. + $ENCODING_LOCALE = "ascii" if $ENCODING_LOCALE eq "646"; + + # https://rt.cpan.org/Ticket/Display.html?id=66373 + $ENCODING_LOCALE = "hp-roman8" if $^O eq "hpux" && $ENCODING_LOCALE eq "roman8"; + }; + $ENCODING_LOCALE ||= $ENCODING_CONSOLE_IN; + } + + if ($^O eq "darwin") { + $ENCODING_LOCALE_FS ||= "UTF-8"; + } + + # final fallback + $ENCODING_LOCALE ||= $^O eq "MSWin32" ? "cp1252" : "UTF-8"; + $ENCODING_LOCALE_FS ||= $ENCODING_LOCALE; + $ENCODING_CONSOLE_IN ||= $ENCODING_LOCALE; + $ENCODING_CONSOLE_OUT ||= $ENCODING_CONSOLE_IN; + + unless (Encode::find_encoding($ENCODING_LOCALE)) { + my $foundit; + if (lc($ENCODING_LOCALE) eq "gb18030") { + eval { + require Encode::HanExtra; + }; + if ($@) { + die "Need Encode::HanExtra to be installed to support locale codeset ($ENCODING_LOCALE), stopped"; + } + $foundit++ if Encode::find_encoding($ENCODING_LOCALE); + } + die "The locale codeset ($ENCODING_LOCALE) isn't one that perl can decode, stopped" + unless $foundit; + + } + + # use Data::Dump; ddx $ENCODING_LOCALE, $ENCODING_LOCALE_FS, $ENCODING_CONSOLE_IN, $ENCODING_CONSOLE_OUT; +} + +_init(); +Encode::Alias::define_alias(sub { + no strict 'refs'; + no warnings 'once'; + return ${"ENCODING_" . uc(shift)}; +}, "locale"); + +sub _flush_aliases { + no strict 'refs'; + for my $a (keys %Encode::Alias::Alias) { + if (defined ${"ENCODING_" . uc($a)}) { + delete $Encode::Alias::Alias{$a}; + warn "Flushed alias cache for $a" if DEBUG; + } + } +} + +sub reinit { + $ENCODING_LOCALE = shift; + $ENCODING_LOCALE_FS = shift; + $ENCODING_CONSOLE_IN = $ENCODING_LOCALE; + $ENCODING_CONSOLE_OUT = $ENCODING_LOCALE; + _init(); + _flush_aliases(); +} + +sub decode_argv { + die if defined wantarray; + for (@ARGV) { + $_ = Encode::decode(locale => $_, @_); + } +} + +sub env { + my $k = Encode::encode(locale => shift); + my $old = $ENV{$k}; + if (@_) { + my $v = shift; + if (defined $v) { + $ENV{$k} = Encode::encode(locale => $v); + } + else { + delete $ENV{$k}; + } + } + return Encode::decode(locale => $old) if defined wantarray; +} + +1; + +__END__ + +=head1 NAME + +Encode::Locale - Determine the locale encoding + +=head1 SYNOPSIS + + use Encode::Locale; + use Encode; + + $string = decode(locale => $bytes); + $bytes = encode(locale => $string); + + if (-t) { + binmode(STDIN, ":encoding(console_in)"); + binmode(STDOUT, ":encoding(console_out)"); + binmode(STDERR, ":encoding(console_out)"); + } + + # Processing file names passed in as arguments + my $uni_filename = decode(locale => $ARGV[0]); + open(my $fh, "<", encode(locale_fs => $uni_filename)) + || die "Can't open '$uni_filename': $!"; + binmode($fh, ":encoding(locale)"); + ... + +=head1 DESCRIPTION + +In many applications it's wise to let Perl use Unicode for the strings it +processes. Most of the interfaces Perl has to the outside world are still byte +based. Programs therefore need to decode byte strings that enter the program +from the outside and encode them again on the way out. + +The POSIX locale system is used to specify both the language conventions +requested by the user and the preferred character set to consume and +output. The C module looks up the charset and encoding (called +a CODESET in the locale jargon) and arranges for the L module to know +this encoding under the name "locale". It means bytes obtained from the +environment can be converted to Unicode strings by calling C<< +Encode::encode(locale => $bytes) >> and converted back again with C<< +Encode::decode(locale => $string) >>. + +Where file systems interfaces pass file names in and out of the program we also +need care. The trend is for operating systems to use a fixed file encoding +that don't actually depend on the locale; and this module determines the most +appropriate encoding for file names. The L module will know this +encoding under the name "locale_fs". For traditional Unix systems this will +be an alias to the same encoding as "locale". + +For programs running in a terminal window (called a "Console" on some systems) +the "locale" encoding is usually a good choice for what to expect as input and +output. Some systems allows us to query the encoding set for the terminal and +C will do that if available and make these encodings known +under the C aliases "console_in" and "console_out". For systems where +we can't determine the terminal encoding these will be aliased as the same +encoding as "locale". The advice is to use "console_in" for input known to +come from the terminal and "console_out" for output to the terminal. + +In addition to arranging for various Encode aliases the following functions and +variables are provided: + +=over + +=item decode_argv( ) + +=item decode_argv( Encode::FB_CROAK ) + +This will decode the command line arguments to perl (the C<@ARGV> array) in-place. + +The function will by default replace characters that can't be decoded by +"\x{FFFD}", the Unicode replacement character. + +Any argument provided is passed as CHECK to underlying Encode::decode() call. +Pass the value C to have the decoding croak if not all the +command line arguments can be decoded. See L +for details on other options for CHECK. + +=item env( $uni_key ) + +=item env( $uni_key => $uni_value ) + +Interface to get/set environment variables. Returns the current value as a +Unicode string. The $uni_key and $uni_value arguments are expected to be +Unicode strings as well. Passing C as $uni_value deletes the +environment variable named $uni_key. + +The returned value will have the characters that can't be decoded replaced by +"\x{FFFD}", the Unicode replacement character. + +There is no interface to request alternative CHECK behavior as for +decode_argv(). If you need that you need to call encode/decode yourself. +For example: + + my $key = Encode::encode(locale => $uni_key, Encode::FB_CROAK); + my $uni_value = Encode::decode(locale => $ENV{$key}, Encode::FB_CROAK); + +=item reinit( ) + +=item reinit( $encoding ) + +Reinitialize the encodings from the locale. You want to call this function if +you changed anything in the environment that might influence the locale. + +This function will croak if the determined encoding isn't recognized by +the Encode module. + +With argument force $ENCODING_... variables to set to the given value. + +=item $ENCODING_LOCALE + +The encoding name determined to be suitable for the current locale. +L know this encoding as "locale". + +=item $ENCODING_LOCALE_FS + +The encoding name determined to be suitable for file system interfaces +involving file names. +L know this encoding as "locale_fs". + +=item $ENCODING_CONSOLE_IN + +=item $ENCODING_CONSOLE_OUT + +The encodings to be used for reading and writing output to the a console. +L know these encodings as "console_in" and "console_out". + +=back + +=head1 NOTES + +This table summarizes the mapping of the encodings set up +by the C module: + + Encode | | | + Alias | Windows | Mac OS X | POSIX + ------------+---------+--------------+------------ + locale | ANSI | nl_langinfo | nl_langinfo + locale_fs | ANSI | UTF-8 | nl_langinfo + console_in | OEM | nl_langinfo | nl_langinfo + console_out | OEM | nl_langinfo | nl_langinfo + +=head2 Windows + +Windows has basically 2 sets of APIs. A wide API (based on passing UTF-16 +strings) and a byte based API based a character set called ANSI. The +regular Perl interfaces to the OS currently only uses the ANSI APIs. +Unfortunately ANSI is not a single character set. + +The encoding that corresponds to ANSI varies between different editions of +Windows. For many western editions of Windows ANSI corresponds to CP-1252 +which is a character set similar to ISO-8859-1. Conceptually the ANSI +character set is a similar concept to the POSIX locale CODESET so this module +figures out what the ANSI code page is and make this available as +$ENCODING_LOCALE and the "locale" Encoding alias. + +Windows systems also operate with another byte based character set. +It's called the OEM code page. This is the encoding that the Console +takes as input and output. It's common for the OEM code page to +differ from the ANSI code page. + +=head2 Mac OS X + +On Mac OS X the file system encoding is always UTF-8 while the locale +can otherwise be set up as normal for POSIX systems. + +File names on Mac OS X will at the OS-level be converted to +NFD-form. A file created by passing a NFC-filename will come +in NFD-form from readdir(). See L for details +of NFD/NFC. + +Actually, Apple does not follow the Unicode NFD standard since not all +character ranges are decomposed. The claim is that this avoids problems with +round trip conversions from old Mac text encodings. See L for +details. + +=head2 POSIX (Linux and other Unixes) + +File systems might vary in what encoding is to be used for +filenames. Since this module has no way to actually figure out +what the is correct it goes with the best guess which is to +assume filenames are encoding according to the current locale. +Users are advised to always specify UTF-8 as the locale charset. + +=head1 SEE ALSO + +L, L, L + +=head1 AUTHOR + +Copyright 2010 Gisle Aas . + +This library is free software; you can redistribute it and/or +modify it under the same terms as Perl itself. + +=cut diff --git a/slic3r/linux/local-lib/lib/perl5/Errno.pm b/slic3r/linux/local-lib/lib/perl5/Errno.pm new file mode 100644 index 00000000..3abe6df0 --- /dev/null +++ b/slic3r/linux/local-lib/lib/perl5/Errno.pm @@ -0,0 +1,233 @@ +#line 1 "Errno.pm" +# -*- buffer-read-only: t -*- +# +# This file is auto-generated. ***ANY*** changes here will be lost +# + +package Errno; +require Exporter; +use strict; + +use Config; +"$Config{'archname'}-$Config{'osvers'}" eq +"x86_64-linux-thread-multi-3.16.0-4-amd64" or + die "Errno architecture (x86_64-linux-thread-multi-3.16.0-4-amd64) does not match executable architecture ($Config{'archname'}-$Config{'osvers'})"; + +our $VERSION = "1.25"; +$VERSION = eval $VERSION; +our @ISA = 'Exporter'; + +my %err; + +BEGIN { + %err = ( + EPERM => 1, + ENOENT => 2, + ESRCH => 3, + EINTR => 4, + EIO => 5, + ENXIO => 6, + E2BIG => 7, + ENOEXEC => 8, + EBADF => 9, + ECHILD => 10, + EAGAIN => 11, + EWOULDBLOCK => 11, + ENOMEM => 12, + EACCES => 13, + EFAULT => 14, + ENOTBLK => 15, + EBUSY => 16, + EEXIST => 17, + EXDEV => 18, + ENODEV => 19, + ENOTDIR => 20, + EISDIR => 21, + EINVAL => 22, + ENFILE => 23, + EMFILE => 24, + ENOTTY => 25, + ETXTBSY => 26, + EFBIG => 27, + ENOSPC => 28, + ESPIPE => 29, + EROFS => 30, + EMLINK => 31, + EPIPE => 32, + EDOM => 33, + ERANGE => 34, + EDEADLK => 35, + EDEADLOCK => 35, + ENAMETOOLONG => 36, + ENOLCK => 37, + ENOSYS => 38, + ENOTEMPTY => 39, + ELOOP => 40, + ENOMSG => 42, + EIDRM => 43, + ECHRNG => 44, + EL2NSYNC => 45, + EL3HLT => 46, + EL3RST => 47, + ELNRNG => 48, + EUNATCH => 49, + ENOCSI => 50, + EL2HLT => 51, + EBADE => 52, + EBADR => 53, + EXFULL => 54, + ENOANO => 55, + EBADRQC => 56, + EBADSLT => 57, + EBFONT => 59, + ENOSTR => 60, + ENODATA => 61, + ETIME => 62, + ENOSR => 63, + ENONET => 64, + ENOPKG => 65, + EREMOTE => 66, + ENOLINK => 67, + EADV => 68, + ESRMNT => 69, + ECOMM => 70, + EPROTO => 71, + EMULTIHOP => 72, + EDOTDOT => 73, + EBADMSG => 74, + EOVERFLOW => 75, + ENOTUNIQ => 76, + EBADFD => 77, + EREMCHG => 78, + ELIBACC => 79, + ELIBBAD => 80, + ELIBSCN => 81, + ELIBMAX => 82, + ELIBEXEC => 83, + EILSEQ => 84, + ERESTART => 85, + ESTRPIPE => 86, + EUSERS => 87, + ENOTSOCK => 88, + EDESTADDRREQ => 89, + EMSGSIZE => 90, + EPROTOTYPE => 91, + ENOPROTOOPT => 92, + EPROTONOSUPPORT => 93, + ESOCKTNOSUPPORT => 94, + ENOTSUP => 95, + EOPNOTSUPP => 95, + EPFNOSUPPORT => 96, + EAFNOSUPPORT => 97, + EADDRINUSE => 98, + EADDRNOTAVAIL => 99, + ENETDOWN => 100, + ENETUNREACH => 101, + ENETRESET => 102, + ECONNABORTED => 103, + ECONNRESET => 104, + ENOBUFS => 105, + EISCONN => 106, + ENOTCONN => 107, + ESHUTDOWN => 108, + ETOOMANYREFS => 109, + ETIMEDOUT => 110, + ECONNREFUSED => 111, + EHOSTDOWN => 112, + EHOSTUNREACH => 113, + EALREADY => 114, + EINPROGRESS => 115, + ESTALE => 116, + EUCLEAN => 117, + ENOTNAM => 118, + ENAVAIL => 119, + EISNAM => 120, + EREMOTEIO => 121, + EDQUOT => 122, + ENOMEDIUM => 123, + EMEDIUMTYPE => 124, + ECANCELED => 125, + ENOKEY => 126, + EKEYEXPIRED => 127, + EKEYREVOKED => 128, + EKEYREJECTED => 129, + EOWNERDEAD => 130, + ENOTRECOVERABLE => 131, + ERFKILL => 132, + EHWPOISON => 133, + ); + # Generate proxy constant subroutines for all the values. + # Well, almost all the values. Unfortunately we can't assume that at this + # point that our symbol table is empty, as code such as if the parser has + # seen code such as C, it will have created the + # typeglob. + # Doing this before defining @EXPORT_OK etc means that even if a platform is + # crazy enough to define EXPORT_OK as an error constant, everything will + # still work, because the parser will upgrade the PCS to a real typeglob. + # We rely on the subroutine definitions below to update the internal caches. + # Don't use %each, as we don't want a copy of the value. + foreach my $name (keys %err) { + if ($Errno::{$name}) { + # We expect this to be reached fairly rarely, so take an approach + # which uses the least compile time effort in the common case: + eval "sub $name() { $err{$name} }; 1" or die $@; + } else { + $Errno::{$name} = \$err{$name}; + } + } +} + +our @EXPORT_OK = keys %err; + +our %EXPORT_TAGS = ( + POSIX => [qw( + E2BIG EACCES EADDRINUSE EADDRNOTAVAIL EAFNOSUPPORT EAGAIN EALREADY + EBADF EBUSY ECHILD ECONNABORTED ECONNREFUSED ECONNRESET EDEADLK + EDESTADDRREQ EDOM EDQUOT EEXIST EFAULT EFBIG EHOSTDOWN EHOSTUNREACH + EINPROGRESS EINTR EINVAL EIO EISCONN EISDIR ELOOP EMFILE EMLINK + EMSGSIZE ENAMETOOLONG ENETDOWN ENETRESET ENETUNREACH ENFILE ENOBUFS + ENODEV ENOENT ENOEXEC ENOLCK ENOMEM ENOPROTOOPT ENOSPC ENOSYS ENOTBLK + ENOTCONN ENOTDIR ENOTEMPTY ENOTSOCK ENOTTY ENXIO EOPNOTSUPP EPERM + EPFNOSUPPORT EPIPE EPROTONOSUPPORT EPROTOTYPE ERANGE EREMOTE ERESTART + EROFS ESHUTDOWN ESOCKTNOSUPPORT ESPIPE ESRCH ESTALE ETIMEDOUT + ETOOMANYREFS ETXTBSY EUSERS EWOULDBLOCK EXDEV + )], +); + +sub TIEHASH { bless \%err } + +sub FETCH { + my (undef, $errname) = @_; + return "" unless exists $err{$errname}; + my $errno = $err{$errname}; + return $errno == $! ? $errno : 0; +} + +sub STORE { + require Carp; + Carp::confess("ERRNO hash is read only!"); +} + +*CLEAR = *DELETE = \*STORE; # Typeglob aliasing uses less space + +sub NEXTKEY { + each %err; +} + +sub FIRSTKEY { + my $s = scalar keys %err; # initialize iterator + each %err; +} + +sub EXISTS { + my (undef, $errname) = @_; + exists $err{$errname}; +} + +tie %!, __PACKAGE__; # Returns an object, objects are true. + +__END__ + +#line 286 + +# ex: set ro: diff --git a/slic3r/linux/local-lib/lib/perl5/Exporter.pm b/slic3r/linux/local-lib/lib/perl5/Exporter.pm new file mode 100644 index 00000000..1ee405ec --- /dev/null +++ b/slic3r/linux/local-lib/lib/perl5/Exporter.pm @@ -0,0 +1,103 @@ +#line 1 "Exporter.pm" +package Exporter; + +require 5.006; + +# Be lean. +#use strict; +#no strict 'refs'; + +our $Debug = 0; +our $ExportLevel = 0; +our $Verbose ||= 0; +our $VERSION = '5.72'; +our (%Cache); + +sub as_heavy { + require Exporter::Heavy; + # Unfortunately, this does not work if the caller is aliased as *name = \&foo + # Thus the need to create a lot of identical subroutines + my $c = (caller(1))[3]; + $c =~ s/.*:://; + \&{"Exporter::Heavy::heavy_$c"}; +} + +sub export { + goto &{as_heavy()}; +} + +sub import { + my $pkg = shift; + my $callpkg = caller($ExportLevel); + + if ($pkg eq "Exporter" and @_ and $_[0] eq "import") { + *{$callpkg."::import"} = \&import; + return; + } + + # We *need* to treat @{"$pkg\::EXPORT_FAIL"} since Carp uses it :-( + my $exports = \@{"$pkg\::EXPORT"}; + # But, avoid creating things if they don't exist, which saves a couple of + # hundred bytes per package processed. + my $fail = ${$pkg . '::'}{EXPORT_FAIL} && \@{"$pkg\::EXPORT_FAIL"}; + return export $pkg, $callpkg, @_ + if $Verbose or $Debug or $fail && @$fail > 1; + my $export_cache = ($Cache{$pkg} ||= {}); + my $args = @_ or @_ = @$exports; + + if ($args and not %$export_cache) { + s/^&//, $export_cache->{$_} = 1 + foreach (@$exports, @{"$pkg\::EXPORT_OK"}); + } + my $heavy; + # Try very hard not to use {} and hence have to enter scope on the foreach + # We bomb out of the loop with last as soon as heavy is set. + if ($args or $fail) { + ($heavy = (/\W/ or $args and not exists $export_cache->{$_} + or $fail and @$fail and $_ eq $fail->[0])) and last + foreach (@_); + } else { + ($heavy = /\W/) and last + foreach (@_); + } + return export $pkg, $callpkg, ($args ? @_ : ()) if $heavy; + local $SIG{__WARN__} = + sub {require Carp; &Carp::carp} if not $SIG{__WARN__}; + # shortcut for the common case of no type character + *{"$callpkg\::$_"} = \&{"$pkg\::$_"} foreach @_; +} + +# Default methods + +sub export_fail { + my $self = shift; + @_; +} + +# Unfortunately, caller(1)[3] "does not work" if the caller is aliased as +# *name = \&foo. Thus the need to create a lot of identical subroutines +# Otherwise we could have aliased them to export(). + +sub export_to_level { + goto &{as_heavy()}; +} + +sub export_tags { + goto &{as_heavy()}; +} + +sub export_ok_tags { + goto &{as_heavy()}; +} + +sub require_version { + goto &{as_heavy()}; +} + +1; +__END__ + +#line 589 + + + diff --git a/slic3r/linux/local-lib/lib/perl5/Exporter/Heavy.pm b/slic3r/linux/local-lib/lib/perl5/Exporter/Heavy.pm new file mode 100644 index 00000000..54be0cb5 --- /dev/null +++ b/slic3r/linux/local-lib/lib/perl5/Exporter/Heavy.pm @@ -0,0 +1,242 @@ +#line 1 "Exporter/Heavy.pm" +package Exporter::Heavy; + +use strict; +no strict 'refs'; + +# On one line so MakeMaker will see it. +require Exporter; our $VERSION = $Exporter::VERSION; + +#line 22 + +# +# We go to a lot of trouble not to 'require Carp' at file scope, +# because Carp requires Exporter, and something has to give. +# + +sub _rebuild_cache { + my ($pkg, $exports, $cache) = @_; + s/^&// foreach @$exports; + @{$cache}{@$exports} = (1) x @$exports; + my $ok = \@{"${pkg}::EXPORT_OK"}; + if (@$ok) { + s/^&// foreach @$ok; + @{$cache}{@$ok} = (1) x @$ok; + } +} + +sub heavy_export { + + # Save the old __WARN__ handler in case it was defined + my $oldwarn = $SIG{__WARN__}; + + # First make import warnings look like they're coming from the "use". + local $SIG{__WARN__} = sub { + # restore it back so proper stacking occurs + local $SIG{__WARN__} = $oldwarn; + my $text = shift; + if ($text =~ s/ at \S*Exporter\S*.pm line \d+.*\n//) { + require Carp; + local $Carp::CarpLevel = 1; # ignore package calling us too. + Carp::carp($text); + } + else { + warn $text; + } + }; + local $SIG{__DIE__} = sub { + require Carp; + local $Carp::CarpLevel = 1; # ignore package calling us too. + Carp::croak("$_[0]Illegal null symbol in \@${1}::EXPORT") + if $_[0] =~ /^Unable to create sub named "(.*?)::"/; + }; + + my($pkg, $callpkg, @imports) = @_; + my($type, $sym, $cache_is_current, $oops); + my($exports, $export_cache) = (\@{"${pkg}::EXPORT"}, + $Exporter::Cache{$pkg} ||= {}); + + if (@imports) { + if (!%$export_cache) { + _rebuild_cache ($pkg, $exports, $export_cache); + $cache_is_current = 1; + } + + if (grep m{^[/!:]}, @imports) { + my $tagsref = \%{"${pkg}::EXPORT_TAGS"}; + my $tagdata; + my %imports; + my($remove, $spec, @names, @allexports); + # negated first item implies starting with default set: + unshift @imports, ':DEFAULT' if $imports[0] =~ m/^!/; + foreach $spec (@imports){ + $remove = $spec =~ s/^!//; + + if ($spec =~ s/^://){ + if ($spec eq 'DEFAULT'){ + @names = @$exports; + } + elsif ($tagdata = $tagsref->{$spec}) { + @names = @$tagdata; + } + else { + warn qq["$spec" is not defined in %${pkg}::EXPORT_TAGS]; + ++$oops; + next; + } + } + elsif ($spec =~ m:^/(.*)/$:){ + my $patn = $1; + @allexports = keys %$export_cache unless @allexports; # only do keys once + @names = grep(/$patn/, @allexports); # not anchored by default + } + else { + @names = ($spec); # is a normal symbol name + } + + warn "Import ".($remove ? "del":"add").": @names " + if $Exporter::Verbose; + + if ($remove) { + foreach $sym (@names) { delete $imports{$sym} } + } + else { + @imports{@names} = (1) x @names; + } + } + @imports = keys %imports; + } + + my @carp; + foreach $sym (@imports) { + if (!$export_cache->{$sym}) { + if ($sym =~ m/^\d/) { + $pkg->VERSION($sym); # inherit from UNIVERSAL + # If the version number was the only thing specified + # then we should act as if nothing was specified: + if (@imports == 1) { + @imports = @$exports; + last; + } + # We need a way to emulate 'use Foo ()' but still + # allow an easy version check: "use Foo 1.23, ''"; + if (@imports == 2 and !$imports[1]) { + @imports = (); + last; + } + } elsif ($sym !~ s/^&// || !$export_cache->{$sym}) { + # Last chance - see if they've updated EXPORT_OK since we + # cached it. + + unless ($cache_is_current) { + %$export_cache = (); + _rebuild_cache ($pkg, $exports, $export_cache); + $cache_is_current = 1; + } + + if (!$export_cache->{$sym}) { + # accumulate the non-exports + push @carp, + qq["$sym" is not exported by the $pkg module\n]; + $oops++; + } + } + } + } + if ($oops) { + require Carp; + Carp::croak("@{carp}Can't continue after import errors"); + } + } + else { + @imports = @$exports; + } + + my($fail, $fail_cache) = (\@{"${pkg}::EXPORT_FAIL"}, + $Exporter::FailCache{$pkg} ||= {}); + + if (@$fail) { + if (!%$fail_cache) { + # Build cache of symbols. Optimise the lookup by adding + # barewords twice... both with and without a leading &. + # (Technique could be applied to $export_cache at cost of memory) + my @expanded = map { /^\w/ ? ($_, '&'.$_) : $_ } @$fail; + warn "${pkg}::EXPORT_FAIL cached: @expanded" if $Exporter::Verbose; + @{$fail_cache}{@expanded} = (1) x @expanded; + } + my @failed; + foreach $sym (@imports) { push(@failed, $sym) if $fail_cache->{$sym} } + if (@failed) { + @failed = $pkg->export_fail(@failed); + foreach $sym (@failed) { + require Carp; + Carp::carp(qq["$sym" is not implemented by the $pkg module ], + "on this architecture"); + } + if (@failed) { + require Carp; + Carp::croak("Can't continue after import errors"); + } + } + } + + warn "Importing into $callpkg from $pkg: ", + join(", ",sort @imports) if $Exporter::Verbose; + + foreach $sym (@imports) { + # shortcut for the common case of no type character + (*{"${callpkg}::$sym"} = \&{"${pkg}::$sym"}, next) + unless $sym =~ s/^(\W)//; + $type = $1; + no warnings 'once'; + *{"${callpkg}::$sym"} = + $type eq '&' ? \&{"${pkg}::$sym"} : + $type eq '$' ? \${"${pkg}::$sym"} : + $type eq '@' ? \@{"${pkg}::$sym"} : + $type eq '%' ? \%{"${pkg}::$sym"} : + $type eq '*' ? *{"${pkg}::$sym"} : + do { require Carp; Carp::croak("Can't export symbol: $type$sym") }; + } +} + +sub heavy_export_to_level +{ + my $pkg = shift; + my $level = shift; + (undef) = shift; # XXX redundant arg + my $callpkg = caller($level); + $pkg->export($callpkg, @_); +} + +# Utility functions + +sub _push_tags { + my($pkg, $var, $syms) = @_; + my @nontag = (); + my $export_tags = \%{"${pkg}::EXPORT_TAGS"}; + push(@{"${pkg}::$var"}, + map { $export_tags->{$_} ? @{$export_tags->{$_}} + : scalar(push(@nontag,$_),$_) } + (@$syms) ? @$syms : keys %$export_tags); + if (@nontag and $^W) { + # This may change to a die one day + require Carp; + Carp::carp(join(", ", @nontag)." are not tags of $pkg"); + } +} + +sub heavy_require_version { + my($self, $wanted) = @_; + my $pkg = ref $self || $self; + return ${pkg}->VERSION($wanted); +} + +sub heavy_export_tags { + _push_tags((caller)[0], "EXPORT", \@_); +} + +sub heavy_export_ok_tags { + _push_tags((caller)[0], "EXPORT_OK", \@_); +} + +1; diff --git a/slic3r/linux/local-lib/lib/perl5/Fcntl.pm b/slic3r/linux/local-lib/lib/perl5/Fcntl.pm new file mode 100644 index 00000000..36552257 --- /dev/null +++ b/slic3r/linux/local-lib/lib/perl5/Fcntl.pm @@ -0,0 +1,141 @@ +#line 1 "Fcntl.pm" +package Fcntl; + +#line 57 + +use strict; +our($VERSION, @ISA, @EXPORT, @EXPORT_OK, %EXPORT_TAGS); + +require Exporter; +require XSLoader; +@ISA = qw(Exporter); +$VERSION = '1.13'; + +XSLoader::load(); + +# Named groups of exports +%EXPORT_TAGS = ( + 'flock' => [qw(LOCK_SH LOCK_EX LOCK_NB LOCK_UN)], + 'Fcompat' => [qw(FAPPEND FASYNC FCREAT FDEFER FDSYNC FEXCL FLARGEFILE + FNDELAY FNONBLOCK FRSYNC FSYNC FTRUNC)], + 'seek' => [qw(SEEK_SET SEEK_CUR SEEK_END)], + 'mode' => [qw(S_ISUID S_ISGID S_ISVTX S_ISTXT + _S_IFMT S_IFREG S_IFDIR S_IFLNK + S_IFSOCK S_IFBLK S_IFCHR S_IFIFO S_IFWHT S_ENFMT + S_IRUSR S_IWUSR S_IXUSR S_IRWXU + S_IRGRP S_IWGRP S_IXGRP S_IRWXG + S_IROTH S_IWOTH S_IXOTH S_IRWXO + S_IREAD S_IWRITE S_IEXEC + S_ISREG S_ISDIR S_ISLNK S_ISSOCK + S_ISBLK S_ISCHR S_ISFIFO + S_ISWHT S_ISENFMT + S_IFMT S_IMODE + )], +); + +# Items to export into callers namespace by default +# (move infrequently used names to @EXPORT_OK below) +@EXPORT = + qw( + FD_CLOEXEC + F_ALLOCSP + F_ALLOCSP64 + F_COMPAT + F_DUP2FD + F_DUPFD + F_EXLCK + F_FREESP + F_FREESP64 + F_FSYNC + F_FSYNC64 + F_GETFD + F_GETFL + F_GETLK + F_GETLK64 + F_GETOWN + F_NODNY + F_POSIX + F_RDACC + F_RDDNY + F_RDLCK + F_RWACC + F_RWDNY + F_SETFD + F_SETFL + F_SETLK + F_SETLK64 + F_SETLKW + F_SETLKW64 + F_SETOWN + F_SHARE + F_SHLCK + F_UNLCK + F_UNSHARE + F_WRACC + F_WRDNY + F_WRLCK + O_ACCMODE + O_ALIAS + O_APPEND + O_ASYNC + O_BINARY + O_CREAT + O_DEFER + O_DIRECT + O_DIRECTORY + O_DSYNC + O_EXCL + O_EXLOCK + O_LARGEFILE + O_NDELAY + O_NOCTTY + O_NOFOLLOW + O_NOINHERIT + O_NONBLOCK + O_RANDOM + O_RAW + O_RDONLY + O_RDWR + O_RSRC + O_RSYNC + O_SEQUENTIAL + O_SHLOCK + O_SYNC + O_TEMPORARY + O_TEXT + O_TRUNC + O_WRONLY + ); + +# Other items we are prepared to export if requested +@EXPORT_OK = (qw( + DN_ACCESS + DN_ATTRIB + DN_CREATE + DN_DELETE + DN_MODIFY + DN_MULTISHOT + DN_RENAME + F_GETLEASE + F_GETPIPE_SZ + F_GETSIG + F_NOTIFY + F_SETLEASE + F_SETPIPE_SZ + F_SETSIG + LOCK_MAND + LOCK_READ + LOCK_RW + LOCK_WRITE + O_ALT_IO + O_EVTONLY + O_IGNORE_CTTY + O_NOATIME + O_NOLINK + O_NOSIGPIPE + O_NOTRANS + O_SYMLINK + O_TTY_INIT +), map {@{$_}} values %EXPORT_TAGS); + +1; diff --git a/slic3r/linux/local-lib/lib/perl5/File/Basename.pm b/slic3r/linux/local-lib/lib/perl5/File/Basename.pm new file mode 100644 index 00000000..cdbe9ec2 --- /dev/null +++ b/slic3r/linux/local-lib/lib/perl5/File/Basename.pm @@ -0,0 +1,238 @@ +#line 1 "File/Basename.pm" + +#line 36 + + +package File::Basename; + +# File::Basename is used during the Perl build, when the re extension may +# not be available, but we only actually need it if running under tainting. +BEGIN { + if (${^TAINT}) { + require re; + re->import('taint'); + } +} + + +use strict; +use 5.006; +use warnings; +our(@ISA, @EXPORT, $VERSION, $Fileparse_fstype, $Fileparse_igncase); +require Exporter; +@ISA = qw(Exporter); +@EXPORT = qw(fileparse fileparse_set_fstype basename dirname); +$VERSION = "2.85"; + +fileparse_set_fstype($^O); + + +#line 102 + + +sub fileparse { + my($fullname,@suffices) = @_; + + unless (defined $fullname) { + require Carp; + Carp::croak("fileparse(): need a valid pathname"); + } + + my $orig_type = ''; + my($type,$igncase) = ($Fileparse_fstype, $Fileparse_igncase); + + my($taint) = substr($fullname,0,0); # Is $fullname tainted? + + if ($type eq "VMS" and $fullname =~ m{/} ) { + # We're doing Unix emulation + $orig_type = $type; + $type = 'Unix'; + } + + my($dirpath, $basename); + + if (grep { $type eq $_ } qw(MSDOS DOS MSWin32 Epoc)) { + ($dirpath,$basename) = ($fullname =~ /^((?:.*[:\\\/])?)(.*)/s); + $dirpath .= '.\\' unless $dirpath =~ /[\\\/]\z/; + } + elsif ($type eq "OS2") { + ($dirpath,$basename) = ($fullname =~ m#^((?:.*[:\\/])?)(.*)#s); + $dirpath = './' unless $dirpath; # Can't be 0 + $dirpath .= '/' unless $dirpath =~ m#[\\/]\z#; + } + elsif ($type eq "MacOS") { + ($dirpath,$basename) = ($fullname =~ /^(.*:)?(.*)/s); + $dirpath = ':' unless $dirpath; + } + elsif ($type eq "AmigaOS") { + ($dirpath,$basename) = ($fullname =~ /(.*[:\/])?(.*)/s); + $dirpath = './' unless $dirpath; + } + elsif ($type eq 'VMS' ) { + ($dirpath,$basename) = ($fullname =~ /^(.*[:>\]])?(.*)/s); + $dirpath ||= ''; # should always be defined + } + else { # Default to Unix semantics. + ($dirpath,$basename) = ($fullname =~ m{^(.*/)?(.*)}s); + if ($orig_type eq 'VMS' and $fullname =~ m{^(/[^/]+/000000(/|$))(.*)}) { + # dev:[000000] is top of VMS tree, similar to Unix '/' + # so strip it off and treat the rest as "normal" + my $devspec = $1; + my $remainder = $3; + ($dirpath,$basename) = ($remainder =~ m{^(.*/)?(.*)}s); + $dirpath ||= ''; # should always be defined + $dirpath = $devspec.$dirpath; + } + $dirpath = './' unless $dirpath; + } + + + my $tail = ''; + my $suffix = ''; + if (@suffices) { + foreach $suffix (@suffices) { + my $pat = ($igncase ? '(?i)' : '') . "($suffix)\$"; + if ($basename =~ s/$pat//s) { + $taint .= substr($suffix,0,0); + $tail = $1 . $tail; + } + } + } + + # Ensure taint is propagated from the path to its pieces. + $tail .= $taint; + wantarray ? ($basename .= $taint, $dirpath .= $taint, $tail) + : ($basename .= $taint); +} + + + +#line 212 + + +sub basename { + my($path) = shift; + + # From BSD basename(1) + # The basename utility deletes any prefix ending with the last slash '/' + # character present in string (after first stripping trailing slashes) + _strip_trailing_sep($path); + + my($basename, $dirname, $suffix) = fileparse( $path, map("\Q$_\E",@_) ); + + # From BSD basename(1) + # The suffix is not stripped if it is identical to the remaining + # characters in string. + if( length $suffix and !length $basename ) { + $basename = $suffix; + } + + # Ensure that basename '/' == '/' + if( !length $basename ) { + $basename = $dirname; + } + + return $basename; +} + + + +#line 281 + + +sub dirname { + my $path = shift; + + my($type) = $Fileparse_fstype; + + if( $type eq 'VMS' and $path =~ m{/} ) { + # Parse as Unix + local($File::Basename::Fileparse_fstype) = ''; + return dirname($path); + } + + my($basename, $dirname) = fileparse($path); + + if ($type eq 'VMS') { + $dirname ||= $ENV{DEFAULT}; + } + elsif ($type eq 'MacOS') { + if( !length($basename) && $dirname !~ /^[^:]+:\z/) { + _strip_trailing_sep($dirname); + ($basename,$dirname) = fileparse $dirname; + } + $dirname .= ":" unless $dirname =~ /:\z/; + } + elsif (grep { $type eq $_ } qw(MSDOS DOS MSWin32 OS2)) { + _strip_trailing_sep($dirname); + unless( length($basename) ) { + ($basename,$dirname) = fileparse $dirname; + _strip_trailing_sep($dirname); + } + } + elsif ($type eq 'AmigaOS') { + if ( $dirname =~ /:\z/) { return $dirname } + chop $dirname; + $dirname =~ s{[^:/]+\z}{} unless length($basename); + } + else { + _strip_trailing_sep($dirname); + unless( length($basename) ) { + ($basename,$dirname) = fileparse $dirname; + _strip_trailing_sep($dirname); + } + } + + $dirname; +} + + +# Strip the trailing path separator. +sub _strip_trailing_sep { + my $type = $Fileparse_fstype; + + if ($type eq 'MacOS') { + $_[0] =~ s/([^:]):\z/$1/s; + } + elsif (grep { $type eq $_ } qw(MSDOS DOS MSWin32 OS2)) { + $_[0] =~ s/([^:])[\\\/]*\z/$1/; + } + else { + $_[0] =~ s{(.)/*\z}{$1}s; + } +} + + +#line 369 + + +BEGIN { + +my @Ignore_Case = qw(MacOS VMS AmigaOS OS2 RISCOS MSWin32 MSDOS DOS Epoc); +my @Types = (@Ignore_Case, qw(Unix)); + +sub fileparse_set_fstype { + my $old = $Fileparse_fstype; + + if (@_) { + my $new_type = shift; + + $Fileparse_fstype = 'Unix'; # default + foreach my $type (@Types) { + $Fileparse_fstype = $type if $new_type =~ /^$type/i; + } + + $Fileparse_igncase = + (grep $Fileparse_fstype eq $_, @Ignore_Case) ? 1 : 0; + } + + return $old; +} + +} + + +1; + + +#line 403 \ No newline at end of file diff --git a/slic3r/linux/local-lib/lib/perl5/File/Glob.pm b/slic3r/linux/local-lib/lib/perl5/File/Glob.pm new file mode 100644 index 00000000..e9a3bdbf --- /dev/null +++ b/slic3r/linux/local-lib/lib/perl5/File/Glob.pm @@ -0,0 +1,86 @@ +#line 1 "File/Glob.pm" +package File::Glob; + +use strict; +our($VERSION, @ISA, @EXPORT_OK, @EXPORT_FAIL, %EXPORT_TAGS, $DEFAULT_FLAGS); + +require XSLoader; + +@ISA = qw(Exporter); + +# NOTE: The glob() export is only here for compatibility with 5.6.0. +# csh_glob() should not be used directly, unless you know what you're doing. + +%EXPORT_TAGS = ( + 'glob' => [ qw( + GLOB_ABEND + GLOB_ALPHASORT + GLOB_ALTDIRFUNC + GLOB_BRACE + GLOB_CSH + GLOB_ERR + GLOB_ERROR + GLOB_LIMIT + GLOB_MARK + GLOB_NOCASE + GLOB_NOCHECK + GLOB_NOMAGIC + GLOB_NOSORT + GLOB_NOSPACE + GLOB_QUOTE + GLOB_TILDE + bsd_glob + glob + ) ], +); +$EXPORT_TAGS{bsd_glob} = [@{$EXPORT_TAGS{glob}}]; +pop @{$EXPORT_TAGS{bsd_glob}}; # no "glob" + +@EXPORT_OK = (@{$EXPORT_TAGS{'glob'}}, 'csh_glob'); + +$VERSION = '1.26'; + +sub import { + require Exporter; + local $Exporter::ExportLevel = $Exporter::ExportLevel + 1; + Exporter::import(grep { + my $passthrough; + if ($_ eq ':case') { + $DEFAULT_FLAGS &= ~GLOB_NOCASE() + } + elsif ($_ eq ':nocase') { + $DEFAULT_FLAGS |= GLOB_NOCASE(); + } + elsif ($_ eq ':globally') { + no warnings 'redefine'; + *CORE::GLOBAL::glob = \&File::Glob::csh_glob; + } + elsif ($_ eq ':bsd_glob') { + no strict; *{caller."::glob"} = \&bsd_glob_override; + $passthrough = 1; + } + else { + $passthrough = 1; + } + $passthrough; + } @_); +} + +XSLoader::load(); + +$DEFAULT_FLAGS = GLOB_CSH(); +if ($^O =~ /^(?:MSWin32|VMS|os2|dos|riscos)$/) { + $DEFAULT_FLAGS |= GLOB_NOCASE(); +} + +# File::Glob::glob() is deprecated because its prototype is different from +# CORE::glob() (use bsd_glob() instead) +sub glob { + splice @_, 1; # no flags + goto &bsd_glob; +} + +1; +__END__ + +#line 410 diff --git a/slic3r/linux/local-lib/lib/perl5/File/Listing.pm b/slic3r/linux/local-lib/lib/perl5/File/Listing.pm new file mode 100644 index 00000000..c8d72a71 --- /dev/null +++ b/slic3r/linux/local-lib/lib/perl5/File/Listing.pm @@ -0,0 +1,435 @@ +package File::Listing; + +sub Version { $VERSION; } +$VERSION = "6.04"; + +require Exporter; +@ISA = qw(Exporter); +@EXPORT = qw(parse_dir); + +use strict; + +use Carp (); +use HTTP::Date qw(str2time); + + + +sub parse_dir ($;$$$) +{ + my($dir, $tz, $fstype, $error) = @_; + + $fstype ||= 'unix'; + $fstype = "File::Listing::" . lc $fstype; + + my @args = $_[0]; + push(@args, $tz) if(@_ >= 2); + push(@args, $error) if(@_ >= 4); + + $fstype->parse(@args); +} + + +sub line { Carp::croak("Not implemented yet"); } +sub init { } # Dummy sub + + +sub file_mode ($) +{ + Carp::croak("Input to file_mode() must be a 10 character string.") + unless length($_[0]) == 10; + + # This routine was originally borrowed from Graham Barr's + # Net::FTP package. + + local $_ = shift; + my $mode = 0; + my($type); + + s/^(.)// and $type = $1; + + # When the set-group-ID bit (file mode bit 02000) is set, and the group + # execution bit (file mode bit 00020) is unset, and it is a regular file, + # some implementations of `ls' use the letter `S', others use `l' or `L'. + # Convert this `S'. + + s/[Ll](...)$/S$1/; + + while (/(.)/g) { + $mode <<= 1; + $mode |= 1 if $1 ne "-" && + $1 ne 'S' && + $1 ne 'T'; + } + + $mode |= 0004000 if /^..s....../i; + $mode |= 0002000 if /^.....s.../i; + $mode |= 0001000 if /^........t/i; + + # De facto standard definitions. From 'stat.h' on Solaris 9. + + $type eq "p" and $mode |= 0010000 or # fifo + $type eq "c" and $mode |= 0020000 or # character special + $type eq "d" and $mode |= 0040000 or # directory + $type eq "b" and $mode |= 0060000 or # block special + $type eq "-" and $mode |= 0100000 or # regular + $type eq "l" and $mode |= 0120000 or # symbolic link + $type eq "s" and $mode |= 0140000 or # socket + $type eq "D" and $mode |= 0150000 or # door + Carp::croak("Unknown file type: $type"); + + $mode; +} + + +sub parse +{ + my($pkg, $dir, $tz, $error) = @_; + + # First let's try to determine what kind of dir parameter we have + # received. We allow both listings, reference to arrays and + # file handles to read from. + + if (ref($dir) eq 'ARRAY') { + # Already splitted up + } + elsif (ref($dir) eq 'GLOB') { + # A file handle + } + elsif (ref($dir)) { + Carp::croak("Illegal argument to parse_dir()"); + } + elsif ($dir =~ /^\*\w+(::\w+)+$/) { + # This scalar looks like a file handle, so we assume it is + } + else { + # A normal scalar listing + $dir = [ split(/\n/, $dir) ]; + } + + $pkg->init(); + + my @files = (); + if (ref($dir) eq 'ARRAY') { + for (@$dir) { + push(@files, $pkg->line($_, $tz, $error)); + } + } + else { + local($_); + while (<$dir>) { + chomp; + push(@files, $pkg->line($_, $tz, $error)); + } + } + wantarray ? @files : \@files; +} + + + +package File::Listing::unix; + +use HTTP::Date qw(str2time); + +# A place to remember current directory from last line parsed. +use vars qw($curdir @ISA); + +@ISA = qw(File::Listing); + + + +sub init +{ + $curdir = ''; +} + + +sub line +{ + shift; # package name + local($_) = shift; + my($tz, $error) = @_; + + s/\015//g; + #study; + + my ($kind, $size, $date, $name); + if (($kind, $size, $date, $name) = + /^([\-FlrwxsStTdD]{10}) # Type and permission bits + .* # Graps + \D(\d+) # File size + \s+ # Some space + (\w{3}\s+\d+\s+(?:\d{1,2}:\d{2}|\d{4})|\d{4}-\d{2}-\d{2}\s+\d{2}:\d{2}) # Date + \s+ # Some more space + (.*)$ # File name + /x ) + + { + return if $name eq '.' || $name eq '..'; + $name = "$curdir/$name" if length $curdir; + my $type = '?'; + if ($kind =~ /^l/ && $name =~ /(.*) -> (.*)/ ) { + $name = $1; + $type = "l $2"; + } + elsif ($kind =~ /^[\-F]/) { # (hopefully) a regular file + $type = 'f'; + } + elsif ($kind =~ /^[dD]/) { + $type = 'd'; + $size = undef; # Don't believe the reported size + } + return [$name, $type, $size, str2time($date, $tz), + File::Listing::file_mode($kind)]; + + } + elsif (/^(.+):$/ && !/^[dcbsp].*\s.*\s.*:$/ ) { + my $dir = $1; + return () if $dir eq '.'; + $curdir = $dir; + return (); + } + elsif (/^[Tt]otal\s+(\d+)$/ || /^\s*$/) { + return (); + } + elsif (/not found/ || # OSF1, HPUX, and SunOS return + # "$file not found" + /No such file/ || # IRIX returns + # "UX:ls: ERROR: Cannot access $file: No such file or directory" + # Solaris returns + # "$file: No such file or directory" + /cannot find/ # Windows NT returns + # "The system cannot find the path specified." + ) { + return () unless defined $error; + &$error($_) if ref($error) eq 'CODE'; + warn "Error: $_\n" if $error eq 'warn'; + return (); + } + elsif ($_ eq '') { # AIX, and Linux return nothing + return () unless defined $error; + &$error("No such file or directory") if ref($error) eq 'CODE'; + warn "Warning: No such file or directory\n" if $error eq 'warn'; + return (); + } + else { + # parse failed, check if the dosftp parse understands it + File::Listing::dosftp->init(); + return(File::Listing::dosftp->line($_,$tz,$error)); + } + +} + + + +package File::Listing::dosftp; + +use HTTP::Date qw(str2time); + +# A place to remember current directory from last line parsed. +use vars qw($curdir @ISA); + +@ISA = qw(File::Listing); + + + +sub init +{ + $curdir = ''; +} + + +sub line +{ + shift; # package name + local($_) = shift; + my($tz, $error) = @_; + + s/\015//g; + + my ($date, $size_or_dir, $name, $size); + + # 02-05-96 10:48AM 1415 src.slf + # 09-10-96 09:18AM sl_util + if (($date, $size_or_dir, $name) = + /^(\d\d-\d\d-\d\d\s+\d\d:\d\d\wM) # Date and time info + \s+ # Some space + (<\w{3}>|\d+) # Dir or Size + \s+ # Some more space + (.+)$ # File name + /x ) + { + return if $name eq '.' || $name eq '..'; + $name = "$curdir/$name" if length $curdir; + my $type = '?'; + if ($size_or_dir eq '') { + $type = "d"; + $size = ""; # directories have no size in the pc listing + } + else { + $type = 'f'; + $size = $size_or_dir; + } + return [$name, $type, $size, str2time($date, $tz), undef]; + } + else { + return () unless defined $error; + &$error($_) if ref($error) eq 'CODE'; + warn "Can't parse: $_\n" if $error eq 'warn'; + return (); + } + +} + + + +package File::Listing::vms; +@File::Listing::vms::ISA = qw(File::Listing); + +package File::Listing::netware; +@File::Listing::netware::ISA = qw(File::Listing); + + + +package File::Listing::apache; + +use vars qw(@ISA); + +@ISA = qw(File::Listing); + + +sub init { } + + +sub line { + shift; # package name + local($_) = shift; + my($tz, $error) = @_; # ignored for now... + + s!]*>! !g; # clean away various table stuff + if (m!.*.*?(\d+)-([a-zA-Z]+|\d+)-(\d+)\s+(\d+):(\d+)\s+(?:([\d\.]+[kMG]?|-))!i) { + my($filename, $filesize) = ($1, $7); + my($d,$m,$y, $H,$M) = ($2,$3,$4,$5,$6); + if ($m =~ /^\d+$/) { + ($d,$y) = ($y,$d) # iso date + } + else { + $m = _monthabbrev_number($m); + } + + $filesize = 0 if $filesize eq '-'; + if ($filesize =~ s/k$//i) { + $filesize *= 1024; + } + elsif ($filesize =~ s/M$//) { + $filesize *= 1024*1024; + } + elsif ($filesize =~ s/G$//) { + $filesize *= 1024*1024*1024; + } + $filesize = int $filesize; + + require Time::Local; + my $filetime = Time::Local::timelocal(0,$M,$H,$d,$m-1,_guess_year($y)-1900); + my $filetype = ($filename =~ s|/$|| ? "d" : "f"); + return [$filename, $filetype, $filesize, $filetime, undef]; + } + + return (); +} + + +sub _guess_year { + my $y = shift; + if ($y >= 90) { + $y = 1900+$y; + } + elsif ($y < 100) { + $y = 2000+$y; + } + $y; +} + + +sub _monthabbrev_number { + my $mon = shift; + +{'Jan' => 1, + 'Feb' => 2, + 'Mar' => 3, + 'Apr' => 4, + 'May' => 5, + 'Jun' => 6, + 'Jul' => 7, + 'Aug' => 8, + 'Sep' => 9, + 'Oct' => 10, + 'Nov' => 11, + 'Dec' => 12, + }->{$mon}; +} + + +1; + +__END__ + +=head1 NAME + +File::Listing - parse directory listing + +=head1 SYNOPSIS + + use File::Listing qw(parse_dir); + $ENV{LANG} = "C"; # dates in non-English locales not supported + for (parse_dir(`ls -l`)) { + ($name, $type, $size, $mtime, $mode) = @$_; + next if $type ne 'f'; # plain file + #... + } + + # directory listing can also be read from a file + open(LISTING, "zcat ls-lR.gz|"); + $dir = parse_dir(\*LISTING, '+0000'); + +=head1 DESCRIPTION + +This module exports a single function called parse_dir(), which can be +used to parse directory listings. + +The first parameter to parse_dir() is the directory listing to parse. +It can be a scalar, a reference to an array of directory lines or a +glob representing a filehandle to read the directory listing from. + +The second parameter is the time zone to use when parsing time stamps +in the listing. If this value is undefined, then the local time zone is +assumed. + +The third parameter is the type of listing to assume. Currently +supported formats are 'unix', 'apache' and 'dosftp'. The default +value is 'unix'. Ideally, the listing type should be determined +automatically. + +The fourth parameter specifies how unparseable lines should be treated. +Values can be 'ignore', 'warn' or a code reference. Warn means that +the perl warn() function will be called. If a code reference is +passed, then this routine will be called and the return value from it +will be incorporated in the listing. The default is 'ignore'. + +Only the first parameter is mandatory. + +The return value from parse_dir() is a list of directory entries. In +a scalar context the return value is a reference to the list. The +directory entries are represented by an array consisting of [ +$filename, $filetype, $filesize, $filetime, $filemode ]. The +$filetype value is one of the letters 'f', 'd', 'l' or '?'. The +$filetime value is the seconds since Jan 1, 1970. The +$filemode is a bitmask like the mode returned by stat(). + +=head1 COPYRIGHT + +Copyright 1996-2010, Gisle Aas + +Based on lsparse.pl (from Lee McLoughlin's ftp mirror package) and +Net::FTP's parse_dir (Graham Barr). + +This library is free software; you can redistribute it and/or +modify it under the same terms as Perl itself. diff --git a/slic3r/linux/local-lib/lib/perl5/File/Spec.pm b/slic3r/linux/local-lib/lib/perl5/File/Spec.pm new file mode 100644 index 00000000..b11fb34f --- /dev/null +++ b/slic3r/linux/local-lib/lib/perl5/File/Spec.pm @@ -0,0 +1,29 @@ +#line 1 "File/Spec.pm" +package File::Spec; + +use strict; + +our $VERSION = '3.74'; +$VERSION =~ tr/_//d; + +my %module = ( + MSWin32 => 'Win32', + os2 => 'OS2', + VMS => 'VMS', + NetWare => 'Win32', # Yes, File::Spec::Win32 works on NetWare. + symbian => 'Win32', # Yes, File::Spec::Win32 works on symbian. + dos => 'OS2', # Yes, File::Spec::OS2 works on DJGPP. + cygwin => 'Cygwin', + amigaos => 'AmigaOS'); + + +my $module = $module{$^O} || 'Unix'; + +require "File/Spec/$module.pm"; +our @ISA = ("File::Spec::$module"); + +1; + +__END__ + +#line 342 diff --git a/slic3r/linux/local-lib/lib/perl5/File/Spec/Unix.pm b/slic3r/linux/local-lib/lib/perl5/File/Spec/Unix.pm new file mode 100644 index 00000000..15cd59ea --- /dev/null +++ b/slic3r/linux/local-lib/lib/perl5/File/Spec/Unix.pm @@ -0,0 +1,362 @@ +#line 1 "File/Spec/Unix.pm" +package File::Spec::Unix; + +use strict; +use Cwd (); + +our $VERSION = '3.74'; +$VERSION =~ tr/_//d; + +#line 42 + +sub _pp_canonpath { + my ($self,$path) = @_; + return unless defined $path; + + # Handle POSIX-style node names beginning with double slash (qnx, nto) + # (POSIX says: "a pathname that begins with two successive slashes + # may be interpreted in an implementation-defined manner, although + # more than two leading slashes shall be treated as a single slash.") + my $node = ''; + my $double_slashes_special = $^O eq 'qnx' || $^O eq 'nto'; + + + if ( $double_slashes_special + && ( $path =~ s{^(//[^/]+)/?\z}{}s || $path =~ s{^(//[^/]+)/}{/}s ) ) { + $node = $1; + } + # This used to be + # $path =~ s|/+|/|g unless ($^O eq 'cygwin'); + # but that made tests 29, 30, 35, 46, and 213 (as of #13272) to fail + # (Mainly because trailing "" directories didn't get stripped). + # Why would cygwin avoid collapsing multiple slashes into one? --jhi + $path =~ s|/{2,}|/|g; # xx////xx -> xx/xx + $path =~ s{(?:/\.)+(?:/|\z)}{/}g; # xx/././xx -> xx/xx + $path =~ s|^(?:\./)+||s unless $path eq "./"; # ./xx -> xx + $path =~ s|^/(?:\.\./)+|/|; # /../../xx -> xx + $path =~ s|^/\.\.$|/|; # /.. -> / + $path =~ s|/\z|| unless $path eq "/"; # xx/ -> xx + return "$node$path"; +} +*canonpath = \&_pp_canonpath unless defined &canonpath; + +#line 83 + +sub _pp_catdir { + my $self = shift; + + $self->canonpath(join('/', @_, '')); # '' because need a trailing '/' +} +*catdir = \&_pp_catdir unless defined &catdir; + +#line 97 + +sub _pp_catfile { + my $self = shift; + my $file = $self->canonpath(pop @_); + return $file unless @_; + my $dir = $self->catdir(@_); + $dir .= "/" unless substr($dir,-1) eq "/"; + return $dir.$file; +} +*catfile = \&_pp_catfile unless defined &catfile; + +#line 113 + +sub curdir { '.' } +use constant _fn_curdir => "."; + +#line 122 + +sub devnull { '/dev/null' } +use constant _fn_devnull => "/dev/null"; + +#line 131 + +sub rootdir { '/' } +use constant _fn_rootdir => "/"; + +#line 148 + +my ($tmpdir, %tmpenv); +# Cache and return the calculated tmpdir, recording which env vars +# determined it. +sub _cache_tmpdir { + @tmpenv{@_[2..$#_]} = @ENV{@_[2..$#_]}; + return $tmpdir = $_[1]; +} +# Retrieve the cached tmpdir, checking first whether relevant env vars have +# changed and invalidated the cache. +sub _cached_tmpdir { + shift; + local $^W; + return if grep $ENV{$_} ne $tmpenv{$_}, @_; + return $tmpdir; +} +sub _tmpdir { + my $self = shift; + my @dirlist = @_; + my $taint = do { no strict 'refs'; ${"\cTAINT"} }; + if ($taint) { # Check for taint mode on perl >= 5.8.0 + require Scalar::Util; + @dirlist = grep { ! Scalar::Util::tainted($_) } @dirlist; + } + elsif ($] < 5.007) { # No ${^TAINT} before 5.8 + @dirlist = grep { !defined($_) || eval { eval('1'.substr $_,0,0) } } + @dirlist; + } + + foreach (@dirlist) { + next unless defined && -d && -w _; + $tmpdir = $_; + last; + } + $tmpdir = $self->curdir unless defined $tmpdir; + $tmpdir = defined $tmpdir && $self->canonpath($tmpdir); + if ( !$self->file_name_is_absolute($tmpdir) ) { + # See [perl #120593] for the full details + # If possible, return a full path, rather than '.' or 'lib', but + # jump through some hoops to avoid returning a tainted value. + ($tmpdir) = grep { + $taint ? ! Scalar::Util::tainted($_) : + $] < 5.007 ? eval { eval('1'.substr $_,0,0) } : 1 + } $self->rel2abs($tmpdir), $tmpdir; + } + return $tmpdir; +} + +sub tmpdir { + my $cached = $_[0]->_cached_tmpdir('TMPDIR'); + return $cached if defined $cached; + $_[0]->_cache_tmpdir($_[0]->_tmpdir( $ENV{TMPDIR}, "/tmp" ), 'TMPDIR'); +} + +#line 207 + +sub updir { '..' } +use constant _fn_updir => ".."; + +#line 217 + +sub no_upwards { + my $self = shift; + return grep(!/^\.{1,2}\z/s, @_); +} + +#line 229 + +sub case_tolerant { 0 } +use constant _fn_case_tolerant => 0; + +#line 242 + +sub file_name_is_absolute { + my ($self,$file) = @_; + return scalar($file =~ m:^/:s); +} + +#line 253 + +sub path { + return () unless exists $ENV{PATH}; + my @path = split(':', $ENV{PATH}); + foreach (@path) { $_ = '.' if $_ eq '' } + return @path; +} + +#line 266 + +sub join { + my $self = shift; + return $self->catfile(@_); +} + +#line 292 + +sub splitpath { + my ($self,$path, $nofile) = @_; + + my ($volume,$directory,$file) = ('','',''); + + if ( $nofile ) { + $directory = $path; + } + else { + $path =~ m|^ ( (?: .* / (?: \.\.?\z )? )? ) ([^/]*) |xs; + $directory = $1; + $file = $2; + } + + return ($volume,$directory,$file); +} + + +#line 334 + +sub splitdir { + return split m|/|, $_[1], -1; # Preserve trailing fields +} + + +#line 348 + +sub catpath { + my ($self,$volume,$directory,$file) = @_; + + if ( $directory ne '' && + $file ne '' && + substr( $directory, -1 ) ne '/' && + substr( $file, 0, 1 ) ne '/' + ) { + $directory .= "/$file" ; + } + else { + $directory .= $file ; + } + + return $directory ; +} + +#line 395 + +sub abs2rel { + my($self,$path,$base) = @_; + $base = Cwd::getcwd() unless defined $base and length $base; + + ($path, $base) = map $self->canonpath($_), $path, $base; + + my $path_directories; + my $base_directories; + + if (grep $self->file_name_is_absolute($_), $path, $base) { + ($path, $base) = map $self->rel2abs($_), $path, $base; + + my ($path_volume) = $self->splitpath($path, 1); + my ($base_volume) = $self->splitpath($base, 1); + + # Can't relativize across volumes + return $path unless $path_volume eq $base_volume; + + $path_directories = ($self->splitpath($path, 1))[1]; + $base_directories = ($self->splitpath($base, 1))[1]; + + # For UNC paths, the user might give a volume like //foo/bar that + # strictly speaking has no directory portion. Treat it as if it + # had the root directory for that volume. + if (!length($base_directories) and $self->file_name_is_absolute($base)) { + $base_directories = $self->rootdir; + } + } + else { + my $wd= ($self->splitpath(Cwd::getcwd(), 1))[1]; + $path_directories = $self->catdir($wd, $path); + $base_directories = $self->catdir($wd, $base); + } + + # Now, remove all leading components that are the same + my @pathchunks = $self->splitdir( $path_directories ); + my @basechunks = $self->splitdir( $base_directories ); + + if ($base_directories eq $self->rootdir) { + return $self->curdir if $path_directories eq $self->rootdir; + shift @pathchunks; + return $self->canonpath( $self->catpath('', $self->catdir( @pathchunks ), '') ); + } + + my @common; + while (@pathchunks && @basechunks && $self->_same($pathchunks[0], $basechunks[0])) { + push @common, shift @pathchunks ; + shift @basechunks ; + } + return $self->curdir unless @pathchunks || @basechunks; + + # @basechunks now contains the directories the resulting relative path + # must ascend out of before it can descend to $path_directory. If there + # are updir components, we must descend into the corresponding directories + # (this only works if they are no symlinks). + my @reverse_base; + while( defined(my $dir= shift @basechunks) ) { + if( $dir ne $self->updir ) { + unshift @reverse_base, $self->updir; + push @common, $dir; + } + elsif( @common ) { + if( @reverse_base && $reverse_base[0] eq $self->updir ) { + shift @reverse_base; + pop @common; + } + else { + unshift @reverse_base, pop @common; + } + } + } + my $result_dirs = $self->catdir( @reverse_base, @pathchunks ); + return $self->canonpath( $self->catpath('', $result_dirs, '') ); +} + +sub _same { + $_[1] eq $_[2]; +} + +#line 500 + +sub rel2abs { + my ($self,$path,$base ) = @_; + + # Clean up $path + if ( ! $self->file_name_is_absolute( $path ) ) { + # Figure out the effective $base and clean it up. + if ( !defined( $base ) || $base eq '' ) { + $base = Cwd::getcwd(); + } + elsif ( ! $self->file_name_is_absolute( $base ) ) { + $base = $self->rel2abs( $base ) ; + } + else { + $base = $self->canonpath( $base ) ; + } + + # Glom them together + $path = $self->catdir( $base, $path ) ; + } + + return $self->canonpath( $path ) ; +} + +#line 540 + +# Internal method to reduce xx\..\yy -> yy +sub _collapse { + my($fs, $path) = @_; + + my $updir = $fs->updir; + my $curdir = $fs->curdir; + + my($vol, $dirs, $file) = $fs->splitpath($path); + my @dirs = $fs->splitdir($dirs); + pop @dirs if @dirs && $dirs[-1] eq ''; + + my @collapsed; + foreach my $dir (@dirs) { + if( $dir eq $updir and # if we have an updir + @collapsed and # and something to collapse + length $collapsed[-1] and # and its not the rootdir + $collapsed[-1] ne $updir and # nor another updir + $collapsed[-1] ne $curdir # nor the curdir + ) + { # then + pop @collapsed; # collapse + } + else { # else + push @collapsed, $dir; # just hang onto it + } + } + + return $fs->catpath($vol, + $fs->catdir(@collapsed), + $file + ); +} + + +1; diff --git a/slic3r/linux/local-lib/lib/perl5/File/stat.pm b/slic3r/linux/local-lib/lib/perl5/File/stat.pm new file mode 100644 index 00000000..dc318a3e --- /dev/null +++ b/slic3r/linux/local-lib/lib/perl5/File/stat.pm @@ -0,0 +1,223 @@ +#line 1 "File/stat.pm" +package File::stat; +use 5.006; + +use strict; +use warnings; +use warnings::register; +use Carp; + +BEGIN { *warnif = \&warnings::warnif } + +our(@EXPORT, @EXPORT_OK, %EXPORT_TAGS); + +our $VERSION = '1.07'; + +my @fields; +BEGIN { + use Exporter (); + @EXPORT = qw(stat lstat); + @fields = qw( $st_dev $st_ino $st_mode + $st_nlink $st_uid $st_gid + $st_rdev $st_size + $st_atime $st_mtime $st_ctime + $st_blksize $st_blocks + ); + @EXPORT_OK = ( @fields, "stat_cando" ); + %EXPORT_TAGS = ( FIELDS => [ @fields, @EXPORT ] ); +} +use vars @fields; + +use Fcntl qw(S_IRUSR S_IWUSR S_IXUSR); + +BEGIN { + # These constants will croak on use if the platform doesn't define + # them. It's important to avoid inflicting that on the user. + no strict 'refs'; + for (qw(suid sgid svtx)) { + my $val = eval { &{"Fcntl::S_I\U$_"} }; + *{"_$_"} = defined $val ? sub { $_[0] & $val ? 1 : "" } : sub { "" }; + } + for (qw(SOCK CHR BLK REG DIR LNK)) { + *{"S_IS$_"} = defined eval { &{"Fcntl::S_IF$_"} } + ? \&{"Fcntl::S_IS$_"} : sub { "" }; + } + # FIFO flag and macro don't quite follow the S_IF/S_IS pattern above + # RT #111638 + *{"S_ISFIFO"} = defined &Fcntl::S_IFIFO + ? \&Fcntl::S_ISFIFO : sub { "" }; +} + +# from doio.c +sub _ingroup { + my ($gid, $eff) = @_; + + # I am assuming that since VMS doesn't have getgroups(2), $) will + # always only contain a single entry. + $^O eq "VMS" and return $_[0] == $); + + my ($egid, @supp) = split " ", $); + my ($rgid) = split " ", $(; + + $gid == ($eff ? $egid : $rgid) and return 1; + grep $gid == $_, @supp and return 1; + + return ""; +} + +# VMS uses the Unix version of the routine, even though this is very +# suboptimal. VMS has a permissions structure that doesn't really fit +# into struct stat, and unlike on Win32 the normal -X operators respect +# that, but unfortunately by the time we get here we've already lost the +# information we need. It looks to me as though if we were to preserve +# the st_devnam entry of vmsish.h's fake struct stat (which actually +# holds the filename) it might be possible to do this right, but both +# getting that value out of the struct (perl's stat doesn't return it) +# and interpreting it later would require this module to have an XS +# component (at which point we might as well just call Perl_cando and +# have done with it). + +if (grep $^O eq $_, qw/os2 MSWin32 dos/) { + + # from doio.c + *cando = sub { ($_[0][2] & $_[1]) ? 1 : "" }; +} +else { + + # from doio.c + *cando = sub { + my ($s, $mode, $eff) = @_; + my $uid = $eff ? $> : $<; + my ($stmode, $stuid, $stgid) = @$s[2,4,5]; + + # This code basically assumes that the rwx bits of the mode are + # the 0777 bits, but so does Perl_cando. + + if ($uid == 0 && $^O ne "VMS") { + # If we're root on unix + # not testing for executable status => all file tests are true + return 1 if !($mode & 0111); + # testing for executable status => + # for a file, any x bit will do + # for a directory, always true + return 1 if $stmode & 0111 || S_ISDIR($stmode); + return ""; + } + + if ($stuid == $uid) { + $stmode & $mode and return 1; + } + elsif (_ingroup($stgid, $eff)) { + $stmode & ($mode >> 3) and return 1; + } + else { + $stmode & ($mode >> 6) and return 1; + } + return ""; + }; +} + +# alias for those who don't like objects +*stat_cando = \&cando; + +my %op = ( + r => sub { cando($_[0], S_IRUSR, 1) }, + w => sub { cando($_[0], S_IWUSR, 1) }, + x => sub { cando($_[0], S_IXUSR, 1) }, + o => sub { $_[0][4] == $> }, + + R => sub { cando($_[0], S_IRUSR, 0) }, + W => sub { cando($_[0], S_IWUSR, 0) }, + X => sub { cando($_[0], S_IXUSR, 0) }, + O => sub { $_[0][4] == $< }, + + e => sub { 1 }, + z => sub { $_[0][7] == 0 }, + s => sub { $_[0][7] }, + + f => sub { S_ISREG ($_[0][2]) }, + d => sub { S_ISDIR ($_[0][2]) }, + l => sub { S_ISLNK ($_[0][2]) }, + p => sub { S_ISFIFO($_[0][2]) }, + S => sub { S_ISSOCK($_[0][2]) }, + b => sub { S_ISBLK ($_[0][2]) }, + c => sub { S_ISCHR ($_[0][2]) }, + + u => sub { _suid($_[0][2]) }, + g => sub { _sgid($_[0][2]) }, + k => sub { _svtx($_[0][2]) }, + + M => sub { ($^T - $_[0][9] ) / 86400 }, + C => sub { ($^T - $_[0][10]) / 86400 }, + A => sub { ($^T - $_[0][8] ) / 86400 }, +); + +use constant HINT_FILETEST_ACCESS => 0x00400000; + +# we need fallback=>1 or stringifying breaks +use overload + fallback => 1, + -X => sub { + my ($s, $op) = @_; + + if (index("rwxRWX", $op) >= 0) { + (caller 0)[8] & HINT_FILETEST_ACCESS + and warnif("File::stat ignores use filetest 'access'"); + + $^O eq "VMS" and warnif("File::stat ignores VMS ACLs"); + + # It would be nice to have a warning about using -l on a + # non-lstat, but that would require an extra member in the + # object. + } + + if ($op{$op}) { + return $op{$op}->($_[0]); + } + else { + croak "-$op is not implemented on a File::stat object"; + } + }; + +# Class::Struct forbids use of @ISA +sub import { goto &Exporter::import } + +use Class::Struct qw(struct); +struct 'File::stat' => [ + map { $_ => '$' } qw{ + dev ino mode nlink uid gid rdev size + atime mtime ctime blksize blocks + } +]; + +sub populate (@) { + return unless @_; + my $stob = new(); + @$stob = ( + $st_dev, $st_ino, $st_mode, $st_nlink, $st_uid, $st_gid, $st_rdev, + $st_size, $st_atime, $st_mtime, $st_ctime, $st_blksize, $st_blocks ) + = @_; + return $stob; +} + +sub lstat ($) { populate(CORE::lstat(shift)) } + +sub stat ($) { + my $arg = shift; + my $st = populate(CORE::stat $arg); + return $st if defined $st; + my $fh; + { + local $!; + no strict 'refs'; + require Symbol; + $fh = \*{ Symbol::qualify( $arg, caller() )}; + return unless defined fileno $fh; + } + return populate(CORE::stat $fh); +} + +1; +__END__ + +#line 357 \ No newline at end of file diff --git a/slic3r/linux/local-lib/lib/perl5/FindBin.pm b/slic3r/linux/local-lib/lib/perl5/FindBin.pm new file mode 100644 index 00000000..0b249f6c --- /dev/null +++ b/slic3r/linux/local-lib/lib/perl5/FindBin.pm @@ -0,0 +1,101 @@ +#line 1 "FindBin.pm" +# FindBin.pm +# +# Copyright (c) 1995 Graham Barr & Nick Ing-Simmons. All rights reserved. +# This program is free software; you can redistribute it and/or modify it +# under the same terms as Perl itself. + +#line 78 + +package FindBin; +use Carp; +require 5.000; +require Exporter; +use Cwd qw(getcwd cwd abs_path); +use File::Basename; +use File::Spec; + +@EXPORT_OK = qw($Bin $Script $RealBin $RealScript $Dir $RealDir); +%EXPORT_TAGS = (ALL => [qw($Bin $Script $RealBin $RealScript $Dir $RealDir)]); +@ISA = qw(Exporter); + +$VERSION = "1.51"; + + +# needed for VMS-specific filename translation +if( $^O eq 'VMS' ) { + require VMS::Filespec; + VMS::Filespec->import; +} + +sub cwd2 { + my $cwd = getcwd(); + # getcwd might fail if it hasn't access to the current directory. + # try harder. + defined $cwd or $cwd = cwd(); + $cwd; +} + +sub init +{ + *Dir = \$Bin; + *RealDir = \$RealBin; + + if($0 eq '-e' || $0 eq '-') + { + # perl invoked with -e or script is on C + $Script = $RealScript = $0; + $Bin = $RealBin = cwd2(); + $Bin = VMS::Filespec::unixify($Bin) if $^O eq 'VMS'; + } + else + { + my $script = $0; + + if ($^O eq 'VMS') + { + ($Bin,$Script) = VMS::Filespec::rmsexpand($0) =~ /(.*[\]>\/]+)(.*)/s; + # C isn't going to work, so unixify first + ($Bin = VMS::Filespec::unixify($Bin)) =~ s/\/\z//; + ($RealBin,$RealScript) = ($Bin,$Script); + } + else + { + croak("Cannot find current script '$0'") unless(-f $script); + + # Ensure $script contains the complete path in case we C + + $script = File::Spec->catfile(cwd2(), $script) + unless File::Spec->file_name_is_absolute($script); + + ($Script,$Bin) = fileparse($script); + + # Resolve $script if it is a link + while(1) + { + my $linktext = readlink($script); + + ($RealScript,$RealBin) = fileparse($script); + last unless defined $linktext; + + $script = (File::Spec->file_name_is_absolute($linktext)) + ? $linktext + : File::Spec->catfile($RealBin, $linktext); + } + + # Get absolute paths to directories + if ($Bin) { + my $BinOld = $Bin; + $Bin = abs_path($Bin); + defined $Bin or $Bin = File::Spec->canonpath($BinOld); + } + $RealBin = abs_path($RealBin) if($RealBin); + } + } +} + +BEGIN { init } + +*again = \&init; + +1; # Keep require happy diff --git a/slic3r/linux/local-lib/lib/perl5/Getopt/ArgvFile.pm b/slic3r/linux/local-lib/lib/perl5/Getopt/ArgvFile.pm new file mode 100644 index 00000000..f9b63a84 --- /dev/null +++ b/slic3r/linux/local-lib/lib/perl5/Getopt/ArgvFile.pm @@ -0,0 +1,964 @@ + +# = HISTORY SECTION ===================================================================== + +# --------------------------------------------------------------------------------------- +# version | date | author | changes +# --------------------------------------------------------------------------------------- +# 1.11 |17.04.07| JSTENZEL | renamed fileOptions2prefixes() into _fileOptions2prefixes(), +# | | | in order to avoid POD documentation because it is an +# | | | internal helper function; +# | | JSTENZEL | slight adaptations after complaints of perlcritic; +# | | JSTENZEL | added POD hints that GetOptions() is imported from +# | | | Getopt::Long and not defined in Getopt::ArgvFile; +# | | JSTENZEL | POD: bugfix in GetOptions() calls, %options hash needs to +# | | | be passed in as reference; +# |21.04.07| JSTENZEL | POD: bugfix in -fileOption example; +# 1.10 |05.01.05| JSTENZEL | added options resolveRelativePathes and resolveEnvVars; +# 1.09 |19.10.04| JSTENZEL | option -startupFilename now accepts array references both +# | | | directly set up and supplied by a callback; +# |20.10.04| JSTENZEL | new option -fileOption allows to use a user defined option +# | | | instead of an option file prefix like "@" (-options options +# | | | instead of @options); +# 1.08 |30.04.04| JSTENZEL | new import() switch "justload"; +# 1.07 |29.04.04| JSTENZEL | import() implemented directly: emulating the old behaviour +# | | | of Exporter::import() when necessary, it alternatively +# | | | allows to invoke argvFile() via use(); +# 1.06 |03.05.02| JSTENZEL | the startup filename scheme is now configurable by the +# | | | new option "startupFilename"; +# 1.05 |30.04.02| JSTENZEL | cosmetics: hash access without quotes; +# | | JSTENZEL | corrected and improved inline doc; +# | | JSTENZEL | using File::Spec::Functions to build filenames, +# | | | for improved portability; +# | | JSTENZEL | using Cwd::abs_path() to check if files were read already; +# | | JSTENZEL | added support for default files in *current* directory; +# 1.04 |29.10.00| JSTENZEL | bugfix: options were read twice if both default and home +# | | | startup options were read and the script was installed in +# | | | the users homedirectory; +# 1.03 |25.03.00| JSTENZEL | new parameter "prefix"; +# | | JSTENZEL | POD in option files is now supported; +# | | JSTENZEL | using Test in test suite now; +# 1.02 |27.02.00| JSTENZEL | new parameter "array"; +# | | JSTENZEL | slight POD adaptions; +# 1.01 |23.03.99| JSTENZEL | README update only; +# 1.00 |16.03.99| JSTENZEL | first CPAN version. +# --------------------------------------------------------------------------------------- + +# = POD SECTION ========================================================================= + +=head1 NAME + +Getopt::ArgvFile - interpolates script options from files into @ARGV or another array + +=head1 VERSION + +This manual describes version B<1.11>. + +=head1 SYNOPSIS + +One line invocation - option hints are processed while the module is loaded: + + # load module and process option file hints in @ARGV + use Getopt::ArgvFile default=>1; + + # load another module to evaluate the options, e.g.: + use Getopt::Long; + ... + + # evaluate options, e.g. this common way: + GetOptions(\%options, 'any'); # this function is defined in Getopt::Long + +Or suppress option hint processing when the module is loaded, to +perform it later on: + + # load module, do *not* process option file hints + use Getopt::ArgvFile justload=>1; + + # load another module to evaluate the options, e.g.: + use Getopt::Long; + ... + + # *now*, solve option file hints + Getopt::ArgvFile::argvFile(default=>1); + + # evaluate options, e.g. this common way: + GetOptions(\%options, 'any'); # this function is defined in Getopt::Long + +Or use the traditional two step invocation of module loading with +I and I option file handling: + + # Load the module and import the &argvFile symbol + # - this will *not* process option hints. + # Use *this* syntax to do so, *exactly*. + use Getopt::ArgvFile qw(argvFile); + + # load another module to evaluate the options, e.g.: + use Getopt::Long; + ... + + # *now*, solve option file hints + argvFile(default=>1); + + # evaluate options, e.g. this common way: + GetOptions(\%options, 'any'); # this function is defined in Getopt::Long + + +If options should be processed into another array, this can be done this way: + + # prepare target array + my @options=('@options1', '@options2', '@options3'); + + ... + + # replace file hints by the options stored in the files + argvFile(array=>\@options); + +In case you do not like the "@" prefix it is possible to define an option to +be used instead: + + # prepare target array + my @options=('-options', 'options1', '-options', 'options2'); + + ... + + # replace file hints by the options stored in the files + argvFile(fileOption=>'options', array=>\@options); + + +=head1 DESCRIPTION + +This module simply interpolates option file hints in @ARGV +by the contents of the pointed files. This enables option +reading from I instead of or additional to the usual +reading from the command line. + +Alternatively, you can process any array instead of @ARGV +which is used by default and mentioned mostly in this manual. + +The interpolated @ARGV could be subsequently processed by +the usual option handling, e.g. by a Getopt::xxx module. +Getopt::ArgvFile does I perform any option handling itself, +it only prepares the array @ARGV. + +Option files can significantly simplify the call of a script. +Imagine the following: + +=over 4 + +=item Breaking command line limits + +A script may offer a lot of options, with possibly a few of them +even taking parameters. If these options and their parameters +are passed onto the program call directly, the number of characters +accepted by your shells command line may be exceeded. + +Perl itself does I limit the number of characters passed to a +script by parameters, but the shell or command interpreter often +I a limit here. The same problem may occur if you want to +store a long call in a system file like crontab. + +If such a limit restricts you, options and parameters may be moved into +option files, which will result in a shorter command line call. + +=item Script calls prepared by scripts + +Sometimes a script calls another script. The options passed onto the +nested script could depend on variable situations, such as a users +input or the detected environment. In such a case, it I be easier +to generate an intermediate option file which is then passed to +the nested script. + +Or imagine two cron jobs one preparing the other: the first may generate +an option file which is then used by the second. + +=item Simple access to typical calling scenarios + +If several options need to be set, but in certain circumstances +are always the same, it could become sligthly nerveracking to type +them in again and again. With an option file, they can be stored +I and recalled easily as often as necessary. + +Further more, option files may be used to group options. Several +settings may set up one certain behaviour of the program, while others +influence another. Or a certain set of options may be useful in one +typical situation, while another one should be used elsewhere. Or there +is a common set of options which has to be used in every call, +while other options are added depending on the current needs. Or there +are a few user groups with different but typical ways to call your script. +In all these cases, option files may collect options belonging together, +and may be combined by the script users to set up a certain call. +In conjunction with the possiblity to I such collections, this is +perhaps the most powerful feature provided by this method. + +=item Individual and installationwide default options + +The module allows the programmer to enable user setups of default options; +for both individual users or generally I callers of a script. +This is especially useful for administrators who can configure the +I behaviour of a script by setting up its installationwide +startup option file. All script users are free then to completely +forget every already configured setup option. And if one of them regularly +adds certain options to every call, he could store them in his I +startup option file. + +For example, I use this feature to make my scripts both flexible I +usable. I have several scripts accessing a database via DBI. The database +account parameters as well as the DBI startup settings should not be coded +inside the scripts because this is not very flexible, so I implemented +them by options. But on the other hand, there should be no need for a normal +user to pass all these settings to every script call. My solution for this +is to use I option files set up and maintained by an administrator. +This is very transparent, most of the users know nothing of these +(documented ;-) configuration settings ... and if anything changes, only the +option files have to be adapted. + +=back + +=cut + +# PACKAGE SECTION ############################################### + +# declare namespace +package Getopt::ArgvFile; + +# declare your revision (and use it to avoid a warning) +$VERSION=1.11; +$VERSION=$VERSION; + +# force Perl version +require 5.003; + +=pod + +=head1 EXPORTS + +No symbol is exported by default, but you may explicitly import +the "argvFile()" function I: + + use Getopt::ArgvFile qw(argvFile); + +Please note that this interface is provided for backwards compatibility with +versions up to 1.06. By loading the module this way, the traditional import +mechanisms take affect and I is not called implicitly>. + +This means that while option file hints are usually processed implicitly when +C is loaded, the syntax + + use Getopt::ArgvFile qw(argvFile); + +requires an I call of I to process option files. + +=cut + +# export something (Exporter is not made a base module because we implement import() ourselves, +# which *can* call Exporter::import() (if needed for backwards compatibility) - see import()) +require Exporter; +@EXPORT_OK=qw(argvFile); + +# CODE SECTION ################################################## + +# set pragmas +use strict; + +# load libraries +use Carp; +use File::Basename; +use Text::ParseWords; +use File::Spec::Functions; +use Cwd qw(:DEFAULT abs_path chdir); + +# module variables +my $optionPrefixPattern=qr/(-{1,2}|\+)/; + +# METHOD SECTION ################################################ + +=pod + +=head1 FUNCTIONS + +There is only one function, I, which does all the work of +option file hint processing. + +Please note that with version 1.07 and above C is called +I when the module is loaded, except this is done in one of +the following ways: + + # the traditional interface - provided for + # backwards compatibility - this loads the + # module and imports the &argvFile symbol + use Getopt::ArgvFile qw(argvFile); + + -- + + # option file processing is explicitly suppressed + use Getopt::ArgvFile justload=>1; + +Except for the traditional loading, the complete interface of C +is available via C, but in the typical C syntax without +parantheses. + + # implicit call of argvFile(default=>1, home=>1) + use Getopt::ArgvFile default=>1, home=>1; + +See I for further details. + + +=head2 argvFile() + +Scans the command line parameters (stored in @ARGV or an alternatively +passed array) for option file hints (see I below), reads the +pointed files and makes their contents part of the source array +(@ARGV by default) replacing the hints. + +Because the function was intentionally designed to work on @ARGV +and this is still the default behaviour, this manual mostly speaks about +@ARGV. Please note that it is possible to process I other array +as well. + +B + +An option file hint is simply the filename preceeded by (at least) one +"@" character: + + > script -optA argA -optB @optionFile -optC argC + +This will cause argvFile() to scan "optionFile" for options. +The element "@optionFile" will be removed from the @ARGV array and +will be replaced by the options found. + +Note: you can choose another prefix by using the "prefix" parameter, +see below. + +An option file which cannot be found is quietly skipped. + +Well, what is I an option file? It is intended to +store I which should be passed to the called +script. They can be stored exactly as they would be written in +the command line, but may be spread to multiple lines. To make the +file more readable, space and comment lines (starting with a "#") +are allowed additionally. POD comments are supported as well. +For example, the call + + > script -optA argA -optB -optC cArg par1 par2 + +could be transformed into + + > script @scriptOptions par1 par2 + +where the file "scriptOptions" may look like this: + + # option a + -optA argA + +C<> + + =pod + option b + =cut + -optB + +C<> + + # option c + -optC cArg + +B + +Option files can be nested. Recursion is avoided globally, that means +that every file will be opened only I (the first time argvFile() finds +a hint pointing to it). This is the simplest implementation, indeed, but +should be suitable. (Unfortunately, there are I.) + +By using this feature, you may combine groups of typical options into +a top level option file, e.g.: + + File ab: + +C<> + + # option a + -optA argA + # option b + -optB + +C<> + + File c: + +C<> + + # option c + -optC cArg + +C<> + + File abc: + +C<> + + # combine ab and c + @ab @c + +If anyone provides these files, a user can use a very short call: + + > script @abc + +and argvFile() will recursively move all the filed program parameters +into @ARGV. + + +B + +Pathes in option files might be relative, as in + + -file ../file @../../configs/nested + +If written with the (prepared) start directory in mind, that will work, +but it can fail when it was written relatively to the option file location +because by default those pathes will not be resolved when written from +an option file. + +Use parameter C to switch to path resolution: + + argvFile(resolveRelativePathes=>1); + +will cause C to expand those pathes, both in standard strings +and nested option files. + + With resolveRelativePathes, both pathes + will be resolved: + + -file ../file @../../configs/nested + +A path is resolved I it is found in. + + +B + +Similar to relative pathes, environment variables are handled differently +depending if the option is specified at the commandline or from an option +file, due to bypassed shell processing. By default, C does +not resolve environment variables. But if required it can be commanded +to do so via parameter C. + + argvFile(resolveEnvVars=>1); + +B + +By setting several named parameters, you can enable automatic processing +of I. There are three of them: + +The I is searched in the installation path +of the calling script, the I is searched in the +users home (evaluated via environment variable "HOME"), and the +I is searched in the current directory. + +By default, all startup option files are expected to be named like +the script, preceeded by a dot, but this can be adapted to individual +needs if preferred, see below. + + Examples: + If a script located in "/path/script" is invoked in directory + /the/current/dir by a user "user" whoms "HOME" variable points + to "/homes/user", the following happens: + +C<> + + argvFile() # ignores all startup option files; + argvFile(default=>1) # searches and expands "/path/.script", + # if available (the "default" settings); + argvFile(home=>1) # searches and expands "/homes/user/.script", + # if available (the "home" settings); + argvFile(current=>1) # searches and expands "/the/current/dir/.script", + # if available (the "current" settings); + argvFile( + default => 1, + home => 1, + current => 1 + ) # tries to handle all startups. + +Any true value will activate the setting it is assigned to. + +In case the ".script" name rule does not meet your needs or does not fit +into a certain policy, the expected startup filenames can be set up by +an option C. The option value may be a scalar used as +the expected filename, or a reference to an array of accepted choices, +or a reference to code returning the name - plainly or as a reference to +an array of names. Such callback code will be called I and will +receive the name of the script. + + # use ".config" + argvFile(startupFilename => '.config'); + + # use ".config" or "config" + argvFile(startupFilename => [qw(.config config)]); + + # emulate the default behaviour, + # but use an extra dot postfix + my $nameBuilder=sub {join('', '.', basename($_[0]), '.');}; + argvFile(startupFilename => $nameBuilder); + + # use .(script)rc or .(script)/config + my $nameBuilder=sub + { + my $sname=basename($_[0]); + [".${sname}rc", ".${sname}/config"]; + }; + argvFile(startupFilename => $nameBuilder); + +Note that the list variants will use the first matching filename in each +possible startup-file path. For example if your array is C<['.scriptrc', +'.script.config']> and you have both a C<.scriptrc> and a C<.script.config> +file in (say) your current directory, only the C<.scriptrc> file will be +used, as it is the first found. + +The contents found in a startup file is placed I all explicitly +set command line arguments. This enables to overwrite a default setting +by an explicit option. If all startup files are read, I startup +files can overwrite I files which have preceedence over I +ones, so that the I startups are most common. In other words, +if the module would not support startup files, you could get the same +result with "script @/path/.script @/homes/user/.script @/the/current/dir/.script". + +Note: There is one certain case when overwriting will I work completely +because duplicates are sorted out: if all three types of startup files are +used and the script is started in the installation directory, +the default file will be identical to the current file. The default file is +processed, but the current file is skipped as a duplicate later on and will +I overwrite settings made caused by the intermediately processed home file. +If started in another directory, it I overwrite the home settings. +But the alternative seems to be even more confusing: the script would behave +differently if just started in its installation path. Because a user might +be more aware of configuration editing then of the current path, I choose +the current implementation, but this preceedence might become configurable +in a future version. + +If there is no I environment variable, the I setting takes no effect +to avoid trouble accessing the root directory. + +B + +The function supports multi-level (or so called I) option files. +If a filename in an option file hint starts with a "@" again, this complete +name is the resolution written back to @ARGV - assuming there will be +another utility reading option files. + + Examples: + @rfile rfile will be opened, its contents is + made part of @ARGV. + @@rfile cascade: "@rfile" is written back to + @ARGV assuming that there is a subsequent + tool called by the script to which this + hint will be passed to solve it by an own + call of argvFile(). + +The number of cascaded hints is unlimited. + +B + +Although the function was designed to process @ARGV, it is possible to +process another array as well if you prefer. To do this, simply pass +a I to this array by parameter B. + + Examples: + argvFile() # processes @ARGV; + argvFile(array=>\@options); # processes @options; + +B + +By default, "@" is the prefix used to mark an option file. This can +be changed by using the optional parameter B: + + Examples: + argvFile(); # use "@"; + argvFile(prefix=>'~'); # use "~"; + +Note that the strings "#", "=", "-" and "+" are reserved and I +be chosen here because they are used to start plain or POD comments or +are typically option prefixes. + +B + +People not familiar with option files might be confused by file prefixes. +This can be avoided by offering an I